From a91c52e16909976b40951cf2893f2349e9ebf25d Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sun, 26 Mar 2006 21:15:09 +0000 Subject: (svn r4125) - Feature: Add a general TIC() TOC() mechanism using rdtsc or something similar on non-i386 architectures to performance-tune (critical) code. Some systems are probably missing, but those can be added later. --- debug.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'debug.h') diff --git a/debug.h b/debug.h index 71d0dcbd1..9721fb882 100644 --- a/debug.h +++ b/debug.h @@ -26,4 +26,27 @@ void CDECL debug(const char *s, ...); void SetDebugString(const char *s); const char *GetDebugString(void); +/* MSVC of course has to have a different syntax for long long *sigh* */ +#ifdef _MSC_VER +# define OTTD_PRINTF64 "I64" +#else +# define OTTD_PRINTF64 "ll" +#endif + +// Used for profiling +#define TIC() {\ + extern uint64 _rdtsc(void);\ + uint64 _xxx_ = _rdtsc();\ + static uint64 __sum__ = 0;\ + static uint32 __i__ = 0; + +#define TOC(str, count)\ + __sum__ += _rdtsc() - _xxx_;\ + if (++__i__ == count) {\ + printf("[%s]: %" OTTD_PRINTF64 "u [avg: %.1f]\n", str, __sum__, __sum__/(double)__i__);\ + __i__ = 0;\ + __sum__ = 0;\ + }\ +} + #endif /* DEBUG_H */ -- cgit v1.2.3-54-g00ecf