Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move some declarations in mc_object_info.h
[simgrid.git] / src / mc / mc_object_info.h
1 /* Copyright (c) 2007-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 /** file
8  *  Debug information for the MC.
9  */
10
11 #ifndef SIMGRID_MC_OBJECT_INFO_H
12 #define SIMGRID_MC_OBJECT_INFO_H
13
14 #include <stdint.h>
15
16 #include <string>
17
18 #include <simgrid_config.h>
19 #include <xbt/dict.h>
20 #include <xbt/dynar.h>
21
22 #include <elfutils/libdw.h>
23
24 #include "mc_forward.h"
25 #include "mc_location.h"
26 #include "mc_process.h"
27 #include "../smpi/private.h"
28
29 // ***** Type
30
31 typedef int e_mc_type_type;
32
33 namespace simgrid {
34 namespace mc {
35
36 /** Represents a type in the program
37  *
38  *  It is currently used to represent members of structs and unions as well.
39  */
40 class Type {
41 public:
42   Type();
43   Type(Type const& type) = default;
44   Type& operator=(Type const&) = default;
45   Type(Type&& type) = default;
46   Type& operator=(Type&&) = default;
47
48   e_mc_type_type type;
49   Dwarf_Off id; /* Offset in the section (in hexadecimal form) */
50   std::string name; /* Name of the type */
51   int byte_size; /* Size in bytes */
52   int element_count; /* Number of elements for array type */
53   std::string type_id; /* DW_AT_type id */
54   std::vector<Type> members; /* if DW_TAG_structure_type, DW_TAG_class_type, DW_TAG_union_type*/
55   int is_pointer_type;
56
57   // Location (for members) is either of:
58   simgrid::mc::DwarfExpression location_expression;
59
60   mc_type_t subtype; // DW_AT_type
61   mc_type_t full_type; // The same (but more complete) type
62
63   bool has_offset_location() const
64   {
65     return location_expression.size() == 1 &&
66       location_expression[0].atom == DW_OP_plus_uconst;
67   }
68
69   // TODO, check if this shortcut is really necessary
70   int offset() const
71   {
72     xbt_assert(this->has_offset_location());
73     return this->location_expression[0].number;
74   }
75
76   void offset(int new_offset)
77   {
78     Dwarf_Op op;
79     op.atom = DW_OP_plus_uconst;
80     op.number = new_offset;
81     this->location_expression = { op };
82   }
83 };
84
85 }
86 }
87
88 // ***** Object info
89
90 /** Bit field of options */
91 typedef int mc_object_info_flags;
92 #define MC_OBJECT_INFO_NONE 0
93 #define MC_OBJECT_INFO_EXECUTABLE 1
94
95 namespace simgrid {
96 namespace mc {
97
98 class ObjectInformation {
99 public:
100   ObjectInformation();
101   ~ObjectInformation();
102   ObjectInformation(ObjectInformation const&) = delete;
103   ObjectInformation& operator=(ObjectInformation const&) = delete;
104
105   mc_object_info_flags flags;
106   char* file_name;
107   const void* start;
108   const void *end;
109   char *start_exec;
110   char *end_exec; // Executable segment
111   char *start_rw;
112   char *end_rw; // Read-write segment
113   char *start_ro;
114   char *end_ro; // read-only segment
115   xbt_dict_t subprograms; // xbt_dict_t<origin as hexadecimal string, mc_frame_t>
116   // TODO, remove the mutable (to remove it we'll have to add a lot of const everywhere)
117   mutable std::vector<simgrid::mc::Variable> global_variables;
118   xbt_dict_t types; // xbt_dict_t<origin as hexadecimal string, mc_type_t>
119   xbt_dict_t full_types_by_name; // xbt_dict_t<name, mc_type_t> (full defined type only)
120
121   // Here we sort the minimal information for an efficient (and cache-efficient)
122   // lookup of a function given an instruction pointer.
123   // The entries are sorted by low_pc and a binary search can be used to look them up.
124   xbt_dynar_t functions_index;
125
126   bool executable() const
127   {
128     return this->flags & MC_OBJECT_INFO_EXECUTABLE;
129   }
130
131   bool privatized() const
132   {
133     return this->executable() && smpi_privatize_global_variables;
134   }
135
136   void* base_address() const;
137
138   mc_frame_t find_function(const void *ip) const;
139   // TODO, should be simgrid::mc::Variable*
140   simgrid::mc::Variable* find_variable(const char* name) const;
141
142 };
143
144 class Variable {
145 public:
146   Variable();
147
148   Dwarf_Off dwarf_offset; /* Global offset of the field. */
149   int global;
150   std::string name;
151   std::string type_id;
152   mc_type_t type;
153
154   // Use either of:
155   simgrid::mc::LocationList location_list;
156   void* address;
157
158   size_t start_scope;
159   mc_object_info_t object_info;
160
161 };
162
163 class Frame {
164 public:
165   Frame();
166
167   int tag;
168   std::string name;
169   void *low_pc;
170   void *high_pc;
171   simgrid::mc::LocationList frame_base;
172   std::vector<Variable> variables;
173   unsigned long int id; /* DWARF offset of the subprogram */
174   std::vector<Frame> scopes;
175   Dwarf_Off abstract_origin_id;
176   mc_object_info_t object_info;
177 };
178
179 }
180 }
181
182
183 XBT_INTERNAL std::shared_ptr<s_mc_object_info_t> MC_find_object_info(
184   std::vector<simgrid::mc::VmMap> const& maps, const char* name, int executable);
185 XBT_INTERNAL void MC_post_process_object_info(mc_process_t process, mc_object_info_t info);
186
187 XBT_INTERNAL void MC_dwarf_get_variables(mc_object_info_t info);
188 XBT_INTERNAL void MC_dwarf_get_variables_libdw(mc_object_info_t info);
189 XBT_INTERNAL const char* MC_dwarf_attrname(int attr);
190 XBT_INTERNAL const char* MC_dwarf_tagname(int tag);
191
192 XBT_INTERNAL void* mc_member_resolve(
193   const void* base, mc_type_t type, mc_type_t member,
194   mc_address_space_t snapshot, int process_index);
195
196
197 struct s_mc_function_index_item {
198   void* low_pc, *high_pc;
199   mc_frame_t function;
200 };
201
202 #endif