X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..7c71e60dc8020a0a89f5ca36bd6487ed30a749d7:/src/mc/sosp/Snapshot.hpp diff --git a/src/mc/sosp/Snapshot.hpp b/src/mc/sosp/Snapshot.hpp index 5b8bb660ad..008334bffc 100644 --- a/src/mc/sosp/Snapshot.hpp +++ b/src/mc/sosp/Snapshot.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2022. 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. */ @@ -8,7 +8,7 @@ #include "src/mc/ModelChecker.hpp" #include "src/mc/inspect/mc_unw.hpp" -#include "src/mc/remote/RemoteClient.hpp" +#include "src/mc/remote/RemoteProcess.hpp" #include "src/mc/sosp/Region.hpp" // ***** MC Snapshot @@ -34,7 +34,7 @@ struct s_mc_stack_frame_t { std::string frame_name; unw_cursor_t unw_cursor; }; -typedef s_mc_stack_frame_t* mc_stack_frame_t; +using mc_stack_frame_t = s_mc_stack_frame_t*; struct s_local_variable_t { simgrid::mc::Frame* subprogram; @@ -43,30 +43,28 @@ struct s_local_variable_t { simgrid::mc::Type* type; void* address; }; -typedef s_local_variable_t* local_variable_t; -typedef const s_local_variable_t* const_local_variable_t; +using local_variable_t = s_local_variable_t*; +using const_local_variable_t = const s_local_variable_t*; struct XBT_PRIVATE s_mc_snapshot_stack_t { std::vector local_variables; simgrid::mc::UnwindContext context; std::vector stack_frames; }; -typedef s_mc_snapshot_stack_t* mc_snapshot_stack_t; -typedef const s_mc_snapshot_stack_t* const_mc_snapshot_stack_t; +using mc_snapshot_stack_t = s_mc_snapshot_stack_t*; +using const_mc_snapshot_stack_t = const s_mc_snapshot_stack_t*; -namespace simgrid { -namespace mc { +namespace simgrid::mc { class XBT_PRIVATE Snapshot final : public AddressSpace { public: /* Initialization */ - Snapshot(int num_state, RemoteClient* process = &mc_model_checker->process()); - ~Snapshot() = default; + Snapshot(long num_state, RemoteProcess* process = &mc_model_checker->get_remote_process()); /* Regular use */ bool on_heap(const void* address) const { - const s_xbt_mheap_t* heap = process()->get_heap(); + const s_xbt_mheap_t* heap = get_remote_process()->get_heap(); return address >= heap->heapbase && address < heap->breakval; } @@ -74,13 +72,15 @@ public: ReadOptions options = ReadOptions::none()) const override; Region* get_region(const void* addr) const; Region* get_region(const void* addr, Region* hinted_region) const; - void restore(RemoteClient* process); + void restore(RemoteProcess* process) const; + + bool operator==(const Snapshot& other); + bool operator!=(const Snapshot& other) { return not(*this == other); } // To be private - int num_state_; + long num_state_; std::size_t heap_bytes_used_ = 0; std::vector> snapshot_regions_; - std::set enabled_processes_; std::vector stack_sizes_; std::vector stacks_; std::vector to_ignore_; @@ -89,10 +89,11 @@ public: private: void add_region(RegionType type, ObjectInformation* object_info, void* start_addr, std::size_t size); - void snapshot_regions(simgrid::mc::RemoteClient* process); - void snapshot_stacks(simgrid::mc::RemoteClient* process); + void snapshot_regions(RemoteProcess* process); + void snapshot_stacks(RemoteProcess* process); + void handle_ignore(); + void ignore_restore() const; }; -} // namespace mc -} // namespace simgrid +} // namespace simgrid::mc #endif