1 /* Test and measure STRCHR functions.
2 Copyright (C) 1999-2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
5 Added wcschr support by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>, 2011
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, see
19 <http://www.gnu.org/licenses/>. */
23 # ifdef USE_FOR_STRCHRNUL
24 # define TEST_NAME "strchrnul"
26 # define TEST_NAME "strchr"
29 # define TEST_NAME "wcschr"
31 #include "test-string.h"
34 # ifdef USE_FOR_STRCHRNUL
35 # define STRCHR strchrnul
36 # define stupid_STRCHR stupid_STRCHRNUL
37 # define simple_STRCHR simple_STRCHRNUL
39 # define STRCHR strchr
41 # define STRLEN strlen
43 # define BIG_CHAR CHAR_MAX
44 # define MIDDLE_CHAR 127
45 # define SMALL_CHAR 23
46 # define UCHAR unsigned char
49 # define STRCHR wcschr
50 # define STRLEN wcslen
52 # define BIG_CHAR WCHAR_MAX
53 # define MIDDLE_CHAR 1121
54 # define SMALL_CHAR 851
55 # define UCHAR wchar_t
58 #ifdef USE_FOR_STRCHRNUL
59 # define NULLRET(endptr) endptr
61 # define NULLRET(endptr) NULL
65 typedef CHAR
*(*proto_t
) (const CHAR
*, int);
68 simple_STRCHR (const CHAR
*s
, int c
)
70 for (; *s
!= (CHAR
) c
; ++s
)
72 return NULLRET ((CHAR
*) s
);
77 stupid_STRCHR (const CHAR
*s
, int c
)
79 size_t n
= STRLEN (s
) + 1;
83 return (CHAR
*) s
- 1;
84 return NULLRET ((CHAR
*) s
- 1);
87 IMPL (stupid_STRCHR
, 0)
88 IMPL (simple_STRCHR
, 0)
92 check_result (impl_t
*impl
, const CHAR
*s
, int c
, const CHAR
*exp_res
)
94 CHAR
*res
= CALL (impl
, s
, c
);
97 error (0, 0, "Wrong result in function %s %#x %p %p", impl
->name
,
106 do_one_test (impl_t
*impl
, const CHAR
*s
, int c
, const CHAR
*exp_res
)
108 if (check_result (impl
, s
, c
, exp_res
) < 0)
113 hp_timing_t start
__attribute ((unused
));
114 hp_timing_t stop
__attribute ((unused
));
115 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
118 for (i
= 0; i
< 32; ++i
)
120 HP_TIMING_NOW (start
);
122 HP_TIMING_NOW (stop
);
123 HP_TIMING_BEST (best_time
, start
, stop
);
126 printf ("\t%zd", (size_t) best_time
);
131 do_test (size_t align
, size_t pos
, size_t len
, int seek_char
, int max_char
)
132 /* For wcschr: align here means align not in bytes,
133 but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
134 len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
138 CHAR
*buf
= (CHAR
*) buf1
;
140 if ((align
+ len
) * sizeof (CHAR
) >= page_size
)
143 for (i
= 0; i
< len
; ++i
)
145 buf
[align
+ i
] = 32 + 23 * i
% max_char
;
146 if (buf
[align
+ i
] == seek_char
)
147 buf
[align
+ i
] = seek_char
+ 1;
148 else if (buf
[align
+ i
] == 0)
151 buf
[align
+ len
] = 0;
155 buf
[align
+ pos
] = seek_char
;
156 result
= buf
+ align
+ pos
;
158 else if (seek_char
== 0)
159 result
= buf
+ align
+ len
;
161 result
= NULLRET (buf
+ align
+ len
);
164 printf ("Length %4zd, alignment in bytes %2zd:",
165 pos
, align
* sizeof (CHAR
));
167 FOR_EACH_IMPL (impl
, 0)
168 do_one_test (impl
, buf
+ align
, seek_char
, result
);
175 do_random_tests (void)
177 size_t i
, j
, n
, align
, pos
, len
;
180 UCHAR
*p
= (UCHAR
*) (buf1
+ page_size
- 512 * sizeof (CHAR
));
182 for (n
= 0; n
< ITERATIONS
; n
++)
184 /* For wcschr: align here means align not in bytes, but in wchar_ts,
185 in bytes it will equal to align * (sizeof (wchar_t)). */
186 align
= random () & 15;
187 pos
= random () & 511;
188 seek_char
= random () & 255;
189 if (pos
+ align
>= 511)
190 pos
= 510 - align
- (random () & 7);
191 /* len for wcschr here isn't in bytes but it's number of wchar_t
193 len
= random () & 511;
194 if ((pos
== len
&& seek_char
)
195 || (pos
> len
&& (random () & 1)))
196 len
= pos
+ 1 + (random () & 7);
197 if (len
+ align
>= 512)
198 len
= 511 - align
- (random () & 7);
199 if (pos
== len
&& seek_char
)
201 j
= (pos
> len
? pos
: len
) + align
+ 64;
205 for (i
= 0; i
< j
; i
++)
207 if (i
== pos
+ align
)
209 else if (i
== len
+ align
)
213 p
[i
] = random () & 255;
214 if (i
< pos
+ align
&& p
[i
] == seek_char
)
215 p
[i
] = seek_char
+ 13;
216 if (i
< len
+ align
&& !p
[i
])
218 p
[i
] = seek_char
- 13;
226 result
= (CHAR
*) (p
+ pos
+ align
);
227 else if (seek_char
== 0)
228 result
= (CHAR
*) (p
+ len
+ align
);
230 result
= NULLRET ((CHAR
*) (p
+ len
+ align
));
232 FOR_EACH_IMPL (impl
, 1)
233 if (CALL (impl
, (CHAR
*) (p
+ align
), seek_char
) != result
)
235 error (0, 0, "Iteration %zd - wrong result in function \
236 %s (align in bytes: %zd, seek_char: %d, len: %zd, pos: %zd) %p != %p, p %p",
237 n
, impl
->name
, align
* sizeof (CHAR
), seek_char
, len
, pos
,
238 CALL (impl
, (CHAR
*) (p
+ align
), seek_char
), result
, p
);
247 char s
[] __attribute__((aligned(16))) = "\xff";
249 char *exp_result
= stupid_STRCHR (s
, c
);
251 FOR_EACH_IMPL (impl
, 0)
252 check_result (impl
, s
, c
, exp_result
);
265 FOR_EACH_IMPL (impl
, 0)
266 printf ("\t%s", impl
->name
);
269 for (i
= 1; i
< 8; ++i
)
271 do_test (0, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
272 do_test (i
, 16 << i
, 2048, SMALL_CHAR
, MIDDLE_CHAR
);
275 for (i
= 1; i
< 8; ++i
)
277 do_test (i
, 64, 256, SMALL_CHAR
, MIDDLE_CHAR
);
278 do_test (i
, 64, 256, SMALL_CHAR
, BIG_CHAR
);
281 for (i
= 0; i
< 32; ++i
)
283 do_test (0, i
, i
+ 1, SMALL_CHAR
, MIDDLE_CHAR
);
284 do_test (0, i
, i
+ 1, SMALL_CHAR
, BIG_CHAR
);
287 for (i
= 1; i
< 8; ++i
)
289 do_test (0, 16 << i
, 2048, 0, MIDDLE_CHAR
);
290 do_test (i
, 16 << i
, 2048, 0, MIDDLE_CHAR
);
293 for (i
= 1; i
< 8; ++i
)
295 do_test (i
, 64, 256, 0, MIDDLE_CHAR
);
296 do_test (i
, 64, 256, 0, BIG_CHAR
);
299 for (i
= 0; i
< 32; ++i
)
301 do_test (0, i
, i
+ 1, 0, MIDDLE_CHAR
);
302 do_test (0, i
, i
+ 1, 0, BIG_CHAR
);
309 #include "../test-skeleton.c"