test: insanesync: convert to C++
[model-checker.git] / execution.cc
1 #include <stdio.h>
2 #include <algorithm>
3 #include <mutex>
4 #include <new>
5 #include <stdarg.h>
6
7 #include "model.h"
8 #include "execution.h"
9 #include "action.h"
10 #include "nodestack.h"
11 #include "schedule.h"
12 #include "common.h"
13 #include "clockvector.h"
14 #include "cyclegraph.h"
15 #include "promise.h"
16 #include "datarace.h"
17 #include "threads-model.h"
18 #include "bugmessage.h"
19
20 #define INITIAL_THREAD_ID       0
21
22 /**
23  * Structure for holding small ModelChecker members that should be snapshotted
24  */
25 struct model_snapshot_members {
26         model_snapshot_members() :
27                 /* First thread created will have id INITIAL_THREAD_ID */
28                 next_thread_id(INITIAL_THREAD_ID),
29                 used_sequence_numbers(0),
30                 next_backtrack(NULL),
31                 bugs(),
32                 failed_promise(false),
33                 too_many_reads(false),
34                 no_valid_reads(false),
35                 bad_synchronization(false),
36                 asserted(false)
37         { }
38
39         ~model_snapshot_members() {
40                 for (unsigned int i = 0; i < bugs.size(); i++)
41                         delete bugs[i];
42                 bugs.clear();
43         }
44
45         unsigned int next_thread_id;
46         modelclock_t used_sequence_numbers;
47         ModelAction *next_backtrack;
48         SnapVector<bug_message *> bugs;
49         bool failed_promise;
50         bool too_many_reads;
51         bool no_valid_reads;
52         /** @brief Incorrectly-ordered synchronization was made */
53         bool bad_synchronization;
54         bool asserted;
55
56         SNAPSHOTALLOC
57 };
58
59 /** @brief Constructor */
60 ModelExecution::ModelExecution(ModelChecker *m,
61                 const struct model_params *params,
62                 Scheduler *scheduler,
63                 NodeStack *node_stack) :
64         model(m),
65         params(params),
66         scheduler(scheduler),
67         action_trace(),
68         thread_map(2), /* We'll always need at least 2 threads */
69         obj_map(),
70         condvar_waiters_map(),
71         obj_thrd_map(),
72         promises(),
73         futurevalues(),
74         pending_rel_seqs(),
75         thrd_last_action(1),
76         thrd_last_fence_release(),
77         node_stack(node_stack),
78         priv(new struct model_snapshot_members()),
79         mo_graph(new CycleGraph())
80 {
81         /* Initialize a model-checker thread, for special ModelActions */
82         model_thread = new Thread(get_next_id());
83         add_thread(model_thread);
84         scheduler->register_engine(this);
85         node_stack->register_engine(this);
86 }
87
88 /** @brief Destructor */
89 ModelExecution::~ModelExecution()
90 {
91         for (unsigned int i = 0; i < get_num_threads(); i++)
92                 delete get_thread(int_to_id(i));
93
94         for (unsigned int i = 0; i < promises.size(); i++)
95                 delete promises[i];
96
97         delete mo_graph;
98         delete priv;
99 }
100
101 int ModelExecution::get_execution_number() const
102 {
103         return model->get_execution_number();
104 }
105
106 static action_list_t * get_safe_ptr_action(HashTable<const void *, action_list_t *, uintptr_t, 4> * hash, void * ptr)
107 {
108         action_list_t *tmp = hash->get(ptr);
109         if (tmp == NULL) {
110                 tmp = new action_list_t();
111                 hash->put(ptr, tmp);
112         }
113         return tmp;
114 }
115
116 static SnapVector<action_list_t> * get_safe_ptr_vect_action(HashTable<void *, SnapVector<action_list_t> *, uintptr_t, 4> * hash, void * ptr)
117 {
118         SnapVector<action_list_t> *tmp = hash->get(ptr);
119         if (tmp == NULL) {
120                 tmp = new SnapVector<action_list_t>();
121                 hash->put(ptr, tmp);
122         }
123         return tmp;
124 }
125
126 action_list_t * ModelExecution::get_actions_on_obj(void * obj, thread_id_t tid) const
127 {
128         SnapVector<action_list_t> *wrv = obj_thrd_map.get(obj);
129         if (wrv==NULL)
130                 return NULL;
131         unsigned int thread=id_to_int(tid);
132         if (thread < wrv->size())
133                 return &(*wrv)[thread];
134         else
135                 return NULL;
136 }
137
138 /** @return a thread ID for a new Thread */
139 thread_id_t ModelExecution::get_next_id()
140 {
141         return priv->next_thread_id++;
142 }
143
144 /** @return the number of user threads created during this execution */
145 unsigned int ModelExecution::get_num_threads() const
146 {
147         return priv->next_thread_id;
148 }
149
150 /** @return a sequence number for a new ModelAction */
151 modelclock_t ModelExecution::get_next_seq_num()
152 {
153         return ++priv->used_sequence_numbers;
154 }
155
156 /**
157  * @brief Should the current action wake up a given thread?
158  *
159  * @param curr The current action
160  * @param thread The thread that we might wake up
161  * @return True, if we should wake up the sleeping thread; false otherwise
162  */
163 bool ModelExecution::should_wake_up(const ModelAction *curr, const Thread *thread) const
164 {
165         const ModelAction *asleep = thread->get_pending();
166         /* Don't allow partial RMW to wake anyone up */
167         if (curr->is_rmwr())
168                 return false;
169         /* Synchronizing actions may have been backtracked */
170         if (asleep->could_synchronize_with(curr))
171                 return true;
172         /* All acquire/release fences and fence-acquire/store-release */
173         if (asleep->is_fence() && asleep->is_acquire() && curr->is_release())
174                 return true;
175         /* Fence-release + store can awake load-acquire on the same location */
176         if (asleep->is_read() && asleep->is_acquire() && curr->same_var(asleep) && curr->is_write()) {
177                 ModelAction *fence_release = get_last_fence_release(curr->get_tid());
178                 if (fence_release && *(get_last_action(thread->get_id())) < *fence_release)
179                         return true;
180         }
181         return false;
182 }
183
184 void ModelExecution::wake_up_sleeping_actions(ModelAction *curr)
185 {
186         for (unsigned int i = 0; i < get_num_threads(); i++) {
187                 Thread *thr = get_thread(int_to_id(i));
188                 if (scheduler->is_sleep_set(thr)) {
189                         if (should_wake_up(curr, thr))
190                                 /* Remove this thread from sleep set */
191                                 scheduler->remove_sleep(thr);
192                 }
193         }
194 }
195
196 /** @brief Alert the model-checker that an incorrectly-ordered
197  * synchronization was made */
198 void ModelExecution::set_bad_synchronization()
199 {
200         priv->bad_synchronization = true;
201 }
202
203 bool ModelExecution::assert_bug(const char *msg)
204 {
205         priv->bugs.push_back(new bug_message(msg));
206
207         if (isfeasibleprefix()) {
208                 set_assert();
209                 return true;
210         }
211         return false;
212 }
213
214 /** @return True, if any bugs have been reported for this execution */
215 bool ModelExecution::have_bug_reports() const
216 {
217         return priv->bugs.size() != 0;
218 }
219
220 SnapVector<bug_message *> * ModelExecution::get_bugs() const
221 {
222         return &priv->bugs;
223 }
224
225 /**
226  * Check whether the current trace has triggered an assertion which should halt
227  * its execution.
228  *
229  * @return True, if the execution should be aborted; false otherwise
230  */
231 bool ModelExecution::has_asserted() const
232 {
233         return priv->asserted;
234 }
235
236 /**
237  * Trigger a trace assertion which should cause this execution to be halted.
238  * This can be due to a detected bug or due to an infeasibility that should
239  * halt ASAP.
240  */
241 void ModelExecution::set_assert()
242 {
243         priv->asserted = true;
244 }
245
246 /**
247  * Check if we are in a deadlock. Should only be called at the end of an
248  * execution, although it should not give false positives in the middle of an
249  * execution (there should be some ENABLED thread).
250  *
251  * @return True if program is in a deadlock; false otherwise
252  */
253 bool ModelExecution::is_deadlocked() const
254 {
255         bool blocking_threads = false;
256         for (unsigned int i = 0; i < get_num_threads(); i++) {
257                 thread_id_t tid = int_to_id(i);
258                 if (is_enabled(tid))
259                         return false;
260                 Thread *t = get_thread(tid);
261                 if (!t->is_model_thread() && t->get_pending())
262                         blocking_threads = true;
263         }
264         return blocking_threads;
265 }
266
267 /**
268  * @brief Check if we are yield-blocked
269  *
270  * A program can be "yield-blocked" if all threads are ready to execute a
271  * yield.
272  *
273  * @return True if the program is yield-blocked; false otherwise
274  */
275 bool ModelExecution::is_yieldblocked() const
276 {
277         if (!params->yieldblock)
278                 return false;
279
280         for (unsigned int i = 0; i < get_num_threads(); i++) {
281                 thread_id_t tid = int_to_id(i);
282                 Thread *t = get_thread(tid);
283                 if (t->get_pending() && t->get_pending()->is_yield())
284                         return true;
285         }
286         return false;
287 }
288
289 /**
290  * Check if this is a complete execution. That is, have all thread completed
291  * execution (rather than exiting because sleep sets have forced a redundant
292  * execution).
293  *
294  * @return True if the execution is complete.
295  */
296 bool ModelExecution::is_complete_execution() const
297 {
298         if (is_yieldblocked())
299                 return false;
300         for (unsigned int i = 0; i < get_num_threads(); i++)
301                 if (is_enabled(int_to_id(i)))
302                         return false;
303         return true;
304 }
305
306 /**
307  * @brief Find the last fence-related backtracking conflict for a ModelAction
308  *
309  * This function performs the search for the most recent conflicting action
310  * against which we should perform backtracking, as affected by fence
311  * operations. This includes pairs of potentially-synchronizing actions which
312  * occur due to fence-acquire or fence-release, and hence should be explored in
313  * the opposite execution order.
314  *
315  * @param act The current action
316  * @return The most recent action which conflicts with act due to fences
317  */
318 ModelAction * ModelExecution::get_last_fence_conflict(ModelAction *act) const
319 {
320         /* Only perform release/acquire fence backtracking for stores */
321         if (!act->is_write())
322                 return NULL;
323
324         /* Find a fence-release (or, act is a release) */
325         ModelAction *last_release;
326         if (act->is_release())
327                 last_release = act;
328         else
329                 last_release = get_last_fence_release(act->get_tid());
330         if (!last_release)
331                 return NULL;
332
333         /* Skip past the release */
334         const action_list_t *list = &action_trace;
335         action_list_t::const_reverse_iterator rit;
336         for (rit = list->rbegin(); rit != list->rend(); rit++)
337                 if (*rit == last_release)
338                         break;
339         ASSERT(rit != list->rend());
340
341         /* Find a prior:
342          *   load-acquire
343          * or
344          *   load --sb-> fence-acquire */
345         ModelVector<ModelAction *> acquire_fences(get_num_threads(), NULL);
346         ModelVector<ModelAction *> prior_loads(get_num_threads(), NULL);
347         bool found_acquire_fences = false;
348         for ( ; rit != list->rend(); rit++) {
349                 ModelAction *prev = *rit;
350                 if (act->same_thread(prev))
351                         continue;
352
353                 int tid = id_to_int(prev->get_tid());
354
355                 if (prev->is_read() && act->same_var(prev)) {
356                         if (prev->is_acquire()) {
357                                 /* Found most recent load-acquire, don't need
358                                  * to search for more fences */
359                                 if (!found_acquire_fences)
360                                         return NULL;
361                         } else {
362                                 prior_loads[tid] = prev;
363                         }
364                 }
365                 if (prev->is_acquire() && prev->is_fence() && !acquire_fences[tid]) {
366                         found_acquire_fences = true;
367                         acquire_fences[tid] = prev;
368                 }
369         }
370
371         ModelAction *latest_backtrack = NULL;
372         for (unsigned int i = 0; i < acquire_fences.size(); i++)
373                 if (acquire_fences[i] && prior_loads[i])
374                         if (!latest_backtrack || *latest_backtrack < *acquire_fences[i])
375                                 latest_backtrack = acquire_fences[i];
376         return latest_backtrack;
377 }
378
379 /**
380  * @brief Find the last backtracking conflict for a ModelAction
381  *
382  * This function performs the search for the most recent conflicting action
383  * against which we should perform backtracking. This primary includes pairs of
384  * synchronizing actions which should be explored in the opposite execution
385  * order.
386  *
387  * @param act The current action
388  * @return The most recent action which conflicts with act
389  */
390 ModelAction * ModelExecution::get_last_conflict(ModelAction *act) const
391 {
392         switch (act->get_type()) {
393         case ATOMIC_FENCE:
394                 /* Only seq-cst fences can (directly) cause backtracking */
395                 if (!act->is_seqcst())
396                         break;
397         case ATOMIC_READ:
398         case ATOMIC_WRITE:
399         case ATOMIC_RMW: {
400                 ModelAction *ret = NULL;
401
402                 /* linear search: from most recent to oldest */
403                 action_list_t *list = obj_map.get(act->get_location());
404                 action_list_t::reverse_iterator rit;
405                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
406                         ModelAction *prev = *rit;
407                         if (prev == act)
408                                 continue;
409                         if (prev->could_synchronize_with(act)) {
410                                 ret = prev;
411                                 break;
412                         }
413                 }
414
415                 ModelAction *ret2 = get_last_fence_conflict(act);
416                 if (!ret2)
417                         return ret;
418                 if (!ret)
419                         return ret2;
420                 if (*ret < *ret2)
421                         return ret2;
422                 return ret;
423         }
424         case ATOMIC_LOCK:
425         case ATOMIC_TRYLOCK: {
426                 /* linear search: from most recent to oldest */
427                 action_list_t *list = obj_map.get(act->get_location());
428                 action_list_t::reverse_iterator rit;
429                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
430                         ModelAction *prev = *rit;
431                         if (act->is_conflicting_lock(prev))
432                                 return prev;
433                 }
434                 break;
435         }
436         case ATOMIC_UNLOCK: {
437                 /* linear search: from most recent to oldest */
438                 action_list_t *list = obj_map.get(act->get_location());
439                 action_list_t::reverse_iterator rit;
440                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
441                         ModelAction *prev = *rit;
442                         if (!act->same_thread(prev) && prev->is_failed_trylock())
443                                 return prev;
444                 }
445                 break;
446         }
447         case ATOMIC_WAIT: {
448                 /* linear search: from most recent to oldest */
449                 action_list_t *list = obj_map.get(act->get_location());
450                 action_list_t::reverse_iterator rit;
451                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
452                         ModelAction *prev = *rit;
453                         if (!act->same_thread(prev) && prev->is_failed_trylock())
454                                 return prev;
455                         if (!act->same_thread(prev) && prev->is_notify())
456                                 return prev;
457                 }
458                 break;
459         }
460
461         case ATOMIC_NOTIFY_ALL:
462         case ATOMIC_NOTIFY_ONE: {
463                 /* linear search: from most recent to oldest */
464                 action_list_t *list = obj_map.get(act->get_location());
465                 action_list_t::reverse_iterator rit;
466                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
467                         ModelAction *prev = *rit;
468                         if (!act->same_thread(prev) && prev->is_wait())
469                                 return prev;
470                 }
471                 break;
472         }
473         default:
474                 break;
475         }
476         return NULL;
477 }
478
479 /** This method finds backtracking points where we should try to
480  * reorder the parameter ModelAction against.
481  *
482  * @param the ModelAction to find backtracking points for.
483  */
484 void ModelExecution::set_backtracking(ModelAction *act)
485 {
486         Thread *t = get_thread(act);
487         ModelAction *prev = get_last_conflict(act);
488         if (prev == NULL)
489                 return;
490
491         Node *node = prev->get_node()->get_parent();
492
493         /* See Dynamic Partial Order Reduction (addendum), POPL '05 */
494         int low_tid, high_tid;
495         if (node->enabled_status(t->get_id()) == THREAD_ENABLED) {
496                 low_tid = id_to_int(act->get_tid());
497                 high_tid = low_tid + 1;
498         } else {
499                 low_tid = 0;
500                 high_tid = get_num_threads();
501         }
502
503         for (int i = low_tid; i < high_tid; i++) {
504                 thread_id_t tid = int_to_id(i);
505
506                 /* Make sure this thread can be enabled here. */
507                 if (i >= node->get_num_threads())
508                         break;
509
510                 /* See Dynamic Partial Order Reduction (addendum), POPL '05 */
511                 /* Don't backtrack into a point where the thread is disabled or sleeping. */
512                 if (node->enabled_status(tid) != THREAD_ENABLED)
513                         continue;
514
515                 /* Check if this has been explored already */
516                 if (node->has_been_explored(tid))
517                         continue;
518
519                 /* See if fairness allows */
520                 if (params->fairwindow != 0 && !node->has_priority(tid)) {
521                         bool unfair = false;
522                         for (int t = 0; t < node->get_num_threads(); t++) {
523                                 thread_id_t tother = int_to_id(t);
524                                 if (node->is_enabled(tother) && node->has_priority(tother)) {
525                                         unfair = true;
526                                         break;
527                                 }
528                         }
529                         if (unfair)
530                                 continue;
531                 }
532
533                 /* See if CHESS-like yield fairness allows */
534                 if (params->yieldon) {
535                         bool unfair = false;
536                         for (int t = 0; t < node->get_num_threads(); t++) {
537                                 thread_id_t tother = int_to_id(t);
538                                 if (node->is_enabled(tother) && node->has_priority_over(tid, tother)) {
539                                         unfair = true;
540                                         break;
541                                 }
542                         }
543                         if (unfair)
544                                 continue;
545                 }
546
547                 /* Cache the latest backtracking point */
548                 set_latest_backtrack(prev);
549
550                 /* If this is a new backtracking point, mark the tree */
551                 if (!node->set_backtrack(tid))
552                         continue;
553                 DEBUG("Setting backtrack: conflict = %d, instead tid = %d\n",
554                                         id_to_int(prev->get_tid()),
555                                         id_to_int(t->get_id()));
556                 if (DBG_ENABLED()) {
557                         prev->print();
558                         act->print();
559                 }
560         }
561 }
562
563 /**
564  * @brief Cache the a backtracking point as the "most recent", if eligible
565  *
566  * Note that this does not prepare the NodeStack for this backtracking
567  * operation, it only caches the action on a per-execution basis
568  *
569  * @param act The operation at which we should explore a different next action
570  * (i.e., backtracking point)
571  * @return True, if this action is now the most recent backtracking point;
572  * false otherwise
573  */
574 bool ModelExecution::set_latest_backtrack(ModelAction *act)
575 {
576         if (!priv->next_backtrack || *act > *priv->next_backtrack) {
577                 priv->next_backtrack = act;
578                 return true;
579         }
580         return false;
581 }
582
583 /**
584  * Returns last backtracking point. The model checker will explore a different
585  * path for this point in the next execution.
586  * @return The ModelAction at which the next execution should diverge.
587  */
588 ModelAction * ModelExecution::get_next_backtrack()
589 {
590         ModelAction *next = priv->next_backtrack;
591         priv->next_backtrack = NULL;
592         return next;
593 }
594
595 /**
596  * Processes a read model action.
597  * @param curr is the read model action to process.
598  * @return True if processing this read updates the mo_graph.
599  */
600 bool ModelExecution::process_read(ModelAction *curr)
601 {
602         Node *node = curr->get_node();
603         while (true) {
604                 bool updated = false;
605                 switch (node->get_read_from_status()) {
606                 case READ_FROM_PAST: {
607                         const ModelAction *rf = node->get_read_from_past();
608                         ASSERT(rf);
609
610                         mo_graph->startChanges();
611
612                         ASSERT(!is_infeasible());
613                         if (!check_recency(curr, rf)) {
614                                 if (node->increment_read_from()) {
615                                         mo_graph->rollbackChanges();
616                                         continue;
617                                 } else {
618                                         priv->too_many_reads = true;
619                                 }
620                         }
621
622                         updated = r_modification_order(curr, rf);
623                         read_from(curr, rf);
624                         mo_graph->commitChanges();
625                         mo_check_promises(curr, true);
626                         break;
627                 }
628                 case READ_FROM_PROMISE: {
629                         Promise *promise = curr->get_node()->get_read_from_promise();
630                         if (promise->add_reader(curr))
631                                 priv->failed_promise = true;
632                         curr->set_read_from_promise(promise);
633                         mo_graph->startChanges();
634                         if (!check_recency(curr, promise))
635                                 priv->too_many_reads = true;
636                         updated = r_modification_order(curr, promise);
637                         mo_graph->commitChanges();
638                         break;
639                 }
640                 case READ_FROM_FUTURE: {
641                         /* Read from future value */
642                         struct future_value fv = node->get_future_value();
643                         Promise *promise = new Promise(this, curr, fv);
644                         curr->set_read_from_promise(promise);
645                         promises.push_back(promise);
646                         mo_graph->startChanges();
647                         updated = r_modification_order(curr, promise);
648                         mo_graph->commitChanges();
649                         break;
650                 }
651                 default:
652                         ASSERT(false);
653                 }
654                 get_thread(curr)->set_return_value(curr->get_return_value());
655                 return updated;
656         }
657 }
658
659 /**
660  * Processes a lock, trylock, or unlock model action.  @param curr is
661  * the read model action to process.
662  *
663  * The try lock operation checks whether the lock is taken.  If not,
664  * it falls to the normal lock operation case.  If so, it returns
665  * fail.
666  *
667  * The lock operation has already been checked that it is enabled, so
668  * it just grabs the lock and synchronizes with the previous unlock.
669  *
670  * The unlock operation has to re-enable all of the threads that are
671  * waiting on the lock.
672  *
673  * @return True if synchronization was updated; false otherwise
674  */
675 bool ModelExecution::process_mutex(ModelAction *curr)
676 {
677         std::mutex *mutex = curr->get_mutex();
678         struct std::mutex_state *state = NULL;
679
680         if (mutex)
681                 state = mutex->get_state();
682
683         switch (curr->get_type()) {
684         case ATOMIC_TRYLOCK: {
685                 bool success = !state->locked;
686                 curr->set_try_lock(success);
687                 if (!success) {
688                         get_thread(curr)->set_return_value(0);
689                         break;
690                 }
691                 get_thread(curr)->set_return_value(1);
692         }
693                 //otherwise fall into the lock case
694         case ATOMIC_LOCK: {
695                 if (curr->get_cv()->getClock(state->alloc_tid) <= state->alloc_clock)
696                         assert_bug("Lock access before initialization");
697                 state->locked = get_thread(curr);
698                 ModelAction *unlock = get_last_unlock(curr);
699                 //synchronize with the previous unlock statement
700                 if (unlock != NULL) {
701                         synchronize(unlock, curr);
702                         return true;
703                 }
704                 break;
705         }
706         case ATOMIC_WAIT:
707         case ATOMIC_UNLOCK: {
708                 /* wake up the other threads */
709                 for (unsigned int i = 0; i < get_num_threads(); i++) {
710                         Thread *t = get_thread(int_to_id(i));
711                         Thread *curr_thrd = get_thread(curr);
712                         if (t->waiting_on() == curr_thrd && t->get_pending()->is_lock())
713                                 scheduler->wake(t);
714                 }
715
716                 /* unlock the lock - after checking who was waiting on it */
717                 state->locked = NULL;
718
719                 if (!curr->is_wait())
720                         break; /* The rest is only for ATOMIC_WAIT */
721
722                 /* Should we go to sleep? (simulate spurious failures) */
723                 if (curr->get_node()->get_misc() == 0) {
724                         get_safe_ptr_action(&condvar_waiters_map, curr->get_location())->push_back(curr);
725                         /* disable us */
726                         scheduler->sleep(get_thread(curr));
727                 }
728                 break;
729         }
730         case ATOMIC_NOTIFY_ALL: {
731                 action_list_t *waiters = get_safe_ptr_action(&condvar_waiters_map, curr->get_location());
732                 //activate all the waiting threads
733                 for (action_list_t::iterator rit = waiters->begin(); rit != waiters->end(); rit++) {
734                         scheduler->wake(get_thread(*rit));
735                 }
736                 waiters->clear();
737                 break;
738         }
739         case ATOMIC_NOTIFY_ONE: {
740                 action_list_t *waiters = get_safe_ptr_action(&condvar_waiters_map, curr->get_location());
741                 int wakeupthread = curr->get_node()->get_misc();
742                 action_list_t::iterator it = waiters->begin();
743                 advance(it, wakeupthread);
744                 scheduler->wake(get_thread(*it));
745                 waiters->erase(it);
746                 break;
747         }
748
749         default:
750                 ASSERT(0);
751         }
752         return false;
753 }
754
755 /**
756  * @brief Check if the current pending promises allow a future value to be sent
757  *
758  * It is unsafe to pass a future value back if there exists a pending promise Pr
759  * such that:
760  *
761  *    reader --exec-> Pr --exec-> writer
762  *
763  * If such Pr exists, we must save the pending future value until Pr is
764  * resolved.
765  *
766  * @param writer The operation which sends the future value. Must be a write.
767  * @param reader The operation which will observe the value. Must be a read.
768  * @return True if the future value can be sent now; false if it must wait.
769  */
770 bool ModelExecution::promises_may_allow(const ModelAction *writer,
771                 const ModelAction *reader) const
772 {
773         for (int i = promises.size() - 1; i >= 0; i--) {
774                 ModelAction *pr = promises[i]->get_reader(0);
775                 //reader is after promise...doesn't cross any promise
776                 if (*reader > *pr)
777                         return true;
778                 //writer is after promise, reader before...bad...
779                 if (*writer > *pr)
780                         return false;
781         }
782         return true;
783 }
784
785 /**
786  * @brief Add a future value to a reader
787  *
788  * This function performs a few additional checks to ensure that the future
789  * value can be feasibly observed by the reader
790  *
791  * @param writer The operation whose value is sent. Must be a write.
792  * @param reader The read operation which may read the future value. Must be a read.
793  */
794 void ModelExecution::add_future_value(const ModelAction *writer, ModelAction *reader)
795 {
796         /* Do more ambitious checks now that mo is more complete */
797         if (!mo_may_allow(writer, reader))
798                 return;
799
800         Node *node = reader->get_node();
801
802         /* Find an ancestor thread which exists at the time of the reader */
803         Thread *write_thread = get_thread(writer);
804         while (id_to_int(write_thread->get_id()) >= node->get_num_threads())
805                 write_thread = write_thread->get_parent();
806
807         struct future_value fv = {
808                 writer->get_write_value(),
809                 writer->get_seq_number() + params->maxfuturedelay,
810                 write_thread->get_id(),
811         };
812         if (node->add_future_value(fv))
813                 set_latest_backtrack(reader);
814 }
815
816 /**
817  * Process a write ModelAction
818  * @param curr The ModelAction to process
819  * @param work The work queue, for adding fixup work
820  * @return True if the mo_graph was updated or promises were resolved
821  */
822 bool ModelExecution::process_write(ModelAction *curr, work_queue_t *work)
823 {
824         /* Readers to which we may send our future value */
825         ModelVector<ModelAction *> send_fv;
826
827         const ModelAction *earliest_promise_reader;
828         bool updated_promises = false;
829
830         bool updated_mod_order = w_modification_order(curr, &send_fv);
831         Promise *promise = pop_promise_to_resolve(curr);
832
833         if (promise) {
834                 earliest_promise_reader = promise->get_reader(0);
835                 updated_promises = resolve_promise(curr, promise, work);
836         } else
837                 earliest_promise_reader = NULL;
838
839         for (unsigned int i = 0; i < send_fv.size(); i++) {
840                 ModelAction *read = send_fv[i];
841
842                 /* Don't send future values to reads after the Promise we resolve */
843                 if (!earliest_promise_reader || *read < *earliest_promise_reader) {
844                         /* Check if future value can be sent immediately */
845                         if (promises_may_allow(curr, read)) {
846                                 add_future_value(curr, read);
847                         } else {
848                                 futurevalues.push_back(PendingFutureValue(curr, read));
849                         }
850                 }
851         }
852
853         /* Check the pending future values */
854         for (int i = (int)futurevalues.size() - 1; i >= 0; i--) {
855                 struct PendingFutureValue pfv = futurevalues[i];
856                 if (promises_may_allow(pfv.writer, pfv.reader)) {
857                         add_future_value(pfv.writer, pfv.reader);
858                         futurevalues.erase(futurevalues.begin() + i);
859                 }
860         }
861
862         mo_graph->commitChanges();
863         mo_check_promises(curr, false);
864
865         get_thread(curr)->set_return_value(VALUE_NONE);
866         return updated_mod_order || updated_promises;
867 }
868
869 /**
870  * Process a fence ModelAction
871  * @param curr The ModelAction to process
872  * @return True if synchronization was updated
873  */
874 bool ModelExecution::process_fence(ModelAction *curr)
875 {
876         /*
877          * fence-relaxed: no-op
878          * fence-release: only log the occurence (not in this function), for
879          *   use in later synchronization
880          * fence-acquire (this function): search for hypothetical release
881          *   sequences
882          * fence-seq-cst: MO constraints formed in {r,w}_modification_order
883          */
884         bool updated = false;
885         if (curr->is_acquire()) {
886                 action_list_t *list = &action_trace;
887                 action_list_t::reverse_iterator rit;
888                 /* Find X : is_read(X) && X --sb-> curr */
889                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
890                         ModelAction *act = *rit;
891                         if (act == curr)
892                                 continue;
893                         if (act->get_tid() != curr->get_tid())
894                                 continue;
895                         /* Stop at the beginning of the thread */
896                         if (act->is_thread_start())
897                                 break;
898                         /* Stop once we reach a prior fence-acquire */
899                         if (act->is_fence() && act->is_acquire())
900                                 break;
901                         if (!act->is_read())
902                                 continue;
903                         /* read-acquire will find its own release sequences */
904                         if (act->is_acquire())
905                                 continue;
906
907                         /* Establish hypothetical release sequences */
908                         rel_heads_list_t release_heads;
909                         get_release_seq_heads(curr, act, &release_heads);
910                         for (unsigned int i = 0; i < release_heads.size(); i++)
911                                 synchronize(release_heads[i], curr);
912                         if (release_heads.size() != 0)
913                                 updated = true;
914                 }
915         }
916         return updated;
917 }
918
919 /**
920  * @brief Process the current action for thread-related activity
921  *
922  * Performs current-action processing for a THREAD_* ModelAction. Proccesses
923  * may include setting Thread status, completing THREAD_FINISH/THREAD_JOIN
924  * synchronization, etc.  This function is a no-op for non-THREAD actions
925  * (e.g., ATOMIC_{READ,WRITE,RMW,LOCK}, etc.)
926  *
927  * @param curr The current action
928  * @return True if synchronization was updated or a thread completed
929  */
930 bool ModelExecution::process_thread_action(ModelAction *curr)
931 {
932         bool updated = false;
933
934         switch (curr->get_type()) {
935         case THREAD_CREATE: {
936                 thrd_t *thrd = (thrd_t *)curr->get_location();
937                 struct thread_params *params = (struct thread_params *)curr->get_value();
938                 Thread *th = new Thread(get_next_id(), thrd, params->func, params->arg, get_thread(curr));
939                 add_thread(th);
940                 th->set_creation(curr);
941                 /* Promises can be satisfied by children */
942                 for (unsigned int i = 0; i < promises.size(); i++) {
943                         Promise *promise = promises[i];
944                         if (promise->thread_is_available(curr->get_tid()))
945                                 promise->add_thread(th->get_id());
946                 }
947                 break;
948         }
949         case THREAD_JOIN: {
950                 Thread *blocking = curr->get_thread_operand();
951                 ModelAction *act = get_last_action(blocking->get_id());
952                 synchronize(act, curr);
953                 updated = true; /* trigger rel-seq checks */
954                 break;
955         }
956         case THREAD_FINISH: {
957                 Thread *th = get_thread(curr);
958                 /* Wake up any joining threads */
959                 for (unsigned int i = 0; i < get_num_threads(); i++) {
960                         Thread *waiting = get_thread(int_to_id(i));
961                         if (waiting->waiting_on() == th &&
962                                         waiting->get_pending()->is_thread_join())
963                                 scheduler->wake(waiting);
964                 }
965                 th->complete();
966                 /* Completed thread can't satisfy promises */
967                 for (unsigned int i = 0; i < promises.size(); i++) {
968                         Promise *promise = promises[i];
969                         if (promise->thread_is_available(th->get_id()))
970                                 if (promise->eliminate_thread(th->get_id()))
971                                         priv->failed_promise = true;
972                 }
973                 updated = true; /* trigger rel-seq checks */
974                 break;
975         }
976         case THREAD_START: {
977                 check_promises(curr->get_tid(), NULL, curr->get_cv());
978                 break;
979         }
980         default:
981                 break;
982         }
983
984         return updated;
985 }
986
987 /**
988  * @brief Process the current action for release sequence fixup activity
989  *
990  * Performs model-checker release sequence fixups for the current action,
991  * forcing a single pending release sequence to break (with a given, potential
992  * "loose" write) or to complete (i.e., synchronize). If a pending release
993  * sequence forms a complete release sequence, then we must perform the fixup
994  * synchronization, mo_graph additions, etc.
995  *
996  * @param curr The current action; must be a release sequence fixup action
997  * @param work_queue The work queue to which to add work items as they are
998  * generated
999  */
1000 void ModelExecution::process_relseq_fixup(ModelAction *curr, work_queue_t *work_queue)
1001 {
1002         const ModelAction *write = curr->get_node()->get_relseq_break();
1003         struct release_seq *sequence = pending_rel_seqs.back();
1004         pending_rel_seqs.pop_back();
1005         ASSERT(sequence);
1006         ModelAction *acquire = sequence->acquire;
1007         const ModelAction *rf = sequence->rf;
1008         const ModelAction *release = sequence->release;
1009         ASSERT(acquire);
1010         ASSERT(release);
1011         ASSERT(rf);
1012         ASSERT(release->same_thread(rf));
1013
1014         if (write == NULL) {
1015                 /**
1016                  * @todo Forcing a synchronization requires that we set
1017                  * modification order constraints. For instance, we can't allow
1018                  * a fixup sequence in which two separate read-acquire
1019                  * operations read from the same sequence, where the first one
1020                  * synchronizes and the other doesn't. Essentially, we can't
1021                  * allow any writes to insert themselves between 'release' and
1022                  * 'rf'
1023                  */
1024
1025                 /* Must synchronize */
1026                 if (!synchronize(release, acquire))
1027                         return;
1028
1029                 /* Propagate the changed clock vector */
1030                 propagate_clockvector(acquire, work_queue);
1031         } else {
1032                 /* Break release sequence with new edges:
1033                  *   release --mo--> write --mo--> rf */
1034                 mo_graph->addEdge(release, write);
1035                 mo_graph->addEdge(write, rf);
1036         }
1037
1038         /* See if we have realized a data race */
1039         checkDataRaces();
1040 }
1041
1042 /**
1043  * Initialize the current action by performing one or more of the following
1044  * actions, as appropriate: merging RMWR and RMWC/RMW actions, stepping forward
1045  * in the NodeStack, manipulating backtracking sets, allocating and
1046  * initializing clock vectors, and computing the promises to fulfill.
1047  *
1048  * @param curr The current action, as passed from the user context; may be
1049  * freed/invalidated after the execution of this function, with a different
1050  * action "returned" its place (pass-by-reference)
1051  * @return True if curr is a newly-explored action; false otherwise
1052  */
1053 bool ModelExecution::initialize_curr_action(ModelAction **curr)
1054 {
1055         ModelAction *newcurr;
1056
1057         if ((*curr)->is_rmwc() || (*curr)->is_rmw()) {
1058                 newcurr = process_rmw(*curr);
1059                 delete *curr;
1060
1061                 if (newcurr->is_rmw())
1062                         compute_promises(newcurr);
1063
1064                 *curr = newcurr;
1065                 return false;
1066         }
1067
1068         (*curr)->set_seq_number(get_next_seq_num());
1069
1070         newcurr = node_stack->explore_action(*curr, scheduler->get_enabled_array());
1071         if (newcurr) {
1072                 /* First restore type and order in case of RMW operation */
1073                 if ((*curr)->is_rmwr())
1074                         newcurr->copy_typeandorder(*curr);
1075
1076                 ASSERT((*curr)->get_location() == newcurr->get_location());
1077                 newcurr->copy_from_new(*curr);
1078
1079                 /* Discard duplicate ModelAction; use action from NodeStack */
1080                 delete *curr;
1081
1082                 /* Always compute new clock vector */
1083                 newcurr->create_cv(get_parent_action(newcurr->get_tid()));
1084
1085                 *curr = newcurr;
1086                 return false; /* Action was explored previously */
1087         } else {
1088                 newcurr = *curr;
1089
1090                 /* Always compute new clock vector */
1091                 newcurr->create_cv(get_parent_action(newcurr->get_tid()));
1092
1093                 /* Assign most recent release fence */
1094                 newcurr->set_last_fence_release(get_last_fence_release(newcurr->get_tid()));
1095
1096                 /*
1097                  * Perform one-time actions when pushing new ModelAction onto
1098                  * NodeStack
1099                  */
1100                 if (newcurr->is_write())
1101                         compute_promises(newcurr);
1102                 else if (newcurr->is_relseq_fixup())
1103                         compute_relseq_breakwrites(newcurr);
1104                 else if (newcurr->is_wait())
1105                         newcurr->get_node()->set_misc_max(2);
1106                 else if (newcurr->is_notify_one()) {
1107                         newcurr->get_node()->set_misc_max(get_safe_ptr_action(&condvar_waiters_map, newcurr->get_location())->size());
1108                 }
1109                 return true; /* This was a new ModelAction */
1110         }
1111 }
1112
1113 /**
1114  * @brief Establish reads-from relation between two actions
1115  *
1116  * Perform basic operations involved with establishing a concrete rf relation,
1117  * including setting the ModelAction data and checking for release sequences.
1118  *
1119  * @param act The action that is reading (must be a read)
1120  * @param rf The action from which we are reading (must be a write)
1121  *
1122  * @return True if this read established synchronization
1123  */
1124 bool ModelExecution::read_from(ModelAction *act, const ModelAction *rf)
1125 {
1126         ASSERT(rf);
1127         ASSERT(rf->is_write());
1128
1129         act->set_read_from(rf);
1130         if (act->is_acquire()) {
1131                 rel_heads_list_t release_heads;
1132                 get_release_seq_heads(act, act, &release_heads);
1133                 int num_heads = release_heads.size();
1134                 for (unsigned int i = 0; i < release_heads.size(); i++)
1135                         if (!synchronize(release_heads[i], act))
1136                                 num_heads--;
1137                 return num_heads > 0;
1138         }
1139         return false;
1140 }
1141
1142 /**
1143  * @brief Synchronizes two actions
1144  *
1145  * When A synchronizes with B (or A --sw-> B), B inherits A's clock vector.
1146  * This function performs the synchronization as well as providing other hooks
1147  * for other checks along with synchronization.
1148  *
1149  * @param first The left-hand side of the synchronizes-with relation
1150  * @param second The right-hand side of the synchronizes-with relation
1151  * @return True if the synchronization was successful (i.e., was consistent
1152  * with the execution order); false otherwise
1153  */
1154 bool ModelExecution::synchronize(const ModelAction *first, ModelAction *second)
1155 {
1156         if (*second < *first) {
1157                 set_bad_synchronization();
1158                 return false;
1159         }
1160         check_promises(first->get_tid(), second->get_cv(), first->get_cv());
1161         return second->synchronize_with(first);
1162 }
1163
1164 /**
1165  * Check promises and eliminate potentially-satisfying threads when a thread is
1166  * blocked (e.g., join, lock). A thread which is waiting on another thread can
1167  * no longer satisfy a promise generated from that thread.
1168  *
1169  * @param blocker The thread on which a thread is waiting
1170  * @param waiting The waiting thread
1171  */
1172 void ModelExecution::thread_blocking_check_promises(Thread *blocker, Thread *waiting)
1173 {
1174         for (unsigned int i = 0; i < promises.size(); i++) {
1175                 Promise *promise = promises[i];
1176                 if (!promise->thread_is_available(waiting->get_id()))
1177                         continue;
1178                 for (unsigned int j = 0; j < promise->get_num_readers(); j++) {
1179                         ModelAction *reader = promise->get_reader(j);
1180                         if (reader->get_tid() != blocker->get_id())
1181                                 continue;
1182                         if (promise->eliminate_thread(waiting->get_id())) {
1183                                 /* Promise has failed */
1184                                 priv->failed_promise = true;
1185                         } else {
1186                                 /* Only eliminate the 'waiting' thread once */
1187                                 return;
1188                         }
1189                 }
1190         }
1191 }
1192
1193 /**
1194  * @brief Check whether a model action is enabled.
1195  *
1196  * Checks whether an operation would be successful (i.e., is a lock already
1197  * locked, or is the joined thread already complete).
1198  *
1199  * For yield-blocking, yields are never enabled.
1200  *
1201  * @param curr is the ModelAction to check whether it is enabled.
1202  * @return a bool that indicates whether the action is enabled.
1203  */
1204 bool ModelExecution::check_action_enabled(ModelAction *curr) {
1205         if (curr->is_lock()) {
1206                 std::mutex *lock = curr->get_mutex();
1207                 struct std::mutex_state *state = lock->get_state();
1208                 if (state->locked)
1209                         return false;
1210         } else if (curr->is_thread_join()) {
1211                 Thread *blocking = curr->get_thread_operand();
1212                 if (!blocking->is_complete()) {
1213                         thread_blocking_check_promises(blocking, get_thread(curr));
1214                         return false;
1215                 }
1216         } else if (params->yieldblock && curr->is_yield()) {
1217                 return false;
1218         }
1219
1220         return true;
1221 }
1222
1223 /**
1224  * This is the heart of the model checker routine. It performs model-checking
1225  * actions corresponding to a given "current action." Among other processes, it
1226  * calculates reads-from relationships, updates synchronization clock vectors,
1227  * forms a memory_order constraints graph, and handles replay/backtrack
1228  * execution when running permutations of previously-observed executions.
1229  *
1230  * @param curr The current action to process
1231  * @return The ModelAction that is actually executed; may be different than
1232  * curr
1233  */
1234 ModelAction * ModelExecution::check_current_action(ModelAction *curr)
1235 {
1236         ASSERT(curr);
1237         bool second_part_of_rmw = curr->is_rmwc() || curr->is_rmw();
1238         bool newly_explored = initialize_curr_action(&curr);
1239
1240         DBG();
1241
1242         wake_up_sleeping_actions(curr);
1243
1244         /* Compute fairness information for CHESS yield algorithm */
1245         if (params->yieldon) {
1246                 curr->get_node()->update_yield(scheduler);
1247         }
1248
1249         /* Add the action to lists before any other model-checking tasks */
1250         if (!second_part_of_rmw)
1251                 add_action_to_lists(curr);
1252
1253         /* Build may_read_from set for newly-created actions */
1254         if (newly_explored && curr->is_read())
1255                 build_may_read_from(curr);
1256
1257         /* Initialize work_queue with the "current action" work */
1258         work_queue_t work_queue(1, CheckCurrWorkEntry(curr));
1259         while (!work_queue.empty() && !has_asserted()) {
1260                 WorkQueueEntry work = work_queue.front();
1261                 work_queue.pop_front();
1262
1263                 switch (work.type) {
1264                 case WORK_CHECK_CURR_ACTION: {
1265                         ModelAction *act = work.action;
1266                         bool update = false; /* update this location's release seq's */
1267                         bool update_all = false; /* update all release seq's */
1268
1269                         if (process_thread_action(curr))
1270                                 update_all = true;
1271
1272                         if (act->is_read() && !second_part_of_rmw && process_read(act))
1273                                 update = true;
1274
1275                         if (act->is_write() && process_write(act, &work_queue))
1276                                 update = true;
1277
1278                         if (act->is_fence() && process_fence(act))
1279                                 update_all = true;
1280
1281                         if (act->is_mutex_op() && process_mutex(act))
1282                                 update_all = true;
1283
1284                         if (act->is_relseq_fixup())
1285                                 process_relseq_fixup(curr, &work_queue);
1286
1287                         if (update_all)
1288                                 work_queue.push_back(CheckRelSeqWorkEntry(NULL));
1289                         else if (update)
1290                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
1291                         break;
1292                 }
1293                 case WORK_CHECK_RELEASE_SEQ:
1294                         resolve_release_sequences(work.location, &work_queue);
1295                         break;
1296                 case WORK_CHECK_MO_EDGES: {
1297                         /** @todo Complete verification of work_queue */
1298                         ModelAction *act = work.action;
1299                         bool updated = false;
1300
1301                         if (act->is_read()) {
1302                                 const ModelAction *rf = act->get_reads_from();
1303                                 const Promise *promise = act->get_reads_from_promise();
1304                                 if (rf) {
1305                                         if (r_modification_order(act, rf))
1306                                                 updated = true;
1307                                 } else if (promise) {
1308                                         if (r_modification_order(act, promise))
1309                                                 updated = true;
1310                                 }
1311                         }
1312                         if (act->is_write()) {
1313                                 if (w_modification_order(act, NULL))
1314                                         updated = true;
1315                         }
1316                         mo_graph->commitChanges();
1317
1318                         if (updated)
1319                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
1320                         break;
1321                 }
1322                 default:
1323                         ASSERT(false);
1324                         break;
1325                 }
1326         }
1327
1328         check_curr_backtracking(curr);
1329         set_backtracking(curr);
1330         return curr;
1331 }
1332
1333 void ModelExecution::check_curr_backtracking(ModelAction *curr)
1334 {
1335         Node *currnode = curr->get_node();
1336         Node *parnode = currnode->get_parent();
1337
1338         if ((parnode && !parnode->backtrack_empty()) ||
1339                          !currnode->misc_empty() ||
1340                          !currnode->read_from_empty() ||
1341                          !currnode->promise_empty() ||
1342                          !currnode->relseq_break_empty()) {
1343                 set_latest_backtrack(curr);
1344         }
1345 }
1346
1347 bool ModelExecution::promises_expired() const
1348 {
1349         for (unsigned int i = 0; i < promises.size(); i++) {
1350                 Promise *promise = promises[i];
1351                 if (promise->get_expiration() < priv->used_sequence_numbers)
1352                         return true;
1353         }
1354         return false;
1355 }
1356
1357 /**
1358  * This is the strongest feasibility check available.
1359  * @return whether the current trace (partial or complete) must be a prefix of
1360  * a feasible trace.
1361  */
1362 bool ModelExecution::isfeasibleprefix() const
1363 {
1364         return pending_rel_seqs.size() == 0 && is_feasible_prefix_ignore_relseq();
1365 }
1366
1367 /**
1368  * Print disagnostic information about an infeasible execution
1369  * @param prefix A string to prefix the output with; if NULL, then a default
1370  * message prefix will be provided
1371  */
1372 void ModelExecution::print_infeasibility(const char *prefix) const
1373 {
1374         char buf[100];
1375         char *ptr = buf;
1376         if (mo_graph->checkForCycles())
1377                 ptr += sprintf(ptr, "[mo cycle]");
1378         if (priv->failed_promise)
1379                 ptr += sprintf(ptr, "[failed promise]");
1380         if (priv->too_many_reads)
1381                 ptr += sprintf(ptr, "[too many reads]");
1382         if (priv->no_valid_reads)
1383                 ptr += sprintf(ptr, "[no valid reads-from]");
1384         if (priv->bad_synchronization)
1385                 ptr += sprintf(ptr, "[bad sw ordering]");
1386         if (promises_expired())
1387                 ptr += sprintf(ptr, "[promise expired]");
1388         if (promises.size() != 0)
1389                 ptr += sprintf(ptr, "[unresolved promise]");
1390         if (ptr != buf)
1391                 model_print("%s: %s", prefix ? prefix : "Infeasible", buf);
1392 }
1393
1394 /**
1395  * Returns whether the current completed trace is feasible, except for pending
1396  * release sequences.
1397  */
1398 bool ModelExecution::is_feasible_prefix_ignore_relseq() const
1399 {
1400         return !is_infeasible() && promises.size() == 0;
1401 }
1402
1403 /**
1404  * Check if the current partial trace is infeasible. Does not check any
1405  * end-of-execution flags, which might rule out the execution. Thus, this is
1406  * useful only for ruling an execution as infeasible.
1407  * @return whether the current partial trace is infeasible.
1408  */
1409 bool ModelExecution::is_infeasible() const
1410 {
1411         return mo_graph->checkForCycles() ||
1412                 priv->no_valid_reads ||
1413                 priv->failed_promise ||
1414                 priv->too_many_reads ||
1415                 priv->bad_synchronization ||
1416                 promises_expired();
1417 }
1418
1419 /** Close out a RMWR by converting previous RMWR into a RMW or READ. */
1420 ModelAction * ModelExecution::process_rmw(ModelAction *act) {
1421         ModelAction *lastread = get_last_action(act->get_tid());
1422         lastread->process_rmw(act);
1423         if (act->is_rmw()) {
1424                 if (lastread->get_reads_from())
1425                         mo_graph->addRMWEdge(lastread->get_reads_from(), lastread);
1426                 else
1427                         mo_graph->addRMWEdge(lastread->get_reads_from_promise(), lastread);
1428                 mo_graph->commitChanges();
1429         }
1430         return lastread;
1431 }
1432
1433 /**
1434  * A helper function for ModelExecution::check_recency, to check if the current
1435  * thread is able to read from a different write/promise for 'params.maxreads'
1436  * number of steps and if that write/promise should become visible (i.e., is
1437  * ordered later in the modification order). This helps model memory liveness.
1438  *
1439  * @param curr The current action. Must be a read.
1440  * @param rf The write/promise from which we plan to read
1441  * @param other_rf The write/promise from which we may read
1442  * @return True if we were able to read from other_rf for params.maxreads steps
1443  */
1444 template <typename T, typename U>
1445 bool ModelExecution::should_read_instead(const ModelAction *curr, const T *rf, const U *other_rf) const
1446 {
1447         /* Need a different write/promise */
1448         if (other_rf->equals(rf))
1449                 return false;
1450
1451         /* Only look for "newer" writes/promises */
1452         if (!mo_graph->checkReachable(rf, other_rf))
1453                 return false;
1454
1455         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1456         action_list_t *list = &(*thrd_lists)[id_to_int(curr->get_tid())];
1457         action_list_t::reverse_iterator rit = list->rbegin();
1458         ASSERT((*rit) == curr);
1459         /* Skip past curr */
1460         rit++;
1461
1462         /* Does this write/promise work for everyone? */
1463         for (int i = 0; i < params->maxreads; i++, rit++) {
1464                 ModelAction *act = *rit;
1465                 if (!act->may_read_from(other_rf))
1466                         return false;
1467         }
1468         return true;
1469 }
1470
1471 /**
1472  * Checks whether a thread has read from the same write or Promise for too many
1473  * times without seeing the effects of a later write/Promise.
1474  *
1475  * Basic idea:
1476  * 1) there must a different write/promise that we could read from,
1477  * 2) we must have read from the same write/promise in excess of maxreads times,
1478  * 3) that other write/promise must have been in the reads_from set for maxreads times, and
1479  * 4) that other write/promise must be mod-ordered after the write/promise we are reading.
1480  *
1481  * If so, we decide that the execution is no longer feasible.
1482  *
1483  * @param curr The current action. Must be a read.
1484  * @param rf The ModelAction/Promise from which we might read.
1485  * @return True if the read should succeed; false otherwise
1486  */
1487 template <typename T>
1488 bool ModelExecution::check_recency(ModelAction *curr, const T *rf) const
1489 {
1490         if (!params->maxreads)
1491                 return true;
1492
1493         //NOTE: Next check is just optimization, not really necessary....
1494         if (curr->get_node()->get_read_from_past_size() +
1495                         curr->get_node()->get_read_from_promise_size() <= 1)
1496                 return true;
1497
1498         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1499         int tid = id_to_int(curr->get_tid());
1500         ASSERT(tid < (int)thrd_lists->size());
1501         action_list_t *list = &(*thrd_lists)[tid];
1502         action_list_t::reverse_iterator rit = list->rbegin();
1503         ASSERT((*rit) == curr);
1504         /* Skip past curr */
1505         rit++;
1506
1507         action_list_t::reverse_iterator ritcopy = rit;
1508         /* See if we have enough reads from the same value */
1509         for (int count = 0; count < params->maxreads; ritcopy++, count++) {
1510                 if (ritcopy == list->rend())
1511                         return true;
1512                 ModelAction *act = *ritcopy;
1513                 if (!act->is_read())
1514                         return true;
1515                 if (act->get_reads_from_promise() && !act->get_reads_from_promise()->equals(rf))
1516                         return true;
1517                 if (act->get_reads_from() && !act->get_reads_from()->equals(rf))
1518                         return true;
1519                 if (act->get_node()->get_read_from_past_size() +
1520                                 act->get_node()->get_read_from_promise_size() <= 1)
1521                         return true;
1522         }
1523         for (int i = 0; i < curr->get_node()->get_read_from_past_size(); i++) {
1524                 const ModelAction *write = curr->get_node()->get_read_from_past(i);
1525                 if (should_read_instead(curr, rf, write))
1526                         return false; /* liveness failure */
1527         }
1528         for (int i = 0; i < curr->get_node()->get_read_from_promise_size(); i++) {
1529                 const Promise *promise = curr->get_node()->get_read_from_promise(i);
1530                 if (should_read_instead(curr, rf, promise))
1531                         return false; /* liveness failure */
1532         }
1533         return true;
1534 }
1535
1536 /**
1537  * @brief Updates the mo_graph with the constraints imposed from the current
1538  * read.
1539  *
1540  * Basic idea is the following: Go through each other thread and find
1541  * the last action that happened before our read.  Two cases:
1542  *
1543  * -# The action is a write: that write must either occur before
1544  * the write we read from or be the write we read from.
1545  * -# The action is a read: the write that that action read from
1546  * must occur before the write we read from or be the same write.
1547  *
1548  * @param curr The current action. Must be a read.
1549  * @param rf The ModelAction or Promise that curr reads from. Must be a write.
1550  * @return True if modification order edges were added; false otherwise
1551  */
1552 template <typename rf_type>
1553 bool ModelExecution::r_modification_order(ModelAction *curr, const rf_type *rf)
1554 {
1555         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1556         unsigned int i;
1557         bool added = false;
1558         ASSERT(curr->is_read());
1559
1560         /* Last SC fence in the current thread */
1561         ModelAction *last_sc_fence_local = get_last_seq_cst_fence(curr->get_tid(), NULL);
1562         ModelAction *last_sc_write = NULL;
1563         if (curr->is_seqcst())
1564                 last_sc_write = get_last_seq_cst_write(curr);
1565
1566         /* Iterate over all threads */
1567         for (i = 0; i < thrd_lists->size(); i++) {
1568                 /* Last SC fence in thread i */
1569                 ModelAction *last_sc_fence_thread_local = NULL;
1570                 if (int_to_id((int)i) != curr->get_tid())
1571                         last_sc_fence_thread_local = get_last_seq_cst_fence(int_to_id(i), NULL);
1572
1573                 /* Last SC fence in thread i, before last SC fence in current thread */
1574                 ModelAction *last_sc_fence_thread_before = NULL;
1575                 if (last_sc_fence_local)
1576                         last_sc_fence_thread_before = get_last_seq_cst_fence(int_to_id(i), last_sc_fence_local);
1577
1578                 /* Iterate over actions in thread, starting from most recent */
1579                 action_list_t *list = &(*thrd_lists)[i];
1580                 action_list_t::reverse_iterator rit;
1581                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1582                         ModelAction *act = *rit;
1583
1584                         /* Skip curr */
1585                         if (act == curr)
1586                                 continue;
1587                         /* Don't want to add reflexive edges on 'rf' */
1588                         if (act->equals(rf)) {
1589                                 if (act->happens_before(curr))
1590                                         break;
1591                                 else
1592                                         continue;
1593                         }
1594
1595                         if (act->is_write()) {
1596                                 /* C++, Section 29.3 statement 5 */
1597                                 if (curr->is_seqcst() && last_sc_fence_thread_local &&
1598                                                 *act < *last_sc_fence_thread_local) {
1599                                         added = mo_graph->addEdge(act, rf) || added;
1600                                         break;
1601                                 }
1602                                 /* C++, Section 29.3 statement 4 */
1603                                 else if (act->is_seqcst() && last_sc_fence_local &&
1604                                                 *act < *last_sc_fence_local) {
1605                                         added = mo_graph->addEdge(act, rf) || added;
1606                                         break;
1607                                 }
1608                                 /* C++, Section 29.3 statement 6 */
1609                                 else if (last_sc_fence_thread_before &&
1610                                                 *act < *last_sc_fence_thread_before) {
1611                                         added = mo_graph->addEdge(act, rf) || added;
1612                                         break;
1613                                 }
1614                         }
1615
1616                         /* C++, Section 29.3 statement 3 (second subpoint) */
1617                         if (curr->is_seqcst() && last_sc_write && act == last_sc_write) {
1618                                 added = mo_graph->addEdge(act, rf) || added;
1619                                 break;
1620                         }
1621
1622                         /*
1623                          * Include at most one act per-thread that "happens
1624                          * before" curr
1625                          */
1626                         if (act->happens_before(curr)) {
1627                                 if (act->is_write()) {
1628                                         added = mo_graph->addEdge(act, rf) || added;
1629                                 } else {
1630                                         const ModelAction *prevrf = act->get_reads_from();
1631                                         const Promise *prevrf_promise = act->get_reads_from_promise();
1632                                         if (prevrf) {
1633                                                 if (!prevrf->equals(rf))
1634                                                         added = mo_graph->addEdge(prevrf, rf) || added;
1635                                         } else if (!prevrf_promise->equals(rf)) {
1636                                                 added = mo_graph->addEdge(prevrf_promise, rf) || added;
1637                                         }
1638                                 }
1639                                 break;
1640                         }
1641                 }
1642         }
1643
1644         /*
1645          * All compatible, thread-exclusive promises must be ordered after any
1646          * concrete loads from the same thread
1647          */
1648         for (unsigned int i = 0; i < promises.size(); i++)
1649                 if (promises[i]->is_compatible_exclusive(curr))
1650                         added = mo_graph->addEdge(rf, promises[i]) || added;
1651
1652         return added;
1653 }
1654
1655 /**
1656  * Updates the mo_graph with the constraints imposed from the current write.
1657  *
1658  * Basic idea is the following: Go through each other thread and find
1659  * the lastest action that happened before our write.  Two cases:
1660  *
1661  * (1) The action is a write => that write must occur before
1662  * the current write
1663  *
1664  * (2) The action is a read => the write that that action read from
1665  * must occur before the current write.
1666  *
1667  * This method also handles two other issues:
1668  *
1669  * (I) Sequential Consistency: Making sure that if the current write is
1670  * seq_cst, that it occurs after the previous seq_cst write.
1671  *
1672  * (II) Sending the write back to non-synchronizing reads.
1673  *
1674  * @param curr The current action. Must be a write.
1675  * @param send_fv A vector for stashing reads to which we may pass our future
1676  * value. If NULL, then don't record any future values.
1677  * @return True if modification order edges were added; false otherwise
1678  */
1679 bool ModelExecution::w_modification_order(ModelAction *curr, ModelVector<ModelAction *> *send_fv)
1680 {
1681         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1682         unsigned int i;
1683         bool added = false;
1684         ASSERT(curr->is_write());
1685
1686         if (curr->is_seqcst()) {
1687                 /* We have to at least see the last sequentially consistent write,
1688                          so we are initialized. */
1689                 ModelAction *last_seq_cst = get_last_seq_cst_write(curr);
1690                 if (last_seq_cst != NULL) {
1691                         added = mo_graph->addEdge(last_seq_cst, curr) || added;
1692                 }
1693         }
1694
1695         /* Last SC fence in the current thread */
1696         ModelAction *last_sc_fence_local = get_last_seq_cst_fence(curr->get_tid(), NULL);
1697
1698         /* Iterate over all threads */
1699         for (i = 0; i < thrd_lists->size(); i++) {
1700                 /* Last SC fence in thread i, before last SC fence in current thread */
1701                 ModelAction *last_sc_fence_thread_before = NULL;
1702                 if (last_sc_fence_local && int_to_id((int)i) != curr->get_tid())
1703                         last_sc_fence_thread_before = get_last_seq_cst_fence(int_to_id(i), last_sc_fence_local);
1704
1705                 /* Iterate over actions in thread, starting from most recent */
1706                 action_list_t *list = &(*thrd_lists)[i];
1707                 action_list_t::reverse_iterator rit;
1708                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1709                         ModelAction *act = *rit;
1710                         if (act == curr) {
1711                                 /*
1712                                  * 1) If RMW and it actually read from something, then we
1713                                  * already have all relevant edges, so just skip to next
1714                                  * thread.
1715                                  *
1716                                  * 2) If RMW and it didn't read from anything, we should
1717                                  * whatever edge we can get to speed up convergence.
1718                                  *
1719                                  * 3) If normal write, we need to look at earlier actions, so
1720                                  * continue processing list.
1721                                  */
1722                                 if (curr->is_rmw()) {
1723                                         if (curr->get_reads_from() != NULL)
1724                                                 break;
1725                                         else
1726                                                 continue;
1727                                 } else
1728                                         continue;
1729                         }
1730
1731                         /* C++, Section 29.3 statement 7 */
1732                         if (last_sc_fence_thread_before && act->is_write() &&
1733                                         *act < *last_sc_fence_thread_before) {
1734                                 added = mo_graph->addEdge(act, curr) || added;
1735                                 break;
1736                         }
1737
1738                         /*
1739                          * Include at most one act per-thread that "happens
1740                          * before" curr
1741                          */
1742                         if (act->happens_before(curr)) {
1743                                 /*
1744                                  * Note: if act is RMW, just add edge:
1745                                  *   act --mo--> curr
1746                                  * The following edge should be handled elsewhere:
1747                                  *   readfrom(act) --mo--> act
1748                                  */
1749                                 if (act->is_write())
1750                                         added = mo_graph->addEdge(act, curr) || added;
1751                                 else if (act->is_read()) {
1752                                         //if previous read accessed a null, just keep going
1753                                         if (act->get_reads_from() == NULL)
1754                                                 continue;
1755                                         added = mo_graph->addEdge(act->get_reads_from(), curr) || added;
1756                                 }
1757                                 break;
1758                         } else if (act->is_read() && !act->could_synchronize_with(curr) &&
1759                                                      !act->same_thread(curr)) {
1760                                 /* We have an action that:
1761                                    (1) did not happen before us
1762                                    (2) is a read and we are a write
1763                                    (3) cannot synchronize with us
1764                                    (4) is in a different thread
1765                                    =>
1766                                    that read could potentially read from our write.  Note that
1767                                    these checks are overly conservative at this point, we'll
1768                                    do more checks before actually removing the
1769                                    pendingfuturevalue.
1770
1771                                  */
1772                                 if (send_fv && thin_air_constraint_may_allow(curr, act)) {
1773                                         if (!is_infeasible())
1774                                                 send_fv->push_back(act);
1775                                         else if (curr->is_rmw() && act->is_rmw() && curr->get_reads_from() && curr->get_reads_from() == act->get_reads_from())
1776                                                 add_future_value(curr, act);
1777                                 }
1778                         }
1779                 }
1780         }
1781
1782         /*
1783          * All compatible, thread-exclusive promises must be ordered after any
1784          * concrete stores to the same thread, or else they can be merged with
1785          * this store later
1786          */
1787         for (unsigned int i = 0; i < promises.size(); i++)
1788                 if (promises[i]->is_compatible_exclusive(curr))
1789                         added = mo_graph->addEdge(curr, promises[i]) || added;
1790
1791         return added;
1792 }
1793
1794 /** Arbitrary reads from the future are not allowed.  Section 29.3
1795  * part 9 places some constraints.  This method checks one result of constraint
1796  * constraint.  Others require compiler support. */
1797 bool ModelExecution::thin_air_constraint_may_allow(const ModelAction *writer, const ModelAction *reader) const
1798 {
1799         if (!writer->is_rmw())
1800                 return true;
1801
1802         if (!reader->is_rmw())
1803                 return true;
1804
1805         for (const ModelAction *search = writer->get_reads_from(); search != NULL; search = search->get_reads_from()) {
1806                 if (search == reader)
1807                         return false;
1808                 if (search->get_tid() == reader->get_tid() &&
1809                                 search->happens_before(reader))
1810                         break;
1811         }
1812
1813         return true;
1814 }
1815
1816 /**
1817  * Arbitrary reads from the future are not allowed. Section 29.3 part 9 places
1818  * some constraints. This method checks one the following constraint (others
1819  * require compiler support):
1820  *
1821  *   If X --hb-> Y --mo-> Z, then X should not read from Z.
1822  *   If X --hb-> Y, A --rf-> Y, and A --mo-> Z, then X should not read from Z.
1823  */
1824 bool ModelExecution::mo_may_allow(const ModelAction *writer, const ModelAction *reader)
1825 {
1826         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(reader->get_location());
1827         unsigned int i;
1828         /* Iterate over all threads */
1829         for (i = 0; i < thrd_lists->size(); i++) {
1830                 const ModelAction *write_after_read = NULL;
1831
1832                 /* Iterate over actions in thread, starting from most recent */
1833                 action_list_t *list = &(*thrd_lists)[i];
1834                 action_list_t::reverse_iterator rit;
1835                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1836                         ModelAction *act = *rit;
1837
1838                         /* Don't disallow due to act == reader */
1839                         if (!reader->happens_before(act) || reader == act)
1840                                 break;
1841                         else if (act->is_write())
1842                                 write_after_read = act;
1843                         else if (act->is_read() && act->get_reads_from() != NULL)
1844                                 write_after_read = act->get_reads_from();
1845                 }
1846
1847                 if (write_after_read && write_after_read != writer && mo_graph->checkReachable(write_after_read, writer))
1848                         return false;
1849         }
1850         return true;
1851 }
1852
1853 /**
1854  * Finds the head(s) of the release sequence(s) containing a given ModelAction.
1855  * The ModelAction under consideration is expected to be taking part in
1856  * release/acquire synchronization as an object of the "reads from" relation.
1857  * Note that this can only provide release sequence support for RMW chains
1858  * which do not read from the future, as those actions cannot be traced until
1859  * their "promise" is fulfilled. Similarly, we may not even establish the
1860  * presence of a release sequence with certainty, as some modification order
1861  * constraints may be decided further in the future. Thus, this function
1862  * "returns" two pieces of data: a pass-by-reference vector of @a release_heads
1863  * and a boolean representing certainty.
1864  *
1865  * @param rf The action that might be part of a release sequence. Must be a
1866  * write.
1867  * @param release_heads A pass-by-reference style return parameter. After
1868  * execution of this function, release_heads will contain the heads of all the
1869  * relevant release sequences, if any exists with certainty
1870  * @param pending A pass-by-reference style return parameter which is only used
1871  * when returning false (i.e., uncertain). Returns most information regarding
1872  * an uncertain release sequence, including any write operations that might
1873  * break the sequence.
1874  * @return true, if the ModelExecution is certain that release_heads is complete;
1875  * false otherwise
1876  */
1877 bool ModelExecution::release_seq_heads(const ModelAction *rf,
1878                 rel_heads_list_t *release_heads,
1879                 struct release_seq *pending) const
1880 {
1881         /* Only check for release sequences if there are no cycles */
1882         if (mo_graph->checkForCycles())
1883                 return false;
1884
1885         for ( ; rf != NULL; rf = rf->get_reads_from()) {
1886                 ASSERT(rf->is_write());
1887
1888                 if (rf->is_release())
1889                         release_heads->push_back(rf);
1890                 else if (rf->get_last_fence_release())
1891                         release_heads->push_back(rf->get_last_fence_release());
1892                 if (!rf->is_rmw())
1893                         break; /* End of RMW chain */
1894
1895                 /** @todo Need to be smarter here...  In the linux lock
1896                  * example, this will run to the beginning of the program for
1897                  * every acquire. */
1898                 /** @todo The way to be smarter here is to keep going until 1
1899                  * thread has a release preceded by an acquire and you've seen
1900                  *       both. */
1901
1902                 /* acq_rel RMW is a sufficient stopping condition */
1903                 if (rf->is_acquire() && rf->is_release())
1904                         return true; /* complete */
1905         };
1906         if (!rf) {
1907                 /* read from future: need to settle this later */
1908                 pending->rf = NULL;
1909                 return false; /* incomplete */
1910         }
1911
1912         if (rf->is_release())
1913                 return true; /* complete */
1914
1915         /* else relaxed write
1916          * - check for fence-release in the same thread (29.8, stmt. 3)
1917          * - check modification order for contiguous subsequence
1918          *   -> rf must be same thread as release */
1919
1920         const ModelAction *fence_release = rf->get_last_fence_release();
1921         /* Synchronize with a fence-release unconditionally; we don't need to
1922          * find any more "contiguous subsequence..." for it */
1923         if (fence_release)
1924                 release_heads->push_back(fence_release);
1925
1926         int tid = id_to_int(rf->get_tid());
1927         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(rf->get_location());
1928         action_list_t *list = &(*thrd_lists)[tid];
1929         action_list_t::const_reverse_iterator rit;
1930
1931         /* Find rf in the thread list */
1932         rit = std::find(list->rbegin(), list->rend(), rf);
1933         ASSERT(rit != list->rend());
1934
1935         /* Find the last {write,fence}-release */
1936         for (; rit != list->rend(); rit++) {
1937                 if (fence_release && *(*rit) < *fence_release)
1938                         break;
1939                 if ((*rit)->is_release())
1940                         break;
1941         }
1942         if (rit == list->rend()) {
1943                 /* No write-release in this thread */
1944                 return true; /* complete */
1945         } else if (fence_release && *(*rit) < *fence_release) {
1946                 /* The fence-release is more recent (and so, "stronger") than
1947                  * the most recent write-release */
1948                 return true; /* complete */
1949         } /* else, need to establish contiguous release sequence */
1950         ModelAction *release = *rit;
1951
1952         ASSERT(rf->same_thread(release));
1953
1954         pending->writes.clear();
1955
1956         bool certain = true;
1957         for (unsigned int i = 0; i < thrd_lists->size(); i++) {
1958                 if (id_to_int(rf->get_tid()) == (int)i)
1959                         continue;
1960                 list = &(*thrd_lists)[i];
1961
1962                 /* Can we ensure no future writes from this thread may break
1963                  * the release seq? */
1964                 bool future_ordered = false;
1965
1966                 ModelAction *last = get_last_action(int_to_id(i));
1967                 Thread *th = get_thread(int_to_id(i));
1968                 if ((last && rf->happens_before(last)) ||
1969                                 !is_enabled(th) ||
1970                                 th->is_complete())
1971                         future_ordered = true;
1972
1973                 ASSERT(!th->is_model_thread() || future_ordered);
1974
1975                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1976                         const ModelAction *act = *rit;
1977                         /* Reach synchronization -> this thread is complete */
1978                         if (act->happens_before(release))
1979                                 break;
1980                         if (rf->happens_before(act)) {
1981                                 future_ordered = true;
1982                                 continue;
1983                         }
1984
1985                         /* Only non-RMW writes can break release sequences */
1986                         if (!act->is_write() || act->is_rmw())
1987                                 continue;
1988
1989                         /* Check modification order */
1990                         if (mo_graph->checkReachable(rf, act)) {
1991                                 /* rf --mo--> act */
1992                                 future_ordered = true;
1993                                 continue;
1994                         }
1995                         if (mo_graph->checkReachable(act, release))
1996                                 /* act --mo--> release */
1997                                 break;
1998                         if (mo_graph->checkReachable(release, act) &&
1999                                       mo_graph->checkReachable(act, rf)) {
2000                                 /* release --mo-> act --mo--> rf */
2001                                 return true; /* complete */
2002                         }
2003                         /* act may break release sequence */
2004                         pending->writes.push_back(act);
2005                         certain = false;
2006                 }
2007                 if (!future_ordered)
2008                         certain = false; /* This thread is uncertain */
2009         }
2010
2011         if (certain) {
2012                 release_heads->push_back(release);
2013                 pending->writes.clear();
2014         } else {
2015                 pending->release = release;
2016                 pending->rf = rf;
2017         }
2018         return certain;
2019 }
2020
2021 /**
2022  * An interface for getting the release sequence head(s) with which a
2023  * given ModelAction must synchronize. This function only returns a non-empty
2024  * result when it can locate a release sequence head with certainty. Otherwise,
2025  * it may mark the internal state of the ModelExecution so that it will handle
2026  * the release sequence at a later time, causing @a acquire to update its
2027  * synchronization at some later point in execution.
2028  *
2029  * @param acquire The 'acquire' action that may synchronize with a release
2030  * sequence
2031  * @param read The read action that may read from a release sequence; this may
2032  * be the same as acquire, or else an earlier action in the same thread (i.e.,
2033  * when 'acquire' is a fence-acquire)
2034  * @param release_heads A pass-by-reference return parameter. Will be filled
2035  * with the head(s) of the release sequence(s), if they exists with certainty.
2036  * @see ModelExecution::release_seq_heads
2037  */
2038 void ModelExecution::get_release_seq_heads(ModelAction *acquire,
2039                 ModelAction *read, rel_heads_list_t *release_heads)
2040 {
2041         const ModelAction *rf = read->get_reads_from();
2042         struct release_seq *sequence = (struct release_seq *)snapshot_calloc(1, sizeof(struct release_seq));
2043         sequence->acquire = acquire;
2044         sequence->read = read;
2045
2046         if (!release_seq_heads(rf, release_heads, sequence)) {
2047                 /* add act to 'lazy checking' list */
2048                 pending_rel_seqs.push_back(sequence);
2049         } else {
2050                 snapshot_free(sequence);
2051         }
2052 }
2053
2054 /**
2055  * @brief Propagate a modified clock vector to actions later in the execution
2056  * order
2057  *
2058  * After an acquire operation lazily completes a release-sequence
2059  * synchronization, we must update all clock vectors for operations later than
2060  * the acquire in the execution order.
2061  *
2062  * @param acquire The ModelAction whose clock vector must be propagated
2063  * @param work The work queue to which we can add work items, if this
2064  * propagation triggers more updates (e.g., to the modification order)
2065  */
2066 void ModelExecution::propagate_clockvector(ModelAction *acquire, work_queue_t *work)
2067 {
2068         /* Re-check all pending release sequences */
2069         work->push_back(CheckRelSeqWorkEntry(NULL));
2070         /* Re-check read-acquire for mo_graph edges */
2071         work->push_back(MOEdgeWorkEntry(acquire));
2072
2073         /* propagate synchronization to later actions */
2074         action_list_t::reverse_iterator rit = action_trace.rbegin();
2075         for (; (*rit) != acquire; rit++) {
2076                 ModelAction *propagate = *rit;
2077                 if (acquire->happens_before(propagate)) {
2078                         synchronize(acquire, propagate);
2079                         /* Re-check 'propagate' for mo_graph edges */
2080                         work->push_back(MOEdgeWorkEntry(propagate));
2081                 }
2082         }
2083 }
2084
2085 /**
2086  * Attempt to resolve all stashed operations that might synchronize with a
2087  * release sequence for a given location. This implements the "lazy" portion of
2088  * determining whether or not a release sequence was contiguous, since not all
2089  * modification order information is present at the time an action occurs.
2090  *
2091  * @param location The location/object that should be checked for release
2092  * sequence resolutions. A NULL value means to check all locations.
2093  * @param work_queue The work queue to which to add work items as they are
2094  * generated
2095  * @return True if any updates occurred (new synchronization, new mo_graph
2096  * edges)
2097  */
2098 bool ModelExecution::resolve_release_sequences(void *location, work_queue_t *work_queue)
2099 {
2100         bool updated = false;
2101         SnapVector<struct release_seq *>::iterator it = pending_rel_seqs.begin();
2102         while (it != pending_rel_seqs.end()) {
2103                 struct release_seq *pending = *it;
2104                 ModelAction *acquire = pending->acquire;
2105                 const ModelAction *read = pending->read;
2106
2107                 /* Only resolve sequences on the given location, if provided */
2108                 if (location && read->get_location() != location) {
2109                         it++;
2110                         continue;
2111                 }
2112
2113                 const ModelAction *rf = read->get_reads_from();
2114                 rel_heads_list_t release_heads;
2115                 bool complete;
2116                 complete = release_seq_heads(rf, &release_heads, pending);
2117                 for (unsigned int i = 0; i < release_heads.size(); i++)
2118                         if (!acquire->has_synchronized_with(release_heads[i]))
2119                                 if (synchronize(release_heads[i], acquire))
2120                                         updated = true;
2121
2122                 if (updated) {
2123                         /* Propagate the changed clock vector */
2124                         propagate_clockvector(acquire, work_queue);
2125                 }
2126                 if (complete) {
2127                         it = pending_rel_seqs.erase(it);
2128                         snapshot_free(pending);
2129                 } else {
2130                         it++;
2131                 }
2132         }
2133
2134         // If we resolved promises or data races, see if we have realized a data race.
2135         checkDataRaces();
2136
2137         return updated;
2138 }
2139
2140 /**
2141  * Performs various bookkeeping operations for the current ModelAction. For
2142  * instance, adds action to the per-object, per-thread action vector and to the
2143  * action trace list of all thread actions.
2144  *
2145  * @param act is the ModelAction to add.
2146  */
2147 void ModelExecution::add_action_to_lists(ModelAction *act)
2148 {
2149         int tid = id_to_int(act->get_tid());
2150         ModelAction *uninit = NULL;
2151         int uninit_id = -1;
2152         action_list_t *list = get_safe_ptr_action(&obj_map, act->get_location());
2153         if (list->empty() && act->is_atomic_var()) {
2154                 uninit = get_uninitialized_action(act);
2155                 uninit_id = id_to_int(uninit->get_tid());
2156                 list->push_front(uninit);
2157         }
2158         list->push_back(act);
2159
2160         action_trace.push_back(act);
2161         if (uninit)
2162                 action_trace.push_front(uninit);
2163
2164         SnapVector<action_list_t> *vec = get_safe_ptr_vect_action(&obj_thrd_map, act->get_location());
2165         if (tid >= (int)vec->size())
2166                 vec->resize(priv->next_thread_id);
2167         (*vec)[tid].push_back(act);
2168         if (uninit)
2169                 (*vec)[uninit_id].push_front(uninit);
2170
2171         if ((int)thrd_last_action.size() <= tid)
2172                 thrd_last_action.resize(get_num_threads());
2173         thrd_last_action[tid] = act;
2174         if (uninit)
2175                 thrd_last_action[uninit_id] = uninit;
2176
2177         if (act->is_fence() && act->is_release()) {
2178                 if ((int)thrd_last_fence_release.size() <= tid)
2179                         thrd_last_fence_release.resize(get_num_threads());
2180                 thrd_last_fence_release[tid] = act;
2181         }
2182
2183         if (act->is_wait()) {
2184                 void *mutex_loc = (void *) act->get_value();
2185                 get_safe_ptr_action(&obj_map, mutex_loc)->push_back(act);
2186
2187                 SnapVector<action_list_t> *vec = get_safe_ptr_vect_action(&obj_thrd_map, mutex_loc);
2188                 if (tid >= (int)vec->size())
2189                         vec->resize(priv->next_thread_id);
2190                 (*vec)[tid].push_back(act);
2191         }
2192 }
2193
2194 /**
2195  * @brief Get the last action performed by a particular Thread
2196  * @param tid The thread ID of the Thread in question
2197  * @return The last action in the thread
2198  */
2199 ModelAction * ModelExecution::get_last_action(thread_id_t tid) const
2200 {
2201         int threadid = id_to_int(tid);
2202         if (threadid < (int)thrd_last_action.size())
2203                 return thrd_last_action[id_to_int(tid)];
2204         else
2205                 return NULL;
2206 }
2207
2208 /**
2209  * @brief Get the last fence release performed by a particular Thread
2210  * @param tid The thread ID of the Thread in question
2211  * @return The last fence release in the thread, if one exists; NULL otherwise
2212  */
2213 ModelAction * ModelExecution::get_last_fence_release(thread_id_t tid) const
2214 {
2215         int threadid = id_to_int(tid);
2216         if (threadid < (int)thrd_last_fence_release.size())
2217                 return thrd_last_fence_release[id_to_int(tid)];
2218         else
2219                 return NULL;
2220 }
2221
2222 /**
2223  * Gets the last memory_order_seq_cst write (in the total global sequence)
2224  * performed on a particular object (i.e., memory location), not including the
2225  * current action.
2226  * @param curr The current ModelAction; also denotes the object location to
2227  * check
2228  * @return The last seq_cst write
2229  */
2230 ModelAction * ModelExecution::get_last_seq_cst_write(ModelAction *curr) const
2231 {
2232         void *location = curr->get_location();
2233         action_list_t *list = obj_map.get(location);
2234         /* Find: max({i in dom(S) | seq_cst(t_i) && isWrite(t_i) && samevar(t_i, t)}) */
2235         action_list_t::reverse_iterator rit;
2236         for (rit = list->rbegin(); (*rit) != curr; rit++)
2237                 ;
2238         rit++; /* Skip past curr */
2239         for ( ; rit != list->rend(); rit++)
2240                 if ((*rit)->is_write() && (*rit)->is_seqcst())
2241                         return *rit;
2242         return NULL;
2243 }
2244
2245 /**
2246  * Gets the last memory_order_seq_cst fence (in the total global sequence)
2247  * performed in a particular thread, prior to a particular fence.
2248  * @param tid The ID of the thread to check
2249  * @param before_fence The fence from which to begin the search; if NULL, then
2250  * search for the most recent fence in the thread.
2251  * @return The last prior seq_cst fence in the thread, if exists; otherwise, NULL
2252  */
2253 ModelAction * ModelExecution::get_last_seq_cst_fence(thread_id_t tid, const ModelAction *before_fence) const
2254 {
2255         /* All fences should have location FENCE_LOCATION */
2256         action_list_t *list = obj_map.get(FENCE_LOCATION);
2257
2258         if (!list)
2259                 return NULL;
2260
2261         action_list_t::reverse_iterator rit = list->rbegin();
2262
2263         if (before_fence) {
2264                 for (; rit != list->rend(); rit++)
2265                         if (*rit == before_fence)
2266                                 break;
2267
2268                 ASSERT(*rit == before_fence);
2269                 rit++;
2270         }
2271
2272         for (; rit != list->rend(); rit++)
2273                 if ((*rit)->is_fence() && (tid == (*rit)->get_tid()) && (*rit)->is_seqcst())
2274                         return *rit;
2275         return NULL;
2276 }
2277
2278 /**
2279  * Gets the last unlock operation performed on a particular mutex (i.e., memory
2280  * location). This function identifies the mutex according to the current
2281  * action, which is presumed to perform on the same mutex.
2282  * @param curr The current ModelAction; also denotes the object location to
2283  * check
2284  * @return The last unlock operation
2285  */
2286 ModelAction * ModelExecution::get_last_unlock(ModelAction *curr) const
2287 {
2288         void *location = curr->get_location();
2289         action_list_t *list = obj_map.get(location);
2290         /* Find: max({i in dom(S) | isUnlock(t_i) && samevar(t_i, t)}) */
2291         action_list_t::reverse_iterator rit;
2292         for (rit = list->rbegin(); rit != list->rend(); rit++)
2293                 if ((*rit)->is_unlock() || (*rit)->is_wait())
2294                         return *rit;
2295         return NULL;
2296 }
2297
2298 ModelAction * ModelExecution::get_parent_action(thread_id_t tid) const
2299 {
2300         ModelAction *parent = get_last_action(tid);
2301         if (!parent)
2302                 parent = get_thread(tid)->get_creation();
2303         return parent;
2304 }
2305
2306 /**
2307  * Returns the clock vector for a given thread.
2308  * @param tid The thread whose clock vector we want
2309  * @return Desired clock vector
2310  */
2311 ClockVector * ModelExecution::get_cv(thread_id_t tid) const
2312 {
2313         return get_parent_action(tid)->get_cv();
2314 }
2315
2316 /**
2317  * @brief Find the promise (if any) to resolve for the current action and
2318  * remove it from the pending promise vector
2319  * @param curr The current ModelAction. Should be a write.
2320  * @return The Promise to resolve, if any; otherwise NULL
2321  */
2322 Promise * ModelExecution::pop_promise_to_resolve(const ModelAction *curr)
2323 {
2324         for (unsigned int i = 0; i < promises.size(); i++)
2325                 if (curr->get_node()->get_promise(i)) {
2326                         Promise *ret = promises[i];
2327                         promises.erase(promises.begin() + i);
2328                         return ret;
2329                 }
2330         return NULL;
2331 }
2332
2333 /**
2334  * Resolve a Promise with a current write.
2335  * @param write The ModelAction that is fulfilling Promises
2336  * @param promise The Promise to resolve
2337  * @param work The work queue, for adding new fixup work
2338  * @return True if the Promise was successfully resolved; false otherwise
2339  */
2340 bool ModelExecution::resolve_promise(ModelAction *write, Promise *promise,
2341                 work_queue_t *work)
2342 {
2343         ModelVector<ModelAction *> actions_to_check;
2344
2345         for (unsigned int i = 0; i < promise->get_num_readers(); i++) {
2346                 ModelAction *read = promise->get_reader(i);
2347                 if (read_from(read, write)) {
2348                         /* Propagate the changed clock vector */
2349                         propagate_clockvector(read, work);
2350                 }
2351                 actions_to_check.push_back(read);
2352         }
2353         /* Make sure the promise's value matches the write's value */
2354         ASSERT(promise->is_compatible(write) && promise->same_value(write));
2355         if (!mo_graph->resolvePromise(promise, write))
2356                 priv->failed_promise = true;
2357
2358         /**
2359          * @todo  It is possible to end up in an inconsistent state, where a
2360          * "resolved" promise may still be referenced if
2361          * CycleGraph::resolvePromise() failed, so don't delete 'promise'.
2362          *
2363          * Note that the inconsistency only matters when dumping mo_graph to
2364          * file.
2365          *
2366          * delete promise;
2367          */
2368
2369         //Check whether reading these writes has made threads unable to
2370         //resolve promises
2371         for (unsigned int i = 0; i < actions_to_check.size(); i++) {
2372                 ModelAction *read = actions_to_check[i];
2373                 mo_check_promises(read, true);
2374         }
2375
2376         return true;
2377 }
2378
2379 /**
2380  * Compute the set of promises that could potentially be satisfied by this
2381  * action. Note that the set computation actually appears in the Node, not in
2382  * ModelExecution.
2383  * @param curr The ModelAction that may satisfy promises
2384  */
2385 void ModelExecution::compute_promises(ModelAction *curr)
2386 {
2387         for (unsigned int i = 0; i < promises.size(); i++) {
2388                 Promise *promise = promises[i];
2389                 if (!promise->is_compatible(curr) || !promise->same_value(curr))
2390                         continue;
2391
2392                 bool satisfy = true;
2393                 for (unsigned int j = 0; j < promise->get_num_readers(); j++) {
2394                         const ModelAction *act = promise->get_reader(j);
2395                         if (act->happens_before(curr) ||
2396                                         act->could_synchronize_with(curr)) {
2397                                 satisfy = false;
2398                                 break;
2399                         }
2400                 }
2401                 if (satisfy)
2402                         curr->get_node()->set_promise(i);
2403         }
2404 }
2405
2406 /** Checks promises in response to change in ClockVector Threads. */
2407 void ModelExecution::check_promises(thread_id_t tid, ClockVector *old_cv, ClockVector *merge_cv)
2408 {
2409         for (unsigned int i = 0; i < promises.size(); i++) {
2410                 Promise *promise = promises[i];
2411                 if (!promise->thread_is_available(tid))
2412                         continue;
2413                 for (unsigned int j = 0; j < promise->get_num_readers(); j++) {
2414                         const ModelAction *act = promise->get_reader(j);
2415                         if ((!old_cv || !old_cv->synchronized_since(act)) &&
2416                                         merge_cv->synchronized_since(act)) {
2417                                 if (promise->eliminate_thread(tid)) {
2418                                         /* Promise has failed */
2419                                         priv->failed_promise = true;
2420                                         return;
2421                                 }
2422                         }
2423                 }
2424         }
2425 }
2426
2427 void ModelExecution::check_promises_thread_disabled()
2428 {
2429         for (unsigned int i = 0; i < promises.size(); i++) {
2430                 Promise *promise = promises[i];
2431                 if (promise->has_failed()) {
2432                         priv->failed_promise = true;
2433                         return;
2434                 }
2435         }
2436 }
2437
2438 /**
2439  * @brief Checks promises in response to addition to modification order for
2440  * threads.
2441  *
2442  * We test whether threads are still available for satisfying promises after an
2443  * addition to our modification order constraints. Those that are unavailable
2444  * are "eliminated". Once all threads are eliminated from satisfying a promise,
2445  * that promise has failed.
2446  *
2447  * @param act The ModelAction which updated the modification order
2448  * @param is_read_check Should be true if act is a read and we must check for
2449  * updates to the store from which it read (there is a distinction here for
2450  * RMW's, which are both a load and a store)
2451  */
2452 void ModelExecution::mo_check_promises(const ModelAction *act, bool is_read_check)
2453 {
2454         const ModelAction *write = is_read_check ? act->get_reads_from() : act;
2455
2456         for (unsigned int i = 0; i < promises.size(); i++) {
2457                 Promise *promise = promises[i];
2458
2459                 // Is this promise on the same location?
2460                 if (!promise->same_location(write))
2461                         continue;
2462
2463                 for (unsigned int j = 0; j < promise->get_num_readers(); j++) {
2464                         const ModelAction *pread = promise->get_reader(j);
2465                         if (!pread->happens_before(act))
2466                                continue;
2467                         if (mo_graph->checkPromise(write, promise)) {
2468                                 priv->failed_promise = true;
2469                                 return;
2470                         }
2471                         break;
2472                 }
2473
2474                 // Don't do any lookups twice for the same thread
2475                 if (!promise->thread_is_available(act->get_tid()))
2476                         continue;
2477
2478                 if (mo_graph->checkReachable(promise, write)) {
2479                         if (mo_graph->checkPromise(write, promise)) {
2480                                 priv->failed_promise = true;
2481                                 return;
2482                         }
2483                 }
2484         }
2485 }
2486
2487 /**
2488  * Compute the set of writes that may break the current pending release
2489  * sequence. This information is extracted from previou release sequence
2490  * calculations.
2491  *
2492  * @param curr The current ModelAction. Must be a release sequence fixup
2493  * action.
2494  */
2495 void ModelExecution::compute_relseq_breakwrites(ModelAction *curr)
2496 {
2497         if (pending_rel_seqs.empty())
2498                 return;
2499
2500         struct release_seq *pending = pending_rel_seqs.back();
2501         for (unsigned int i = 0; i < pending->writes.size(); i++) {
2502                 const ModelAction *write = pending->writes[i];
2503                 curr->get_node()->add_relseq_break(write);
2504         }
2505
2506         /* NULL means don't break the sequence; just synchronize */
2507         curr->get_node()->add_relseq_break(NULL);
2508 }
2509
2510 /**
2511  * Build up an initial set of all past writes that this 'read' action may read
2512  * from, as well as any previously-observed future values that must still be valid.
2513  *
2514  * @param curr is the current ModelAction that we are exploring; it must be a
2515  * 'read' operation.
2516  */
2517 void ModelExecution::build_may_read_from(ModelAction *curr)
2518 {
2519         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
2520         unsigned int i;
2521         ASSERT(curr->is_read());
2522
2523         ModelAction *last_sc_write = NULL;
2524
2525         if (curr->is_seqcst())
2526                 last_sc_write = get_last_seq_cst_write(curr);
2527
2528         /* Iterate over all threads */
2529         for (i = 0; i < thrd_lists->size(); i++) {
2530                 /* Iterate over actions in thread, starting from most recent */
2531                 action_list_t *list = &(*thrd_lists)[i];
2532                 action_list_t::reverse_iterator rit;
2533                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
2534                         ModelAction *act = *rit;
2535
2536                         /* Only consider 'write' actions */
2537                         if (!act->is_write() || act == curr)
2538                                 continue;
2539
2540                         /* Don't consider more than one seq_cst write if we are a seq_cst read. */
2541                         bool allow_read = true;
2542
2543                         if (curr->is_seqcst() && (act->is_seqcst() || (last_sc_write != NULL && act->happens_before(last_sc_write))) && act != last_sc_write)
2544                                 allow_read = false;
2545                         else if (curr->get_sleep_flag() && !curr->is_seqcst() && !sleep_can_read_from(curr, act))
2546                                 allow_read = false;
2547
2548                         if (allow_read) {
2549                                 /* Only add feasible reads */
2550                                 mo_graph->startChanges();
2551                                 r_modification_order(curr, act);
2552                                 if (!is_infeasible())
2553                                         curr->get_node()->add_read_from_past(act);
2554                                 mo_graph->rollbackChanges();
2555                         }
2556
2557                         /* Include at most one act per-thread that "happens before" curr */
2558                         if (act->happens_before(curr))
2559                                 break;
2560                 }
2561         }
2562
2563         /* Inherit existing, promised future values */
2564         for (i = 0; i < promises.size(); i++) {
2565                 const Promise *promise = promises[i];
2566                 const ModelAction *promise_read = promise->get_reader(0);
2567                 if (promise_read->same_var(curr)) {
2568                         /* Only add feasible future-values */
2569                         mo_graph->startChanges();
2570                         r_modification_order(curr, promise);
2571                         if (!is_infeasible())
2572                                 curr->get_node()->add_read_from_promise(promise_read);
2573                         mo_graph->rollbackChanges();
2574                 }
2575         }
2576
2577         /* We may find no valid may-read-from only if the execution is doomed */
2578         if (!curr->get_node()->read_from_size()) {
2579                 priv->no_valid_reads = true;
2580                 set_assert();
2581         }
2582
2583         if (DBG_ENABLED()) {
2584                 model_print("Reached read action:\n");
2585                 curr->print();
2586                 model_print("Printing read_from_past\n");
2587                 curr->get_node()->print_read_from_past();
2588                 model_print("End printing read_from_past\n");
2589         }
2590 }
2591
2592 bool ModelExecution::sleep_can_read_from(ModelAction *curr, const ModelAction *write)
2593 {
2594         for ( ; write != NULL; write = write->get_reads_from()) {
2595                 /* UNINIT actions don't have a Node, and they never sleep */
2596                 if (write->is_uninitialized())
2597                         return true;
2598                 Node *prevnode = write->get_node()->get_parent();
2599
2600                 bool thread_sleep = prevnode->enabled_status(curr->get_tid()) == THREAD_SLEEP_SET;
2601                 if (write->is_release() && thread_sleep)
2602                         return true;
2603                 if (!write->is_rmw())
2604                         return false;
2605         }
2606         return true;
2607 }
2608
2609 /**
2610  * @brief Get an action representing an uninitialized atomic
2611  *
2612  * This function may create a new one or try to retrieve one from the NodeStack
2613  *
2614  * @param curr The current action, which prompts the creation of an UNINIT action
2615  * @return A pointer to the UNINIT ModelAction
2616  */
2617 ModelAction * ModelExecution::get_uninitialized_action(const ModelAction *curr) const
2618 {
2619         Node *node = curr->get_node();
2620         ModelAction *act = node->get_uninit_action();
2621         if (!act) {
2622                 act = new ModelAction(ATOMIC_UNINIT, std::memory_order_relaxed, curr->get_location(), params->uninitvalue, model_thread);
2623                 node->set_uninit_action(act);
2624         }
2625         act->create_cv(NULL);
2626         return act;
2627 }
2628
2629 static void print_list(const action_list_t *list)
2630 {
2631         action_list_t::const_iterator it;
2632
2633         model_print("------------------------------------------------------------------------------------\n");
2634         model_print("#    t    Action type     MO       Location         Value               Rf  CV\n");
2635         model_print("------------------------------------------------------------------------------------\n");
2636
2637         unsigned int hash = 0;
2638
2639         for (it = list->begin(); it != list->end(); it++) {
2640                 const ModelAction *act = *it;
2641                 if (act->get_seq_number() > 0)
2642                         act->print();
2643                 hash = hash^(hash<<3)^((*it)->hash());
2644         }
2645         model_print("HASH %u\n", hash);
2646         model_print("------------------------------------------------------------------------------------\n");
2647 }
2648
2649 #if SUPPORT_MOD_ORDER_DUMP
2650 void ModelExecution::dumpGraph(char *filename) const
2651 {
2652         char buffer[200];
2653         sprintf(buffer, "%s.dot", filename);
2654         FILE *file = fopen(buffer, "w");
2655         fprintf(file, "digraph %s {\n", filename);
2656         mo_graph->dumpNodes(file);
2657         ModelAction **thread_array = (ModelAction **)model_calloc(1, sizeof(ModelAction *) * get_num_threads());
2658
2659         for (action_list_t::const_iterator it = action_trace.begin(); it != action_trace.end(); it++) {
2660                 ModelAction *act = *it;
2661                 if (act->is_read()) {
2662                         mo_graph->dot_print_node(file, act);
2663                         if (act->get_reads_from())
2664                                 mo_graph->dot_print_edge(file,
2665                                                 act->get_reads_from(),
2666                                                 act,
2667                                                 "label=\"rf\", color=red, weight=2");
2668                         else
2669                                 mo_graph->dot_print_edge(file,
2670                                                 act->get_reads_from_promise(),
2671                                                 act,
2672                                                 "label=\"rf\", color=red");
2673                 }
2674                 if (thread_array[act->get_tid()]) {
2675                         mo_graph->dot_print_edge(file,
2676                                         thread_array[id_to_int(act->get_tid())],
2677                                         act,
2678                                         "label=\"sb\", color=blue, weight=400");
2679                 }
2680
2681                 thread_array[act->get_tid()] = act;
2682         }
2683         fprintf(file, "}\n");
2684         model_free(thread_array);
2685         fclose(file);
2686 }
2687 #endif
2688
2689 /** @brief Prints an execution trace summary. */
2690 void ModelExecution::print_summary() const
2691 {
2692 #if SUPPORT_MOD_ORDER_DUMP
2693         char buffername[100];
2694         sprintf(buffername, "exec%04u", get_execution_number());
2695         mo_graph->dumpGraphToFile(buffername);
2696         sprintf(buffername, "graph%04u", get_execution_number());
2697         dumpGraph(buffername);
2698 #endif
2699
2700         model_print("Execution trace %d:", get_execution_number());
2701         if (isfeasibleprefix()) {
2702                 if (is_yieldblocked())
2703                         model_print(" YIELD BLOCKED");
2704                 if (scheduler->all_threads_sleeping())
2705                         model_print(" SLEEP-SET REDUNDANT");
2706                 if (have_bug_reports())
2707                         model_print(" DETECTED BUG(S)");
2708         } else
2709                 print_infeasibility(" INFEASIBLE");
2710         model_print("\n");
2711
2712         print_list(&action_trace);
2713         model_print("\n");
2714
2715         if (!promises.empty()) {
2716                 model_print("Pending promises:\n");
2717                 for (unsigned int i = 0; i < promises.size(); i++) {
2718                         model_print(" [P%u] ", i);
2719                         promises[i]->print();
2720                 }
2721                 model_print("\n");
2722         }
2723 }
2724
2725 /**
2726  * Add a Thread to the system for the first time. Should only be called once
2727  * per thread.
2728  * @param t The Thread to add
2729  */
2730 void ModelExecution::add_thread(Thread *t)
2731 {
2732         unsigned int i = id_to_int(t->get_id());
2733         if (i >= thread_map.size())
2734                 thread_map.resize(i + 1);
2735         thread_map[i] = t;
2736         if (!t->is_model_thread())
2737                 scheduler->add_thread(t);
2738 }
2739
2740 /**
2741  * @brief Get a Thread reference by its ID
2742  * @param tid The Thread's ID
2743  * @return A Thread reference
2744  */
2745 Thread * ModelExecution::get_thread(thread_id_t tid) const
2746 {
2747         unsigned int i = id_to_int(tid);
2748         if (i < thread_map.size())
2749                 return thread_map[i];
2750         return NULL;
2751 }
2752
2753 /**
2754  * @brief Get a reference to the Thread in which a ModelAction was executed
2755  * @param act The ModelAction
2756  * @return A Thread reference
2757  */
2758 Thread * ModelExecution::get_thread(const ModelAction *act) const
2759 {
2760         return get_thread(act->get_tid());
2761 }
2762
2763 /**
2764  * @brief Get a Promise's "promise number"
2765  *
2766  * A "promise number" is an index number that is unique to a promise, valid
2767  * only for a specific snapshot of an execution trace. Promises may come and go
2768  * as they are generated an resolved, so an index only retains meaning for the
2769  * current snapshot.
2770  *
2771  * @param promise The Promise to check
2772  * @return The promise index, if the promise still is valid; otherwise -1
2773  */
2774 int ModelExecution::get_promise_number(const Promise *promise) const
2775 {
2776         for (unsigned int i = 0; i < promises.size(); i++)
2777                 if (promises[i] == promise)
2778                         return i;
2779         /* Not found */
2780         return -1;
2781 }
2782
2783 /**
2784  * @brief Check if a Thread is currently enabled
2785  * @param t The Thread to check
2786  * @return True if the Thread is currently enabled
2787  */
2788 bool ModelExecution::is_enabled(Thread *t) const
2789 {
2790         return scheduler->is_enabled(t);
2791 }
2792
2793 /**
2794  * @brief Check if a Thread is currently enabled
2795  * @param tid The ID of the Thread to check
2796  * @return True if the Thread is currently enabled
2797  */
2798 bool ModelExecution::is_enabled(thread_id_t tid) const
2799 {
2800         return scheduler->is_enabled(tid);
2801 }
2802
2803 /**
2804  * @brief Select the next thread to execute based on the curren action
2805  *
2806  * RMW actions occur in two parts, and we cannot split them. And THREAD_CREATE
2807  * actions should be followed by the execution of their child thread. In either
2808  * case, the current action should determine the next thread schedule.
2809  *
2810  * @param curr The current action
2811  * @return The next thread to run, if the current action will determine this
2812  * selection; otherwise NULL
2813  */
2814 Thread * ModelExecution::action_select_next_thread(const ModelAction *curr) const
2815 {
2816         /* Do not split atomic RMW */
2817         if (curr->is_rmwr())
2818                 return get_thread(curr);
2819         /* Follow CREATE with the created thread */
2820         if (curr->get_type() == THREAD_CREATE)
2821                 return curr->get_thread_operand();
2822         return NULL;
2823 }
2824
2825 /** @return True if the execution has taken too many steps */
2826 bool ModelExecution::too_many_steps() const
2827 {
2828         return params->bound != 0 && priv->used_sequence_numbers > params->bound;
2829 }
2830
2831 /**
2832  * Takes the next step in the execution, if possible.
2833  * @param curr The current step to take
2834  * @return Returns the next Thread to run, if any; NULL if this execution
2835  * should terminate
2836  */
2837 Thread * ModelExecution::take_step(ModelAction *curr)
2838 {
2839         Thread *curr_thrd = get_thread(curr);
2840         ASSERT(curr_thrd->get_state() == THREAD_READY);
2841
2842         ASSERT(check_action_enabled(curr)); /* May have side effects? */
2843         curr = check_current_action(curr);
2844         ASSERT(curr);
2845
2846         if (curr_thrd->is_blocked() || curr_thrd->is_complete())
2847                 scheduler->remove_thread(curr_thrd);
2848
2849         return action_select_next_thread(curr);
2850 }
2851
2852 /**
2853  * Launch end-of-execution release sequence fixups only when
2854  * the execution is otherwise feasible AND there are:
2855  *
2856  * (1) pending release sequences
2857  * (2) pending assertions that could be invalidated by a change
2858  * in clock vectors (i.e., data races)
2859  * (3) no pending promises
2860  */
2861 void ModelExecution::fixup_release_sequences()
2862 {
2863         while (!pending_rel_seqs.empty() &&
2864                         is_feasible_prefix_ignore_relseq() &&
2865                         haveUnrealizedRaces()) {
2866                 model_print("*** WARNING: release sequence fixup action "
2867                                 "(%zu pending release seuqence(s)) ***\n",
2868                                 pending_rel_seqs.size());
2869                 ModelAction *fixup = new ModelAction(MODEL_FIXUP_RELSEQ,
2870                                 std::memory_order_seq_cst, NULL, VALUE_NONE,
2871                                 model_thread);
2872                 take_step(fixup);
2873         };
2874 }