2012-04-17 02:02:27 +00:00
|
|
|
/* Optimized version of the standard strchr() function.
|
|
|
|
This file is part of the GNU C Library.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 2000-2022 Free Software Foundation, Inc.
|
2012-04-17 02:02:27 +00:00
|
|
|
|
|
|
|
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-04-17 02:10:24 +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/>. */
|
2012-04-17 02:02:27 +00:00
|
|
|
|
|
|
|
/* Return: the address of the first occurence of chr in str or NULL
|
|
|
|
|
|
|
|
Inputs:
|
|
|
|
in0: str
|
|
|
|
in1: chr
|
|
|
|
|
|
|
|
A modified version of memchr.S, the search ends when the character is
|
|
|
|
found or the terminating null character is encountered.
|
|
|
|
|
|
|
|
This implementation assumes little endian mode. For big endian mode,
|
|
|
|
the instruction czx1.r should be replaced by czx1.l. */
|
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
#undef ret
|
|
|
|
|
|
|
|
#define saved_lc r18
|
|
|
|
#define poschr r19
|
|
|
|
#define pos0 r20
|
|
|
|
#define val1 r21
|
|
|
|
#define val2 r22
|
|
|
|
#define tmp r24
|
|
|
|
#define chrx8 r25
|
|
|
|
#define loopcnt r30
|
|
|
|
|
|
|
|
#define str in0
|
|
|
|
#define chr in1
|
|
|
|
|
|
|
|
ENTRY(strchr)
|
|
|
|
.prologue
|
|
|
|
alloc r2 = ar.pfs, 2, 0, 0, 0
|
|
|
|
.save ar.lc, saved_lc
|
|
|
|
mov saved_lc = ar.lc // save the loop counter
|
|
|
|
.body
|
2012-04-17 02:08:04 +00:00
|
|
|
mov ret0 = str
|
2012-04-17 02:02:27 +00:00
|
|
|
and tmp = 7, str // tmp = str % 8
|
|
|
|
mux1 chrx8 = chr, @brcst
|
|
|
|
extr.u chr = chr, 0, 8 // retain only the last byte
|
|
|
|
cmp.ne p8, p0 = r0, r0 // clear p8
|
|
|
|
;;
|
|
|
|
sub loopcnt = 8, tmp // loopcnt = 8 - tmp
|
|
|
|
cmp.eq p6, p0 = tmp, r0
|
|
|
|
(p6) br.cond.sptk .str_aligned;;
|
|
|
|
adds loopcnt = -1, loopcnt;;
|
|
|
|
mov ar.lc = loopcnt
|
|
|
|
.l1:
|
|
|
|
ld1 val2 = [ret0], 1
|
|
|
|
;;
|
|
|
|
cmp.eq p6, p0 = val2, chr
|
|
|
|
cmp.eq p7, p0 = val2, r0
|
|
|
|
(p6) br.cond.spnt .restore_and_exit
|
|
|
|
(p7) br.cond.spnt .notfound
|
|
|
|
br.cloop.sptk .l1
|
|
|
|
.str_aligned:
|
|
|
|
ld8 val1 = [ret0], 8;;
|
|
|
|
nop.b 0
|
|
|
|
nop.b 0
|
2012-04-17 02:08:04 +00:00
|
|
|
.l2:
|
2012-04-17 02:02:27 +00:00
|
|
|
ld8.s val2 = [ret0], 8 // don't bomb out here
|
2012-04-17 02:08:04 +00:00
|
|
|
czx1.r pos0 = val1
|
2012-04-17 02:02:27 +00:00
|
|
|
xor tmp = val1, chrx8 // if val1 contains chr, tmp will
|
|
|
|
;; // contain a zero in its position
|
|
|
|
czx1.r poschr = tmp
|
|
|
|
cmp.ne p6, p0 = 8, pos0
|
|
|
|
;;
|
|
|
|
cmp.ne p7, p0 = 8, poschr
|
|
|
|
(p7) br.cond.spnt .foundit
|
|
|
|
(p6) br.cond.spnt .notfound
|
|
|
|
chk.s val2, .recovery
|
|
|
|
.back:
|
2012-04-17 02:08:04 +00:00
|
|
|
mov val1 = val2
|
2012-04-17 02:02:27 +00:00
|
|
|
br.cond.dptk .l2
|
|
|
|
.foundit:
|
|
|
|
(p6) cmp.lt p8, p0 = pos0, poschr // we found chr and null in the word
|
|
|
|
(p8) br.cond.spnt .notfound // null was found before chr
|
|
|
|
add ret0 = ret0, poschr ;;
|
|
|
|
adds ret0 = -15, ret0 ;; // should be -16, but we decrement
|
|
|
|
.restore_and_exit: // ret0 in the next instruction
|
|
|
|
adds ret0 = -1, ret0 // ret0 was pointing 1 char too far
|
|
|
|
mov ar.lc = saved_lc // restore the loop counter
|
|
|
|
br.ret.sptk.many b0
|
|
|
|
.notfound:
|
|
|
|
mov ret0 = r0 // return NULL if null was found
|
|
|
|
mov ar.lc = saved_lc
|
|
|
|
br.ret.sptk.many b0
|
|
|
|
.recovery:
|
|
|
|
adds ret0 = -8, ret0;;
|
|
|
|
ld8 val2 = [ret0], 8 // bomb out here
|
|
|
|
br.cond.sptk .back
|
|
|
|
END(strchr)
|
|
|
|
|
|
|
|
weak_alias (strchr, index)
|
|
|
|
libc_hidden_builtin_def (strchr)
|