Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: remove support for flat storage of regions
[simgrid.git] / src / mc / sosp / RegionSnapshot.cpp
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 #include <cstdlib>
7
8 #include <sys/mman.h>
9 #ifdef __FreeBSD__
10 #define MAP_POPULATE MAP_PREFAULT_READ
11 #endif
12
13 #include "src/mc/ModelChecker.hpp"
14 #include "src/mc/mc_config.hpp"
15 #include "src/mc/mc_forward.hpp"
16
17 #include "src/mc/mc_smx.hpp"
18 #include "src/mc/sosp/RegionSnapshot.hpp"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_RegionSnaphot, mc, "Logging specific to region snapshots");
21
22 namespace simgrid {
23 namespace mc {
24
25 /** @brief Take a snapshot of a given region
26  *
27  * @param type
28  * @param start_addr   Address of the region in the simulated process
29  * @param permanent_addr Permanent address of this data (for privatized variables, this is the virtual address of the
30  * privatized mapping)
31  * @param size         Size of the data*
32  */
33 RegionSnapshot* region(RegionType type, void* start_addr, void* permanent_addr, size_t size)
34 {
35     return new RegionSparse(type, start_addr, permanent_addr, size);
36 }
37
38 RegionSparse::RegionSparse(RegionType region_type, void* start_addr, void* permanent_addr, size_t size)
39     : RegionSnapshot(region_type, start_addr, permanent_addr, size)
40 {
41   simgrid::mc::RemoteClient* process = &mc_model_checker->process();
42   assert(process != nullptr);
43
44   xbt_assert((((uintptr_t)start_addr) & (xbt_pagesize - 1)) == 0, "Start address not at the beginning of a page");
45   xbt_assert((((uintptr_t)permanent_addr) & (xbt_pagesize - 1)) == 0,
46              "Permanent address not at the beginning of a page");
47
48   page_numbers_ =
49       ChunkedData(mc_model_checker->page_store(), *process, RemotePtr<void>(permanent_addr), mmu::chunk_count(size));
50 }
51
52 /** @brief Restore a region from a snapshot
53  *
54  *  @param region     Target region
55  */
56 void RegionSnapshot::restore()
57 {
58       xbt_assert(((permanent_address().address()) & (xbt_pagesize - 1)) == 0, "Not at the beginning of a page");
59       xbt_assert(simgrid::mc::mmu::chunk_count(size()) == page_data().page_count());
60
61       for (size_t i = 0; i != page_data().page_count(); ++i) {
62         void* target_page = (void*)simgrid::mc::mmu::join(i, (std::uintptr_t)(void*)permanent_address().address());
63         const void* source_page = page_data().page(i);
64         mc_model_checker->process().write_bytes(source_page, xbt_pagesize, remote(target_page));
65       }
66 }
67
68 } // namespace mc
69 } // namespace simgrid