2013-06-04 11:18:56 +00:00
|
|
|
/* Measure strpbrk functions.
|
2016-01-04 16:05:18 +00:00
|
|
|
Copyright (C) 2013-2016 Free Software Foundation, Inc.
|
2013-06-04 11:18:56 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
2015-08-26 08:26:24 +00:00
|
|
|
#ifndef WIDE
|
|
|
|
# define CHAR char
|
|
|
|
# define STRLEN strlen
|
|
|
|
# define STRCHR strchr
|
|
|
|
# define BIG_CHAR CHAR_MAX
|
|
|
|
# define SMALL_CHAR 127
|
|
|
|
#else
|
|
|
|
# include <wchar.h>
|
|
|
|
# define CHAR wchar_t
|
|
|
|
# define STRLEN wcslen
|
|
|
|
# define STRCHR wcschr
|
|
|
|
# define BIG_CHAR WCHAR_MAX
|
|
|
|
# define SMALL_CHAR 1273
|
|
|
|
#endif /* WIDE */
|
|
|
|
|
2013-06-04 11:18:56 +00:00
|
|
|
#ifndef STRPBRK_RESULT
|
|
|
|
# define STRPBRK_RESULT(s, pos) ((s)[(pos)] ? (s) + (pos) : NULL)
|
2015-08-26 08:26:24 +00:00
|
|
|
# define RES_TYPE CHAR *
|
2013-06-04 11:18:56 +00:00
|
|
|
# define TEST_MAIN
|
2015-08-26 08:26:24 +00:00
|
|
|
# ifndef WIDE
|
|
|
|
# define TEST_NAME "strpbrk"
|
|
|
|
# else
|
|
|
|
# define TEST_NAME "wcspbrk"
|
|
|
|
# endif /* WIDE */
|
2013-06-04 11:18:56 +00:00
|
|
|
# include "bench-string.h"
|
|
|
|
|
2015-08-26 08:26:24 +00:00
|
|
|
# ifndef WIDE
|
|
|
|
# define STRPBRK strpbrk
|
|
|
|
# define SIMPLE_STRPBRK simple_strpbrk
|
|
|
|
# define STUPID_STRPBRK stupid_strpbrk
|
|
|
|
# else
|
|
|
|
# include <wchar.h>
|
|
|
|
# define STRPBRK wcspbrk
|
|
|
|
# define SIMPLE_STRPBRK simple_wcspbrk
|
|
|
|
# define STUPID_STRPBRK stupid_wcspbrk
|
|
|
|
# endif /* WIDE */
|
|
|
|
|
|
|
|
typedef CHAR *(*proto_t) (const CHAR *, const CHAR *);
|
|
|
|
CHAR *SIMPLE_STRPBRK (const CHAR *, const CHAR *);
|
|
|
|
CHAR *STUPID_STRPBRK (const CHAR *, const CHAR *);
|
|
|
|
|
|
|
|
IMPL (STUPID_STRPBRK, 0)
|
|
|
|
IMPL (SIMPLE_STRPBRK, 0)
|
|
|
|
IMPL (STRPBRK, 1)
|
|
|
|
|
|
|
|
CHAR *
|
|
|
|
SIMPLE_STRPBRK (const CHAR *s, const CHAR *rej)
|
2013-06-04 11:18:56 +00:00
|
|
|
{
|
2015-08-26 08:26:24 +00:00
|
|
|
const CHAR *r;
|
|
|
|
CHAR c;
|
2013-06-04 11:18:56 +00:00
|
|
|
|
|
|
|
while ((c = *s++) != '\0')
|
|
|
|
for (r = rej; *r != '\0'; ++r)
|
|
|
|
if (*r == c)
|
2015-08-26 08:26:24 +00:00
|
|
|
return (CHAR *) s - 1;
|
2013-06-04 11:18:56 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-26 08:26:24 +00:00
|
|
|
CHAR *
|
|
|
|
STUPID_STRPBRK (const CHAR *s, const CHAR *rej)
|
2013-06-04 11:18:56 +00:00
|
|
|
{
|
2015-08-26 08:26:24 +00:00
|
|
|
size_t ns = STRLEN (s), nrej = STRLEN (rej);
|
2013-06-04 11:18:56 +00:00
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < ns; ++i)
|
|
|
|
for (j = 0; j < nrej; ++j)
|
|
|
|
if (s[i] == rej[j])
|
2015-08-26 08:26:24 +00:00
|
|
|
return (CHAR *) s + i;
|
2013-06-04 11:18:56 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-08-26 08:26:24 +00:00
|
|
|
#endif /* !STRPBRK_RESULT */
|
2013-06-04 11:18:56 +00:00
|
|
|
|
|
|
|
static void
|
2015-08-26 08:26:24 +00:00
|
|
|
do_one_test (impl_t *impl, const CHAR *s, const CHAR *rej, RES_TYPE exp_res)
|
2013-06-04 11:18:56 +00:00
|
|
|
{
|
|
|
|
RES_TYPE res = CALL (impl, s, rej);
|
2013-09-02 13:13:50 +00:00
|
|
|
size_t i, iters = INNER_LOOP_ITERS;
|
|
|
|
timing_t start, stop, cur;
|
|
|
|
|
2013-06-04 11:18:56 +00:00
|
|
|
if (res != exp_res)
|
|
|
|
{
|
|
|
|
error (0, 0, "Wrong result in function %s %p %p", impl->name,
|
|
|
|
(void *) res, (void *) exp_res);
|
|
|
|
ret = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-02 13:13:50 +00:00
|
|
|
TIMING_NOW (start);
|
|
|
|
for (i = 0; i < iters; ++i)
|
2013-06-04 11:18:56 +00:00
|
|
|
{
|
2013-09-02 13:13:50 +00:00
|
|
|
CALL (impl, s, rej);
|
|
|
|
}
|
|
|
|
TIMING_NOW (stop);
|
2013-06-04 11:18:56 +00:00
|
|
|
|
2013-09-02 13:13:50 +00:00
|
|
|
TIMING_DIFF (cur, start, stop);
|
2013-06-04 11:18:56 +00:00
|
|
|
|
2013-09-02 13:13:50 +00:00
|
|
|
TIMING_PRINT_MEAN ((double) cur, (double) iters);
|
2013-06-04 11:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_test (size_t align, size_t pos, size_t len)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
int c;
|
|
|
|
RES_TYPE result;
|
2015-08-26 08:26:24 +00:00
|
|
|
CHAR *rej, *s;
|
2013-06-04 11:18:56 +00:00
|
|
|
|
|
|
|
align &= 7;
|
2015-08-26 08:26:24 +00:00
|
|
|
if ((align + pos + 10) * sizeof (CHAR) >= page_size || len > 240)
|
2013-06-04 11:18:56 +00:00
|
|
|
return;
|
|
|
|
|
2015-08-26 08:26:24 +00:00
|
|
|
rej = (CHAR *) (buf2) + (random () & 255);
|
|
|
|
s = (CHAR *) (buf1) + align;
|
2013-06-04 11:18:56 +00:00
|
|
|
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
{
|
2015-08-26 08:26:24 +00:00
|
|
|
rej[i] = random () & BIG_CHAR;
|
2013-06-04 11:18:56 +00:00
|
|
|
if (!rej[i])
|
2015-08-26 08:26:24 +00:00
|
|
|
rej[i] = random () & BIG_CHAR;
|
2013-06-04 11:18:56 +00:00
|
|
|
if (!rej[i])
|
2015-08-26 08:26:24 +00:00
|
|
|
rej[i] = 1 + (random () & SMALL_CHAR);
|
2013-06-04 11:18:56 +00:00
|
|
|
}
|
|
|
|
rej[len] = '\0';
|
2015-08-26 08:26:24 +00:00
|
|
|
for (c = 1; c <= BIG_CHAR; ++c)
|
|
|
|
if (STRCHR (rej, c) == NULL)
|
2013-06-04 11:18:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
for (i = 0; i < pos; ++i)
|
|
|
|
{
|
2015-08-26 08:26:24 +00:00
|
|
|
s[i] = random () & BIG_CHAR;
|
|
|
|
if (STRCHR (rej, s[i]))
|
2013-06-04 11:18:56 +00:00
|
|
|
{
|
2015-08-26 08:26:24 +00:00
|
|
|
s[i] = random () & BIG_CHAR;
|
|
|
|
if (STRCHR (rej, s[i]))
|
2013-06-04 11:18:56 +00:00
|
|
|
s[i] = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s[pos] = rej[random () % (len + 1)];
|
|
|
|
if (s[pos])
|
|
|
|
{
|
|
|
|
for (i = pos + 1; i < pos + 10; ++i)
|
2015-08-26 08:26:24 +00:00
|
|
|
s[i] = random () & BIG_CHAR;
|
2013-06-04 11:18:56 +00:00
|
|
|
s[i] = '\0';
|
|
|
|
}
|
|
|
|
result = STRPBRK_RESULT (s, pos);
|
|
|
|
|
2013-09-02 13:13:50 +00:00
|
|
|
printf ("Length %4zd, alignment %2zd, rej len %2zd:", pos, align, len);
|
2013-06-04 11:18:56 +00:00
|
|
|
|
|
|
|
FOR_EACH_IMPL (impl, 0)
|
|
|
|
do_one_test (impl, s, rej, result);
|
|
|
|
|
2013-09-02 13:13:50 +00:00
|
|
|
putchar ('\n');
|
2013-06-04 11:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
test_main (void)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
test_init ();
|
|
|
|
|
|
|
|
printf ("%32s", "");
|
|
|
|
FOR_EACH_IMPL (impl, 0)
|
|
|
|
printf ("\t%s", impl->name);
|
|
|
|
putchar ('\n');
|
|
|
|
|
|
|
|
for (i = 0; i < 32; ++i)
|
|
|
|
{
|
|
|
|
do_test (0, 512, i);
|
|
|
|
do_test (i, 512, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i < 8; ++i)
|
|
|
|
{
|
|
|
|
do_test (0, 16 << i, 4);
|
|
|
|
do_test (i, 16 << i, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 1; i < 8; ++i)
|
|
|
|
do_test (i, 64, 10);
|
|
|
|
|
|
|
|
for (i = 0; i < 64; ++i)
|
|
|
|
do_test (0, i, 6);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-12-16 17:35:06 +00:00
|
|
|
#include <support/test-driver.c>
|