X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40334ce6fe520b2fa7d1e240716e4f34a5fdc74e..440ced834dc98975c18cf7130ae1d6d9018438db:/src/mc/mc_object_info.cpp diff --git a/src/mc/mc_object_info.cpp b/src/mc/mc_object_info.cpp index 95f9e2a952..7fc980821e 100644 --- a/src/mc/mc_object_info.cpp +++ b/src/mc/mc_object_info.cpp @@ -11,11 +11,51 @@ #include "mc_object_info.h" #include "mc_private.h" -extern "C" { +namespace simgrid { +namespace mc { -dw_frame_t MC_file_object_info_find_function(mc_object_info_t info, const void *ip) +// Type + +Type::Type() +{ + this->type = 0; + this->id = 0; + this->byte_size = 0; + this->element_count = 0; + this->is_pointer_type = 0; + this->subtype = nullptr; + this->full_type = nullptr; +} + +// Type + +Variable::Variable() { - xbt_dynar_t dynar = info->functions_index; + this->dwarf_offset = 0; + this->global = 0; + this->type = nullptr; + this->address = nullptr; + this->start_scope = 0; + this->object_info = nullptr; +} + +// Frame + +Frame::Frame() +{ + this->tag = 0; + this->low_pc = nullptr; + this->high_pc = nullptr; + this->id = 0; + this->abstract_origin_id = 0; + this->object_info = nullptr; +} + +// ObjectInformations + +mc_frame_t ObjectInformation::find_function(const void *ip) const +{ + xbt_dynar_t dynar = this->functions_index; mc_function_index_item_t base = (mc_function_index_item_t) xbt_dynar_get_ptr(dynar, 0); int i = 0; @@ -30,19 +70,16 @@ dw_frame_t MC_file_object_info_find_function(mc_object_info_t info, const void * return base[k].function; } } - return NULL; + return nullptr; } -dw_variable_t MC_file_object_info_find_variable_by_name(mc_object_info_t info, const char* name) +simgrid::mc::Variable* ObjectInformation::find_variable(const char* name) const { - unsigned int cursor = 0; - dw_variable_t variable; - xbt_dynar_foreach(info->global_variables, cursor, variable){ - if(!strcmp(name, variable->name)) - return variable; - } - - return NULL; + for (simgrid::mc::Variable& variable : this->global_variables) + if(variable.name == name) + return &variable; + return nullptr; } } +} \ No newline at end of file