Add 411 to list of fixed bugs.
[glibc.git] / string / test-strcmp.c
blob62a42eba8598c3d255f602099d3012feda7a04d7
1 /* Test and measure strcmp and wcscmp functions.
2 Copyright (C) 1999, 2002, 2003, 2005, 2011 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 wcscmp 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, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 #define TEST_MAIN
23 #include "test-string.h"
25 #ifdef WIDE
26 # include <wchar.h>
28 # define L(str) L##str
29 # define STRCMP wcscmp
30 # define STRCPY wcscpy
31 # define STRLEN wcslen
32 # define MEMCPY wmemcpy
33 # define SIMPLE_STRCMP simple_wcscmp
34 # define STUPID_STRCMP stupid_wcscmp
35 # define CHAR wchar_t
36 # define UCHAR wchar_t
37 # define CHARBYTES 4
38 # define CHARBYTESLOG 2
39 # define CHARALIGN __alignof__ (CHAR)
40 # define MIDCHAR 0x7fffffff
41 # define LARGECHAR 0xfffffffe
42 # define CHAR__MAX WCHAR_MAX
43 # define CHAR__MIN WCHAR_MIN
45 /* Wcscmp uses signed semantics for comparison, not unsigned */
46 /* Avoid using substraction since possible overflow */
48 int
49 simple_wcscmp (const wchar_t *s1, const wchar_t *s2)
51 wchar_t c1, c2;
54 c1 = *s1++;
55 c2 = *s2++;
56 if (c2 == L'\0')
57 return c1 - c2;
59 while (c1 == c2);
61 return c1 < c2 ? -1 : 1;
64 int
65 stupid_wcscmp (const wchar_t *s1, const wchar_t *s2)
67 size_t ns1 = wcslen (s1) + 1;
68 size_t ns2 = wcslen (s2) + 1;
69 size_t n = ns1 < ns2 ? ns1 : ns2;
70 int ret = 0;
72 wchar_t c1, c2;
74 while (n--) {
75 c1 = *s1++;
76 c2 = *s2++;
77 if ((ret = c1 < c2 ? -1 : c1 == c2 ? 0 : 1) != 0)
78 break;
80 return ret;
83 #else
84 # define L(str) str
85 # define STRCMP strcmp
86 # define STRCPY strcpy
87 # define STRLEN strlen
88 # define MEMCPY memcpy
89 # define SIMPLE_STRCMP simple_strcmp
90 # define STUPID_STRCMP stupid_strcmp
91 # define CHAR char
92 # define UCHAR unsigned char
93 # define CHARBYTES 1
94 # define CHARBYTESLOG 0
95 # define CHARALIGN 1
96 # define MIDCHAR 0x7f
97 # define LARGECHAR 0xfe
98 # define CHAR__MAX CHAR_MAX
99 # define CHAR__MIN CHAR_MIN
101 /* Strcmp uses unsigned semantics for comparison. */
103 simple_strcmp (const char *s1, const char *s2)
105 int ret;
107 while ((ret = *(unsigned char *) s1 - *(unsigned char*) s2++) == 0 && *s1++);
108 return ret;
112 stupid_strcmp (const char *s1, const char *s2)
114 size_t ns1 = strlen (s1) + 1;
115 size_t ns2 = strlen (s2) + 1;
116 size_t n = ns1 < ns2 ? ns1 : ns2;
117 int ret = 0;
119 while (n--)
120 if ((ret = *(unsigned char *) s1++ - *(unsigned char *) s2++) != 0)
121 break;
122 return ret;
124 #endif
126 typedef int (*proto_t) (const CHAR *, const CHAR *);
128 IMPL (STUPID_STRCMP, 1)
129 IMPL (SIMPLE_STRCMP, 1)
130 IMPL (STRCMP, 1)
132 static int
133 check_result (impl_t *impl,
134 const CHAR *s1, const CHAR *s2,
135 int exp_result)
137 int result = CALL (impl, s1, s2);
138 if ((exp_result == 0 && result != 0)
139 || (exp_result < 0 && result >= 0)
140 || (exp_result > 0 && result <= 0))
142 error (0, 0, "Wrong result in function %s %d %d", impl->name,
143 result, exp_result);
144 ret = 1;
145 return -1;
148 return 0;
151 static void
152 do_one_test (impl_t *impl,
153 const CHAR *s1, const CHAR *s2,
154 int exp_result)
156 if (check_result (impl, s1, s2, exp_result) < 0)
157 return;
159 if (HP_TIMING_AVAIL)
161 hp_timing_t start __attribute ((unused));
162 hp_timing_t stop __attribute ((unused));
163 hp_timing_t best_time = ~ (hp_timing_t) 0;
164 size_t i;
166 for (i = 0; i < 32; ++i)
168 HP_TIMING_NOW (start);
169 CALL (impl, s1, s2);
170 HP_TIMING_NOW (stop);
171 HP_TIMING_BEST (best_time, start, stop);
174 printf ("\t%zd", (size_t) best_time);
178 static void
179 do_test (size_t align1, size_t align2, size_t len, int max_char,
180 int exp_result)
182 size_t i;
184 CHAR *s1, *s2;
186 if (len == 0)
187 return;
189 align1 &= 63;
190 if (align1 + (len + 1) * CHARBYTES >= page_size)
191 return;
193 align2 &= 63;
194 if (align2 + (len + 1) * CHARBYTES >= page_size)
195 return;
197 /* Put them close to the end of page. */
198 i = align1 + CHARBYTES * (len + 2);
199 s1 = (CHAR *) (buf1 + ((page_size - i) / 16 * 16) + align1);
200 i = align2 + CHARBYTES * (len + 2);
201 s2 = (CHAR *) (buf2 + ((page_size - i) / 16 * 16) + align2);
203 for (i = 0; i < len; i++)
204 s1[i] = s2[i] = 1 + (23 << ((CHARBYTES - 1) * 8)) * i % max_char;
206 s1[len] = s2[len] = 0;
207 s1[len + 1] = 23;
208 s2[len + 1] = 24 + exp_result;
209 s2[len - 1] -= exp_result;
211 if (HP_TIMING_AVAIL)
212 printf ("Length %4zd, alignment %2zd/%2zd:", len, align1, align2);
214 FOR_EACH_IMPL (impl, 0)
215 do_one_test (impl, s1, s2, exp_result);
217 if (HP_TIMING_AVAIL)
218 putchar ('\n');
221 static void
222 do_random_tests (void)
224 UCHAR *p1 = (UCHAR *) (buf1 + page_size - 512 * CHARBYTES);
225 UCHAR *p2 = (UCHAR *) (buf2 + page_size - 512 * CHARBYTES);
227 for (size_t n = 0; n < ITERATIONS; n++)
229 /* for wcscmp case align1 and align2 mean here alignment
230 in wchar_t symbols, it equal 4*k alignment in bytes, we
231 don't check other alignments like for example
232 p1 = (wchar_t *)(buf1 + 1)
233 because it's wrong using of wchar_t type. */
234 size_t align1 = random () & 31;
235 size_t align2;
236 if (random () & 1)
237 align2 = random () & 31;
238 else
239 align2 = align1 + (random () & 24);
240 size_t pos = random () & 511;
241 size_t j = align1 > align2 ? align1 : align2;
242 if (pos + j >= 511)
243 pos = 510 - j - (random () & 7);
244 size_t len1 = random () & 511;
245 if (pos >= len1 && (random () & 1))
246 len1 = pos + (random () & 7);
247 if (len1 + j >= 512)
248 len1 = 511 - j - (random () & 7);
249 size_t len2;
250 if (pos >= len1)
251 len2 = len1;
252 else
253 len2 = len1 + (len1 != 511 - j ? random () % (511 - j - len1) : 0);
254 j = (pos > len2 ? pos : len2) + align1 + 64;
255 if (j > 512)
256 j = 512;
257 for (size_t i = 0; i < j; ++i)
259 p1[i] = random () & 255;
260 if (i < len1 + align1 && !p1[i])
262 p1[i] = random () & 255;
263 if (!p1[i])
264 p1[i] = 1 + (random () & 127);
267 for (size_t i = 0; i < j; ++i)
269 p2[i] = random () & 255;
270 if (i < len2 + align2 && !p2[i])
272 p2[i] = random () & 255;
273 if (!p2[i])
274 p2[i] = 1 + (random () & 127);
278 int result = 0;
279 MEMCPY (p2 + align2, p1 + align1, pos);
280 if (pos < len1)
282 if (p2[align2 + pos] == p1[align1 + pos])
284 p2[align2 + pos] = random () & 255;
285 if (p2[align2 + pos] == p1[align1 + pos])
286 p2[align2 + pos] = p1[align1 + pos] + 3 + (random () & 127);
289 if (p1[align1 + pos] < p2[align2 + pos])
290 result = -1;
291 else
292 result = 1;
294 p1[len1 + align1] = 0;
295 p2[len2 + align2] = 0;
297 FOR_EACH_IMPL (impl, 1)
299 int r = CALL (impl, (CHAR *) (p1 + align1), (CHAR *) (p2 + align2));
300 /* Test whether on 64-bit architectures where ABI requires
301 callee to promote has the promotion been done. */
302 asm ("" : "=g" (r) : "0" (r));
303 if ((r == 0 && result)
304 || (r < 0 && result >= 0)
305 || (r > 0 && result <= 0))
307 error (0, 0, "Iteration %zd - wrong result in function %s (align in bytes: %zd, align in bytes: %zd, len1: %zd, len2: %zd, pos: %zd) %d != %d, p1 %p p2 %p",
308 n, impl->name, (size_t) (p1 + align1) & 63, (size_t) (p1 + align2) & 63, len1, len2, pos, r, result, p1, p2);
309 ret = 1;
315 static void
316 check (void)
318 CHAR *s1 = (CHAR *) (buf1 + 0xb2c);
319 CHAR *s2 = (CHAR *) (buf1 + 0xfd8);
321 STRCPY(s1, L("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrs"));
322 STRCPY(s2, L("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkLMNOPQRSTUV"));
324 /* Check correct working for negatives values */
326 s1[0] = 1;
327 s2[0] = 1;
328 s1[1] = 1;
329 s2[1] = 1;
330 s1[2] = -1;
331 s2[2] = 3;
332 s1[3] = 0;
333 s2[3] = -1;
335 /* Check possible overflow bug, actual more for wcscmp */
337 s1[7] = CHAR__MIN;
338 s2[7] = CHAR__MAX;
340 size_t l1 = STRLEN (s1);
341 size_t l2 = STRLEN (s2);
343 for (size_t i1 = 0; i1 < l1; i1++)
344 for (size_t i2 = 0; i2 < l2; i2++)
346 int exp_result = SIMPLE_STRCMP (s1 + i1, s2 + i2);
347 FOR_EACH_IMPL (impl, 0)
348 check_result (impl, s1 + i1, s2 + i2, exp_result);
354 test_main (void)
356 size_t i;
358 test_init ();
359 check();
361 printf ("%23s", "");
362 FOR_EACH_IMPL (impl, 0)
363 printf ("\t%s", impl->name);
364 putchar ('\n');
366 for (i = 1; i < 32; ++i)
368 do_test (CHARBYTES * i, CHARBYTES * i, i, MIDCHAR, 0);
369 do_test (CHARBYTES * i, CHARBYTES * i, i, MIDCHAR, 1);
370 do_test (CHARBYTES * i, CHARBYTES * i, i, MIDCHAR, -1);
373 for (i = 1; i < 10 + CHARBYTESLOG; ++i)
375 do_test (0, 0, 2 << i, MIDCHAR, 0);
376 do_test (0, 0, 2 << i, LARGECHAR, 0);
377 do_test (0, 0, 2 << i, MIDCHAR, 1);
378 do_test (0, 0, 2 << i, LARGECHAR, 1);
379 do_test (0, 0, 2 << i, MIDCHAR, -1);
380 do_test (0, 0, 2 << i, LARGECHAR, -1);
381 do_test (0, CHARBYTES * i, 2 << i, MIDCHAR, 1);
382 do_test (CHARBYTES * i, CHARBYTES * (i + 1), 2 << i, LARGECHAR, 1);
385 for (i = 1; i < 8; ++i)
387 do_test (CHARBYTES * i, 2 * CHARBYTES * i, 8 << i, MIDCHAR, 0);
388 do_test (2 * CHARBYTES * i, CHARBYTES * i, 8 << i, LARGECHAR, 0);
389 do_test (CHARBYTES * i, 2 * CHARBYTES * i, 8 << i, MIDCHAR, 1);
390 do_test (2 * CHARBYTES * i, CHARBYTES * i, 8 << i, LARGECHAR, 1);
391 do_test (CHARBYTES * i, 2 * CHARBYTES * i, 8 << i, MIDCHAR, -1);
392 do_test (2 * CHARBYTES * i, CHARBYTES * i, 8 << i, LARGECHAR, -1);
395 do_random_tests ();
396 return ret;
399 #include "../test-skeleton.c"