Logo AND Algorithmique Numérique Distribuée

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