|
|
bdc76f |
commit 26ea8760877cf03272e98c21eb1a7745ceca76c4
|
|
|
bdc76f |
Author: Stefan Liebler <stli@linux.ibm.com>
|
|
|
bdc76f |
Date: Tue Dec 18 13:57:14 2018 +0100
|
|
|
bdc76f |
|
|
|
bdc76f |
S390: Refactor strrchr ifunc handling.
|
|
|
bdc76f |
|
|
|
bdc76f |
The ifunc handling for strrchr is adjusted in order to omit ifunc
|
|
|
bdc76f |
variants if those will never be used as the minimum architecture level
|
|
|
bdc76f |
already supports newer CPUs by default.
|
|
|
bdc76f |
Glibc internal calls will then also use the "newer" ifunc variant.
|
|
|
bdc76f |
|
|
|
bdc76f |
ChangeLog:
|
|
|
bdc76f |
|
|
|
bdc76f |
* sysdeps/s390/multiarch/Makefile
|
|
|
bdc76f |
(sysdep_routines): Remove strrchr variants.
|
|
|
bdc76f |
* sysdeps/s390/Makefile (sysdep_routines): Add strrchr variants.
|
|
|
bdc76f |
* sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
bdc76f |
(__libc_ifunc_impl_list): Refactor ifunc handling for strrchr.
|
|
|
bdc76f |
* sysdeps/s390/multiarch/strrchr-c.c: Move to ...
|
|
|
bdc76f |
* sysdeps/s390/strrchr-c.c: ... here and adjust ifunc handling.
|
|
|
bdc76f |
* sysdeps/s390/multiarch/strrchr-vx.S: Move to ...
|
|
|
bdc76f |
* sysdeps/s390/strrchr-vx.S: ... here and adjust ifunc handling.
|
|
|
bdc76f |
* sysdeps/s390/multiarch/strrchr.c: Move to ...
|
|
|
bdc76f |
* sysdeps/s390/strrchr.c: ... here and adjust ifunc handling.
|
|
|
bdc76f |
* sysdeps/s390/ifunc-strrchr.h: New file.
|
|
|
bdc76f |
|
|
|
bdc76f |
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile
|
|
|
bdc76f |
index c54bb82f4d4f8a67..3ad44c997e9f1f6b 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/Makefile
|
|
|
bdc76f |
+++ b/sysdeps/s390/Makefile
|
|
|
bdc76f |
@@ -48,5 +48,6 @@ sysdep_routines += bzero memset memset-z900 \
|
|
|
bdc76f |
strcmp strcmp-vx strcmp-z900 \
|
|
|
bdc76f |
strncmp strncmp-vx strncmp-c \
|
|
|
bdc76f |
strchr strchr-vx strchr-c \
|
|
|
bdc76f |
- strchrnul strchrnul-vx strchrnul-c
|
|
|
bdc76f |
+ strchrnul strchrnul-vx strchrnul-c \
|
|
|
bdc76f |
+ strrchr strrchr-vx strrchr-c
|
|
|
bdc76f |
endif
|
|
|
bdc76f |
diff --git a/sysdeps/s390/ifunc-strrchr.h b/sysdeps/s390/ifunc-strrchr.h
|
|
|
bdc76f |
new file mode 100644
|
|
|
bdc76f |
index 0000000000000000..7185fc32601f7388
|
|
|
bdc76f |
--- /dev/null
|
|
|
bdc76f |
+++ b/sysdeps/s390/ifunc-strrchr.h
|
|
|
bdc76f |
@@ -0,0 +1,52 @@
|
|
|
bdc76f |
+/* strrchr variant information on S/390 version.
|
|
|
bdc76f |
+ Copyright (C) 2018 Free Software Foundation, Inc.
|
|
|
bdc76f |
+ This file is part of the GNU C Library.
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
bdc76f |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
bdc76f |
+ License as published by the Free Software Foundation; either
|
|
|
bdc76f |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
bdc76f |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
bdc76f |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
bdc76f |
+ Lesser General Public License for more details.
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
bdc76f |
+ License along with the GNU C Library; if not, see
|
|
|
bdc76f |
+ <http://www.gnu.org/licenses/>. */
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if defined USE_MULTIARCH && IS_IN (libc) \
|
|
|
bdc76f |
+ && ! defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
|
|
|
bdc76f |
+# define HAVE_STRRCHR_IFUNC 1
|
|
|
bdc76f |
+#else
|
|
|
bdc76f |
+# define HAVE_STRRCHR_IFUNC 0
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#ifdef HAVE_S390_VX_ASM_SUPPORT
|
|
|
bdc76f |
+# define HAVE_STRRCHR_IFUNC_AND_VX_SUPPORT HAVE_STRRCHR_IFUNC
|
|
|
bdc76f |
+#else
|
|
|
bdc76f |
+# define HAVE_STRRCHR_IFUNC_AND_VX_SUPPORT 0
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if defined HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
|
|
|
bdc76f |
+# define STRRCHR_DEFAULT STRRCHR_Z13
|
|
|
bdc76f |
+# define HAVE_STRRCHR_C 0
|
|
|
bdc76f |
+# define HAVE_STRRCHR_Z13 1
|
|
|
bdc76f |
+#else
|
|
|
bdc76f |
+# define STRRCHR_DEFAULT STRRCHR_C
|
|
|
bdc76f |
+# define HAVE_STRRCHR_C 1
|
|
|
bdc76f |
+# define HAVE_STRRCHR_Z13 HAVE_STRRCHR_IFUNC_AND_VX_SUPPORT
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if HAVE_STRRCHR_C
|
|
|
bdc76f |
+# define STRRCHR_C __strrchr_c
|
|
|
bdc76f |
+#else
|
|
|
bdc76f |
+# define STRRCHR_C NULL
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if HAVE_STRRCHR_Z13
|
|
|
bdc76f |
+# define STRRCHR_Z13 __strrchr_vx
|
|
|
bdc76f |
+#else
|
|
|
bdc76f |
+# define STRRCHR_Z13 NULL
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
diff --git a/sysdeps/s390/multiarch/Makefile b/sysdeps/s390/multiarch/Makefile
|
|
|
bdc76f |
index 999a979fee1417b2..c8267555585b617e 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/multiarch/Makefile
|
|
|
bdc76f |
+++ b/sysdeps/s390/multiarch/Makefile
|
|
|
bdc76f |
@@ -1,6 +1,5 @@
|
|
|
bdc76f |
ifeq ($(subdir),string)
|
|
|
bdc76f |
-sysdep_routines += strrchr strrchr-vx strrchr-c \
|
|
|
bdc76f |
- strspn strspn-vx strspn-c \
|
|
|
bdc76f |
+sysdep_routines += strspn strspn-vx strspn-c \
|
|
|
bdc76f |
strpbrk strpbrk-vx strpbrk-c \
|
|
|
bdc76f |
strcspn strcspn-vx strcspn-c \
|
|
|
bdc76f |
memchr memchr-vx \
|
|
|
bdc76f |
diff --git a/sysdeps/s390/multiarch/ifunc-impl-list.c b/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
bdc76f |
index 0a47ffeac3492b3e..60cd705ffa4e2c35 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
bdc76f |
+++ b/sysdeps/s390/multiarch/ifunc-impl-list.c
|
|
|
bdc76f |
@@ -38,6 +38,7 @@
|
|
|
bdc76f |
#include <ifunc-strncmp.h>
|
|
|
bdc76f |
#include <ifunc-strchr.h>
|
|
|
bdc76f |
#include <ifunc-strchrnul.h>
|
|
|
bdc76f |
+#include <ifunc-strrchr.h>
|
|
|
bdc76f |
|
|
|
bdc76f |
/* Maximum number of IFUNC implementations. */
|
|
|
bdc76f |
#define MAX_IFUNC 3
|
|
|
bdc76f |
@@ -320,6 +321,18 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|
|
bdc76f |
)
|
|
|
bdc76f |
#endif /* HAVE_STRCHRNUL_IFUNC */
|
|
|
bdc76f |
|
|
|
bdc76f |
+#if HAVE_STRRCHR_IFUNC
|
|
|
bdc76f |
+ IFUNC_IMPL (i, name, strrchr,
|
|
|
bdc76f |
+# if HAVE_STRRCHR_Z13
|
|
|
bdc76f |
+ IFUNC_IMPL_ADD (array, i, strrchr,
|
|
|
bdc76f |
+ dl_hwcap & HWCAP_S390_VX, STRRCHR_Z13)
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+# if HAVE_STRRCHR_C
|
|
|
bdc76f |
+ IFUNC_IMPL_ADD (array, i, strrchr, 1, STRRCHR_C)
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+ )
|
|
|
bdc76f |
+#endif /* HAVE_STRRCHR_IFUNC */
|
|
|
bdc76f |
+
|
|
|
bdc76f |
#ifdef HAVE_S390_VX_ASM_SUPPORT
|
|
|
bdc76f |
|
|
|
bdc76f |
# define IFUNC_VX_IMPL(FUNC) \
|
|
|
bdc76f |
@@ -352,7 +365,6 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
|
|
|
bdc76f |
|
|
|
bdc76f |
IFUNC_VX_IMPL (wcschrnul);
|
|
|
bdc76f |
|
|
|
bdc76f |
- IFUNC_VX_IMPL (strrchr);
|
|
|
bdc76f |
IFUNC_VX_IMPL (wcsrchr);
|
|
|
bdc76f |
|
|
|
bdc76f |
IFUNC_VX_IMPL (strspn);
|
|
|
bdc76f |
diff --git a/sysdeps/s390/multiarch/strrchr-c.c b/sysdeps/s390/strrchr-c.c
|
|
|
bdc76f |
similarity index 77%
|
|
|
bdc76f |
rename from sysdeps/s390/multiarch/strrchr-c.c
|
|
|
bdc76f |
rename to sysdeps/s390/strrchr-c.c
|
|
|
bdc76f |
index 53ceb8086f0711c8..615f16da7d9db5ef 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/multiarch/strrchr-c.c
|
|
|
bdc76f |
+++ b/sysdeps/s390/strrchr-c.c
|
|
|
bdc76f |
@@ -16,14 +16,18 @@
|
|
|
bdc76f |
License along with the GNU C Library; if not, see
|
|
|
bdc76f |
<http://www.gnu.org/licenses/>. */
|
|
|
bdc76f |
|
|
|
bdc76f |
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
|
|
|
bdc76f |
-# define STRRCHR __strrchr_c
|
|
|
bdc76f |
-# undef weak_alias
|
|
|
bdc76f |
-# ifdef SHARED
|
|
|
bdc76f |
-# undef libc_hidden_builtin_def
|
|
|
bdc76f |
-# define libc_hidden_builtin_def(name) \
|
|
|
bdc76f |
+#include <ifunc-strrchr.h>
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if HAVE_STRRCHR_C
|
|
|
bdc76f |
+# if HAVE_STRRCHR_IFUNC
|
|
|
bdc76f |
+# define STRRCHR STRRCHR_C
|
|
|
bdc76f |
+# undef weak_alias
|
|
|
bdc76f |
+# if defined SHARED && IS_IN (libc)
|
|
|
bdc76f |
+# undef libc_hidden_builtin_def
|
|
|
bdc76f |
+# define libc_hidden_builtin_def(name) \
|
|
|
bdc76f |
__hidden_ver1 (__strrchr_c, __GI_strrchr, __strrchr_c);
|
|
|
bdc76f |
-# endif /* SHARED */
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
|
|
|
bdc76f |
# include <string/strrchr.c>
|
|
|
bdc76f |
-#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */
|
|
|
bdc76f |
+#endif
|
|
|
bdc76f |
diff --git a/sysdeps/s390/multiarch/strrchr-vx.S b/sysdeps/s390/strrchr-vx.S
|
|
|
bdc76f |
similarity index 94%
|
|
|
bdc76f |
rename from sysdeps/s390/multiarch/strrchr-vx.S
|
|
|
bdc76f |
rename to sysdeps/s390/strrchr-vx.S
|
|
|
bdc76f |
index 8b3b989631f23de5..5f4ac14ee338c790 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/multiarch/strrchr-vx.S
|
|
|
bdc76f |
+++ b/sysdeps/s390/strrchr-vx.S
|
|
|
bdc76f |
@@ -16,7 +16,9 @@
|
|
|
bdc76f |
License along with the GNU C Library; if not, see
|
|
|
bdc76f |
<http://www.gnu.org/licenses/>. */
|
|
|
bdc76f |
|
|
|
bdc76f |
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
|
|
|
bdc76f |
+#include <ifunc-strrchr.h>
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if HAVE_STRRCHR_Z13
|
|
|
bdc76f |
|
|
|
bdc76f |
# include "sysdep.h"
|
|
|
bdc76f |
# include "asm-syntax.h"
|
|
|
bdc76f |
@@ -39,7 +41,7 @@
|
|
|
bdc76f |
-v19=part of s with last occurence of c.
|
|
|
bdc76f |
-v20=permute pattern
|
|
|
bdc76f |
*/
|
|
|
bdc76f |
-ENTRY(__strrchr_vx)
|
|
|
bdc76f |
+ENTRY(STRRCHR_Z13)
|
|
|
bdc76f |
.machine "z13"
|
|
|
bdc76f |
.machinemode "zarch_nohighgprs"
|
|
|
bdc76f |
|
|
|
bdc76f |
@@ -176,5 +178,15 @@ ENTRY(__strrchr_vx)
|
|
|
bdc76f |
.Lpermute_mask:
|
|
|
bdc76f |
.byte 0x0F,0x0E,0x0D,0x0C,0x0B,0x0A,0x09,0x08
|
|
|
bdc76f |
.byte 0x07,0x06,0x05,0x04,0x03,0x02,0x01,0x00
|
|
|
bdc76f |
-END(__strrchr_vx)
|
|
|
bdc76f |
-#endif /* HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc) */
|
|
|
bdc76f |
+END(STRRCHR_Z13)
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+# if ! HAVE_STRRCHR_IFUNC
|
|
|
bdc76f |
+strong_alias (STRRCHR_Z13, strrchr)
|
|
|
bdc76f |
+weak_alias (strrchr, rindex)
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+# if ! HAVE_STRRCHR_C && defined SHARED && IS_IN (libc)
|
|
|
bdc76f |
+strong_alias (STRRCHR_Z13, __GI_strrchr)
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#endif /* HAVE_STRRCHR_Z13 */
|
|
|
bdc76f |
diff --git a/sysdeps/s390/multiarch/strrchr.c b/sysdeps/s390/strrchr.c
|
|
|
bdc76f |
similarity index 66%
|
|
|
bdc76f |
rename from sysdeps/s390/multiarch/strrchr.c
|
|
|
bdc76f |
rename to sysdeps/s390/strrchr.c
|
|
|
bdc76f |
index e00e25a3a4f51b1e..9a8cecff0b29c057 100644
|
|
|
bdc76f |
--- a/sysdeps/s390/multiarch/strrchr.c
|
|
|
bdc76f |
+++ b/sysdeps/s390/strrchr.c
|
|
|
bdc76f |
@@ -16,15 +16,26 @@
|
|
|
bdc76f |
License along with the GNU C Library; if not, see
|
|
|
bdc76f |
<http://www.gnu.org/licenses/>. */
|
|
|
bdc76f |
|
|
|
bdc76f |
-#if defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)
|
|
|
bdc76f |
+#include <ifunc-strrchr.h>
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+#if HAVE_STRRCHR_IFUNC
|
|
|
bdc76f |
# define strrchr __redirect_strrchr
|
|
|
bdc76f |
# include <string.h>
|
|
|
bdc76f |
# undef strrchr
|
|
|
bdc76f |
# include <ifunc-resolve.h>
|
|
|
bdc76f |
|
|
|
bdc76f |
-s390_vx_libc_ifunc2_redirected (__redirect_strrchr, __strrchr, strrchr)
|
|
|
bdc76f |
-weak_alias (strrchr, rindex);
|
|
|
bdc76f |
+# if HAVE_STRRCHR_C
|
|
|
bdc76f |
+extern __typeof (__redirect_strrchr) STRRCHR_C attribute_hidden;
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
+
|
|
|
bdc76f |
+# if HAVE_STRRCHR_Z13
|
|
|
bdc76f |
+extern __typeof (__redirect_strrchr) STRRCHR_Z13 attribute_hidden;
|
|
|
bdc76f |
+# endif
|
|
|
bdc76f |
|
|
|
bdc76f |
-#else
|
|
|
bdc76f |
-# include <string/strrchr.c>
|
|
|
bdc76f |
-#endif /* !(defined HAVE_S390_VX_ASM_SUPPORT && IS_IN (libc)) */
|
|
|
bdc76f |
+s390_libc_ifunc_expr (__redirect_strrchr, strrchr,
|
|
|
bdc76f |
+ (HAVE_STRRCHR_Z13 && (hwcap & HWCAP_S390_VX))
|
|
|
bdc76f |
+ ? STRRCHR_Z13
|
|
|
bdc76f |
+ : STRRCHR_DEFAULT
|
|
|
bdc76f |
+ )
|
|
|
bdc76f |
+weak_alias (strrchr, rindex)
|
|
|
bdc76f |
+#endif /* HAVE_STRRCHR_IFUNC */
|