aboutsummaryrefslogtreecommitdiff
path: root/EASTL/source/fixed_pool.cpp
blob: 73b9be014515a643a6e293b7d7f083e336f1f05d (plain)
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
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
///////////////////////////////////////////////////////////////////////////////


#include <EASTL/internal/fixed_pool.h>
#include <EASTL/fixed_allocator.h>



namespace eastl
{


	EASTL_API void fixed_pool_base::init(void* pMemory, size_t memorySize, size_t nodeSize,
							   size_t alignment, size_t /*alignmentOffset*/)
	{
		// To do: Support alignmentOffset.

		#if EASTL_FIXED_SIZE_TRACKING_ENABLED
			mnCurrentSize = 0;
			mnPeakSize    = 0;
		#endif

		if(pMemory)
		{
			// Assert that alignment is a power of 2 value (e.g. 1, 2, 4, 8, 16, etc.)
			EASTL_ASSERT((alignment & (alignment - 1)) == 0);

			// Make sure alignment is a valid value.
			if(alignment < 1)
				alignment = 1;

			mpNext      = (Link*)(((uintptr_t)pMemory + (alignment - 1)) & ~(alignment - 1));
			memorySize -= (uintptr_t)mpNext - (uintptr_t)pMemory;
			pMemory     = mpNext;

			// The node size must be at least as big as a Link, which itself is sizeof(void*).
			if(nodeSize < sizeof(Link))
				nodeSize = ((sizeof(Link) + (alignment - 1))) & ~(alignment - 1);

			// If the user passed in a memory size that wasn't a multiple of the node size,
			// we need to chop down the memory size so that the last node is not a whole node.
			memorySize = (memorySize / nodeSize) * nodeSize;

			mpCapacity = (Link*)((uintptr_t)pMemory + memorySize);
			mpHead     = NULL;
			mnNodeSize = nodeSize;
		}
	}


} // namespace eastl