Logo AND Algorithmique Numérique Distribuée

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