mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-30 09:14:36 +00:00
Check for rdstcp/invariant tsc support.
This commit is contained in:
parent
c0670848d2
commit
c164a70b9d
@ -8,6 +8,7 @@
|
|||||||
# include <windows.h>
|
# include <windows.h>
|
||||||
# include <tlhelp32.h>
|
# include <tlhelp32.h>
|
||||||
# include <inttypes.h>
|
# include <inttypes.h>
|
||||||
|
# include <intrin.h>
|
||||||
#else
|
#else
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
@ -233,6 +234,36 @@ static int64_t SetupHwTimer()
|
|||||||
|
|
||||||
return Profiler::GetTime();
|
return Profiler::GetTime();
|
||||||
}
|
}
|
||||||
|
#elif defined TRACY_HW_TIMER && ( defined __i386 || defined _M_IX86 || defined __x86_64__ || defined _M_X64 )
|
||||||
|
static inline void CpuId( uint32_t* regs, uint32_t leaf )
|
||||||
|
{
|
||||||
|
#if defined _MSC_VER || defined __CYGWIN__
|
||||||
|
__cpuidex( (int*)regs, leaf, 0 );
|
||||||
|
#else
|
||||||
|
__get_cpuid( leaf, regs, regs+1, regs+2, regs+3 );
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static void InitFailure( const char* msg )
|
||||||
|
{
|
||||||
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
|
MessageBoxA( nullptr, msg, "Tracy Profiler initialization failure", MB_ICONSTOP );
|
||||||
|
#else
|
||||||
|
fprintf( stderr, "Tracy Profiler initialization failure: %s\n", msg );
|
||||||
|
#endif
|
||||||
|
exit( 0 );
|
||||||
|
}
|
||||||
|
|
||||||
|
static int64_t SetupHwTimer()
|
||||||
|
{
|
||||||
|
uint32_t regs[4];
|
||||||
|
CpuId( regs, 0x80000001 );
|
||||||
|
if( !( regs[3] & ( 1 << 27 ) ) ) InitFailure( "CPU doesn't support RDTSCP instruction." );
|
||||||
|
CpuId( regs, 0x80000007 );
|
||||||
|
if( !( regs[3] & ( 1 << 8 ) ) ) InitFailure( "CPU doesn't support invariant TSC." );
|
||||||
|
|
||||||
|
return Profiler::GetTime();
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
static int64_t SetupHwTimer()
|
static int64_t SetupHwTimer()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user