mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-06 03:18:13 +00:00
SDL_test: use mutex based on SDL_AtomicInt in memory tracking
SDL_Mutex or SDL_SpinLock cannot be used as these use SDL_malloc internally. ff
This commit is contained in:

committed by
Anonymous Maarten

parent
4c00433b69
commit
c7a1876536
@@ -67,6 +67,16 @@ static SDL_free_func SDL_free_orig = NULL;
|
|||||||
static int s_previous_allocations = 0;
|
static int s_previous_allocations = 0;
|
||||||
static SDL_tracked_allocation *s_tracked_allocations[256];
|
static SDL_tracked_allocation *s_tracked_allocations[256];
|
||||||
static SDL_bool s_randfill_allocations = SDL_FALSE;
|
static SDL_bool s_randfill_allocations = SDL_FALSE;
|
||||||
|
static SDL_AtomicInt s_lock;
|
||||||
|
|
||||||
|
#define LOCK_ALLOCATOR() \
|
||||||
|
do { \
|
||||||
|
if (SDL_AtomicCompareAndSwap(&s_lock, 0, 1)) { \
|
||||||
|
break; \
|
||||||
|
} \
|
||||||
|
SDL_CPUPauseInstruction(); \
|
||||||
|
} while (SDL_TRUE)
|
||||||
|
#define UNLOCK_ALLOCATOR() do { SDL_AtomicSet(&s_lock, 0); } while (0)
|
||||||
|
|
||||||
static unsigned int get_allocation_bucket(void *mem)
|
static unsigned int get_allocation_bucket(void *mem)
|
||||||
{
|
{
|
||||||
@@ -80,12 +90,15 @@ static unsigned int get_allocation_bucket(void *mem)
|
|||||||
static SDL_tracked_allocation* SDL_GetTrackedAllocation(void *mem)
|
static SDL_tracked_allocation* SDL_GetTrackedAllocation(void *mem)
|
||||||
{
|
{
|
||||||
SDL_tracked_allocation *entry;
|
SDL_tracked_allocation *entry;
|
||||||
|
LOCK_ALLOCATOR();
|
||||||
int index = get_allocation_bucket(mem);
|
int index = get_allocation_bucket(mem);
|
||||||
for (entry = s_tracked_allocations[index]; entry; entry = entry->next) {
|
for (entry = s_tracked_allocations[index]; entry; entry = entry->next) {
|
||||||
if (mem == entry->mem) {
|
if (mem == entry->mem) {
|
||||||
|
UNLOCK_ALLOCATOR();
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
UNLOCK_ALLOCATOR();
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,6 +126,7 @@ static void SDL_TrackAllocation(void *mem, size_t size)
|
|||||||
if (!entry) {
|
if (!entry) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
LOCK_ALLOCATOR();
|
||||||
entry->mem = mem;
|
entry->mem = mem;
|
||||||
entry->size = size;
|
entry->size = size;
|
||||||
|
|
||||||
@@ -158,6 +172,7 @@ static void SDL_TrackAllocation(void *mem, size_t size)
|
|||||||
|
|
||||||
entry->next = s_tracked_allocations[index];
|
entry->next = s_tracked_allocations[index];
|
||||||
s_tracked_allocations[index] = entry;
|
s_tracked_allocations[index] = entry;
|
||||||
|
UNLOCK_ALLOCATOR();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void SDL_UntrackAllocation(void *mem)
|
static void SDL_UntrackAllocation(void *mem)
|
||||||
@@ -165,6 +180,7 @@ static void SDL_UntrackAllocation(void *mem)
|
|||||||
SDL_tracked_allocation *entry, *prev;
|
SDL_tracked_allocation *entry, *prev;
|
||||||
int index = get_allocation_bucket(mem);
|
int index = get_allocation_bucket(mem);
|
||||||
|
|
||||||
|
LOCK_ALLOCATOR();
|
||||||
prev = NULL;
|
prev = NULL;
|
||||||
for (entry = s_tracked_allocations[index]; entry; entry = entry->next) {
|
for (entry = s_tracked_allocations[index]; entry; entry = entry->next) {
|
||||||
if (mem == entry->mem) {
|
if (mem == entry->mem) {
|
||||||
@@ -174,10 +190,12 @@ static void SDL_UntrackAllocation(void *mem)
|
|||||||
s_tracked_allocations[index] = entry->next;
|
s_tracked_allocations[index] = entry->next;
|
||||||
}
|
}
|
||||||
SDL_free_orig(entry);
|
SDL_free_orig(entry);
|
||||||
|
UNLOCK_ALLOCATOR();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
prev = entry;
|
prev = entry;
|
||||||
}
|
}
|
||||||
|
UNLOCK_ALLOCATOR();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rand_fill_memory(void* ptr, size_t start, size_t end)
|
static void rand_fill_memory(void* ptr, size_t start, size_t end)
|
||||||
|
Reference in New Issue
Block a user