X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..874aec87c7ce1894a9f017d2adf07ce7b8abe71d:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index 0ca7ff3940..d4d513e51d 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,22 +7,28 @@ #undef NDEBUG #endif -#include +#include -#include "mc/datatypes.h" +#include "src/mc/datatypes.h" +#include "src/mc/mc.h" #include "src/mc/mc_private.hpp" #include "src/mc/inspect/ObjectInformation.hpp" #include "src/mc/inspect/Type.hpp" #include "src/mc/inspect/Variable.hpp" -#include "src/mc/remote/RemoteSimulation.hpp" +#include "src/mc/sosp/RemoteProcessMemory.hpp" #include #include -// Test broken with multi-dimensional arrays. See https://sourceware.org/bugzilla/show_bug.cgi?id=22546 -// int test_some_array[4][5][6]; +#include +#if _ELFUTILS_VERSION < 171 +// Elder elfutils/libdw broken with multi-dimensional arrays. See https://sourceware.org/bugzilla/show_bug.cgi?id=22546 int test_some_array[4 * 5 * 6]; +#else +int test_some_array[4][5][6]; +#endif + struct some_struct { int first; int second[4][5]; @@ -32,9 +38,9 @@ some_struct test_some_struct; static simgrid::mc::Frame* find_function_by_name( simgrid::mc::ObjectInformation* info, const char* name) { - for (auto& entry : info->subprograms) - if(entry.second.name == name) - return &entry.second; + for (auto& [_, entry] : info->subprograms) + if (entry.name == name) + return &entry; return nullptr; } @@ -72,8 +78,8 @@ static void test_local_variable(simgrid::mc::ObjectInformation* info, const char xbt_assert(location.address() == address, "Bad resolution of local variable %s of %s", variable, function); } -static const simgrid::mc::Variable* test_global_variable(const simgrid::mc::RemoteSimulation& process, - const simgrid::mc::ObjectInformation* info, const char* name, +static const simgrid::mc::Variable* test_global_variable(const simgrid::mc::RemoteProcessMemory& process, + simgrid::mc::ObjectInformation* info, const char* name, void* address, long byte_size) { const simgrid::mc::Variable* variable = info->find_variable(name); @@ -90,9 +96,9 @@ static const simgrid::mc::Variable* test_global_variable(const simgrid::mc::Remo return variable; } -static simgrid::mc::Member* find_member(simgrid::mc::Type& type, const char* name) +static const simgrid::mc::Member* find_member(const simgrid::mc::Type& type, const char* name) { - for (simgrid::mc::Member& member : type.members) + for (const simgrid::mc::Member& member : type.members) if(member.name == name) return &member; return nullptr; @@ -104,20 +110,19 @@ struct s_foo { int i; }; -static void test_type_by_name(const simgrid::mc::RemoteSimulation& process, s_foo /*my_foo*/) +static void test_type_by_name(const simgrid::mc::RemoteProcessMemory& process, s_foo /*my_foo*/) { assert(process.binary_info->full_types_by_name.find("struct s_foo") != process.binary_info->full_types_by_name.end()); } int main(int argc, char** argv) { - SIMIX_global_init(&argc, argv); + simgrid::s4u::Engine::get_instance(&argc, argv); const simgrid::mc::Variable* var; - simgrid::mc::Type* type; + const simgrid::mc::Type* type; - simgrid::mc::RemoteSimulation process(getpid()); - process.init(); + simgrid::mc::RemoteProcessMemory process(getpid(), nullptr); test_global_variable(process, process.binary_info.get(), "some_local_variable", &some_local_variable, sizeof(int));