Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Symbol is not defined by older elfutils.
[simgrid.git] / src / mc / inspect / mc_dwarf.cpp
1 /* Copyright (c) 2008-2021. 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 #include "src/simgrid/util.hpp"
7 #include "xbt/log.h"
8 #include "xbt/string.hpp"
9 #include "xbt/sysdep.h"
10 #include <simgrid/config.h>
11
12 #include "src/mc/inspect/ObjectInformation.hpp"
13 #include "src/mc/inspect/Variable.hpp"
14 #include "src/mc/inspect/mc_dwarf.hpp"
15 #include "src/mc/mc_private.hpp"
16 #include "src/mc/remote/RemoteSimulation.hpp"
17
18 #include <algorithm>
19 #include <array>
20 #include <cinttypes>
21 #include <cstdint>
22 #include <cstdlib>
23 #include <fcntl.h>
24 #include <memory>
25 #include <unordered_map>
26 #include <utility>
27
28 #include <boost/range/algorithm.hpp>
29
30 #include <elfutils/libdw.h>
31 #include <elfutils/version.h>
32
33 #include <boost/algorithm/string/predicate.hpp>
34
35 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_dwarf, mc, "DWARF processing");
36
37 /** @brief The default DW_TAG_lower_bound for a given DW_AT_language.
38  *
39  *  The default for a given language is defined in the DWARF spec.
40  *
41  *  @param language constant as defined by the DWARf spec
42  */
43 static uint64_t MC_dwarf_default_lower_bound(int lang);
44
45 /** @brief Computes the the element_count of a DW_TAG_enumeration_type DIE
46  *
47  * This is the number of elements in a given array dimension.
48  *
49  * A reference of the compilation unit (DW_TAG_compile_unit) is
50  * needed because the default lower bound (when there is no DW_AT_lower_bound)
51  * depends of the language of the compilation unit (DW_AT_language).
52  *
53  * @param die  DIE for the DW_TAG_enumeration_type or DW_TAG_subrange_type
54  * @param unit DIE of the DW_TAG_compile_unit
55  */
56 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die* die, Dwarf_Die* unit);
57
58 /** @brief Computes the number of elements of a given DW_TAG_array_type.
59  *
60  * @param die DIE for the DW_TAG_array_type
61  */
62 static uint64_t MC_dwarf_array_element_count(Dwarf_Die* die, Dwarf_Die* unit);
63
64 /** @brief Process a DIE
65  *
66  *  @param info the resulting object for the library/binary file (output)
67  *  @param die  the current DIE
68  *  @param unit the DIE of the compile unit of the current DIE
69  *  @param frame containing frame if any
70  */
71 static void MC_dwarf_handle_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
72                                 simgrid::mc::Frame* frame, const char* ns);
73
74 /** @brief Process a type DIE
75  */
76 static void MC_dwarf_handle_type_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
77                                      simgrid::mc::Frame* frame, const char* ns);
78
79 /** @brief Calls MC_dwarf_handle_die on all children of the given die
80  *
81  *  @param info the resulting object for the library/binary file (output)
82  *  @param die  the current DIE
83  *  @param unit the DIE of the compile unit of the current DIE
84  *  @param frame containing frame if any
85  */
86 static void MC_dwarf_handle_children(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
87                                      simgrid::mc::Frame* frame, const char* ns);
88
89 /** @brief Handle a variable (DW_TAG_variable or other)
90  *
91  *  @param info the resulting object for the library/binary file (output)
92  *  @param die  the current DIE
93  *  @param unit the DIE of the compile unit of the current DIE
94  *  @param frame containing frame if any
95  */
96 static void MC_dwarf_handle_variable_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, const Dwarf_Die* unit,
97                                          simgrid::mc::Frame* frame, const char* ns);
98
99 /** @brief Get the DW_TAG_type of the DIE
100  *
101  *  @param die DIE
102  *  @return DW_TAG_type attribute as a new string (nullptr if none)
103  */
104 static std::uint64_t MC_dwarf_at_type(Dwarf_Die* die);
105
106 namespace simgrid {
107 namespace dwarf {
108
109 enum class TagClass { Unknown, Type, Subprogram, Variable, Scope, Namespace };
110
111 /*** Class of forms defined in the DWARF standard */
112 enum class FormClass {
113   Unknown,
114   Address, // Location in the program's address space
115   Block,   // Arbitrary block of bytes
116   Constant,
117   String,
118   Flag,      // Boolean value
119   Reference, // Reference to another DIE
120   ExprLoc,   // DWARF expression/location description
121   LinePtr,
122   LocListPtr,
123   MacPtr,
124   RangeListPtr
125 };
126
127 static TagClass classify_tag(int tag)
128 {
129   static const std::unordered_map<int, TagClass> map = {
130       {DW_TAG_array_type, TagClass::Type},            {DW_TAG_class_type, TagClass::Type},
131       {DW_TAG_enumeration_type, TagClass::Type},      {DW_TAG_typedef, TagClass::Type},
132       {DW_TAG_pointer_type, TagClass::Type},          {DW_TAG_reference_type, TagClass::Type},
133       {DW_TAG_rvalue_reference_type, TagClass::Type}, {DW_TAG_string_type, TagClass::Type},
134       {DW_TAG_structure_type, TagClass::Type},        {DW_TAG_subroutine_type, TagClass::Type},
135       {DW_TAG_union_type, TagClass::Type},            {DW_TAG_ptr_to_member_type, TagClass::Type},
136       {DW_TAG_set_type, TagClass::Type},              {DW_TAG_subrange_type, TagClass::Type},
137       {DW_TAG_base_type, TagClass::Type},             {DW_TAG_const_type, TagClass::Type},
138       {DW_TAG_file_type, TagClass::Type},             {DW_TAG_packed_type, TagClass::Type},
139       {DW_TAG_volatile_type, TagClass::Type},         {DW_TAG_restrict_type, TagClass::Type},
140       {DW_TAG_interface_type, TagClass::Type},        {DW_TAG_unspecified_type, TagClass::Type},
141       {DW_TAG_shared_type, TagClass::Type},
142
143       {DW_TAG_subprogram, TagClass::Subprogram},
144
145       {DW_TAG_variable, TagClass::Variable},          {DW_TAG_formal_parameter, TagClass::Variable},
146
147       {DW_TAG_lexical_block, TagClass::Scope},        {DW_TAG_try_block, TagClass::Scope},
148       {DW_TAG_catch_block, TagClass::Scope},          {DW_TAG_inlined_subroutine, TagClass::Scope},
149       {DW_TAG_with_stmt, TagClass::Scope},
150
151       {DW_TAG_namespace, TagClass::Namespace}};
152
153   auto res = map.find(tag);
154   return res != map.end() ? res->second : TagClass::Unknown;
155 }
156
157 /** @brief Find the DWARF data class for a given DWARF data form
158  *
159  *  This mapping is defined in the DWARF spec.
160  *
161  *  @param form The form (values taken from the DWARF spec)
162  *  @return An internal representation for the corresponding class
163  * */
164 static FormClass classify_form(int form)
165 {
166   static const std::unordered_map<int, FormClass> map = {
167       {DW_FORM_addr, FormClass::Address},
168
169       {DW_FORM_block2, FormClass::Block},           {DW_FORM_block4, FormClass::Block},
170       {DW_FORM_block, FormClass::Block},            {DW_FORM_block1, FormClass::Block},
171
172       {DW_FORM_data1, FormClass::Constant},         {DW_FORM_data2, FormClass::Constant},
173       {DW_FORM_data4, FormClass::Constant},         {DW_FORM_data8, FormClass::Constant},
174       {DW_FORM_udata, FormClass::Constant},         {DW_FORM_sdata, FormClass::Constant},
175 #if _ELFUTILS_PREREQ(0, 171)
176       {DW_FORM_implicit_const, FormClass::Constant},
177 #endif
178
179       {DW_FORM_string, FormClass::String},          {DW_FORM_strp, FormClass::String},
180
181       {DW_FORM_ref_addr, FormClass::Reference},     {DW_FORM_ref1, FormClass::Reference},
182       {DW_FORM_ref2, FormClass::Reference},         {DW_FORM_ref4, FormClass::Reference},
183       {DW_FORM_ref8, FormClass::Reference},         {DW_FORM_ref_udata, FormClass::Reference},
184
185       {DW_FORM_flag, FormClass::Flag},              {DW_FORM_flag_present, FormClass::Flag},
186
187       {DW_FORM_exprloc, FormClass::ExprLoc}
188
189       // TODO sec offset
190       // TODO indirect
191   };
192
193   auto res = map.find(form);
194   return res != map.end() ? res->second : FormClass::Unknown;
195 }
196
197 /** @brief Get the name of the tag of a given DIE
198  *
199  *  @param die DIE
200  *  @return name of the tag of this DIE
201  */
202 inline XBT_PRIVATE const char* tagname(Dwarf_Die* die)
203 {
204   return tagname(dwarf_tag(die));
205 }
206
207 } // namespace dwarf
208 } // namespace simgrid
209
210 // ***** Attributes
211
212 /** @brief Get an attribute of a given DIE as a string
213  *
214  *  @param die       the DIE
215  *  @param attribute attribute
216  *  @return value of the given attribute of the given DIE
217  */
218 static const char* MC_dwarf_attr_integrate_string(Dwarf_Die* die, int attribute)
219 {
220   Dwarf_Attribute attr;
221   if (not dwarf_attr_integrate(die, attribute, &attr))
222     return nullptr;
223   else
224     return dwarf_formstring(&attr);
225 }
226
227 static Dwarf_Off MC_dwarf_attr_dieoffset(Dwarf_Die* die, int attribute)
228 {
229   Dwarf_Attribute attr;
230   if (dwarf_hasattr_integrate(die, attribute) == 0)
231     return 0;
232   dwarf_attr_integrate(die, attribute, &attr);
233   Dwarf_Die subtype_die;
234   xbt_assert(dwarf_formref_die(&attr, &subtype_die) != nullptr, "Could not find DIE");
235   return dwarf_dieoffset(&subtype_die);
236 }
237
238 static Dwarf_Off MC_dwarf_attr_integrate_dieoffset(Dwarf_Die* die, int attribute)
239 {
240   Dwarf_Attribute attr;
241   if (dwarf_hasattr_integrate(die, attribute) == 0)
242     return 0;
243   dwarf_attr_integrate(die, DW_AT_type, &attr);
244   Dwarf_Die subtype_die;
245   xbt_assert(dwarf_formref_die(&attr, &subtype_die) != nullptr, "Could not find DIE");
246   return dwarf_dieoffset(&subtype_die);
247 }
248
249 /** @brief Find the type/subtype (DW_AT_type) for a DIE
250  *
251  *  @param die the DIE
252  *  @return DW_AT_type reference as a global offset in hexadecimal (or nullptr)
253  */
254 static std::uint64_t MC_dwarf_at_type(Dwarf_Die* die)
255 {
256   return MC_dwarf_attr_integrate_dieoffset(die, DW_AT_type);
257 }
258
259 static uint64_t MC_dwarf_attr_integrate_addr(Dwarf_Die* die, int attribute)
260 {
261   Dwarf_Attribute attr;
262   if (dwarf_attr_integrate(die, attribute, &attr) == nullptr)
263     return 0;
264   Dwarf_Addr value;
265   if (dwarf_formaddr(&attr, &value) == 0)
266     return (uint64_t)value;
267   else
268     return 0;
269 }
270
271 static uint64_t MC_dwarf_attr_integrate_uint(Dwarf_Die* die, int attribute, uint64_t default_value)
272 {
273   Dwarf_Attribute attr;
274   if (dwarf_attr_integrate(die, attribute, &attr) == nullptr)
275     return default_value;
276   Dwarf_Word value;
277   return dwarf_formudata(dwarf_attr_integrate(die, attribute, &attr), &value) == 0 ? (uint64_t)value : default_value;
278 }
279
280 static bool MC_dwarf_attr_flag(Dwarf_Die* die, int attribute, bool integrate)
281 {
282   Dwarf_Attribute attr;
283   if ((integrate ? dwarf_attr_integrate(die, attribute, &attr) : dwarf_attr(die, attribute, &attr)) == nullptr)
284     return false;
285
286   bool result;
287   xbt_assert(not dwarf_formflag(&attr, &result), "Unexpected form for attribute %s",
288              simgrid::dwarf::attrname(attribute));
289   return result;
290 }
291
292 /** @brief Find the default lower bound for a given language
293  *
294  *  The default lower bound of an array (when DW_TAG_lower_bound
295  *  is missing) depends on the language of the compilation unit.
296  *
297  *  @param lang Language of the compilation unit (values defined in the DWARF spec)
298  *  @return     Default lower bound of an array in this compilation unit
299  * */
300 static uint64_t MC_dwarf_default_lower_bound(int lang)
301 {
302   const std::unordered_map<int, unsigned> map = {
303       {DW_LANG_C, 0},           {DW_LANG_C89, 0},            {DW_LANG_C99, 0},            {DW_LANG_C11, 0},
304       {DW_LANG_C_plus_plus, 0}, {DW_LANG_C_plus_plus_11, 0}, {DW_LANG_C_plus_plus_14, 0}, {DW_LANG_D, 0},
305       {DW_LANG_Java, 0},        {DW_LANG_ObjC, 0},           {DW_LANG_ObjC_plus_plus, 0}, {DW_LANG_Python, 0},
306       {DW_LANG_UPC, 0},
307
308       {DW_LANG_Ada83, 1},       {DW_LANG_Ada95, 1},          {DW_LANG_Fortran77, 1},      {DW_LANG_Fortran90, 1},
309       {DW_LANG_Fortran95, 1},   {DW_LANG_Fortran03, 1},      {DW_LANG_Fortran08, 1},      {DW_LANG_Modula2, 1},
310       {DW_LANG_Pascal83, 1},    {DW_LANG_PL1, 1},            {DW_LANG_Cobol74, 1},        {DW_LANG_Cobol85, 1}};
311
312   auto res = map.find(lang);
313   xbt_assert(res != map.end(), "No default DW_TAG_lower_bound for language %i and none given", lang);
314   return res->second;
315 }
316
317 /** @brief Finds the number of elements in a DW_TAG_subrange_type or DW_TAG_enumeration_type DIE
318  *
319  *  @param die  the DIE
320  *  @param unit DIE of the compilation unit
321  *  @return     number of elements in the range
322  * */
323 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die* die, Dwarf_Die* unit)
324 {
325   xbt_assert(dwarf_tag(die) == DW_TAG_enumeration_type || dwarf_tag(die) == DW_TAG_subrange_type,
326              "MC_dwarf_subrange_element_count called with DIE of type %s", simgrid::dwarf::tagname(die));
327
328   // Use DW_TAG_count if present:
329   if (dwarf_hasattr_integrate(die, DW_AT_count))
330     return MC_dwarf_attr_integrate_uint(die, DW_AT_count, 0);
331   // Otherwise compute DW_TAG_upper_bound-DW_TAG_lower_bound + 1:
332
333   if (not dwarf_hasattr_integrate(die, DW_AT_upper_bound))
334     // This is not really 0, but the code expects this (we do not know):
335     return 0;
336
337   uint64_t upper_bound = MC_dwarf_attr_integrate_uint(die, DW_AT_upper_bound, static_cast<uint64_t>(-1));
338
339   uint64_t lower_bound = 0;
340   if (dwarf_hasattr_integrate(die, DW_AT_lower_bound))
341     lower_bound = MC_dwarf_attr_integrate_uint(die, DW_AT_lower_bound, static_cast<uint64_t>(-1));
342   else
343     lower_bound = MC_dwarf_default_lower_bound(dwarf_srclang(unit));
344   return upper_bound - lower_bound + 1;
345 }
346
347 /** @brief Finds the number of elements in an array type (DW_TAG_array_type)
348  *
349  *  The compilation unit might be needed because the default lower
350  *  bound depends on the language of the compilation unit.
351  *
352  *  @param die the DIE of the DW_TAG_array_type
353  *  @param unit the DIE of the compilation unit
354  *  @return number of elements in this array type
355  * */
356 static uint64_t MC_dwarf_array_element_count(Dwarf_Die* die, Dwarf_Die* unit)
357 {
358   xbt_assert(dwarf_tag(die) == DW_TAG_array_type, "MC_dwarf_array_element_count called with DIE of type %s",
359              simgrid::dwarf::tagname(die));
360
361   int result = 1;
362   Dwarf_Die child;
363   for (int res = dwarf_child(die, &child); res == 0; res = dwarf_siblingof(&child, &child)) {
364     int child_tag = dwarf_tag(&child);
365     if (child_tag == DW_TAG_subrange_type || child_tag == DW_TAG_enumeration_type)
366       result *= MC_dwarf_subrange_element_count(&child, unit);
367   }
368   return result;
369 }
370
371 // ***** Variable
372
373 /** Sort the variable by name and address.
374  *
375  *  We could use boost::container::flat_set instead.
376  */
377 static bool MC_compare_variable(simgrid::mc::Variable const& a, simgrid::mc::Variable const& b)
378 {
379   int cmp = a.name.compare(b.name);
380   if (cmp < 0)
381     return true;
382   else if (cmp > 0)
383     return false;
384   else
385     return a.address < b.address;
386 }
387
388 // ***** simgrid::mc::Type*
389
390 /** @brief Initialize the location of a member of a type
391  * (DW_AT_data_member_location of a DW_TAG_member).
392  *
393  *  @param  type   a type (struct, class)
394  *  @param  member the member of the type
395  *  @param  child  DIE of the member (DW_TAG_member)
396  */
397 static void MC_dwarf_fill_member_location(const simgrid::mc::Type* type, simgrid::mc::Member* member, Dwarf_Die* child)
398 {
399   xbt_assert(not dwarf_hasattr(child, DW_AT_data_bit_offset), "Can't groke DW_AT_data_bit_offset.");
400
401   if (not dwarf_hasattr_integrate(child, DW_AT_data_member_location)) {
402     if (type->type == DW_TAG_union_type)
403       return;
404     xbt_die("Missing DW_AT_data_member_location field in DW_TAG_member %s of type <%" PRIx64 ">%s",
405             member->name.c_str(), (uint64_t)type->id, type->name.c_str());
406   }
407
408   Dwarf_Attribute attr;
409   dwarf_attr_integrate(child, DW_AT_data_member_location, &attr);
410   int form                             = dwarf_whatform(&attr);
411   simgrid::dwarf::FormClass form_class = simgrid::dwarf::classify_form(form);
412   switch (form_class) {
413     case simgrid::dwarf::FormClass::ExprLoc:
414     case simgrid::dwarf::FormClass::Block:
415       // Location expression:
416       {
417         Dwarf_Op* expr;
418         size_t len;
419         xbt_assert(not dwarf_getlocation(&attr, &expr, &len),
420                    "Could not read location expression DW_AT_data_member_location in DW_TAG_member %s of type <%" PRIx64
421                    ">%s",
422                    MC_dwarf_attr_integrate_string(child, DW_AT_name), (uint64_t)type->id, type->name.c_str());
423         member->location_expression = simgrid::dwarf::DwarfExpression(expr, expr + len);
424         break;
425       }
426     case simgrid::dwarf::FormClass::Constant:
427       // Offset from the base address of the object:
428       {
429         Dwarf_Word offset;
430         xbt_assert(not dwarf_formudata(&attr, &offset), "Cannot get %s location <%" PRIx64 ">%s",
431                    MC_dwarf_attr_integrate_string(child, DW_AT_name), (uint64_t)type->id, type->name.c_str());
432         member->offset(offset);
433         break;
434       }
435
436     default:
437       // includes FormClass::LocListPtr (reference to a location list: TODO) and FormClass::Reference (it's supposed to
438       // be possible in DWARF2 but I couldn't find its semantic in the spec)
439       xbt_die("Can't handle form class (%d) / form 0x%x as DW_AT_member_location", (int)form_class, (unsigned)form);
440   }
441 }
442
443 /** @brief Populate the list of members of a type
444  *
445  *  @param info ELF object containing the type DIE
446  *  @param die  DIE of the type
447  *  @param unit DIE of the compilation unit containing the type DIE
448  *  @param type the type
449  */
450 static void MC_dwarf_add_members(const simgrid::mc::ObjectInformation* /*info*/, Dwarf_Die* die,
451                                  const Dwarf_Die* /*unit*/, simgrid::mc::Type* type)
452 {
453   Dwarf_Die child;
454   xbt_assert(type->members.empty());
455   for (int res = dwarf_child(die, &child); res == 0; res = dwarf_siblingof(&child, &child)) {
456     int tag = dwarf_tag(&child);
457     if (tag == DW_TAG_member || tag == DW_TAG_inheritance) {
458       // Skip declarations:
459       if (MC_dwarf_attr_flag(&child, DW_AT_declaration, false))
460         continue;
461
462       // Skip compile time constants:
463       if (dwarf_hasattr(&child, DW_AT_const_value))
464         continue;
465
466       // TODO, we should use another type (because is is not a type but a member)
467       simgrid::mc::Member member;
468       if (tag == DW_TAG_inheritance)
469         member.flags |= simgrid::mc::Member::INHERITANCE_FLAG;
470
471       const char* name = MC_dwarf_attr_integrate_string(&child, DW_AT_name);
472       if (name)
473         member.name = name;
474       // Those base names are used by GCC and clang for virtual table pointers
475       // respectively ("__vptr$ClassName", "__vptr.ClassName"):
476       if (boost::algorithm::starts_with(member.name, "__vptr$") ||
477           boost::algorithm::starts_with(member.name, "__vptr."))
478         member.flags |= simgrid::mc::Member::VIRTUAL_POINTER_FLAG;
479       // A cleaner solution would be to check against the type:
480       // ---
481       // tag: DW_TAG_member
482       // name: "_vptr$Foo"
483       // type:
484       //   # Type for a pointer to a vtable
485       //   tag: DW_TAG_pointer_type
486       //   type:
487       //     # Type for a vtable:
488       //     tag: DW_TAG_pointer_type
489       //     name: "__vtbl_ptr_type"
490       //     type:
491       //       tag: DW_TAG_subroutine_type
492       //       type:
493       //         tag: DW_TAG_base_type
494       //         name: "int"
495       // ---
496
497       member.byte_size = MC_dwarf_attr_integrate_uint(&child, DW_AT_byte_size, 0);
498       member.type_id   = MC_dwarf_at_type(&child);
499
500       xbt_assert(not dwarf_hasattr(&child, DW_AT_data_bit_offset), "Can't groke DW_AT_data_bit_offset.");
501
502       MC_dwarf_fill_member_location(type, &member, &child);
503
504       xbt_assert(member.type_id, "Missing type for member %s of <%" PRIx64 ">%s", member.name.c_str(),
505                  (uint64_t)type->id, type->name.c_str());
506
507       type->members.push_back(std::move(member));
508     }
509   }
510 }
511
512 /** @brief Create a MC type object from a DIE
513  *
514  *  @param info current object info object
515  *  @param die DIE (for a given type)
516  *  @param unit compilation unit of the current DIE
517  *  @return MC representation of the type
518  */
519 static simgrid::mc::Type MC_dwarf_die_to_type(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
520                                               simgrid::mc::Frame* frame, const char* ns)
521 {
522   simgrid::mc::Type type;
523   type.type          = dwarf_tag(die);
524   type.name          = std::string();
525   type.element_count = -1;
526
527   // Global Offset
528   type.id = dwarf_dieoffset(die);
529
530   const char* prefix = "";
531   switch (type.type) {
532     case DW_TAG_structure_type:
533       prefix = "struct ";
534       break;
535     case DW_TAG_union_type:
536       prefix = "union ";
537       break;
538     case DW_TAG_class_type:
539       prefix = "class ";
540       break;
541     default:
542       prefix = "";
543   }
544
545   const char* name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
546   if (name != nullptr) {
547     if (ns)
548       type.name = simgrid::xbt::string_printf("%s%s::%s", prefix, ns, name);
549     else
550       type.name = simgrid::xbt::string_printf("%s%s", prefix, name);
551   }
552
553   type.type_id = MC_dwarf_at_type(die);
554
555   // Some compilers do not emit DW_AT_byte_size for pointer_type,
556   // so we fill this. We currently assume that the model-checked process is in
557   // the same architecture..
558   if (type.type == DW_TAG_pointer_type)
559     type.byte_size = sizeof(void*);
560
561   // Computation of the byte_size
562   if (dwarf_hasattr_integrate(die, DW_AT_byte_size))
563     type.byte_size = MC_dwarf_attr_integrate_uint(die, DW_AT_byte_size, 0);
564   else if (type.type == DW_TAG_array_type || type.type == DW_TAG_structure_type || type.type == DW_TAG_class_type) {
565     Dwarf_Word size;
566     if (dwarf_aggregate_size(die, &size) == 0)
567       type.byte_size = size;
568   }
569
570   switch (type.type) {
571     case DW_TAG_array_type:
572       type.element_count = MC_dwarf_array_element_count(die, unit);
573       // TODO, handle DW_byte_stride and (not) DW_bit_stride
574       break;
575
576     case DW_TAG_pointer_type:
577     case DW_TAG_reference_type:
578     case DW_TAG_rvalue_reference_type:
579       break;
580
581     case DW_TAG_structure_type:
582     case DW_TAG_union_type:
583     case DW_TAG_class_type:
584       MC_dwarf_add_members(info, die, unit, &type);
585       MC_dwarf_handle_children(info, die, unit, frame,
586                                ns ? simgrid::xbt::string_printf("%s::%s", ns, name).c_str() : type.name.c_str());
587       break;
588
589     default:
590       XBT_DEBUG("Unhandled type: %d (%s)", type.type, simgrid::dwarf::tagname(type.type));
591       break;
592   }
593
594   return type;
595 }
596
597 static void MC_dwarf_handle_type_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
598                                      simgrid::mc::Frame* frame, const char* ns)
599 {
600   simgrid::mc::Type type = MC_dwarf_die_to_type(info, die, unit, frame, ns);
601   auto& t                = (info->types[type.id] = std::move(type));
602   if (not t.name.empty() && type.byte_size != 0)
603     info->full_types_by_name[t.name] = &t;
604 }
605
606 static int mc_anonymous_variable_index = 0;
607
608 static std::unique_ptr<simgrid::mc::Variable> MC_die_to_variable(simgrid::mc::ObjectInformation* info, Dwarf_Die* die,
609                                                                  const Dwarf_Die* /*unit*/,
610                                                                  const simgrid::mc::Frame* frame, const char* ns)
611 {
612   // Skip declarations:
613   if (MC_dwarf_attr_flag(die, DW_AT_declaration, false))
614     return nullptr;
615
616   // Skip compile time constants:
617   if (dwarf_hasattr(die, DW_AT_const_value))
618     return nullptr;
619
620   Dwarf_Attribute attr_location;
621   if (dwarf_attr(die, DW_AT_location, &attr_location) == nullptr)
622     // No location: do not add it ?
623     return nullptr;
624
625   auto variable         = std::make_unique<simgrid::mc::Variable>();
626   variable->id          = dwarf_dieoffset(die);
627   variable->global      = frame == nullptr; // Can be override base on DW_AT_location
628   variable->object_info = info;
629
630   const char* name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
631   if (name)
632     variable->name = name;
633   variable->type_id = MC_dwarf_at_type(die);
634
635   int form = dwarf_whatform(&attr_location);
636   simgrid::dwarf::FormClass form_class;
637   if (form == DW_FORM_sec_offset)
638     form_class = simgrid::dwarf::FormClass::Constant;
639   else
640     form_class = simgrid::dwarf::classify_form(form);
641   switch (form_class) {
642     case simgrid::dwarf::FormClass::ExprLoc:
643     case simgrid::dwarf::FormClass::Block:
644       // Location expression:
645       {
646         Dwarf_Op* expr;
647         size_t len;
648         xbt_assert(not dwarf_getlocation(&attr_location, &expr, &len),
649                    "Could not read location expression in DW_AT_location "
650                    "of variable <%" PRIx64 ">%s",
651                    (uint64_t)variable->id, variable->name.c_str());
652
653         if (len == 1 && expr[0].atom == DW_OP_addr) {
654           variable->global  = true;
655           auto offset       = static_cast<uintptr_t>(expr[0].number);
656           auto base         = reinterpret_cast<uintptr_t>(info->base_address());
657           variable->address = reinterpret_cast<void*>(base + offset);
658         } else
659           variable->location_list = {
660               simgrid::dwarf::LocationListEntry(simgrid::dwarf::DwarfExpression(expr, expr + len))};
661
662         break;
663       }
664
665     case simgrid::dwarf::FormClass::LocListPtr:
666     case simgrid::dwarf::FormClass::Constant:
667       // Reference to location list:
668       variable->location_list = simgrid::dwarf::location_list(*info, attr_location);
669       break;
670
671     default:
672       xbt_die("Unexpected form 0x%x (%i), class 0x%x (%i) list for location in <%" PRIx64 ">%s", (unsigned)form, form,
673               (unsigned)form_class, (int)form_class, (uint64_t)variable->id, variable->name.c_str());
674   }
675
676   // Handle start_scope:
677   if (dwarf_hasattr(die, DW_AT_start_scope)) {
678     Dwarf_Attribute attr;
679     dwarf_attr(die, DW_AT_start_scope, &attr);
680     form       = dwarf_whatform(&attr);
681     form_class = simgrid::dwarf::classify_form(form);
682     if (form_class == simgrid::dwarf::FormClass::Constant) {
683       Dwarf_Word value;
684       variable->start_scope = dwarf_formudata(&attr, &value) == 0 ? (size_t)value : 0;
685     } else {
686       // TODO: FormClass::RangeListPtr
687       xbt_die("Unhandled form 0x%x, class 0x%X for DW_AT_start_scope of variable %s", (unsigned)form,
688               (unsigned)form_class, name == nullptr ? "?" : name);
689     }
690   }
691
692   if (ns && variable->global)
693     variable->name = std::string(ns) + "::" + variable->name;
694
695   // The current code needs a variable name,
696   // generate a fake one:
697   if (variable->name.empty()) {
698     variable->name = "@anonymous#" + std::to_string(mc_anonymous_variable_index);
699     mc_anonymous_variable_index++;
700   }
701   return variable;
702 }
703
704 static void MC_dwarf_handle_variable_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, const Dwarf_Die* unit,
705                                          simgrid::mc::Frame* frame, const char* ns)
706 {
707   std::unique_ptr<simgrid::mc::Variable> variable = MC_die_to_variable(info, die, unit, frame, ns);
708   if (not variable)
709     return;
710   // Those arrays are sorted later:
711   if (variable->global)
712     info->global_variables.push_back(std::move(*variable));
713   else if (frame != nullptr)
714     frame->variables.push_back(std::move(*variable));
715   else
716     xbt_die("No frame for this local variable");
717 }
718
719 static void MC_dwarf_handle_scope_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
720                                       simgrid::mc::Frame* parent_frame, const char* ns)
721 {
722   // TODO, handle DW_TAG_type/DW_TAG_location for DW_TAG_with_stmt
723   int tag                        = dwarf_tag(die);
724   simgrid::dwarf::TagClass klass = simgrid::dwarf::classify_tag(tag);
725
726   // (Template) Subprogram declaration:
727   if (klass == simgrid::dwarf::TagClass::Subprogram && MC_dwarf_attr_flag(die, DW_AT_declaration, false))
728     return;
729
730   if (klass == simgrid::dwarf::TagClass::Scope)
731     xbt_assert(parent_frame, "No parent scope for this scope");
732
733   simgrid::mc::Frame frame;
734   frame.tag         = tag;
735   frame.id          = dwarf_dieoffset(die);
736   frame.object_info = info;
737
738   if (klass == simgrid::dwarf::TagClass::Subprogram) {
739     const char* name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
740     if (name && ns)
741       frame.name = std::string(ns) + "::" + name;
742     else if (name)
743       frame.name = name;
744   }
745
746   frame.abstract_origin_id = MC_dwarf_attr_dieoffset(die, DW_AT_abstract_origin);
747
748   // This is the base address for DWARF addresses.
749   // Relocated addresses are offset from this base address.
750   // See DWARF4 spec 7.5
751   auto base = reinterpret_cast<std::uint64_t>(info->base_address());
752
753   // TODO, support DW_AT_ranges
754   uint64_t low_pc     = MC_dwarf_attr_integrate_addr(die, DW_AT_low_pc);
755   frame.range.begin() = low_pc ? base + low_pc : 0;
756   if (low_pc) {
757     // DW_AT_high_pc:
758     Dwarf_Attribute attr;
759     xbt_assert(dwarf_attr_integrate(die, DW_AT_high_pc, &attr), "Missing DW_AT_high_pc matching with DW_AT_low_pc");
760
761     Dwarf_Sword offset;
762     Dwarf_Addr high_pc;
763
764     switch (simgrid::dwarf::classify_form(dwarf_whatform(&attr))) {
765       // DW_AT_high_pc if an offset from the low_pc:
766       case simgrid::dwarf::FormClass::Constant:
767
768         xbt_assert(dwarf_formsdata(&attr, &offset) == 0, "Could not read constant");
769         frame.range.end() = frame.range.begin() + offset;
770         break;
771
772         // DW_AT_high_pc is a relocatable address:
773       case simgrid::dwarf::FormClass::Address:
774         xbt_assert(dwarf_formaddr(&attr, &high_pc) == 0, "Could not read address");
775         frame.range.end() = base + high_pc;
776         break;
777
778       default:
779         xbt_die("Unexpected class for DW_AT_high_pc");
780     }
781   }
782
783   if (klass == simgrid::dwarf::TagClass::Subprogram) {
784     Dwarf_Attribute attr_frame_base;
785     if (dwarf_attr_integrate(die, DW_AT_frame_base, &attr_frame_base))
786       frame.frame_base_location = simgrid::dwarf::location_list(*info, attr_frame_base);
787   }
788
789   // Handle children:
790   MC_dwarf_handle_children(info, die, unit, &frame, ns);
791
792   // We sort them in order to have an (somewhat) efficient by name
793   // lookup:
794   boost::range::sort(frame.variables, MC_compare_variable);
795
796   // Register it:
797   if (klass == simgrid::dwarf::TagClass::Subprogram)
798     info->subprograms[frame.id] = std::move(frame);
799   else if (klass == simgrid::dwarf::TagClass::Scope)
800     parent_frame->scopes.push_back(std::move(frame));
801 }
802
803 static void mc_dwarf_handle_namespace_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
804                                           simgrid::mc::Frame* frame, const char* ns)
805 {
806   const char* name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
807   xbt_assert(not frame, "Unexpected namespace in a subprogram");
808   char* new_ns = ns == nullptr ? xbt_strdup(name) : bprintf("%s::%s", ns, name);
809   MC_dwarf_handle_children(info, die, unit, frame, new_ns);
810   xbt_free(new_ns);
811 }
812
813 static void MC_dwarf_handle_children(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
814                                      simgrid::mc::Frame* frame, const char* ns)
815 {
816   // For each child DIE:
817   Dwarf_Die child;
818   for (int res = dwarf_child(die, &child); res == 0; res = dwarf_siblingof(&child, &child))
819     MC_dwarf_handle_die(info, &child, unit, frame, ns);
820 }
821
822 static void MC_dwarf_handle_die(simgrid::mc::ObjectInformation* info, Dwarf_Die* die, Dwarf_Die* unit,
823                                 simgrid::mc::Frame* frame, const char* ns)
824 {
825   int tag                        = dwarf_tag(die);
826   simgrid::dwarf::TagClass klass = simgrid::dwarf::classify_tag(tag);
827   switch (klass) {
828     // Type:
829     case simgrid::dwarf::TagClass::Type:
830       MC_dwarf_handle_type_die(info, die, unit, frame, ns);
831       break;
832
833       // Subprogram or scope:
834     case simgrid::dwarf::TagClass::Subprogram:
835     case simgrid::dwarf::TagClass::Scope:
836       MC_dwarf_handle_scope_die(info, die, unit, frame, ns);
837       return;
838
839       // Variable:
840     case simgrid::dwarf::TagClass::Variable:
841       MC_dwarf_handle_variable_die(info, die, unit, frame, ns);
842       break;
843
844     case simgrid::dwarf::TagClass::Namespace:
845       mc_dwarf_handle_namespace_die(info, die, unit, frame, ns);
846       break;
847
848     default:
849       break;
850   }
851 }
852
853 static Elf64_Half get_type(Elf* elf)
854 {
855   const Elf64_Ehdr* ehdr64 = elf64_getehdr(elf);
856   if (ehdr64)
857     return ehdr64->e_type;
858   const Elf32_Ehdr* ehdr32 = elf32_getehdr(elf);
859   if (ehdr32)
860     return ehdr32->e_type;
861   xbt_die("Could not get ELF heeader");
862 }
863
864 static void read_dwarf_info(simgrid::mc::ObjectInformation* info, Dwarf* dwarf)
865 {
866   // For each compilation unit:
867   Dwarf_Off offset      = 0;
868   Dwarf_Off next_offset = 0;
869   size_t length;
870
871   while (dwarf_nextcu(dwarf, offset, &next_offset, &length, nullptr, nullptr, nullptr) == 0) {
872     Dwarf_Die unit_die;
873     if (dwarf_offdie(dwarf, offset + length, &unit_die) != nullptr)
874       MC_dwarf_handle_children(info, &unit_die, &unit_die, nullptr, nullptr);
875     offset = next_offset;
876   }
877 }
878
879 /** Get the build-id (NT_GNU_BUILD_ID) from the ELF file
880  *
881  *  This build-id may is used to locate an external debug (DWARF) file
882  *  for this ELF file.
883  *
884  *  @param  elf libelf handle for an ELF file
885  *  @return build-id for this ELF file (or an empty vector if none is found)
886  */
887 static std::vector<char> get_build_id(Elf* elf)
888 {
889 #ifdef __linux
890   // Summary: the GNU build ID is stored in a ("GNU, NT_GNU_BUILD_ID) note
891   // found in a PT_NOTE entry in the program header table.
892
893   size_t phnum;
894   xbt_assert(elf_getphdrnum(elf, &phnum) == 0, "Could not read program headers");
895
896   // Iterate over the program headers and find the PT_NOTE ones:
897   for (size_t i = 0; i < phnum; ++i) {
898     GElf_Phdr phdr_temp;
899     const GElf_Phdr* phdr = gelf_getphdr(elf, i, &phdr_temp);
900     if (phdr->p_type != PT_NOTE)
901       continue;
902
903     Elf_Data* data = elf_getdata_rawchunk(elf, phdr->p_offset, phdr->p_filesz, ELF_T_NHDR);
904
905     // Iterate over the notes and find the NT_GNU_BUILD_ID one:
906     size_t pos = 0;
907     while (pos < data->d_size) {
908       GElf_Nhdr nhdr;
909       // Location of the name within Elf_Data:
910       size_t name_pos;
911       size_t desc_pos;
912       pos = gelf_getnote(data, pos, &nhdr, &name_pos, &desc_pos);
913       // A build ID note is identified by the pair ("GNU", NT_GNU_BUILD_ID)
914       // (a namespace and a type within this namespace):
915       if (nhdr.n_type == NT_GNU_BUILD_ID && nhdr.n_namesz == sizeof("GNU") &&
916           memcmp((char*)data->d_buf + name_pos, "GNU", sizeof("GNU")) == 0) {
917         XBT_DEBUG("Found GNU/NT_GNU_BUILD_ID note");
918         char* start = (char*)data->d_buf + desc_pos;
919         char* end   = start + nhdr.n_descsz;
920         return std::vector<char>(start, end);
921       }
922     }
923   }
924 #endif
925   return std::vector<char>();
926 }
927
928 /** Binary data to hexadecimal */
929 static inline std::array<char, 2> to_hex(std::uint8_t byte)
930 {
931   constexpr std::array<char, 16> hexdigits{
932       {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'}};
933   // Horrid double braces!
934   // Apparently, this is needed in C++11 (not in C++14).
935   return {{hexdigits[byte >> 4], hexdigits[byte & 0xF]}};
936 }
937
938 /** Binary data to hexadecimal */
939 static std::string to_hex(const char* data, std::size_t count)
940 {
941   std::string res;
942   res.resize(2 * count);
943   for (std::size_t i = 0; i < count; i++)
944     std::copy_n(cbegin(to_hex(data[i])), 2, &res[2 * i]);
945   return res;
946 }
947
948 /** Binary data to hexadecimal */
949 static std::string to_hex(std::vector<char> const& data)
950 {
951   return to_hex(data.data(), data.size());
952 }
953
954 /** Base directories for external debug files */
955 static constexpr auto debug_paths = {
956     "/usr/lib/debug/",
957     "/usr/local/lib/debug/",
958 };
959
960 /** Locate an external debug file from the NT_GNU_BUILD_ID
961  *
962  *  This is one of the mechanisms used for
963  *  [separate debug files](https://sourceware.org/gdb/onlinedocs/gdb/Separate-Debug-Files.html).
964  */
965 // Example:
966 // /usr/lib/debug/.build-id/0b/dc77f1c29aea2b14ff5acd9a19ab3175ffdeae.debug
967 static std::string find_by_build_id(std::vector<char> id)
968 {
969   std::string filename;
970   std::string hex = to_hex(id);
971   for (const char* const& debug_path : debug_paths) {
972     // Example:
973     filename = std::string(debug_path) + ".build-id/" + to_hex(id.data(), 1) + '/' +
974                to_hex(id.data() + 1, id.size() - 1) + ".debug";
975     XBT_DEBUG("Checking debug file: %s", filename.c_str());
976     if (access(filename.c_str(), F_OK) == 0) {
977       XBT_DEBUG("Found debug file: %s\n", hex.c_str());
978       return filename;
979     }
980   }
981   XBT_DEBUG("No debug info found for build ID %s\n", hex.data());
982   return std::string();
983 }
984
985 /** @brief Populate the debugging information of the given ELF object
986  *
987  *  Read the DWARf information of the EFFL object and populate the
988  *  lists of types, variables, functions.
989  */
990 static void MC_load_dwarf(simgrid::mc::ObjectInformation* info)
991 {
992   xbt_assert(elf_version(EV_CURRENT) != EV_NONE, "libelf initialization error");
993
994   // Open the ELF file:
995   int fd = open(info->file_name.c_str(), O_RDONLY);
996   xbt_assert(fd >= 0, "Could not open file %s", info->file_name.c_str());
997   Elf* elf = elf_begin(fd, ELF_C_READ, nullptr);
998   xbt_assert(elf != nullptr, "Not an ELF file");
999   Elf_Kind kind = elf_kind(elf);
1000   xbt_assert(kind == ELF_K_ELF, "Not an ELF file");
1001
1002   // Remember if this is a `ET_EXEC` (fixed location) or `ET_DYN`:
1003   Elf64_Half type = get_type(elf);
1004   if (type == ET_EXEC)
1005     info->flags |= simgrid::mc::ObjectInformation::Executable;
1006
1007   // Read DWARF debug information in the file:
1008   Dwarf* dwarf = dwarf_begin_elf(elf, DWARF_C_READ, nullptr);
1009   if (dwarf != nullptr) {
1010     read_dwarf_info(info, dwarf);
1011     dwarf_end(dwarf);
1012     elf_end(elf);
1013     close(fd);
1014     return;
1015   }
1016   dwarf_end(dwarf);
1017
1018   // If there was no DWARF in the file, try to find it in a separate file.
1019   // Different methods might be used to store the DWARF information:
1020   //  * GNU NT_GNU_BUILD_ID
1021   //  * .gnu_debuglink
1022   // See https://sourceware.org/gdb/onlinedocs/gdb/Separate-Debug-Files.html
1023   // for reference of what we are doing.
1024
1025   // Try with NT_GNU_BUILD_ID: we find the build ID in the ELF file and then
1026   // use this ID to find the file in some known locations in the filesystem.
1027   std::vector<char> build_id = get_build_id(elf);
1028   if (not build_id.empty()) {
1029     elf_end(elf);
1030     close(fd);
1031
1032     // Find the debug file using the build id:
1033     std::string debug_file = find_by_build_id(build_id);
1034     xbt_assert(not debug_file.empty(),
1035                "Missing debug info for %s with build-id %s\n"
1036                "You might want to install the suitable debugging package.\n",
1037                info->file_name.c_str(), to_hex(build_id).c_str());
1038
1039     // Load the DWARF info from this file:
1040     XBT_DEBUG("Load DWARF for %s from %s", info->file_name.c_str(), debug_file.c_str());
1041     fd = open(debug_file.c_str(), O_RDONLY);
1042     xbt_assert(fd >= 0, "Could not open file %s", debug_file.c_str());
1043     dwarf = dwarf_begin(fd, DWARF_C_READ);
1044     xbt_assert(dwarf != nullptr, "No DWARF info in %s for %s", debug_file.c_str(), info->file_name.c_str());
1045     read_dwarf_info(info, dwarf);
1046     dwarf_end(dwarf);
1047     close(fd);
1048     return;
1049   }
1050
1051   // TODO, try to find DWARF info using .gnu_debuglink.
1052
1053   elf_end(elf);
1054   close(fd);
1055   xbt_die("Debugging information not found for %s\n"
1056           "Try recompiling with -g\n",
1057           info->file_name.c_str());
1058 }
1059
1060 // ***** Functions index
1061
1062 static void MC_make_functions_index(simgrid::mc::ObjectInformation* info)
1063 {
1064   info->functions_index.clear();
1065
1066   for (auto& e : info->subprograms) {
1067     if (e.second.range.begin() == 0)
1068       continue;
1069     simgrid::mc::FunctionIndexEntry entry;
1070     entry.low_pc   = (void*)e.second.range.begin();
1071     entry.function = &e.second;
1072     info->functions_index.push_back(entry);
1073   }
1074
1075   info->functions_index.shrink_to_fit();
1076
1077   // Sort the array by low_pc:
1078   boost::range::sort(info->functions_index,
1079                      [](simgrid::mc::FunctionIndexEntry const& a, simgrid::mc::FunctionIndexEntry const& b) {
1080                        return a.low_pc < b.low_pc;
1081                      });
1082 }
1083
1084 static void MC_post_process_variables(simgrid::mc::ObjectInformation* info)
1085 {
1086   // Someone needs this to be sorted but who?
1087   boost::range::sort(info->global_variables, MC_compare_variable);
1088
1089   for (simgrid::mc::Variable& variable : info->global_variables)
1090     if (variable.type_id)
1091       variable.type = simgrid::util::find_map_ptr(info->types, variable.type_id);
1092 }
1093
1094 static void mc_post_process_scope(simgrid::mc::ObjectInformation* info, simgrid::mc::Frame* scope)
1095 {
1096   if (scope->tag == DW_TAG_inlined_subroutine) {
1097     // Attach correct namespaced name in inlined subroutine:
1098     auto i = info->subprograms.find(scope->abstract_origin_id);
1099     xbt_assert(i != info->subprograms.end(), "Could not lookup abstract origin %" PRIx64,
1100                (std::uint64_t)scope->abstract_origin_id);
1101     scope->name = i->second.name;
1102   }
1103
1104   // Direct:
1105   for (simgrid::mc::Variable& variable : scope->variables)
1106     if (variable.type_id)
1107       variable.type = simgrid::util::find_map_ptr(info->types, variable.type_id);
1108
1109   // Recursive post-processing of nested-scopes:
1110   for (simgrid::mc::Frame& nested_scope : scope->scopes)
1111     mc_post_process_scope(info, &nested_scope);
1112 }
1113
1114 static simgrid::mc::Type* MC_resolve_type(simgrid::mc::ObjectInformation* info, unsigned type_id)
1115 {
1116   if (not type_id)
1117     return nullptr;
1118   simgrid::mc::Type* type = simgrid::util::find_map_ptr(info->types, type_id);
1119   if (type == nullptr)
1120     return nullptr;
1121
1122   // We already have the information on the type:
1123   if (type->byte_size != 0)
1124     return type;
1125
1126   // Don't have a name, we can't find a more complete version:
1127   if (type->name.empty())
1128     return type;
1129
1130   // Try to find a more complete description of the type:
1131   // We need to fix in order to support C++.
1132   simgrid::mc::Type** subtype = simgrid::util::find_map_ptr(info->full_types_by_name, type->name);
1133   if (subtype)
1134     type = *subtype;
1135   return type;
1136 }
1137
1138 static void MC_post_process_types(simgrid::mc::ObjectInformation* info)
1139 {
1140   // Lookup "subtype" field:
1141   for (auto& i : info->types) {
1142     i.second.subtype = MC_resolve_type(info, i.second.type_id);
1143     for (simgrid::mc::Member& member : i.second.members)
1144       member.type = MC_resolve_type(info, member.type_id);
1145   }
1146 }
1147
1148 namespace simgrid {
1149 namespace mc {
1150
1151 /** @brief Finds information about a given shared object/executable */
1152 std::shared_ptr<ObjectInformation> createObjectInformation(std::vector<xbt::VmMap> const& maps, const char* name)
1153 {
1154   auto result       = std::make_shared<ObjectInformation>();
1155   result->file_name = name;
1156   simgrid::mc::find_object_address(maps, result.get());
1157   MC_load_dwarf(result.get());
1158   MC_post_process_variables(result.get());
1159   MC_post_process_types(result.get());
1160   for (auto& entry : result.get()->subprograms)
1161     mc_post_process_scope(result.get(), &entry.second);
1162   MC_make_functions_index(result.get());
1163   return result;
1164 }
1165
1166 /*************************************************************************/
1167
1168 void postProcessObjectInformation(const RemoteSimulation* process, ObjectInformation* info)
1169 {
1170   for (auto& t : info->types) {
1171     Type* type    = &(t.second);
1172     Type* subtype = type;
1173     while (subtype->type == DW_TAG_typedef || subtype->type == DW_TAG_volatile_type ||
1174            subtype->type == DW_TAG_const_type)
1175       if (subtype->subtype)
1176         subtype = subtype->subtype;
1177       else
1178         break;
1179
1180     // Resolve full_type:
1181     if (not subtype->name.empty() && subtype->byte_size == 0)
1182       for (auto const& object_info : process->object_infos) {
1183         auto i = object_info->full_types_by_name.find(subtype->name);
1184         if (i != object_info->full_types_by_name.end() && not i->second->name.empty() && i->second->byte_size) {
1185           type->full_type = i->second;
1186           break;
1187         }
1188       }
1189     else
1190       type->full_type = subtype;
1191   }
1192 }
1193
1194 } // namespace mc
1195 } // namespace simgrid
1196
1197 namespace simgrid {
1198 namespace dwarf {
1199
1200 /** Convert a DWARF register into a libunwind register
1201  *
1202  *  DWARF and libunwind does not use the same convention for numbering the
1203  *  registers on some architectures. The function makes the necessary
1204  *  conversion.
1205  */
1206 int dwarf_register_to_libunwind(int dwarf_register)
1207 {
1208 #if defined(__x86_64__)
1209   // It seems for this arch, DWARF and libunwind agree in the numbering:
1210   return dwarf_register;
1211 #elif defined(__i386__)
1212   // Couldn't find the authoritative source of information for this.
1213   // This is inspired from http://source.winehq.org/source/dlls/dbghelp/cpu_i386.c#L517.
1214   constexpr std::array<int, 24> regs{
1215       {/*  0 */ UNW_X86_EAX, /*  1 */ UNW_X86_ECX,    /*  2 */ UNW_X86_EDX, /*  3 */ UNW_X86_EBX,
1216        /*  4 */ UNW_X86_ESP, /*  5 */ UNW_X86_EBP,    /*  6 */ UNW_X86_ESI, /*  7 */ UNW_X86_EDI,
1217        /*  8 */ UNW_X86_EIP, /*  9 */ UNW_X86_EFLAGS, /* 10 */ UNW_X86_CS,  /* 11 */ UNW_X86_SS,
1218        /* 12 */ UNW_X86_DS,  /* 13 */ UNW_X86_ES,     /* 14 */ UNW_X86_FS,  /* 15 */ UNW_X86_GS,
1219        /* 16 */ UNW_X86_ST0, /* 17 */ UNW_X86_ST1,    /* 18 */ UNW_X86_ST2, /* 19 */ UNW_X86_ST3,
1220        /* 20 */ UNW_X86_ST4, /* 21 */ UNW_X86_ST5,    /* 22 */ UNW_X86_ST6, /* 23 */ UNW_X86_ST7}};
1221   return regs.at(dwarf_register);
1222 #else
1223 #error This architecture is not supported yet for DWARF expression evaluation.
1224 #endif
1225 }
1226
1227 } // namespace dwarf
1228 } // namespace simgrid