Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : fix backtracking with comm determinism verification
[simgrid.git] / src / mc / mc_global.c
1 /* Copyright (c) 2008-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <unistd.h>
8 #include <sys/types.h>
9 #include <sys/wait.h>
10 #include <sys/time.h>
11 #include <sys/mman.h>
12 #include <libgen.h>
13
14 #include "simgrid/sg_config.h"
15 #include "../surf/surf_private.h"
16 #include "../simix/smx_private.h"
17 #include "../xbt/mmalloc/mmprivate.h"
18 #include "xbt/fifo.h"
19 #include "mc_private.h"
20 #include "xbt/automaton.h"
21 #include "xbt/dict.h"
22
23 XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc,
25                                 "Logging specific to MC (global)");
26
27 /* Configuration support */
28 e_mc_reduce_t mc_reduce_kind = e_mc_reduce_unset;
29
30 int _sg_do_model_check = 0;
31 int _sg_mc_checkpoint = 0;
32 char *_sg_mc_property_file = NULL;
33 int _sg_mc_timeout = 0;
34 int _sg_mc_hash = 0;
35 int _sg_mc_max_depth = 1000;
36 int _sg_mc_visited = 0;
37 char *_sg_mc_dot_output_file = NULL;
38 int _sg_mc_comms_determinism = 0;
39 int _sg_mc_send_determinism = 0;
40 int _sg_mc_safety = 0;
41 int _sg_mc_liveness = 0;
42
43 int user_max_depth_reached = 0;
44
45 void _mc_cfg_cb_reduce(const char *name, int pos)
46 {
47   if (_sg_cfg_init_status && !_sg_do_model_check) {
48     xbt_die
49         ("You are specifying a reduction strategy after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
50   }
51   char *val = xbt_cfg_get_string(_sg_cfg_set, name);
52   if (!strcasecmp(val, "none")) {
53     mc_reduce_kind = e_mc_reduce_none;
54   } else if (!strcasecmp(val, "dpor")) {
55     mc_reduce_kind = e_mc_reduce_dpor;
56   } else {
57     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",
58             name);
59   }
60 }
61
62 void _mc_cfg_cb_checkpoint(const char *name, int pos)
63 {
64   if (_sg_cfg_init_status && !_sg_do_model_check) {
65     xbt_die
66         ("You are specifying a checkpointing value after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
67   }
68   _sg_mc_checkpoint = xbt_cfg_get_int(_sg_cfg_set, name);
69 }
70
71 void _mc_cfg_cb_property(const char *name, int pos)
72 {
73   if (_sg_cfg_init_status && !_sg_do_model_check) {
74     xbt_die
75         ("You are specifying a property after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
76   }
77   _sg_mc_property_file = xbt_cfg_get_string(_sg_cfg_set, name);
78 }
79
80 void _mc_cfg_cb_timeout(const char *name, int pos)
81 {
82   if (_sg_cfg_init_status && !_sg_do_model_check) {
83     xbt_die
84         ("You are specifying a value to enable/disable timeout for wait requests after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
85   }
86   _sg_mc_timeout = xbt_cfg_get_boolean(_sg_cfg_set, name);
87 }
88
89 void _mc_cfg_cb_hash(const char *name, int pos)
90 {
91   if (_sg_cfg_init_status && !_sg_do_model_check) {
92     xbt_die
93         ("You are specifying a value to enable/disable the use of global hash to speedup state comparaison, but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
94   }
95   _sg_mc_hash = xbt_cfg_get_boolean(_sg_cfg_set, name);
96 }
97
98 void _mc_cfg_cb_max_depth(const char *name, int pos)
99 {
100   if (_sg_cfg_init_status && !_sg_do_model_check) {
101     xbt_die
102         ("You are specifying a max depth value after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
103   }
104   _sg_mc_max_depth = xbt_cfg_get_int(_sg_cfg_set, name);
105 }
106
107 void _mc_cfg_cb_visited(const char *name, int pos)
108 {
109   if (_sg_cfg_init_status && !_sg_do_model_check) {
110     xbt_die
111         ("You are specifying a number of stored visited states after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
112   }
113   _sg_mc_visited = xbt_cfg_get_int(_sg_cfg_set, name);
114 }
115
116 void _mc_cfg_cb_dot_output(const char *name, int pos)
117 {
118   if (_sg_cfg_init_status && !_sg_do_model_check) {
119     xbt_die
120         ("You are specifying a file name for a dot output of graph state after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
121   }
122   _sg_mc_dot_output_file = xbt_cfg_get_string(_sg_cfg_set, name);
123 }
124
125 void _mc_cfg_cb_comms_determinism(const char *name, int pos)
126 {
127   if (_sg_cfg_init_status && !_sg_do_model_check) {
128     xbt_die
129         ("You are specifying a value to enable/disable the detection of determinism in the communications schemes after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
130   }
131   _sg_mc_comms_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
132 }
133
134 void _mc_cfg_cb_send_determinism(const char *name, int pos)
135 {
136   if (_sg_cfg_init_status && !_sg_do_model_check) {
137     xbt_die
138         ("You are specifying a value to enable/disable the detection of send-determinism in the communications schemes after the initialization (through MSG_config?), but model-checking was not activated at config time (through --cfg=model-check:1). This won't work, sorry.");
139   }
140   _sg_mc_send_determinism = xbt_cfg_get_boolean(_sg_cfg_set, name);
141 }
142
143 /* MC global data structures */
144 mc_state_t mc_current_state = NULL;
145 char mc_replay_mode = FALSE;
146 double *mc_time = NULL;
147 __thread mc_comparison_times_t mc_comp_times = NULL;
148 __thread double mc_snapshot_comparison_time;
149 mc_stats_t mc_stats = NULL;
150 mc_global_t initial_global_state = NULL;
151 xbt_fifo_t mc_stack = NULL;
152
153 /* Liveness */
154 xbt_automaton_t _mc_property_automaton = NULL;
155
156 /* Variables */
157 mc_object_info_t mc_libsimgrid_info = NULL;
158 mc_object_info_t mc_binary_info = NULL;
159
160 mc_object_info_t mc_object_infos[2] = { NULL, NULL };
161
162 size_t mc_object_infos_size = 2;
163
164 /* Dot output */
165 FILE *dot_output = NULL;
166 const char *colors[13];
167
168
169 /*******************************  Initialisation of MC *******************************/
170 /*********************************************************************************/
171
172 static void MC_init_dot_output()
173 {                               /* FIXME : more colors */
174
175   colors[0] = "blue";
176   colors[1] = "red";
177   colors[2] = "green3";
178   colors[3] = "goldenrod";
179   colors[4] = "brown";
180   colors[5] = "purple";
181   colors[6] = "magenta";
182   colors[7] = "turquoise4";
183   colors[8] = "gray25";
184   colors[9] = "forestgreen";
185   colors[10] = "hotpink";
186   colors[11] = "lightblue";
187   colors[12] = "tan";
188
189   dot_output = fopen(_sg_mc_dot_output_file, "w");
190
191   if (dot_output == NULL) {
192     perror("Error open dot output file");
193     xbt_abort();
194   }
195
196   fprintf(dot_output,
197           "digraph graphname{\n fixedsize=true; rankdir=TB; ranksep=.25; edge [fontsize=12]; node [fontsize=10, shape=circle,width=.5 ]; graph [resolution=20, fontsize=10];\n");
198
199 }
200
201 static void MC_init_debug_info(void)
202 {
203   XBT_INFO("Get debug information ...");
204
205   memory_map_t maps = MC_get_memory_map();
206
207   /* Get local variables for state equality detection */
208   mc_binary_info = MC_find_object_info(maps, xbt_binary_name, 1);
209   mc_object_infos[0] = mc_binary_info;
210
211   mc_libsimgrid_info = MC_find_object_info(maps, libsimgrid_path, 0);
212   mc_object_infos[1] = mc_libsimgrid_info;
213
214   // Use information of the other objects:
215   MC_post_process_object_info(mc_binary_info);
216   MC_post_process_object_info(mc_libsimgrid_info);
217
218   MC_free_memory_map(maps);
219   XBT_INFO("Get debug information done !");
220 }
221
222
223 void MC_init()
224 {
225
226   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
227
228   mc_time = xbt_new0(double, simix_process_maxpid);
229
230   /* Initialize the data structures that must be persistent across every
231      iteration of the model-checker (in RAW memory) */
232
233   MC_SET_MC_HEAP;
234
235   mc_comp_times = xbt_new0(s_mc_comparison_times_t, 1);
236
237   /* Initialize statistics */
238   mc_stats = xbt_new0(s_mc_stats_t, 1);
239   mc_stats->state_size = 1;
240
241   MC_init_memory_map_info();
242   MC_init_debug_info();         /* FIXME : get debug information only if liveness verification or visited state reduction */
243
244   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0'))
245     MC_init_dot_output();
246
247   /* Init parmap */
248   //parmap = xbt_parmap_mc_new(xbt_os_get_numcores(), XBT_PARMAP_DEFAULT);
249
250   MC_SET_STD_HEAP;
251
252   if (_sg_mc_visited > 0
253       || (_sg_mc_property_file && _sg_mc_property_file[0] != '\0')) {
254     /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */
255     MC_ignore_local_variable("e", "*");
256     MC_ignore_local_variable("__ex_cleanup", "*");
257     MC_ignore_local_variable("__ex_mctx_en", "*");
258     MC_ignore_local_variable("__ex_mctx_me", "*");
259     MC_ignore_local_variable("__xbt_ex_ctx_ptr", "*");
260     MC_ignore_local_variable("_log_ev", "*");
261     MC_ignore_local_variable("_throw_ctx", "*");
262     MC_ignore_local_variable("ctx", "*");
263
264     MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot");
265     MC_ignore_local_variable("next_context", "smx_ctx_sysv_suspend_serial");
266     MC_ignore_local_variable("i", "smx_ctx_sysv_suspend_serial");
267
268     /* Ignore local variable about time used for tracing */
269     MC_ignore_local_variable("start_time", "*");
270
271     MC_ignore_global_variable("compared_pointers");
272     MC_ignore_global_variable("mc_comp_times");
273     MC_ignore_global_variable("mc_snapshot_comparison_time");
274     MC_ignore_global_variable("mc_time");
275     MC_ignore_global_variable("smpi_current_rank");
276     MC_ignore_global_variable("counter");       /* Static variable used for tracing */
277     MC_ignore_global_variable("maestro_stack_start");
278     MC_ignore_global_variable("maestro_stack_end");
279     MC_ignore_global_variable("smx_total_comms");
280
281     MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double));
282
283     /*smx_process_t process;
284     xbt_swag_foreach(process, simix_global->process_list) {
285       MC_ignore_heap(&(process->process_hookup),
286                      sizeof(process->process_hookup));
287                      }*/
288   }
289
290   if (raw_mem_set)
291     MC_SET_MC_HEAP;
292
293 }
294
295 /*******************************  Core of MC *******************************/
296 /**************************************************************************/
297
298 static void MC_modelcheck_comm_determinism_init(void)
299 {
300
301   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
302
303   MC_init();
304
305   if (!mc_mem_set)
306     MC_SET_MC_HEAP;
307
308   /* Create exploration stack */
309   mc_stack = xbt_fifo_new();
310
311   MC_SET_STD_HEAP;
312
313   MC_pre_modelcheck_comm_determinism();
314
315   MC_SET_MC_HEAP;
316   initial_global_state = xbt_new0(s_mc_global_t, 1);
317   initial_global_state->snapshot = MC_take_snapshot(0);
318   initial_global_state->initial_communications_pattern_done = 0;
319   initial_global_state->comm_deterministic = 1;
320   initial_global_state->send_deterministic = 1;
321   MC_SET_STD_HEAP;
322
323   MC_modelcheck_comm_determinism();
324
325   if(mc_mem_set)
326     MC_SET_MC_HEAP;
327
328 }
329
330 static void MC_modelcheck_safety_init(void)
331 {
332   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
333
334   _sg_mc_safety = 1;
335
336   MC_init();
337
338   if (!mc_mem_set)
339     MC_SET_MC_HEAP;
340
341   /* Create exploration stack */
342   mc_stack = xbt_fifo_new();
343
344   MC_SET_STD_HEAP;
345
346   MC_pre_modelcheck_safety();
347
348   MC_SET_MC_HEAP;
349   /* Save the initial state */
350   initial_global_state = xbt_new0(s_mc_global_t, 1);
351   initial_global_state->snapshot = MC_take_snapshot(0);
352   MC_SET_STD_HEAP;
353
354   MC_modelcheck_safety();
355
356   if (mc_mem_set)
357     MC_SET_MC_HEAP;
358
359   xbt_abort();
360   //MC_exit();
361 }
362
363 static void MC_modelcheck_liveness_init()
364 {
365
366   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
367
368   _sg_mc_liveness = 1;
369
370   MC_init();
371
372   if (!mc_mem_set)
373     MC_SET_MC_HEAP;
374
375   /* Create exploration stack */
376   mc_stack = xbt_fifo_new();
377
378   /* Create the initial state */
379   initial_global_state = xbt_new0(s_mc_global_t, 1);
380
381   MC_SET_STD_HEAP;
382
383   MC_pre_modelcheck_liveness();
384
385   /* We're done */
386   MC_print_statistics(mc_stats);
387   xbt_free(mc_time);
388
389   if (mc_mem_set)
390     MC_SET_MC_HEAP;
391
392 }
393
394 void MC_do_the_modelcheck_for_real()
395 {
396
397   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
398     XBT_INFO("Check communication determinism");
399     MC_modelcheck_comm_determinism_init();
400   } else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0') {
401     if (mc_reduce_kind == e_mc_reduce_unset)
402       mc_reduce_kind = e_mc_reduce_dpor;
403     XBT_INFO("Check a safety property");
404     MC_modelcheck_safety_init();
405   } else {
406     if (mc_reduce_kind == e_mc_reduce_unset)
407       mc_reduce_kind = e_mc_reduce_none;
408     XBT_INFO("Check the liveness property %s", _sg_mc_property_file);
409     MC_automaton_load(_sg_mc_property_file);
410     MC_modelcheck_liveness_init();
411   }
412 }
413
414
415 void MC_exit(void)
416 {
417   xbt_free(mc_time);
418
419   MC_memory_exit();
420   //xbt_abort();
421 }
422
423 int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max)
424 {
425
426   return simcall->mc_value;
427 }
428
429
430 int MC_random(int min, int max)
431 {
432   /*FIXME: return mc_current_state->executed_transition->random.value; */
433   return simcall_mc_random(min, max);
434 }
435
436 /**
437  * \brief Schedules all the process that are ready to run
438  */
439 void MC_wait_for_requests(void)
440 {
441   smx_process_t process;
442   smx_simcall_t req;
443   unsigned int iter;
444
445   while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
446     SIMIX_process_runall();
447     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
448       req = &process->simcall;
449       if (req->call != SIMCALL_NONE && !MC_request_is_visible(req))
450         SIMIX_simcall_pre(req, 0);
451     }
452   }
453 }
454
455 int MC_deadlock_check()
456 {
457   int deadlock = FALSE;
458   smx_process_t process;
459   if (xbt_swag_size(simix_global->process_list)) {
460     deadlock = TRUE;
461     xbt_swag_foreach(process, simix_global->process_list) {
462       if (process->simcall.call != SIMCALL_NONE
463           && MC_request_is_enabled(&process->simcall)) {
464         deadlock = FALSE;
465         break;
466       }
467     }
468   }
469   return deadlock;
470 }
471
472 /**
473  * \brief Re-executes from the state at position start all the transitions indicated by
474  *        a given model-checker stack.
475  * \param stack The stack with the transitions to execute.
476  * \param start Start index to begin the re-execution.
477  */
478 void MC_replay(xbt_fifo_t stack, int start)
479 {
480   int raw_mem = (mmalloc_get_current_heap() == mc_heap);
481
482   int value, i = 1, count = 1;
483   char *req_str;
484   smx_simcall_t req = NULL, saved_req = NULL;
485   xbt_fifo_item_t item, start_item;
486   mc_state_t state;
487   smx_process_t process = NULL;
488   int comm_pattern = 0;
489   smx_action_t current_comm;
490
491   XBT_DEBUG("**** Begin Replay ****");
492
493   if (start == -1) {
494     /* Restore the initial state */
495     MC_restore_snapshot(initial_global_state->snapshot);
496     /* At the moment of taking the snapshot the raw heap was set, so restoring
497      * it will set it back again, we have to unset it to continue  */
498     MC_SET_STD_HEAP;
499   }
500
501   start_item = xbt_fifo_get_last_item(stack);
502   if (start != -1) {
503     while (i != start) {
504       start_item = xbt_fifo_get_prev_item(start_item);
505       i++;
506     }
507   }
508
509   MC_SET_MC_HEAP;
510
511   if ((mc_reduce_kind == e_mc_reduce_dpor) && !_sg_mc_comms_determinism && !_sg_mc_send_determinism) {
512     xbt_dict_reset(first_enabled_state);
513     xbt_swag_foreach(process, simix_global->process_list) {
514       if (MC_process_is_enabled(process)) {
515         char *key = bprintf("%lu", process->pid);
516         char *data = bprintf("%d", count);
517         xbt_dict_set(first_enabled_state, key, data, NULL);
518         xbt_free(key);
519       }
520     }
521   }
522
523   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
524     xbt_dynar_reset(communications_pattern);
525     xbt_dynar_reset(incomplete_communications_pattern);
526   }
527
528   MC_SET_STD_HEAP;
529
530
531   /* Traverse the stack from the state at position start and re-execute the transitions */
532   for (item = start_item;
533        item != xbt_fifo_get_first_item(stack);
534        item = xbt_fifo_get_prev_item(item)) {
535
536     state = (mc_state_t) xbt_fifo_get_item_content(item);
537     saved_req = MC_state_get_executed_request(state, &value);
538
539     if ((mc_reduce_kind == e_mc_reduce_dpor) && !_sg_mc_comms_determinism && !_sg_mc_send_determinism) {
540       MC_SET_MC_HEAP;
541       char *key = bprintf("%lu", saved_req->issuer->pid);
542       xbt_dict_remove(first_enabled_state, key);
543       xbt_free(key);
544       MC_SET_STD_HEAP;
545     }
546
547     if (saved_req) {
548       /* because we got a copy of the executed request, we have to fetch the  
549          real one, pointed by the request field of the issuer process */
550       req = &saved_req->issuer->simcall;
551
552       /* Debug information */
553       if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
554         req_str = MC_request_to_string(req, value);
555         XBT_DEBUG("Replay: %s (%p)", req_str, state);
556         xbt_free(req_str);
557       }
558
559       /* TODO : handle test and testany simcalls */
560       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
561         if (req->call == SIMCALL_COMM_ISEND)
562           comm_pattern = 1;
563         else if (req->call == SIMCALL_COMM_IRECV)
564           comm_pattern = 2;
565         else if (req->call == SIMCALL_COMM_WAIT)
566           comm_pattern = 3;
567         else if (req->call == SIMCALL_COMM_WAITANY)
568           comm_pattern = 4;
569       }
570
571       SIMIX_simcall_pre(req, value);
572
573       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
574         MC_SET_MC_HEAP;
575         if (comm_pattern == 1 || comm_pattern == 2) {
576           get_comm_pattern(communications_pattern, req, comm_pattern);
577         } else if (comm_pattern == 3 /* || comm_pattern == 4 */ ) {
578           current_comm = simcall_comm_wait__get__comm(req);
579           if (current_comm->comm.refcount == 1) {       /* First wait only must be considered */
580             complete_comm_pattern(communications_pattern, current_comm);
581           }
582         } else if (comm_pattern == 4 /* || comm_pattern == 4 */ ) {
583           current_comm =
584               xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value,
585                                smx_action_t);
586           if (current_comm->comm.refcount == 1) {       /* First wait only must be considered */
587             complete_comm_pattern(communications_pattern, current_comm);
588           }
589         }
590         MC_SET_STD_HEAP;
591         comm_pattern = 0;
592       }
593
594
595       MC_wait_for_requests();
596
597       count++;
598
599       if ((mc_reduce_kind == e_mc_reduce_dpor) && !_sg_mc_comms_determinism && !_sg_mc_send_determinism) {
600         MC_SET_MC_HEAP;
601         /* Insert in dict all enabled processes */
602         xbt_swag_foreach(process, simix_global->process_list) {
603           if (MC_process_is_enabled(process) ) {
604             char *key = bprintf("%lu", process->pid);
605             if (xbt_dict_get_or_null(first_enabled_state, key) == NULL) {
606               char *data = bprintf("%d", count);
607               xbt_dict_set(first_enabled_state, key, data, NULL);
608             }
609             xbt_free(key);
610           }
611         }
612         MC_SET_STD_HEAP;
613       }
614     }
615
616     /* Update statistics */
617     mc_stats->visited_states++;
618     mc_stats->executed_transitions++;
619
620   }
621
622   XBT_DEBUG("**** End Replay ****");
623
624   if (raw_mem)
625     MC_SET_MC_HEAP;
626   else
627     MC_SET_STD_HEAP;
628
629
630 }
631
632 void MC_replay_liveness(xbt_fifo_t stack, int all_stack)
633 {
634
635   initial_global_state->raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
636
637   int value;
638   char *req_str;
639   smx_simcall_t req = NULL, saved_req = NULL;
640   xbt_fifo_item_t item;
641   mc_state_t state;
642   mc_pair_t pair;
643   int depth = 1;
644
645   XBT_DEBUG("**** Begin Replay ****");
646
647   /* Restore the initial state */
648   MC_restore_snapshot(initial_global_state->snapshot);
649
650   /* At the moment of taking the snapshot the raw heap was set, so restoring
651    * it will set it back again, we have to unset it to continue  */
652   if (!initial_global_state->raw_mem_set)
653     MC_SET_STD_HEAP;
654
655   if (all_stack) {
656
657     item = xbt_fifo_get_last_item(stack);
658
659     while (depth <= xbt_fifo_size(stack)) {
660
661       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
662       state = (mc_state_t) pair->graph_state;
663
664       if (pair->requests > 0) {
665
666         saved_req = MC_state_get_executed_request(state, &value);
667         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
668
669         if (saved_req != NULL) {
670           /* because we got a copy of the executed request, we have to fetch the  
671              real one, pointed by the request field of the issuer process */
672           req = &saved_req->issuer->simcall;
673           //XBT_DEBUG("Req->call %u", req->call);
674
675           /* Debug information */
676           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
677             req_str = MC_request_to_string(req, value);
678             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
679             xbt_free(req_str);
680           }
681
682         }
683
684         SIMIX_simcall_pre(req, value);
685         MC_wait_for_requests();
686       }
687
688       depth++;
689
690       /* Update statistics */
691       mc_stats->visited_pairs++;
692       mc_stats->executed_transitions++;
693
694       item = xbt_fifo_get_prev_item(item);
695     }
696
697   } else {
698
699     /* Traverse the stack from the initial state and re-execute the transitions */
700     for (item = xbt_fifo_get_last_item(stack);
701          item != xbt_fifo_get_first_item(stack);
702          item = xbt_fifo_get_prev_item(item)) {
703
704       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
705       state = (mc_state_t) pair->graph_state;
706
707       if (pair->requests > 0) {
708
709         saved_req = MC_state_get_executed_request(state, &value);
710         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
711
712         if (saved_req != NULL) {
713           /* because we got a copy of the executed request, we have to fetch the  
714              real one, pointed by the request field of the issuer process */
715           req = &saved_req->issuer->simcall;
716           //XBT_DEBUG("Req->call %u", req->call);
717
718           /* Debug information */
719           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
720             req_str = MC_request_to_string(req, value);
721             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
722             xbt_free(req_str);
723           }
724
725         }
726
727         SIMIX_simcall_pre(req, value);
728         MC_wait_for_requests();
729       }
730
731       depth++;
732
733       /* Update statistics */
734       mc_stats->visited_pairs++;
735       mc_stats->executed_transitions++;
736     }
737   }
738
739   XBT_DEBUG("**** End Replay ****");
740
741   if (initial_global_state->raw_mem_set)
742     MC_SET_MC_HEAP;
743   else
744     MC_SET_STD_HEAP;
745
746 }
747
748 /**
749  * \brief Dumps the contents of a model-checker's stack and shows the actual
750  *        execution trace
751  * \param stack The stack to dump
752  */
753 void MC_dump_stack_safety(xbt_fifo_t stack)
754 {
755
756   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
757
758   MC_show_stack_safety(stack);
759
760   if (!_sg_mc_checkpoint) {
761
762     mc_state_t state;
763
764     MC_SET_MC_HEAP;
765     while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
766       MC_state_delete(state);
767     MC_SET_STD_HEAP;
768
769   }
770
771   if (raw_mem_set)
772     MC_SET_MC_HEAP;
773   else
774     MC_SET_STD_HEAP;
775
776 }
777
778
779 void MC_show_stack_safety(xbt_fifo_t stack)
780 {
781
782   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
783
784   MC_SET_MC_HEAP;
785
786   int value;
787   mc_state_t state;
788   xbt_fifo_item_t item;
789   smx_simcall_t req;
790   char *req_str = NULL;
791
792   for (item = xbt_fifo_get_last_item(stack);
793        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
794         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
795     req = MC_state_get_executed_request(state, &value);
796     if (req) {
797       req_str = MC_request_to_string(req, value);
798       XBT_INFO("%s", req_str);
799       xbt_free(req_str);
800     }
801   }
802
803   if (!raw_mem_set)
804     MC_SET_STD_HEAP;
805 }
806
807 void MC_show_deadlock(smx_simcall_t req)
808 {
809   /*char *req_str = NULL; */
810   XBT_INFO("**************************");
811   XBT_INFO("*** DEAD-LOCK DETECTED ***");
812   XBT_INFO("**************************");
813   XBT_INFO("Locked request:");
814   /*req_str = MC_request_to_string(req);
815      XBT_INFO("%s", req_str);
816      xbt_free(req_str); */
817   XBT_INFO("Counter-example execution trace:");
818   MC_dump_stack_safety(mc_stack);
819   MC_print_statistics(mc_stats);
820 }
821
822
823 void MC_show_stack_liveness(xbt_fifo_t stack)
824 {
825   int value;
826   mc_pair_t pair;
827   xbt_fifo_item_t item;
828   smx_simcall_t req;
829   char *req_str = NULL;
830
831   for (item = xbt_fifo_get_last_item(stack);
832        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item)))
833         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
834     req = MC_state_get_executed_request(pair->graph_state, &value);
835     if (req) {
836       if (pair->requests > 0) {
837         req_str = MC_request_to_string(req, value);
838         XBT_INFO("%s", req_str);
839         xbt_free(req_str);
840       } else {
841         XBT_INFO("End of system requests but evolution in Büchi automaton");
842       }
843     }
844   }
845 }
846
847 void MC_dump_stack_liveness(xbt_fifo_t stack)
848 {
849
850   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
851
852   mc_pair_t pair;
853
854   MC_SET_MC_HEAP;
855   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
856     MC_pair_delete(pair);
857   MC_SET_STD_HEAP;
858
859   if (raw_mem_set)
860     MC_SET_MC_HEAP;
861
862 }
863
864
865 void MC_print_statistics(mc_stats_t stats)
866 {
867   if (stats->expanded_pairs == 0) {
868     XBT_INFO("Expanded states = %lu", stats->expanded_states);
869     XBT_INFO("Visited states = %lu", stats->visited_states);
870   } else {
871     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
872     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
873   }
874   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
875   MC_SET_MC_HEAP;
876   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0')) {
877     fprintf(dot_output, "}\n");
878     fclose(dot_output);
879   }
880   if (initial_global_state != NULL) {
881     if (_sg_mc_comms_determinism)
882       XBT_INFO("Communication-deterministic : %s",
883                !initial_global_state->comm_deterministic ? "No" : "Yes");
884     if (_sg_mc_send_determinism)
885       XBT_INFO("Send-deterministic : %s",
886                !initial_global_state->send_deterministic ? "No" : "Yes");
887   }
888   MC_SET_STD_HEAP;
889 }
890
891 void MC_assert(int prop)
892 {
893   if (MC_is_active() && !prop) {
894     XBT_INFO("**************************");
895     XBT_INFO("*** PROPERTY NOT VALID ***");
896     XBT_INFO("**************************");
897     XBT_INFO("Counter-example execution trace:");
898     MC_dump_stack_safety(mc_stack);
899     MC_print_statistics(mc_stats);
900     xbt_abort();
901   }
902 }
903
904 void MC_cut(void)
905 {
906   user_max_depth_reached = 1;
907 }
908
909 void MC_process_clock_add(smx_process_t process, double amount)
910 {
911   mc_time[process->pid] += amount;
912 }
913
914 double MC_process_clock_get(smx_process_t process)
915 {
916   if (mc_time) {
917     if (process != NULL)
918       return mc_time[process->pid];
919     else
920       return -1;
921   } else {
922     return 0;
923   }
924 }
925
926 void MC_automaton_load(const char *file)
927 {
928
929   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
930
931   MC_SET_MC_HEAP;
932
933   if (_mc_property_automaton == NULL)
934     _mc_property_automaton = xbt_automaton_new();
935
936   xbt_automaton_load(_mc_property_automaton, file);
937
938   MC_SET_STD_HEAP;
939
940   if (raw_mem_set)
941     MC_SET_MC_HEAP;
942
943 }
944
945 void MC_automaton_new_propositional_symbol(const char *id, void *fct)
946 {
947
948   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
949
950   MC_SET_MC_HEAP;
951
952   if (_mc_property_automaton == NULL)
953     _mc_property_automaton = xbt_automaton_new();
954
955   xbt_automaton_propositional_symbol_new(_mc_property_automaton, id, fct);
956
957   MC_SET_STD_HEAP;
958
959   if (raw_mem_set)
960     MC_SET_MC_HEAP;
961
962 }