X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4b6ea22affbf2fb45a2e80779c789047121ceff6..1d2b3b745feba3c5069fe4fdab54a1832fde11e6:/src/mc/mc_object_info.h diff --git a/src/mc/mc_object_info.h b/src/mc/mc_object_info.h index e7a5a1bce1..019e5e7eab 100644 --- a/src/mc/mc_object_info.h +++ b/src/mc/mc_object_info.h @@ -11,9 +11,11 @@ #ifndef SIMGRID_MC_OBJECT_INFO_H #define SIMGRID_MC_OBJECT_INFO_H -#include +#include #include +#include +#include #include #include @@ -50,7 +52,7 @@ public: std::string name; /* Name of the type */ int byte_size; /* Size in bytes */ int element_count; /* Number of elements for array type */ - std::string type_id; /* DW_AT_type id */ + std::uint64_t type_id; /* DW_AT_type id */ std::vector members; /* if DW_TAG_structure_type, DW_TAG_class_type, DW_TAG_union_type*/ int is_pointer_type; @@ -95,6 +97,41 @@ typedef int mc_object_info_flags; namespace simgrid { namespace mc { +class Variable { +public: + Variable(); + + Dwarf_Off dwarf_offset; /* Global offset of the field. */ + int global; + std::string name; + std::uint64_t type_id; + mc_type_t type; + + // Use either of: + simgrid::mc::LocationList location_list; + void* address; + + size_t start_scope; + mc_object_info_t object_info; + +}; + +class Frame { +public: + Frame(); + + int tag; + std::string name; + void *low_pc; + void *high_pc; + simgrid::mc::LocationList frame_base; + std::vector variables; + unsigned long int id; /* DWARF offset of the subprogram */ + std::vector scopes; + Dwarf_Off abstract_origin_id; + mc_object_info_t object_info; +}; + class ObjectInformation { public: ObjectInformation(); @@ -112,10 +149,11 @@ public: char *end_rw; // Read-write segment char *start_ro; char *end_ro; // read-only segment - xbt_dict_t subprograms; // xbt_dict_t - xbt_dynar_t global_variables; // xbt_dynar_t - xbt_dict_t types; // xbt_dict_t - xbt_dict_t full_types_by_name; // xbt_dict_t (full defined type only) + std::unordered_map subprograms; + // TODO, remove the mutable (to remove it we'll have to add a lot of const everywhere) + mutable std::vector global_variables; + std::unordered_map types; + std::unordered_map full_types_by_name; // Here we sort the minimal information for an efficient (and cache-efficient) // lookup of a function given an instruction pointer. @@ -135,13 +173,15 @@ public: void* base_address() const; mc_frame_t find_function(const void *ip) const; - mc_variable_t find_variable(const char* name) const; + // TODO, should be simgrid::mc::Variable* + simgrid::mc::Variable* find_variable(const char* name) const; }; } } + XBT_INTERNAL std::shared_ptr MC_find_object_info( std::vector const& maps, const char* name, int executable); XBT_INTERNAL void MC_post_process_object_info(mc_process_t process, mc_object_info_t info); @@ -151,54 +191,9 @@ XBT_INTERNAL void MC_dwarf_get_variables_libdw(mc_object_info_t info); XBT_INTERNAL const char* MC_dwarf_attrname(int attr); XBT_INTERNAL const char* MC_dwarf_tagname(int tag); -XBT_INTERNAL void* mc_member_resolve(const void* base, mc_type_t type, mc_type_t member, mc_address_space_t snapshot, int process_index); - -namespace simgrid { -namespace mc { - -class Variable { -public: - Variable(); - Variable(Variable const&) = delete; - Variable& operator=(Variable const&) = delete; - - Dwarf_Off dwarf_offset; /* Global offset of the field. */ - int global; - std::string name; - std::string type_id; - mc_type_t type; - - // Use either of: - simgrid::mc::LocationList location_list; - void* address; - - size_t start_scope; - mc_object_info_t object_info; - -}; - -class Frame { -public: - Frame(); - ~Frame(); - Frame(Frame const&) = delete; - Frame& operator=(Frame&) = delete; - - int tag; - std::string name; - void *low_pc; - void *high_pc; - simgrid::mc::LocationList frame_base; - xbt_dynar_t /* */ variables; /* Cannot use dict, there may be several variables with the same name (in different lexical blocks)*/ - unsigned long int id; /* DWARF offset of the subprogram */ - xbt_dynar_t /* */ scopes; - Dwarf_Off abstract_origin_id; - mc_object_info_t object_info; -}; - -} -} - +XBT_INTERNAL void* mc_member_resolve( + const void* base, mc_type_t type, mc_type_t member, + mc_address_space_t snapshot, int process_index); struct s_mc_function_index_item {