Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
356a1ec2db28340140c6f48c017b27560c6b5874
[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 (region1->contain(simgrid::mc::remote(addr_pointed1))) {
212         if (!region2->contain(simgrid::mc::remote(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() == simgrid::mc::StorageType::Privatized) {
272     xbt_assert(process_index >= 0);
273     if (r2->storage_type() != simgrid::mc::StorageType::Privatized) {
274       return 1;
275     }
276
277     size_t process_count = MC_smpi_process_count();
278     xbt_assert(process_count == r1->privatized_data().size()
279       && process_count == r2->privatized_data().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_data()[process_index],
285         &r2->privatized_data()[process_index],
286         snapshot1, snapshot2);
287       if (is_diff) return 1;
288     }
289     return 0;
290   }
291 #else
292   xbt_assert(r1->storage_type() != simgrid::mc::StorageType::Privatized);
293 #endif
294   xbt_assert(r2->storage_type() != simgrid::mc::StorageType::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   if (s1->enabled_processes != s2->enabled_processes) {
444       //XBT_TRACE3(mc, state_diff, num1, num2, "Different enabled processes");
445       XBT_VERB("(%d - %d) Different enabled processes", num1, num2);
446       // return 1; ??
447   }
448
449   unsigned long i = 0;
450   size_t size_used1, size_used2;
451   int is_diff = 0;
452
453   /* Compare size of stacks */
454   while (i < xbt_dynar_length(s1->stacks)) {
455     size_used1 = s1->stack_sizes[i];
456     size_used2 = s2->stack_sizes[i];
457     if (size_used1 != size_used2) {
458 #ifdef MC_DEBUG
459       if (is_diff == 0) {
460         xbt_os_walltimer_stop(timer);
461         mc_comp_times->stacks_sizes_comparison_time =
462             xbt_os_timer_elapsed(timer);
463       }
464       XBT_DEBUG("(%d - %d) Different size used in stacks : %zu - %zu", num1,
465                 num2, size_used1, size_used2);
466       errors++;
467       is_diff = 1;
468 #else
469 #ifdef MC_VERBOSE
470       XBT_VERB("(%d - %d) Different size used in stacks : %zu - %zu", num1,
471                num2, size_used1, size_used2);
472 #endif
473       XBT_TRACE3(mc, state_diff, num1, num2, "Different stack size");
474
475       xbt_os_walltimer_stop(timer);
476       xbt_os_timer_free(timer);
477       xbt_os_walltimer_stop(global_timer);
478       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
479       xbt_os_timer_free(global_timer);
480
481       return 1;
482 #endif
483     }
484     i++;
485   }
486
487 #ifdef MC_DEBUG
488   if (is_diff == 0)
489     xbt_os_walltimer_stop(timer);
490   xbt_os_walltimer_start(timer);
491 #endif
492
493   /* Init heap information used in heap comparison algorithm */
494   xbt_mheap_t heap1 = (xbt_mheap_t)s1->read_bytes(
495     alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
496     remote(process->heap_address),
497     simgrid::mc::ProcessIndexMissing, simgrid::mc::AddressSpace::Lazy);
498   xbt_mheap_t heap2 = (xbt_mheap_t)s2->read_bytes(
499     alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
500     remote(process->heap_address),
501     simgrid::mc::ProcessIndexMissing, simgrid::mc::AddressSpace::Lazy);
502   res_init = init_heap_information(heap1, heap2, s1->to_ignore, s2->to_ignore);
503   if (res_init == -1) {
504 #ifdef MC_DEBUG
505     XBT_DEBUG("(%d - %d) Different heap information", num1, num2);
506     errors++;
507 #else
508 #ifdef MC_VERBOSE
509     XBT_TRACE3(mc, state_diff, num1, num2, "Different heap information");
510     XBT_VERB("(%d - %d) Different heap information", num1, num2);
511 #endif
512
513     xbt_os_walltimer_stop(global_timer);
514     mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
515     xbt_os_timer_free(global_timer);
516
517     return 1;
518 #endif
519   }
520 #ifdef MC_DEBUG
521   xbt_os_walltimer_start(timer);
522 #endif
523
524   /* Stacks comparison */
525   unsigned cursor = 0;
526   int diff_local = 0;
527 #ifdef MC_DEBUG
528   is_diff = 0;
529 #endif
530   mc_snapshot_stack_t stack1, stack2;
531   while (cursor < xbt_dynar_length(s1->stacks)) {
532     stack1 =
533         (mc_snapshot_stack_t) xbt_dynar_get_as(s1->stacks, cursor,
534                                                mc_snapshot_stack_t);
535     stack2 =
536         (mc_snapshot_stack_t) xbt_dynar_get_as(s2->stacks, cursor,
537                                                mc_snapshot_stack_t);
538
539     if (stack1->process_index != stack2->process_index) {
540       diff_local = 1;
541       XBT_DEBUG("(%d - %d) Stacks with different process index (%i vs %i)", num1, num2,
542         stack1->process_index, stack2->process_index);
543     }
544     else diff_local =
545         compare_local_variables(stack1->process_index, s1, s2, stack1, stack2);
546     if (diff_local > 0) {
547       XBT_TRACE3(mc, state_diff, num1, num2, "Different local variables");
548 #ifdef MC_DEBUG
549       if (is_diff == 0) {
550         xbt_os_walltimer_stop(timer);
551         mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer);
552       }
553       XBT_DEBUG("(%d - %d) Different local variables between stacks %d", num1,
554                 num2, cursor + 1);
555       errors++;
556       is_diff = 1;
557 #else
558
559 #ifdef MC_VERBOSE
560       XBT_VERB("(%d - %d) Different local variables between stacks %d", num1,
561                num2, cursor + 1);
562 #endif
563
564       reset_heap_information();
565       xbt_os_walltimer_stop(timer);
566       xbt_os_timer_free(timer);
567       xbt_os_walltimer_stop(global_timer);
568       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
569       xbt_os_timer_free(global_timer);
570
571       return 1;
572 #endif
573     }
574     cursor++;
575   }
576
577   size_t regions_count = s1->snapshot_regions_count;
578   // TODO, raise a difference instead?
579   xbt_assert(regions_count == s2->snapshot_regions_count);
580
581   mc_comp_times->global_variables_comparison_time = 0;
582
583   for (size_t k = 0; k != regions_count; ++k) {
584     mc_mem_region_t region1 = s1->snapshot_regions[k];
585     mc_mem_region_t region2 = s2->snapshot_regions[k];
586
587     // Preconditions:
588     if (region1->region_type() != simgrid::mc::RegionType::Data)
589       continue;
590
591     xbt_assert(region1->region_type() == region2->region_type());
592     xbt_assert(region1->object_info() == region2->object_info());
593     xbt_assert(region1->object_info());
594
595     const char* name = region1->object_info()->file_name;
596
597 #ifdef MC_DEBUG
598     if (is_diff == 0)
599       xbt_os_walltimer_stop(timer);
600     xbt_os_walltimer_start(timer);
601 #endif
602
603     /* Compare global variables */
604     is_diff =
605       compare_global_variables(region1->object_info(  ), simgrid::mc::AddressSpace::Normal,
606         region1, region2,
607         s1, s2);
608
609     if (is_diff != 0) {
610       XBT_TRACE3(mc, state_diff, num1, num2, "Different global variables");
611 #ifdef MC_DEBUG
612       xbt_os_walltimer_stop(timer);
613       mc_comp_times->global_variables_comparison_time
614         += xbt_os_timer_elapsed(timer);
615       XBT_DEBUG("(%d - %d) Different global variables in %s", num1, num2,
616                 name);
617       errors++;
618 #else
619 #ifdef MC_VERBOSE
620       XBT_VERB("(%d - %d) Different global variables in %s", num1, num2,
621                name);
622 #endif
623
624       reset_heap_information();
625       xbt_os_walltimer_stop(timer);
626       xbt_os_timer_free(timer);
627       xbt_os_walltimer_stop(global_timer);
628       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
629       xbt_os_timer_free(global_timer);
630
631       return 1;
632 #endif
633     }
634   }
635
636 #ifdef MC_DEBUG
637   xbt_os_walltimer_start(timer);
638 #endif
639
640   /* Compare heap */
641   if (mmalloc_compare_heap(s1, s2) > 0) {
642     XBT_TRACE3(mc, state_diff, num1, num2, "Different heap");
643
644 #ifdef MC_DEBUG
645     xbt_os_walltimer_stop(timer);
646     mc_comp_times->heap_comparison_time = xbt_os_timer_elapsed(timer);
647     XBT_DEBUG("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
648     errors++;
649 #else
650
651 #ifdef MC_VERBOSE
652     XBT_VERB("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
653 #endif
654
655     reset_heap_information();
656     xbt_os_walltimer_stop(timer);
657     xbt_os_timer_free(timer);
658     xbt_os_walltimer_stop(global_timer);
659     mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
660     xbt_os_timer_free(global_timer);
661
662     return 1;
663 #endif
664   } else {
665 #ifdef MC_DEBUG
666     xbt_os_walltimer_stop(timer);
667 #endif
668   }
669
670   reset_heap_information();
671
672   xbt_os_walltimer_stop(timer);
673   xbt_os_timer_free(timer);
674
675 #ifdef MC_VERBOSE
676   xbt_os_walltimer_stop(global_timer);
677   mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
678 #endif
679
680   xbt_os_timer_free(global_timer);
681
682 #ifdef MC_DEBUG
683   print_comparison_times();
684 #endif
685
686 #ifdef MC_VERBOSE
687   if (errors || hash_result)
688     XBT_VERB("(%d - %d) Difference found", num1, num2);
689   else
690     XBT_VERB("(%d - %d) No difference found", num1, num2);
691 #endif
692
693 #if defined(MC_DEBUG) && defined(MC_VERBOSE)
694   if (_sg_mc_hash) {
695     // * false positive SHOULD be avoided.
696     // * There MUST not be any false negative.
697
698     XBT_VERB("(%d - %d) State equality hash test is %s %s", num1, num2,
699              (hash_result != 0) == (errors != 0) ? "true" : "false",
700              !hash_result ? "positive" : "negative");
701   }
702 #endif
703
704   return errors > 0 || hash_result;
705
706 }
707
708 /***************************** Statistics *****************************/
709 /*******************************************************************/
710
711 void print_comparison_times()
712 {
713   XBT_DEBUG("*** Comparison times ***");
714   XBT_DEBUG("- Nb processes : %f", mc_comp_times->nb_processes_comparison_time);
715   XBT_DEBUG("- Nb bytes used : %f", mc_comp_times->bytes_used_comparison_time);
716   XBT_DEBUG("- Stacks sizes : %f", mc_comp_times->stacks_sizes_comparison_time);
717   XBT_DEBUG("- GLobal variables : %f", mc_comp_times->global_variables_comparison_time);
718   XBT_DEBUG("- Heap : %f", mc_comp_times->heap_comparison_time);
719   XBT_DEBUG("- Stacks : %f", mc_comp_times->stacks_comparison_time);
720 }
721
722 }