Logo AND Algorithmique Numérique Distribuée

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