Logo AND Algorithmique Numérique Distribuée

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