about summary refs log tree commit diff
path: root/sysdeps/x86_64/multiarch/strncase_l-sse2.S
diff options
context:
space:
mode:
authorNoah Goldstein <goldstein.w.n@gmail.com>2022-07-12 12:28:06 -0700
committerNoah Goldstein <goldstein.w.n@gmail.com>2022-07-13 14:55:31 -0700
commitd561fbb041fe6aa205f652aecefe4bb84fd124a5 (patch)
tree4fa103748eb51664285b31d4186ee06b6bea35b2 /sysdeps/x86_64/multiarch/strncase_l-sse2.S
parent30e57e0a21cc50eead14f729a29a5604a6b23e18 (diff)
downloadglibc-d561fbb041fe6aa205f652aecefe4bb84fd124a5.tar.gz
glibc-d561fbb041fe6aa205f652aecefe4bb84fd124a5.tar.xz
glibc-d561fbb041fe6aa205f652aecefe4bb84fd124a5.zip
x86: Move strcmp SSE2 implementation to multiarch/strcmp-sse2.S
This commit doesn't affect libc.so.6, its just housekeeping to prepare
for adding explicit ISA level support.

Because strcmp-sse2.S implements so many functions (more from
avx2/evex/sse42) add a new file 'strcmp-naming.h' to assist in
getting the correct symbol name for all the function across
multiarch/non-multiarch builds.

Tested build on x86_64 and x86_32 with/without multiarch.
Diffstat (limited to 'sysdeps/x86_64/multiarch/strncase_l-sse2.S')
-rw-r--r--sysdeps/x86_64/multiarch/strncase_l-sse2.S5
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/x86_64/multiarch/strncase_l-sse2.S b/sysdeps/x86_64/multiarch/strncase_l-sse2.S
index 0ca4c836b2..fd8ad07450 100644
--- a/sysdeps/x86_64/multiarch/strncase_l-sse2.S
+++ b/sysdeps/x86_64/multiarch/strncase_l-sse2.S
@@ -16,8 +16,5 @@
    License along with the GNU C Library; if not, see
    <https://www.gnu.org/licenses/>.  */
 
-#define STRCMP __strncasecmp_l_sse2
-#define NO_NOLOCALE_ALIAS
 #define USE_AS_STRNCASECMP_L
-#define __strncasecmp __strncasecmp_sse2
-#include <sysdeps/x86_64/strcmp.S>
+#include "strcmp-sse2.S"