mirror of
https://github.com/glest/glest-source.git
synced 2025-08-12 03:14:00 +02:00
- speed up leak checker
- fix a few bugs that were discovered
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
#include "leak_dumper.h"
|
||||
|
||||
#ifdef SL_LEAK_DUMP
|
||||
using Shared::Platform::MutexSafeWrapper;
|
||||
|
||||
bool AllocInfo::application_binary_initialized = false;
|
||||
//static AllocRegistry memoryLeaks = AllocRegistry::getInstance();
|
||||
@@ -24,59 +23,9 @@ bool AllocInfo::application_binary_initialized = false;
|
||||
|
||||
AllocRegistry::~AllocRegistry() {
|
||||
dump("leak_dump.log");
|
||||
}
|
||||
|
||||
void AllocRegistry::allocate(AllocInfo info) {
|
||||
//if(info.line == 0) return;
|
||||
|
||||
MutexSafeWrapper safeMutexMasterList(mutex);
|
||||
//printf("ALLOCATE.\tfile: %s, line: %d, bytes: %lu, array: %d inuse: %d\n", info.file, info.line, info.bytes, info.array, info.inuse);
|
||||
|
||||
if(info.line > 0) {
|
||||
++allocCount;
|
||||
allocBytes += info.bytes;
|
||||
}
|
||||
//bool found = false;
|
||||
for(int i = (nextFreeIndex >= 0 ? nextFreeIndex : 0); i < maxAllocs; ++i) {
|
||||
if(allocs[i].freetouse == true && allocs[i].inuse == false) {
|
||||
allocs[i]= info;
|
||||
nextFreeIndex=-1;
|
||||
//found = true;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//if(found == false) {
|
||||
//printf("ALLOCATE NOT MONITORED\n");
|
||||
printf("ALLOCATE NOT MONITORED.\tfile: %s, line: %d, ptr [%p], bytes: %lu, array: %d inuse: %d, \n%s\n", info.file, info.line, info.ptr, info.bytes, info.array, info.inuse, info.stack.c_str());
|
||||
|
||||
++nonMonitoredCount;
|
||||
nonMonitoredBytes+= info.bytes;
|
||||
//}
|
||||
}
|
||||
|
||||
void AllocRegistry::deallocate(void* ptr, bool array,const char* file, int line) {
|
||||
//if(line == 0) return;
|
||||
|
||||
MutexSafeWrapper safeMutexMasterList(mutex);
|
||||
|
||||
//bool found = false;
|
||||
for(int i=0; i < maxAllocs; ++i) {
|
||||
if(allocs[i].freetouse == false && allocs[i].inuse == true &&
|
||||
allocs[i].ptr == ptr && allocs[i].array == array) {
|
||||
allocs[i].freetouse= true;
|
||||
allocs[i].inuse = false;
|
||||
nextFreeIndex=i;
|
||||
|
||||
//found = true;
|
||||
//break;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//if(found == false) {
|
||||
if(line > 0) printf("WARNING, possible error on pointer delete for ptr [%p] array = %d, file [%s] line: %d\n%s\n",ptr,array,file, line,AllocInfo::getStackTrace().c_str());
|
||||
//}
|
||||
free(mutex);
|
||||
mutex = NULL;
|
||||
}
|
||||
|
||||
void AllocRegistry::dump(const char *path) {
|
||||
@@ -98,7 +47,7 @@ void AllocRegistry::dump(const char *path) {
|
||||
leakBytes += info.bytes;
|
||||
|
||||
//allocs[i].stack = AllocInfo::getStackTrace();
|
||||
fprintf(f, "Leak #%d.\tfile: %s, line: %d, ptr [%p], bytes: %lu, array: %d, inuse: %d\n%s", ++leakCount, info.file, info.line, info.ptr, info.bytes, info.array,info.inuse,info.stack.c_str());
|
||||
fprintf(f, "Leak #%d.\tfile: %s, line: %d, ptr [%p], bytes: %lu, array: %d, inuse: %d\n%s\n", ++leakCount, info.file, info.line, info.ptr, info.bytes, info.array,info.inuse,info.stack.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user