Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1405e259ea9d02676fe72ca67bbc610d0eb0a722
[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_by_name, 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_by_name, 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           return 1;
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           return 1;
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 < (char*) object_info->start_rw
282       || (char*) current_var->address > (char*) object_info->end_rw)
283        continue;
284
285     offset = (char *)current_var->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   /* Init heap information used in heap comparison algorithm */
444   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);
445   if(res_init == -1){
446      #ifdef MC_DEBUG
447     XBT_DEBUG("(%d - %d) Different heap information", num1, num2); 
448         errors++; 
449       #else
450         #ifdef MC_VERBOSE
451         XBT_VERB("(%d - %d) Different heap information", num1, num2); 
452         #endif
453
454         xbt_os_walltimer_stop(global_timer);
455         mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
456         xbt_os_timer_free(global_timer);
457
458         return 1;
459       #endif
460   }
461
462   #ifdef MC_DEBUG
463     xbt_os_walltimer_start(timer);
464   #endif
465
466   /* Stacks comparison */
467   unsigned int  cursor = 0;
468   int diff_local = 0;
469   is_diff = 0;
470   mc_snapshot_stack_t stack1, stack2;
471     
472   while(cursor < xbt_dynar_length(s1->stacks)){
473     stack1 = (mc_snapshot_stack_t)xbt_dynar_get_as(s1->stacks, cursor, mc_snapshot_stack_t);
474     stack2 = (mc_snapshot_stack_t)xbt_dynar_get_as(s2->stacks, cursor, mc_snapshot_stack_t);
475     diff_local = compare_local_variables(stack1, stack2, s1->regions[0]->data, s2->regions[0]->data);
476     if(diff_local > 0){
477       #ifdef MC_DEBUG
478         if(is_diff == 0){
479           xbt_os_walltimer_stop(timer);
480           mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer);
481         }
482         XBT_DEBUG("(%d - %d) Different local variables between stacks %d", num1, num2, cursor + 1);
483         errors++;
484         is_diff = 1;
485       #else
486         
487         #ifdef MC_VERBOSE
488         XBT_VERB("(%d - %d) Different local variables between stacks %d", num1, num2, cursor + 1);
489         #endif
490           
491         reset_heap_information();
492         xbt_os_walltimer_stop(timer);
493         xbt_os_timer_free(timer);
494         xbt_os_walltimer_stop(global_timer);
495         mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
496         xbt_os_timer_free(global_timer);
497  
498         return 1;
499       #endif
500     }
501     cursor++;
502   }
503
504
505
506  const char* names[3] = { "?", "libsimgrid", "binary" };
507 #ifdef MC_DEBUG
508  double *times[3] = {
509    NULL,
510    &mc_comp_times->libsimgrid_global_variables_comparison_time,
511    &mc_comp_times->binary_global_variables_comparison_time
512  };
513 #endif
514
515  int k=0;
516  for(k=2; k!=0; --k) {
517     #ifdef MC_DEBUG
518       if(is_diff == 0)
519         xbt_os_walltimer_stop(timer);
520       xbt_os_walltimer_start(timer);
521     #endif
522
523   /* Compare global variables */
524   is_diff = compare_global_variables(k, s1->regions[k], s2->regions[k]);
525   if(is_diff != 0){
526     #ifdef MC_DEBUG
527       xbt_os_walltimer_stop(timer);
528       *times[k] = xbt_os_timer_elapsed(timer);
529       XBT_DEBUG("(%d - %d) Different global variables in %s", num1, num2, names[k]);
530       errors++;
531     #else
532       #ifdef MC_VERBOSE
533       XBT_VERB("(%d - %d) Different global variables in %s", num1, num2, names[k]);
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  }
547
548   #ifdef MC_DEBUG
549     xbt_os_walltimer_start(timer);
550   #endif
551
552   /* Compare heap */
553     if(mmalloc_compare_heap((xbt_mheap_t)s1->regions[0]->data,
554                             (xbt_mheap_t)s2->regions[0]->data,
555                             mc_libsimgrid_info,
556                             mc_binary_info) > 0){
557
558     #ifdef MC_DEBUG
559       xbt_os_walltimer_stop(timer);
560       mc_comp_times->heap_comparison_time = xbt_os_timer_elapsed(timer); 
561       XBT_DEBUG("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
562       errors++;
563     #else
564  
565       #ifdef MC_VERBOSE
566       XBT_VERB("(%d - %d) Different heap (mmalloc_compare)", num1, num2);
567       #endif
568        
569       reset_heap_information();
570       xbt_os_walltimer_stop(timer);
571       xbt_os_timer_free(timer);
572       xbt_os_walltimer_stop(global_timer);
573       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
574       xbt_os_timer_free(global_timer);
575
576       return 1;
577     #endif
578   }else{
579     #ifdef MC_DEBUG
580       xbt_os_walltimer_stop(timer);
581     #endif
582   }
583
584   reset_heap_information();
585   
586   xbt_os_walltimer_stop(timer);
587   xbt_os_timer_free(timer);
588
589   #ifdef MC_VERBOSE
590     xbt_os_walltimer_stop(global_timer);
591     mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
592   #endif
593
594   xbt_os_timer_free(global_timer);
595
596   #ifdef MC_DEBUG
597     print_comparison_times();
598   #endif
599
600 #ifdef MC_VERBOSE
601    if(errors==0)
602      XBT_VERB("(%d - %d) No difference found", num1, num2);
603 #endif
604   return errors > 0;
605   
606 }
607
608 /***************************** Statistics *****************************/
609 /*******************************************************************/
610
611 void print_comparison_times(){
612   XBT_DEBUG("*** Comparison times ***");
613   XBT_DEBUG("- Nb processes : %f", mc_comp_times->nb_processes_comparison_time);
614   XBT_DEBUG("- Nb bytes used : %f", mc_comp_times->bytes_used_comparison_time);
615   XBT_DEBUG("- Stacks sizes : %f", mc_comp_times->stacks_sizes_comparison_time);
616   XBT_DEBUG("- Binary global variables : %f", mc_comp_times->binary_global_variables_comparison_time);
617   XBT_DEBUG("- Libsimgrid global variables : %f", mc_comp_times->libsimgrid_global_variables_comparison_time);
618   XBT_DEBUG("- Heap : %f", mc_comp_times->heap_comparison_time);
619   XBT_DEBUG("- Stacks : %f", mc_comp_times->stacks_comparison_time);
620 }
621
622 /**************************** MC snapshot compare simcall **************************/
623 /***********************************************************************************/
624
625 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall,
626                                    mc_snapshot_t s1, mc_snapshot_t s2){
627   return snapshot_compare(s1, s2);
628 }
629
630 int MC_compare_snapshots(void *s1, void *s2){
631   
632   MC_ignore_local_variable("self", "simcall_BODY_mc_snapshot");
633   return simcall_mc_compare_snapshots(s1, s2);
634
635 }