Logo AND Algorithmique Numérique Distribuée

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