Resize DTV if the current DTV isn't big enough
[glibc.git] / benchtests / Makefile
blob78fd48f14abe6ed48d204e94fa784614e54b0828
1 # Copyright (C) 2013-2014 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.
22 subdir := benchtests
24 include ../Makeconfig
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.
60 .NOTPARALLEL:
62 include ../Rules
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.
69 ifndef BENCH_DURATION
70 BENCH_DURATION := 10
71 endif
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
79 endif
81 DETAILED_OPT :=
83 ifdef DETAILED
84 DETAILED_OPT := -d
85 endif
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)
91 lib := nonlib
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) \
99 $(run-program-env) \
100 $($*-ENV) $(rtld-prefix) $${run}
102 timing-type := $(objpfx)bench-timing-type
104 bench-clean:
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)
113 for run in $^; do \
114 echo "Running $${run}"; \
115 $(run-bench) > $${run}.out; \
116 done
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; \
123 done
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\": {"; \
133 for run in $^; do \
134 if ! [ "x$${run}" = "x$<" ]; then \
135 echo ","; \
136 fi; \
137 echo "Running $${run}" >&2; \
138 $(run-bench) $(DETAILED_OPT); \
139 done; \
140 echo; \
141 echo " }"; \
142 echo "}"; } > $(objpfx)bench.out-tmp; \
143 if [ -f $(objpfx)bench.out ]; then \
144 mv -f $(objpfx)bench.out $(objpfx)bench.out.old; \
145 fi; \
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)
154 $(+link)
156 $(objpfx)bench-%.c: %-inputs $(bench-deps)
157 { if [ -n "$($*-INCLUDE)" ]; then \
158 cat $($*-INCLUDE); \
159 fi; \
160 scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp
161 mv -f $@-tmp $@