Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d406e8989e400e48ac6a1679ac3701a1113bc1c3
[simgrid.git] / src / mc / mc_mmu.hpp
1 /* Copyright (c) 2014-2017. 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_MMU_HPP
7 #define SIMGRID_MC_MMU_HPP
8
9 #include "xbt/misc.h" // xbt_pagesize...
10 #include <cstdint>
11 #include <utility>
12
13 namespace simgrid {
14 namespace mc {
15 // TODO, do not depend on xbt_pagesize/xbt_pagebits but our own chunk size
16 namespace mmu {
17
18 static int chunkSize()
19 {
20   return xbt_pagesize;
21 }
22
23 /** @brief How many memory pages are necessary to store size bytes?
24  *
25  *  @param size Byte size
26  *  @return Number of memory pages
27  */
28 static XBT_ALWAYS_INLINE std::size_t chunkCount(std::size_t size)
29 {
30   size_t page_count = size >> xbt_pagebits;
31   if (size & (xbt_pagesize-1))
32     page_count ++;
33   return page_count;
34 }
35
36 /** @brief Split into chunk number and remaining offset */
37 static XBT_ALWAYS_INLINE std::pair<std::size_t, std::uintptr_t> split(std::uintptr_t offset)
38 {
39   return {
40     offset >> xbt_pagebits,
41     offset & (xbt_pagesize-1)
42   };
43 }
44
45 /** Merge chunk number and remaining offset info a global offset */
46 static XBT_ALWAYS_INLINE std::uintptr_t join(std::size_t page, std::uintptr_t offset)
47 {
48   return ((std::uintptr_t) page << xbt_pagebits) + offset;
49 }
50
51 static XBT_ALWAYS_INLINE std::uintptr_t join(std::pair<std::size_t, std::uintptr_t> value)
52 {
53   return join(value.first, value.second);
54 }
55
56 static XBT_ALWAYS_INLINE bool sameChunk(std::uintptr_t a, std::uintptr_t b)
57 {
58   return (a >> xbt_pagebits) == (b >> xbt_pagebits);
59 }
60
61 }
62 }
63 }
64
65 #endif