Sane C++ Libraries
C++ Platform Abstraction Libraries
Memory.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Foundation/PrimitiveTypes.h"
5namespace SC
6{
7struct SC_COMPILER_EXPORT Memory;
8struct SC_COMPILER_EXPORT MemoryAllocator;
9struct SC_COMPILER_EXPORT FixedAllocator;
10} // namespace SC
13
16{
21 static void* allocate(size_t numBytes, size_t alignment);
22
27 static void* reallocate(void* memory, size_t numBytes);
28
31 static void release(void* memory);
32};
33
36{
39 {
40 size_t numAllocate = 0;
41 size_t numReallocate = 0;
42 size_t numRelease = 0;
43 };
45
47 template <typename T, typename... U>
48 T* allocate(U&&... u)
49 {
50 T* t = reinterpret_cast<T*>(allocate(nullptr, sizeof(T), alignof(T)));
51 if (t)
52 {
53 placementNew(*t, forward<U>(u)...);
54 }
55 return t;
56 }
57
63 void* allocate(const void* owner, size_t numBytes, size_t alignment)
64 {
66 return allocateImpl(owner, numBytes, alignment);
67 }
68
73 void* reallocate(void* memory, size_t numBytes)
74 {
76 return reallocateImpl(memory, numBytes);
77 }
78
81 void release(void* memory)
82 {
83 if (memory != nullptr)
84 {
86 }
87 return releaseImpl(memory);
88 }
89
95 virtual void* allocateImpl(const void* owner, size_t numBytes, size_t alignment) = 0;
96
98 virtual void* reallocateImpl(void* memory, size_t numBytes) = 0;
99
101 virtual void releaseImpl(void* memory) = 0;
102
103 virtual ~MemoryAllocator() {}
104};
105
108{
109 FixedAllocator(void* memory, size_t sizeInBytes);
110
111 protected:
112 // Not using a span here to avoid depending on Span<T> in this header
113 void* memory = nullptr;
114 size_t sizeInBytes = 0;
115
116 void* lastAllocation = nullptr;
117 size_t lastAllocatedSize = 0;
118 size_t position = 0;
119
120 virtual void* allocateImpl(const void* owner, size_t numBytes, size_t alignment) override;
121 virtual void* reallocateImpl(void* memory, size_t numBytes) override;
122 virtual void releaseImpl(void* memory) override;
123};
124
#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.