Logo AND Algorithmique Numérique Distribuée

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