1 /* Skeleton for benchmark programs.
2 Copyright (C) 2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
24 #include "bench-timing.h"
26 volatile unsigned int dontoptimize
= 0;
31 /* This loop should cause CPU to switch to maximal freqency.
32 This makes subsequent measurement more accurate. We need a side effect
33 to prevent the loop being deleted by compiler.
34 This should be enough to cause CPU to speed up and it is simpler than
35 running loop for constant time. This is used when user does not have root
36 access to set a constant freqency. */
37 for (int k
= 0; k
< 10000000; k
++)
38 dontoptimize
+= 23 * dontoptimize
+ 2;
41 #define TIMESPEC_AFTER(a, b) \
42 (((a).tv_sec == (b).tv_sec) ? \
43 ((a).tv_nsec > (b).tv_nsec) : \
44 ((a).tv_sec > (b).tv_sec))
46 main (int argc
, char **argv
)
49 struct timespec runtime
;
54 memset (&runtime
, 0, sizeof (runtime
));
60 for (int v
= 0; v
< NUM_VARIANTS
; v
++)
62 /* Run for approximately DURATION seconds. */
63 clock_gettime (CLOCK_MONOTONIC_RAW
, &runtime
);
64 runtime
.tv_sec
+= DURATION
;
67 timing_t total
= 0, max
= 0, min
= 0x7fffffffffffffff;
70 for (i
= 0; i
< NUM_SAMPLES (v
); i
++)
74 for (k
= 0; k
< iters
; k
++)
78 TIMING_DIFF (cur
, start
, end
);
86 TIMING_ACCUM (total
, cur
);
90 struct timespec curtime
;
92 memset (&curtime
, 0, sizeof (curtime
));
93 clock_gettime (CLOCK_MONOTONIC_RAW
, &curtime
);
94 if (TIMESPEC_AFTER (curtime
, runtime
))
105 TIMING_PRINT_STATS (VARIANT (v
), d_total_s
, d_iters
, d_total_i
, max
,