Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove useless parameters in compare_local_variables
[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)
323 {
324   if (!compared_pointers) {
325     compared_pointers =
326         xbt_dynar_new(sizeof(pointers_pair_t), pointers_pair_free_voidp);
327   } else {
328     xbt_dynar_reset(compared_pointers);
329   }
330
331   if (xbt_dynar_length(stack1->local_variables) !=
332       xbt_dynar_length(stack2->local_variables)) {
333     XBT_VERB("Different number of local variables");
334     xbt_dynar_free(&compared_pointers);
335     compared_pointers = NULL;
336     return 1;
337   } else {
338     unsigned int cursor = 0;
339     local_variable_t current_var1, current_var2;
340     int offset1, offset2, res;
341     while (cursor < xbt_dynar_length(stack1->local_variables)) {
342       current_var1 =
343           (local_variable_t) xbt_dynar_get_as(stack1->local_variables, cursor,
344                                               local_variable_t);
345       current_var2 =
346           (local_variable_t) xbt_dynar_get_as(stack2->local_variables, cursor,
347                                               local_variable_t);
348       if (strcmp(current_var1->name, current_var2->name) != 0
349           || current_var1->subprogram != current_var1->subprogram
350           || current_var1->ip != current_var2->ip) {
351         xbt_dynar_free(&compared_pointers);
352         // TODO, fix current_varX->subprogram->name to include name if DW_TAG_inlined_subprogram
353         XBT_VERB
354             ("Different name of variable (%s - %s) or frame (%s - %s) or ip (%lu - %lu)",
355              current_var1->name, current_var2->name,
356              current_var1->subprogram->name, current_var2->subprogram->name,
357              current_var1->ip, current_var2->ip);
358         return 1;
359       }
360       offset1 = (char *) current_var1->address - (char *) std_heap;
361       offset2 = (char *) current_var2->address - (char *) std_heap;
362       // TODO, fix current_varX->subprogram->name to include name if DW_TAG_inlined_subprogram
363
364
365         dw_type_t subtype = current_var1->type;
366         res =
367             compare_areas_with_type(current_var1->address, snapshot1, mc_get_snapshot_region(current_var1->address, snapshot1),
368                                     current_var2->address, snapshot2, mc_get_snapshot_region(current_var2->address, snapshot2),
369                                     subtype, 0);
370
371       if (res == 1) {
372         // TODO, fix current_varX->subprogram->name to include name if DW_TAG_inlined_subprogram
373         XBT_VERB
374             ("Local variable %s (%p - %p) in frame %s  is different between snapshots",
375              current_var1->name, current_var1->address, current_var2->address,
376              current_var1->subprogram->name);
377         xbt_dynar_free(&compared_pointers);
378         compared_pointers = NULL;
379         return res;
380       }
381       cursor++;
382     }
383     xbt_dynar_free(&compared_pointers);
384     compared_pointers = NULL;
385     return 0;
386   }
387 }
388
389 int snapshot_compare(void *state1, void *state2)
390 {
391
392   mc_snapshot_t s1, s2;
393   int num1, num2;
394
395   if (_sg_mc_liveness) {        /* Liveness MC */
396     s1 = ((mc_visited_pair_t) state1)->graph_state->system_state;
397     s2 = ((mc_visited_pair_t) state2)->graph_state->system_state;
398     num1 = ((mc_visited_pair_t) state1)->num;
399     num2 = ((mc_visited_pair_t) state2)->num;
400   } else {                      /* Safety or comm determinism MC */
401     s1 = ((mc_visited_state_t) state1)->system_state;
402     s2 = ((mc_visited_state_t) state2)->system_state;
403     num1 = ((mc_visited_state_t) state1)->num;
404     num2 = ((mc_visited_state_t) state2)->num;
405   }
406
407   int errors = 0;
408   int res_init;
409
410   xbt_os_timer_t global_timer = xbt_os_timer_new();
411   xbt_os_timer_t timer = xbt_os_timer_new();
412
413   xbt_os_walltimer_start(global_timer);
414
415 #ifdef MC_DEBUG
416   xbt_os_walltimer_start(timer);
417 #endif
418
419   int hash_result = 0;
420   if (_sg_mc_hash) {
421     hash_result = (s1->hash != s2->hash);
422     if (hash_result) {
423       XBT_VERB("(%d - %d) Different hash : 0x%" PRIx64 "--0x%" PRIx64, num1,
424                num2, s1->hash, s2->hash);
425 #ifndef MC_DEBUG
426       return 1;
427 #endif
428     } else {
429       XBT_VERB("(%d - %d) Same hash : 0x%" PRIx64, num1, num2, s1->hash);
430     }
431   }
432
433   /* Compare enabled processes */
434   unsigned int cursor;
435   int pid;
436   xbt_dynar_foreach(s1->enabled_processes, cursor, pid){
437     if(!xbt_dynar_member(s2->enabled_processes, &pid))
438       XBT_VERB("(%d - %d) Different enabled processes", num1, num2);
439   }
440
441   int i = 0;
442   size_t size_used1, size_used2;
443   int is_diff = 0;
444
445   /* Compare size of stacks */
446   while (i < xbt_dynar_length(s1->stacks)) {
447     size_used1 = s1->stack_sizes[i];
448     size_used2 = s2->stack_sizes[i];
449     if (size_used1 != size_used2) {
450 #ifdef MC_DEBUG
451       if (is_diff == 0) {
452         xbt_os_walltimer_stop(timer);
453         mc_comp_times->stacks_sizes_comparison_time =
454             xbt_os_timer_elapsed(timer);
455       }
456       XBT_DEBUG("(%d - %d) Different size used in stacks : %zu - %zu", num1,
457                 num2, size_used1, size_used2);
458       errors++;
459       is_diff = 1;
460 #else
461 #ifdef MC_VERBOSE
462       XBT_VERB("(%d - %d) Different size used in stacks : %zu - %zu", num1,
463                num2, size_used1, size_used2);
464 #endif
465
466       xbt_os_walltimer_stop(timer);
467       xbt_os_timer_free(timer);
468       xbt_os_walltimer_stop(global_timer);
469       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
470       xbt_os_timer_free(global_timer);
471
472       return 1;
473 #endif
474     }
475     i++;
476   }
477
478 #ifdef MC_DEBUG
479   if (is_diff == 0)
480     xbt_os_walltimer_stop(timer);
481   xbt_os_walltimer_start(timer);
482 #endif
483
484   /* Init heap information used in heap comparison algorithm */
485   res_init =
486       init_heap_information((xbt_mheap_t) s1->regions[0]->data,
487                             (xbt_mheap_t) s2->regions[0]->data, s1->to_ignore,
488                             s2->to_ignore);
489   if (res_init == -1) {
490 #ifdef MC_DEBUG
491     XBT_DEBUG("(%d - %d) Different heap information", num1, num2);
492     errors++;
493 #else
494 #ifdef MC_VERBOSE
495     XBT_VERB("(%d - %d) Different heap information", num1, num2);
496 #endif
497
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 #ifdef MC_DEBUG
506   xbt_os_walltimer_start(timer);
507 #endif
508
509   /* Stacks comparison */
510   cursor = 0;
511   int diff_local = 0;
512 #ifdef MC_DEBUG
513   is_diff = 0;
514 #endif
515   mc_snapshot_stack_t stack1, stack2;
516
517   while (cursor < xbt_dynar_length(s1->stacks)) {
518     stack1 =
519         (mc_snapshot_stack_t) xbt_dynar_get_as(s1->stacks, cursor,
520                                                mc_snapshot_stack_t);
521     stack2 =
522         (mc_snapshot_stack_t) xbt_dynar_get_as(s2->stacks, cursor,
523                                                mc_snapshot_stack_t);
524     diff_local =
525         compare_local_variables(s1, s2, stack1, stack2);
526     if (diff_local > 0) {
527 #ifdef MC_DEBUG
528       if (is_diff == 0) {
529         xbt_os_walltimer_stop(timer);
530         mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer);
531       }
532       XBT_DEBUG("(%d - %d) Different local variables between stacks %d", num1,
533                 num2, cursor + 1);
534       errors++;
535       is_diff = 1;
536 #else
537
538 #ifdef MC_VERBOSE
539       XBT_VERB("(%d - %d) Different local variables between stacks %d", num1,
540                num2, cursor + 1);
541 #endif
542
543       reset_heap_information();
544       xbt_os_walltimer_stop(timer);
545       xbt_os_timer_free(timer);
546       xbt_os_walltimer_stop(global_timer);
547       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
548       xbt_os_timer_free(global_timer);
549
550       return 1;
551 #endif
552     }
553     cursor++;
554   }
555
556
557
558   const char *names[3] = { "?", "libsimgrid", "binary" };
559 #ifdef MC_DEBUG
560   double *times[3] = {
561     NULL,
562     &mc_comp_times->libsimgrid_global_variables_comparison_time,
563     &mc_comp_times->binary_global_variables_comparison_time
564   };
565 #endif
566
567   int k = 0;
568   for (k = 2; k != 0; --k) {
569 #ifdef MC_DEBUG
570     if (is_diff == 0)
571       xbt_os_walltimer_stop(timer);
572     xbt_os_walltimer_start(timer);
573 #endif
574
575     /* Compare global variables */
576     is_diff =
577         compare_global_variables(k, s1->regions[k], s2->regions[k], s1, s2);
578     if (is_diff != 0) {
579 #ifdef MC_DEBUG
580       xbt_os_walltimer_stop(timer);
581       *times[k] = xbt_os_timer_elapsed(timer);
582       XBT_DEBUG("(%d - %d) Different global variables in %s", num1, num2,
583                 names[k]);
584       errors++;
585 #else
586 #ifdef MC_VERBOSE
587       XBT_VERB("(%d - %d) Different global variables in %s", num1, num2,
588                names[k]);
589 #endif
590
591       reset_heap_information();
592       xbt_os_walltimer_stop(timer);
593       xbt_os_timer_free(timer);
594       xbt_os_walltimer_stop(global_timer);
595       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
596       xbt_os_timer_free(global_timer);
597
598       return 1;
599 #endif
600     }
601   }
602
603 #ifdef MC_DEBUG
604   xbt_os_walltimer_start(timer);
605 #endif
606
607   /* Compare heap */
608   if (mmalloc_compare_heap(s1, s2) > 0) {
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 SIMIX_pre_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 }