|
|
@ -42,13 +42,63 @@ namespace {
|
|
|
|
bool a_HaveQueryPerformance = false;
|
|
|
|
bool a_HaveQueryPerformance = false;
|
|
|
|
LARGE_INTEGER a_QueryPerformanceFrequency;
|
|
|
|
LARGE_INTEGER a_QueryPerformanceFrequency;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NL_OS_UNIX
|
|
|
|
|
|
|
|
# if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
|
|
|
|
|
|
|
|
# if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
|
|
|
|
|
|
|
|
# define NL_MONOTONIC_CLOCK
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef NL_MONOTONIC_CLOCK
|
|
|
|
|
|
|
|
bool a_CheckedMonotonicClock = false;
|
|
|
|
|
|
|
|
bool a_HasMonotonicClock = false;
|
|
|
|
|
|
|
|
uint64 a_MonotonicClockFrequency = 0;
|
|
|
|
|
|
|
|
uint64 a_MonotonicClockResolutionNs = 0;
|
|
|
|
|
|
|
|
bool hasMonotonicClock()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!a_CheckedMonotonicClock)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
/* Initialize the local time engine.
|
|
|
|
|
|
|
|
* On Unix, this method will find out if the Monotonic Clock is supported
|
|
|
|
|
|
|
|
* (seems supported by kernel 2.6, not by kernel 2.4). See getLocalTime().
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct timespec tv;
|
|
|
|
|
|
|
|
if ((clock_gettime( CLOCK_MONOTONIC, &tv ) == 0) &&
|
|
|
|
|
|
|
|
(clock_getres( CLOCK_MONOTONIC, &tv ) == 0))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// nldebug( "Monotonic local time supported (resolution %.6f ms)", ((float)tv.tv_sec)*1000.0f + ((float)tv.tv_nsec)/1000000.0f );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (tv.tv_sec > 0)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
nlwarning("Monotonic clock not ok, resolution > 1s");
|
|
|
|
|
|
|
|
a_HasMonotonicClock = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
uint64 nsPerTick = tv.tv_nsec;
|
|
|
|
|
|
|
|
uint64 nsPerSec = 1000000000L;
|
|
|
|
|
|
|
|
uint64 tickPerSec = nsPerSec / nsPerTick;
|
|
|
|
|
|
|
|
a_MonotonicClockFrequency = tickPerSec;
|
|
|
|
|
|
|
|
a_MonotonicClockResolutionNs = nsPerTick;
|
|
|
|
|
|
|
|
a_HasMonotonicClock = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
a_HasMonotonicClock = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
a_CheckedMonotonicClock = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return a_HasMonotonicClock;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CTime::probeTimerInfo(CTime::CTimerInfo &result)
|
|
|
|
void CTime::probeTimerInfo(CTime::CTimerInfo &result)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
breakable
|
|
|
|
breakable
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
LARGE_INTEGER winPerfFreq;
|
|
|
|
LARGE_INTEGER winPerfFreq;
|
|
|
|
LARGE_INTEGER winPerfCount;
|
|
|
|
LARGE_INTEGER winPerfCount;
|
|
|
|
DWORD lowResTime;
|
|
|
|
DWORD lowResTime;
|
|
|
@ -78,21 +128,34 @@ void CTime::probeTimerInfo(CTime::CTimerInfo &result)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
lowResTime = timeGetTime();
|
|
|
|
lowResTime = timeGetTime();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#else
|
|
|
|
// nldebug("Probe of timer info not implemented");
|
|
|
|
|
|
|
|
result.IsHighPrecisionAvailable = false;
|
|
|
|
|
|
|
|
result.RequiresSingleCore = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint64 cpuMask = IProcess::getCurrentProcess()->getCPUMask();
|
|
|
|
// Other platforms are awesome. Generic implementation for now.
|
|
|
|
uint64 threadMask = IThread::getCurrentThread()->getCPUMask();
|
|
|
|
TTime localTime = getLocalTime();
|
|
|
|
|
|
|
|
result.IsHighPrecisionAvailable = true;
|
|
|
|
|
|
|
|
result.HighPrecisionResolution = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ifdef NL_MONOTONIC_CLOCK
|
|
|
|
|
|
|
|
timespec monoClock;
|
|
|
|
|
|
|
|
if (hasMonotonicClock())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &monoClock);
|
|
|
|
|
|
|
|
result.HighPrecisionResolution = a_MonotonicClockFrequency;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
nldebug("Monotonic clock not available");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
uint64 cpuMask = IProcess::getCurrentProcess()->getCPUMask();
|
|
|
|
TTicks timerFrequency = 0;
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
#endif
|
|
|
|
uint64 threadMask = IThread::getCurrentThread()->getCPUMask(); // broken on linux, don't expect it to work anywhere
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
uint64 threadMask = cpuMask;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
uint identical = 0; // Identical stamps may indicate the os handling backwards glitches.
|
|
|
|
uint identical = 0; // Identical stamps may indicate the os handling backwards glitches.
|
|
|
|
uint backwards = 0; // Happens when the timers are not always in sync and the implementation is faulty.
|
|
|
|
uint backwards = 0; // Happens when the timers are not always in sync and the implementation is faulty.
|
|
|
@ -109,7 +172,12 @@ void CTime::probeTimerInfo(CTime::CTimerInfo &result)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (cpuMask & currentBit)
|
|
|
|
if (cpuMask & currentBit)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
IThread::getCurrentThread()->setCPUMask(currentBit);
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
|
|
|
|
if (!IThread::getCurrentThread()->setCPUMask(currentBit))
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
if (!IProcess::getCurrentProcess()->setCPUMask(currentBit))
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
break; // Thread was set to last cpu.
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
// Make sure the thread is rescheduled.
|
|
|
|
// Make sure the thread is rescheduled.
|
|
|
|
SwitchToThread();
|
|
|
|
SwitchToThread();
|
|
|
@ -152,13 +220,53 @@ void CTime::probeTimerInfo(CTime::CTimerInfo &result)
|
|
|
|
++regular;
|
|
|
|
++regular;
|
|
|
|
lowResTime = lowResTimeN;
|
|
|
|
lowResTime = lowResTimeN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifdef NL_OS_UNIX
|
|
|
|
|
|
|
|
sched_yield();
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
nlSleep(0);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
# ifdef NL_MONOTONIC_CLOCK
|
|
|
|
|
|
|
|
if (hasMonotonicClock())
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
timespec monoClockN;
|
|
|
|
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &monoClockN);
|
|
|
|
|
|
|
|
if (monoClock.tv_sec == monoClockN.tv_sec && monoClock.tv_nsec == monoClockN.tv_nsec)
|
|
|
|
|
|
|
|
++identical;
|
|
|
|
|
|
|
|
if (monoClockN.tv_sec < monoClock.tv_sec || (monoClock.tv_sec == monoClockN.tv_sec && monoClockN.tv_nsec < monoClock.tv_nsec))
|
|
|
|
|
|
|
|
++backwards;
|
|
|
|
|
|
|
|
if (monoClock.tv_sec == monoClockN.tv_sec && (monoClockN.tv_nsec - monoClock.tv_nsec > 50000000L))
|
|
|
|
|
|
|
|
++skipping;
|
|
|
|
|
|
|
|
else if ((monoClock.tv_sec == monoClockN.tv_sec && monoClock.tv_nsec < monoClockN.tv_nsec) || monoClock.tv_sec < monoClockN.tv_sec)
|
|
|
|
|
|
|
|
++regular;
|
|
|
|
|
|
|
|
monoClock.tv_sec = monoClockN.tv_sec;
|
|
|
|
|
|
|
|
monoClock.tv_nsec = monoClockN.tv_nsec;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
TTime localTimeN = getLocalTime();
|
|
|
|
|
|
|
|
if (localTimeN == localTime)
|
|
|
|
|
|
|
|
++identical;
|
|
|
|
|
|
|
|
if (localTimeN < localTime || localTimeN - localTime < 0)
|
|
|
|
|
|
|
|
++backwards;
|
|
|
|
|
|
|
|
if (localTimeN - localTime > 50)
|
|
|
|
|
|
|
|
++skipping;
|
|
|
|
|
|
|
|
else if (localTimeN > localTime)
|
|
|
|
|
|
|
|
++regular;
|
|
|
|
|
|
|
|
localTime = localTimeN;
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
currentBit <<= 1;
|
|
|
|
currentBit <<= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
IThread::getCurrentThread()->setCPUMask(threadMask);
|
|
|
|
IThread::getCurrentThread()->setCPUMask(threadMask);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
IProcess::getCurrentProcess()->setCPUMask(threadMask);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
nldebug("Timer resolution: %i Hz", (int)(result.HighPrecisionResolution));
|
|
|
|
nldebug("Timer resolution: %i Hz", (int)(result.HighPrecisionResolution));
|
|
|
|
nldebug("Time identical: %i, backwards: %i, regular: %i, skipping: %i, frequency bug: %i", identical, backwards, regular, skipping, frequencybug);
|
|
|
|
nldebug("Time identical: %i, backwards: %i, regular: %i, skipping: %i, frequency bug: %i", identical, backwards, regular, skipping, frequencybug);
|
|
|
@ -266,49 +374,17 @@ TTime CTime::getLocalTime ()
|
|
|
|
|
|
|
|
|
|
|
|
#elif defined (NL_OS_UNIX)
|
|
|
|
#elif defined (NL_OS_UNIX)
|
|
|
|
|
|
|
|
|
|
|
|
static bool initdone = false;
|
|
|
|
#ifdef NL_MONOTONIC_CLOCK
|
|
|
|
static bool isMonotonicClockSupported = false;
|
|
|
|
|
|
|
|
if ( ! initdone )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
|
|
|
|
if (hasMonotonicClock())
|
|
|
|
#if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the local time engine.
|
|
|
|
|
|
|
|
* On Unix, this method will find out if the Monotonic Clock is supported
|
|
|
|
|
|
|
|
* (seems supported by kernel 2.6, not by kernel 2.4). See getLocalTime().
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct timespec tv;
|
|
|
|
|
|
|
|
if ( (clock_gettime( CLOCK_MONOTONIC, &tv ) == 0) &&
|
|
|
|
|
|
|
|
(clock_getres( CLOCK_MONOTONIC, &tv ) == 0) )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// nldebug( "Monotonic local time supported (resolution %.6f ms)", ((float)tv.tv_sec)*1000.0f + ((float)tv.tv_nsec)/1000000.0f );
|
|
|
|
|
|
|
|
isMonotonicClockSupported = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// nlwarning( "Monotonic local time not supported, caution with time sync" );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initdone = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
|
|
|
|
|
|
|
|
#if defined(_POSIX_MONOTONIC_CLOCK) && (_POSIX_MONOTONIC_CLOCK >= 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( isMonotonicClockSupported )
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
struct timespec tv;
|
|
|
|
timespec tv;
|
|
|
|
// This is not affected by system time changes.
|
|
|
|
// This is not affected by system time changes.
|
|
|
|
if ( clock_gettime( CLOCK_MONOTONIC, &tv ) != 0 )
|
|
|
|
if ( clock_gettime( CLOCK_MONOTONIC, &tv ) != 0 )
|
|
|
|
nlerror ("Can't get clock time again");
|
|
|
|
nlerror ("Can't get clock time again");
|
|
|
|
return (TTime)tv.tv_sec * (TTime)1000 + (TTime)((tv.tv_nsec/*+500*/) / 1000000);
|
|
|
|
return (TTime)tv.tv_sec * (TTime)1000 + (TTime)((tv.tv_nsec/*+500*/) / 1000000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// This is affected by system time changes.
|
|
|
|
// This is affected by system time changes.
|
|
|
|