2002-08-30 23:09:46 +00:00
|
|
|
/* High precision, low overhead timing functions. x86-64 version.
|
2015-01-02 16:28:19 +00:00
|
|
|
Copyright (C) 2002-2015 Free Software Foundation, Inc.
|
2002-08-30 23:09:46 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C 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 GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2002-08-30 23:09:46 +00:00
|
|
|
|
|
|
|
#ifndef _HP_TIMING_H
|
2014-06-25 20:58:59 +00:00
|
|
|
#define _HP_TIMING_H 1
|
2002-08-30 23:09:46 +00:00
|
|
|
|
2014-06-25 20:58:59 +00:00
|
|
|
/* We always assume having the timestamp register. */
|
|
|
|
#define HP_TIMING_AVAIL (1)
|
2014-07-01 17:20:14 +00:00
|
|
|
#define HP_SMALL_TIMING_AVAIL (1)
|
2014-06-25 20:58:59 +00:00
|
|
|
|
|
|
|
/* We indeed have inlined functions. */
|
|
|
|
#define HP_TIMING_INLINE (1)
|
|
|
|
|
|
|
|
/* We use 64bit values for the times. */
|
|
|
|
typedef unsigned long long int hp_timing_t;
|
2002-08-30 23:09:46 +00:00
|
|
|
|
|
|
|
/* The "=A" constraint used in 32-bit mode does not work in 64-bit mode. */
|
2014-06-25 20:58:59 +00:00
|
|
|
#define HP_TIMING_NOW(Var) \
|
2004-03-17 17:30:06 +00:00
|
|
|
({ unsigned int _hi, _lo; \
|
|
|
|
asm volatile ("rdtsc" : "=a" (_lo), "=d" (_hi)); \
|
2002-08-30 23:09:46 +00:00
|
|
|
(Var) = ((unsigned long long int) _hi << 32) | _lo; })
|
|
|
|
|
2014-06-25 20:58:59 +00:00
|
|
|
#include <hp-timing-common.h>
|
|
|
|
|
2002-08-30 23:09:46 +00:00
|
|
|
#endif /* hp-timing.h */
|