X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/51944fbb208aeba94040ac47118d748f2cb5c854..56651d7c6d0cc1c2108ca0d8de7e34462acd0514:/src/mc/sosp/Snapshot.hpp?ds=sidebyside diff --git a/src/mc/sosp/Snapshot.hpp b/src/mc/sosp/Snapshot.hpp index 45b00dc172..233297d65e 100644 --- a/src/mc/sosp/Snapshot.hpp +++ b/src/mc/sosp/Snapshot.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. 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. */ @@ -44,6 +44,7 @@ struct s_local_variable_t { void* address; }; typedef s_local_variable_t* local_variable_t; +typedef const s_local_variable_t* const_local_variable_t; struct XBT_PRIVATE s_mc_snapshot_stack_t { std::vector local_variables; @@ -51,18 +52,24 @@ struct XBT_PRIVATE s_mc_snapshot_stack_t { 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; namespace simgrid { namespace mc { class XBT_PRIVATE Snapshot final : public AddressSpace { public: + /* Initialization */ Snapshot(int num_state, RemoteClient* process = &mc_model_checker->process()); ~Snapshot() = default; - /* Initialization */ - /* Regular use */ + bool on_heap(const void* address) const + { + const s_xbt_mheap_t* heap = process()->get_heap(); + return address >= heap->heapbase && address < heap->breakval; + } + void* read_bytes(void* buffer, std::size_t size, RemotePtr address, ReadOptions options = ReadOptions::none()) const override; Region* get_region(const void* addr) const; @@ -71,7 +78,7 @@ public: // To be private int num_state_; - std::size_t heap_bytes_used_; + std::size_t heap_bytes_used_ = 0; std::vector> snapshot_regions_; std::set enabled_processes_; std::vector stack_sizes_; @@ -82,8 +89,8 @@ 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(RemoteClient* process); + void snapshot_stacks(RemoteClient* process); }; } // namespace mc } // namespace simgrid