Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill dead code.
[simgrid.git] / src / mc / mc_mmu.hpp
1 /* Copyright (c) 2014-2022. 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 /** @brief How many memory pages are necessary to store size bytes?
27  *
28  *  @param size Byte size
29  *  @return Number of memory pages
30  */
31 static XBT_ALWAYS_INLINE std::size_t chunk_count(std::size_t size)
32 {
33   std::size_t page_count = size >> xbt_pagebits;
34   if (size & (xbt_pagesize - 1))
35     page_count++;
36   return page_count;
37 }
38
39 /** @brief Split into chunk number and remaining offset */
40 static XBT_ALWAYS_INLINE std::pair<std::size_t, std::uintptr_t> split(std::uintptr_t offset)
41 {
42   return {offset >> xbt_pagebits, offset & (xbt_pagesize - 1)};
43 }
44
45 /** Merge chunk number and remaining offset into 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 same_chunk(std::uintptr_t a, std::uintptr_t b)
57 {
58   return (a >> xbt_pagebits) == (b >> xbt_pagebits);
59 }
60 }
61 }
62 }
63
64 #endif