Loading [MathJax]/extensions/tex2jax.js
A reimplementation of Mario Kart Wii's physics engine in C++
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages Concepts
HeapCommon.hh
1#pragma once
2
3#include "abstract/memory/List.hh"
4
5#include <egg/core/BitFlag.hh>
6
7#include <array>
8
9namespace Abstract::Memory {
10
14public:
15 enum class FillType {
16 NoUse = 0,
17 Alloc = 1,
18 Free = 2,
19 };
20
21 enum class eOptFlag {
22 ZeroFillAlloc = 0,
23 DebugFillAlloc = 1,
24 };
26
27 [[nodiscard]] MEMList &getChildList();
28 [[nodiscard]] void *getHeapStart();
29 [[nodiscard]] void *getHeapEnd();
30
31 [[nodiscard]] static MEMList &getRootList();
32 [[nodiscard]] static u32 getFillVal(FillType type);
33 [[nodiscard]] static MEMiHeapHead *findContainHeap(const void *block);
34
35 [[nodiscard]] static constexpr u16 getLinkOffset() {
36 return offsetof(MEMiHeapHead, m_link);
37 }
38
39protected:
40 MEMiHeapHead(u32 signature, void *heapStart, void *heapEnd, const OptFlag &opt);
42
43 void fillNoUseMemory(void *address, u32 size);
44 void fillAllocMemory(void *address, u32 size);
45 void fillFreeMemory(void *address, u32 size);
46
47private:
48 [[nodiscard]] static MEMiHeapHead *findContainHeap(MEMList *list, const void *block);
49 [[nodiscard]] MEMList &findListContainHeap() const;
50
51 u32 m_signature;
52 OptFlag m_optFlag;
53 MEMLink m_link;
54 MEMList m_childList;
55 void *m_heapStart;
56 void *m_heapEnd;
57
58 static MEMList s_rootList;
59 static constexpr std::array<u32, 3> s_fillVals = {{
60 0xC3C3C3C3,
61 0xF3F3F3F3,
62 0xD3D3D3D3,
63 }};
64};
65
66} // namespace Abstract::Memory
A low-level representation of a memory heap for managing dynamic memory allocation....
Definition HeapCommon.hh:13
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