Logo AND Algorithmique Numérique Distribuée

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