Logo AND Algorithmique Numérique Distribuée

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