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