forked from focus-creative-games/il2cpp_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryPool.cpp
More file actions
85 lines (70 loc) · 2.06 KB
/
MemoryPool.cpp
File metadata and controls
85 lines (70 loc) · 2.06 KB
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
#include "il2cpp-config.h"
#include "utils/MemoryPool.h"
#include "utils/Memory.h"
#include <algorithm>
#include <limits>
namespace il2cpp
{
namespace utils
{
const size_t kPageSize = IL2CPP_PAGE_SIZE;
const size_t kDefaultRegionSize = 16 * 1024;
// by making all allocations a multiple of this value, we ensure the next
// allocation will always be aligned to this value
const size_t kMemoryAlignment = 8;
static inline size_t MakeMultipleOf(size_t size, size_t alignment)
{
return (size + alignment - 1) & ~(alignment - 1);
}
struct MemoryPool::Region
{
char* start;
char* current;
size_t size;
size_t free;
};
MemoryPool::MemoryPool()
{
AddRegion(kDefaultRegionSize);
}
MemoryPool::MemoryPool(size_t initialSize)
{
AddRegion(initialSize);
}
MemoryPool::~MemoryPool()
{
for (RegionList::iterator iter = m_Regions.begin(); iter != m_Regions.end(); ++iter)
{
IL2CPP_FREE((*iter)->start);
IL2CPP_FREE(*iter);
}
m_Regions.clear();
}
void* MemoryPool::Malloc(size_t size)
{
size = MakeMultipleOf(size, kMemoryAlignment);
Region* region = m_Regions.back();
if (region->free < size)
region = AddRegion(size);
IL2CPP_ASSERT(region->free >= size);
void* value = region->current;
region->current += size;
region->free -= size;
return value;
}
void* MemoryPool::Calloc(size_t count, size_t size)
{
void* ret = Malloc(count * size);
return memset(ret, 0, count * size);
}
MemoryPool::Region* MemoryPool::AddRegion(size_t size)
{
Region* region = (Region*)IL2CPP_MALLOC(sizeof(Region));
size_t allocationSize = std::max(kDefaultRegionSize, MakeMultipleOf(size, kPageSize));
region->start = region->current = (char*)IL2CPP_MALLOC(allocationSize);
region->size = region->free = allocationSize;
m_Regions.push_back(region);
return region;
}
}
}