Logo AND Algorithmique Numérique Distribuée

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