Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
jedule: obey our coding standards
[simgrid.git] / src / mc / mc_mmu.hpp
1 /* Copyright (c) 2014-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 #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 {offset >> xbt_pagebits, offset & (xbt_pagesize - 1)};
40 }
41
42 /** Merge chunk number and remaining offset info a global offset */
43 static XBT_ALWAYS_INLINE std::uintptr_t join(std::size_t page, std::uintptr_t offset)
44 {
45   return ((std::uintptr_t)page << xbt_pagebits) + offset;
46 }
47
48 static XBT_ALWAYS_INLINE std::uintptr_t join(std::pair<std::size_t, std::uintptr_t> value)
49 {
50   return join(value.first, value.second);
51 }
52
53 static XBT_ALWAYS_INLINE bool sameChunk(std::uintptr_t a, std::uintptr_t b)
54 {
55   return (a >> xbt_pagebits) == (b >> xbt_pagebits);
56 }
57 }
58 }
59 }
60
61 #endif