X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eee53ac79bc015ef6ca6ee17ab02e3b96d13ede5..c38fbb629ac95a6ad9cdc93392a263a856bfb323:/src/mc/mc_location.h diff --git a/src/mc/mc_location.h b/src/mc/mc_location.h index 289cb739b9..1f82a16d34 100644 --- a/src/mc/mc_location.h +++ b/src/mc/mc_location.h @@ -23,15 +23,8 @@ namespace simgrid { namespace mc { -typedef struct -{ - uint8_t atom; - std::uint64_t number; - std::uint64_t number2; - std::uint64_t offset; -} DwarfInstruction; +typedef std::vector DwarfExpression; -typedef std::vector DwarfExpression; /** \brief A DWARF expression with optional validity contraints */ class LocationListEntry { @@ -108,6 +101,10 @@ void mc_dwarf_resolve_locations( void* frame_pointer_address, simgrid::mc::AddressSpace* address_space, int process_index); +XBT_PRIVATE void mc_dwarf_location_list_init( + simgrid::mc::LocationList*, simgrid::mc::ObjectInformation* info, Dwarf_Die* die, + Dwarf_Attribute* attr); + #define MC_EXPRESSION_STACK_SIZE 64 #define MC_EXPRESSION_OK 0 @@ -129,9 +126,8 @@ typedef struct s_mc_expression_state { int process_index; } s_mc_expression_state_t, *mc_expression_state_t; -int mc_dwarf_execute_expression( - size_t n, const simgrid::mc::DwarfInstruction* ops, mc_expression_state_t state); - +XBT_PUBLIC(int) mc_dwarf_execute_expression( + size_t n, const Dwarf_Op* ops, mc_expression_state_t state); void* mc_find_frame_base( simgrid::mc::Frame* frame, simgrid::mc::ObjectInformation* object_info, unw_cursor_t* unw_cursor);