benchtests: Memory walking benchmark for memmove
[platform/upstream/glibc.git] / benchtests / Makefile
1 # Copyright (C) 2013-2017 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
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.
8
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.
13
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/>.
17
18 # Makefile for benchmark tests.  The only useful target here is `bench`.
19 # Add benchmark functions in alphabetical order.
20
21 subdir := benchtests
22
23 include ../Makeconfig
24 bench-math := acos acosh asin asinh atan atanh cos cosh exp exp2 log log2 \
25               modf pow rint sin sincos sinh sqrt tan tanh fmin fmax fminf \
26               fmaxf powf trunc truncf expf exp2f logf log2f
27
28 bench-pthread := pthread_once thread_create
29
30 bench-string := ffs ffsll
31
32 bench := $(bench-math) $(bench-pthread) $(bench-string)
33
34 # String function benchmarks.
35 string-benchset := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
36                    mempcpy memset rawmemchr stpcpy stpncpy strcasecmp strcasestr \
37                    strcat strchr strchrnul strcmp strcpy strcspn strlen \
38                    strncasecmp strncat strncmp strncpy strnlen strpbrk strrchr \
39                    strspn strstr strcpy_chk stpcpy_chk memrchr strsep strtok \
40                    strcoll memcpy-large memcpy-random memmove-large memset-large \
41                    memcpy-walk memset-walk memmove-walk
42
43 # Build and run locale-dependent benchmarks only if we're building natively.
44 ifeq (no,$(cross-compiling))
45 wcsmbs-benchset := wcslen wcsnlen wcscpy wcpcpy wcsncpy wcpncpy wcscat wcsncat \
46                    wcscmp wcsncmp wcschr wcschrnul wcsrchr wcsspn wcspbrk wcscspn \
47                    wmemchr wmemset wmemcmp
48 else
49 wcsmbs-benchset :=
50 endif
51
52 string-benchset-all := $(string-benchset) ${wcsmbs-benchset}
53
54 ifeq (no,$(cross-compiling))
55 # We have to generate locales
56 LOCALES := en_US.UTF-8 tr_TR.UTF-8 cs_CZ.UTF-8 fa_IR.UTF-8 fr_FR.UTF-8 \
57            ja_JP.UTF-8 si_LK.UTF-8 en_GB.UTF-8 vi_VN.UTF-8 ar_SA.UTF-8 \
58            da_DK.UTF-8 pl_PL.UTF-8 pt_PT.UTF-8 el_GR.UTF-8 ru_RU.UTF-8 \
59            he_IL.UTF-8 is_IS.UTF-8 es_ES.UTF-8 hi_IN.UTF-8 sv_SE.UTF-8 \
60            hu_HU.UTF-8 it_IT.UTF-8 sr_RS.UTF-8 zh_CN.UTF-8
61 include ../gen-locales.mk
62 endif
63
64 stdlib-benchset := strtod
65
66 stdio-common-benchset := sprintf
67
68 math-benchset := math-inlines
69
70 benchset := $(string-benchset-all) $(stdlib-benchset) $(stdio-common-benchset) \
71             $(math-benchset)
72
73 CFLAGS-bench-ffs.c += -fno-builtin
74 CFLAGS-bench-ffsll.c += -fno-builtin
75 CFLAGS-bench-sqrt.c += -fno-builtin
76 CFLAGS-bench-fmin.c += -fno-builtin
77 CFLAGS-bench-fminf.c += -fno-builtin
78 CFLAGS-bench-fmax.c += -fno-builtin
79 CFLAGS-bench-fmaxf.c += -fno-builtin
80 CFLAGS-bench-trunc.c += -fno-builtin
81 CFLAGS-bench-truncf.c += -fno-builtin
82
83 bench-malloc := malloc-thread
84
85 $(addprefix $(objpfx)bench-,$(bench-math)): $(libm)
86 $(addprefix $(objpfx)bench-,$(math-benchset)): $(libm)
87 $(addprefix $(objpfx)bench-,$(bench-pthread)): $(shared-thread-library)
88 $(objpfx)bench-malloc-thread: $(shared-thread-library)
89
90 \f
91
92 # Rules to build and execute the benchmarks.  Do not put any benchmark
93 # parameters beyond this point.
94
95 # We don't want the benchmark programs to run in parallel since that could
96 # affect their performance.
97 .NOTPARALLEL:
98
99 bench-extra-objs = json-lib.o
100
101 extra-objs += $(bench-extra-objs)
102 others-extras = $(bench-extra-objs)
103
104 include ../Rules
105
106 binaries-bench := $(addprefix $(objpfx)bench-,$(bench))
107 binaries-benchset := $(addprefix $(objpfx)bench-,$(benchset))
108 binaries-bench-malloc := $(addprefix $(objpfx)bench-,$(bench-malloc))
109
110 # The default duration: 10 seconds.
111 ifndef BENCH_DURATION
112 BENCH_DURATION := 10
113 endif
114
115 CPPFLAGS-nonlib += -DDURATION=$(BENCH_DURATION)
116
117 # Use clock_gettime to measure performance of functions.  The default is to use
118 # HP_TIMING if it is available.
119 ifdef USE_CLOCK_GETTIME
120 CPPFLAGS-nonlib += -DUSE_CLOCK_GETTIME
121 endif
122
123 DETAILED_OPT :=
124
125 ifdef DETAILED
126 DETAILED_OPT := -d
127 endif
128
129 # This makes sure CPPFLAGS-nonlib and CFLAGS-nonlib are passed
130 # for all these modules.
131 cpp-srcs-left := $(binaries-benchset:=.c) $(binaries-bench:=.c) \
132                  $(binaries-bench-malloc:=.c)
133 lib := nonlib
134 include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left))
135
136 bench-deps := bench-skeleton.c bench-timing.h Makefile
137
138 run-bench = $(test-wrapper-env) \
139             $(run-program-env) \
140             $($*-ENV) $(test-via-rtld-prefix) $${run}
141
142 timing-type := $(objpfx)bench-timing-type
143
144 bench-clean:
145         rm -f $(binaries-bench) $(addsuffix .o,$(binaries-bench))
146         rm -f $(binaries-benchset) $(addsuffix .o,$(binaries-benchset))
147         rm -f $(binaries-bench-malloc) $(addsuffix .o,$(binaries-bench-malloc))
148         rm -f $(timing-type) $(addsuffix .o,$(timing-type))
149         rm -f $(addprefix $(objpfx),$(bench-extra-objs))
150
151 # Define the bench target only if the target has a usable python installation.
152 ifdef PYTHON
153 bench: bench-build bench-set bench-func bench-malloc
154 else
155 bench:
156         @echo "The bench target needs python to run."
157         @exit 1
158 endif
159
160 # Target to only build the benchmark without running it.  We generate locales
161 # only if we're building natively.
162 ifeq (no,$(cross-compiling))
163 bench-build: $(gen-locales) $(timing-type) $(binaries-bench) \
164         $(binaries-benchset) $(binaries-bench-malloc)
165 else
166 bench-build: $(timing-type) $(binaries-bench) $(binaries-benchset) \
167         $(binaries-bench-malloc)
168 endif
169
170 bench-set: $(binaries-benchset)
171         for run in $^; do \
172           echo "Running $${run}"; \
173           $(run-bench) > $${run}.out; \
174         done
175
176 bench-malloc: $(binaries-bench-malloc)
177         run=$(objpfx)bench-malloc-thread; \
178         for thr in 1 8 16 32; do \
179           echo "Running $${run} $${thr}"; \
180           $(run-bench) $${thr} > $${run}-$${thr}.out; \
181         done
182
183 # Build and execute the benchmark functions.  This target generates JSON
184 # formatted bench.out.  Each of the programs produce independent JSON output,
185 # so one could even execute them individually and process it using any JSON
186 # capable language or tool.
187 bench-func: $(binaries-bench)
188         { timing_type=$$($(timing-type)); \
189         echo "{\"timing_type\": \"$${timing_type}\","; \
190         echo " \"functions\": {"; \
191         for run in $^; do \
192           if ! [ "x$${run}" = "x$<" ]; then \
193             echo ","; \
194           fi; \
195           echo "Running $${run}" >&2; \
196           $(run-bench) $(DETAILED_OPT); \
197         done; \
198         echo; \
199         echo " }"; \
200         echo "}"; } > $(objpfx)bench.out-tmp; \
201         if [ -f $(objpfx)bench.out ]; then \
202           mv -f $(objpfx)bench.out $(objpfx)bench.out.old; \
203         fi; \
204         mv -f $(objpfx)bench.out-tmp $(objpfx)bench.out
205         $(PYTHON) scripts/validate_benchout.py $(objpfx)bench.out \
206                 scripts/benchout.schema.json
207
208 $(timing-type) $(binaries-bench) $(binaries-benchset) \
209         $(binaries-bench-malloc): %: %.o $(objpfx)json-lib.o \
210         $(link-extra-libs-tests) \
211   $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \
212   $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit)
213         $(+link-tests)
214
215 $(objpfx)bench-%.c: %-inputs $(bench-deps)
216         { if [ -n "$($*-INCLUDE)" ]; then \
217           cat $($*-INCLUDE); \
218         fi; \
219         $(PYTHON) scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp
220         mv -f $@-tmp $@