2002-09-17 23:50:03 +00:00
|
|
|
/* Optimized memset implementation for PowerPC64.
|
2020-01-01 00:14:33 +00:00
|
|
|
Copyright (C) 1997-2020 Free Software Foundation, Inc.
|
2002-09-17 23:50:03 +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-09-17 23:50:03 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2020-01-10 22:14:56 +00:00
|
|
|
#include <rtld-global-offsets.h>
|
2002-09-17 23:50:03 +00:00
|
|
|
|
|
|
|
.section ".toc","aw"
|
2020-01-10 22:14:56 +00:00
|
|
|
__GLRO_DEF(dl_cache_line_size)
|
|
|
|
|
2002-09-17 23:50:03 +00:00
|
|
|
.section ".text"
|
|
|
|
.align 2
|
|
|
|
|
2017-08-08 17:14:49 +00:00
|
|
|
/* void * [r3] memset (void *s [r3], int c [r4], size_t n [r5]));
|
2002-09-17 23:50:03 +00:00
|
|
|
Returns 's'.
|
|
|
|
|
|
|
|
The memset is done in three sizes: byte (8 bits), word (32 bits),
|
|
|
|
cache line (256 bits). There is a special case for setting cache lines
|
|
|
|
to 0, to take advantage of the dcbz instruction. */
|
|
|
|
|
2017-04-11 17:18:35 +00:00
|
|
|
#ifndef MEMSET
|
|
|
|
# define MEMSET memset
|
|
|
|
#endif
|
|
|
|
|
PowerPC64 ENTRY_TOCLESS
A number of functions in the sysdeps/powerpc/powerpc64/ tree don't use
or change r2, yet declare a global entry that sets up r2. This patch
fixes that problem, and consolidates the ENTRY and EALIGN macros.
* sysdeps/powerpc/powerpc64/sysdep.h: Formatting.
(NOPS, ENTRY_3): New macros.
(ENTRY): Rewrite.
(ENTRY_TOCLESS): Define.
(EALIGN, EALIGN_W_0, EALIGN_W_1, EALIGN_W_2, EALIGN_W_4, EALIGN_W_5,
EALIGN_W_6, EALIGN_W_7, EALIGN_W_8): Delete.
* sysdeps/powerpc/powerpc64/a2/memcpy.S: Replace EALIGN with ENTRY.
* sysdeps/powerpc/powerpc64/dl-trampoline.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
* sysdeps/powerpc/powerpc64/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strstr.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/e_expf.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strcasestr.S: Likewise.
* sysdeps/powerpc/powerpc64/addmul_1.S: Use ENTRY_TOCLESS.
* sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_fabsl.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
* sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
* sysdeps/powerpc/powerpc64/lshift.S: Likewise.
* sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/mul_1.S: Likewise.
* sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: Likewise.
* sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: Likewise.
* sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
* sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
* sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/add_n.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memmove.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strcasecmp.S (strcasecmp_l):
Likewise.
* sysdeps/powerpc/powerpc64/power7/strchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strchrnul.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strlen.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strncpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strnlen.S: Likewise.
* sysdeps/powerpc/powerpc64/power7/strrchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/memcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/memset.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strcpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strlen.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strncpy.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strnlen.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strrchr.S: Likewise.
* sysdeps/powerpc/powerpc64/power8/strspn.S: Likewise.
* sysdeps/powerpc/powerpc64/power9/strcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/power9/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/strchr.S: Likewise.
* sysdeps/powerpc/powerpc64/strcmp.S: Likewise.
* sysdeps/powerpc/powerpc64/strlen.S: Likewise.
* sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
* sysdeps/powerpc/powerpc64/ppc-mcount.S: Store LR earlier. Don't
add nop when SHARED.
* sysdeps/powerpc/powerpc64/start.S: Fix comment.
* sysdeps/powerpc/powerpc64/multiarch/strrchr-power8.S (ENTRY): Don't
define.
(ENTRY_TOCLESS): Define.
* sysdeps/powerpc/powerpc32/sysdep.h (ENTRY_TOCLESS): Define.
* sysdeps/powerpc/fpu/s_fma.S: Use ENTRY_TOCLESS.
* sysdeps/powerpc/fpu/s_fmaf.S: Likewise.
2017-06-14 01:15:50 +00:00
|
|
|
ENTRY (MEMSET, 5)
|
2004-10-06 22:09:35 +00:00
|
|
|
CALL_MCOUNT 3
|
2002-09-17 23:50:03 +00:00
|
|
|
|
|
|
|
#define rTMP r0
|
|
|
|
#define rRTN r3 /* Initial value of 1st argument. */
|
2013-03-06 00:10:21 +00:00
|
|
|
#define rMEMP0 r3 /* Original value of 1st arg. */
|
|
|
|
#define rCHR r4 /* Char to set in each byte. */
|
|
|
|
#define rLEN r5 /* Length of region to set. */
|
|
|
|
#define rMEMP r6 /* Address at which we are storing. */
|
2002-09-17 23:50:03 +00:00
|
|
|
#define rALIGN r7 /* Number of bytes we are setting now (when aligning). */
|
|
|
|
#define rMEMP2 r8
|
|
|
|
|
|
|
|
#define rNEG64 r8 /* Constant -64 for clearing with dcbz. */
|
|
|
|
#define rCLS r8 /* Cache line size obtained from static. */
|
|
|
|
#define rCLM r9 /* Cache line size mask to check for cache alignment. */
|
2005-04-28 22:20:48 +00:00
|
|
|
L(_memset):
|
2002-09-17 23:50:03 +00:00
|
|
|
/* Take care of case for size <= 4. */
|
|
|
|
cmpldi cr1, rLEN, 8
|
|
|
|
andi. rALIGN, rMEMP0, 7
|
|
|
|
mr rMEMP, rMEMP0
|
|
|
|
ble- cr1, L(small)
|
2003-03-15 23:09:52 +00:00
|
|
|
|
2002-09-17 23:50:03 +00:00
|
|
|
/* Align to doubleword boundary. */
|
|
|
|
cmpldi cr5, rLEN, 31
|
2013-08-17 09:17:59 +00:00
|
|
|
insrdi rCHR, rCHR, 8, 48 /* Replicate byte to halfword. */
|
2002-09-17 23:50:03 +00:00
|
|
|
beq+ L(aligned2)
|
|
|
|
mtcrf 0x01, rMEMP0
|
|
|
|
subfic rALIGN, rALIGN, 8
|
|
|
|
cror 28,30,31 /* Detect odd word aligned. */
|
|
|
|
add rMEMP, rMEMP, rALIGN
|
|
|
|
sub rLEN, rLEN, rALIGN
|
2013-08-17 09:17:59 +00:00
|
|
|
insrdi rCHR, rCHR, 16, 32 /* Replicate halfword to word. */
|
2002-09-17 23:50:03 +00:00
|
|
|
bt 29, L(g4)
|
|
|
|
/* Process the even word of doubleword. */
|
|
|
|
bf+ 31, L(g2)
|
|
|
|
stb rCHR, 0(rMEMP0)
|
|
|
|
bt 30, L(g4x)
|
|
|
|
L(g2):
|
|
|
|
sth rCHR, -6(rMEMP)
|
|
|
|
L(g4x):
|
|
|
|
stw rCHR, -4(rMEMP)
|
|
|
|
b L(aligned)
|
|
|
|
/* Process the odd word of doubleword. */
|
|
|
|
L(g4):
|
|
|
|
bf 28, L(g4x) /* If false, word aligned on odd word. */
|
|
|
|
bf+ 31, L(g0)
|
|
|
|
stb rCHR, 0(rMEMP0)
|
|
|
|
bt 30, L(aligned)
|
2003-03-15 23:09:52 +00:00
|
|
|
L(g0):
|
|
|
|
sth rCHR, -2(rMEMP)
|
|
|
|
|
2002-09-17 23:50:03 +00:00
|
|
|
/* Handle the case of size < 31. */
|
|
|
|
L(aligned2):
|
2013-08-17 09:17:59 +00:00
|
|
|
insrdi rCHR, rCHR, 16, 32 /* Replicate halfword to word. */
|
2002-09-17 23:50:03 +00:00
|
|
|
L(aligned):
|
|
|
|
mtcrf 0x01, rLEN
|
|
|
|
ble cr5, L(medium)
|
|
|
|
/* Align to 32-byte boundary. */
|
|
|
|
andi. rALIGN, rMEMP, 0x18
|
|
|
|
subfic rALIGN, rALIGN, 0x20
|
2013-08-17 09:17:59 +00:00
|
|
|
insrdi rCHR, rCHR, 32, 0 /* Replicate word to double word. */
|
2002-09-17 23:50:03 +00:00
|
|
|
beq L(caligned)
|
|
|
|
mtcrf 0x01, rALIGN
|
|
|
|
add rMEMP, rMEMP, rALIGN
|
|
|
|
sub rLEN, rLEN, rALIGN
|
|
|
|
cmplwi cr1, rALIGN, 0x10
|
|
|
|
mr rMEMP2, rMEMP
|
|
|
|
bf 28, L(a1)
|
|
|
|
stdu rCHR, -8(rMEMP2)
|
|
|
|
L(a1): blt cr1, L(a2)
|
|
|
|
std rCHR, -8(rMEMP2)
|
|
|
|
stdu rCHR, -16(rMEMP2)
|
|
|
|
L(a2):
|
|
|
|
|
|
|
|
/* Now aligned to a 32 byte boundary. */
|
|
|
|
L(caligned):
|
|
|
|
cmpldi cr1, rCHR, 0
|
|
|
|
clrrdi. rALIGN, rLEN, 5
|
2003-03-15 23:09:52 +00:00
|
|
|
mtcrf 0x01, rLEN
|
2002-09-17 23:50:03 +00:00
|
|
|
beq cr1, L(zloopstart) /* Special case for clearing memory using dcbz. */
|
2003-03-15 23:09:52 +00:00
|
|
|
L(nondcbz):
|
2002-09-17 23:50:03 +00:00
|
|
|
srdi rTMP, rALIGN, 5
|
|
|
|
mtctr rTMP
|
|
|
|
beq L(medium) /* We may not actually get to do a full line. */
|
|
|
|
clrldi. rLEN, rLEN, 59
|
|
|
|
add rMEMP, rMEMP, rALIGN
|
|
|
|
li rNEG64, -0x40
|
|
|
|
bdz L(cloopdone)
|
|
|
|
|
|
|
|
L(c3): dcbtst rNEG64, rMEMP
|
|
|
|
std rCHR, -8(rMEMP)
|
|
|
|
std rCHR, -16(rMEMP)
|
|
|
|
std rCHR, -24(rMEMP)
|
|
|
|
stdu rCHR, -32(rMEMP)
|
|
|
|
bdnz L(c3)
|
|
|
|
L(cloopdone):
|
|
|
|
std rCHR, -8(rMEMP)
|
|
|
|
std rCHR, -16(rMEMP)
|
|
|
|
cmpldi cr1, rLEN, 16
|
|
|
|
std rCHR, -24(rMEMP)
|
|
|
|
stdu rCHR, -32(rMEMP)
|
|
|
|
beqlr
|
|
|
|
add rMEMP, rMEMP, rALIGN
|
|
|
|
b L(medium_tail2)
|
|
|
|
|
|
|
|
.align 5
|
|
|
|
/* Clear lines of memory in 128-byte chunks. */
|
|
|
|
L(zloopstart):
|
2003-03-15 23:09:52 +00:00
|
|
|
/* If the remaining length is less the 32 bytes, don't bother getting
|
2002-09-17 23:50:03 +00:00
|
|
|
the cache line size. */
|
|
|
|
beq L(medium)
|
2020-01-10 22:14:56 +00:00
|
|
|
/* Read the cache line size. */
|
|
|
|
__GLRO (rCLS, dl_cache_line_size,
|
|
|
|
RTLD_GLOBAL_RO_DL_CACHE_LINE_SIZE_OFFSET)
|
|
|
|
|
2003-03-15 23:09:52 +00:00
|
|
|
/* If the cache line size was not set just goto to L(nondcbz) which is
|
|
|
|
safe for any cache line size. */
|
2002-09-17 23:50:03 +00:00
|
|
|
cmpldi cr1,rCLS,0
|
|
|
|
beq cr1,L(nondcbz)
|
2003-03-15 23:09:52 +00:00
|
|
|
|
|
|
|
|
2002-09-17 23:50:03 +00:00
|
|
|
/* Now we know the cache line size, and it is not 32-bytes, but
|
2003-03-15 23:09:52 +00:00
|
|
|
we may not yet be aligned to the cache line. May have a partial
|
|
|
|
line to fill, so touch it 1st. */
|
|
|
|
dcbt 0,rMEMP
|
2002-09-17 23:50:03 +00:00
|
|
|
addi rCLM,rCLS,-1
|
|
|
|
L(getCacheAligned):
|
|
|
|
cmpldi cr1,rLEN,32
|
|
|
|
and. rTMP,rCLM,rMEMP
|
|
|
|
blt cr1,L(handletail32)
|
|
|
|
beq L(cacheAligned)
|
|
|
|
addi rMEMP,rMEMP,32
|
|
|
|
addi rLEN,rLEN,-32
|
|
|
|
std rCHR,-32(rMEMP)
|
|
|
|
std rCHR,-24(rMEMP)
|
|
|
|
std rCHR,-16(rMEMP)
|
|
|
|
std rCHR,-8(rMEMP)
|
|
|
|
b L(getCacheAligned)
|
2003-03-15 23:09:52 +00:00
|
|
|
|
|
|
|
/* Now we are aligned to the cache line and can use dcbz. */
|
2002-09-17 23:50:03 +00:00
|
|
|
L(cacheAligned):
|
|
|
|
cmpld cr1,rLEN,rCLS
|
|
|
|
blt cr1,L(handletail32)
|
|
|
|
dcbz 0,rMEMP
|
|
|
|
subf rLEN,rCLS,rLEN
|
|
|
|
add rMEMP,rMEMP,rCLS
|
|
|
|
b L(cacheAligned)
|
|
|
|
|
|
|
|
/* We are here because the cache line size was set and was not 32-bytes
|
|
|
|
and the remainder (rLEN) is less than the actual cache line size.
|
2003-03-15 23:09:52 +00:00
|
|
|
So set up the preconditions for L(nondcbz) and go there. */
|
2002-09-17 23:50:03 +00:00
|
|
|
L(handletail32):
|
|
|
|
clrrwi. rALIGN, rLEN, 5
|
|
|
|
b L(nondcbz)
|
|
|
|
|
|
|
|
.align 5
|
|
|
|
L(small):
|
|
|
|
/* Memset of 8 bytes or less. */
|
|
|
|
cmpldi cr6, rLEN, 4
|
|
|
|
cmpldi cr5, rLEN, 1
|
|
|
|
ble cr6,L(le4)
|
|
|
|
subi rLEN, rLEN, 4
|
|
|
|
stb rCHR,0(rMEMP)
|
|
|
|
stb rCHR,1(rMEMP)
|
|
|
|
stb rCHR,2(rMEMP)
|
|
|
|
stb rCHR,3(rMEMP)
|
|
|
|
addi rMEMP,rMEMP, 4
|
|
|
|
cmpldi cr5, rLEN, 1
|
|
|
|
L(le4):
|
|
|
|
cmpldi cr1, rLEN, 3
|
|
|
|
bltlr cr5
|
|
|
|
stb rCHR, 0(rMEMP)
|
|
|
|
beqlr cr5
|
|
|
|
stb rCHR, 1(rMEMP)
|
|
|
|
bltlr cr1
|
|
|
|
stb rCHR, 2(rMEMP)
|
|
|
|
beqlr cr1
|
|
|
|
stb rCHR, 3(rMEMP)
|
|
|
|
blr
|
|
|
|
|
|
|
|
/* Memset of 0-31 bytes. */
|
|
|
|
.align 5
|
|
|
|
L(medium):
|
2013-08-17 09:17:59 +00:00
|
|
|
insrdi rCHR, rCHR, 32, 0 /* Replicate word to double word. */
|
2002-09-17 23:50:03 +00:00
|
|
|
cmpldi cr1, rLEN, 16
|
|
|
|
L(medium_tail2):
|
|
|
|
add rMEMP, rMEMP, rLEN
|
|
|
|
L(medium_tail):
|
|
|
|
bt- 31, L(medium_31t)
|
|
|
|
bt- 30, L(medium_30t)
|
|
|
|
L(medium_30f):
|
|
|
|
bt- 29, L(medium_29t)
|
|
|
|
L(medium_29f):
|
|
|
|
bge- cr1, L(medium_27t)
|
|
|
|
bflr- 28
|
|
|
|
std rCHR, -8(rMEMP)
|
|
|
|
blr
|
|
|
|
|
|
|
|
L(medium_31t):
|
|
|
|
stbu rCHR, -1(rMEMP)
|
|
|
|
bf- 30, L(medium_30f)
|
|
|
|
L(medium_30t):
|
|
|
|
sthu rCHR, -2(rMEMP)
|
|
|
|
bf- 29, L(medium_29f)
|
|
|
|
L(medium_29t):
|
|
|
|
stwu rCHR, -4(rMEMP)
|
2003-03-15 23:09:52 +00:00
|
|
|
blt- cr1, L(medium_27f)
|
2002-09-17 23:50:03 +00:00
|
|
|
L(medium_27t):
|
|
|
|
std rCHR, -8(rMEMP)
|
|
|
|
stdu rCHR, -16(rMEMP)
|
|
|
|
L(medium_27f):
|
|
|
|
bflr- 28
|
|
|
|
L(medium_28t):
|
|
|
|
std rCHR, -8(rMEMP)
|
|
|
|
blr
|
2017-04-11 17:18:35 +00:00
|
|
|
END_GEN_TB (MEMSET,TB_TOCLESS)
|
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 (memset)
|
2002-09-17 23:50:03 +00:00
|
|
|
|
2013-12-13 19:33:16 +00:00
|
|
|
#ifndef NO_BZERO_IMPL
|
2003-03-15 23:09:52 +00:00
|
|
|
/* Copied from bzero.S to prevent the linker from inserting a stub
|
2002-09-17 23:50:03 +00:00
|
|
|
between bzero and memset. */
|
2013-03-06 00:10:21 +00:00
|
|
|
ENTRY (__bzero)
|
2004-10-06 22:09:35 +00:00
|
|
|
CALL_MCOUNT 3
|
2002-09-17 23:50:03 +00:00
|
|
|
mr r5,r4
|
|
|
|
li r4,0
|
2005-04-28 22:20:48 +00:00
|
|
|
b L(_memset)
|
2013-03-06 00:10:21 +00:00
|
|
|
END_GEN_TB (__bzero,TB_TOCLESS)
|
2002-09-17 23:50:03 +00:00
|
|
|
|
2013-03-06 00:10:21 +00:00
|
|
|
weak_alias (__bzero, bzero)
|
2013-12-13 19:33:16 +00:00
|
|
|
#endif
|