Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : get instruction pointer and frame name with libunwind for the compari...
[simgrid.git] / src / mc / mc_compare.c
1 /* Copyright (c) 2008-2012 Da SimGrid Team. All rights reserved.            */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "mc_private.h"
7
8 #include "xbt/mmalloc.h"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_compare, mc,
11                                 "Logging specific to mc_compare");
12
13 static int heap_region_compare(void *d1, void *d2, size_t size);
14
15 static int is_heap_equality(xbt_dynar_t equals, void *a1, void *a2);
16 static size_t heap_ignore_size(void *address);
17
18 static void stack_region_free(stack_region_t s);
19 static void heap_equality_free(heap_equality_t e);
20
21 static int is_stack_ignore_variable(char *frame, char *var_name);
22 static int compare_local_variables(char *s1, char *s2);
23 static int compare_global_variables(int region_type, void *d1, void *d2);
24
25 static size_t heap_ignore_size(void *address){
26   unsigned int cursor = 0;
27   int start = 0;
28   int end = xbt_dynar_length(mc_heap_comparison_ignore) - 1;
29   mc_heap_ignore_region_t region;
30
31   while(start <= end){
32     cursor = (start + end) / 2;
33     region = (mc_heap_ignore_region_t)xbt_dynar_get_as(mc_heap_comparison_ignore, cursor, mc_heap_ignore_region_t);
34     if(region->address == address)
35       return region->size;
36     if(region->address < address)
37       start = cursor + 1;
38     if(region->address > address)
39       end = cursor - 1;   
40   }
41
42   return 0;
43 }
44
45 static int compare_global_variables(int region_type, void *d1, void *d2){
46
47   unsigned int cursor = 0;
48   size_t offset; 
49   int i = 0;
50   global_variable_t current_var; 
51   int pointer_align; 
52   void *addr_pointed1 = NULL, *addr_pointed2 = NULL;
53   int res_compare = 0;
54
55   if(region_type == 1){ /* libsimgrid */
56     xbt_dynar_foreach(mc_global_variables, cursor, current_var){
57       if(current_var->address < start_data_libsimgrid)
58         continue;
59       offset = (char *)current_var->address - (char *)start_data_libsimgrid;
60       i = 0;
61       while(i < current_var->size){
62         if(memcmp((char*)d1 + offset + i, (char*)d2 + offset + i, 1) != 0){
63           pointer_align = (i / sizeof(void*)) * sizeof(void*); 
64           addr_pointed1 = *((void **)((char *)d1 + offset + pointer_align));
65           addr_pointed2 = *((void **)((char *)d2 + offset + pointer_align));
66           if((addr_pointed1 > start_plt_libsimgrid && addr_pointed1 < end_plt_libsimgrid) || (addr_pointed2 > start_plt_libsimgrid && addr_pointed2 < end_plt_libsimgrid)){
67             i = current_var->size;
68             continue;
69           }else{
70             if((addr_pointed1 > std_heap) && ((char *)addr_pointed1 < (char *)std_heap + STD_HEAP_SIZE) && (addr_pointed2 > std_heap) && ((char *)addr_pointed2 < (char *)std_heap + STD_HEAP_SIZE)){
71               res_compare = compare_area(addr_pointed1, addr_pointed2, NULL);
72               if(res_compare == 1){
73                 #ifdef MC_VERBOSE
74                   XBT_VERB("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size);
75                 #endif
76                 return 1;
77               }
78             }else{
79               #ifdef MC_VERBOSE
80                 XBT_VERB("Different global variable in libsimgrid : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size);
81               #endif
82               return 1;
83             }
84            
85           }
86         } 
87         i++;
88       }
89     }
90   }else{ /* binary */
91     xbt_dynar_foreach(mc_global_variables, cursor, current_var){
92       if(current_var->address > start_data_libsimgrid)
93         break;
94       offset = (char *)current_var->address - (char *)start_data_binary;
95       i = 0;
96       while(i < current_var->size){
97         if(memcmp((char*)d1 + offset + i, (char*)d2 + offset + i, 1) != 0){
98           pointer_align = (i / sizeof(void*)) * sizeof(void*); 
99           addr_pointed1 = *((void **)((char *)d1 + offset + pointer_align));
100           addr_pointed2 = *((void **)((char *)d2 + offset + pointer_align));
101           if((addr_pointed1 > start_plt_binary && addr_pointed1 < end_plt_binary) || (addr_pointed2 > start_plt_binary && addr_pointed2 < end_plt_binary)){
102             i = current_var->size;
103             continue;
104           }else{
105             if((addr_pointed1 > std_heap) && ((char *)addr_pointed1 < (char *)std_heap + STD_HEAP_SIZE) && (addr_pointed2 > std_heap) && ((char *)addr_pointed2 < (char *)std_heap + STD_HEAP_SIZE)){
106               res_compare = compare_area(addr_pointed1, addr_pointed2, NULL);
107               if(res_compare == 1){
108                 #ifdef MC_VERBOSE
109                   XBT_VERB("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size);
110                 #endif
111                 return 1;
112               }
113             }else{
114               #ifdef MC_VERBOSE
115                 XBT_VERB("Different global variable in binary : %s at addresses %p - %p (size = %zu)", current_var->name, (char *)d1+offset, (char *)d2+offset, current_var->size);
116               #endif
117               return 1;
118             }
119           }
120         } 
121         i++;
122       }
123       
124     }
125   }
126
127   return 0;
128 }
129
130 static int heap_region_compare(void *d1, void *d2, size_t size){
131   
132   size_t i = 0;
133   
134   for(i=0; i<size; i++){
135     if(memcmp(((char *)d1) + i, ((char *)d2) + i, 1) != 0){
136       if(XBT_LOG_ISENABLED(mc_compare, xbt_log_priority_verbose)){
137         XBT_VERB("Different byte (offset=%zu) (%p - %p) in heap region", i, (char *)d1 + i, (char *)d2 + i);
138       }
139       return 1;
140     }
141   }
142   
143   return 0;
144 }
145
146 static void stack_region_free(stack_region_t s){
147   if(s){
148     xbt_free(s->process_name);
149     xbt_free(s);
150   }
151 }
152
153 void stack_region_free_voidp(void *s){
154   stack_region_free((stack_region_t) * (void **) s);
155 }
156
157 static void heap_equality_free(heap_equality_t e){
158   xbt_free(e);
159 }
160
161 void heap_equality_free_voidp(void *e){
162   heap_equality_free((heap_equality_t) * (void **) e);
163 }
164
165 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall,
166                                    mc_snapshot_t s1, mc_snapshot_t s2){
167   return snapshot_compare(s1, s2);
168 }
169
170 int get_heap_region_index(mc_snapshot_t s){
171   int i = 0;
172   while(i < s->num_reg){
173     switch(s->regions[i]->type){
174     case 0:
175       return i;
176       break;
177     default:
178       i++;
179       break;
180     }
181   }
182   return -1;
183 }
184
185 int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2){
186
187   int raw_mem = (mmalloc_get_current_heap() == raw_heap);
188   
189   MC_SET_RAW_MEM;
190      
191   int errors = 0;
192
193   xbt_os_timer_t global_timer = xbt_os_timer_new();
194   xbt_os_timer_t timer = xbt_os_timer_new();
195
196   xbt_os_timer_start(global_timer);
197
198   #ifdef MC_DEBUG
199     xbt_os_timer_start(timer);
200   #endif
201
202   /* Compare number of processes */
203   if(s1->nb_processes != s2->nb_processes){
204     #ifdef MC_DEBUG
205       xbt_os_timer_stop(timer);
206       mc_comp_times->nb_processes_comparison_time =  xbt_os_timer_elapsed(timer);
207       XBT_DEBUG("Different number of processes : %d - %d", s1->nb_processes, s2->nb_processes);
208       errors++;
209     #else
210       #ifdef MC_VERBOSE
211         XBT_VERB("Different number of processes : %d - %d", s1->nb_processes, s2->nb_processes);
212       #endif
213      
214       xbt_os_timer_free(timer);
215       xbt_os_timer_stop(global_timer);
216       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
217       xbt_os_timer_free(global_timer);
218
219       if(!raw_mem)
220         MC_UNSET_RAW_MEM;
221
222       return 1;
223     #endif
224   }
225
226   #ifdef MC_DEBUG
227     xbt_os_timer_start(timer);
228   #endif
229
230   /* Compare number of bytes used in each heap */
231   if(s1->heap_bytes_used != s2->heap_bytes_used){
232     #ifdef MC_DEBUG
233       xbt_os_timer_stop(timer);
234       mc_comp_times->bytes_used_comparison_time = xbt_os_timer_elapsed(timer);
235       XBT_DEBUG("Different number of bytes used in each heap : %zu - %zu", s1->heap_bytes_used, s2->heap_bytes_used);
236       errors++;
237     #else
238       #ifdef MC_VERBOSE
239         XBT_VERB("Different number of bytes used in each heap : %zu - %zu", s1->heap_bytes_used, s2->heap_bytes_used);
240       #endif
241
242       xbt_os_timer_free(timer);
243       xbt_os_timer_stop(global_timer);
244       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
245       xbt_os_timer_free(global_timer);
246
247       if(!raw_mem)
248         MC_UNSET_RAW_MEM;
249
250       return 1;
251     #endif
252   }else{
253     #ifdef MC_DEBUG
254       xbt_os_timer_stop(timer);
255     #endif
256   }
257   
258   #ifdef MC_DEBUG
259     xbt_os_timer_start(timer);
260   #endif
261   
262   /* Compare size of stacks */
263   int i = 0;
264   size_t size_used1, size_used2;
265   int is_diff = 0;
266   while(i < xbt_dynar_length(s1->stacks)){
267     size_used1 = s1->stack_sizes[i];
268     size_used2 = s2->stack_sizes[i];
269     if(size_used1 != size_used2){
270     #ifdef MC_DEBUG
271       if(is_diff == 0){
272         xbt_os_timer_stop(timer);
273         mc_comp_times->stacks_sizes_comparison_time = xbt_os_timer_elapsed(timer);
274       }
275       XBT_DEBUG("Different size used in stacks : %zu - %zu", size_used1, size_used2);
276       errors++;
277       is_diff = 1;
278     #else
279       #ifdef MC_VERBOSE
280         XBT_VERB("Different size used in stacks : %zu - %zu", size_used1, size_used2);
281       #endif
282  
283       xbt_os_timer_free(timer);
284       xbt_os_timer_stop(global_timer);
285       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
286       xbt_os_timer_free(global_timer);
287
288       if(!raw_mem)
289         MC_UNSET_RAW_MEM;
290
291       return 1;
292     #endif  
293     }
294     i++;
295   }
296
297   #ifdef MC_DEBUG
298     if(is_diff == 0)
299       xbt_os_timer_stop(timer);
300     xbt_os_timer_start(timer);
301   #endif
302
303   int heap_index = 0, data_libsimgrid_index = 0, data_program_index = 0;
304   i = 0;
305   
306   /* Get index of regions */
307   while(i < s1->num_reg){
308     switch(s1->region_type[i]){
309     case 0:
310       heap_index = i;
311       i++;
312       break;
313     case 1:
314       data_libsimgrid_index = i;
315       i++;
316       while( i < s1->num_reg && s1->region_type[i] == 1)
317         i++;
318       break;
319     case 2:
320       data_program_index = i;
321       i++;
322       while( i < s1->num_reg && s1->region_type[i] == 2)
323         i++;
324       break;
325     }
326   }
327
328   /* Init heap information used in heap comparison algorithm */
329   init_heap_information((xbt_mheap_t)s1->regions[heap_index]->data, (xbt_mheap_t)s2->regions[heap_index]->data, s1->to_ignore, s2->to_ignore);
330
331   /* Compare binary global variables */
332   is_diff = compare_global_variables(s1->region_type[data_program_index], s1->regions[data_program_index]->data, s2->regions[data_program_index]->data);
333   if(is_diff != 0){
334     #ifdef MC_DEBUG
335       xbt_os_timer_stop(timer);
336       mc_comp_times->binary_global_variables_comparison_time = xbt_os_timer_elapsed(timer);
337       XBT_DEBUG("Different global variables in binary"); 
338       errors++; 
339     #else
340       #ifdef MC_VERBOSE
341         XBT_VERB("Different global variables in binary"); 
342       #endif
343     
344       xbt_os_timer_free(timer);
345       xbt_os_timer_stop(global_timer);
346       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
347       xbt_os_timer_free(global_timer);
348     
349       if(!raw_mem)
350         MC_UNSET_RAW_MEM;
351
352       return 1;
353     #endif
354   }
355
356   #ifdef MC_DEBUG
357     if(is_diff == 0)
358       xbt_os_timer_stop(timer);
359     xbt_os_timer_start(timer);
360   #endif
361
362   /* Compare libsimgrid global variables */
363     is_diff = compare_global_variables(s1->region_type[data_libsimgrid_index], s1->regions[data_libsimgrid_index]->data, s2->regions[data_libsimgrid_index]->data);
364   if(is_diff != 0){
365     #ifdef MC_DEBUG
366       xbt_os_timer_stop(timer);
367       mc_comp_times->libsimgrid_global_variables_comparison_time = xbt_os_timer_elapsed(timer); 
368       XBT_DEBUG("Different global variables in libsimgrid"); 
369       errors++; 
370     #else
371       #ifdef MC_VERBOSE
372         XBT_VERB("Different global variables in libsimgrid"); 
373       #endif
374     
375       xbt_os_timer_free(timer);
376       xbt_os_timer_stop(global_timer);
377       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
378       xbt_os_timer_free(global_timer);
379     
380       if(!raw_mem)
381         MC_UNSET_RAW_MEM;
382
383       return 1;
384     #endif
385   }  
386
387   #ifdef MC_DEBUG
388     if(is_diff == 0)
389       xbt_os_timer_stop(timer);
390     xbt_os_timer_start(timer);
391   #endif
392
393     /* Stacks comparison */
394     unsigned int  cursor = 0;
395     int diff_local = 0;
396     is_diff = 0;
397     
398     while(cursor < xbt_dynar_length(s1->stacks)){
399       diff_local = compare_local_variables(((mc_snapshot_stack_t)xbt_dynar_get_as(s1->stacks, cursor, mc_snapshot_stack_t))->local_variables->data, ((mc_snapshot_stack_t)xbt_dynar_get_as(s2->stacks, cursor, mc_snapshot_stack_t))->local_variables->data);
400       if(diff_local > 0){
401         #ifdef MC_DEBUG
402           if(is_diff == 0){
403             xbt_os_timer_stop(timer);
404             mc_comp_times->stacks_comparison_time = xbt_os_timer_elapsed(timer); 
405           }
406           XBT_DEBUG("Different local variables between stacks %d", cursor + 1);
407           errors++;
408           is_diff = 1;
409         #else
410         
411           #ifdef MC_VERBOSE
412             XBT_VERB("Different local variables between stacks %d", cursor + 1);
413           #endif
414           
415             reset_heap_information();
416             xbt_os_timer_free(timer);
417             xbt_os_timer_stop(global_timer);
418             mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
419             xbt_os_timer_free(global_timer);
420             
421             if(!raw_mem)
422               MC_UNSET_RAW_MEM;
423             
424             return 1;
425         #endif
426       }
427       cursor++;
428     }
429     
430     #ifdef MC_DEBUG
431       xbt_os_timer_start(timer);
432     #endif
433
434   /* Compare heap */
435  
436   if(mmalloc_compare_heap((xbt_mheap_t)s1->regions[heap_index]->data, (xbt_mheap_t)s2->regions[heap_index]->data)){
437
438     #ifdef MC_DEBUG
439       xbt_os_timer_stop(timer);
440       mc_comp_times->heap_comparison_time = xbt_os_timer_elapsed(timer); 
441       XBT_DEBUG("Different heap (mmalloc_compare)");
442       errors++;
443     #else
444
445       xbt_os_timer_free(timer);
446  
447       #ifdef MC_VERBOSE
448         XBT_VERB("Different heap (mmalloc_compare)");
449       #endif
450        
451       reset_heap_information();
452       xbt_os_timer_stop(global_timer);
453       mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
454       xbt_os_timer_free(global_timer);
455
456       if(!raw_mem)
457         MC_UNSET_RAW_MEM;
458
459       return 1;
460     #endif
461   }else{
462     #ifdef MC_DEBUG
463       xbt_os_timer_stop(timer);
464     #endif
465   }
466
467   reset_heap_information();
468    
469   xbt_os_timer_free(timer);
470
471   #ifdef MC_VERBOSE
472     xbt_os_timer_stop(global_timer);
473     mc_snapshot_comparison_time = xbt_os_timer_elapsed(global_timer);
474   #endif
475
476   xbt_os_timer_free(global_timer);
477
478   #ifdef MC_DEBUG
479     print_comparison_times();
480   #endif
481
482   if(!raw_mem)
483     MC_UNSET_RAW_MEM;
484
485   return errors > 0;
486   
487 }
488
489 static int is_stack_ignore_variable(char *frame, char *var_name){
490
491   unsigned int cursor = 0;
492   int start = 0;
493   int end = xbt_dynar_length(mc_stack_comparison_ignore) - 1;
494   mc_stack_ignore_variable_t current_var;
495
496   while(start <= end){
497     cursor = (start + end) / 2;
498     current_var = (mc_stack_ignore_variable_t)xbt_dynar_get_as(mc_stack_comparison_ignore, cursor, mc_stack_ignore_variable_t);
499     if(strcmp(current_var->frame, frame) == 0 || strcmp(current_var->frame, "*") == 0){
500       if(strcmp(current_var->var_name, var_name) == 0)
501         return 1;
502       if(strcmp(current_var->var_name, var_name) < 0)
503         start = cursor + 1;
504       if(strcmp(current_var->var_name, var_name) > 0)
505         end = cursor - 1;
506     }else if(strcmp(current_var->frame, frame) < 0){
507       start = cursor + 1;
508     }else if(strcmp(current_var->frame, frame) > 0){
509       end = cursor - 1; 
510     }
511   }
512
513   return 0;
514 }
515
516 static int compare_local_variables(char *s1, char *s2){
517   
518   xbt_dynar_t tokens1 = xbt_str_split(s1, NULL);
519   xbt_dynar_t tokens2 = xbt_str_split(s2, NULL);
520
521   xbt_dynar_t s_tokens1, s_tokens2;
522   unsigned int cursor = 0;
523   void *addr1, *addr2;
524   char *frame_name1 = NULL, *frame_name2 = NULL;
525   int res_compare = 0;
526
527   #ifdef MC_VERBOSE
528     char *var_name;
529   #endif
530
531   while(cursor < xbt_dynar_length(tokens1)){
532     s_tokens1 = xbt_str_split(xbt_dynar_get_as(tokens1, cursor, char *), "=");
533     s_tokens2 = xbt_str_split(xbt_dynar_get_as(tokens2, cursor, char *), "=");
534     if(xbt_dynar_length(s_tokens1) > 1 && xbt_dynar_length(s_tokens2) > 1){
535       #ifdef MC_VERBOSE
536         var_name = xbt_dynar_get_as(s_tokens1, 0, char *);
537       #endif
538       if((strcmp(xbt_dynar_get_as(s_tokens1, 0, char *), "frame_name") == 0) && (strcmp(xbt_dynar_get_as(s_tokens2, 0, char *), "frame_name") == 0)){
539         xbt_free(frame_name1);
540         xbt_free(frame_name2);
541         frame_name1 = strdup(xbt_dynar_get_as(s_tokens1, 1, char *));
542         frame_name2 = strdup(xbt_dynar_get_as(s_tokens2, 1, char *));
543       }
544       addr1 = (void *) strtoul(xbt_dynar_get_as(s_tokens1, 1, char *), NULL, 16);
545       addr2 = (void *) strtoul(xbt_dynar_get_as(s_tokens2, 1, char *), NULL, 16);
546       if(addr1 > std_heap && (char *)addr1 <= (char *)std_heap + STD_HEAP_SIZE && addr2 > std_heap && (char *)addr2 <= (char *)std_heap + STD_HEAP_SIZE){
547         res_compare = compare_area(addr1, addr2, NULL);
548         if(res_compare == 1){
549           if(is_stack_ignore_variable(frame_name1, xbt_dynar_get_as(s_tokens1, 0, char *)) && is_stack_ignore_variable(frame_name2, xbt_dynar_get_as(s_tokens2, 0, char *))){
550             xbt_dynar_free(&s_tokens1);
551             xbt_dynar_free(&s_tokens2);
552             cursor++;
553             continue;
554           }else {
555             #ifdef MC_VERBOSE
556               XBT_VERB("Different local variable : %s at addresses %p - %p", var_name, addr1, addr2);
557             #endif
558             xbt_dynar_free(&s_tokens1);
559             xbt_dynar_free(&s_tokens2);
560             xbt_dynar_free(&tokens1);
561             xbt_dynar_free(&tokens2);
562             xbt_free(frame_name1);
563             xbt_free(frame_name2);
564             return 1;
565           }
566         }
567       }else{
568         if(strcmp(xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *)) != 0){
569           if(is_stack_ignore_variable(frame_name1, xbt_dynar_get_as(s_tokens1, 0, char *)) && is_stack_ignore_variable(frame_name2, xbt_dynar_get_as(s_tokens2, 0, char *))){
570             xbt_dynar_free(&s_tokens1);
571             xbt_dynar_free(&s_tokens2);
572             cursor++;
573             continue;
574           }else {
575             #ifdef MC_VERBOSE
576               XBT_VERB("Different local variable : %s (%s - %s)", var_name, xbt_dynar_get_as(s_tokens1, 1, char *), xbt_dynar_get_as(s_tokens2, 1, char *));
577             #endif
578             xbt_dynar_free(&s_tokens1);
579             xbt_dynar_free(&s_tokens2);
580             xbt_dynar_free(&tokens1);
581             xbt_dynar_free(&tokens2);
582             xbt_free(frame_name1);
583             xbt_free(frame_name2);
584             return 1;
585           }
586         }
587       }
588     }
589     xbt_dynar_free(&s_tokens1);
590     xbt_dynar_free(&s_tokens2);
591          
592     cursor++;
593   }
594
595   xbt_free(frame_name1);
596   xbt_free(frame_name2);
597   xbt_dynar_free(&tokens1);
598   xbt_dynar_free(&tokens2);
599   return 0;
600   
601 }
602
603 static int is_heap_equality(xbt_dynar_t equals, void *a1, void *a2){
604
605   unsigned int cursor = 0;
606   int start = 0;
607   int end = xbt_dynar_length(equals) - 1;
608   heap_equality_t current_equality;
609
610   while(start <= end){
611     cursor = (start + end) / 2;
612     current_equality = (heap_equality_t)xbt_dynar_get_as(equals, cursor, heap_equality_t);
613     if(current_equality->address1 == a1){
614       if(current_equality->address2 == a2)
615         return 1;
616       if(current_equality->address2 < a2)
617         start = cursor + 1;
618       if(current_equality->address2 > a2)
619         end = cursor - 1;
620     }
621     if(current_equality->address1 < a1)
622       start = cursor + 1;
623     if(current_equality->address1 > a1)
624       end = cursor - 1; 
625   }
626
627   return 0;
628
629 }
630
631 int MC_compare_snapshots(void *s1, void *s2){
632   
633   MC_ignore_stack("self", "simcall_BODY_mc_snapshot");
634
635   return simcall_mc_compare_snapshots(s1, s2);
636
637 }
638
639 void print_comparison_times(){
640   XBT_DEBUG("*** Comparison times ***");
641   XBT_DEBUG("- Nb processes : %f", mc_comp_times->nb_processes_comparison_time);
642   XBT_DEBUG("- Nb bytes used : %f", mc_comp_times->bytes_used_comparison_time);
643   XBT_DEBUG("- Stacks sizes : %f", mc_comp_times->stacks_sizes_comparison_time);
644   XBT_DEBUG("- Binary global variables : %f", mc_comp_times->binary_global_variables_comparison_time);
645   XBT_DEBUG("- Libsimgrid global variables : %f", mc_comp_times->libsimgrid_global_variables_comparison_time);
646   XBT_DEBUG("- Heap : %f", mc_comp_times->heap_comparison_time);
647   XBT_DEBUG("- Stacks : %f", mc_comp_times->stacks_comparison_time);
648 }