3#include "egg/core/Disposer.hh"
5#include <abstract/memory/HeapCommon.hh>
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;
37 void disableAllocation() {
38 m_flags.
setBit(eFlags::Lock);
41 void enableAllocation() {
45 [[nodiscard]]
bool tstDisableAllocation()
const {
46 return m_flags.
onBit(eFlags::Lock);
49 void appendDisposer(
Disposer *disposer) {
50 m_children.append(disposer);
53 void removeDisposer(
Disposer *disposer) {
54 m_children.remove(disposer);
57 Heap *becomeAllocatableHeap();
58 Heap *becomeCurrentHeap();
60 void registerHeapBuffer(
void *buffer) {
64 [[nodiscard]]
void *getStartAddress() {
68 [[nodiscard]]
void *getEndAddress() {
69 return m_handle->getHeapEnd();
72 [[nodiscard]]
const char *getName()
const {
77 [[nodiscard]]
Heap *getParentHeap()
const {
81 void setName(
const char *name) {
85 void setParentHeap(
Heap *heap) {
89 static void initialize();
90 [[nodiscard]]
static void *alloc(
size_t size,
int align,
Heap *pHeap);
91 static void free(
void *block,
Heap *pHeap);
94 [[nodiscard]]
static Heap *findContainHeap(
const void *block);
96 [[nodiscard]]
static ExpHeap *dynamicCastToExp(
Heap *heap) {
97 return heap->getHeapKind() == Kind::Expanded ?
reinterpret_cast<ExpHeap *
>(heap) :
nullptr;
100 [[nodiscard]]
static Heap *getCurrentHeap() {
101 return s_currentHeap;
104 [[nodiscard]]
static constexpr uintptr_t getOffset() {
106 return reinterpret_cast<uintptr_t
>(&
reinterpret_cast<Heap *
>(NULL)->m_link);
125 static Heap *s_currentHeap;
126 static Heap *s_allocatableHeap;
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....
An interface for ensuring certain structures and classes are destroyed with the heap.
High-level implementation of a memory heap for managing dynamic memory allocation....
A high-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.
constexpr TBitFlag< T, E > & resetBit(Es... es)
Resets the corresponding bits for the provided enum values.
constexpr bool onBit(Es... es) const
Checks if any of the corresponding bits for the provided enum values are on.
constexpr TBitFlag< T, E > & setBit(Es... es)
Sets the corresponding bits for the provided enum values.