Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5b0e1df0d58b7fdad47585474c743e812bb9b496
[simgrid.git] / src / mc / mc_compare.c
1 /* Copyright (c) 2012-2013. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <inttypes.h>
8
9 #include "mc_private.h"
10
11 #include "xbt/mmalloc.h"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_compare, mc,
14                                 "Logging specific to mc_compare");
15
16 typedef struct s_pointers_pair{
17   void *p1;
18   void *p2;
19 }s_pointers_pair_t, *pointers_pair_t;
20
21 __thread xbt_dynar_t compared_pointers;
22
23 /************************** Free functions ****************************/
24 /********************************************************************/
25
26 static void stack_region_free(stack_region_t s){
27   if(s){
28     xbt_free(s->process_name);
29     xbt_free(s);
30   }
31 }
32
33 static void stack_region_free_voidp(void *s){
34   stack_region_free((stack_region_t) * (void **) s);
35 }
36
37 static void pointers_pair_free(pointers_pair_t p){
38   xbt_free(p);
39 }
40
41 static void pointers_pair_free_voidp(void *p){
42   pointers_pair_free((pointers_pair_t) * (void **)p);
43 }
44
45 /************************** Snapshot comparison *******************************/
46 /******************************************************************************/
47
48 static int already_compared_pointers(void *p1, void *p2){
49
50   if(xbt_dynar_is_empty(compared_pointers))
51     return -1;
52
53   unsigned int cursor = 0;
54   int start = 0;
55   int end = xbt_dynar_length(compared_pointers) - 1;
56   pointers_pair_t pair;
57
58   while(start <= end){
59     cursor = (start + end) / 2;
60     pair = (pointers_pair_t)xbt_dynar_get_as(compared_pointers, cursor, pointers_pair_t);
61     if(pair->p1 == p1){
62       if(pair->p2 == p2)
63         return 0;
64       else if(pair->p2 < p2)
65         start = cursor + 1;
66       else
67         end = cursor - 1;
68     }else if(pair->p1 < p1){
69       start = cursor + 1;
70     }else{
71       end = cursor - 1 ;
72     }
73   }
74
75   return -1;
76
77 }
78
79 static void add_compared_pointers(void *p1, void *p2){
80
81   pointers_pair_t new_pair = xbt_new0(s_pointers_pair_t, 1);
82   new_pair->p1 = p1;
83   new_pair->p2 = p2;
84   
85   if(xbt_dynar_is_empty(compared_pointers)){
86     xbt_dynar_push(compared_pointers, &new_pair);
87     return;
88   }
89
90   unsigned int cursor = 0;
91   int start = 0;
92   int end = xbt_dynar_length(compared_pointers) - 1;
93   pointers_pair_t pair = NULL;
94
95   while(start <= end){
96     cursor = (start + end) / 2;
97     pair = (pointers_pair_t)xbt_dynar_get_as(compared_pointers, cursor, pointers_pair_t);
98     if(pair->p1 == p1){
99       if(pair->p2 == p2){
100         pointers_pair_free(new_pair);
101         return;
102       }else if(pair->p2 < p2)
103         start = cursor + 1;
104       else
105         end = cursor - 1;
106     }else if(pair->p1 < p1){
107       start = cursor + 1;
108     }else{
109       end = cursor - 1 ;
110     }
111   }
112
113   if(pair->p1 == p1){
114     if(pair->p2 < p2)
115       xbt_dynar_insert_at(compared_pointers, cursor + 1, &new_pair);
116     else
117       xbt_dynar_insert_at(compared_pointers, cursor, &new_pair); 
118   }else{
119     if(pair->p1 < p1)
120       xbt_dynar_insert_at(compared_pointers, cursor + 1, &new_pair);
121     else
122       xbt_dynar_insert_at(compared_pointers, cursor, &new_pair);   
123   }
124
125 }
126
127 static int compare_areas_with_type(void *area1, void *area2, mc_object_info_t info, mc_object_info_t other_info, dw_type_t type, int region_size, int region_type, void *start_data, int pointer_level){
128
129   unsigned int cursor = 0;
130   dw_type_t member, subtype, subsubtype;
131   int elm_size, i, res, switch_types = 0;
132   void *addr_pointed1, *addr_pointed2;
133
134   switch(type->type){
135   case DW_TAG_base_type:
136   case DW_TAG_enumeration_type:
137   case DW_TAG_union_type:
138     return (memcmp(area1, area2, type->byte_size) != 0);
139     break;
140   case DW_TAG_typedef:
141   case DW_TAG_volatile_type:
142   case DW_TAG_const_type:
143     return compare_areas_with_type(area1, area2, info, other_info, type->subtype, region_size, region_type, start_data, pointer_level);
144     break;
145   case DW_TAG_array_type:
146     subtype = type->subtype;
147     switch(subtype->type){
148     case DW_TAG_base_type:
149     case DW_TAG_enumeration_type:
150     case DW_TAG_pointer_type:
151     case DW_TAG_structure_type:
152     case DW_TAG_union_type:
153       if(subtype->byte_size == 0){ /*declaration of the type, need the complete description */
154           subtype = subtype->other_object_same_type;
155           switch_types = 1;
156       }
157       elm_size = subtype->byte_size;
158       break;
159     case DW_TAG_const_type:
160     case DW_TAG_typedef:
161     case DW_TAG_volatile_type:
162       subsubtype = subtype->subtype;
163       if(subsubtype->byte_size == 0){ /*declaration of the type, need the complete description */
164           subsubtype = subsubtype->other_object_same_type;
165           switch_types = 1;
166       }
167       elm_size = subsubtype->byte_size;
168       break;
169     default : 
170       return 0;
171       break;
172     }
173     for(i=0; i<type->element_count; i++){
174       if(switch_types)
175         res = compare_areas_with_type((char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), other_info, info, type->subtype, region_size, region_type, start_data, pointer_level);
176       else
177         res = compare_areas_with_type((char *)area1 + (i*elm_size), (char *)area2 + (i*elm_size), info, other_info, type->subtype, region_size, region_type, start_data, pointer_level);
178       if(res == 1)
179         return res;
180     }
181     break;
182   case DW_TAG_pointer_type:
183     if(type->subtype && type->subtype->type == DW_TAG_subroutine_type){
184       addr_pointed1 = *((void **)(area1)); 
185       addr_pointed2 = *((void **)(area2));
186       return (addr_pointed1 != addr_pointed2);
187     }else{
188       addr_pointed1 = *((void **)(area1)); 
189       addr_pointed2 = *((void **)(area2));
190       
191       if(addr_pointed1 == NULL && addr_pointed2 == NULL)
192         return 0;
193       if(already_compared_pointers(addr_pointed1, addr_pointed2) != -1)
194         return 0;
195       add_compared_pointers(addr_pointed1, addr_pointed2);
196
197       pointer_level++;
198       
199       // Some cases are not handled here:
200       // * the pointers lead to different areas (one to the heap, the other to the RW segment ...);
201       // * a pointer leads to the read-only segment of the current object;
202       // * a pointer lead to a different ELF object.
203
204       // The pointers are both in the heap:
205       if(addr_pointed1 > std_heap && (char *)addr_pointed1 < (char*) std_heap + STD_HEAP_SIZE){
206         if(!(addr_pointed2 > std_heap && (char *)addr_pointed2 < (char*) std_heap + STD_HEAP_SIZE))
207           return 1;
208         return compare_heap_area(addr_pointed1, addr_pointed2, NULL, info, other_info, type->dw_type_id, pointer_level);
209       }
210
211       // The pointers are both in the current object R/W segment:
212       else if(addr_pointed1 > start_data && (char*)addr_pointed1 <= (char *)start_data + region_size){
213         if(!(addr_pointed2 > start_data && (char*)addr_pointed2 <= (char *)start_data + region_size))
214           return 1;
215         if(type->dw_type_id == NULL)
216           return  (addr_pointed1 != addr_pointed2);
217         else
218           return  compare_areas_with_type(addr_pointed1, addr_pointed2, info, other_info, type->subtype, region_size, region_type, start_data, pointer_level);
219       }
220
221       else{
222         return (addr_pointed1 != addr_pointed2);
223       }
224     }
225     break;
226   case DW_TAG_structure_type:
227     xbt_dynar_foreach(type->members, cursor, member){
228       XBT_DEBUG("Compare member %s", member->name);
229       res = compare_areas_with_type((char *)area1 + member->offset, (char *)area2 + member->offset, info, other_info, member->subtype, region_size, region_type, start_data, pointer_level);
230       if(res == 1)
231         return res;
232     }
233     break;
234   case DW_TAG_subroutine_type:
235     return -1;
236     break;
237   default:
238     XBT_VERB("Unknown case : %d", type->type);
239     break;
240   }
241   
242   return 0;
243 }
244
245 static int compare_global_variables(int region_type, mc_mem_region_t r1, mc_mem_region_t r2){
246
247   if(!compared_pointers){
248     compared_pointers = xbt_dynar_new(sizeof(pointers_pair_t), pointers_pair_free_voidp);
249     MC_ignore_global_variable("compared_pointers");
250   }else{
251     xbt_dynar_reset(compared_pointers);
252   }
253
254   xbt_dynar_t variables;
255   int res;
256   unsigned int cursor = 0;
257   dw_variable_t current_var;
258   size_t offset;
259   void *start_data;
260   void* start_data_binary = mc_binary_info->start_rw;
261   void* start_data_libsimgrid = mc_libsimgrid_info->start_rw;
262
263   mc_object_info_t object_info = NULL;
264   mc_object_info_t other_object_info = NULL;
265   if(region_type == 2){
266     object_info = mc_binary_info;
267     other_object_info = mc_libsimgrid_info;
268     start_data = start_data_binary;
269   }else{
270     object_info = mc_libsimgrid_info;
271     other_object_info = mc_binary_info;
272     start_data = start_data_libsimgrid;
273   }
274   variables = object_info->global_variables;
275
276   xbt_dynar_foreach(variables, cursor, current_var){
277
278     // If the variable is not in this object, skip it:
279     // We do not expect to find a pointer to something which is not reachable
280     // by the global variables.
281     if((char*) current_var->address < (char*) object_info->start_rw
282       || (char*) current_var->address > (char*) object_info->end_rw)
283        continue;
284
285     offset = (char *)current_var->address - (char *)object_info->start_rw;
286
287     dw_type_t bvariable_type = current_var->type;
288     res = compare_areas_with_type((char *)r1->data + offset, (char *)r2->data + offset, object_info, other_object_info, bvariable_type, r1->size, region_type, start_data, 0);
289     if(res == 1){
290       XBT_VERB("Global variable %s (%p - %p) is different between snapshots", current_var->name, (char *)r1->data + offset, (char *)r2->data + offset);
291       xbt_dynar_free(&compared_pointers);
292       compared_pointers = NULL;
293       return 1;
294     }
295
296   }
297
298   xbt_dynar_free(&compared_pointers);
299   compared_pointers = NULL;
300
301   return 0;
302
303 }
304
305 static int compare_local_variables(mc_snapshot_stack_t stack1, mc_snapshot_stack_t stack2, void *heap1, void *heap2){
306   void* start_data_binary = mc_binary_info->start_rw;
307   void* start_data_libsimgrid = mc_libsimgrid_info->start_rw;
308
309   if(!compared_pointers){
310     compared_pointers = xbt_dynar_new(sizeof(pointers_pair_t), pointers_pair_free_voidp);
311     MC_ignore_global_variable("compared_pointers");
312   }else{
313     xbt_dynar_reset(compared_pointers);
314   }
315
316   if(xbt_dynar_length(stack1->local_variables) != xbt_dynar_length(stack2->local_variables)){
317     XBT_VERB("Different number of local variables");
318     xbt_dynar_free(&compared_pointers);
319     compared_pointers = NULL;
320     return 1;
321   }else{
322     unsigned int cursor = 0;
323     local_variable_t current_var1, current_var2;
324     int offset1, offset2, res;
325     while(cursor < xbt_dynar_length(stack1->local_variables)){
326       current_var1 = (local_variable_t)xbt_dynar_get_as(stack1->local_variables, cursor, local_variable_t);
327       current_var2 = (local_variable_t)xbt_dynar_get_as(stack2->local_variables, cursor, local_variable_t);
328       if(strcmp(current_var1->name, current_var2->name) != 0 || strcmp(current_var1->frame, current_var2->frame) != 0 || current_var1->ip != current_var2->ip){
329         xbt_dynar_free(&compared_pointers);
330         XBT_VERB("Different name of variable (%s - %s) or frame (%s - %s) or ip (%lu - %lu)", current_var1->name, current_var2->name, current_var1->frame, current_var2->frame, current_var1->ip, current_var2->ip);
331         return 1;
332       }
333       offset1 = (char *)current_var1->address - (char *)std_heap;
334       offset2 = (char *)current_var2->address - (char *)std_heap;
335       XBT_DEBUG("Compare local variable %s of frame %s", current_var1->name, current_var1->frame);
336
337
338       if(current_var1->region == 1) {
339         dw_type_t subtype = current_var1->type;
340         res = compare_areas_with_type( (char *)heap1 + offset1, (char *)heap2 + offset2, mc_libsimgrid_info, mc_binary_info, subtype, 0, 1, start_data_libsimgrid, 0);
341       } else {
342         dw_type_t subtype = current_var2->type;
343         res = compare_areas_with_type( (char *)heap1 + offset1, (char *)heap2 + offset2, mc_binary_info, mc_libsimgrid_info, subtype, 0, 2, start_data_binary, 0);
344       }
345       if(res == 1){
346         XBT_VERB("Local variable %s (%p - %p) in frame %s  is different between snapshots", current_var1->name,(char *)heap1 + offset1, (char *)heap2 + offset2, current_var1->frame);
347         xbt_dynar_free(&compared_pointers);
348         compared_pointers = NULL;
349         return res;
350       }
351       cursor++;
352     }
353     xbt_dynar_free(&compared_pointers);
354     compared_pointers = NULL;
355     return 0;
356   }
357 }
358
359 int snapshot_compare(void *state1, void *state2){
360
361   mc_snapshot_t s1, s2;
362   int num1, num2;
363   
364   if(_sg_mc_property_file && _sg_mc_property_file[0] != '\0'){ /* Liveness MC */
365     s1 = ((mc_visited_pair_t)state1)->graph_state->system_state;
366     s2 = ((mc_visited_pair_t)state2)->graph_state->system_state;
367     num1 = ((mc_visited_pair_t)state1)->num;
368     num2 =  ((mc_visited_pair_t)state2)->num;
369     /* Firstly compare automaton state */
370     /*if(xbt_automaton_state_compare(((mc_pair_t)state1)->automaton_state, ((mc_pair_t)state2)->automaton_state) != 0)
371       return 1;
372     if(xbt_automaton_propositional_symbols_compare_value(((mc_pair_t)state1)->atomic_propositions, ((mc_pair_t)state2)->atomic_propositions) != 0)
373     return 1;*/
374   }else{ /* Safety MC */
375     s1 = ((mc_visited_state_t)state1)->system_state;
376     s2 = ((mc_visited_state_t)state2)->system_state;
377     num1 = ((mc_visited_state_t)state1)->num;
378     num2 = ((mc_visited_state_t)state2)->num;
379   }
380
381   int errors = 0;
382   int res_init;
383
384   xbt_os_timer_t global_timer = xbt_os_timer_new();
385   xbt_os_timer_t timer = xbt_os_timer_new();
386
387   xbt_os_walltimer_start(global_timer);
388
389   #ifdef MC_DEBUG
390     xbt_os_walltimer_start(timer);
391   #endif
392
393   int hash_result = 0;
394   if(_sg_mc_hash) {
395     hash_result = (s1->hash != s2->hash);
396     if(hash_result) {
397       XBT_VERB("(%d - %d) Different hash : 0x%" PRIx64 "--0x%" PRIx64, num1, num2, s1->hash, s2->hash);
398 #ifndef MC_DEBUG
399       return 1;
400 #endif
401     } else {
402       XBT_VERB("(%d - %d) Same hash : 0x%" PRIx64, num1, num2, s1->hash);
403     }
404   }
405
406   int i = 0;
407   size_t size_used1, size_used2;
408   int is_diff = 0;
409
410
411   /* Compare size of stacks */
412   while(i < xbt_dynar_length(s1->stacks)){
413     size_used1 = s1->stack_sizes[i];
414     size_used2 = s2->stack_sizes[i];
415     if(size_used1 != size_used2){
416     #ifdef MC_DEBUG
417       if(is_diff == 0){
418         xbt_os_walltimer_stop(timer);
419         mc_comp_times->stacks_sizes_comparison_time = xbt_os_timer_elapsed(timer);
420       }
421       XBT_DEBUG("(%d - %d) Different size used in stacks : %zu - %zu", num1, num2, size_used1, size_used2);
422       errors++;
423       is_diff = 1;
424     #else
425       #ifdef MC_VERBOSE
426       XBT_VERB("(%d - %d) Different size used in stacks : %zu - %zu", num1, num2, size_used1, size_used2);
427       #endif
428
429       xbt_os_walltimer_stop(timer);
430       xbt_os_timer_free(timer);
431       xbt_os_walltimer_stop(global_timer);
432       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
433       xbt_os_timer_free(global_timer);
434
435       return 1;
436     #endif  
437     }
438     i++;
439   }
440
441   #ifdef MC_DEBUG
442     if(is_diff == 0)
443       xbt_os_walltimer_stop(timer);
444     xbt_os_walltimer_start(timer);
445   #endif
446
447   /* Init heap information used in heap comparison algorithm */
448   res_init = init_heap_information((xbt_mheap_t)s1->regions[0]->data, (xbt_mheap_t)s2->regions[0]->data, s1->to_ignore, s2->to_ignore);
449   if(res_init == -1){
450      #ifdef MC_DEBUG
451     XBT_DEBUG("(%d - %d) Different heap information", num1, num2); 
452         errors++; 
453       #else
454         #ifdef MC_VERBOSE
455         XBT_VERB("(%d - %d) Different heap information", num1, num2); 
456         #endif
457
458         xbt_os_walltimer_stop(global_timer);
459         mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
460         xbt_os_timer_free(global_timer);
461
462         return 1;
463       #endif
464   }
465
466   #ifdef MC_DEBUG
467     xbt_os_walltimer_start(timer);
468   #endif
469
470   /* Stacks comparison */
471   unsigned int  cursor = 0;
472   int diff_local = 0;
473   is_diff = 0;
474   mc_snapshot_stack_t stack1, stack2;
475     
476   while(cursor < xbt_dynar_length(s1->stacks)){
477     stack1 = (mc_snapshot_stack_t)xbt_dynar_get_as(s1->stacks, cursor, mc_snapshot_stack_t);
478     stack2 = (mc_snapshot_stack_t)xbt_dynar_get_as(s2->stacks, cursor, mc_snapshot_stack_t);
479     diff_local = compare_local_variables(stack1, stack2, s1->regions[0]->data, s2->regions[0]->data);
480     if(diff_local > 0){
481       #ifdef MC_DEBUG
482         if(is_diff == 0){
483           xbt_os_walltimer_stop(timer);
484           mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer);
485         }
486         XBT_DEBUG("(%d - %d) Different local variables between stacks %d", num1, num2, cursor + 1);
487         errors++;
488         is_diff = 1;
489       #else
490         
491         #ifdef MC_VERBOSE
492         XBT_VERB("(%d - %d) Different local variables between stacks %d", num1, num2, cursor + 1);
493         #endif
494           
495         reset_heap_information();
496         xbt_os_walltimer_stop(timer);
497         xbt_os_timer_free(timer);
498         xbt_os_walltimer_stop(global_timer);
499         mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
500         xbt_os_timer_free(global_timer);
501  
502         return 1;
503       #endif
504     }
505     cursor++;
506   }
507
508
509
510  const char* names[3] = { "?", "libsimgrid", "binary" };
511 #ifdef MC_DEBUG
512  double *times[3] = {
513    NULL,
514    &mc_comp_times->libsimgrid_global_variables_comparison_time,
515    &mc_comp_times->binary_global_variables_comparison_time
516  };
517 #endif
518
519  int k=0;
520  for(k=2; k!=0; --k) {
521     #ifdef MC_DEBUG
522       if(is_diff == 0)
523         xbt_os_walltimer_stop(timer);
524       xbt_os_walltimer_start(timer);
525     #endif
526
527   /* Compare global variables */
528   is_diff = compare_global_variables(k, s1->regions[k], s2->regions[k]);
529   if(is_diff != 0){
530     #ifdef MC_DEBUG
531       xbt_os_walltimer_stop(timer);
532       *times[k] = xbt_os_timer_elapsed(timer);
533       XBT_DEBUG("(%d - %d) Different global variables in %s", num1, num2, names[k]);
534       errors++;
535     #else
536       #ifdef MC_VERBOSE
537       XBT_VERB("(%d - %d) Different global variables in %s", num1, num2, names[k]);
538       #endif
539
540       reset_heap_information();
541       xbt_os_walltimer_stop(timer);
542       xbt_os_timer_free(timer);
543       xbt_os_walltimer_stop(global_timer);
544       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
545       xbt_os_timer_free(global_timer);
546
547       return 1;
548     #endif
549   }
550  }
551
552   #ifdef MC_DEBUG
553     xbt_os_walltimer_start(timer);
554   #endif
555
556   /* Compare heap */
557     if(mmalloc_compare_heap((xbt_mheap_t)s1->regions[0]->data,
558                             (xbt_mheap_t)s2->regions[0]->data,
559                             mc_libsimgrid_info,
560                             mc_binary_info) > 0){
561
562     #ifdef MC_DEBUG
563       xbt_os_walltimer_stop(timer);
564       mc_comp_times->heap_comparison_time = xbt_os_timer_elapsed(timer); 
565       XBT_DEBUG("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
566       errors++;
567     #else
568  
569       #ifdef MC_VERBOSE
570       XBT_VERB("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
571       #endif
572        
573       reset_heap_information();
574       xbt_os_walltimer_stop(timer);
575       xbt_os_timer_free(timer);
576       xbt_os_walltimer_stop(global_timer);
577       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
578       xbt_os_timer_free(global_timer);
579
580       return 1;
581     #endif
582   }else{
583     #ifdef MC_DEBUG
584       xbt_os_walltimer_stop(timer);
585     #endif
586   }
587
588   reset_heap_information();
589   
590   xbt_os_walltimer_stop(timer);
591   xbt_os_timer_free(timer);
592
593   #ifdef MC_VERBOSE
594     xbt_os_walltimer_stop(global_timer);
595     mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
596   #endif
597
598   xbt_os_timer_free(global_timer);
599
600   #ifdef MC_DEBUG
601     print_comparison_times();
602   #endif
603
604 #ifdef MC_VERBOSE
605    if(errors || hash_result)
606      XBT_VERB("(%d - %d) Difference found", num1, num2);
607    else
608      XBT_VERB("(%d - %d) No difference found", num1, num2);
609 #endif
610
611 #if defined(MC_DEBUG) && defined(MC_VERBOSE)
612    if(_sg_mc_hash) {
613      // * false positive SHOULD be avoided.
614      // * There MUST not be any false negative.
615
616      XBT_VERB("(%d - %d) State equality hash test is %s %s", num1, num2,
617        (hash_result!=0) == (errors!=0) ? "true" : "false",
618        !hash_result ? "positive" : "negative");
619    }
620 #endif
621
622    return errors > 0 || hash_result;
623   
624 }
625
626 /***************************** Statistics *****************************/
627 /*******************************************************************/
628
629 void print_comparison_times(){
630   XBT_DEBUG("*** Comparison times ***");
631   XBT_DEBUG("- Nb processes : %f", mc_comp_times->nb_processes_comparison_time);
632   XBT_DEBUG("- Nb bytes used : %f", mc_comp_times->bytes_used_comparison_time);
633   XBT_DEBUG("- Stacks sizes : %f", mc_comp_times->stacks_sizes_comparison_time);
634   XBT_DEBUG("- Binary global variables : %f", mc_comp_times->binary_global_variables_comparison_time);
635   XBT_DEBUG("- Libsimgrid global variables : %f", mc_comp_times->libsimgrid_global_variables_comparison_time);
636   XBT_DEBUG("- Heap : %f", mc_comp_times->heap_comparison_time);
637   XBT_DEBUG("- Stacks : %f", mc_comp_times->stacks_comparison_time);
638 }
639
640 /**************************** MC snapshot compare simcall **************************/
641 /***********************************************************************************/
642
643 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall,
644                                    mc_snapshot_t s1, mc_snapshot_t s2){
645   return snapshot_compare(s1, s2);
646 }
647
648 int MC_compare_snapshots(void *s1, void *s2){
649   
650   MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot");
651   return simcall_mc_compare_snapshots(s1, s2);
652
653 }