Logo AND Algorithmique Numérique Distribuée

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