mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
59e501f204
This patch implements following evex512 version of string functions. evex512 version takes up to 30% less cycle as compared to evex, depending on length and alignment. - strchrnul function using 512 bit vectors. - strchr function using 512 bit vectors. - wcschr function using 512 bit vectors. Code size data: strchrnul-evex.o 599 byte strchrnul-evex512.o 569 byte (-5%) strchr-evex.o 639 byte strchr-evex512.o 595 byte (-7%) wcschr-evex.o 644 byte wcschr-evex512.o 607 byte (-6%) Placeholder function, not used by any processor at the moment. Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
10 lines
155 B
ArmAsm
10 lines
155 B
ArmAsm
#ifndef WCSCHR
|
|
# define WCSCHR __wcschr_evex512
|
|
#endif
|
|
|
|
#define STRCHR WCSCHR
|
|
#define USE_AS_WCSCHR 1
|
|
|
|
#define USE_WIDE_CHAR 1
|
|
#include "strchr-evex512.S"
|