Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//===== Copyright <EFBFBD> 1996-2005, Valve Corporation, All rights reserved. ======//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
//===========================================================================//
|
|
|
|
|
|
|
|
|
|
#ifndef MEM_HELPERS_H
|
|
|
|
|
#define MEM_HELPERS_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Normally, the runtime libraries like to mess with the memory returned by malloc(),
|
|
|
|
|
// which can create problems trying to repro bugs in debug builds or in the debugger.
|
|
|
|
|
//
|
|
|
|
|
// If the debugger is present, it initializes data to 0xbaadf00d, which makes floating
|
|
|
|
|
// point numbers come out to about 0.1.
|
|
|
|
|
//
|
|
|
|
|
// If the debugger is not present, and it's a debug build, then you get 0xcdcdcdcd,
|
|
|
|
|
// which is about 25 million.
|
|
|
|
|
//
|
|
|
|
|
// Otherwise, you get uninitialized memory.
|
|
|
|
|
//
|
|
|
|
|
// In here, we make sure the memory is either random garbage, or it's set to
|
|
|
|
|
// 0xffeeffee, which casts to a NAN.
|
|
|
|
|
extern bool g_bInitMemory;
|
|
|
|
|
#define ApplyMemoryInitializations( pMem, nSize ) if ( !g_bInitMemory ) ; else { DoApplyMemoryInitializations( pMem, nSize ); }
|
|
|
|
|
void DoApplyMemoryInitializations( void *pMem, size_t nSize );
|
|
|
|
|
|
|
|
|
|
size_t CalcHeapUsed();
|
|
|
|
|
|
|
|
|
|
#endif // MEM_HELPERS_H
|