1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/*
* File: debug.h
* Summary: Assertions and such.
* Written by: Linley Henzell and Jesse Jones
*/
#ifndef DEBUG_H
#define DEBUG_H
// Synch with ANSI definitions.
#if !(defined(DEBUG) ^ defined(NDEBUG))
#error DEBUG and NDEBUG are out of sync!
#endif
// Synch with MSL definitions.
#ifdef __MSL__
#if __MSL__ && DEBUG != defined(MSIPL_DEBUG_MODE)
#error DEBUG and MSIPL_DEBUG_MODE are out of sync!
#endif
#endif
// Synch with MSVC.
#ifdef TARGET_COMPILER_VC
#if _MSC_VER >= 1100 && DEBUG != defined(_DEBUG)
#error DEBUG and _DEBUG are out of sync!
#endif
#endif
#ifndef _lint
#define COMPILE_CHECK(expr, tag) typedef char compile_check_ ## tag[(expr) ? 1 : -1]
#else
#define COMPILE_CHECK(expr, tag)
#endif
#if defined(DEBUG) && !defined(ASSERTS)
#define ASSERTS
#endif
#ifdef ASSERTS
void AssertFailed(const char *expr, const char *file, int line);
#define ASSERT(p) do {if (!(p)) AssertFailed(#p, __FILE__, __LINE__);} while (false)
#define VERIFY(p) ASSERT(p)
void DEBUGSTR(const char *format,...);
void TRACE(const char *format,...);
#else
#define ASSERT(p) ((void) 0)
#define VERIFY(p) do {if (p) ;} while (false)
inline void __DUMMY_TRACE__(...)
{
}
#define DEBUGSTR 1 ? ((void) 0) : __DUMMY_TRACE__
#define TRACE 1 ? ((void) 0) : __DUMMY_TRACE__
#endif
#endif
|