A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ExpHeap.hh
1#pragma once
2
3#include "abstract/memory/HeapCommon.hh"
4
5#include <functional>
6
7namespace Abstract::Memory {
8
10struct Region {
11 Region(void *start, void *end);
12 [[nodiscard]] uintptr_t getRange() const;
13
14 void *start;
15 void *end;
16};
17
18struct MEMiExpBlockHead;
19
22 MEMiExpBlockHead *m_prev;
23 MEMiExpBlockHead *m_next;
24};
25
29 MEMiExpBlockHead *append(MEMiExpBlockHead *block);
30 MEMiExpBlockHead *remove(MEMiExpBlockHead *block);
31
32 MEMiExpBlockHead *m_head;
33 MEMiExpBlockHead *m_tail;
34};
35
39private:
40 MEMiExpBlockHead(const Region &region, u16 signature);
41
42public:
43 [[nodiscard]] static MEMiExpBlockHead *createFree(const Region &region);
44 [[nodiscard]] static MEMiExpBlockHead *createUsed(const Region &region);
45
46 [[nodiscard]] Region getRegion() const;
47 [[nodiscard]] void *getMemoryStart() const;
48 [[nodiscard]] void *getMemoryEnd() const;
49
50 u16 m_signature;
51 union {
52 u16 val;
53 struct {
54 u16 direction : 1;
55 u16 alignment : 7;
56 u16 groupId : 8;
57 } fields;
58 } m_attribute;
59 u32 m_size;
60#ifdef BUILD_DEBUG
61 u32 m_tag;
62#endif // BUILD_DEBUG
63 MEMiExpBlockLink m_link;
64};
65
73private:
74 MEMiExpHeapHead(void *end, u16 opt);
76
77public:
78 typedef std::function<void(void *, MEMiHeapHead *, uintptr_t)> Visitor;
79
80 static MEMiExpHeapHead *create(void *startAddress, size_t size, u16 flag);
81 void destroy();
82
83 void *alloc(size_t size, s32 align);
84 void free(void *block);
85 [[nodiscard]] u32 getAllocatableSize(s32 align) const;
86 void visitAllocated(Visitor visitor, uintptr_t param);
87
88 [[nodiscard]] u16 getGroupID() const;
89 void setGroupID(u16 groupID);
90
91private:
92 enum class eAttribute {
93 BestFitAlloc = 0,
94 };
96
97 [[nodiscard]] void *allocFromHead(size_t size, s32 alignment);
98 [[nodiscard]] void *allocFromTail(size_t size, s32 alignment);
99 [[nodiscard]] void *allocUsedBlockFromFreeBlock(MEMiExpBlockHead *block, void *address,
100 u32 size, s32 direction);
101 bool recycleRegion(const Region &initialRegion);
102
103 MEMiExpBlockList m_freeBlocks;
104 MEMiExpBlockList m_usedBlocks;
105 u16 m_groupId;
106#ifdef BUILD_DEBUG
107 u32 m_tag;
108#endif // BUILD_DEBUG
109 Attribute m_attribute;
110
111 static constexpr u32 EXP_HEAP_SIGNATURE = 0x45585048; // EXPH
112};
113
114} // namespace Abstract::Memory
Low-level implementation of a memory heap for managing dynamic memory allocation. Allocation may occu...
Definition ExpHeap.hh:72
A low-level representation of a memory heap for managing dynamic memory allocation....
Definition HeapCommon.hh:13
Head of the memory block. Contains information about the block and a link in the corresponding used/f...
Definition ExpHeap.hh:38
Non-intrusive doubly-linked list.
Definition ExpHeap.hh:27
Represents a region of memory.
Definition ExpHeap.hh:10
Wrapper around an integral type with an enum corresponding to its bits.
Definition BitFlag.hh:16