Skip to content

Commit baab9dd

Browse files
xezonOmniBlade
authored andcommitted
Fix game pools with __SANITIZE_ADDRESS__
1 parent f7ae10f commit baab9dd

File tree

4 files changed

+23
-29
lines changed

4 files changed

+23
-29
lines changed

src/game/common/system/gamememory.cpp

+14-5
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ void Init_Memory_Manager()
9494
captainslog_dbgassert(g_thePreMainInitFlag, "memory manager is already inited");
9595
}
9696

97-
#if defined GAME_DEBUG && !defined __SANITIZE_ADDRESS__
98-
97+
#if defined GAME_DEBUG
9998
// Check that new and delete both use our custom implementation.
10099
g_theLinkChecker = 0;
101100

@@ -180,7 +179,6 @@ void Free_From_W3D_Mem_Pool(void *pool, void *data)
180179
}
181180

182181
// These all override the global news and deletes just by being linked.
183-
#ifndef __SANITIZE_ADDRESS__
184182
void *operator new(size_t bytes)
185183
{
186184
++g_theLinkChecker;
@@ -199,7 +197,7 @@ void *operator new[](size_t bytes)
199197
return g_dynamicMemoryAllocator->Allocate_Bytes(bytes);
200198
}
201199

202-
void operator delete(void *ptr)
200+
void operator delete(void *ptr) noexcept
203201
{
204202
++g_theLinkChecker;
205203
Init_Memory_Manager_Pre_Main();
@@ -208,12 +206,23 @@ void operator delete(void *ptr)
208206
g_dynamicMemoryAllocator->Free_Bytes(ptr);
209207
}
210208

211-
void operator delete[](void *ptr)
209+
void operator delete[](void *ptr) noexcept
212210
{
213211
++g_theLinkChecker;
214212
Init_Memory_Manager_Pre_Main();
215213
captainslog_dbgassert(g_dynamicMemoryAllocator, "must init memory manager before calling global operator delete");
216214

217215
g_dynamicMemoryAllocator->Free_Bytes(ptr);
218216
}
217+
218+
#if __cplusplus >= 201402L
219+
void operator delete(void *ptr, size_t sz) noexcept
220+
{
221+
operator delete(ptr);
222+
}
223+
224+
void operator delete[](void *ptr, size_t sz) noexcept
225+
{
226+
operator delete[](ptr);
227+
}
219228
#endif

src/game/common/system/memdynalloc.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ DynamicMemoryAllocator::DynamicMemoryAllocator() :
3636

3737
void DynamicMemoryAllocator::Init(MemoryPoolFactory *factory, int subpools, PoolInitRec const *const params)
3838
{
39-
#ifndef __SANITIZE_ADDRESS__
4039
PoolInitRec const defaults[7] = {
4140
{ "dmaPool_16", 16, 64, 64 },
4241
{ "dmaPool_32", 32, 64, 64 },
@@ -66,7 +65,6 @@ void DynamicMemoryAllocator::Init(MemoryPoolFactory *factory, int subpools, Pool
6665
for (int i = 0; i < m_poolCount; ++i) {
6766
m_pools[i] = m_factory->Create_Memory_Pool(&init_list[i]);
6867
}
69-
#endif
7068
}
7169

7270
DynamicMemoryAllocator::~DynamicMemoryAllocator()

src/game/common/system/mempool.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ int MemoryPool::Free_Blob(MemoryPoolBlob *blob)
9999

100100
void *MemoryPool::Allocate_Block_No_Zero()
101101
{
102+
#ifdef __SANITIZE_ADDRESS__
103+
return malloc(m_allocationSize);
104+
#else
102105
ScopedCriticalSectionClass scs(g_memoryPoolCriticalSection);
103106

104107
if (m_firstBlobWithFreeBlocks != nullptr && m_firstBlobWithFreeBlocks->m_firstFreeBlock == nullptr) {
@@ -124,6 +127,7 @@ void *MemoryPool::Allocate_Block_No_Zero()
124127
m_peakUsedBlocksInPool = std::max(m_peakUsedBlocksInPool, m_usedBlocksInPool);
125128

126129
return block->Get_User_Data();
130+
#endif
127131
}
128132

129133
void *MemoryPool::Allocate_Block()
@@ -139,7 +143,9 @@ void MemoryPool::Free_Block(void *block)
139143
if (block == nullptr) {
140144
return;
141145
}
142-
146+
#ifdef __SANITIZE_ADDRESS__
147+
free(block);
148+
#else
143149
ScopedCriticalSectionClass scs(g_memoryPoolCriticalSection);
144150
MemoryPoolSingleBlock *mp_block = MemoryPoolSingleBlock::Recover_Block_From_User_Data(block);
145151
MemoryPoolBlob *mp_blob = mp_block->m_owningBlob;
@@ -152,6 +158,7 @@ void MemoryPool::Free_Block(void *block)
152158
m_firstBlobWithFreeBlocks = mp_blob;
153159
--m_usedBlocksInPool;
154160
}
161+
#endif
155162
}
156163

157164
int MemoryPool::Count_Blobs()

src/game/common/system/mempoolobj.h

+1-21
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,9 @@ class MemoryPoolObject
3333
virtual ~MemoryPoolObject() {}
3434
virtual MemoryPool *Get_Object_Pool() = 0;
3535

36-
#ifndef __SANITIZE_ADDRESS__
3736
void *operator new(size_t) = delete;
3837
void operator delete(void *) { captainslog_dbgassert(0, "This should be impossible to call"); }
39-
#endif
38+
4039
// Class implementing Get_Object_Pool needs to provide these
4140
// use macros below to generated them.
4241
};
@@ -45,20 +44,6 @@ class MemoryPoolObject
4544
// based class to implement required functions. "classname" must match
4645
// the name of the class in which it is used, "poolname" should match a
4746
// gamememoryinit.cpp entry.
48-
#ifdef __SANITIZE_ADDRESS__
49-
#define IMPLEMENT_NAMED_POOL(classname, poolname) \
50-
private: \
51-
virtual MemoryPool *Get_Object_Pool() override { return nullptr; } \
52-
\
53-
public: \
54-
enum classname##MagicEnum{ classname##_GLUE_NOT_IMPLEMENTED = 0 };
55-
56-
#define IMPLEMENT_ABSTRACT_POOL(classname) \
57-
protected: \
58-
virtual MemoryPool *Get_Object_Pool() override { throw CODE_01; } \
59-
\
60-
private:
61-
#else
6247
#define IMPLEMENT_NAMED_POOL(classname, poolname) \
6348
private: \
6449
static MemoryPool *Get_Class_Pool() \
@@ -117,7 +102,6 @@ protected: \
117102
} \
118103
\
119104
private:
120-
#endif
121105

122106
#define IMPLEMENT_POOL(classname) IMPLEMENT_NAMED_POOL(classname, classname);
123107
// NEW_POOL_OBJ is obsolete. Can be removed.
@@ -129,13 +113,9 @@ protected: \
129113
inline void MemoryPoolObject::Delete_Instance()
130114
{
131115
if (this != nullptr) {
132-
#ifdef __SANITIZE_ADDRESS__
133-
delete this;
134-
#else
135116
MemoryPool *pool = Get_Object_Pool();
136117
this->~MemoryPoolObject();
137118
pool->Free_Block(this);
138-
#endif
139119
}
140120
}
141121

0 commit comments

Comments
 (0)