towards making rmw work...
[model-checker.git] / model.cc
1 #include <stdio.h>
2
3 #include "model.h"
4 #include "action.h"
5 #include "nodestack.h"
6 #include "schedule.h"
7 #include "snapshot-interface.h"
8 #include "common.h"
9 #include "clockvector.h"
10 #include "cyclegraph.h"
11
12 #define INITIAL_THREAD_ID       0
13
14 ModelChecker *model;
15
16 /** @brief Constructor */
17 ModelChecker::ModelChecker()
18         :
19         /* Initialize default scheduler */
20         scheduler(new Scheduler()),
21         /* First thread created will have id INITIAL_THREAD_ID */
22         next_thread_id(INITIAL_THREAD_ID),
23         used_sequence_numbers(0),
24
25         num_executions(0),
26         current_action(NULL),
27         diverge(NULL),
28         nextThread(THREAD_ID_T_NONE),
29         action_trace(new action_list_t()),
30         thread_map(new std::map<int, Thread *>),
31         obj_map(new std::map<const void *, action_list_t>()),
32         obj_thrd_map(new std::map<void *, std::vector<action_list_t> >()),
33         thrd_last_action(new std::vector<ModelAction *>(1)),
34         node_stack(new NodeStack()),
35         next_backtrack(NULL),
36         cyclegraph(new CycleGraph())
37 {
38 }
39
40 /** @brief Destructor */
41 ModelChecker::~ModelChecker()
42 {
43         std::map<int, Thread *>::iterator it;
44         for (it = thread_map->begin(); it != thread_map->end(); it++)
45                 delete (*it).second;
46         delete thread_map;
47
48         delete obj_thrd_map;
49         delete obj_map;
50         delete action_trace;
51         delete thrd_last_action;
52         delete node_stack;
53         delete scheduler;
54         delete cyclegraph;
55 }
56
57 /**
58  * Restores user program to initial state and resets all model-checker data
59  * structures.
60  */
61 void ModelChecker::reset_to_initial_state()
62 {
63         DEBUG("+++ Resetting to initial state +++\n");
64         node_stack->reset_execution();
65         current_action = NULL;
66         next_thread_id = INITIAL_THREAD_ID;
67         used_sequence_numbers = 0;
68         nextThread = 0;
69         next_backtrack = NULL;
70         snapshotObject->backTrackBeforeStep(0);
71 }
72
73 /** @returns a thread ID for a new Thread */
74 thread_id_t ModelChecker::get_next_id()
75 {
76         return next_thread_id++;
77 }
78
79 /** @returns the number of user threads created during this execution */
80 int ModelChecker::get_num_threads()
81 {
82         return next_thread_id;
83 }
84
85 /** @returns a sequence number for a new ModelAction */
86 modelclock_t ModelChecker::get_next_seq_num()
87 {
88         return ++used_sequence_numbers;
89 }
90
91 /**
92  * Performs the "scheduling" for the model-checker. That is, it checks if the
93  * model-checker has selected a "next thread to run" and returns it, if
94  * available. This function should be called from the Scheduler routine, where
95  * the Scheduler falls back to a default scheduling routine if needed.
96  *
97  * @return The next thread chosen by the model-checker. If the model-checker
98  * makes no selection, retuns NULL.
99  */
100 Thread * ModelChecker::schedule_next_thread()
101 {
102         Thread *t;
103         if (nextThread == THREAD_ID_T_NONE)
104                 return NULL;
105         t = (*thread_map)[id_to_int(nextThread)];
106
107         ASSERT(t != NULL);
108
109         return t;
110 }
111
112 /**
113  * Choose the next thread in the replay sequence.
114  *
115  * If the replay sequence has reached the 'diverge' point, returns a thread
116  * from the backtracking set. Otherwise, simply returns the next thread in the
117  * sequence that is being replayed.
118  */
119 thread_id_t ModelChecker::get_next_replay_thread()
120 {
121         ModelAction *next;
122         thread_id_t tid;
123
124         /* Have we completed exploring the preselected path? */
125         if (diverge == NULL)
126                 return THREAD_ID_T_NONE;
127
128         /* Else, we are trying to replay an execution */
129         next = node_stack->get_next()->get_action();
130
131         if (next == diverge) {
132                 Node *nextnode = next->get_node();
133                 /* Reached divergence point */
134                 if (nextnode->increment_read_from()) {
135                         /* The next node will read from a different value */
136                         tid = next->get_tid();
137                         node_stack->pop_restofstack(2);
138                 } else {
139                         /* Make a different thread execute for next step */
140                         Node *node = nextnode->get_parent();
141                         tid = node->get_next_backtrack();
142                         node_stack->pop_restofstack(1);
143                 }
144                 DEBUG("*** Divergence point ***\n");
145                 diverge = NULL;
146         } else {
147                 tid = next->get_tid();
148         }
149         DEBUG("*** ModelChecker chose next thread = %d ***\n", tid);
150         return tid;
151 }
152
153 /**
154  * Queries the model-checker for more executions to explore and, if one
155  * exists, resets the model-checker state to execute a new execution.
156  *
157  * @return If there are more executions to explore, return true. Otherwise,
158  * return false.
159  */
160 bool ModelChecker::next_execution()
161 {
162         DBG();
163
164         num_executions++;
165
166         if (isfeasible() || DBG_ENABLED())
167                 print_summary();
168
169         if ((diverge = model->get_next_backtrack()) == NULL)
170                 return false;
171
172         if (DBG_ENABLED()) {
173                 printf("Next execution will diverge at:\n");
174                 diverge->print();
175         }
176
177         model->reset_to_initial_state();
178         return true;
179 }
180
181 ModelAction * ModelChecker::get_last_conflict(ModelAction *act)
182 {
183         action_type type = act->get_type();
184
185         switch (type) {
186                 case ATOMIC_READ:
187                 case ATOMIC_WRITE:
188                 case ATOMIC_RMW:
189                         break;
190                 default:
191                         return NULL;
192         }
193         /* linear search: from most recent to oldest */
194         action_list_t *list = &(*obj_map)[act->get_location()];
195         action_list_t::reverse_iterator rit;
196         for (rit = list->rbegin(); rit != list->rend(); rit++) {
197                 ModelAction *prev = *rit;
198                 if (act->is_synchronizing(prev))
199                         return prev;
200         }
201         return NULL;
202 }
203
204 void ModelChecker::set_backtracking(ModelAction *act)
205 {
206         ModelAction *prev;
207         Node *node;
208         Thread *t = get_thread(act->get_tid());
209
210         prev = get_last_conflict(act);
211         if (prev == NULL)
212                 return;
213
214         node = prev->get_node()->get_parent();
215
216         while (!node->is_enabled(t))
217                 t = t->get_parent();
218
219         /* Check if this has been explored already */
220         if (node->has_been_explored(t->get_id()))
221                 return;
222
223         /* Cache the latest backtracking point */
224         if (!next_backtrack || *prev > *next_backtrack)
225                 next_backtrack = prev;
226
227         /* If this is a new backtracking point, mark the tree */
228         if (!node->set_backtrack(t->get_id()))
229                 return;
230         DEBUG("Setting backtrack: conflict = %d, instead tid = %d\n",
231                         prev->get_tid(), t->get_id());
232         if (DBG_ENABLED()) {
233                 prev->print();
234                 act->print();
235         }
236 }
237
238 /**
239  * Returns last backtracking point. The model checker will explore a different
240  * path for this point in the next execution.
241  * @return The ModelAction at which the next execution should diverge.
242  */
243 ModelAction * ModelChecker::get_next_backtrack()
244 {
245         ModelAction *next = next_backtrack;
246         next_backtrack = NULL;
247         return next;
248 }
249
250 void ModelChecker::check_current_action(void)
251 {
252         ModelAction *curr = this->current_action;
253         bool already_added = false;
254         this->current_action = NULL;
255         if (!curr) {
256                 DEBUG("trying to push NULL action...\n");
257                 return;
258         }
259
260         if (curr->is_rmwc()||curr->is_rmw()) {
261                 ModelAction *tmp=process_rmw(curr);
262                 already_added = true;
263                 delete curr;
264                 curr=tmp;
265         } else {
266                 ModelAction * tmp = node_stack->explore_action(curr);
267                 if (tmp) {
268                         /* Discard duplicate ModelAction; use action from NodeStack */
269                         /* First restore type and order in case of RMW operation */
270                         if (curr->is_rmwr())
271                                 tmp->copy_typeandorder(curr);
272                         delete curr;
273                         curr = tmp;
274                 } else {
275                         /*
276                          * Perform one-time actions when pushing new ModelAction onto
277                          * NodeStack
278                          */
279                         curr->create_cv(get_parent_action(curr->get_tid()));
280                         /* Build may_read_from set */
281                         if (curr->is_read())
282                                 build_reads_from_past(curr);
283                 }
284         }
285
286         /* Assign 'creation' parent */
287         if (curr->get_type() == THREAD_CREATE) {
288                 Thread *th = (Thread *)curr->get_location();
289                 th->set_creation(curr);
290         }
291
292         /* Assign reads_from values */
293         Thread *th = get_thread(curr->get_tid());
294         uint64_t value = VALUE_NONE;
295         if (curr->is_read()) {
296                 const ModelAction *reads_from = curr->get_node()->get_read_from();
297                 value = reads_from->get_value();
298                 /* Assign reads_from, perform release/acquire synchronization */
299                 curr->read_from(reads_from);
300                 r_modification_order(curr,reads_from);
301         } else if (curr->is_write()) {
302                 w_modification_order(curr);
303         }
304
305         th->set_return_value(value);
306
307         /* Add action to list.  */
308         if (!already_added)
309                 add_action_to_lists(curr);
310
311         /* Do not split atomic actions. */
312         if (curr->is_rmwr()) {
313                 nextThread = thread_current()->get_id();
314                 return;
315         }
316
317         /* Is there a better interface for setting the next thread rather
318                  than this field/convoluted approach?  Perhaps like just returning
319                  it or something? */
320
321         nextThread = get_next_replay_thread();
322
323         Node *currnode = curr->get_node();
324         Node *parnode = currnode->get_parent();
325
326         if (!parnode->backtrack_empty()||!currnode->readsfrom_empty())
327                 if (!next_backtrack || *curr > *next_backtrack)
328                         next_backtrack = curr;
329
330         set_backtracking(curr);
331 }
332
333 /** @returns whether the current trace is feasible. */
334 bool ModelChecker::isfeasible() {
335         return !cyclegraph->checkForCycles();
336 }
337
338 /** Close out a RMWR by converting previous RMWR into a RMW or READ. */
339 ModelAction * ModelChecker::process_rmw(ModelAction * act) {
340         int tid = id_to_int(act->get_tid());
341         ModelAction *lastread=get_last_action(tid);
342         lastread->process_rmw(act);
343         if (act->is_rmw())
344                 cyclegraph->addRMWEdge(lastread, lastread->get_reads_from());
345         return lastread;
346 }
347
348 /**
349  * Updates the cyclegraph with the constraints imposed from the current read.
350  * @param curr The current action. Must be a read.
351  * @param rf The action that curr reads from. Must be a write.
352  */
353 void ModelChecker::r_modification_order(ModelAction * curr, const ModelAction *rf) {
354         std::vector<action_list_t> *thrd_lists = &(*obj_thrd_map)[curr->get_location()];
355         unsigned int i;
356         ASSERT(curr->is_read());
357
358         /* Iterate over all threads */
359         for (i = 0; i < thrd_lists->size(); i++) {
360                 /* Iterate over actions in thread, starting from most recent */
361                 action_list_t *list = &(*thrd_lists)[i];
362                 action_list_t::reverse_iterator rit;
363                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
364                         ModelAction *act = *rit;
365
366                         /* Include at most one act per-thread that "happens before" curr */
367                         if (act->happens_before(curr)) {
368                                 if (act->is_read()) {
369                                         const ModelAction * prevreadfrom=act->get_reads_from();
370                                         if (rf!=prevreadfrom)
371                                                 cyclegraph->addEdge(rf, prevreadfrom);
372                                 } else if (rf!=act) {
373                                         cyclegraph->addEdge(rf, act);
374                                 }
375                                 break;
376                         }
377                 }
378         }
379 }
380
381 /**
382  * Updates the cyclegraph with the constraints imposed from the current write.
383  * @param curr The current action. Must be a write.
384  */
385 void ModelChecker::w_modification_order(ModelAction * curr) {
386         std::vector<action_list_t> *thrd_lists = &(*obj_thrd_map)[curr->get_location()];
387         unsigned int i;
388         ASSERT(curr->is_write());
389
390         if (curr->is_seqcst()) {
391                 /* We have to at least see the last sequentially consistent write,
392                          so we are initialized. */
393                 ModelAction * last_seq_cst=get_last_seq_cst(curr->get_location());
394                 if (last_seq_cst!=NULL)
395                         cyclegraph->addEdge(curr, last_seq_cst);
396         }
397
398         /* Iterate over all threads */
399         for (i = 0; i < thrd_lists->size(); i++) {
400                 /* Iterate over actions in thread, starting from most recent */
401                 action_list_t *list = &(*thrd_lists)[i];
402                 action_list_t::reverse_iterator rit;
403                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
404                         ModelAction *act = *rit;
405
406                         /* Include at most one act per-thread that "happens before" curr */
407                         if (act->happens_before(curr)) {
408                                 if (act->is_read()) {
409                                         cyclegraph->addEdge(curr, act->get_reads_from());
410                                 } else
411                                         cyclegraph->addEdge(curr, act);
412                                 break;
413                         }
414                 }
415         }
416 }
417
418 /**
419  * Performs various bookkeeping operations for the current ModelAction. For
420  * instance, adds action to the per-object, per-thread action vector and to the
421  * action trace list of all thread actions.
422  *
423  * @param act is the ModelAction to add.
424  */
425 void ModelChecker::add_action_to_lists(ModelAction *act)
426 {
427         int tid = id_to_int(act->get_tid());
428         action_trace->push_back(act);
429
430         (*obj_map)[act->get_location()].push_back(act);
431
432         std::vector<action_list_t> *vec = &(*obj_thrd_map)[act->get_location()];
433         if (tid >= (int)vec->size())
434                 vec->resize(next_thread_id);
435         (*vec)[tid].push_back(act);
436
437         if ((int)thrd_last_action->size() <= tid)
438                 thrd_last_action->resize(get_num_threads());
439         (*thrd_last_action)[tid] = act;
440 }
441
442 ModelAction * ModelChecker::get_last_action(thread_id_t tid)
443 {
444         int nthreads = get_num_threads();
445         if ((int)thrd_last_action->size() < nthreads)
446                 thrd_last_action->resize(nthreads);
447         return (*thrd_last_action)[id_to_int(tid)];
448 }
449
450 /**
451  * Gets the last memory_order_seq_cst action (in the total global sequence)
452  * performed on a particular object (i.e., memory location).
453  * @param location The object location to check
454  * @return The last seq_cst action performed
455  */
456 ModelAction * ModelChecker::get_last_seq_cst(const void *location)
457 {
458         action_list_t *list = &(*obj_map)[location];
459         /* Find: max({i in dom(S) | seq_cst(t_i) && isWrite(t_i) && samevar(t_i, t)}) */
460         action_list_t::reverse_iterator rit;
461         for (rit = list->rbegin(); rit != list->rend(); rit++)
462                 if ((*rit)->is_write() && (*rit)->is_seqcst())
463                         return *rit;
464         return NULL;
465 }
466
467 ModelAction * ModelChecker::get_parent_action(thread_id_t tid)
468 {
469         ModelAction *parent = get_last_action(tid);
470         if (!parent)
471                 parent = get_thread(tid)->get_creation();
472         return parent;
473 }
474
475 /**
476  * Returns the clock vector for a given thread.
477  * @param tid The thread whose clock vector we want
478  * @return Desired clock vector
479  */
480 ClockVector * ModelChecker::get_cv(thread_id_t tid) {
481         return get_parent_action(tid)->get_cv();
482 }
483
484 /**
485  * Build up an initial set of all past writes that this 'read' action may read
486  * from. This set is determined by the clock vector's "happens before"
487  * relationship.
488  * @param curr is the current ModelAction that we are exploring; it must be a
489  * 'read' operation.
490  */
491 void ModelChecker::build_reads_from_past(ModelAction *curr)
492 {
493         std::vector<action_list_t> *thrd_lists = &(*obj_thrd_map)[curr->get_location()];
494         unsigned int i;
495         ASSERT(curr->is_read());
496
497         ModelAction *last_seq_cst = NULL;
498
499         /* Track whether this object has been initialized */
500         bool initialized = false;
501
502         if (curr->is_seqcst()) {
503                 last_seq_cst = get_last_seq_cst(curr->get_location());
504                 /* We have to at least see the last sequentially consistent write,
505                          so we are initialized. */
506                 if (last_seq_cst != NULL)
507                         initialized = true;
508         }
509
510         /* Iterate over all threads */
511         for (i = 0; i < thrd_lists->size(); i++) {
512                 /* Iterate over actions in thread, starting from most recent */
513                 action_list_t *list = &(*thrd_lists)[i];
514                 action_list_t::reverse_iterator rit;
515                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
516                         ModelAction *act = *rit;
517
518                         /* Only consider 'write' actions */
519                         if (!act->is_write())
520                                 continue;
521
522                         /* Don't consider more than one seq_cst write if we are a seq_cst read. */
523                         if (!act->is_seqcst() || !curr->is_seqcst() || act == last_seq_cst) {
524                                 DEBUG("Adding action to may_read_from:\n");
525                                 if (DBG_ENABLED()) {
526                                         act->print();
527                                         curr->print();
528                                 }
529                                 curr->get_node()->add_read_from(act);
530                         }
531
532                         /* Include at most one act per-thread that "happens before" curr */
533                         if (act->happens_before(curr)) {
534                                 initialized = true;
535                                 break;
536                         }
537                 }
538         }
539
540         if (!initialized) {
541                 /* TODO: need a more informative way of reporting errors */
542                 printf("ERROR: may read from uninitialized atomic\n");
543         }
544
545         if (DBG_ENABLED() || !initialized) {
546                 printf("Reached read action:\n");
547                 curr->print();
548                 printf("Printing may_read_from\n");
549                 curr->get_node()->print_may_read_from();
550                 printf("End printing may_read_from\n");
551         }
552
553         ASSERT(initialized);
554 }
555
556 static void print_list(action_list_t *list)
557 {
558         action_list_t::iterator it;
559
560         printf("---------------------------------------------------------------------\n");
561         printf("Trace:\n");
562
563         for (it = list->begin(); it != list->end(); it++) {
564                 (*it)->print();
565         }
566         printf("---------------------------------------------------------------------\n");
567 }
568
569 void ModelChecker::print_summary(void)
570 {
571         printf("\n");
572         printf("Number of executions: %d\n", num_executions);
573         printf("Total nodes created: %d\n", node_stack->get_total_nodes());
574
575         scheduler->print();
576
577         if (!isfeasible())
578                 printf("INFEASIBLE EXECUTION!\n");
579         print_list(action_trace);
580         printf("\n");
581 }
582
583 int ModelChecker::add_thread(Thread *t)
584 {
585         (*thread_map)[id_to_int(t->get_id())] = t;
586         scheduler->add_thread(t);
587         return 0;
588 }
589
590 void ModelChecker::remove_thread(Thread *t)
591 {
592         scheduler->remove_thread(t);
593 }
594
595 /**
596  * Switch from a user-context to the "master thread" context (a.k.a. system
597  * context). This switch is made with the intention of exploring a particular
598  * model-checking action (described by a ModelAction object). Must be called
599  * from a user-thread context.
600  * @param act The current action that will be explored. May be NULL, although
601  * there is little reason to switch to the model-checker without an action to
602  * explore (note: act == NULL is sometimes used as a hack to allow a thread to
603  * yield control without performing any progress; see thrd_join()).
604  * @return Return status from the 'swap' call (i.e., success/fail, 0/-1)
605  */
606 int ModelChecker::switch_to_master(ModelAction *act)
607 {
608         DBG();
609         Thread * old = thread_current();
610         set_current_action(act);
611         old->set_state(THREAD_READY);
612         return Thread::swap(old, get_system_context());
613 }