1 /* Measure strsep functions.
2 Copyright (C) 2013-2018 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/>. */
20 #define TEST_NAME "strsep"
21 #include "bench-string.h"
24 simple_strsep (char **s1
, char *s2
)
34 ssize_t s2len
= strlen (s2
);
37 for (j
= 0; j
< s2len
; j
++)
53 oldstrsep (char **stringp
, const char *delim
)
61 /* A frequent case is when the delimiter string contains only one
62 character. Here we don't need to call the expensive `strpbrk'
63 function and instead work using `strchr'. */
64 if (delim
[0] == '\0' || delim
[1] == '\0')
74 else if (*begin
== '\0')
77 end
= strchr (begin
+ 1, ch
);
81 /* Find the end of the token. */
82 end
= strpbrk (begin
, delim
);
86 /* Terminate the token and set *STRINGP past NUL character. */
91 /* No more delimiters; this is the last token. */
97 typedef char *(*proto_t
) (const char **, const char *);
99 IMPL (simple_strsep
, 0)
104 do_one_test (impl_t
* impl
, const char *s1
, const char *s2
)
106 size_t i
, iters
= INNER_LOOP_ITERS
;
107 timing_t start
, stop
, cur
;
110 for (i
= 0; i
< iters
; ++i
)
112 const char *s1a
= s1
;
113 CALL (impl
, &s1a
, s2
);
115 ((char*)s1a
)[-1] = '1';
119 TIMING_DIFF (cur
, start
, stop
);
121 TIMING_PRINT_MEAN ((double) cur
, (double) iters
);
125 do_test (size_t align1
, size_t align2
, size_t len1
, size_t len2
, int fail
)
127 char *s2
= (char *) (buf2
+ align2
);
129 /* Search for a delimiter in a string containing mostly '0', so don't
130 use '0' as a delimiter. */
131 static const char d
[] = "123456789abcdefg";
132 #define dl (sizeof (d) - 1)
134 for (size_t l
= len2
; l
> 0; l
= l
> dl
? l
- dl
: 0)
136 size_t t
= l
> dl
? dl
: l
;
137 ss2
= mempcpy (ss2
, d
, t
);
141 printf ("Length %4zd/%zd, alignment %2zd/%2zd, %s:",
142 len1
, len2
, align1
, align2
, fail
? "fail" : "found");
144 FOR_EACH_IMPL (impl
, 0)
146 char *s1
= (char *) (buf1
+ align1
);
147 memset (s1
, '0', len1
);
151 do_one_test (impl
, s1
, s2
);
162 FOR_EACH_IMPL (impl
, 0)
163 printf ("\t%s", impl
->name
);
166 for (size_t klen
= 2; klen
< 32; ++klen
)
167 for (size_t hlen
= 4 * klen
; hlen
< 8 * klen
; hlen
+= klen
)
169 do_test (0, 0, hlen
, klen
, 0);
170 do_test (0, 0, hlen
, klen
, 1);
171 do_test (0, 3, hlen
, klen
, 0);
172 do_test (0, 3, hlen
, klen
, 1);
173 do_test (0, 9, hlen
, klen
, 0);
174 do_test (0, 9, hlen
, klen
, 1);
175 do_test (0, 15, hlen
, klen
, 0);
176 do_test (0, 15, hlen
, klen
, 1);
178 do_test (3, 0, hlen
, klen
, 0);
179 do_test (3, 0, hlen
, klen
, 1);
180 do_test (3, 3, hlen
, klen
, 0);
181 do_test (3, 3, hlen
, klen
, 1);
182 do_test (3, 9, hlen
, klen
, 0);
183 do_test (3, 9, hlen
, klen
, 1);
184 do_test (3, 15, hlen
, klen
, 0);
185 do_test (3, 15, hlen
, klen
, 1);
187 do_test (9, 0, hlen
, klen
, 0);
188 do_test (9, 0, hlen
, klen
, 1);
189 do_test (9, 3, hlen
, klen
, 0);
190 do_test (9, 3, hlen
, klen
, 1);
191 do_test (9, 9, hlen
, klen
, 0);
192 do_test (9, 9, hlen
, klen
, 1);
193 do_test (9, 15, hlen
, klen
, 0);
194 do_test (9, 15, hlen
, klen
, 1);
196 do_test (15, 0, hlen
, klen
, 0);
197 do_test (15, 0, hlen
, klen
, 1);
198 do_test (15, 3, hlen
, klen
, 0);
199 do_test (15, 3, hlen
, klen
, 1);
200 do_test (15, 9, hlen
, klen
, 0);
201 do_test (15, 9, hlen
, klen
, 1);
202 do_test (15, 15, hlen
, klen
, 0);
203 do_test (15, 15, hlen
, klen
, 1);
205 do_test (0, 0, page_size
- 1, 16, 0);
206 do_test (0, 0, page_size
- 1, 16, 1);
211 #include <support/test-driver.c>