1 # Copyright (C) 2013-2015 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Makefile for benchmark tests. The only useful target here is `bench`.
20 # Add benchmark functions in alphabetical order.
25 bench-math
:= acos acosh asin asinh atan atanh cos cosh exp exp2 ffs ffsll \
26 log log2 modf pow rint sin sincos sinh sqrt tan tanh
28 bench-pthread
:= pthread_once
30 bench
:= $(bench-math
) $(bench-pthread
)
32 # String function benchmarks.
33 string-bench
:= bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
34 mempcpy memset rawmemchr stpcpy stpncpy strcasecmp strcasestr \
35 strcat strchr strchrnul strcmp strcpy strcspn strlen \
36 strncasecmp strncat strncmp strncpy strnlen strpbrk strrchr \
37 strspn strstr strcpy_chk stpcpy_chk memrchr strsep strtok
38 string-bench-all
:= $(string-bench
)
40 stdlib-bench
:= strtod
42 benchset
:= $(string-bench-all
) $(stdlib-bench
)
44 CFLAGS-bench-ffs.c
+= -fno-builtin
45 CFLAGS-bench-ffsll.c
+= -fno-builtin
47 bench-malloc
:= malloc-thread
49 $(addprefix $(objpfx
)bench-
,$(bench-math
)): $(libm
)
50 $(addprefix $(objpfx
)bench-
,$(bench-pthread
)): $(shared-thread-library
)
51 $(objpfx
)bench-malloc-thread
: $(shared-thread-library
)
55 # Rules to build and execute the benchmarks. Do not put any benchmark
56 # parameters beyond this point.
58 # We don't want the benchmark programs to run in parallel since that could
59 # affect their performance.
64 binaries-bench
:= $(addprefix $(objpfx
)bench-
,$(bench
))
65 binaries-benchset
:= $(addprefix $(objpfx
)bench-
,$(benchset
))
66 binaries-bench-malloc
:= $(addprefix $(objpfx
)bench-
,$(bench-malloc
))
68 # The default duration: 10 seconds.
73 CPPFLAGS-nonlib
+= -DDURATION
=$(BENCH_DURATION
)
75 # Use clock_gettime to measure performance of functions. The default is to use
76 # HP_TIMING if it is available.
77 ifdef USE_CLOCK_GETTIME
78 CPPFLAGS-nonlib
+= -DUSE_CLOCK_GETTIME
87 # This makes sure CPPFLAGS-nonlib and CFLAGS-nonlib are passed
88 # for all these modules.
89 cpp-srcs-left
:= $(binaries-benchset
:=.c
) $(binaries-bench
:=.c
) \
90 $(binaries-bench-malloc
:=.c
)
92 include $(patsubst %,$(..
)cppflags-iterator.mk
,$(cpp-srcs-left
))
94 extra-objs
+= json-lib.o
96 bench-deps
:= bench-skeleton.c bench-timing.h Makefile
98 run-bench
= $(test-wrapper-env
) \
100 $($*-ENV
) $(rtld-prefix
) $${run}
102 timing-type
:= $(objpfx
)bench-timing-type
105 rm -f
$(binaries-bench
) $(addsuffix .o
,$(binaries-bench
))
106 rm -f
$(binaries-benchset
) $(addsuffix .o
,$(binaries-benchset
))
107 rm -f
$(binaries-bench-malloc
) $(addsuffix .o
,$(binaries-bench-malloc
))
108 rm -f
$(timing-type
) $(addsuffix .o
,$(timing-type
))
110 bench
: $(timing-type
) bench-set bench-func bench-malloc
112 bench-set
: $(binaries-benchset
)
114 echo
"Running $${run}"; \
115 $(run-bench
) > $${run}.out
; \
118 bench-malloc
: $(binaries-bench-malloc
)
119 run
=$(objpfx
)bench-malloc-thread
; \
120 for thr in
1 8 16 32; do \
121 echo
"Running $${run} $${thr}"; \
122 $(run-bench
) $${thr} > $${run}-$${thr}.out
; \
125 # Build and execute the benchmark functions. This target generates JSON
126 # formatted bench.out. Each of the programs produce independent JSON output,
127 # so one could even execute them individually and process it using any JSON
128 # capable language or tool.
129 bench-func
: $(binaries-bench
)
130 { timing_type
=$$($(timing-type
)); \
131 echo
"{\"timing_type\": \"$${timing_type}\","; \
132 echo
" \"functions\": {"; \
134 if
! [ "x$${run}" = "x$<" ]; then \
137 echo
"Running $${run}" >&2; \
138 $(run-bench
) $(DETAILED_OPT
); \
142 echo
"}"; } > $(objpfx
)bench.out-tmp
; \
143 if
[ -f
$(objpfx
)bench.out
]; then \
144 mv
-f
$(objpfx
)bench.out
$(objpfx
)bench.out.old
; \
146 mv
-f
$(objpfx
)bench.out-tmp
$(objpfx
)bench.out
147 scripts
/validate_benchout.py
$(objpfx
)bench.out \
148 scripts
/benchout.schema.json
150 $(timing-type
) $(binaries-bench
) $(binaries-benchset
) \
151 $(binaries-bench-malloc
): %: %.o
$(objpfx
)json-lib.o \
152 $(sort $(filter $(common-objpfx
)lib
%,$(link-libc
))) \
153 $(addprefix $(csu-objpfx
),start.o
) $(+preinit
) $(+postinit
)
156 $(objpfx
)bench-
%.c
: %-inputs
$(bench-deps
)
157 { if
[ -n
"$($*-INCLUDE)" ]; then \
160 scripts
/bench.py
$(patsubst %-inputs
,%,$<); } > $@
-tmp