X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b487d5a9259b88670b8cd97e9c16e4b000c11008..e3f5ca3fd3726e67046afbd03e48e9cd7294b835:/src/mc/mc_object_info.h diff --git a/src/mc/mc_object_info.h b/src/mc/mc_object_info.h index 2e0b68f43e..ea7775336a 100644 --- a/src/mc/mc_object_info.h +++ b/src/mc/mc_object_info.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2014. The SimGrid Team. + /* Copyright (c) 2007-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -19,6 +19,7 @@ #include "mc_forward.h" #include "mc_location.h" +#include "mc_process.h" SG_BEGIN_DECL(); @@ -72,6 +73,12 @@ struct s_mc_object_info { xbt_dynar_t functions_index; }; +static inline __attribute__ ((always_inline)) +bool MC_object_info_executable(mc_object_info_t info) +{ + return info->flags & MC_OBJECT_INFO_EXECUTABLE; +} + /** Find the DWARF offset for this ELF object * * An offset is applied to address found in DWARF: @@ -89,10 +96,12 @@ struct s_mc_object_info { void* MC_object_base_address(mc_object_info_t info); mc_object_info_t MC_new_object_info(void); -mc_object_info_t MC_find_object_info(memory_map_t maps, char* name, int executable); +mc_object_info_t MC_find_object_info(memory_map_t maps, const char* name, int executable); void MC_free_object_info(mc_object_info_t* p); -void MC_post_process_object_info(mc_object_info_t info); +dw_frame_t MC_file_object_info_find_function(mc_object_info_t info, void *ip); + +void MC_post_process_object_info(mc_process_t process, mc_object_info_t info); void MC_dwarf_get_variables(mc_object_info_t info); void MC_dwarf_get_variables_libdw(mc_object_info_t info); @@ -102,11 +111,6 @@ const char* MC_dwarf_tagname(int tag); // Not used: char* get_type_description(mc_object_info_t info, char *type_name); -extern mc_object_info_t mc_libsimgrid_info; -extern mc_object_info_t mc_binary_info; -extern mc_object_info_t mc_object_infos[2]; -extern size_t mc_object_infos_size; - void* mc_member_resolve(const void* base, dw_type_t type, dw_type_t member, mc_snapshot_t snapshot, int process_index); struct s_dw_variable{