Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
MemoryAllocator.hpp
1#pragma once
2
3#include <Common/Memory/Allocators/DynamicAllocator.hpp>
4#include <Common/String.hpp>
5
6namespace Grindstone::Memory::AllocatorCore {
8 Allocators::DynamicAllocator dynamicAllocator;
9 };
10
12 void SetAllocatorState(Grindstone::Memory::AllocatorCore::AllocatorState* newAllocatorState);
13
14 bool Initialize(size_t sizeInMegs);
15 void CloseAllocator();
16
17 StringRef AllocateString(size_t size);
18 StringRef AllocateString(Grindstone::StringRef srcString);
19
20 bool FreeWithoutDestructor(void* memPtr);
21
22 size_t GetPeak();
23 size_t GetUsed();
24 size_t GetTotal();
25
26 bool IsEmpty();
27
28 void* AllocateRaw(size_t size, size_t alignment, const char* debugName);
29
30 template<typename T, typename... Args>
31 Grindstone::Memory::SmartPointers::UniquePtr<T> AllocateUnique(Args&&... params) {
32 return static_cast<T*>(GetAllocatorState()->dynamicAllocator.AllocateUnique<T>(params));
33 }
34
35 template<typename T, typename... Args>
36 Grindstone::Memory::SmartPointers::SharedPtr<T> AllocateShared(Args&&... params) {
37 return static_cast<T*>(GetAllocatorState()->dynamicAllocator.AllocateShared<T>(params));
38 }
39
40 template<typename T, typename... Args>
41 T* Allocate(Args&&... params) {
42 T* ptr = static_cast<T*>(GetAllocatorState()->dynamicAllocator.AllocateRaw(sizeof(T), alignof(T), typeid(T).name()));
43 if (ptr != nullptr) {
44 // Call the constructor on the newly allocated memory
45 new (ptr) T(std::forward<Args>(params)...);
46 }
47
48 return ptr;
49 }
50
51 template<typename T>
52 bool Free(T* memPtr) {
53 if (memPtr == nullptr) {
54 return false;
55 }
56
57 reinterpret_cast<T*>(memPtr)->~T();
58 GetAllocatorState()->dynamicAllocator.Free(memPtr);
59
60 return true;
61 }
62};
A dynamic allocator represented by a linked list.
Definition DynamicAllocator.hpp:19