Logo AND Algorithmique Numérique Distribuée

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