Mention BZ #15674
[glibc.git] / benchtests / bench-strncmp.c
blobb3af0f98e3a422b00ef5c4a6e8e733956757c481
1 /* Measure strncmp functions.
2 Copyright (C) 2013 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/>. */
19 #define TEST_MAIN
20 #define TEST_NAME "strncmp"
21 #include "bench-string.h"
23 typedef int (*proto_t) (const char *, const char *, size_t);
24 int simple_strncmp (const char *, const char *, size_t);
25 int stupid_strncmp (const char *, const char *, size_t);
27 IMPL (stupid_strncmp, 0)
28 IMPL (simple_strncmp, 0)
29 IMPL (strncmp, 1)
31 int
32 simple_strncmp (const char *s1, const char *s2, size_t n)
34 int ret = 0;
36 while (n-- && (ret = *(unsigned char *) s1 - * (unsigned char *) s2++) == 0
37 && *s1++);
38 return ret;
41 int
42 stupid_strncmp (const char *s1, const char *s2, size_t n)
44 size_t ns1 = strnlen (s1, n) + 1, ns2 = strnlen (s2, n) + 1;
45 int ret = 0;
47 n = ns1 < n ? ns1 : n;
48 n = ns2 < n ? ns2 : n;
49 while (n-- && (ret = *(unsigned char *) s1++ - * (unsigned char *) s2++) == 0);
50 return ret;
53 static void
54 do_one_test (impl_t *impl, const char *s1, const char *s2, size_t n,
55 int exp_result)
57 if (HP_TIMING_AVAIL)
59 hp_timing_t start __attribute ((unused));
60 hp_timing_t stop __attribute ((unused));
61 hp_timing_t best_time = ~ (hp_timing_t) 0;
62 size_t i;
64 for (i = 0; i < 32; ++i)
66 HP_TIMING_NOW (start);
67 CALL (impl, s1, s2, n);
68 HP_TIMING_NOW (stop);
69 HP_TIMING_BEST (best_time, start, stop);
72 printf ("\t%zd", (size_t) best_time);
76 static void
77 do_test_limit (size_t align1, size_t align2, size_t len, size_t n, int max_char,
78 int exp_result)
80 size_t i, align_n;
81 char *s1, *s2;
83 if (n == 0)
85 s1 = (char*)(buf1 + page_size);
86 s2 = (char*)(buf2 + page_size);
87 if (HP_TIMING_AVAIL)
88 printf ("Length %4zd/%4zd:", len, n);
90 FOR_EACH_IMPL (impl, 0)
91 do_one_test (impl, s1, s2, n, 0);
93 if (HP_TIMING_AVAIL)
94 putchar ('\n');
96 return;
99 align1 &= 15;
100 align2 &= 15;
101 align_n = (page_size - n) & 15;
103 s1 = (char*)(buf1 + page_size - n);
104 s2 = (char*)(buf2 + page_size - n);
106 if (align1 < align_n)
107 s1 -= (align_n - align1);
109 if (align2 < align_n)
110 s2 -= (align_n - align2);
112 for (i = 0; i < n; i++)
113 s1[i] = s2[i] = 1 + 23 * i % max_char;
115 if (len < n)
117 s1[len] = 0;
118 s2[len] = 0;
119 if (exp_result < 0)
120 s2[len] = 32;
121 else if (exp_result > 0)
122 s1[len] = 64;
125 if (HP_TIMING_AVAIL)
126 printf ("Length %4zd/%4zd, alignment %2zd/%2zd:", len, n, align1, align2);
128 FOR_EACH_IMPL (impl, 0)
129 do_one_test (impl, s1, s2, n, exp_result);
131 if (HP_TIMING_AVAIL)
132 putchar ('\n');
135 static void
136 do_test (size_t align1, size_t align2, size_t len, size_t n, int max_char,
137 int exp_result)
139 size_t i;
140 char *s1, *s2;
142 if (n == 0)
143 return;
145 align1 &= 7;
146 if (align1 + n + 1 >= page_size)
147 return;
149 align2 &= 7;
150 if (align2 + n + 1 >= page_size)
151 return;
153 s1 = (char*)(buf1 + align1);
154 s2 = (char*)(buf2 + align2);
156 for (i = 0; i < n; i++)
157 s1[i] = s2[i] = 1 + 23 * i % max_char;
159 s1[n] = 24 + exp_result;
160 s2[n] = 23;
161 s1[len] = 0;
162 s2[len] = 0;
163 if (exp_result < 0)
164 s2[len] = 32;
165 else if (exp_result > 0)
166 s1[len] = 64;
167 if (len >= n)
168 s2[n - 1] -= exp_result;
170 if (HP_TIMING_AVAIL)
171 printf ("Length %4zd/%4zd, alignment %2zd/%2zd:", len, n, align1, align2);
173 FOR_EACH_IMPL (impl, 0)
174 do_one_test (impl, (char*)s1, (char*)s2, n, exp_result);
176 if (HP_TIMING_AVAIL)
177 putchar ('\n');
181 test_main (void)
183 size_t i;
185 test_init ();
187 printf ("%23s", "");
188 FOR_EACH_IMPL (impl, 0)
189 printf ("\t%s", impl->name);
190 putchar ('\n');
192 for (i =0; i < 16; ++i)
194 do_test (0, 0, 8, i, 127, 0);
195 do_test (0, 0, 8, i, 127, -1);
196 do_test (0, 0, 8, i, 127, 1);
197 do_test (i, i, 8, i, 127, 0);
198 do_test (i, i, 8, i, 127, 1);
199 do_test (i, i, 8, i, 127, -1);
200 do_test (i, 2 * i, 8, i, 127, 0);
201 do_test (2 * i, i, 8, i, 127, 1);
202 do_test (i, 3 * i, 8, i, 127, -1);
203 do_test (0, 0, 8, i, 255, 0);
204 do_test (0, 0, 8, i, 255, -1);
205 do_test (0, 0, 8, i, 255, 1);
206 do_test (i, i, 8, i, 255, 0);
207 do_test (i, i, 8, i, 255, 1);
208 do_test (i, i, 8, i, 255, -1);
209 do_test (i, 2 * i, 8, i, 255, 0);
210 do_test (2 * i, i, 8, i, 255, 1);
211 do_test (i, 3 * i, 8, i, 255, -1);
214 for (i = 1; i < 8; ++i)
216 do_test (0, 0, 8 << i, 16 << i, 127, 0);
217 do_test (0, 0, 8 << i, 16 << i, 127, 1);
218 do_test (0, 0, 8 << i, 16 << i, 127, -1);
219 do_test (0, 0, 8 << i, 16 << i, 255, 0);
220 do_test (0, 0, 8 << i, 16 << i, 255, 1);
221 do_test (0, 0, 8 << i, 16 << i, 255, -1);
222 do_test (8 - i, 2 * i, 8 << i, 16 << i, 127, 0);
223 do_test (8 - i, 2 * i, 8 << i, 16 << i, 127, 1);
224 do_test (2 * i, i, 8 << i, 16 << i, 255, 0);
225 do_test (2 * i, i, 8 << i, 16 << i, 255, 1);
228 do_test_limit (0, 0, 0, 0, 127, 0);
229 do_test_limit (4, 0, 21, 20, 127, 0);
230 do_test_limit (0, 4, 21, 20, 127, 0);
231 do_test_limit (8, 0, 25, 24, 127, 0);
232 do_test_limit (0, 8, 25, 24, 127, 0);
234 for (i = 0; i < 8; ++i)
236 do_test_limit (0, 0, 17 - i, 16 - i, 127, 0);
237 do_test_limit (0, 0, 17 - i, 16 - i, 255, 0);
238 do_test_limit (0, 0, 15 - i, 16 - i, 127, 0);
239 do_test_limit (0, 0, 15 - i, 16 - i, 127, 1);
240 do_test_limit (0, 0, 15 - i, 16 - i, 127, -1);
241 do_test_limit (0, 0, 15 - i, 16 - i, 255, 0);
242 do_test_limit (0, 0, 15 - i, 16 - i, 255, 1);
243 do_test_limit (0, 0, 15 - i, 16 - i, 255, -1);
246 return ret;
249 #include "../test-skeleton.c"