4#include "../Foundation/PrimitiveTypes.h"
21 static void*
allocate(
size_t numBytes,
size_t alignment);
47 template <
typename T,
typename... U>
50 T* t =
reinterpret_cast<T*
>(
allocate(
nullptr,
sizeof(T),
alignof(T)));
53 placementNew(*t, forward<U>(u)...);
63 void*
allocate(
const void* owner,
size_t numBytes,
size_t alignment)
83 if (memory !=
nullptr)
95 virtual void*
allocateImpl(
const void* owner,
size_t numBytes,
size_t alignment) = 0;
113 void* memory =
nullptr;
114 size_t sizeInBytes = 0;
116 void* lastAllocation =
nullptr;
117 size_t lastAllocatedSize = 0;
120 virtual void*
allocateImpl(
const void* owner,
size_t numBytes,
size_t alignment)
override;
#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
virtual void * reallocateImpl(void *memory, size_t numBytes) override
Re-allocate virtual function to be reimplemented.
virtual void * allocateImpl(const void *owner, size_t numBytes, size_t alignment) override
Allocate virtual function to be reimplemented.
virtual void releaseImpl(void *memory) override
Release virtual function to be reimplemented.
Holds Statistics about how many allocations/release have been issued.
Definition: Memory.h:39
size_t numAllocate
How many times MemoryAllocator::allocate has been called.
Definition: Memory.h:40
size_t numRelease
How many times MemoryAllocator::release has been called.
Definition: Memory.h:42
size_t numReallocate
How many times MemoryAllocator::reallocate has been called.
Definition: Memory.h:41
Customizable functions to allocate, reallocate and deallocate memory.
Definition: Memory.h:36
virtual void releaseImpl(void *memory)=0
Release virtual function to be reimplemented.
void release(void *memory)
Free memory allocated by MemoryAllocator::allocate and / or reallocated by MemoryAllocator::reallocat...
Definition: Memory.h:81
Statistics statistics
Holds statistics about how many allocations/release have been issued.
Definition: Memory.h:44
void * allocate(const void *owner, size_t numBytes, size_t alignment)
Allocates numBytes bytes of memory.
Definition: Memory.h:63
virtual void * allocateImpl(const void *owner, size_t numBytes, size_t alignment)=0
Allocate virtual function to be reimplemented.
void * reallocate(void *memory, size_t numBytes)
Change size of already allocated memory block.
Definition: Memory.h:73
virtual void * reallocateImpl(void *memory, size_t numBytes)=0
Re-allocate virtual function to be reimplemented.
T * allocate(U &&... u)
Allocate and construct an object of type T using this allocator.
Definition: Memory.h:48
Centralized functions to allocate, reallocate and deallocate memory.
Definition: Memory.h:16
static void * allocate(size_t numBytes, size_t alignment)
Allocates numBytes bytes of memory.
static void release(void *memory)
Free memory allocated by Memory::allocate and / or reallocated by Memory::reallocate.
static void * reallocate(void *memory, size_t numBytes)
Change size of already allocated memory block.