Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Avoid region lookup when we know we are in the heap
[simgrid.git] / src / mc / mc_diff.c
1 /* mc_diff - Memory snapshooting and comparison                             */
2
3 /* Copyright (c) 2008-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt/ex_interface.h"   /* internals of backtrace setup */
10 #include "xbt/str.h"
11 #include "mc/mc.h"
12 #include "xbt/mmalloc.h"
13 #include "mc/datatypes.h"
14 #include "mc/mc_private.h"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_diff, xbt,
17                                 "Logging specific to mc_diff in mc");
18
19 xbt_dynar_t mc_heap_comparison_ignore;
20 xbt_dynar_t stacks_areas;
21 void *maestro_stack_start, *maestro_stack_end;
22
23
24 /********************************* Backtrace ***********************************/
25 /******************************************************************************/
26
27 static void mmalloc_backtrace_block_display(void *heapinfo, int block)
28 {
29
30   /* xbt_ex_t e; */
31
32   /* if (((malloc_info *)heapinfo)[block].busy_block.bt_size == 0) { */
33   /*   fprintf(stderr, "No backtrace available for that block, sorry.\n"); */
34   /*   return; */
35   /* } */
36
37   /* memcpy(&e.bt,&(((malloc_info *)heapinfo)[block].busy_block.bt),sizeof(void*)*XBT_BACKTRACE_SIZE); */
38   /* e.used = ((malloc_info *)heapinfo)[block].busy_block.bt_size; */
39
40   /* xbt_ex_setup_backtrace(&e); */
41   /* if (e.used == 0) { */
42   /*   fprintf(stderr, "(backtrace not set)\n"); */
43   /* } else if (e.bt_strings == NULL) { */
44   /*   fprintf(stderr, "(backtrace not ready to be computed. %s)\n",xbt_binary_name?"Dunno why":"xbt_binary_name not setup yet"); */
45   /* } else { */
46   /*   int i; */
47
48   /*   fprintf(stderr, "Backtrace of where the block %d was malloced (%d frames):\n", block ,e.used); */
49   /*   for (i = 0; i < e.used; i++)       /\* no need to display "xbt_backtrace_display" *\/{ */
50   /*     fprintf(stderr, "%d ---> %s\n",i, e.bt_strings[i] + 4); */
51   /*   } */
52   /* } */
53 }
54
55 static void mmalloc_backtrace_fragment_display(void *heapinfo, int block,
56                                                int frag)
57 {
58
59   /* xbt_ex_t e; */
60
61   /* memcpy(&e.bt,&(((malloc_info *)heapinfo)[block].busy_frag.bt[frag]),sizeof(void*)*XBT_BACKTRACE_SIZE); */
62   /* e.used = XBT_BACKTRACE_SIZE; */
63
64   /* xbt_ex_setup_backtrace(&e); */
65   /* if (e.used == 0) { */
66   /*   fprintf(stderr, "(backtrace not set)\n"); */
67   /* } else if (e.bt_strings == NULL) { */
68   /*   fprintf(stderr, "(backtrace not ready to be computed. %s)\n",xbt_binary_name?"Dunno why":"xbt_binary_name not setup yet"); */
69   /* } else { */
70   /*   int i; */
71
72   /*   fprintf(stderr, "Backtrace of where the fragment %d in block %d was malloced (%d frames):\n", frag, block ,e.used); */
73   /*   for (i = 0; i < e.used; i++)       /\* no need to display "xbt_backtrace_display" *\/{ */
74   /*     fprintf(stderr, "%d ---> %s\n",i, e.bt_strings[i] + 4); */
75   /*   } */
76   /* } */
77
78 }
79
80 static void mmalloc_backtrace_display(void *addr)
81 {
82
83   /* size_t block, frag_nb; */
84   /* int type; */
85
86   /* xbt_mheap_t heap = __mmalloc_current_heap ?: (xbt_mheap_t) mmalloc_preinit(); */
87
88   /* block = (((char*) (addr) - (char*) heap -> heapbase) / BLOCKSIZE + 1); */
89
90   /* type = heap->heapinfo[block].type; */
91
92   /* switch(type){ */
93   /* case -1 : /\* Free block *\/ */
94   /*   fprintf(stderr, "Asked to display the backtrace of a block that is free. I'm puzzled\n"); */
95   /*   xbt_abort(); */
96   /*   break;  */
97   /* case 0: /\* Large block *\/ */
98   /*   mmalloc_backtrace_block_display(heap->heapinfo, block); */
99   /*   break; */
100   /* default: /\* Fragmented block *\/ */
101   /*   frag_nb = RESIDUAL(addr, BLOCKSIZE) >> type; */
102   /*   if(heap->heapinfo[block].busy_frag.frag_size[frag_nb] == -1){ */
103   /*     fprintf(stderr , "Asked to display the backtrace of a fragment that is free. I'm puzzled\n"); */
104   /*     xbt_abort(); */
105   /*   } */
106   /*   mmalloc_backtrace_fragment_display(heap->heapinfo, block, frag_nb); */
107   /*   break; */
108   /* } */
109 }
110
111
112 static int compare_backtrace(int b1, int f1, int b2, int f2)
113 {
114   /*int i = 0;
115      if(f1 != -1){
116      for(i=0; i< XBT_BACKTRACE_SIZE; i++){
117      if(heapinfo1[b1].busy_frag.bt[f1][i] != heapinfo2[b2].busy_frag.bt[f2][i]){
118      //mmalloc_backtrace_fragment_display((void*)heapinfo1, b1, f1);
119      //mmalloc_backtrace_fragment_display((void*)heapinfo2, b2, f2);
120      return 1;
121      }
122      }
123      }else{
124      for(i=0; i< heapinfo1[b1].busy_block.bt_size; i++){
125      if(heapinfo1[b1].busy_block.bt[i] != heapinfo2[b2].busy_block.bt[i]){
126      //mmalloc_backtrace_block_display((void*)heapinfo1, b1);
127      //mmalloc_backtrace_block_display((void*)heapinfo2, b2);
128      return 1;
129      }
130      }
131      } */
132   return 0;
133 }
134
135
136 /*********************************** Heap comparison ***********************************/
137 /***************************************************************************************/
138
139 typedef char *type_name;
140
141 struct s_mc_diff {
142   /** \brief Base address of the real heap */
143   void *s_heap;
144   size_t heaplimit;
145   // Number of blocks in the heaps:
146   size_t heapsize1, heapsize2;
147   xbt_dynar_t to_ignore1, to_ignore2;
148   s_heap_area_t *equals_to1, *equals_to2;
149   dw_type_t *types1, *types2;
150   size_t available;
151 };
152
153 #define equals_to1_(i,j) equals_to1[ MAX_FRAGMENT_PER_BLOCK*(i) + (j)]
154 #define equals_to2_(i,j) equals_to2[ MAX_FRAGMENT_PER_BLOCK*(i) + (j)]
155 #define types1_(i,j) types1[ MAX_FRAGMENT_PER_BLOCK*(i) + (j)]
156 #define types2_(i,j) types2[ MAX_FRAGMENT_PER_BLOCK*(i) + (j)]
157
158 __thread struct s_mc_diff *mc_diff_info = NULL;
159
160 /*********************************** Free functions ************************************/
161
162 static void heap_area_pair_free(heap_area_pair_t pair)
163 {
164   xbt_free(pair);
165   pair = NULL;
166 }
167
168 static void heap_area_pair_free_voidp(void *d)
169 {
170   heap_area_pair_free((heap_area_pair_t) * (void **) d);
171 }
172
173 static void heap_area_free(heap_area_t area)
174 {
175   xbt_free(area);
176   area = NULL;
177 }
178
179 /************************************************************************************/
180
181 static s_heap_area_t make_heap_area(int block, int fragment)
182 {
183   s_heap_area_t area;
184   area.valid = 1;
185   area.block = block;
186   area.fragment = fragment;
187   return area;
188 }
189
190
191 static int is_new_heap_area_pair(xbt_dynar_t list, int block1, int fragment1,
192                                  int block2, int fragment2)
193 {
194
195   unsigned int cursor = 0;
196   heap_area_pair_t current_pair;
197
198   xbt_dynar_foreach(list, cursor, current_pair) {
199     if (current_pair->block1 == block1 && current_pair->block2 == block2
200         && current_pair->fragment1 == fragment1
201         && current_pair->fragment2 == fragment2)
202       return 0;
203   }
204
205   return 1;
206 }
207
208 static int add_heap_area_pair(xbt_dynar_t list, int block1, int fragment1,
209                               int block2, int fragment2)
210 {
211
212   if (is_new_heap_area_pair(list, block1, fragment1, block2, fragment2)) {
213     heap_area_pair_t pair = NULL;
214     pair = xbt_new0(s_heap_area_pair_t, 1);
215     pair->block1 = block1;
216     pair->fragment1 = fragment1;
217     pair->block2 = block2;
218     pair->fragment2 = fragment2;
219
220     xbt_dynar_push(list, &pair);
221
222     return 1;
223   }
224
225   return 0;
226 }
227
228 static ssize_t heap_comparison_ignore_size(xbt_dynar_t ignore_list,
229                                            void *address)
230 {
231
232   unsigned int cursor = 0;
233   int start = 0;
234   int end = xbt_dynar_length(ignore_list) - 1;
235   mc_heap_ignore_region_t region;
236
237   while (start <= end) {
238     cursor = (start + end) / 2;
239     region =
240         (mc_heap_ignore_region_t) xbt_dynar_get_as(ignore_list, cursor,
241                                                    mc_heap_ignore_region_t);
242     if (region->address == address)
243       return region->size;
244     if (region->address < address)
245       start = cursor + 1;
246     if (region->address > address)
247       end = cursor - 1;
248   }
249
250   return -1;
251 }
252
253 static int is_stack(void *address)
254 {
255   unsigned int cursor = 0;
256   stack_region_t stack;
257
258   xbt_dynar_foreach(stacks_areas, cursor, stack) {
259     if (address == stack->address)
260       return 1;
261   }
262
263   return 0;
264 }
265
266 // TODO, this should depend on the snapshot?
267 static int is_block_stack(int block)
268 {
269   unsigned int cursor = 0;
270   stack_region_t stack;
271
272   xbt_dynar_foreach(stacks_areas, cursor, stack) {
273     if (block == stack->block)
274       return 1;
275   }
276
277   return 0;
278 }
279
280 static void match_equals(struct s_mc_diff *state, xbt_dynar_t list)
281 {
282
283   unsigned int cursor = 0;
284   heap_area_pair_t current_pair;
285
286   xbt_dynar_foreach(list, cursor, current_pair) {
287
288     if (current_pair->fragment1 != -1) {
289
290       state->equals_to1_(current_pair->block1, current_pair->fragment1) =
291           make_heap_area(current_pair->block2, current_pair->fragment2);
292       state->equals_to2_(current_pair->block2, current_pair->fragment2) =
293           make_heap_area(current_pair->block1, current_pair->fragment1);
294
295     } else {
296
297       state->equals_to1_(current_pair->block1, 0) =
298           make_heap_area(current_pair->block2, current_pair->fragment2);
299       state->equals_to2_(current_pair->block2, 0) =
300           make_heap_area(current_pair->block1, current_pair->fragment1);
301
302     }
303
304   }
305 }
306
307 /** Check whether two blocks are known to be matching
308  *
309  *  @param state  State used
310  *  @param b1     Block of state 1
311  *  @param b2     Block of state 2
312  *  @return       if the blocks are known to be matching
313  */
314 static int equal_blocks(struct s_mc_diff *state, int b1, int b2)
315 {
316
317   if (state->equals_to1_(b1, 0).block == b2
318       && state->equals_to2_(b2, 0).block == b1)
319     return 1;
320
321   return 0;
322 }
323
324 /** Check whether two fragments are known to be matching
325  *
326  *  @param state  State used
327  *  @param b1     Block of state 1
328  *  @param f1     Fragment of state 1
329  *  @param b2     Block of state 2
330  *  @param f2     Fragment of state 2
331  *  @return       if the fragments are known to be matching
332  */
333 static int equal_fragments(struct s_mc_diff *state, int b1, int f1, int b2,
334                            int f2)
335 {
336
337   if (state->equals_to1_(b1, f1).block == b2
338       && state->equals_to1_(b1, f1).fragment == f2
339       && state->equals_to2_(b2, f2).block == b1
340       && state->equals_to2_(b2, f2).fragment == f1)
341     return 1;
342
343   return 0;
344 }
345
346 int init_heap_information(xbt_mheap_t heap1, xbt_mheap_t heap2, xbt_dynar_t i1,
347                           xbt_dynar_t i2)
348 {
349   if (mc_diff_info == NULL) {
350     mc_diff_info = xbt_new0(struct s_mc_diff, 1);
351     mc_diff_info->equals_to1 = NULL;
352     mc_diff_info->equals_to2 = NULL;
353     mc_diff_info->types1 = NULL;
354     mc_diff_info->types2 = NULL;
355   }
356   struct s_mc_diff *state = mc_diff_info;
357
358   if ((((struct mdesc *) heap1)->heaplimit !=
359        ((struct mdesc *) heap2)->heaplimit)
360       ||
361       ((((struct mdesc *) heap1)->heapsize !=
362         ((struct mdesc *) heap2)->heapsize)))
363     return -1;
364
365   state->heaplimit = ((struct mdesc *) heap1)->heaplimit;
366
367   // Mamailloute in order to find the base address of the main heap:
368   state->s_heap =
369       (char *) mmalloc_get_current_heap() - STD_HEAP_SIZE - xbt_pagesize;
370
371   state->heapsize1 = heap1->heapsize;
372   state->heapsize2 = heap2->heapsize;
373
374   state->to_ignore1 = i1;
375   state->to_ignore2 = i2;
376
377   if (state->heaplimit > state->available) {
378     state->equals_to1 =
379         realloc(state->equals_to1,
380                 state->heaplimit * MAX_FRAGMENT_PER_BLOCK *
381                 sizeof(s_heap_area_t));
382     state->types1 =
383         realloc(state->types1,
384                 state->heaplimit * MAX_FRAGMENT_PER_BLOCK *
385                 sizeof(type_name *));
386     state->equals_to2 =
387         realloc(state->equals_to2,
388                 state->heaplimit * MAX_FRAGMENT_PER_BLOCK *
389                 sizeof(s_heap_area_t));
390     state->types2 =
391         realloc(state->types2,
392                 state->heaplimit * MAX_FRAGMENT_PER_BLOCK *
393                 sizeof(type_name *));
394     state->available = state->heaplimit;
395   }
396
397   memset(state->equals_to1, 0,
398          state->heaplimit * MAX_FRAGMENT_PER_BLOCK * sizeof(s_heap_area_t));
399   memset(state->equals_to2, 0,
400          state->heaplimit * MAX_FRAGMENT_PER_BLOCK * sizeof(s_heap_area_t));
401   memset(state->types1, 0,
402          state->heaplimit * MAX_FRAGMENT_PER_BLOCK * sizeof(type_name *));
403   memset(state->types2, 0,
404          state->heaplimit * MAX_FRAGMENT_PER_BLOCK * sizeof(type_name *));
405
406   return 0;
407
408 }
409
410 void reset_heap_information()
411 {
412
413 }
414
415 int mmalloc_compare_heap(mc_snapshot_t snapshot1, mc_snapshot_t snapshot2)
416 {
417
418   struct s_mc_diff *state = mc_diff_info;
419
420   /* Start comparison */
421   size_t i1, i2, j1, j2, k;
422   void *addr_block1, *addr_block2, *addr_frag1, *addr_frag2;
423   int nb_diff1 = 0, nb_diff2 = 0;
424
425   xbt_dynar_t previous =
426       xbt_dynar_new(sizeof(heap_area_pair_t), heap_area_pair_free_voidp);
427
428   int equal, res_compare = 0;
429
430   /* Check busy blocks */
431
432   i1 = 1;
433
434   malloc_info heapinfo_temp1, heapinfo_temp2;
435   malloc_info heapinfo_temp2b;
436
437   mc_mem_region_t heap_region1 = snapshot1->regions[0];
438   mc_mem_region_t heap_region2 = snapshot2->regions[0];
439
440   // This is in snapshot do not use them directly:
441   malloc_info* heapinfos1 = mc_snapshot_read_pointer(&((xbt_mheap_t)std_heap)->heapinfo, snapshot1);
442   malloc_info* heapinfos2 = mc_snapshot_read_pointer(&((xbt_mheap_t)std_heap)->heapinfo, snapshot2);
443
444   while (i1 <= state->heaplimit) {
445
446     // TODO, lookup in the correct region in order to speed it up:
447     malloc_info* heapinfo1 = mc_snapshot_read_region(&heapinfos1[i1], heap_region1, &heapinfo_temp1, sizeof(malloc_info));
448     malloc_info* heapinfo2 = mc_snapshot_read_region(&heapinfos2[i1], heap_region2, &heapinfo_temp2, sizeof(malloc_info));
449
450     if (heapinfo1->type == -1) {      /* Free block */
451       i1++;
452       continue;
453     }
454
455     addr_block1 =
456         ((void *) (((ADDR2UINT(i1)) - 1) * BLOCKSIZE +
457                    (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
458
459     if (heapinfo1->type == 0) {       /* Large block */
460
461       if (is_stack(addr_block1)) {
462         for (k = 0; k < heapinfo1->busy_block.size; k++)
463           state->equals_to1_(i1 + k, 0) = make_heap_area(i1, -1);
464         for (k = 0; k < heapinfo2->busy_block.size; k++)
465           state->equals_to2_(i1 + k, 0) = make_heap_area(i1, -1);
466         i1 += heapinfo1->busy_block.size;
467         continue;
468       }
469
470       if (state->equals_to1_(i1, 0).valid) {
471         i1++;
472         continue;
473       }
474
475       i2 = 1;
476       equal = 0;
477       res_compare = 0;
478
479       /* Try first to associate to same block in the other heap */
480       if (heapinfo2->type == heapinfo1->type) {
481
482         if (state->equals_to2_(i1, 0).valid == 0) {
483
484           addr_block2 =
485               ((void *) (((ADDR2UINT(i1)) - 1) * BLOCKSIZE +
486                          (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
487
488           res_compare =
489               compare_heap_area(addr_block1, addr_block2, snapshot1, snapshot2,
490                                 NULL, NULL, 0);
491
492           if (res_compare != 1) {
493             for (k = 1; k < heapinfo2->busy_block.size; k++)
494               state->equals_to2_(i1 + k, 0) = make_heap_area(i1, -1);
495             for (k = 1; k < heapinfo1->busy_block.size; k++)
496               state->equals_to1_(i1 + k, 0) = make_heap_area(i1, -1);
497             equal = 1;
498             i1 += heapinfo1->busy_block.size;
499           }
500
501           xbt_dynar_reset(previous);
502
503         }
504
505       }
506
507       while (i2 <= state->heaplimit && !equal) {
508
509         addr_block2 =
510             ((void *) (((ADDR2UINT(i2)) - 1) * BLOCKSIZE +
511                        (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
512
513         if (i2 == i1) {
514           i2++;
515           continue;
516         }
517
518         malloc_info* heapinfo2b = mc_snapshot_read_region(&heapinfos2[i2], heap_region2, &heapinfo_temp2b, sizeof(malloc_info));
519
520         if (heapinfo2b->type != 0) {
521           i2++;
522           continue;
523         }
524
525         if (state->equals_to2_(i2, 0).valid) {
526           i2++;
527           continue;
528         }
529
530         res_compare =
531             compare_heap_area(addr_block1, addr_block2, snapshot1, snapshot2,
532                               NULL, NULL, 0);
533
534         if (res_compare != 1) {
535           for (k = 1; k < heapinfo2b->busy_block.size; k++)
536             state->equals_to2_(i2 + k, 0) = make_heap_area(i1, -1);
537           for (k = 1; k < heapinfo1->busy_block.size; k++)
538             state->equals_to1_(i1 + k, 0) = make_heap_area(i2, -1);
539           equal = 1;
540           i1 += heapinfo1->busy_block.size;
541         }
542
543         xbt_dynar_reset(previous);
544
545         i2++;
546
547       }
548
549       if (!equal) {
550         XBT_DEBUG("Block %zu not found (size_used = %zu, addr = %p)", i1,
551                   heapinfo1->busy_block.busy_size, addr_block1);
552         i1 = state->heaplimit + 1;
553         nb_diff1++;
554         //i1++;
555       }
556
557     } else {                    /* Fragmented block */
558
559       for (j1 = 0; j1 < (size_t) (BLOCKSIZE >> heapinfo1->type); j1++) {
560
561         if (heapinfo1->busy_frag.frag_size[j1] == -1) /* Free fragment */
562           continue;
563
564         if (state->equals_to1_(i1, j1).valid)
565           continue;
566
567         addr_frag1 =
568             (void *) ((char *) addr_block1 + (j1 << heapinfo1->type));
569
570         i2 = 1;
571         equal = 0;
572
573         /* Try first to associate to same fragment in the other heap */
574         if (heapinfo2->type == heapinfo1->type) {
575
576           if (state->equals_to2_(i1, j1).valid == 0) {
577
578             addr_block2 =
579                 ((void *) (((ADDR2UINT(i1)) - 1) * BLOCKSIZE +
580                            (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
581             addr_frag2 =
582                 (void *) ((char *) addr_block2 +
583                           (j1 << ((xbt_mheap_t) state->s_heap)->heapinfo[i1].
584                            type));
585
586             res_compare =
587                 compare_heap_area(addr_frag1, addr_frag2, snapshot1, snapshot2,
588                                   NULL, NULL, 0);
589
590             if (res_compare != 1)
591               equal = 1;
592
593             xbt_dynar_reset(previous);
594
595           }
596
597         }
598
599         while (i2 <= state->heaplimit && !equal) {
600
601           malloc_info* heapinfo2b = mc_snapshot_read_region(&heapinfos2[i2], heap_region2, &heapinfo_temp2b, sizeof(malloc_info));
602           if (heapinfo2b->type <= 0) {
603             i2++;
604             continue;
605           }
606
607           for (j2 = 0; j2 < (size_t) (BLOCKSIZE >> heapinfo2b->type);
608                j2++) {
609
610             if (i2 == i1 && j2 == j1)
611               continue;
612
613             if (state->equals_to2_(i2, j2).valid)
614               continue;
615
616             addr_block2 =
617                 ((void *) (((ADDR2UINT(i2)) - 1) * BLOCKSIZE +
618                            (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
619             addr_frag2 =
620                 (void *) ((char *) addr_block2 +
621                           (j2 << ((xbt_mheap_t) state->s_heap)->heapinfo[i2].
622                            type));
623
624             res_compare =
625                 compare_heap_area(addr_frag1, addr_frag2, snapshot2, snapshot2,
626                                   NULL, NULL, 0);
627
628             if (res_compare != 1) {
629               equal = 1;
630               xbt_dynar_reset(previous);
631               break;
632             }
633
634             xbt_dynar_reset(previous);
635
636           }
637
638           i2++;
639
640         }
641
642         if (!equal) {
643           XBT_DEBUG
644               ("Block %zu, fragment %zu not found (size_used = %zd, address = %p)\n",
645                i1, j1, heapinfo1->busy_frag.frag_size[j1],
646                addr_frag1);
647           i2 = state->heaplimit + 1;
648           i1 = state->heaplimit + 1;
649           nb_diff1++;
650           break;
651         }
652
653       }
654
655       i1++;
656
657     }
658
659   }
660
661   /* All blocks/fragments are equal to another block/fragment ? */
662   size_t i = 1, j = 0;
663
664   for(i = 1; i <= state->heaplimit; i++) {
665     malloc_info* heapinfo1 = mc_snapshot_read_region(&heapinfos1[i], heap_region1, &heapinfo_temp1, sizeof(malloc_info));
666     if (heapinfo1->type == 0) {
667       if (i1 == state->heaplimit) {
668         if (heapinfo1->busy_block.busy_size > 0) {
669           if (state->equals_to1_(i, 0).valid == 0) {
670             if (XBT_LOG_ISENABLED(mc_diff, xbt_log_priority_debug)) {
671               // TODO, add address
672               XBT_DEBUG("Block %zu not found (size used = %zu)", i,
673                         heapinfo1->busy_block.busy_size);
674               //mmalloc_backtrace_block_display((void*)heapinfo1, i);
675             }
676             nb_diff1++;
677           }
678         }
679       }
680     }
681     if (heapinfo1->type > 0) {
682       for (j = 0; j < (size_t) (BLOCKSIZE >> heapinfo1->type); j++) {
683         if (i1 == state->heaplimit) {
684           if (heapinfo1->busy_frag.frag_size[j] > 0) {
685             if (state->equals_to1_(i, j).valid == 0) {
686               if (XBT_LOG_ISENABLED(mc_diff, xbt_log_priority_debug)) {
687                 // TODO, print fragment address
688                 XBT_DEBUG
689                     ("Block %zu, Fragment %zu not found (size used = %zd)",
690                      i, j,
691                      heapinfo1->busy_frag.frag_size[j]);
692                 //mmalloc_backtrace_fragment_display((void*)heapinfo1, i, j);
693               }
694               nb_diff1++;
695             }
696           }
697         }
698       }
699     }
700   }
701
702   if (i1 == state->heaplimit)
703     XBT_DEBUG("Number of blocks/fragments not found in heap1 : %d", nb_diff1);
704
705   for (i=1; i <= state->heaplimit; i++) {
706     malloc_info* heapinfo2 = mc_snapshot_read_region(&heapinfos2[i], heap_region2, &heapinfo_temp2, sizeof(malloc_info));
707     if (heapinfo2->type == 0) {
708       if (i1 == state->heaplimit) {
709         if (heapinfo2->busy_block.busy_size > 0) {
710           if (state->equals_to2_(i, 0).valid == 0) {
711             if (XBT_LOG_ISENABLED(mc_diff, xbt_log_priority_debug)) {
712               // TODO, print address of the block
713               XBT_DEBUG("Block %zu not found (size used = %zu)", i,
714                         heapinfo2->busy_block.busy_size);
715               //mmalloc_backtrace_block_display((void*)heapinfo2, i);
716             }
717             nb_diff2++;
718           }
719         }
720       }
721     }
722     if (heapinfo2->type > 0) {
723       for (j = 0; j < (size_t) (BLOCKSIZE >> heapinfo2->type); j++) {
724         if (i1 == state->heaplimit) {
725           if (heapinfo2->busy_frag.frag_size[j] > 0) {
726             if (state->equals_to2_(i, j).valid == 0) {
727               if (XBT_LOG_ISENABLED(mc_diff, xbt_log_priority_debug)) {
728                 // TODO, print address of the block
729                 XBT_DEBUG
730                     ("Block %zu, Fragment %zu not found (size used = %zd)",
731                      i, j,
732                      heapinfo2->busy_frag.frag_size[j]);
733                 //mmalloc_backtrace_fragment_display((void*)heapinfo2, i, j);
734               }
735               nb_diff2++;
736             }
737           }
738         }
739       }
740     }
741   }
742
743   if (i1 == state->heaplimit)
744     XBT_DEBUG("Number of blocks/fragments not found in heap2 : %d", nb_diff2);
745
746   xbt_dynar_free(&previous);
747   return ((nb_diff1 > 0) || (nb_diff2 > 0));
748 }
749
750 /**
751  *
752  * @param state
753  * @param real_area1     Process address for state 1
754  * @param real_area2     Process address for state 2
755  * @param snapshot1      Snapshot of state 1
756  * @param snapshot2      Snapshot of state 2
757  * @param previous
758  * @param size
759  * @param check_ignore
760  */
761 static int compare_heap_area_without_type(struct s_mc_diff *state,
762                                           void *real_area1, void *real_area2,
763                                           mc_snapshot_t snapshot1,
764                                           mc_snapshot_t snapshot2,
765                                           xbt_dynar_t previous, int size,
766                                           int check_ignore)
767 {
768
769   int i = 0;
770   void *addr_pointed1, *addr_pointed2;
771   int pointer_align, res_compare;
772   ssize_t ignore1, ignore2;
773
774   mc_mem_region_t heap_region1 = snapshot1->regions[0];
775   mc_mem_region_t heap_region2 = snapshot2->regions[0];
776
777   while (i < size) {
778
779     if (check_ignore > 0) {
780       if ((ignore1 =
781            heap_comparison_ignore_size(state->to_ignore1,
782                                        (char *) real_area1 + i)) != -1) {
783         if ((ignore2 =
784              heap_comparison_ignore_size(state->to_ignore2,
785                                          (char *) real_area2 + i)) == ignore1) {
786           if (ignore1 == 0) {
787             check_ignore--;
788             return 0;
789           } else {
790             i = i + ignore2;
791             check_ignore--;
792             continue;
793           }
794         }
795       }
796     }
797
798     if (mc_snapshot_region_memcp(((char *) real_area1) + i, heap_region1, ((char *) real_area2) + i, heap_region2, 1) != 0) {
799
800       pointer_align = (i / sizeof(void *)) * sizeof(void *);
801       addr_pointed1 = mc_snapshot_read_pointer((char *) real_area1 + pointer_align, snapshot1);
802       addr_pointed2 = mc_snapshot_read_pointer((char *) real_area2 + pointer_align, snapshot2);
803
804       if (addr_pointed1 > maestro_stack_start
805           && addr_pointed1 < maestro_stack_end
806           && addr_pointed2 > maestro_stack_start
807           && addr_pointed2 < maestro_stack_end) {
808         i = pointer_align + sizeof(void *);
809         continue;
810       } else if (addr_pointed1 > state->s_heap
811                  && addr_pointed1 < mc_snapshot_get_heap_end(snapshot1)
812                  && addr_pointed2 > state->s_heap
813                  && addr_pointed2 < mc_snapshot_get_heap_end(snapshot2)) {
814         // Both addreses are in the heap:
815         res_compare =
816             compare_heap_area(addr_pointed1, addr_pointed2, snapshot1,
817                               snapshot2, previous, NULL, 0);
818         if (res_compare == 1) {
819           return res_compare;
820         }
821         i = pointer_align + sizeof(void *);
822         continue;
823       } else {
824         return 1;
825       }
826
827     }
828
829     i++;
830
831   }
832
833   return 0;
834
835 }
836
837 /**
838  *
839  * @param state
840  * @param real_area1     Process address for state 1
841  * @param real_area2     Process address for state 2
842  * @param snapshot1      Snapshot of state 1
843  * @param snapshot2      Snapshot of state 2
844  * @param previous
845  * @param type_id
846  * @param area_size      either a byte_size or an elements_count (?)
847  * @param check_ignore
848  * @param pointer_level
849  * @return               0 (same), 1 (different), -1 (unknown)
850  */
851 static int compare_heap_area_with_type(struct s_mc_diff *state,
852                                        void *real_area1, void *real_area2,
853                                        mc_snapshot_t snapshot1,
854                                        mc_snapshot_t snapshot2,
855                                        xbt_dynar_t previous, dw_type_t type,
856                                        int area_size, int check_ignore,
857                                        int pointer_level)
858 {
859
860   if (is_stack(real_area1) && is_stack(real_area2))
861     return 0;
862
863   ssize_t ignore1, ignore2;
864
865   if ((check_ignore > 0)
866       && ((ignore1 = heap_comparison_ignore_size(state->to_ignore1, real_area1))
867           > 0)
868       && ((ignore2 = heap_comparison_ignore_size(state->to_ignore2, real_area2))
869           == ignore1)) {
870     return 0;
871   }
872
873   dw_type_t subtype, subsubtype;
874   int res, elm_size, i;
875   unsigned int cursor = 0;
876   dw_type_t member;
877   void *addr_pointed1, *addr_pointed2;;
878
879   mc_mem_region_t heap_region1 = snapshot1->regions[0];
880   mc_mem_region_t heap_region2 = snapshot2->regions[0];
881
882   switch (type->type) {
883   case DW_TAG_unspecified_type:
884     return 1;
885
886   case DW_TAG_base_type:
887     if (type->name != NULL && strcmp(type->name, "char") == 0) {        /* String, hence random (arbitrary ?) size */
888       if (real_area1 == real_area2)
889         return -1;
890       else
891         return (mc_snapshot_region_memcp(real_area1, heap_region1, real_area2, heap_region2, area_size) != 0);
892     } else {
893       if (area_size != -1 && type->byte_size != area_size)
894         return -1;
895       else {
896         return (mc_snapshot_region_memcp(real_area1, heap_region1, real_area2, heap_region2, type->byte_size) != 0);
897       }
898     }
899     break;
900   case DW_TAG_enumeration_type:
901     if (area_size != -1 && type->byte_size != area_size)
902       return -1;
903     else
904       return (mc_snapshot_region_memcp(real_area1, heap_region1, real_area2, heap_region2, type->byte_size) != 0);
905     break;
906   case DW_TAG_typedef:
907   case DW_TAG_const_type:
908   case DW_TAG_volatile_type:
909     return compare_heap_area_with_type(state, real_area1, real_area2,
910                                        snapshot1, snapshot2, previous,
911                                        type->subtype, area_size, check_ignore,
912                                        pointer_level);
913     break;
914   case DW_TAG_array_type:
915     subtype = type->subtype;
916     switch (subtype->type) {
917     case DW_TAG_unspecified_type:
918       return 1;
919
920     case DW_TAG_base_type:
921     case DW_TAG_enumeration_type:
922     case DW_TAG_pointer_type:
923     case DW_TAG_reference_type:
924     case DW_TAG_rvalue_reference_type:
925     case DW_TAG_structure_type:
926     case DW_TAG_class_type:
927     case DW_TAG_union_type:
928       if (subtype->full_type)
929         subtype = subtype->full_type;
930       elm_size = subtype->byte_size;
931       break;
932       // TODO, just remove the type indirection?
933     case DW_TAG_const_type:
934     case DW_TAG_typedef:
935     case DW_TAG_volatile_type:
936       subsubtype = subtype->subtype;
937       if (subsubtype->full_type)
938         subsubtype = subsubtype->full_type;
939       elm_size = subsubtype->byte_size;
940       break;
941     default:
942       return 0;
943       break;
944     }
945     for (i = 0; i < type->element_count; i++) {
946       // TODO, add support for variable stride (DW_AT_byte_stride)
947       res =
948           compare_heap_area_with_type(state,
949                                       (char *) real_area1 + (i * elm_size),
950                                       (char *) real_area2 + (i * elm_size),
951                                       snapshot1, snapshot2, previous,
952                                       type->subtype, subtype->byte_size,
953                                       check_ignore, pointer_level);
954       if (res == 1)
955         return res;
956     }
957     break;
958   case DW_TAG_reference_type:
959   case DW_TAG_rvalue_reference_type:
960   case DW_TAG_pointer_type:
961     if (type->subtype && type->subtype->type == DW_TAG_subroutine_type) {
962       addr_pointed1 = mc_snapshot_read_pointer(real_area1, snapshot1);
963       addr_pointed2 = mc_snapshot_read_pointer(real_area2, snapshot2);
964       return (addr_pointed1 != addr_pointed2);;
965     } else {
966       pointer_level++;
967       if (pointer_level > 1) {  /* Array of pointers */
968         for (i = 0; i < (area_size / sizeof(void *)); i++) {
969           addr_pointed1 = mc_snapshot_read_pointer((char*) real_area1 + i * sizeof(void *), snapshot1);
970           addr_pointed2 = mc_snapshot_read_pointer((char*) real_area2 + i * sizeof(void *), snapshot2);
971           if (addr_pointed1 > state->s_heap
972               && addr_pointed1 < mc_snapshot_get_heap_end(snapshot1)
973               && addr_pointed2 > state->s_heap
974               && addr_pointed2 < mc_snapshot_get_heap_end(snapshot2))
975             res =
976                 compare_heap_area(addr_pointed1, addr_pointed2, snapshot1,
977                                   snapshot2, previous, type->subtype,
978                                   pointer_level);
979           else
980             res = (addr_pointed1 != addr_pointed2);
981           if (res == 1)
982             return res;
983         }
984       } else {
985         addr_pointed1 = mc_snapshot_read_pointer(real_area1, snapshot1);
986         addr_pointed2 = mc_snapshot_read_pointer(real_area2, snapshot2);
987         if (addr_pointed1 > state->s_heap
988             && addr_pointed1 < mc_snapshot_get_heap_end(snapshot1)
989             && addr_pointed2 > state->s_heap
990             && addr_pointed2 < mc_snapshot_get_heap_end(snapshot2))
991           return compare_heap_area(addr_pointed1, addr_pointed2, snapshot1,
992                                    snapshot2, previous, type->subtype,
993                                    pointer_level);
994         else
995           return (addr_pointed1 != addr_pointed2);
996       }
997     }
998     break;
999   case DW_TAG_structure_type:
1000   case DW_TAG_class_type:
1001     if (type->full_type)
1002       type = type->full_type;
1003     if (area_size != -1 && type->byte_size != area_size) {
1004       if (area_size > type->byte_size && area_size % type->byte_size == 0) {
1005         for (i = 0; i < (area_size / type->byte_size); i++) {
1006           res =
1007               compare_heap_area_with_type(state,
1008                                           (char *) real_area1 + i * type->byte_size,
1009                                           (char *) real_area2 + i * type->byte_size,
1010                                           snapshot1, snapshot2, previous, type, -1,
1011                                           check_ignore, 0);
1012           if (res == 1)
1013             return res;
1014         }
1015       } else {
1016         return -1;
1017       }
1018     } else {
1019       cursor = 0;
1020       xbt_dynar_foreach(type->members, cursor, member) {
1021         // TODO, optimize this? (for the offset case)
1022         char *real_member1 =
1023             mc_member_resolve(real_area1, type, member, snapshot1);
1024         char *real_member2 =
1025             mc_member_resolve(real_area2, type, member, snapshot2);
1026         res =
1027             compare_heap_area_with_type(state, real_member1, real_member2,
1028                                         snapshot1, snapshot2,
1029                                         previous, member->subtype, -1,
1030                                         check_ignore, 0);
1031         if (res == 1) {
1032           return res;
1033         }
1034       }
1035     }
1036     break;
1037   case DW_TAG_union_type:
1038     return compare_heap_area_without_type(state, real_area1, real_area2,
1039                                           snapshot1, snapshot2, previous,
1040                                           type->byte_size, check_ignore);
1041     break;
1042   default:
1043     break;
1044   }
1045
1046   return 0;
1047
1048 }
1049
1050 /** Infer the type of a part of the block from the type of the block
1051  *
1052  * TODO, handle DW_TAG_array_type as well as arrays of the object ((*p)[5], p[5])
1053  *
1054  * TODO, handle subfields ((*p).bar.foo, (*p)[5].bar…)
1055  *
1056  * @param  type_id            DWARF type ID of the root address
1057  * @param  area_size
1058  * @return                    DWARF type ID for given offset
1059  */
1060 static dw_type_t get_offset_type(void *real_base_address, dw_type_t type,
1061                                  int offset, int area_size,
1062                                  mc_snapshot_t snapshot)
1063 {
1064
1065   // Beginning of the block, the infered variable type if the type of the block:
1066   if (offset == 0)
1067     return type;
1068
1069   switch (type->type) {
1070   case DW_TAG_structure_type:
1071   case DW_TAG_class_type:
1072     if (type->full_type)
1073       type = type->full_type;
1074
1075     if (area_size != -1 && type->byte_size != area_size) {
1076       if (area_size > type->byte_size && area_size % type->byte_size == 0)
1077         return type;
1078       else
1079         return NULL;
1080     } else {
1081       unsigned int cursor = 0;
1082       dw_type_t member;
1083       xbt_dynar_foreach(type->members, cursor, member) {
1084
1085         if (!member->location.size) {
1086           // We have the offset, use it directly (shortcut):
1087           if (member->offset == offset)
1088             return member->subtype;
1089         } else {
1090           char *real_member =
1091               mc_member_resolve(real_base_address, type, member, snapshot);
1092           if (real_member - (char *) real_base_address == offset)
1093             return member->subtype;
1094         }
1095
1096       }
1097       return NULL;
1098     }
1099     break;
1100   default:
1101     /* FIXME : other cases ? */
1102     return NULL;
1103     break;
1104   }
1105 }
1106
1107 /**
1108  *
1109  * @param area1          Process address for state 1
1110  * @param area2          Process address for state 2
1111  * @param snapshot1      Snapshot of state 1
1112  * @param snapshot2      Snapshot of state 2
1113  * @param previous       Pairs of blocks already compared on the current path (or NULL)
1114  * @param type_id        Type of variable
1115  * @param pointer_level
1116  * @return 0 (same), 1 (different), -1
1117  */
1118 int compare_heap_area(void *area1, void *area2, mc_snapshot_t snapshot1,
1119                       mc_snapshot_t snapshot2, xbt_dynar_t previous,
1120                       dw_type_t type, int pointer_level)
1121 {
1122
1123   struct s_mc_diff *state = mc_diff_info;
1124
1125   int res_compare;
1126   ssize_t block1, frag1, block2, frag2;
1127   ssize_t size;
1128   int check_ignore = 0;
1129
1130   void *real_addr_block1, *real_addr_block2, *real_addr_frag1, *real_addr_frag2;
1131
1132   int type_size = -1;
1133   int offset1 = 0, offset2 = 0;
1134   int new_size1 = -1, new_size2 = -1;
1135   dw_type_t new_type1 = NULL, new_type2 = NULL;
1136
1137   int match_pairs = 0;
1138
1139   malloc_info* heapinfos1 = mc_snapshot_read_pointer(&((xbt_mheap_t)std_heap)->heapinfo, snapshot1);
1140   malloc_info* heapinfos2 = mc_snapshot_read_pointer(&((xbt_mheap_t)std_heap)->heapinfo, snapshot2);
1141
1142   malloc_info heapinfo_temp1, heapinfo_temp2;
1143
1144   if (previous == NULL) {
1145     previous =
1146         xbt_dynar_new(sizeof(heap_area_pair_t), heap_area_pair_free_voidp);
1147     match_pairs = 1;
1148   }
1149   // Get block number:
1150   block1 =
1151       ((char *) area1 -
1152        (char *) ((xbt_mheap_t) state->s_heap)->heapbase) / BLOCKSIZE + 1;
1153   block2 =
1154       ((char *) area2 -
1155        (char *) ((xbt_mheap_t) state->s_heap)->heapbase) / BLOCKSIZE + 1;
1156
1157   // If either block is a stack block:
1158   if (is_block_stack((int) block1) && is_block_stack((int) block2)) {
1159     add_heap_area_pair(previous, block1, -1, block2, -1);
1160     if (match_pairs) {
1161       match_equals(state, previous);
1162       xbt_dynar_free(&previous);
1163     }
1164     return 0;
1165   }
1166   // If either block is not in the expected area of memory:
1167   if (((char *) area1 < (char *) ((xbt_mheap_t) state->s_heap)->heapbase)
1168       || (block1 > state->heapsize1) || (block1 < 1)
1169       || ((char *) area2 < (char *) ((xbt_mheap_t) state->s_heap)->heapbase)
1170       || (block2 > state->heapsize2) || (block2 < 1)) {
1171     if (match_pairs) {
1172       xbt_dynar_free(&previous);
1173     }
1174     return 1;
1175   }
1176
1177   // Process address of the block:
1178   real_addr_block1 =
1179       ((void *) (((ADDR2UINT(block1)) - 1) * BLOCKSIZE +
1180                  (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
1181   real_addr_block2 =
1182       ((void *) (((ADDR2UINT(block2)) - 1) * BLOCKSIZE +
1183                  (char *) ((xbt_mheap_t) state->s_heap)->heapbase));
1184
1185   if (type) {
1186
1187     if (type->full_type)
1188       type = type->full_type;
1189
1190     // This assume that for "boring" types (volatile ...) byte_size is absent:
1191     while (type->byte_size == 0 && type->subtype != NULL)
1192       type = type->subtype;
1193
1194     // Find type_size:
1195     if ((type->type == DW_TAG_pointer_type)
1196         || ((type->type == DW_TAG_base_type) && type->name != NULL
1197             && (!strcmp(type->name, "char"))))
1198       type_size = -1;
1199     else
1200       type_size = type->byte_size;
1201
1202   }
1203
1204   mc_mem_region_t heap_region1 = snapshot1->regions[0];
1205   mc_mem_region_t heap_region2 = snapshot2->regions[0];
1206
1207   malloc_info* heapinfo1 = mc_snapshot_read_region(&heapinfos1[block1], heap_region1, &heapinfo_temp1, sizeof(malloc_info));
1208   malloc_info* heapinfo2 = mc_snapshot_read_region(&heapinfos2[block2], heap_region2, &heapinfo_temp2, sizeof(malloc_info));
1209
1210   if ((heapinfo1->type == -1) && (heapinfo2->type == -1)) { /* Free block */
1211
1212     if (match_pairs) {
1213       match_equals(state, previous);
1214       xbt_dynar_free(&previous);
1215     }
1216     return 0;
1217
1218   } else if ((heapinfo1->type == 0) && (heapinfo2->type == 0)) {    /* Complete block */
1219
1220     // TODO, lookup variable type from block type as done for fragmented blocks
1221
1222     if (state->equals_to1_(block1, 0).valid
1223         && state->equals_to2_(block2, 0).valid) {
1224       if (equal_blocks(state, block1, block2)) {
1225         if (match_pairs) {
1226           match_equals(state, previous);
1227           xbt_dynar_free(&previous);
1228         }
1229         return 0;
1230       }
1231     }
1232
1233     if (type_size != -1) {
1234       if (type_size != heapinfo1->busy_block.busy_size
1235           && type_size != heapinfo2->busy_block.busy_size
1236           && type->name != NULL && !strcmp(type->name, "s_smx_context")) {
1237         if (match_pairs) {
1238           match_equals(state, previous);
1239           xbt_dynar_free(&previous);
1240         }
1241         return -1;
1242       }
1243     }
1244
1245     if (heapinfo1->busy_block.size !=
1246         heapinfo2->busy_block.size) {
1247       if (match_pairs) {
1248         xbt_dynar_free(&previous);
1249       }
1250       return 1;
1251     }
1252
1253     if (heapinfo1->busy_block.busy_size !=
1254         heapinfo2->busy_block.busy_size) {
1255       if (match_pairs) {
1256         xbt_dynar_free(&previous);
1257       }
1258       return 1;
1259     }
1260
1261     if (!add_heap_area_pair(previous, block1, -1, block2, -1)) {
1262       if (match_pairs) {
1263         match_equals(state, previous);
1264         xbt_dynar_free(&previous);
1265       }
1266       return 0;
1267     }
1268
1269     size = heapinfo1->busy_block.busy_size;
1270
1271     // Remember (basic) type inference.
1272     // The current data structure only allows us to do this for the whole block.
1273     if (type != NULL && area1 == real_addr_block1) {
1274       state->types1_(block1, 0) = type;
1275     }
1276     if (type != NULL && area2 == real_addr_block2) {
1277       state->types2_(block2, 0) = type;
1278     }
1279
1280     if (size <= 0) {
1281       if (match_pairs) {
1282         match_equals(state, previous);
1283         xbt_dynar_free(&previous);
1284       }
1285       return 0;
1286     }
1287
1288     frag1 = -1;
1289     frag2 = -1;
1290
1291     if ((heapinfo1->busy_block.ignore > 0)
1292         && (heapinfo2->busy_block.ignore ==
1293             heapinfo1->busy_block.ignore))
1294       check_ignore = heapinfo1->busy_block.ignore;
1295
1296   } else if ((heapinfo1->type > 0) && (heapinfo2->type > 0)) {      /* Fragmented block */
1297
1298     // Fragment number:
1299     frag1 =
1300         ((uintptr_t) (ADDR2UINT(area1) % (BLOCKSIZE))) >> heapinfo1->type;
1301     frag2 =
1302         ((uintptr_t) (ADDR2UINT(area2) % (BLOCKSIZE))) >> heapinfo2->type;
1303
1304     // Process address of the fragment:
1305     real_addr_frag1 =
1306         (void *) ((char *) real_addr_block1 +
1307                   (frag1 << ((xbt_mheap_t) state->s_heap)->heapinfo[block1].
1308                    type));
1309     real_addr_frag2 =
1310         (void *) ((char *) real_addr_block2 +
1311                   (frag2 << ((xbt_mheap_t) state->s_heap)->heapinfo[block2].
1312                    type));
1313
1314     // Check the size of the fragments against the size of the type:
1315     if (type_size != -1) {
1316       if (heapinfo1->busy_frag.frag_size[frag1] == -1
1317           || heapinfo2->busy_frag.frag_size[frag2] == -1) {
1318         if (match_pairs) {
1319           match_equals(state, previous);
1320           xbt_dynar_free(&previous);
1321         }
1322         return -1;
1323       }
1324       if (type_size != heapinfo1->busy_frag.frag_size[frag1]
1325           || type_size != heapinfo2->busy_frag.frag_size[frag2]) {
1326         if (match_pairs) {
1327           match_equals(state, previous);
1328           xbt_dynar_free(&previous);
1329         }
1330         return -1;
1331       }
1332     }
1333     // Check if the blocks are already matched together:
1334     if (state->equals_to1_(block1, frag1).valid
1335         && state->equals_to2_(block2, frag2).valid) {
1336       if (equal_fragments(state, block1, frag1, block2, frag2)) {
1337         if (match_pairs) {
1338           match_equals(state, previous);
1339           xbt_dynar_free(&previous);
1340         }
1341         return 0;
1342       }
1343     }
1344     // Compare the size of both fragments:
1345     if (heapinfo1->busy_frag.frag_size[frag1] !=
1346         heapinfo2->busy_frag.frag_size[frag2]) {
1347       if (type_size == -1) {
1348         if (match_pairs) {
1349           match_equals(state, previous);
1350           xbt_dynar_free(&previous);
1351         }
1352         return -1;
1353       } else {
1354         if (match_pairs) {
1355           xbt_dynar_free(&previous);
1356         }
1357         return 1;
1358       }
1359     }
1360     // Size of the fragment:
1361     size = heapinfo1->busy_frag.frag_size[frag1];
1362
1363     // Remember (basic) type inference.
1364     // The current data structure only allows us to do this for the whole block.
1365     if (type != NULL && area1 == real_addr_frag1) {
1366       state->types1_(block1, frag1) = type;
1367     }
1368     if (type != NULL && area2 == real_addr_frag2) {
1369       state->types2_(block2, frag2) = type;
1370     }
1371     // The type of the variable is already known:
1372     if (type) {
1373       new_type1 = type;
1374       new_type2 = type;
1375     }
1376     // Type inference from the block type.
1377     else if (state->types1_(block1, frag1) != NULL
1378              || state->types2_(block2, frag2) != NULL) {
1379
1380       offset1 = (char *) area1 - (char *) real_addr_frag1;
1381       offset2 = (char *) area2 - (char *) real_addr_frag2;
1382
1383       if (state->types1_(block1, frag1) != NULL
1384           && state->types2_(block2, frag2) != NULL) {
1385         new_type1 =
1386             get_offset_type(real_addr_frag1, state->types1_(block1, frag1),
1387                             offset1, size, snapshot1);
1388         new_type2 =
1389             get_offset_type(real_addr_frag2, state->types2_(block2, frag2),
1390                             offset1, size, snapshot2);
1391       } else if (state->types1_(block1, frag1) != NULL) {
1392         new_type1 =
1393             get_offset_type(real_addr_frag1, state->types1_(block1, frag1),
1394                             offset1, size, snapshot1);
1395         new_type2 =
1396             get_offset_type(real_addr_frag2, state->types1_(block1, frag1),
1397                             offset2, size, snapshot2);
1398       } else if (state->types2_(block2, frag2) != NULL) {
1399         new_type1 =
1400             get_offset_type(real_addr_frag1, state->types2_(block2, frag2),
1401                             offset1, size, snapshot1);
1402         new_type2 =
1403             get_offset_type(real_addr_frag2, state->types2_(block2, frag2),
1404                             offset2, size, snapshot2);
1405       } else {
1406         if (match_pairs) {
1407           match_equals(state, previous);
1408           xbt_dynar_free(&previous);
1409         }
1410         return -1;
1411       }
1412
1413       if (new_type1 != NULL && new_type2 != NULL && new_type1 != new_type2) {
1414
1415         type = new_type1;
1416         while (type->byte_size == 0 && type->subtype != NULL)
1417           type = type->subtype;
1418         new_size1 = type->byte_size;
1419
1420         type = new_type2;
1421         while (type->byte_size == 0 && type->subtype != NULL)
1422           type = type->subtype;
1423         new_size2 = type->byte_size;
1424
1425       } else {
1426         if (match_pairs) {
1427           match_equals(state, previous);
1428           xbt_dynar_free(&previous);
1429         }
1430         return -1;
1431       }
1432     }
1433
1434     if (new_size1 > 0 && new_size1 == new_size2) {
1435       type = new_type1;
1436       size = new_size1;
1437     }
1438
1439     if (offset1 == 0 && offset2 == 0) {
1440       if (!add_heap_area_pair(previous, block1, frag1, block2, frag2)) {
1441         if (match_pairs) {
1442           match_equals(state, previous);
1443           xbt_dynar_free(&previous);
1444         }
1445         return 0;
1446       }
1447     }
1448
1449     if (size <= 0) {
1450       if (match_pairs) {
1451         match_equals(state, previous);
1452         xbt_dynar_free(&previous);
1453       }
1454       return 0;
1455     }
1456
1457     if ((heapinfo1->busy_frag.ignore[frag1] > 0)
1458         && (heapinfo2->busy_frag.ignore[frag2] ==
1459             heapinfo1->busy_frag.ignore[frag1]))
1460       check_ignore = heapinfo1->busy_frag.ignore[frag1];
1461
1462   } else {
1463
1464     if (match_pairs) {
1465       xbt_dynar_free(&previous);
1466     }
1467     return 1;
1468
1469   }
1470
1471
1472   /* Start comparison */
1473   if (type) {
1474     res_compare =
1475         compare_heap_area_with_type(state, area1, area2, snapshot1, snapshot2,
1476                                     previous, type, size, check_ignore,
1477                                     pointer_level);
1478   } else {
1479     res_compare =
1480         compare_heap_area_without_type(state, area1, area2, snapshot1, snapshot2,
1481                                        previous, size, check_ignore);
1482   }
1483   if (res_compare == 1) {
1484     if (match_pairs)
1485       xbt_dynar_free(&previous);
1486     return res_compare;
1487   }
1488
1489   if (match_pairs) {
1490     match_equals(state, previous);
1491     xbt_dynar_free(&previous);
1492   }
1493
1494   return 0;
1495 }
1496
1497 /*********************************************** Miscellaneous ***************************************************/
1498 /****************************************************************************************************************/
1499
1500 // Not used and broken code:
1501 # if 0
1502
1503 // Not used:
1504 static int get_pointed_area_size(void *area, int heap)
1505 {
1506
1507   struct s_mc_diff *state = mc_diff_info;
1508
1509   int block, frag;
1510   malloc_info *heapinfo;
1511
1512   if (heap == 1)
1513     heapinfo = state->heapinfo1;
1514   else
1515     heapinfo = state->heapinfo2;
1516
1517   block =
1518       ((char *) area -
1519        (char *) ((xbt_mheap_t) state->s_heap)->heapbase) / BLOCKSIZE + 1;
1520
1521   if (((char *) area < (char *) ((xbt_mheap_t) state->s_heap)->heapbase)
1522       || (block > state->heapsize1) || (block < 1))
1523     return -1;
1524
1525   if (heapinfo[block].type == -1) {     /* Free block */
1526     return -1;
1527   } else if (heapinfo[block].type == 0) {       /* Complete block */
1528     return (int) heapinfo[block].busy_block.busy_size;
1529   } else {
1530     frag =
1531         ((uintptr_t) (ADDR2UINT(area) % (BLOCKSIZE))) >> heapinfo[block].type;
1532     return (int) heapinfo[block].busy_frag.frag_size[frag];
1533   }
1534 }
1535
1536 // Not used:
1537 char *get_type_description(mc_object_info_t info, char *type_name)
1538 {
1539
1540   xbt_dict_cursor_t dict_cursor;
1541   char *type_origin;
1542   dw_type_t type;
1543
1544   xbt_dict_foreach(info->types, dict_cursor, type_origin, type) {
1545     if (type->name && (strcmp(type->name, type_name) == 0)
1546         && type->byte_size > 0) {
1547       xbt_dict_cursor_free(&dict_cursor);
1548       return type_origin;
1549     }
1550   }
1551
1552   xbt_dict_cursor_free(&dict_cursor);
1553   return NULL;
1554 }
1555
1556
1557 #ifndef max
1558 #define max( a, b ) ( ((a) > (b)) ? (a) : (b) )
1559 #endif
1560
1561 // Not used:
1562 int mmalloc_linear_compare_heap(xbt_mheap_t heap1, xbt_mheap_t heap2)
1563 {
1564
1565   struct s_mc_diff *state = mc_diff_info;
1566
1567   if (heap1 == NULL && heap1 == NULL) {
1568     XBT_DEBUG("Malloc descriptors null");
1569     return 0;
1570   }
1571
1572   if (heap1->heaplimit != heap2->heaplimit) {
1573     XBT_DEBUG("Different limit of valid info table indices");
1574     return 1;
1575   }
1576
1577   /* Heap information */
1578   state->heaplimit = ((struct mdesc *) heap1)->heaplimit;
1579
1580
1581   // Mamailloute in order to find the base address of the main heap:
1582   state->s_heap =
1583       (char *) mmalloc_get_current_heap() - STD_HEAP_SIZE - xbt_pagesize;
1584
1585   state->heapbase1 = (char *) heap1 + BLOCKSIZE;
1586   state->heapbase2 = (char *) heap2 + BLOCKSIZE;
1587
1588   state->heapinfo1 =
1589       (malloc_info *) ((char *) heap1 +
1590                        ((uintptr_t)
1591                         ((char *) heap1->heapinfo - (char *) state->s_heap)));
1592   state->heapinfo2 =
1593       (malloc_info *) ((char *) heap2 +
1594                        ((uintptr_t)
1595                         ((char *) heap2->heapinfo - (char *) state->s_heap)));
1596
1597   state->heapsize1 = heap1->heapsize;
1598   state->heapsize2 = heap2->heapsize;
1599
1600   /* Start comparison */
1601   size_t i, j, k;
1602   void *addr_block1, *addr_block2, *addr_frag1, *addr_frag2;
1603
1604   int distance = 0;
1605
1606   /* Check busy blocks */
1607
1608   i = 1;
1609
1610   while (i <= state->heaplimit) {
1611
1612     addr_block1 =
1613         ((void *) (((ADDR2UINT(i)) - 1) * BLOCKSIZE +
1614                    (char *) state->heapbase1));
1615     addr_block2 =
1616         ((void *) (((ADDR2UINT(i)) - 1) * BLOCKSIZE +
1617                    (char *) state->heapbase2));
1618
1619     if (state->heapinfo1[i].type != state->heapinfo2[i].type) {
1620
1621       distance += BLOCKSIZE;
1622       XBT_DEBUG("Different type of blocks (%zu) : %d - %d -> distance = %d", i,
1623                 state->heapinfo1[i].type, state->heapinfo2[i].type, distance);
1624       i++;
1625
1626     } else {
1627
1628       if (state->heapinfo1[i].type == -1) {     /* Free block */
1629         i++;
1630         continue;
1631       }
1632
1633       if (state->heapinfo1[i].type == 0) {      /* Large block */
1634
1635         if (state->heapinfo1[i].busy_block.size !=
1636             state->heapinfo2[i].busy_block.size) {
1637           distance +=
1638               BLOCKSIZE * max(state->heapinfo1[i].busy_block.size,
1639                               state->heapinfo2[i].busy_block.size);
1640           i += max(state->heapinfo1[i].busy_block.size,
1641                    state->heapinfo2[i].busy_block.size);
1642           XBT_DEBUG
1643               ("Different larger of cluster at block %zu : %zu - %zu -> distance = %d",
1644                i, state->heapinfo1[i].busy_block.size,
1645                state->heapinfo2[i].busy_block.size, distance);
1646           continue;
1647         }
1648
1649         /*if(heapinfo1[i].busy_block.busy_size != heapinfo2[i].busy_block.busy_size){
1650            distance += max(heapinfo1[i].busy_block.busy_size, heapinfo2[i].busy_block.busy_size);
1651            i += max(heapinfo1[i].busy_block.size, heapinfo2[i].busy_block.size);
1652            XBT_DEBUG("Different size used oin large cluster at block %zu : %zu - %zu -> distance = %d", i, heapinfo1[i].busy_block.busy_size, heapinfo2[i].busy_block.busy_size, distance);
1653            continue;
1654            } */
1655
1656         k = 0;
1657
1658         //while(k < (heapinfo1[i].busy_block.busy_size)){
1659         while (k < state->heapinfo1[i].busy_block.size * BLOCKSIZE) {
1660           if (memcmp((char *) addr_block1 + k, (char *) addr_block2 + k, 1) !=
1661               0) {
1662             distance++;
1663           }
1664           k++;
1665         }
1666
1667         i++;
1668
1669       } else {                  /* Fragmented block */
1670
1671         for (j = 0; j < (size_t) (BLOCKSIZE >> state->heapinfo1[i].type); j++) {
1672
1673           addr_frag1 =
1674               (void *) ((char *) addr_block1 + (j << state->heapinfo1[i].type));
1675           addr_frag2 =
1676               (void *) ((char *) addr_block2 + (j << state->heapinfo2[i].type));
1677
1678           if (state->heapinfo1[i].busy_frag.frag_size[j] == 0
1679               && state->heapinfo2[i].busy_frag.frag_size[j] == 0) {
1680             continue;
1681           }
1682
1683
1684           /*if(heapinfo1[i].busy_frag.frag_size[j] != heapinfo2[i].busy_frag.frag_size[j]){
1685              distance += max(heapinfo1[i].busy_frag.frag_size[j], heapinfo2[i].busy_frag.frag_size[j]);
1686              XBT_DEBUG("Different size used in fragment %zu in block %zu : %d - %d -> distance = %d", j, i, heapinfo1[i].busy_frag.frag_size[j], heapinfo2[i].busy_frag.frag_size[j], distance); 
1687              continue;
1688              } */
1689
1690           k = 0;
1691
1692           //while(k < max(heapinfo1[i].busy_frag.frag_size[j], heapinfo2[i].busy_frag.frag_size[j])){
1693           while (k < (BLOCKSIZE / (BLOCKSIZE >> state->heapinfo1[i].type))) {
1694             if (memcmp((char *) addr_frag1 + k, (char *) addr_frag2 + k, 1) !=
1695                 0) {
1696               distance++;
1697             }
1698             k++;
1699           }
1700
1701         }
1702
1703         i++;
1704
1705       }
1706
1707     }
1708
1709   }
1710
1711   return distance;
1712
1713 }
1714 #endif