Logo AND Algorithmique Numérique Distribuée

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