about summary refs log tree commit diff
path: root/benchtests/bench-strchr.c
blob: eed6882085c3fbf2b05cdf84a80dd5da8fd46a96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/* Measure STRCHR functions.
   Copyright (C) 2013-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#define TEST_MAIN
#ifndef WIDE
# ifdef USE_FOR_STRCHRNUL
#  define TEST_NAME "strchrnul"
# else
#  define TEST_NAME "strchr"
# endif /* !USE_FOR_STRCHRNUL */
#else
# ifdef USE_FOR_STRCHRNUL
#  define TEST_NAME "wcschrnul"
# else
#  define TEST_NAME "wcschr"
# endif /* !USE_FOR_STRCHRNUL */
#endif /* WIDE */
#include "bench-string.h"

#include "json-lib.h"
#define BIG_CHAR MAX_CHAR

#ifndef WIDE
# ifdef USE_FOR_STRCHRNUL
#  undef STRCHR
#  define STRCHR strchrnul
# endif /* !USE_FOR_STRCHRNUL */
# define MIDDLE_CHAR 127
# define SMALL_CHAR 23
#else
# ifdef USE_FOR_STRCHRNUL
#  undef STRCHR
#  define STRCHR wcschrnul
# endif /* !USE_FOR_STRCHRNUL */
# define MIDDLE_CHAR 1121
# define SMALL_CHAR 851
#endif /* WIDE */

#ifdef USE_FOR_STRCHRNUL
# define DO_RAND_TEST(...)
#else
# define DO_RAND_TEST(...) do_rand_test(__VA_ARGS__)
#endif
#ifdef USE_FOR_STRCHRNUL
# define NULLRET(endptr) endptr
#else
# define NULLRET(endptr) NULL
#endif /* !USE_FOR_STRCHRNUL */


typedef CHAR *(*proto_t) (const CHAR *, int);

IMPL (STRCHR, 1)

#ifndef WIDE
char *generic_strchr (const char *, int);
char *generic_strchrnul (const char *, int);

# ifndef USE_FOR_STRCHRNUL
IMPL (generic_strchr, 0)
# else
IMPL (generic_strchrnul, 0)
# endif
#endif

#ifndef USE_FOR_STRCHRNUL
/* Random benchmarks for strchr (if return is CHAR or NULL).  The
   rational for the benchmark is returning null/char can be done with
   predicate execution (i.e cmovcc on x86) or a branch. */


/* Large enough that full history can't be stored in BHT. */
#define NUM_SEARCH_CHARS 2048

/* Expectation is usecases of strchr check the return. Otherwise
   strchrnul would almost always be better. Since there is another
   branch coming we want to test the case where a potential branch in
   strchr can be used to skip a later mispredict because of the
   relationship between the two branches. */
static void __attribute__ ((noinline, noclone))
do_one_rand_plus_branch_test (json_ctx_t *json_ctx, impl_t *impl,
                              const CHAR *s, const CHAR *c)
{
  size_t i, iters = INNER_LOOP_ITERS8;
  int must_execute = 0;
  timing_t start, stop, cur;
  TIMING_NOW (start);
  for (i = 0; i < iters; ++i)
    {
      if (CALL (impl, s, c[i % NUM_SEARCH_CHARS]))
        {
          /* We just need something that will force compiler to emit
             a branch instead of conditional execution. */
          ++must_execute;
          asm volatile("" : : :);
        }
    }
  TIMING_NOW (stop);

  TIMING_DIFF (cur, start, stop);

  json_element_double (json_ctx, (double)cur / (double)iters);
}

static void __attribute__ ((noinline, noclone))
do_one_rand_test (json_ctx_t *json_ctx, impl_t *impl, const CHAR *s,
                  const CHAR *c)
{
  size_t i, iters = INNER_LOOP_ITERS8;
  timing_t start, stop, cur;
  TIMING_NOW (start);
  for (i = 0; i < iters; ++i)
    {
      CALL (impl, s, c[i % NUM_SEARCH_CHARS]);
    }
  TIMING_NOW (stop);

  TIMING_DIFF (cur, start, stop);

  json_element_double (json_ctx, (double)cur / (double)iters);
}

