bca718
From 6be435ec4f615266351487da396333f3ff026c03 Mon Sep 17 00:00:00 2001
bca718
From: Stefan Liebler <stli@linux.vnet.ibm.com>
bca718
Date: Thu, 8 Oct 2015 13:02:41 +0200
bca718
Subject: [PATCH 25/30] S390: Optimize strcspn and wcscspn.
bca718
bca718
upstream-commit-id: b4c21601b147efc3c2b0e679e4ffc554b3987f0b
bca718
https://www.sourceware.org/ml/libc-alpha/2015-07/msg00099.html
bca718
bca718
This patch provides optimized versions of strcspn and wcscspn with the z13
bca718
vector instructions.
bca718
bca718
ChangeLog:
bca718
bca718
	* sysdeps/s390/multiarch/strcspn-c.c: New File.
bca718
	* sysdeps/s390/multiarch/strcspn-vx.S: Likewise.
bca718
	* sysdeps/s390/multiarch/strcspn.c: Likewise.
bca718
	* sysdeps/s390/multiarch/wcscspn-c.c: Likewise.
bca718
	* sysdeps/s390/multiarch/wcscspn-vx.S: Likewise.
bca718
	* sysdeps/s390/multiarch/wcscspn.c: Likewise.
bca718
	* sysdeps/s390/multiarch/Makefile (sysdep_routines): Add strcspn and
bca718
	wcscspn functions.
bca718
	* sysdeps/s390/multiarch/ifunc-impl-list.c
bca718
	(__libc_ifunc_impl_list): Add ifunc test for strcspn, wcscspn.
bca718
	* wcsmbs/wcscspn.c: Use WCSCSPN if defined.
bca718
	* string/test-strcspn.c: Add wcscspn support.
bca718
	* wcsmbs/test-wcscspn.c: New File.
bca718
	* wcsmbs/Makefile (strop-tests): Add wcscspn.
bca718
	* benchtests/bench-strcspn.c: Add wcscspn support.
bca718
	* benchtests/bench-wcscspn.c: New File.
bca718
	* benchtests/Makefile (wcsmbs-bench): Add wcscspn.
bca718
---
bca718
 benchtests/Makefile                      |   2 +-
bca718
 benchtests/bench-strcspn.c               |  45 +++--
bca718
 benchtests/bench-wcscspn.c               |  20 +++
bca718
 string/strcspn.c                         |   8 +-
bca718
 string/test-strcspn.c                    |  45 +++--
bca718
 sysdeps/s390/multiarch/Makefile          |   6 +-
bca718
 sysdeps/s390/multiarch/ifunc-impl-list.c |   3 +
bca718
 sysdeps/s390/multiarch/strcspn-c.c       |  28 +++
bca718
 sysdeps/s390/multiarch/strcspn-vx.S      | 281 +++++++++++++++++++++++++++++
bca718
 sysdeps/s390/multiarch/strcspn.c         |  27 +++
bca718
 sysdeps/s390/multiarch/wcscspn-c.c       |  26 +++
bca718
 sysdeps/s390/multiarch/wcscspn-vx.S      | 293 +++++++++++++++++++++++++++++++
bca718
 sysdeps/s390/multiarch/wcscspn.c         |  27 +++
bca718
 wcsmbs/Makefile                          |   3 +-
bca718
 wcsmbs/test-wcscspn-ifunc.c              |  20 +++
bca718
 wcsmbs/test-wcscspn.c                    |  20 +++
bca718
 wcsmbs/wcscspn.c                         |   3 +
bca718
 17 files changed, 826 insertions(+), 31 deletions(-)
bca718
 create mode 100644 benchtests/bench-wcscspn.c
bca718
 create mode 100644 sysdeps/s390/multiarch/strcspn-c.c
bca718
 create mode 100644 sysdeps/s390/multiarch/strcspn-vx.S
bca718
 create mode 100644 sysdeps/s390/multiarch/strcspn.c
bca718
 create mode 100644 sysdeps/s390/multiarch/wcscspn-c.c
bca718
 create mode 100644 sysdeps/s390/multiarch/wcscspn-vx.S
bca718
 create mode 100644 sysdeps/s390/multiarch/wcscspn.c
bca718
 create mode 100644 wcsmbs/test-wcscspn-ifunc.c
