Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix compilation warnings/errors when optimizing
[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   xbt_assert(address>=base, "The address is not in the range");
37   return ((uintptr_t) address - (uintptr_t) base) >> xbt_pagebits;
38 }
39
40 /** @brief Get the offset of an address within a memory page
41  *
42  *  @param address Address
43  *  @return Offset within the memory page
44  */
45 static inline size_t mc_page_offset(void* address)
46 {
47   return ((uintptr_t) address) & (xbt_pagesize-1);
48 }
49
50 /** @brief Get the virtual address of a virtual memory page
51  *
52  *  @param base Address of the first page
53  *  @param page Index of the page
54  */
55 static inline void* mc_page_from_number(void* base, size_t page)
56 {
57   return (void*) ((char*)base + (page << xbt_pagebits));
58 }
59
60 static inline bool mc_same_page(void* a, void* b)
61 {
62   return mc_page_number(NULL, a) == mc_page_number(NULL, b);
63 }
64
65 #endif