2022-01-01 18:54:23 +00:00
|
|
|
/* Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
2009-04-07 06:36: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/>. */
|
2009-04-07 06:36:33 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
# define MEMCHR wmemchr
|
|
|
|
# define PCMPEQ pcmpeqd
|
2021-06-09 20:25:32 +00:00
|
|
|
# define CHAR_PER_VEC 4
|
2017-06-09 12:13:15 +00:00
|
|
|
#else
|
|
|
|
# define MEMCHR memchr
|
|
|
|
# define PCMPEQ pcmpeqb
|
2021-06-09 20:25:32 +00:00
|
|
|
# define CHAR_PER_VEC 16
|
2017-06-09 12:13:15 +00:00
|
|
|
#endif
|
|
|
|
|
2011-10-07 15:49:10 +00:00
|
|
|
/* fast SSE2 version with using pmaxub and 64 byte loop */
|
2009-04-07 06:36:33 +00:00
|
|
|
|
|
|
|
.text
|
2017-06-09 12:13:15 +00:00
|
|
|
ENTRY(MEMCHR)
|
2017-05-30 19:39:14 +00:00
|
|
|
movd %esi, %xmm1
|
|
|
|
mov %edi, %ecx
|
2011-10-07 15:49:10 +00:00
|
|
|
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef __ILP32__
|
|
|
|
/* Clear the upper 32 bits. */
|
|
|
|
movl %edx, %edx
|
|
|
|
#endif
|
2017-06-09 12:13:15 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
2019-01-21 19:23:59 +00:00
|
|
|
test %RDX_LP, %RDX_LP
|
2017-06-09 12:13:15 +00:00
|
|
|
jz L(return_null)
|
|
|
|
#else
|
2009-04-07 06:36:33 +00:00
|
|
|
punpcklbw %xmm1, %xmm1
|
2019-01-21 19:23:59 +00:00
|
|
|
test %RDX_LP, %RDX_LP
|
2011-10-07 15:49:10 +00:00
|
|
|
jz L(return_null)
|
2009-04-07 06:36:33 +00:00
|
|
|
punpcklbw %xmm1, %xmm1
|
2017-06-09 12:13:15 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
|
2017-05-30 19:39:14 +00:00
|
|
|
and $63, %ecx
|
2009-04-07 06:36:33 +00:00
|
|
|
pshufd $0, %xmm1, %xmm1
|
2011-10-07 15:49:10 +00:00
|
|
|
|
2017-05-30 19:39:14 +00:00
|
|
|
cmp $48, %ecx
|
2011-10-07 15:49:10 +00:00
|
|
|
ja L(crosscache)
|
|
|
|
|
|
|
|
movdqu (%rdi), %xmm0
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
|
|
|
|
jnz L(matches_1)
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $CHAR_PER_VEC, %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
add $16, %rdi
|
2017-05-30 19:39:14 +00:00
|
|
|
and $15, %ecx
|
2011-10-07 15:49:10 +00:00
|
|
|
and $-16, %rdi
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
shr $2, %ecx
|
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
add %rcx, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $(CHAR_PER_VEC * 4), %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(exit_loop)
|
|
|
|
jmp L(loop_prolog)
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(crosscache):
|
2017-05-30 19:39:14 +00:00
|
|
|
and $15, %ecx
|
2011-10-07 15:49:10 +00:00
|
|
|
and $-16, %rdi
|
|
|
|
movdqa (%rdi), %xmm0
|
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2021-06-09 20:25:32 +00:00
|
|
|
/* Check if there is a match. */
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
/* Remove the leading bytes. */
|
2011-10-07 15:49:10 +00:00
|
|
|
sar %cl, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
je L(unaligned_no_match)
|
2021-06-09 20:25:32 +00:00
|
|
|
/* Check which byte is a match. */
|
2011-10-07 15:49:10 +00:00
|
|
|
bsf %eax, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
mov %eax, %esi
|
|
|
|
shr $2, %esi
|
|
|
|
sub %rsi, %rdx
|
|
|
|
#else
|
2011-10-07 15:49:10 +00:00
|
|
|
sub %rax, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
add %rdi, %rax
|
|
|
|
add %rcx, %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(unaligned_no_match):
|
2021-06-09 20:25:32 +00:00
|
|
|
/* "rcx" is less than 16. Calculate "rdx + rcx - 16" by using
|
x86: Optimize SSE2 memchr overflow calculation
SSE2 memchr computes "edx + ecx - 16" where ecx is less than 16. Use
"edx - (16 - ecx)", instead of satured math, to avoid possible addition
overflow. This replaces
add %ecx, %edx
sbb %eax, %eax
or %eax, %edx
sub $16, %edx
with
neg %ecx
add $16, %ecx
sub %ecx, %edx
It is the same for x86_64, except for rcx/rdx, instead of ecx/edx.
* sysdeps/i386/i686/multiarch/memchr-sse2.S (MEMCHR): Use
"edx + ecx - 16" to avoid possible addition overflow.
* sysdeps/x86_64/memchr.S (memchr): Likewise.
2017-05-19 17:46:29 +00:00
|
|
|
"rdx - (16 - rcx)" instead of "(rdx + rcx) - 16" to void
|
|
|
|
possible addition overflow. */
|
|
|
|
neg %rcx
|
|
|
|
add $16, %rcx
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
shr $2, %ecx
|
|
|
|
#endif
|
x86: Optimize SSE2 memchr overflow calculation
SSE2 memchr computes "edx + ecx - 16" where ecx is less than 16. Use
"edx - (16 - ecx)", instead of satured math, to avoid possible addition
overflow. This replaces
add %ecx, %edx
sbb %eax, %eax
or %eax, %edx
sub $16, %edx
with
neg %ecx
add $16, %ecx
sub %ecx, %edx
It is the same for x86_64, except for rcx/rdx, instead of ecx/edx.
* sysdeps/i386/i686/multiarch/memchr-sse2.S (MEMCHR): Use
"edx + ecx - 16" to avoid possible addition overflow.
* sysdeps/x86_64/memchr.S (memchr): Likewise.
2017-05-19 17:46:29 +00:00
|
|
|
sub %rcx, %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
add $16, %rdi
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $(CHAR_PER_VEC * 4), %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(exit_loop)
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(loop_prolog):
|
|
|
|
movdqa (%rdi), %xmm0
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches)
|
|
|
|
|
|
|
|
movdqa 16(%rdi), %xmm2
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm2
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm2, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches16)
|
|
|
|
|
|
|
|
movdqa 32(%rdi), %xmm3
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm3
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm3, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches32)
|
|
|
|
|
|
|
|
movdqa 48(%rdi), %xmm4
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm4
|
2011-10-07 15:49:10 +00:00
|
|
|
add $64, %rdi
|
|
|
|
pmovmskb %xmm4, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches0)
|
|
|
|
|
|
|
|
test $0x3f, %rdi
|
|
|
|
jz L(align64_loop)
|
|
|
|
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $(CHAR_PER_VEC * 4), %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(exit_loop)
|
|
|
|
|
|
|
|
movdqa (%rdi), %xmm0
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches)
|
|
|
|
|
|
|
|
movdqa 16(%rdi), %xmm2
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm2
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm2, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches16)
|
|
|
|
|
|
|
|
movdqa 32(%rdi), %xmm3
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm3
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm3, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches32)
|
|
|
|
|
|
|
|
movdqa 48(%rdi), %xmm3
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm3
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm3, %eax
|
|
|
|
|
|
|
|
add $64, %rdi
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches0)
|
|
|
|
|
|
|
|
mov %rdi, %rcx
|
|
|
|
and $-64, %rdi
|
2017-05-30 19:39:14 +00:00
|
|
|
and $63, %ecx
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
shr $2, %ecx
|
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
add %rcx, %rdx
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(align64_loop):
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $(CHAR_PER_VEC * 4), %rdx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(exit_loop)
|
|
|
|
movdqa (%rdi), %xmm0
|
|
|
|
movdqa 16(%rdi), %xmm2
|
|
|
|
movdqa 32(%rdi), %xmm3
|
|
|
|
movdqa 48(%rdi), %xmm4
|
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
|
|
|
PCMPEQ %xmm1, %xmm2
|
|
|
|
PCMPEQ %xmm1, %xmm3
|
|
|
|
PCMPEQ %xmm1, %xmm4
|
2011-10-07 15:49:10 +00:00
|
|
|
|
|
|
|
pmaxub %xmm0, %xmm3
|
|
|
|
pmaxub %xmm2, %xmm4
|
|
|
|
pmaxub %xmm3, %xmm4
|
|
|
|
pmovmskb %xmm4, %eax
|
|
|
|
|
|
|
|
add $64, %rdi
|
|
|
|
|
|
|
|
test %eax, %eax
|
|
|
|
jz L(align64_loop)
|
|
|
|
|
|
|
|
sub $64, %rdi
|
|
|
|
|
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches)
|
|
|
|
|
|
|
|
pmovmskb %xmm2, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches16)
|
|
|
|
|
|
|
|
movdqa 32(%rdi), %xmm3
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm3
|
2011-10-07 15:49:10 +00:00
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ 48(%rdi), %xmm1
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm3, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches32)
|
|
|
|
|
|
|
|
pmovmskb %xmm1, %eax
|
|
|
|
bsf %eax, %eax
|
|
|
|
lea 48(%rdi, %rax), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(exit_loop):
|
2021-06-09 20:25:32 +00:00
|
|
|
add $(CHAR_PER_VEC * 2), %edx
|
2011-10-07 15:49:10 +00:00
|
|
|
jle L(exit_loop_32)
|
|
|
|
|
|
|
|
movdqa (%rdi), %xmm0
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches)
|
|
|
|
|
|
|
|
movdqa 16(%rdi), %xmm2
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm2
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm2, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches16)
|
|
|
|
|
|
|
|
movdqa 32(%rdi), %xmm3
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm3
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm3, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches32_1)
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $CHAR_PER_VEC, %edx
|
2011-10-07 15:49:10 +00:00
|
|
|
jle L(return_null)
|
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ 48(%rdi), %xmm1
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm1, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches48_1)
|
2017-05-30 19:39:14 +00:00
|
|
|
xor %eax, %eax
|
2011-10-07 15:49:10 +00:00
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(exit_loop_32):
|
2021-06-09 20:25:32 +00:00
|
|
|
add $(CHAR_PER_VEC * 2), %edx
|
2011-10-07 15:49:10 +00:00
|
|
|
movdqa (%rdi), %xmm0
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ %xmm1, %xmm0
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm0, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches_1)
|
2021-06-09 20:25:32 +00:00
|
|
|
sub $CHAR_PER_VEC, %edx
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
2009-04-07 06:36:33 +00:00
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
PCMPEQ 16(%rdi), %xmm1
|
2011-10-07 15:49:10 +00:00
|
|
|
pmovmskb %xmm1, %eax
|
|
|
|
test %eax, %eax
|
|
|
|
jnz L(matches16_1)
|
2017-05-30 19:39:14 +00:00
|
|
|
xor %eax, %eax
|
2009-04-07 06:36:33 +00:00
|
|
|
ret
|
|
|
|
|
2011-10-07 15:49:10 +00:00
|
|
|
.p2align 4
|
|
|
|
L(matches0):
|
|
|
|
bsf %eax, %eax
|
|
|
|
lea -16(%rax, %rdi), %rax
|
2009-04-07 06:36:33 +00:00
|
|
|
ret
|
2011-10-07 15:49:10 +00:00
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches):
|
|
|
|
bsf %eax, %eax
|
|
|
|
add %rdi, %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches16):
|
|
|
|
bsf %eax, %eax
|
|
|
|
lea 16(%rax, %rdi), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches32):
|
|
|
|
bsf %eax, %eax
|
|
|
|
lea 32(%rax, %rdi), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches_1):
|
|
|
|
bsf %eax, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
mov %eax, %esi
|
|
|
|
shr $2, %esi
|
|
|
|
sub %rsi, %rdx
|
|
|
|
#else
|
2011-10-07 15:49:10 +00:00
|
|
|
sub %rax, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
add %rdi, %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches16_1):
|
|
|
|
bsf %eax, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
mov %eax, %esi
|
|
|
|
shr $2, %esi
|
|
|
|
sub %rsi, %rdx
|
|
|
|
#else
|
2011-10-07 15:49:10 +00:00
|
|
|
sub %rax, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
lea 16(%rdi, %rax), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches32_1):
|
|
|
|
bsf %eax, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
mov %eax, %esi
|
|
|
|
shr $2, %esi
|
|
|
|
sub %rsi, %rdx
|
|
|
|
#else
|
2011-10-07 15:49:10 +00:00
|
|
|
sub %rax, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
lea 32(%rdi, %rax), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(matches48_1):
|
|
|
|
bsf %eax, %eax
|
2021-06-09 20:25:32 +00:00
|
|
|
#ifdef USE_AS_WMEMCHR
|
|
|
|
mov %eax, %esi
|
|
|
|
shr $2, %esi
|
|
|
|
sub %rsi, %rdx
|
|
|
|
#else
|
2011-10-07 15:49:10 +00:00
|
|
|
sub %rax, %rdx
|
2021-06-09 20:25:32 +00:00
|
|
|
#endif
|
2011-10-07 15:49:10 +00:00
|
|
|
jbe L(return_null)
|
|
|
|
lea 48(%rdi, %rax), %rax
|
|
|
|
ret
|
|
|
|
|
|
|
|
.p2align 4
|
|
|
|
L(return_null):
|
2017-05-30 19:39:14 +00:00
|
|
|
xor %eax, %eax
|
2011-10-07 15:49:10 +00:00
|
|
|
ret
|
2017-06-09 12:13:15 +00:00
|
|
|
END(MEMCHR)
|
2009-04-07 06:36:33 +00:00
|
|
|
|
2017-06-09 12:13:15 +00:00
|
|
|
#ifndef USE_AS_WMEMCHR
|
2009-04-07 06:36:33 +00:00
|
|
|
strong_alias (memchr, __memchr)
|
2011-10-07 15:49:10 +00:00
|
|
|
libc_hidden_builtin_def(memchr)
|
2017-06-09 12:13:15 +00:00
|
|
|
#endif
|