Logo AND Algorithmique Numérique Distribuée

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