Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : Add statistics about comparison times for each pair reached:
[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   if(mmalloc_get_current_heap() == raw_heap)
610     MC_UNSET_RAW_MEM;
611 }
612
613 void MC_assert(int prop)
614 {
615   if (MC_is_active() && !prop){
616     XBT_INFO("**************************");
617     XBT_INFO("*** PROPERTY NOT VALID ***");
618     XBT_INFO("**************************");
619     XBT_INFO("Counter-example execution trace:");
620     MC_dump_stack_safety(mc_stack_safety);
621     MC_print_statistics(mc_stats);
622     xbt_abort();
623   }
624 }
625
626 static void MC_assert_pair(int prop){
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_show_stack_liveness(mc_stack_liveness);
633     //MC_dump_snapshot_stack(mc_snapshot_stack);
634     MC_print_statistics_pairs(mc_stats_pair);
635     xbt_abort();
636   }
637 }
638
639 void MC_process_clock_add(smx_process_t process, double amount)
640 {
641   mc_time[process->pid] += amount;
642 }
643
644 double MC_process_clock_get(smx_process_t process)
645 {
646   if(mc_time){
647     if(process != NULL)
648       return mc_time[process->pid];
649     else 
650       return -1;
651   }else{
652     return 0;
653   }
654 }
655
656 void MC_automaton_load(const char *file){
657
658   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
659
660   MC_SET_RAW_MEM;
661
662   if (_mc_property_automaton == NULL)
663     _mc_property_automaton = xbt_automaton_new();
664   
665   xbt_automaton_load(_mc_property_automaton,file);
666
667   MC_UNSET_RAW_MEM;
668
669   if(raw_mem_set)
670     MC_SET_RAW_MEM;
671
672 }
673
674 void MC_automaton_new_propositional_symbol(const char* id, void* fct) {
675
676   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
677
678   MC_SET_RAW_MEM;
679
680   if (_mc_property_automaton == NULL)
681     _mc_property_automaton = xbt_automaton_new();
682
683   xbt_new_propositional_symbol(_mc_property_automaton,id,fct);
684
685   MC_UNSET_RAW_MEM;
686
687   if(raw_mem_set)
688     MC_SET_RAW_MEM;
689   
690 }
691
692 /************ MC_ignore ***********/ 
693
694 void MC_ignore_heap(void *address, size_t size){
695
696   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
697
698   MC_SET_RAW_MEM;
699   
700   if(mc_heap_comparison_ignore == NULL)
701     mc_heap_comparison_ignore = xbt_dynar_new(sizeof(mc_heap_ignore_region_t), NULL);
702
703   mc_heap_ignore_region_t region = NULL;
704   region = xbt_new0(s_mc_heap_ignore_region_t, 1);
705   region->address = address;
706   region->size = size;
707
708   if((address >= std_heap) && (address <= (void*)((char *)std_heap + STD_HEAP_SIZE))){
709
710     region->block = ((char*)address - (char*)((xbt_mheap_t)std_heap)->heapbase) / BLOCKSIZE + 1;
711     
712     if(((xbt_mheap_t)std_heap)->heapinfo[region->block].type == 0){
713       region->fragment = -1;
714     }else{
715       region->fragment = ((uintptr_t) (ADDR2UINT (address) % (BLOCKSIZE))) >> ((xbt_mheap_t)std_heap)->heapinfo[region->block].type;
716     }
717     
718   }
719
720   unsigned int cursor = 0;
721   mc_heap_ignore_region_t current_region;
722   xbt_dynar_foreach(mc_heap_comparison_ignore, cursor, current_region){
723     if(current_region->address > address)
724       break;
725   }
726
727   xbt_dynar_insert_at(mc_heap_comparison_ignore, cursor, &region);
728
729   MC_UNSET_RAW_MEM;
730
731   if(raw_mem_set)
732     MC_SET_RAW_MEM;
733 }
734
735 void MC_ignore_data_bss(void *address, size_t size){
736
737   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
738
739   MC_SET_RAW_MEM;
740   
741   if(mc_data_bss_comparison_ignore == NULL)
742     mc_data_bss_comparison_ignore = xbt_dynar_new(sizeof(mc_data_bss_ignore_variable_t), NULL);
743
744   if(xbt_dynar_is_empty(mc_data_bss_comparison_ignore)){
745
746     mc_data_bss_ignore_variable_t var = NULL;
747     var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1);
748     var->address = address;
749     var->size = size;
750
751     xbt_dynar_insert_at(mc_data_bss_comparison_ignore, 0, &var);
752
753   }else{
754     
755     unsigned int cursor = 0;
756     int start = 0;
757     int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1;
758     mc_data_bss_ignore_variable_t current_var = NULL;
759
760     while(start <= end){
761       cursor = (start + end) / 2;
762       current_var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t);
763       if(current_var->address == address){
764         MC_UNSET_RAW_MEM;
765         if(raw_mem_set)
766           MC_SET_RAW_MEM;
767         return;
768       }
769       if(current_var->address < address)
770         start = cursor + 1;
771       if(current_var->address > address)
772         end = cursor - 1;
773     }
774  
775     mc_data_bss_ignore_variable_t var = NULL;
776     var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1);
777     var->address = address;
778     var->size = size;
779
780     if(current_var->address > address)
781       xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor + 1, &var);
782     else
783       xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor, &var);
784
785   }
786
787   MC_UNSET_RAW_MEM;
788
789   if(raw_mem_set)
790     MC_SET_RAW_MEM;
791 }
792
793 void MC_ignore_stack(const char *var_name, const char *frame){
794   
795   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
796
797   MC_SET_RAW_MEM;
798
799   if(mc_stack_comparison_ignore == NULL)
800     mc_stack_comparison_ignore = xbt_dynar_new(sizeof(mc_stack_ignore_variable_t), NULL);
801
802   if(xbt_dynar_is_empty(mc_stack_comparison_ignore)){
803
804     mc_stack_ignore_variable_t var = NULL;
805     var = xbt_new0(s_mc_stack_ignore_variable_t, 1);
806     var->var_name = strdup(var_name);
807     var->frame = strdup(frame);
808
809     xbt_dynar_insert_at(mc_stack_comparison_ignore, 0, &var);
810
811   }else{
812     
813     unsigned int cursor = 0;
814     int start = 0;
815     int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1;
816     mc_stack_ignore_variable_t current_var = NULL;
817
818     while(start <= end){
819       cursor = (start + end) / 2;
820       current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t);
821       if(strcmp(current_var->frame, frame) == 0){
822         if(strcmp(current_var->var_name, var_name) == 0){
823           MC_UNSET_RAW_MEM;
824           if(raw_mem_set)
825             MC_SET_RAW_MEM;
826           return;
827         }
828         if(strcmp(current_var->var_name, var_name) < 0)
829           start = cursor + 1;
830         if(strcmp(current_var->var_name, var_name) > 0)
831           end = cursor - 1;
832       }
833       if(strcmp(current_var->frame, frame) < 0)
834         start = cursor + 1;
835       if(strcmp(current_var->frame, frame) > 0)
836         end = cursor - 1;
837     }
838
839     mc_stack_ignore_variable_t var = NULL;
840     var = xbt_new0(s_mc_stack_ignore_variable_t, 1);
841     var->var_name = strdup(var_name);
842     var->frame = strdup(frame);
843
844     if(strcmp(current_var->frame, frame) < 0)
845       xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor + 1, &var);
846     else
847       xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor, &var);
848
849   }
850
851   MC_UNSET_RAW_MEM;
852   
853   if(raw_mem_set)
854     MC_SET_RAW_MEM;
855
856 }
857
858 void MC_new_stack_area(void *stack, char *name, void* context, size_t size){
859
860   raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
861
862   MC_SET_RAW_MEM;
863   if(stacks_areas == NULL)
864     stacks_areas = xbt_dynar_new(sizeof(stack_region_t), NULL);
865   
866   stack_region_t region = NULL;
867   region = xbt_new0(s_stack_region_t, 1);
868   region->address = stack;
869   region->process_name = strdup(name);
870   region->context = context;
871   region->size = size;
872   xbt_dynar_push(stacks_areas, &region);
873   
874   MC_UNSET_RAW_MEM;
875
876   if(raw_mem_set)
877     MC_SET_RAW_MEM;
878 }
879
880 /************ DWARF ***********/
881
882 xbt_dict_t MC_get_location_list(const char *elf_file){
883
884   char *command = bprintf("objdump -Wo %s", elf_file);
885
886   FILE *fp = popen(command, "r");
887
888   if(fp == NULL)
889     perror("popen for objdump failed");
890
891   int debug = 0; /*Detect if the program has been compiled with -g */
892
893   xbt_dict_t location_list = xbt_dict_new_homogeneous(NULL);
894   char *line = NULL, *loc_expr = NULL;
895   ssize_t read;
896   size_t n = 0;
897   int cursor_remove;
898   xbt_dynar_t split = NULL;
899
900   while ((read = getline(&line, &n, fp)) != -1) {
901
902     /* Wipeout the new line character */
903     line[read - 1] = '\0';
904
905     xbt_str_trim(line, NULL);
906     
907     if(n == 0)
908       continue;
909
910     if(strlen(line) == 0)
911       continue;
912
913     if(debug == 0){
914
915       if(strncmp(line, elf_file, strlen(elf_file)) == 0)
916         continue;
917       
918       if(strncmp(line, "Contents", 8) == 0)
919         continue;
920
921       if(strncmp(line, "Offset", 6) == 0){
922         debug = 1;
923         continue;
924       }
925     }
926
927     if(debug == 0){
928       XBT_INFO("Your program must be compiled with -g");
929       xbt_abort();
930     }
931
932     xbt_dynar_t loclist = xbt_dynar_new(sizeof(dw_location_entry_t), NULL);
933
934     xbt_str_strip_spaces(line);
935     split = xbt_str_split(line, " ");
936
937     while(read != -1 && strcmp("<End", (char *)xbt_dynar_get_as(split, 1, char *)) != 0){
938       
939       dw_location_entry_t new_entry = xbt_new0(s_dw_location_entry_t, 1);
940       new_entry->lowpc = strtoul((char *)xbt_dynar_get_as(split, 1, char *), NULL, 16);
941       new_entry->highpc = strtoul((char *)xbt_dynar_get_as(split, 2, char *), NULL, 16);
942       
943       cursor_remove =0;
944       while(cursor_remove < 3){
945         xbt_dynar_remove_at(split, 0, NULL);
946         cursor_remove++;
947       }
948
949       loc_expr = xbt_str_join(split, " ");
950       xbt_str_ltrim(loc_expr, "(");
951       xbt_str_rtrim(loc_expr, ")");
952       new_entry->location = get_location(NULL, loc_expr);
953
954       xbt_dynar_push(loclist, &new_entry);
955
956       xbt_dynar_free(&split);
957       free(loc_expr);
958
959       read = getline(&line, &n, fp);
960       if(read != -1){
961         line[read - 1] = '\0';
962         xbt_str_strip_spaces(line);
963         split = xbt_str_split(line, " ");
964       }
965
966     }
967
968
969     char *key = bprintf("%d", (int)strtoul((char *)xbt_dynar_get_as(split, 0, char *), NULL, 16));
970     xbt_dict_set(location_list, key, loclist, NULL);
971     
972     xbt_dynar_free(&split);
973
974   }
975
976   free(line);
977   free(command);
978   pclose(fp);
979
980   return location_list;
981 }
982
983 char *get_libsimgrid_path(){
984
985   char *command = bprintf("ldd %s", xbt_binary_name);
986   
987   FILE *fp = popen(command, "r");
988   if(fp == NULL)
989     perror("popen for ldd failed");
990
991   char *line;
992   ssize_t read;
993   size_t n = 0;
994   xbt_dynar_t split;
995   
996   while((read = getline(&line, &n, fp)) != -1){
997   
998     if(n == 0)
999       continue;
1000
1001     /* Wipeout the new line character */
1002     line[read - 1] = '\0';
1003
1004     xbt_str_strip_spaces(line);
1005     xbt_str_ltrim(line, NULL);
1006     split = xbt_str_split(line, " ");
1007
1008     if(strncmp((char *)xbt_dynar_get_as(split, 0, char *), "libsimgrid.so", 13) == 0){
1009       free(line);
1010       free(command);
1011       pclose(fp);
1012       return ((char *)xbt_dynar_get_as(split, 2, char *));
1013     }
1014
1015     xbt_dynar_free(&split);
1016     
1017   }
1018
1019   free(line);
1020   free(command);
1021   pclose(fp);
1022
1023   return NULL;
1024   
1025 }
1026
1027 static dw_frame_t get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset){
1028
1029   xbt_dict_cursor_t cursor = NULL;
1030   char *name;
1031   dw_frame_t res;
1032
1033   xbt_dict_foreach(all_variables, cursor, name, res) {
1034     if(offset >= res->start && offset < res->end)
1035       return res;
1036   }
1037
1038   return NULL;
1039   
1040 }
1041
1042 void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *all_variables){
1043
1044   char *command = bprintf("objdump -Wi %s", elf_file);
1045   
1046   FILE *fp = popen(command, "r");
1047
1048   if(fp == NULL)
1049     perror("popen for objdump failed");
1050
1051   char *line = NULL, *origin, *abstract_origin, *current_frame = NULL;
1052   ssize_t read =0;
1053   size_t n = 0;
1054   int valid_variable = 1;
1055   char *node_type = NULL, *location_type = NULL, *variable_name = NULL, *loc_expr = NULL;
1056   xbt_dynar_t split = NULL, split2 = NULL;
1057
1058   xbt_dict_t variables_origin = xbt_dict_new_homogeneous(NULL);
1059   xbt_dict_t subprograms_origin = xbt_dict_new_homogeneous(NULL);
1060   char *subprogram_name = NULL, *subprogram_start = NULL, *subprogram_end = NULL;
1061   int new_frame = 0, new_variable = 0;
1062   dw_frame_t variable_frame, subroutine_frame = NULL;
1063
1064   read = getline(&line, &n, fp);
1065
1066   while (read != -1) {
1067
1068     if(n == 0){
1069       read = getline(&line, &n, fp);
1070       continue;
1071     }
1072  
1073     /* Wipeout the new line character */
1074     line[read - 1] = '\0';
1075    
1076     if(strlen(line) == 0){
1077       read = getline(&line, &n, fp);
1078       continue;
1079     }
1080
1081     xbt_str_ltrim(line, NULL);
1082     xbt_str_strip_spaces(line);
1083     
1084     if(line[0] != '<'){
1085       read = getline(&line, &n, fp);
1086       continue;
1087     }
1088     
1089     xbt_dynar_free(&split);
1090     split = xbt_str_split(line, " ");
1091
1092     /* Get node type */
1093     node_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1094
1095     if(strcmp(node_type, "(DW_TAG_subprogram)") == 0){ /* New frame */
1096
1097       dw_frame_t frame = NULL;
1098
1099       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1100       subprogram_start = strdup(strtok(NULL, "<"));
1101       xbt_str_rtrim(subprogram_start, ">:");
1102
1103       read = getline(&line, &n, fp);
1104    
1105       while(read != -1){
1106
1107         if(n == 0){
1108           read = getline(&line, &n, fp);
1109           continue;
1110         }
1111
1112         /* Wipeout the new line character */
1113         line[read - 1] = '\0';
1114         
1115         if(strlen(line) == 0){
1116           read = getline(&line, &n, fp);
1117           continue;
1118         }
1119       
1120         xbt_dynar_free(&split);
1121         xbt_str_rtrim(line, NULL);
1122         xbt_str_strip_spaces(line);
1123         split = xbt_str_split(line, " ");
1124           
1125         node_type = xbt_dynar_get_as(split, 1, char *);
1126
1127         if(strncmp(node_type, "DW_AT_", 6) != 0)
1128           break;
1129
1130         if(strcmp(node_type, "DW_AT_sibling") == 0){
1131
1132           subprogram_end = strdup(xbt_dynar_get_as(split, 3, char*));
1133           xbt_str_ltrim(subprogram_end, "<0x");
1134           xbt_str_rtrim(subprogram_end, ">");
1135           
1136         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ /* Frame already in dict */
1137           
1138           new_frame = 0;
1139           abstract_origin = strdup(xbt_dynar_get_as(split, 2, char*));
1140           xbt_str_ltrim(abstract_origin, "<0x");
1141           xbt_str_rtrim(abstract_origin, ">");
1142           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, abstract_origin);
1143           frame = xbt_dict_get_or_null(*all_variables, subprogram_name); 
1144
1145         }else if(strcmp(node_type, "DW_AT_name") == 0){
1146
1147           new_frame = 1;
1148           free(current_frame);
1149           frame = xbt_new0(s_dw_frame_t, 1);
1150           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); 
1151           frame->variables = xbt_dict_new_homogeneous(NULL);
1152           frame->frame_base = xbt_new0(s_dw_location_t, 1); 
1153           current_frame = strdup(frame->name);
1154
1155           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1156         
1157         }else if(strcmp(node_type, "DW_AT_frame_base") == 0){
1158
1159           location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1160
1161           if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1162
1163             frame->frame_base = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1164              
1165           }else{
1166                 
1167             xbt_str_strip_spaces(line);
1168             split2 = xbt_str_split(line, "(");
1169             xbt_dynar_remove_at(split2, 0, NULL);
1170             loc_expr = xbt_str_join(split2, " ");
1171             xbt_str_rtrim(loc_expr, ")");
1172             frame->frame_base = get_location(NULL, loc_expr);
1173             xbt_dynar_free(&split2);
1174
1175           }
1176  
1177         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1178           
1179           if(frame != NULL)
1180             frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1181
1182         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1183
1184           if(frame != NULL)
1185             frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1186
1187         }else if(strcmp(node_type, "DW_AT_MIPS_linkage_name:") == 0){
1188
1189           free(frame->name);
1190           free(current_frame);
1191           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));   
1192           current_frame = strdup(frame->name);
1193           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1194
1195         }
1196
1197         read = getline(&line, &n, fp);
1198
1199       }
1200  
1201       if(new_frame == 1){
1202         frame->start = strtoul(subprogram_start, NULL, 16);
1203         if(subprogram_end != NULL)
1204           frame->end = strtoul(subprogram_end, NULL, 16);
1205         xbt_dict_set(*all_variables, frame->name, frame, NULL);
1206       }
1207
1208       free(subprogram_start);
1209       if(subprogram_end != NULL){
1210         free(subprogram_end);
1211         subprogram_end = NULL;
1212       }
1213         
1214
1215     }else if(strcmp(node_type, "(DW_TAG_variable)") == 0){ /* New variable */
1216
1217       dw_local_variable_t var = NULL;
1218       
1219       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1220       origin = strdup(strtok(NULL, "<"));
1221       xbt_str_rtrim(origin, ">:");
1222       
1223       read = getline(&line, &n, fp);
1224       
1225       while(read != -1){
1226
1227         if(n == 0){
1228           read = getline(&line, &n, fp);
1229           continue;
1230         }
1231
1232         /* Wipeout the new line character */
1233         line[read - 1] = '\0'; 
1234
1235         if(strlen(line) == 0){
1236           read = getline(&line, &n, fp);
1237           continue;
1238         }
1239        
1240         xbt_dynar_free(&split);
1241         xbt_str_rtrim(line, NULL);
1242         xbt_str_strip_spaces(line);
1243         split = xbt_str_split(line, " ");
1244   
1245         node_type = xbt_dynar_get_as(split, 1, char *);
1246
1247         if(strncmp(node_type, "DW_AT_", 6) != 0)
1248           break;
1249
1250         if(strcmp(node_type, "DW_AT_name") == 0){
1251
1252           new_variable = 1;
1253           var = xbt_new0(s_dw_local_variable_t, 1);
1254           var->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));
1255
1256           xbt_dict_set(variables_origin, origin, var->name, NULL);
1257          
1258         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1259
1260           new_variable = 0;
1261           abstract_origin = xbt_dynar_get_as(split, 2, char *);
1262           xbt_str_ltrim(abstract_origin, "<0x");
1263           xbt_str_rtrim(abstract_origin, ">");
1264           
1265           variable_name = (char *)xbt_dict_get_or_null(variables_origin, abstract_origin);
1266           variable_frame = get_frame_by_offset(*all_variables, strtoul(abstract_origin, NULL, 16));
1267           var = xbt_dict_get_or_null(variable_frame->variables, variable_name);   
1268
1269         }else if(strcmp(node_type, "DW_AT_location") == 0){
1270
1271           if(valid_variable == 1 && var != NULL){
1272
1273             var->location = xbt_new0(s_dw_location_t, 1);
1274
1275             location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1276
1277             if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1278
1279               var->location = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1280              
1281             }else{
1282                 
1283               xbt_str_strip_spaces(line);
1284               split2 = xbt_str_split(line, "(");
1285               xbt_dynar_remove_at(split2, 0, NULL);
1286               loc_expr = xbt_str_join(split2, " ");
1287               xbt_str_rtrim(loc_expr, ")");
1288               var->location = get_location(NULL, loc_expr);
1289               xbt_dynar_free(&split2);
1290
1291             }
1292
1293           }
1294            
1295         }else if(strcmp(node_type, "DW_AT_external") == 0){
1296
1297           valid_variable = 0;
1298         
1299         }
1300
1301         read = getline(&line, &n, fp);
1302  
1303       }
1304
1305       if(new_variable == 1 && valid_variable == 1){
1306         
1307         variable_frame = xbt_dict_get_or_null(*all_variables, current_frame);
1308         xbt_dict_set(variable_frame->variables, var->name, var, NULL);
1309       }
1310
1311       valid_variable = 1;
1312       new_variable = 0;
1313
1314     }else if(strcmp(node_type, "(DW_TAG_inlined_subroutine)") == 0){
1315
1316       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1317       origin = strdup(strtok(NULL, "<"));
1318       xbt_str_rtrim(origin, ">:");
1319
1320       read = getline(&line, &n, fp);
1321
1322       while(read != -1){
1323
1324         /* Wipeout the new line character */
1325         line[read - 1] = '\0'; 
1326
1327         if(n == 0){
1328           read = getline(&line, &n, fp);
1329           continue;
1330         }
1331
1332         if(strlen(line) == 0){
1333           read = getline(&line, &n, fp);
1334           continue;
1335         }
1336
1337         xbt_dynar_free(&split);
1338         xbt_str_rtrim(line, NULL);
1339         xbt_str_strip_spaces(line);
1340         split = xbt_str_split(line, " ");
1341         
1342         if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0)
1343           break;
1344           
1345         node_type = xbt_dynar_get_as(split, 1, char *);
1346
1347         if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1348
1349           origin = xbt_dynar_get_as(split, 2, char *);
1350           xbt_str_ltrim(origin, "<0x");
1351           xbt_str_rtrim(origin, ">");
1352           
1353           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, origin);
1354           subroutine_frame = xbt_dict_get_or_null(*all_variables, subprogram_name);
1355         
1356         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1357
1358           subroutine_frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1359
1360         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1361
1362           subroutine_frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1363         }
1364
1365         read = getline(&line, &n, fp);
1366       
1367       }
1368
1369     }else{
1370
1371       read = getline(&line, &n, fp);
1372
1373     }
1374
1375   }
1376   
1377   xbt_dynar_free(&split);
1378   free(line);
1379   free(command);
1380   pclose(fp);
1381   
1382 }
1383
1384 static dw_location_t get_location(xbt_dict_t location_list, char *expr){
1385
1386   dw_location_t loc = xbt_new0(s_dw_location_t, 1);
1387
1388   if(location_list != NULL){
1389     
1390     char *key = bprintf("%d", (int)strtoul(expr, NULL, 16));
1391     loc->type = e_dw_loclist;
1392     loc->location.loclist =  (xbt_dynar_t)xbt_dict_get_or_null(location_list, key);
1393     if(loc == NULL)
1394       XBT_INFO("Key not found in loclist");
1395     return loc;
1396
1397   }else{
1398
1399     int cursor = 0;
1400     char *tok = NULL, *tok2 = NULL; 
1401     
1402     xbt_dynar_t tokens1 = xbt_str_split(expr, ";");
1403     xbt_dynar_t tokens2;
1404
1405     loc->type = e_dw_compose;
1406     loc->location.compose = xbt_dynar_new(sizeof(dw_location_t), NULL);
1407
1408     while(cursor < xbt_dynar_length(tokens1)){
1409
1410       tok = xbt_dynar_get_as(tokens1, cursor, char*);
1411       tokens2 = xbt_str_split(tok, " ");
1412       tok2 = xbt_dynar_get_as(tokens2, 0, char*);
1413       
1414       if(strncmp(tok2, "DW_OP_reg", 9) == 0){
1415         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1416         new_element->type = e_dw_register;
1417         new_element->location.reg = atoi(strtok(tok2, "DW_OP_reg"));
1418         xbt_dynar_push(loc->location.compose, &new_element);     
1419       }else if(strcmp(tok2, "DW_OP_fbreg:") == 0){
1420         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1421         new_element->type = e_dw_fbregister_op;
1422         new_element->location.fbreg_op = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1423         xbt_dynar_push(loc->location.compose, &new_element);
1424       }else if(strncmp(tok2, "DW_OP_breg", 10) == 0){
1425         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1426         new_element->type = e_dw_bregister_op;
1427         new_element->location.breg_op.reg = atoi(strtok(tok2, "DW_OP_breg"));
1428         new_element->location.breg_op.offset = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1429         xbt_dynar_push(loc->location.compose, &new_element);
1430       }else if(strncmp(tok2, "DW_OP_lit", 9) == 0){
1431         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1432         new_element->type = e_dw_lit;
1433         new_element->location.lit = atoi(strtok(tok2, "DW_OP_lit"));
1434         xbt_dynar_push(loc->location.compose, &new_element);
1435       }else if(strcmp(tok2, "DW_OP_piece:") == 0){
1436         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1437         new_element->type = e_dw_piece;
1438         new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1439         /*if(strlen(xbt_dynar_get_as(tokens2, 1, char*)) > 1)
1440           new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1441         else
1442         new_element->location.piece = xbt_dynar_get_as(tokens2, 1, char*)[0] - '0';*/
1443         xbt_dynar_push(loc->location.compose, &new_element);
1444       }else if(strcmp(tok2, "DW_OP_plus_uconst:") == 0){
1445         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1446         new_element->type = e_dw_plus_uconst;
1447         new_element->location.plus_uconst = atoi(xbt_dynar_get_as(tokens2, 1, char *));
1448         xbt_dynar_push(loc->location.compose, &new_element);
1449       }else if(strcmp(tok, "DW_OP_abs") == 0 || 
1450                strcmp(tok, "DW_OP_and") == 0 ||
1451                strcmp(tok, "DW_OP_div") == 0 ||
1452                strcmp(tok, "DW_OP_minus") == 0 ||
1453                strcmp(tok, "DW_OP_mod") == 0 ||
1454                strcmp(tok, "DW_OP_mul") == 0 ||
1455                strcmp(tok, "DW_OP_neg") == 0 ||
1456                strcmp(tok, "DW_OP_not") == 0 ||
1457                strcmp(tok, "DW_OP_or") == 0 ||
1458                strcmp(tok, "DW_OP_plus") == 0){               
1459         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1460         new_element->type = e_dw_arithmetic;
1461         new_element->location.arithmetic = strdup(strtok(tok2, "DW_OP_"));
1462         xbt_dynar_push(loc->location.compose, &new_element);
1463       }else if(strcmp(tok, "DW_OP_stack_value") == 0){
1464       }else if(strcmp(tok2, "DW_OP_deref_size:") == 0){
1465         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1466         new_element->type = e_dw_deref;
1467         new_element->location.deref_size = (unsigned int short) atoi(xbt_dynar_get_as(tokens2, 1, char*));
1468         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1469           new_element->location.deref_size = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1470         else
1471         new_element->location.deref_size = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1472         xbt_dynar_push(loc->location.compose, &new_element);
1473       }else if(strcmp(tok, "DW_OP_deref") == 0){
1474         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1475         new_element->type = e_dw_deref;
1476         new_element->location.deref_size = sizeof(void *);
1477         xbt_dynar_push(loc->location.compose, &new_element);
1478       }else if(strcmp(tok2, "DW_OP_constu:") == 0){
1479         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1480         new_element->type = e_dw_uconstant;
1481         new_element->location.uconstant.bytes = 1;
1482         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1483         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1484           new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens, cursor, char*)));
1485         else
1486         new_element->location.uconstant.value = (unsigned long int)(xbt_dynar_get_as(tokens, cursor, char*)[0] - '0');*/
1487         xbt_dynar_push(loc->location.compose, &new_element);
1488       }else if(strcmp(tok2, "DW_OP_consts:") == 0){
1489         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1490         new_element->type = e_dw_sconstant;
1491         new_element->location.sconstant.bytes = 1;
1492         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1493         xbt_dynar_push(loc->location.compose, &new_element);
1494       }else if(strcmp(tok2, "DW_OP_const1u:") == 0 ||
1495                strcmp(tok2, "DW_OP_const2u:") == 0 ||
1496                strcmp(tok2, "DW_OP_const4u:") == 0 ||
1497                strcmp(tok2, "DW_OP_const8u:") == 0){
1498         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1499         new_element->type = e_dw_uconstant;
1500         new_element->location.uconstant.bytes = tok2[11] - '0';
1501         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1502         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1503           new_element->location.constant.value = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1504         else
1505         new_element->location.constant.value = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1506         xbt_dynar_push(loc->location.compose, &new_element);
1507       }else if(strcmp(tok, "DW_OP_const1s") == 0 ||
1508                strcmp(tok, "DW_OP_const2s") == 0 ||
1509                strcmp(tok, "DW_OP_const4s") == 0 ||
1510                strcmp(tok, "DW_OP_const8s") == 0){
1511         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1512         new_element->type = e_dw_sconstant;
1513         new_element->location.sconstant.bytes = tok2[11] - '0';
1514         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1515         xbt_dynar_push(loc->location.compose, &new_element);
1516       }else{
1517         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1518         new_element->type = e_dw_unsupported;
1519         xbt_dynar_push(loc->location.compose, &new_element);
1520       }
1521
1522       cursor++;
1523       xbt_dynar_free(&tokens2);
1524
1525     }
1526     
1527     xbt_dynar_free(&tokens1);
1528
1529     return loc;
1530     
1531   }
1532
1533 }
1534
1535
1536 void print_local_variables(xbt_dict_t list){
1537   
1538   dw_location_entry_t entry;
1539   dw_location_t location_entry;
1540   unsigned int cursor3 = 0, cursor4 = 0;
1541   xbt_dict_cursor_t cursor = 0, cursor2 = 0;
1542
1543   char *frame_name, *variable_name;
1544   dw_frame_t current_frame;
1545   dw_local_variable_t current_variable;
1546
1547   xbt_dict_foreach(list, cursor, frame_name, current_frame){ 
1548     fprintf(stderr, "Frame name : %s\n", current_frame->name);
1549     fprintf(stderr, "Location type : %d\n", current_frame->frame_base->type);
1550     xbt_dict_foreach((xbt_dict_t)current_frame->variables, cursor2, variable_name, current_variable){
1551       fprintf(stderr, "Name : %s\n", current_variable->name);
1552       if(current_variable->location == NULL)
1553         continue;
1554       fprintf(stderr, "Location type : %d\n", current_variable->location->type);
1555       switch(current_variable->location->type){
1556       case e_dw_loclist :
1557         xbt_dynar_foreach(current_variable->location->location.loclist, cursor3, entry){
1558           fprintf(stderr, "Lowpc : %lx, Highpc : %lx,", entry->lowpc, entry->highpc);
1559           switch(entry->location->type){
1560           case e_dw_register :
1561             fprintf(stderr, " Location : in register %d\n", entry->location->location.reg);
1562             break;
1563           case e_dw_bregister_op:
1564             fprintf(stderr, " Location : Add %d to the value in register %d\n", entry->location->location.breg_op.offset, entry->location->location.breg_op.reg);
1565             break;
1566           case e_dw_lit:
1567             fprintf(stderr, "Value already kwnown : %d\n", entry->location->location.lit);
1568             break;
1569           case e_dw_fbregister_op:
1570             fprintf(stderr, " Location : %d bytes from logical frame pointer\n", entry->location->location.fbreg_op);
1571             break;
1572           case e_dw_compose:
1573             fprintf(stderr, " Location :\n");
1574             xbt_dynar_foreach(entry->location->location.compose, cursor4, location_entry){
1575               switch(location_entry->type){
1576               case e_dw_register :
1577                 fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1578                 break;
1579               case e_dw_bregister_op:
1580                 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);
1581                 break;
1582               case e_dw_lit:
1583                 fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1584                 break;
1585               case e_dw_fbregister_op:
1586                 fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1587                 break;
1588               case e_dw_deref:
1589                 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);
1590                 break;
1591               case e_dw_arithmetic :
1592                 fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1593                 break;
1594               case e_dw_piece:
1595                 fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1596                 break;
1597               case e_dw_uconstant :
1598                 fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1599                 break;
1600               case e_dw_sconstant :
1601                 fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1602                 break;
1603               default :
1604                 fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1605                 break;
1606               }
1607             }
1608             break;
1609           default:
1610             fprintf(stderr, "Location type not supported\n");
1611             break;
1612           }
1613         }
1614         break;
1615       case e_dw_compose:
1616         cursor4 = 0;
1617         fprintf(stderr, "Location :\n");
1618         xbt_dynar_foreach(current_variable->location->location.compose, cursor4, location_entry){
1619           switch(location_entry->type){
1620           case e_dw_register :
1621             fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1622             break;
1623           case e_dw_bregister_op:
1624             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);
1625             break;
1626           case e_dw_lit:
1627             fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1628             break;
1629           case e_dw_fbregister_op:
1630             fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1631             break;
1632           case e_dw_deref:
1633             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);
1634             break;
1635           case e_dw_arithmetic :
1636             fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1637             break;
1638           case e_dw_piece:
1639             fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1640             break;
1641           case e_dw_uconstant :
1642             fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1643             break;
1644           case e_dw_sconstant :
1645             fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1646             break;
1647           default :
1648             fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1649             break;
1650           }
1651         }
1652         break;
1653       default :
1654         fprintf(stderr, "Location type not supported\n");
1655         break;
1656       }
1657     }
1658   }
1659
1660 }