Logo AND Algorithmique Numérique Distribuée

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