bca718
 create mode 100644 wcsmbs/test-wcscspn.c
bca718
bca718
diff --git a/benchtests/Makefile b/benchtests/Makefile
bca718
index 015b5d6..4e811a9 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 wcspbrk
bca718
+		wcsncmp wcsncmp wcschr wcschrnul wcsrchr wcsspn wcspbrk wcscspn
bca718
 string-bench-all := $(string-bench) ${wcsmbs-bench}
bca718
 
bca718
 stdlib-bench := strtod
bca718
diff --git a/benchtests/bench-strcspn.c b/benchtests/bench-strcspn.c
bca718
index 22b3b84..25de640 100644
bca718
--- a/benchtests/bench-strcspn.c
bca718
+++ b/benchtests/bench-strcspn.c
bca718
@@ -19,22 +19,41 @@
bca718
 #define STRPBRK_RESULT(s, pos) (pos)
bca718
 #define RES_TYPE size_t
bca718
 #define TEST_MAIN
bca718
-#define TEST_NAME "strcspn"
bca718
+#ifndef WIDE
bca718
+# define TEST_NAME "strcspn"
bca718
+#else
bca718
+# define TEST_NAME "wcscspn"
bca718
+#endif /* WIDE */
bca718
 #include "bench-string.h"
bca718
 
bca718
-typedef size_t (*proto_t) (const char *, const char *);
bca718
-size_t simple_strcspn (const char *, const char *);
bca718
-size_t stupid_strcspn (const char *, const char *);
bca718
+#ifndef WIDE
bca718
+# define STRCSPN strcspn
bca718
+# define CHAR char
bca718
+# define SIMPLE_STRCSPN simple_strcspn
bca718
+# define STUPID_STRCSPN stupid_strcspn
bca718
+# define STRLEN strlen
bca718
+#else
bca718
+# include <wchar.h>
bca718
+# define STRCSPN wcscspn
bca718
+# define CHAR wchar_t
bca718
+# define SIMPLE_STRCSPN simple_wcscspn
bca718
+# define STUPID_STRCSPN stupid_wcscspn
bca718
+# define STRLEN wcslen
bca718
+#endif /* WIDE */
bca718
 
bca718
-IMPL (stupid_strcspn, 0)
bca718
-IMPL (simple_strcspn, 0)
bca718
-IMPL (strcspn, 1)
bca718
+typedef size_t (*proto_t) (const CHAR *, const CHAR *);
bca718
+size_t SIMPLE_STRCSPN (const CHAR *, const CHAR *);
bca718
+size_t STUPID_STRCSPN (const CHAR *, const CHAR *);
bca718
+
bca718
+IMPL (STUPID_STRCSPN, 0)
bca718
+IMPL (SIMPLE_STRCSPN, 0)
bca718
+IMPL (STRCSPN, 1)
bca718
 
bca718
 size_t
bca718
-simple_strcspn (const char *s, const char *rej)
bca718
+SIMPLE_STRCSPN (const CHAR *s, const CHAR *rej)
bca718
 {
bca718
-  const char *r, *str = s;
bca718
-  char c;
bca718
+  const CHAR *r, *str = s;
bca718
+  CHAR c;
bca718
 
bca718
   while ((c = *s++) != '\0')
bca718
     for (r = rej; *r != '\0'; ++r)
bca718
@@ -44,9 +63,9 @@ simple_strcspn (const char *s, const char *rej)
bca718
 }
bca718
 
bca718
 size_t
bca718
-stupid_strcspn (const char *s, const char *rej)
bca718
+STUPID_STRCSPN (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
@@ -56,4 +75,6 @@ stupid_strcspn (const char *s, const char *rej)
bca718
   return i;
bca718
 }
bca718
 
bca718
+#undef CHAR
bca718
+#undef STRLEN
bca718
 #include "bench-strpbrk.c"
bca718
diff --git a/benchtests/bench-wcscspn.c b/benchtests/bench-wcscspn.c
bca718
new file mode 100644
bca718
index 0000000..3991951
bca718
--- /dev/null
bca718
+++ b/benchtests/bench-wcscspn.c
bca718
@@ -0,0 +1,20 @@
bca718
+/* Measure wcscspn 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-strcspn.c"
bca718
diff --git a/string/strcspn.c b/string/strcspn.c
bca718
index 6290429..0c750a8 100644
bca718
--- a/string/strcspn.c
bca718
+++ b/string/strcspn.c
bca718
@@ -30,12 +30,14 @@
bca718
 
bca718
 #undef strcspn
bca718
 
bca718
+#ifndef STRCSPN
bca718
+# define STRCSPN strcspn
bca718
+#endif
bca718
+
bca718
 /* Return the length of the maximum initial segment of S
bca718
    which contains no characters from REJECT.  */
