2013-05-13 08:14:32 +00:00
|
|
|
/* Define timing macros.
|
2019-01-01 00:11:28 +00:00
|
|
|
Copyright (C) 2013-2019 Free Software Foundation, Inc.
|
2013-05-13 08:14:32 +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
|
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
2018-03-19 10:53:14 +00:00
|
|
|
#undef attribute_hidden
|
2018-03-15 15:44:58 +00:00
|
|
|
#define attribute_hidden
|
2013-05-13 08:14:32 +00:00
|
|
|
#include <hp-timing.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
Refactor hp-timing rtld usage
This patch refactor how hp-timing is used on loader code for statistics
report. The HP_TIMING_AVAIL and HP_SMALL_TIMING_AVAIL are removed and
HP_TIMING_INLINE is used instead to check for hp-timing avaliability.
For alpha, which only defines HP_SMALL_TIMING_AVAIL, the HP_TIMING_INLINE
is set iff for IS_IN(rtld).
Checked on aarch64-linux-gnu, x86_64-linux-gnu, and i686-linux-gnu. I also
checked the builds for all afected ABIs.
* benchtests/bench-timing.h: Replace HP_TIMING_AVAIL with
HP_TIMING_INLINE.
* nptl/descr.h: Likewise.
* elf/rtld.c (RLTD_TIMING_DECLARE, RTLD_TIMING_NOW, RTLD_TIMING_DIFF,
RTLD_TIMING_ACCUM_NT, RTLD_TIMING_SET): Define.
(dl_start_final_info, _dl_start_final, dl_main, print_statistics):
Abstract hp-timing usage with RTLD_* macros.
* sysdeps/alpha/hp-timing.h (HP_TIMING_INLINE): Define iff IS_IN(rtld).
(HP_TIMING_AVAIL, HP_SMALL_TIMING_AVAIL): Remove.
* sysdeps/generic/hp-timing.h (HP_TIMING_AVAIL, HP_SMALL_TIMING_AVAIL,
HP_TIMING_NONAVAIL): Likewise.
* sysdeps/ia64/hp-timing.h (HP_TIMING_AVAIL, HP_SMALL_TIMING_AVAIL):
Likewise.
* sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_AVAIL,
HP_SMALL_TIMING_AVAIL): Likewise.
* sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_AVAIL,
HP_SMALL_TIMING_AVAIL): Likewise.
* sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_AVAIL,
HP_SMALL_TIMING_AVAIL): Likewise.
* sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_AVAIL,
HP_SMALL_TIMING_AVAIL): Likewise.
* sysdeps/x86/hp-timing.h (HP_TIMING_AVAIL, HP_SMALL_TIMING_AVAIL):
Likewise.
* sysdeps/generic/hp-timing-common.h: Update comment with
HP_TIMING_AVAIL removal.
2019-01-24 12:46:59 +00:00
|
|
|
#if HP_TIMING_INLINE && !defined USE_CLOCK_GETTIME
|
2013-05-13 08:14:32 +00:00
|
|
|
# define GL(x) _##x
|
|
|
|
# define GLRO(x) _##x
|
|
|
|
typedef hp_timing_t timing_t;
|
|
|
|
|
2014-03-29 04:07:44 +00:00
|
|
|
# define TIMING_TYPE "hp_timing"
|
|
|
|
|
2014-06-25 19:27:16 +00:00
|
|
|
# define TIMING_INIT(res) ({ (res) = 1; })
|
2013-05-13 08:14:32 +00:00
|
|
|
|
|
|
|
# define TIMING_NOW(var) HP_TIMING_NOW (var)
|
|
|
|
# define TIMING_DIFF(diff, start, end) HP_TIMING_DIFF ((diff), (start), (end))
|
|
|
|
# define TIMING_ACCUM(sum, diff) HP_TIMING_ACCUM_NT ((sum), (diff))
|
|
|
|
|
|
|
|
#else
|
2013-11-13 16:48:25 +00:00
|
|
|
|
|
|
|
#include <time.h>
|
2013-05-13 08:14:32 +00:00
|
|
|
typedef uint64_t timing_t;
|
|
|
|
|
2014-03-29 04:07:44 +00:00
|
|
|
# define TIMING_TYPE "clock_gettime"
|
|
|
|
|
2013-09-11 12:07:33 +00:00
|
|
|
/* Measure the resolution of the clock so we can scale the number of
|
|
|
|
benchmark iterations by this value. */
|
|
|
|
# define TIMING_INIT(res) \
|
2013-05-13 08:14:32 +00:00
|
|
|
({ \
|
|
|
|
struct timespec start; \
|
|
|
|
clock_getres (CLOCK_PROCESS_CPUTIME_ID, &start); \
|
2013-09-11 12:07:33 +00:00
|
|
|
(res) = start.tv_nsec; \
|
2013-05-13 08:14:32 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
# define TIMING_NOW(var) \
|
|
|
|
({ \
|
|
|
|
struct timespec tv; \
|
|
|
|
clock_gettime (CLOCK_PROCESS_CPUTIME_ID, &tv); \
|
|
|
|
(var) = (uint64_t) (tv.tv_nsec + (uint64_t) 1000000000 * tv.tv_sec); \
|
|
|
|
})
|
|
|
|
|
|
|
|
# define TIMING_DIFF(diff, start, end) (diff) = (end) - (start)
|
|
|
|
# define TIMING_ACCUM(sum, diff) (sum) += (diff)
|
|
|
|
|
|
|
|
#endif
|
2013-09-02 13:13:50 +00:00
|
|
|
|
|
|
|
#define TIMING_PRINT_MEAN(d_total_s, d_iters) \
|
|
|
|
printf ("\t%g", (d_total_s) / (d_iters))
|