mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 03:32:10 +08:00
219 lines
4.7 KiB
C
219 lines
4.7 KiB
C
|
#if !defined(STEAM) && !defined(NO_MALLOC_OVERRIDE)
|
||
|
|
||
|
#if defined(_DEBUG) && !defined(USE_MEM_DEBUG)
|
||
|
#define USE_MEM_DEBUG 1
|
||
|
#endif
|
||
|
|
||
|
#if defined(NO_HOOK_MALLOC)
|
||
|
#undef USE_MEM_DEBUG
|
||
|
#endif
|
||
|
|
||
|
#if (defined(_DEBUG) || !defined(_INC_CRTDBG)) || defined(MEMDBGON_H)
|
||
|
|
||
|
#include "basetypes.h"
|
||
|
#ifdef _WIN32
|
||
|
#include <tchar.h>
|
||
|
#else
|
||
|
#include <wchar.h>
|
||
|
#endif
|
||
|
#include <string.h>
|
||
|
#include <malloc.h>
|
||
|
#include "commonmacros.h"
|
||
|
#include "memalloc.h"
|
||
|
|
||
|
#if defined(USE_MEM_DEBUG)
|
||
|
#if defined( POSIX )
|
||
|
|
||
|
#define _NORMAL_BLOCK 1
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <glob.h>
|
||
|
#include <new>
|
||
|
#include <sys/types.h>
|
||
|
#if !defined( DID_THE_OPERATOR_NEW )
|
||
|
#define DID_THE_OPERATOR_NEW
|
||
|
void* operator new(size_t nSize, int blah, const char* pFileName, int nLine);
|
||
|
void* operator new[](size_t nSize, int blah, const char* pFileName, int nLine);
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
|
||
|
#if !defined(_DEBUG)
|
||
|
#define _DEBUG 1
|
||
|
#include <crtdbg.h>
|
||
|
#undef _DEBUG
|
||
|
#else
|
||
|
#include <crtdbg.h>
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#include "memdbgoff.h"
|
||
|
|
||
|
#define MEM_OVERRIDE_ON 1
|
||
|
|
||
|
#undef malloc
|
||
|
#undef realloc
|
||
|
#undef calloc
|
||
|
#undef _expand
|
||
|
#undef free
|
||
|
#undef _msize
|
||
|
#undef _aligned_malloc
|
||
|
#undef _aligned_free
|
||
|
|
||
|
#ifndef MEMDBGON_H
|
||
|
inline void* MemAlloc_InlineCallocMemset(void* pMem, size_t nCount, size_t nElementSize)
|
||
|
{
|
||
|
memset(pMem, 0, nElementSize * nCount);
|
||
|
return pMem;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#define calloc(c, s) MemAlloc_InlineCallocMemset(malloc(c*s), c, s)
|
||
|
#define free(p) g_pMemAlloc->Free( p )
|
||
|
#define _msize(p) g_pMemAlloc->GetSize( p )
|
||
|
#define _expand(p, s) _expand_NoLongerSupported(p, s)
|
||
|
#define _aligned_free( p ) MemAlloc_FreeAligned( p )
|
||
|
|
||
|
#if defined(USE_MEM_DEBUG)
|
||
|
|
||
|
#define malloc(s) g_pMemAlloc->Alloc( s, __FILE__, __LINE__)
|
||
|
#define realloc(p, s) g_pMemAlloc->Realloc( p, s, __FILE__, __LINE__ )
|
||
|
#define _aligned_malloc( s, a ) MemAlloc_AllocAligned( s, a, __FILE__, __LINE__ )
|
||
|
|
||
|
#define _malloc_dbg(s, t, f, l) WHYCALLINGTHISDIRECTLY(s)
|
||
|
|
||
|
#if !defined( LINUX )
|
||
|
#if defined(__AFX_H__) && defined(DEBUG_NEW)
|
||
|
#define new DEBUG_NEW
|
||
|
#else
|
||
|
#undef new
|
||
|
#define MEMALL_DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
||
|
#define new MEMALL_DEBUG_NEW
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#undef _strdup
|
||
|
#undef strdup
|
||
|
#undef _wcsdup
|
||
|
#undef wcsdup
|
||
|
|
||
|
#define _strdup(s) MemAlloc_StrDup(s, __FILE__, __LINE__)
|
||
|
#define strdup(s) MemAlloc_StrDup(s, __FILE__, __LINE__)
|
||
|
#define _wcsdup(s) MemAlloc_WcStrDup(s, __FILE__, __LINE__)
|
||
|
#define wcsdup(s) MemAlloc_WcStrDup(s, __FILE__, __LINE__)
|
||
|
|
||
|
#if !defined(MEMDBGON_H)
|
||
|
|
||
|
inline char* MemAlloc_StrDup(const char* pString, const char* pFileName, unsigned nLine)
|
||
|
{
|
||
|
char* pMemory;
|
||
|
|
||
|
if (!pString)
|
||
|
return NULL;
|
||
|
|
||
|
size_t len = strlen(pString) + 1;
|
||
|
if ((pMemory = (char*)g_pMemAlloc->Alloc(len, pFileName, nLine)) != NULL)
|
||
|
{
|
||
|
return strcpy(pMemory, pString);
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
inline wchar_t* MemAlloc_WcStrDup(const wchar_t* pString, const char* pFileName, unsigned nLine)
|
||
|
{
|
||
|
wchar_t* pMemory;
|
||
|
|
||
|
if (!pString)
|
||
|
return NULL;
|
||
|
|
||
|
size_t len = (wcslen(pString) + 1);
|
||
|
if ((pMemory = (wchar_t*)g_pMemAlloc->Alloc(len * sizeof(wchar_t), pFileName, nLine)) != NULL)
|
||
|
{
|
||
|
return wcscpy(pMemory, pString);
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
#define malloc(s) g_pMemAlloc->Alloc( s )
|
||
|
#define realloc(p, s) g_pMemAlloc->Realloc( p, s )
|
||
|
#define _aligned_malloc( s, a ) MemAlloc_AllocAligned( s, a )
|
||
|
|
||
|
#ifndef _malloc_dbg
|
||
|
#define _malloc_dbg(s, t, f, l) WHYCALLINGTHISDIRECTLY(s)
|
||
|
#endif
|
||
|
|
||
|
#undef new
|
||
|
|
||
|
#undef _strdup
|
||
|
#undef strdup
|
||
|
#undef _wcsdup
|
||
|
#undef wcsdup
|
||
|
|
||
|
#define _strdup(s) MemAlloc_StrDup(s)
|
||
|
#define strdup(s) MemAlloc_StrDup(s)
|
||
|
#define _wcsdup(s) MemAlloc_WcStrDup(s)
|
||
|
#define wcsdup(s) MemAlloc_WcStrDup(s)
|
||
|
|
||
|
#if !defined(MEMDBGON_H)
|
||
|
|
||
|
inline char* MemAlloc_StrDup(const char* pString)
|
||
|
{
|
||
|
char* pMemory;
|
||
|
|
||
|
if (!pString)
|
||
|
return NULL;
|
||
|
|
||
|
size_t len = strlen(pString) + 1;
|
||
|
if ((pMemory = (char*)g_pMemAlloc->Alloc(len)) != NULL)
|
||
|
{
|
||
|
return strcpy(pMemory, pString);
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
inline wchar_t* MemAlloc_WcStrDup(const wchar_t* pString)
|
||
|
{
|
||
|
wchar_t* pMemory;
|
||
|
|
||
|
if (!pString)
|
||
|
return NULL;
|
||
|
|
||
|
size_t len = (wcslen(pString) + 1);
|
||
|
if ((pMemory = (wchar_t*)g_pMemAlloc->Alloc(len * sizeof(wchar_t))) != NULL)
|
||
|
{
|
||
|
return wcscpy(pMemory, pString);
|
||
|
}
|
||
|
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#define MEMDBGON_H
|
||
|
|
||
|
#else
|
||
|
|
||
|
#if defined(USE_MEM_DEBUG)
|
||
|
#ifndef _STATIC_LINKED
|
||
|
#pragma message ("Note: file includes crtdbg.h directly, therefore will cannot use memdbgon.h in non-debug build")
|
||
|
#else
|
||
|
#error "Error: file includes crtdbg.h directly, therefore will cannot use memdbgon.h in non-debug build. Not recoverable in static build"
|
||
|
#endif
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
|
||
|
#include "memalloc.h"
|
||
|
|
||
|
#endif
|