bca718
 size_t
bca718
-strcspn (s, reject)
bca718
-     const char *s;
bca718
-     const char *reject;
bca718
+STRCSPN (const char *s, const char *reject)
bca718
 {
bca718
   size_t count = 0;
bca718
 
bca718
diff --git a/string/test-strcspn.c b/string/test-strcspn.c
bca718
index e2863c7..3443425 100644
bca718
--- a/string/test-strcspn.c
bca718
+++ b/string/test-strcspn.c
bca718
@@ -20,22 +20,41 @@
bca718
 #define STRPBRK_RESULT(s, pos) (pos)
bca718
 #define RES_TYPE size_t
bca718
 #define TEST_MAIN
bca718
-#define TEST_NAME "strcspn"
bca718
+#ifndef WIDE
bca718
+# define TEST_NAME "strcspn"
bca718
+#else
bca718
+# define TEST_NAME "wcscspn"
bca718
+#endif /* WIDE */
bca718
 #include "test-string.h"
bca718
 
bca718
-typedef size_t (*proto_t) (const char *, const char *);
bca718
-size_t simple_strcspn (const char *, const char *);
bca718
-size_t stupid_strcspn (const char *, const char *);
bca718
+#ifndef WIDE
bca718
+# define STRCSPN strcspn
bca718
+# define CHAR char
bca718
+# define SIMPLE_STRCSPN simple_strcspn
bca718
+# define STUPID_STRCSPN stupid_strcspn
bca718
+# define STRLEN strlen
bca718
+#else
bca718
+# include <wchar.h>
bca718
+# define STRCSPN wcscspn
bca718
+# define CHAR wchar_t
bca718
+# define SIMPLE_STRCSPN simple_wcscspn
bca718
+# define STUPID_STRCSPN stupid_wcscspn
bca718
+# define STRLEN wcslen
bca718
+#endif /* WIDE */
bca718
 
bca718
-IMPL (stupid_strcspn, 0)
bca718
-IMPL (simple_strcspn, 0)
bca718
-IMPL (strcspn, 1)
bca718
+typedef size_t (*proto_t) (const CHAR *, const CHAR *);
bca718
+size_t SIMPLE_STRCSPN (const CHAR *, const CHAR *);
bca718
+size_t STUPID_STRCSPN (const CHAR *, const CHAR *);
bca718
+
bca718
+IMPL (STUPID_STRCSPN, 0)
bca718
+IMPL (SIMPLE_STRCSPN, 0)
bca718
+IMPL (STRCSPN, 1)
bca718
 
bca718
 size_t
bca718
-simple_strcspn (const char *s, const char *rej)
bca718
+SIMPLE_STRCSPN (const CHAR *s, const CHAR *rej)
bca718
 {
bca718
-  const char *r, *str = s;
bca718
-  char c;
bca718
+  const CHAR *r, *str = s;
bca718
+  CHAR c;
bca718
 
bca718
   while ((c = *s++) != '\0')
bca718
     for (r = rej; *r != '\0'; ++r)
bca718
@@ -45,9 +64,9 @@ simple_strcspn (const char *s, const char *rej)
bca718
 }
bca718
 
bca718
 size_t
bca718
-stupid_strcspn (const char *s, const char *rej)
bca718
+STUPID_STRCSPN (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
@@ -57,4 +76,6 @@ stupid_strcspn (const char *s, const char *rej)
bca718
   return i;
bca718
 }
bca718
 
bca718
+#undef CHAR
bca718
+#undef STRLEN
bca718
 #include "test-strpbrk.c"
bca718
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile
bca718
index 5765a8c..2c1fce0 100644
bca718
--- a/sysdeps/s390/multiarch/Makefile
bca718
+++ b/sysdeps/s390/multiarch/Makefile
bca718
@@ -13,7 +13,8 @@ sysdep_routines += strlen strlen-vx strlen-c \
bca718
 		   strchrnul strchrnul-vx strchrnul-c \
bca718
 		   strrchr strrchr-vx strrchr-c \
bca718
 		   strspn strspn-vx strspn-c \
bca718
-		   strpbrk strpbrk-vx strpbrk-c
bca718
+		   strpbrk strpbrk-vx strpbrk-c \
bca718
+		   strcspn strcspn-vx strcspn-c
bca718
 endif
bca718
 
bca718
 ifeq ($(subdir),wcsmbs)
bca718
@@ -31,5 +32,6 @@ sysdep_routines += wcslen wcslen-vx wcslen-c \
bca718
 		   wcschrnul wcschrnul-vx wcschrnul-c \
bca718
 		   wcsrchr wcsrchr-vx wcsrchr-c \
bca718
 		   wcsspn wcsspn-vx wcsspn-c \
bca718
-		   wcspbrk wcspbrk-vx wcspbrk-c
bca718
+		   wcspbrk wcspbrk-vx wcspbrk-c \
bca718
+		   wcscspn wcscspn-vx wcscspn-c
bca718
 endif
bca718
diff --git a/sysdeps/s390/multiarch/ifunc-impl-list.c b/sysdeps/s390/multiarch/ifunc-impl-list.c
bca718
index b39a5c5..7f62e49 100644
bca718
--- a/sysdeps/s390/multiarch/ifunc-impl-list.c
bca718
+++ b/sysdeps/s390/multiarch/ifunc-impl-list.c
bca718
@@ -124,6 +124,9 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
bca718
   IFUNC_VX_IMPL (strpbrk);
bca718
   IFUNC_VX_IMPL (wcspbrk);
bca718
 
bca718
+  IFUNC_VX_IMPL (strcspn);
bca718
+  IFUNC_VX_IMPL (wcscspn);
bca718
+
bca718
 #endif /* HAVE_S390_VX_ASM_SUPPORT */
bca718
 
bca718
   return i;
bca718
diff --git a/sysdeps/s390/multiarch/strcspn-c.c b/sysdeps/s390/multiarch/strcspn-c.c
bca718
new file mode 100644
bca718
index 0000000..af04b4e
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/strcspn-c.c
bca718
@@ -0,0 +1,28 @@
bca718
+/* Default strcspn 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 STRCSPN  __strcspn_c
bca718
+# ifdef SHARED
bca718
+#  undef libc_hidden_builtin_def
bca718
+#  define libc_hidden_builtin_def(name)				\
bca718
+     __hidden_ver1 (__strcspn_c, __GI_strcspn, __strcspn_c);
bca718
+# endif /* SHARED */
bca718
+
bca718
+# include <string/strcspn.c>
bca718
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
bca718
diff --git a/sysdeps/s390/multiarch/strcspn-vx.S b/sysdeps/s390/multiarch/strcspn-vx.S
bca718
new file mode 100644
bca718
index 0000000..c7113c4
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/strcspn-vx.S
bca718
@@ -0,0 +1,281 @@
bca718
+/* Vector optimized 32/64 bit S/390 version of strcspn.
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
+/* size_t strcspn (const char *s, const char * reject)
bca718
+   The strcspn() function calculates the length of the initial segment
bca718
+   of s which consists entirely of characters not in reject.
bca718
+
bca718
+   This method checks the length of reject 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 reject-string
bca718
+   r2:  pointer to start of search-string
bca718
+   r0:  loaded byte count of vlbb search-string
bca718
+   r4:  found byte index
bca718
+   r1:  current return len
bca718
+   v16: search-string
bca718
+   v17: reject-string
bca718
+   v18: temp-vreg
bca718
+
bca718
+   ONLY FOR SLOW:
bca718
+   v19: first reject-string
bca718
+   v20: zero for preparing acc-vector
bca718
+   v21: global mask; 1 indicates a match between
bca718
+	search-string-vreg and any reject-character
bca718
+   v22: current mask; 1 indicates a match between
bca718
+	search-string-vreg and any reject-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 reject-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 reject-string-part contains a zero,
bca718
+			otherwise =0;
bca718
+   r9:  loaded byte count of vlbb reject-string
bca718
+*/
bca718
+ENTRY(__strcspn_vx)
bca718
+	.machine "z13"
bca718
+	.machinemode "zarch_nohighgprs"
bca718
+
bca718
+	/*
bca718
+	  Check if reject-string fits in one vreg:
bca718
+	  ----------------------------------------
bca718
+	*/
bca718
+	vlbb	%v17,0(%r3),6	/* Load reject.  */
bca718
+	lghi	%r1,0		/* Zero out current len.  */
bca718
+	lcbb	%r0,0(%r3),6
bca718
+	jo	.Lcheck_onbb	/* Special case if reject
bca718
+				   lays on block-boundary.  */
bca718
+.Lcheck_notonbb:
bca718
+	vistrbs	%v17,%v17	/* Fill with zeros after first zero.  */
bca718
+	je	.Lfast		/* Zero found -> reject fits in one vreg.  */
bca718
+	j	.Lslow		/* No zero -> reject exceeds one vreg.  */
bca718
+
bca718
+
bca718
+.Lcheck_onbb:
bca718
+	/* Reject lays on block-boundary.  */
bca718
+	vfenezb	%v18,%v17,%v17	/* Search zero in loaded reject 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
+					    Reject fits in one vreg;
bca718
+					    Fill with zeros and proceed
bca718
+					    with FAST.  */
bca718
+	vl	%v17,0(%r3)	/* Load reject, which exceeds loaded bytes.  */
bca718
+	j	.Lcheck_notonbb /* Check if reject fits in one vreg.  */
bca718
+
bca718
+
bca718
+	/*
bca718
+	  Search s for reject in one vreg
bca718
+	  -------------------------------
bca718
+	*/
bca718
+.Lfast:
bca718
+	/* Complete reject-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
bca718
+				    unequal to any in v17
bca718
+				    or first zero element.  */
bca718
+
bca718
+	vlgvb	%r4,%v18,7	/* Load byte index of found element.  */
bca718
+	clrjl	%r4,%r0,.Lfast_loop_found2 /* If found index is within loaded
bca718
+					       bytes, return with found element
bca718
+					       index (=equal count).  */
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 reject
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 or zero.  */
bca718
+.Lfast_loop_found2:
bca718
+	algrk	%r2,%r1,%r4	/* Add found index to current len.  */
bca718
+	br	%r14
bca718
+
bca718
+
bca718
+
bca718
+	/*
bca718
+	  Search s for reject in multiple vregs
bca718
+	  -------------------------------------
bca718
+	*/
bca718
+.Lslow:
bca718
+	/* Save registers.  */
bca718
+	vlvgg	%v30,%r6,0
bca718
+	vlvgp	%v31,%r8,%r9
bca718
+
bca718
+	/* Reject 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
bca718
+				   string-part.  */
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 reject-string to zero.  */
bca718
+	vfenezb	%v18,%v16,%v16	/* Find zero in current string-part.  */
bca718
+	lghi	%r8,0		/* There is no zero in first reject-part.  */
bca718
+	vlgvb	%r6,%v18,7	/* Load byte index of zero or 16 if no zero.  */
bca718
+	clije	%r6,0,.Lslow_end /* If first element is zero -> return 0.  */
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) or 16.  */
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_not_found
bca718
+
bca718
+	/* All elements are zero (=no match) -> Proceed with next str-part.  */
bca718
+	vlr	%v17,%v19	/* Load first part of reject (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 reject to zero.  */
bca718
+	vfenezb	%v18,%v16,%v16	/* Find zero in current string-part.  */
bca718
+	lghi	%r8,0		/* There is no zero in first reject-part.  */
bca718
+	vlgvb	%r6,%v18,7	/* Load byte index of zero or 16 if no zero.  */
bca718
+	clije	%r6,0,.Lslow_end /* If first element is zero (end of string)
bca718
+				     -> Return current length.  */
bca718
+
bca718
+.Lslow_loop_acc:
bca718
+	vfaeb	%v22,%v16,%v17,4 /* Create matching-mask (1 in mask ->
bca718
+				    Character matches any rejected character in
bca718
+				    this reject-string-part) IN=0, RT=1.  */
bca718
+	vlgvb	%r4,%v22,0	/* Get result of first element.  */
bca718
+	/* First element is equal to any rejected characters?
bca718
+	   (all other parts of reject cannot lead to a match before this one)
bca718
+	   -> Return current len, which is pointing to this element.  */
bca718
+	clijh	%r4,0,.Lslow_end
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 last reject-part
bca718
+					  -> Add found index to current len
bca718
+					     and end.  */
bca718
+	vlbb	%v17,16(%r5,%r3),6 /* Load next reject part.  */
bca718
+	aghi	%r5,16		/* Increment current len of reject-string.  */
bca718
+	lcbb	%r9,0(%r5,%r3),6 /* Get loaded byte count of reject-string.  */
bca718
+	jo	.Lslow_next_acc_onbb /* Jump away if reject-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 reject-part: fill zeros with first-reject-character.  */
bca718
+	vlgvb	%r8,%v17,0	/* Load first element of reject-part.  */
bca718
+	clije	%r8,0,.Lslow_next_str /* Process next str-part if first
bca718
+					  character in this part of reject
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 /* Reject-string part is prepared.  */
bca718
+
bca718
+.Lslow_next_acc_onbb:
bca718
+	vfenezb	%v18,%v17,%v17	/* Find zero in loaded bytes of reject 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_not_found:
bca718
+	algfr	%r1,%r6		/* Add zero-index to current len.  */
bca718
+	j	.Lslow_end
bca718
+.Lslow_index_found:
bca718
+	algfr	%r1,%r4		/* Add found index of char to current len.  */
bca718
+.Lslow_end:
bca718
+	lgr	%r2,%r1
bca718
+	/* Restore registers.  */
bca718
+	vlgvg	%r6,%v30,0
bca718
+	vlgvg	%r8,%v31,0
bca718
+	vlgvg	%r9,%v31,1
bca718
+	br	%r14
bca718
+END(__strcspn_vx)
bca718
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
bca718
diff --git a/sysdeps/s390/multiarch/strcspn.c b/sysdeps/s390/multiarch/strcspn.c
bca718
new file mode 100644
bca718
index 0000000..32b46c4
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/strcspn.c
bca718
@@ -0,0 +1,27 @@
bca718
+/* Multiple versions of strcspn.
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 (__strcspn, strcspn)
bca718
+
bca718
+#else
bca718
+# include <string/strcspn.c>
bca718
+#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc) */
bca718
diff --git a/sysdeps/s390/multiarch/wcscspn-c.c b/sysdeps/s390/multiarch/wcscspn-c.c
bca718
new file mode 100644
bca718
index 0000000..95e76ae
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/wcscspn-c.c
bca718
@@ -0,0 +1,26 @@
bca718
+/* Default wcscscpn 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 WCSCSPN  __wcscspn_c
bca718
+
bca718
+# include <wchar.h>
bca718
+extern __typeof (wcscspn) __wcscspn_c;
bca718
+
bca718
+# include <wcsmbs/wcscspn.c>
bca718
+#endif
bca718
diff --git a/sysdeps/s390/multiarch/wcscspn-vx.S b/sysdeps/s390/multiarch/wcscspn-vx.S
bca718
new file mode 100644
bca718
index 0000000..aa581ce
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/wcscspn-vx.S
bca718
@@ -0,0 +1,293 @@
bca718
+/* Vector optimized 32/64 bit S/390 version of wcscspn.
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
+/* size_t wcscspn (const wchar_t *s, const wchar_t * reject)
bca718
+   The wcscspn() function calculates the length of the initial segment
bca718
+   of s which consists entirely of characters not in reject.
bca718
+
bca718
+   This method checks the length of reject 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 reject-string
bca718
+   r2:  pointer to start of search-string
bca718
+   r0:  loaded byte count of vlbb search-string
bca718
+   r4:  found byte index
bca718
+   r1:  current return len
bca718
+   v16: search-string
bca718
+   v17: reject-string
bca718
+   v18: temp-vreg
bca718
+
bca718
+   ONLY FOR SLOW:
bca718
+   v19: first reject-string
bca718
+   v20: zero for preparing acc-vector
bca718
+   v21: global mask; 1 indicates a match between
bca718
+	search-string-vreg and any reject-character
bca718
+   v22: current mask; 1 indicates a match between
bca718
+	search-string-vreg and any reject-character in current acc-vreg
bca718
+   v30, v31: for re-/storing registers r6, r8, r9
bca718
+   r5:  current len of reject-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 reject-string-part contains a zero,
bca718
+			otherwise =0;
bca718
+   r9:  loaded byte count of vlbb reject-string
bca718
+*/
bca718
+ENTRY(__wcscspn_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 reject-string fits in one vreg:
bca718
+	  ----------------------------------------
bca718
+	*/
bca718
+	vlbb	%v17,0(%r3),0	/* Load reject.  */
bca718
+	lcbb	%r0,0(%r3),0
bca718
+	jo	.Lcheck_onbb	/* Special case if reject
bca718
+				   lays on block-boundary.  */
bca718
+
bca718
+.Lcheck_notonbb:
bca718
+	lghi	%r1,0		/* Zero out current len.  */
bca718
+	vistrfs	%v17,%v17	/* Fill with zeros after first zero.  */
bca718
+	je	.Lfast		/* Zero found -> reject fits in one vreg.  */
bca718
+	j	.Lslow		/* No zero -> reject exceeds one vreg.  */
bca718
+
bca718
+
bca718
+.Lcheck_onbb:
bca718
+	/* Reject 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 reject 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
+					    Reject fits in one vreg;
bca718
+					    Fill with zeros and proceed
bca718
+					    with FAST.  */
bca718
+.Lcheck_onbb2:
bca718
+	vl	%v17,0(%r3)	/* Load reject, which exceeds loaded bytes.  */
bca718
+	j	.Lcheck_notonbb /* Check if reject fits in one vreg.  */
bca718
+
bca718
+
bca718
+	/*
bca718
+	  Search s for reject in one vreg
bca718
+	  -------------------------------
bca718
+	*/
bca718
+.Lfast:
bca718
+	/* Complete reject-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
bca718
+				    unequal to any in v17
bca718
+				    or first zero element.  */
bca718
+	vlgvb	%r4,%v18,7	/* Load byte index of found element.  */
bca718
+	clrjl	%r4,%r0,.Lfast_loop_found2 /* If found index is within loaded
bca718
+					       bytes, return with found element
bca718
+					       index (=equal count).  */
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
+	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 reject
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 or zero.  */
bca718
+.Lfast_loop_found2:
bca718
+	algrk	%r2,%r1,%r4	/* Add found index to current len.  */
bca718
+	srlg	%r2,%r2,2	/* Convert byte-count to character-count.  */
bca718
+	br	%r14
bca718
+
bca718
+
bca718
+
bca718
+	/*
bca718
+	  Search s for reject in multiple vregs
bca718
+	  -------------------------------------
bca718
+	*/
bca718
+.Lslow:
bca718
+	/* Save registers.  */
bca718
+	vlvgg	%v30,%r6,0
bca718
+	vlvgp	%v31,%r8,%r9
bca718
+
bca718
+	/* Reject 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
bca718
+				   string-part.  */
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 (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 reject-string to zero.  */
bca718
+	vfenezf	%v18,%v16,%v16	/* Find zero in current string-part.  */
bca718
+	lghi	%r8,0		/* There is no zero in first reject-part.  */
bca718
+	vlgvb	%r6,%v18,7	/* Load byte index of zero or 16 if no zero.  */
bca718
+	clije	%r6,0,.Lslow_end /* If first element is zero -> return 0.  */
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) or 16.  */
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_not_found
bca718
+
bca718
+	/* All elements are zero (=no match) -> proceed with next str-part.  */
bca718
+	vlr	%v17,%v19	/* Load first part of reject (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 reject to zero.  */
bca718
+	vfenezf	%v18,%v16,%v16	/* Find zero in current string-part.  */
bca718
+	lghi	%r8,0		/* There is no zero in first reject-part.  */
bca718
+	vlgvb	%r6,%v18,7	/* Load byte index of zero or 16 if no zero.  */
bca718
+	clije	%r6,0,.Lslow_end /* If first element is zero (end of string)
bca718
+				     -> Return current length.  */
bca718
+
bca718
+.Lslow_loop_acc:
bca718
+	vfaef	%v22,%v16,%v17,4 /* Create matching-mask (1 in mask ->
bca718
+				    Character matches any rejected character in
bca718
+				    this reject-string-part) IN=0, RT=1.  */
bca718
+	vlgvf	%r4,%v22,0	/* Get result of first element.  */
bca718
+	/* First element is equal to any rejected characters?
bca718
+	   (All other parts of reject cannot lead to a match before this one)
bca718
+	   -> Return current len, which is pointing to this element.  */
bca718
+	clijh	%r4,0,.Lslow_end
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 last reject-part
bca718
+					  -> Add found index to current len
bca718
+					     and end.  */
bca718
+	vlbb	%v17,16(%r5,%r3),6 /* Load next reject part.  */
bca718
+	aghi	%r5,16		/* Increment current len of reject-string.  */
bca718
+	lcbb	%r9,0(%r5,%r3),6 /* Get loaded byte count of reject-string.  */
bca718
+	jo	.Lslow_next_acc_onbb /* Jump away if reject-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 reject-part: fill zeros with first-reject-character.  */
bca718
+	vlgvf	%r8,%v17,0	/* Load first element of reject-part.  */
bca718
+	clije	%r8,0,.Lslow_next_str /* Process next str-part if first
bca718
+					  character in this part of reject
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 /* Reject-string part is prepared.  */
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
+					  loaded.  */
bca718
+	vfenezf	%v18,%v17,%v17	/* Find zero in loaded bytes of reject 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_not_found:
bca718
+	algfr	%r1,%r6		/* Add zero-index to current len.  */
bca718
+	j	.Lslow_end
bca718
+.Lslow_index_found:
bca718
+	algfr	%r1,%r4		/* Add found index of char to current len.  */
bca718
+.Lslow_end:
bca718
+	srlg	%r2,%r1,2	/* Convert byte-count to character-count.  */
bca718
+	/* Restore registers.  */
bca718
+	vlgvg	%r6,%v30,0
bca718
+	vlgvg	%r8,%v31,0
bca718
+	vlgvg	%r9,%v31,1
bca718
+	br	%r14
bca718
+.Lfallback:
bca718
+	jg	__wcscspn_c
bca718
+END(__wcscspn_vx)
bca718
+#endif /* HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc */
bca718
diff --git a/sysdeps/s390/multiarch/wcscspn.c b/sysdeps/s390/multiarch/wcscspn.c
bca718
new file mode 100644
bca718
index 0000000..3cb4516
bca718
--- /dev/null
bca718
+++ b/sysdeps/s390/multiarch/wcscspn.c
bca718
@@ -0,0 +1,27 @@
bca718
+/* Multiple versions of wcscspn.
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 (__wcscspn, wcscspn)
bca718
+
bca718
+#else
bca718
+# include <wcsmbs/wcscspn.c>
bca718
+#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && !defined NOT_IN_libc) */
bca718
diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile
bca718
index 7ecff8b..9730b00 100644
bca718
--- a/wcsmbs/Makefile
bca718
+++ b/wcsmbs/Makefile
bca718
@@ -42,7 +42,8 @@ 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 wcspbrk
bca718
+		wcpcpy wcsncpy wcpncpy wcscat wcsncat wcschrnul wcsspn wcspbrk \
bca718
+		wcscspn
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-wcscspn-ifunc.c b/wcsmbs/test-wcscspn-ifunc.c
bca718
new file mode 100644
bca718
index 0000000..e5dcdaf
bca718
--- /dev/null
bca718
+++ b/wcsmbs/test-wcscspn-ifunc.c
bca718
@@ -0,0 +1,20 @@
bca718
+/* Test and measure IFUNC implementations of wcscspn 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-wcscspn.c"
bca718
diff --git a/wcsmbs/test-wcscspn.c b/wcsmbs/test-wcscspn.c
bca718
new file mode 100644
bca718
index 0000000..d09cd3d
bca718
--- /dev/null
bca718
+++ b/wcsmbs/test-wcscspn.c
bca718
@@ -0,0 +1,20 @@
bca718
+/* Test wcscspn 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-strcspn.c"
bca718
diff --git a/wcsmbs/wcscspn.c b/wcsmbs/wcscspn.c
bca718
index 5d38d07..9e84226 100644
bca718
--- a/wcsmbs/wcscspn.c
bca718
+++ b/wcsmbs/wcscspn.c
bca718
@@ -18,6 +18,9 @@
bca718
 
bca718
 #include <wchar.h>
bca718
 
bca718
+#ifdef WCSCSPN
bca718
+# define wcscspn WCSCSPN
bca718
+#endif
bca718
 
bca718
 /* Return the length of the maximum initial segment
bca718
    of WCS which contains only wide-characters not in REJECT.  */
bca718
-- 
bca718
2.3.0
bca718