Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : remove useless ignore
[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) {
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) {
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) {
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               /*&& !MC_state_process_is_done(state, process) */ ) {
605             char *key = bprintf("%lu", process->pid);
606             if (xbt_dict_get_or_null(first_enabled_state, key) == NULL) {
607               char *data = bprintf("%d", count);
608               xbt_dict_set(first_enabled_state, key, data, NULL);
609             }
610             xbt_free(key);
611           }
612         }
613         MC_SET_STD_HEAP;
614       }
615     }
616
617     /* Update statistics */
618     mc_stats->visited_states++;
619     mc_stats->executed_transitions++;
620
621   }
622
623   XBT_DEBUG("**** End Replay ****");
624
625   if (raw_mem)
626     MC_SET_MC_HEAP;
627   else
628     MC_SET_STD_HEAP;
629
630
631 }
632
633 void MC_replay_liveness(xbt_fifo_t stack, int all_stack)
634 {
635
636   initial_global_state->raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
637
638   int value;
639   char *req_str;
640   smx_simcall_t req = NULL, saved_req = NULL;
641   xbt_fifo_item_t item;
642   mc_state_t state;
643   mc_pair_t pair;
644   int depth = 1;
645
646   XBT_DEBUG("**** Begin Replay ****");
647
648   /* Restore the initial state */
649   MC_restore_snapshot(initial_global_state->snapshot);
650
651   /* At the moment of taking the snapshot the raw heap was set, so restoring
652    * it will set it back again, we have to unset it to continue  */
653   if (!initial_global_state->raw_mem_set)
654     MC_SET_STD_HEAP;
655
656   if (all_stack) {
657
658     item = xbt_fifo_get_last_item(stack);
659
660     while (depth <= xbt_fifo_size(stack)) {
661
662       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
663       state = (mc_state_t) pair->graph_state;
664
665       if (pair->requests > 0) {
666
667         saved_req = MC_state_get_executed_request(state, &value);
668         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
669
670         if (saved_req != NULL) {
671           /* because we got a copy of the executed request, we have to fetch the  
672              real one, pointed by the request field of the issuer process */
673           req = &saved_req->issuer->simcall;
674           //XBT_DEBUG("Req->call %u", req->call);
675
676           /* Debug information */
677           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
678             req_str = MC_request_to_string(req, value);
679             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
680             xbt_free(req_str);
681           }
682
683         }
684
685         SIMIX_simcall_pre(req, value);
686         MC_wait_for_requests();
687       }
688
689       depth++;
690
691       /* Update statistics */
692       mc_stats->visited_pairs++;
693       mc_stats->executed_transitions++;
694
695       item = xbt_fifo_get_prev_item(item);
696     }
697
698   } else {
699
700     /* Traverse the stack from the initial state and re-execute the transitions */
701     for (item = xbt_fifo_get_last_item(stack);
702          item != xbt_fifo_get_first_item(stack);
703          item = xbt_fifo_get_prev_item(item)) {
704
705       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
706       state = (mc_state_t) pair->graph_state;
707
708       if (pair->requests > 0) {
709
710         saved_req = MC_state_get_executed_request(state, &value);
711         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
712
713         if (saved_req != NULL) {
714           /* because we got a copy of the executed request, we have to fetch the  
715              real one, pointed by the request field of the issuer process */
716           req = &saved_req->issuer->simcall;
717           //XBT_DEBUG("Req->call %u", req->call);
718
719           /* Debug information */
720           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
721             req_str = MC_request_to_string(req, value);
722             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
723             xbt_free(req_str);
724           }
725
726         }
727
728         SIMIX_simcall_pre(req, value);
729         MC_wait_for_requests();
730       }
731
732       depth++;
733
734       /* Update statistics */
735       mc_stats->visited_pairs++;
736       mc_stats->executed_transitions++;
737     }
738   }
739
740   XBT_DEBUG("**** End Replay ****");
741
742   if (initial_global_state->raw_mem_set)
743     MC_SET_MC_HEAP;
744   else
745     MC_SET_STD_HEAP;
746
747 }
748
749 /**
750  * \brief Dumps the contents of a model-checker's stack and shows the actual
751  *        execution trace
752  * \param stack The stack to dump
753  */
754 void MC_dump_stack_safety(xbt_fifo_t stack)
755 {
756
757   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
758
759   MC_show_stack_safety(stack);
760
761   if (!_sg_mc_checkpoint) {
762
763     mc_state_t state;
764
765     MC_SET_MC_HEAP;
766     while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
767       MC_state_delete(state);
768     MC_SET_STD_HEAP;
769
770   }
771
772   if (raw_mem_set)
773     MC_SET_MC_HEAP;
774   else
775     MC_SET_STD_HEAP;
776
777 }
778
779
780 void MC_show_stack_safety(xbt_fifo_t stack)
781 {
782
783   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
784
785   MC_SET_MC_HEAP;
786
787   int value;
788   mc_state_t state;
789   xbt_fifo_item_t item;
790   smx_simcall_t req;
791   char *req_str = NULL;
792
793   for (item = xbt_fifo_get_last_item(stack);
794        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
795         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
796     req = MC_state_get_executed_request(state, &value);
797     if (req) {
798       req_str = MC_request_to_string(req, value);
799       XBT_INFO("%s", req_str);
800       xbt_free(req_str);
801     }
802   }
803
804   if (!raw_mem_set)
805     MC_SET_STD_HEAP;
806 }
807
808 void MC_show_deadlock(smx_simcall_t req)
809 {
810   /*char *req_str = NULL; */
811   XBT_INFO("**************************");
812   XBT_INFO("*** DEAD-LOCK DETECTED ***");
813   XBT_INFO("**************************");
814   XBT_INFO("Locked request:");
815   /*req_str = MC_request_to_string(req);
816      XBT_INFO("%s", req_str);
817      xbt_free(req_str); */
818   XBT_INFO("Counter-example execution trace:");
819   MC_dump_stack_safety(mc_stack);
820   MC_print_statistics(mc_stats);
821 }
822
823
824 void MC_show_stack_liveness(xbt_fifo_t stack)
825 {
826   int value;
827   mc_pair_t pair;
828   xbt_fifo_item_t item;
829   smx_simcall_t req;
830   char *req_str = NULL;
831
832   for (item = xbt_fifo_get_last_item(stack);
833        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item)))
834         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
835     req = MC_state_get_executed_request(pair->graph_state, &value);
836     if (req) {
837       if (pair->requests > 0) {
838         req_str = MC_request_to_string(req, value);
839         XBT_INFO("%s", req_str);
840         xbt_free(req_str);
841       } else {
842         XBT_INFO("End of system requests but evolution in Büchi automaton");
843       }
844     }
845   }
846 }
847
848 void MC_dump_stack_liveness(xbt_fifo_t stack)
849 {
850
851   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
852
853   mc_pair_t pair;
854
855   MC_SET_MC_HEAP;
856   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
857     MC_pair_delete(pair);
858   MC_SET_STD_HEAP;
859
860   if (raw_mem_set)
861     MC_SET_MC_HEAP;
862
863 }
864
865
866 void MC_print_statistics(mc_stats_t stats)
867 {
868   if (stats->expanded_pairs == 0) {
869     XBT_INFO("Expanded states = %lu", stats->expanded_states);
870     XBT_INFO("Visited states = %lu", stats->visited_states);
871   } else {
872     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
873     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
874   }
875   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
876   MC_SET_MC_HEAP;
877   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0')) {
878     fprintf(dot_output, "}\n");
879     fclose(dot_output);
880   }
881   if (initial_global_state != NULL) {
882     if (_sg_mc_comms_determinism)
883       XBT_INFO("Communication-deterministic : %s",
884                !initial_global_state->comm_deterministic ? "No" : "Yes");
885     if (_sg_mc_send_determinism)
886       XBT_INFO("Send-deterministic : %s",
887                !initial_global_state->send_deterministic ? "No" : "Yes");
888   }
889   MC_SET_STD_HEAP;
890 }
891
892 void MC_assert(int prop)
893 {
894   if (MC_is_active() && !prop) {
895     XBT_INFO("**************************");
896     XBT_INFO("*** PROPERTY NOT VALID ***");
897     XBT_INFO("**************************");
898     XBT_INFO("Counter-example execution trace:");
899     MC_dump_stack_safety(mc_stack);
900     MC_print_statistics(mc_stats);
901     xbt_abort();
902   }
903 }
904
905 void MC_cut(void)
906 {
907   user_max_depth_reached = 1;
908 }
909
910 void MC_process_clock_add(smx_process_t process, double amount)
911 {
912   mc_time[process->pid] += amount;
913 }
914
915 double MC_process_clock_get(smx_process_t process)
916 {
917   if (mc_time) {
918     if (process != NULL)
919       return mc_time[process->pid];
920     else
921       return -1;
922   } else {
923     return 0;
924   }
925 }
926
927 void MC_automaton_load(const char *file)
928 {
929
930   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
931
932   MC_SET_MC_HEAP;
933
934   if (_mc_property_automaton == NULL)
935     _mc_property_automaton = xbt_automaton_new();
936
937   xbt_automaton_load(_mc_property_automaton, file);
938
939   MC_SET_STD_HEAP;
940
941   if (raw_mem_set)
942     MC_SET_MC_HEAP;
943
944 }
945
946 void MC_automaton_new_propositional_symbol(const char *id, void *fct)
947 {
948
949   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
950
951   MC_SET_MC_HEAP;
952
953   if (_mc_property_automaton == NULL)
954     _mc_property_automaton = xbt_automaton_new();
955
956   xbt_automaton_propositional_symbol_new(_mc_property_automaton, id, fct);
957
958   MC_SET_STD_HEAP;
959
960   if (raw_mem_set)
961     MC_SET_MC_HEAP;
962
963 }