3#include "abstract/memory/List.hh"
5#include <egg/core/BitFlag.hh>
9namespace Abstract::Memory {
27 [[nodiscard]]
MEMList &getChildList();
28 [[nodiscard]]
void *getHeapStart();
29 [[nodiscard]]
void *getHeapEnd();
31 [[nodiscard]]
static MEMList &getRootList();
32 [[nodiscard]]
static u32 getFillVal(FillType type);
33 [[nodiscard]]
static MEMiHeapHead *findContainHeap(
const void *block);
35 [[nodiscard]]
static constexpr u16 getLinkOffset() {
43 void fillNoUseMemory(
void *address, u32 size);
44 void fillAllocMemory(
void *address, u32 size);
45 void fillFreeMemory(
void *address, u32 size);
49 [[nodiscard]]
MEMList &findListContainHeap()
const;
59 static constexpr std::array<u32, 3> s_fillVals = {{
A low-level representation of a memory heap for managing dynamic memory allocation....
Link of an instrusive doubly-linked list.
Intrusive doubly-linked list. Links are placed within the corresponding object.
Wrapper around an integral type with an enum corresponding to its bits.