3#include "abstract/memory/HeapCommon.hh"
7namespace Abstract::Memory {
11 Region(
void *start,
void *end);
12 [[nodiscard]] uintptr_t getRange()
const;
46 [[nodiscard]]
Region getRegion()
const;
47 [[nodiscard]]
void *getMemoryStart()
const;
48 [[nodiscard]]
void *getMemoryEnd()
const;
78 typedef std::function<void(
void *,
MEMiHeapHead *, uintptr_t)> Visitor;
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);
88 [[nodiscard]]
u16 getGroupID()
const;
89 void setGroupID(
u16 groupID);
92 enum class eAttribute {
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);
111 static constexpr u32 EXP_HEAP_SIGNATURE = 0x45585048;
Low-level implementation of a memory heap for managing dynamic memory allocation. Allocation may occu...
A low-level representation of a memory heap for managing dynamic memory allocation....
Head of the memory block. Contains information about the block and a link in the corresponding used/f...
Link of a non-intrusive doubly-linked list.
Non-intrusive doubly-linked list.
Represents a region of memory.
Wrapper around an integral type with an enum corresponding to its bits.