1 /* Test and measure strcpy 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 wcscpy 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/>. */
24 # define UCHAR wchar_t
26 # define BIG_CHAR WCHAR_MAX
27 # define SMALL_CHAR 1273
28 # define STRCMP wcscmp
29 # define MEMCMP wmemcmp
30 # define MEMSET wmemset
33 # define UCHAR unsigned char
35 # define BIG_CHAR CHAR_MAX
36 # define SMALL_CHAR 127
37 # define STRCMP strcmp
38 # define MEMCMP memcmp
39 # define MEMSET memset
43 # define STRCPY_RESULT(dst, len) dst
46 # define TEST_NAME "strcpy"
48 # define TEST_NAME "wcscpy"
50 # include "test-string.h"
52 # define SIMPLE_STRCPY simple_strcpy
53 # define STRCPY strcpy
55 # define SIMPLE_STRCPY simple_wcscpy
56 # define STRCPY wcscpy
59 CHAR
*SIMPLE_STRCPY (CHAR
*, const CHAR
*);
61 IMPL (SIMPLE_STRCPY
, 0)
65 SIMPLE_STRCPY (CHAR
*dst
, const CHAR
*src
)
68 while ((*dst
++ = *src
++) != '\0');
73 typedef CHAR
*(*proto_t
) (CHAR
*, const CHAR
*);
76 do_one_test (impl_t
*impl
, CHAR
*dst
, const CHAR
*src
,
77 size_t len
__attribute__((unused
)))
79 if (CALL (impl
, dst
, src
) != STRCPY_RESULT (dst
, len
))
81 error (0, 0, "Wrong result in function %s %p %p", impl
->name
,
82 CALL (impl
, dst
, src
), STRCPY_RESULT (dst
, len
));
87 if (STRCMP (dst
, src
) != 0)
90 "Wrong result in function %s dst \"%" sfmt
"\" src \"%" sfmt
"\"",
91 impl
->name
, dst
, src
);
98 hp_timing_t start
__attribute ((unused
));
99 hp_timing_t stop
__attribute ((unused
));;
100 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
103 for (i
= 0; i
< 32; ++i
)
105 HP_TIMING_NOW (start
);
106 CALL (impl
, dst
, src
);
107 HP_TIMING_NOW (stop
);
108 HP_TIMING_BEST (best_time
, start
, stop
);
111 printf ("\t%zd", (size_t) best_time
);
116 do_test (size_t align1
, size_t align2
, size_t len
, int max_char
)
120 /* For wcscpy: align1 and align2 here mean alignment not in bytes,
121 but in wchar_ts, in bytes it will equal to align * (sizeof (wchar_t))
122 len for wcschr here isn't in bytes but it's number of wchar_t symbols. */
124 if ((align1
+ len
) * sizeof(CHAR
) >= page_size
)
128 if ((align2
+ len
) * sizeof(CHAR
) >= page_size
)
131 s1
= (CHAR
*) (buf1
) + align1
;
132 s2
= (CHAR
*) (buf2
) + align2
;
134 for (i
= 0; i
< len
; i
++)
135 s1
[i
] = 32 + 23 * i
% (max_char
- 32);
139 printf ("Length %4zd, alignments in bytes %2zd/%2zd:", len
, align1
* sizeof(CHAR
), align2
* sizeof(CHAR
));
141 FOR_EACH_IMPL (impl
, 0)
142 do_one_test (impl
, s2
, s1
, len
);
149 do_random_tests (void)
151 size_t i
, j
, n
, align1
, align2
, len
;
152 UCHAR
*p1
= (UCHAR
*) (buf1
+ page_size
) - 512;
153 UCHAR
*p2
= (UCHAR
*) (buf2
+ page_size
) - 512;
156 for (n
= 0; n
< ITERATIONS
; n
++)
158 /* For wcsrchr: align1 and align2 here mean align not in bytes,
159 but in wchar_ts, in bytes it will equal to align * (sizeof
160 (wchar_t)). For strrchr we need to check all alignments from
161 0 to 63 since some assembly implementations have separate
162 prolog for alignments more 48. */
164 align1
= random () & (63 / sizeof(CHAR
));
166 align2
= random () & (63 / sizeof(CHAR
));
168 align2
= align1
+ (random () & 24);
169 len
= random () & 511;
174 len
= 510 - j
- (random () & 7);
175 j
= len
+ align1
+ 64;
178 for (i
= 0; i
< j
; i
++)
180 if (i
== len
+ align1
)
184 p1
[i
] = random () & BIG_CHAR
;
185 if (i
>= align1
&& i
< len
+ align1
&& !p1
[i
])
186 p1
[i
] = (random () & SMALL_CHAR
) + 3;
190 FOR_EACH_IMPL (impl
, 1)
192 MEMSET (p2
- 64, '\1', 512 + 64);
193 res
= (UCHAR
*) CALL (impl
, (CHAR
*) (p2
+ align2
), (CHAR
*) (p1
+ align1
));
194 if (res
!= STRCPY_RESULT (p2
+ align2
, len
))
196 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %zd, %zd) %p != %p",
197 n
, impl
->name
, align1
, align2
, len
, res
,
198 STRCPY_RESULT (p2
+ align2
, len
));
201 for (j
= 0; j
< align2
+ 64; ++j
)
203 if (p2
[j
- 64] != '\1')
205 error (0, 0, "Iteration %zd - garbage before, %s (%zd, %zd, %zd)",
206 n
, impl
->name
, align1
, align2
, len
);
211 for (j
= align2
+ len
+ 1; j
< 512; ++j
)
215 error (0, 0, "Iteration %zd - garbage after, %s (%zd, %zd, %zd)",
216 n
, impl
->name
, align1
, align2
, len
);
221 if (MEMCMP (p1
+ align1
, p2
+ align2
, len
+ 1))
223 error (0, 0, "Iteration %zd - different strings, %s (%zd, %zd, %zd)",
224 n
, impl
->name
, align1
, align2
, len
);
239 FOR_EACH_IMPL (impl
, 0)
240 printf ("\t%s", impl
->name
);
243 for (i
= 0; i
< 16; ++i
)
245 do_test (0, 0, i
, SMALL_CHAR
);
246 do_test (0, 0, i
, BIG_CHAR
);
247 do_test (0, i
, i
, SMALL_CHAR
);
248 do_test (i
, 0, i
, BIG_CHAR
);
251 for (i
= 1; i
< 8; ++i
)
253 do_test (0, 0, 8 << i
, SMALL_CHAR
);
254 do_test (8 - i
, 2 * i
, 8 << i
, SMALL_CHAR
);
257 for (i
= 1; i
< 8; ++i
)
259 do_test (i
, 2 * i
, 8 << i
, SMALL_CHAR
);
260 do_test (2 * i
, i
, 8 << i
, BIG_CHAR
);
261 do_test (i
, i
, 8 << i
, SMALL_CHAR
);
262 do_test (i
, i
, 8 << i
, BIG_CHAR
);
269 #include "../test-skeleton.c"