Logo AND Algorithmique Numérique Distribuée

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