Logo AND Algorithmique Numérique Distribuée

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