mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-03 04:01:43 +08:00
ab6a873fe0
This patch adds SSSE3 strcpy/stpcpy. I got up to 4X speed up on Core 2 and Core i7. I disabled it on Atom since SSSE3 version is slower for shorter (<64byte) data.
7 lines
123 B
ArmAsm
7 lines
123 B
ArmAsm
#define STRCPY __stpncpy
|
|
#define USE_AS_STPCPY
|
|
#define USE_AS_STRNCPY
|
|
#include "strcpy.S"
|
|
|
|
weak_alias (__stpncpy, stpncpy)
|