Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] OOPify/C++ify Type (cont)
[simgrid.git] / src / mc / mc_dwarf.cpp
1 /* Copyright (c) 2008-2014. 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
9 #include <stdlib.h>
10 #define DW_LANG_Objc DW_LANG_ObjC       /* fix spelling error in older dwarf.h */
11 #include <dwarf.h>
12 #include <elfutils/libdw.h>
13
14 #include <simgrid_config.h>
15 #include <xbt/log.h>
16 #include <xbt/sysdep.h>
17
18 #include "mc_object_info.h"
19 #include "mc_private.h"
20
21 static void dw_variable_free(dw_variable_t v);
22 static void dw_variable_free_voidp(void *t);
23
24 static void MC_dwarf_register_global_variable(mc_object_info_t info, dw_variable_t variable);
25 static void MC_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
26 static void MC_dwarf_register_non_global_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
27 static void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
28
29 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_dwarf, mc, "DWARF processing");
30
31 /** \brief The default DW_TAG_lower_bound for a given DW_AT_language.
32  *
33  *  The default for a given language is defined in the DWARF spec.
34  *
35  *  \param language consant as defined by the DWARf spec
36  */
37 static uint64_t MC_dwarf_default_lower_bound(int lang);
38
39 /** \brief Computes the the element_count of a DW_TAG_enumeration_type DIE
40  *
41  * This is the number of elements in a given array dimension.
42  *
43  * A reference of the compilation unit (DW_TAG_compile_unit) is
44  * needed because the default lower bound (when there is no DW_AT_lower_bound)
45  * depends of the language of the compilation unit (DW_AT_language).
46  *
47  * \param die  DIE for the DW_TAG_enumeration_type or DW_TAG_subrange_type
48  * \param unit DIE of the DW_TAG_compile_unit
49  */
50 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die * die,
51                                                 Dwarf_Die * unit);
52
53 /** \brief Computes the number of elements of a given DW_TAG_array_type.
54  *
55  * \param die DIE for the DW_TAG_array_type
56  */
57 static uint64_t MC_dwarf_array_element_count(Dwarf_Die * die, Dwarf_Die * unit);
58
59 /** \brief Process a DIE
60  *
61  *  \param info the resulting object fot the library/binary file (output)
62  *  \param die  the current DIE
63  *  \param unit the DIE of the compile unit of the current DIE
64  *  \param frame containg frame if any
65  */
66 static void MC_dwarf_handle_die(mc_object_info_t info, Dwarf_Die * die,
67                                 Dwarf_Die * unit, dw_frame_t frame,
68                                 const char *ns);
69
70 /** \brief Process a type DIE
71  */
72 static void MC_dwarf_handle_type_die(mc_object_info_t info, Dwarf_Die * die,
73                                      Dwarf_Die * unit, dw_frame_t frame,
74                                      const char *ns);
75
76 /** \brief Calls MC_dwarf_handle_die on all childrend of the given die
77  *
78  *  \param info the resulting object fot the library/binary file (output)
79  *  \param die  the current DIE
80  *  \param unit the DIE of the compile unit of the current DIE
81  *  \param frame containg frame if any
82  */
83 static void MC_dwarf_handle_children(mc_object_info_t info, Dwarf_Die * die,
84                                      Dwarf_Die * unit, dw_frame_t frame,
85                                      const char *ns);
86
87 /** \brief Handle a variable (DW_TAG_variable or other)
88  *
89  *  \param info the resulting object fot the library/binary file (output)
90  *  \param die  the current DIE
91  *  \param unit the DIE of the compile unit of the current DIE
92  *  \param frame containg frame if any
93  */
94 static void MC_dwarf_handle_variable_die(mc_object_info_t info, Dwarf_Die * die,
95                                          Dwarf_Die * unit, dw_frame_t frame,
96                                          const char *ns);
97
98 /** \brief Get the DW_TAG_type of the DIE
99  *
100  *  \param die DIE
101  *  \return DW_TAG_type attribute as a new string (NULL if none)
102  */
103 static char *MC_dwarf_at_type(Dwarf_Die * die);
104
105 /** \brief A class of DWARF tags (DW_TAG_*)
106  */
107 typedef enum mc_tag_class {
108   mc_tag_unknown,
109   mc_tag_type,
110   mc_tag_subprogram,
111   mc_tag_variable,
112   mc_tag_scope,
113   mc_tag_namespace
114 } mc_tag_class;
115
116 static mc_tag_class MC_dwarf_tag_classify(int tag)
117 {
118   switch (tag) {
119
120   case DW_TAG_array_type:
121   case DW_TAG_class_type:
122   case DW_TAG_enumeration_type:
123   case DW_TAG_typedef:
124   case DW_TAG_pointer_type:
125   case DW_TAG_reference_type:
126   case DW_TAG_rvalue_reference_type:
127   case DW_TAG_string_type:
128   case DW_TAG_structure_type:
129   case DW_TAG_subroutine_type:
130   case DW_TAG_union_type:
131   case DW_TAG_ptr_to_member_type:
132   case DW_TAG_set_type:
133   case DW_TAG_subrange_type:
134   case DW_TAG_base_type:
135   case DW_TAG_const_type:
136   case DW_TAG_file_type:
137   case DW_TAG_packed_type:
138   case DW_TAG_volatile_type:
139   case DW_TAG_restrict_type:
140   case DW_TAG_interface_type:
141   case DW_TAG_unspecified_type:
142   case DW_TAG_shared_type:
143     return mc_tag_type;
144
145   case DW_TAG_subprogram:
146     return mc_tag_subprogram;
147
148   case DW_TAG_variable:
149   case DW_TAG_formal_parameter:
150     return mc_tag_variable;
151
152   case DW_TAG_lexical_block:
153   case DW_TAG_try_block:
154   case DW_TAG_catch_block:
155   case DW_TAG_inlined_subroutine:
156   case DW_TAG_with_stmt:
157     return mc_tag_scope;
158
159   case DW_TAG_namespace:
160     return mc_tag_namespace;
161
162   default:
163     return mc_tag_unknown;
164
165   }
166 }
167
168 #define MC_DW_CLASS_UNKNOWN 0
169 #define MC_DW_CLASS_ADDRESS 1   // Location in the address space of the program
170 #define MC_DW_CLASS_BLOCK 2     // Arbitrary block of bytes
171 #define MC_DW_CLASS_CONSTANT 3
172 #define MC_DW_CLASS_STRING 3    // String
173 #define MC_DW_CLASS_FLAG 4      // Boolean
174 #define MC_DW_CLASS_REFERENCE 5 // Reference to another DIE
175 #define MC_DW_CLASS_EXPRLOC 6   // DWARF expression/location description
176 #define MC_DW_CLASS_LINEPTR 7
177 #define MC_DW_CLASS_LOCLISTPTR 8
178 #define MC_DW_CLASS_MACPTR 9
179 #define MC_DW_CLASS_RANGELISTPTR 10
180
181 /** \brief Find the DWARF data class for a given DWARF data form
182  *
183  *  This mapping is defined in the DWARF spec.
184  *
185  *  \param form The form (values taken from the DWARF spec)
186  *  \return An internal representation for the corresponding class
187  * */
188 static int MC_dwarf_form_get_class(int form)
189 {
190   switch (form) {
191   case DW_FORM_addr:
192     return MC_DW_CLASS_ADDRESS;
193   case DW_FORM_block2:
194   case DW_FORM_block4:
195   case DW_FORM_block:
196   case DW_FORM_block1:
197     return MC_DW_CLASS_BLOCK;
198   case DW_FORM_data1:
199   case DW_FORM_data2:
200   case DW_FORM_data4:
201   case DW_FORM_data8:
202   case DW_FORM_udata:
203   case DW_FORM_sdata:
204     return MC_DW_CLASS_CONSTANT;
205   case DW_FORM_string:
206   case DW_FORM_strp:
207     return MC_DW_CLASS_STRING;
208   case DW_FORM_ref_addr:
209   case DW_FORM_ref1:
210   case DW_FORM_ref2:
211   case DW_FORM_ref4:
212   case DW_FORM_ref8:
213   case DW_FORM_ref_udata:
214     return MC_DW_CLASS_REFERENCE;
215   case DW_FORM_flag:
216   case DW_FORM_flag_present:
217     return MC_DW_CLASS_FLAG;
218   case DW_FORM_exprloc:
219     return MC_DW_CLASS_EXPRLOC;
220     // TODO sec offset
221     // TODO indirect
222   default:
223     return MC_DW_CLASS_UNKNOWN;
224   }
225 }
226
227 /** \brief Get the name of the tag of a given DIE
228  *
229  *  \param die DIE
230  *  \return name of the tag of this DIE
231  */
232 static inline const char *MC_dwarf_die_tagname(Dwarf_Die * die)
233 {
234   return MC_dwarf_tagname(dwarf_tag(die));
235 }
236
237 // ***** Attributes
238
239 /** \brief Get an attribute of a given DIE as a string
240  *
241  *  \param die       the DIE
242  *  \param attribute attribute
243  *  \return value of the given attribute of the given DIE
244  */
245 static const char *MC_dwarf_attr_integrate_string(Dwarf_Die * die,
246                                                   int attribute)
247 {
248   Dwarf_Attribute attr;
249   if (!dwarf_attr_integrate(die, attribute, &attr)) {
250     return NULL;
251   } else {
252     return dwarf_formstring(&attr);
253   }
254 }
255
256 /** \brief Get the linkage name of a DIE.
257  *
258  *  Use either DW_AT_linkage_name or DW_AT_MIPS_linkage_name.
259  *  DW_AT_linkage_name is standardized since DWARF 4.
260  *  Before this version of DWARF, the MIPS extensions
261  *  DW_AT_MIPS_linkage_name is used (at least by GCC).
262  *
263  *  \param  the DIE
264  *  \return linkage name of the given DIE (or NULL)
265  * */
266 static const char *MC_dwarf_at_linkage_name(Dwarf_Die * die)
267 {
268   const char *name = MC_dwarf_attr_integrate_string(die, DW_AT_linkage_name);
269   if (!name)
270     name = MC_dwarf_attr_integrate_string(die, DW_AT_MIPS_linkage_name);
271   return name;
272 }
273
274 static Dwarf_Off MC_dwarf_attr_dieoffset(Dwarf_Die * die, int attribute)
275 {
276   Dwarf_Attribute attr;
277   if (dwarf_hasattr_integrate(die, attribute)) {
278     dwarf_attr_integrate(die, attribute, &attr);
279     Dwarf_Die subtype_die;
280     if (dwarf_formref_die(&attr, &subtype_die) == NULL) {
281       xbt_die("Could not find DIE");
282     }
283     return dwarf_dieoffset(&subtype_die);
284   } else
285     return 0;
286 }
287
288 static Dwarf_Off MC_dwarf_attr_integrate_dieoffset(Dwarf_Die * die,
289                                                    int attribute)
290 {
291   Dwarf_Attribute attr;
292   if (dwarf_hasattr_integrate(die, attribute)) {
293     dwarf_attr_integrate(die, DW_AT_type, &attr);
294     Dwarf_Die subtype_die;
295     if (dwarf_formref_die(&attr, &subtype_die) == NULL) {
296       xbt_die("Could not find DIE");
297     }
298     return dwarf_dieoffset(&subtype_die);
299   } else
300     return 0;
301 }
302
303 /** \brief Find the type/subtype (DW_AT_type) for a DIE
304  *
305  *  \param dit the DIE
306  *  \return DW_AT_type reference as a global offset in hexadecimal (or NULL)
307  */
308 static char *MC_dwarf_at_type(Dwarf_Die * die)
309 {
310   Dwarf_Off offset = MC_dwarf_attr_integrate_dieoffset(die, DW_AT_type);
311   return offset == 0 ? NULL : bprintf("%" PRIx64, offset);
312 }
313
314 static uint64_t MC_dwarf_attr_integrate_addr(Dwarf_Die * die, int attribute)
315 {
316   Dwarf_Attribute attr;
317   if (dwarf_attr_integrate(die, attribute, &attr) == NULL)
318     return 0;
319   Dwarf_Addr value;
320   if (dwarf_formaddr(&attr, &value) == 0)
321     return (uint64_t) value;
322   else
323     return 0;
324 }
325
326 static uint64_t MC_dwarf_attr_integrate_uint(Dwarf_Die * die, int attribute,
327                                              uint64_t default_value)
328 {
329   Dwarf_Attribute attr;
330   if (dwarf_attr_integrate(die, attribute, &attr) == NULL)
331     return default_value;
332   Dwarf_Word value;
333   return dwarf_formudata(dwarf_attr_integrate(die, attribute, &attr),
334                          &value) == 0 ? (uint64_t) value : default_value;
335 }
336
337 static bool MC_dwarf_attr_flag(Dwarf_Die * die, int attribute, bool integrate)
338 {
339   Dwarf_Attribute attr;
340   if ((integrate ? dwarf_attr_integrate(die, attribute, &attr)
341        : dwarf_attr(die, attribute, &attr)) == 0)
342     return false;
343
344   bool result;
345   if (dwarf_formflag(&attr, &result))
346     xbt_die("Unexpected form for attribute %s", MC_dwarf_attrname(attribute));
347   return result;
348 }
349
350 /** \brief Find the default lower bound for a given language
351  *
352  *  The default lower bound of an array (when DW_TAG_lower_bound
353  *  is missing) depends on the language of the compilation unit.
354  *
355  *  \param lang Language of the compilation unit (values defined in the DWARF spec)
356  *  \return     Default lower bound of an array in this compilation unit
357  * */
358 static uint64_t MC_dwarf_default_lower_bound(int lang)
359 {
360   switch (lang) {
361   case DW_LANG_C:
362   case DW_LANG_C89:
363   case DW_LANG_C99:
364   case DW_LANG_C_plus_plus:
365   case DW_LANG_D:
366   case DW_LANG_Java:
367   case DW_LANG_ObjC:
368   case DW_LANG_ObjC_plus_plus:
369   case DW_LANG_Python:
370   case DW_LANG_UPC:
371     return 0;
372   case DW_LANG_Ada83:
373   case DW_LANG_Ada95:
374   case DW_LANG_Fortran77:
375   case DW_LANG_Fortran90:
376   case DW_LANG_Fortran95:
377   case DW_LANG_Modula2:
378   case DW_LANG_Pascal83:
379   case DW_LANG_PL1:
380   case DW_LANG_Cobol74:
381   case DW_LANG_Cobol85:
382     return 1;
383   default:
384     xbt_die("No default DW_TAG_lower_bound for language %i and none given",
385             lang);
386     return 0;
387   }
388 }
389
390 /** \brief Finds the number of elements in a DW_TAG_subrange_type or DW_TAG_enumeration_type DIE
391  *
392  *  \param die  the DIE
393  *  \param unit DIE of the compilation unit
394  *  \return     number of elements in the range
395  * */
396 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die * die,
397                                                 Dwarf_Die * unit)
398 {
399   xbt_assert(dwarf_tag(die) == DW_TAG_enumeration_type
400              || dwarf_tag(die) == DW_TAG_subrange_type,
401              "MC_dwarf_subrange_element_count called with DIE of type %s",
402              MC_dwarf_die_tagname(die));
403
404   // Use DW_TAG_count if present:
405   if (dwarf_hasattr_integrate(die, DW_AT_count)) {
406     return MC_dwarf_attr_integrate_uint(die, DW_AT_count, 0);
407   }
408   // Otherwise compute DW_TAG_upper_bound-DW_TAG_lower_bound + 1:
409
410   if (!dwarf_hasattr_integrate(die, DW_AT_upper_bound)) {
411     // This is not really 0, but the code expects this (we do not know):
412     return 0;
413   }
414   uint64_t upper_bound =
415       MC_dwarf_attr_integrate_uint(die, DW_AT_upper_bound, -1);
416
417   uint64_t lower_bound = 0;
418   if (dwarf_hasattr_integrate(die, DW_AT_lower_bound)) {
419     lower_bound = MC_dwarf_attr_integrate_uint(die, DW_AT_lower_bound, -1);
420   } else {
421     lower_bound = MC_dwarf_default_lower_bound(dwarf_srclang(unit));
422   }
423   return upper_bound - lower_bound + 1;
424 }
425
426 /** \brief Finds the number of elements in a array type (DW_TAG_array_type)
427  *
428  *  The compilation unit might be needed because the default lower
429  *  bound depends on the language of the compilation unit.
430  *
431  *  \param die the DIE of the DW_TAG_array_type
432  *  \param unit the DIE of the compilation unit
433  *  \return number of elements in this array type
434  * */
435 static uint64_t MC_dwarf_array_element_count(Dwarf_Die * die, Dwarf_Die * unit)
436 {
437   xbt_assert(dwarf_tag(die) == DW_TAG_array_type,
438              "MC_dwarf_array_element_count called with DIE of type %s",
439              MC_dwarf_die_tagname(die));
440
441   int result = 1;
442   Dwarf_Die child;
443   int res;
444   for (res = dwarf_child(die, &child); res == 0;
445        res = dwarf_siblingof(&child, &child)) {
446     int child_tag = dwarf_tag(&child);
447     if (child_tag == DW_TAG_subrange_type
448         || child_tag == DW_TAG_enumeration_type) {
449       result *= MC_dwarf_subrange_element_count(&child, unit);
450     }
451   }
452   return result;
453 }
454
455 // ***** mc_type_t
456
457 /** \brief Initialize the location of a member of a type
458  * (DW_AT_data_member_location of a DW_TAG_member).
459  *
460  *  \param  type   a type (struct, class)
461  *  \param  member the member of the type
462  *  \param  child  DIE of the member (DW_TAG_member)
463  */
464 static void MC_dwarf_fill_member_location(mc_type_t type, mc_type_t member,
465                                           Dwarf_Die * child)
466 {
467   if (dwarf_hasattr(child, DW_AT_data_bit_offset)) {
468     xbt_die("Can't groke DW_AT_data_bit_offset.");
469   }
470
471   if (!dwarf_hasattr_integrate(child, DW_AT_data_member_location)) {
472     if (type->type != DW_TAG_union_type) {
473       xbt_die
474           ("Missing DW_AT_data_member_location field in DW_TAG_member %s of type <%"
475            PRIx64 ">%s", member->name.c_str(),
476            (uint64_t) type->id, type->name.c_str());
477     } else {
478       return;
479     }
480   }
481
482   Dwarf_Attribute attr;
483   dwarf_attr_integrate(child, DW_AT_data_member_location, &attr);
484   int form = dwarf_whatform(&attr);
485   int klass = MC_dwarf_form_get_class(form);
486   switch (klass) {
487   case MC_DW_CLASS_EXPRLOC:
488   case MC_DW_CLASS_BLOCK:
489     // Location expression:
490     {
491       Dwarf_Op *expr;
492       size_t len;
493       if (dwarf_getlocation(&attr, &expr, &len)) {
494         xbt_die
495             ("Could not read location expression DW_AT_data_member_location in DW_TAG_member %s of type <%"
496              PRIx64 ">%s", MC_dwarf_attr_integrate_string(child, DW_AT_name),
497              (uint64_t) type->id, type->name.c_str());
498       }
499       simgrid::mc::DwarfExpression(expr, expr+len);
500       break;
501     }
502   case MC_DW_CLASS_CONSTANT:
503     // Offset from the base address of the object:
504     {
505       Dwarf_Word offset;
506       if (!dwarf_formudata(&attr, &offset))
507         member->offset(offset);
508       else
509         xbt_die("Cannot get %s location <%" PRIx64 ">%s",
510                 MC_dwarf_attr_integrate_string(child, DW_AT_name),
511                 (uint64_t) type->id, type->name.c_str());
512       break;
513     }
514   case MC_DW_CLASS_LOCLISTPTR:
515     // Reference to a location list:
516     // TODO
517   case MC_DW_CLASS_REFERENCE:
518     // It's supposed to be possible in DWARF2 but I couldn't find its semantic
519     // in the spec.
520   default:
521     xbt_die("Can't handle form class (%i) / form 0x%x as DW_AT_member_location",
522             klass, form);
523   }
524
525 }
526
527 static void dw_type_free_voidp(void *t)
528 {
529   delete *(mc_type_t*)t;
530 }
531
532 /** \brief Populate the list of members of a type
533  *
534  *  \param info ELF object containing the type DIE
535  *  \param die  DIE of the type
536  *  \param unit DIE of the compilation unit containing the type DIE
537  *  \param type the type
538  */
539 static void MC_dwarf_add_members(mc_object_info_t info, Dwarf_Die * die,
540                                  Dwarf_Die * unit, mc_type_t type)
541 {
542   int res;
543   Dwarf_Die child;
544   xbt_assert(type->members.empty());
545   for (res = dwarf_child(die, &child); res == 0;
546        res = dwarf_siblingof(&child, &child)) {
547     int tag = dwarf_tag(&child);
548     if (tag == DW_TAG_member || tag == DW_TAG_inheritance) {
549
550       // Skip declarations:
551       if (MC_dwarf_attr_flag(&child, DW_AT_declaration, false))
552         continue;
553
554       // Skip compile time constants:
555       if (dwarf_hasattr(&child, DW_AT_const_value))
556         continue;
557
558       // TODO, we should use another type (because is is not a type but a member)
559       simgrid::mc::Type member;
560       member.type = tag;
561
562       // Global Offset:
563       member.id = dwarf_dieoffset(&child);
564
565       const char *name = MC_dwarf_attr_integrate_string(&child, DW_AT_name);
566       if (name)
567         member.name = name;
568       member.byte_size =
569           MC_dwarf_attr_integrate_uint(&child, DW_AT_byte_size, 0);
570       member.element_count = -1;
571
572       char* type_id = MC_dwarf_at_type(&child);
573       if (type_id) {
574         member.dw_type_id = type_id;
575         free(type_id);
576       }
577
578       if (dwarf_hasattr(&child, DW_AT_data_bit_offset)) {
579         xbt_die("Can't groke DW_AT_data_bit_offset.");
580       }
581
582       MC_dwarf_fill_member_location(type, &member, &child);
583
584       if (member.dw_type_id.empty()) {
585         xbt_die("Missing type for member %s of <%" PRIx64 ">%s",
586                 member.name.c_str(),
587                 (uint64_t) type->id, type->name.c_str());
588       }
589
590       type->members.push_back(std::move(member));
591     }
592   }
593 }
594
595 /** \brief Create a MC type object from a DIE
596  *
597  *  \param info current object info object
598  *  \param DIE (for a given type);
599  *  \param unit compilation unit of the current DIE
600  *  \return MC representation of the type
601  */
602 static mc_type_t MC_dwarf_die_to_type(mc_object_info_t info, Dwarf_Die * die,
603                                       Dwarf_Die * unit, dw_frame_t frame,
604                                       const char *ns)
605 {
606
607   mc_type_t type = new simgrid::mc::Type();
608   type->type = -1;
609   type->name = std::string();
610   type->element_count = -1;
611
612   type->type = dwarf_tag(die);
613
614   // Global Offset
615   type->id = dwarf_dieoffset(die);
616
617   const char *prefix = "";
618   switch (type->type) {
619   case DW_TAG_structure_type:
620     prefix = "struct ";
621     break;
622   case DW_TAG_union_type:
623     prefix = "union ";
624     break;
625   case DW_TAG_class_type:
626     prefix = "class ";
627     break;
628   default:
629     prefix = "";
630   }
631
632   const char *name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
633   if (name != NULL) {
634     char* full_name = ns ? bprintf("%s%s::%s", prefix, ns, name) :
635       bprintf("%s%s", prefix, name);
636     type->name = std::string(full_name);
637     free(full_name);
638   }
639
640   char* type_id = MC_dwarf_at_type(die);
641   if (type_id) {
642     type->dw_type_id = type_id;
643     free(type_id);
644   }
645
646   // Some compilers do not emit DW_AT_byte_size for pointer_type,
647   // so we fill this. We currently assume that the model-checked process is in
648   // the same architecture..
649   if (type->type == DW_TAG_pointer_type)
650     type->byte_size = sizeof(void*);
651
652   // Computation of the byte_size;
653   if (dwarf_hasattr_integrate(die, DW_AT_byte_size))
654     type->byte_size = MC_dwarf_attr_integrate_uint(die, DW_AT_byte_size, 0);
655   else if (type->type == DW_TAG_array_type
656            || type->type == DW_TAG_structure_type
657            || type->type == DW_TAG_class_type) {
658     Dwarf_Word size;
659     if (dwarf_aggregate_size(die, &size) == 0) {
660       type->byte_size = size;
661     }
662   }
663
664   switch (type->type) {
665   case DW_TAG_array_type:
666     type->element_count = MC_dwarf_array_element_count(die, unit);
667     // TODO, handle DW_byte_stride and (not) DW_bit_stride
668     break;
669
670   case DW_TAG_pointer_type:
671   case DW_TAG_reference_type:
672   case DW_TAG_rvalue_reference_type:
673     type->is_pointer_type = 1;
674     break;
675
676   case DW_TAG_structure_type:
677   case DW_TAG_union_type:
678   case DW_TAG_class_type:
679     MC_dwarf_add_members(info, die, unit, type);
680     char *new_ns = ns == NULL ? xbt_strdup(type->name.c_str())
681         : bprintf("%s::%s", ns, name);
682     MC_dwarf_handle_children(info, die, unit, frame, new_ns);
683     free(new_ns);
684     break;
685   }
686
687   return type;
688 }
689
690 static void MC_dwarf_handle_type_die(mc_object_info_t info, Dwarf_Die * die,
691                                      Dwarf_Die * unit, dw_frame_t frame,
692                                      const char *ns)
693 {
694   mc_type_t type = MC_dwarf_die_to_type(info, die, unit, frame, ns);
695
696   char *key = bprintf("%" PRIx64, (uint64_t) type->id);
697   xbt_dict_set(info->types, key, type, NULL);
698   xbt_free(key);
699
700   if (!type->name.empty() && type->byte_size != 0) {
701     xbt_dict_set(info->full_types_by_name, type->name.c_str(), type, NULL);
702   }
703 }
704
705 static int mc_anonymous_variable_index = 0;
706
707 static dw_variable_t MC_die_to_variable(mc_object_info_t info, Dwarf_Die * die,
708                                         Dwarf_Die * unit, dw_frame_t frame,
709                                         const char *ns)
710 {
711   // Skip declarations:
712   if (MC_dwarf_attr_flag(die, DW_AT_declaration, false))
713     return NULL;
714
715   // Skip compile time constants:
716   if (dwarf_hasattr(die, DW_AT_const_value))
717     return NULL;
718
719   Dwarf_Attribute attr_location;
720   if (dwarf_attr(die, DW_AT_location, &attr_location) == NULL) {
721     // No location: do not add it ?
722     return NULL;
723   }
724
725   dw_variable_t variable = xbt_new0(s_dw_variable_t, 1);
726   variable->dwarf_offset = dwarf_dieoffset(die);
727   variable->global = frame == NULL;     // Can be override base on DW_AT_location
728   variable->object_info = info;
729
730   const char *name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
731   variable->name = xbt_strdup(name);
732
733   variable->type_origin = MC_dwarf_at_type(die);
734
735   int form = dwarf_whatform(&attr_location);
736   int klass =
737       form ==
738       DW_FORM_sec_offset ? MC_DW_CLASS_CONSTANT : MC_dwarf_form_get_class(form);
739   switch (klass) {
740   case MC_DW_CLASS_EXPRLOC:
741   case MC_DW_CLASS_BLOCK:
742     // Location expression:
743     {
744       Dwarf_Op *expr;
745       size_t len;
746       if (dwarf_getlocation(&attr_location, &expr, &len)) {
747         xbt_die
748             ("Could not read location expression in DW_AT_location of variable <%"
749              PRIx64 ">%s", (uint64_t) variable->dwarf_offset, variable->name);
750       }
751
752       if (len == 1 && expr[0].atom == DW_OP_addr) {
753         variable->global = 1;
754         uintptr_t offset = (uintptr_t) expr[0].number;
755         uintptr_t base = (uintptr_t) info->base_address();
756         variable->address = (void *) (base + offset);
757       } else {
758         mc_dwarf_location_list_init_from_expression(&variable->locations, len,
759                                                     expr);
760       }
761
762       break;
763     }
764   case MC_DW_CLASS_LOCLISTPTR:
765   case MC_DW_CLASS_CONSTANT:
766     // Reference to location list:
767     mc_dwarf_location_list_init(&variable->locations, info, die,
768                                 &attr_location);
769     break;
770   default:
771     xbt_die("Unexpected form 0x%x (%i), class 0x%x (%i) list for location in <%"
772             PRIx64 ">%s", form, form, klass, klass,
773             (uint64_t) variable->dwarf_offset, variable->name);
774   }
775
776   // Handle start_scope:
777   if (dwarf_hasattr(die, DW_AT_start_scope)) {
778     Dwarf_Attribute attr;
779     dwarf_attr(die, DW_AT_start_scope, &attr);
780     int form = dwarf_whatform(&attr);
781     int klass = MC_dwarf_form_get_class(form);
782     switch (klass) {
783     case MC_DW_CLASS_CONSTANT:
784       {
785         Dwarf_Word value;
786         variable->start_scope =
787             dwarf_formudata(&attr, &value) == 0 ? (size_t) value : 0;
788         break;
789       }
790     case MC_DW_CLASS_RANGELISTPTR:     // TODO
791     default:
792       xbt_die
793           ("Unhandled form 0x%x, class 0x%X for DW_AT_start_scope of variable %s",
794            form, klass, name == NULL ? "?" : name);
795     }
796   }
797
798   if (ns && variable->global) {
799     char *old_name = variable->name;
800     variable->name = bprintf("%s::%s", ns, old_name);
801     free(old_name);
802   }
803   // The current code needs a variable name,
804   // generate a fake one:
805   if (!variable->name) {
806     variable->name = bprintf("@anonymous#%i", mc_anonymous_variable_index++);
807   }
808
809   return variable;
810 }
811
812 static void MC_dwarf_handle_variable_die(mc_object_info_t info, Dwarf_Die * die,
813                                          Dwarf_Die * unit, dw_frame_t frame,
814                                          const char *ns)
815 {
816   dw_variable_t variable =
817       MC_die_to_variable(info, die, unit, frame, ns);
818   if (variable == NULL)
819     return;
820   MC_dwarf_register_variable(info, frame, variable);
821 }
822
823 static void mc_frame_free_voipd(dw_frame_t * p)
824 {
825   mc_frame_free(*p);
826   *p = NULL;
827 }
828
829 static void MC_dwarf_handle_scope_die(mc_object_info_t info, Dwarf_Die * die,
830                                       Dwarf_Die * unit, dw_frame_t parent_frame,
831                                       const char *ns)
832 {
833   // TODO, handle DW_TAG_type/DW_TAG_location for DW_TAG_with_stmt
834   int tag = dwarf_tag(die);
835   mc_tag_class klass = MC_dwarf_tag_classify(tag);
836
837   // (Template) Subprogram declaration:
838   if (klass == mc_tag_subprogram
839       && MC_dwarf_attr_flag(die, DW_AT_declaration, false))
840     return;
841
842   if (klass == mc_tag_scope)
843     xbt_assert(parent_frame, "No parent scope for this scope");
844
845   dw_frame_t frame = xbt_new0(s_dw_frame_t, 1);
846
847   frame->tag = tag;
848   frame->id = dwarf_dieoffset(die);
849   frame->object_info = info;
850
851   if (klass == mc_tag_subprogram) {
852     const char *name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
853     frame->name =
854         ns ? bprintf("%s::%s", ns, name) : xbt_strdup(name);
855   }
856
857   frame->abstract_origin_id =
858       MC_dwarf_attr_dieoffset(die, DW_AT_abstract_origin);
859
860   // This is the base address for DWARF addresses.
861   // Relocated addresses are offset from this base address.
862   // See DWARF4 spec 7.5
863   void *base = info->base_address();
864
865   // Variables are filled in the (recursive) call of MC_dwarf_handle_children:
866   frame->variables =
867       xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp);
868
869   // TODO, support DW_AT_ranges
870   uint64_t low_pc = MC_dwarf_attr_integrate_addr(die, DW_AT_low_pc);
871   frame->low_pc = low_pc ? ((char *) base) + low_pc : 0;
872   if (low_pc) {
873     // DW_AT_high_pc:
874     Dwarf_Attribute attr;
875     if (!dwarf_attr_integrate(die, DW_AT_high_pc, &attr)) {
876       xbt_die("Missing DW_AT_high_pc matching with DW_AT_low_pc");
877     }
878
879     Dwarf_Sword offset;
880     Dwarf_Addr high_pc;
881
882     switch (MC_dwarf_form_get_class(dwarf_whatform(&attr))) {
883
884       // DW_AT_high_pc if an offset from the low_pc:
885     case MC_DW_CLASS_CONSTANT:
886
887       if (dwarf_formsdata(&attr, &offset) != 0)
888         xbt_die("Could not read constant");
889       frame->high_pc = (void *) ((char *) frame->low_pc + offset);
890       break;
891
892       // DW_AT_high_pc is a relocatable address:
893     case MC_DW_CLASS_ADDRESS:
894       if (dwarf_formaddr(&attr, &high_pc) != 0)
895         xbt_die("Could not read address");
896       frame->high_pc = ((char *) base) + high_pc;
897       break;
898
899     default:
900       xbt_die("Unexpected class for DW_AT_high_pc");
901
902     }
903   }
904
905   if (klass == mc_tag_subprogram) {
906     Dwarf_Attribute attr_frame_base;
907     if (dwarf_attr_integrate(die, DW_AT_frame_base, &attr_frame_base))
908       mc_dwarf_location_list_init(&frame->frame_base, info, die,
909                                   &attr_frame_base);
910   }
911
912   frame->scopes =
913       xbt_dynar_new(sizeof(dw_frame_t), (void_f_pvoid_t) mc_frame_free_voipd);
914
915   // Register it:
916   if (klass == mc_tag_subprogram) {
917     char *key = bprintf("%" PRIx64, (uint64_t) frame->id);
918     xbt_dict_set(info->subprograms, key, frame, NULL);
919     xbt_free(key);
920   } else if (klass == mc_tag_scope) {
921     xbt_dynar_push(parent_frame->scopes, &frame);
922   }
923   // Handle children:
924   MC_dwarf_handle_children(info, die, unit, frame, ns);
925 }
926
927 static void mc_dwarf_handle_namespace_die(mc_object_info_t info,
928                                           Dwarf_Die * die, Dwarf_Die * unit,
929                                           dw_frame_t frame,
930                                           const char *ns)
931 {
932   const char *name = MC_dwarf_attr_integrate_string(die, DW_AT_name);
933   if (frame)
934     xbt_die("Unexpected namespace in a subprogram");
935   char *new_ns = ns == NULL ? xbt_strdup(name)
936       : bprintf("%s::%s", ns, name);
937   MC_dwarf_handle_children(info, die, unit, frame, new_ns);
938   xbt_free(new_ns);
939 }
940
941 static void MC_dwarf_handle_children(mc_object_info_t info, Dwarf_Die * die,
942                                      Dwarf_Die * unit, dw_frame_t frame,
943                                      const char *ns)
944 {
945   // For each child DIE:
946   Dwarf_Die child;
947   int res;
948   for (res = dwarf_child(die, &child); res == 0;
949        res = dwarf_siblingof(&child, &child)) {
950     MC_dwarf_handle_die(info, &child, unit, frame, ns);
951   }
952 }
953
954 static void MC_dwarf_handle_die(mc_object_info_t info, Dwarf_Die * die,
955                                 Dwarf_Die * unit, dw_frame_t frame,
956                                 const char *ns)
957 {
958   int tag = dwarf_tag(die);
959   mc_tag_class klass = MC_dwarf_tag_classify(tag);
960   switch (klass) {
961
962     // Type:
963   case mc_tag_type:
964     MC_dwarf_handle_type_die(info, die, unit, frame, ns);
965     break;
966
967     // Subprogram or scope:
968   case mc_tag_subprogram:
969   case mc_tag_scope:
970     MC_dwarf_handle_scope_die(info, die, unit, frame, ns);
971     return;
972
973     // Variable:
974   case mc_tag_variable:
975     MC_dwarf_handle_variable_die(info, die, unit, frame, ns);
976     break;
977
978   case mc_tag_namespace:
979     mc_dwarf_handle_namespace_die(info, die, unit, frame, ns);
980     break;
981
982   default:
983     break;
984
985   }
986 }
987
988 /** \brief Populate the debugging informations of the given ELF object
989  *
990  *  Read the DWARf information of the EFFL object and populate the
991  *  lists of types, variables, functions.
992  */
993 void MC_dwarf_get_variables(mc_object_info_t info)
994 {
995   int fd = open(info->file_name, O_RDONLY);
996   if (fd < 0) {
997     xbt_die("Could not open file %s", info->file_name);
998   }
999   Dwarf *dwarf = dwarf_begin(fd, DWARF_C_READ);
1000   if (dwarf == NULL) {
1001     xbt_die("Your program must be compiled with -g (%s)", info->file_name);
1002   }
1003   // For each compilation unit:
1004   Dwarf_Off offset = 0;
1005   Dwarf_Off next_offset = 0;
1006   size_t length;
1007   while (dwarf_nextcu(dwarf, offset, &next_offset, &length, NULL, NULL, NULL) ==
1008          0) {
1009     Dwarf_Die unit_die;
1010     if (dwarf_offdie(dwarf, offset + length, &unit_die) != NULL) {
1011
1012       // For each child DIE:
1013       Dwarf_Die child;
1014       int res;
1015       for (res = dwarf_child(&unit_die, &child); res == 0;
1016            res = dwarf_siblingof(&child, &child)) {
1017         MC_dwarf_handle_die(info, &child, &unit_die, NULL, NULL);
1018       }
1019
1020     }
1021     offset = next_offset;
1022   }
1023
1024   dwarf_end(dwarf);
1025   close(fd);
1026 }
1027
1028 /************************** Free functions *************************/
1029
1030 void mc_frame_free(dw_frame_t frame)
1031 {
1032   xbt_free(frame->name);
1033   mc_dwarf_location_list_clear(&(frame->frame_base));
1034   xbt_dynar_free(&(frame->variables));
1035   xbt_dynar_free(&(frame->scopes));
1036   xbt_free(frame);
1037 }
1038
1039 static void dw_type_free(mc_type_t t)
1040 {
1041   delete t;
1042 }
1043
1044 void dw_variable_free(dw_variable_t v)
1045 {
1046   if (v) {
1047     xbt_free(v->name);
1048     xbt_free(v->type_origin);
1049
1050     if (v->locations.locations)
1051       mc_dwarf_location_list_clear(&v->locations);
1052     xbt_free(v);
1053   }
1054 }
1055
1056 void dw_variable_free_voidp(void *t)
1057 {
1058   dw_variable_free((dw_variable_t) * (void **) t);
1059 }
1060
1061 // ***** object_info
1062
1063 namespace simgrid {
1064 namespace mc {
1065
1066 ObjectInformation::ObjectInformation()
1067 {
1068   this->flags = 0;
1069   this->file_name = nullptr;
1070   this->start = nullptr;
1071   this->end = nullptr;
1072   this->start_exec = nullptr;
1073   this->end_exec = nullptr;
1074   this->start_rw = nullptr;
1075   this->end_rw = nullptr;
1076   this->start_ro = nullptr;
1077   this->end_ro = nullptr;
1078   this->subprograms = xbt_dict_new_homogeneous((void (*)(void *)) mc_frame_free);
1079   this->global_variables =
1080       xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp);
1081   this->types = xbt_dict_new_homogeneous((void (*)(void *)) dw_type_free);
1082   this->full_types_by_name = xbt_dict_new_homogeneous(NULL);
1083   this->functions_index = nullptr;
1084 }
1085
1086 ObjectInformation::~ObjectInformation()
1087 {
1088   xbt_free(this->file_name);
1089   xbt_dict_free(&this->subprograms);
1090   xbt_dynar_free(&this->global_variables);
1091   xbt_dict_free(&this->types);
1092   xbt_dict_free(&this->full_types_by_name);
1093   xbt_dynar_free(&this->functions_index);
1094 }
1095
1096 /** Find the DWARF offset for this ELF object
1097  *
1098  *  An offset is applied to address found in DWARF:
1099  *
1100  *  <ul>
1101  *    <li>for an executable obejct, addresses are virtual address
1102  *        (there is no offset) i.e. \f$\text{virtual address} = \{dwarf address}\f$;</li>
1103  *    <li>for a shared object, the addreses are offset from the begining
1104  *        of the shared object (the base address of the mapped shared
1105  *        object must be used as offset
1106  *        i.e. \f$\text{virtual address} = \text{shared object base address}
1107  *             + \text{dwarf address}\f$.</li>
1108  *
1109  */
1110 void *ObjectInformation::base_address() const
1111 {
1112   if (this->executable())
1113     return nullptr;
1114
1115   void *result = this->start_exec;
1116   if (this->start_rw != NULL && result > (void *) this->start_rw)
1117     result = this->start_rw;
1118   if (this->start_ro != NULL && result > (void *) this->start_ro)
1119     result = this->start_ro;
1120   return result;
1121 }
1122
1123 }
1124 }
1125
1126 // ***** Helpers
1127
1128 // ***** Functions index
1129
1130 static int MC_compare_frame_index_items(mc_function_index_item_t a,
1131                                         mc_function_index_item_t b)
1132 {
1133   if (a->low_pc < b->low_pc)
1134     return -1;
1135   else if (a->low_pc == b->low_pc)
1136     return 0;
1137   else
1138     return 1;
1139 }
1140
1141 static void MC_make_functions_index(mc_object_info_t info)
1142 {
1143   xbt_dynar_t index = xbt_dynar_new(sizeof(s_mc_function_index_item_t), NULL);
1144
1145   // Populate the array:
1146   dw_frame_t frame = NULL;
1147   xbt_dict_cursor_t cursor;
1148   char *key;
1149   xbt_dict_foreach(info->subprograms, cursor, key, frame) {
1150     if (frame->low_pc == NULL)
1151       continue;
1152     s_mc_function_index_item_t entry;
1153     entry.low_pc = frame->low_pc;
1154     entry.high_pc = frame->high_pc;
1155     entry.function = frame;
1156     xbt_dynar_push(index, &entry);
1157   }
1158
1159   mc_function_index_item_t base =
1160       (mc_function_index_item_t) xbt_dynar_get_ptr(index, 0);
1161
1162   // Sort the array by low_pc:
1163   qsort(base,
1164         xbt_dynar_length(index),
1165         sizeof(s_mc_function_index_item_t),
1166         (int (*)(const void *, const void *)) MC_compare_frame_index_items);
1167
1168   info->functions_index = index;
1169 }
1170
1171 static void MC_post_process_variables(mc_object_info_t info)
1172 {
1173   unsigned cursor = 0;
1174   dw_variable_t variable = NULL;
1175   xbt_dynar_foreach(info->global_variables, cursor, variable) {
1176     if (variable->type_origin) {
1177       variable->type = (mc_type_t) xbt_dict_get_or_null(info->types, variable->type_origin);
1178     }
1179   }
1180 }
1181
1182 static void mc_post_process_scope(mc_object_info_t info, dw_frame_t scope)
1183 {
1184
1185   if (scope->tag == DW_TAG_inlined_subroutine) {
1186
1187     // Attach correct namespaced name in inlined subroutine:
1188     char *key = bprintf("%" PRIx64, (uint64_t) scope->abstract_origin_id);
1189     dw_frame_t abstract_origin = (dw_frame_t) xbt_dict_get_or_null(info->subprograms, key);
1190     xbt_assert(abstract_origin, "Could not lookup abstract origin %s", key);
1191     xbt_free(key);
1192     scope->name = xbt_strdup(abstract_origin->name);
1193
1194   }
1195   // Direct:
1196   unsigned cursor = 0;
1197   dw_variable_t variable = NULL;
1198   xbt_dynar_foreach(scope->variables, cursor, variable) {
1199     if (variable->type_origin) {
1200       variable->type = (mc_type_t) xbt_dict_get_or_null(info->types, variable->type_origin);
1201     }
1202   }
1203
1204   // Recursive post-processing of nested-scopes:
1205   dw_frame_t nested_scope = NULL;
1206   xbt_dynar_foreach(scope->scopes, cursor, nested_scope)
1207       mc_post_process_scope(info, nested_scope);
1208
1209 }
1210
1211 static void MC_post_process_functions(mc_object_info_t info)
1212 {
1213   xbt_dict_cursor_t cursor;
1214   char *key;
1215   dw_frame_t subprogram = NULL;
1216   xbt_dict_foreach(info->subprograms, cursor, key, subprogram) {
1217     mc_post_process_scope(info, subprogram);
1218   }
1219 }
1220
1221
1222 /** \brief Fill/lookup the "subtype" field.
1223  */
1224 static void MC_resolve_subtype(mc_object_info_t info, mc_type_t type)
1225 {
1226
1227   if (type->dw_type_id.empty())
1228     return;
1229   type->subtype = (mc_type_t) xbt_dict_get_or_null(
1230     info->types, type->dw_type_id.c_str());
1231   if (type->subtype == NULL)
1232     return;
1233   if (type->subtype->byte_size != 0)
1234     return;
1235   if (type->subtype->name.empty())
1236     return;
1237   // Try to find a more complete description of the type:
1238   // We need to fix in order to support C++.
1239
1240   mc_type_t subtype =
1241     (mc_type_t) xbt_dict_get_or_null(
1242       info->full_types_by_name, type->subtype->name.c_str());
1243   if (subtype != NULL) {
1244     type->subtype = subtype;
1245   }
1246
1247 }
1248
1249 static void MC_post_process_types(mc_object_info_t info)
1250 {
1251   xbt_dict_cursor_t cursor = NULL;
1252   char *origin;
1253   mc_type_t type;
1254
1255   // Lookup "subtype" field:
1256   xbt_dict_foreach(info->types, cursor, origin, type) {
1257     MC_resolve_subtype(info, type);
1258     for (simgrid::mc::Type& member : type->members)
1259       MC_resolve_subtype(info, &member);
1260   }
1261 }
1262
1263 /** \brief Finds informations about a given shared object/executable */
1264 std::shared_ptr<s_mc_object_info_t> MC_find_object_info(
1265   std::vector<simgrid::mc::VmMap> const& maps, const char *name, int executable)
1266 {
1267   std::shared_ptr<s_mc_object_info_t> result =
1268     std::make_shared<s_mc_object_info_t>();
1269   if (executable)
1270     result->flags |= MC_OBJECT_INFO_EXECUTABLE;
1271   result->file_name = xbt_strdup(name);
1272   MC_find_object_address(maps, result.get());
1273   MC_dwarf_get_variables(result.get());
1274   MC_post_process_types(result.get());
1275   MC_post_process_variables(result.get());
1276   MC_post_process_functions(result.get());
1277   MC_make_functions_index(result.get());
1278   return std::move(result);
1279 }
1280
1281 /*************************************************************************/
1282
1283 static int MC_dwarf_get_variable_index(xbt_dynar_t variables, char *var,
1284                                        void *address)
1285 {
1286
1287   if (xbt_dynar_is_empty(variables))
1288     return 0;
1289
1290   unsigned int cursor = 0;
1291   int start = 0;
1292   int end = xbt_dynar_length(variables) - 1;
1293   dw_variable_t var_test = NULL;
1294
1295   while (start <= end) {
1296     cursor = (start + end) / 2;
1297     var_test =
1298         (dw_variable_t) xbt_dynar_get_as(variables, cursor, dw_variable_t);
1299     if (strcmp(var_test->name, var) < 0) {
1300       start = cursor + 1;
1301     } else if (strcmp(var_test->name, var) > 0) {
1302       end = cursor - 1;
1303     } else {
1304       if (address) {            /* global variable */
1305         if (var_test->address == address)
1306           return -1;
1307         if (var_test->address > address)
1308           end = cursor - 1;
1309         else
1310           start = cursor + 1;
1311       } else {                  /* local variable */
1312         return -1;
1313       }
1314     }
1315   }
1316
1317   if (strcmp(var_test->name, var) == 0) {
1318     if (address && var_test->address < address)
1319       return cursor + 1;
1320     else
1321       return cursor;
1322   } else if (strcmp(var_test->name, var) < 0)
1323     return cursor + 1;
1324   else
1325     return cursor;
1326
1327 }
1328
1329 void MC_dwarf_register_global_variable(mc_object_info_t info,
1330                                        dw_variable_t variable)
1331 {
1332   int index =
1333       MC_dwarf_get_variable_index(info->global_variables, variable->name,
1334                                   variable->address);
1335   if (index != -1)
1336     xbt_dynar_insert_at(info->global_variables, index, &variable);
1337   // TODO, else ?
1338 }
1339
1340 void MC_dwarf_register_non_global_variable(mc_object_info_t info,
1341                                            dw_frame_t frame,
1342                                            dw_variable_t variable)
1343 {
1344   xbt_assert(frame, "Frame is NULL");
1345   int index =
1346       MC_dwarf_get_variable_index(frame->variables, variable->name, NULL);
1347   if (index != -1)
1348     xbt_dynar_insert_at(frame->variables, index, &variable);
1349   // TODO, else ?
1350 }
1351
1352 void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame,
1353                                 dw_variable_t variable)
1354 {
1355   if (variable->global)
1356     MC_dwarf_register_global_variable(info, variable);
1357   else if (frame == NULL)
1358     xbt_die("No frame for this local variable");
1359   else
1360     MC_dwarf_register_non_global_variable(info, frame, variable);
1361 }
1362
1363 void MC_post_process_object_info(mc_process_t process, mc_object_info_t info)
1364 {
1365   xbt_dict_cursor_t cursor = NULL;
1366   char *key = NULL;
1367   mc_type_t type = NULL;
1368   xbt_dict_foreach(info->types, cursor, key, type) {
1369
1370     mc_type_t subtype = type;
1371     while (subtype->type == DW_TAG_typedef || subtype->type == DW_TAG_volatile_type
1372       || subtype->type == DW_TAG_const_type) {
1373       if (subtype->subtype)
1374         subtype = subtype->subtype;
1375       else
1376         break;
1377     }
1378
1379     // Resolve full_type:
1380     if (!subtype->name.empty() && subtype->byte_size == 0) {
1381       for (auto const& object_info : process->object_infos) {
1382         mc_type_t same_type = (mc_type_t)
1383             xbt_dict_get_or_null(object_info->full_types_by_name,
1384                                  subtype->name.c_str());
1385         if (same_type && !same_type->name.empty() && same_type->byte_size) {
1386           type->full_type = same_type;
1387           break;
1388         }
1389       }
1390     } else type->full_type = subtype;
1391
1392   }
1393 }