Logo AND Algorithmique Numérique Distribuée

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