Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Attach correct namespaced name in inlined subroutine (DW_TAG_inlined_subroutine)
[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 <libgen.h>
12
13 #include "simgrid/sg_config.h"
14 #include "../surf/surf_private.h"
15 #include "../simix/smx_private.h"
16 #include "../xbt/mmalloc/mmprivate.h"
17 #include "xbt/fifo.h"
18 #include "mc_private.h"
19 #include "xbt/automaton.h"
20 #include "xbt/dict.h"
21
22 XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
23 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc,
24                                 "Logging specific to MC (global)");
25
26 /* Configuration support */
27 e_mc_reduce_t mc_reduce_kind=e_mc_reduce_unset;
28
29 int _sg_do_model_check = 0;
30 int _sg_mc_checkpoint=0;
31 char* _sg_mc_property_file=NULL;
32 int _sg_mc_timeout=0;
33 int _sg_mc_hash=0;
34 int _sg_mc_max_depth=1000;
35 int _sg_mc_visited=0;
36 char *_sg_mc_dot_output_file = NULL;
37 int _sg_mc_comms_determinism=0;
38 int _sg_mc_send_determinism=0;
39
40 int user_max_depth_reached = 0;
41
42 void _mc_cfg_cb_reduce(const char *name, int pos) {
43   if (_sg_cfg_init_status && !_sg_do_model_check) {
44     xbt_die("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.");
45   }
46   char *val= xbt_cfg_get_string(_sg_cfg_set, name);
47   if (!strcasecmp(val,"none")) {
48     mc_reduce_kind = e_mc_reduce_none;
49   } else if (!strcasecmp(val,"dpor")) {
50     mc_reduce_kind = e_mc_reduce_dpor;
51   } else {
52     xbt_die("configuration option %s can only take 'none' or 'dpor' as a value",name);
53   }
54 }
55
56 void _mc_cfg_cb_checkpoint(const char *name, int pos) {
57   if (_sg_cfg_init_status && !_sg_do_model_check) {
58     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.");
59   }
60   _sg_mc_checkpoint = xbt_cfg_get_int(_sg_cfg_set, name);
61 }
62 void _mc_cfg_cb_property(const char *name, int pos) {
63   if (_sg_cfg_init_status && !_sg_do_model_check) {
64     xbt_die("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.");
65   }
66   _sg_mc_property_file= xbt_cfg_get_string(_sg_cfg_set, name);
67 }
68
69 void _mc_cfg_cb_timeout(const char *name, int pos) {
70   if (_sg_cfg_init_status && !_sg_do_model_check) {
71     xbt_die("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.");
72   }
73   _sg_mc_timeout= xbt_cfg_get_boolean(_sg_cfg_set, name);
74 }
75
76 void _mc_cfg_cb_hash(const char *name, int pos) {
77   if (_sg_cfg_init_status && !_sg_do_model_check) {
78     xbt_die("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.");
79   }
80   _sg_mc_hash= xbt_cfg_get_boolean(_sg_cfg_set, name);
81 }
82
83 void _mc_cfg_cb_max_depth(const char *name, int pos) {
84   if (_sg_cfg_init_status && !_sg_do_model_check) {
85     xbt_die("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.");
86   }
87   _sg_mc_max_depth= xbt_cfg_get_int(_sg_cfg_set, name);
88 }
89
90 void _mc_cfg_cb_visited(const char *name, int pos) {
91   if (_sg_cfg_init_status && !_sg_do_model_check) {
92     xbt_die("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.");
93   }
94   _sg_mc_visited= xbt_cfg_get_int(_sg_cfg_set, name);
95 }
96
97 void _mc_cfg_cb_dot_output(const char *name, int pos) {
98   if (_sg_cfg_init_status && !_sg_do_model_check) {
99     xbt_die("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.");
100   }
101   _sg_mc_dot_output_file= xbt_cfg_get_string(_sg_cfg_set, name);
102 }
103
104 void _mc_cfg_cb_comms_determinism(const char *name, int pos) {
105   if (_sg_cfg_init_status && !_sg_do_model_check) {
106     xbt_die("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.");
107   }
108   _sg_mc_comms_determinism= xbt_cfg_get_boolean(_sg_cfg_set, name);
109 }
110
111 void _mc_cfg_cb_send_determinism(const char *name, int pos) {
112   if (_sg_cfg_init_status && !_sg_do_model_check) {
113     xbt_die("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.");
114   }
115   _sg_mc_send_determinism= xbt_cfg_get_boolean(_sg_cfg_set, name);
116 }
117
118 /* MC global data structures */
119 mc_state_t mc_current_state = NULL;
120 char mc_replay_mode = FALSE;
121 double *mc_time = NULL;
122 __thread mc_comparison_times_t mc_comp_times = NULL;
123 __thread double mc_snapshot_comparison_time;
124 mc_stats_t mc_stats = NULL;
125
126 /* Safety */
127 xbt_fifo_t mc_stack_safety = NULL;
128 mc_global_t initial_state_safety = NULL;
129
130 /* Liveness */
131 xbt_fifo_t mc_stack_liveness = NULL;
132 mc_global_t initial_state_liveness = NULL;
133 int compare;
134
135 xbt_automaton_t _mc_property_automaton = NULL;
136
137 /* Variables */
138 mc_object_info_t mc_libsimgrid_info = NULL;
139 mc_object_info_t mc_binary_info = NULL;
140
141 mc_object_info_t mc_object_infos[2] = { NULL, NULL };
142 size_t mc_object_infos_size = 2;
143
144 /* Ignore mechanism */
145 extern xbt_dynar_t mc_heap_comparison_ignore;
146 extern xbt_dynar_t stacks_areas;
147
148 /* Dot output */
149 FILE *dot_output = NULL;
150 const char* colors[13];
151
152
153 /*******************************  DWARF Information *******************************/
154 /**********************************************************************************/
155
156 /************************** Free functions *************************/
157
158 void mc_frame_free(dw_frame_t frame){
159   xbt_free(frame->name);
160   mc_dwarf_location_list_clear(&(frame->frame_base));
161   xbt_dynar_free(&(frame->variables));
162   xbt_dynar_free(&(frame->scopes));
163   xbt_free(frame);
164 }
165
166 void dw_type_free(dw_type_t t){
167   xbt_free(t->name);
168   xbt_free(t->dw_type_id);
169   xbt_dynar_free(&(t->members));
170   mc_dwarf_expression_clear(&t->location);
171   xbt_free(t);
172 }
173
174 void dw_variable_free(dw_variable_t v){
175   if(v){
176     xbt_free(v->name);
177     xbt_free(v->type_origin);
178
179     if(v->locations.locations)
180       mc_dwarf_location_list_clear(&v->locations);
181     xbt_free(v);
182   }
183 }
184
185 void dw_variable_free_voidp(void *t){
186   dw_variable_free((dw_variable_t) * (void **) t);
187 }
188
189 // ***** object_info
190
191
192
193 mc_object_info_t MC_new_object_info(void) {
194   mc_object_info_t res = xbt_new0(s_mc_object_info_t, 1);
195   res->subprograms = xbt_dict_new_homogeneous((void (*)(void*))mc_frame_free);
196   res->global_variables = xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp);
197   res->types = xbt_dict_new_homogeneous((void (*)(void*))dw_type_free);
198   res->full_types_by_name = xbt_dict_new_homogeneous(NULL);
199   return res;
200 }
201
202 void MC_free_object_info(mc_object_info_t* info) {
203   xbt_free(&(*info)->file_name);
204   xbt_dict_free(&(*info)->subprograms);
205   xbt_dynar_free(&(*info)->global_variables);
206   xbt_dict_free(&(*info)->types);
207   xbt_dict_free(&(*info)->full_types_by_name);
208   xbt_free(info);
209   xbt_dynar_free(&(*info)->functions_index);
210   *info = NULL;
211 }
212
213 // ***** Helpers
214
215 void* MC_object_base_address(mc_object_info_t info) {
216   void* result = info->start_exec;
217   if(info->start_rw!=NULL && result > (void*) info->start_rw) result = info->start_rw;
218   if(info->start_ro!=NULL && result > (void*) info->start_ro) result = info->start_ro;
219   return result;
220 }
221
222 // ***** Functions index
223
224 static int MC_compare_frame_index_items(mc_function_index_item_t a, mc_function_index_item_t b) {
225   if(a->low_pc < b->low_pc)
226     return -1;
227   else if(a->low_pc == b->low_pc)
228     return 0;
229   else
230     return 1;
231 }
232
233 static void MC_make_functions_index(mc_object_info_t info) {
234   xbt_dynar_t index = xbt_dynar_new(sizeof(s_mc_function_index_item_t), NULL);
235
236   // Populate the array:
237   dw_frame_t frame = NULL;
238   xbt_dict_cursor_t cursor;
239   char* key;
240   xbt_dict_foreach(info->subprograms, cursor, key, frame) {
241     if(frame->low_pc==NULL)
242       continue;
243     s_mc_function_index_item_t entry;
244     entry.low_pc = frame->low_pc;
245     entry.high_pc = frame->high_pc;
246     entry.function = frame;
247     xbt_dynar_push(index, &entry);
248   }
249
250   mc_function_index_item_t base = (mc_function_index_item_t) xbt_dynar_get_ptr(index, 0);
251
252   // Sort the array by low_pc:
253   qsort(base,
254     xbt_dynar_length(index),
255     sizeof(s_mc_function_index_item_t),
256     (int (*)(const void *, const void *))MC_compare_frame_index_items);
257
258   info->functions_index = index;
259 }
260
261 mc_object_info_t MC_ip_find_object_info(void* ip) {
262   size_t i;
263   for(i=0; i!=mc_object_infos_size; ++i) {
264     if(ip >= (void*)mc_object_infos[i]->start_exec && ip <= (void*)mc_object_infos[i]->end_exec) {
265       return mc_object_infos[i];
266     }
267   }
268   return NULL;
269 }
270
271 static dw_frame_t MC_find_function_by_ip_and_object(void* ip, mc_object_info_t info) {
272   xbt_dynar_t dynar = info->functions_index;
273   mc_function_index_item_t base = (mc_function_index_item_t) xbt_dynar_get_ptr(dynar, 0);
274   int i = 0;
275   int j = xbt_dynar_length(dynar) - 1;
276   while(j>=i) {
277     int k = i + ((j-i)/2);
278     if(ip < base[k].low_pc) {
279       j = k-1;
280     } else if(ip >= base[k].high_pc) {
281       i = k+1;
282     } else {
283       return base[k].function;
284     }
285   }
286   return NULL;
287 }
288
289 dw_frame_t MC_find_function_by_ip(void* ip) {
290   mc_object_info_t info = MC_ip_find_object_info(ip);
291   if(info==NULL)
292     return NULL;
293   else
294     return MC_find_function_by_ip_and_object(ip, info);
295 }
296
297 static void MC_post_process_variables(mc_object_info_t info) {
298   unsigned cursor = 0;
299   dw_variable_t variable = NULL;
300   xbt_dynar_foreach(info->global_variables, cursor, variable) {
301     if(variable->type_origin) {
302       variable->type = xbt_dict_get_or_null(info->types, variable->type_origin);
303     }
304   }
305 }
306
307 static void mc_post_process_scope(mc_object_info_t info, dw_frame_t scope) {
308
309   if(scope->tag == DW_TAG_inlined_subroutine) {
310
311     // Attach correct namespaced name in inlined subroutine:
312     char* key = bprintf("%" PRIx64, (uint64_t) scope->abstract_origin_id);
313     dw_frame_t abstract_origin = xbt_dict_get_or_null(info->subprograms, key);
314     xbt_assert(abstract_origin, "Could not lookup abstract origin %s", key);
315     xbt_free(key);
316     scope->name = xbt_strdup(abstract_origin->name);
317
318   }
319
320   // Direct:
321   unsigned cursor = 0;
322   dw_variable_t variable = NULL;
323   xbt_dynar_foreach(scope->variables, cursor, variable) {
324     if(variable->type_origin) {
325       variable->type = xbt_dict_get_or_null(info->types, variable->type_origin);
326     }
327   }
328
329   // Recursive post-processing of nested-scopes:
330   dw_frame_t nested_scope = NULL;
331   xbt_dynar_foreach(scope->scopes, cursor, nested_scope)
332     mc_post_process_scope(info, nested_scope);
333
334 }
335
336 static void MC_post_process_functions(mc_object_info_t info) {
337   xbt_dict_cursor_t cursor;
338   char* key;
339   dw_frame_t subprogram = NULL;
340   xbt_dict_foreach(info->subprograms, cursor, key, subprogram) {
341     mc_post_process_scope(info, subprogram);
342   }
343 }
344
345 /** \brief Finds informations about a given shared object/executable */
346 mc_object_info_t MC_find_object_info(memory_map_t maps, char* name, int executable) {
347   mc_object_info_t result = MC_new_object_info();
348   if(executable)
349     result->flags |= MC_OBJECT_INFO_EXECUTABLE;
350   result->file_name = xbt_strdup(name);
351   MC_find_object_address(maps, result);
352   MC_dwarf_get_variables(result);
353   MC_post_process_types(result);
354   MC_post_process_variables(result);
355   MC_post_process_functions(result);
356   MC_make_functions_index(result);
357   return result;
358 }
359
360 /*************************************************************************/
361
362 static int MC_dwarf_get_variable_index(xbt_dynar_t variables, char* var, void *address){
363
364   if(xbt_dynar_is_empty(variables))
365     return 0;
366
367   unsigned int cursor = 0;
368   int start = 0;
369   int end = xbt_dynar_length(variables) - 1;
370   dw_variable_t var_test = NULL;
371
372   while(start <= end){
373     cursor = (start + end) / 2;
374     var_test = (dw_variable_t)xbt_dynar_get_as(variables, cursor, dw_variable_t);
375     if(strcmp(var_test->name, var) < 0){
376       start = cursor + 1;
377     }else if(strcmp(var_test->name, var) > 0){
378       end = cursor - 1;
379     }else{
380       if(address){ /* global variable */
381         if(var_test->address == address)
382           return -1;
383         if(var_test->address > address)
384           end = cursor - 1;
385         else
386           start = cursor + 1;
387       }else{ /* local variable */
388         return -1;
389       }
390     }
391   }
392
393   if(strcmp(var_test->name, var) == 0){
394     if(address && var_test->address < address)
395       return cursor+1;
396     else
397       return cursor;
398   }else if(strcmp(var_test->name, var) < 0)
399     return cursor+1;
400   else
401     return cursor;
402
403 }
404
405 void MC_dwarf_register_global_variable(mc_object_info_t info, dw_variable_t variable) {
406   int index = MC_dwarf_get_variable_index(info->global_variables, variable->name, variable->address);
407   if (index != -1)
408     xbt_dynar_insert_at(info->global_variables, index, &variable);
409   // TODO, else ?
410 }
411
412 void MC_dwarf_register_non_global_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable) {
413   xbt_assert(frame, "Frame is NULL");
414   int index = MC_dwarf_get_variable_index(frame->variables, variable->name, NULL);
415   if (index != -1)
416     xbt_dynar_insert_at(frame->variables, index, &variable);
417   // TODO, else ?
418 }
419
420 void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable) {
421   if(variable->global)
422     MC_dwarf_register_global_variable(info, variable);
423   else if(frame==NULL)
424     xbt_die("No frame for this local variable");
425   else
426     MC_dwarf_register_non_global_variable(info, frame, variable);
427 }
428
429
430 /*******************************  Ignore mechanism *******************************/
431 /*********************************************************************************/
432
433 xbt_dynar_t mc_checkpoint_ignore;
434
435 typedef struct s_mc_stack_ignore_variable{
436   char *var_name;
437   char *frame;
438 }s_mc_stack_ignore_variable_t, *mc_stack_ignore_variable_t;
439
440 /**************************** Free functions ******************************/
441
442 static void stack_ignore_variable_free(mc_stack_ignore_variable_t v){
443   xbt_free(v->var_name);
444   xbt_free(v->frame);
445   xbt_free(v);
446 }
447
448 static void stack_ignore_variable_free_voidp(void *v){
449   stack_ignore_variable_free((mc_stack_ignore_variable_t) * (void **) v);
450 }
451
452 void heap_ignore_region_free(mc_heap_ignore_region_t r){
453   xbt_free(r);
454 }
455
456 void heap_ignore_region_free_voidp(void *r){
457   heap_ignore_region_free((mc_heap_ignore_region_t) * (void **) r);
458 }
459
460 static void checkpoint_ignore_region_free(mc_checkpoint_ignore_region_t r){
461   xbt_free(r);
462 }
463
464 static void checkpoint_ignore_region_free_voidp(void *r){
465   checkpoint_ignore_region_free((mc_checkpoint_ignore_region_t) * (void **) r);
466 }
467
468 /***********************************************************************/
469
470 void MC_ignore_heap(void *address, size_t size){
471
472   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
473
474   MC_SET_RAW_MEM;
475
476   mc_heap_ignore_region_t region = NULL;
477   region = xbt_new0(s_mc_heap_ignore_region_t, 1);
478   region->address = address;
479   region->size = size;
480   
481   region->block = ((char*)address - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1;
482   
483   if(((xbt_mheap_t)std_heap)->heapinfo[region->block].type == 0){
484     region->fragment = -1;
485     ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_block.ignore++;
486   }else{
487     region->fragment = ((uintptr_t) (ADDR2UINT (address) % (BLOCKSIZE))) >> ((xbt_mheap_t)std_heap)->heapinfo[region->block].type;
488     ((xbt_mheap_t)std_heap)->heapinfo[region->block].busy_frag.ignore[region->fragment]++;
489   }
490   
491   if(mc_heap_comparison_ignore == NULL){
492     mc_heap_comparison_ignore = xbt_dynar_new(sizeof(mc_heap_ignore_region_t), heap_ignore_region_free_voidp);
493     xbt_dynar_push(mc_heap_comparison_ignore, &region);
494     if(!raw_mem_set)
495       MC_UNSET_RAW_MEM;
496     return;
497   }
498
499   unsigned int cursor = 0;
500   mc_heap_ignore_region_t current_region = NULL;
501   int start = 0;
502   int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1;
503   
504   while(start <= end){
505     cursor = (start + end) / 2;
506     current_region = (mc_heap_ignore_region_t)xbt_dynar_get_as(mc_heap_comparison_ignore, cursor, mc_heap_ignore_region_t);
507     if(current_region->address == address){
508       heap_ignore_region_free(region);
509       if(!raw_mem_set)
510         MC_UNSET_RAW_MEM;
511       return;
512     }else if(current_region->address < address){
513       start = cursor + 1;
514     }else{
515       end = cursor - 1;
516     }   
517   }
518
519   if(current_region->address < address)
520     xbt_dynar_insert_at(mc_heap_comparison_ignore, cursor + 1, &region);
521   else
522     xbt_dynar_insert_at(mc_heap_comparison_ignore, cursor, &region);
523
524   if(!raw_mem_set)
525     MC_UNSET_RAW_MEM;
526 }
527
528 void MC_remove_ignore_heap(void *address, size_t size){
529
530   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
531
532   MC_SET_RAW_MEM;
533
534   unsigned int cursor = 0;
535   int start = 0;
536   int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1;
537   mc_heap_ignore_region_t region;
538   int ignore_found = 0;
539
540   while(start <= end){
541     cursor = (start + end) / 2;
542     region = (mc_heap_ignore_region_t)xbt_dynar_get_as(mc_heap_comparison_ignore, cursor, mc_heap_ignore_region_t);
543     if(region->address == address){
544       ignore_found = 1;
545       break;
546     }else if(region->address < address){
547       start = cursor + 1;
548     }else{
549       if((char * )region->address <= ((char *)address + size)){
550         ignore_found = 1;
551         break;
552       }else{
553         end = cursor - 1;   
554       }
555     }
556   }
557   
558   if(ignore_found == 1){
559     xbt_dynar_remove_at(mc_heap_comparison_ignore, cursor, NULL);
560     MC_remove_ignore_heap(address, size);
561   }
562
563   if(!raw_mem_set)
564     MC_UNSET_RAW_MEM;
565
566 }
567
568 void MC_ignore_global_variable(const char *name){
569
570   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
571
572   MC_SET_RAW_MEM;
573
574   xbt_assert(mc_libsimgrid_info, "MC subsystem not initialized");
575
576     unsigned int cursor = 0;
577     dw_variable_t current_var;
578     int start = 0;
579     int end = xbt_dynar_length(mc_libsimgrid_info->global_variables) - 1;
580
581     while(start <= end){
582       cursor = (start + end) /2;
583       current_var = (dw_variable_t)xbt_dynar_get_as(mc_libsimgrid_info->global_variables, cursor, dw_variable_t);
584       if(strcmp(current_var->name, name) == 0){
585         xbt_dynar_remove_at(mc_libsimgrid_info->global_variables, cursor, NULL);
586         start = 0;
587         end = xbt_dynar_length(mc_libsimgrid_info->global_variables) - 1;
588       }else if(strcmp(current_var->name, name) < 0){
589         start = cursor + 1;
590       }else{
591         end = cursor - 1;
592       } 
593     }
594
595   if(!raw_mem_set)
596     MC_UNSET_RAW_MEM;
597 }
598
599 static void mc_ignore_local_variable_in_scope(const char *var_name, dw_frame_t scope) {
600   // Processing of direct variables:
601   int start = 0;
602   int end = xbt_dynar_length(scope->variables) - 1;
603   while(start <= end){
604     int cursor = (start + end) / 2;
605     dw_variable_t current_var = (dw_variable_t)xbt_dynar_get_as(scope->variables, cursor, dw_variable_t);
606
607     int compare = strcmp(current_var->name, var_name);
608     if(compare == 0){
609       xbt_dynar_remove_at(scope->variables, cursor, NULL);
610       start = 0;
611       end = xbt_dynar_length(scope->variables) - 1;
612     }else if(compare < 0){
613       start = cursor + 1;
614     }else{
615       end = cursor - 1;
616     }
617   }
618
619   // And recursive processing in nested scopes:
620   unsigned cursor = 0;
621   dw_frame_t nested_scope = NULL;
622   xbt_dynar_foreach(scope->scopes, cursor, nested_scope) {
623     mc_ignore_local_variable_in_scope(var_name, nested_scope);
624   }
625 }
626
627 static void MC_ignore_local_variable_in_object(const char *var_name, const char *frame_name, mc_object_info_t info) {
628   xbt_dict_cursor_t cursor2;
629   dw_frame_t frame;
630   char* key;
631   xbt_dict_foreach(info->subprograms, cursor2, key, frame) {
632     if(frame_name && strcmp(frame_name, frame->name))
633       continue;
634     mc_ignore_local_variable_in_scope(var_name, frame);
635   }
636 }
637
638 void MC_ignore_local_variable(const char *var_name, const char *frame_name){
639   
640   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
641
642   if(strcmp(frame_name, "*") == 0)
643     frame_name = NULL;
644
645   MC_SET_RAW_MEM;
646
647   MC_ignore_local_variable_in_object(var_name, frame_name, mc_libsimgrid_info);
648   if(frame_name!=NULL)
649     MC_ignore_local_variable_in_object(var_name, frame_name, mc_binary_info);
650
651   if(!raw_mem_set)
652     MC_UNSET_RAW_MEM;
653
654 }
655
656 void MC_new_stack_area(void *stack, char *name, void* context, size_t size){
657
658   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
659
660   MC_SET_RAW_MEM;
661
662   if(stacks_areas == NULL)
663     stacks_areas = xbt_dynar_new(sizeof(stack_region_t), NULL);
664   
665   stack_region_t region = NULL;
666   region = xbt_new0(s_stack_region_t, 1);
667   region->address = stack;
668   region->process_name = strdup(name);
669   region->context = context;
670   region->size = size;
671   region->block = ((char*)stack - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1;
672   xbt_dynar_push(stacks_areas, &region);
673
674   if(!raw_mem_set)
675     MC_UNSET_RAW_MEM;
676 }
677
678 void MC_ignore(void *addr, size_t size){
679
680   int raw_mem_set= (mmalloc_get_current_heap() == raw_heap);
681
682   MC_SET_RAW_MEM;
683
684   if(mc_checkpoint_ignore == NULL)
685     mc_checkpoint_ignore = xbt_dynar_new(sizeof(mc_checkpoint_ignore_region_t), checkpoint_ignore_region_free_voidp);
686
687   mc_checkpoint_ignore_region_t region = xbt_new0(s_mc_checkpoint_ignore_region_t, 1);
688   region->addr = addr;
689   region->size = size;
690
691   if(xbt_dynar_is_empty(mc_checkpoint_ignore)){
692     xbt_dynar_push(mc_checkpoint_ignore, &region);
693   }else{
694      
695     unsigned int cursor = 0;
696     int start = 0;
697     int end = xbt_dynar_length(mc_checkpoint_ignore) -1;
698     mc_checkpoint_ignore_region_t current_region = NULL;
699
700     while(start <= end){
701       cursor = (start + end) / 2;
702       current_region = (mc_checkpoint_ignore_region_t)xbt_dynar_get_as(mc_checkpoint_ignore, cursor, mc_checkpoint_ignore_region_t);
703       if(current_region->addr == addr){
704         if(current_region->size == size){
705           checkpoint_ignore_region_free(region);
706           if(!raw_mem_set)
707             MC_UNSET_RAW_MEM;
708           return;
709         }else if(current_region->size < size){
710           start = cursor + 1;
711         }else{
712           end = cursor - 1;
713         }
714       }else if(current_region->addr < addr){
715           start = cursor + 1;
716       }else{
717         end = cursor - 1;
718       }
719     }
720
721      if(current_region->addr == addr){
722        if(current_region->size < size){
723         xbt_dynar_insert_at(mc_checkpoint_ignore, cursor + 1, &region);
724       }else{
725         xbt_dynar_insert_at(mc_checkpoint_ignore, cursor, &region);
726       }
727     }else if(current_region->addr < addr){
728        xbt_dynar_insert_at(mc_checkpoint_ignore, cursor + 1, &region);
729     }else{
730        xbt_dynar_insert_at(mc_checkpoint_ignore, cursor, &region);
731     }
732   }
733
734   if(!raw_mem_set)
735     MC_UNSET_RAW_MEM;
736 }
737
738 /*******************************  Initialisation of MC *******************************/
739 /*********************************************************************************/
740
741 static void MC_post_process_object_info(mc_object_info_t info) {
742   xbt_dict_cursor_t cursor = NULL;
743   char* key = NULL;
744   dw_type_t type = NULL;
745   xbt_dict_foreach(info->types, cursor, key, type){
746
747     // Resolve full_type:
748     if(type->name && type->byte_size == 0) {
749       for(size_t i=0; i!=mc_object_infos_size; ++i) {
750         dw_type_t same_type =  xbt_dict_get_or_null(mc_object_infos[i]->full_types_by_name, type->name);
751         if(same_type && same_type->name && same_type->byte_size) {
752           type->full_type = same_type;
753           break;
754         }
755       }
756     }
757
758   }
759 }
760
761 static void MC_init_debug_info(void) {
762   XBT_INFO("Get debug information ...");
763
764   memory_map_t maps = MC_get_memory_map();
765
766   /* Get local variables for state equality detection */
767   mc_binary_info = MC_find_object_info(maps, xbt_binary_name, 1);
768   mc_object_infos[0] = mc_binary_info;
769
770   mc_libsimgrid_info = MC_find_object_info(maps, libsimgrid_path, 0);
771   mc_object_infos[1] = mc_libsimgrid_info;
772
773   // Use information of the other objects:
774   MC_post_process_object_info(mc_binary_info);
775   MC_post_process_object_info(mc_libsimgrid_info);
776
777   MC_free_memory_map(maps);
778   XBT_INFO("Get debug information done !");
779 }
780
781 void MC_init(){
782
783   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
784
785   compare = 0;
786
787   /* Initialize the data structures that must be persistent across every
788      iteration of the model-checker (in RAW memory) */
789
790   MC_SET_RAW_MEM;
791
792   MC_init_memory_map_info();
793   MC_init_debug_info();
794
795    /* Init parmap */
796   parmap = xbt_parmap_mc_new(xbt_os_get_numcores(), XBT_PARMAP_DEFAULT);
797
798   MC_UNSET_RAW_MEM;
799
800    /* Ignore some variables from xbt/ex.h used by exception e for stacks comparison */
801   MC_ignore_local_variable("e", "*");
802   MC_ignore_local_variable("__ex_cleanup", "*");
803   MC_ignore_local_variable("__ex_mctx_en", "*");
804   MC_ignore_local_variable("__ex_mctx_me", "*");
805   MC_ignore_local_variable("__xbt_ex_ctx_ptr", "*");
806   MC_ignore_local_variable("_log_ev", "*");
807   MC_ignore_local_variable("_throw_ctx", "*");
808   MC_ignore_local_variable("ctx", "*");
809
810   MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot");
811   MC_ignore_local_variable("next_context", "smx_ctx_sysv_suspend_serial");
812   MC_ignore_local_variable("i", "smx_ctx_sysv_suspend_serial");
813
814   /* Ignore local variable about time used for tracing */
815   MC_ignore_local_variable("start_time", "*"); 
816
817   MC_ignore_global_variable("compared_pointers");
818   MC_ignore_global_variable("mc_comp_times");
819   MC_ignore_global_variable("mc_snapshot_comparison_time"); 
820   MC_ignore_global_variable("mc_time");
821   MC_ignore_global_variable("smpi_current_rank");
822   MC_ignore_global_variable("counter"); /* Static variable used for tracing */
823   MC_ignore_global_variable("maestro_stack_start");
824   MC_ignore_global_variable("maestro_stack_end");
825   MC_ignore_global_variable("smx_total_comms");
826
827   MC_ignore_heap(&(simix_global->process_to_run), sizeof(simix_global->process_to_run));
828   MC_ignore_heap(&(simix_global->process_that_ran), sizeof(simix_global->process_that_ran));
829   MC_ignore_heap(simix_global->process_to_run, sizeof(*(simix_global->process_to_run)));
830   MC_ignore_heap(simix_global->process_that_ran, sizeof(*(simix_global->process_that_ran)));
831   
832   smx_process_t process;
833   xbt_swag_foreach(process, simix_global->process_list){
834     MC_ignore_heap(&(process->process_hookup), sizeof(process->process_hookup));
835   }
836
837   if(raw_mem_set)
838     MC_SET_RAW_MEM;
839
840 }
841
842 static void MC_init_dot_output(){ /* FIXME : more colors */
843
844   colors[0] = "blue";
845   colors[1] = "red";
846   colors[2] = "green3";
847   colors[3] = "goldenrod";
848   colors[4] = "brown";
849   colors[5] = "purple";
850   colors[6] = "magenta";
851   colors[7] = "turquoise4";
852   colors[8] = "gray25";
853   colors[9] = "forestgreen";
854   colors[10] = "hotpink";
855   colors[11] = "lightblue";
856   colors[12] = "tan";
857
858   dot_output = fopen(_sg_mc_dot_output_file, "w");
859   
860   if(dot_output == NULL){
861     perror("Error open dot output file");
862     xbt_abort();
863   }
864
865   fprintf(dot_output, "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");
866
867 }
868
869 /*******************************  Core of MC *******************************/
870 /**************************************************************************/
871
872 void MC_do_the_modelcheck_for_real() {
873
874   MC_SET_RAW_MEM;
875   mc_comp_times = xbt_new0(s_mc_comparison_times_t, 1);
876   MC_UNSET_RAW_MEM;
877   
878   if (!_sg_mc_property_file || _sg_mc_property_file[0]=='\0') {
879     if (mc_reduce_kind==e_mc_reduce_unset)
880       mc_reduce_kind=e_mc_reduce_dpor;
881
882     XBT_INFO("Check a safety property");
883     MC_modelcheck_safety();
884
885   } else  {
886
887     if (mc_reduce_kind==e_mc_reduce_unset)
888       mc_reduce_kind=e_mc_reduce_none;
889
890     XBT_INFO("Check the liveness property %s",_sg_mc_property_file);
891     MC_automaton_load(_sg_mc_property_file);
892     MC_modelcheck_liveness();
893   }
894 }
895
896 void MC_modelcheck_safety(void)
897 {
898   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
899
900   /* Check if MC is already initialized */
901   if (initial_state_safety)
902     return;
903
904   mc_time = xbt_new0(double, simix_process_maxpid);
905
906   /* mc_time refers to clock for each process -> ignore it for heap comparison */  
907   MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double));
908
909   /* Initialize the data structures that must be persistent across every
910      iteration of the model-checker (in RAW memory) */
911   
912   MC_SET_RAW_MEM;
913
914   /* Initialize statistics */
915   mc_stats = xbt_new0(s_mc_stats_t, 1);
916   mc_stats->state_size = 1;
917
918   /* Create exploration stack */
919   mc_stack_safety = xbt_fifo_new();
920
921   if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0'))
922     MC_init_dot_output();
923
924   MC_UNSET_RAW_MEM;
925
926   if(_sg_mc_visited > 0){
927     MC_init();
928   }else{
929     MC_SET_RAW_MEM;
930     MC_init_memory_map_info();
931     MC_init_debug_info();
932     MC_UNSET_RAW_MEM;
933   }
934
935   MC_dpor_init();
936
937   MC_SET_RAW_MEM;
938   /* Save the initial state */
939   initial_state_safety = xbt_new0(s_mc_global_t, 1);
940   initial_state_safety->snapshot = MC_take_snapshot(0);
941   initial_state_safety->initial_communications_pattern_done = 0;
942   initial_state_safety->comm_deterministic = 1;
943   initial_state_safety->send_deterministic = 1;
944   MC_UNSET_RAW_MEM;
945
946   MC_dpor();
947
948   if(raw_mem_set)
949     MC_SET_RAW_MEM;
950
951   xbt_abort();
952   //MC_exit();
953 }
954
955 void MC_modelcheck_liveness(){
956
957   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
958
959   MC_init();
960
961   mc_time = xbt_new0(double, simix_process_maxpid);
962
963   /* mc_time refers to clock for each process -> ignore it for heap comparison */  
964   MC_ignore_heap(mc_time, simix_process_maxpid * sizeof(double));
965  
966   MC_SET_RAW_MEM;
967  
968   /* Initialize statistics */
969   mc_stats = xbt_new0(s_mc_stats_t, 1);
970   mc_stats->state_size = 1;
971
972   /* Create exploration stack */
973   mc_stack_liveness = xbt_fifo_new();
974
975   /* Create the initial state */
976   initial_state_liveness = xbt_new0(s_mc_global_t, 1);
977
978   if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0'))
979     MC_init_dot_output();
980   
981   MC_UNSET_RAW_MEM;
982
983   MC_ddfs_init();
984
985   /* We're done */
986   MC_print_statistics(mc_stats);
987   xbt_free(mc_time);
988
989   if(raw_mem_set)
990     MC_SET_RAW_MEM;
991
992 }
993
994
995 void MC_exit(void)
996 {
997   xbt_free(mc_time);
998
999   MC_memory_exit();
1000   //xbt_abort();
1001 }
1002
1003 int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max){
1004
1005   return simcall->mc_value;
1006 }
1007
1008
1009 int MC_random(int min, int max)
1010 {
1011   /*FIXME: return mc_current_state->executed_transition->random.value;*/
1012   return simcall_mc_random(min, max);
1013 }
1014
1015 /**
1016  * \brief Schedules all the process that are ready to run
1017  */
1018 void MC_wait_for_requests(void)
1019 {
1020   smx_process_t process;
1021   smx_simcall_t req;
1022   unsigned int iter;
1023
1024   while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
1025     SIMIX_process_runall();
1026     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
1027       req = &process->simcall;
1028       if (req->call != SIMCALL_NONE && !MC_request_is_visible(req))
1029         SIMIX_simcall_pre(req, 0);
1030     }
1031   }
1032 }
1033
1034 int MC_deadlock_check()
1035 {
1036   int deadlock = FALSE;
1037   smx_process_t process;
1038   if(xbt_swag_size(simix_global->process_list)){
1039     deadlock = TRUE;
1040     xbt_swag_foreach(process, simix_global->process_list){
1041       if(process->simcall.call != SIMCALL_NONE
1042          && MC_request_is_enabled(&process->simcall)){
1043         deadlock = FALSE;
1044         break;
1045       }
1046     }
1047   }
1048   return deadlock;
1049 }
1050
1051 /**
1052  * \brief Re-executes from the state at position start all the transitions indicated by
1053  *        a given model-checker stack.
1054  * \param stack The stack with the transitions to execute.
1055  * \param start Start index to begin the re-execution.
1056  */
1057 void MC_replay(xbt_fifo_t stack, int start)
1058 {
1059   int raw_mem = (mmalloc_get_current_heap() == raw_heap);
1060
1061   int value, i = 1, count = 1;
1062   char *req_str;
1063   smx_simcall_t req = NULL, saved_req = NULL;
1064   xbt_fifo_item_t item, start_item;
1065   mc_state_t state;
1066   smx_process_t process = NULL;
1067   int comm_pattern = 0;
1068
1069   XBT_DEBUG("**** Begin Replay ****");
1070
1071   if(start == -1){
1072     /* Restore the initial state */
1073     MC_restore_snapshot(initial_state_safety->snapshot);
1074     /* At the moment of taking the snapshot the raw heap was set, so restoring
1075      * it will set it back again, we have to unset it to continue  */
1076     MC_UNSET_RAW_MEM;
1077   }
1078
1079   start_item = xbt_fifo_get_last_item(stack);
1080   if(start != -1){
1081     while (i != start){
1082       start_item = xbt_fifo_get_prev_item(start_item);
1083       i++;
1084     }
1085   }
1086
1087   MC_SET_RAW_MEM;
1088   xbt_dict_reset(first_enabled_state);
1089   xbt_swag_foreach(process, simix_global->process_list){
1090     if(MC_process_is_enabled(process)){
1091       char *key = bprintf("%lu", process->pid);
1092       char *data = bprintf("%d", count);
1093       xbt_dict_set(first_enabled_state, key, data, NULL);
1094       xbt_free(key);
1095     }
1096   }
1097   if(_sg_mc_comms_determinism || _sg_mc_send_determinism)
1098     xbt_dynar_reset(communications_pattern);
1099   MC_UNSET_RAW_MEM;
1100   
1101
1102   /* Traverse the stack from the state at position start and re-execute the transitions */
1103   for (item = start_item;
1104        item != xbt_fifo_get_first_item(stack);
1105        item = xbt_fifo_get_prev_item(item)) {
1106
1107     state = (mc_state_t) xbt_fifo_get_item_content(item);
1108     saved_req = MC_state_get_executed_request(state, &value);
1109    
1110     MC_SET_RAW_MEM;
1111     char *key = bprintf("%lu", saved_req->issuer->pid);
1112     xbt_dict_remove(first_enabled_state, key); 
1113     xbt_free(key);
1114     MC_UNSET_RAW_MEM;
1115    
1116     if(saved_req){
1117       /* because we got a copy of the executed request, we have to fetch the  
1118          real one, pointed by the request field of the issuer process */
1119       req = &saved_req->issuer->simcall;
1120
1121       /* Debug information */
1122       if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
1123         req_str = MC_request_to_string(req, value);
1124         XBT_DEBUG("Replay: %s (%p)", req_str, state);
1125         xbt_free(req_str);
1126       }
1127     }
1128
1129     if(_sg_mc_comms_determinism || _sg_mc_send_determinism){
1130       if(req->call == SIMCALL_COMM_ISEND)
1131         comm_pattern = 1;
1132       else if(req->call == SIMCALL_COMM_IRECV)
1133       comm_pattern = 2;
1134     }
1135
1136     SIMIX_simcall_pre(req, value);
1137
1138     if(_sg_mc_comms_determinism || _sg_mc_send_determinism){
1139       MC_SET_RAW_MEM;
1140       if(comm_pattern != 0){
1141         get_comm_pattern(communications_pattern, req, comm_pattern);
1142       }
1143       MC_UNSET_RAW_MEM;
1144       comm_pattern = 0;
1145     }
1146     
1147     MC_wait_for_requests();
1148
1149     count++;
1150
1151     MC_SET_RAW_MEM;
1152     /* Insert in dict all enabled processes */
1153     xbt_swag_foreach(process, simix_global->process_list){
1154       if(MC_process_is_enabled(process) /*&& !MC_state_process_is_done(state, process)*/){
1155         char *key = bprintf("%lu", process->pid);
1156         if(xbt_dict_get_or_null(first_enabled_state, key) == NULL){
1157           char *data = bprintf("%d", count);
1158           xbt_dict_set(first_enabled_state, key, data, NULL);
1159         }
1160         xbt_free(key);
1161       }
1162     }
1163     MC_UNSET_RAW_MEM;
1164          
1165     /* Update statistics */
1166     mc_stats->visited_states++;
1167     mc_stats->executed_transitions++;
1168
1169   }
1170
1171   XBT_DEBUG("**** End Replay ****");
1172
1173   if(raw_mem)
1174     MC_SET_RAW_MEM;
1175   else
1176     MC_UNSET_RAW_MEM;
1177   
1178
1179 }
1180
1181 void MC_replay_liveness(xbt_fifo_t stack, int all_stack)
1182 {
1183
1184   initial_state_liveness->raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1185
1186   int value;
1187   char *req_str;
1188   smx_simcall_t req = NULL, saved_req = NULL;
1189   xbt_fifo_item_t item;
1190   mc_state_t state;
1191   mc_pair_t pair;
1192   int depth = 1;
1193
1194   XBT_DEBUG("**** Begin Replay ****");
1195
1196   /* Restore the initial state */
1197   MC_restore_snapshot(initial_state_liveness->snapshot);
1198
1199   /* At the moment of taking the snapshot the raw heap was set, so restoring
1200    * it will set it back again, we have to unset it to continue  */
1201   if(!initial_state_liveness->raw_mem_set)
1202     MC_UNSET_RAW_MEM;
1203
1204   if(all_stack){
1205
1206     item = xbt_fifo_get_last_item(stack);
1207
1208     while(depth <= xbt_fifo_size(stack)){
1209
1210       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
1211       state = (mc_state_t) pair->graph_state;
1212
1213       if(pair->requests > 0){
1214    
1215         saved_req = MC_state_get_executed_request(state, &value);
1216         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
1217       
1218         if(saved_req != NULL){
1219           /* because we got a copy of the executed request, we have to fetch the  
1220              real one, pointed by the request field of the issuer process */
1221           req = &saved_req->issuer->simcall;
1222           //XBT_DEBUG("Req->call %u", req->call);
1223   
1224           /* Debug information */
1225           if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
1226             req_str = MC_request_to_string(req, value);
1227             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
1228             xbt_free(req_str);
1229           }
1230   
1231         }
1232  
1233         SIMIX_simcall_pre(req, value);
1234         MC_wait_for_requests();
1235       }
1236
1237       depth++;
1238     
1239       /* Update statistics */
1240       mc_stats->visited_pairs++;
1241       mc_stats->executed_transitions++;
1242
1243       item = xbt_fifo_get_prev_item(item);
1244     }
1245
1246   }else{
1247
1248     /* Traverse the stack from the initial state and re-execute the transitions */
1249     for (item = xbt_fifo_get_last_item(stack);
1250          item != xbt_fifo_get_first_item(stack);
1251          item = xbt_fifo_get_prev_item(item)) {
1252
1253       pair = (mc_pair_t) xbt_fifo_get_item_content(item);
1254       state = (mc_state_t) pair->graph_state;
1255
1256       if(pair->requests > 0){
1257    
1258         saved_req = MC_state_get_executed_request(state, &value);
1259         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
1260       
1261         if(saved_req != NULL){
1262           /* because we got a copy of the executed request, we have to fetch the  
1263              real one, pointed by the request field of the issuer process */
1264           req = &saved_req->issuer->simcall;
1265           //XBT_DEBUG("Req->call %u", req->call);
1266   
1267           /* Debug information */
1268           if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
1269             req_str = MC_request_to_string(req, value);
1270             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
1271             xbt_free(req_str);
1272           }
1273   
1274         }
1275  
1276         SIMIX_simcall_pre(req, value);
1277         MC_wait_for_requests();
1278       }
1279
1280       depth++;
1281     
1282       /* Update statistics */
1283       mc_stats->visited_pairs++;
1284       mc_stats->executed_transitions++;
1285     }
1286   }  
1287
1288   XBT_DEBUG("**** End Replay ****");
1289
1290   if(initial_state_liveness->raw_mem_set)
1291     MC_SET_RAW_MEM;
1292   else
1293     MC_UNSET_RAW_MEM;
1294   
1295 }
1296
1297 /**
1298  * \brief Dumps the contents of a model-checker's stack and shows the actual
1299  *        execution trace
1300  * \param stack The stack to dump
1301  */
1302 void MC_dump_stack_safety(xbt_fifo_t stack)
1303 {
1304   
1305   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1306
1307   MC_show_stack_safety(stack);
1308
1309   if(!_sg_mc_checkpoint){
1310
1311     mc_state_t state;
1312
1313     MC_SET_RAW_MEM;
1314     while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
1315       MC_state_delete(state);
1316     MC_UNSET_RAW_MEM;
1317
1318   }
1319
1320   if(raw_mem_set)
1321     MC_SET_RAW_MEM;
1322   else
1323     MC_UNSET_RAW_MEM;
1324   
1325 }
1326
1327
1328 void MC_show_stack_safety(xbt_fifo_t stack)
1329 {
1330
1331   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1332
1333   MC_SET_RAW_MEM;
1334
1335   int value;
1336   mc_state_t state;
1337   xbt_fifo_item_t item;
1338   smx_simcall_t req;
1339   char *req_str = NULL;
1340   
1341   for (item = xbt_fifo_get_last_item(stack);
1342        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
1343         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
1344     req = MC_state_get_executed_request(state, &value);
1345     if(req){
1346       req_str = MC_request_to_string(req, value);
1347       XBT_INFO("%s", req_str);
1348       xbt_free(req_str);
1349     }
1350   }
1351
1352   if(!raw_mem_set)
1353     MC_UNSET_RAW_MEM;
1354 }
1355
1356 void MC_show_deadlock(smx_simcall_t req)
1357 {
1358   /*char *req_str = NULL;*/
1359   XBT_INFO("**************************");
1360   XBT_INFO("*** DEAD-LOCK DETECTED ***");
1361   XBT_INFO("**************************");
1362   XBT_INFO("Locked request:");
1363   /*req_str = MC_request_to_string(req);
1364     XBT_INFO("%s", req_str);
1365     xbt_free(req_str);*/
1366   XBT_INFO("Counter-example execution trace:");
1367   MC_dump_stack_safety(mc_stack_safety);
1368   MC_print_statistics(mc_stats);
1369 }
1370
1371
1372 void MC_show_stack_liveness(xbt_fifo_t stack){
1373   int value;
1374   mc_pair_t pair;
1375   xbt_fifo_item_t item;
1376   smx_simcall_t req;
1377   char *req_str = NULL;
1378   
1379   for (item = xbt_fifo_get_last_item(stack);
1380        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item)))
1381         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
1382     req = MC_state_get_executed_request(pair->graph_state, &value);
1383     if(req){
1384       if(pair->requests>0){
1385         req_str = MC_request_to_string(req, value);
1386         XBT_INFO("%s", req_str);
1387         xbt_free(req_str);
1388       }else{
1389         XBT_INFO("End of system requests but evolution in Büchi automaton");
1390       }
1391     }
1392   }
1393 }
1394
1395 void MC_dump_stack_liveness(xbt_fifo_t stack){
1396
1397   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1398
1399   mc_pair_t pair;
1400
1401   MC_SET_RAW_MEM;
1402   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
1403     MC_pair_delete(pair);
1404   MC_UNSET_RAW_MEM;
1405
1406   if(raw_mem_set)
1407     MC_SET_RAW_MEM;
1408
1409 }
1410
1411
1412 void MC_print_statistics(mc_stats_t stats)
1413 {
1414   if(stats->expanded_pairs == 0){
1415     XBT_INFO("Expanded states = %lu", stats->expanded_states);
1416     XBT_INFO("Visited states = %lu", stats->visited_states);
1417   }else{
1418     XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
1419     XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
1420   }
1421   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
1422   MC_SET_RAW_MEM;
1423   if((_sg_mc_dot_output_file != NULL) && (_sg_mc_dot_output_file[0]!='\0')){
1424     fprintf(dot_output, "}\n");
1425     fclose(dot_output);
1426   }
1427   if(initial_state_safety != NULL){
1428     if(_sg_mc_comms_determinism)
1429       XBT_INFO("Communication-deterministic : %s", !initial_state_safety->comm_deterministic ? "No" : "Yes");
1430     if (_sg_mc_send_determinism)
1431       XBT_INFO("Send-deterministic : %s", !initial_state_safety->send_deterministic ? "No" : "Yes");
1432   }
1433   MC_UNSET_RAW_MEM;
1434 }
1435
1436 void MC_assert(int prop)
1437 {
1438   if (MC_is_active() && !prop){
1439     XBT_INFO("**************************");
1440     XBT_INFO("*** PROPERTY NOT VALID ***");
1441     XBT_INFO("**************************");
1442     XBT_INFO("Counter-example execution trace:");
1443     MC_dump_stack_safety(mc_stack_safety);
1444     MC_print_statistics(mc_stats);
1445     xbt_abort();
1446   }
1447 }
1448
1449 void MC_cut(void){
1450   user_max_depth_reached = 1;
1451 }
1452
1453 void MC_process_clock_add(smx_process_t process, double amount)
1454 {
1455   mc_time[process->pid] += amount;
1456 }
1457
1458 double MC_process_clock_get(smx_process_t process)
1459 {
1460   if(mc_time){
1461     if(process != NULL)
1462       return mc_time[process->pid];
1463     else 
1464       return -1;
1465   }else{
1466     return 0;
1467   }
1468 }
1469
1470 void MC_automaton_load(const char *file){
1471
1472   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1473
1474   MC_SET_RAW_MEM;
1475
1476   if (_mc_property_automaton == NULL)
1477     _mc_property_automaton = xbt_automaton_new();
1478   
1479   xbt_automaton_load(_mc_property_automaton,file);
1480
1481   MC_UNSET_RAW_MEM;
1482
1483   if(raw_mem_set)
1484     MC_SET_RAW_MEM;
1485
1486 }
1487
1488 void MC_automaton_new_propositional_symbol(const char* id, void* fct) {
1489
1490   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
1491
1492   MC_SET_RAW_MEM;
1493
1494   if (_mc_property_automaton == NULL)
1495     _mc_property_automaton = xbt_automaton_new();
1496
1497   xbt_automaton_propositional_symbol_new(_mc_property_automaton,id,fct);
1498
1499   MC_UNSET_RAW_MEM;
1500
1501   if(raw_mem_set)
1502     MC_SET_RAW_MEM;
1503   
1504 }
1505
1506
1507