Logo AND Algorithmique Numérique Distribuée

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