prime/include/Kyoto/Alloc/CSmallAllocPool.hpp

45 lines
1.2 KiB
C++
Raw Normal View History

#ifndef _CSMALLALLOCPOOL
#define _CSMALLALLOCPOOL
#include <types.h>
2022-09-20 04:35:24 +00:00
#include <Kyoto/Alloc/AllocatorCommon.hpp>
class CSmallAllocPool {
public:
2022-09-18 06:05:46 +00:00
CSmallAllocPool(uint len, void* mainData, void* bookKeeping);
void* FindFree(int len);
void* Alloc(uint size);
bool Free(const void* ptr);
2022-09-20 04:35:24 +00:00
bool PtrWithinPool(const void* ptr) const {
return u32((reinterpret_cast< const u8* >(ptr) - reinterpret_cast< u8* >(x0_mainData)) / 4) <
x8_numBlocks;
2022-09-18 06:05:46 +00:00
}
2022-09-20 04:35:24 +00:00
uint GetIndexFromPtr(const void* ptr) const {
return ((const u8*)ptr - x0_mainData) / kPointerSize;
}
2022-09-14 05:24:41 +00:00
long GetEntryValue(uint idx) const { return (long)*((u8*)x4_bookKeeping + idx); }
u8* GetPtrFromIndex(unsigned int idx) const {
return static_cast< u8* >(x0_mainData) + (idx << 3);
}
2022-09-20 04:35:24 +00:00
uint GetNumBlocksAvailable() const { return x18_numBlocksAvailable; }
uint GetTotalEntries() const { return x8_numBlocks; }
uint GetAllocatedSize() const { return x8_numBlocks - x18_numBlocksAvailable; }
uint GetNumAllocs() const { return x1c_numAllocs; }
private:
void* x0_mainData;
void* x4_bookKeeping;
int x8_numBlocks;
void* xc_cachedBookKeepingOffset;
int x10_;
int x14_;
uint x18_numBlocksAvailable;
uint x1c_numAllocs;
};
#endif // _CSMALLALLOCPOOL