Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ca257f84d61995328005b42a6b37a695e2511eb8
[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 (type->byte_size == 0)
664         return false;
665       if (area_size != -1 && type->byte_size != area_size) {
666         if (area_size <= type->byte_size || area_size % type->byte_size != 0)
667           return false;
668         for (size_t i = 0; i < (size_t)(area_size / type->byte_size); i++) {
669           if (heap_area_differ_with_type(state, (const char*)real_area1 + i * type->byte_size,
670                                          (const char*)real_area2 + i * type->byte_size, snapshot1, snapshot2, previous,
671                                          type, -1, check_ignore, 0))
672             return true;
673         }
674         } else {
675           for (simgrid::mc::Member& member : type->members) {
676             // TODO, optimize this? (for the offset case)
677             void* real_member1 = simgrid::dwarf::resolve_member(real_area1, type, &member, &snapshot1);
678             void* real_member2 = simgrid::dwarf::resolve_member(real_area2, type, &member, &snapshot2);
679             if (heap_area_differ_with_type(state, real_member1, real_member2, snapshot1, snapshot2, previous,
680                                            member.type, -1, check_ignore, 0))
681               return true;
682           }
683         }
684         return false;
685
686     case DW_TAG_union_type:
687       return heap_area_differ_without_type(state, real_area1, real_area2, snapshot1, snapshot2, previous,
688                                            type->byte_size, check_ignore);
689
690     default:
691       THROW_IMPOSSIBLE;
692   }
693 }
694
695 /** Infer the type of a part of the block from the type of the block
696  *
697  * TODO, handle DW_TAG_array_type as well as arrays of the object ((*p)[5], p[5])
698  *
699  * TODO, handle subfields ((*p).bar.foo, (*p)[5].bar…)
700  *
701  * @param  type               DWARF type ID of the root address
702  * @param  area_size
703  * @return                    DWARF type ID for given offset
704  */
705 static simgrid::mc::Type* get_offset_type(void* real_base_address, simgrid::mc::Type* type, int offset, int area_size,
706                                           const simgrid::mc::Snapshot& snapshot)
707 {
708
709   // Beginning of the block, the inferred variable type if the type of the block:
710   if (offset == 0)
711     return type;
712
713   switch (type->type) {
714
715   case DW_TAG_structure_type:
716   case DW_TAG_class_type:
717     if (type->full_type)
718       type = type->full_type;
719     if (area_size != -1 && type->byte_size != area_size) {
720       if (area_size > type->byte_size && area_size % type->byte_size == 0)
721         return type;
722       else
723         return nullptr;
724     }
725
726     for (simgrid::mc::Member& member : type->members) {
727       if (member.has_offset_location()) {
728         // We have the offset, use it directly (shortcut):
729         if (member.offset() == offset)
730           return member.type;
731       } else {
732         void* real_member = simgrid::dwarf::resolve_member(real_base_address, type, &member, &snapshot);
733         if ((char*)real_member - (char*)real_base_address == offset)
734           return member.type;
735       }
736     }
737     return nullptr;
738
739   default:
740     /* FIXME: other cases ? */
741     return nullptr;
742
743   }
744 }
745
746 /**
747  *
748  * @param area1          Process address for state 1
749  * @param area2          Process address for state 2
750  * @param snapshot1      Snapshot of state 1
751  * @param snapshot2      Snapshot of state 2
752  * @param previous       Pairs of blocks already compared on the current path (or nullptr)
753  * @param type_id        Type of variable
754  * @param pointer_level
755  * @return true when different, false otherwise (same or unknown)
756  */
757 static bool heap_area_differ(simgrid::mc::StateComparator& state, const void* area1, const void* area2,
758                              const simgrid::mc::Snapshot& snapshot1, const simgrid::mc::Snapshot& snapshot2,
759                              HeapLocationPairs* previous, simgrid::mc::Type* type, int pointer_level)
760 {
761   const simgrid::mc::RemoteClient& process = mc_model_checker->process();
762
763   ssize_t block1;
764   ssize_t block2;
765   ssize_t size;
766   int check_ignore = 0;
767
768   int type_size = -1;
769   int offset1   = 0;
770   int offset2   = 0;
771   int new_size1 = -1;
772   int new_size2 = -1;
773
774   simgrid::mc::Type* new_type1 = nullptr;
775   simgrid::mc::Type* new_type2 = nullptr;
776
777   bool match_pairs = false;
778
779   // This is the address of std_heap->heapinfo in the application process:
780   void* heapinfo_address = &((xbt_mheap_t)process.heap_address)->heapinfo;
781
782   const malloc_info* heapinfos1 = snapshot1.read(remote((const malloc_info**)heapinfo_address));
783   const malloc_info* heapinfos2 = snapshot2.read(remote((const malloc_info**)heapinfo_address));
784
785   malloc_info heapinfo_temp1;
786   malloc_info heapinfo_temp2;
787
788   simgrid::mc::HeapLocationPairs current;
789   if (previous == nullptr) {
790     previous = &current;
791     match_pairs = true;
792   }
793
794   // Get block number:
795   block1 = ((char*)area1 - (char*)state.std_heap_copy.heapbase) / BLOCKSIZE + 1;
796   block2 = ((char*)area2 - (char*)state.std_heap_copy.heapbase) / BLOCKSIZE + 1;
797
798   // If either block is a stack block:
799   if (is_block_stack((int) block1) && is_block_stack((int) block2)) {
800     previous->insert(HeapLocationPair{{HeapLocation(block1, -1), HeapLocation(block2, -1)}});
801     if (match_pairs)
802       state.match_equals(previous);
803     return false;
804   }
805
806   // If either block is not in the expected area of memory:
807   if (((char*)area1 < (char*)state.std_heap_copy.heapbase) || (block1 > (ssize_t)state.processStates[0].heapsize) ||
808       (block1 < 1) || ((char*)area2 < (char*)state.std_heap_copy.heapbase) ||
809       (block2 > (ssize_t)state.processStates[1].heapsize) || (block2 < 1)) {
810     return true;
811   }
812
813   // Process address of the block:
814   void* real_addr_block1 = (ADDR2UINT(block1) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
815   void* real_addr_block2 = (ADDR2UINT(block2) - 1) * BLOCKSIZE + (char*)state.std_heap_copy.heapbase;
816
817   if (type) {
818     if (type->full_type)
819       type = type->full_type;
820
821     // This assume that for "boring" types (volatile ...) byte_size is absent:
822     while (type->byte_size == 0 && type->subtype != nullptr)
823       type = type->subtype;
824
825     // Find type_size:
826     if (type->type == DW_TAG_pointer_type ||
827         (type->type == DW_TAG_base_type && not type->name.empty() && type->name == "char"))
828       type_size = -1;
829     else
830       type_size = type->byte_size;
831
832   }
833
834   simgrid::mc::Region* heap_region1 = MC_get_heap_region(snapshot1);
835   simgrid::mc::Region* heap_region2 = MC_get_heap_region(snapshot2);
836
837   const malloc_info* heapinfo1 =
838       (const malloc_info*)heap_region1->read(&heapinfo_temp1, &heapinfos1[block1], sizeof(malloc_info));
839   const malloc_info* heapinfo2 =
840       (const malloc_info*)heap_region2->read(&heapinfo_temp2, &heapinfos2[block2], sizeof(malloc_info));
841
842   if ((heapinfo1->type == MMALLOC_TYPE_FREE || heapinfo1->type==MMALLOC_TYPE_HEAPINFO)
843     && (heapinfo2->type == MMALLOC_TYPE_FREE || heapinfo2->type ==MMALLOC_TYPE_HEAPINFO)) {
844     /* Free block */
845     if (match_pairs)
846       state.match_equals(previous);
847     return false;
848   }
849
850   if (heapinfo1->type == MMALLOC_TYPE_UNFRAGMENTED && heapinfo2->type == MMALLOC_TYPE_UNFRAGMENTED) {
851     /* Complete block */
852
853     // TODO, lookup variable type from block type as done for fragmented blocks
854
855     if (state.equals_to_<1>(block1, 0).valid_ && state.equals_to_<2>(block2, 0).valid_ &&
856         state.blocksEqual(block1, block2)) {
857       if (match_pairs)
858         state.match_equals(previous);
859       return false;
860     }
861
862     if (type_size != -1 && type_size != (ssize_t)heapinfo1->busy_block.busy_size &&
863         type_size != (ssize_t)heapinfo2->busy_block.busy_size &&
864         (type->name.empty() || type->name == "struct s_smx_context")) {
865       if (match_pairs)
866         state.match_equals(previous);
867       return false;
868     }
869
870     if (heapinfo1->busy_block.size != heapinfo2->busy_block.size ||
871         heapinfo1->busy_block.busy_size != heapinfo2->busy_block.busy_size)
872       return true;
873
874     if (not previous->insert(HeapLocationPair{{HeapLocation(block1, -1), HeapLocation(block2, -1)}}).second) {
875       if (match_pairs)
876         state.match_equals(previous);
877       return false;
878     }
879
880     size = heapinfo1->busy_block.busy_size;
881
882     // Remember (basic) type inference.
883     // The current data structure only allows us to do this for the whole block.
884     if (type != nullptr && area1 == real_addr_block1)
885       state.types_<1>(block1, 0) = type;
886     if (type != nullptr && area2 == real_addr_block2)
887       state.types_<2>(block2, 0) = type;
888
889     if (size <= 0) {
890       if (match_pairs)
891         state.match_equals(previous);
892       return false;
893     }
894
895     if (heapinfo1->busy_block.ignore > 0
896         && heapinfo2->busy_block.ignore == heapinfo1->busy_block.ignore)
897       check_ignore = heapinfo1->busy_block.ignore;
898
899   } else if ((heapinfo1->type > 0) && (heapinfo2->type > 0)) {      /* Fragmented block */
900
901     // Fragment number:
902     ssize_t frag1 = ((uintptr_t)(ADDR2UINT(area1) % (BLOCKSIZE))) >> heapinfo1->type;
903     ssize_t frag2 = ((uintptr_t)(ADDR2UINT(area2) % (BLOCKSIZE))) >> heapinfo2->type;
904
905     // Process address of the fragment_:
906     void* real_addr_frag1 = (void*)((char*)real_addr_block1 + (frag1 << heapinfo1->type));
907     void* real_addr_frag2 = (void*)((char*)real_addr_block2 + (frag2 << heapinfo2->type));
908
909     // Check the size of the fragments against the size of the type:
910     if (type_size != -1) {
911       if (heapinfo1->busy_frag.frag_size[frag1] == -1 || heapinfo2->busy_frag.frag_size[frag2] == -1) {
912         if (match_pairs)
913           state.match_equals(previous);
914         return false;
915       }
916       // ?
917       if (type_size != heapinfo1->busy_frag.frag_size[frag1]
918           || type_size != heapinfo2->busy_frag.frag_size[frag2]) {
919         if (match_pairs)
920           state.match_equals(previous);
921         return false;
922       }
923     }
924
925     // Check if the blocks are already matched together:
926     if (state.equals_to_<1>(block1, frag1).valid_ && state.equals_to_<2>(block2, frag2).valid_ && offset1 == offset2 &&
927         state.fragmentsEqual(block1, frag1, block2, frag2)) {
928       if (match_pairs)
929         state.match_equals(previous);
930       return false;
931     }
932     // Compare the size of both fragments:
933     if (heapinfo1->busy_frag.frag_size[frag1] != heapinfo2->busy_frag.frag_size[frag2]) {
934       if (type_size == -1) {
935         if (match_pairs)
936           state.match_equals(previous);
937         return false;
938       } else
939         return true;
940     }
941
942     // Size of the fragment_:
943     size = heapinfo1->busy_frag.frag_size[frag1];
944
945     // Remember (basic) type inference.
946     // The current data structure only allows us to do this for the whole fragment_.
947     if (type != nullptr && area1 == real_addr_frag1)
948       state.types_<1>(block1, frag1) = type;
949     if (type != nullptr && area2 == real_addr_frag2)
950       state.types_<2>(block2, frag2) = type;
951
952     // The type of the variable is already known:
953     if (type) {
954       new_type1 = new_type2 = type;
955     }
956     // Type inference from the block type.
957     else if (state.types_<1>(block1, frag1) != nullptr || state.types_<2>(block2, frag2) != nullptr) {
958
959       offset1 = (char*)area1 - (char*)real_addr_frag1;
960       offset2 = (char*)area2 - (char*)real_addr_frag2;
961
962       if (state.types_<1>(block1, frag1) != nullptr && state.types_<2>(block2, frag2) != nullptr) {
963         new_type1 = get_offset_type(real_addr_frag1, state.types_<1>(block1, frag1), offset1, size, snapshot1);
964         new_type2 = get_offset_type(real_addr_frag2, state.types_<2>(block2, frag2), offset1, size, snapshot2);
965       } else if (state.types_<1>(block1, frag1) != nullptr) {
966         new_type1 = get_offset_type(real_addr_frag1, state.types_<1>(block1, frag1), offset1, size, snapshot1);
967         new_type2 = get_offset_type(real_addr_frag2, state.types_<1>(block1, frag1), offset2, size, snapshot2);
968       } else if (state.types_<2>(block2, frag2) != nullptr) {
969         new_type1 = get_offset_type(real_addr_frag1, state.types_<2>(block2, frag2), offset1, size, snapshot1);
970         new_type2 = get_offset_type(real_addr_frag2, state.types_<2>(block2, frag2), offset2, size, snapshot2);
971       } else {
972         if (match_pairs)
973           state.match_equals(previous);
974         return false;
975       }
976
977       if (new_type1 != nullptr && new_type2 != nullptr && new_type1 != new_type2) {
978
979         type = new_type1;
980         while (type->byte_size == 0 && type->subtype != nullptr)
981           type = type->subtype;
982         new_size1 = type->byte_size;
983
984         type = new_type2;
985         while (type->byte_size == 0 && type->subtype != nullptr)
986           type = type->subtype;
987         new_size2 = type->byte_size;
988
989       } else {
990         if (match_pairs)
991           state.match_equals(previous);
992         return false;
993       }
994     }
995
996     if (new_size1 > 0 && new_size1 == new_size2) {
997       type = new_type1;
998       size = new_size1;
999     }
1000
1001     if (offset1 == 0 && offset2 == 0 &&
1002         not previous->insert(HeapLocationPair{{HeapLocation(block1, frag1), HeapLocation(block2, frag2)}}).second) {
1003       if (match_pairs)
1004         state.match_equals(previous);
1005       return false;
1006     }
1007
1008     if (size <= 0) {
1009       if (match_pairs)
1010         state.match_equals(previous);
1011       return false;
1012     }
1013
1014     if ((heapinfo1->busy_frag.ignore[frag1] > 0) &&
1015         (heapinfo2->busy_frag.ignore[frag2] == heapinfo1->busy_frag.ignore[frag1]))
1016       check_ignore = heapinfo1->busy_frag.ignore[frag1];
1017
1018   } else
1019     return true;
1020
1021   /* Start comparison */
1022   bool differ =
1023       type ? heap_area_differ_with_type(state, area1, area2, snapshot1, snapshot2, previous, type, size, check_ignore,
1024                                         pointer_level)
1025            : heap_area_differ_without_type(state, area1, area2, snapshot1, snapshot2, previous, size, check_ignore);
1026   if (differ)
1027     return true;
1028
1029   if (match_pairs)
1030     state.match_equals(previous);
1031   return false;
1032 }
1033
1034 }
1035 }
1036
1037 /************************** Snapshot comparison *******************************/
1038 /******************************************************************************/
1039
1040 static bool areas_differ_with_type(simgrid::mc::StateComparator& state, const void* real_area1,
1041                                    const simgrid::mc::Snapshot& snapshot1, simgrid::mc::Region* region1,
1042                                    const void* real_area2, const simgrid::mc::Snapshot& snapshot2,
1043                                    simgrid::mc::Region* region2, simgrid::mc::Type* type, int pointer_level)
1044 {
1045   simgrid::mc::Type* subtype;
1046   simgrid::mc::Type* subsubtype;
1047   int elm_size;
1048   int i;
1049
1050   xbt_assert(type != nullptr);
1051   switch (type->type) {
1052     case DW_TAG_unspecified_type:
1053       return true;
1054
1055     case DW_TAG_base_type:
1056     case DW_TAG_enumeration_type:
1057     case DW_TAG_union_type:
1058       return MC_snapshot_region_memcmp(real_area1, region1, real_area2, region2, type->byte_size) != 0;
1059     case DW_TAG_typedef:
1060     case DW_TAG_volatile_type:
1061     case DW_TAG_const_type:
1062       return areas_differ_with_type(state, real_area1, snapshot1, region1, real_area2, snapshot2, region2,
1063                                     type->subtype, pointer_level);
1064     case DW_TAG_array_type:
1065       subtype = type->subtype;
1066       switch (subtype->type) {
1067         case DW_TAG_unspecified_type:
1068           return true;
1069
1070         case DW_TAG_base_type:
1071         case DW_TAG_enumeration_type:
1072         case DW_TAG_pointer_type:
1073         case DW_TAG_reference_type:
1074         case DW_TAG_rvalue_reference_type:
1075         case DW_TAG_structure_type:
1076         case DW_TAG_class_type:
1077         case DW_TAG_union_type:
1078           if (subtype->full_type)
1079             subtype = subtype->full_type;
1080           elm_size  = subtype->byte_size;
1081           break;
1082         case DW_TAG_const_type:
1083         case DW_TAG_typedef:
1084         case DW_TAG_volatile_type:
1085           subsubtype = subtype->subtype;
1086           if (subsubtype->full_type)
1087             subsubtype = subsubtype->full_type;
1088           elm_size     = subsubtype->byte_size;
1089           break;
1090         default:
1091           return false;
1092       }
1093       for (i = 0; i < type->element_count; i++) {
1094         size_t off = i * elm_size;
1095         if (areas_differ_with_type(state, (const char*)real_area1 + off, snapshot1, region1,
1096                                    (const char*)real_area2 + off, snapshot2, region2, type->subtype, pointer_level))
1097           return true;
1098       }
1099       break;
1100     case DW_TAG_pointer_type:
1101     case DW_TAG_reference_type:
1102     case DW_TAG_rvalue_reference_type: {
1103       const void* addr_pointed1 = MC_region_read_pointer(region1, real_area1);
1104       const void* addr_pointed2 = MC_region_read_pointer(region2, real_area2);
1105
1106       if (type->subtype && type->subtype->type == DW_TAG_subroutine_type)
1107         return (addr_pointed1 != addr_pointed2);
1108       if (addr_pointed1 == nullptr && addr_pointed2 == nullptr)
1109         return false;
1110       if (addr_pointed1 == nullptr || addr_pointed2 == nullptr)
1111         return true;
1112       if (not state.compared_pointers.insert(std::make_pair(addr_pointed1, addr_pointed2)).second)
1113         return false;
1114
1115       pointer_level++;
1116
1117       // Some cases are not handled here:
1118       // * the pointers lead to different areas (one to the heap, the other to the RW segment ...)
1119       // * a pointer leads to the read-only segment of the current object
1120       // * a pointer lead to a different ELF object
1121
1122       if (snapshot1.on_heap(addr_pointed1)) {
1123         if (not snapshot2.on_heap(addr_pointed2))
1124           return true;
1125         // The pointers are both in the heap:
1126         return simgrid::mc::heap_area_differ(state, addr_pointed1, addr_pointed2, snapshot1, snapshot2, nullptr,
1127                                              type->subtype, pointer_level);
1128
1129       } else if (region1->contain(simgrid::mc::remote(addr_pointed1))) {
1130         // The pointers are both in the current object R/W segment:
1131         if (not region2->contain(simgrid::mc::remote(addr_pointed2)))
1132           return true;
1133         if (not type->type_id)
1134           return (addr_pointed1 != addr_pointed2);
1135         else
1136           return areas_differ_with_type(state, addr_pointed1, snapshot1, region1, addr_pointed2, snapshot2, region2,
1137                                         type->subtype, pointer_level);
1138       } else {
1139
1140         // TODO, We do not handle very well the case where
1141         // it belongs to a different (non-heap) region from the current one.
1142
1143         return (addr_pointed1 != addr_pointed2);
1144       }
1145     }
1146     case DW_TAG_structure_type:
1147     case DW_TAG_class_type:
1148       for (simgrid::mc::Member& member : type->members) {
1149         void* member1                   = simgrid::dwarf::resolve_member(real_area1, type, &member, &snapshot1);
1150         void* member2                   = simgrid::dwarf::resolve_member(real_area2, type, &member, &snapshot2);
1151         simgrid::mc::Region* subregion1 = snapshot1.get_region(member1, region1); // region1 is hinted
1152         simgrid::mc::Region* subregion2 = snapshot2.get_region(member2, region2); // region2 is hinted
1153         if (areas_differ_with_type(state, member1, snapshot1, subregion1, member2, snapshot2, subregion2, member.type,
1154                                    pointer_level))
1155           return true;
1156       }
1157       break;
1158     case DW_TAG_subroutine_type:
1159       return false;
1160     default:
1161       XBT_VERB("Unknown case: %d", type->type);
1162       break;
1163   }
1164
1165   return false;
1166 }
1167
1168 static bool global_variables_differ(simgrid::mc::StateComparator& state, simgrid::mc::ObjectInformation* object_info,
1169                                     simgrid::mc::Region* r1, simgrid::mc::Region* r2,
1170                                     const simgrid::mc::Snapshot& snapshot1, const simgrid::mc::Snapshot& snapshot2)
1171 {
1172   xbt_assert(r1 && r2, "Missing region.");
1173
1174   const std::vector<simgrid::mc::Variable>& variables = object_info->global_variables;
1175
1176   for (simgrid::mc::Variable const& current_var : variables) {
1177
1178     // If the variable is not in this object, skip it:
1179     // We do not expect to find a pointer to something which is not reachable
1180     // by the global variables.
1181     if ((char *) current_var.address < (char *) object_info->start_rw
1182         || (char *) current_var.address > (char *) object_info->end_rw)
1183       continue;
1184
1185     simgrid::mc::Type* bvariable_type = current_var.type;
1186     if (areas_differ_with_type(state, current_var.address, snapshot1, r1, current_var.address, snapshot2, r2,
1187                                bvariable_type, 0)) {
1188       XBT_VERB("Global variable %s (%p) is different between snapshots", current_var.name.c_str(), current_var.address);
1189       return true;
1190     }
1191   }
1192
1193   return false;
1194 }
1195
1196 static bool local_variables_differ(simgrid::mc::StateComparator& state, const simgrid::mc::Snapshot& snapshot1,
1197                                    const simgrid::mc::Snapshot& snapshot2, const_mc_snapshot_stack_t stack1,
1198                                    const_mc_snapshot_stack_t stack2)
1199 {
1200   if (stack1->local_variables.size() != stack2->local_variables.size()) {
1201     XBT_VERB("Different number of local variables");
1202     return true;
1203   }
1204
1205   for (unsigned int cursor = 0; cursor < stack1->local_variables.size(); cursor++) {
1206     const_local_variable_t current_var1 = &stack1->local_variables[cursor];
1207     const_local_variable_t current_var2 = &stack2->local_variables[cursor];
1208     if (current_var1->name != current_var2->name || current_var1->subprogram != current_var2->subprogram ||
1209         current_var1->ip != current_var2->ip) {
1210       // TODO, fix current_varX->subprogram->name to include name if DW_TAG_inlined_subprogram
1211       XBT_VERB("Different name of variable (%s - %s) or frame (%s - %s) or ip (%lu - %lu)", current_var1->name.c_str(),
1212                current_var2->name.c_str(), current_var1->subprogram->name.c_str(),
1213                current_var2->subprogram->name.c_str(), current_var1->ip, current_var2->ip);
1214       return true;
1215     }
1216
1217     if (areas_differ_with_type(state, current_var1->address, snapshot1, snapshot1.get_region(current_var1->address),
1218                                current_var2->address, snapshot2, snapshot2.get_region(current_var2->address),
1219                                current_var1->type, 0)) {
1220       XBT_VERB("Local variable %s (%p - %p) in frame %s is different between snapshots", current_var1->name.c_str(),
1221                current_var1->address, current_var2->address, current_var1->subprogram->name.c_str());
1222       return true;
1223     }
1224   }
1225   return false;
1226 }
1227
1228 namespace simgrid {
1229 namespace mc {
1230
1231 bool snapshot_equal(const Snapshot* s1, const Snapshot* s2)
1232 {
1233   // TODO, make this a field of ModelChecker or something similar
1234   static StateComparator state_comparator;
1235
1236   const RemoteClient& process = mc_model_checker->process();
1237
1238   if (s1->hash_ != s2->hash_) {
1239     XBT_VERB("(%d - %d) Different hash: 0x%" PRIx64 "--0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_,
1240              s2->hash_);
1241     return false;
1242   }
1243   XBT_VERB("(%d - %d) Same hash: 0x%" PRIx64, s1->num_state_, s2->num_state_, s1->hash_);
1244
1245   /* Compare enabled processes */
1246   if (s1->enabled_processes_ != s2->enabled_processes_) {
1247     XBT_VERB("(%d - %d) Different amount of enabled processes", s1->num_state_, s2->num_state_);
1248     return false;
1249   }
1250
1251   /* Compare size of stacks */
1252   for (unsigned long i = 0; i < s1->stacks_.size(); i++) {
1253     size_t size_used1 = s1->stack_sizes_[i];
1254     size_t size_used2 = s2->stack_sizes_[i];
1255     if (size_used1 != size_used2) {
1256       XBT_VERB("(%d - %d) Different size used in stacks: %zu - %zu", s1->num_state_, s2->num_state_, size_used1,
1257                size_used2);
1258       return false;
1259     }
1260   }
1261
1262   /* Init heap information used in heap comparison algorithm */
1263   xbt_mheap_t heap1 =
1264       static_cast<xbt_mheap_t>(s1->read_bytes(alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
1265                                               remote(process.heap_address), simgrid::mc::ReadOptions::lazy()));
1266   xbt_mheap_t heap2 =
1267       static_cast<xbt_mheap_t>(s2->read_bytes(alloca(sizeof(struct mdesc)), sizeof(struct mdesc),
1268                                               remote(process.heap_address), simgrid::mc::ReadOptions::lazy()));
1269   if (state_comparator.initHeapInformation(heap1, heap2, s1->to_ignore_, s2->to_ignore_) == -1) {
1270     XBT_VERB("(%d - %d) Different heap information", s1->num_state_, s2->num_state_);
1271     return false;
1272   }
1273
1274   /* Stacks comparison */
1275   for (unsigned int cursor = 0; cursor < s1->stacks_.size(); cursor++) {
1276     const_mc_snapshot_stack_t stack1 = &s1->stacks_[cursor];
1277     const_mc_snapshot_stack_t stack2 = &s2->stacks_[cursor];
1278
1279     if (local_variables_differ(state_comparator, *s1, *s2, stack1, stack2)) {
1280       XBT_VERB("(%d - %d) Different local variables between stacks %u", s1->num_state_, s2->num_state_, cursor + 1);
1281       return false;
1282     }
1283   }
1284
1285   size_t regions_count = s1->snapshot_regions_.size();
1286   if (regions_count != s2->snapshot_regions_.size())
1287     return false;
1288
1289   for (size_t k = 0; k != regions_count; ++k) {
1290     Region* region1 = s1->snapshot_regions_[k].get();
1291     Region* region2 = s2->snapshot_regions_[k].get();
1292
1293     // Preconditions:
1294     if (region1->region_type() != RegionType::Data)
1295       continue;
1296
1297     xbt_assert(region1->region_type() == region2->region_type());
1298     xbt_assert(region1->object_info() == region2->object_info());
1299     xbt_assert(region1->object_info());
1300
1301     /* Compare global variables */
1302     if (global_variables_differ(state_comparator, region1->object_info(), region1, region2, *s1, *s2)) {
1303       std::string const& name = region1->object_info()->file_name;
1304       XBT_VERB("(%d - %d) Different global variables in %s", s1->num_state_, s2->num_state_, name.c_str());
1305       return false;
1306     }
1307   }
1308
1309   /* Compare heap */
1310   if (mmalloc_heap_differ(state_comparator, *s1, *s2)) {
1311     XBT_VERB("(%d - %d) Different heap (mmalloc_compare)", s1->num_state_, s2->num_state_);
1312     return false;
1313   }
1314
1315   XBT_VERB("(%d - %d) No difference found", s1->num_state_, s2->num_state_);
1316
1317   return true;
1318 }
1319
1320 }
1321 }