少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
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
#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)
    {
        return Malloc(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_ZERO(allocationSize);
        region->size = region->free = allocationSize;
        m_Regions.push_back(region);
 
        return region;
    }
}
}