Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
f227fe72ee15389a6d411db3c181b4e83ebeedbd
[simgrid.git] / src / mc / sosp / Snapshot.hpp
1 /* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_SNAPSHOT_HPP
7 #define SIMGRID_MC_SNAPSHOT_HPP
8
9 #include "src/mc/ModelChecker.hpp"
10 #include "src/mc/inspect/mc_unw.hpp"
11 #include "src/mc/remote/RemoteClient.hpp"
12 #include "src/mc/sosp/Region.hpp"
13
14 // ***** MC Snapshot
15
16 /** Ignored data
17  *
18  *  Some parts of the snapshot are ignored by zeroing them out: the real
19  *  values is stored here.
20  * */
21 struct s_mc_snapshot_ignored_data_t {
22   void* start;
23   std::vector<char> data;
24 };
25
26 /** Information about a given stack frame */
27 struct s_mc_stack_frame_t {
28   /** Instruction pointer */
29   unw_word_t ip;
30   /** Stack pointer */
31   unw_word_t sp;
32   unw_word_t frame_base;
33   simgrid::mc::Frame* frame;
34   std::string frame_name;
35   unw_cursor_t unw_cursor;
36 };
37 typedef s_mc_stack_frame_t* mc_stack_frame_t;
38
39 struct s_local_variable_t {
40   simgrid::mc::Frame* subprogram;
41   unsigned long ip;
42   std::string name;
43   simgrid::mc::Type* type;
44   void* address;
45 };
46 typedef s_local_variable_t* local_variable_t;
47 typedef const s_local_variable_t* const_local_variable_t;
48
49 struct XBT_PRIVATE s_mc_snapshot_stack_t {
50   std::vector<s_local_variable_t> local_variables;
51   simgrid::mc::UnwindContext context;
52   std::vector<s_mc_stack_frame_t> stack_frames;
53 };
54 typedef s_mc_snapshot_stack_t* mc_snapshot_stack_t;
55 typedef const s_mc_snapshot_stack_t* const_mc_snapshot_stack_t;
56
57 namespace simgrid {
58 namespace mc {
59
60 class XBT_PRIVATE Snapshot final : public AddressSpace {
61 public:
62   /* Initialization */
63   Snapshot(int num_state, RemoteClient* process = &mc_model_checker->process());
64   ~Snapshot() = default;
65
66   /* Regular use */
67   bool on_heap(const void* address) const
68   {
69     const xbt_mheap_t heap = process()->get_heap();
70     return address >= heap->heapbase && address < heap->breakval;
71   }
72
73   void* read_bytes(void* buffer, std::size_t size, RemotePtr<void> address,
74                    ReadOptions options = ReadOptions::none()) const override;
75   Region* get_region(const void* addr) const;
76   Region* get_region(const void* addr, Region* hinted_region) const;
77   void restore(RemoteClient* process);
78
79   // To be private
80   int num_state_;
81   std::size_t heap_bytes_used_;
82   std::vector<std::unique_ptr<Region>> snapshot_regions_;
83   std::set<pid_t> enabled_processes_;
84   std::vector<std::size_t> stack_sizes_;
85   std::vector<s_mc_snapshot_stack_t> stacks_;
86   std::vector<simgrid::mc::IgnoredHeapRegion> to_ignore_;
87   std::uint64_t hash_ = 0;
88   std::vector<s_mc_snapshot_ignored_data_t> ignored_data_;
89
90 private:
91   void add_region(RegionType type, ObjectInformation* object_info, void* start_addr, std::size_t size);
92   void snapshot_regions(simgrid::mc::RemoteClient* process);
93   void snapshot_stacks(simgrid::mc::RemoteClient* process);
94 };
95 } // namespace mc
96 } // namespace simgrid
97
98 #endif