Logo AND Algorithmique Numérique Distribuée

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