4#include "../Foundation/Memory.h"
5#include "../Foundation/PrimitiveTypes.h"
39 [[nodiscard]]
bool reserve(
size_t maxCapacityInBytes);
47 [[nodiscard]]
bool commit(
size_t newCapacityBytes);
50 [[nodiscard]]
bool shrink(
size_t newCapacityBytes);
61 virtual void*
allocateImpl(
const void* owner,
size_t numBytes,
size_t alignment)
override;
64 void syncFixedAllocator();
#define SC_COMPILER_EXPORT
Macro for symbol visibility in non-MSVC compilers.
Definition: Compiler.h:78
A MemoryAllocator implementation using a finite slice of memory.
Definition: Memory.h:108
A MemoryAllocator implementation based on a growable slice of VirtualMemory.
Definition: VirtualMemory.h:55
virtual void * allocateImpl(const void *owner, size_t numBytes, size_t alignment) override
Allocate virtual function to be reimplemented.
virtual void * reallocateImpl(void *memory, size_t numBytes) override
Re-allocate virtual function to be reimplemented.
Reserves a contiguous slice of virtual memory committing just a portion of it.
Definition: VirtualMemory.h:24
void * memory
Pointer to start of reserved memory.
Definition: VirtualMemory.h:28
bool shrink(size_t newCapacityBytes)
Reclaims all unused pages past newCapacityBytes (previously committed with VirtualMemory::commit)
size_t committedCapacityBytes
Current amount of committed memory.
Definition: VirtualMemory.h:26
bool commit(size_t newCapacityBytes)
Ensures at least newCapacityBytes to be committed / accessible from the large maxCapacityInBytes bloc...
static size_t roundUpToPageSize(size_t size)
Round up the passed in size to system memory page size.
bool reserve(size_t maxCapacityInBytes)
Reserves a large block of virtual memory of size maxCapacityInBytes.
size_t reservedCapacityBytes
Maximum amount of reserved memory that can be committed.
Definition: VirtualMemory.h:25
bool release()
Reclaims the entire virtual memory block (reserved with VirtualMemory::reserve)
static size_t getSystemPageSize()
Obtains system memory page size.