X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7bc01999f5003e51cc1d12f93647999a1a143f23..351f33cd435ca4f01717f0b8a4fe7a77ba16edbf:/src/mc/ObjectInformation.hpp diff --git a/src/mc/ObjectInformation.hpp b/src/mc/ObjectInformation.hpp index e65d9d35fb..e813af7333 100644 --- a/src/mc/ObjectInformation.hpp +++ b/src/mc/ObjectInformation.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. +/* Copyright (c) 2007-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,14 +12,12 @@ #include #include -#include - -#include "src/xbt/memory_map.hpp" -#include "src/mc/mc_forward.hpp" -#include "src/mc/Type.hpp" #include "src/mc/Frame.hpp" +#include "src/mc/Type.hpp" +#include "src/mc/mc_forward.hpp" +#include "src/xbt/memory_map.hpp" -#include "src/smpi/private.h" +#include "src/smpi/include/private.hpp" namespace simgrid { namespace mc { @@ -52,7 +50,7 @@ struct FunctionIndexEntry { */ class ObjectInformation { public: - ObjectInformation(); + ObjectInformation() = default; // Not copyable: ObjectInformation(ObjectInformation const&) = delete; @@ -83,7 +81,7 @@ public: * * We need to efficiently find the function from any given instruction * address inside its range. This index is sorted by low_pc - * + * * The entries are sorted by low_pc and a binary search can be used to look * them up. In order to have a better cache locality, we only keep the * information we need for the lookup in this vector. We could probably @@ -92,8 +90,7 @@ public: */ std::vector functions_index; - // TODO, remove the mutable (to remove it we'll have to add a lot of const everywhere) - mutable std::vector global_variables; + std::vector global_variables; /** Types indexed by DWARF ID */ std::unordered_map types; @@ -144,7 +141,7 @@ public: * @param name scopes name of the global variable (`myproject::Foo::count`) * @return corresponding variable (if any) or nullptr */ - simgrid::mc::Variable* find_variable(const char* name) const; + const simgrid::mc::Variable* find_variable(const char* name) const; /** Remove a global variable (in order to ignore it) * @@ -165,9 +162,7 @@ XBT_PRIVATE std::shared_ptr createObjectInformation( std::vector const& maps, const char* name); /** Augment the current module with informations about the other ones */ -XBT_PRIVATE void postProcessObjectInformation( - simgrid::mc::Process* process, simgrid::mc::ObjectInformation* info); - +XBT_PRIVATE void postProcessObjectInformation(simgrid::mc::RemoteClient* process, simgrid::mc::ObjectInformation* info); } }