1 /* Test and measure memset functions.
2 Copyright (C) 1999, 2002, 2003, 2005 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Jakub Jelinek <jakub@redhat.com>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 #define MIN_PAGE_SIZE 131072
23 #include "test-string.h"
25 typedef char *(*proto_t
) (char *, int, size_t);
26 char *simple_memset (char *, int, size_t);
27 char *builtin_memset (char *, int, size_t);
29 IMPL (simple_memset
, 0)
30 IMPL (builtin_memset
, 0)
34 simple_memset (char *s
, int c
, size_t n
)
36 char *r
= s
, *end
= s
+ n
;
43 builtin_memset (char *s
, int c
, size_t n
)
45 return __builtin_memset (s
, c
, n
);
49 do_one_test (impl_t
*impl
, char *s
, int c
, size_t n
)
51 char *res
= CALL (impl
, s
, c
, n
);
54 || simple_memset (tstbuf
, c
, n
) != tstbuf
55 || memcmp (s
, tstbuf
, n
) != 0)
57 error (0, 0, "Wrong result in function %s", impl
->name
);
64 hp_timing_t start
__attribute ((unused
));
65 hp_timing_t stop
__attribute ((unused
));
66 hp_timing_t best_time
= ~ (hp_timing_t
) 0;
69 for (i
= 0; i
< 32; ++i
)
71 HP_TIMING_NOW (start
);
74 HP_TIMING_BEST (best_time
, start
, stop
);
77 printf ("\t%zd", (size_t) best_time
);
82 do_test (size_t align
, int c
, size_t len
)
85 if (align
+ len
> page_size
)
89 printf ("Length %4zd, alignment %2zd, c %2d:", len
, align
, c
);
91 FOR_EACH_IMPL (impl
, 0)
92 do_one_test (impl
, (char *) buf1
+ align
, c
, len
);
99 do_random_tests (void)
101 size_t i
, j
, k
, n
, align
, len
, size
;
103 unsigned char *p
, *res
;
105 for (i
= 0; i
< 65536; ++i
)
106 buf2
[i
] = random () & 255;
108 for (n
= 0; n
< ITERATIONS
; n
++)
110 if ((random () & 31) == 0)
114 p
= buf1
+ page_size
- size
;
115 len
= random () & (size
- 1);
116 align
= size
- len
- (random () & 31);
119 if ((random () & 7) == 0)
121 if ((random () & 7) == 0)
128 j
= len
+ align
+ 128;
135 for (i
= k
; i
< align
; ++i
)
137 for (i
= align
+ len
; i
< j
; ++i
)
140 FOR_EACH_IMPL (impl
, 1)
142 for (i
= 0; i
< len
; ++i
)
144 p
[i
+ align
] = buf2
[i
];
145 if (p
[i
+ align
] == c
)
148 res
= (unsigned char *) CALL (impl
, (char *) p
+ align
, c
, len
);
149 if (res
!= p
+ align
)
151 error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %d, %zd) %p != %p",
152 n
, impl
->name
, align
, c
, len
, res
, p
+ align
);
155 for (i
= k
; i
< align
; ++i
)
158 error (0, 0, "Iteration %zd - garbage before %s (%zd, %d, %zd)",
159 n
, impl
->name
, align
, c
, len
);
163 for (; i
< align
+ len
; ++i
)
166 error (0, 0, "Iteration %zd - not cleared correctly %s (%zd, %d, %zd)",
167 n
, impl
->name
, align
, c
, len
);
174 error (0, 0, "Iteration %zd - garbage after %s (%zd, %d, %zd)",
175 n
, impl
->name
, align
, c
, len
);
192 FOR_EACH_IMPL (impl
, 0)
193 printf ("\t%s", impl
->name
);
196 for (c
= -65; c
<= 130; c
+= 65)
198 for (i
= 0; i
< 18; ++i
)
199 do_test (0, c
, 1 << i
);
200 for (i
= 1; i
< 32; ++i
)
207 do_test (3, c
, 1024);
216 #include "../test-skeleton.c"