2023-01-06 21:08:04 +00:00
|
|
|
/* Copyright (C) 2000-2023 Free Software Foundation, Inc.
|
2001-02-09 05:27:14 +00:00
|
|
|
EV67 optimized by Rick Gorton <rick.gorton@alpha-processor.com>.
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
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.
|
2001-02-09 05:27:14 +00:00
|
|
|
|
|
|
|
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
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-02-09 05:27:14 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +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/>. */
|
2001-02-09 05:27:14 +00:00
|
|
|
|
|
|
|
/* Return the address of the last occurrence of a given character
|
|
|
|
within a null-terminated string, or null if it is not found. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
.arch ev6
|
|
|
|
.set noreorder
|
|
|
|
.set noat
|
|
|
|
|
|
|
|
ENTRY(strrchr)
|
|
|
|
#ifdef PROF
|
|
|
|
ldgp gp, 0(pv)
|
|
|
|
lda AT, _mcount
|
|
|
|
jsr AT, (AT), _mcount
|
|
|
|
.prologue 1
|
|
|
|
#else
|
|
|
|
.prologue 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
and a1, 0xff, t2 # E : 00000000000000ch
|
|
|
|
insbl a1, 1, t4 # U : 000000000000ch00
|
|
|
|
insbl a1, 2, t5 # U : 0000000000ch0000
|
|
|
|
ldq_u t0, 0(a0) # L : load first quadword Latency=3
|
|
|
|
|
|
|
|
mov zero, t6 # E : t6 is last match aligned addr
|
|
|
|
or t2, t4, a1 # E : 000000000000chch
|
|
|
|
sll t5, 8, t3 # U : 00000000ch000000
|
|
|
|
mov zero, t8 # E : t8 is last match byte compare mask
|
|
|
|
|
|
|
|
andnot a0, 7, v0 # E : align source addr
|
|
|
|
or t5, t3, t3 # E : 00000000chch0000
|
|
|
|
sll a1, 32, t2 # U : 0000chch00000000
|
|
|
|
sll a1, 48, t4 # U : chch000000000000
|
|
|
|
|
|
|
|
or t4, a1, a1 # E : chch00000000chch
|
|
|
|
or t2, t3, t2 # E : 0000chchchch0000
|
|
|
|
or a1, t2, a1 # E : chchchchchchchch
|
|
|
|
lda t5, -1 # E : build garbage mask
|
|
|
|
|
|
|
|
cmpbge zero, t0, t1 # E : bits set iff byte == zero
|
|
|
|
mskqh t5, a0, t4 # E : Complete garbage mask
|
|
|
|
xor t0, a1, t2 # E : make bytes == c zero
|
|
|
|
cmpbge zero, t4, t4 # E : bits set iff byte is garbage
|
|
|
|
|
|
|
|
cmpbge zero, t2, t3 # E : bits set iff byte == c
|
|
|
|
andnot t1, t4, t1 # E : clear garbage from null test
|
|
|
|
andnot t3, t4, t3 # E : clear garbage from char test
|
|
|
|
bne t1, $eos # U : did we already hit the terminator?
|
|
|
|
|
|
|
|
/* Character search main loop */
|
|
|
|
$loop:
|
|
|
|
ldq t0, 8(v0) # L : load next quadword
|
|
|
|
cmovne t3, v0, t6 # E : save previous comparisons match
|
|
|
|
nop # : Latency=2, extra map slot (keep nop with cmov)
|
|
|
|
nop
|
|
|
|
|
|
|
|
cmovne t3, t3, t8 # E : Latency=2, extra map slot
|
|
|
|
nop # : keep with cmovne
|
|
|
|
addq v0, 8, v0 # E :
|
|
|
|
xor t0, a1, t2 # E :
|
|
|
|
|
|
|
|
cmpbge zero, t0, t1 # E : bits set iff byte == zero
|
|
|
|
cmpbge zero, t2, t3 # E : bits set iff byte == c
|
|
|
|
beq t1, $loop # U : if we havnt seen a null, loop
|
|
|
|
nop
|
|
|
|
|
|
|
|
/* Mask out character matches after terminator */
|
|
|
|
$eos:
|
|
|
|
negq t1, t4 # E : isolate first null byte match
|
|
|
|
and t1, t4, t4 # E :
|
|
|
|
subq t4, 1, t5 # E : build a mask of the bytes upto...
|
|
|
|
or t4, t5, t4 # E : ... and including the null
|
|
|
|
|
|
|
|
and t3, t4, t3 # E : mask out char matches after null
|
|
|
|
cmovne t3, t3, t8 # E : save it, if match found Latency=2, extra map slot
|
|
|
|
nop # : Keep with cmovne
|
|
|
|
nop
|
|
|
|
|
|
|
|
cmovne t3, v0, t6 # E :
|
|
|
|
nop # : Keep with cmovne
|
|
|
|
/* Locate the address of the last matched character */
|
|
|
|
ctlz t8, t2 # U0 : Latency=3 (0x40 for t8=0)
|
|
|
|
nop
|
|
|
|
|
|
|
|
cmoveq t8, 0x3f, t2 # E : Compensate for case when no match is seen
|
|
|
|
nop # E : hide the cmov latency (2) behind ctlz latency
|
|
|
|
lda t5, 0x3f($31) # E :
|
|
|
|
subq t5, t2, t5 # E : Normalize leading zero count
|
|
|
|
|
|
|
|
addq t6, t5, v0 # E : and add to quadword address
|
|
|
|
ret # L0 : Latency=3
|
|
|
|
nop
|
|
|
|
nop
|
|
|
|
|
|
|
|
END(strrchr)
|
|
|
|
|
|
|
|
weak_alias (strrchr, rindex)
|
2003-04-29 22:47:20 +00:00
|
|
|
libc_hidden_builtin_def (strrchr)
|