Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f646d51bf898537d352b03281d75c50613df1889
[simgrid.git] / src / mc / mc_dwarf.c
1 /* Copyright (c) 2008-2013. The SimGrid Team.
2  * All rights reserved.                                                     */
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <stdlib.h>
7 #include <dwarf.h>
8 #include <elfutils/libdw.h>
9 #include <inttypes.h>
10
11 #include <simgrid_config.h>
12 #include <xbt/log.h>
13 #include <xbt/sysdep.h>
14
15 #include "mc_private.h"
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_dwarf, mc, "DWARF processing");
18
19 /** \brief The default DW_TAG_lower_bound for a given DW_AT_language.
20  *
21  *  The default for a given language is defined in the DWARF spec.
22  *
23  *  \param language consant as defined by the DWARf spec
24  */
25 static uint64_t MC_dwarf_default_lower_bound(int lang);
26
27 /** \brief Computes the the element_count of a DW_TAG_enumeration_type DIE
28  *
29  * This is the number of elements in a given array dimension.
30  *
31  * A reference of the compilation unit (DW_TAG_compile_unit) is
32  * needed because the default lower bound (when there is no DW_AT_lower_bound)
33  * depends of the language of the compilation unit (DW_AT_language).
34  *
35  * \param die  DIE for the DW_TAG_enumeration_type or DW_TAG_subrange_type
36  * \param unit DIE of the DW_TAG_compile_unit
37  */
38 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die* die, Dwarf_Die* unit);
39
40 /** \brief Computes the number of elements of a given DW_TAG_array_type.
41  *
42  * \param die DIE for the DW_TAG_array_type
43  */
44 static uint64_t MC_dwarf_array_element_count(Dwarf_Die* die, Dwarf_Die* unit);
45
46 /** \brief Process a DIE
47  *
48  *  \param info the resulting object fot the library/binary file (output)
49  *  \param die  the current DIE
50  *  \param unit the DIE of the compile unit of the current DIE
51  *  \param frame containg frame if any
52  */
53 static void MC_dwarf_handle_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace);
54
55 /** \brief Process a type DIE
56  */
57 static void MC_dwarf_handle_type_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace);
58
59 /** \brief Calls MC_dwarf_handle_die on all childrend of the given 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_children(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace);
67
68 /** \brief Handle a variable (DW_TAG_variable or other)
69  *
70  *  \param info the resulting object fot the library/binary file (output)
71  *  \param die  the current DIE
72  *  \param unit the DIE of the compile unit of the current DIE
73  *  \param frame containg frame if any
74  */
75 static void MC_dwarf_handle_variable_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace);
76
77 /** \brief Get the DW_TAG_type of the DIE
78  *
79  *  \param die DIE
80  *  \return DW_TAG_type attribute as a new string (NULL if none)
81  */
82 static char* MC_dwarf_at_type(Dwarf_Die* die);
83
84 /** \brief Get the name of an attribute (DW_AT_*) from its code
85  *
86  *  \param attr attribute code (see the DWARF specification)
87  *  \return name of the attribute
88  */
89 const char* MC_dwarf_attrname(int attr) {
90   switch (attr) {
91 #include "mc_dwarf_attrnames.h"
92   default:
93     return "DW_AT_unknown";
94   }
95 }
96
97 /** \brief Get the name of a dwarf tag (DW_TAG_*) from its code
98  *
99  *  \param tag tag code (see the DWARF specification)
100  *  \return name of the tag
101  */
102 const char* MC_dwarf_tagname(int tag) {
103   switch (tag) {
104 #include "mc_dwarf_tagnames.h"
105   case DW_TAG_invalid:
106     return "DW_TAG_invalid";
107   default:
108     return "DW_TAG_unknown";
109   }
110 }
111
112 /** \brief A class of DWARF tags (DW_TAG_*)
113  */
114 typedef enum mc_tag_class {
115   mc_tag_unknown,
116   mc_tag_type,
117   mc_tag_subprogram,
118   mc_tag_variable,
119   mc_tag_scope,
120   mc_tag_namespace
121 } mc_tag_class;
122
123 static mc_tag_class MC_dwarf_tag_classify(int tag) {
124   switch (tag) {
125
126     case DW_TAG_array_type:
127     case DW_TAG_class_type:
128     case DW_TAG_enumeration_type:
129     case DW_TAG_typedef:
130     case DW_TAG_pointer_type:
131     case DW_TAG_reference_type:
132     case DW_TAG_rvalue_reference_type:
133     case DW_TAG_string_type:
134     case DW_TAG_structure_type:
135     case DW_TAG_subroutine_type:
136     case DW_TAG_union_type:
137     case DW_TAG_ptr_to_member_type:
138     case DW_TAG_set_type:
139     case DW_TAG_subrange_type:
140     case DW_TAG_base_type:
141     case DW_TAG_const_type:
142     case DW_TAG_file_type:
143     case DW_TAG_packed_type:
144     case DW_TAG_volatile_type:
145     case DW_TAG_restrict_type:
146     case DW_TAG_interface_type:
147     case DW_TAG_unspecified_type:
148     case DW_TAG_mutable_type:
149     case DW_TAG_shared_type:
150       return mc_tag_type;
151
152     case DW_TAG_subprogram:
153       return mc_tag_subprogram;
154
155     case DW_TAG_variable:
156     case DW_TAG_formal_parameter:
157       return mc_tag_variable;
158
159     case DW_TAG_lexical_block:
160     case DW_TAG_try_block:
161     case DW_TAG_inlined_subroutine:
162       return mc_tag_scope;
163
164     case DW_TAG_namespace:
165       return mc_tag_namespace;
166
167     default:
168       return mc_tag_unknown;
169
170   }
171 }
172
173 #define MC_DW_CLASS_UNKNOWN 0
174 #define MC_DW_CLASS_ADDRESS 1   // Location in the address space of the program
175 #define MC_DW_CLASS_BLOCK 2     // Arbitrary block of bytes
176 #define MC_DW_CLASS_CONSTANT 3
177 #define MC_DW_CLASS_STRING 3    // String
178 #define MC_DW_CLASS_FLAG 4      // Boolean
179 #define MC_DW_CLASS_REFERENCE 5 // Reference to another DIE
180 #define MC_DW_CLASS_EXPRLOC 6   // DWARF expression/location description
181 #define MC_DW_CLASS_LINEPTR 7
182 #define MC_DW_CLASS_LOCLISTPTR 8
183 #define MC_DW_CLASS_MACPTR 9
184 #define MC_DW_CLASS_RANGELISTPTR 10
185
186 static int MC_dwarf_form_get_class(int form) {
187   switch(form) {
188   case DW_FORM_addr:
189     return MC_DW_CLASS_ADDRESS;
190   case DW_FORM_block2:
191   case DW_FORM_block4:
192   case DW_FORM_block:
193   case DW_FORM_block1:
194     return MC_DW_CLASS_BLOCK;
195   case DW_FORM_data1:
196   case DW_FORM_data2:
197   case DW_FORM_data4:
198   case DW_FORM_data8:
199   case DW_FORM_udata:
200   case DW_FORM_sdata:
201     return MC_DW_CLASS_CONSTANT;
202   case DW_FORM_string:
203   case DW_FORM_strp:
204     return MC_DW_CLASS_STRING;
205   case DW_FORM_ref_addr:
206   case DW_FORM_ref1:
207   case DW_FORM_ref2:
208   case DW_FORM_ref4:
209   case DW_FORM_ref8:
210   case DW_FORM_ref_udata:
211     return MC_DW_CLASS_REFERENCE;
212   case DW_FORM_flag:
213   case DW_FORM_flag_present:
214     return MC_DW_CLASS_FLAG;
215   case DW_FORM_exprloc:
216     return MC_DW_CLASS_EXPRLOC;
217   // TODO sec offset
218   // TODO indirect
219   default:
220     return MC_DW_CLASS_UNKNOWN;
221   }
222 }
223
224 /** \brief Get the name of the tag of a given DIE
225  *
226  *  \param die DIE
227  *  \return name of the tag of this DIE
228  */
229 static inline const char* MC_dwarf_die_tagname(Dwarf_Die* die) {
230   return MC_dwarf_tagname(dwarf_tag(die));
231 }
232
233 // ***** Attributes
234
235 /** \brief Get an attribute of a given DIE as a string
236  *
237  *  \param the DIE
238  *  \param attribute attribute
239  *  \return value of the given attribute of the given DIE
240  */
241 static const char* MC_dwarf_attr_string(Dwarf_Die* die, int attribute) {
242   Dwarf_Attribute attr;
243   if (!dwarf_attr_integrate(die, attribute, &attr)) {
244         return NULL;
245   } else {
246         return dwarf_formstring(&attr);
247   }
248 }
249
250 /** \brief Get the linkage name of a DIE.
251  *
252  *  Use either DW_AT_linkage_name or DW_AR_MIPS_linkage_name.
253  *
254  *  \param DIE
255  *  \return linkage name of the given DIE (or NULL)
256  * */
257 static const char* MC_dwarf_at_linkage_name(Dwarf_Die* die) {
258   const char* name = MC_dwarf_attr_string(die, DW_AT_linkage_name);
259   if (!name)
260     name = MC_dwarf_attr_string(die, DW_AT_MIPS_linkage_name);
261   return name;
262 }
263
264 static char* MC_dwarf_at_type(Dwarf_Die* die) {
265   Dwarf_Attribute attr;
266   if (dwarf_hasattr_integrate(die, DW_AT_type)) {
267         dwarf_attr_integrate(die, DW_AT_type, &attr);
268         Dwarf_Die subtype_die;
269         if (dwarf_formref_die(&attr, &subtype_die)==NULL) {
270           xbt_die("Could not find DIE for type");
271         }
272         Dwarf_Off subtype_global_offset = dwarf_dieoffset(&subtype_die);
273     return bprintf("%" PRIx64 , subtype_global_offset);
274   }
275   else return NULL;
276 }
277
278 static uint64_t MC_dwarf_attr_addr(Dwarf_Die* die, int attribute) {
279   Dwarf_Attribute attr;
280   if(dwarf_attr_integrate(die, attribute, &attr)==NULL)
281     return 0;
282   Dwarf_Addr value;
283   if (dwarf_formaddr(&attr, &value) == 0)
284     return (uint64_t) value;
285   else
286     return 0;
287 }
288
289 static uint64_t MC_dwarf_attr_uint(Dwarf_Die* die, int attribute, uint64_t default_value) {
290   Dwarf_Attribute attr;
291   if (dwarf_attr_integrate(die, attribute, &attr)==NULL)
292     return default_value;
293   Dwarf_Word value;
294   return dwarf_formudata(dwarf_attr_integrate(die, attribute, &attr), &value) == 0 ? (uint64_t) value : default_value;
295 }
296
297 static bool MC_dwarf_attr_flag(Dwarf_Die* die, int attribute, int integrate) {
298   Dwarf_Attribute attr;
299   if ((integrate ? dwarf_attr_integrate(die, attribute, &attr)
300                     : dwarf_attr(die, attribute, &attr))==0)
301     return false;
302
303   bool result;
304   if (dwarf_formflag(&attr, &result))
305     xbt_die("Unexpected form for attribute %s",
306       MC_dwarf_attrname(attribute));
307   return result;
308 }
309
310 static uint64_t MC_dwarf_default_lower_bound(int lang) {
311   switch(lang) {
312   case DW_LANG_C:
313   case DW_LANG_C89:
314   case DW_LANG_C99:
315   case DW_LANG_C_plus_plus:
316   case DW_LANG_D:
317   case DW_LANG_Java:
318   case DW_LANG_ObjC:
319   case DW_LANG_ObjC_plus_plus:
320   case DW_LANG_Python:
321   case DW_LANG_UPC:
322     return 0;
323   case DW_LANG_Ada83:
324   case DW_LANG_Ada95:
325   case DW_LANG_Fortran77:
326   case DW_LANG_Fortran90:
327   case DW_LANG_Fortran95:
328   case DW_LANG_Modula2:
329   case DW_LANG_Pascal83:
330   case DW_LANG_PL1:
331   case DW_LANG_Cobol74:
332   case DW_LANG_Cobol85:
333     return 1;
334   default:
335     xbt_die("No default MT_TAG_lower_bound for language %i and none given", lang);
336     return 0;
337   }
338 }
339
340 static uint64_t MC_dwarf_subrange_element_count(Dwarf_Die* die, Dwarf_Die* unit) {
341   xbt_assert(dwarf_tag(die)==DW_TAG_enumeration_type ||dwarf_tag(die)==DW_TAG_subrange_type,
342       "MC_dwarf_subrange_element_count called with DIE of type %s", MC_dwarf_die_tagname(die));
343
344   // Use DW_TAG_count if present:
345   if (dwarf_hasattr_integrate(die, DW_AT_count)) {
346     return MC_dwarf_attr_uint(die, DW_AT_count, 0);
347   }
348
349   // Otherwise compute DW_TAG_upper_bound-DW_TAG_lower_bound + 1:
350
351   if (!dwarf_hasattr_integrate(die, DW_AT_upper_bound)) {
352         // This is not really 0, but the code expects this (we do not know):
353     return 0;
354   }
355   uint64_t upper_bound = MC_dwarf_attr_uint(die, DW_AT_upper_bound, -1);
356
357   uint64_t lower_bound = 0;
358   if (dwarf_hasattr_integrate(die, DW_AT_lower_bound)) {
359     lower_bound = MC_dwarf_attr_uint(die, DW_AT_lower_bound, -1);
360   } else {
361         lower_bound = MC_dwarf_default_lower_bound(dwarf_srclang(unit));
362   }
363   return upper_bound - lower_bound + 1;
364 }
365
366 static uint64_t MC_dwarf_array_element_count(Dwarf_Die* die, Dwarf_Die* unit) {
367   xbt_assert(dwarf_tag(die)==DW_TAG_array_type,
368     "MC_dwarf_array_element_count called with DIE of type %s", MC_dwarf_die_tagname(die));
369
370   int result = 1;
371   Dwarf_Die child;
372   int res;
373   for (res=dwarf_child(die, &child); res==0; res=dwarf_siblingof(&child,&child)) {
374         int child_tag = dwarf_tag(&child);
375     if (child_tag==DW_TAG_subrange_type ||child_tag==DW_TAG_enumeration_type) {
376       result *= MC_dwarf_subrange_element_count(&child, unit);
377     }
378   }
379   return result;
380 }
381
382 // ***** dw_type_t
383
384 static void MC_dwarf_fill_member_location(dw_type_t type, dw_type_t member, Dwarf_Die* child) {
385   if (dwarf_hasattr(child, DW_AT_data_bit_offset)) {
386     xbt_die("Can't groke DW_AT_data_bit_offset.");
387   }
388
389   if (!dwarf_hasattr_integrate(child, DW_AT_data_member_location)) {
390     if (type->type != DW_TAG_union_type) {
391         xbt_die(
392           "Missing DW_AT_data_member_location field in DW_TAG_member %s of type <%p>%s",
393           member->name, type->id, type->name);
394     } else {
395       return;
396     }
397   }
398
399   Dwarf_Attribute attr;
400   dwarf_attr_integrate(child, DW_AT_data_member_location, &attr);
401   int form = dwarf_whatform(&attr);
402   int klass = MC_dwarf_form_get_class(form);
403   switch (klass) {
404   case MC_DW_CLASS_EXPRLOC:
405   case MC_DW_CLASS_BLOCK:
406     // Location expression:
407     {
408       Dwarf_Op* expr;
409       size_t len;
410       if (dwarf_getlocation(&attr, &expr, &len)) {
411         xbt_die(
412           "Could not read location expression DW_AT_data_member_location in DW_TAG_member %s of type <%p>%s",
413           MC_dwarf_attr_string(child, DW_AT_name),
414           type->id, type->name);
415       }
416       if (len==1 && expr[0].atom == DW_OP_plus_uconst) {
417         member->offset =  expr[0].number;
418       } else {
419         mc_dwarf_expression_init(&member->location, len, expr);
420       }
421       break;
422     }
423   case MC_DW_CLASS_CONSTANT:
424     // Offset from the base address of the object:
425     {
426       Dwarf_Word offset;
427       if (!dwarf_formudata(&attr, &offset))
428         member->offset = offset;
429       else
430         xbt_die("Cannot get %s location <%p>%s",
431           MC_dwarf_attr_string(child, DW_AT_name),
432           type->id, type->name);
433       break;
434     }
435   case MC_DW_CLASS_LOCLISTPTR:
436     // Reference to a location list:
437     // TODO
438   case MC_DW_CLASS_REFERENCE:
439     // It's supposed to be possible in DWARF2 but I couldn't find its semantic
440     // in the spec.
441   default:
442     xbt_die(
443       "Can't handle form class (%i) / form 0x%x as DW_AT_member_location",
444       klass, form);
445   }
446
447 }
448
449 static void MC_dwarf_add_members(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_type_t type) {
450   int res;
451   Dwarf_Die child;
452   xbt_assert(!type->members);
453   type->members = xbt_dynar_new(sizeof(dw_type_t), (void(*)(void*))dw_type_free);
454   for (res=dwarf_child(die, &child); res==0; res=dwarf_siblingof(&child,&child)) {
455     if (dwarf_tag(&child)==DW_TAG_member) {
456
457       // Skip declarations:
458       if (MC_dwarf_attr_flag(&child, DW_AT_declaration, false))
459         continue;
460
461       // Skip compile time constants:
462       if(dwarf_hasattr(&child, DW_AT_const_value))
463         continue;
464
465       // TODO, we should use another type (because is is not a type but a member)
466       dw_type_t member = xbt_new0(s_dw_type_t, 1);
467       member->type = -1;
468       member->id = NULL;
469
470       const char* name = MC_dwarf_attr_string(&child, DW_AT_name);
471       if(name)
472         member->name = xbt_strdup(name);
473       else
474         member->name = NULL;
475
476       member->byte_size = MC_dwarf_attr_uint(&child, DW_AT_byte_size, 0);
477       member->element_count = -1;
478       member->dw_type_id = MC_dwarf_at_type(&child);
479       member->members = NULL;
480       member->is_pointer_type = 0;
481       member->offset = 0;
482
483       if(dwarf_hasattr(&child, DW_AT_data_bit_offset)) {
484         xbt_die("Can't groke DW_AT_data_bit_offset.");
485       }
486
487       MC_dwarf_fill_member_location(type, member, &child);
488
489       if (!member->dw_type_id) {
490         xbt_die("Missing type for member %s of <%p>%s", member->name, type->id, type->name);
491       }
492
493       xbt_dynar_push(type->members, &member);
494     }
495   }
496 }
497
498 /** \brief Create a MC type object from a DIE
499  *
500  *  \param info current object info object
501  *  \param DIE (for a given type);
502  *  \param unit compilation unit of the current DIE
503  *  \return MC representation of the type
504  */
505 static dw_type_t MC_dwarf_die_to_type(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
506
507   dw_type_t type = xbt_new0(s_dw_type_t, 1);
508   type->type = -1;
509   type->id = NULL;
510   type->name = NULL;
511   type->byte_size = 0;
512   type->element_count = -1;
513   type->dw_type_id = NULL;
514   type->members = NULL;
515   type->is_pointer_type = 0;
516   type->offset = 0;
517
518   type->type = dwarf_tag(die);
519
520   // Global Offset
521   type->id = (void *) dwarf_dieoffset(die);
522
523   const char* prefix = "";
524   switch (type->type) {
525   case DW_TAG_structure_type:
526     prefix = "struct ";
527     break;
528   case DW_TAG_union_type:
529     prefix = "union ";
530     break;
531   case DW_TAG_class_type:
532     prefix = "class ";
533     break;
534   default:
535     prefix = "";
536   }
537
538   const char* name = MC_dwarf_attr_string(die, DW_AT_name);
539   if (name!=NULL) {
540     type->name = namespace ? bprintf("%s%s::%s", prefix, namespace, name) : bprintf("%s%s", prefix, name);
541   }
542
543   XBT_DEBUG("Processing type <%p>%s", type->id, type->name);
544
545   type->dw_type_id = MC_dwarf_at_type(die);
546
547   // Computation of the byte_size;
548   if (dwarf_hasattr_integrate(die, DW_AT_byte_size))
549     type->byte_size = MC_dwarf_attr_uint(die, DW_AT_byte_size, 0);
550   else if (type->type == DW_TAG_array_type || type->type==DW_TAG_structure_type || type->type==DW_TAG_class_type) {
551     Dwarf_Word size;
552     if (dwarf_aggregate_size(die, &size)==0) {
553       type->byte_size = size;
554     }
555   }
556
557   switch (type->type) {
558   case DW_TAG_array_type:
559         type->element_count = MC_dwarf_array_element_count(die, unit);
560         // TODO, handle DW_byte_stride and (not) DW_bit_stride
561         break;
562
563   case DW_TAG_pointer_type:
564   case DW_TAG_reference_type:
565   case DW_TAG_rvalue_reference_type:
566     type->is_pointer_type = 1;
567     break;
568
569   case DW_TAG_structure_type:
570   case DW_TAG_union_type:
571   case DW_TAG_class_type:
572           MC_dwarf_add_members(info, die, unit, type);
573           char* new_namespace = namespace == NULL ? xbt_strdup(type->name)
574             : bprintf("%s::%s", namespace, name);
575           MC_dwarf_handle_children(info, die, unit, frame, new_namespace);
576           free(new_namespace);
577           break;
578   }
579
580   return type;
581 }
582
583 static void MC_dwarf_handle_type_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
584   dw_type_t type = MC_dwarf_die_to_type(info, die, unit, frame, namespace);
585
586   char* key = bprintf("%" PRIx64, (uint64_t) type->id);
587   xbt_dict_set(info->types, key, type, NULL);
588
589   if(type->name && type->byte_size!=0) {
590     xbt_dict_set(info->full_types_by_name, type->name, type, NULL);
591   }
592 }
593
594 static int mc_anonymous_variable_index = 0;
595
596 static dw_variable_t MC_die_to_variable(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
597   // Skip declarations:
598   if (MC_dwarf_attr_flag(die, DW_AT_declaration, false))
599     return NULL;
600
601   // Skip compile time constants:
602   if(dwarf_hasattr(die, DW_AT_const_value))
603     return NULL;
604
605   Dwarf_Attribute attr_location;
606   if (dwarf_attr(die, DW_AT_location, &attr_location)==NULL) {
607     // No location: do not add it ?
608     return NULL;
609   }
610
611   dw_variable_t variable = xbt_new0(s_dw_variable_t, 1);
612   variable->dwarf_offset = dwarf_dieoffset(die);
613   variable->global = frame == NULL; // Can be override base on DW_AT_location
614
615   const char* name = MC_dwarf_attr_string(die, DW_AT_name);
616   variable->name = xbt_strdup(name);
617
618   variable->type_origin = MC_dwarf_at_type(die);
619
620   int form = dwarf_whatform(&attr_location);
621   int klass = form == DW_FORM_sec_offset ? MC_DW_CLASS_CONSTANT : MC_dwarf_form_get_class(form);
622   switch (klass) {
623   case MC_DW_CLASS_EXPRLOC:
624   case MC_DW_CLASS_BLOCK:
625     // Location expression:
626     {
627       Dwarf_Op* expr;
628       size_t len;
629       if (dwarf_getlocation(&attr_location, &expr, &len)) {
630         xbt_die(
631           "Could not read location expression in DW_AT_location of variable <%p>%s",
632           (void*) variable->dwarf_offset, variable->name);
633       }
634
635       if (len==1 && expr[0].atom == DW_OP_addr) {
636         variable->global = 1;
637         Dwarf_Off offset = expr[0].number;
638         // TODO, Why is this different base on the object?
639         Dwarf_Off base = strcmp(info->file_name, xbt_binary_name) !=0 ? (Dwarf_Off) info->start_exec : 0;
640         variable->address = (void*) (base + offset);
641       } else {
642         mc_dwarf_location_list_init_from_expression(&variable->locations, len, expr);
643       }
644
645       break;
646     }
647   case MC_DW_CLASS_LOCLISTPTR:
648   case MC_DW_CLASS_CONSTANT:
649     // Reference to location list:
650     mc_dwarf_location_list_init(&variable->locations, info, die, &attr_location);
651     break;
652   default:
653     xbt_die("Unexpected form 0x%x (%i), class 0x%x (%i) list for location in <%p>%s",
654       form, form, klass, klass, (void*) variable->dwarf_offset, variable->name);
655   }
656
657   // Handle start_scope:
658   if (dwarf_hasattr(die, DW_AT_start_scope)) {
659     Dwarf_Attribute attr;
660     dwarf_attr(die, DW_AT_start_scope, &attr);
661     int form  = dwarf_whatform(&attr);
662     int klass = MC_dwarf_form_get_class(form);
663     switch(klass) {
664     case MC_DW_CLASS_CONSTANT:
665     {
666       Dwarf_Word value;
667       variable->start_scope = dwarf_formudata(&attr, &value) == 0 ? (size_t) value : 0;
668       break;
669     }
670     default:
671       xbt_die("Unhandled form 0x%x, class 0x%X for DW_AT_start_scope of variable %s",
672         form, klass, name==NULL ? "?" : name);
673     }
674   }
675
676   if(namespace && variable->global) {
677     char* old_name = variable->name;
678     variable->name = bprintf("%s::%s", namespace, old_name);
679     free(old_name);
680   }
681
682   // The current code needs a variable name,
683   // generate a fake one:
684   if(!variable->name) {
685     variable->name = bprintf("@anonymous#%i", mc_anonymous_variable_index++);
686   }
687
688   return variable;
689 }
690
691 static void MC_dwarf_handle_variable_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
692   dw_variable_t variable = MC_die_to_variable(info, die, unit, frame, namespace);
693   if(variable==NULL)
694       return;
695   MC_dwarf_register_variable(info, frame, variable);
696 }
697
698 static void MC_dwarf_handle_subprogram_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t parent_frame, const char* namespace) {
699
700   // (Template) Subprogram declaration:
701   if (MC_dwarf_attr_flag(die, DW_AT_declaration, false))
702     return;
703
704   // Abstract inline instance (DW_AT_inline != DW_INL_not_inlined):
705   if (dwarf_func_inline(die))
706     return;
707
708   // This is probably not a concrete instance:
709   // DWARF2/3 and DWARF4 do not agree on the meaning of DW_INL_not_inlined.
710   // For DWARF2/3, the subprogram is abstract.
711   // For DARF4, the subprogram is not abstract.
712   if(!dwarf_hasattr_integrate(die, DW_AT_low_pc))
713     return;
714
715   dw_frame_t frame = xbt_new0(s_dw_frame_t, 1);
716
717   frame->start = dwarf_dieoffset(die);
718
719   const char* name = MC_dwarf_attr_string(die, DW_AT_name);
720   frame->name = namespace ? bprintf("%s::%s", namespace, name) : xbt_strdup(name);
721
722   // This is the base address for DWARF addresses.
723   // Relocated addresses are offset from this base address.
724   // See DWARF4 spec 7.5
725   void* base = info->flags & MC_OBJECT_INFO_EXECUTABLE ? 0 : MC_object_base_address(info);
726
727   // Variables are filled in the (recursive) call of MC_dwarf_handle_children:
728   frame->variables = xbt_dynar_new(sizeof(dw_variable_t), dw_variable_free_voidp);
729   frame->high_pc = ((char*) base) + MC_dwarf_attr_addr(die, DW_AT_high_pc);
730   frame->low_pc = ((char*) base) + MC_dwarf_attr_addr(die, DW_AT_low_pc);
731
732   if(frame->high_pc==0 || frame->low_pc==0)
733     xbt_die("Could not resolve highpc/lowpc");
734
735   Dwarf_Attribute attr_frame_base;
736   if (!dwarf_attr_integrate(die, DW_AT_frame_base, &attr_frame_base))
737     xbt_die("Coult not find DW_AT_frame_base for subprogram %s 0x%lx", frame->name, frame->start);
738   mc_dwarf_location_list_init(&frame->frame_base, info, die, &attr_frame_base);
739
740   frame->end = -1; // This one is now useless:
741
742   // Register it:
743   xbt_dynar_push(info->subprograms, &frame);
744
745   // Handle children:
746   MC_dwarf_handle_children(info, die, unit, frame, namespace);
747 }
748
749 static void mc_dwarf_handle_namespace_die(
750     mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
751   const char* name = MC_dwarf_attr_string(die, DW_AT_name);
752   if(frame)
753     xbt_die("Unexpected namespace in a subprogram");
754   char* new_namespace = namespace == NULL ? xbt_strdup(name)
755     : bprintf("%s::%s", namespace, name);
756   MC_dwarf_handle_children(info, die, unit, frame, new_namespace);
757 }
758
759 static void MC_dwarf_handle_children(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
760   Dwarf_Die child;
761   int res;
762   for (res=dwarf_child(die, &child); res==0; res=dwarf_siblingof(&child,&child)) {
763     MC_dwarf_handle_die(info, &child, unit, frame, namespace);
764   }
765 }
766
767 static void MC_dwarf_handle_die(mc_object_info_t info, Dwarf_Die* die, Dwarf_Die* unit, dw_frame_t frame, const char* namespace) {
768   int tag = dwarf_tag(die);
769   mc_tag_class klass = MC_dwarf_tag_classify(tag);
770   switch (klass) {
771
772     // Type:
773     case mc_tag_type:
774       MC_dwarf_handle_type_die(info, die, unit, frame, namespace);
775       break;
776
777     // Program:
778     case mc_tag_subprogram:
779       MC_dwarf_handle_subprogram_die(info, die, unit, frame, namespace);
780       return;
781
782     // Variable:
783     case mc_tag_variable:
784       MC_dwarf_handle_variable_die(info, die, unit, frame, namespace);
785       break;
786
787     // Scope:
788     case mc_tag_scope:
789       // TODO
790       break;
791
792     case mc_tag_namespace:
793       mc_dwarf_handle_namespace_die(info, die, unit, frame, namespace);
794       break;
795
796     default:
797       break;
798
799   }
800 }
801
802 void MC_dwarf_get_variables(mc_object_info_t info) {
803   int fd = open(info->file_name, O_RDONLY);
804   if (fd<0) {
805     xbt_die("Could not open file %s", info->file_name);
806   }
807   Dwarf *dwarf = dwarf_begin(fd, DWARF_C_READ);
808   if (dwarf==NULL) {
809     xbt_die("Your program must be compiled with -g");
810   }
811
812   Dwarf_Off offset = 0;
813   Dwarf_Off next_offset = 0;
814   size_t length;
815   while (dwarf_nextcu (dwarf, offset, &next_offset, &length, NULL, NULL, NULL) == 0) {
816     Dwarf_Die unit_die;
817
818     if(dwarf_offdie(dwarf, offset+length, &unit_die)!=NULL) {
819       Dwarf_Die child;
820       int res;
821       for (res=dwarf_child(&unit_die, &child); res==0; res=dwarf_siblingof(&child,&child)) {
822         MC_dwarf_handle_die(info, &child, &unit_die, NULL, NULL);
823       }
824     }
825     offset = next_offset;
826   }
827
828   dwarf_end(dwarf);
829   close(fd);
830 }