Blame sysdeps/arm/armv6/strrchr.S

Packit 6c4009
/* strrchr -- find the last occurence of C in a nul-terminated string
Packit 6c4009
   Copyright (C) 2013-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library.  If not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <sysdep.h>
Packit 6c4009
Packit 6c4009
	.syntax unified
Packit 6c4009
	.text
Packit 6c4009
Packit 6c4009
ENTRY (strrchr)
Packit 6c4009
	@ r0 = start of string
Packit 6c4009
	@ r1 = character to match
Packit 6c4009
	@ returns NULL for no match, or a pointer to the match
Packit 6c4009
Packit 6c4009
	mov	r3, r0
Packit 6c4009
	mov	r0, #0
Packit 6c4009
	uxtb	r1, r1
Packit 6c4009
Packit 6c4009
	@ Loop a few times until we're aligned.
Packit 6c4009
	tst	r3, #7
Packit 6c4009
	beq	2f
Packit 6c4009
1:	ldrb	r2, [r3], #1
Packit 6c4009
	cmp	r2, r1			@ Find the character
Packit 6c4009
	it	eq
Packit 6c4009
	subeq	r0, r3, #1
Packit 6c4009
	cmp	r2, #0			@ Find EOS
Packit 6c4009
	it	eq
Packit 6c4009
	bxeq	lr
Packit 6c4009
	tst	r3, #7			@ Find the aligment point
Packit 6c4009
	bne	1b
Packit 6c4009
Packit 6c4009
	@ So now we're aligned.  Now we actually need a stack frame.
Packit 6c4009
2:	push	{ r4, r5, r6, r7 }
Packit 6c4009
	cfi_adjust_cfa_offset (16)
Packit 6c4009
	cfi_rel_offset (r4, 0)
Packit 6c4009
	cfi_rel_offset (r5, 4)
Packit 6c4009
	cfi_rel_offset (r6, 8)
Packit 6c4009
	cfi_rel_offset (r7, 12)
Packit 6c4009
Packit 6c4009
	orr	r1, r1, r1, lsl #8	@ Replicate C to all bytes
Packit 6c4009
#ifdef ARCH_HAS_T2
Packit 6c4009
	movw	ip, #0x0101
Packit 6c4009
	movt	ip, #0x0101
Packit 6c4009
#else
Packit 6c4009
	ldr	ip, =0x01010101
Packit 6c4009
#endif
Packit 6c4009
	orr	r1, r1, r1, lsl #16
Packit 6c4009
	mov	r2, #0			@ No found bits yet
Packit 6c4009
Packit 6c4009
	@ Loop searching for EOS and C, 8 bytes at a time.
Packit 6c4009
	@ Any time we find a match in a word, we copy the address of
Packit 6c4009
	@ the word to r0, and the found bits to r2.
Packit 6c4009
3:	ldrd	r4, r5, [r3], #8
Packit 6c4009
	@ Subtracting (unsigned saturating) from 1 means result of 1 for
Packit 6c4009
	@ any byte that was originally zero and 0 otherwise.  Therefore
Packit 6c4009
	@ we consider the lsb of each byte the "found" bit.
Packit 6c4009
	uqsub8	r6, ip, r4		@ Find EOS
Packit 6c4009
	uqsub8	r7, ip, r5
Packit 6c4009
	eor	r4, r4, r1		@ Convert C bytes to 0
Packit 6c4009
	eor	r5, r5, r1
Packit 6c4009
	uqsub8	r4, ip, r4		@ Find C
Packit 6c4009
	uqsub8	r5, ip, r5
Packit 6c4009
	cmp	r6, #0			@ Found EOS, first word
Packit 6c4009
	bne	4f
Packit 6c4009
	cmp	r4, #0			@ Handle C, first word
Packit 6c4009
	itt	ne
Packit 6c4009
	subne	r0, r3, #8
Packit 6c4009
	movne	r2, r4
Packit 6c4009
	cmp	r7, #0			@ Found EOS, second word
Packit 6c4009
	bne	5f
Packit 6c4009
	cmp	r5, #0			@ Handle C, second word
Packit 6c4009
	itt	ne
Packit 6c4009
	subne	r0, r3, #4
Packit 6c4009
	movne	r2, r5
Packit 6c4009
	b	3b
Packit 6c4009
Packit 6c4009
	@ Found EOS in second word; fold to first word.
Packit 6c4009
5:	add	r3, r3, #4		@ Dec pointer to 2nd word, with below
Packit 6c4009
	mov	r4, r5			@ Overwrite first word C found
Packit 6c4009
	mov	r6, r7			@ Overwrite first word EOS found
Packit 6c4009
Packit 6c4009
	@ Found EOS.  Zap found C after EOS.
Packit 6c4009
4:	sub	r3, r3, #8		@ Decrement pointer to first word
Packit 6c4009
#ifdef __ARMEB__
Packit 6c4009
	@ Byte swap to be congruent with LE, which is easier from here on.
Packit 6c4009
	rev	r6, r6			@ Byte swap found EOS,
Packit 6c4009
	rev	r4, r4			@ ... this found C
Packit 6c4009
	rev	r2, r2			@ ... prev found C
Packit 6c4009
#endif
Packit 6c4009
	sub	r7, r6, #1		@ Toggle EOS lsb and below
Packit 6c4009
	eor	r6, r6, r7		@ All bits below and including lsb
Packit 6c4009
	ands	r4, r4, r6		@ Zap C above EOS
Packit 6c4009
	itt	ne
Packit 6c4009
	movne	r2, r4			@ Copy to result, if still non-zero
Packit 6c4009
	movne	r0, r3
Packit 6c4009
Packit 6c4009
	pop	{ r4, r5, r6, r7 }
Packit 6c4009
	cfi_adjust_cfa_offset (-16)
Packit 6c4009
	cfi_restore (r4)
Packit 6c4009
	cfi_restore (r5)
Packit 6c4009
	cfi_restore (r6)
Packit 6c4009
	cfi_restore (r7)
Packit 6c4009
Packit 6c4009
	@ Adjust the result pointer if we found a word containing C.
Packit 6c4009
	cmp	r2, #0
Packit 6c4009
	clz	r2, r2			@ Find the bit offset of the last C
Packit 6c4009
	itt	ne
Packit 6c4009
	rsbne	r2, r2, #32		@ Convert to a count from the right
Packit 6c4009
	addne	r0, r0, r2, lsr #3	@ Convert to byte offset and add.
Packit 6c4009
	bx	lr
Packit 6c4009
Packit 6c4009
END (strrchr)
Packit 6c4009
Packit 6c4009
weak_alias (strrchr, rindex)
Packit 6c4009
libc_hidden_builtin_def (strrchr)