static void
do_rand_test (json_ctx_t *json_ctx, size_t align, size_t pos, size_t len,
              float perc_zero)
{
  size_t i;
  int perc_zero_int;
  CHAR *buf = (CHAR *)buf1;
  CHAR *c = (CHAR *)buf2;
  align &= 127;
  if ((align + len) * sizeof (CHAR) >= page_size)
    return;

  /* Test is only interesting if we can hit both cases. */
  if (pos >= len)
    return;

  /* Segfault if we run the test. */
  if (NUM_SEARCH_CHARS * sizeof (CHAR) > page_size)
    return;

  for (i = 0; i < len; ++i)
    {
      buf[align + i] = 2;
    }
  buf[align + len] = 0;
  buf[align + pos] = 1;

  perc_zero_int = perc_zero * RAND_MAX;
  for (i = 0; i < NUM_SEARCH_CHARS; ++i)
    {
      if (rand () > perc_zero_int)
        c[i] = 0;
      else
        c[i] = 1;
    }
  {
    json_element_object_begin (json_ctx);
    json_attr_uint (json_ctx, "rand", 1);
    json_attr_uint (json_ctx, "branch", 1);
    json_attr_double (json_ctx, "perc-zero", perc_zero);
    json_attr_uint (json_ctx, "length", len);
    json_attr_uint (json_ctx, "pos", pos);
    json_attr_uint (json_ctx, "alignment", align);
    json_array_begin (json_ctx, "timings");

    FOR_EACH_IMPL (impl, 0)
      do_one_rand_plus_branch_test (json_ctx, impl, buf + align, c);

    json_array_end (json_ctx);
    json_element_object_end (json_ctx);
  }
  {
    json_element_object_begin (json_ctx);
    json_attr_uint (json_ctx, "rand", 1);
    json_attr_uint (json_ctx, "branch", 0);
    json_attr_double (json_ctx, "perc-zero", perc_zero);
    json_attr_uint (json_ctx, "length", len);
    json_attr_uint (json_ctx, "pos", pos);
    json_attr_uint (json_ctx, "alignment", align);
    json_array_begin (json_ctx, "timings");

    FOR_EACH_IMPL (impl, 0)
      do_one_rand_test (json_ctx, impl, buf + align, c);

    json_array_end (json_ctx);
    json_element_object_end (json_ctx);
  }
}
#endif

static void
do_one_test (json_ctx_t *json_ctx, impl_t *impl, const CHAR *s, int c,
             const CHAR *exp_res)
{
  size_t i, iters = INNER_LOOP_ITERS8;
  timing_t start, stop, cur;
  const CHAR *res = CALL (impl, s, c);
  if (res != exp_res)
    {
      error (0, 0, "Wrong result in function %s %p != %p", impl->name, res,
             exp_res);
      ret = 1;
      return;
    }

  TIMING_NOW (start);
  for (i = 0; i < iters; ++i)
    {
      CALL (impl, s, c);
    }
  TIMING_NOW (stop);

  TIMING_DIFF (cur, start, stop);

  json_element_double (json_ctx, (double)cur / (double)iters);
}

static void
do_test (json_ctx_t *json_ctx, size_t align, size_t pos, size_t len,
         int seek_char, int max_char)
/* For wcschr: align here means align not in bytes,
   but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
   len for wcschr here isn't in bytes but it's number of wchar_t symbols.  */
{
  size_t i;
  CHAR *result;
  CHAR *buf = (CHAR *) buf1;
  align &= 127;
  if ((align + len) * sizeof (CHAR) >= page_size)
    return;

  for (i = 0; i < len; ++i)
    {
      buf[align + i] = 32 + 23 * i % max_char;
      if (buf[align + i] == seek_char)
	buf[align + i] = seek_char + 1;
      else if (buf[align + i] == 0)
	buf[align + i] = 1;
    }
  buf[align + len] = 0;

  if (pos < len)
    {
      buf[align + pos] = seek_char;
      result = buf + align + pos;
    }
  else if (seek_char == 0)
    result = buf + align + len;
  else
    result = NULLRET (buf + align + len);

  json_element_object_begin (json_ctx);
  json_attr_uint (json_ctx, "rand", 0);
  json_attr_uint (json_ctx, "length", len);
  json_attr_uint (json_ctx, "pos", pos);
  json_attr_uint (json_ctx, "seek_char", seek_char);
  json_attr_uint (json_ctx, "max_char", max_char);
  json_attr_uint (json_ctx, "alignment", align);
  json_array_begin (json_ctx, "timings");

  FOR_EACH_IMPL (impl, 0)
    do_one_test (json_ctx, impl, buf + align, seek_char, result);

  json_array_end (json_ctx);
  json_element_object_end (json_ctx);
}

