Logo AND Algorithmique Numérique Distribuée

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