Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: finish emptying an old C file
[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 RegionSnapshot::RegionSnapshot(RegionType region_type, void* start_addr, size_t size)
26     : region_type_(region_type), start_addr_(start_addr), size_(size)
27 {
28   simgrid::mc::RemoteClient* process = &mc_model_checker->process();
29
30   xbt_assert((((uintptr_t)start_addr) & (xbt_pagesize - 1)) == 0, "Start address not at the beginning of a page");
31
32   chunks_ = ChunkedData(mc_model_checker->page_store(), *process, RemotePtr<void>(start_addr), mmu::chunk_count(size));
33 }
34
35 /** @brief Restore a region from a snapshot
36  *
37  *  @param region     Target region
38  */
39 void RegionSnapshot::restore()
40 {
41   xbt_assert(((start().address()) & (xbt_pagesize - 1)) == 0, "Not at the beginning of a page");
42   xbt_assert(simgrid::mc::mmu::chunk_count(size()) == get_chunks().page_count());
43
44   for (size_t i = 0; i != get_chunks().page_count(); ++i) {
45     void* target_page       = (void*)simgrid::mc::mmu::join(i, (std::uintptr_t)(void*)start().address());
46     const void* source_page = get_chunks().page(i);
47     mc_model_checker->process().write_bytes(source_page, xbt_pagesize, remote(target_page));
48       }
49 }
50
51 } // namespace mc
52 } // namespace simgrid