1 /* Measure memchr functions.
2 Copyright (C) 2013-2016 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 <http://www.gnu.org/licenses/>. */
21 # define SMALL_CHAR 127
25 # define SMALL_CHAR 1273
28 #ifndef USE_AS_MEMRCHR
31 # define TEST_NAME "memchr"
33 # define TEST_NAME "wmemchr"
35 # include "bench-string.h"
38 # define MEMCHR memchr
39 # define SIMPLE_MEMCHR simple_memchr
41 # define MEMCHR wmemchr
42 # define SIMPLE_MEMCHR simple_wmemchr
45 typedef CHAR
*(*proto_t
) (const CHAR
*, int, size_t);
46 CHAR
*SIMPLE_MEMCHR (const CHAR
*, int, size_t);
48 IMPL (SIMPLE_MEMCHR
, 0)
52 SIMPLE_MEMCHR (const CHAR
*s
, int c
, size_t n
)
56 return (CHAR
*) s
- 1;
59 #endif /* !USE_AS_MEMRCHR */
62 do_one_test (impl_t
*impl
, const CHAR
*s
, int c
, size_t n
, CHAR
*exp_res
)
64 CHAR
*res
= CALL (impl
, s
, c
, n
);
65 size_t i
, iters
= INNER_LOOP_ITERS
;
66 timing_t start
, stop
, cur
;
70 error (0, 0, "Wrong result in function %s %p %p", impl
->name
,
77 for (i
= 0; i
< iters
; ++i
)
83 TIMING_DIFF (cur
, start
, stop
);
85 TIMING_PRINT_MEAN ((double) cur
, (double) iters
);
89 do_test (size_t align
, size_t pos
, size_t len
, int seek_char
)
95 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
98 CHAR
*buf
= (CHAR
*) (buf1
);
100 for (i
= 0; i
< len
; ++i
)
102 buf
[align
+ i
] = 1 + 23 * i
% SMALL_CHAR
;
103 if (buf
[align
+ i
] == seek_char
)
104 buf
[align
+ i
] = seek_char
+ 1;
106 buf
[align
+ len
] = 0;
110 buf
[align
+ pos
] = seek_char
;
111 buf
[align
+ len
] = -seek_char
;
112 result
= (CHAR
*) (buf
+ align
+ pos
);
117 buf
[align
+ len
] = seek_char
;
120 printf ("Length %4zd, alignment %2zd:", pos
, align
);
122 FOR_EACH_IMPL (impl
, 0)
123 do_one_test (impl
, (CHAR
*) (buf
+ align
), seek_char
, len
, result
);
136 FOR_EACH_IMPL (impl
, 0)
137 printf ("\t%s", impl
->name
);
140 for (i
= 1; i
< 8; ++i
)
142 do_test (0, 16 << i
, 2048, 23);
143 do_test (i
, 64, 256, 23);
144 do_test (0, 16 << i
, 2048, 0);
145 do_test (i
, 64, 256, 0);
147 for (i
= 1; i
< 32; ++i
)
149 do_test (0, i
, i
+ 1, 23);
150 do_test (0, i
, i
+ 1, 0);
156 #include "../test-skeleton.c"