Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Comment unused function parameters.
[simgrid.git] / src / mc / ChunkedData.cpp
1 /* Copyright (c) 2007-2018. 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 <cstddef>
7 #include <cstdint>
8
9 #include <vector>
10
11 #include "xbt/asserts.h"
12 #include "xbt/misc.h"
13
14 #include "src/mc/AddressSpace.hpp"
15 #include "src/mc/ChunkedData.hpp"
16 #include "src/mc/PageStore.hpp"
17
18 namespace simgrid {
19 namespace mc {
20
21 /** Take a per-page snapshot of a region
22  *
23  *  @param addr            The start of the region (must be at the beginning of a page)
24  *  @param page_count      Number of pages of the region
25  *  @return                Snapshot page numbers of this new snapshot
26  */
27 ChunkedData::ChunkedData(PageStore& store, AddressSpace& as,
28     RemotePtr<void> addr, std::size_t page_count)
29 {
30   store_ = &store;
31   this->pagenos_.resize(page_count);
32   std::vector<char> buffer(xbt_pagesize);
33
34   for (size_t i = 0; i != page_count; ++i) {
35
36       RemotePtr<void> page = remote((void*)
37         simgrid::mc::mmu::join(i, addr.address()));
38       xbt_assert(simgrid::mc::mmu::split(page.address()).second == 0,
39         "Not at the beginning of a page");
40
41       /* Adding another copy (and a syscall) will probably slow things a lot.
42          TODO, optimize this somehow (at least by grouping the syscalls)
43          if needed. Either:
44          - reduce the number of syscalls
45          - let the application snapshot itself
46          - move the segments in shared memory (this will break `fork` however)
47       */
48
49       as.read_bytes(buffer.data(), xbt_pagesize, page, simgrid::mc::ProcessIndexDisabled);
50
51       pagenos_[i] = store_->store_page(buffer.data());
52
53   }
54 }
55
56 }
57 }