Logo AND Algorithmique Numérique Distribuée

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