Logo AND Algorithmique Numérique Distribuée

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