Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / src / mc / mc_mmu.hpp
1 /* Copyright (c) 2014-2020. 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 <cstdint>
10 #include <utility>
11
12 #ifndef XBT_ALWAYS_INLINE
13 #define XBT_ALWAYS_INLINE inline __attribute__((always_inline))
14 #endif
15
16 /** Size of a memory page for the current system. */
17 extern "C" int xbt_pagesize;
18 /** Number of bits of addresses inside a given page, log2(xbt_pagesize). */
19 extern "C" int xbt_pagebits;
20
21 namespace simgrid {
22 namespace mc {
23 // TODO, do not depend on xbt_pagesize/xbt_pagebits but our own chunk size
24 namespace mmu {
25
26 static int chunk_size()
27 {
28   return xbt_pagesize;
29 }
30
31 /** @brief How many memory pages are necessary to store size bytes?
32  *
33  *  @param size Byte size
34  *  @return Number of memory pages
35  */
36 static XBT_ALWAYS_INLINE std::size_t chunk_count(std::size_t size)
37 {
38   std::size_t page_count = size >> xbt_pagebits;
39   if (size & (xbt_pagesize - 1))
40     page_count++;
41   return page_count;
42 }
43
44 /** @brief Split into chunk number and remaining offset */
45 static XBT_ALWAYS_INLINE std::pair<std::size_t, std::uintptr_t> split(std::uintptr_t offset)
46 {
47   return {offset >> xbt_pagebits, offset & (xbt_pagesize - 1)};
48 }
49
50 /** Merge chunk number and remaining offset into a global offset */
51 static XBT_ALWAYS_INLINE std::uintptr_t join(std::size_t page, std::uintptr_t offset)
52 {
53   return ((std::uintptr_t)page << xbt_pagebits) + offset;
54 }
55
56 static XBT_ALWAYS_INLINE std::uintptr_t join(std::pair<std::size_t, std::uintptr_t> value)
57 {
58   return join(value.first, value.second);
59 }
60
61 static XBT_ALWAYS_INLINE bool same_chunk(std::uintptr_t a, std::uintptr_t b)
62 {
63   return (a >> xbt_pagebits) == (b >> xbt_pagebits);
64 }
65 }
66 }
67 }
68
69 #endif