28 lines
791 B
C
28 lines
791 B
C
#ifndef PAGES_H
|
|
#define PAGES_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define PAGE_SHIFT 12
|
|
#ifndef PAGE_SIZE
|
|
#define PAGE_SIZE ((size_t)1 << PAGE_SHIFT)
|
|
#endif
|
|
#define PAGE_CEILING(s) (((s) + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))
|
|
|
|
void *allocate_pages(size_t usable_size, size_t guard_size, bool unprotect, const char *name);
|
|
void *allocate_pages_aligned(size_t usable_size, size_t alignment, size_t guard_size, const char *name);
|
|
void deallocate_pages(void *usable, size_t usable_size, size_t guard_size);
|
|
|
|
static inline size_t hash_page(const void *p) {
|
|
uintptr_t u = (uintptr_t)p >> PAGE_SHIFT;
|
|
size_t sum = u;
|
|
sum = (sum << 7) - sum + (u >> 16);
|
|
sum = (sum << 7) - sum + (u >> 32);
|
|
sum = (sum << 7) - sum + (u >> 48);
|
|
return sum;
|
|
}
|
|
|
|
#endif
|