A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Memory.hh
1#pragma once
2
3#include <Logger.hh>
4
5#include <cstdint>
6
7// We can't include Common.hh, because we have a cyclic dependency
8// Instead, we redefine the types for use in memory code
9typedef int8_t s8;
10typedef int16_t s16;
11typedef int32_t s32;
12typedef int64_t s64;
13
14typedef uint8_t u8;
15typedef uint16_t u16;
16typedef uint32_t u32;
17typedef uint64_t u64;
18
19typedef float f32;
20typedef double f64;
21
22static inline uintptr_t GetAddrNum(const void *p) {
23 return reinterpret_cast<uintptr_t>(p);
24}
25
26static inline void *GetAddrPtr(uintptr_t n) {
27 return reinterpret_cast<void *>(n);
28}
29
30static inline void *AddOffset(const void *p, size_t offset) {
31 return GetAddrPtr(GetAddrNum(p) + offset);
32}
33
34static inline void *SubOffset(const void *p, size_t offset) {
35 return GetAddrPtr(GetAddrNum(p) - offset);
36}
37
38static inline uintptr_t RoundUp(uintptr_t value, uintptr_t alignment) {
39 return (value + alignment - 1) & ~(alignment - 1);
40}
41
42static inline void *RoundUp(void *ptr, uintptr_t alignment) {
43 return GetAddrPtr(RoundUp(GetAddrNum(ptr), alignment));
44}
45
46static inline uintptr_t RoundDown(uintptr_t value, uintptr_t alignment) {
47 return value & ~(alignment - 1);
48}
49
50static inline void *RoundDown(void *ptr, uintptr_t alignment) {
51 return GetAddrPtr(RoundDown(GetAddrNum(ptr), alignment));
52}