A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Heap.hh
1#pragma once
2
3#include "egg/core/Disposer.hh"
4
5#include <abstract/memory/HeapCommon.hh>
6
7#include <list>
8#include <new>
9
10namespace EGG {
11
12class ExpHeap;
13
16class Heap : Disposer {
17public:
18 enum class Kind {
19 None,
20 Expanded,
21 Frame,
22 Unit,
23 Assert,
24 };
25
27 ~Heap() override;
28
29 virtual void destroy() = 0;
30 virtual Kind getHeapKind() const = 0;
31 virtual void *alloc(size_t size, s32 align) = 0;
32 virtual void free(void *block) = 0;
33 virtual u32 getAllocatableSize(s32 align = 4) const = 0;
34
35 void dispose();
36
37 void disableAllocation() {
38 m_flags.setBit(eFlags::Lock);
39 }
40
41 void enableAllocation() {
42 m_flags.resetBit(eFlags::Lock);
43 }
44
45 [[nodiscard]] bool tstDisableAllocation() const {
46 return m_flags.onBit(eFlags::Lock);
47 }
48
49 void appendDisposer(Disposer *disposer) {
50 m_children.append(disposer);
51 }
52
53 void removeDisposer(Disposer *disposer) {
54 m_children.remove(disposer);
55 }
56
57 Heap *becomeAllocatableHeap();
58 Heap *becomeCurrentHeap();
59
60 void registerHeapBuffer(void *buffer) {
61 m_block = buffer;
62 }
63
64 [[nodiscard]] void *getStartAddress() {
65 return this;
66 }
67
68 [[nodiscard]] void *getEndAddress() {
69 return m_handle->getHeapEnd();
70 }
71
72 [[nodiscard]] const char *getName() const {
73 return m_name;
74 }
75
77 [[nodiscard]] Heap *getParentHeap() const {
78 return m_parentHeap;
79 }
80
81 void setName(const char *name) {
82 m_name = name;
83 }
84
85 void setParentHeap(Heap *heap) {
86 m_parentHeap = heap;
87 }
88
89 static void initialize();
90 [[nodiscard]] static void *alloc(size_t size, int align, Heap *pHeap);
91 static void free(void *block, Heap *pHeap);
92
93 [[nodiscard]] static Heap *findHeap(Abstract::Memory::MEMiHeapHead *handle);
94 [[nodiscard]] static Heap *findContainHeap(const void *block);
95
96 [[nodiscard]] static ExpHeap *dynamicCastToExp(Heap *heap) {
97 return heap->getHeapKind() == Kind::Expanded ? reinterpret_cast<ExpHeap *>(heap) : nullptr;
98 }
99
100 [[nodiscard]] static Heap *getCurrentHeap() {
101 return s_currentHeap;
102 }
103
104 [[nodiscard]] static constexpr uintptr_t getOffset() {
105 // offsetof doesn't work, so instead of hardcoding an offset, we derive it ourselves
106 return reinterpret_cast<uintptr_t>(&reinterpret_cast<Heap *>(NULL)->m_link);
107 }
108
109protected:
110 enum class eFlags {
111 Lock = 0,
112 };
114
116 void *m_block;
117 Heap *m_parentHeap;
118 Flags m_flags;
120 Abstract::Memory::MEMList m_children;
121 const char *m_name;
122
123 static Abstract::Memory::MEMList s_heapList;
124
125 static Heap *s_currentHeap;
126 static Heap *s_allocatableHeap;
127};
128
129} // namespace EGG
130
131[[nodiscard]] void *operator new(size_t size) noexcept;
132[[nodiscard]] void *operator new(size_t size, int align) noexcept;
133[[nodiscard]] void *operator new(size_t size, EGG::Heap *heap, int align) noexcept;
134[[nodiscard]] void *operator new[](size_t size) noexcept;
135[[nodiscard]] void *operator new[](size_t size, int align) noexcept;
136[[nodiscard]] void *operator new[](size_t size, EGG::Heap *heap, int align) noexcept;
137void operator delete(void *block) noexcept;
138void operator delete[](void *block) noexcept;
A low-level representation of a memory heap for managing dynamic memory allocation....
Definition HeapCommon.hh:13
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
High-level implementation of a memory heap for managing dynamic memory allocation....
Definition ExpHeap.hh:15
A high-level representation of a memory heap for managing dynamic memory allocation....
Definition Heap.hh:16
EGG core library.
Definition Archive.cc:6
Intrusive doubly-linked list. Links are placed within the corresponding object.
Definition List.hh:14
Wrapper around an integral type with an enum corresponding to its bits.
Definition BitFlag.hh:16
constexpr TBitFlag< T, E > & resetBit(Es... es)
Resets the corresponding bits for the provided enum values.
Definition BitFlag.hh:68
constexpr bool onBit(Es... es) const
Checks if any of the corresponding bits for the provided enum values are on.
Definition BitFlag.hh:103
constexpr TBitFlag< T, E > & setBit(Es... es)
Sets the corresponding bits for the provided enum values.
Definition BitFlag.hh:57