Logo AND Algorithmique Numérique Distribuée

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