Logo AND Algorithmique Numérique Distribuée

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