1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
use crate::rt::{execution, object, thread, MAX_ATOMIC_HISTORY, MAX_THREADS};
#[cfg(feature = "checkpoint")]
use serde::{Deserialize, Serialize};
/// An execution path
#[derive(Debug)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
pub(crate) struct Path {
preemption_bound: Option<u8>,
/// Current execution's position in the branches vec.
///
/// When the execution starts, this is zero, but `branches` might not be
/// empty.
///
/// In order to perform an exhaustive search, the execution is seeded with a
/// set of branches.
pos: usize,
/// List of all branches in the execution.
///
/// A branch is of type `Schedule`, `Load`, or `Spurious`
branches: object::Store<Entry>,
/// If true, exploring is enabled at start
exploring: bool,
/// If true, the user decided to skip the current execution branch. We do
/// not do any further exploration here.
skipping: bool,
/// How to reset the `exploring` state
exploring_on_start: bool,
}
#[derive(Debug)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
pub(crate) struct Schedule {
/// Number of times the thread leading to this branch point has been
/// pre-empted.
preemptions: u8,
/// The thread that was active first
initial_active: Option<u8>,
/// State of each thread
threads: [Thread; MAX_THREADS],
/// The previous schedule branch
prev: Option<object::Ref<Schedule>>,
exploring: bool,
}
#[derive(Debug)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
pub(crate) struct Load {
/// All possible values
values: [u8; MAX_ATOMIC_HISTORY],
/// Current value
pos: u8,
/// Number of values in list
len: u8,
exploring: bool,
}
#[derive(Debug)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
pub(crate) struct Spurious {
spur: bool,
exploring: bool,
}
objects! {
#[derive(Debug)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
Entry,
Schedule(Schedule),
Load(Load),
Spurious(Spurious),
}
#[derive(Debug, Eq, PartialEq, Clone, Copy)]
#[cfg_attr(feature = "checkpoint", derive(Serialize, Deserialize))]
pub(crate) enum Thread {
/// The thread is currently disabled
Disabled,
/// The thread should not be explored
Skip,
/// The thread is in a yield state.
Yield,
/// The thread is waiting to be explored
Pending,
/// The thread is currently being explored
Active,
/// The thread has been explored
Visited,
}
macro_rules! assert_path_len {
($branches:expr) => {{
assert!(
// if we are panicking, we may be performing a branch due to a
// `Drop` impl (e.g., for `Arc`, or for a user type that does an
// atomic operation in its `Drop` impl). if that's the case,
// asserting this again will double panic. therefore, short-circuit
// the assertion if the thread is panicking.
$branches.len() < $branches.capacity() || std::thread::panicking(),
"Model exceeded maximum number of branches. This is often caused \
by an algorithm requiring the processor to make progress, e.g. \
spin locks.",
);
}};
}
impl Path {
/// Create a new, blank, configured to branch at most `max_branches` times
/// and at most `preemption_bound` thread preemptions.
pub(crate) fn new(max_branches: usize, preemption_bound: Option<u8>, exploring: bool) -> Path {
Path {
preemption_bound,
pos: 0,
branches: object::Store::with_capacity(max_branches),
exploring,
skipping: false,
exploring_on_start: exploring,
}
}
pub(crate) fn explore_state(&mut self) {
if !self.skipping {
assert!(!self.exploring, "not in critical state");
self.exploring = true;
}
}
pub(crate) fn critical(&mut self) {
if !self.skipping {
assert!(self.exploring, "not in exploring state");
self.exploring = false;
}
}
pub(crate) fn skip_branch(&mut self) {
self.exploring = false;
self.skipping = true;
}
pub(crate) fn set_max_branches(&mut self, max_branches: usize) {
self.branches
.reserve_exact(max_branches - self.branches.len());
}
/// Returns `true` if the execution has reached a point where the known path
/// has been traversed and has reached a new branching point.
pub(super) fn is_traversed(&self) -> bool {
self.pos == self.branches.len()
}
pub(super) fn pos(&self) -> usize {
self.pos
}
/// Push a new atomic-load branch
pub(super) fn push_load(&mut self, seed: &[u8]) {
assert_path_len!(self.branches);
let load_ref = self.branches.insert(Load {
values: [0; MAX_ATOMIC_HISTORY],
pos: 0,
len: 0,
exploring: self.exploring,
});
let load = load_ref.get_mut(&mut self.branches);
for (i, &store) in seed.iter().enumerate() {
assert!(
store < MAX_ATOMIC_HISTORY as u8,
"[loom internal bug] store = {}; max = {}",
store,
MAX_ATOMIC_HISTORY
);
assert!(
i < MAX_ATOMIC_HISTORY,
"[loom internal bug] i = {}; max = {}",
i,
MAX_ATOMIC_HISTORY
);
load.values[i] = store;
load.len += 1;
}
}
/// Returns the atomic write to read
pub(super) fn branch_load(&mut self) -> usize {
assert!(!self.is_traversed(), "[loom internal bug]");
let load = object::Ref::from_usize(self.pos)
.downcast::<Load>(&self.branches)
.expect("Reached unexpected exploration state. Is the model fully deterministic?")
.get(&self.branches);
self.pos += 1;
load.values[load.pos as usize] as usize
}
/// Branch on spurious notifications
pub(super) fn branch_spurious(&mut self) -> bool {
if self.is_traversed() {
assert_path_len!(self.branches);
self.branches.insert(Spurious {
spur: false,
exploring: self.exploring,
});
}
let spurious = object::Ref::from_usize(self.pos)
.downcast::<Spurious>(&self.branches)
.expect("Reached unexpected exploration state. Is the model fully deterministic?")
.get(&self.branches)
.spur;
self.pos += 1;
spurious
}
/// Returns the thread identifier to schedule
pub(super) fn branch_thread(
&mut self,
execution_id: execution::Id,
seed: impl ExactSizeIterator<Item = Thread>,
) -> Option<thread::Id> {
if self.is_traversed() {
assert_path_len!(self.branches);
// Find the last thread scheduling branch in the path
let prev = self.last_schedule();
// Entering a new exploration space.
//
// Initialize a new branch. The initial field values don't matter
// as they will be updated below.
let schedule_ref = self.branches.insert(Schedule {
preemptions: 0,
initial_active: None,
threads: [Thread::Disabled; MAX_THREADS],
prev,
exploring: self.exploring,
});
// Get a reference to the branch in the object store.
let schedule = schedule_ref.get_mut(&mut self.branches);
assert!(seed.len() <= MAX_THREADS, "[loom internal bug]");
// Currently active thread
let mut active = None;
for (i, v) in seed.enumerate() {
// Initialize thread states
schedule.threads[i] = v;
if v.is_active() {
assert!(
active.is_none(),
"[loom internal bug] only one thread should start as active"
);
active = Some(i as u8);
}
}
// Ensure at least one thread is active, otherwise toggle a yielded
// thread.
if active.is_none() {
for (i, th) in schedule.threads.iter_mut().enumerate() {
if *th == Thread::Yield {
*th = Thread::Active;
active = Some(i as u8);
break;
}
}
}
let mut initial_active = active;
if let Some(prev) = prev {
if initial_active != prev.get(&self.branches).active_thread_index() {
initial_active = None;
}
}
let preemptions = prev
.map(|prev| prev.get(&self.branches).preemptions())
.unwrap_or(0);
debug_assert!(
self.preemption_bound.is_none() || Some(preemptions) <= self.preemption_bound,
"[loom internal bug] max = {:?}; curr = {}",
self.preemption_bound,
preemptions,
);
let schedule = schedule_ref.get_mut(&mut self.branches);
schedule.initial_active = initial_active;
schedule.preemptions = preemptions;
}
let schedule = object::Ref::from_usize(self.pos)
.downcast::<Schedule>(&self.branches)
.expect("Reached unexpected exploration state. Is the model fully deterministic?")
.get(&self.branches);
self.pos += 1;
schedule
.threads
.iter()
.enumerate()
.find(|&(_, th)| th.is_active())
.map(|(i, _)| thread::Id::new(execution_id, i))
}
pub(super) fn backtrack(&mut self, mut point: usize, thread_id: thread::Id) {
let schedule = loop {
if let Some(schedule_ref) =
object::Ref::from_usize(point).downcast::<Schedule>(&self.branches)
{
let schedule = schedule_ref.get_mut(&mut self.branches);
if schedule.exploring {
schedule.backtrack(thread_id, self.preemption_bound);
break schedule;
}
}
if point == 0 {
return;
}
point -= 1;
};
let mut curr = if let Some(curr) = schedule.prev {
curr
} else {
return;
};
if self.preemption_bound.is_some() {
loop {
// Preemption bounded DPOR requires conservatively adding
// another backtrack point to cover cases missed by the bounds.
if let Some(prev) = curr.get(&self.branches).prev {
let active_a = curr.get(&self.branches).active_thread_index();
let active_b = prev.get(&self.branches).active_thread_index();
if active_a != active_b && curr.get_mut(&mut self.branches).exploring {
curr.get_mut(&mut self.branches)
.backtrack(thread_id, self.preemption_bound);
return;
}
curr = prev;
} else {
if curr.get(&mut self.branches).exploring {
// This is the very first schedule
curr.get_mut(&mut self.branches)
.backtrack(thread_id, self.preemption_bound);
}
return;
}
}
}
}
/// Reset the path to prepare for the next exploration of the model.
///
/// This function will also trim the object store, dropping any objects that
/// are created in pruned sections of the path.
pub(super) fn step(&mut self) -> bool {
// Reset the position to zero, the path will start traversing from the
// beginning
self.pos = 0;
// Reset exploring / critical / skip
self.exploring = self.exploring_on_start;
self.skipping = false;
// Set the final branch to try the next option. If all options have been
// traversed, pop the final branch and try again w/ the one under it.
//
// This is depth-first tree traversal.
//
for last in (0..self.branches.len()).rev() {
let last = object::Ref::from_usize(last);
// Remove all objects that were created **after** this branch
self.branches.truncate(last);
if let Some(schedule_ref) = last.downcast::<Schedule>(&self.branches) {
let schedule = schedule_ref.get_mut(&mut self.branches);
if !schedule.exploring {
continue;
}
// Transition the active thread to visited.
if let Some(thread) = schedule.threads.iter_mut().find(|th| th.is_active()) {
*thread = Thread::Visited;
}
// Find a pending thread and transition it to active
let rem = schedule
.threads
.iter_mut()
.find(|th| th.is_pending())
.map(|th| {
*th = Thread::Active;
})
.is_some();
if rem {
return true;
}
} else if let Some(load_ref) = last.downcast::<Load>(&self.branches) {
let load = load_ref.get_mut(&mut self.branches);
if !load.exploring {
continue;
}
load.pos += 1;
if load.pos < load.len {
return true;
}
} else if let Some(spurious_ref) = last.downcast::<Spurious>(&self.branches) {
let spurious = spurious_ref.get_mut(&mut self.branches);
if !spurious.exploring {
continue;
}
if !spurious.spur {
spurious.spur = true;
return true;
}
} else {
unreachable!();
}
}
false
}
fn last_schedule(&self) -> Option<object::Ref<Schedule>> {
self.branches.iter_ref::<Schedule>().rev().next()
}
}
impl Schedule {
/// Returns the index of the currently active thread
fn active_thread_index(&self) -> Option<u8> {
self.threads
.iter()
.enumerate()
.find(|(_, th)| th.is_active())
.map(|(index, _)| index as u8)
}
/// Compute the number of preemptions for the current state of the branch
fn preemptions(&self) -> u8 {
if self.initial_active.is_some() && self.initial_active != self.active_thread_index() {
return self.preemptions + 1;
}
self.preemptions
}
fn backtrack(&mut self, thread_id: thread::Id, preemption_bound: Option<u8>) {
assert!(self.exploring);
if let Some(bound) = preemption_bound {
assert!(
self.preemptions <= bound,
"[loom internal bug] actual = {}, bound = {}",
self.preemptions,
bound
);
if self.preemptions == bound {
return;
}
}
let thread_id = thread_id.as_usize();
if thread_id >= self.threads.len() {
return;
}
if self.threads[thread_id].is_enabled() {
self.threads[thread_id].explore();
} else {
for th in &mut self.threads {
th.explore();
}
}
}
}
impl Thread {
fn explore(&mut self) {
if *self == Thread::Skip {
*self = Thread::Pending;
}
}
fn is_pending(&self) -> bool {
*self == Thread::Pending
}
fn is_active(&self) -> bool {
*self == Thread::Active
}
fn is_enabled(&self) -> bool {
!self.is_disabled()
}
fn is_disabled(&self) -> bool {
*self == Thread::Disabled
}
}