aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2021-04-19 07:07:21 -0700
committerH.J. Lu <hjl.tools@gmail.com>2022-01-27 16:31:28 -0800
commit208e34a7000d36109bbf3d70400d96b1c10b2ccb (patch)
tree77147932f225211877d39fb8afe0b3e4b9959336
parent2baf5616d5ec5e592d64746253713969eb473f5b (diff)
downloadglibc-208e34a7000d36109bbf3d70400d96b1c10b2ccb.tar
glibc-208e34a7000d36109bbf3d70400d96b1c10b2ccb.tar.gz
glibc-208e34a7000d36109bbf3d70400d96b1c10b2ccb.tar.bz2
glibc-208e34a7000d36109bbf3d70400d96b1c10b2ccb.zip
x86-64: Require BMI2 for __strlen_evex and __strnlen_evex
Since __strlen_evex and __strnlen_evex added by commit 1fd8c163a83d96ace1ff78fa6bac7aee084f6f77 Author: H.J. Lu <hjl.tools@gmail.com> Date: Fri Mar 5 06:24:52 2021 -0800 x86-64: Add ifunc-avx2.h functions with 256-bit EVEX use sarx: c4 e2 6a f7 c0 sarx %edx,%eax,%eax require BMI2 for __strlen_evex and __strnlen_evex in ifunc-impl-list.c. ifunc-avx2.h already requires BMI2 for EVEX implementation. (cherry picked from commit 55bf411b451c13f0fb7ff3d3bf9a820020b45df1)
-rw-r--r--sysdeps/x86_64/multiarch/ifunc-impl-list.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/x86_64/multiarch/ifunc-impl-list.c b/sysdeps/x86_64/multiarch/ifunc-impl-list.c
index ed25b4497c..fcf4ab3d1c 100644
--- a/sysdeps/x86_64/multiarch/ifunc-impl-list.c
+++ b/sysdeps/x86_64/multiarch/ifunc-impl-list.c
@@ -293,7 +293,8 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
__strlen_avx2_rtm)
IFUNC_IMPL_ADD (array, i, strlen,
(HAS_ARCH_FEATURE (AVX512VL_Usable)
- && HAS_ARCH_FEATURE (AVX512BW_Usable)),
+ && HAS_ARCH_FEATURE (AVX512BW_Usable)
+ && HAS_CPU_FEATURE (BMI2)),
__strlen_evex)
IFUNC_IMPL_ADD (array, i, strlen, 1, __strlen_sse2))
@@ -308,7 +309,8 @@ __libc_ifunc_impl_list (const char *name, struct libc_ifunc_impl *array,
__strnlen_avx2_rtm)
IFUNC_IMPL_ADD (array, i, strnlen,
(HAS_ARCH_FEATURE (AVX512VL_Usable)
- && HAS_ARCH_FEATURE (AVX512BW_Usable)),
+ && HAS_ARCH_FEATURE (AVX512BW_Usable)
+ && HAS_CPU_FEATURE (BMI2)),
__strnlen_evex)
IFUNC_IMPL_ADD (array, i, strnlen, 1, __strnlen_sse2))