Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] DRY with mc_update_comm_pattern() (broken)
[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 void mc_update_comm_pattern(mc_call_type call_type, smx_simcall_t req, int value, xbt_dynar_t pattern) {
507   if (call_type == MC_CALL_TYPE_SEND) { /* Send */
508     get_comm_pattern(pattern, req, call_type);
509   } else if (call_type == MC_CALL_TYPE_RECV) { /* Recv */
510     get_comm_pattern(pattern, req, call_type);
511   } else if (call_type == MC_CALL_TYPE_WAIT) { /* Wait */
512     smx_action_t current_comm = simcall_comm_wait__get__comm(req);
513     if (current_comm->comm.refcount == 1)  /* First wait only must be considered */
514       complete_comm_pattern(pattern, current_comm);
515   } else if (call_type == MC_CALL_TYPE_WAITANY) { /* WaitAny */
516     smx_action_t current_comm = xbt_dynar_get_as(simcall_comm_waitany__get__comms(req), value, smx_action_t);
517     if (current_comm->comm.refcount == 1) /* First wait only must be considered */
518       complete_comm_pattern(pattern, current_comm);
519   }
520 }
521
522 /**
523  * \brief Re-executes from the state at position start all the transitions indicated by
524  *        a given model-checker stack.
525  * \param stack The stack with the transitions to execute.
526  * \param start Start index to begin the re-execution.
527  */
528 void MC_replay(xbt_fifo_t stack, int start)
529 {
530   int raw_mem = (mmalloc_get_current_heap() == mc_heap);
531
532   int value, i = 1, count = 1, j;
533   char *req_str;
534   smx_simcall_t req = NULL, saved_req = NULL;
535   xbt_fifo_item_t item, start_item;
536   mc_state_t state;
537   smx_process_t process = NULL;
538
539   XBT_DEBUG("**** Begin Replay ****");
540
541   if (start == -1) {
542     /* Restore the initial state */
543     MC_restore_snapshot(initial_global_state->snapshot);
544     /* At the moment of taking the snapshot the raw heap was set, so restoring
545      * it will set it back again, we have to unset it to continue  */
546     MC_SET_STD_HEAP;
547   }
548
549   start_item = xbt_fifo_get_last_item(stack);
550   if (start != -1) {
551     while (i != start) {
552       start_item = xbt_fifo_get_prev_item(start_item);
553       i++;
554     }
555   }
556
557   MC_SET_MC_HEAP;
558
559   if (mc_reduce_kind == e_mc_reduce_dpor) {
560     xbt_dict_reset(first_enabled_state);
561     xbt_swag_foreach(process, simix_global->process_list) {
562       if (MC_process_is_enabled(process)) {
563         char *key = bprintf("%lu", process->pid);
564         char *data = bprintf("%d", count);
565         xbt_dict_set(first_enabled_state, key, data, NULL);
566         xbt_free(key);
567       }
568     }
569   }
570
571   if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
572     for (j=0; j<simix_process_maxpid; j++) {
573       xbt_dynar_reset((xbt_dynar_t)xbt_dynar_get_as(communications_pattern, j, xbt_dynar_t));
574     }
575     for (j=0; j<simix_process_maxpid; j++) {
576       xbt_dynar_reset((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, j, xbt_dynar_t));
577     }
578   }
579
580   MC_SET_STD_HEAP;
581
582
583   /* Traverse the stack from the state at position start and re-execute the transitions */
584   for (item = start_item;
585        item != xbt_fifo_get_first_item(stack);
586        item = xbt_fifo_get_prev_item(item)) {
587
588     state = (mc_state_t) xbt_fifo_get_item_content(item);
589     saved_req = MC_state_get_executed_request(state, &value);
590
591     if (mc_reduce_kind == e_mc_reduce_dpor) {
592       MC_SET_MC_HEAP;
593       char *key = bprintf("%lu", saved_req->issuer->pid);
594       if(xbt_dict_get_or_null(first_enabled_state, key))
595          xbt_dict_remove(first_enabled_state, key);
596       xbt_free(key);
597       MC_SET_STD_HEAP;
598     }
599
600     if (saved_req) {
601       /* because we got a copy of the executed request, we have to fetch the  
602          real one, pointed by the request field of the issuer process */
603       req = &saved_req->issuer->simcall;
604
605       /* Debug information */
606       if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
607         req_str = MC_request_to_string(req, value);
608         XBT_DEBUG("Replay: %s (%p)", req_str, state);
609         xbt_free(req_str);
610       }
611
612       /* TODO : handle test and testany simcalls */
613       mc_call_type call = MC_CALL_TYPE_NONE;
614       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
615         call = mc_get_call_type(req);
616       }
617
618       SIMIX_simcall_enter(req, value);
619
620       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
621         MC_SET_MC_HEAP;
622         mc_update_comm_pattern(call, req, value, communications_pattern);
623         MC_SET_STD_HEAP;
624       }
625
626       MC_wait_for_requests();
627
628       count++;
629
630       if (mc_reduce_kind == e_mc_reduce_dpor) {
631         MC_SET_MC_HEAP;
632         /* Insert in dict all enabled processes */
633         xbt_swag_foreach(process, simix_global->process_list) {
634           if (MC_process_is_enabled(process) ) {
635             char *key = bprintf("%lu", process->pid);
636             if (xbt_dict_get_or_null(first_enabled_state, key) == NULL) {
637               char *data = bprintf("%d", count);
638               xbt_dict_set(first_enabled_state, key, data, NULL);
639             }
640             xbt_free(key);
641           }
642         }
643         MC_SET_STD_HEAP;
644       }
645     }
646
647     /* Update statistics */
648     mc_stats->visited_states++;
649     mc_stats->executed_transitions++;
650
651   }
652
653   XBT_DEBUG("**** End Replay ****");
654
655   if (raw_mem)
656     MC_SET_MC_HEAP;
657   else
658     MC_SET_STD_HEAP;
659
660
661 }
662
663 void MC_replay_liveness(xbt_fifo_t stack, int all_stack)
664 {
665
666   initial_global_state->raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
667
668   xbt_fifo_item_t item;
669   int depth = 1;
670
671   XBT_DEBUG("**** Begin Replay ****");
672
673   /* Restore the initial state */
674   MC_restore_snapshot(initial_global_state->snapshot);
675
676   /* At the moment of taking the snapshot the raw heap was set, so restoring
677    * it will set it back again, we have to unset it to continue  */
678   if (!initial_global_state->raw_mem_set)
679     MC_SET_STD_HEAP;
680
681     /* Traverse the stack from the initial state and re-execute the transitions */
682     for (item = xbt_fifo_get_last_item(stack);
683          all_stack ? depth <= xbt_fifo_size(stack) : item != xbt_fifo_get_first_item(stack);
684          item = xbt_fifo_get_prev_item(item)) {
685
686       mc_pair_t pair = (mc_pair_t) xbt_fifo_get_item_content(item);
687
688       mc_state_t state = (mc_state_t) pair->graph_state;
689       smx_simcall_t req = NULL, saved_req = NULL;
690       int value;
691       char *req_str;
692
693       if (pair->requests > 0) {
694
695         saved_req = MC_state_get_executed_request(state, &value);
696         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
697
698         if (saved_req != NULL) {
699           /* because we got a copy of the executed request, we have to fetch the
700              real one, pointed by the request field of the issuer process */
701           req = &saved_req->issuer->simcall;
702           //XBT_DEBUG("Req->call %u", req->call);
703
704           /* Debug information */
705           if (XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)) {
706             req_str = MC_request_to_string(req, value);
707             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
708             xbt_free(req_str);
709           }
710
711         }
712
713         SIMIX_simcall_enter(req, value);
714         MC_wait_for_requests();
715       }
716
717       /* Update statistics */
718       mc_stats->visited_pairs++;
719       mc_stats->executed_transitions++;
720
721       depth++;
722
723     }
724
725   XBT_DEBUG("**** End Replay ****");
726
727   if (initial_global_state->raw_mem_set)
728     MC_SET_MC_HEAP;
729   else
730     MC_SET_STD_HEAP;
731
732 }
733
734 /**
735  * \brief Dumps the contents of a model-checker's stack and shows the actual
736  *        execution trace
737  * \param stack The stack to dump
738  */
739 void MC_dump_stack_safety(xbt_fifo_t stack)
740 {
741
742   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
743
744   MC_show_stack_safety(stack);
745
746   if (!_sg_mc_checkpoint) {
747
748     mc_state_t state;
749
750     MC_SET_MC_HEAP;
751     while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
752       MC_state_delete(state);
753     MC_SET_STD_HEAP;
754
755   }
756
757   if (raw_mem_set)
758     MC_SET_MC_HEAP;
759   else
760     MC_SET_STD_HEAP;
761
762 }
763
764
765 void MC_show_stack_safety(xbt_fifo_t stack)
766 {
767
768   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
769
770   MC_SET_MC_HEAP;
771
772   int value;
773   mc_state_t state;
774   xbt_fifo_item_t item;
775   smx_simcall_t req;
776   char *req_str = NULL;
777
778   for (item = xbt_fifo_get_last_item(stack);
779        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
780         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
781     req = MC_state_get_executed_request(state, &value);
782     if (req) {
783       req_str = MC_request_to_string(req, value);
784       XBT_INFO("%s", req_str);
785       xbt_free(req_str);
786     }
787   }
788
789   if (!raw_mem_set)
790     MC_SET_STD_HEAP;
791 }
792
793 void MC_show_deadlock(smx_simcall_t req)
794 {
795   /*char *req_str = NULL; */
796   XBT_INFO("**************************");
797   XBT_INFO("*** DEAD-LOCK DETECTED ***");
798   XBT_INFO("**************************");
799   XBT_INFO("Locked request:");
800   /*req_str = MC_request_to_string(req);
801      XBT_INFO("%s", req_str);
802      xbt_free(req_str); */
803   XBT_INFO("Counter-example execution trace:");
804   MC_dump_stack_safety(mc_stack);
805   MC_print_statistics(mc_stats);
806 }
807
808
809 void MC_show_stack_liveness(xbt_fifo_t stack)
810 {
811   int value;
812   mc_pair_t pair;
813   xbt_fifo_item_t item;
814   smx_simcall_t req;
815   char *req_str = NULL;
816
817   for (item = xbt_fifo_get_last_item(stack);
818        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item)))
819         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
820     req = MC_state_get_executed_request(pair->graph_state, &value);
821     if (req) {
822       if (pair->requests > 0) {
823         req_str = MC_request_to_string(req, value);
824         XBT_INFO("%s", req_str);
825         xbt_free(req_str);
826       } else {
827         XBT_INFO("End of system requests but evolution in Büchi automaton");
828       }
829     }
830   }
831 }
832
833 void MC_dump_stack_liveness(xbt_fifo_t stack)
834 {
835
836   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
837
838   mc_pair_t pair;
839
840   MC_SET_MC_HEAP;
841   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
842     MC_pair_delete(pair);
843   MC_SET_STD_HEAP;
844
845   if (raw_mem_set)
846     MC_SET_MC_HEAP;
847
848 }
849
850
851 void MC_print_statistics(mc_stats_t stats)
852 {
853   xbt_mheap_t previous_heap = mmalloc_get_current_heap();
854
855   if (stats->expanded_pairs == 0) {
856     XBT_INFO("Expanded states = %lu", stats->expanded_states);
857     XBT_INFO("Visited states = %lu", stats->visited_states);
858   } else {
859     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
860     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
861   }
862   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
863   MC_SET_MC_HEAP;
864   if ((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0] != '\0')) {
865     fprintf(dot_output, "}\n");
866     fclose(dot_output);
867   }
868   if (initial_global_state != NULL) {
869     if (_sg_mc_comms_determinism)
870       XBT_INFO("Communication-deterministic : %s",
871                !initial_global_state->comm_deterministic ? "No" : "Yes");
872     if (_sg_mc_send_determinism)
873       XBT_INFO("Send-deterministic : %s",
874                !initial_global_state->send_deterministic ? "No" : "Yes");
875   }
876   mmalloc_set_current_heap(previous_heap);
877 }
878
879 void MC_assert(int prop)
880 {
881   if (MC_is_active() && !prop) {
882     XBT_INFO("**************************");
883     XBT_INFO("*** PROPERTY NOT VALID ***");
884     XBT_INFO("**************************");
885     XBT_INFO("Counter-example execution trace:");
886     MC_dump_stack_safety(mc_stack);
887     MC_print_statistics(mc_stats);
888     xbt_abort();
889   }
890 }
891
892 void MC_cut(void)
893 {
894   user_max_depth_reached = 1;
895 }
896
897 void MC_process_clock_add(smx_process_t process, double amount)
898 {
899   mc_time[process->pid] += amount;
900 }
901
902 double MC_process_clock_get(smx_process_t process)
903 {
904   if (mc_time) {
905     if (process != NULL)
906       return mc_time[process->pid];
907     else
908       return -1;
909   } else {
910     return 0;
911   }
912 }
913
914 void MC_automaton_load(const char *file)
915 {
916
917   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
918
919   MC_SET_MC_HEAP;
920
921   if (_mc_property_automaton == NULL)
922     _mc_property_automaton = xbt_automaton_new();
923
924   xbt_automaton_load(_mc_property_automaton, file);
925
926   MC_SET_STD_HEAP;
927
928   if (raw_mem_set)
929     MC_SET_MC_HEAP;
930
931 }
932
933 void MC_automaton_new_propositional_symbol(const char *id, void *fct)
934 {
935
936   int raw_mem_set = (mmalloc_get_current_heap() == mc_heap);
937
938   MC_SET_MC_HEAP;
939
940   if (_mc_property_automaton == NULL)
941     _mc_property_automaton = xbt_automaton_new();
942
943   xbt_automaton_propositional_symbol_new(_mc_property_automaton, id, fct);
944
945   MC_SET_STD_HEAP;
946
947   if (raw_mem_set)
948     MC_SET_MC_HEAP;
949
950 }