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