A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Abstract::Memory::MEMiExpHeapHead Class Reference

#include <ExpHeap.hh>

Description

Low-level implementation of a memory heap for managing dynamic memory allocation. Allocation may occur anywhere within the memory space the heap is created from.

Due to requesting chunks from a provided memory block, internal fragmentation is non-existent, but external fragmentation is still possible. Allocating temporary blocks from the tail, and scene-permanent blocks from the head, is recommended. The memory overhead per allocation is sizeof(MEMiExpBlockHead).

Definition at line 72 of file ExpHeap.hh.

Inheritance diagram for Abstract::Memory::MEMiExpHeapHead:

Public Types

typedef std::function< void(void *, MEMiHeapHead *, uintptr_t)> Visitor
 
- Public Types inherited from Abstract::Memory::MEMiHeapHead
enum class  FillType {
  NoUse = 0 ,
  Alloc = 1 ,
  Free = 2
}
 
enum class  eOptFlag {
  ZeroFillAlloc = 0 ,
  DebugFillAlloc = 1
}
 
typedef EGG::TBitFlag< u16, eOptFlag > OptFlag
 

Public Member Functions

void destroy ()
 
void * alloc (size_t size, s32 align)
 
void free (void *block)
 
u32 getAllocatableSize (s32 align) const
 
void visitAllocated (Visitor visitor, uintptr_t param)
 
u16 getGroupID () const
 
void setGroupID (u16 groupID)
 
- Public Member Functions inherited from Abstract::Memory::MEMiHeapHead
MEMListgetChildList ()
 
void * getHeapStart ()
 
void * getHeapEnd ()
 

Static Public Member Functions

static MEMiExpHeapHeadcreate (void *startAddress, size_t size, u16 flag)
 
- Static Public Member Functions inherited from Abstract::Memory::MEMiHeapHead
static MEMListgetRootList ()
 
static u32 getFillVal (FillType type)
 
static MEMiHeapHeadfindContainHeap (const void *block)
 
static constexpr u16 getLinkOffset ()
 

Private Types

enum class  eAttribute { BestFitAlloc = 0 }
 
typedef EGG::TBitFlag< u16, eAttribute > Attribute
 

Private Member Functions

 MEMiExpHeapHead (void *end, u16 opt)
 
void * allocFromHead (size_t size, s32 alignment)
 
void * allocFromTail (size_t size, s32 alignment)
 
void * allocUsedBlockFromFreeBlock (MEMiExpBlockHead *block, void *address, u32 size, s32 direction)
 
bool recycleRegion (const Region &initialRegion)
 

Private Attributes

MEMiExpBlockList m_freeBlocks
 
MEMiExpBlockList m_usedBlocks
 
u16 m_groupId
 
Attribute m_attribute
 

Static Private Attributes

static constexpr u32 EXP_HEAP_SIGNATURE = 0x45585048
 

Additional Inherited Members

- Protected Member Functions inherited from Abstract::Memory::MEMiHeapHead
 MEMiHeapHead (u32 signature, void *heapStart, void *heapEnd, const OptFlag &opt)
 
void fillNoUseMemory (void *address, u32 size)
 
void fillAllocMemory (void *address, u32 size)
 
void fillFreeMemory (void *address, u32 size)
 

Member Typedef Documentation

◆ Attribute

Definition at line 95 of file ExpHeap.hh.

◆ Visitor

std::function<void(void *, MEMiHeapHead *, uintptr_t)> Abstract::Memory::MEMiExpHeapHead::Visitor

Definition at line 78 of file ExpHeap.hh.

Member Enumeration Documentation

◆ eAttribute

enum class Abstract::Memory::MEMiExpHeapHead::eAttribute
strongprivate

Definition at line 92 of file ExpHeap.hh.

Constructor & Destructor Documentation

◆ MEMiExpHeapHead()

Abstract::Memory::MEMiExpHeapHead::MEMiExpHeapHead ( void * end,
u16 opt )
private

Definition at line 91 of file ExpHeap.cc.

Member Function Documentation

◆ alloc()

void * Abstract::Memory::MEMiExpHeapHead::alloc ( size_t size,
s32 align )
0x80198D88

Definition at line 137 of file ExpHeap.cc.

◆ allocFromHead()

void * Abstract::Memory::MEMiExpHeapHead::allocFromHead ( size_t size,
s32 alignment )
nodiscardprivate0x8019899C

Definition at line 214 of file ExpHeap.cc.

◆ allocFromTail()

void * Abstract::Memory::MEMiExpHeapHead::allocFromTail ( size_t size,
s32 alignment )
nodiscardprivate0x80198A78

Definition at line 250 of file ExpHeap.cc.

◆ allocUsedBlockFromFreeBlock()

void * Abstract::Memory::MEMiExpHeapHead::allocUsedBlockFromFreeBlock ( MEMiExpBlockHead * block,
void * address,
u32 size,
s32 direction )
nodiscardprivate0x80198798

Definition at line 286 of file ExpHeap.cc.

◆ create()

MEMiExpHeapHead * Abstract::Memory::MEMiExpHeapHead::create ( void * startAddress,
size_t size,
u16 flag )
static0x80198CA8

Definition at line 112 of file ExpHeap.cc.

◆ destroy()

void Abstract::Memory::MEMiExpHeapHead::destroy ( )

Definition at line 132 of file ExpHeap.cc.

◆ free()

void Abstract::Memory::MEMiExpHeapHead::free ( void * block)
0x80199038

Definition at line 154 of file ExpHeap.cc.

◆ getAllocatableSize()

u32 Abstract::Memory::MEMiExpHeapHead::getAllocatableSize ( s32 align) const
nodiscard0x80199180

Definition at line 168 of file ExpHeap.cc.

◆ getGroupID()

u16 Abstract::Memory::MEMiExpHeapHead::getGroupID ( ) const
nodiscard0x8019934C

Definition at line 204 of file ExpHeap.cc.

◆ recycleRegion()

bool Abstract::Memory::MEMiExpHeapHead::recycleRegion ( const Region & initialRegion)
private

Definition at line 330 of file ExpHeap.cc.

◆ setGroupID()

void Abstract::Memory::MEMiExpHeapHead::setGroupID ( u16 groupID)
0x80199258

Definition at line 209 of file ExpHeap.cc.

◆ visitAllocated()

void Abstract::Memory::MEMiExpHeapHead::visitAllocated ( Visitor visitor,
uintptr_t param )
0x801992A8

Definition at line 195 of file ExpHeap.cc.

Member Data Documentation

◆ EXP_HEAP_SIGNATURE

u32 Abstract::Memory::MEMiExpHeapHead::EXP_HEAP_SIGNATURE = 0x45585048
staticconstexprprivate

Definition at line 111 of file ExpHeap.hh.

◆ m_attribute

Attribute Abstract::Memory::MEMiExpHeapHead::m_attribute
private

Definition at line 109 of file ExpHeap.hh.

◆ m_freeBlocks

MEMiExpBlockList Abstract::Memory::MEMiExpHeapHead::m_freeBlocks
private

Definition at line 103 of file ExpHeap.hh.

◆ m_groupId

u16 Abstract::Memory::MEMiExpHeapHead::m_groupId
private

Definition at line 105 of file ExpHeap.hh.

◆ m_usedBlocks

MEMiExpBlockList Abstract::Memory::MEMiExpHeapHead::m_usedBlocks
private

Definition at line 104 of file ExpHeap.hh.