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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
/*
* timer.c
* by Jon Kinsey, 2003
*
* Accurate win32 timer or default timer
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 3 or later of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: timer.c,v 1.13 2008/03/13 18:15:57 Superfly_Jon Exp $
*/
#include "config.h"
#include "backgammon.h"
#include <time.h>
#if HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
#ifdef WIN32
#include "windows.h"
static double perFreq = 0;
static int setup_timer()
{
LARGE_INTEGER freq;
if (!QueryPerformanceFrequency(&freq))
{ /* Timer not supported */
return 0;
}
else
{
perFreq = ((double)freq.QuadPart) / 1000;
return 1;
}
}
double get_time()
{ /* Return elapsed time in milliseconds */
LARGE_INTEGER timer;
if (!perFreq)
{
if (!setup_timer())
return clock() / 1000.0;
}
QueryPerformanceCounter(&timer);
return timer.QuadPart / perFreq;
}
#else
#if 1
double get_time(void)
{ /* Return elapsed time in milliseconds */
struct timeval tv;
gettimeofday(&tv, 0);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
}
#else
static double perFreq = 0;
int setup_timer()
{
perFreq = __get_clockfreq() / 1000.0;
return 1;
}
double get_time()
{ /* Return elapsed time in milliseconds */
if (!perFreq)
{
if (!setup_timer())
return clock() / 1000.0;
}
{
unsigned long long int val;
__asm__ __volatile__("rdtsc" : "=A" (val) : );
return val / perFreq;
}
}
#endif
#endif
|