Sane C++ Libraries
C++ Platform Abstraction Libraries
SC::MemoryAllocator Struct Referenceabstract

Customizable functions to allocate, reallocate and deallocate memory. More...

#include <Memory.h>

Inheritance diagram for SC::MemoryAllocator:
SC::FixedAllocator SC::VirtualAllocator

Classes

struct  Statistics
 Holds Statistics about how many allocations/release have been issued. More...
 

Public Member Functions

template<typename T , typename... U>
T * allocate (U &&... u)
 Allocate and construct an object of type T using this allocator. More...
 
void * allocate (const void *owner, size_t numBytes, size_t alignment)
 Allocates numBytes bytes of memory. More...
 
void * reallocate (void *memory, size_t numBytes)
 Change size of already allocated memory block. More...
 
void release (void *memory)
 Free memory allocated by MemoryAllocator::allocate and / or reallocated by MemoryAllocator::reallocate. More...
 
virtual void * allocateImpl (const void *owner, size_t numBytes, size_t alignment)=0
 Allocate virtual function to be reimplemented. More...
 
virtual void * reallocateImpl (void *memory, size_t numBytes)=0
 Re-allocate virtual function to be reimplemented. More...
 
virtual void releaseImpl (void *memory)=0
 Release virtual function to be reimplemented. More...
 

Public Attributes

Statistics statistics
 Holds statistics about how many allocations/release have been issued. More...
 

Detailed Description

Customizable functions to allocate, reallocate and deallocate memory.

Member Function Documentation

◆ allocate() [1/2]

void * SC::MemoryAllocator::allocate ( const void *  owner,
size_t  numBytes,
size_t  alignment 
)
inline

Allocates numBytes bytes of memory.

Parameters
ownerMemory address of the object that "owns" this allocation.
numBytesNumber of bytes to allocate
alignmentAlignment of the allocated block of memory
Returns
Raw pointer to allocated memory, to be freed with MemoryAllocator::release

◆ allocate() [2/2]

template<typename T , typename... U>
T * SC::MemoryAllocator::allocate ( U &&...  u)
inline

Allocate and construct an object of type T using this allocator.

◆ allocateImpl()

virtual void * SC::MemoryAllocator::allocateImpl ( const void *  owner,
size_t  numBytes,
size_t  alignment 
)
pure virtual

Allocate virtual function to be reimplemented.

Parameters
ownerCan be nullptr or an address belonging to a previous allocation of this allocator
numBytesHow many bytes to allocate
alignmentAlignment of the allocation
Returns
false if the passed not-null owner doesn't belong to this allocator or the allocation itself fails

Implemented in SC::FixedAllocator, and SC::VirtualAllocator.

◆ reallocate()

void * SC::MemoryAllocator::reallocate ( void *  memory,
size_t  numBytes 
)
inline

Change size of already allocated memory block.

Existing contents of input buffer will be copied over.

Parameters
memorypointer to memory previously allocated by Memory::allocate or Memory::Reallocate
numBytesnew size of the reallocated block
Returns
A new pointer of memory with size numBytes, to be freed with MemoryAllocator::release

◆ reallocateImpl()

virtual void * SC::MemoryAllocator::reallocateImpl ( void *  memory,
size_t  numBytes 
)
pure virtual

Re-allocate virtual function to be reimplemented.

Implemented in SC::FixedAllocator, and SC::VirtualAllocator.

◆ release()

void SC::MemoryAllocator::release ( void *  memory)
inline

Free memory allocated by MemoryAllocator::allocate and / or reallocated by MemoryAllocator::reallocate.

Parameters
memoryMemory to release / deallocate

◆ releaseImpl()

virtual void SC::MemoryAllocator::releaseImpl ( void *  memory)
pure virtual

Release virtual function to be reimplemented.

Implemented in SC::FixedAllocator.

Member Data Documentation

◆ statistics

Statistics SC::MemoryAllocator::statistics

Holds statistics about how many allocations/release have been issued.


The documentation for this struct was generated from the following file: