2015-01-07 11:31:10 +00:00
|
|
|
/* strcpy/stpcpy - copy a string returning pointer to start/end.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 2013-2020 Free Software Foundation, Inc.
|
2015-01-07 11:31:10 +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
|
|
|
|
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/>. */
|
2015-01-07 11:31:10 +00:00
|
|
|
|
|
|
|
/* To build as stpcpy, define BUILD_STPCPY before compiling this file.
|
|
|
|
|
|
|
|
To test the page crossing code path more thoroughly, compile with
|
|
|
|
-DSTRCPY_TEST_PAGE_CROSS - this will force all unaligned copies through
|
|
|
|
the slower entry path. This option is not intended for production use. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
/* Assumptions:
|
|
|
|
*
|
|
|
|
* ARMv8-a, AArch64, unaligned accesses, min page size 4k.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Arguments and results. */
|
|
|
|
#define dstin x0
|
|
|
|
#define srcin x1
|
|
|
|
|
|
|
|
/* Locals and temporaries. */
|
|
|
|
#define src x2
|
|
|
|
#define dst x3
|
|
|
|
#define data1 x4
|
|
|
|
#define data1w w4
|
|
|
|
#define data2 x5
|
|
|
|
#define data2w w5
|
|
|
|
#define has_nul1 x6
|
|
|
|
#define has_nul2 x7
|
|
|
|
#define tmp1 x8
|
|
|
|
#define tmp2 x9
|
|
|
|
#define tmp3 x10
|
|
|
|
#define tmp4 x11
|
|
|
|
#define zeroones x12
|
|
|
|
#define data1a x13
|
|
|
|
#define data2a x14
|
|
|
|
#define pos x15
|
|
|
|
#define len x16
|
|
|
|
#define to_align x17
|
|
|
|
|
2019-12-19 13:08:11 +00:00
|
|
|
/* NEON register */
|
|
|
|
#define dataq q2
|
|
|
|
#define datav v2
|
|
|
|
#define datab2 b3
|
|
|
|
#define datav2 v3
|
|
|
|
|
2015-01-07 11:31:10 +00:00
|
|
|
#ifdef BUILD_STPCPY
|
|
|
|
#define STRCPY __stpcpy
|
|
|
|
#else
|
|
|
|
#define STRCPY strcpy
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* NUL detection works on the principle that (X - 1) & (~X) & 0x80
|
|
|
|
(=> (X - 1) & ~(X | 0x7f)) is non-zero iff a byte is zero, and
|
|
|
|
can be done in parallel across the entire word. */
|
|
|
|
|
|
|
|
#define REP8_01 0x0101010101010101
|
|
|
|
#define REP8_7f 0x7f7f7f7f7f7f7f7f
|
|
|
|
#define REP8_80 0x8080808080808080
|
|
|
|
|
|
|
|
/* AArch64 systems have a minimum page size of 4k. We can do a quick
|
|
|
|
page size check for crossing this boundary on entry and if we
|
|
|
|
do not, then we can short-circuit much of the entry code. We
|
|
|
|
expect early page-crossing strings to be rare (probability of
|
|
|
|
16/MIN_PAGE_SIZE ~= 0.4%), so the branch should be quite
|
|
|
|
predictable, even with random strings.
|
|
|
|
|
|
|
|
We don't bother checking for larger page sizes, the cost of setting
|
|
|
|
up the correct page size is just not worth the extra gain from
|
|
|
|
a small reduction in the cases taking the slow path. Note that
|
|
|
|
we only care about whether the first fetch, which may be
|
|
|
|
misaligned, crosses a page boundary - after that we move to aligned
|
|
|
|
fetches for the remainder of the string. */
|
|
|
|
|
|
|
|
#ifdef STRCPY_TEST_PAGE_CROSS
|
|
|
|
/* Make everything that isn't Qword aligned look like a page cross. */
|
|
|
|
#define MIN_PAGE_P2 4
|
|
|
|
#else
|
|
|
|
#define MIN_PAGE_P2 12
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MIN_PAGE_SIZE (1 << MIN_PAGE_P2)
|
|
|
|
|
|
|
|
ENTRY_ALIGN (STRCPY, 6)
|
Partial ILP32 support for aarch64.
* sysdeps/aarch64/crti.S: Add include of sysdep.h.
(call_weak_fn): Use PTR_REG to get correct reg name in ILP32.
* sysdeps/aarch64/dl-irel.h: Add include of sysdep.h.
(elf_irela): Use AARCH64_R macro to get correct relocation in ILP32.
* sysdeps/aarch64/dl-machine.h: Add include of sysdep.h.
(elf_machine_load_address, RTLD_START, RTLD_START_1, RTLD_START,
elf_machine_type_class, ELF_MACHINE_JMP_SLOT, elf_machine_rela,
elf_machine_lazy_rel): Add ifdef's for ILP32 support.
* sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_return,
_dl_tlsdesc_return_lazy, _dl_tlsdesc_dynamic,
_dl_tlsdesc_resolve_hold): Extend pointers in ILP32, use PTR_REG
to get correct reg name for ILP32.
* sysdeps/aarch64/dl-trampoline.S (ip01): New Macro.
(RELA_SIZE): New Macro.
(_dl_runtime_resolve, _dl_runtime_profile): Use new macros and PTR_REG
to support ILP32.
* sysdeps/aarch64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Add
cast for ILP32 mode.
* sysdeps/aarch64/memcmp.S (memcmp): Extend arg pointers for ILP32 mode.
* sysdeps/aarch64/memcpy.S (memmove, memcpy): Ditto.
* sysdeps/aarch64/memset.S (__memset): Ditto.
* sysdeps/aarch64/strchr.S (strchr): Ditto.
* sysdeps/aarch64/strchrnul.S (__strchrnul): Ditto.
* sysdeps/aarch64/strcmp.S (strcmp): Ditto.
* sysdeps/aarch64/strcpy.S (strcpy): Ditto.
* sysdeps/aarch64/strlen.S (__strlen): Ditto.
* sysdeps/aarch64/strncmp.S (strncmp): Ditto.
* sysdeps/aarch64/strnlen.S (strnlen): Ditto.
* sysdeps/aarch64/strrchr.S (strrchr): Ditto.
* sysdeps/unix/sysv/linux/aarch64/clone.S: Ditto.
* sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext): Ditto.
* sysdeps/unix/sysv/linux/aarch64/swapcontext.S (__swapcontext): Ditto.
* sysdeps/aarch64/__longjmp.S (__longjmp): Extend pointers in ILP32,
change PTR_MANGLE call to use register numbers instead of names.
* sysdeps/unix/sysv/linux/aarch64/getcontext.S (__getcontext): Ditto.
* sysdeps/aarch64/setjmp.S (__sigsetjmp): Extend arg pointers for
ILP32 mode, change PTR_MANGLE calls to use register numbers.
* sysdeps/aarch64/start.S (_start): Ditto.
* sysdeps/aarch64/nptl/bits/pthreadtypes.h
(__PTHREAD_RWLOCK_INT_FLAGS_SHARED): New define.
(__SIZEOF_PTHREAD_ATTR_T, __SIZEOF_PTHREAD_MUTEX_T,
__SIZEOF_PTHREAD_MUTEXATTR_T, __SIZEOF_PTHREAD_COND_T,
__SIZEOF_PTHREAD_COND_COMPAT_T, __SIZEOF_PTHREAD_CONDATTR_T,
__SIZEOF_PTHREAD_RWLOCK_T, __SIZEOF_PTHREAD_RWLOCKATTR_T,
__SIZEOF_PTHREAD_BARRIER_T, __SIZEOF_PTHREAD_BARRIERATTR_T):
Make defined values dependent on __ILP32__.
* sysdeps/aarch64/nptl/bits/semaphore.h (__SIZEOF_SEM_T): Change define.
(sem_t): Change __align type.
* sysdeps/aarch64/sysdep.h (AARCH64_R, PTR_REG, PTR_LOG_SIZE, DELOUSE,
PTR_SIZE): New Macros.
(LDST_PCREL, LDST_GLOBAL) Update to use PTR_REG.
* sysdeps/unix/sysv/linux/aarch64/bits/fcntl.h (O_LARGEFILE):
Set when in ILP32 mode.
(F_GETLK64, F_SETLK64, F_SETLKW64): Only set in LP64 mode.
* sysdeps/unix/sysv/linux/aarch64/dl-cache.h (DL_CACHE_DEFAULT_ID):
Set elf flags for ILP32.
(add_system_dir): Set ILP32 library directories.
* sysdeps/unix/sysv/linux/aarch64/init-first.c
(_libc_vdso_platform_setup): Set minimum kernel version for ILP32.
* sysdeps/unix/sysv/linux/aarch64/ldconfig.h
(SYSDEP_KNOWN_INTERPRETER_NAMES): Add ILP32 names.
* sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h (GET_PC, SET_PC):
New Macros.
* sysdeps/unix/sysv/linux/aarch64/sysdep.h: Handle ILP32 pointers.
2016-11-28 17:01:23 +00:00
|
|
|
DELOUSE (0)
|
|
|
|
DELOUSE (1)
|
2015-01-07 11:31:10 +00:00
|
|
|
/* For moderately short strings, the fastest way to do the copy is to
|
|
|
|
calculate the length of the string in the same way as strlen, then
|
|
|
|
essentially do a memcpy of the result. This avoids the need for
|
|
|
|
multiple byte copies and further means that by the time we
|
|
|
|
reach the bulk copy loop we know we can always use DWord
|
|
|
|
accesses. We expect strcpy to rarely be called repeatedly
|
|
|
|
with the same source string, so branch prediction is likely to
|
|
|
|
always be difficult - we mitigate against this by preferring
|
|
|
|
conditional select operations over branches whenever this is
|
|
|
|
feasible. */
|
|
|
|
and tmp2, srcin, #(MIN_PAGE_SIZE - 1)
|
|
|
|
mov zeroones, #REP8_01
|
|
|
|
and to_align, srcin, #15
|
|
|
|
cmp tmp2, #(MIN_PAGE_SIZE - 16)
|
|
|
|
neg tmp1, to_align
|
|
|
|
/* The first fetch will straddle a (possible) page boundary iff
|
|
|
|
srcin + 15 causes bit[MIN_PAGE_P2] to change value. A 16-byte
|
|
|
|
aligned string will never fail the page align check, so will
|
|
|
|
always take the fast path. */
|
|
|
|
b.gt L(page_cross)
|
|
|
|
|
|
|
|
L(page_cross_ok):
|
|
|
|
ldp data1, data2, [srcin]
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
/* Because we expect the end to be found within 16 characters
|
|
|
|
(profiling shows this is the most common case), it's worth
|
|
|
|
swapping the bytes now to save having to recalculate the
|
|
|
|
termination syndrome later. We preserve data1 and data2
|
|
|
|
so that we can re-use the values later on. */
|
|
|
|
rev tmp2, data1
|
|
|
|
sub tmp1, tmp2, zeroones
|
|
|
|
orr tmp2, tmp2, #REP8_7f
|
|
|
|
bics has_nul1, tmp1, tmp2
|
|
|
|
b.ne L(fp_le8)
|
|
|
|
rev tmp4, data2
|
|
|
|
sub tmp3, tmp4, zeroones
|
|
|
|
orr tmp4, tmp4, #REP8_7f
|
|
|
|
#else
|
|
|
|
sub tmp1, data1, zeroones
|
|
|
|
orr tmp2, data1, #REP8_7f
|
|
|
|
bics has_nul1, tmp1, tmp2
|
|
|
|
b.ne L(fp_le8)
|
|
|
|
sub tmp3, data2, zeroones
|
|
|
|
orr tmp4, data2, #REP8_7f
|
|
|
|
#endif
|
|
|
|
bics has_nul2, tmp3, tmp4
|
|
|
|
b.eq L(bulk_entry)
|
|
|
|
|
|
|
|
/* The string is short (<=16 bytes). We don't know exactly how
|
|
|
|
short though, yet. Work out the exact length so that we can
|
|
|
|
quickly select the optimal copy strategy. */
|
|
|
|
L(fp_gt8):
|
|
|
|
rev has_nul2, has_nul2
|
|
|
|
clz pos, has_nul2
|
|
|
|
mov tmp2, #56
|
|
|
|
add dst, dstin, pos, lsr #3 /* Bits to bytes. */
|
|
|
|
sub pos, tmp2, pos
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
lsr data2, data2, pos
|
|
|
|
#else
|
|
|
|
lsl data2, data2, pos
|
|
|
|
#endif
|
|
|
|
str data2, [dst, #1]
|
|
|
|
str data1, [dstin]
|
|
|
|
#ifdef BUILD_STPCPY
|
|
|
|
add dstin, dst, #8
|
|
|
|
#endif
|
|
|
|
ret
|
|
|
|
|
|
|
|
L(fp_le8):
|
|
|
|
rev has_nul1, has_nul1
|
|
|
|
clz pos, has_nul1
|
|
|
|
add dst, dstin, pos, lsr #3 /* Bits to bytes. */
|
|
|
|
subs tmp2, pos, #24 /* Pos in bits. */
|
|
|
|
b.lt L(fp_lt4)
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
mov tmp2, #56
|
|
|
|
sub pos, tmp2, pos
|
|
|
|
lsr data2, data1, pos
|
|
|
|
lsr data1, data1, #32
|
|
|
|
#else
|
|
|
|
lsr data2, data1, tmp2
|
|
|
|
#endif
|
|
|
|
/* 4->7 bytes to copy. */
|
|
|
|
str data2w, [dst, #-3]
|
|
|
|
str data1w, [dstin]
|
|
|
|
#ifdef BUILD_STPCPY
|
|
|
|
mov dstin, dst
|
|
|
|
#endif
|
|
|
|
ret
|
|
|
|
L(fp_lt4):
|
|
|
|
cbz pos, L(fp_lt2)
|
|
|
|
/* 2->3 bytes to copy. */
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
lsr data1, data1, #48
|
|
|
|
#endif
|
|
|
|
strh data1w, [dstin]
|
|
|
|
/* Fall-through, one byte (max) to go. */
|
|
|
|
L(fp_lt2):
|
|
|
|
/* Null-terminated string. Last character must be zero! */
|
|
|
|
strb wzr, [dst]
|
|
|
|
#ifdef BUILD_STPCPY
|
|
|
|
mov dstin, dst
|
|
|
|
#endif
|
|
|
|
ret
|
|
|
|
|
|
|
|
/* Aligning here ensures that the entry code and main loop all lies
|
|
|
|
within one 64-byte cache line. */
|
|
|
|
L(bulk_entry):
|
|
|
|
sub to_align, to_align, #16
|
|
|
|
stp data1, data2, [dstin]
|
|
|
|
sub src, srcin, to_align
|
|
|
|
sub dst, dstin, to_align
|
|
|
|
b L(entry_no_page_cross)
|
|
|
|
|
|
|
|
/* The inner loop deals with two Dwords at a time. This has a
|
|
|
|
slightly higher start-up cost, but we should win quite quickly,
|
|
|
|
especially on cores with a high number of issue slots per
|
|
|
|
cycle, as we get much better parallelism out of the operations. */
|
|
|
|
L(main_loop):
|
2019-12-19 13:08:11 +00:00
|
|
|
str dataq, [dst], #16
|
2015-01-07 11:31:10 +00:00
|
|
|
L(entry_no_page_cross):
|
2019-12-19 13:08:11 +00:00
|
|
|
ldr dataq, [src], #16
|
|
|
|
uminv datab2, datav.16b
|
|
|
|
mov tmp3, datav2.d[0]
|
|
|
|
cbnz tmp3, L(main_loop)
|
2015-01-07 11:31:10 +00:00
|
|
|
|
|
|
|
/* Since we know we are copying at least 16 bytes, the fastest way
|
|
|
|
to deal with the tail is to determine the location of the
|
|
|
|
trailing NUL, then (re)copy the 16 bytes leading up to that. */
|
|
|
|
#ifdef __AARCH64EB__
|
2019-12-19 13:08:11 +00:00
|
|
|
rev64 datav.16b, datav.16b
|
|
|
|
#endif
|
2019-12-27 14:57:24 +00:00
|
|
|
/* calculate the loc value */
|
2019-12-19 13:08:11 +00:00
|
|
|
cmeq datav.16b, datav.16b, #0
|
|
|
|
mov data1, datav.d[0]
|
|
|
|
mov data2, datav.d[1]
|
|
|
|
cmp data1, 0
|
2015-01-07 11:31:10 +00:00
|
|
|
csel data1, data1, data2, ne
|
2019-12-19 13:08:11 +00:00
|
|
|
mov pos, 8
|
2015-01-07 11:31:10 +00:00
|
|
|
rev data1, data1
|
2019-12-19 13:08:11 +00:00
|
|
|
clz tmp1, data1
|
|
|
|
csel pos, xzr, pos, ne
|
|
|
|
add pos, pos, tmp1, lsr 3
|
|
|
|
add src, src, pos
|
|
|
|
add dst, dst, pos
|
|
|
|
ldr dataq,[src, #-31]
|
|
|
|
str dataq,[dst, #-15]
|
2015-01-07 11:31:10 +00:00
|
|
|
#ifdef BUILD_STPCPY
|
2019-12-19 13:08:11 +00:00
|
|
|
mov dstin, dst
|
2015-01-07 11:31:10 +00:00
|
|
|
#endif
|
|
|
|
ret
|
|
|
|
|
|
|
|
L(page_cross):
|
|
|
|
bic src, srcin, #15
|
|
|
|
/* Start by loading two words at [srcin & ~15], then forcing the
|
|
|
|
bytes that precede srcin to 0xff. This means they never look
|
|
|
|
like termination bytes. */
|
|
|
|
ldp data1, data2, [src]
|
|
|
|
lsl tmp1, tmp1, #3 /* Bytes beyond alignment -> bits. */
|
|
|
|
tst to_align, #7
|
|
|
|
csetm tmp2, ne
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
lsl tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). */
|
|
|
|
#else
|
|
|
|
lsr tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). */
|
|
|
|
#endif
|
|
|
|
orr data1, data1, tmp2
|
|
|
|
orr data2a, data2, tmp2
|
|
|
|
cmp to_align, #8
|
|
|
|
csinv data1, data1, xzr, lt
|
|
|
|
csel data2, data2, data2a, lt
|
|
|
|
sub tmp1, data1, zeroones
|
|
|
|
orr tmp2, data1, #REP8_7f
|
|
|
|
sub tmp3, data2, zeroones
|
|
|
|
orr tmp4, data2, #REP8_7f
|
|
|
|
bic has_nul1, tmp1, tmp2
|
|
|
|
bics has_nul2, tmp3, tmp4
|
|
|
|
ccmp has_nul1, #0, #0, eq /* NZCV = 0000 */
|
|
|
|
b.eq L(page_cross_ok)
|
|
|
|
/* We now need to make data1 and data2 look like they've been
|
|
|
|
loaded directly from srcin. Do a rotate on the 128-bit value. */
|
|
|
|
lsl tmp1, to_align, #3 /* Bytes->bits. */
|
|
|
|
neg tmp2, to_align, lsl #3
|
|
|
|
#ifdef __AARCH64EB__
|
|
|
|
lsl data1a, data1, tmp1
|
|
|
|
lsr tmp4, data2, tmp2
|
|
|
|
lsl data2, data2, tmp1
|
|
|
|
orr tmp4, tmp4, data1a
|
|
|
|
cmp to_align, #8
|
|
|
|
csel data1, tmp4, data2, lt
|
|
|
|
rev tmp2, data1
|
|
|
|
rev tmp4, data2
|
|
|
|
sub tmp1, tmp2, zeroones
|
|
|
|
orr tmp2, tmp2, #REP8_7f
|
|
|
|
sub tmp3, tmp4, zeroones
|
|
|
|
orr tmp4, tmp4, #REP8_7f
|
|
|
|
#else
|
|
|
|
lsr data1a, data1, tmp1
|
|
|
|
lsl tmp4, data2, tmp2
|
|
|
|
lsr data2, data2, tmp1
|
|
|
|
orr tmp4, tmp4, data1a
|
|
|
|
cmp to_align, #8
|
|
|
|
csel data1, tmp4, data2, lt
|
|
|
|
sub tmp1, data1, zeroones
|
|
|
|
orr tmp2, data1, #REP8_7f
|
|
|
|
sub tmp3, data2, zeroones
|
|
|
|
orr tmp4, data2, #REP8_7f
|
|
|
|
#endif
|
|
|
|
bic has_nul1, tmp1, tmp2
|
|
|
|
cbnz has_nul1, L(fp_le8)
|
|
|
|
bic has_nul2, tmp3, tmp4
|
|
|
|
b L(fp_gt8)
|
|
|
|
END (STRCPY)
|
|
|
|
|
|
|
|
#ifdef BUILD_STPCPY
|
|
|
|
weak_alias (__stpcpy, stpcpy)
|
|
|
|
libc_hidden_def (__stpcpy)
|
|
|
|
libc_hidden_builtin_def (stpcpy)
|
|
|
|
#else
|
|
|
|
libc_hidden_builtin_def (strcpy)
|
|
|
|
#endif
|