model: add current action work_queue comment
[c11tester.git] / model.cc
1 #include <stdio.h>
2 #include <algorithm>
3
4 #include "model.h"
5 #include "action.h"
6 #include "nodestack.h"
7 #include "schedule.h"
8 #include "snapshot-interface.h"
9 #include "common.h"
10 #include "clockvector.h"
11 #include "cyclegraph.h"
12 #include "promise.h"
13 #include "datarace.h"
14 #include "mutex.h"
15
16 #define INITIAL_THREAD_ID       0
17
18 ModelChecker *model;
19
20 /** @brief Constructor */
21 ModelChecker::ModelChecker(struct model_params params) :
22         /* Initialize default scheduler */
23         params(params),
24         scheduler(new Scheduler()),
25         num_executions(0),
26         num_feasible_executions(0),
27         diverge(NULL),
28         action_trace(new action_list_t()),
29         thread_map(new HashTable<int, Thread *, int>()),
30         obj_map(new HashTable<const void *, action_list_t, uintptr_t, 4>()),
31         lock_waiters_map(new HashTable<const void *, action_list_t, uintptr_t, 4>()),
32         obj_thrd_map(new HashTable<void *, std::vector<action_list_t>, uintptr_t, 4 >()),
33         promises(new std::vector<Promise *>()),
34         futurevalues(new std::vector<struct PendingFutureValue>()),
35         pending_acq_rel_seq(new std::vector<ModelAction *>()),
36         thrd_last_action(new std::vector<ModelAction *>(1)),
37         node_stack(new NodeStack()),
38         mo_graph(new CycleGraph()),
39         failed_promise(false),
40         too_many_reads(false),
41         asserted(false)
42 {
43         /* Allocate this "size" on the snapshotting heap */
44         priv = (struct model_snapshot_members *)calloc(1, sizeof(*priv));
45         /* First thread created will have id INITIAL_THREAD_ID */
46         priv->next_thread_id = INITIAL_THREAD_ID;
47 }
48
49 /** @brief Destructor */
50 ModelChecker::~ModelChecker()
51 {
52         for (int i = 0; i < get_num_threads(); i++)
53                 delete thread_map->get(i);
54         delete thread_map;
55
56         delete obj_thrd_map;
57         delete obj_map;
58         delete lock_waiters_map;
59         delete action_trace;
60
61         for (unsigned int i = 0; i < promises->size(); i++)
62                 delete (*promises)[i];
63         delete promises;
64
65         delete pending_acq_rel_seq;
66
67         delete thrd_last_action;
68         delete node_stack;
69         delete scheduler;
70         delete mo_graph;
71 }
72
73 /**
74  * Restores user program to initial state and resets all model-checker data
75  * structures.
76  */
77 void ModelChecker::reset_to_initial_state()
78 {
79         DEBUG("+++ Resetting to initial state +++\n");
80         node_stack->reset_execution();
81         failed_promise = false;
82         too_many_reads = false;
83         reset_asserted();
84         snapshotObject->backTrackBeforeStep(0);
85 }
86
87 /** @return a thread ID for a new Thread */
88 thread_id_t ModelChecker::get_next_id()
89 {
90         return priv->next_thread_id++;
91 }
92
93 /** @return the number of user threads created during this execution */
94 int ModelChecker::get_num_threads()
95 {
96         return priv->next_thread_id;
97 }
98
99 /** @return a sequence number for a new ModelAction */
100 modelclock_t ModelChecker::get_next_seq_num()
101 {
102         return ++priv->used_sequence_numbers;
103 }
104
105 /**
106  * @brief Choose the next thread to execute.
107  *
108  * This function chooses the next thread that should execute. It can force the
109  * adjacency of read/write portions of a RMW action, force THREAD_CREATE to be
110  * followed by a THREAD_START, or it can enforce execution replay/backtracking.
111  * The model-checker may have no preference regarding the next thread (i.e.,
112  * when exploring a new execution ordering), in which case this will return
113  * NULL.
114  * @param curr The current ModelAction. This action might guide the choice of
115  * next thread.
116  * @return The next thread to run. If the model-checker has no preference, NULL.
117  */
118 Thread * ModelChecker::get_next_thread(ModelAction *curr)
119 {
120         thread_id_t tid;
121
122         if (curr!=NULL) {
123                 /* Do not split atomic actions. */
124                 if (curr->is_rmwr())
125                         return thread_current();
126                 /* The THREAD_CREATE action points to the created Thread */
127                 else if (curr->get_type() == THREAD_CREATE)
128                         return (Thread *)curr->get_location();
129         }
130
131         /* Have we completed exploring the preselected path? */
132         if (diverge == NULL)
133                 return NULL;
134
135         /* Else, we are trying to replay an execution */
136         ModelAction *next = node_stack->get_next()->get_action();
137
138         if (next == diverge) {
139                 Node *nextnode = next->get_node();
140                 /* Reached divergence point */
141                 if (nextnode->increment_promise()) {
142                         /* The next node will try to satisfy a different set of promises. */
143                         tid = next->get_tid();
144                         node_stack->pop_restofstack(2);
145                 } else if (nextnode->increment_read_from()) {
146                         /* The next node will read from a different value. */
147                         tid = next->get_tid();
148                         node_stack->pop_restofstack(2);
149                 } else if (nextnode->increment_future_value()) {
150                         /* The next node will try to read from a different future value. */
151                         tid = next->get_tid();
152                         node_stack->pop_restofstack(2);
153                 } else {
154                         /* Make a different thread execute for next step */
155                         Node *node = nextnode->get_parent();
156                         tid = node->get_next_backtrack();
157                         node_stack->pop_restofstack(1);
158                 }
159                 DEBUG("*** Divergence point ***\n");
160                 diverge = NULL;
161         } else {
162                 tid = next->get_tid();
163         }
164         DEBUG("*** ModelChecker chose next thread = %d ***\n", tid);
165         ASSERT(tid != THREAD_ID_T_NONE);
166         return thread_map->get(id_to_int(tid));
167 }
168
169 /**
170  * Queries the model-checker for more executions to explore and, if one
171  * exists, resets the model-checker state to execute a new execution.
172  *
173  * @return If there are more executions to explore, return true. Otherwise,
174  * return false.
175  */
176 bool ModelChecker::next_execution()
177 {
178         DBG();
179
180         num_executions++;
181         if (isfinalfeasible())
182                 num_feasible_executions++;
183
184         if (isfinalfeasible() || DBG_ENABLED())
185                 print_summary();
186
187         if ((diverge = get_next_backtrack()) == NULL)
188                 return false;
189
190         if (DBG_ENABLED()) {
191                 printf("Next execution will diverge at:\n");
192                 diverge->print();
193         }
194
195         reset_to_initial_state();
196         return true;
197 }
198
199 ModelAction * ModelChecker::get_last_conflict(ModelAction *act)
200 {
201         switch (act->get_type()) {
202         case ATOMIC_READ:
203         case ATOMIC_WRITE:
204         case ATOMIC_RMW: {
205                 /* linear search: from most recent to oldest */
206                 action_list_t *list = obj_map->get_safe_ptr(act->get_location());
207                 action_list_t::reverse_iterator rit;
208                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
209                         ModelAction *prev = *rit;
210                         if (act->is_synchronizing(prev))
211                                 return prev;
212                 }
213                 break;
214         }
215         case ATOMIC_LOCK:
216         case ATOMIC_TRYLOCK: {
217                 /* linear search: from most recent to oldest */
218                 action_list_t *list = obj_map->get_safe_ptr(act->get_location());
219                 action_list_t::reverse_iterator rit;
220                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
221                         ModelAction *prev = *rit;
222                         if (act->is_conflicting_lock(prev))
223                                 return prev;
224                 }
225                 break;
226         }
227         case ATOMIC_UNLOCK: {
228                 /* linear search: from most recent to oldest */
229                 action_list_t *list = obj_map->get_safe_ptr(act->get_location());
230                 action_list_t::reverse_iterator rit;
231                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
232                         ModelAction *prev = *rit;
233                         if (!act->same_thread(prev)&&prev->is_failed_trylock())
234                                 return prev;
235                 }
236                 break;
237         }
238         default:
239                 break;
240         }
241         return NULL;
242 }
243
244 /** This method find backtracking points where we should try to
245  * reorder the parameter ModelAction against.
246  *
247  * @param the ModelAction to find backtracking points for.
248  */
249 void ModelChecker::set_backtracking(ModelAction *act)
250 {
251         Thread *t = get_thread(act);
252         ModelAction * prev = get_last_conflict(act);
253         if (prev == NULL)
254                 return;
255
256         Node * node = prev->get_node()->get_parent();
257
258         int low_tid, high_tid;
259         if (node->is_enabled(t)) {
260                 low_tid = id_to_int(act->get_tid());
261                 high_tid = low_tid+1;
262         } else {
263                 low_tid = 0;
264                 high_tid = get_num_threads();
265         }
266
267         for(int i = low_tid; i < high_tid; i++) {
268                 thread_id_t tid = int_to_id(i);
269                 if (!node->is_enabled(tid))
270                         continue;
271
272                 /* Check if this has been explored already */
273                 if (node->has_been_explored(tid))
274                         continue;
275
276                 /* See if fairness allows */
277                 if (model->params.fairwindow != 0 && !node->has_priority(tid)) {
278                         bool unfair=false;
279                         for(int t=0;t<node->get_num_threads();t++) {
280                                 thread_id_t tother=int_to_id(t);
281                                 if (node->is_enabled(tother) && node->has_priority(tother)) {
282                                         unfair=true;
283                                         break;
284                                 }
285                         }
286                         if (unfair)
287                                 continue;
288                 }
289
290                 /* Cache the latest backtracking point */
291                 if (!priv->next_backtrack || *prev > *priv->next_backtrack)
292                         priv->next_backtrack = prev;
293
294                 /* If this is a new backtracking point, mark the tree */
295                 if (!node->set_backtrack(tid))
296                         continue;
297                 DEBUG("Setting backtrack: conflict = %d, instead tid = %d\n",
298                                         prev->get_tid(), t->get_id());
299                 if (DBG_ENABLED()) {
300                         prev->print();
301                         act->print();
302                 }
303         }
304 }
305
306 /**
307  * Returns last backtracking point. The model checker will explore a different
308  * path for this point in the next execution.
309  * @return The ModelAction at which the next execution should diverge.
310  */
311 ModelAction * ModelChecker::get_next_backtrack()
312 {
313         ModelAction *next = priv->next_backtrack;
314         priv->next_backtrack = NULL;
315         return next;
316 }
317
318 /**
319  * Processes a read or rmw model action.
320  * @param curr is the read model action to process.
321  * @param second_part_of_rmw is boolean that is true is this is the second action of a rmw.
322  * @return True if processing this read updates the mo_graph.
323  */
324 bool ModelChecker::process_read(ModelAction *curr, bool second_part_of_rmw)
325 {
326         uint64_t value;
327         bool updated = false;
328         while (true) {
329                 const ModelAction *reads_from = curr->get_node()->get_read_from();
330                 if (reads_from != NULL) {
331                         mo_graph->startChanges();
332
333                         value = reads_from->get_value();
334                         bool r_status = false;
335
336                         if (!second_part_of_rmw) {
337                                 check_recency(curr);
338                                 r_status = r_modification_order(curr, reads_from);
339                         }
340
341
342                         if (!second_part_of_rmw&&!isfeasible()&&(curr->get_node()->increment_read_from()||curr->get_node()->increment_future_value())) {
343                                 mo_graph->rollbackChanges();
344                                 too_many_reads = false;
345                                 continue;
346                         }
347
348                         curr->read_from(reads_from);
349                         mo_graph->commitChanges();
350                         updated |= r_status;
351                 } else if (!second_part_of_rmw) {
352                         /* Read from future value */
353                         value = curr->get_node()->get_future_value();
354                         modelclock_t expiration = curr->get_node()->get_future_value_expiration();
355                         curr->read_from(NULL);
356                         Promise *valuepromise = new Promise(curr, value, expiration);
357                         promises->push_back(valuepromise);
358                 }
359                 get_thread(curr)->set_return_value(value);
360                 return updated;
361         }
362 }
363
364 /**
365  * Processes a lock, trylock, or unlock model action.  @param curr is
366  * the read model action to process.
367  *
368  * The try lock operation checks whether the lock is taken.  If not,
369  * it falls to the normal lock operation case.  If so, it returns
370  * fail.
371  *
372  * The lock operation has already been checked that it is enabled, so
373  * it just grabs the lock and synchronizes with the previous unlock.
374  *
375  * The unlock operation has to re-enable all of the threads that are
376  * waiting on the lock.
377  *
378  * @return True if synchronization was updated; false otherwise
379  */
380 bool ModelChecker::process_mutex(ModelAction *curr) {
381         std::mutex *mutex = (std::mutex *)curr->get_location();
382         struct std::mutex_state *state = mutex->get_state();
383         switch (curr->get_type()) {
384         case ATOMIC_TRYLOCK: {
385                 bool success = !state->islocked;
386                 curr->set_try_lock(success);
387                 if (!success) {
388                         get_thread(curr)->set_return_value(0);
389                         break;
390                 }
391                 get_thread(curr)->set_return_value(1);
392         }
393                 //otherwise fall into the lock case
394         case ATOMIC_LOCK: {
395                 if (curr->get_cv()->getClock(state->alloc_tid) <= state->alloc_clock) {
396                         printf("Lock access before initialization\n");
397                         set_assert();
398                 }
399                 state->islocked = true;
400                 ModelAction *unlock = get_last_unlock(curr);
401                 //synchronize with the previous unlock statement
402                 if (unlock != NULL) {
403                         curr->synchronize_with(unlock);
404                         return true;
405                 }
406                 break;
407         }
408         case ATOMIC_UNLOCK: {
409                 //unlock the lock
410                 state->islocked = false;
411                 //wake up the other threads
412                 action_list_t *waiters = lock_waiters_map->get_safe_ptr(curr->get_location());
413                 //activate all the waiting threads
414                 for (action_list_t::iterator rit = waiters->begin(); rit != waiters->end(); rit++) {
415                         scheduler->add_thread(get_thread((*rit)->get_tid()));
416                 }
417                 waiters->clear();
418                 break;
419         }
420         default:
421                 ASSERT(0);
422         }
423         return false;
424 }
425
426 /**
427  * Process a write ModelAction
428  * @param curr The ModelAction to process
429  * @return True if the mo_graph was updated or promises were resolved
430  */
431 bool ModelChecker::process_write(ModelAction *curr)
432 {
433         bool updated_mod_order = w_modification_order(curr);
434         bool updated_promises = resolve_promises(curr);
435
436         if (promises->size() == 0) {
437                 for (unsigned int i = 0; i < futurevalues->size(); i++) {
438                         struct PendingFutureValue pfv = (*futurevalues)[i];
439                         if (pfv.act->get_node()->add_future_value(pfv.value, pfv.expiration) &&
440                                         (!priv->next_backtrack || *pfv.act > *priv->next_backtrack))
441                                 priv->next_backtrack = pfv.act;
442                 }
443                 futurevalues->resize(0);
444         }
445
446         mo_graph->commitChanges();
447         get_thread(curr)->set_return_value(VALUE_NONE);
448         return updated_mod_order || updated_promises;
449 }
450
451 /**
452  * @brief Process the current action for thread-related activity
453  *
454  * Performs current-action processing for a THREAD_* ModelAction. Proccesses
455  * may include setting Thread status, completing THREAD_FINISH/THREAD_JOIN
456  * synchronization, etc.  This function is a no-op for non-THREAD actions
457  * (e.g., ATOMIC_{READ,WRITE,RMW,LOCK}, etc.)
458  *
459  * @param curr The current action
460  * @return True if synchronization was updated
461  */
462 bool ModelChecker::process_thread_action(ModelAction *curr)
463 {
464         bool synchronized = false;
465
466         switch (curr->get_type()) {
467         case THREAD_CREATE: {
468                 Thread *th = (Thread *)curr->get_location();
469                 th->set_creation(curr);
470                 break;
471         }
472         case THREAD_JOIN: {
473                 Thread *waiting, *blocking;
474                 waiting = get_thread(curr);
475                 blocking = (Thread *)curr->get_location();
476                 if (!blocking->is_complete()) {
477                         blocking->push_wait_list(curr);
478                         scheduler->sleep(waiting);
479                 } else {
480                         do_complete_join(curr);
481                         synchronized = true;
482                 }
483                 break;
484         }
485         case THREAD_FINISH: {
486                 Thread *th = get_thread(curr);
487                 while (!th->wait_list_empty()) {
488                         ModelAction *act = th->pop_wait_list();
489                         Thread *wake = get_thread(act);
490                         scheduler->wake(wake);
491                         do_complete_join(act);
492                         synchronized = true;
493                 }
494                 th->complete();
495                 break;
496         }
497         case THREAD_START: {
498                 check_promises(NULL, curr->get_cv());
499                 break;
500         }
501         default:
502                 break;
503         }
504
505         return synchronized;
506 }
507
508 /**
509  * Initialize the current action by performing one or more of the following
510  * actions, as appropriate: merging RMWR and RMWC/RMW actions, stepping forward
511  * in the NodeStack, manipulating backtracking sets, allocating and
512  * initializing clock vectors, and computing the promises to fulfill.
513  *
514  * @param curr The current action, as passed from the user context; may be
515  * freed/invalidated after the execution of this function
516  * @return The current action, as processed by the ModelChecker. Is only the
517  * same as the parameter @a curr if this is a newly-explored action.
518  */
519 ModelAction * ModelChecker::initialize_curr_action(ModelAction *curr)
520 {
521         ModelAction *newcurr;
522
523         if (curr->is_rmwc() || curr->is_rmw()) {
524                 newcurr = process_rmw(curr);
525                 delete curr;
526                 compute_promises(newcurr);
527                 return newcurr;
528         }
529
530         newcurr = node_stack->explore_action(curr, scheduler->get_enabled());
531         if (newcurr) {
532                 /* First restore type and order in case of RMW operation */
533                 if (curr->is_rmwr())
534                         newcurr->copy_typeandorder(curr);
535
536                 ASSERT(curr->get_location() == newcurr->get_location());
537                 newcurr->copy_from_new(curr);
538
539                 /* Discard duplicate ModelAction; use action from NodeStack */
540                 delete curr;
541
542                 /* If we have diverged, we need to reset the clock vector. */
543                 if (diverge == NULL)
544                         newcurr->create_cv(get_parent_action(newcurr->get_tid()));
545         } else {
546                 newcurr = curr;
547                 /*
548                  * Perform one-time actions when pushing new ModelAction onto
549                  * NodeStack
550                  */
551                 curr->create_cv(get_parent_action(curr->get_tid()));
552                 if (curr->is_write())
553                         compute_promises(curr);
554         }
555         return newcurr;
556 }
557
558 /**
559  * This method checks whether a model action is enabled at the given point.
560  * At this point, it checks whether a lock operation would be successful at this point.
561  * If not, it puts the thread in a waiter list.
562  * @param curr is the ModelAction to check whether it is enabled.
563  * @return a bool that indicates whether the action is enabled.
564  */
565 bool ModelChecker::check_action_enabled(ModelAction *curr) {
566         if (curr->is_lock()) {
567                 std::mutex * lock = (std::mutex *)curr->get_location();
568                 struct std::mutex_state * state = lock->get_state();
569                 if (state->islocked) {
570                         //Stick the action in the appropriate waiting queue
571                         lock_waiters_map->get_safe_ptr(curr->get_location())->push_back(curr);
572                         return false;
573                 }
574         }
575
576         return true;
577 }
578
579 /**
580  * This is the heart of the model checker routine. It performs model-checking
581  * actions corresponding to a given "current action." Among other processes, it
582  * calculates reads-from relationships, updates synchronization clock vectors,
583  * forms a memory_order constraints graph, and handles replay/backtrack
584  * execution when running permutations of previously-observed executions.
585  *
586  * @param curr The current action to process
587  * @return The next Thread that must be executed. May be NULL if ModelChecker
588  * makes no choice (e.g., according to replay execution, combining RMW actions,
589  * etc.)
590  */
591 Thread * ModelChecker::check_current_action(ModelAction *curr)
592 {
593         ASSERT(curr);
594
595         bool second_part_of_rmw = curr->is_rmwc() || curr->is_rmw();
596
597         if (!check_action_enabled(curr)) {
598                 /* Make the execution look like we chose to run this action
599                  * much later, when a lock is actually available to release */
600                 get_current_thread()->set_pending(curr);
601                 remove_thread(get_current_thread());
602                 return get_next_thread(NULL);
603         }
604
605         ModelAction *newcurr = initialize_curr_action(curr);
606
607         /* Add the action to lists before any other model-checking tasks */
608         if (!second_part_of_rmw)
609                 add_action_to_lists(newcurr);
610
611         /* Build may_read_from set for newly-created actions */
612         if (curr == newcurr && curr->is_read())
613                 build_reads_from_past(curr);
614         curr = newcurr;
615
616         /* Initialize work_queue with the "current action" work */
617         work_queue_t work_queue(1, CheckCurrWorkEntry(curr));
618
619         while (!work_queue.empty()) {
620                 WorkQueueEntry work = work_queue.front();
621                 work_queue.pop_front();
622
623                 switch (work.type) {
624                 case WORK_CHECK_CURR_ACTION: {
625                         ModelAction *act = work.action;
626                         bool update = false; /* update this location's release seq's */
627                         bool update_all = false; /* update all release seq's */
628
629                         process_thread_action(curr);
630
631                         if (act->is_read() && process_read(act, second_part_of_rmw))
632                                 update = true;
633
634                         if (act->is_write() && process_write(act))
635                                 update = true;
636
637                         if (act->is_mutex_op() && process_mutex(act))
638                                 update_all = true;
639
640                         if (update_all)
641                                 work_queue.push_back(CheckRelSeqWorkEntry(NULL));
642                         else if (update)
643                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
644                         break;
645                 }
646                 case WORK_CHECK_RELEASE_SEQ:
647                         resolve_release_sequences(work.location, &work_queue);
648                         break;
649                 case WORK_CHECK_MO_EDGES: {
650                         /** @todo Complete verification of work_queue */
651                         ModelAction *act = work.action;
652                         bool updated = false;
653
654                         if (act->is_read()) {
655                                 if (r_modification_order(act, act->get_reads_from()))
656                                         updated = true;
657                         }
658                         if (act->is_write()) {
659                                 if (w_modification_order(act))
660                                         updated = true;
661                         }
662
663                         if (updated)
664                                 work_queue.push_back(CheckRelSeqWorkEntry(act->get_location()));
665                         break;
666                 }
667                 default:
668                         ASSERT(false);
669                         break;
670                 }
671         }
672
673         check_curr_backtracking(curr);
674
675         set_backtracking(curr);
676
677         return get_next_thread(curr);
678 }
679
680 /**
681  * Complete a THREAD_JOIN operation, by synchronizing with the THREAD_FINISH
682  * operation from the Thread it is joining with. Must be called after the
683  * completion of the Thread in question.
684  * @param join The THREAD_JOIN action
685  */
686 void ModelChecker::do_complete_join(ModelAction *join)
687 {
688         Thread *blocking = (Thread *)join->get_location();
689         ModelAction *act = get_last_action(blocking->get_id());
690         join->synchronize_with(act);
691 }
692
693 void ModelChecker::check_curr_backtracking(ModelAction * curr) {
694         Node *currnode = curr->get_node();
695         Node *parnode = currnode->get_parent();
696
697         if ((!parnode->backtrack_empty() ||
698                          !currnode->read_from_empty() ||
699                          !currnode->future_value_empty() ||
700                          !currnode->promise_empty())
701                         && (!priv->next_backtrack ||
702                                         *curr > *priv->next_backtrack)) {
703                 priv->next_backtrack = curr;
704         }
705 }
706
707 bool ModelChecker::promises_expired() {
708         for (unsigned int promise_index = 0; promise_index < promises->size(); promise_index++) {
709                 Promise *promise = (*promises)[promise_index];
710                 if (promise->get_expiration()<priv->used_sequence_numbers) {
711                         return true;
712                 }
713         }
714         return false;
715 }
716
717 /** @return whether the current partial trace must be a prefix of a
718  * feasible trace. */
719 bool ModelChecker::isfeasibleprefix() {
720         return promises->size() == 0 && pending_acq_rel_seq->size() == 0;
721 }
722
723 /** @return whether the current partial trace is feasible. */
724 bool ModelChecker::isfeasible() {
725         return !mo_graph->checkForRMWViolation() && isfeasibleotherthanRMW();
726 }
727
728 /** @return whether the current partial trace is feasible other than
729  * multiple RMW reading from the same store. */
730 bool ModelChecker::isfeasibleotherthanRMW() {
731         if (DBG_ENABLED()) {
732                 if (mo_graph->checkForCycles())
733                         DEBUG("Infeasible: modification order cycles\n");
734                 if (failed_promise)
735                         DEBUG("Infeasible: failed promise\n");
736                 if (too_many_reads)
737                         DEBUG("Infeasible: too many reads\n");
738                 if (promises_expired())
739                         DEBUG("Infeasible: promises expired\n");
740         }
741         return !mo_graph->checkForCycles() && !failed_promise && !too_many_reads && !promises_expired();
742 }
743
744 /** Returns whether the current completed trace is feasible. */
745 bool ModelChecker::isfinalfeasible() {
746         if (DBG_ENABLED() && promises->size() != 0)
747                 DEBUG("Infeasible: unrevolved promises\n");
748
749         return isfeasible() && promises->size() == 0;
750 }
751
752 /** Close out a RMWR by converting previous RMWR into a RMW or READ. */
753 ModelAction * ModelChecker::process_rmw(ModelAction *act) {
754         int tid = id_to_int(act->get_tid());
755         ModelAction *lastread = get_last_action(tid);
756         lastread->process_rmw(act);
757         if (act->is_rmw() && lastread->get_reads_from()!=NULL) {
758                 mo_graph->addRMWEdge(lastread->get_reads_from(), lastread);
759                 mo_graph->commitChanges();
760         }
761         return lastread;
762 }
763
764 /**
765  * Checks whether a thread has read from the same write for too many times
766  * without seeing the effects of a later write.
767  *
768  * Basic idea:
769  * 1) there must a different write that we could read from that would satisfy the modification order,
770  * 2) we must have read from the same value in excess of maxreads times, and
771  * 3) that other write must have been in the reads_from set for maxreads times.
772  *
773  * If so, we decide that the execution is no longer feasible.
774  */
775 void ModelChecker::check_recency(ModelAction *curr) {
776         if (params.maxreads != 0) {
777                 if (curr->get_node()->get_read_from_size() <= 1)
778                         return;
779
780                 //Must make sure that execution is currently feasible...  We could
781                 //accidentally clear by rolling back
782                 if (!isfeasible())
783                         return;
784
785                 std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
786                 int tid = id_to_int(curr->get_tid());
787
788                 /* Skip checks */
789                 if ((int)thrd_lists->size() <= tid)
790                         return;
791
792                 action_list_t *list = &(*thrd_lists)[tid];
793
794                 action_list_t::reverse_iterator rit = list->rbegin();
795                 /* Skip past curr */
796                 for (; (*rit) != curr; rit++)
797                         ;
798                 /* go past curr now */
799                 rit++;
800
801                 action_list_t::reverse_iterator ritcopy = rit;
802                 //See if we have enough reads from the same value
803                 int count = 0;
804                 for (; count < params.maxreads; rit++,count++) {
805                         if (rit==list->rend())
806                                 return;
807                         ModelAction *act = *rit;
808                         if (!act->is_read())
809                                 return;
810                         if (act->get_reads_from() != curr->get_reads_from())
811                                 return;
812                         if (act->get_node()->get_read_from_size() <= 1)
813                                 return;
814                 }
815
816                 for (int i = 0; i<curr->get_node()->get_read_from_size(); i++) {
817                         //Get write
818                         const ModelAction * write = curr->get_node()->get_read_from_at(i);
819                         //Need a different write
820                         if (write==curr->get_reads_from())
821                                 continue;
822
823                         /* Test to see whether this is a feasible write to read from*/
824                         mo_graph->startChanges();
825                         r_modification_order(curr, write);
826                         bool feasiblereadfrom = isfeasible();
827                         mo_graph->rollbackChanges();
828
829                         if (!feasiblereadfrom)
830                                 continue;
831                         rit = ritcopy;
832
833                         bool feasiblewrite = true;
834                         //new we need to see if this write works for everyone
835
836                         for (int loop = count; loop>0; loop--,rit++) {
837                                 ModelAction *act=*rit;
838                                 bool foundvalue = false;
839                                 for (int j = 0; j<act->get_node()->get_read_from_size(); j++) {
840                                         if (act->get_node()->get_read_from_at(i)==write) {
841                                                 foundvalue = true;
842                                                 break;
843                                         }
844                                 }
845                                 if (!foundvalue) {
846                                         feasiblewrite = false;
847                                         break;
848                                 }
849                         }
850                         if (feasiblewrite) {
851                                 too_many_reads = true;
852                                 return;
853                         }
854                 }
855         }
856 }
857
858 /**
859  * Updates the mo_graph with the constraints imposed from the current
860  * read.
861  *
862  * Basic idea is the following: Go through each other thread and find
863  * the lastest action that happened before our read.  Two cases:
864  *
865  * (1) The action is a write => that write must either occur before
866  * the write we read from or be the write we read from.
867  *
868  * (2) The action is a read => the write that that action read from
869  * must occur before the write we read from or be the same write.
870  *
871  * @param curr The current action. Must be a read.
872  * @param rf The action that curr reads from. Must be a write.
873  * @return True if modification order edges were added; false otherwise
874  */
875 bool ModelChecker::r_modification_order(ModelAction *curr, const ModelAction *rf)
876 {
877         std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
878         unsigned int i;
879         bool added = false;
880         ASSERT(curr->is_read());
881
882         /* Iterate over all threads */
883         for (i = 0; i < thrd_lists->size(); i++) {
884                 /* Iterate over actions in thread, starting from most recent */
885                 action_list_t *list = &(*thrd_lists)[i];
886                 action_list_t::reverse_iterator rit;
887                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
888                         ModelAction *act = *rit;
889
890                         /*
891                          * Include at most one act per-thread that "happens
892                          * before" curr. Don't consider reflexively.
893                          */
894                         if (act->happens_before(curr) && act != curr) {
895                                 if (act->is_write()) {
896                                         if (rf != act) {
897                                                 mo_graph->addEdge(act, rf);
898                                                 added = true;
899                                         }
900                                 } else {
901                                         const ModelAction *prevreadfrom = act->get_reads_from();
902                                         if (prevreadfrom != NULL && rf != prevreadfrom) {
903                                                 mo_graph->addEdge(prevreadfrom, rf);
904                                                 added = true;
905                                         }
906                                 }
907                                 break;
908                         }
909                 }
910         }
911
912         return added;
913 }
914
915 /** This method fixes up the modification order when we resolve a
916  *  promises.  The basic problem is that actions that occur after the
917  *  read curr could not property add items to the modification order
918  *  for our read.
919  *
920  *  So for each thread, we find the earliest item that happens after
921  *  the read curr.  This is the item we have to fix up with additional
922  *  constraints.  If that action is write, we add a MO edge between
923  *  the Action rf and that action.  If the action is a read, we add a
924  *  MO edge between the Action rf, and whatever the read accessed.
925  *
926  * @param curr is the read ModelAction that we are fixing up MO edges for.
927  * @param rf is the write ModelAction that curr reads from.
928  *
929  */
930 void ModelChecker::post_r_modification_order(ModelAction *curr, const ModelAction *rf)
931 {
932         std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
933         unsigned int i;
934         ASSERT(curr->is_read());
935
936         /* Iterate over all threads */
937         for (i = 0; i < thrd_lists->size(); i++) {
938                 /* Iterate over actions in thread, starting from most recent */
939                 action_list_t *list = &(*thrd_lists)[i];
940                 action_list_t::reverse_iterator rit;
941                 ModelAction *lastact = NULL;
942
943                 /* Find last action that happens after curr */
944                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
945                         ModelAction *act = *rit;
946                         if (curr->happens_before(act)) {
947                                 lastact = act;
948                         } else
949                                 break;
950                 }
951
952                         /* Include at most one act per-thread that "happens before" curr */
953                 if (lastact != NULL) {
954                         if (lastact->is_read()) {
955                                 const ModelAction *postreadfrom = lastact->get_reads_from();
956                                 if (postreadfrom != NULL&&rf != postreadfrom)
957                                         mo_graph->addEdge(rf, postreadfrom);
958                         } else if (rf != lastact) {
959                                 mo_graph->addEdge(rf, lastact);
960                         }
961                         break;
962                 }
963         }
964 }
965
966 /**
967  * Updates the mo_graph with the constraints imposed from the current write.
968  *
969  * Basic idea is the following: Go through each other thread and find
970  * the lastest action that happened before our write.  Two cases:
971  *
972  * (1) The action is a write => that write must occur before
973  * the current write
974  *
975  * (2) The action is a read => the write that that action read from
976  * must occur before the current write.
977  *
978  * This method also handles two other issues:
979  *
980  * (I) Sequential Consistency: Making sure that if the current write is
981  * seq_cst, that it occurs after the previous seq_cst write.
982  *
983  * (II) Sending the write back to non-synchronizing reads.
984  *
985  * @param curr The current action. Must be a write.
986  * @return True if modification order edges were added; false otherwise
987  */
988 bool ModelChecker::w_modification_order(ModelAction *curr)
989 {
990         std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
991         unsigned int i;
992         bool added = false;
993         ASSERT(curr->is_write());
994
995         if (curr->is_seqcst()) {
996                 /* We have to at least see the last sequentially consistent write,
997                          so we are initialized. */
998                 ModelAction *last_seq_cst = get_last_seq_cst(curr);
999                 if (last_seq_cst != NULL) {
1000                         mo_graph->addEdge(last_seq_cst, curr);
1001                         added = true;
1002                 }
1003         }
1004
1005         /* Iterate over all threads */
1006         for (i = 0; i < thrd_lists->size(); i++) {
1007                 /* Iterate over actions in thread, starting from most recent */
1008                 action_list_t *list = &(*thrd_lists)[i];
1009                 action_list_t::reverse_iterator rit;
1010                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1011                         ModelAction *act = *rit;
1012                         if (act == curr) {
1013                                 /*
1014                                  * If RMW, we already have all relevant edges,
1015                                  * so just skip to next thread.
1016                                  * If normal write, we need to look at earlier
1017                                  * actions, so continue processing list.
1018                                  */
1019                                 if (curr->is_rmw())
1020                                         break;
1021                                 else
1022                                         continue;
1023                         }
1024
1025                         /*
1026                          * Include at most one act per-thread that "happens
1027                          * before" curr
1028                          */
1029                         if (act->happens_before(curr)) {
1030                                 /*
1031                                  * Note: if act is RMW, just add edge:
1032                                  *   act --mo--> curr
1033                                  * The following edge should be handled elsewhere:
1034                                  *   readfrom(act) --mo--> act
1035                                  */
1036                                 if (act->is_write())
1037                                         mo_graph->addEdge(act, curr);
1038                                 else if (act->is_read() && act->get_reads_from() != NULL)
1039                                         mo_graph->addEdge(act->get_reads_from(), curr);
1040                                 added = true;
1041                                 break;
1042                         } else if (act->is_read() && !act->is_synchronizing(curr) &&
1043                                                      !act->same_thread(curr)) {
1044                                 /* We have an action that:
1045                                    (1) did not happen before us
1046                                    (2) is a read and we are a write
1047                                    (3) cannot synchronize with us
1048                                    (4) is in a different thread
1049                                    =>
1050                                    that read could potentially read from our write.
1051                                  */
1052                                 if (thin_air_constraint_may_allow(curr, act)) {
1053                                         if (isfeasible() ||
1054                                                         (curr->is_rmw() && act->is_rmw() && curr->get_reads_from() == act->get_reads_from() && isfeasibleotherthanRMW())) {
1055                                                 struct PendingFutureValue pfv = {curr->get_value(),curr->get_seq_number()+params.maxfuturedelay,act};
1056                                                 futurevalues->push_back(pfv);
1057                                         }
1058                                 }
1059                         }
1060                 }
1061         }
1062
1063         return added;
1064 }
1065
1066 /** Arbitrary reads from the future are not allowed.  Section 29.3
1067  * part 9 places some constraints.  This method checks one result of constraint
1068  * constraint.  Others require compiler support. */
1069 bool ModelChecker::thin_air_constraint_may_allow(const ModelAction * writer, const ModelAction *reader) {
1070         if (!writer->is_rmw())
1071                 return true;
1072
1073         if (!reader->is_rmw())
1074                 return true;
1075
1076         for (const ModelAction *search = writer->get_reads_from(); search != NULL; search = search->get_reads_from()) {
1077                 if (search == reader)
1078                         return false;
1079                 if (search->get_tid() == reader->get_tid() &&
1080                                 search->happens_before(reader))
1081                         break;
1082         }
1083
1084         return true;
1085 }
1086
1087 /**
1088  * Finds the head(s) of the release sequence(s) containing a given ModelAction.
1089  * The ModelAction under consideration is expected to be taking part in
1090  * release/acquire synchronization as an object of the "reads from" relation.
1091  * Note that this can only provide release sequence support for RMW chains
1092  * which do not read from the future, as those actions cannot be traced until
1093  * their "promise" is fulfilled. Similarly, we may not even establish the
1094  * presence of a release sequence with certainty, as some modification order
1095  * constraints may be decided further in the future. Thus, this function
1096  * "returns" two pieces of data: a pass-by-reference vector of @a release_heads
1097  * and a boolean representing certainty.
1098  *
1099  * @todo Finish lazy updating, when promises are fulfilled in the future
1100  * @param rf The action that might be part of a release sequence. Must be a
1101  * write.
1102  * @param release_heads A pass-by-reference style return parameter.  After
1103  * execution of this function, release_heads will contain the heads of all the
1104  * relevant release sequences, if any exists
1105  * @return true, if the ModelChecker is certain that release_heads is complete;
1106  * false otherwise
1107  */
1108 bool ModelChecker::release_seq_head(const ModelAction *rf, rel_heads_list_t *release_heads) const
1109 {
1110         while (rf) {
1111                 ASSERT(rf->is_write());
1112
1113                 if (rf->is_release())
1114                         release_heads->push_back(rf);
1115                 if (!rf->is_rmw())
1116                         break; /* End of RMW chain */
1117
1118                 /** @todo Need to be smarter here...  In the linux lock
1119                  * example, this will run to the beginning of the program for
1120                  * every acquire. */
1121                 /** @todo The way to be smarter here is to keep going until 1
1122                  * thread has a release preceded by an acquire and you've seen
1123                  *       both. */
1124
1125                 /* acq_rel RMW is a sufficient stopping condition */
1126                 if (rf->is_acquire() && rf->is_release())
1127                         return true; /* complete */
1128
1129                 rf = rf->get_reads_from();
1130         };
1131         if (!rf) {
1132                 /* read from future: need to settle this later */
1133                 return false; /* incomplete */
1134         }
1135
1136         if (rf->is_release())
1137                 return true; /* complete */
1138
1139         /* else relaxed write; check modification order for contiguous subsequence
1140          * -> rf must be same thread as release */
1141         int tid = id_to_int(rf->get_tid());
1142         std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(rf->get_location());
1143         action_list_t *list = &(*thrd_lists)[tid];
1144         action_list_t::const_reverse_iterator rit;
1145
1146         /* Find rf in the thread list */
1147         rit = std::find(list->rbegin(), list->rend(), rf);
1148         ASSERT(rit != list->rend());
1149
1150         /* Find the last write/release */
1151         for (; rit != list->rend(); rit++)
1152                 if ((*rit)->is_release())
1153                         break;
1154         if (rit == list->rend()) {
1155                 /* No write-release in this thread */
1156                 return true; /* complete */
1157         }
1158         ModelAction *release = *rit;
1159
1160         ASSERT(rf->same_thread(release));
1161
1162         bool certain = true;
1163         for (unsigned int i = 0; i < thrd_lists->size(); i++) {
1164                 if (id_to_int(rf->get_tid()) == (int)i)
1165                         continue;
1166                 list = &(*thrd_lists)[i];
1167
1168                 /* Can we ensure no future writes from this thread may break
1169                  * the release seq? */
1170                 bool future_ordered = false;
1171
1172                 ModelAction *last = get_last_action(int_to_id(i));
1173                 if (last && (rf->happens_before(last) ||
1174                                 last->get_type() == THREAD_FINISH))
1175                         future_ordered = true;
1176
1177                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1178                         const ModelAction *act = *rit;
1179                         /* Reach synchronization -> this thread is complete */
1180                         if (act->happens_before(release))
1181                                 break;
1182                         if (rf->happens_before(act)) {
1183                                 future_ordered = true;
1184                                 continue;
1185                         }
1186
1187                         /* Only writes can break release sequences */
1188                         if (!act->is_write())
1189                                 continue;
1190
1191                         /* Check modification order */
1192                         if (mo_graph->checkReachable(rf, act)) {
1193                                 /* rf --mo--> act */
1194                                 future_ordered = true;
1195                                 continue;
1196                         }
1197                         if (mo_graph->checkReachable(act, release))
1198                                 /* act --mo--> release */
1199                                 break;
1200                         if (mo_graph->checkReachable(release, act) &&
1201                                       mo_graph->checkReachable(act, rf)) {
1202                                 /* release --mo-> act --mo--> rf */
1203                                 return true; /* complete */
1204                         }
1205                         certain = false;
1206                 }
1207                 if (!future_ordered)
1208                         return false; /* This thread is uncertain */
1209         }
1210
1211         if (certain)
1212                 release_heads->push_back(release);
1213         return certain;
1214 }
1215
1216 /**
1217  * A public interface for getting the release sequence head(s) with which a
1218  * given ModelAction must synchronize. This function only returns a non-empty
1219  * result when it can locate a release sequence head with certainty. Otherwise,
1220  * it may mark the internal state of the ModelChecker so that it will handle
1221  * the release sequence at a later time, causing @a act to update its
1222  * synchronization at some later point in execution.
1223  * @param act The 'acquire' action that may read from a release sequence
1224  * @param release_heads A pass-by-reference return parameter. Will be filled
1225  * with the head(s) of the release sequence(s), if they exists with certainty.
1226  * @see ModelChecker::release_seq_head
1227  */
1228 void ModelChecker::get_release_seq_heads(ModelAction *act, rel_heads_list_t *release_heads)
1229 {
1230         const ModelAction *rf = act->get_reads_from();
1231         bool complete;
1232         complete = release_seq_head(rf, release_heads);
1233         if (!complete) {
1234                 /* add act to 'lazy checking' list */
1235                 pending_acq_rel_seq->push_back(act);
1236         }
1237 }
1238
1239 /**
1240  * Attempt to resolve all stashed operations that might synchronize with a
1241  * release sequence for a given location. This implements the "lazy" portion of
1242  * determining whether or not a release sequence was contiguous, since not all
1243  * modification order information is present at the time an action occurs.
1244  *
1245  * @param location The location/object that should be checked for release
1246  * sequence resolutions. A NULL value means to check all locations.
1247  * @param work_queue The work queue to which to add work items as they are
1248  * generated
1249  * @return True if any updates occurred (new synchronization, new mo_graph
1250  * edges)
1251  */
1252 bool ModelChecker::resolve_release_sequences(void *location, work_queue_t *work_queue)
1253 {
1254         bool updated = false;
1255         std::vector<ModelAction *>::iterator it = pending_acq_rel_seq->begin();
1256         while (it != pending_acq_rel_seq->end()) {
1257                 ModelAction *act = *it;
1258
1259                 /* Only resolve sequences on the given location, if provided */
1260                 if (location && act->get_location() != location) {
1261                         it++;
1262                         continue;
1263                 }
1264
1265                 const ModelAction *rf = act->get_reads_from();
1266                 rel_heads_list_t release_heads;
1267                 bool complete;
1268                 complete = release_seq_head(rf, &release_heads);
1269                 for (unsigned int i = 0; i < release_heads.size(); i++) {
1270                         if (!act->has_synchronized_with(release_heads[i])) {
1271                                 updated = true;
1272                                 act->synchronize_with(release_heads[i]);
1273                         }
1274                 }
1275
1276                 if (updated) {
1277                         /* Re-check act for mo_graph edges */
1278                         work_queue->push_back(MOEdgeWorkEntry(act));
1279
1280                         /* propagate synchronization to later actions */
1281                         action_list_t::reverse_iterator it = action_trace->rbegin();
1282                         for (; (*it) != act; it++) {
1283                                 ModelAction *propagate = *it;
1284                                 if (act->happens_before(propagate)) {
1285                                         propagate->synchronize_with(act);
1286                                         /* Re-check 'propagate' for mo_graph edges */
1287                                         work_queue->push_back(MOEdgeWorkEntry(propagate));
1288                                 }
1289                         }
1290                 }
1291                 if (complete)
1292                         it = pending_acq_rel_seq->erase(it);
1293                 else
1294                         it++;
1295         }
1296
1297         // If we resolved promises or data races, see if we have realized a data race.
1298         if (checkDataRaces()) {
1299                 set_assert();
1300         }
1301
1302         return updated;
1303 }
1304
1305 /**
1306  * Performs various bookkeeping operations for the current ModelAction. For
1307  * instance, adds action to the per-object, per-thread action vector and to the
1308  * action trace list of all thread actions.
1309  *
1310  * @param act is the ModelAction to add.
1311  */
1312 void ModelChecker::add_action_to_lists(ModelAction *act)
1313 {
1314         int tid = id_to_int(act->get_tid());
1315         action_trace->push_back(act);
1316
1317         obj_map->get_safe_ptr(act->get_location())->push_back(act);
1318
1319         std::vector<action_list_t> *vec = obj_thrd_map->get_safe_ptr(act->get_location());
1320         if (tid >= (int)vec->size())
1321                 vec->resize(priv->next_thread_id);
1322         (*vec)[tid].push_back(act);
1323
1324         if ((int)thrd_last_action->size() <= tid)
1325                 thrd_last_action->resize(get_num_threads());
1326         (*thrd_last_action)[tid] = act;
1327 }
1328
1329 /**
1330  * @brief Get the last action performed by a particular Thread
1331  * @param tid The thread ID of the Thread in question
1332  * @return The last action in the thread
1333  */
1334 ModelAction * ModelChecker::get_last_action(thread_id_t tid) const
1335 {
1336         int threadid = id_to_int(tid);
1337         if (threadid < (int)thrd_last_action->size())
1338                 return (*thrd_last_action)[id_to_int(tid)];
1339         else
1340                 return NULL;
1341 }
1342
1343 /**
1344  * Gets the last memory_order_seq_cst write (in the total global sequence)
1345  * performed on a particular object (i.e., memory location), not including the
1346  * current action.
1347  * @param curr The current ModelAction; also denotes the object location to
1348  * check
1349  * @return The last seq_cst write
1350  */
1351 ModelAction * ModelChecker::get_last_seq_cst(ModelAction *curr) const
1352 {
1353         void *location = curr->get_location();
1354         action_list_t *list = obj_map->get_safe_ptr(location);
1355         /* Find: max({i in dom(S) | seq_cst(t_i) && isWrite(t_i) && samevar(t_i, t)}) */
1356         action_list_t::reverse_iterator rit;
1357         for (rit = list->rbegin(); rit != list->rend(); rit++)
1358                 if ((*rit)->is_write() && (*rit)->is_seqcst() && (*rit) != curr)
1359                         return *rit;
1360         return NULL;
1361 }
1362
1363 /**
1364  * Gets the last unlock operation performed on a particular mutex (i.e., memory
1365  * location). This function identifies the mutex according to the current
1366  * action, which is presumed to perform on the same mutex.
1367  * @param curr The current ModelAction; also denotes the object location to
1368  * check
1369  * @return The last unlock operation
1370  */
1371 ModelAction * ModelChecker::get_last_unlock(ModelAction *curr) const
1372 {
1373         void *location = curr->get_location();
1374         action_list_t *list = obj_map->get_safe_ptr(location);
1375         /* Find: max({i in dom(S) | isUnlock(t_i) && samevar(t_i, t)}) */
1376         action_list_t::reverse_iterator rit;
1377         for (rit = list->rbegin(); rit != list->rend(); rit++)
1378                 if ((*rit)->is_unlock())
1379                         return *rit;
1380         return NULL;
1381 }
1382
1383 ModelAction * ModelChecker::get_parent_action(thread_id_t tid)
1384 {
1385         ModelAction *parent = get_last_action(tid);
1386         if (!parent)
1387                 parent = get_thread(tid)->get_creation();
1388         return parent;
1389 }
1390
1391 /**
1392  * Returns the clock vector for a given thread.
1393  * @param tid The thread whose clock vector we want
1394  * @return Desired clock vector
1395  */
1396 ClockVector * ModelChecker::get_cv(thread_id_t tid)
1397 {
1398         return get_parent_action(tid)->get_cv();
1399 }
1400
1401 /**
1402  * Resolve a set of Promises with a current write. The set is provided in the
1403  * Node corresponding to @a write.
1404  * @param write The ModelAction that is fulfilling Promises
1405  * @return True if promises were resolved; false otherwise
1406  */
1407 bool ModelChecker::resolve_promises(ModelAction *write)
1408 {
1409         bool resolved = false;
1410
1411         for (unsigned int i = 0, promise_index = 0; promise_index < promises->size(); i++) {
1412                 Promise *promise = (*promises)[promise_index];
1413                 if (write->get_node()->get_promise(i)) {
1414                         ModelAction *read = promise->get_action();
1415                         read->read_from(write);
1416                         if (read->is_rmw()) {
1417                                 mo_graph->addRMWEdge(write, read);
1418                         }
1419                         //First fix up the modification order for actions that happened
1420                         //before the read
1421                         r_modification_order(read, write);
1422                         //Next fix up the modification order for actions that happened
1423                         //after the read.
1424                         post_r_modification_order(read, write);
1425                         promises->erase(promises->begin() + promise_index);
1426                         resolved = true;
1427                 } else
1428                         promise_index++;
1429         }
1430         return resolved;
1431 }
1432
1433 /**
1434  * Compute the set of promises that could potentially be satisfied by this
1435  * action. Note that the set computation actually appears in the Node, not in
1436  * ModelChecker.
1437  * @param curr The ModelAction that may satisfy promises
1438  */
1439 void ModelChecker::compute_promises(ModelAction *curr)
1440 {
1441         for (unsigned int i = 0; i < promises->size(); i++) {
1442                 Promise *promise = (*promises)[i];
1443                 const ModelAction *act = promise->get_action();
1444                 if (!act->happens_before(curr) &&
1445                                 act->is_read() &&
1446                                 !act->is_synchronizing(curr) &&
1447                                 !act->same_thread(curr) &&
1448                                 promise->get_value() == curr->get_value()) {
1449                         curr->get_node()->set_promise(i);
1450                 }
1451         }
1452 }
1453
1454 /** Checks promises in response to change in ClockVector Threads. */
1455 void ModelChecker::check_promises(ClockVector *old_cv, ClockVector *merge_cv)
1456 {
1457         for (unsigned int i = 0; i < promises->size(); i++) {
1458                 Promise *promise = (*promises)[i];
1459                 const ModelAction *act = promise->get_action();
1460                 if ((old_cv == NULL || !old_cv->synchronized_since(act)) &&
1461                                 merge_cv->synchronized_since(act)) {
1462                         //This thread is no longer able to send values back to satisfy the promise
1463                         int num_synchronized_threads = promise->increment_threads();
1464                         if (num_synchronized_threads == get_num_threads()) {
1465                                 //Promise has failed
1466                                 failed_promise = true;
1467                                 return;
1468                         }
1469                 }
1470         }
1471 }
1472
1473 /**
1474  * Build up an initial set of all past writes that this 'read' action may read
1475  * from. This set is determined by the clock vector's "happens before"
1476  * relationship.
1477  * @param curr is the current ModelAction that we are exploring; it must be a
1478  * 'read' operation.
1479  */
1480 void ModelChecker::build_reads_from_past(ModelAction *curr)
1481 {
1482         std::vector<action_list_t> *thrd_lists = obj_thrd_map->get_safe_ptr(curr->get_location());
1483         unsigned int i;
1484         ASSERT(curr->is_read());
1485
1486         ModelAction *last_seq_cst = NULL;
1487
1488         /* Track whether this object has been initialized */
1489         bool initialized = false;
1490
1491         if (curr->is_seqcst()) {
1492                 last_seq_cst = get_last_seq_cst(curr);
1493                 /* We have to at least see the last sequentially consistent write,
1494                          so we are initialized. */
1495                 if (last_seq_cst != NULL)
1496                         initialized = true;
1497         }
1498
1499         /* Iterate over all threads */
1500         for (i = 0; i < thrd_lists->size(); i++) {
1501                 /* Iterate over actions in thread, starting from most recent */
1502                 action_list_t *list = &(*thrd_lists)[i];
1503                 action_list_t::reverse_iterator rit;
1504                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
1505                         ModelAction *act = *rit;
1506
1507                         /* Only consider 'write' actions */
1508                         if (!act->is_write() || act == curr)
1509                                 continue;
1510
1511                         /* Don't consider more than one seq_cst write if we are a seq_cst read. */
1512                         if (!curr->is_seqcst() || (!act->is_seqcst() && (last_seq_cst == NULL || !act->happens_before(last_seq_cst))) || act == last_seq_cst) {
1513                                 DEBUG("Adding action to may_read_from:\n");
1514                                 if (DBG_ENABLED()) {
1515                                         act->print();
1516                                         curr->print();
1517                                 }
1518                                 curr->get_node()->add_read_from(act);
1519                         }
1520
1521                         /* Include at most one act per-thread that "happens before" curr */
1522                         if (act->happens_before(curr)) {
1523                                 initialized = true;
1524                                 break;
1525                         }
1526                 }
1527         }
1528
1529         if (!initialized) {
1530                 /** @todo Need a more informative way of reporting errors. */
1531                 printf("ERROR: may read from uninitialized atomic\n");
1532         }
1533
1534         if (DBG_ENABLED() || !initialized) {
1535                 printf("Reached read action:\n");
1536                 curr->print();
1537                 printf("Printing may_read_from\n");
1538                 curr->get_node()->print_may_read_from();
1539                 printf("End printing may_read_from\n");
1540         }
1541
1542         ASSERT(initialized);
1543 }
1544
1545 static void print_list(action_list_t *list)
1546 {
1547         action_list_t::iterator it;
1548
1549         printf("---------------------------------------------------------------------\n");
1550         printf("Trace:\n");
1551
1552         for (it = list->begin(); it != list->end(); it++) {
1553                 (*it)->print();
1554         }
1555         printf("---------------------------------------------------------------------\n");
1556 }
1557
1558 void ModelChecker::print_summary()
1559 {
1560         printf("\n");
1561         printf("Number of executions: %d\n", num_executions);
1562         printf("Number of feasible executions: %d\n", num_feasible_executions);
1563         printf("Total nodes created: %d\n", node_stack->get_total_nodes());
1564
1565 #if SUPPORT_MOD_ORDER_DUMP
1566         scheduler->print();
1567         char buffername[100];
1568         sprintf(buffername, "exec%04u", num_executions);
1569         mo_graph->dumpGraphToFile(buffername);
1570 #endif
1571
1572         if (!isfinalfeasible())
1573                 printf("INFEASIBLE EXECUTION!\n");
1574         print_list(action_trace);
1575         printf("\n");
1576 }
1577
1578 /**
1579  * Add a Thread to the system for the first time. Should only be called once
1580  * per thread.
1581  * @param t The Thread to add
1582  */
1583 void ModelChecker::add_thread(Thread *t)
1584 {
1585         thread_map->put(id_to_int(t->get_id()), t);
1586         scheduler->add_thread(t);
1587 }
1588
1589 /**
1590  * Removes a thread from the scheduler. 
1591  * @param the thread to remove.
1592  */
1593 void ModelChecker::remove_thread(Thread *t)
1594 {
1595         scheduler->remove_thread(t);
1596 }
1597
1598 /**
1599  * Switch from a user-context to the "master thread" context (a.k.a. system
1600  * context). This switch is made with the intention of exploring a particular
1601  * model-checking action (described by a ModelAction object). Must be called
1602  * from a user-thread context.
1603  * @param act The current action that will be explored. Must not be NULL.
1604  * @return Return status from the 'swap' call (i.e., success/fail, 0/-1)
1605  */
1606 int ModelChecker::switch_to_master(ModelAction *act)
1607 {
1608         DBG();
1609         Thread *old = thread_current();
1610         set_current_action(act);
1611         old->set_state(THREAD_READY);
1612         return Thread::swap(old, &system_context);
1613 }
1614
1615 /**
1616  * Takes the next step in the execution, if possible.
1617  * @return Returns true (success) if a step was taken and false otherwise.
1618  */
1619 bool ModelChecker::take_step() {
1620         if (has_asserted())
1621                 return false;
1622
1623         Thread * curr = thread_current();
1624         if (curr) {
1625                 if (curr->get_state() == THREAD_READY) {
1626                         ASSERT(priv->current_action);
1627
1628                         priv->nextThread = check_current_action(priv->current_action);
1629                         priv->current_action = NULL;
1630                         if (curr->is_blocked() || curr->is_complete())
1631                                 scheduler->remove_thread(curr);
1632                 } else {
1633                         ASSERT(false);
1634                 }
1635         }
1636         Thread * next = scheduler->next_thread(priv->nextThread);
1637
1638         /* Infeasible -> don't take any more steps */
1639         if (!isfeasible())
1640                 return false;
1641
1642         if (next)
1643                 next->set_state(THREAD_RUNNING);
1644         DEBUG("(%d, %d)\n", curr ? curr->get_id() : -1, next ? next->get_id() : -1);
1645
1646         /* next == NULL -> don't take any more steps */
1647         if (!next)
1648                 return false;
1649
1650         if ( next->get_pending() != NULL ) {
1651                 //restart a pending action
1652                 set_current_action(next->get_pending());
1653                 next->set_pending(NULL);
1654                 next->set_state(THREAD_READY);
1655                 return true;
1656         }
1657
1658         /* Return false only if swap fails with an error */
1659         return (Thread::swap(&system_context, next) == 0);
1660 }
1661
1662 /** Runs the current execution until threre are no more steps to take. */
1663 void ModelChecker::finish_execution() {
1664         DBG();
1665
1666         while (take_step());
1667 }