Sane C++ Libraries
C++ Platform Abstraction Libraries
SC::FixedAllocator Struct Reference

A MemoryAllocator implementation using a finite slice of memory. More...

#include <Memory.h>

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

Public Member Functions

 FixedAllocator (void *memory, size_t sizeInBytes)
 
- Public Member Functions inherited from SC::MemoryAllocator
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...
 

Protected Member Functions

virtual void * allocateImpl (const void *owner, size_t numBytes, size_t alignment) override
 Allocate virtual function to be reimplemented. More...
 
virtual void * reallocateImpl (void *memory, size_t numBytes) override
 Re-allocate virtual function to be reimplemented. More...
 
virtual void releaseImpl (void *memory) override
 Release virtual function to be reimplemented. More...
 

Protected Attributes

void * memory = nullptr
 
size_t sizeInBytes = 0
 
void * lastAllocation = nullptr
 
size_t lastAllocatedSize = 0
 
size_t position = 0
 

Additional Inherited Members

- Public Attributes inherited from SC::MemoryAllocator
Statistics statistics
 Holds statistics about how many allocations/release have been issued. More...
 

Detailed Description

A MemoryAllocator implementation using a finite slice of memory.

Member Function Documentation

◆ allocateImpl()

virtual void * SC::FixedAllocator::allocateImpl ( const void *  owner,
size_t  numBytes,
size_t  alignment 
)
overrideprotectedvirtual

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

Implements SC::MemoryAllocator.

Reimplemented in SC::VirtualAllocator.

◆ reallocateImpl()

virtual void * SC::FixedAllocator::reallocateImpl ( void *  memory,
size_t  numBytes 
)
overrideprotectedvirtual

Re-allocate virtual function to be reimplemented.

Implements SC::MemoryAllocator.

Reimplemented in SC::VirtualAllocator.

◆ releaseImpl()

virtual void SC::FixedAllocator::releaseImpl ( void *  memory)
overrideprotectedvirtual

Release virtual function to be reimplemented.

Implements SC::MemoryAllocator.


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