1 /* Measure STRCHR functions.
2 Copyright (C) 2013-2022 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 <https://www.gnu.org/licenses/>. */
21 # ifdef USE_FOR_STRCHRNUL
22 # define TEST_NAME "strchrnul"
24 # define TEST_NAME "strchr"
25 # endif /* !USE_FOR_STRCHRNUL */
27 # ifdef USE_FOR_STRCHRNUL
28 # define TEST_NAME "wcschrnul"
30 # define TEST_NAME "wcschr"
31 # endif /* !USE_FOR_STRCHRNUL */
33 #include "bench-string.h"
36 #define BIG_CHAR MAX_CHAR
39 # ifdef USE_FOR_STRCHRNUL
41 # define STRCHR strchrnul
42 # define simple_STRCHR simple_STRCHRNUL
43 # endif /* !USE_FOR_STRCHRNUL */
44 # define MIDDLE_CHAR 127
45 # define SMALL_CHAR 23
47 # ifdef USE_FOR_STRCHRNUL
49 # define STRCHR wcschrnul
50 # define simple_STRCHR simple_WCSCHRNUL
51 # endif /* !USE_FOR_STRCHRNUL */
52 # define MIDDLE_CHAR 1121
53 # define SMALL_CHAR 851
56 #ifdef USE_FOR_STRCHRNUL
57 # define DO_RAND_TEST(...)
59 # define DO_RAND_TEST(...) do_rand_test(__VA_ARGS__)
61 #ifdef USE_FOR_STRCHRNUL
62 # define NULLRET(endptr) endptr
64 # define NULLRET(endptr) NULL
65 #endif /* !USE_FOR_STRCHRNUL */
68 typedef CHAR
*(*proto_t
) (const CHAR
*, int);
71 simple_STRCHR (const CHAR
*s
, int c
)
73 for (; *s
!= (CHAR
) c
; ++s
)
75 return NULLRET ((CHAR
*) s
);
79 IMPL (simple_STRCHR
, 0)
82 #ifndef USE_FOR_STRCHRNUL
83 /* Random benchmarks for strchr (if return is CHAR or NULL). The
84 rational for the benchmark is returning null/char can be done with
85 predicate execution (i.e cmovcc on x86) or a branch. */
88 /* Large enough that full history can't be stored in BHT. */
89 #define NUM_SEARCH_CHARS 2048
91 /* Expectation is usecases of strchr check the return. Otherwise
92 strchrnul would almost always be better. Since there is another
93 branch coming we want to test the case where a potential branch in
94 strchr can be used to skip a later mispredict because of the
95 relationship between the two branches. */
96 static void __attribute__ ((noinline
, noclone
))
97 do_one_rand_plus_branch_test (json_ctx_t
*json_ctx
, impl_t
*impl
,
98 const CHAR
*s
, const CHAR
*c
)
100 size_t i
, iters
= INNER_LOOP_ITERS_LARGE
;
101 int must_execute
= 0;
102 timing_t start
, stop
, cur
;
104 for (i
= 0; i
< iters
; ++i
)
106 if (CALL (impl
, s
, c
[i
% NUM_SEARCH_CHARS
]))
108 /* We just need something that will force compiler to emit
109 a branch instead of conditional execution. */
111 asm volatile("" : : :);
116 TIMING_DIFF (cur
, start
, stop
);
118 json_element_double (json_ctx
, (double)cur
/ (double)iters
);
121 static void __attribute__ ((noinline
, noclone
))
122 do_one_rand_test (json_ctx_t
*json_ctx
, impl_t
*impl
, const CHAR
*s
,
125 size_t i
, iters
= INNER_LOOP_ITERS_LARGE
;
126 timing_t start
, stop
, cur
;
128 for (i
= 0; i
< iters
; ++i
)
130 CALL (impl
, s
, c
[i
% NUM_SEARCH_CHARS
]);
134 TIMING_DIFF (cur
, start
, stop
);
136 json_element_double (json_ctx
, (double)cur
/ (double)iters
);
140 do_rand_test (json_ctx_t
*json_ctx
, size_t align
, size_t pos
, size_t len
,
145 CHAR
*buf
= (CHAR
*)buf1
;
146 CHAR
*c
= (CHAR
*)buf2
;
148 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
151 /* Test is only interesting if we can hit both cases. */
155 /* Segfault if we run the test. */
156 if (NUM_SEARCH_CHARS
* sizeof (CHAR
) > page_size
)
159 for (i
= 0; i
< len
; ++i
)
163 buf
[align
+ len
] = 0;
164 buf
[align
+ pos
] = 1;
166 perc_zero_int
= perc_zero
* RAND_MAX
;
167 for (i
= 0; i
< NUM_SEARCH_CHARS
; ++i
)
169 if (rand () > perc_zero_int
)
175 json_element_object_begin (json_ctx
);
176 json_attr_uint (json_ctx
, "rand", 1);
177 json_attr_uint (json_ctx
, "branch", 1);
178 json_attr_double (json_ctx
, "perc-zero", perc_zero
);
179 json_attr_uint (json_ctx
, "length", len
);
180 json_attr_uint (json_ctx
, "pos", pos
);
181 json_attr_uint (json_ctx
, "alignment", align
);
182 json_array_begin (json_ctx
, "timings");
184 FOR_EACH_IMPL (impl
, 0)
185 do_one_rand_plus_branch_test (json_ctx
, impl
, buf
+ align
, c
);
187 json_array_end (json_ctx
);
188 json_element_object_end (json_ctx
);
191 json_element_object_begin (json_ctx
);
192 json_attr_uint (json_ctx
, "rand", 1);
193 json_attr_uint (json_ctx
, "branch", 0);
194 json_attr_double (json_ctx
, "perc-zero", perc_zero
);
195 json_attr_uint (json_ctx
, "length", len
);
196 json_attr_uint (json_ctx
, "pos", pos
);
197 json_attr_uint (json_ctx
, "alignment", align
);
198 json_array_begin (json_ctx
, "timings");
200 FOR_EACH_IMPL (impl
, 0)
201 do_one_rand_test (json_ctx
, impl
, buf
+ align
, c
);
203 json_array_end (json_ctx
);
204 json_element_object_end (json_ctx
);
210 do_one_test (json_ctx_t
*json_ctx
, impl_t
*impl
, const CHAR
*s
, int c
,
213 size_t i
, iters
= INNER_LOOP_ITERS_LARGE
;
214 timing_t start
, stop
, cur
;
215 const CHAR
*res
= CALL (impl
, s
, c
);
218 error (0, 0, "Wrong result in function %s %p != %p", impl
->name
, res
,
225 for (i
= 0; i
< iters
; ++i
)
231 TIMING_DIFF (cur
, start
, stop
);
233 json_element_double (json_ctx
, (double)cur
/ (double)iters
);
237 do_test (json_ctx_t
*json_ctx
, size_t align
, size_t pos
, size_t len
,
238 int seek_char
, int max_char
)
239 /* For wcschr: align here means align not in bytes,
240 but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
241 len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
245 CHAR
*buf
= (CHAR
*) buf1
;
247 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
250 for (i
= 0; i
< len
; ++i
)
252 buf
[align
+ i
] = 32 + 23 * i
% max_char
;
253 if (buf
[align
+ i
] == seek_char
)
254 buf
[align
+ i
] = seek_char
+ 1;
255 else if (buf
[align
+ i
] == 0)
258 buf
[align
+ len
] = 0;
262 buf
[align
+ pos
] = seek_char
;
263 result
= buf
+ align
+ pos
;
265 else if (seek_char
== 0)
266 result
= buf
+ align
+ len
;
268 result
= NULLRET (buf
+ align
+ len
);
270 json_element_object_begin (json_ctx
);
271 json_attr_uint (json_ctx
, "rand", 0);
272 json_attr_uint (json_ctx
, "length", len
);
273 json_attr_uint (json_ctx
, "pos", pos
);
274 json_attr_uint (json_ctx
, "seek_char", seek_char
);
275 json_attr_uint (json_ctx
, "max_char", max_char
);
276 json_attr_uint (json_ctx
, "alignment", align
);
277 json_array_begin (json_ctx
, "timings");
279 FOR_EACH_IMPL (impl
, 0)
280 do_one_test (json_ctx
, impl
, buf
+ align
, seek_char
, result
);
282 json_array_end (json_ctx
);
283 json_element_object_end (json_ctx
);
294 json_init (&json_ctx
, 0, stdout
);
296 json_document_begin (&json_ctx
);
297 json_attr_string (&json_ctx
, "timing_type", TIMING_TYPE
);
299 json_attr_object_begin (&json_ctx
, "functions");
300 json_attr_object_begin (&json_ctx
, TEST_NAME
);
301 json_attr_string (&json_ctx
, "bench-variant", "");
303 json_array_begin (&json_ctx
, "ifuncs");
304 FOR_EACH_IMPL (impl
, 0)
305 json_element_string (&json_ctx
, impl
->name
);
306 json_array_end (&json_ctx
);
308 json_array_begin (&json_ctx
, "results");
310 for (i
= 1; i
< 8; ++i
)
312 do_test (&json_ctx
, 0, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
313 do_test (&json_ctx
, i
, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
316 for (i
= 1; i
< 8; ++i
)
318 do_test (&json_ctx
, 0, 16 << i
, 4096, SMALL_CHAR
, MIDDLE_CHAR
);
319 do_test (&json_ctx
, i
, 16 << i
, 4096, SMALL_CHAR
, MIDDLE_CHAR
);
322 for (i
= 1; i
< 8; ++i
)
324 do_test (&json_ctx
, i
, 64, 256, SMALL_CHAR
, MIDDLE_CHAR
);
325 do_test (&json_ctx
, i
, 64, 256, SMALL_CHAR
, BIG_CHAR
);
328 for (i
= 0; i
< 8; ++i
)
330 do_test (&json_ctx
, 16 * i
, 256, 512, SMALL_CHAR
, MIDDLE_CHAR
);
331 do_test (&json_ctx
, 16 * i
, 256, 512, SMALL_CHAR
, BIG_CHAR
);
334 for (i
= 0; i
< 32; ++i
)
336 do_test (&json_ctx
, 0, i
, i
+ 1, SMALL_CHAR
, MIDDLE_CHAR
);
337 do_test (&json_ctx
, 0, i
, i
+ 1, SMALL_CHAR
, BIG_CHAR
);
340 for (i
= 1; i
< 8; ++i
)
342 do_test (&json_ctx
, 0, 16 << i
, 2048, 0, MIDDLE_CHAR
);
343 do_test (&json_ctx
, i
, 16 << i
, 2048, 0, MIDDLE_CHAR
);
346 for (i
= 1; i
< 8; ++i
)
348 do_test (&json_ctx
, 0, 16 << i
, 4096, 0, MIDDLE_CHAR
);
349 do_test (&json_ctx
, i
, 16 << i
, 4096, 0, MIDDLE_CHAR
);
352 for (i
= 1; i
< 8; ++i
)
354 do_test (&json_ctx
, i
, 64, 256, 0, MIDDLE_CHAR
);
355 do_test (&json_ctx
, i
, 64, 256, 0, BIG_CHAR
);
358 for (i
= 0; i
< 8; ++i
)
360 do_test (&json_ctx
, 16 * i
, 256, 512, 0, MIDDLE_CHAR
);
361 do_test (&json_ctx
, 16 * i
, 256, 512, 0, BIG_CHAR
);
364 for (i
= 0; i
< 32; ++i
)
366 do_test (&json_ctx
, 0, i
, i
+ 1, 0, MIDDLE_CHAR
);
367 do_test (&json_ctx
, 0, i
, i
+ 1, 0, BIG_CHAR
);
370 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.0);
371 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.1);
372 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.25);
373 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.33);
374 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.5);
375 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.66);
376 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.75);
377 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 0.9);
378 DO_RAND_TEST(&json_ctx
, 0, 15, 16, 1.0);
380 json_array_end (&json_ctx
);
381 json_attr_object_end (&json_ctx
);
382 json_attr_object_end (&json_ctx
);
383 json_document_end (&json_ctx
);
388 #include <support/test-driver.c>