blob: 1dc48b568bef35e8c9454a62d2bc7be3825ec9ee (
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
|
#ifndef HEAP_ALLOCATOR_H_
#define HEAP_ALLOCATOR_H_
#include "BaseAllocator.h"
#define FIXED_HEAP_ALLOC_COUNT_USED !MASTER_BUILD
class FixedHeapAllocator : public BaseAllocator
{
void* m_TlsfPool;
void* m_pMemoryBase;
UInt32 m_nMemorySize;
#if FIXED_HEAP_ALLOC_COUNT_USED
UInt32 m_nSizeUsed;
#endif
public:
FixedHeapAllocator(void* pMemoryBase, UInt32 nMemorySize, const char* name);
~FixedHeapAllocator();
virtual void* Allocate (size_t size, int align);
virtual void* Reallocate (void* p, size_t size, size_t align);
virtual void Deallocate (void* p);
virtual bool Contains (const void* p);
virtual bool CheckIntegrity();
virtual UInt32 GetPtrSize(void* p);
};
#endif
|