2003-01-22 00:45:36 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_TIMER
|
|
|
|
#define OSG_TIMER 1
|
|
|
|
|
|
|
|
#include <osg/Export>
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
#if defined(_MSC_VER)
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef __int64 Timer_t;
|
|
|
|
}
|
2002-02-09 18:24:39 +08:00
|
|
|
#elif defined(__linux) || defined(__FreeBSD__) || defined(__CYGWIN__)|| defined(__MINGW32__)
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef unsigned long long Timer_t;
|
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(__sgi)
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef unsigned long long Timer_t;
|
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(unix)
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef unsigned long long Timer_t;
|
|
|
|
}
|
2001-10-17 04:56:46 +08:00
|
|
|
#elif defined __APPLE__ || defined macintosh
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef double Timer_t;
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
#else
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <ctime>
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
typedef std::clock_t Timer_t;
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
#endif
|
|
|
|
|
2002-02-23 07:40:25 +08:00
|
|
|
namespace osg {
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** A high resolution, low latency time stamper.*/
|
2001-01-11 00:32:10 +08:00
|
|
|
class SG_EXPORT Timer {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
Timer();
|
|
|
|
~Timer() {}
|
|
|
|
|
2002-01-16 18:36:20 +08:00
|
|
|
#if defined __DARWIN_OSX__ || defined macintosh
|
2002-08-09 05:36:22 +08:00
|
|
|
// PJA MAC OSX - inline Tick() pollutes namespace so badly
|
|
|
|
// we cant compile, due to Carbon.h ...
|
|
|
|
Timer_t tick() const;
|
2001-10-04 05:44:07 +08:00
|
|
|
#else
|
2002-08-09 05:36:22 +08:00
|
|
|
inline Timer_t tick() const;
|
2001-10-04 05:44:07 +08:00
|
|
|
#endif
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
inline double delta_s( Timer_t t1, Timer_t t2 ) const { return (double)(t2 - t1)*_secsPerClick; }
|
|
|
|
inline double delta_m( Timer_t t1, Timer_t t2 ) const { return delta_s(t1,t2)*1e3; }
|
|
|
|
inline double delta_u( Timer_t t1, Timer_t t2 ) const { return delta_s(t1,t2)*1e6; }
|
|
|
|
inline double delta_n( Timer_t t1, Timer_t t2 ) const { return delta_s(t1,t2)*1e9; }
|
|
|
|
|
|
|
|
private :
|
|
|
|
|
2002-08-09 05:36:22 +08:00
|
|
|
double _secsPerClick;
|
|
|
|
bool _useStandardClock;
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2002-06-14 02:27:14 +08:00
|
|
|
# ifdef __sgi
|
2002-08-09 05:36:22 +08:00
|
|
|
unsigned long* _clockAddress_32;
|
|
|
|
unsigned long long* _clockAddress_64;
|
|
|
|
int _cycleCntrSize;
|
|
|
|
// for SGI machines with 32 bit clocks.
|
|
|
|
mutable unsigned long _lastClockValue;
|
|
|
|
mutable unsigned long long _rollOver;
|
2002-06-14 02:27:14 +08:00
|
|
|
# endif
|
2001-09-22 10:42:08 +08:00
|
|
|
|
|
|
|
};
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <time.h>
|
|
|
|
#pragma optimize("",off)
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
namespace osg{
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
inline Timer_t Timer::tick( void ) const
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2002-05-28 19:40:37 +08:00
|
|
|
if (_useStandardClock) return clock();
|
|
|
|
|
|
|
|
volatile Timer_t ts;
|
|
|
|
volatile unsigned int HighPart;
|
|
|
|
volatile unsigned int LowPart;
|
|
|
|
_asm
|
|
|
|
{
|
|
|
|
xor eax, eax // Used when QueryPerformanceCounter()
|
|
|
|
xor edx, edx // not supported or minimal overhead
|
|
|
|
_emit 0x0f // desired
|
|
|
|
_emit 0x31 //
|
|
|
|
mov HighPart,edx
|
|
|
|
mov LowPart,eax
|
|
|
|
}
|
|
|
|
//ts = LowPart | HighPart >> 32;
|
|
|
|
*((unsigned int*)&ts) = LowPart;
|
|
|
|
*((unsigned int*)&ts+1) = HighPart;
|
|
|
|
return ts;
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
#pragma optimize("",on)
|
2002-05-28 19:40:37 +08:00
|
|
|
|
2002-02-09 18:24:39 +08:00
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#define CLK(x) __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x))
|
|
|
|
namespace osg{
|
2002-02-09 18:24:39 +08:00
|
|
|
|
|
|
|
inline Timer_t Timer::tick() const
|
|
|
|
{
|
|
|
|
if (_useStandardClock)
|
|
|
|
return clock();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Timer_t x;CLK(x);return x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
}
|
|
|
|
|
2002-02-09 18:24:39 +08:00
|
|
|
#elif defined(__linux) || defined(__FreeBSD__) || defined(__CYGWIN__)
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <sys/time.h>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-12-20 03:50:45 +08:00
|
|
|
#ifdef __ia64
|
|
|
|
#define CLK(x) ((x)=0)
|
|
|
|
#else
|
2001-09-22 10:42:08 +08:00
|
|
|
#define CLK(x) __asm__ volatile (".byte 0x0f, 0x31" : "=A" (x))
|
2002-12-20 03:50:45 +08:00
|
|
|
#endif
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
namespace osg{
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
inline Timer_t Timer::tick() const
|
2001-09-22 10:42:08 +08:00
|
|
|
{
|
2002-05-28 19:40:37 +08:00
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return ((osg::Timer_t)tv.tv_sec)*1000000+(osg::Timer_t)tv.tv_usec;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Timer_t x;CLK(x);return x;
|
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
}
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
}
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#elif defined(__sgi)
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <sys/time.h>
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
namespace osg{
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-08-09 05:36:22 +08:00
|
|
|
inline Timer_t Timer::tick() const
|
2001-09-22 10:42:08 +08:00
|
|
|
{
|
2002-05-28 19:40:37 +08:00
|
|
|
if (_useStandardClock)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return ((osg::Timer_t)tv.tv_sec)*1000000+(osg::Timer_t)tv.tv_usec;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-06-14 02:27:14 +08:00
|
|
|
if ( _clockAddress_64 )
|
|
|
|
return *_clockAddress_64;
|
|
|
|
else
|
2002-08-09 05:36:22 +08:00
|
|
|
{
|
|
|
|
unsigned long clockValue = *_clockAddress_32;
|
|
|
|
if( _lastClockValue > clockValue )
|
|
|
|
{
|
|
|
|
_rollOver += 0x100000000L;
|
|
|
|
}
|
|
|
|
_lastClockValue = clockValue;
|
|
|
|
return _rollOver + clockValue;
|
|
|
|
}
|
2002-05-28 19:40:37 +08:00
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(unix)
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <sys/time.h>
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
namespace osg{
|
|
|
|
inline Timer_t Timer::tick() const
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
return ((osg::Timer_t)tv.tv_sec)*1000000+(osg::Timer_t)tv.tv_usec;
|
|
|
|
}
|
2001-09-22 10:42:08 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-01-16 18:36:20 +08:00
|
|
|
#elif !defined (__DARWIN_OSX__) && !defined (macintosh)
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
// no choice, always use std::clock()
|
2002-05-28 19:40:37 +08:00
|
|
|
namespace osg{
|
2001-10-01 04:41:20 +08:00
|
|
|
|
2002-05-28 19:40:37 +08:00
|
|
|
inline Timer_t Timer::tick( void ) const { return std::clock(); }
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#endif
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-10-04 05:44:07 +08:00
|
|
|
// note, MacOSX compiled in the Timer.cpp.
|
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#endif
|