int
test_main (void)
{
  json_ctx_t json_ctx;

  size_t i, j;
  test_init ();

  json_init (&json_ctx, 0, stdout);

  json_document_begin (&json_ctx);
  json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);

  json_attr_object_begin (&json_ctx, "functions");
  json_attr_object_begin (&json_ctx, TEST_NAME);
  json_attr_string (&json_ctx, "bench-variant", "");

  json_array_begin (&json_ctx, "ifuncs");
  FOR_EACH_IMPL (impl, 0)
    json_element_string (&json_ctx, impl->name);
  json_array_end (&json_ctx);

  json_array_begin (&json_ctx, "results");

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, 0, 16 << i, 2048, SMALL_CHAR, MIDDLE_CHAR);
      do_test (&json_ctx, i, 16 << i, 2048, SMALL_CHAR, MIDDLE_CHAR);
    }

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, 0, 16 << i, 4096, SMALL_CHAR, MIDDLE_CHAR);
      do_test (&json_ctx, i, 16 << i, 4096, SMALL_CHAR, MIDDLE_CHAR);
    }

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, i, 64, 256, SMALL_CHAR, MIDDLE_CHAR);
      do_test (&json_ctx, i, 64, 256, SMALL_CHAR, BIG_CHAR);
    }

  for (i = 0; i < 8; ++i)
    {
      do_test (&json_ctx, 16 * i, 256, 512, SMALL_CHAR, MIDDLE_CHAR);
      do_test (&json_ctx, 16 * i, 256, 512, SMALL_CHAR, BIG_CHAR);
    }

  for (i = 0; i < 32; ++i)
    {
      do_test (&json_ctx, 0, i, i + 1, SMALL_CHAR, MIDDLE_CHAR);
      do_test (&json_ctx, 0, i, i + 1, SMALL_CHAR, BIG_CHAR);
    }

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, 0, 16 << i, 2048, 0, MIDDLE_CHAR);
      do_test (&json_ctx, i, 16 << i, 2048, 0, MIDDLE_CHAR);
    }

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, 0, 16 << i, 4096, 0, MIDDLE_CHAR);
      do_test (&json_ctx, i, 16 << i, 4096, 0, MIDDLE_CHAR);
    }

  for (i = 1; i < 8; ++i)
    {
      do_test (&json_ctx, i, 64, 256, 0, MIDDLE_CHAR);
      do_test (&json_ctx, i, 64, 256, 0, BIG_CHAR);
    }

  for (i = 0; i < 8; ++i)
    {
      do_test (&json_ctx, 16 * i, 256, 512, 0, MIDDLE_CHAR);
      do_test (&json_ctx, 16 * i, 256, 512, 0, BIG_CHAR);
    }

  for (i = 0; i < 32; ++i)
    {
      do_test (&json_ctx, 0, i, i + 1, 0, MIDDLE_CHAR);
      do_test (&json_ctx, 0, i, i + 1, 0, BIG_CHAR);
    }

  for (i = 16 / sizeof (CHAR); i <= 8192 / sizeof (CHAR); i += i)
    {
      for (j = 32 / sizeof (CHAR); j <= 320 / sizeof (CHAR);
	   j += 32 / sizeof (CHAR))
	{
	  do_test (&json_ctx, 0, i, i + j, 0, MIDDLE_CHAR);
	  do_test (&json_ctx, 0, i + j, i, 0, MIDDLE_CHAR);
	  if (i > j)
	    {
	      do_test (&json_ctx, 0, i, i - j, 0, MIDDLE_CHAR);
	      do_test (&json_ctx, 0, i - j, i, 0, MIDDLE_CHAR);
	    }
	}
    }

  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.0);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.1);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.25);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.33);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.5);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.66);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.75);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 0.9);
  DO_RAND_TEST (&json_ctx, 0, 15, 16, 1.0);

  json_array_end (&json_ctx);
  json_attr_object_end (&json_ctx);
  json_attr_object_end (&json_ctx);
  json_document_end (&json_ctx);

  return ret;
}

#include <support/test-driver.c>

#ifndef WIDE
# undef STRCHRNUL
# define STRCHRNUL generic_strchrnul
# undef STRCHR
# define STRCHR generic_strchr
# include <string/strchrnul.c>
# include <string/strchr.c>
#endif