Logo AND Algorithmique Numérique Distribuée

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