tests: Makefile: add dependency information
[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  * If one of the following is true:
759  *  (a) there are no pending promises
760  *  (b) the reader and writer do not cross any promises
761  * Then, it is safe to pass a future value back now.
762  *
763  * Otherwise, we must save the pending future value until (a) or (b) is true
764  *
765  * @param writer The operation which sends the future value. Must be a write.
766  * @param reader The operation which will observe the value. Must be a read.
767  * @return True if the future value can be sent now; false if it must wait.
768  */
769 bool ModelExecution::promises_may_allow(const ModelAction *writer,
770                 const ModelAction *reader) const
771 {
772         if (promises.empty())
773                 return true;
774         for (int i = promises.size() - 1; i >= 0; i--) {
775                 ModelAction *pr = promises[i]->get_reader(0);
776                 //reader is after promise...doesn't cross any promise
777                 if (*reader > *pr)
778                         return true;
779                 //writer is after promise, reader before...bad...
780                 if (*writer > *pr)
781                         return false;
782         }
783         return true;
784 }
785
786 /**
787  * @brief Add a future value to a reader
788  *
789  * This function performs a few additional checks to ensure that the future
790  * value can be feasibly observed by the reader
791  *
792  * @param writer The operation whose value is sent. Must be a write.
793  * @param reader The read operation which may read the future value. Must be a read.
794  */
795 void ModelExecution::add_future_value(const ModelAction *writer, ModelAction *reader)
796 {
797         /* Do more ambitious checks now that mo is more complete */
798         if (!mo_may_allow(writer, reader))
799                 return;
800
801         Node *node = reader->get_node();
802
803         /* Find an ancestor thread which exists at the time of the reader */
804         Thread *write_thread = get_thread(writer);
805         while (id_to_int(write_thread->get_id()) >= node->get_num_threads())
806                 write_thread = write_thread->get_parent();
807
808         struct future_value fv = {
809                 writer->get_write_value(),
810                 writer->get_seq_number() + params->maxfuturedelay,
811                 write_thread->get_id(),
812         };
813         if (node->add_future_value(fv))
814                 set_latest_backtrack(reader);
815 }
816
817 /**
818  * Process a write ModelAction
819  * @param curr The ModelAction to process
820  * @param work The work queue, for adding fixup work
821  * @return True if the mo_graph was updated or promises were resolved
822  */
823 bool ModelExecution::process_write(ModelAction *curr, work_queue_t *work)
824 {
825         /* Readers to which we may send our future value */
826         ModelVector<ModelAction *> send_fv;
827
828         const ModelAction *earliest_promise_reader;
829         bool updated_promises = false;
830
831         bool updated_mod_order = w_modification_order(curr, &send_fv);
832         Promise *promise = pop_promise_to_resolve(curr);
833
834         if (promise) {
835                 earliest_promise_reader = promise->get_reader(0);
836                 updated_promises = resolve_promise(curr, promise, work);
837         } else
838                 earliest_promise_reader = NULL;
839
840         for (unsigned int i = 0; i < send_fv.size(); i++) {
841                 ModelAction *read = send_fv[i];
842
843                 /* Don't send future values to reads after the Promise we resolve */
844                 if (!earliest_promise_reader || *read < *earliest_promise_reader) {
845                         /* Check if future value can be sent immediately */
846                         if (promises_may_allow(curr, read)) {
847                                 add_future_value(curr, read);
848                         } else {
849                                 futurevalues.push_back(PendingFutureValue(curr, read));
850                         }
851                 }
852         }
853
854         /* Check the pending future values */
855         for (int i = (int)futurevalues.size() - 1; i >= 0; i--) {
856                 struct PendingFutureValue pfv = futurevalues[i];
857                 if (promises_may_allow(pfv.writer, pfv.reader)) {
858                         add_future_value(pfv.writer, pfv.reader);
859                         futurevalues.erase(futurevalues.begin() + i);
860                 }
861         }
862
863         mo_graph->commitChanges();
864         mo_check_promises(curr, false);
865
866         get_thread(curr)->set_return_value(VALUE_NONE);
867         return updated_mod_order || updated_promises;
868 }
869
870 /**
871  * Process a fence ModelAction
872  * @param curr The ModelAction to process
873  * @return True if synchronization was updated
874  */
875 bool ModelExecution::process_fence(ModelAction *curr)
876 {
877         /*
878          * fence-relaxed: no-op
879          * fence-release: only log the occurence (not in this function), for
880          *   use in later synchronization
881          * fence-acquire (this function): search for hypothetical release
882          *   sequences
883          * fence-seq-cst: MO constraints formed in {r,w}_modification_order
884          */
885         bool updated = false;
886         if (curr->is_acquire()) {
887                 action_list_t *list = &action_trace;
888                 action_list_t::reverse_iterator rit;
889                 /* Find X : is_read(X) && X --sb-> curr */
890                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
891                         ModelAction *act = *rit;
892                         if (act == curr)
893                                 continue;
894                         if (act->get_tid() != curr->get_tid())
895                                 continue;
896                         /* Stop at the beginning of the thread */
897                         if (act->is_thread_start())
898                                 break;
899                         /* Stop once we reach a prior fence-acquire */
900                         if (act->is_fence() && act->is_acquire())
901                                 break;
902                         if (!act->is_read())
903                                 continue;
904                         /* read-acquire will find its own release sequences */
905                         if (act->is_acquire())
906                                 continue;
907
908                         /* Establish hypothetical release sequences */
909                         rel_heads_list_t release_heads;
910                         get_release_seq_heads(curr, act, &release_heads);
911                         for (unsigned int i = 0; i < release_heads.size(); i++)
912                                 synchronize(release_heads[i], curr);
913                         if (release_heads.size() != 0)
914                                 updated = true;
915                 }
916         }
917         return updated;
918 }
919
920 /**
921  * @brief Process the current action for thread-related activity
922  *
923  * Performs current-action processing for a THREAD_* ModelAction. Proccesses
924  * may include setting Thread status, completing THREAD_FINISH/THREAD_JOIN
925  * synchronization, etc.  This function is a no-op for non-THREAD actions
926  * (e.g., ATOMIC_{READ,WRITE,RMW,LOCK}, etc.)
927  *
928  * @param curr The current action
929  * @return True if synchronization was updated or a thread completed
930  */
931 bool ModelExecution::process_thread_action(ModelAction *curr)
932 {
933         bool updated = false;
934
935         switch (curr->get_type()) {
936         case THREAD_CREATE: {
937                 thrd_t *thrd = (thrd_t *)curr->get_location();
938                 struct thread_params *params = (struct thread_params *)curr->get_value();
939                 Thread *th = new Thread(get_next_id(), thrd, params->func, params->arg, get_thread(curr));
940                 add_thread(th);
941                 th->set_creation(curr);
942                 /* Promises can be satisfied by children */
943                 for (unsigned int i = 0; i < promises.size(); i++) {
944                         Promise *promise = promises[i];
945                         if (promise->thread_is_available(curr->get_tid()))
946                                 promise->add_thread(th->get_id());
947                 }
948                 break;
949         }
950         case THREAD_JOIN: {
951                 Thread *blocking = curr->get_thread_operand();
952                 ModelAction *act = get_last_action(blocking->get_id());
953                 synchronize(act, curr);
954                 updated = true; /* trigger rel-seq checks */
955                 break;
956         }
957         case THREAD_FINISH: {
958                 Thread *th = get_thread(curr);
959                 /* Wake up any joining threads */
960                 for (unsigned int i = 0; i < get_num_threads(); i++) {
961                         Thread *waiting = get_thread(int_to_id(i));
962                         if (waiting->waiting_on() == th &&
963                                         waiting->get_pending()->is_thread_join())
964                                 scheduler->wake(waiting);
965                 }
966                 th->complete();
967                 /* Completed thread can't satisfy promises */
968                 for (unsigned int i = 0; i < promises.size(); i++) {
969                         Promise *promise = promises[i];
970                         if (promise->thread_is_available(th->get_id()))
971                                 if (promise->eliminate_thread(th->get_id()))
972                                         priv->failed_promise = true;
973                 }
974                 updated = true; /* trigger rel-seq checks */
975                 break;
976         }
977         case THREAD_START: {
978                 check_promises(curr->get_tid(), NULL, curr->get_cv());
979                 break;
980         }
981         default:
982                 break;
983         }
984
985         return updated;
986 }
987
988 /**
989  * @brief Process the current action for release sequence fixup activity
990  *
991  * Performs model-checker release sequence fixups for the current action,
992  * forcing a single pending release sequence to break (with a given, potential
993  * "loose" write) or to complete (i.e., synchronize). If a pending release
994  * sequence forms a complete release sequence, then we must perform the fixup
995  * synchronization, mo_graph additions, etc.
996  *
997  * @param curr The current action; must be a release sequence fixup action
998  * @param work_queue The work queue to which to add work items as they are
999  * generated
1000  */
1001 void ModelExecution::process_relseq_fixup(ModelAction *curr, work_queue_t *work_queue)
1002 {
1003         const ModelAction *write = curr->get_node()->get_relseq_break();
1004         struct release_seq *sequence = pending_rel_seqs.back();
1005         pending_rel_seqs.pop_back();
1006         ASSERT(sequence);
1007         ModelAction *acquire = sequence->acquire;
1008         const ModelAction *rf = sequence->rf;
1009         const ModelAction *release = sequence->release;
1010         ASSERT(acquire);
1011         ASSERT(release);
1012         ASSERT(rf);
1013         ASSERT(release->same_thread(rf));
1014
1015         if (write == NULL) {
1016                 /**
1017                  * @todo Forcing a synchronization requires that we set
1018                  * modification order constraints. For instance, we can't allow
1019                  * a fixup sequence in which two separate read-acquire
1020                  * operations read from the same sequence, where the first one
1021                  * synchronizes and the other doesn't. Essentially, we can't
1022                  * allow any writes to insert themselves between 'release' and
1023                  * 'rf'
1024                  */
1025
1026                 /* Must synchronize */
1027                 if (!synchronize(release, acquire))
1028                         return;
1029
1030                 /* Propagate the changed clock vector */
1031                 propagate_clockvector(acquire, work_queue);
1032         } else {
1033                 /* Break release sequence with new edges:
1034                  *   release --mo--> write --mo--> rf */
1035                 mo_graph->addEdge(release, write);
1036                 mo_graph->addEdge(write, rf);
1037         }
1038
1039         /* See if we have realized a data race */
1040         checkDataRaces();
1041 }
1042
1043 /**
1044  * Initialize the current action by performing one or more of the following
1045  * actions, as appropriate: merging RMWR and RMWC/RMW actions, stepping forward
1046  * in the NodeStack, manipulating backtracking sets, allocating and
1047  * initializing clock vectors, and computing the promises to fulfill.
1048  *
1049  * @param curr The current action, as passed from the user context; may be
1050  * freed/invalidated after the execution of this function, with a different
1051  * action "returned" its place (pass-by-reference)
1052  * @return True if curr is a newly-explored action; false otherwise
1053  */
1054 bool ModelExecution::initialize_curr_action(ModelAction **curr)
1055 {
1056         ModelAction *newcurr;
1057
1058         if ((*curr)->is_rmwc() || (*curr)->is_rmw()) {
1059                 newcurr = process_rmw(*curr);
1060                 delete *curr;
1061
1062                 if (newcurr->is_rmw())
1063                         compute_promises(newcurr);
1064
1065                 *curr = newcurr;
1066                 return false;
1067         }
1068
1069         (*curr)->set_seq_number(get_next_seq_num());
1070
1071         newcurr = node_stack->explore_action(*curr, scheduler->get_enabled_array());
1072         if (newcurr) {
1073                 /* First restore type and order in case of RMW operation */
1074                 if ((*curr)->is_rmwr())
1075                         newcurr->copy_typeandorder(*curr);
1076
1077                 ASSERT((*curr)->get_location() == newcurr->get_location());
1078                 newcurr->copy_from_new(*curr);
1079
1080                 /* Discard duplicate ModelAction; use action from NodeStack */
1081                 delete *curr;
1082
1083                 /* Always compute new clock vector */
1084                 newcurr->create_cv(get_parent_action(newcurr->get_tid()));
1085
1086                 *curr = newcurr;
1087                 return false; /* Action was explored previously */
1088         } else {
1089                 newcurr = *curr;
1090
1091                 /* Always compute new clock vector */
1092                 newcurr->create_cv(get_parent_action(newcurr->get_tid()));
1093
1094                 /* Assign most recent release fence */
1095                 newcurr->set_last_fence_release(get_last_fence_release(newcurr->get_tid()));
1096
1097                 /*
1098                  * Perform one-time actions when pushing new ModelAction onto
1099                  * NodeStack
1100                  */
1101                 if (newcurr->is_write())
1102                         compute_promises(newcurr);
1103                 else if (newcurr->is_relseq_fixup())
1104                         compute_relseq_breakwrites(newcurr);
1105                 else if (newcurr->is_wait())
1106                         newcurr->get_node()->set_misc_max(2);
1107                 else if (newcurr->is_notify_one()) {
1108                         newcurr->get_node()->set_misc_max(get_safe_ptr_action(&condvar_waiters_map, newcurr->get_location())->size());
1109                 }
1110                 return true; /* This was a new ModelAction */
1111         }
1112 }
1113
1114 /**
1115  * @brief Establish reads-from relation between two actions
1116  *
1117  * Perform basic operations involved with establishing a concrete rf relation,
1118  * including setting the ModelAction data and checking for release sequences.
1119  *
1120  * @param act The action that is reading (must be a read)
1121  * @param rf The action from which we are reading (must be a write)
1122  *
1123  * @return True if this read established synchronization
1124  */
1125 bool ModelExecution::read_from(ModelAction *act, const ModelAction *rf)
1126 {
1127         ASSERT(rf);
1128         ASSERT(rf->is_write());
1129
1130         act->set_read_from(rf);
1131         if (act->is_acquire()) {
1132                 rel_heads_list_t release_heads;
1133                 get_release_seq_heads(act, act, &release_heads);
1134                 int num_heads = release_heads.size();
1135                 for (unsigned int i = 0; i < release_heads.size(); i++)
1136                         if (!synchronize(release_heads[i], act))
1137                                 num_heads--;
1138                 return num_heads > 0;
1139         }
1140         return false;
1141 }
1142
1143 /**
1144  * @brief Synchronizes two actions
1145  *
1146  * When A synchronizes with B (or A --sw-> B), B inherits A's clock vector.
1147  * This function performs the synchronization as well as providing other hooks
1148  * for other checks along with synchronization.
1149  *
1150  * @param first The left-hand side of the synchronizes-with relation
1151  * @param second The right-hand side of the synchronizes-with relation
1152  * @return True if the synchronization was successful (i.e., was consistent
1153  * with the execution order); false otherwise
1154  */
1155 bool ModelExecution::synchronize(const ModelAction *first, ModelAction *second)
1156 {
1157         if (*second < *first) {
1158                 set_bad_synchronization();
1159                 return false;
1160         }
1161         check_promises(first->get_tid(), second->get_cv(), first->get_cv());
1162         return second->synchronize_with(first);
1163 }
1164
1165 /**
1166  * Check promises and eliminate potentially-satisfying threads when a thread is
1167  * blocked (e.g., join, lock). A thread which is waiting on another thread can
1168  * no longer satisfy a promise generated from that thread.
1169  *
1170  * @param blocker The thread on which a thread is waiting
1171  * @param waiting The waiting thread
1172  */
1173 void ModelExecution::thread_blocking_check_promises(Thread *blocker, Thread *waiting)
1174 {
1175         for (unsigned int i = 0; i < promises.size(); i++) {
1176                 Promise *promise = promises[i];
1177                 if (!promise->thread_is_available(waiting->get_id()))
1178                         continue;
1179                 for (unsigned int j = 0; j < promise->get_num_readers(); j++) {
1180                         ModelAction *reader = promise->get_reader(j);
1181                         if (reader->get_tid() != blocker->get_id())
1182                                 continue;
1183                         if (promise->eliminate_thread(waiting->get_id())) {
1184                                 /* Promise has failed */
1185                                 priv->failed_promise = true;
1186                         } else {
1187                                 /* Only eliminate the 'waiting' thread once */
1188                                 return;
1189                         }
1190                 }
1191         }
1192 }
1193
1194 /**
1195  * @brief Check whether a model action is enabled.
1196  *
1197  * Checks whether an operation would be successful (i.e., is a lock already
1198  * locked, or is the joined thread already complete).
1199  *
1200  * For yield-blocking, yields are never enabled.
1201  *
1202  * @param curr is the ModelAction to check whether it is enabled.
1203  * @return a bool that indicates whether the action is enabled.
1204  */
1205 bool ModelExecution::check_action_enabled(ModelAction *curr) {
1206         if (curr->is_lock()) {
1207                 std::mutex *lock = curr->get_mutex();
1208                 struct std::mutex_state *state = lock->get_state();
1209                 if (state->locked)
1210                         return false;
1211         } else if (curr->is_thread_join()) {
1212                 Thread *blocking = curr->get_thread_operand();
1213                 if (!blocking->is_complete()) {
1214                         thread_blocking_check_promises(blocking, get_thread(curr));
1215                         return false;
1216                 }
1217         } else if (params->yieldblock && curr->is_yield()) {
1218                 return false;
1219         }
1220
1221         return true;
1222 }
1223
1224 /**
1225  * This is the heart of the model checker routine. It performs model-checking
1226  * actions corresponding to a given "current action." Among other processes, it
1227  * calculates reads-from relationships, updates synchronization clock vectors,
1228  * forms a memory_order constraints graph, and handles replay/backtrack
1229  * execution when running permutations of previously-observed executions.
1230  *
1231  * @param curr The current action to process
1232  * @return The ModelAction that is actually executed; may be different than
1233  * curr
1234  */
1235 ModelAction * ModelExecution::check_current_action(ModelAction *curr)
1236 {
1237         ASSERT(curr);
1238         bool second_part_of_rmw = curr->is_rmwc() || curr->is_rmw();
1239         bool newly_explored = initialize_curr_action(&curr);
1240
1241         DBG();
1242
1243         wake_up_sleeping_actions(curr);
1244
1245         /* Compute fairness information for CHESS yield algorithm */
1246         if (params->yieldon) {
1247                 curr->get_node()->update_yield(scheduler);
1248         }
1249
1250         /* Add the action to lists before any other model-checking tasks */
1251         if (!second_part_of_rmw)
1252                 add_action_to_lists(curr);
1253
1254         /* Build may_read_from set for newly-created actions */
1255         if (newly_explored && curr->is_read())
1256                 build_may_read_from(curr);
1257
1258         /* Initialize work_queue with the "current action" work */
1259         work_queue_t work_queue(1, CheckCurrWorkEntry(curr));
1260         while (!work_queue.empty() && !has_asserted()) {
1261                 WorkQueueEntry work = work_queue.front();
1262                 work_queue.pop_front();
1263
1264                 switch (work.type) {
1265                 case WORK_CHECK_CURR_ACTION: {
1266                         ModelAction *act = work.action;
1267                         bool update = false; /* update this location's release seq's */
1268                         bool update_all = false; /* update all release seq's */
1269
1270                         if (process_thread_action(curr))
1271                                 update_all = true;
1272
1273                         if (act->is_read() && !second_part_of_rmw && process_read(act))
1274                                 update = true;
1275
1276                         if (act->is_write() && process_write(act, &work_queue))
1277                                 update = true;
1278
1279                         if (act->is_fence() && process_fence(act))
1280                                 update_all = true;
1281
1282                         if (act->is_mutex_op() && process_mutex(act))
1283                                 update_all = true;
1284
1285                         if (act->is_relseq_fixup())
1286                                 process_relseq_fixup(curr, &work_queue);
1287
1288                         if (update_all)
1289                                 work_queue.push_back(CheckRelSeqWorkEntry(NULL));
1290                         else if (update)
1291                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
1292                         break;
1293                 }
1294                 case WORK_CHECK_RELEASE_SEQ:
1295                         resolve_release_sequences(work.location, &work_queue);
1296                         break;
1297                 case WORK_CHECK_MO_EDGES: {
1298                         /** @todo Complete verification of work_queue */
1299                         ModelAction *act = work.action;
1300                         bool updated = false;
1301
1302                         if (act->is_read()) {
1303                                 const ModelAction *rf = act->get_reads_from();
1304                                 const Promise *promise = act->get_reads_from_promise();
1305                                 if (rf) {
1306                                         if (r_modification_order(act, rf))
1307                                                 updated = true;
1308                                 } else if (promise) {
1309                                         if (r_modification_order(act, promise))
1310                                                 updated = true;
1311                                 }
1312                         }
1313                         if (act->is_write()) {
1314                                 if (w_modification_order(act, NULL))
1315                                         updated = true;
1316                         }
1317                         mo_graph->commitChanges();
1318
1319                         if (updated)
1320                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
1321                         break;
1322                 }
1323                 default:
1324                         ASSERT(false);
1325                         break;
1326                 }
1327         }
1328
1329         check_curr_backtracking(curr);
1330         set_backtracking(curr);
1331         return curr;
1332 }
1333
1334 void ModelExecution::check_curr_backtracking(ModelAction *curr)
1335 {
1336         Node *currnode = curr->get_node();
1337         Node *parnode = currnode->get_parent();
1338
1339         if ((parnode && !parnode->backtrack_empty()) ||
1340                          !currnode->misc_empty() ||
1341                          !currnode->read_from_empty() ||
1342                          !currnode->promise_empty() ||
1343                          !currnode->relseq_break_empty()) {
1344                 set_latest_backtrack(curr);
1345         }
1346 }
1347
1348 bool ModelExecution::promises_expired() const
1349 {
1350         for (unsigned int i = 0; i < promises.size(); i++) {
1351                 Promise *promise = promises[i];
1352                 if (promise->get_expiration() < priv->used_sequence_numbers)
1353                         return true;
1354         }
1355         return false;
1356 }
1357
1358 /**
1359  * This is the strongest feasibility check available.
1360  * @return whether the current trace (partial or complete) must be a prefix of
1361  * a feasible trace.
1362  */
1363 bool ModelExecution::isfeasibleprefix() const
1364 {
1365         return pending_rel_seqs.size() == 0 && is_feasible_prefix_ignore_relseq();
1366 }
1367
1368 /**
1369  * Print disagnostic information about an infeasible execution
1370  * @param prefix A string to prefix the output with; if NULL, then a default
1371  * message prefix will be provided
1372  */
1373 void ModelExecution::print_infeasibility(const char *prefix) const
1374 {
1375         char buf[100];
1376         char *ptr = buf;
1377         if (mo_graph->checkForCycles())
1378                 ptr += sprintf(ptr, "[mo cycle]");
1379         if (priv->failed_promise)
1380                 ptr += sprintf(ptr, "[failed promise]");
1381         if (priv->too_many_reads)
1382                 ptr += sprintf(ptr, "[too many reads]");
1383         if (priv->no_valid_reads)
1384                 ptr += sprintf(ptr, "[no valid reads-from]");
1385         if (priv->bad_synchronization)
1386                 ptr += sprintf(ptr, "[bad sw ordering]");
1387         if (promises_expired())
1388                 ptr += sprintf(ptr, "[promise expired]");
1389         if (promises.size() != 0)
1390                 ptr += sprintf(ptr, "[unresolved promise]");
1391         if (ptr != buf)
1392                 model_print("%s: %s\n", prefix ? prefix : "Infeasible", buf);
1393 }
1394
1395 /**
1396  * Returns whether the current completed trace is feasible, except for pending
1397  * release sequences.
1398  */
1399 bool ModelExecution::is_feasible_prefix_ignore_relseq() const
1400 {
1401         return !is_infeasible() && promises.size() == 0;
1402 }
1403
1404 /**
1405  * Check if the current partial trace is infeasible. Does not check any
1406  * end-of-execution flags, which might rule out the execution. Thus, this is
1407  * useful only for ruling an execution as infeasible.
1408  * @return whether the current partial trace is infeasible.
1409  */
1410 bool ModelExecution::is_infeasible() const
1411 {
1412         return mo_graph->checkForCycles() ||
1413                 priv->no_valid_reads ||
1414                 priv->failed_promise ||
1415                 priv->too_many_reads ||
1416                 priv->bad_synchronization ||
1417                 promises_expired();
1418 }
1419
1420 /** Close out a RMWR by converting previous RMWR into a RMW or READ. */
1421 ModelAction * ModelExecution::process_rmw(ModelAction *act) {
1422         ModelAction *lastread = get_last_action(act->get_tid());
1423         lastread->process_rmw(act);
1424         if (act->is_rmw()) {
1425                 if (lastread->get_reads_from())
1426                         mo_graph->addRMWEdge(lastread->get_reads_from(), lastread);
1427                 else
1428                         mo_graph->addRMWEdge(lastread->get_reads_from_promise(), lastread);
1429                 mo_graph->commitChanges();
1430         }
1431         return lastread;
1432 }
1433
1434 /**
1435  * A helper function for ModelExecution::check_recency, to check if the current
1436  * thread is able to read from a different write/promise for 'params.maxreads'
1437  * number of steps and if that write/promise should become visible (i.e., is
1438  * ordered later in the modification order). This helps model memory liveness.
1439  *
1440  * @param curr The current action. Must be a read.
1441  * @param rf The write/promise from which we plan to read
1442  * @param other_rf The write/promise from which we may read
1443  * @return True if we were able to read from other_rf for params.maxreads steps
1444  */
1445 template <typename T, typename U>
1446 bool ModelExecution::should_read_instead(const ModelAction *curr, const T *rf, const U *other_rf) const
1447 {
1448         /* Need a different write/promise */
1449         if (other_rf->equals(rf))
1450                 return false;
1451
1452         /* Only look for "newer" writes/promises */
1453         if (!mo_graph->checkReachable(rf, other_rf))
1454                 return false;
1455
1456         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1457         action_list_t *list = &(*thrd_lists)[id_to_int(curr->get_tid())];
1458         action_list_t::reverse_iterator rit = list->rbegin();
1459         ASSERT((*rit) == curr);
1460         /* Skip past curr */
1461         rit++;
1462
1463         /* Does this write/promise work for everyone? */
1464         for (int i = 0; i < params->maxreads; i++, rit++) {
1465                 ModelAction *act = *rit;
1466                 if (!act->may_read_from(other_rf))
1467                         return false;
1468         }
1469         return true;
1470 }
1471
1472 /**
1473  * Checks whether a thread has read from the same write or Promise for too many
1474  * times without seeing the effects of a later write/Promise.
1475  *
1476  * Basic idea:
1477  * 1) there must a different write/promise that we could read from,
1478  * 2) we must have read from the same write/promise in excess of maxreads times,
1479  * 3) that other write/promise must have been in the reads_from set for maxreads times, and
1480  * 4) that other write/promise must be mod-ordered after the write/promise we are reading.
1481  *
1482  * If so, we decide that the execution is no longer feasible.
1483  *
1484  * @param curr The current action. Must be a read.
1485  * @param rf The ModelAction/Promise from which we might read.
1486  * @return True if the read should succeed; false otherwise
1487  */
1488 template <typename T>
1489 bool ModelExecution::check_recency(ModelAction *curr, const T *rf) const
1490 {
1491         if (!params->maxreads)
1492                 return true;
1493
1494         //NOTE: Next check is just optimization, not really necessary....
1495         if (curr->get_node()->get_read_from_past_size() +
1496                         curr->get_node()->get_read_from_promise_size() <= 1)
1497                 return true;
1498
1499         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1500         int tid = id_to_int(curr->get_tid());
1501         ASSERT(tid < (int)thrd_lists->size());
1502         action_list_t *list = &(*thrd_lists)[tid];
1503         action_list_t::reverse_iterator rit = list->rbegin();
1504         ASSERT((*rit) == curr);
1505         /* Skip past curr */
1506         rit++;
1507
1508         action_list_t::reverse_iterator ritcopy = rit;
1509         /* See if we have enough reads from the same value */
1510         for (int count = 0; count < params->maxreads; ritcopy++, count++) {
1511                 if (ritcopy == list->rend())
1512                         return true;
1513                 ModelAction *act = *ritcopy;
1514                 if (!act->is_read())
1515                         return true;
1516                 if (act->get_reads_from_promise() && !act->get_reads_from_promise()->equals(rf))
1517                         return true;
1518                 if (act->get_reads_from() && !act->get_reads_from()->equals(rf))
1519                         return true;
1520                 if (act->get_node()->get_read_from_past_size() +
1521                                 act->get_node()->get_read_from_promise_size() <= 1)
1522                         return true;
1523         }
1524         for (int i = 0; i < curr->get_node()->get_read_from_past_size(); i++) {
1525                 const ModelAction *write = curr->get_node()->get_read_from_past(i);
1526                 if (should_read_instead(curr, rf, write))
1527                         return false; /* liveness failure */
1528         }
1529         for (int i = 0; i < curr->get_node()->get_read_from_promise_size(); i++) {
1530                 const Promise *promise = curr->get_node()->get_read_from_promise(i);
1531                 if (should_read_instead(curr, rf, promise))
1532                         return false; /* liveness failure */
1533         }
1534         return true;
1535 }
1536
1537 /**
1538  * @brief Updates the mo_graph with the constraints imposed from the current
1539  * read.
1540  *
1541  * Basic idea is the following: Go through each other thread and find
1542  * the last action that happened before our read.  Two cases:
1543  *
1544  * -# The action is a write: that write must either occur before
1545  * the write we read from or be the write we read from.
1546  * -# The action is a read: the write that that action read from
1547  * must occur before the write we read from or be the same write.
1548  *
1549  * @param curr The current action. Must be a read.
1550  * @param rf The ModelAction or Promise that curr reads from. Must be a write.
1551  * @return True if modification order edges were added; false otherwise
1552  */
1553 template <typename rf_type>
1554 bool ModelExecution::r_modification_order(ModelAction *curr, const rf_type *rf)
1555 {
1556         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1557         unsigned int i;
1558         bool added = false;
1559         ASSERT(curr->is_read());
1560
1561         /* Last SC fence in the current thread */
1562         ModelAction *last_sc_fence_local = get_last_seq_cst_fence(curr->get_tid(), NULL);
1563         ModelAction *last_sc_write = NULL;
1564         if (curr->is_seqcst())
1565                 last_sc_write = get_last_seq_cst_write(curr);
1566
1567         /* Iterate over all threads */
1568         for (i = 0; i < thrd_lists->size(); i++) {
1569                 /* Last SC fence in thread i */
1570                 ModelAction *last_sc_fence_thread_local = NULL;
1571                 if (int_to_id((int)i) != curr->get_tid())
1572                         last_sc_fence_thread_local = get_last_seq_cst_fence(int_to_id(i), NULL);
1573
1574                 /* Last SC fence in thread i, before last SC fence in current thread */
1575                 ModelAction *last_sc_fence_thread_before = NULL;
1576                 if (last_sc_fence_local)
1577                         last_sc_fence_thread_before = get_last_seq_cst_fence(int_to_id(i), last_sc_fence_local);
1578
1579                 /* Iterate over actions in thread, starting from most recent */
1580                 action_list_t *list = &(*thrd_lists)[i];
1581                 action_list_t::reverse_iterator rit;
1582                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1583                         ModelAction *act = *rit;
1584
1585                         /* Skip curr */
1586                         if (act == curr)
1587                                 continue;
1588                         /* Don't want to add reflexive edges on 'rf' */
1589                         if (act->equals(rf)) {
1590                                 if (act->happens_before(curr))
1591                                         break;
1592                                 else
1593                                         continue;
1594                         }
1595
1596                         if (act->is_write()) {
1597                                 /* C++, Section 29.3 statement 5 */
1598                                 if (curr->is_seqcst() && last_sc_fence_thread_local &&
1599                                                 *act < *last_sc_fence_thread_local) {
1600                                         added = mo_graph->addEdge(act, rf) || added;
1601                                         break;
1602                                 }
1603                                 /* C++, Section 29.3 statement 4 */
1604                                 else if (act->is_seqcst() && last_sc_fence_local &&
1605                                                 *act < *last_sc_fence_local) {
1606                                         added = mo_graph->addEdge(act, rf) || added;
1607                                         break;
1608                                 }
1609                                 /* C++, Section 29.3 statement 6 */
1610                                 else if (last_sc_fence_thread_before &&
1611                                                 *act < *last_sc_fence_thread_before) {
1612                                         added = mo_graph->addEdge(act, rf) || added;
1613                                         break;
1614                                 }
1615                         }
1616
1617                         /* C++, Section 29.3 statement 3 (second subpoint) */
1618                         if (curr->is_seqcst() && last_sc_write && act == last_sc_write) {
1619                                 added = mo_graph->addEdge(act, rf) || added;
1620                                 break;
1621                         }
1622
1623                         /*
1624                          * Include at most one act per-thread that "happens
1625                          * before" curr
1626                          */
1627                         if (act->happens_before(curr)) {
1628                                 if (act->is_write()) {
1629                                         added = mo_graph->addEdge(act, rf) || added;
1630                                 } else {
1631                                         const ModelAction *prevrf = act->get_reads_from();
1632                                         const Promise *prevrf_promise = act->get_reads_from_promise();
1633                                         if (prevrf) {
1634                                                 if (!prevrf->equals(rf))
1635                                                         added = mo_graph->addEdge(prevrf, rf) || added;
1636                                         } else if (!prevrf_promise->equals(rf)) {
1637                                                 added = mo_graph->addEdge(prevrf_promise, rf) || added;
1638                                         }
1639                                 }
1640                                 break;
1641                         }
1642                 }
1643         }
1644
1645         /*
1646          * All compatible, thread-exclusive promises must be ordered after any
1647          * concrete loads from the same thread
1648          */
1649         for (unsigned int i = 0; i < promises.size(); i++)
1650                 if (promises[i]->is_compatible_exclusive(curr))
1651                         added = mo_graph->addEdge(rf, promises[i]) || added;
1652
1653         return added;
1654 }
1655
1656 /**
1657  * Updates the mo_graph with the constraints imposed from the current write.
1658  *
1659  * Basic idea is the following: Go through each other thread and find
1660  * the lastest action that happened before our write.  Two cases:
1661  *
1662  * (1) The action is a write => that write must occur before
1663  * the current write
1664  *
1665  * (2) The action is a read => the write that that action read from
1666  * must occur before the current write.
1667  *
1668  * This method also handles two other issues:
1669  *
1670  * (I) Sequential Consistency: Making sure that if the current write is
1671  * seq_cst, that it occurs after the previous seq_cst write.
1672  *
1673  * (II) Sending the write back to non-synchronizing reads.
1674  *
1675  * @param curr The current action. Must be a write.
1676  * @param send_fv A vector for stashing reads to which we may pass our future
1677  * value. If NULL, then don't record any future values.
1678  * @return True if modification order edges were added; false otherwise
1679  */
1680 bool ModelExecution::w_modification_order(ModelAction *curr, ModelVector<ModelAction *> *send_fv)
1681 {
1682         SnapVector<action_list_t> *thrd_lists = obj_thrd_map.get(curr->get_location());
1683         unsigned int i;
1684         bool added = false;
1685         ASSERT(curr->is_write());
1686
1687         if (curr->is_seqcst()) {
1688                 /* We have to at least see the last sequentially consistent write,
1689                          so we are initialized. */
1690                 ModelAction *last_seq_cst = get_last_seq_cst_write(curr);
1691                 if (last_seq_cst != NULL) {
1692                         added = mo_graph->addEdge(last_seq_cst, curr) || added;
1693                 }
1694         }
1695
1696         /* Last SC fence in the current thread */
1697         ModelAction *last_sc_fence_local = get_last_seq_cst_fence(curr->get_tid(), NULL);
1698
1699         /* Iterate over all threads */
1700         for (i = 0; i < thrd_lists->size(); i++) {
1701                 /* Last SC fence in thread i, before last SC fence in current thread */
1702                 ModelAction *last_sc_fence_thread_before = NULL;
1703                 if (last_sc_fence_local && int_to_id((int)i) != curr->get_tid())
1704                         last_sc_fence_thread_before = get_last_seq_cst_fence(int_to_id(i), last_sc_fence_local);
1705
1706                 /* Iterate over actions in thread, starting from most recent */
1707                 action_list_t *list = &(*thrd_lists)[i];
1708                 action_list_t::reverse_iterator rit;
1709                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1710                         ModelAction *act = *rit;
1711                         if (act == curr) {
1712                                 /*
1713                                  * 1) If RMW and it actually read from something, then we
1714                                  * already have all relevant edges, so just skip to next
1715                                  * thread.
1716                                  *
1717                                  * 2) If RMW and it didn't read from anything, we should
1718                                  * whatever edge we can get to speed up convergence.
1719                                  *
1720                                  * 3) If normal write, we need to look at earlier actions, so
1721                                  * continue processing list.
1722                                  */
1723                                 if (curr->is_rmw()) {
1724                                         if (curr->get_reads_from() != NULL)
1725                                                 break;
1726                                         else
1727                                                 continue;
1728                                 } else
1729                                         continue;
1730                         }
1731
1732                         /* C++, Section 29.3 statement 7 */
1733                         if (last_sc_fence_thread_before && act->is_write() &&
1734                                         *act < *last_sc_fence_thread_before) {
1735                                 added = mo_graph->addEdge(act, curr) || added;
1736                                 break;
1737                         }
1738
1739                         /*
1740                          * Include at most one act per-thread that "happens
1741                          * before" curr
1742                          */
1743                         if (act->happens_before(curr)) {
1744                                 /*
1745                                  * Note: if act is RMW, just add edge:
1746                                  *   act --mo--> curr
1747                                  * The following edge should be handled elsewhere:
1748                                  *   readfrom(act) --mo--> act
1749                                  */
1750                                 if (act->is_write())
1751                                         added = mo_graph->addEdge(act, curr) || added;
1752                                 else if (act->is_read()) {
1753                                         //if previous read accessed a null, just keep going
1754                                         if (act->get_reads_from() == NULL)
1755                                                 continue;
1756                                         added = mo_graph->addEdge(act->get_reads_from(), curr) || added;
1757                                 }
1758                                 break;
1759                         } else if (act->is_read() && !act->could_synchronize_with(curr) &&
1760                                                      !act->same_thread(curr)) {
1761                                 /* We have an action that:
1762                                    (1) did not happen before us
1763                                    (2) is a read and we are a write
1764                                    (3) cannot synchronize with us
1765                                    (4) is in a different thread
1766                                    =>
1767                                    that read could potentially read from our write.  Note that
1768                                    these checks are overly conservative at this point, we'll
1769                                    do more checks before actually removing the
1770                                    pendingfuturevalue.
1771
1772                                  */
1773                                 if (send_fv && thin_air_constraint_may_allow(curr, act)) {
1774                                         if (!is_infeasible())
1775                                                 send_fv->push_back(act);
1776                                         else if (curr->is_rmw() && act->is_rmw() && curr->get_reads_from() && curr->get_reads_from() == act->get_reads_from())
1777                                                 add_future_value(curr, act);
1778                                 }
1779                         }
1780                 }
1781         }
1782
1783         /*
1784          * All compatible, thread-exclusive promises must be ordered after any
1785          * concrete stores to the same thread, or else they can be merged with
1786          * this store later
1787          */
1788         for (unsigned int i = 0; i < promises.size(); i++)
1789                 if (promises[i]->is_compatible_exclusive(curr))
1790                         added = mo_graph->addEdge(curr, promises[i]) || added;
1791
1792         return added;
1793 }
1794
1795 /** Arbitrary reads from the future are not allowed.  Section 29.3
1796  * part 9 places some constraints.  This method checks one result of constraint
1797  * constraint.  Others require compiler support. */
1798 bool ModelExecution::thin_air_constraint_may_allow(const ModelAction *writer, const ModelAction *reader) const
1799 {
1800         if (!writer->is_rmw())
1801                 return true;
1802
1803         if (!reader->is_rmw())
1804                 return true;
1805
1806         for (const ModelAction *search = writer->get_reads_from(); search != NULL; search = search->get_reads_from()) {
1807                 if (search == reader)
1808                         return false;
1809                 if (search->get_tid() == reader->get_tid() &&
1810                                 search->happens_before(reader))
1811                         break;
1812         }
1813
1814         return true;
1815 }
1816
1817 /**
1818  * Arbitrary reads from the future are not allowed. Section 29.3 part 9 places
1819  * some constraints. This method checks one the following constraint (others
1820  * require compiler support):
1821  *
1822  *   If X --hb-> Y --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
2635         unsigned int hash = 0;
2636
2637         for (it = list->begin(); it != list->end(); it++) {
2638                 const ModelAction *act = *it;
2639                 if (act->get_seq_number() > 0)
2640                         act->print();
2641                 hash = hash^(hash<<3)^((*it)->hash());
2642         }
2643         model_print("HASH %u\n", hash);
2644         model_print("---------------------------------------------------------------------\n");
2645 }
2646
2647 #if SUPPORT_MOD_ORDER_DUMP
2648 void ModelExecution::dumpGraph(char *filename) const
2649 {
2650         char buffer[200];
2651         sprintf(buffer, "%s.dot", filename);
2652         FILE *file = fopen(buffer, "w");
2653         fprintf(file, "digraph %s {\n", filename);
2654         mo_graph->dumpNodes(file);
2655         ModelAction **thread_array = (ModelAction **)model_calloc(1, sizeof(ModelAction *) * get_num_threads());
2656
2657         for (action_list_t::const_iterator it = action_trace.begin(); it != action_trace.end(); it++) {
2658                 ModelAction *act = *it;
2659                 if (act->is_read()) {
2660                         mo_graph->dot_print_node(file, act);
2661                         if (act->get_reads_from())
2662                                 mo_graph->dot_print_edge(file,
2663                                                 act->get_reads_from(),
2664                                                 act,
2665                                                 "label=\"rf\", color=red, weight=2");
2666                         else
2667                                 mo_graph->dot_print_edge(file,
2668                                                 act->get_reads_from_promise(),
2669                                                 act,
2670                                                 "label=\"rf\", color=red");
2671                 }
2672                 if (thread_array[act->get_tid()]) {
2673                         mo_graph->dot_print_edge(file,
2674                                         thread_array[id_to_int(act->get_tid())],
2675                                         act,
2676                                         "label=\"sb\", color=blue, weight=400");
2677                 }
2678
2679                 thread_array[act->get_tid()] = act;
2680         }
2681         fprintf(file, "}\n");
2682         model_free(thread_array);
2683         fclose(file);
2684 }
2685 #endif
2686
2687 /** @brief Prints an execution trace summary. */
2688 void ModelExecution::print_summary() const
2689 {
2690 #if SUPPORT_MOD_ORDER_DUMP
2691         char buffername[100];
2692         sprintf(buffername, "exec%04u", get_execution_number());
2693         mo_graph->dumpGraphToFile(buffername);
2694         sprintf(buffername, "graph%04u", get_execution_number());
2695         dumpGraph(buffername);
2696 #endif
2697
2698         model_print("Execution %d:", get_execution_number());
2699         if (isfeasibleprefix()) {
2700                 if (is_yieldblocked())
2701                         model_print(" YIELD BLOCKED");
2702                 if (scheduler->all_threads_sleeping())
2703                         model_print(" SLEEP-SET REDUNDANT");
2704                 model_print("\n");
2705         } else
2706                 print_infeasibility(" INFEASIBLE");
2707         print_list(&action_trace);
2708         model_print("\n");
2709         if (!promises.empty()) {
2710                 model_print("Pending promises:\n");
2711                 for (unsigned int i = 0; i < promises.size(); i++) {
2712                         model_print(" [P%u] ", i);
2713                         promises[i]->print();
2714                 }
2715                 model_print("\n");
2716         }
2717 }
2718
2719 /**
2720  * Add a Thread to the system for the first time. Should only be called once
2721  * per thread.
2722  * @param t The Thread to add
2723  */
2724 void ModelExecution::add_thread(Thread *t)
2725 {
2726         unsigned int i = id_to_int(t->get_id());
2727         if (i >= thread_map.size())
2728                 thread_map.resize(i + 1);
2729         thread_map[i] = t;
2730         if (!t->is_model_thread())
2731                 scheduler->add_thread(t);
2732 }
2733
2734 /**
2735  * @brief Get a Thread reference by its ID
2736  * @param tid The Thread's ID
2737  * @return A Thread reference
2738  */
2739 Thread * ModelExecution::get_thread(thread_id_t tid) const
2740 {
2741         unsigned int i = id_to_int(tid);
2742         if (i < thread_map.size())
2743                 return thread_map[i];
2744         return NULL;
2745 }
2746
2747 /**
2748  * @brief Get a reference to the Thread in which a ModelAction was executed
2749  * @param act The ModelAction
2750  * @return A Thread reference
2751  */
2752 Thread * ModelExecution::get_thread(const ModelAction *act) const
2753 {
2754         return get_thread(act->get_tid());
2755 }
2756
2757 /**
2758  * @brief Get a Promise's "promise number"
2759  *
2760  * A "promise number" is an index number that is unique to a promise, valid
2761  * only for a specific snapshot of an execution trace. Promises may come and go
2762  * as they are generated an resolved, so an index only retains meaning for the
2763  * current snapshot.
2764  *
2765  * @param promise The Promise to check
2766  * @return The promise index, if the promise still is valid; otherwise -1
2767  */
2768 int ModelExecution::get_promise_number(const Promise *promise) const
2769 {
2770         for (unsigned int i = 0; i < promises.size(); i++)
2771                 if (promises[i] == promise)
2772                         return i;
2773         /* Not found */
2774         return -1;
2775 }
2776
2777 /**
2778  * @brief Check if a Thread is currently enabled
2779  * @param t The Thread to check
2780  * @return True if the Thread is currently enabled
2781  */
2782 bool ModelExecution::is_enabled(Thread *t) const
2783 {
2784         return scheduler->is_enabled(t);
2785 }
2786
2787 /**
2788  * @brief Check if a Thread is currently enabled
2789  * @param tid The ID of the Thread to check
2790  * @return True if the Thread is currently enabled
2791  */
2792 bool ModelExecution::is_enabled(thread_id_t tid) const
2793 {
2794         return scheduler->is_enabled(tid);
2795 }
2796
2797 /**
2798  * @brief Select the next thread to execute based on the curren action
2799  *
2800  * RMW actions occur in two parts, and we cannot split them. And THREAD_CREATE
2801  * actions should be followed by the execution of their child thread. In either
2802  * case, the current action should determine the next thread schedule.
2803  *
2804  * @param curr The current action
2805  * @return The next thread to run, if the current action will determine this
2806  * selection; otherwise NULL
2807  */
2808 Thread * ModelExecution::action_select_next_thread(const ModelAction *curr) const
2809 {
2810         /* Do not split atomic RMW */
2811         if (curr->is_rmwr())
2812                 return get_thread(curr);
2813         /* Follow CREATE with the created thread */
2814         if (curr->get_type() == THREAD_CREATE)
2815                 return curr->get_thread_operand();
2816         return NULL;
2817 }
2818
2819 /** @return True if the execution has taken too many steps */
2820 bool ModelExecution::too_many_steps() const
2821 {
2822         return params->bound != 0 && priv->used_sequence_numbers > params->bound;
2823 }
2824
2825 /**
2826  * Takes the next step in the execution, if possible.
2827  * @param curr The current step to take
2828  * @return Returns the next Thread to run, if any; NULL if this execution
2829  * should terminate
2830  */
2831 Thread * ModelExecution::take_step(ModelAction *curr)
2832 {
2833         Thread *curr_thrd = get_thread(curr);
2834         ASSERT(curr_thrd->get_state() == THREAD_READY);
2835
2836         ASSERT(check_action_enabled(curr)); /* May have side effects? */
2837         curr = check_current_action(curr);
2838         ASSERT(curr);
2839
2840         if (curr_thrd->is_blocked() || curr_thrd->is_complete())
2841                 scheduler->remove_thread(curr_thrd);
2842
2843         return action_select_next_thread(curr);
2844 }
2845
2846 /**
2847  * Launch end-of-execution release sequence fixups only when
2848  * the execution is otherwise feasible AND there are:
2849  *
2850  * (1) pending release sequences
2851  * (2) pending assertions that could be invalidated by a change
2852  * in clock vectors (i.e., data races)
2853  * (3) no pending promises
2854  */
2855 void ModelExecution::fixup_release_sequences()
2856 {
2857         while (!pending_rel_seqs.empty() &&
2858                         is_feasible_prefix_ignore_relseq() &&
2859                         haveUnrealizedRaces()) {
2860                 model_print("*** WARNING: release sequence fixup action "
2861                                 "(%zu pending release seuqence(s)) ***\n",
2862                                 pending_rel_seqs.size());
2863                 ModelAction *fixup = new ModelAction(MODEL_FIXUP_RELSEQ,
2864                                 std::memory_order_seq_cst, NULL, VALUE_NONE,
2865                                 model_thread);
2866                 take_step(fixup);
2867         };
2868 }