Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Partial integration of per-page snapshot address translation (wip)
[simgrid.git] / src / mc / mc_mmu.h
1 /* Copyright (c) 2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef MC_MMU_H
8 #define MC_MMU_H
9
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include "mc_private.h"
14
15 /** @brief How many memory pages are necessary to store size bytes?
16  *
17  *  @param size Byte size
18  *  @return Number of memory pages
19  */
20 static inline size_t mc_page_count(size_t size)
21 {
22   size_t page_count = size >> xbt_pagebits;
23   if (size & (xbt_pagesize-1)) {
24     page_count ++;
25   }
26   return page_count;
27 }
28
29 /** @brief Get the virtual memory page number of a given address
30  *
31  *  @param address Address
32  *  @return Virtual memory page number of the given address
33  */
34 static inline size_t mc_page_number(void* base, void* address)
35 {
36   return ((uintptr_t) address - (uintptr_t) base) >> xbt_pagebits;
37 }
38
39 /** @brief Get the offset of an address within a memory page
40  *
41  *  @param address Address
42  *  @return Offset within the memory page
43  */
44 static inline size_t mc_page_offset(void* address)
45 {
46   return ((uintptr_t) address) & (xbt_pagesize-1);
47 }
48
49 /** @brief Get the virtual address of a virtual memory page
50  *
51  *  @param base Address of the first page
52  *  @param page Index of the page
53  */
54 static inline void* mc_page_from_number(void* base, size_t page)
55 {
56   return (void*) ((char*)base + (page << xbt_pagebits));
57 }
58
59 static inline bool mc_same_page(void* a, void* b)
60 {
61   return mc_page_number(NULL, a) == mc_page_number(NULL, b);
62 }
63
64 #endif