Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add dsend_bounded send_with_timeout_bounded
[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 void MC_remove_ignore_heap(void *address, size_t size){
798
799   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
800
801   MC_SET_RAW_MEM;
802   
803   unsigned int cursor = 0;
804   int start = 0;
805   int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1;
806   mc_heap_ignore_region_t region;
807   int ignore_found = 0;
808
809   while(start <= end){
810     cursor = (start + end) / 2;
811     region = (mc_heap_ignore_region_t)xbt_dynar_get_as(mc_heap_comparison_ignore, cursor, mc_heap_ignore_region_t);
812     if(region->address == address){
813       ignore_found = 1;
814       break;
815     }
816     if(region->address < address)
817       start = cursor + 1;
818     if(region->address > address){
819       if((char * )region->address <= ((char *)address + size)){
820         ignore_found = 1;
821         break;
822       }else
823         end = cursor - 1;   
824     }
825   }
826   
827   if(ignore_found == 1){
828     xbt_dynar_remove_at(mc_heap_comparison_ignore, cursor, NULL);
829     MC_remove_ignore_heap(address, size);
830   }
831
832   MC_UNSET_RAW_MEM;
833   
834   if(raw_mem_set)
835     MC_SET_RAW_MEM;
836
837 }
838
839 void MC_ignore_data_bss(void *address, size_t size){
840
841   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
842
843   MC_SET_RAW_MEM;
844   
845   if(mc_data_bss_comparison_ignore == NULL)
846     mc_data_bss_comparison_ignore = xbt_dynar_new(sizeof(mc_data_bss_ignore_variable_t), NULL);
847
848   if(xbt_dynar_is_empty(mc_data_bss_comparison_ignore)){
849
850     mc_data_bss_ignore_variable_t var = NULL;
851     var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1);
852     var->address = address;
853     var->size = size;
854
855     xbt_dynar_insert_at(mc_data_bss_comparison_ignore, 0, &var);
856
857   }else{
858     
859     unsigned int cursor = 0;
860     int start = 0;
861     int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1;
862     mc_data_bss_ignore_variable_t current_var = NULL;
863
864     while(start <= end){
865       cursor = (start + end) / 2;
866       current_var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t);
867       if(current_var->address == address){
868         MC_UNSET_RAW_MEM;
869         if(raw_mem_set)
870           MC_SET_RAW_MEM;
871         return;
872       }
873       if(current_var->address < address)
874         start = cursor + 1;
875       if(current_var->address > address)
876         end = cursor - 1;
877     }
878  
879     mc_data_bss_ignore_variable_t var = NULL;
880     var = xbt_new0(s_mc_data_bss_ignore_variable_t, 1);
881     var->address = address;
882     var->size = size;
883
884     if(current_var->address < address)
885       xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor + 1, &var);
886     else
887       xbt_dynar_insert_at(mc_data_bss_comparison_ignore, cursor, &var);
888
889   }
890
891   MC_UNSET_RAW_MEM;
892
893   if(raw_mem_set)
894     MC_SET_RAW_MEM;
895 }
896
897 static size_t data_bss_ignore_size(void *address){
898   unsigned int cursor = 0;
899   int start = 0;
900   int end = xbt_dynar_length(mc_data_bss_comparison_ignore) - 1;
901   mc_data_bss_ignore_variable_t var;
902
903   while(start <= end){
904     cursor = (start + end) / 2;
905     var = (mc_data_bss_ignore_variable_t)xbt_dynar_get_as(mc_data_bss_comparison_ignore, cursor, mc_data_bss_ignore_variable_t);
906     if(var->address == address)
907       return var->size;
908     if(var->address < address){
909       if((void *)((char *)var->address + var->size) > address)
910         return (char *)var->address + var->size - (char*)address;
911       else
912         start = cursor + 1;
913     }
914     if(var->address > address)
915       end = cursor - 1;   
916   }
917
918   return 0;
919 }
920
921
922
923 void MC_ignore_stack(const char *var_name, const char *frame){
924   
925   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
926
927   MC_SET_RAW_MEM;
928
929   if(mc_stack_comparison_ignore == NULL)
930     mc_stack_comparison_ignore = xbt_dynar_new(sizeof(mc_stack_ignore_variable_t), NULL);
931
932   if(xbt_dynar_is_empty(mc_stack_comparison_ignore)){
933
934     mc_stack_ignore_variable_t var = NULL;
935     var = xbt_new0(s_mc_stack_ignore_variable_t, 1);
936     var->var_name = strdup(var_name);
937     var->frame = strdup(frame);
938
939     xbt_dynar_insert_at(mc_stack_comparison_ignore, 0, &var);
940
941   }else{
942     
943     unsigned int cursor = 0;
944     int start = 0;
945     int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1;
946     mc_stack_ignore_variable_t current_var = NULL;
947
948     while(start <= end){
949       cursor = (start + end) / 2;
950       current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t);
951       if(strcmp(current_var->frame, frame) == 0){
952         if(strcmp(current_var->var_name, var_name) == 0){
953           MC_UNSET_RAW_MEM;
954           if(raw_mem_set)
955             MC_SET_RAW_MEM;
956           return;
957         }
958         if(strcmp(current_var->var_name, var_name) < 0)
959           start = cursor + 1;
960         if(strcmp(current_var->var_name, var_name) > 0)
961           end = cursor - 1;
962       }
963       if(strcmp(current_var->frame, frame) < 0)
964         start = cursor + 1;
965       if(strcmp(current_var->frame, frame) > 0)
966         end = cursor - 1;
967     }
968
969     mc_stack_ignore_variable_t var = NULL;
970     var = xbt_new0(s_mc_stack_ignore_variable_t, 1);
971     var->var_name = strdup(var_name);
972     var->frame = strdup(frame);
973
974     if(strcmp(current_var->frame, frame) < 0)
975       xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor + 1, &var);
976     else
977       xbt_dynar_insert_at(mc_stack_comparison_ignore, cursor, &var);
978
979   }
980
981   MC_UNSET_RAW_MEM;
982   
983   if(raw_mem_set)
984     MC_SET_RAW_MEM;
985
986 }
987
988 void MC_new_stack_area(void *stack, char *name, void* context, size_t size){
989
990   int raw_mem_set = (mmalloc_get_current_heap() == raw_heap);
991
992   MC_SET_RAW_MEM;
993   if(stacks_areas == NULL)
994     stacks_areas = xbt_dynar_new(sizeof(stack_region_t), NULL);
995   
996   stack_region_t region = NULL;
997   region = xbt_new0(s_stack_region_t, 1);
998   region->address = stack;
999   region->process_name = strdup(name);
1000   region->context = context;
1001   region->size = size;
1002   xbt_dynar_push(stacks_areas, &region);
1003   
1004   MC_UNSET_RAW_MEM;
1005
1006   if(raw_mem_set)
1007     MC_SET_RAW_MEM;
1008 }
1009
1010 /************ DWARF ***********/
1011
1012 xbt_dict_t MC_get_location_list(const char *elf_file){
1013
1014   char *command = bprintf("objdump -Wo %s", elf_file);
1015
1016   FILE *fp = popen(command, "r");
1017
1018   if(fp == NULL){
1019     perror("popen for objdump failed");
1020     xbt_abort();
1021   }
1022
1023   int debug = 0; /*Detect if the program has been compiled with -g */
1024
1025   xbt_dict_t location_list = xbt_dict_new_homogeneous(NULL);
1026   char *line = NULL, *loc_expr = NULL;
1027   ssize_t read;
1028   size_t n = 0;
1029   int cursor_remove;
1030   xbt_dynar_t split = NULL;
1031
1032   while ((read = getline(&line, &n, fp)) != -1) {
1033
1034     /* Wipeout the new line character */
1035     line[read - 1] = '\0';
1036
1037     xbt_str_trim(line, NULL);
1038     
1039     if(n == 0)
1040       continue;
1041
1042     if(strlen(line) == 0)
1043       continue;
1044
1045     if(debug == 0){
1046
1047       if(strncmp(line, elf_file, strlen(elf_file)) == 0)
1048         continue;
1049       
1050       if(strncmp(line, "Contents", 8) == 0)
1051         continue;
1052
1053       if(strncmp(line, "Offset", 6) == 0){
1054         debug = 1;
1055         continue;
1056       }
1057     }
1058
1059     if(debug == 0){
1060       XBT_INFO("Your program must be compiled with -g");
1061       xbt_abort();
1062     }
1063
1064     xbt_dynar_t loclist = xbt_dynar_new(sizeof(dw_location_entry_t), NULL);
1065
1066     xbt_str_strip_spaces(line);
1067     split = xbt_str_split(line, " ");
1068
1069     while(read != -1 && strcmp("<End", (char *)xbt_dynar_get_as(split, 1, char *)) != 0){
1070       
1071       dw_location_entry_t new_entry = xbt_new0(s_dw_location_entry_t, 1);
1072       new_entry->lowpc = strtoul((char *)xbt_dynar_get_as(split, 1, char *), NULL, 16);
1073       new_entry->highpc = strtoul((char *)xbt_dynar_get_as(split, 2, char *), NULL, 16);
1074       
1075       cursor_remove =0;
1076       while(cursor_remove < 3){
1077         xbt_dynar_remove_at(split, 0, NULL);
1078         cursor_remove++;
1079       }
1080
1081       loc_expr = xbt_str_join(split, " ");
1082       xbt_str_ltrim(loc_expr, "(");
1083       xbt_str_rtrim(loc_expr, ")");
1084       new_entry->location = get_location(NULL, loc_expr);
1085
1086       xbt_dynar_push(loclist, &new_entry);
1087
1088       xbt_dynar_free(&split);
1089       free(loc_expr);
1090
1091       read = getline(&line, &n, fp);
1092       if(read != -1){
1093         line[read - 1] = '\0';
1094         xbt_str_strip_spaces(line);
1095         split = xbt_str_split(line, " ");
1096       }
1097
1098     }
1099
1100
1101     char *key = bprintf("%d", (int)strtoul((char *)xbt_dynar_get_as(split, 0, char *), NULL, 16));
1102     xbt_dict_set(location_list, key, loclist, NULL);
1103     xbt_free(key);
1104     
1105     xbt_dynar_free(&split);
1106
1107   }
1108
1109   xbt_free(line);
1110   xbt_free(command);
1111   pclose(fp);
1112
1113   return location_list;
1114 }
1115
1116 static dw_frame_t get_frame_by_offset(xbt_dict_t all_variables, unsigned long int offset){
1117
1118   xbt_dict_cursor_t cursor = NULL;
1119   char *name;
1120   dw_frame_t res;
1121
1122   xbt_dict_foreach(all_variables, cursor, name, res) {
1123     if(offset >= res->start && offset < res->end){
1124       xbt_dict_cursor_free(&cursor);
1125       return res;
1126     }
1127   }
1128
1129   xbt_dict_cursor_free(&cursor);
1130   return NULL;
1131   
1132 }
1133
1134 void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *all_variables){
1135
1136   char *command = bprintf("objdump -Wi %s", elf_file);
1137   
1138   FILE *fp = popen(command, "r");
1139
1140   if(fp == NULL)
1141     perror("popen for objdump failed");
1142
1143   char *line = NULL, *origin, *abstract_origin, *current_frame = NULL;
1144   ssize_t read =0;
1145   size_t n = 0;
1146   int valid_variable = 1;
1147   char *node_type = NULL, *location_type = NULL, *variable_name = NULL, *loc_expr = NULL;
1148   xbt_dynar_t split = NULL, split2 = NULL;
1149
1150   xbt_dict_t variables_origin = xbt_dict_new_homogeneous(NULL);
1151   xbt_dict_t subprograms_origin = xbt_dict_new_homogeneous(NULL);
1152   char *subprogram_name = NULL, *subprogram_start = NULL, *subprogram_end = NULL;
1153   int new_frame = 0, new_variable = 0;
1154   dw_frame_t variable_frame, subroutine_frame = NULL;
1155
1156   read = getline(&line, &n, fp);
1157
1158   while (read != -1) {
1159
1160     if(n == 0){
1161       read = getline(&line, &n, fp);
1162       continue;
1163     }
1164  
1165     /* Wipeout the new line character */
1166     line[read - 1] = '\0';
1167    
1168     if(strlen(line) == 0){
1169       read = getline(&line, &n, fp);
1170       continue;
1171     }
1172
1173     xbt_str_ltrim(line, NULL);
1174     xbt_str_strip_spaces(line);
1175     
1176     if(line[0] != '<'){
1177       read = getline(&line, &n, fp);
1178       continue;
1179     }
1180     
1181     xbt_dynar_free(&split);
1182     split = xbt_str_split(line, " ");
1183
1184     /* Get node type */
1185     node_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1186
1187     if(strcmp(node_type, "(DW_TAG_subprogram)") == 0){ /* New frame */
1188
1189       dw_frame_t frame = NULL;
1190
1191       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1192       subprogram_start = strdup(strtok(NULL, "<"));
1193       xbt_str_rtrim(subprogram_start, ">:");
1194
1195       read = getline(&line, &n, fp);
1196    
1197       while(read != -1){
1198
1199         if(n == 0){
1200           read = getline(&line, &n, fp);
1201           continue;
1202         }
1203
1204         /* Wipeout the new line character */
1205         line[read - 1] = '\0';
1206         
1207         if(strlen(line) == 0){
1208           read = getline(&line, &n, fp);
1209           continue;
1210         }
1211       
1212         xbt_dynar_free(&split);
1213         xbt_str_rtrim(line, NULL);
1214         xbt_str_strip_spaces(line);
1215         split = xbt_str_split(line, " ");
1216           
1217         node_type = xbt_dynar_get_as(split, 1, char *);
1218
1219         if(strncmp(node_type, "DW_AT_", 6) != 0)
1220           break;
1221
1222         if(strcmp(node_type, "DW_AT_sibling") == 0){
1223
1224           subprogram_end = strdup(xbt_dynar_get_as(split, 3, char*));
1225           xbt_str_ltrim(subprogram_end, "<0x");
1226           xbt_str_rtrim(subprogram_end, ">");
1227           
1228         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){ /* Frame already in dict */
1229           
1230           new_frame = 0;
1231           abstract_origin = strdup(xbt_dynar_get_as(split, 2, char*));
1232           xbt_str_ltrim(abstract_origin, "<0x");
1233           xbt_str_rtrim(abstract_origin, ">");
1234           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, abstract_origin);
1235           frame = xbt_dict_get_or_null(*all_variables, subprogram_name); 
1236           xbt_free(abstract_origin);
1237
1238         }else if(strcmp(node_type, "DW_AT_name") == 0){
1239
1240           new_frame = 1;
1241           xbt_free(current_frame);
1242           frame = xbt_new0(s_dw_frame_t, 1);
1243           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *)); 
1244           frame->variables = xbt_dict_new_homogeneous(NULL);
1245           frame->frame_base = xbt_new0(s_dw_location_t, 1); 
1246           current_frame = strdup(frame->name);
1247
1248           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1249         
1250         }else if(strcmp(node_type, "DW_AT_frame_base") == 0){
1251
1252           location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1253
1254           if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1255
1256             frame->frame_base = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1257              
1258           }else{
1259                 
1260             xbt_str_strip_spaces(line);
1261             split2 = xbt_str_split(line, "(");
1262             xbt_dynar_remove_at(split2, 0, NULL);
1263             loc_expr = xbt_str_join(split2, " ");
1264             xbt_str_rtrim(loc_expr, ")");
1265             frame->frame_base = get_location(NULL, loc_expr);
1266             xbt_dynar_free(&split2);
1267             xbt_free(loc_expr);
1268
1269           }
1270  
1271         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1272           
1273           if(frame != NULL)
1274             frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1275
1276         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1277
1278           if(frame != NULL)
1279             frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1280
1281         }else if(strcmp(node_type, "DW_AT_MIPS_linkage_name:") == 0){
1282
1283           xbt_free(frame->name);
1284           xbt_free(current_frame);
1285           frame->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));   
1286           current_frame = strdup(frame->name);
1287           xbt_dict_set(subprograms_origin, subprogram_start, frame->name, NULL);
1288
1289         }
1290
1291         read = getline(&line, &n, fp);
1292
1293       }
1294  
1295       if(new_frame == 1){
1296         frame->start = strtoul(subprogram_start, NULL, 16);
1297         if(subprogram_end != NULL)
1298           frame->end = strtoul(subprogram_end, NULL, 16);
1299         xbt_dict_set(*all_variables, frame->name, frame, NULL);
1300       }
1301
1302       xbt_free(subprogram_start);
1303       if(subprogram_end != NULL){
1304         xbt_free(subprogram_end);
1305         subprogram_end = NULL;
1306       }
1307         
1308
1309     }else if(strcmp(node_type, "(DW_TAG_variable)") == 0){ /* New variable */
1310
1311       dw_local_variable_t var = NULL;
1312       
1313       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1314       origin = strdup(strtok(NULL, "<"));
1315       xbt_str_rtrim(origin, ">:");
1316       
1317       read = getline(&line, &n, fp);
1318       
1319       while(read != -1){
1320
1321         if(n == 0){
1322           read = getline(&line, &n, fp);
1323           continue;
1324         }
1325
1326         /* Wipeout the new line character */
1327         line[read - 1] = '\0'; 
1328
1329         if(strlen(line) == 0){
1330           read = getline(&line, &n, fp);
1331           continue;
1332         }
1333        
1334         xbt_dynar_free(&split);
1335         xbt_str_rtrim(line, NULL);
1336         xbt_str_strip_spaces(line);
1337         split = xbt_str_split(line, " ");
1338   
1339         node_type = xbt_dynar_get_as(split, 1, char *);
1340
1341         if(strncmp(node_type, "DW_AT_", 6) != 0)
1342           break;
1343
1344         if(strcmp(node_type, "DW_AT_name") == 0){
1345
1346           new_variable = 1;
1347           var = xbt_new0(s_dw_local_variable_t, 1);
1348           var->name = strdup(xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *));
1349
1350           xbt_dict_set(variables_origin, origin, var->name, NULL);
1351          
1352         }else if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1353
1354           new_variable = 0;
1355           abstract_origin = xbt_dynar_get_as(split, 2, char *);
1356           xbt_str_ltrim(abstract_origin, "<0x");
1357           xbt_str_rtrim(abstract_origin, ">");
1358           
1359           variable_name = (char *)xbt_dict_get_or_null(variables_origin, abstract_origin);
1360           variable_frame = get_frame_by_offset(*all_variables, strtoul(abstract_origin, NULL, 16));
1361           var = xbt_dict_get_or_null(variable_frame->variables, variable_name);   
1362
1363         }else if(strcmp(node_type, "DW_AT_location") == 0){
1364
1365           if(valid_variable == 1 && var != NULL){
1366
1367             var->location = xbt_new0(s_dw_location_t, 1);
1368
1369             location_type = xbt_dynar_get_as(split, xbt_dynar_length(split) - 1, char *);
1370
1371             if(strcmp(location_type, "list)") == 0){ /* Search location in location list */
1372
1373               var->location = get_location(location_list, xbt_dynar_get_as(split, 3, char *));
1374              
1375             }else{
1376                 
1377               xbt_str_strip_spaces(line);
1378               split2 = xbt_str_split(line, "(");
1379               xbt_dynar_remove_at(split2, 0, NULL);
1380               loc_expr = xbt_str_join(split2, " ");
1381               xbt_str_rtrim(loc_expr, ")");
1382               var->location = get_location(NULL, loc_expr);
1383               xbt_dynar_free(&split2);
1384               xbt_free(loc_expr);
1385
1386             }
1387
1388           }
1389            
1390         }else if(strcmp(node_type, "DW_AT_external") == 0){
1391
1392           valid_variable = 0;
1393         
1394         }
1395
1396         read = getline(&line, &n, fp);
1397  
1398       }
1399
1400       if(new_variable == 1 && valid_variable == 1){
1401         
1402         variable_frame = xbt_dict_get_or_null(*all_variables, current_frame);
1403         xbt_dict_set(variable_frame->variables, var->name, var, NULL);
1404       }
1405
1406       valid_variable = 1;
1407       new_variable = 0;
1408
1409     }else if(strcmp(node_type, "(DW_TAG_inlined_subroutine)") == 0){
1410
1411       strtok(xbt_dynar_get_as(split, 0, char *), "<");
1412       origin = strdup(strtok(NULL, "<"));
1413       xbt_str_rtrim(origin, ">:");
1414
1415       read = getline(&line, &n, fp);
1416
1417       while(read != -1){
1418
1419         /* Wipeout the new line character */
1420         line[read - 1] = '\0'; 
1421
1422         if(n == 0){
1423           read = getline(&line, &n, fp);
1424           continue;
1425         }
1426
1427         if(strlen(line) == 0){
1428           read = getline(&line, &n, fp);
1429           continue;
1430         }
1431
1432         xbt_dynar_free(&split);
1433         xbt_str_rtrim(line, NULL);
1434         xbt_str_strip_spaces(line);
1435         split = xbt_str_split(line, " ");
1436         
1437         if(strncmp(xbt_dynar_get_as(split, 1, char *), "DW_AT_", 6) != 0)
1438           break;
1439           
1440         node_type = xbt_dynar_get_as(split, 1, char *);
1441
1442         if(strcmp(node_type, "DW_AT_abstract_origin:") == 0){
1443
1444           origin = xbt_dynar_get_as(split, 2, char *);
1445           xbt_str_ltrim(origin, "<0x");
1446           xbt_str_rtrim(origin, ">");
1447           
1448           subprogram_name = (char *)xbt_dict_get_or_null(subprograms_origin, origin);
1449           subroutine_frame = xbt_dict_get_or_null(*all_variables, subprogram_name);
1450         
1451         }else if(strcmp(node_type, "DW_AT_low_pc") == 0){
1452
1453           subroutine_frame->low_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1454
1455         }else if(strcmp(node_type, "DW_AT_high_pc") == 0){
1456
1457           subroutine_frame->high_pc = (void *)strtoul(xbt_dynar_get_as(split, 3, char *), NULL, 16);
1458         }
1459
1460         read = getline(&line, &n, fp);
1461       
1462       }
1463
1464     }else{
1465
1466       read = getline(&line, &n, fp);
1467
1468     }
1469
1470   }
1471   
1472   xbt_dynar_free(&split);
1473   xbt_free(line);
1474   xbt_free(command);
1475   pclose(fp);
1476   
1477 }
1478
1479 static dw_location_t get_location(xbt_dict_t location_list, char *expr){
1480
1481   dw_location_t loc = xbt_new0(s_dw_location_t, 1);
1482
1483   if(location_list != NULL){
1484     
1485     char *key = bprintf("%d", (int)strtoul(expr, NULL, 16));
1486     loc->type = e_dw_loclist;
1487     loc->location.loclist =  (xbt_dynar_t)xbt_dict_get_or_null(location_list, key);
1488     if(loc->location.loclist == NULL)
1489       XBT_INFO("Key not found in loclist");
1490     xbt_free(key);
1491     return loc;
1492
1493   }else{
1494
1495     int cursor = 0;
1496     char *tok = NULL, *tok2 = NULL; 
1497     
1498     xbt_dynar_t tokens1 = xbt_str_split(expr, ";");
1499     xbt_dynar_t tokens2;
1500
1501     loc->type = e_dw_compose;
1502     loc->location.compose = xbt_dynar_new(sizeof(dw_location_t), NULL);
1503
1504     while(cursor < xbt_dynar_length(tokens1)){
1505
1506       tok = xbt_dynar_get_as(tokens1, cursor, char*);
1507       tokens2 = xbt_str_split(tok, " ");
1508       tok2 = xbt_dynar_get_as(tokens2, 0, char*);
1509       
1510       if(strncmp(tok2, "DW_OP_reg", 9) == 0){
1511         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1512         new_element->type = e_dw_register;
1513         new_element->location.reg = atoi(strtok(tok2, "DW_OP_reg"));
1514         xbt_dynar_push(loc->location.compose, &new_element);     
1515       }else if(strcmp(tok2, "DW_OP_fbreg:") == 0){
1516         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1517         new_element->type = e_dw_fbregister_op;
1518         new_element->location.fbreg_op = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1519         xbt_dynar_push(loc->location.compose, &new_element);
1520       }else if(strncmp(tok2, "DW_OP_breg", 10) == 0){
1521         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1522         new_element->type = e_dw_bregister_op;
1523         new_element->location.breg_op.reg = atoi(strtok(tok2, "DW_OP_breg"));
1524         new_element->location.breg_op.offset = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1525         xbt_dynar_push(loc->location.compose, &new_element);
1526       }else if(strncmp(tok2, "DW_OP_lit", 9) == 0){
1527         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1528         new_element->type = e_dw_lit;
1529         new_element->location.lit = atoi(strtok(tok2, "DW_OP_lit"));
1530         xbt_dynar_push(loc->location.compose, &new_element);
1531       }else if(strcmp(tok2, "DW_OP_piece:") == 0){
1532         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1533         new_element->type = e_dw_piece;
1534         new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1535         /*if(strlen(xbt_dynar_get_as(tokens2, 1, char*)) > 1)
1536           new_element->location.piece = atoi(xbt_dynar_get_as(tokens2, 1, char*));
1537         else
1538         new_element->location.piece = xbt_dynar_get_as(tokens2, 1, char*)[0] - '0';*/
1539         xbt_dynar_push(loc->location.compose, &new_element);
1540       }else if(strcmp(tok2, "DW_OP_plus_uconst:") == 0){
1541         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1542         new_element->type = e_dw_plus_uconst;
1543         new_element->location.plus_uconst = atoi(xbt_dynar_get_as(tokens2, 1, char *));
1544         xbt_dynar_push(loc->location.compose, &new_element);
1545       }else if(strcmp(tok, "DW_OP_abs") == 0 || 
1546                strcmp(tok, "DW_OP_and") == 0 ||
1547                strcmp(tok, "DW_OP_div") == 0 ||
1548                strcmp(tok, "DW_OP_minus") == 0 ||
1549                strcmp(tok, "DW_OP_mod") == 0 ||
1550                strcmp(tok, "DW_OP_mul") == 0 ||
1551                strcmp(tok, "DW_OP_neg") == 0 ||
1552                strcmp(tok, "DW_OP_not") == 0 ||
1553                strcmp(tok, "DW_OP_or") == 0 ||
1554                strcmp(tok, "DW_OP_plus") == 0){               
1555         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1556         new_element->type = e_dw_arithmetic;
1557         new_element->location.arithmetic = strdup(strtok(tok2, "DW_OP_"));
1558         xbt_dynar_push(loc->location.compose, &new_element);
1559       }else if(strcmp(tok, "DW_OP_stack_value") == 0){
1560       }else if(strcmp(tok2, "DW_OP_deref_size:") == 0){
1561         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1562         new_element->type = e_dw_deref;
1563         new_element->location.deref_size = (unsigned int short) atoi(xbt_dynar_get_as(tokens2, 1, char*));
1564         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1565           new_element->location.deref_size = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1566         else
1567         new_element->location.deref_size = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1568         xbt_dynar_push(loc->location.compose, &new_element);
1569       }else if(strcmp(tok, "DW_OP_deref") == 0){
1570         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1571         new_element->type = e_dw_deref;
1572         new_element->location.deref_size = sizeof(void *);
1573         xbt_dynar_push(loc->location.compose, &new_element);
1574       }else if(strcmp(tok2, "DW_OP_constu:") == 0){
1575         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1576         new_element->type = e_dw_uconstant;
1577         new_element->location.uconstant.bytes = 1;
1578         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1579         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1580           new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens, cursor, char*)));
1581         else
1582         new_element->location.uconstant.value = (unsigned long int)(xbt_dynar_get_as(tokens, cursor, char*)[0] - '0');*/
1583         xbt_dynar_push(loc->location.compose, &new_element);
1584       }else if(strcmp(tok2, "DW_OP_consts:") == 0){
1585         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1586         new_element->type = e_dw_sconstant;
1587         new_element->location.sconstant.bytes = 1;
1588         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1589         xbt_dynar_push(loc->location.compose, &new_element);
1590       }else if(strcmp(tok2, "DW_OP_const1u:") == 0 ||
1591                strcmp(tok2, "DW_OP_const2u:") == 0 ||
1592                strcmp(tok2, "DW_OP_const4u:") == 0 ||
1593                strcmp(tok2, "DW_OP_const8u:") == 0){
1594         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1595         new_element->type = e_dw_uconstant;
1596         new_element->location.uconstant.bytes = tok2[11] - '0';
1597         new_element->location.uconstant.value = (unsigned long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1598         /*if(strlen(xbt_dynar_get_as(tokens, ++cursor, char*)) > 1)
1599           new_element->location.constant.value = atoi(xbt_dynar_get_as(tokens, cursor, char*));
1600         else
1601         new_element->location.constant.value = xbt_dynar_get_as(tokens, cursor, char*)[0] - '0';*/
1602         xbt_dynar_push(loc->location.compose, &new_element);
1603       }else if(strcmp(tok, "DW_OP_const1s") == 0 ||
1604                strcmp(tok, "DW_OP_const2s") == 0 ||
1605                strcmp(tok, "DW_OP_const4s") == 0 ||
1606                strcmp(tok, "DW_OP_const8s") == 0){
1607         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1608         new_element->type = e_dw_sconstant;
1609         new_element->location.sconstant.bytes = tok2[11] - '0';
1610         new_element->location.sconstant.value = (long int)(atoi(xbt_dynar_get_as(tokens2, 1, char*)));
1611         xbt_dynar_push(loc->location.compose, &new_element);
1612       }else{
1613         dw_location_t new_element = xbt_new0(s_dw_location_t, 1);
1614         new_element->type = e_dw_unsupported;
1615         xbt_dynar_push(loc->location.compose, &new_element);
1616       }
1617
1618       cursor++;
1619       xbt_dynar_free(&tokens2);
1620
1621     }
1622     
1623     xbt_dynar_free(&tokens1);
1624
1625     return loc;
1626     
1627   }
1628
1629 }
1630
1631
1632 void print_local_variables(xbt_dict_t list){
1633   
1634   dw_location_entry_t entry;
1635   dw_location_t location_entry;
1636   unsigned int cursor3 = 0, cursor4 = 0;
1637   xbt_dict_cursor_t cursor = 0, cursor2 = 0;
1638
1639   char *frame_name, *variable_name;
1640   dw_frame_t current_frame;
1641   dw_local_variable_t current_variable;
1642
1643   xbt_dict_foreach(list, cursor, frame_name, current_frame){ 
1644     fprintf(stderr, "Frame name : %s\n", current_frame->name);
1645     fprintf(stderr, "Location type : %d\n", current_frame->frame_base->type);
1646     xbt_dict_foreach((xbt_dict_t)current_frame->variables, cursor2, variable_name, current_variable){
1647       fprintf(stderr, "Name : %s\n", current_variable->name);
1648       if(current_variable->location == NULL)
1649         continue;
1650       fprintf(stderr, "Location type : %d\n", current_variable->location->type);
1651       switch(current_variable->location->type){
1652       case e_dw_loclist :
1653         xbt_dynar_foreach(current_variable->location->location.loclist, cursor3, entry){
1654           fprintf(stderr, "Lowpc : %lx, Highpc : %lx,", entry->lowpc, entry->highpc);
1655           switch(entry->location->type){
1656           case e_dw_register :
1657             fprintf(stderr, " Location : in register %d\n", entry->location->location.reg);
1658             break;
1659           case e_dw_bregister_op:
1660             fprintf(stderr, " Location : Add %d to the value in register %d\n", entry->location->location.breg_op.offset, entry->location->location.breg_op.reg);
1661             break;
1662           case e_dw_lit:
1663             fprintf(stderr, "Value already kwnown : %d\n", entry->location->location.lit);
1664             break;
1665           case e_dw_fbregister_op:
1666             fprintf(stderr, " Location : %d bytes from logical frame pointer\n", entry->location->location.fbreg_op);
1667             break;
1668           case e_dw_compose:
1669             fprintf(stderr, " Location :\n");
1670             xbt_dynar_foreach(entry->location->location.compose, cursor4, location_entry){
1671               switch(location_entry->type){
1672               case e_dw_register :
1673                 fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1674                 break;
1675               case e_dw_bregister_op:
1676                 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);
1677                 break;
1678               case e_dw_lit:
1679                 fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1680                 break;
1681               case e_dw_fbregister_op:
1682                 fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1683                 break;
1684               case e_dw_deref:
1685                 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);
1686                 break;
1687               case e_dw_arithmetic :
1688                 fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1689                 break;
1690               case e_dw_piece:
1691                 fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1692                 break;
1693               case e_dw_uconstant :
1694                 fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1695                 break;
1696               case e_dw_sconstant :
1697                 fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1698                 break;
1699               default :
1700                 fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1701                 break;
1702               }
1703             }
1704             break;
1705           default:
1706             fprintf(stderr, "Location type not supported\n");
1707             break;
1708           }
1709         }
1710         break;
1711       case e_dw_compose:
1712         cursor4 = 0;
1713         fprintf(stderr, "Location :\n");
1714         xbt_dynar_foreach(current_variable->location->location.compose, cursor4, location_entry){
1715           switch(location_entry->type){
1716           case e_dw_register :
1717             fprintf(stderr, " %d) in register %d\n", cursor4 + 1, location_entry->location.reg);
1718             break;
1719           case e_dw_bregister_op:
1720             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);
1721             break;
1722           case e_dw_lit:
1723             fprintf(stderr, "%d) Value already kwnown : %d\n", cursor4 + 1, location_entry->location.lit);
1724             break;
1725           case e_dw_fbregister_op:
1726             fprintf(stderr, " %d) %d bytes from logical frame pointer\n", cursor4 + 1, location_entry->location.fbreg_op);
1727             break;
1728           case e_dw_deref:
1729             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);
1730             break;
1731           case e_dw_arithmetic :
1732             fprintf(stderr, "%d) arithmetic operation : %s\n", cursor4 + 1, location_entry->location.arithmetic);
1733             break;
1734           case e_dw_piece:
1735             fprintf(stderr, "%d) The %d byte(s) previous value\n", cursor4 + 1, location_entry->location.piece);
1736             break;
1737           case e_dw_uconstant :
1738             fprintf(stderr, "%d) Unsigned constant %lu\n", cursor4 + 1, location_entry->location.uconstant.value);
1739             break;
1740           case e_dw_sconstant :
1741             fprintf(stderr, "%d) Signed constant %lu\n", cursor4 + 1, location_entry->location.sconstant.value);
1742             break;
1743           default :
1744             fprintf(stderr, "%d) Location type not supported\n", cursor4 + 1);
1745             break;
1746           }
1747         }
1748         break;
1749       default :
1750         fprintf(stderr, "Location type not supported\n");
1751         break;
1752       }
1753     }
1754   }
1755
1756 }
1757
1758 static void MC_get_global_variables(char *elf_file){
1759
1760   FILE *fp;
1761
1762   char *command = bprintf("objdump -t -j .data -j .bss %s", elf_file);
1763
1764   fp = popen(command, "r");
1765
1766   if(fp == NULL){
1767     perror("popen failed");
1768     xbt_abort();
1769   }
1770
1771   if(mc_global_variables == NULL)
1772     mc_global_variables = xbt_dynar_new(sizeof(global_variable_t), global_variable_free_voidp);
1773
1774   char *line = NULL;
1775   ssize_t read;
1776   size_t n = 0;
1777
1778   xbt_dynar_t line_tokens = NULL;
1779   unsigned long offset;
1780
1781   int type = strcmp(elf_file, xbt_binary_name); /* 0 = binary, other = libsimgrid */
1782
1783   while ((read = getline(&line, &n, fp)) != -1){
1784
1785     if(n == 0)
1786       continue;
1787
1788      /* Wipeout the new line character */
1789     line[read - 1] = '\0';
1790
1791     xbt_str_strip_spaces(line);
1792     xbt_str_ltrim(line, NULL);
1793
1794     line_tokens = xbt_str_split(line, NULL);
1795
1796     if(xbt_dynar_length(line_tokens) <= 4 || strcmp(xbt_dynar_get_as(line_tokens, 0, char *), "SYMBOL") == 0)
1797       continue;
1798
1799     if((strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "__gcov", 6) == 0)
1800        || (strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "gcov", 4) == 0)
1801        || (strcmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), ".data") == 0)
1802        || (strcmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), ".bss") == 0)
1803        || (strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "stderr", 6) == 0)
1804        || (strncmp(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*), "counter", 7) == 0)
1805        || ((size_t)strtoul(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 2, char*), NULL, 16) == 0))
1806       continue;
1807
1808     global_variable_t var = xbt_new0(s_global_variable_t, 1);
1809
1810     if(type == 0){
1811       var->address = (void *)strtoul(xbt_dynar_get_as(line_tokens, 0, char*), NULL, 16);
1812     }else{
1813       offset = strtoul(xbt_dynar_get_as(line_tokens, 0, char*), NULL, 16);
1814       var->address = (char *)start_text_libsimgrid+offset;
1815     }
1816
1817     var->size = (size_t)strtoul(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 2, char*), NULL, 16);
1818     var->name = strdup(xbt_dynar_get_as(line_tokens, xbt_dynar_length(line_tokens) - 1, char*));
1819
1820     if(data_bss_ignore_size(var->address) > 0)
1821       global_variable_free(var);
1822     else
1823       xbt_dynar_push(mc_global_variables, &var);
1824
1825     xbt_dynar_free(&line_tokens);
1826
1827   }
1828
1829   xbt_free(command);
1830   xbt_free(line);
1831   pclose(fp);
1832
1833 }
1834
1835 void global_variable_free(global_variable_t v){
1836   xbt_free(v->name);
1837   xbt_free(v);
1838 }
1839
1840 void global_variable_free_voidp(void *v){
1841   global_variable_free((global_variable_t) * (void **) v);
1842 }