diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-03-05 06:36:50 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-03-29 07:40:17 -0700 |
commit | 525bc2a32c9710df40371f951217c6ae7a923aee (patch) | |
tree | efd1cd7acf189386bf9223678ccea60de70bc93b /sysdeps/x86_64/multiarch/Makefile | |
parent | 1fd8c163a83d96ace1ff78fa6bac7aee084f6f77 (diff) | |
download | glibc-525bc2a32c9710df40371f951217c6ae7a923aee.zip glibc-525bc2a32c9710df40371f951217c6ae7a923aee.tar.gz glibc-525bc2a32c9710df40371f951217c6ae7a923aee.tar.bz2 |
x86-64: Add strcpy family functions with 256-bit EVEX
Update ifunc-strcpy.h to select the function optimized with 256-bit EVEX
instructions using YMM16-YMM31 registers to avoid RTM abort with usable
AVX512VL and AVX512BW since VZEROUPPER isn't needed at function exit.
Diffstat (limited to 'sysdeps/x86_64/multiarch/Makefile')
-rw-r--r-- | sysdeps/x86_64/multiarch/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/x86_64/multiarch/Makefile b/sysdeps/x86_64/multiarch/Makefile index 5ce8588..46783cd 100644 --- a/sysdeps/x86_64/multiarch/Makefile +++ b/sysdeps/x86_64/multiarch/Makefile @@ -43,11 +43,17 @@ sysdep_routines += strncat-c stpncpy-c strncpy-c \ memchr-evex \ memrchr-evex \ rawmemchr-evex \ + stpcpy-evex \ + stpncpy-evex \ + strcat-evex \ strchr-evex \ strchrnul-evex \ strcmp-evex \ + strcpy-evex \ strlen-evex \ + strncat-evex \ strncmp-evex \ + strncpy-evex \ strnlen-evex \ strrchr-evex CFLAGS-varshift.c += -msse4 |