Logo AND Algorithmique Numérique Distribuée

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