Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1 a.m. lazy commit. Plenty of new libs appeared on our radar on fedora after an updat...
[simgrid.git] / src / mc / compare.cpp
1 /* Copyright (c) 2008-2019. The 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 /** \file compare.cpp Memory snapshotting and comparison                    */
7
8 #include "src/mc/mc_config.hpp"
9 #include "src/mc/mc_private.hpp"
10 #include "src/mc/mc_smx.hpp"
11 #include "src/mc/sosp/Snapshot.hpp"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_compare, xbt, "Logging specific to mc_compare in mc");
14
15 using simgrid::mc::remote;
16
17 namespace simgrid {
18 namespace mc {
19
20 /*********************************** Heap comparison ***********************************/
21 /***************************************************************************************/
22
23 class HeapLocation {
24 public:
25   int block_    = 0;
26   int fragment_ = 0;
27
28   HeapLocation() = default;
29   explicit HeapLocation(int block, int fragment = 0) : block_(block), fragment_(fragment) {}
30
31   bool operator==(HeapLocation const& that) const
32   {
33     return block_ == that.block_ && fragment_ == that.fragment_;
34   }
35   bool operator<(HeapLocation const& that) const
36   {
37     return std::make_pair(block_, fragment_) < std::make_pair(that.block_, that.fragment_);
38   }
39 };
40
41 typedef std::array<HeapLocation, 2> HeapLocationPair;
42 typedef std::set<HeapLocationPair> HeapLocationPairs;
43
44 class HeapArea : public HeapLocation {
45 public:
46   bool valid_ = false;
47   HeapArea() = default;
48   explicit HeapArea(int block) : valid_(true) { block_ = block; }
49   HeapArea(int block, int fragment) : valid_(true)
50   {
51     block_    = block;
52     fragment_ = fragment;
53   }
54 };
55
56 class ProcessComparisonState {
57 public:
58   const std::vector<simgrid::mc::IgnoredHeapRegion>* to_ignore = nullptr;
59   std::vector<HeapArea> equals_to;
60   std::vector<simgrid::mc::Type*> types;
61   std::size_t heapsize = 0;
62
63   void initHeapInformation(xbt_mheap_t heap, const std::vector<simgrid::mc::IgnoredHeapRegion>& i);
64 };
65
66 class StateComparator {
67 public:
68   s_xbt_mheap_t std_heap_copy;
69   std::size_t heaplimit;
70   std::array<ProcessComparisonState, 2> processStates;
71
72   std::unordered_set<std::pair<const void*, const void*>, simgrid::xbt::hash<std::pair<const void*, const void*>>>
73       compared_pointers;
74
75   void clear()
76   {
77     compared_pointers.clear();
78   }
79
80   int initHeapInformation(xbt_mheap_t heap1, xbt_mheap_t heap2, const std::vector<simgrid::mc::IgnoredHeapRegion>& i1,
81                           const std::vector<simgrid::mc::IgnoredHeapRegion>& i2);
82
83   template <int rank> HeapArea& equals_to_(std::size_t i, std::size_t j)
84   {
85     return processStates[rank - 1].equals_to[MAX_FRAGMENT_PER_BLOCK * i + j];
86   }
87   template <int rank> Type*& types_(std::size_t i, std::size_t j)
88   {
89     return processStates[rank - 1].types[MAX_FRAGMENT_PER_BLOCK * i + j];
90   }
91
92   template <int rank> HeapArea const& equals_to_(std::size_t i, std::size_t j) const
93   {
94     return processStates[rank - 1].equals_to[MAX_FRAGMENT_PER_BLOCK * i + j];
95   }
96   template <int rank> Type* const& types_(std::size_t i, std::size_t j) const
97   {
98     return processStates[rank - 1].types[MAX_FRAGMENT_PER_BLOCK * i + j];
99   }
100
101   /** Check whether two blocks are known to be matching
102    *
103    *  @param b1     Block of state 1
104    *  @param b2     Block of state 2
105    *  @return       if the blocks are known to be matching
106    */
107   bool blocksEqual(int b1, int b2) const
108   {
109     return this->equals_to_<1>(b1, 0).block_ == b2 && this->equals_to_<2>(b2, 0).block_ == b1;
110   }
111
112   /** Check whether two fragments are known to be matching
113    *
114    *  @param b1     Block of state 1
115    *  @param f1     Fragment of state 1
116    *  @param b2     Block of state 2
117    *  @param f2     Fragment of state 2
118    *  @return       if the fragments are known to be matching
119    */
120   int fragmentsEqual(int b1, int f1, int b2, int f2) const
121   {
122     return this->equals_to_<1>(b1, f1).block_ == b2 && this->equals_to_<1>(b1, f1).fragment_ == f2 &&
123            this->equals_to_<2>(b2, f2).block_ == b1 && this->equals_to_<2>(b2, f2).fragment_ == f1;
124   }
125
126   void match_equals(HeapLocationPairs* list);
127 };
128
129 }
130 }
131
132 /************************************************************************************/
133
134 static ssize_t heap_comparison_ignore_size(const std::vector<simgrid::mc::IgnoredHeapRegion>* ignore_list,
135                                            const void* address)
136 {
137   int start = 0;
138   int end = ignore_list->size() - 1;
139
140   while (start <= end) {
141     unsigned int cursor = (start + end) / 2;
142     simgrid::mc::IgnoredHeapRegion const& region = (*ignore_list)[cursor];
143     if (region.address == address)
144       return region.size;
145     if (region.address < address)
146       start = cursor + 1;
147     if (region.address > address)
148       end = cursor - 1;
149   }
150
151   return -1;
152 }
153
154 static bool is_stack(const void *address)
155 {
156   for (auto const& stack : mc_model_checker->process().stack_areas())
157     if (address == stack.address)
158       return true;
159   return false;
160 }
161
162 // TODO, this should depend on the snapshot?
163 static bool is_block_stack(int block)
164 {
165   for (auto const& stack : mc_model_checker->process().stack_areas())
166     if (block == stack.block)
167       return true;
168   return false;
169 }
170
171 namespace simgrid {
172 namespace mc {
173
174 void StateComparator::match_equals(HeapLocationPairs* list)
175 {
176   for (auto const& pair : *list) {
177     if (pair[0].fragment_ != -1) {
178       this->equals_to_<1>(pair[0].block_, pair[0].fragment_) = simgrid::mc::HeapArea(pair[1].block_, pair[1].fragment_);
179       this->equals_to_<2>(pair[1].block_, pair[1].fragment_) = simgrid::mc::HeapArea(pair[0].block_, pair[0].fragment_);
180     } else {
181       this->equals_to_<1>(pair[0].block_, 0) = simgrid::mc::HeapArea(pair[1].block_, pair[1].fragment_);
182       this->equals_to_<2>(pair[1].block_, 0) = simgrid::mc::HeapArea(pair[0].block_, pair[0].fragment_);
183     }
184   }
185 }
186
187 void ProcessComparisonState::initHeapInformation(xbt_mheap_t heap, const std::vector<simgrid::mc::IgnoredHeapRegion>& i)
188 {
189   auto heaplimit  = heap->heaplimit;
190   this->heapsize  = heap->heapsize;
191   this->to_ignore = &i;
192   this->equals_to.assign(heaplimit * MAX_FRAGMENT_PER_BLOCK, HeapArea());
193   this->types.assign(heaplimit * MAX_FRAGMENT_PER_BLOCK, nullptr);
194 }
195
196 int StateComparator::initHeapInformation(xbt_mheap_t heap1, xbt_mheap_t heap2,
197                                          const std::vector<simgrid::mc::IgnoredHeapRegion>& i1,
198                                          const std::vector<simgrid::mc::IgnoredHeapRegion>& i2)
199 {
200   if ((heap1->heaplimit != heap2->heaplimit) || (heap1->heapsize != heap2->heapsize))
201     return -1;
202   this->heaplimit     = heap1->heaplimit;
203   this->std_heap_copy = *mc_model_checker->process().get_heap();
204   this->processStates[0].initHeapInformation(heap1, i1);
205   this->processStates[1].initHeapInformation(heap2, i2);
206   return 0;
207 }
208
209 // TODO, have a robust way to find it in O(1)
210 static inline Region* MC_get_heap_region(const Snapshot& snapshot)
211 {
212   for (auto const& region : snapshot.snapshot_regions_)
213     if (region->region_type() == simgrid::mc::RegionType::Heap)
214       return region.get();
215   xbt_die("No heap region");
216 }
217
218 static bool heap_area_differ(StateComparator& state, const void* area1, const void* area2, const Snapshot& snapshot1,
219                              const Snapshot& snapshot2, HeapLocationPairs* previous, Type* type, int pointer_level);
220
221 static bool mmalloc_heap_differ(simgrid::mc::StateComparator& state, const simgrid::mc::Snapshot& snapshot1,
222                                 const simgrid::mc::Snapshot& snapshot2)
223 {
224   const simgrid::mc::RemoteClient& process = mc_model_checker->process();
225
226   /* Check busy blocks */
227   size_t i1 = 1;
228
229   malloc_info heapinfo_temp1;
230   malloc_info heapinfo_temp2;
231   malloc_info heapinfo_temp2b;
232
233   simgrid::mc::Region* heap_region1 = MC_get_heap_region(snapshot1);
234   simgrid::mc::Region* heap_region2 = MC_get_heap_region(snapshot2);
235
236   // This is the address of std_heap->heapinfo in the application process:
237   void* heapinfo_address = &((xbt_mheap_t)process.heap_address)->heapinfo;
238
239   // This is in snapshot do not use them directly:
240   const malloc_info* heapinfos1 =
241       snapshot1.read<malloc_info*>(RemotePtr<malloc_info*>((std::uint64_t)heapinfo_address));
242   const malloc_info* heapinfos2 =
243       snapshot2.read<malloc_info*>(RemotePtr<malloc_info*>((std::uint64_t)heapinfo_address));
244
245   while (i1 < state.heaplimit) {
246
247     const malloc_info* heapinfo1 =
248         (const malloc_info*)heap_region1->read(&heapinfo_temp1, &heapinfos1[i1], sizeof(malloc_info));
249     const malloc_info* heapinfo2 =
250         (const malloc_info*)heap_region2->read(&heapinfo_temp2, &heapinfos2[i1], sizeof(malloc_info));
251
252     if (heapinfo1->type == MMALLOC_TYPE_FREE || heapinfo1->type == MMALLOC_TYPE_HEAPINFO) {      /* Free block */
253       i1 ++;
254       continue;
255     }
256
257     xbt_assert(heapinfo1->type >= 0, "Unkown mmalloc block type: %d", heapinfo1->type);
258
259     void* addr_block1 = ((void*)(((ADDR2UINT(i1)) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase));
260
261     if (heapinfo1->type == MMALLOC_TYPE_UNFRAGMENTED) {       /* Large block */
262
263       if (is_stack(addr_block1)) {
264         for (size_t k = 0; k < heapinfo1->busy_block.size; k++)
265           state.equals_to_<1>(i1 + k, 0) = HeapArea(i1, -1);
266         for (size_t k = 0; k < heapinfo2->busy_block.size; k++)
267           state.equals_to_<2>(i1 + k, 0) = HeapArea(i1, -1);
268         i1 += heapinfo1->busy_block.size;
269         continue;
270       }
271
272       if (state.equals_to_<1>(i1, 0).valid_) {
273         i1++;
274         continue;
275       }
276
277       size_t i2 = 1;
278       bool equal = false;
279
280       /* Try first to associate to same block in the other heap */
281       if (heapinfo2->type == heapinfo1->type && state.equals_to_<2>(i1, 0).valid_ == 0) {
282         void* addr_block2 = (ADDR2UINT(i1) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
283         if (not heap_area_differ(state, addr_block1, addr_block2, snapshot1, snapshot2, nullptr, nullptr, 0)) {
284           for (size_t k = 1; k < heapinfo2->busy_block.size; k++)
285             state.equals_to_<2>(i1 + k, 0) = HeapArea(i1, -1);
286           for (size_t k = 1; k < heapinfo1->busy_block.size; k++)
287             state.equals_to_<1>(i1 + k, 0) = HeapArea(i1, -1);
288           equal = true;
289           i1 += heapinfo1->busy_block.size;
290         }
291       }
292
293       while (i2 < state.heaplimit && not equal) {
294
295         void* addr_block2 = (ADDR2UINT(i2) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
296
297         if (i2 == i1) {
298           i2++;
299           continue;
300         }
301
302         const malloc_info* heapinfo2b =
303             (const malloc_info*)heap_region2->read(&heapinfo_temp2b, &heapinfos2[i2], sizeof(malloc_info));
304
305         if (heapinfo2b->type != MMALLOC_TYPE_UNFRAGMENTED) {
306           i2++;
307           continue;
308         }
309
310         if (state.equals_to_<2>(i2, 0).valid_) {
311           i2++;
312           continue;
313         }
314
315         if (not heap_area_differ(state, addr_block1, addr_block2, snapshot1, snapshot2, nullptr, nullptr, 0)) {
316           for (size_t k = 1; k < heapinfo2b->busy_block.size; k++)
317             state.equals_to_<2>(i2 + k, 0) = HeapArea(i1, -1);
318           for (size_t k = 1; k < heapinfo1->busy_block.size; k++)
319             state.equals_to_<1>(i1 + k, 0) = HeapArea(i2, -1);
320           equal = true;
321           i1 += heapinfo1->busy_block.size;
322         }
323
324         i2++;
325       }
326
327       if (not equal) {
328         XBT_DEBUG("Block %zu not found (size_used = %zu, addr = %p)", i1, heapinfo1->busy_block.busy_size, addr_block1);
329         return true;
330       }
331
332     } else {                    /* Fragmented block */
333
334       for (size_t j1 = 0; j1 < (size_t)(BLOCKSIZE >> heapinfo1->type); j1++) {
335
336         if (heapinfo1->busy_frag.frag_size[j1] == -1) /* Free fragment_ */
337           continue;
338
339         if (state.equals_to_<1>(i1, j1).valid_)
340           continue;
341
342         void* addr_frag1 = (void*)((char*)addr_block1 + (j1 << heapinfo1->type));
343
344         size_t i2 = 1;
345         bool equal = false;
346
347         /* Try first to associate to same fragment_ in the other heap */
348         if (heapinfo2->type == heapinfo1->type && not state.equals_to_<2>(i1, j1).valid_) {
349           void* addr_block2 = (ADDR2UINT(i1) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
350           void* addr_frag2  = (void*)((char*)addr_block2 + (j1 << heapinfo2->type));
351           if (not heap_area_differ(state, addr_frag1, addr_frag2, snapshot1, snapshot2, nullptr, nullptr, 0))
352             equal = true;
353         }
354
355         while (i2 < state.heaplimit && not equal) {
356
357           const malloc_info* heapinfo2b =
358               (const malloc_info*)heap_region2->read(&heapinfo_temp2b, &heapinfos2[i2], sizeof(malloc_info));
359
360           if (heapinfo2b->type == MMALLOC_TYPE_FREE || heapinfo2b->type == MMALLOC_TYPE_HEAPINFO) {
361             i2 ++;
362             continue;
363           }
364
365           // We currently do not match fragments with unfragmented blocks (maybe we should).
366           if (heapinfo2b->type == MMALLOC_TYPE_UNFRAGMENTED) {
367             i2++;
368             continue;
369           }
370
371           xbt_assert(heapinfo2b->type >= 0, "Unkown mmalloc block type: %d", heapinfo2b->type);
372
373           for (size_t j2 = 0; j2 < (size_t)(BLOCKSIZE >> heapinfo2b->type); j2++) {
374
375             if (i2 == i1 && j2 == j1)
376               continue;
377
378             if (state.equals_to_<2>(i2, j2).valid_)
379               continue;
380
381             void* addr_block2 = (ADDR2UINT(i2) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
382             void* addr_frag2  = (void*)((char*)addr_block2 + (j2 << heapinfo2b->type));
383
384             if (not heap_area_differ(state, addr_frag1, addr_frag2, snapshot1, snapshot2, nullptr, nullptr, 0)) {
385               equal = true;
386               break;
387             }
388           }
389
390           i2++;
391         }
392
393         if (not equal) {
394           XBT_DEBUG("Block %zu, fragment_ %zu not found (size_used = %zd, address = %p)\n", i1, j1,
395                     heapinfo1->busy_frag.frag_size[j1], addr_frag1);
396           return true;
397         }
398       }
399
400       i1++;
401     }
402   }
403
404   /* All blocks/fragments are equal to another block/fragment_ ? */
405   for (size_t i = 1; i < state.heaplimit; i++) {
406     const malloc_info* heapinfo1 =
407         (const malloc_info*)heap_region1->read(&heapinfo_temp1, &heapinfos1[i], sizeof(malloc_info));
408
409     if (heapinfo1->type == MMALLOC_TYPE_UNFRAGMENTED && i1 == state.heaplimit && heapinfo1->busy_block.busy_size > 0 &&
410         not state.equals_to_<1>(i, 0).valid_) {
411       XBT_DEBUG("Block %zu not found (size used = %zu)", i, heapinfo1->busy_block.busy_size);
412       return true;
413     }
414
415     if (heapinfo1->type <= 0)
416       continue;
417     for (size_t j = 0; j < (size_t)(BLOCKSIZE >> heapinfo1->type); j++)
418       if (i1 == state.heaplimit && heapinfo1->busy_frag.frag_size[j] > 0 && not state.equals_to_<1>(i, j).valid_) {
419         XBT_DEBUG("Block %zu, Fragment %zu not found (size used = %zd)", i, j, heapinfo1->busy_frag.frag_size[j]);
420         return true;
421       }
422   }
423
424   for (size_t i = 1; i < state.heaplimit; i++) {
425     const malloc_info* heapinfo2 =
426         (const malloc_info*)heap_region2->read(&heapinfo_temp2, &heapinfos2[i], sizeof(malloc_info));
427     if (heapinfo2->type == MMALLOC_TYPE_UNFRAGMENTED && i1 == state.heaplimit && heapinfo2->busy_block.busy_size > 0 &&
428         not state.equals_to_<2>(i, 0).valid_) {
429       XBT_DEBUG("Block %zu not found (size used = %zu)", i,
430                 heapinfo2->busy_block.busy_size);
431       return true;
432     }
433
434     if (heapinfo2->type <= 0)
435       continue;
436
437     for (size_t j = 0; j < (size_t)(BLOCKSIZE >> heapinfo2->type); j++)
438       if (i1 == state.heaplimit && heapinfo2->busy_frag.frag_size[j] > 0 && not state.equals_to_<2>(i, j).valid_) {
439         XBT_DEBUG("Block %zu, Fragment %zu not found (size used = %zd)",
440           i, j, heapinfo2->busy_frag.frag_size[j]);
441         return true;
442       }
443   }
444
445   return false;
446 }
447
448 /**
449  *
450  * @param state
451  * @param real_area1     Process address for state 1
452  * @param real_area2     Process address for state 2
453  * @param snapshot1      Snapshot of state 1
454  * @param snapshot2      Snapshot of state 2
455  * @param previous
456  * @param size
457  * @param check_ignore
458  * @return true when different, false otherwise (same or unknown)
459  */
460 static bool heap_area_differ_without_type(simgrid::mc::StateComparator& state, const void* real_area1,
461                                           const void* real_area2, const simgrid::mc::Snapshot& snapshot1,
462                                           const simgrid::mc::Snapshot& snapshot2, HeapLocationPairs* previous, int size,
463                                           int check_ignore)
464 {
465   const simgrid::mc::RemoteClient& process = mc_model_checker->process();
466   simgrid::mc::Region* heap_region1  = MC_get_heap_region(snapshot1);
467   simgrid::mc::Region* heap_region2  = MC_get_heap_region(snapshot2);
468
469   for (int i = 0; i < size; ) {
470
471     if (check_ignore > 0) {
472       ssize_t ignore1 = heap_comparison_ignore_size(state.processStates[0].to_ignore, (const char*)real_area1 + i);
473       if (ignore1 != -1) {
474         ssize_t ignore2 = heap_comparison_ignore_size(state.processStates[1].to_ignore, (const char*)real_area2 + i);
475         if (ignore2 == ignore1) {
476           if (ignore1 == 0) {
477             return false;
478           } else {
479             i = i + ignore2;
480             check_ignore--;
481             continue;
482           }
483         }
484       }
485     }
486
487     if (MC_snapshot_region_memcmp((const char*)real_area1 + i, heap_region1, (const char*)real_area2 + i, heap_region2,
488                                   1) != 0) {
489
490       int pointer_align = (i / sizeof(void *)) * sizeof(void *);
491       const void* addr_pointed1 = snapshot1.read(remote((void* const*)((const char*)real_area1 + pointer_align)));
492       const void* addr_pointed2 = snapshot2.read(remote((void* const*)((const char*)real_area2 + pointer_align)));
493
494       if (process.in_maestro_stack(remote(addr_pointed1)) && process.in_maestro_stack(remote(addr_pointed2))) {
495         i = pointer_align + sizeof(void *);
496         continue;
497       }
498
499       if (snapshot1.on_heap(addr_pointed1) && snapshot2.on_heap(addr_pointed2)) {
500         // Both addresses are in the heap:
501         if (heap_area_differ(state, addr_pointed1, addr_pointed2, snapshot1, snapshot2, previous, nullptr, 0))
502           return true;
503         i = pointer_align + sizeof(void *);
504         continue;
505       }
506
507       return true;
508     }
509
510     i++;
511   }
512
513   return false;
514 }
515
516 /**
517  *
518  * @param state
519  * @param real_area1     Process address for state 1
520  * @param real_area2     Process address for state 2
521  * @param snapshot1      Snapshot of state 1
522  * @param snapshot2      Snapshot of state 2
523  * @param previous
524  * @param type
525  * @param area_size      either a byte_size or an elements_count (?)
526  * @param check_ignore
527  * @param pointer_level
528  * @return               true when different, false otherwise (same or unknown)
529  */
530 static bool heap_area_differ_with_type(simgrid::mc::StateComparator& state, const void* real_area1,
531                                        const void* real_area2, const simgrid::mc::Snapshot& snapshot1,
532                                        const simgrid::mc::Snapshot& snapshot2, HeapLocationPairs* previous,
533                                        simgrid::mc::Type* type, int area_size, int check_ignore, int pointer_level)
534 {
535   // HACK: This should not happen but in practice, there are some
536   // DW_TAG_typedef without an associated DW_AT_type:
537   //<1><538832>: Abbrev Number: 111 (DW_TAG_typedef)
538   //    <538833>   DW_AT_name        : (indirect string, offset: 0x2292f3): gregset_t
539   //    <538837>   DW_AT_decl_file   : 98
540   //    <538838>   DW_AT_decl_line   : 37
541   if (type == nullptr)
542     return false;
543
544   if (is_stack(real_area1) && is_stack(real_area2))
545     return false;
546
547   if (check_ignore > 0) {
548     ssize_t ignore1 = heap_comparison_ignore_size(state.processStates[0].to_ignore, real_area1);
549     if (ignore1 > 0 && heap_comparison_ignore_size(state.processStates[1].to_ignore, real_area2) == ignore1)
550       return false;
551   }
552
553   simgrid::mc::Type* subtype;
554   simgrid::mc::Type* subsubtype;
555   int elm_size;
556   const void* addr_pointed1;
557   const void* addr_pointed2;
558
559   simgrid::mc::Region* heap_region1 = MC_get_heap_region(snapshot1);
560   simgrid::mc::Region* heap_region2 = MC_get_heap_region(snapshot2);
561
562   switch (type->type) {
563     case DW_TAG_unspecified_type:
564       return true;
565
566     case DW_TAG_base_type:
567       if (not type->name.empty() && type->name == "char") { /* String, hence random (arbitrary ?) size */
568         if (real_area1 == real_area2)
569           return false;
570         else
571           return MC_snapshot_region_memcmp(real_area1, heap_region1, real_area2, heap_region2, area_size) != 0;
572       } else {
573         if (area_size != -1 && type->byte_size != area_size)
574           return false;
575         else
576           return MC_snapshot_region_memcmp(real_area1, heap_region1, real_area2, heap_region2, type->byte_size) != 0;
577       }
578
579     case DW_TAG_enumeration_type:
580       if (area_size != -1 && type->byte_size != area_size)
581         return false;
582       return MC_snapshot_region_memcmp(real_area1, heap_region1, real_area2, heap_region2, type->byte_size) != 0;
583
584     case DW_TAG_typedef:
585     case DW_TAG_const_type:
586     case DW_TAG_volatile_type:
587       return heap_area_differ_with_type(state, real_area1, real_area2, snapshot1, snapshot2, previous, type->subtype,
588                                         area_size, check_ignore, pointer_level);
589
590     case DW_TAG_array_type:
591       subtype = type->subtype;
592       switch (subtype->type) {
593         case DW_TAG_unspecified_type:
594           return true;
595
596         case DW_TAG_base_type:
597         case DW_TAG_enumeration_type:
598         case DW_TAG_pointer_type:
599         case DW_TAG_reference_type:
600         case DW_TAG_rvalue_reference_type:
601         case DW_TAG_structure_type:
602         case DW_TAG_class_type:
603         case DW_TAG_union_type:
604           if (subtype->full_type)
605             subtype = subtype->full_type;
606           elm_size  = subtype->byte_size;
607           break;
608         // TODO, just remove the type indirection?
609         case DW_TAG_const_type:
610         case DW_TAG_typedef:
611         case DW_TAG_volatile_type:
612           subsubtype = subtype->subtype;
613           if (subsubtype->full_type)
614             subsubtype = subsubtype->full_type;
615           elm_size     = subsubtype->byte_size;
616           break;
617         default:
618           return false;
619       }
620       for (int i = 0; i < type->element_count; i++) {
621         // TODO, add support for variable stride (DW_AT_byte_stride)
622         if (heap_area_differ_with_type(state, (const char*)real_area1 + (i * elm_size),
623                                        (const char*)real_area2 + (i * elm_size), snapshot1, snapshot2, previous,
624                                        type->subtype, subtype->byte_size, check_ignore, pointer_level))
625           return true;
626       }
627       return false;
628
629     case DW_TAG_reference_type:
630     case DW_TAG_rvalue_reference_type:
631     case DW_TAG_pointer_type:
632       if (type->subtype && type->subtype->type == DW_TAG_subroutine_type) {
633         addr_pointed1 = snapshot1.read(remote((void* const*)real_area1));
634         addr_pointed2 = snapshot2.read(remote((void* const*)real_area2));
635         return (addr_pointed1 != addr_pointed2);
636       }
637       pointer_level++;
638       if (pointer_level <= 1) {
639         addr_pointed1 = snapshot1.read(remote((void* const*)real_area1));
640         addr_pointed2 = snapshot2.read(remote((void* const*)real_area2));
641         if (snapshot1.on_heap(addr_pointed1) && snapshot2.on_heap(addr_pointed2))
642           return heap_area_differ(state, addr_pointed1, addr_pointed2, snapshot1, snapshot2, previous, type->subtype,
643                                   pointer_level);
644         else
645           return (addr_pointed1 != addr_pointed2);
646       }
647       for (size_t i = 0; i < (area_size / sizeof(void*)); i++) {
648         addr_pointed1 = snapshot1.read(remote((void* const*)((const char*)real_area1 + i * sizeof(void*))));
649         addr_pointed2 = snapshot2.read(remote((void* const*)((const char*)real_area2 + i * sizeof(void*))));
650         bool differ   = snapshot1.on_heap(addr_pointed1) && snapshot2.on_heap(addr_pointed2)
651                           ? heap_area_differ(state, addr_pointed1, addr_pointed2, snapshot1, snapshot2, previous,
652                                              type->subtype, pointer_level)
653                           : addr_pointed1 != addr_pointed2;
654         if (differ)
655           return true;
656       }
657       return false;
658
659     case DW_TAG_structure_type:
660     case DW_TAG_class_type:
661       if (type->full_type)
662         type = type->full_type;
663       if (area_size != -1 && type->byte_size != area_size) {
664         if (area_size <= type->byte_size || area_size % type->byte_size != 0)
665           return false;
666         for (size_t i = 0; i < (size_t)(area_size / type->byte_size); i++) {
667           if (heap_area_differ_with_type(state, (const char*)real_area1 + i * type->byte_size,
668                                          (const char*)real_area2 + i * type->byte_size, snapshot1, snapshot2, previous,
669                                          type, -1, check_ignore, 0))
670             return true;
671         }
672         } else {
673           for (simgrid::mc::Member& member : type->members) {
674             // TODO, optimize this? (for the offset case)
675             void* real_member1 = simgrid::dwarf::resolve_member(real_area1, type, &member, &snapshot1);
676             void* real_member2 = simgrid::dwarf::resolve_member(real_area2, type, &member, &snapshot2);
677             if (heap_area_differ_with_type(state, real_member1, real_member2, snapshot1, snapshot2, previous,
678                                            member.type, -1, check_ignore, 0))
679               return true;
680           }
681         }
682         return false;
683
684     case DW_TAG_union_type:
685       return heap_area_differ_without_type(state, real_area1, real_area2, snapshot1, snapshot2, previous,
686                                            type->byte_size, check_ignore);
687
688     default:
689       THROW_IMPOSSIBLE;
690   }
691 }
692
693 /** Infer the type of a part of the block from the type of the block
694  *
695  * TODO, handle DW_TAG_array_type as well as arrays of the object ((*p)[5], p[5])
696  *
697  * TODO, handle subfields ((*p).bar.foo, (*p)[5].bar…)
698  *
699  * @param  type               DWARF type ID of the root address
700  * @param  area_size
701  * @return                    DWARF type ID for given offset
702  */
703 static simgrid::mc::Type* get_offset_type(void* real_base_address, simgrid::mc::Type* type, int offset, int area_size,
704                                           const simgrid::mc::Snapshot& snapshot)
705 {
706
707   // Beginning of the block, the inferred variable type if the type of the block:
708   if (offset == 0)
709     return type;
710
711   switch (type->type) {
712
713   case DW_TAG_structure_type:
714   case DW_TAG_class_type:
715     if (type->full_type)
716       type = type->full_type;
717     if (area_size != -1 && type->byte_size != area_size) {
718       if (area_size > type->byte_size && area_size % type->byte_size == 0)
719         return type;
720       else
721         return nullptr;
722     }
723
724     for (simgrid::mc::Member& member : type->members) {
725       if (member.has_offset_location()) {
726         // We have the offset, use it directly (shortcut):
727         if (member.offset() == offset)
728           return member.type;
729       } else {
730         void* real_member = simgrid::dwarf::resolve_member(real_base_address, type, &member, &snapshot);
731         if ((char*)real_member - (char*)real_base_address == offset)
732           return member.type;
733       }
734     }
735     return nullptr;
736
737   default:
738     /* FIXME: other cases ? */
739     return nullptr;
740
741   }
742 }
743
744 /**
745  *
746  * @param area1          Process address for state 1
747  * @param area2          Process address for state 2
748  * @param snapshot1      Snapshot of state 1
749  * @param snapshot2      Snapshot of state 2
750  * @param previous       Pairs of blocks already compared on the current path (or nullptr)
751  * @param type_id        Type of variable
752  * @param pointer_level
753  * @return true when different, false otherwise (same or unknown)
754  */
755 static bool heap_area_differ(simgrid::mc::StateComparator& state, const void* area1, const void* area2,
756                              const simgrid::mc::Snapshot& snapshot1, const simgrid::mc::Snapshot& snapshot2,
757                              HeapLocationPairs* previous, simgrid::mc::Type* type, int pointer_level)
758 {
759   const simgrid::mc::RemoteClient& process = mc_model_checker->process();
760
761   ssize_t block1;
762   ssize_t block2;
763   ssize_t size;
764   int check_ignore = 0;
765
766   int type_size = -1;
767   int offset1   = 0;
768   int offset2   = 0;
769   int new_size1 = -1;
770   int new_size2 = -1;
771
772   simgrid::mc::Type* new_type1 = nullptr;
773   simgrid::mc::Type* new_type2 = nullptr;
774
775   bool match_pairs = false;
776
777   // This is the address of std_heap->heapinfo in the application process:
778   void* heapinfo_address = &((xbt_mheap_t)process.heap_address)->heapinfo;
779
780   const malloc_info* heapinfos1 = snapshot1.read(remote((const malloc_info**)heapinfo_address));
781   const malloc_info* heapinfos2 = snapshot2.read(remote((const malloc_info**)heapinfo_address));
782
783   malloc_info heapinfo_temp1;
784   malloc_info heapinfo_temp2;
785
786   simgrid::mc::HeapLocationPairs current;
787   if (previous == nullptr) {
788     previous = &current;
789     match_pairs = true;
790   }
791
792   // Get block number:
793   block1 = ((char*)area1 - (char*)state.std_heap_copy.heapbase) / BLOCKSIZE + 1;
794   block2 = ((char*)area2 - (char*)state.std_heap_copy.heapbase) / BLOCKSIZE + 1;
795
796   // If either block is a stack block:
797   if (is_block_stack((int) block1) && is_block_stack((int) block2)) {
798     previous->insert(HeapLocationPair{{HeapLocation(block1, -1), HeapLocation(block2, -1)}});
799     if (match_pairs)
800       state.match_equals(previous);
801     return false;
802   }
803
804   // If either block is not in the expected area of memory:
805   if (((char*)area1 < (char*)state.std_heap_copy.heapbase) || (block1 > (ssize_t)state.processStates[0].heapsize) ||
806       (block1 < 1) || ((char*)area2 < (char*)state.std_heap_copy.heapbase) ||
807       (block2 > (ssize_t)state.processStates[1].heapsize) || (block2 < 1)) {
808     return true;
809   }
810
811   // Process address of the block:
812   void* real_addr_block1 = (ADDR2UINT(block1) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
813   void* real_addr_block2 = (ADDR2UINT(block2) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
814
815   if (type) {
816     if (type->full_type)
817       type = type->full_type;
818
819     // This assume that for "boring" types (volatile ...) byte_size is absent:
820     while (type->byte_size == 0 && type->subtype != nullptr)
821       type = type->subtype;
822
823     // Find type_size:
824     if (type->type == DW_TAG_pointer_type ||
825         (type->type == DW_TAG_base_type && not type->name.empty() && type->name == "char"))
826       type_size = -1;
827     else
828       type_size = type->byte_size;
829
830   }
831
832   simgrid::mc::Region* heap_region1 = MC_get_heap_region(snapshot1);
833   simgrid::mc::Region* heap_region2 = MC_get_heap_region(snapshot2);
834
835   const malloc_info* heapinfo1 =
836       (const malloc_info*)heap_region1->read(&heapinfo_temp1, &heapinfos1[block1], sizeof(malloc_info));
837   const malloc_info* heapinfo2 =
838       (const malloc_info*)heap_region2->read(&heapinfo_temp2, &heapinfos2[block2], sizeof(malloc_info));
839
840   if ((heapinfo1->type == MMALLOC_TYPE_FREE || heapinfo1->type==MMALLOC_TYPE_HEAPINFO)
841     && (heapinfo2->type == MMALLOC_TYPE_FREE || heapinfo2->type ==MMALLOC_TYPE_HEAPINFO)) {
842     /* Free block */
843     if (match_pairs)
844       state.match_equals(previous);
845     return false;
846   }
847
848   if (heapinfo1->type == MMALLOC_TYPE_UNFRAGMENTED && heapinfo2->type == MMALLOC_TYPE_UNFRAGMENTED) {
849     /* Complete block */
850
851     // TODO, lookup variable type from block type as done for fragmented blocks
852
853     if (state.equals_to_<1>(block1, 0).valid_ && state.equals_to_<2>(block2, 0).valid_ &&
854         state.blocksEqual(block1, block2)) {
855       if (match_pairs)
856         state.match_equals(previous);
857       return false;
858     }
859
860     if (type_size != -1 && type_size != (ssize_t)heapinfo1->busy_block.busy_size &&
861         type_size != (ssize_t)heapinfo2->busy_block.busy_size &&
862         (type->name.empty() || type->name == "struct s_smx_context")) {
863       if (match_pairs)
864         state.match_equals(previous);
865       return false;
866     }
867
868     if (heapinfo1->busy_block.size != heapinfo2->busy_block.size ||
869         heapinfo1->busy_block.busy_size != heapinfo2->busy_block.busy_size)
870       return true;
871
872     if (not previous->insert(HeapLocationPair{{HeapLocation(block1, -1), HeapLocation(block2, -1)}}).second) {
873       if (match_pairs)
874         state.match_equals(previous);
875       return false;
876     }
877
878     size = heapinfo1->busy_block.busy_size;
879
880     // Remember (basic) type inference.
881     // The current data structure only allows us to do this for the whole block.
882     if (type != nullptr && area1 == real_addr_block1)
883       state.types_<1>(block1, 0) = type;
884     if (type != nullptr && area2 == real_addr_block2)
885       state.types_<2>(block2, 0) = type;
886
887     if (size <= 0) {
888       if (match_pairs)
889         state.match_equals(previous);
890       return false;
891     }
892
893     if (heapinfo1->busy_block.ignore > 0
894         && heapinfo2->busy_block.ignore == heapinfo1->busy_block.ignore)
895       check_ignore = heapinfo1->busy_block.ignore;
896
897   } else if ((heapinfo1->type > 0) && (heapinfo2->type > 0)) {      /* Fragmented block */
898
899     // Fragment number:
900     ssize_t frag1 = ((uintptr_t)(ADDR2UINT(area1) % (BLOCKSIZE))) >> heapinfo1->type;
901     ssize_t frag2 = ((uintptr_t)(ADDR2UINT(area2) % (BLOCKSIZE))) >> heapinfo2->type;
902
903     // Process address of the fragment_:
904     void* real_addr_frag1 = (void*)((char*)real_addr_block1 + (frag1 << heapinfo1->type));
905     void* real_addr_frag2 = (void*)((char*)real_addr_block2 + (frag2 << heapinfo2->type));
906
907     // Check the size of the fragments against the size of the type:
908     if (type_size != -1) {
909       if (heapinfo1->busy_frag.frag_size[frag1] == -1 || heapinfo2->busy_frag.frag_size[frag2] == -1) {
910         if (match_pairs)
911           state.match_equals(previous);
912         return false;
913       }
914       // ?
915       if (type_size != heapinfo1->busy_frag.frag_size[frag1]
916           || type_size != heapinfo2->busy_frag.frag_size[frag2]) {
917         if (match_pairs)
918           state.match_equals(previous);
919         return false;
920       }
921     }
922
923     // Check if the blocks are already matched together:
924     if (state.equals_to_<1>(block1, frag1).valid_ && state.equals_to_<2>(block2, frag2).valid_ && offset1 == offset2 &&
925         state.fragmentsEqual(block1, frag1, block2, frag2)) {
926       if (match_pairs)
927         state.match_equals(previous);
928       return false;
929     }
930     // Compare the size of both fragments:
931     if (heapinfo1->busy_frag.frag_size[frag1] != heapinfo2->busy_frag.frag_size[frag2]) {
932       if (type_size == -1) {
933         if (match_pairs)
934           state.match_equals(previous);
935         return false;
936       } else
937         return true;
938     }
939
940     // Size of the fragment_:
941     size = heapinfo1->busy_frag.frag_size[frag1];
942
943     // Remember (basic) type inference.
944     // The current data structure only allows us to do this for the whole fragment_.
945     if (type != nullptr && area1 == real_addr_frag1)
946       state.types_<1>(block1, frag1) = type;
947     if (type != nullptr && area2 == real_addr_frag2)
948       state.types_<2>(block2, frag2) = type;
949
950     // The type of the variable is already known:
951     if (type) {
952       new_type1 = new_type2 = type;
953     }
954     // Type inference from the block type.
955     else if (state.types_<1>(block1, frag1) != nullptr || state.types_<2>(block2, frag2) != nullptr) {
956
957       offset1 = (char*)area1 - (char*)real_addr_frag1;
958       offset2 = (char*)area2 - (char*)real_addr_frag2;
959
960       if (state.types_<1>(block1, frag1) != nullptr && state.types_<2>(block2, frag2) != nullptr) {
961         new_type1 = get_offset_type(real_addr_frag1, state.types_<1>(block1, frag1), offset1, size, snapshot1);
962         new_type2 = get_offset_type(real_addr_frag2, state.types_<2>(block2, frag2), offset1, size, snapshot2);
963       } else if (state.types_<1>(block1, frag1) != nullptr) {
964         new_type1 = get_offset_type(real_addr_frag1, state.types_<1>(block1, frag1), offset1, size, snapshot1);
965         new_type2 = get_offset_type(real_addr_frag2, state.types_<1>(block1, frag1), offset2, size, snapshot2);
966       } else if (state.types_<2>(block2, frag2) != nullptr) {
967         new_type1 = get_offset_type(real_addr_frag1, state.types_<2>(block2, frag2), offset1, size, snapshot1);
968         new_type2 = get_offset_type(real_addr_frag2, state.types_<2>(block2, frag2), offset2, size, snapshot2);
969       } else {
970         if (match_pairs)
971           state.match_equals(previous);
972         return false;
973       }
974
975       if (new_type1 != nullptr && new_type2 != nullptr && new_type1 != new_type2) {
976
977         type = new_type1;
978         while (type->byte_size == 0 && type->subtype != nullptr)
979           type = type->subtype;
980         new_size1 = type->byte_size;
981
982         type = new_type2;
983         while (type->byte_size == 0 && type->subtype != nullptr)
984           type = type->subtype;
985         new_size2 = type->byte_size;
986
987       } else {
988         if (match_pairs)
989           state.match_equals(previous);
990         return false;
991       }
992     }
993
994     if (new_size1 > 0 && new_size1 == new_size2) {
995       type = new_type1;
996       size = new_size1;
997     }
998
999     if (offset1 == 0 && offset2 == 0 &&
1000         not previous->insert(HeapLocationPair{{HeapLocation(block1, frag1), HeapLocation(block2, frag2)}}).second) {
1001       if (match_pairs)
1002         state.match_equals(previous);
1003       return false;
1004     }
1005
1006     if (size <= 0) {
1007       if (match_pairs)
1008         state.match_equals(previous);
1009       return false;
1010     }
1011
1012     if ((heapinfo1->busy_frag.ignore[frag1] > 0) &&
1013         (heapinfo2->busy_frag.ignore[frag2] == heapinfo1->busy_frag.ignore[frag1]))
1014       check_ignore = heapinfo1->busy_frag.ignore[frag1];
1015
1016   } else
1017     return true;
1018
1019   /* Start comparison */
1020   bool differ =
1021       type ? heap_area_differ_with_type(state, area1, area2, snapshot1, snapshot2, previous, type, size, check_ignore,
1022                                         pointer_level)
1023            : heap_area_differ_without_type(state, area1, area2, snapshot1, snapshot2, previous, size, check_ignore);
1024   if (differ)
1025     return true;
1026
1027   if (match_pairs)
1028     state.match_equals(previous);
1029   return false;
1030 }
1031
1032 }
1033 }
1034
1035 /************************** Snapshot comparison *******************************/
1036 /******************************************************************************/
1037
1038 static bool areas_differ_with_type(simgrid::mc::StateComparator& state, const void* real_area1,
1039                                    const simgrid::mc::Snapshot& snapshot1, simgrid::mc::Region* region1,
1040                                    const void* real_area2, const simgrid::mc::Snapshot& snapshot2,
1041                                    simgrid::mc::Region* region2, simgrid::mc::Type* type, int pointer_level)
1042 {
1043   simgrid::mc::Type* subtype;
1044   simgrid::mc::Type* subsubtype;
1045   int elm_size;
1046   int i;
1047
1048   xbt_assert(type != nullptr);
1049   switch (type->type) {
1050     case DW_TAG_unspecified_type:
1051       return true;
1052
1053     case DW_TAG_base_type:
1054     case DW_TAG_enumeration_type:
1055     case DW_TAG_union_type:
1056       return MC_snapshot_region_memcmp(real_area1, region1, real_area2, region2, type->byte_size) != 0;
1057     case DW_TAG_typedef:
1058     case DW_TAG_volatile_type:
1059     case DW_TAG_const_type:
1060       return areas_differ_with_type(state, real_area1, snapshot1, region1, real_area2, snapshot2, region2,
1061                                     type->subtype, pointer_level);
1062     case DW_TAG_array_type:
1063       subtype = type->subtype;
1064       switch (subtype->type) {
1065         case DW_TAG_unspecified_type:
1066           return true;
1067
1068         case DW_TAG_base_type:
1069         case DW_TAG_enumeration_type:
1070         case DW_TAG_pointer_type:
1071         case DW_TAG_reference_type:
1072         case DW_TAG_rvalue_reference_type:
1073         case DW_TAG_structure_type:
1074         case DW_TAG_class_type:
1075         case DW_TAG_union_type:
1076           if (subtype->full_type)
1077             subtype = subtype->full_type;
1078           elm_size  = subtype->byte_size;
1079           break;
1080         case DW_TAG_const_type:
1081         case DW_TAG_typedef:
1082         case DW_TAG_volatile_type:
1083           subsubtype = subtype->subtype;
1084           if (subsubtype->full_type)
1085             subsubtype = subsubtype->full_type;
1086           elm_size     = subsubtype->byte_size;
1087           break;
1088         default:
1089           return false;
1090       }
1091       for (i = 0; i < type->element_count; i++) {
1092         size_t off = i * elm_size;
1093         if (areas_differ_with_type(state, (const char*)real_area1 + off, snapshot1, region1,
1094                                    (const char*)real_area2 + off, snapshot2, region2, type->subtype, pointer_level))
1095           return true;
1096       }
1097       break;
1098     case DW_TAG_pointer_type:
1099     case DW_TAG_reference_type:
1100     case DW_TAG_rvalue_reference_type: {
1101       const void* addr_pointed1 = MC_region_read_pointer(region1, real_area1);
1102       const void* addr_pointed2 = MC_region_read_pointer(region2, real_area2);
1103
1104       if (type->subtype && type->subtype->type == DW_TAG_subroutine_type)
1105         return (addr_pointed1 != addr_pointed2);
1106       if (addr_pointed1 == nullptr && addr_pointed2 == nullptr)
1107         return false;
1108       if (addr_pointed1 == nullptr || addr_pointed2 == nullptr)
1109         return true;
1110       if (not state.compared_pointers.insert(std::make_pair(addr_pointed1, addr_pointed2)).second)
1111         return false;
1112
1113       pointer_level++;
1114
1115       // Some cases are not handled here:
1116       // * the pointers lead to different areas (one to the heap, the other to the RW segment ...)
1117       // * a pointer leads to the read-only segment of the current object
1118       // * a pointer lead to a different ELF object
1119
1120       if (snapshot1.on_heap(addr_pointed1)) {
1121         if (not snapshot2.on_heap(addr_pointed2))
1122           return true;
1123         // The pointers are both in the heap:
1124         return simgrid::mc::heap_area_differ(state, addr_pointed1, addr_pointed2, snapshot1, snapshot2, nullptr,
1125                                              type->subtype, pointer_level);
1126
1127       } else if (region1->contain(simgrid::mc::remote(addr_pointed1))) {
1128         // The pointers are both in the current object R/W segment:
1129         if (not region2->contain(simgrid::mc::remote(addr_pointed2)))
1130           return true;
1131         if (not type->type_id)
1132           return (addr_pointed1 != addr_pointed2);
1133         else
1134           return areas_differ_with_type(state, addr_pointed1, snapshot1, region1, addr_pointed2, snapshot2, region2,
1135                                         type->subtype, pointer_level);
1136       } else {
1137
1138         // TODO, We do not handle very well the case where
1139         // it belongs to a different (non-heap) region from the current one.
1140
1141         return (addr_pointed1 != addr_pointed2);
1142       }
1143     }
1144     case DW_TAG_structure_type:
1145     case DW_TAG_class_type:
1146       for (simgrid::mc::Member& member : type->members) {
1147         void* member1                   = simgrid::dwarf::resolve_member(real_area1, type, &member, &snapshot1);
1148         void* member2                   = simgrid::dwarf::resolve_member(real_area2, type, &member, &snapshot2);
1149         simgrid::mc::Region* subregion1 = snapshot1.get_region(member1, region1); // region1 is hinted
1150         simgrid::mc::Region* subregion2 = snapshot2.get_region(member2, region2); // region2 is hinted
1151         if (areas_differ_with_type(state, member1, snapshot1, subregion1, member2, snapshot2, subregion2, member.type,
1152                                    pointer_level))
1153           return true;
1154       }
1155       break;
1156     case DW_TAG_subroutine_type:
1157       return false;
1158     default:
1159       XBT_VERB("Unknown case: %d", type->type);
1160       break;
1161   }
1162
1163   return false;
1164 }
1165
1166 static bool global_variables_differ(simgrid::mc::StateComparator& state, simgrid::mc::ObjectInformation* object_info,
1167                                     simgrid::mc::Region* r1, simgrid::mc::Region* r2,
1168                                     const simgrid::mc::Snapshot& snapshot1, const simgrid::mc::Snapshot& snapshot2)
1169 {
1170   xbt_assert(r1 && r2, "Missing region.");
1171
1172   const std::vector<simgrid::mc::Variable>& variables = object_info->global_variables;
1173
1174   for (simgrid::mc::Variable const& current_var : variables) {
1175
1176     // If the variable is not in this object, skip it:
1177     // We do not expect to find a pointer to something which is not reachable
1178     // by the global variables.
1179     if ((char *) current_var.address < (char *) object_info->start_rw
1180         || (char *) current_var.address > (char *) object_info->end_rw)
1181       continue;
1182
1183     simgrid::mc::Type* bvariable_type = current_var.type;
1184     if (areas_differ_with_type(state, current_var.address, snapshot1, r1, current_var.address, snapshot2, r2,
1185                                bvariable_type, 0)) {
1186       XBT_VERB("Global variable %s (%p) is different between snapshots", current_var.name.c_str(), current_var.address);
1187       return true;
1188     }
1189   }
1190
1191   return false;
1192 }
1193
1194 static bool local_variables_differ(simgrid::mc::StateComparator& state, const simgrid::mc::Snapshot& snapshot1,
1195                                    const simgrid::mc::Snapshot& snapshot2, const_mc_snapshot_stack_t stack1,
1196                                    const_mc_snapshot_stack_t stack2)
1197 {
1198   if (stack1->local_variables.size() != stack2->local_variables.size()) {
1199     XBT_VERB("Different number of local variables");
1200     return true;
1201   }
1202
1203   for (unsigned int cursor = 0; cursor < stack1->local_variables.size(); cursor++) {
1204     const_local_variable_t current_var1 = &stack1->local_variables[cursor];
1205     const_local_variable_t current_var2 = &stack2->local_variables[cursor];
1206     if (current_var1->name != current_var2->name || current_var1->subprogram != current_var2->subprogram ||
1207         current_var1->ip != current_var2->ip) {
1208       // TODO, fix current_varX->subprogram->name to include name if DW_TAG_inlined_subprogram
1209       XBT_VERB("Different name of variable (%s - %s) or frame (%s - %s) or ip (%lu - %lu)", current_var1->name.c_str(),
1210                current_var2->name.c_str(), current_var1->subprogram->name.c_str(),
1211                current_var2->subprogram->name.c_str(), current_var1->ip, current_var2->ip);
1212       return true;
1213     }
1214
1215     if (areas_differ_with_type(state, current_var1->address, snapshot1, snapshot1.get_region(current_var1->address),
1216                                current_var2->address, snapshot2, snapshot2.get_region(current_var2->address),
1217                                current_var1->type, 0)) {
1218       XBT_VERB("Local variable %s (%p - %p) in frame %s is different between snapshots", current_var1->name.c_str(),
1219                current_var1->address, current_var2->address, current_var1->subprogram->name.c_str());
1220       return true;
1221     }
1222   }
1223   return false;
1224 }
1225
1226 namespace simgrid {
1227 namespace mc {
1228
1229 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2)
1230 {
1231   // TODO, make this a field of ModelChecker or something similar
1232   static StateComparator state_comparator;
1233
1234   const RemoteClient& process = mc_model_checker->process();
1235
1236   if (s1->hash_ != s2->hash_) {
1237     XBT_VERB("(%d - %d) Different hash: 0x%" PRIx64 "--0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_,
1238              s2->hash_);
1239     return false;
1240   }
1241   XBT_VERB("(%d - %d) Same hash: 0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_);
1242
1243   /* Compare enabled processes */
1244   if (s1->enabled_processes_ != s2->enabled_processes_) {
1245     XBT_VERB("(%d - %d) Different amount of enabled processes", s1->num_state_, s2->num_state_);
1246     return false;
1247   }
1248
1249   /* Compare size of stacks */
1250   for (unsigned long i = 0; i < s1->stacks_.size(); i++) {
1251     size_t size_used1 = s1->stack_sizes_[i];
1252     size_t size_used2 = s2->stack_sizes_[i];
1253     if (size_used1 != size_used2) {
1254       XBT_VERB("(%d - %d) Different size used in stacks: %zu - %zu", s1->num_state_, s2->num_state_, size_used1,
1255                size_used2);
1256       return false;
1257     }
1258   }
1259
1260   /* Init heap information used in heap comparison algorithm */
1261   xbt_mheap_t heap1 =
1262       static_cast<xbt_mheap_t>(s1->read_bytes(alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
1263                                               remote(process.heap_address), simgrid::mc::ReadOptions::lazy()));
1264   xbt_mheap_t heap2 =
1265       static_cast<xbt_mheap_t>(s2->read_bytes(alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
1266                                               remote(process.heap_address), simgrid::mc::ReadOptions::lazy()));
1267   if (state_comparator.initHeapInformation(heap1, heap2, s1->to_ignore_, s2->to_ignore_) == -1) {
1268     XBT_VERB("(%d - %d) Different heap information", s1->num_state_, s2->num_state_);
1269     return false;
1270   }
1271
1272   /* Stacks comparison */
1273   for (unsigned int cursor = 0; cursor < s1->stacks_.size(); cursor++) {
1274     const_mc_snapshot_stack_t stack1 = &s1->stacks_[cursor];
1275     const_mc_snapshot_stack_t stack2 = &s2->stacks_[cursor];
1276
1277     if (local_variables_differ(state_comparator, *s1, *s2, stack1, stack2)) {
1278       XBT_VERB("(%d - %d) Different local variables between stacks %u", s1->num_state_, s2->num_state_, cursor + 1);
1279       return false;
1280     }
1281   }
1282
1283   size_t regions_count = s1->snapshot_regions_.size();
1284   if (regions_count != s2->snapshot_regions_.size())
1285     return false;
1286
1287   for (size_t k = 0; k != regions_count; ++k) {
1288     Region* region1 = s1->snapshot_regions_[k].get();
1289     Region* region2 = s2->snapshot_regions_[k].get();
1290
1291     // Preconditions:
1292     if (region1->region_type() != RegionType::Data)
1293       continue;
1294
1295     xbt_assert(region1->region_type() == region2->region_type());
1296     xbt_assert(region1->object_info() == region2->object_info());
1297     xbt_assert(region1->object_info());
1298
1299     /* Compare global variables */
1300     if (global_variables_differ(state_comparator, region1->object_info(), region1, region2, *s1, *s2)) {
1301       std::string const& name = region1->object_info()->file_name;
1302       XBT_VERB("(%d - %d) Different global variables in %s", s1->num_state_, s2->num_state_, name.c_str());
1303       return false;
1304     }
1305   }
1306
1307   /* Compare heap */
1308   if (mmalloc_heap_differ(state_comparator, *s1, *s2)) {
1309     XBT_VERB("(%d - %d) Different heap (mmalloc_compare)", s1->num_state_, s2->num_state_);
1310     return false;
1311   }
1312
1313   XBT_VERB("(%d - %d) No difference found", s1->num_state_, s2->num_state_);
1314
1315   return true;
1316 }
1317
1318 }
1319 }