|
|
147e83 |
From 685417419834a85cd5d59787c25e487cd7129890 Mon Sep 17 00:00:00 2001
|
|
|
147e83 |
From: Stefan Liebler <stli@linux.vnet.ibm.com>
|
|
|
147e83 |
Date: Thu, 8 Oct 2015 12:58:39 +0200
|
|
|
147e83 |
Subject: [PATCH 24/30] S390: Optimize strpbrk and wcspbrk.
|
|
|
147e83 |
|
|
|
147e83 |
upstream-commit-id: f0ba659847446eec3b2477d60c97c77ef4680e81
|
|
|
147e83 |
https://www.sourceware.org/ml/libc-alpha/2015-07/msg00091.html
|
|
|
147e83 |
|
|
|
147e83 |
This patch provides optimized versions of strpbrk and wcspbrk with the z13
|
|
|
147e83 |
vector instructions.
|
|
|
147e83 |
|
|
|
147e83 |
ChangeLog:
|
|
|
147e83 |
|
|
|
147e83 |
* sysdeps/s390/multiarch/strpbrk-c.c: New File.
|
|
|
147e83 |
* sysdeps/s390/multiarch/strpbrk-vx.S: Likewise.
|
|
|
147e83 |
* sysdeps/s390/multiarch/strpbrk.c: Likewise.
|
|
|
147e83 |
* sysdeps/s390/multiarch/wcspbrk-c.c: Likewise.
|
|
|
147e83 |
* sysdeps/s390/multiarch/wcspbrk-vx.S: Likewise.
|
|
|
147e83 |
* sysdeps/s390/multiarch/wcspbrk.c: Likewise.
|
|
|
147e83 |
* sysdeps/s390/multiarch/Makefile (sysdep_routines): Add strpbrk and
|
|
|
147e83 |
wcspbrk functions.
|
|
|
147e83 |
* sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
147e83 |
(__libc_ifunc_impl_list): Add ifunc test for strpbrk, wcspbrk.
|
|
|
147e83 |
* wcsmbs/wcspbrk.c: Use WCSPBRK if defined.
|
|
|
147e83 |
* string/test-strpbrk.c: Add wcspbrk support.
|
|
|
147e83 |
* wcsmbs/test-wcspbrk.c: New File.
|
|
|
147e83 |
* wcsmbs/Makefile (strop-tests): Add wcspbrk.
|
|
|
147e83 |
* benchtests/bench-strpbrk.c: Add wcspbrk support.
|
|
|
147e83 |
* benchtests/bench-wcspbrk.c: New File.
|
|
|
147e83 |
* benchtests/Makefile (wcsmbs-bench): Add wcspbrk.
|
|
|
147e83 |
---
|
|
|
147e83 |
benchtests/Makefile | 2 +-
|
|
|
147e83 |
benchtests/bench-strpbrk.c | 100 ++++++----
|
|
|
147e83 |
benchtests/bench-wcspbrk.c | 20 ++
|
|
|
147e83 |
string/strpbrk.c | 8 +-
|
|
|
147e83 |
string/test-strpbrk.c | 130 ++++++++-----
|
|
|
147e83 |
sysdeps/s390/multiarch/Makefile | 6 +-
|
|
|
147e83 |
sysdeps/s390/multiarch/ifunc-impl-list.c | 3 +
|
|
|
147e83 |
sysdeps/s390/multiarch/strpbrk-c.c | 28 +++
|
|
|
147e83 |
sysdeps/s390/multiarch/strpbrk-vx.S | 302 +++++++++++++++++++++++++++++
|
|
|
147e83 |
sysdeps/s390/multiarch/strpbrk.c | 27 +++
|
|
|
147e83 |
sysdeps/s390/multiarch/wcspbrk-c.c | 31 +++
|
|
|
147e83 |
sysdeps/s390/multiarch/wcspbrk-vx.S | 315 +++++++++++++++++++++++++++++++
|
|
|
147e83 |
sysdeps/s390/multiarch/wcspbrk.c | 27 +++
|
|
|
147e83 |
wcsmbs/Makefile | 2 +-
|
|
|
147e83 |
wcsmbs/test-wcspbrk-ifunc.c | 20 ++
|
|
|
147e83 |
wcsmbs/test-wcspbrk.c | 20 ++
|
|
|
147e83 |
wcsmbs/wcspbrk.c | 3 +
|
|
|
147e83 |
17 files changed, 953 insertions(+), 91 deletions(-)
|
|
|
147e83 |
create mode 100644 benchtests/bench-wcspbrk.c
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/strpbrk-c.c
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/strpbrk-vx.S
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/strpbrk.c
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/wcspbrk-c.c
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/wcspbrk-vx.S
|
|
|
147e83 |
create mode 100644 sysdeps/s390/multiarch/wcspbrk.c
|
|
|
147e83 |
create mode 100644 wcsmbs/test-wcspbrk-ifunc.c
|
|
|
147e83 |
create mode 100644 wcsmbs/test-wcspbrk.c
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/benchtests/Makefile b/benchtests/Makefile
|
|
|
147e83 |
index 337b2a1..015b5d6 100644
|
|
|
147e83 |
--- a/benchtests/Makefile
|
|
|
147e83 |
+++ b/benchtests/Makefile
|
|
|
147e83 |
@@ -39,7 +39,7 @@ string-bench := bcopy bzero memccpy memchr memcmp memcpy memmem memmove \
|
|
|
147e83 |
strncasecmp strncat strncmp strncpy strnlen strpbrk strrchr \
|
|
|
147e83 |
strspn strstr strcpy_chk stpcpy_chk memrchr strsep strtok
|
|
|
147e83 |
wcsmbs-bench := wcslen wcsnlen wcscpy wcpcpy wcsncpy wcpncpy wcscat wcsncat \
|
|
|
147e83 |
- wcsncmp wcsncmp wcschr wcschrnul wcsrchr wcsspn
|
|
|
147e83 |
+ wcsncmp wcsncmp wcschr wcschrnul wcsrchr wcsspn wcspbrk
|
|
|
147e83 |
string-bench-all := $(string-bench) ${wcsmbs-bench}
|
|
|
147e83 |
|
|
|
147e83 |
stdlib-bench := strtod
|
|
|
147e83 |
diff --git a/benchtests/bench-strpbrk.c b/benchtests/bench-strpbrk.c
|
|
|
147e83 |
index fe966be..f2db902 100644
|
|
|
147e83 |
--- a/benchtests/bench-strpbrk.c
|
|
|
147e83 |
+++ b/benchtests/bench-strpbrk.c
|
|
|
147e83 |
@@ -16,50 +16,80 @@
|
|
|
147e83 |
License along with the GNU C Library; if not, see
|
|
|
147e83 |
<http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
|
|
|
147e83 |
+#ifndef WIDE
|
|
|
147e83 |
+# define CHAR char
|
|
|
147e83 |
+# define STRLEN strlen
|
|
|
147e83 |
+# define STRCHR strchr
|
|
|
147e83 |
+# define BIG_CHAR CHAR_MAX
|
|
|
147e83 |
+# define SMALL_CHAR 127
|
|
|
147e83 |
+#else
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+# define CHAR wchar_t
|
|
|
147e83 |
+# define STRLEN wcslen
|
|
|
147e83 |
+# define STRCHR wcschr
|
|
|
147e83 |
+# define BIG_CHAR WCHAR_MAX
|
|
|
147e83 |
+# define SMALL_CHAR 1273
|
|
|
147e83 |
+#endif /* WIDE */
|
|
|
147e83 |
+
|
|
|
147e83 |
#ifndef STRPBRK_RESULT
|
|
|
147e83 |
# define STRPBRK_RESULT(s, pos) ((s)[(pos)] ? (s) + (pos) : NULL)
|
|
|
147e83 |
-# define RES_TYPE char *
|
|
|
147e83 |
+# define RES_TYPE CHAR *
|
|
|
147e83 |
# define TEST_MAIN
|
|
|
147e83 |
-# define TEST_NAME "strpbrk"
|
|
|
147e83 |
+# ifndef WIDE
|
|
|
147e83 |
+# define TEST_NAME "strpbrk"
|
|
|
147e83 |
+# else
|
|
|
147e83 |
+# define TEST_NAME "wcspbrk"
|
|
|
147e83 |
+# endif /* WIDE */
|
|
|
147e83 |
# include "bench-string.h"
|
|
|
147e83 |
|
|
|
147e83 |
-typedef char *(*proto_t) (const char *, const char *);
|
|
|
147e83 |
-char *simple_strpbrk (const char *, const char *);
|
|
|
147e83 |
-char *stupid_strpbrk (const char *, const char *);
|
|
|
147e83 |
-
|
|
|
147e83 |
-IMPL (stupid_strpbrk, 0)
|
|
|
147e83 |
-IMPL (simple_strpbrk, 0)
|
|
|
147e83 |
-IMPL (strpbrk, 1)
|
|
|
147e83 |
-
|
|
|
147e83 |
-char *
|
|
|
147e83 |
-simple_strpbrk (const char *s, const char *rej)
|
|
|
147e83 |
+# ifndef WIDE
|
|
|
147e83 |
+# define STRPBRK strpbrk
|
|
|
147e83 |
+# define SIMPLE_STRPBRK simple_strpbrk
|
|
|
147e83 |
+# define STUPID_STRPBRK stupid_strpbrk
|
|
|
147e83 |
+# else
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+# define STRPBRK wcspbrk
|
|
|
147e83 |
+# define SIMPLE_STRPBRK simple_wcspbrk
|
|
|
147e83 |
+# define STUPID_STRPBRK stupid_wcspbrk
|
|
|
147e83 |
+# endif /* WIDE */
|
|
|
147e83 |
+
|
|
|
147e83 |
+typedef CHAR *(*proto_t) (const CHAR *, const CHAR *);
|
|
|
147e83 |
+CHAR *SIMPLE_STRPBRK (const CHAR *, const CHAR *);
|
|
|
147e83 |
+CHAR *STUPID_STRPBRK (const CHAR *, const CHAR *);
|
|
|
147e83 |
+
|
|
|
147e83 |
+IMPL (STUPID_STRPBRK, 0)
|
|
|
147e83 |
+IMPL (SIMPLE_STRPBRK, 0)
|
|
|
147e83 |
+IMPL (STRPBRK, 1)
|
|
|
147e83 |
+
|
|
|
147e83 |
+CHAR *
|
|
|
147e83 |
+SIMPLE_STRPBRK (const CHAR *s, const CHAR *rej)
|
|
|
147e83 |
{
|
|
|
147e83 |
- const char *r;
|
|
|
147e83 |
- char c;
|
|
|
147e83 |
+ const CHAR *r;
|
|
|
147e83 |
+ CHAR c;
|
|
|
147e83 |
|
|
|
147e83 |
while ((c = *s++) != '\0')
|
|
|
147e83 |
for (r = rej; *r != '\0'; ++r)
|
|
|
147e83 |
if (*r == c)
|
|
|
147e83 |
- return (char *) s - 1;
|
|
|
147e83 |
+ return (CHAR *) s - 1;
|
|
|
147e83 |
return NULL;
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
-char *
|
|
|
147e83 |
-stupid_strpbrk (const char *s, const char *rej)
|
|
|
147e83 |
+CHAR *
|
|
|
147e83 |
+STUPID_STRPBRK (const CHAR *s, const CHAR *rej)
|
|
|
147e83 |
{
|
|
|
147e83 |
- size_t ns = strlen (s), nrej = strlen (rej);
|
|
|
147e83 |
+ size_t ns = STRLEN (s), nrej = STRLEN (rej);
|
|
|
147e83 |
size_t i, j;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < ns; ++i)
|
|
|
147e83 |
for (j = 0; j < nrej; ++j)
|
|
|
147e83 |
if (s[i] == rej[j])
|
|
|
147e83 |
- return (char *) s + i;
|
|
|
147e83 |
+ return (CHAR *) s + i;
|
|
|
147e83 |
return NULL;
|
|
|
147e83 |
}
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
+#endif /* !STRPBRK_RESULT */
|
|
|
147e83 |
|
|
|
147e83 |
static void
|
|
|
147e83 |
-do_one_test (impl_t *impl, const char *s, const char *rej, RES_TYPE exp_res)
|
|
|
147e83 |
+do_one_test (impl_t *impl, const CHAR *s, const CHAR *rej, RES_TYPE exp_res)
|
|
|
147e83 |
{
|
|
|
147e83 |
RES_TYPE res = CALL (impl, s, rej);
|
|
|
147e83 |
size_t i, iters = INNER_LOOP_ITERS;
|
|
|
147e83 |
@@ -91,35 +121,35 @@ do_test (size_t align, size_t pos, size_t len)
|
|
|
147e83 |
size_t i;
|
|
|
147e83 |
int c;
|
|
|
147e83 |
RES_TYPE result;
|
|
|
147e83 |
- char *rej, *s;
|
|
|
147e83 |
+ CHAR *rej, *s;
|
|
|
147e83 |
|
|
|
147e83 |
align &= 7;
|
|
|
147e83 |
- if (align + pos + 10 >= page_size || len > 240)
|
|
|
147e83 |
+ if ((align + pos + 10) * sizeof (CHAR) >= page_size || len > 240)
|
|
|
147e83 |
return;
|
|
|
147e83 |
|
|
|
147e83 |
- rej = (char *) (buf2 + (random () & 255));
|
|
|
147e83 |
- s = (char *) (buf1 + align);
|
|
|
147e83 |
+ rej = (CHAR *) (buf2) + (random () & BIG_CHAR);
|
|
|
147e83 |
+ s = (CHAR *) (buf1) + align;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < len; ++i)
|
|
|
147e83 |
{
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = 1 + (random () & 127);
|
|
|
147e83 |
+ rej[i] = 1 + (random () & SMALL_CHAR);
|
|
|
147e83 |
}
|
|
|
147e83 |
rej[len] = '\0';
|
|
|
147e83 |
- for (c = 1; c <= 255; ++c)
|
|
|
147e83 |
- if (strchr (rej, c) == NULL)
|
|
|
147e83 |
+ for (c = 1; c <= BIG_CHAR; ++c)
|
|
|
147e83 |
+ if (STRCHR (rej, c) == NULL)
|
|
|
147e83 |
break;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < pos; ++i)
|
|
|
147e83 |
{
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
- if (strchr (rej, s[i]))
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR (rej, s[i]))
|
|
|
147e83 |
{
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
- if (strchr (rej, s[i]))
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR (rej, s[i]))
|
|
|
147e83 |
s[i] = c;
|
|
|
147e83 |
}
|
|
|
147e83 |
}
|
|
|
147e83 |
@@ -127,7 +157,7 @@ do_test (size_t align, size_t pos, size_t len)
|
|
|
147e83 |
if (s[pos])
|
|
|
147e83 |
{
|
|
|
147e83 |
for (i = pos + 1; i < pos + 10; ++i)
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
s[i] = '\0';
|
|
|
147e83 |
}
|
|
|
147e83 |
result = STRPBRK_RESULT (s, pos);
|
|
|
147e83 |
diff --git a/benchtests/bench-wcspbrk.c b/benchtests/bench-wcspbrk.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..3d9f00f
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/benchtests/bench-wcspbrk.c
|
|
|
147e83 |
@@ -0,0 +1,20 @@
|
|
|
147e83 |
+/* Measure wcspbrk functions.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#define WIDE 1
|
|
|
147e83 |
+#include "bench-strpbrk.c"
|
|
|
147e83 |
diff --git a/string/strpbrk.c b/string/strpbrk.c
|
|
|
147e83 |
index 7f45fdf..c153d8e 100644
|
|
|
147e83 |
--- a/string/strpbrk.c
|
|
|
147e83 |
+++ b/string/strpbrk.c
|
|
|
147e83 |
@@ -25,11 +25,13 @@
|
|
|
147e83 |
|
|
|
147e83 |
#undef strpbrk
|
|
|
147e83 |
|
|
|
147e83 |
+#ifndef STRPBRK
|
|
|
147e83 |
+# define STRPBRK strpbrk
|
|
|
147e83 |
+#endif
|
|
|
147e83 |
+
|
|
|
147e83 |
/* Find the first occurrence in S of any character in ACCEPT. */
|
|
|
147e83 |
char *
|
|
|
147e83 |
-strpbrk (s, accept)
|
|
|
147e83 |
- const char *s;
|
|
|
147e83 |
- const char *accept;
|
|
|
147e83 |
+STRPBRK (const char *s, const char *accept)
|
|
|
147e83 |
{
|
|
|
147e83 |
while (*s != '\0')
|
|
|
147e83 |
{
|
|
|
147e83 |
diff --git a/string/test-strpbrk.c b/string/test-strpbrk.c
|
|
|
147e83 |
index 72eaaa1..c36c5b5 100644
|
|
|
147e83 |
--- a/string/test-strpbrk.c
|
|
|
147e83 |
+++ b/string/test-strpbrk.c
|
|
|
147e83 |
@@ -17,50 +17,82 @@
|
|
|
147e83 |
License along with the GNU C Library; if not, see
|
|
|
147e83 |
<http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
|
|
|
147e83 |
+#ifndef WIDE
|
|
|
147e83 |
+# define CHAR char
|
|
|
147e83 |
+# define UCHAR unsigned char
|
|
|
147e83 |
+# define STRLEN strlen
|
|
|
147e83 |
+# define STRCHR strchr
|
|
|
147e83 |
+# define BIG_CHAR CHAR_MAX
|
|
|
147e83 |
+# define SMALL_CHAR 127
|
|
|
147e83 |
+#else
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+# define CHAR wchar_t
|
|
|
147e83 |
+# define UCHAR wchar_t
|
|
|
147e83 |
+# define STRLEN wcslen
|
|
|
147e83 |
+# define STRCHR wcschr
|
|
|
147e83 |
+# define BIG_CHAR WCHAR_MAX
|
|
|
147e83 |
+# define SMALL_CHAR 1273
|
|
|
147e83 |
+#endif /* WIDE */
|
|
|
147e83 |
+
|
|
|
147e83 |
#ifndef STRPBRK_RESULT
|
|
|
147e83 |
# define STRPBRK_RESULT(s, pos) ((s)[(pos)] ? (s) + (pos) : NULL)
|
|
|
147e83 |
-# define RES_TYPE char *
|
|
|
147e83 |
+# define RES_TYPE CHAR *
|
|
|
147e83 |
# define TEST_MAIN
|
|
|
147e83 |
-# define TEST_NAME "strpbrk"
|
|
|
147e83 |
+# ifndef WIDE
|
|
|
147e83 |
+# define TEST_NAME "strpbrk"
|
|
|
147e83 |
+# else
|
|
|
147e83 |
+# define TEST_NAME "wcspbrk"
|
|
|
147e83 |
+# endif /* WIDE */
|
|
|
147e83 |
# include "test-string.h"
|
|
|
147e83 |
|
|
|
147e83 |
-typedef char *(*proto_t) (const char *, const char *);
|
|
|
147e83 |
-char *simple_strpbrk (const char *, const char *);
|
|
|
147e83 |
-char *stupid_strpbrk (const char *, const char *);
|
|
|
147e83 |
+# ifndef WIDE
|
|
|
147e83 |
+# define STRPBRK strpbrk
|
|
|
147e83 |
+# define SIMPLE_STRPBRK simple_strpbrk
|
|
|
147e83 |
+# define STUPID_STRPBRK stupid_strpbrk
|
|
|
147e83 |
+# else
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+# define STRPBRK wcspbrk
|
|
|
147e83 |
+# define SIMPLE_STRPBRK simple_wcspbrk
|
|
|
147e83 |
+# define STUPID_STRPBRK stupid_wcspbrk
|
|
|
147e83 |
+# endif /* WIDE */
|
|
|
147e83 |
+
|
|
|
147e83 |
+typedef CHAR *(*proto_t) (const CHAR *, const CHAR *);
|
|
|
147e83 |
+CHAR *SIMPLE_STRPBRK (const CHAR *, const CHAR *);
|
|
|
147e83 |
+CHAR *STUPID_STRPBRK (const CHAR *, const CHAR *);
|
|
|
147e83 |
|
|
|
147e83 |
-IMPL (stupid_strpbrk, 0)
|
|
|
147e83 |
-IMPL (simple_strpbrk, 0)
|
|
|
147e83 |
-IMPL (strpbrk, 1)
|
|
|
147e83 |
+IMPL (STUPID_STRPBRK, 0)
|
|
|
147e83 |
+IMPL (SIMPLE_STRPBRK, 0)
|
|
|
147e83 |
+IMPL (STRPBRK, 1)
|
|
|
147e83 |
|
|
|
147e83 |
-char *
|
|
|
147e83 |
-simple_strpbrk (const char *s, const char *rej)
|
|
|
147e83 |
+CHAR *
|
|
|
147e83 |
+SIMPLE_STRPBRK (const CHAR *s, const CHAR *rej)
|
|
|
147e83 |
{
|
|
|
147e83 |
- const char *r;
|
|
|
147e83 |
- char c;
|
|
|
147e83 |
+ const CHAR *r;
|
|
|
147e83 |
+ CHAR c;
|
|
|
147e83 |
|
|
|
147e83 |
while ((c = *s++) != '\0')
|
|
|
147e83 |
for (r = rej; *r != '\0'; ++r)
|
|
|
147e83 |
if (*r == c)
|
|
|
147e83 |
- return (char *) s - 1;
|
|
|
147e83 |
+ return (CHAR *) s - 1;
|
|
|
147e83 |
return NULL;
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
-char *
|
|
|
147e83 |
-stupid_strpbrk (const char *s, const char *rej)
|
|
|
147e83 |
+CHAR *
|
|
|
147e83 |
+STUPID_STRPBRK (const CHAR *s, const CHAR *rej)
|
|
|
147e83 |
{
|
|
|
147e83 |
- size_t ns = strlen (s), nrej = strlen (rej);
|
|
|
147e83 |
+ size_t ns = STRLEN (s), nrej = STRLEN (rej);
|
|
|
147e83 |
size_t i, j;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < ns; ++i)
|
|
|
147e83 |
for (j = 0; j < nrej; ++j)
|
|
|
147e83 |
if (s[i] == rej[j])
|
|
|
147e83 |
- return (char *) s + i;
|
|
|
147e83 |
+ return (CHAR *) s + i;
|
|
|
147e83 |
return NULL;
|
|
|
147e83 |
}
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
+#endif /* !STRPBRK_RESULT */
|
|
|
147e83 |
|
|
|
147e83 |
static void
|
|
|
147e83 |
-do_one_test (impl_t *impl, const char *s, const char *rej, RES_TYPE exp_res)
|
|
|
147e83 |
+do_one_test (impl_t *impl, const CHAR *s, const CHAR *rej, RES_TYPE exp_res)
|
|
|
147e83 |
{
|
|
|
147e83 |
RES_TYPE res = CALL (impl, s, rej);
|
|
|
147e83 |
if (res != exp_res)
|
|
|
147e83 |
@@ -78,35 +110,35 @@ do_test (size_t align, size_t pos, size_t len)
|
|
|
147e83 |
size_t i;
|
|
|
147e83 |
int c;
|
|
|
147e83 |
RES_TYPE result;
|
|
|
147e83 |
- char *rej, *s;
|
|
|
147e83 |
+ CHAR *rej, *s;
|
|
|
147e83 |
|
|
|
147e83 |
align &= 7;
|
|
|
147e83 |
- if (align + pos + 10 >= page_size || len > 240)
|
|
|
147e83 |
+ if ((align + pos + 10) * sizeof (CHAR) >= page_size || len > 240)
|
|
|
147e83 |
return;
|
|
|
147e83 |
|
|
|
147e83 |
- rej = (char *) (buf2 + (random () & 255));
|
|
|
147e83 |
- s = (char *) (buf1 + align);
|
|
|
147e83 |
+ rej = (CHAR *) (buf2) + (random () & 255);
|
|
|
147e83 |
+ s = (CHAR *) (buf1) + align;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < len; ++i)
|
|
|
147e83 |
{
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = 1 + (random () & 127);
|
|
|
147e83 |
+ rej[i] = 1 + (random () & SMALL_CHAR);
|
|
|
147e83 |
}
|
|
|
147e83 |
rej[len] = '\0';
|
|
|
147e83 |
- for (c = 1; c <= 255; ++c)
|
|
|
147e83 |
- if (strchr (rej, c) == NULL)
|
|
|
147e83 |
+ for (c = 1; c <= BIG_CHAR; ++c)
|
|
|
147e83 |
+ if (STRCHR (rej, c) == NULL)
|
|
|
147e83 |
break;
|
|
|
147e83 |
|
|
|
147e83 |
for (i = 0; i < pos; ++i)
|
|
|
147e83 |
{
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
- if (strchr (rej, s[i]))
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR (rej, s[i]))
|
|
|
147e83 |
{
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
- if (strchr (rej, s[i]))
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR (rej, s[i]))
|
|
|
147e83 |
s[i] = c;
|
|
|
147e83 |
}
|
|
|
147e83 |
}
|
|
|
147e83 |
@@ -114,7 +146,7 @@ do_test (size_t align, size_t pos, size_t len)
|
|
|
147e83 |
if (s[pos])
|
|
|
147e83 |
{
|
|
|
147e83 |
for (i = pos + 1; i < pos + 10; ++i)
|
|
|
147e83 |
- s[i] = random () & 255;
|
|
|
147e83 |
+ s[i] = random () & BIG_CHAR;
|
|
|
147e83 |
s[i] = '\0';
|
|
|
147e83 |
}
|
|
|
147e83 |
result = STRPBRK_RESULT (s, pos);
|
|
|
147e83 |
@@ -129,8 +161,8 @@ do_random_tests (void)
|
|
|
147e83 |
size_t i, j, n, align, pos, len, rlen;
|
|
|
147e83 |
RES_TYPE result;
|
|
|
147e83 |
int c;
|
|
|
147e83 |
- unsigned char *p = buf1 + page_size - 512;
|
|
|
147e83 |
- unsigned char *rej;
|
|
|
147e83 |
+ UCHAR *p = (UCHAR *) (buf1 + page_size) - 512;
|
|
|
147e83 |
+ UCHAR *rej;
|
|
|
147e83 |
|
|
|
147e83 |
for (n = 0; n < ITERATIONS; n++)
|
|
|
147e83 |
{
|
|
|
147e83 |
@@ -147,18 +179,18 @@ do_random_tests (void)
|
|
|
147e83 |
rlen = random () & 63;
|
|
|
147e83 |
else
|
|
|
147e83 |
rlen = random () & 15;
|
|
|
147e83 |
- rej = buf2 + page_size - rlen - 1 - (random () & 7);
|
|
|
147e83 |
+ rej = (UCHAR *) (buf2 + page_size) - rlen - 1 - (random () & 7);
|
|
|
147e83 |
for (i = 0; i < rlen; ++i)
|
|
|
147e83 |
{
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = random () & 255;
|
|
|
147e83 |
+ rej[i] = random () & BIG_CHAR;
|
|
|
147e83 |
if (!rej[i])
|
|
|
147e83 |
- rej[i] = 1 + (random () & 127);
|
|
|
147e83 |
+ rej[i] = 1 + (random () & SMALL_CHAR);
|
|
|
147e83 |
}
|
|
|
147e83 |
rej[i] = '\0';
|
|
|
147e83 |
- for (c = 1; c <= 255; ++c)
|
|
|
147e83 |
- if (strchr ((char *) rej, c) == NULL)
|
|
|
147e83 |
+ for (c = 1; c <= BIG_CHAR; ++c)
|
|
|
147e83 |
+ if (STRCHR ((CHAR *) rej, c) == NULL)
|
|
|
147e83 |
break;
|
|
|
147e83 |
j = (pos > len ? pos : len) + align + 64;
|
|
|
147e83 |
if (j > 512)
|
|
|
147e83 |
@@ -171,27 +203,27 @@ do_random_tests (void)
|
|
|
147e83 |
else if (i == pos + align)
|
|
|
147e83 |
p[i] = rej[random () % (rlen + 1)];
|
|
|
147e83 |
else if (i < align || i > pos + align)
|
|
|
147e83 |
- p[i] = random () & 255;
|
|
|
147e83 |
+ p[i] = random () & BIG_CHAR;
|
|
|
147e83 |
else
|
|
|
147e83 |
{
|
|
|
147e83 |
- p[i] = random () & 255;
|
|
|
147e83 |
- if (strchr ((char *) rej, p[i]))
|
|
|
147e83 |
+ p[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR ((CHAR *) rej, p[i]))
|
|
|
147e83 |
{
|
|
|
147e83 |
- p[i] = random () & 255;
|
|
|
147e83 |
- if (strchr ((char *) rej, p[i]))
|
|
|
147e83 |
+ p[i] = random () & BIG_CHAR;
|
|
|
147e83 |
+ if (STRCHR ((CHAR *) rej, p[i]))
|
|
|
147e83 |
p[i] = c;
|
|
|
147e83 |
}
|
|
|
147e83 |
}
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
- result = STRPBRK_RESULT ((char *) (p + align), pos < len ? pos : len);
|
|
|
147e83 |
+ result = STRPBRK_RESULT ((CHAR *) (p + align), pos < len ? pos : len);
|
|
|
147e83 |
|
|
|
147e83 |
FOR_EACH_IMPL (impl, 1)
|
|
|
147e83 |
- if (CALL (impl, (char *) (p + align), (char *) rej) != result)
|
|
|
147e83 |
+ if (CALL (impl, (CHAR *) (p + align), (CHAR *) rej) != result)
|
|
|
147e83 |
{
|
|
|
147e83 |
error (0, 0, "Iteration %zd - wrong result in function %s (%zd, %p, %zd, %zd, %zd) %p != %p",
|
|
|
147e83 |
n, impl->name, align, rej, rlen, pos, len,
|
|
|
147e83 |
- (void *) CALL (impl, (char *) (p + align), (char *) rej),
|
|
|
147e83 |
+ (void *) CALL (impl, (CHAR *) (p + align), (CHAR *) rej),
|
|
|
147e83 |
(void *) result);
|
|
|
147e83 |
ret = 1;
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile
|
|
|
147e83 |
index 9403169..5765a8c 100644
|
|
|
147e83 |
--- a/sysdeps/s390/multiarch/Makefile
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/Makefile
|
|
|
147e83 |
@@ -12,7 +12,8 @@ sysdep_routines += strlen strlen-vx strlen-c \
|
|
|
147e83 |
strchr strchr-vx strchr-c \
|
|
|
147e83 |
strchrnul strchrnul-vx strchrnul-c \
|
|
|
147e83 |
strrchr strrchr-vx strrchr-c \
|
|
|
147e83 |
- strspn strspn-vx strspn-c
|
|
|
147e83 |
+ strspn strspn-vx strspn-c \
|
|
|
147e83 |
+ strpbrk strpbrk-vx strpbrk-c
|
|
|
147e83 |
endif
|
|
|
147e83 |
|
|
|
147e83 |
ifeq ($(subdir),wcsmbs)
|
|
|
147e83 |
@@ -29,5 +30,6 @@ sysdep_routines += wcslen wcslen-vx wcslen-c \
|
|
|
147e83 |
wcschr wcschr-vx wcschr-c \
|
|
|
147e83 |
wcschrnul wcschrnul-vx wcschrnul-c \
|
|
|
147e83 |
wcsrchr wcsrchr-vx wcsrchr-c \
|
|
|
147e83 |
- wcsspn wcsspn-vx wcsspn-c
|
|
|
147e83 |
+ wcsspn wcsspn-vx wcsspn-c \
|
|
|
147e83 |
+ wcspbrk wcspbrk-vx wcspbrk-c
|
|
|
147e83 |
endif
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/ifunc-impl-list.c b/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
147e83 |
index cbedf64..b39a5c5 100644
|
|
|
147e83 |
--- a/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
147e83 |
@@ -121,6 +121,9 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|
|
147e83 |
IFUNC_VX_IMPL (strspn);
|
|
|
147e83 |
IFUNC_VX_IMPL (wcsspn);
|
|
|
147e83 |
|
|
|
147e83 |
+ IFUNC_VX_IMPL (strpbrk);
|
|
|
147e83 |
+ IFUNC_VX_IMPL (wcspbrk);
|
|
|
147e83 |
+
|
|
|
147e83 |
#endif /* HAVE_S390_VX_ASM_SUPPORT */
|
|
|
147e83 |
|
|
|
147e83 |
return i;
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/strpbrk-c.c b/sysdeps/s390/multiarch/strpbrk-c.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..1c8bf49
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/strpbrk-c.c
|
|
|
147e83 |
@@ -0,0 +1,28 @@
|
|
|
147e83 |
+/* Default strpbrk implementation for S/390.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+# define STRPBRK __strpbrk_c
|
|
|
147e83 |
+# ifdef SHARED
|
|
|
147e83 |
+# undef libc_hidden_builtin_def
|
|
|
147e83 |
+# define libc_hidden_builtin_def(name) \
|
|
|
147e83 |
+ __hidden_ver1 (__strpbrk_c, __GI_strpbrk, __strpbrk_c);
|
|
|
147e83 |
+# endif /* SHARED */
|
|
|
147e83 |
+
|
|
|
147e83 |
+# include <string/strpbrk.c>
|
|
|
147e83 |
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/strpbrk-vx.S b/sysdeps/s390/multiarch/strpbrk-vx.S
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..c6ad3ef
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/strpbrk-vx.S
|
|
|
147e83 |
@@ -0,0 +1,302 @@
|
|
|
147e83 |
+/* Vector optimized 32/64 bit S/390 version of strpbrk.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+
|
|
|
147e83 |
+# include "sysdep.h"
|
|
|
147e83 |
+# include "asm-syntax.h"
|
|
|
147e83 |
+
|
|
|
147e83 |
+ .text
|
|
|
147e83 |
+
|
|
|
147e83 |
+/* char *strpbrk (const char *s, const char * accept)
|
|
|
147e83 |
+ The strpbrk() function locates the first occurrence in the string s
|
|
|
147e83 |
+ of any of the characters in the string accept and returns a pointer
|
|
|
147e83 |
+ to that character or NULL if not found.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ This method checks the length of accept string. If it fits entirely
|
|
|
147e83 |
+ in one vector register, a fast algorithm is used, which does not need
|
|
|
147e83 |
+ to check multiple parts of accept-string. Otherwise a slower full
|
|
|
147e83 |
+ check of accept-string is used.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ register overview:
|
|
|
147e83 |
+ r3: pointer to start of accept-string
|
|
|
147e83 |
+ r2: pointer to start of search-string
|
|
|
147e83 |
+ r0: loaded byte count of vlbb search-string (32bit unsigned)
|
|
|
147e83 |
+ r4: found byte index (32bit unsigned)
|
|
|
147e83 |
+ r1: current return len (64bit unsigned)
|
|
|
147e83 |
+ v16: search-string
|
|
|
147e83 |
+ v17: accept-string
|
|
|
147e83 |
+ v18: temp-vreg
|
|
|
147e83 |
+
|
|
|
147e83 |
+ ONLY FOR SLOW:
|
|
|
147e83 |
+ v19: first accept-string
|
|
|
147e83 |
+ v20: zero for preparing acc-vector
|
|
|
147e83 |
+ v21: global mask; 1 indicates a match between
|
|
|
147e83 |
+ search-string-vreg and any accept-character
|
|
|
147e83 |
+ v22: current mask; 1 indicates a match between
|
|
|
147e83 |
+ search-string-vreg and any accept-character in current acc-vreg
|
|
|
147e83 |
+ v24: one for result-checking of former string-part
|
|
|
147e83 |
+ v30, v31: for re-/storing registers r6, r8, r9
|
|
|
147e83 |
+ r5: current len of accept-string
|
|
|
147e83 |
+ r6: zero-index in search-string or 16 if no zero
|
|
|
147e83 |
+ or min(zero-index, loaded byte count)
|
|
|
147e83 |
+ r8: >0, if former accept-string-part contains a zero,
|
|
|
147e83 |
+ otherwise =0;
|
|
|
147e83 |
+ r9: loaded byte count of vlbb accept-string
|
|
|
147e83 |
+*/
|
|
|
147e83 |
+ENTRY(__strpbrk_vx)
|
|
|
147e83 |
+ .machine "z13"
|
|
|
147e83 |
+ .machinemode "zarch_nohighgprs"
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Check if accept-string fits in one vreg:
|
|
|
147e83 |
+ ----------------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+ vlbb %v17,0(%r3),6 /* Load accept. */
|
|
|
147e83 |
+ lghi %r1,0 /* Zero out current len. */
|
|
|
147e83 |
+ vlgvb %r0,%v17,0 /* Get first element. */
|
|
|
147e83 |
+ clije %r0,0,.Lfast_end_null /* Return null if accept is empty. */
|
|
|
147e83 |
+ lcbb %r0,0(%r3),6
|
|
|
147e83 |
+ jo .Lcheck_onbb /* Special case if accept lays
|
|
|
147e83 |
+ on block-boundary. */
|
|
|
147e83 |
+.Lcheck_notonbb:
|
|
|
147e83 |
+ vistrbs %v17,%v17 /* Fill with zeros after first zero. */
|
|
|
147e83 |
+ je .Lfast /* Zero found -> accept fits in one vreg. */
|
|
|
147e83 |
+ j .Lslow /* No zero -> accept exceeds one vreg */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lcheck_onbb:
|
|
|
147e83 |
+ /* Accept lays on block-boundary. */
|
|
|
147e83 |
+ vfenezb %v18,%v17,%v17 /* Search zero in loaded accept bytes. */
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Get index of zero or 16 if not found. */
|
|
|
147e83 |
+ clrjl %r4,%r0,.Lcheck_notonbb /* Zero index < loaded bytes count ->
|
|
|
147e83 |
+ Accept fits in one vreg;
|
|
|
147e83 |
+ Fill with zeros and proceed
|
|
|
147e83 |
+ with FAST. */
|
|
|
147e83 |
+ vl %v17,0(%r3) /* Load accept, which exceeds loaded bytes. */
|
|
|
147e83 |
+ j .Lcheck_notonbb /* Check if accept fits in one vreg. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Search s for accept in one vreg
|
|
|
147e83 |
+ -------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+.Lfast:
|
|
|
147e83 |
+ /* Complete accept-string in v17 and remaining bytes are zero. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vlbb %v16,0(%r2),6 /* Load s until next 4k-byte boundary. */
|
|
|
147e83 |
+ lcbb %r0,0(%r2),6 /* Get bytes to 4k-byte boundary or 16. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vfaezbs %v18,%v16,%v17,0 /* Find first element in v16 unequal to any
|
|
|
147e83 |
+ in v17 or first zero element. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+ /* If found index is within loaded bytes, return with found
|
|
|
147e83 |
+ element index (=equal count). */
|
|
|
147e83 |
+ clrjl %r4,%r0,.Lfast_loop_found2
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Align s to 16 byte. */
|
|
|
147e83 |
+ risbgn %r4,%r2,60,128+63,0 /* %r3 = bits 60-63 of %r2 'and' 15. */
|
|
|
147e83 |
+ lghi %r1,16 /* current_len = 16. */
|
|
|
147e83 |
+ slr %r1,%r4 /* Compute bytes to 16bytes boundary. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Process s in 16byte aligned loop. */
|
|
|
147e83 |
+.Lfast_loop:
|
|
|
147e83 |
+ vl %v16,0(%r1,%r2) /* Load search-string. */
|
|
|
147e83 |
+ vfaezbs %v18,%v16,%v17,0 /* Find first element in v16 equal to any
|
|
|
147e83 |
+ in v17 or first zero element. */
|
|
|
147e83 |
+ jno .Lfast_loop_found
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,16(%r1,%r2)
|
|
|
147e83 |
+ vfaezbs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found16
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,32(%r1,%r2)
|
|
|
147e83 |
+ vfaezbs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found32
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,48(%r1,%r2)
|
|
|
147e83 |
+ vfaezbs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found48
|
|
|
147e83 |
+
|
|
|
147e83 |
+ aghi %r1,64
|
|
|
147e83 |
+ j .Lfast_loop /* Loop if no element was unequal to accept
|
|
|
147e83 |
+ and not zero. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Found equal or zero element. */
|
|
|
147e83 |
+.Lfast_loop_found48:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found32:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found16:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found:
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+.Lfast_loop_found2:
|
|
|
147e83 |
+ vlgvb %r0,%v16,0(%r4) /* Get found element. */
|
|
|
147e83 |
+ clije %r0,0,.Lfast_end_null /* Return null if no accept-char found */
|
|
|
147e83 |
+ algfr %r1,%r4 /* Add found index of char to current len. */
|
|
|
147e83 |
+ la %r2,0(%r1,%r2) /* And return pointer to first equal char. */
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lfast_end_null:
|
|
|
147e83 |
+ lghi %r2,0 /* Return null if no character is equal. */
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Search s for accept in multiple vregs
|
|
|
147e83 |
+ -------------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+.Lslow:
|
|
|
147e83 |
+ /* Save registers. */
|
|
|
147e83 |
+ vlvgg %v30,%r6,0
|
|
|
147e83 |
+ vlvgp %v31,%r8,%r9
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* accept in v17 without zero. */
|
|
|
147e83 |
+ vlr %v19,%v17 /* Save first acc-part for a fast reload. */
|
|
|
147e83 |
+ vzero %v20 /* Zero for preparing acc-vector. */
|
|
|
147e83 |
+ vone %v24 /* One for checking result of former string. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Align s to 16 byte. */
|
|
|
147e83 |
+ risbg %r4,%r2,60,128+63,0 /* Test if s is aligned and
|
|
|
147e83 |
+ %r4 = bits 60-63 'and' 15. */
|
|
|
147e83 |
+ je .Lslow_loop_str /* If s is aligned, loop aligned. */
|
|
|
147e83 |
+ lghi %r0,15
|
|
|
147e83 |
+ slr %r0,%r4 /* Compute highest index to load (15-x). */
|
|
|
147e83 |
+ vll %v16,%r0,0(%r2) /* Load up to 16 byte boundary (vll needs
|
|
|
147e83 |
+ highest index, remaining bytes are 0). */
|
|
|
147e83 |
+ ahi %r0,1 /* Work with loaded byte count. */
|
|
|
147e83 |
+ vzero %v21 /* Zero out global mask. */
|
|
|
147e83 |
+ lghi %r5,0 /* Set current len of accept-string to zero. */
|
|
|
147e83 |
+ vfenezb %v18,%v16,%v16 /* Find zero in current string-part. */
|
|
|
147e83 |
+ lghi %r8,0 /* There is no zero in first accept-part. */
|
|
|
147e83 |
+ vlgvb %r6,%v18,7 /* Load byte index of zero or 16 if no zero. */
|
|
|
147e83 |
+ clije %r6,0,.Lslow_end_null /* If first element is zero
|
|
|
147e83 |
+ (end of string) -> return null */
|
|
|
147e83 |
+ clr %r0,%r6 /* cc==1 if loaded byte count < zero-index. */
|
|
|
147e83 |
+ locrl %r6,%r0 /* Load on cc==1; zero-index = lbc. */
|
|
|
147e83 |
+ j .Lslow_loop_acc
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Process s in 16byte aligned loop. */
|
|
|
147e83 |
+.Lslow_next_str:
|
|
|
147e83 |
+ /* Check results of former processed str-part. */
|
|
|
147e83 |
+ vfeeb %v18,%v21,%v24 /* Find first equal match in global mask
|
|
|
147e83 |
+ (ones in element). */
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Get index of first one (=equal)
|
|
|
147e83 |
+ or 16 if no match. */
|
|
|
147e83 |
+ /* Equal-index < min(zero-index, loaded byte count)
|
|
|
147e83 |
+ -> return pointer to equal element. */
|
|
|
147e83 |
+ clrjl %r4,%r6,.Lslow_index_found
|
|
|
147e83 |
+ /* Zero-index < loaded byte count
|
|
|
147e83 |
+ -> former str-part was last str-part
|
|
|
147e83 |
+ -> return null */
|
|
|
147e83 |
+ clrjl %r6,%r0,.Lslow_end_null
|
|
|
147e83 |
+ /* All elements are zero (=no match) -> proceed with next str-part. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vlr %v17,%v19 /* Load first part of accept (no zero). */
|
|
|
147e83 |
+ algfr %r1,%r0 /* Add loaded byte count to current len. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_str:
|
|
|
147e83 |
+ vl %v16,0(%r1,%r2) /* Load search-string */
|
|
|
147e83 |
+ lghi %r0,16 /* Loaded byte count is 16. */
|
|
|
147e83 |
+ vzero %v21 /* Zero out global mask. */
|
|
|
147e83 |
+ lghi %r5,0 /* Set current len of accept to zero. */
|
|
|
147e83 |
+ vfenezb %v18,%v16,%v16 /* Find zero in current string-part. */
|
|
|
147e83 |
+ lghi %r8,0 /* There is no zero in first accept-part. */
|
|
|
147e83 |
+ vlgvb %r6,%v18,7 /* Load byte index of zero or 16 if no zero. */
|
|
|
147e83 |
+ clije %r6,0,.Lslow_end_null /* If first element is zero
|
|
|
147e83 |
+ (end of string) -> return null. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_acc:
|
|
|
147e83 |
+ vfaeb %v22,%v16,%v17,4 /* Create matching-mask (1 in mask ->
|
|
|
147e83 |
+ Character matches any accepted character in
|
|
|
147e83 |
+ this accept-string-part) IN=0, RT=1. */
|
|
|
147e83 |
+ vlgvb %r4,%v22,0 /* Get result of first element. */
|
|
|
147e83 |
+ /* First element is equal to any accepted characters
|
|
|
147e83 |
+ (all other parts of accept cannot lead to a match before this one)
|
|
|
147e83 |
+ -> current len is pointing to first element
|
|
|
147e83 |
+ -> return found */
|
|
|
147e83 |
+ clijh %r4,0,.Lslow_end_found
|
|
|
147e83 |
+ vo %v21,%v21,%v22 /* Global-mask = global-|matching-mask. */
|
|
|
147e83 |
+ /* Proceed with next acc until end of acc is reached. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc:
|
|
|
147e83 |
+ clijh %r8,0,.Lslow_next_str /* There was a zero in the last acc-part
|
|
|
147e83 |
+ -> add index to current_len and
|
|
|
147e83 |
+ end. */
|
|
|
147e83 |
+ vlbb %v17,16(%r5,%r3),6 /* Load next accept part. */
|
|
|
147e83 |
+ aghi %r5,16 /* Increment current len of accept-string. */
|
|
|
147e83 |
+ lcbb %r9,0(%r5,%r3),6 /* Get loaded byte count of accept-string. */
|
|
|
147e83 |
+ jo .Lslow_next_acc_onbb /* Jump away ifaccept-string is
|
|
|
147e83 |
+ on block-boundary. */
|
|
|
147e83 |
+.Lslow_next_acc_notonbb:
|
|
|
147e83 |
+ vistrbs %v17,%v17 /* Fill with zeros after first zero. */
|
|
|
147e83 |
+ jo .Lslow_loop_acc /* No zero found -> no preparation needed. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc_prepare_zero:
|
|
|
147e83 |
+ /* Zero in accept-part: fill zeros with first-accept-character. */
|
|
|
147e83 |
+ vlgvb %r8,%v17,0 /* Load first element of acc-part. */
|
|
|
147e83 |
+ clije %r8,0,.Lslow_next_str /* Proceed with next string-part,
|
|
|
147e83 |
+ if first char in this part of accept
|
|
|
147e83 |
+ is a zero. */
|
|
|
147e83 |
+ /* r8>0 -> zero found in this acc-part. */
|
|
|
147e83 |
+ vrepb %v18,%v17,0 /* Replicate first char accross all chars. */
|
|
|
147e83 |
+ vceqb %v22,%v20,%v17 /* Create a mask (v22) of null chars
|
|
|
147e83 |
+ by comparing with 0 (v20). */
|
|
|
147e83 |
+ vsel %v17,%v18,%v17,%v22 /* Replace null chars with first char. */
|
|
|
147e83 |
+ j .Lslow_loop_acc /* Accept part is prepared -> process. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc_onbb:
|
|
|
147e83 |
+ vfenezb %v18,%v17,%v17 /* Find zero in loaded bytes of accept part. */
|
|
|
147e83 |
+ vlgvb %r8,%v18,7 /* Load byte index of zero. */
|
|
|
147e83 |
+ clrjl %r8,%r9,.Lslow_next_acc_notonbb /* Found a zero in loaded bytes
|
|
|
147e83 |
+ -> Prepare vreg. */
|
|
|
147e83 |
+ vl %v17,0(%r5,%r3) /* Load over boundary ... */
|
|
|
147e83 |
+ lghi %r8,0 /* r8=0 -> no zero in this part of acc,
|
|
|
147e83 |
+ check for zero is in jump-target. */
|
|
|
147e83 |
+ j .Lslow_next_acc_notonbb /* ... and search for zero in
|
|
|
147e83 |
+ fully loaded vreg again. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_end_null:
|
|
|
147e83 |
+ lghi %r1,0 /* Return null if no character is equal. */
|
|
|
147e83 |
+ j .Lslow_end
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_found:
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+ vlgvb %r0,%v16,0(%r4) /* Get found element. */
|
|
|
147e83 |
+ clije %r0,0,.Lslow_end_null /* Return null if no acc-char found. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_index_found:
|
|
|
147e83 |
+ algfr %r1,%r4 /* Add found index of char to current len. */
|
|
|
147e83 |
+.Lslow_end_found:
|
|
|
147e83 |
+ la %r1,0(%r1,%r2) /* And return pointer to first equal char. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_end:
|
|
|
147e83 |
+ /* Restore registers. */
|
|
|
147e83 |
+ vlgvg %r6,%v30,0
|
|
|
147e83 |
+ vlgvg %r8,%v31,0
|
|
|
147e83 |
+ vlgvg %r9,%v31,1
|
|
|
147e83 |
+ lgr %r2,%r1
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+END(__strpbrk_vx)
|
|
|
147e83 |
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/strpbrk.c b/sysdeps/s390/multiarch/strpbrk.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..afcb633
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/strpbrk.c
|
|
|
147e83 |
@@ -0,0 +1,27 @@
|
|
|
147e83 |
+/* Multiple versions of strpbrk.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+# include <string.h>
|
|
|
147e83 |
+# include <ifunc-resolve.h>
|
|
|
147e83 |
+
|
|
|
147e83 |
+s390_vx_libc_ifunc2 (__strpbrk, strpbrk)
|
|
|
147e83 |
+
|
|
|
147e83 |
+#else
|
|
|
147e83 |
+# include <string/strpbrk.c>
|
|
|
147e83 |
+#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc) */
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/wcspbrk-c.c b/sysdeps/s390/multiarch/wcspbrk-c.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..3a27e60
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/wcspbrk-c.c
|
|
|
147e83 |
@@ -0,0 +1,31 @@
|
|
|
147e83 |
+/* Default wcspbrk implementation for S/390.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+# define WCSPBRK __wcspbrk_c
|
|
|
147e83 |
+
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+extern __typeof (wcspbrk) __wcspbrk_c;
|
|
|
147e83 |
+# ifdef SHARED
|
|
|
147e83 |
+# undef libc_hidden_def
|
|
|
147e83 |
+# define libc_hidden_def(name) \
|
|
|
147e83 |
+ __hidden_ver1 (__wcspbrk_c, __GI_wcspbrk, __wcspbrk_c);
|
|
|
147e83 |
+# endif /* SHARED */
|
|
|
147e83 |
+
|
|
|
147e83 |
+# include <wcsmbs/wcspbrk.c>
|
|
|
147e83 |
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/wcspbrk-vx.S b/sysdeps/s390/multiarch/wcspbrk-vx.S
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..e6eaf95
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/wcspbrk-vx.S
|
|
|
147e83 |
@@ -0,0 +1,315 @@
|
|
|
147e83 |
+/* Vector optimized 32/64 bit S/390 version of wcspbrk.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+
|
|
|
147e83 |
+# include "sysdep.h"
|
|
|
147e83 |
+# include "asm-syntax.h"
|
|
|
147e83 |
+
|
|
|
147e83 |
+ .text
|
|
|
147e83 |
+
|
|
|
147e83 |
+/* wchar_t *wcspbrk (const wchar_t *s, const wchar_t * accept)
|
|
|
147e83 |
+ The wcspbrk() function locates the first occurrence in the string s
|
|
|
147e83 |
+ of any of the characters in the string accept and returns a pointer
|
|
|
147e83 |
+ to that character or NULL if not found.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ This method checks the length of accept string. If it fits entirely
|
|
|
147e83 |
+ in one vector register, a fast algorithm is used, which does not need
|
|
|
147e83 |
+ to check multiple parts of accept-string. Otherwise a slower full
|
|
|
147e83 |
+ check of accept-string is used.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ register overview:
|
|
|
147e83 |
+ r3: pointer to start of accept-string
|
|
|
147e83 |
+ r2: pointer to start of search-string
|
|
|
147e83 |
+ r0: loaded byte count of vlbb search-string (32bit unsigned)
|
|
|
147e83 |
+ r4: found byte index (32bit unsigned)
|
|
|
147e83 |
+ r1: current return len (64bit unsigned)
|
|
|
147e83 |
+ v16: search-string
|
|
|
147e83 |
+ v17: accept-string
|
|
|
147e83 |
+ v18: temp-vreg
|
|
|
147e83 |
+
|
|
|
147e83 |
+ ONLY FOR SLOW:
|
|
|
147e83 |
+ v19: first accept-string
|
|
|
147e83 |
+ v20: zero for preparing acc-vector
|
|
|
147e83 |
+ v21: global mask; 1 indicates a match between
|
|
|
147e83 |
+ search-string-vreg and any accept-character
|
|
|
147e83 |
+ v22: current mask; 1 indicates a match between
|
|
|
147e83 |
+ search-string-vreg and any accept-character in current acc-vreg
|
|
|
147e83 |
+ v24: one for result-checking of former string-part
|
|
|
147e83 |
+ v30, v31: for re-/storing registers r6, r8, r9
|
|
|
147e83 |
+ r5: current len of accept-string
|
|
|
147e83 |
+ r6: zero-index in search-string or 16 if no zero
|
|
|
147e83 |
+ or min(zero-index, loaded byte count)
|
|
|
147e83 |
+ r8: >0, if former accept-string-part contains a zero,
|
|
|
147e83 |
+ otherwise =0;
|
|
|
147e83 |
+ r9: loaded byte count of vlbb accept-string
|
|
|
147e83 |
+*/
|
|
|
147e83 |
+ENTRY(__wcspbrk_vx)
|
|
|
147e83 |
+ .machine "z13"
|
|
|
147e83 |
+ .machinemode "zarch_nohighgprs"
|
|
|
147e83 |
+
|
|
|
147e83 |
+ tmll %r2,3 /* Test if s is 4-byte aligned? */
|
|
|
147e83 |
+ jne .Lfallback /* And use common-code variant if not. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Check if accept-string fits in one vreg:
|
|
|
147e83 |
+ ----------------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+ vlbb %v17,0(%r3),6 /* Load accept. */
|
|
|
147e83 |
+ lcbb %r0,0(%r3),6
|
|
|
147e83 |
+ jo .Lcheck_onbb /* Special case if accept lays
|
|
|
147e83 |
+ on block-boundary. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lcheck_notonbb:
|
|
|
147e83 |
+ lghi %r1,0 /* Zero out current len. */
|
|
|
147e83 |
+ vlgvf %r0,%v17,0 /* Get first element. */
|
|
|
147e83 |
+ clije %r0,0,.Lfast_end_null /* Return null if accept is empty. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vistrfs %v17,%v17 /* Fill with zeros after first zero. */
|
|
|
147e83 |
+ je .Lfast /* Zero found -> accept fits in one vreg. */
|
|
|
147e83 |
+ j .Lslow /* No zero -> accept exceeds one vreg */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lcheck_onbb:
|
|
|
147e83 |
+ /* Accept lays on block-boundary. */
|
|
|
147e83 |
+ nill %r0,65532 /* Recognize only fully loaded characters. */
|
|
|
147e83 |
+ je .Lcheck_onbb2 /* Reload vr, if we loaded no full wchar_t. */
|
|
|
147e83 |
+ vfenezf %v18,%v17,%v17 /* Search zero in loaded accept bytes. */
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Get index of zero or 16 if not found. */
|
|
|
147e83 |
+ clrjl %r4,%r0,.Lcheck_notonbb /* Zero index < loaded bytes count ->
|
|
|
147e83 |
+ accept fits in one vreg;
|
|
|
147e83 |
+ Fill with zeros and proceed
|
|
|
147e83 |
+ with FAST. */
|
|
|
147e83 |
+.Lcheck_onbb2:
|
|
|
147e83 |
+ vl %v17,0(%r3) /* Load accept, which exceeds loaded bytes. */
|
|
|
147e83 |
+ j .Lcheck_notonbb /* Check if accept fits in one vreg. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Search s for accept in one vreg
|
|
|
147e83 |
+ -------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+.Lfast:
|
|
|
147e83 |
+ /* Complete accept-string in v17 and remaining bytes are zero. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vlbb %v16,0(%r2),6 /* Load s until next 4k-byte boundary. */
|
|
|
147e83 |
+ lcbb %r0,0(%r2),6 /* Get bytes to 4k-byte boundary or 16. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vfaezfs %v18,%v16,%v17,0 /* Find first element in v16 unequal to any
|
|
|
147e83 |
+ in v17 or first zero element. */
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+ /* If found index is within loaded bytes, return with found
|
|
|
147e83 |
+ element index (=equal count). */
|
|
|
147e83 |
+ clrjl %r4,%r0,.Lfast_loop_found2
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Align s to 16 byte. */
|
|
|
147e83 |
+ risbgn %r4,%r2,60,128+63,0 /* %r3 = bits 60-63 of %r2 'and' 15. */
|
|
|
147e83 |
+ lghi %r1,16 /* current_len = 16. */
|
|
|
147e83 |
+ slr %r1,%r4 /* Compute bytes to 16bytes boundary. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lfast_loop:
|
|
|
147e83 |
+ vl %v16,0(%r1,%r2) /* Load search-string. */
|
|
|
147e83 |
+ vfaezfs %v18,%v16,%v17,0 /* Find first element in v16 equal to any
|
|
|
147e83 |
+ in v17 or first zero element. */
|
|
|
147e83 |
+ jno .Lfast_loop_found
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,16(%r1,%r2)
|
|
|
147e83 |
+ vfaezfs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found16
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,32(%r1,%r2)
|
|
|
147e83 |
+ vfaezfs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found32
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vl %v16,48(%r1,%r2)
|
|
|
147e83 |
+ vfaezfs %v18,%v16,%v17,0
|
|
|
147e83 |
+ jno .Lfast_loop_found48
|
|
|
147e83 |
+
|
|
|
147e83 |
+ aghi %r1,64
|
|
|
147e83 |
+ j .Lfast_loop /* Loop if no element was unequal to accept
|
|
|
147e83 |
+ and not zero. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Found equal or zero element. */
|
|
|
147e83 |
+.Lfast_loop_found48:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found32:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found16:
|
|
|
147e83 |
+ aghi %r1,16
|
|
|
147e83 |
+.Lfast_loop_found:
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+.Lfast_loop_found2:
|
|
|
147e83 |
+ srlg %r5,%r4,2 /* Convert byte-index to character-index. */
|
|
|
147e83 |
+ vlgvf %r0,%v16,0(%r5) /* Get found element. */
|
|
|
147e83 |
+ clije %r0,0,.Lfast_end_null /* Return null if no accept-char found */
|
|
|
147e83 |
+ algfr %r1,%r4 /* Add found index of char to current len. */
|
|
|
147e83 |
+ la %r2,0(%r1,%r2) /* And return pointer to first equal char. */
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lfast_end_null:
|
|
|
147e83 |
+ lghi %r2,0 /* Return null if no character is equal. */
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /*
|
|
|
147e83 |
+ Search s for accept in multiple vregs
|
|
|
147e83 |
+ -------------------------------------
|
|
|
147e83 |
+ */
|
|
|
147e83 |
+.Lslow:
|
|
|
147e83 |
+ /* Save registers. */
|
|
|
147e83 |
+ vlvgg %v30,%r6,0
|
|
|
147e83 |
+ vlvgp %v31,%r8,%r9
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Accept in v17 without zero */
|
|
|
147e83 |
+ vlr %v19,%v17 /* Save first acc-part for a fast reload. */
|
|
|
147e83 |
+ vzero %v20 /* Zero for preparing acc-vector. */
|
|
|
147e83 |
+ vone %v24 /* One for checking result of former string. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Align s to 16 byte. */
|
|
|
147e83 |
+ risbg %r4,%r2,60,128+63,0 /* Test if s is aligned and
|
|
|
147e83 |
+ %r4 = bits 60-63 'and' 15. */
|
|
|
147e83 |
+ je .Lslow_loop_str /* If s is aligned, loop aligned. */
|
|
|
147e83 |
+ lghi %r0,15
|
|
|
147e83 |
+ slr %r0,%r4 /* Compute highest index to load (15-x). */
|
|
|
147e83 |
+ vll %v16,%r0,0(%r2) /* Load up to 16byte boundary;
|
|
|
147e83 |
+ needs highest index, left bytes are 0. */
|
|
|
147e83 |
+ ahi %r0,1 /* Work with loaded byte count. */
|
|
|
147e83 |
+ vzero %v21 /* Zero out global mask. */
|
|
|
147e83 |
+ lghi %r5,0 /* Set current len of accept-string to zero. */
|
|
|
147e83 |
+ vfenezf %v18,%v16,%v16 /* Find zero in current string-part. */
|
|
|
147e83 |
+ lghi %r8,0 /* There is no zero in first accept-part. */
|
|
|
147e83 |
+ vlgvb %r6,%v18,7 /* Load byte index of zero or 16 if no zero. */
|
|
|
147e83 |
+ clije %r6,0,.Lslow_end_null /* If first element is zero
|
|
|
147e83 |
+ (end of string) -> return null */
|
|
|
147e83 |
+ clr %r0,%r6 /* cc==1 if loaded byte count < zero-index. */
|
|
|
147e83 |
+ locrl %r6,%r0 /* Load on cc==1; zero-index = lbc. */
|
|
|
147e83 |
+ j .Lslow_loop_acc
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+ /* Process s in 16byte aligned loop. */
|
|
|
147e83 |
+.Lslow_next_str:
|
|
|
147e83 |
+ /* Check results of former processed str-part. */
|
|
|
147e83 |
+ vfeef %v18,%v21,%v24 /* Find first equal match in global mask
|
|
|
147e83 |
+ (ones in element). */
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Get index of first one (=equal)
|
|
|
147e83 |
+ or 16 if no match. */
|
|
|
147e83 |
+ /* Equal-index < min(zero-index, loaded byte count)
|
|
|
147e83 |
+ -> return pointer to equal element. */
|
|
|
147e83 |
+ clrjl %r4,%r6,.Lslow_index_found
|
|
|
147e83 |
+ /* Zero-index < loaded byte count
|
|
|
147e83 |
+ -> former str-part was last str-part
|
|
|
147e83 |
+ -> return null */
|
|
|
147e83 |
+ clrjl %r6,%r0,.Lslow_end_null
|
|
|
147e83 |
+ /* All elements are zero (=no match) -> proceed with next str-part. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+ vlr %v17,%v19 /* Load first part of accept (no zero). */
|
|
|
147e83 |
+ algfr %r1,%r0 /* Add loaded byte count to current len. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_str:
|
|
|
147e83 |
+ vl %v16,0(%r1,%r2) /* Load search-string */
|
|
|
147e83 |
+ lghi %r0,16 /* Loaded byte count is 16. */
|
|
|
147e83 |
+ vzero %v21 /* Zero out global mask. */
|
|
|
147e83 |
+ lghi %r5,0 /* Set current len of accept to zero. */
|
|
|
147e83 |
+ vfenezf %v18,%v16,%v16 /* Find zero in current string-part. */
|
|
|
147e83 |
+ lghi %r8,0 /* There is no zero in first accept-part. */
|
|
|
147e83 |
+ vlgvb %r6,%v18,7 /* Load byte index of zero or 16 if no zero. */
|
|
|
147e83 |
+ clije %r6,0,.Lslow_end_null /* If first element is zero
|
|
|
147e83 |
+ (end of string) -> return null. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_acc:
|
|
|
147e83 |
+ vfaef %v22,%v16,%v17,4 /* Create matching-mask (1 in mask ->
|
|
|
147e83 |
+ Character matches any accepted character in
|
|
|
147e83 |
+ this accept-string-part) IN=0, RT=1. */
|
|
|
147e83 |
+ vlgvf %r4,%v22,0 /* Get result of first element. */
|
|
|
147e83 |
+ /* First element is equal to any accepted characters
|
|
|
147e83 |
+ (all other parts of accept cannot lead to a match before this one)
|
|
|
147e83 |
+ -> current len is pointing to first element
|
|
|
147e83 |
+ -> return found */
|
|
|
147e83 |
+ clijh %r4,0,.Lslow_end_found
|
|
|
147e83 |
+ vo %v21,%v21,%v22 /* Global-mask = global-|matching-mask. */
|
|
|
147e83 |
+ /* Proceed with next acc until end of acc is reached. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc:
|
|
|
147e83 |
+ clijh %r8,0,.Lslow_next_str /* There was a zero in the last acc-part
|
|
|
147e83 |
+ -> add index to current len and
|
|
|
147e83 |
+ end. */
|
|
|
147e83 |
+ vlbb %v17,16(%r5,%r3),6 /* Load next accept part. */
|
|
|
147e83 |
+ aghi %r5,16 /* Increment current len of accept-string. */
|
|
|
147e83 |
+ lcbb %r9,0(%r5,%r3),6 /* Get loaded byte count of accept-string. */
|
|
|
147e83 |
+ jo .Lslow_next_acc_onbb /* Jump away ifaccept-string is
|
|
|
147e83 |
+ on block-boundary. */
|
|
|
147e83 |
+.Lslow_next_acc_notonbb:
|
|
|
147e83 |
+ vistrfs %v17,%v17 /* Fill with zeros after first zero. */
|
|
|
147e83 |
+ jo .Lslow_loop_acc /* No zero found -> no preparation needed. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc_prepare_zero:
|
|
|
147e83 |
+ /* Zero in accept-part: fill zeros with first-accept-character. */
|
|
|
147e83 |
+ vlgvf %r8,%v17,0 /* Load first element of acc-part. */
|
|
|
147e83 |
+ clije %r8,0,.Lslow_next_str /* Proceed with next string-part,
|
|
|
147e83 |
+ If first char in this part of accept
|
|
|
147e83 |
+ is a zero. */
|
|
|
147e83 |
+ /* r8>0 -> zero found in this acc-part. */
|
|
|
147e83 |
+ vrepf %v18,%v17,0 /* Replicate first char accross all chars. */
|
|
|
147e83 |
+ vceqf %v22,%v20,%v17 /* Create a mask (v22) of null chars
|
|
|
147e83 |
+ by comparing with 0 (v20). */
|
|
|
147e83 |
+ vsel %v17,%v18,%v17,%v22 /* Replace null chars with first char. */
|
|
|
147e83 |
+ j .Lslow_loop_acc /* Accept part is prepared -> process. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_next_acc_onbb:
|
|
|
147e83 |
+ nill %r9,65532 /* Recognize only fully loaded characters. */
|
|
|
147e83 |
+ je .Lslow_next_acc_onbb2 /* Reload vr, if no full wchar_t. */
|
|
|
147e83 |
+ vfenezf %v18,%v17,%v17 /* Find zero in loaded bytes of accept part. */
|
|
|
147e83 |
+ vlgvb %r8,%v18,7 /* Load byte index of zero. */
|
|
|
147e83 |
+ clrjl %r8,%r9,.Lslow_next_acc_notonbb /* Found a zero in loaded bytes
|
|
|
147e83 |
+ -> Prepare vreg. */
|
|
|
147e83 |
+.Lslow_next_acc_onbb2:
|
|
|
147e83 |
+ vl %v17,0(%r5,%r3) /* Load over boundary ... */
|
|
|
147e83 |
+ lghi %r8,0 /* r8=0 -> no zero in this part of acc,
|
|
|
147e83 |
+ check for zero is in jump-target. */
|
|
|
147e83 |
+ j .Lslow_next_acc_notonbb /* ... and search for zero in
|
|
|
147e83 |
+ fully loaded vreg again. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_end_null:
|
|
|
147e83 |
+ lghi %r1,0 /* Return null if no character is equal. */
|
|
|
147e83 |
+ j .Lslow_end
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_loop_found:
|
|
|
147e83 |
+ vlgvb %r4,%v18,7 /* Load byte index of found element. */
|
|
|
147e83 |
+ srlg %r5,%r4,2 /* Convert byte-index to character-index. */
|
|
|
147e83 |
+ vlgvf %r0,%v16,0(%r5) /* Get found element. */
|
|
|
147e83 |
+ clije %r0,0,.Lslow_end_null /* Return null if no acc-char found. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_index_found:
|
|
|
147e83 |
+ algfr %r1,%r4 /* Add found index of char to current len. */
|
|
|
147e83 |
+.Lslow_end_found:
|
|
|
147e83 |
+ la %r1,0(%r1,%r2) /* And return pointer to first equal char. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+.Lslow_end:
|
|
|
147e83 |
+ /* Restore registers. */
|
|
|
147e83 |
+ vlgvg %r6,%v30,0
|
|
|
147e83 |
+ vlgvg %r8,%v31,0
|
|
|
147e83 |
+ vlgvg %r9,%v31,1
|
|
|
147e83 |
+ lgr %r2,%r1
|
|
|
147e83 |
+ br %r14
|
|
|
147e83 |
+.Lfallback:
|
|
|
147e83 |
+ jg __wcspbrk_c
|
|
|
147e83 |
+END(__wcspbrk_vx)
|
|
|
147e83 |
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
|
|
|
147e83 |
diff --git a/sysdeps/s390/multiarch/wcspbrk.c b/sysdeps/s390/multiarch/wcspbrk.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..1a0ef9c
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/sysdeps/s390/multiarch/wcspbrk.c
|
|
|
147e83 |
@@ -0,0 +1,27 @@
|
|
|
147e83 |
+/* Multiple versions of wcspbrk.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#if defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc
|
|
|
147e83 |
+# include <wchar.h>
|
|
|
147e83 |
+# include <ifunc-resolve.h>
|
|
|
147e83 |
+
|
|
|
147e83 |
+s390_vx_libc_ifunc2 (__wcspbrk, wcspbrk)
|
|
|
147e83 |
+
|
|
|
147e83 |
+#else
|
|
|
147e83 |
+# include <wcsmbs/wcspbrk.c>
|
|
|
147e83 |
+#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc) */
|
|
|
147e83 |
diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile
|
|
|
147e83 |
index 843a23c..7ecff8b 100644
|
|
|
147e83 |
--- a/wcsmbs/Makefile
|
|
|
147e83 |
+++ b/wcsmbs/Makefile
|
|
|
147e83 |
@@ -42,7 +42,7 @@ routines := wcscat wcschr wcscmp wcscpy wcscspn wcsdup wcslen wcsncat \
|
|
|
147e83 |
mbrtoc16 c16rtomb
|
|
|
147e83 |
|
|
|
147e83 |
strop-tests := wcscmp wcsncmp wmemcmp wcslen wcschr wcsrchr wcscpy wcsnlen \
|
|
|
147e83 |
- wcpcpy wcsncpy wcpncpy wcscat wcsncat wcschrnul wcsspn
|
|
|
147e83 |
+ wcpcpy wcsncpy wcpncpy wcscat wcsncat wcschrnul wcsspn wcspbrk
|
|
|
147e83 |
tests := tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-btowc tst-mbrtowc \
|
|
|
147e83 |
tst-wcrtomb tst-wcpncpy tst-mbsrtowcs tst-wchar-h tst-mbrtowc2 \
|
|
|
147e83 |
tst-c16c32-1 wcsatcliff $(addprefix test-,$(strop-tests))
|
|
|
147e83 |
diff --git a/wcsmbs/test-wcspbrk-ifunc.c b/wcsmbs/test-wcspbrk-ifunc.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..af389b6
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/wcsmbs/test-wcspbrk-ifunc.c
|
|
|
147e83 |
@@ -0,0 +1,20 @@
|
|
|
147e83 |
+/* Test and measure IFUNC implementations of wcspbrk function.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#define TEST_IFUNC 1
|
|
|
147e83 |
+#include "test-wcspbrk.c"
|
|
|
147e83 |
diff --git a/wcsmbs/test-wcspbrk.c b/wcsmbs/test-wcspbrk.c
|
|
|
147e83 |
new file mode 100644
|
|
|
147e83 |
index 0000000..98e44e5
|
|
|
147e83 |
--- /dev/null
|
|
|
147e83 |
+++ b/wcsmbs/test-wcspbrk.c
|
|
|
147e83 |
@@ -0,0 +1,20 @@
|
|
|
147e83 |
+/* Test wcspbrk functions.
|
|
|
147e83 |
+ Copyright (C) 2015 Free Software Foundation, Inc.
|
|
|
147e83 |
+ This file is part of the GNU C Library.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
147e83 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
147e83 |
+ License as published by the Free Software Foundation; either
|
|
|
147e83 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
147e83 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
147e83 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
147e83 |
+ Lesser General Public License for more details.
|
|
|
147e83 |
+
|
|
|
147e83 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
147e83 |
+ License along with the GNU C Library; if not, see
|
|
|
147e83 |
+ <http://www.gnu.org/licenses/>. */
|
|
|
147e83 |
+
|
|
|
147e83 |
+#define WIDE 1
|
|
|
147e83 |
+#include "../string/test-strpbrk.c"
|
|
|
147e83 |
diff --git a/wcsmbs/wcspbrk.c b/wcsmbs/wcspbrk.c
|
|
|
147e83 |
index a39f148..b769a38 100644
|
|
|
147e83 |
--- a/wcsmbs/wcspbrk.c
|
|
|
147e83 |
+++ b/wcsmbs/wcspbrk.c
|
|
|
147e83 |
@@ -18,6 +18,9 @@
|
|
|
147e83 |
|
|
|
147e83 |
#include <wchar.h>
|
|
|
147e83 |
|
|
|
147e83 |
+#ifdef WCSPBRK
|
|
|
147e83 |
+# define wcspbrk WCSPBRK
|
|
|
147e83 |
+#endif
|
|
|
147e83 |
|
|
|
147e83 |
/* Find the first occurrence in WCS of any wide-character in ACCEPT. */
|
|
|
147e83 |
wchar_t *
|
|
|
147e83 |
--
|
|
|
147e83 |
2.3.0
|
|
|
147e83 |
|