A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
EGG::ExpHeap::GroupSizeRecord Class Reference

#include <ExpHeap.hh>

Description

Memory blocks have group IDs assigned to them (default 0). This class is a record of the total sum of those blocks' sizes, categorized by group ID. Used for memory profiling.

Interfaces with the expanded heap via ExpHeap::calcGroupSize.

Definition at line 21 of file ExpHeap.hh.

Public Member Functions

void reset ()
 
size_t getGroupSize (u16 groupID) const
 
void addSize (u16 groupID, size_t size)
 
constexpr size_t size () const
 

Private Attributes

std::array< size_t, 256 > m_entries
 

Constructor & Destructor Documentation

◆ GroupSizeRecord()

EGG::ExpHeap::GroupSizeRecord::GroupSizeRecord ( )
0x80226DD0

Definition at line 128 of file ExpHeap.cc.

Member Function Documentation

◆ addSize()

void EGG::ExpHeap::GroupSizeRecord::addSize ( u16 groupID,
size_t size )
0x80226E98

Definition at line 144 of file ExpHeap.cc.

◆ getGroupSize()

size_t EGG::ExpHeap::GroupSizeRecord::getGroupSize ( u16 groupID) const
nodiscard

Definition at line 139 of file ExpHeap.cc.

◆ reset()

void EGG::ExpHeap::GroupSizeRecord::reset ( )
0x80226E00

Definition at line 133 of file ExpHeap.cc.

◆ size()

size_t EGG::ExpHeap::GroupSizeRecord::size ( ) const
inlinenodiscardconstexpr

Definition at line 28 of file ExpHeap.hh.

Member Data Documentation

◆ m_entries

std::array<size_t, 256> EGG::ExpHeap::GroupSizeRecord::m_entries
private

Definition at line 33 of file ExpHeap.hh.