trivial changes
[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
11 #define INITIAL_THREAD_ID       0
12
13 ModelChecker *model;
14
15 /** @brief Constructor */
16 ModelChecker::ModelChecker()
17         :
18         /* Initialize default scheduler */
19         scheduler(new Scheduler()),
20         /* First thread created will have id INITIAL_THREAD_ID */
21         next_thread_id(INITIAL_THREAD_ID),
22         used_sequence_numbers(0),
23
24         num_executions(0),
25         current_action(NULL),
26         diverge(NULL),
27         nextThread(THREAD_ID_T_NONE),
28         action_trace(new action_list_t()),
29         thread_map(new std::map<int, Thread *>),
30         obj_thrd_map(new std::map<void *, std::vector<action_list_t> >()),
31         thrd_last_action(new std::vector<ModelAction *>(1)),
32         node_stack(new NodeStack()),
33         next_backtrack(NULL)
34 {
35 }
36
37 /** @brief Destructor */
38 ModelChecker::~ModelChecker()
39 {
40         std::map<int, Thread *>::iterator it;
41         for (it = thread_map->begin(); it != thread_map->end(); it++)
42                 delete (*it).second;
43         delete thread_map;
44
45         delete obj_thrd_map;
46         delete action_trace;
47         delete thrd_last_action;
48         delete node_stack;
49         delete scheduler;
50 }
51
52 /**
53  * Restores user program to initial state and resets all model-checker data
54  * structures.
55  */
56 void ModelChecker::reset_to_initial_state()
57 {
58         DEBUG("+++ Resetting to initial state +++\n");
59         node_stack->reset_execution();
60         current_action = NULL;
61         next_thread_id = INITIAL_THREAD_ID;
62         used_sequence_numbers = 0;
63         nextThread = 0;
64         next_backtrack = NULL;
65         snapshotObject->backTrackBeforeStep(0);
66 }
67
68 /** @returns a thread ID for a new Thread */
69 thread_id_t ModelChecker::get_next_id()
70 {
71         return next_thread_id++;
72 }
73
74 /** @returns the number of user threads created during this execution */
75 int ModelChecker::get_num_threads()
76 {
77         return next_thread_id;
78 }
79
80 /** @returns a sequence number for a new ModelAction */
81 modelclock_t ModelChecker::get_next_seq_num()
82 {
83         return ++used_sequence_numbers;
84 }
85
86 /**
87  * Performs the "scheduling" for the model-checker. That is, it checks if the
88  * model-checker has selected a "next thread to run" and returns it, if
89  * available. This function should be called from the Scheduler routine, where
90  * the Scheduler falls back to a default scheduling routine if needed.
91  *
92  * @return The next thread chosen by the model-checker. If the model-checker
93  * makes no selection, retuns NULL.
94  */
95 Thread * ModelChecker::schedule_next_thread()
96 {
97         Thread *t;
98         if (nextThread == THREAD_ID_T_NONE)
99                 return NULL;
100         t = (*thread_map)[id_to_int(nextThread)];
101
102         ASSERT(t != NULL);
103
104         return t;
105 }
106
107 /**
108  * Choose the next thread in the replay sequence.
109  *
110  * If the replay sequence has reached the 'diverge' point, returns a thread
111  * from the backtracking set. Otherwise, simply returns the next thread in the
112  * sequence that is being replayed.
113  */
114 thread_id_t ModelChecker::get_next_replay_thread()
115 {
116         ModelAction *next;
117         thread_id_t tid;
118
119         /* Have we completed exploring the preselected path? */
120         if (diverge == NULL)
121                 return THREAD_ID_T_NONE;
122
123         /* Else, we are trying to replay an execution */
124         next = node_stack->get_next()->get_action();
125
126         if (next == diverge) {
127                 Node *node = next->get_node()->get_parent();
128
129                 /* Reached divergence point */
130                 DEBUG("*** Divergence point ***\n");
131                 tid = node->get_next_backtrack();
132                 diverge = NULL;
133         } else {
134                 tid = next->get_tid();
135         }
136         DEBUG("*** ModelChecker chose next thread = %d ***\n", tid);
137         return tid;
138 }
139
140 /**
141  * Queries the model-checker for more executions to explore and, if one
142  * exists, resets the model-checker state to execute a new execution.
143  *
144  * @return If there are more executions to explore, return true. Otherwise,
145  * return false.
146  */
147 bool ModelChecker::next_execution()
148 {
149         DBG();
150
151         num_executions++;
152         print_summary();
153         if ((diverge = model->get_next_backtrack()) == NULL)
154                 return false;
155
156         if (DBG_ENABLED()) {
157                 printf("Next execution will diverge at:\n");
158                 diverge->print();
159         }
160
161         model->reset_to_initial_state();
162         return true;
163 }
164
165 ModelAction * ModelChecker::get_last_conflict(ModelAction *act)
166 {
167         action_type type = act->get_type();
168
169         switch (type) {
170                 case THREAD_CREATE:
171                 case THREAD_YIELD:
172                 case THREAD_JOIN:
173                         return NULL;
174                 case ATOMIC_READ:
175                 case ATOMIC_WRITE:
176                 default:
177                         break;
178         }
179         /* linear search: from most recent to oldest */
180         action_list_t::reverse_iterator rit;
181         for (rit = action_trace->rbegin(); rit != action_trace->rend(); rit++) {
182                 ModelAction *prev = *rit;
183                 if (act->is_synchronizing(prev))
184                         return prev;
185         }
186         return NULL;
187 }
188
189 void ModelChecker::set_backtracking(ModelAction *act)
190 {
191         ModelAction *prev;
192         Node *node;
193         Thread *t = get_thread(act->get_tid());
194
195         prev = get_last_conflict(act);
196         if (prev == NULL)
197                 return;
198
199         node = prev->get_node()->get_parent();
200
201         while (!node->is_enabled(t))
202                 t = t->get_parent();
203
204         /* Check if this has been explored already */
205         if (node->has_been_explored(t->get_id()))
206                 return;
207
208         /* Cache the latest backtracking point */
209         if (!next_backtrack || *prev > *next_backtrack)
210                 next_backtrack = prev;
211
212         /* If this is a new backtracking point, mark the tree */
213         if (!node->set_backtrack(t->get_id()))
214                 return;
215         DEBUG("Setting backtrack: conflict = %d, instead tid = %d\n",
216                         prev->get_tid(), t->get_id());
217         if (DBG_ENABLED()) {
218                 prev->print();
219                 act->print();
220         }
221 }
222
223 ModelAction * ModelChecker::get_next_backtrack()
224 {
225         ModelAction *next = next_backtrack;
226         next_backtrack = NULL;
227         return next;
228 }
229
230 void ModelChecker::check_current_action(void)
231 {
232         Node *currnode;
233
234         ModelAction *curr = this->current_action;
235         ModelAction *tmp;
236         current_action = NULL;
237         if (!curr) {
238                 DEBUG("trying to push NULL action...\n");
239                 return;
240         }
241
242         tmp = node_stack->explore_action(curr);
243         if (tmp) {
244                 /* Discard duplicate ModelAction; use action from NodeStack */
245                 delete curr;
246                 curr = tmp;
247         } else {
248                 /*
249                  * Perform one-time actions when pushing new ModelAction onto
250                  * NodeStack
251                  */
252                 curr->create_cv(get_parent_action(curr->get_tid()));
253                 /* Build may_read_from set */
254                 if (curr->is_read())
255                         build_reads_from_past(curr);
256         }
257
258         /* Assign 'creation' parent */
259         if (curr->get_type() == THREAD_CREATE) {
260                 Thread *th = (Thread *)curr->get_location();
261                 th->set_creation(curr);
262         }
263
264         nextThread = get_next_replay_thread();
265
266         currnode = curr->get_node()->get_parent();
267
268         if (!currnode->backtrack_empty())
269                 if (!next_backtrack || *curr > *next_backtrack)
270                         next_backtrack = curr;
271
272         set_backtracking(curr);
273
274         add_action_to_lists(curr);
275 }
276
277 /**
278  * Performs various bookkeeping operations for the current ModelAction. For
279  * instance, adds action to the per-object, per-thread action vector and to the
280  * action trace list of all thread actions.
281  *
282  * @param act is the ModelAction to add.
283  */
284 void ModelChecker::add_action_to_lists(ModelAction *act)
285 {
286         action_trace->push_back(act);
287
288         std::vector<action_list_t> *vec = &(*obj_thrd_map)[act->get_location()];
289         if (id_to_int(act->get_tid()) >= (int)vec->size())
290                 vec->resize(next_thread_id);
291         (*vec)[id_to_int(act->get_tid())].push_back(act);
292
293         (*thrd_last_action)[id_to_int(act->get_tid())] = act;
294 }
295
296 ModelAction * ModelChecker::get_last_action(thread_id_t tid)
297 {
298         int nthreads = get_num_threads();
299         if ((int)thrd_last_action->size() < nthreads)
300                 thrd_last_action->resize(nthreads);
301         return (*thrd_last_action)[id_to_int(tid)];
302 }
303
304 ModelAction * ModelChecker::get_parent_action(thread_id_t tid)
305 {
306         ModelAction *parent = get_last_action(tid);
307         if (!parent)
308                 parent = get_thread(tid)->get_creation();
309         return parent;
310 }
311
312 /**
313  * Build up an initial set of all past writes that this 'read' action may read
314  * from. This set is determined by the clock vector's "happens before"
315  * relationship.
316  * @param curr is the current ModelAction that we are exploring; it must be a
317  * 'read' operation.
318  */
319 void ModelChecker::build_reads_from_past(ModelAction *curr)
320 {
321         std::vector<action_list_t> *thrd_lists = &(*obj_thrd_map)[curr->get_location()];
322         unsigned int i;
323
324         ASSERT(curr->is_read());
325
326         for (i = 0; i < thrd_lists->size(); i++) {
327                 action_list_t *list = &(*thrd_lists)[i];
328                 action_list_t::reverse_iterator rit;
329                 for (rit = list->rbegin(); rit != list->rend(); rit++) {
330                         ModelAction *act = *rit;
331
332                         /* Only consider 'write' actions */
333                         if (!act->is_write())
334                                 continue;
335
336                         DEBUG("Adding action to may_read_from:\n");
337                         if (DBG_ENABLED()) {
338                                 act->print();
339                                 curr->print();
340                         }
341                         curr->get_node()->add_read_from(act);
342
343                         /* Include at most one act that "happens before" curr */
344                         if (act->happens_before(curr))
345                                 break;
346                 }
347         }
348 }
349
350 static void print_list(action_list_t *list)
351 {
352         action_list_t::iterator it;
353
354         printf("---------------------------------------------------------------------\n");
355         printf("Trace:\n");
356
357         for (it = list->begin(); it != list->end(); it++) {
358                 (*it)->print();
359         }
360         printf("---------------------------------------------------------------------\n");
361 }
362
363 void ModelChecker::print_summary(void)
364 {
365         printf("\n");
366         printf("Number of executions: %d\n", num_executions);
367         printf("Total nodes created: %d\n", node_stack->get_total_nodes());
368
369         scheduler->print();
370
371         print_list(action_trace);
372         printf("\n");
373 }
374
375 int ModelChecker::add_thread(Thread *t)
376 {
377         (*thread_map)[id_to_int(t->get_id())] = t;
378         scheduler->add_thread(t);
379         return 0;
380 }
381
382 void ModelChecker::remove_thread(Thread *t)
383 {
384         scheduler->remove_thread(t);
385 }
386
387 int ModelChecker::switch_to_master(ModelAction *act)
388 {
389         Thread *old;
390
391         DBG();
392         old = thread_current();
393         set_current_action(act);
394         old->set_state(THREAD_READY);
395         return Thread::swap(old, get_system_context());
396 }