Logo AND Algorithmique Numérique Distribuée

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