Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : don't call exit at the end of MC (segfault on atexit)
[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   
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_snapshot_liveness);
375   /* At the moment of taking the snapshot the raw heap was set, so restoring
376    * it will set it back again, we have to unset it to continue  */
377   MC_UNSET_RAW_MEM;
378
379   if(all_stack){
380
381     item = xbt_fifo_get_last_item(stack);
382
383     while(depth <= xbt_fifo_size(stack)){
384
385       pair = (mc_pair_stateless_t) xbt_fifo_get_item_content(item);
386       state = (mc_state_t) pair->graph_state;
387
388       if(pair->requests > 0){
389    
390         saved_req = MC_state_get_executed_request(state, &value);
391         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
392       
393         if(saved_req != NULL){
394           /* because we got a copy of the executed request, we have to fetch the  
395              real one, pointed by the request field of the issuer process */
396           req = &saved_req->issuer->simcall;
397           //XBT_DEBUG("Req->call %u", req->call);
398   
399           /* Debug information */
400           if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
401             req_str = MC_request_to_string(req, value);
402             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
403             xbt_free(req_str);
404           }
405   
406         }
407  
408         SIMIX_simcall_pre(req, value);
409         MC_wait_for_requests();
410       }
411
412       depth++;
413     
414       /* Update statistics */
415       mc_stats_pair->visited_pairs++;
416
417       item = xbt_fifo_get_prev_item(item);
418     }
419
420   }else{
421
422     /* Traverse the stack from the initial state and re-execute the transitions */
423     for (item = xbt_fifo_get_last_item(stack);
424          item != xbt_fifo_get_first_item(stack);
425          item = xbt_fifo_get_prev_item(item)) {
426
427       pair = (mc_pair_stateless_t) xbt_fifo_get_item_content(item);
428       state = (mc_state_t) pair->graph_state;
429
430       if(pair->requests > 0){
431    
432         saved_req = MC_state_get_executed_request(state, &value);
433         //XBT_DEBUG("SavedReq->call %u", saved_req->call);
434       
435         if(saved_req != NULL){
436           /* because we got a copy of the executed request, we have to fetch the  
437              real one, pointed by the request field of the issuer process */
438           req = &saved_req->issuer->simcall;
439           //XBT_DEBUG("Req->call %u", req->call);
440   
441           /* Debug information */
442           if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
443             req_str = MC_request_to_string(req, value);
444             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
445             xbt_free(req_str);
446           }
447   
448         }
449  
450         SIMIX_simcall_pre(req, value);
451         MC_wait_for_requests();
452       }
453
454       depth++;
455     
456       /* Update statistics */
457       mc_stats_pair->visited_pairs++;
458     }
459   }  
460
461   XBT_DEBUG("**** End Replay ****");
462
463   if(raw_mem_set)
464     MC_SET_RAW_MEM;
465   else
466     MC_UNSET_RAW_MEM;
467   
468 }
469
470 /**
471  * \brief Dumps the contents of a model-checker's stack and shows the actual
472  *        execution trace
473  * \param stack The stack to dump
474  */
475 void MC_dump_stack_safety(xbt_fifo_t stack)
476 {
477   
478   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
479
480   MC_show_stack_safety(stack);
481
482   if(!_surf_mc_checkpoint){
483
484     mc_state_t state;
485
486     MC_SET_RAW_MEM;
487     while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
488       MC_state_delete(state);
489     MC_UNSET_RAW_MEM;
490
491   }
492
493   if(raw_mem_set)
494     MC_SET_RAW_MEM;
495   else
496     MC_UNSET_RAW_MEM;
497   
498 }
499
500
501 void MC_show_stack_safety(xbt_fifo_t stack)
502 {
503   int value;
504   mc_state_t state;
505   xbt_fifo_item_t item;
506   smx_simcall_t req;
507   char *req_str = NULL;
508   
509   for (item = xbt_fifo_get_last_item(stack);
510        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
511         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
512     req = MC_state_get_executed_request(state, &value);
513     if(req){
514       req_str = MC_request_to_string(req, value);
515       XBT_INFO("%s", req_str);
516       xbt_free(req_str);
517     }
518   }
519 }
520
521 void MC_show_deadlock(smx_simcall_t req)
522 {
523   /*char *req_str = NULL;*/
524   XBT_INFO("**************************");
525   XBT_INFO("*** DEAD-LOCK DETECTED ***");
526   XBT_INFO("**************************");
527   XBT_INFO("Locked request:");
528   /*req_str = MC_request_to_string(req);
529     XBT_INFO("%s", req_str);
530     xbt_free(req_str);*/
531   XBT_INFO("Counter-example execution trace:");
532   MC_dump_stack_safety(mc_stack_safety);
533 }
534
535
536 void MC_show_stack_liveness(xbt_fifo_t stack){
537   int value;
538   mc_pair_stateless_t pair;
539   xbt_fifo_item_t item;
540   smx_simcall_t req;
541   char *req_str = NULL;
542   
543   for (item = xbt_fifo_get_last_item(stack);
544        (item ? (pair = (mc_pair_stateless_t) (xbt_fifo_get_item_content(item)))
545         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
546     req = MC_state_get_executed_request(pair->graph_state, &value);
547     if(req){
548       if(pair->requests>0){
549         req_str = MC_request_to_string(req, value);
550         XBT_INFO("%s", req_str);
551         xbt_free(req_str);
552       }else{
553         XBT_INFO("End of system requests but evolution in Büchi automaton");
554       }
555     }
556   }
557 }
558
559 void MC_dump_stack_liveness(xbt_fifo_t stack){
560
561   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
562
563   mc_pair_stateless_t pair;
564
565   MC_SET_RAW_MEM;
566   while ((pair = (mc_pair_stateless_t) xbt_fifo_pop(stack)) != NULL)
567     pair_stateless_free(pair);
568   MC_UNSET_RAW_MEM;
569
570   if(raw_mem_set)
571     MC_SET_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
658 }
659
660 void MC_automaton_new_propositional_symbol(const char* id, void* fct) {
661
662   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
663
664   MC_SET_RAW_MEM;
665
666   if (_mc_property_automaton == NULL)
667     _mc_property_automaton = xbt_automaton_new();
668
669   xbt_new_propositional_symbol(_mc_property_automaton,id,fct);
670
671   MC_UNSET_RAW_MEM;
672
673   if(raw_mem_set)
674     MC_SET_RAW_MEM;
675   
676 }
677
678 /************ MC_ignore ***********/ 
679
680 void MC_ignore(void *address, size_t size){
681
682   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
683
684   MC_SET_RAW_MEM;
685   
686   if(mc_comparison_ignore == NULL)
687     mc_comparison_ignore = xbt_dynar_new(sizeof(mc_ignore_region_t), NULL);
688
689   mc_ignore_region_t region = NULL;
690   region = xbt_new0(s_mc_ignore_region_t, 1);
691   region->address = address;
692   region->size = size;
693
694   if((address >= std_heap) && (address <= (void*)((char *)std_heap + STD_HEAP_SIZE))){
695
696     region->block = ((char*)address - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1;
697     
698     if(((xbt_mheap_t)std_heap)->heapinfo[region->block].type == 0){
699       region->fragment = -1;
700     }else{
701       region->fragment = ((uintptr_t) (ADDR2UINT (address) % (BLOCKSIZE))) >> ((xbt_mheap_t)std_heap)->heapinfo[region->block].type;
702     }
703     
704   }
705
706   unsigned int cursor = 0;
707   mc_ignore_region_t current_region;
708   xbt_dynar_foreach(mc_comparison_ignore, cursor, current_region){
709     if(current_region->address > address)
710       break;
711   }
712
713   xbt_dynar_insert_at(mc_comparison_ignore, cursor, &region);
714
715   MC_UNSET_RAW_MEM;
716
717   if(raw_mem_set)
718     MC_SET_RAW_MEM;
719 }
720
721 void MC_new_stack_area(void *stack, char *name, void* context){
722
723   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
724
725   MC_SET_RAW_MEM;
726
727   if(stacks_areas == NULL)
728     stacks_areas = xbt_dynar_new(sizeof(stack_region_t), NULL);
729   
730   stack_region_t region = NULL;
731   region = xbt_new0(s_stack_region_t, 1);
732   region->address = stack;
733   region->process_name = strdup(name);
734   region->context = context;
735   xbt_dynar_push(stacks_areas, &region);
736   
737   MC_UNSET_RAW_MEM;
738
739   if(raw_mem_set)
740     MC_SET_RAW_MEM;
741 }
742
743 /************ DWARF ***********/
744
745 xbt_dict_t MC_get_location_list(const char *elf_file){
746
747   char *command = bprintf("objdump -Wo %s", elf_file);
748
749   FILE *fp = popen(command, "r");
750
751   if(fp == NULL)
752     perror("popen for objdump failed");
753
754   int debug = 0; /*Detect if the program has been compiled with -g */
755
756   xbt_dict_t location_list = xbt_dict_new_homogeneous(NULL);
757   char *line = NULL, *loc_expr = NULL;
758   ssize_t read;
759   size_t n = 0;
760   int cursor_remove;
761   xbt_dynar_t split = NULL;
762
763   while ((read = getline(&line, &n, fp)) != -1) {
764
765     /* Wipeout the new line character */
766     line[read - 1] = '\0';
767
768     xbt_str_trim(line, NULL);
769     
770     if(n == 0)
771       continue;
772
773     if(strlen(line) == 0)
774       continue;
775
776     if(debug == 0){
777
778       if(strncmp(line, elf_file, strlen(elf_file)) == 0)
779         continue;
780       
781       if(strncmp(line, "Contents", 8) == 0)
782         continue;
783
784       if(strncmp(line, "Offset", 6) == 0){
785         debug = 1;
786         continue;
787       }
788     }
789
790     if(debug == 0){
791       XBT_INFO("Your program must be compiled with -g");
792       xbt_abort();
793     }
794
795     xbt_dynar_t loclist = xbt_dynar_new(sizeof(dw_location_entry_t), NULL);
796
797     xbt_str_strip_spaces(line);
798     split = xbt_str_split(line, " ");
799
800     while(read != -1 && strcmp("<End", (char *)xbt_dynar_get_as(split, 1, char *)) != 0){
801       
802       dw_location_entry_t new_entry = xbt_new0(s_dw_location_entry_t, 1);
803       new_entry->lowpc = strtoul((char *)xbt_dynar_get_as(split, 1, char *), NULL, 16);
804       new_entry->highpc = strtoul((char *)xbt_dynar_get_as(split, 2, char *), NULL, 16);
805       
806       cursor_remove =0;
807       while(cursor_remove < 3){
808         xbt_dynar_remove_at(split, 0, NULL);
809         cursor_remove++;
810       }
811
812       loc_expr = xbt_str_join(split, " ");
813       xbt_str_ltrim(loc_expr, "(");
814       xbt_str_rtrim(loc_expr, ")");
815       new_entry->location = get_location(NULL, loc_expr);
816
817       xbt_dynar_push(loclist, &new_entry);
818
819       xbt_dynar_free(&split);
820       free(loc_expr);
821
822       read = getline(&line, &n, fp);
823       if(read != -1){
824         line[read - 1] = '\0';
825         xbt_str_strip_spaces(line);
826         split = xbt_str_split(line, " ");
827       }
828
829     }
830
831
832     char *key = bprintf("%d", (int)strtoul((char *)xbt_dynar_get_as(split, 0, char *), NULL, 16));
833     xbt_dict_set(location_list, key, loclist, NULL);
834     
835     xbt_dynar_free(&split);
836
837   }
838
839   free(line);
840   free(command);
841   pclose(fp);
842
843   return location_list;
844 }
845
846 char *get_libsimgrid_path(){
847
848   char *command = bprintf("ldd %s", xbt_binary_name);
849   
850   FILE *fp = popen(command, "r");
851   if(fp == NULL)
852     perror("popen for ldd failed");
853
854   char *line;
855   ssize_t read;
856   size_t n = 0;
857   xbt_dynar_t split;
858   
859   while((read = getline(&line, &n, fp)) != -1){
860   
861     if(n == 0)
862       continue;
863
864     /* Wipeout the new line character */
865     line[read - 1] = '\0';
866
867     xbt_str_strip_spaces(line);
868     xbt_str_ltrim(line, NULL);
869     split = xbt_str_split(line, " ");
870
871     if(strncmp((char *)xbt_dynar_get_as(split, 0, char *), "libsimgrid.so", 13) == 0){
872       free(line);
873       free(command);
874       pclose(fp);
875       return ((char *)xbt_dynar_get_as(split, 2, char *));
876     }
877
878     xbt_dynar_free(&split);
879     
880   }
881
882   free(line);
883   free(command);
884   pclose(fp);
885
886   return NULL;
887   
888 }
889
890 static dw_frame_t get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset){
891
892   xbt_dict_cursor_t cursor = NULL;
893   char *name;
894   dw_frame_t res;
895
896   xbt_dict_foreach(all_variables, cursor, name, res) {
897     if(offset >= res->start && offset < res->end)
898       return res;
899   }
900
901   return NULL;
902   
903 }
904
905 void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *all_variables){
906
907   char *command = bprintf("objdump -Wi %s", elf_file);
908   
909   FILE *fp = popen(command, "r");
910
911   if(fp == NULL)
912     perror("popen for objdump failed");
913
914   char *line = NULL, *origin, *abstract_origin, *current_frame = NULL;
915   ssize_t read =0;
916   size_t n = 0;
917   int valid_variable = 1;
918   char *node_type = NULL, *location_type = NULL, *variable_name = NULL, *loc_expr = NULL;
919   xbt_dynar_t split = NULL, split2 = NULL;
920
921   xbt_dict_t variables_origin = xbt_dict_new_homogeneous(NULL);
922   xbt_dict_t subprograms_origin = xbt_dict_new_homogeneous(NULL);
923   char *subprogram_name = NULL, *subprogram_start = NULL, *subprogram_end = NULL;
924   int new_frame = 0, new_variable = 0;
925   dw_frame_t variable_frame, subroutine_frame = NULL;
926
927   read = getline(&line, &n, fp);
928
929   while (read != -1) {
930
931     if(n == 0){
932       read = getline(&line, &n, fp);
933       continue;
934     }
935  
936     /* Wipeout the new line character */
937     line[read - 1] = '\0';
938    
939     if(strlen(line) == 0){
940       read = getline(&line, &n, fp);
941       continue;
942     }
943
944     xbt_str_ltrim(line, NULL);
945     xbt_str_strip_spaces(line);
946     
947     if(line[0] != '<'){
948       read = getline(&line, &n, fp);
949       continue;
950     }
951     
952     xbt_dynar_free(&split);
953     split = xbt_str_split(line, " ");
954
955     /* Get node type */
956     node_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
957
958     if(strcmp(node_type, "(DW_TAG_subprogram)") == 0){ /* New frame */
959
960       dw_frame_t frame = NULL;
961
962       strtok(xbt_dynar_get_as(split, 0, char *), "<");
963       subprogram_start = strdup(strtok(NULL, "<"));
964       xbt_str_rtrim(subprogram_start, ">:");
965
966       read = getline(&line, &n, fp);
967    
968       while(read != -1){
969
970         if(n == 0){
971           read = getline(&line, &n, fp);
972           continue;
973         }
974
975         /* Wipeout the new line character */
976         line[read - 1] = '\0';
977         
978         if(strlen(line) == 0){
979           read = getline(&line, &n, fp);
980           continue;
981         }
982       
983         xbt_dynar_free(&split);
984         xbt_str_rtrim(line, NULL);
985         xbt_str_strip_spaces(line);
986         split = xbt_str_split(line, " ");
987           
988         node_type = xbt_dynar_get_as(split, 1, char *);
989
990         if(strncmp(node_type, "DW_AT_", 6) != 0)
991           break;
992
993         if(strcmp(node_type, "DW_AT_sibling") == 0){
994
995           subprogram_end = strdup(xbt_dynar_get_as(split, 3, char*));
996           xbt_str_ltrim(subprogram_end, "<0x");
997           xbt_str_rtrim(subprogram_end, ">");
998           
999         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ /* Frame already in dict */
1000           
1001           new_frame = 0;
1002           abstract_origin = strdup(xbt_dynar_get_as(split, 2, char*));
1003           xbt_str_ltrim(abstract_origin, "<0x");
1004           xbt_str_rtrim(abstract_origin, ">");
1005           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, abstract_origin);
1006           frame = xbt_dict_get_or_null(*all_variables, subprogram_name); 
1007
1008         }else if(strcmp(node_type, "DW_AT_name") == 0){
1009
1010           new_frame = 1;
1011           free(current_frame);
1012           frame = xbt_new0(s_dw_frame_t, 1);
1013           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); 
1014           frame->variables = xbt_dict_new_homogeneous(NULL);
1015           frame->frame_base = xbt_new0(s_dw_location_t, 1); 
1016           current_frame = strdup(frame->name);
1017
1018           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1019         
1020         }else if(strcmp(node_type, "DW_AT_frame_base") == 0){
1021
1022           location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1023
1024           if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1025
1026             frame->frame_base = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1027              
1028           }else{
1029                 
1030             xbt_str_strip_spaces(line);
1031             split2 = xbt_str_split(line, "(");
1032             xbt_dynar_remove_at(split2, 0, NULL);
1033             loc_expr = xbt_str_join(split2, " ");
1034             xbt_str_rtrim(loc_expr, ")");
1035             frame->frame_base = get_location(NULL, loc_expr);
1036             xbt_dynar_free(&split2);
1037
1038           }
1039  
1040         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1041           
1042           if(frame != NULL)
1043             frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1044
1045         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1046
1047           if(frame != NULL)
1048             frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1049
1050         }else if(strcmp(node_type, "DW_AT_MIPS_linkage_name:") == 0){
1051
1052           free(frame->name);
1053           free(current_frame);
1054           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));   
1055           current_frame = strdup(frame->name);
1056           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1057
1058         }
1059
1060         read = getline(&line, &n, fp);
1061
1062       }
1063  
1064       if(new_frame == 1){
1065         frame->start = strtoul(subprogram_start, NULL, 16);
1066         if(subprogram_end != NULL)
1067           frame->end = strtoul(subprogram_end, NULL, 16);
1068         xbt_dict_set(*all_variables, frame->name, frame, NULL);
1069       }
1070
1071       free(subprogram_start);
1072       if(subprogram_end != NULL){
1073         free(subprogram_end);
1074         subprogram_end = NULL;
1075       }
1076         
1077
1078     }else if(strcmp(node_type, "(DW_TAG_variable)") == 0){ /* New variable */
1079
1080       dw_local_variable_t var = NULL;
1081       
1082       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1083       origin = strdup(strtok(NULL, "<"));
1084       xbt_str_rtrim(origin, ">:");
1085       
1086       read = getline(&line, &n, fp);
1087       
1088       while(read != -1){
1089
1090         if(n == 0){
1091           read = getline(&line, &n, fp);
1092           continue;
1093         }
1094
1095         /* Wipeout the new line character */
1096         line[read - 1] = '\0'; 
1097
1098         if(strlen(line) == 0){
1099           read = getline(&line, &n, fp);
1100           continue;
1101         }
1102        
1103         xbt_dynar_free(&split);
1104         xbt_str_rtrim(line, NULL);
1105         xbt_str_strip_spaces(line);
1106         split = xbt_str_split(line, " ");
1107   
1108         node_type = xbt_dynar_get_as(split, 1, char *);
1109
1110         if(strncmp(node_type, "DW_AT_", 6) != 0)
1111           break;
1112
1113         if(strcmp(node_type, "DW_AT_name") == 0){
1114
1115           new_variable = 1;
1116           var = xbt_new0(s_dw_local_variable_t, 1);
1117           var->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));
1118
1119           xbt_dict_set(variables_origin, origin, var->name, NULL);
1120          
1121         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1122
1123           new_variable = 0;
1124           abstract_origin = xbt_dynar_get_as(split, 2, char *);
1125           xbt_str_ltrim(abstract_origin, "<0x");
1126           xbt_str_rtrim(abstract_origin, ">");
1127           
1128           variable_name = (char *)xbt_dict_get_or_null(variables_origin, abstract_origin);
1129           variable_frame = get_frame_by_offset(*all_variables, strtoul(abstract_origin, NULL, 16));
1130           var = xbt_dict_get_or_null(variable_frame->variables, variable_name);   
1131
1132         }else if(strcmp(node_type, "DW_AT_location") == 0){
1133
1134           if(valid_variable == 1 && var != NULL){
1135
1136             var->location = xbt_new0(s_dw_location_t, 1);
1137
1138             location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1139
1140             if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1141
1142               var->location = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1143              
1144             }else{
1145                 
1146               xbt_str_strip_spaces(line);
1147               split2 = xbt_str_split(line, "(");
1148               xbt_dynar_remove_at(split2, 0, NULL);
1149               loc_expr = xbt_str_join(split2, " ");
1150               xbt_str_rtrim(loc_expr, ")");
1151               var->location = get_location(NULL, loc_expr);
1152               xbt_dynar_free(&split2);
1153
1154             }
1155
1156           }
1157            
1158         }else if(strcmp(node_type, "DW_AT_external") == 0){
1159
1160           valid_variable = 0;
1161         
1162         }
1163
1164         read = getline(&line, &n, fp);
1165  
1166       }
1167
1168       if(new_variable == 1 && valid_variable == 1){
1169         
1170         variable_frame = xbt_dict_get_or_null(*all_variables, current_frame);
1171         xbt_dict_set(variable_frame->variables, var->name, var, NULL);
1172       }
1173
1174       valid_variable = 1;
1175       new_variable = 0;
1176
1177     }else if(strcmp(node_type, "(DW_TAG_inlined_subroutine)") == 0){
1178
1179       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1180       origin = strdup(strtok(NULL, "<"));
1181       xbt_str_rtrim(origin, ">:");
1182
1183       read = getline(&line, &n, fp);
1184
1185       while(read != -1){
1186
1187         /* Wipeout the new line character */
1188         line[read - 1] = '\0'; 
1189
1190         if(n == 0){
1191           read = getline(&line, &n, fp);
1192           continue;
1193         }
1194
1195         if(strlen(line) == 0){
1196           read = getline(&line, &n, fp);
1197           continue;
1198         }
1199
1200         xbt_dynar_free(&split);
1201         xbt_str_rtrim(line, NULL);
1202         xbt_str_strip_spaces(line);
1203         split = xbt_str_split(line, " ");
1204         
1205         if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0)
1206           break;
1207           
1208         node_type = xbt_dynar_get_as(split, 1, char *);
1209
1210         if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1211
1212           origin = xbt_dynar_get_as(split, 2, char *);
1213           xbt_str_ltrim(origin, "<0x");
1214           xbt_str_rtrim(origin, ">");
1215           
1216           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, origin);
1217           subroutine_frame = xbt_dict_get_or_null(*all_variables, subprogram_name);
1218         
1219         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1220
1221           subroutine_frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1222
1223         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1224
1225           subroutine_frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1226         }
1227
1228         read = getline(&line, &n, fp);
1229       
1230       }
1231
1232     }else{
1233
1234       read = getline(&line, &n, fp);
1235
1236     }
1237
1238   }
1239   
1240   xbt_dynar_free(&split);
1241   free(line);
1242   free(command);
1243   pclose(fp);
1244   
1245 }
1246
1247 static dw_location_t get_location(xbt_dict_t location_list, char *expr){
1248
1249   dw_location_t loc = xbt_new0(s_dw_location_t, 1);
1250
1251   if(location_list != NULL){
1252     
1253     char *key = bprintf("%d", (int)strtoul(expr, NULL, 16));
1254     loc->type = e_dw_loclist;
1255     loc->location.loclist =  (xbt_dynar_t)xbt_dict_get_or_null(location_list, key);
1256     if(loc == NULL)
1257       XBT_INFO("Key not found in loclist");
1258     return loc;
1259
1260   }else{
1261
1262     int cursor = 0;
1263     char *tok = NULL, *tok2 = NULL; 
1264     
1265     xbt_dynar_t tokens1 = xbt_str_split(expr, ";");
1266     xbt_dynar_t tokens2;
1267
1268     loc->type = e_dw_compose;
1269     loc->location.compose = xbt_dynar_new(sizeof(dw_location_t), NULL);
1270
1271     while(cursor < xbt_dynar_length(tokens1)){
1272
1273       tok = xbt_dynar_get_as(tokens1, cursor, char*);
1274       tokens2 = xbt_str_split(tok, " ");
1275       tok2 = xbt_dynar_get_as(tokens2, 0, char*);
1276       
1277       if(strncmp(tok2, "DW_OP_reg", 9) == 0){
1278         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1279         new_element->type = e_dw_register;
1280         new_element->location.reg = atoi(strtok(tok2, "DW_OP_reg"));
1281         xbt_dynar_push(loc->location.compose, &new_element);     
1282       }else if(strcmp(tok2, "DW_OP_fbreg:") == 0){
1283         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1284         new_element->type = e_dw_fbregister_op;
1285         new_element->location.fbreg_op = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1286         xbt_dynar_push(loc->location.compose, &new_element);
1287       }else if(strncmp(tok2, "DW_OP_breg", 10) == 0){
1288         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1289         new_element->type = e_dw_bregister_op;
1290         new_element->location.breg_op.reg = atoi(strtok(tok2, "DW_OP_breg"));
1291         new_element->location.breg_op.offset = atoi(xbt_dynar_get_as(tokens2, 2, char*));
1292         xbt_dynar_push(loc->location.compose, &new_element);
1293       }else if(strncmp(tok2, "DW_OP_lit", 9) == 0){
1294         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1295         new_element->type = e_dw_lit;
1296         new_element->location.lit = atoi(strtok(tok2, "DW_OP_lit"));
1297         xbt_dynar_push(loc->location.compose, &new_element);
1298       }else if(strcmp(tok2, "DW_OP_piece:") == 0){
1299         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1300         new_element->type = e_dw_piece;
1301         new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1302         /*if(strlen(xbt_dynar_get_as(tokens2, 1, char*)) > 1)
1303           new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1304         else
1305         new_element->location.piece = xbt_dynar_get_as(tokens2, 1, char*)[0] - '0';*/
1306         xbt_dynar_push(loc->location.compose, &new_element);
1307       }else if(strcmp(tok2, "DW_OP_plus_uconst:") == 0){
1308         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1309         new_element->type = e_dw_plus_uconst;
1310         new_element->location.plus_uconst = atoi(xbt_dynar_get_as(tokens2, 1, char *));
1311         xbt_dynar_push(loc->location.compose, &new_element);
1312       }else if(strcmp(tok, "DW_OP_abs") == 0 || 
1313                strcmp(tok, "DW_OP_and") == 0 ||
1314                strcmp(tok, "DW_OP_div") == 0 ||
1315                strcmp(tok, "DW_OP_minus") == 0 ||
1316                strcmp(tok, "DW_OP_mod") == 0 ||
1317                strcmp(tok, "DW_OP_mul") == 0 ||
1318                strcmp(tok, "DW_OP_neg") == 0 ||
1319                strcmp(tok, "DW_OP_not") == 0 ||
1320                strcmp(tok, "DW_OP_or") == 0 ||
1321                strcmp(tok, "DW_OP_plus") == 0){               
1322         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1323         new_element->type = e_dw_arithmetic;
1324         new_element->location.arithmetic = strdup(strtok(tok2, "DW_OP_"));
1325         xbt_dynar_push(loc->location.compose, &new_element);
1326       }else if(strcmp(tok, "DW_OP_stack_value") == 0){
1327       }else if(strcmp(tok2, "DW_OP_deref_size:") == 0){
1328         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1329         new_element->type = e_dw_deref;
1330         new_element->location.deref_size = (unsigned int short) atoi(xbt_dynar_get_as(tokens2, 1, char*));
1331         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1332           new_element->location.deref_size = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1333         else
1334         new_element->location.deref_size = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1335         xbt_dynar_push(loc->location.compose, &new_element);
1336       }else if(strcmp(tok, "DW_OP_deref") == 0){
1337         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1338         new_element->type = e_dw_deref;
1339         new_element->location.deref_size = sizeof(void *);
1340         xbt_dynar_push(loc->location.compose, &new_element);
1341       }else if(strcmp(tok2, "DW_OP_constu:") == 0){
1342         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1343         new_element->type = e_dw_uconstant;
1344         new_element->location.uconstant.bytes = 1;
1345         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1346         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1347           new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens, cursor, char*)));
1348         else
1349         new_element->location.uconstant.value = (unsigned long int)(xbt_dynar_get_as(tokens, cursor, char*)[0] - '0');*/
1350         xbt_dynar_push(loc->location.compose, &new_element);
1351       }else if(strcmp(tok2, "DW_OP_consts:") == 0){
1352         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1353         new_element->type = e_dw_sconstant;
1354         new_element->location.sconstant.bytes = 1;
1355         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1356         xbt_dynar_push(loc->location.compose, &new_element);
1357       }else if(strcmp(tok2, "DW_OP_const1u:") == 0 ||
1358                strcmp(tok2, "DW_OP_const2u:") == 0 ||
1359                strcmp(tok2, "DW_OP_const4u:") == 0 ||
1360                strcmp(tok2, "DW_OP_const8u:") == 0){
1361         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1362         new_element->type = e_dw_uconstant;
1363         new_element->location.uconstant.bytes = tok2[11] - '0';
1364         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1365         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1366           new_element->location.constant.value = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1367         else
1368         new_element->location.constant.value = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1369         xbt_dynar_push(loc->location.compose, &new_element);
1370       }else if(strcmp(tok, "DW_OP_const1s") == 0 ||
1371                strcmp(tok, "DW_OP_const2s") == 0 ||
1372                strcmp(tok, "DW_OP_const4s") == 0 ||
1373                strcmp(tok, "DW_OP_const8s") == 0){
1374         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1375         new_element->type = e_dw_sconstant;
1376         new_element->location.sconstant.bytes = tok2[11] - '0';
1377         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1378         xbt_dynar_push(loc->location.compose, &new_element);
1379       }else{
1380         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1381         new_element->type = e_dw_unsupported;
1382         xbt_dynar_push(loc->location.compose, &new_element);
1383       }
1384
1385       cursor++;
1386       xbt_dynar_free(&tokens2);
1387
1388     }
1389     
1390     xbt_dynar_free(&tokens1);
1391
1392     return loc;
1393     
1394   }
1395
1396 }
1397
1398
1399 void print_local_variables(xbt_dict_t list){
1400   
1401   dw_location_entry_t entry;
1402   dw_location_t location_entry;
1403   unsigned int cursor3 = 0, cursor4 = 0;
1404   xbt_dict_cursor_t cursor = 0, cursor2 = 0;
1405
1406   char *frame_name, *variable_name;
1407   dw_frame_t current_frame;
1408   dw_local_variable_t current_variable;
1409
1410   xbt_dict_foreach(list, cursor, frame_name, current_frame){ 
1411     fprintf(stderr, "Frame name : %s\n", current_frame->name);
1412     fprintf(stderr, "Location type : %d\n", current_frame->frame_base->type);
1413     xbt_dict_foreach((xbt_dict_t)current_frame->variables, cursor2, variable_name, current_variable){
1414       fprintf(stderr, "Name : %s\n", current_variable->name);
1415       if(current_variable->location == NULL)
1416         continue;
1417       fprintf(stderr, "Location type : %d\n", current_variable->location->type);
1418       switch(current_variable->location->type){
1419       case e_dw_loclist :
1420         xbt_dynar_foreach(current_variable->location->location.loclist, cursor3, entry){
1421           fprintf(stderr, "Lowpc : %lx, Highpc : %lx,", entry->lowpc, entry->highpc);
1422           switch(entry->location->type){
1423           case e_dw_register :
1424             fprintf(stderr, " Location : in register %d\n", entry->location->location.reg);
1425             break;
1426           case e_dw_bregister_op:
1427             fprintf(stderr, " Location : Add %d to the value in register %d\n", entry->location->location.breg_op.offset, entry->location->location.breg_op.reg);
1428             break;
1429           case e_dw_lit:
1430             fprintf(stderr, "Value already kwnown : %d\n", entry->location->location.lit);
1431             break;
1432           case e_dw_fbregister_op:
1433             fprintf(stderr, " Location : %d bytes from logical frame pointer\n", entry->location->location.fbreg_op);
1434             break;
1435           case e_dw_compose:
1436             fprintf(stderr, " Location :\n");
1437             xbt_dynar_foreach(entry->location->location.compose, cursor4, location_entry){
1438               switch(location_entry->type){
1439               case e_dw_register :
1440                 fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1441                 break;
1442               case e_dw_bregister_op:
1443                 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);
1444                 break;
1445               case e_dw_lit:
1446                 fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1447                 break;
1448               case e_dw_fbregister_op:
1449                 fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1450                 break;
1451               case e_dw_deref:
1452                 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);
1453                 break;
1454               case e_dw_arithmetic :
1455                 fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1456                 break;
1457               case e_dw_piece:
1458                 fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1459                 break;
1460               case e_dw_uconstant :
1461                 fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1462                 break;
1463               case e_dw_sconstant :
1464                 fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1465                 break;
1466               default :
1467                 fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1468                 break;
1469               }
1470             }
1471             break;
1472           default:
1473             fprintf(stderr, "Location type not supported\n");
1474             break;
1475           }
1476         }
1477         break;
1478       case e_dw_compose:
1479         cursor4 = 0;
1480         fprintf(stderr, "Location :\n");
1481         xbt_dynar_foreach(current_variable->location->location.compose, cursor4, location_entry){
1482           switch(location_entry->type){
1483           case e_dw_register :
1484             fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1485             break;
1486           case e_dw_bregister_op:
1487             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);
1488             break;
1489           case e_dw_lit:
1490             fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1491             break;
1492           case e_dw_fbregister_op:
1493             fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1494             break;
1495           case e_dw_deref:
1496             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);
1497             break;
1498           case e_dw_arithmetic :
1499             fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1500             break;
1501           case e_dw_piece:
1502             fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1503             break;
1504           case e_dw_uconstant :
1505             fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1506             break;
1507           case e_dw_sconstant :
1508             fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1509             break;
1510           default :
1511             fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1512             break;
1513           }
1514         }
1515         break;
1516       default :
1517         fprintf(stderr, "Location type not supported\n");
1518         break;
1519       }
1520     }
1521   }
1522
1523 }