2017-06-05 14:58:11 +00:00
|
|
|
/* SSE2 version of strlen/wcslen.
|
2019-01-01 00:11:28 +00:00
|
|
|
Copyright (C) 2012-2019 Free Software Foundation, Inc.
|
2002-08-31 17:45:33 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2002-08-31 17:45:33 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
2017-06-05 14:58:11 +00:00
|
|
|
#ifdef AS_WCSLEN
|
|
|
|
# define PMINU pminud
|
|
|
|
# define PCMPEQ pcmpeqd
|
|
|
|
# define SHIFT_RETURN shrq $2, %rax
|
|
|
|
#else
|
|
|
|
# define PMINU pminub
|
|
|
|
# define PCMPEQ pcmpeqb
|
|
|
|
# define SHIFT_RETURN
|
|
|
|
#endif
|
|
|
|
|
2013-03-18 06:39:12 +00:00
|
|
|
/* Long lived register in strlen(s), strnlen(s, n) are:
|
2002-08-31 17:45:33 +00:00
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
%xmm3 - zero
|
2013-03-18 06:39:12 +00:00
|
|
|
%rdi - s
|
|
|
|
%r10 (s+n) & (~(64-1))
|
|
|
|
%r11 s+n
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
.text
|
2009-04-05 18:49:28 +00:00
|
|
|
ENTRY(strlen)
|
2013-03-18 06:39:12 +00:00
|
|
|
|
|
|
|
/* Test 64 bytes from %rax for zero. Save result as bitmask in %rdx. */
|
|
|
|
#define FIND_ZERO \
|
2017-06-05 14:58:11 +00:00
|
|
|
PCMPEQ (%rax), %xmm0; \
|
|
|
|
PCMPEQ 16(%rax), %xmm1; \
|
|
|
|
PCMPEQ 32(%rax), %xmm2; \
|
|
|
|
PCMPEQ 48(%rax), %xmm3; \
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm0, %esi; \
|
|
|
|
pmovmskb %xmm1, %edx; \
|
|
|
|
pmovmskb %xmm2, %r8d; \
|
|
|
|
pmovmskb %xmm3, %ecx; \
|
2013-03-18 06:39:12 +00:00
|
|
|
salq $16, %rdx; \
|
|
|
|
salq $16, %rcx; \
|
|
|
|
orq %rsi, %rdx; \
|
|
|
|
orq %r8, %rcx; \
|
|
|
|
salq $32, %rcx; \
|
|
|
|
orq %rcx, %rdx;
|
|
|
|
|
|
|
|
#ifdef AS_STRNLEN
|
|
|
|
/* Do not read anything when n==0. */
|
2019-01-21 19:36:36 +00:00
|
|
|
test %RSI_LP, %RSI_LP
|
2013-03-18 06:39:12 +00:00
|
|
|
jne L(n_nonzero)
|
2010-08-27 05:09:34 +00:00
|
|
|
xor %rax, %rax
|
2013-03-18 06:39:12 +00:00
|
|
|
ret
|
|
|
|
L(n_nonzero):
|
2017-06-05 14:58:11 +00:00
|
|
|
# ifdef AS_WCSLEN
|
2019-01-21 19:36:36 +00:00
|
|
|
shl $2, %RSI_LP
|
2017-06-05 14:58:11 +00:00
|
|
|
# endif
|
2010-08-27 05:09:34 +00:00
|
|
|
|
2013-03-18 06:39:12 +00:00
|
|
|
/* Initialize long lived registers. */
|
2010-08-27 05:09:34 +00:00
|
|
|
|
2019-01-21 19:36:36 +00:00
|
|
|
add %RDI_LP, %RSI_LP
|
|
|
|
mov %RSI_LP, %R10_LP
|
|
|
|
and $-64, %R10_LP
|
|
|
|
mov %RSI_LP, %R11_LP
|
2013-03-18 06:39:12 +00:00
|
|
|
#endif
|
2013-03-06 20:41:32 +00:00
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
pxor %xmm0, %xmm0
|
|
|
|
pxor %xmm1, %xmm1
|
|
|
|
pxor %xmm2, %xmm2
|
|
|
|
pxor %xmm3, %xmm3
|
2013-03-18 06:39:12 +00:00
|
|
|
movq %rdi, %rax
|
|
|
|
movq %rdi, %rcx
|
|
|
|
andq $4095, %rcx
|
|
|
|
/* Offsets 4032-4047 will be aligned into 4032 thus fit into page. */
|
|
|
|
cmpq $4047, %rcx
|
|
|
|
/* We cannot unify this branching as it would be ~6 cycles slower. */
|
|
|
|
ja L(cross_page)
|
|
|
|
|
|
|
|
#ifdef AS_STRNLEN
|
|
|
|
/* Test if end is among first 64 bytes. */
|
|
|
|
# define STRNLEN_PROLOG \
|
|
|
|
mov %r11, %rsi; \
|
|
|
|
subq %rax, %rsi; \
|
|
|
|
andq $-64, %rax; \
|
|
|
|
testq $-64, %rsi; \
|
|
|
|
je L(strnlen_ret)
|
|
|
|
#else
|
|
|
|
# define STRNLEN_PROLOG andq $-64, %rax;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Ignore bits in mask that come before start of string. */
|
|
|
|
#define PROLOG(lab) \
|
|
|
|
movq %rdi, %rcx; \
|
|
|
|
xorq %rax, %rcx; \
|
|
|
|
STRNLEN_PROLOG; \
|
|
|
|
sarq %cl, %rdx; \
|
|
|
|
test %rdx, %rdx; \
|
|
|
|
je L(lab); \
|
|
|
|
bsfq %rdx, %rax; \
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN; \
|
2013-03-18 06:39:12 +00:00
|
|
|
ret
|
|
|
|
|
|
|
|
#ifdef AS_STRNLEN
|
|
|
|
andq $-16, %rax
|
|
|
|
FIND_ZERO
|
|
|
|
#else
|
|
|
|
/* Test first 16 bytes unaligned. */
|
2015-08-25 15:51:09 +00:00
|
|
|
movdqu (%rax), %xmm4
|
2017-06-05 14:58:11 +00:00
|
|
|
PCMPEQ %xmm0, %xmm4
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm4, %edx
|
2013-03-06 21:27:18 +00:00
|
|
|
test %edx, %edx
|
2013-03-18 06:39:12 +00:00
|
|
|
je L(next48_bytes)
|
|
|
|
bsf %edx, %eax /* If eax is zeroed 16bit bsf can be used. */
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN
|
2013-03-18 06:39:12 +00:00
|
|
|
ret
|
|
|
|
|
|
|
|
L(next48_bytes):
|
|
|
|
/* Same as FIND_ZERO except we do not check first 16 bytes. */
|
|
|
|
andq $-16, %rax
|
2017-06-05 14:58:11 +00:00
|
|
|
PCMPEQ 16(%rax), %xmm1
|
|
|
|
PCMPEQ 32(%rax), %xmm2
|
|
|
|
PCMPEQ 48(%rax), %xmm3
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm1, %edx
|
|
|
|
pmovmskb %xmm2, %r8d
|
|
|
|
pmovmskb %xmm3, %ecx
|
2013-03-18 06:39:12 +00:00
|
|
|
salq $16, %rdx
|
|
|
|
salq $16, %rcx
|
|
|
|
orq %r8, %rcx
|
|
|
|
salq $32, %rcx
|
|
|
|
orq %rcx, %rdx
|
|
|
|
#endif
|
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
/* When no zero byte is found xmm1-3 are zero so we do not have to
|
2013-03-18 06:39:12 +00:00
|
|
|
zero them. */
|
|
|
|
PROLOG(loop)
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(cross_page):
|
|
|
|
andq $-64, %rax
|
|
|
|
FIND_ZERO
|
|
|
|
PROLOG(loop_init)
|
|
|
|
|
|
|
|
#ifdef AS_STRNLEN
|
|
|
|
/* We must do this check to correctly handle strnlen (s, -1). */
|
|
|
|
L(strnlen_ret):
|
|
|
|
bts %rsi, %rdx
|
|
|
|
sarq %cl, %rdx
|
|
|
|
test %rdx, %rdx
|
|
|
|
je L(loop_init)
|
|
|
|
bsfq %rdx, %rax
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN
|
2010-08-27 05:09:34 +00:00
|
|
|
ret
|
2013-03-18 06:39:12 +00:00
|
|
|
#endif
|
|
|
|
.p2align 4
|
|
|
|
L(loop_init):
|
2015-08-25 15:51:09 +00:00
|
|
|
pxor %xmm1, %xmm1
|
|
|
|
pxor %xmm2, %xmm2
|
|
|
|
pxor %xmm3, %xmm3
|
2013-03-18 06:39:12 +00:00
|
|
|
#ifdef AS_STRNLEN
|
|
|
|
.p2align 4
|
|
|
|
L(loop):
|
|
|
|
|
|
|
|
addq $64, %rax
|
|
|
|
cmpq %rax, %r10
|
|
|
|
je L(exit_end)
|
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
movdqa (%rax), %xmm0
|
2017-06-05 14:58:11 +00:00
|
|
|
PMINU 16(%rax), %xmm0
|
|
|
|
PMINU 32(%rax), %xmm0
|
|
|
|
PMINU 48(%rax), %xmm0
|
|
|
|
PCMPEQ %xmm3, %xmm0
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm0, %edx
|
2013-03-18 06:39:12 +00:00
|
|
|
testl %edx, %edx
|
|
|
|
jne L(exit)
|
|
|
|
jmp L(loop)
|
|
|
|
|
2010-08-27 05:09:34 +00:00
|
|
|
.p2align 4
|
2013-03-18 06:39:12 +00:00
|
|
|
L(exit_end):
|
|
|
|
cmp %rax, %r11
|
|
|
|
je L(first) /* Do not read when end is at page boundary. */
|
2015-08-25 15:51:09 +00:00
|
|
|
pxor %xmm0, %xmm0
|
2013-03-18 06:39:12 +00:00
|
|
|
FIND_ZERO
|
|
|
|
|
|
|
|
L(first):
|
|
|
|
bts %r11, %rdx
|
|
|
|
bsfq %rdx, %rdx
|
|
|
|
addq %rdx, %rax
|
|
|
|
subq %rdi, %rax
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN
|
2010-08-27 05:09:34 +00:00
|
|
|
ret
|
2013-03-18 06:39:12 +00:00
|
|
|
|
2010-08-27 05:09:34 +00:00
|
|
|
.p2align 4
|
2013-03-18 06:39:12 +00:00
|
|
|
L(exit):
|
2015-08-25 15:51:09 +00:00
|
|
|
pxor %xmm0, %xmm0
|
2013-03-18 06:39:12 +00:00
|
|
|
FIND_ZERO
|
|
|
|
|
|
|
|
bsfq %rdx, %rdx
|
|
|
|
addq %rdx, %rax
|
|
|
|
subq %rdi, %rax
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN
|
2013-03-06 21:27:18 +00:00
|
|
|
ret
|
2013-03-18 06:39:12 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* Main loop. Unrolled twice to improve L2 cache performance on core2. */
|
|
|
|
.p2align 4
|
|
|
|
L(loop):
|
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
movdqa 64(%rax), %xmm0
|
2017-06-05 14:58:11 +00:00
|
|
|
PMINU 80(%rax), %xmm0
|
|
|
|
PMINU 96(%rax), %xmm0
|
|
|
|
PMINU 112(%rax), %xmm0
|
|
|
|
PCMPEQ %xmm3, %xmm0
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm0, %edx
|
2013-03-18 06:39:12 +00:00
|
|
|
testl %edx, %edx
|
|
|
|
jne L(exit64)
|
|
|
|
|
|
|
|
subq $-128, %rax
|
|
|
|
|
2015-08-25 15:51:09 +00:00
|
|
|
movdqa (%rax), %xmm0
|
2017-06-05 14:58:11 +00:00
|
|
|
PMINU 16(%rax), %xmm0
|
|
|
|
PMINU 32(%rax), %xmm0
|
|
|
|
PMINU 48(%rax), %xmm0
|
|
|
|
PCMPEQ %xmm3, %xmm0
|
2015-08-25 15:51:09 +00:00
|
|
|
pmovmskb %xmm0, %edx
|
2013-03-18 06:39:12 +00:00
|
|
|
testl %edx, %edx
|
|
|
|
jne L(exit0)
|
|
|
|
jmp L(loop)
|
|
|
|
|
2013-03-06 20:41:32 +00:00
|
|
|
.p2align 4
|
2013-03-18 06:39:12 +00:00
|
|
|
L(exit64):
|
|
|
|
addq $64, %rax
|
|
|
|
L(exit0):
|
2015-08-25 15:51:09 +00:00
|
|
|
pxor %xmm0, %xmm0
|
2013-03-18 06:39:12 +00:00
|
|
|
FIND_ZERO
|
|
|
|
|
|
|
|
bsfq %rdx, %rdx
|
|
|
|
addq %rdx, %rax
|
|
|
|
subq %rdi, %rax
|
2017-06-05 14:58:11 +00:00
|
|
|
SHIFT_RETURN
|
2002-08-31 17:45:33 +00:00
|
|
|
ret
|
2013-03-18 06:39:12 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-04-05 18:49:28 +00:00
|
|
|
END(strlen)
|
Update.
* sysdeps/i386/fpu/ftestexcept.c: Also check SSE status word.
* include/signal.h: Use libc_hidden_proto for sigaddset and sigdelset.
* signal/sigaddset.c: Add libc_hidden_def.
* signal/sigdelset.c: Likewise.
2003-04-29 Jakub Jelinek <jakub@redhat.com>
* sysdeps/i386/i486/string-inlines.c (__memcpy_g, __strchr_g): Move
to the end of the file.
* configure.in: Change __oline__ to $LINENO.
(HAVE_BUILTIN_REDIRECTION): New check.
* config.h.in (HAVE_BUILTIN_REDIRECTION): Add.
* include/libc-symbols.h (libc_hidden_builtin_proto,
libc_hidden_builtin_def, libc_hidden_builtin_weak,
libc_hidden_builtin_ver): Define.
* include/string.h (memchr, memcpy, memmove, memset, strcat, strchr,
strcmp, strcpy, strcspn, strlen, strncmp, strncpy, strpbrk, strrchr,
strspn, strstr): Add libc_hidden_builtin_proto.
* intl/plural.y: Include string.h.
* sysdeps/alpha/alphaev6/memchr.S (memchr): Add
libc_hidden_builtin_def.
* sysdeps/alpha/alphaev6/memcpy.S (memcpy): Likewise.
* sysdeps/alpha/alphaev6/memset.S (memset): Likewise.
* sysdeps/alpha/alphaev67/strcat.S (strcat): Likewise.
* sysdeps/alpha/alphaev67/strchr.S (strchr): Likewise.
* sysdeps/alpha/alphaev67/strlen.S (strlen): Likewise.
* sysdeps/alpha/alphaev67/strrchr.S (strrchr): Likewise.
* sysdeps/alpha/memchr.S (memchr): Likewise.
* sysdeps/alpha/memset.S (memset): Likewise.
* sysdeps/alpha/strcat.S (strcat): Likewise.
* sysdeps/alpha/strchr.S (strchr): Likewise.
* sysdeps/alpha/strcmp.S (strcmp): Likewise.
* sysdeps/alpha/strcpy.S (strcpy): Likewise.
* sysdeps/alpha/strlen.S (strlen): Likewise.
* sysdeps/alpha/strncmp.S (strncmp): Likewise.
* sysdeps/alpha/strncpy.S (strncpy): Likewise.
* sysdeps/alpha/strrchr.S (strrchr): Likewise.
* sysdeps/arm/memset.S (memset): Likewise.
* sysdeps/arm/strlen.S (strlen): Likewise.
* sysdeps/generic/memchr.c (memchr): Likewise.
* sysdeps/generic/memcpy.c (memcpy): Likewise.
* sysdeps/generic/memmove.c (memmove): Likewise.
* sysdeps/generic/memset.c (memset): Likewise.
* sysdeps/generic/strcat.c (strcat): Likewise.
* sysdeps/generic/strchr.c (strchr): Likewise.
* sysdeps/generic/strcmp.c (strcmp): Likewise.
* sysdeps/generic/strcpy.c (strcpy): Likewise.
* sysdeps/generic/strcspn.c (strcspn): Likewise.
* sysdeps/generic/strlen.c (strlen): Likewise.
* sysdeps/generic/strncmp.c (strncmp): Likewise.
* sysdeps/generic/strncpy.c (strncpy): Likewise.
* sysdeps/generic/strpbrk.c (strpbrk): Likewise.
* sysdeps/generic/strrchr.c (strrchr): Likewise.
* sysdeps/generic/strspn.c (strspn): Likewise.
* sysdeps/generic/strstr.c (strstr): Likewise.
* sysdeps/i386/i486/strcat.S (strcat): Likewise.
* sysdeps/i386/i486/strlen.S (strlen): Likewise.
* sysdeps/i386/i586/memcpy.S (memcpy): Likewise.
* sysdeps/i386/i586/memset.S (memset): Likewise.
* sysdeps/i386/i586/strchr.S (strchr): Likewise.
* sysdeps/i386/i586/strcpy.S (strcpy): Likewise.
* sysdeps/i386/i586/strlen.S (strlen): Likewise.
* sysdeps/i386/i686/memcpy.S (memcpy): Likewise.
* sysdeps/i386/i686/memmove.S (memmove): Likewise.
* sysdeps/i386/i686/memset.S (memset): Likewise.
* sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
* sysdeps/i386/memchr.S (memchr): Likewise.
* sysdeps/i386/memset.c (memset): Likewise.
* sysdeps/i386/strchr.S (strchr): Likewise.
* sysdeps/i386/strcspn.S (strcspn): Likewise.
* sysdeps/i386/strlen.c (strlen): Likewise.
* sysdeps/i386/strpbrk.S (strpbrk): Likewise.
* sysdeps/i386/strrchr.S (strrchr): Likewise.
* sysdeps/i386/strspn.S (strspn): Likewise.
* sysdeps/ia64/memchr.S (memchr): Likewise.
* sysdeps/ia64/memcpy.S (memcpy): Likewise.
* sysdeps/ia64/memmove.S (memmove): Likewise.
* sysdeps/ia64/memset.S (memset): Likewise.
* sysdeps/ia64/strcat.S (strcat): Likewise.
* sysdeps/ia64/strchr.S (strchr): Likewise.
* sysdeps/ia64/strcmp.S (strcmp): Likewise.
* sysdeps/ia64/strcpy.S (strcpy): Likewise.
* sysdeps/ia64/strlen.S (strlen): Likewise.
* sysdeps/ia64/strncmp.S (strncmp): Likewise.
* sysdeps/ia64/strncpy.S (strncpy): Likewise.
* sysdeps/m68k/memchr.S (memchr): Likewise.
* sysdeps/m68k/strchr.S (strchr): Likewise.
* sysdeps/mips/mips64/memcpy.S (memcpy): Likewise.
* sysdeps/mips/mips64/memset.S (memset): Likewise.
* sysdeps/mips/memcpy.S (memcpy): Likewise.
* sysdeps/mips/memset.S (memset): Likewise.
* sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
* sysdeps/powerpc/powerpc32/strchr.S (strchr): Likewise.
* sysdeps/powerpc/powerpc32/strcmp.S (strcmp): Likewise.
* sysdeps/powerpc/powerpc32/strcpy.S (strcpy): Likewise.
* sysdeps/powerpc/powerpc32/strlen.S (strlen): Likewise.
* sysdeps/powerpc/powerpc64/memcpy.S (memcpy): Likewise.
* sysdeps/powerpc/powerpc64/memset.S (memset): Likewise.
* sysdeps/powerpc/powerpc64/strchr.S (strchr): Likewise.
* sysdeps/powerpc/powerpc64/strcmp.S (strcmp): Likewise.
* sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Likewise.
* sysdeps/powerpc/powerpc64/strlen.S (strlen): Likewise.
* sysdeps/powerpc/strcat.c (strcat): Likewise.
* sysdeps/sparc/sparc32/memchr.S (memchr): Likewise.
* sysdeps/sparc/sparc32/memcpy.S (memcpy): Likewise.
* sysdeps/sparc/sparc32/memset.S (memset): Likewise.
* sysdeps/sparc/sparc32/strcat.S (strcat): Likewise.
* sysdeps/sparc/sparc32/strchr.S (strchr, strrchr): Likewise.
* sysdeps/sparc/sparc32/strcmp.S (strcmp): Likewise.
* sysdeps/sparc/sparc32/strcpy.S (strcpy): Likewise.
* sysdeps/sparc/sparc32/strlen.S (strlen): Likewise.
* sysdeps/sparc/sparc64/sparcv9b/memcpy.S (memcpy, memmove): Likewise.
* sysdeps/sparc/sparc64/memchr.S (memchr): Likewise.
* sysdeps/sparc/sparc64/memcpy.S (memcpy, memmove): Likewise.
* sysdeps/sparc/sparc64/memset.S (memset): Likewise.
* sysdeps/sparc/sparc64/strcat.S (strcat): Likewise.
* sysdeps/sparc/sparc64/strchr.S (strchr, strrchr): Likewise.
* sysdeps/sparc/sparc64/strcmp.S (strcmp): Likewise.
* sysdeps/sparc/sparc64/strcpy.S (strcpy): Likewise.
* sysdeps/sparc/sparc64/strcspn.S (strcspn): Likewise.
* sysdeps/sparc/sparc64/strlen.S (strlen): Likewise.
* sysdeps/sparc/sparc64/strncmp.S (strncmp): Likewise.
* sysdeps/sparc/sparc64/strncpy.S (strncpy): Likewise.
* sysdeps/sparc/sparc64/strpbrk.S (strpbrk): Likewise.
* sysdeps/sparc/sparc64/strspn.S (strspn): Likewise.
* sysdeps/sh/memcpy.S (memcpy): Likewise.
* sysdeps/sh/memset.S (memset): Likewise.
* sysdeps/sh/strlen.S (strlen): Likewise.
* sysdeps/s390/s390-32/memchr.S (memchr): Likewise.
* sysdeps/s390/s390-32/memcpy.S (memcpy): Likewise.
* sysdeps/s390/s390-32/memset.S (memset): Likewise.
* sysdeps/s390/s390-32/strcmp.S (strcmp): Likewise.
* sysdeps/s390/s390-32/strcpy.S (strcpy): Likewise.
* sysdeps/s390/s390-32/strncpy.S (strncpy): Likewise.
* sysdeps/s390/s390-64/memchr.S (memchr): Likewise.
* sysdeps/s390/s390-64/memcpy.S (memcpy): Likewise.
* sysdeps/s390/s390-64/memset.S (memset): Likewise.
* sysdeps/s390/s390-64/strcmp.S (strcmp): Likewise.
* sysdeps/s390/s390-64/strcpy.S (strcpy): Likewise.
* sysdeps/s390/s390-64/strncpy.S (strncpy): Likewise.
* sysdeps/x86_64/memcpy.S (memcpy): Likewise.
* sysdeps/x86_64/memset.S (memset): Likewise.
* sysdeps/x86_64/strcat.S (strcat): Likewise.
* sysdeps/x86_64/strchr.S (strchr): Likewise.
* sysdeps/x86_64/strcmp.S (strcmp): Likewise.
* sysdeps/x86_64/strcpy.S (strcpy): Likewise.
* sysdeps/x86_64/strcspn.S (strcspn): Likewise.
* sysdeps/x86_64/strlen.S (strlen): Likewise.
* sysdeps/x86_64/strspn.S (strspn): Likewise.
* string/string-inlines.c: Move...
* sysdeps/generic/string-inlines.c: ...here.
(__memcpy_g, __strchr_g): Remove.
(__NO_INLINE__): Define before including <string.h>,
undefine after. Include bits/string.h and bits/string2.h.
* sysdeps/i386/i486/string-inlines.c: New file.
* sysdeps/i386/string-inlines.c: New file.
* sysdeps/i386/i486/Versions: Remove.
All GLIBC_2.1.1 symbols moved...
* sysdeps/i386/Versions (libc): ...here.
2003-04-29 Ulrich Drepper <drepper@redhat.com>
2003-04-29 22:49:58 +00:00
|
|
|
libc_hidden_builtin_def (strlen)
|