aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/memory/memoryarena.cpp
blob: 8807f32645d5389b928e880fc78fa7f86c0ff5ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Copyright Epic Games, Inc. All Rights Reserved.

#include <zencore/memory/memoryarena.h>

#include <cstring>

namespace zen {

MemoryArena::~MemoryArena()
{
	for (auto Chunk : m_Chunks)
		delete[] Chunk;
}

void*
MemoryArena::AllocateAligned(size_t ByteCount, size_t align)
{
	if (ByteCount == 0)
	{
		return nullptr;
	}

	void* Ptr = nullptr;

	m_Lock.WithExclusiveLock([&] {
		size_t AlignedOffset = (m_CurrentOffset + (align - 1)) & ~(align - 1);

		if (m_CurrentChunk == nullptr || AlignedOffset + ByteCount > ChunkSize)
		{
			uint8_t* NewChunk = new uint8_t[ChunkSize];
			if (!NewChunk)
			{
				return;
			}

			m_Chunks.push_back(NewChunk);
			m_CurrentChunk = NewChunk;
			AlignedOffset  = 0;
		}

		Ptr				= m_CurrentChunk + AlignedOffset;
		m_CurrentOffset = AlignedOffset + ByteCount;
	});

	return Ptr;
}

void*
MemoryArena::AllocateAlignedWithOffset(size_t ByteCount, size_t align, size_t offset)
{
	if (ByteCount == 0)
	{
		return nullptr;
	}

	void* Ptr = nullptr;

	m_Lock.WithExclusiveLock([&] {
		size_t AlignedOffset = (m_CurrentOffset + (align - 1) + offset) & ~(align - 1);

		if (m_CurrentChunk == nullptr || AlignedOffset + ByteCount > ChunkSize)
		{
			uint8_t* NewChunk = new uint8_t[ChunkSize];
			if (!NewChunk)
			{
				return;
			}

			m_Chunks.push_back(NewChunk);
			m_CurrentChunk = NewChunk;
			AlignedOffset  = offset;
		}

		Ptr				= m_CurrentChunk + AlignedOffset;
		m_CurrentOffset = AlignedOffset + ByteCount;
	});

	return Ptr;
}

void*
MemoryArena::Allocate(size_t Size)
{
	if (Size == 0)
	{
		return nullptr;
	}

	void*			 Ptr	   = nullptr;
	constexpr size_t Alignment = alignof(std::max_align_t);

	m_Lock.WithExclusiveLock([&] {
		size_t AlignedOffset = (m_CurrentOffset + Alignment - 1) & ~(Alignment - 1);

		if (m_CurrentChunk == nullptr || AlignedOffset + Size > ChunkSize)
		{
			uint8_t* NewChunk = new uint8_t[ChunkSize];
			if (!NewChunk)
			{
				return;
			}

			m_Chunks.push_back(NewChunk);
			m_CurrentChunk = NewChunk;
			AlignedOffset  = 0;
		}

		Ptr				= m_CurrentChunk + AlignedOffset;
		m_CurrentOffset = AlignedOffset + Size;
	});

	return Ptr;
}

const char*
MemoryArena::DuplicateString(std::string_view Str)
{
	const size_t Len	= Str.size();
	char*		 NewStr = static_cast<char*>(Allocate(Len + 1));
	if (NewStr)
	{
		memcpy(NewStr, Str.data(), Len);
		NewStr[Len] = '\0';
	}
	return NewStr;
}

}  // namespace zen