Logo AND Algorithmique Numérique Distribuée

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