Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strlen.S « rx « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf12c0ce1189ce4932baf6db944d7c7e8b6ad0ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
	.file	"strlen.S"

	.section .text
	
	.global  _strlen
	.type	 _strlen,@function
_strlen:
#ifdef __RX_DISALLOW_STRING_INSNS__
	mov	r1, r4

1:	mov.b	[r1+], r5
	cmp	#0, r5
	bne	1b

	sub	#1, r1
	sub	r4, r1
	rts
#else
	add	#0, r1, r4	; Save a copy of the string start address and set the condition flags.
	beq     null_string	; Test for a NULL pointer.
	mov	#-1, r3		; Set a limit on the number of bytes examined.
	mov	#0,  r2		; Stop searching when we find a NUL byte.
	suntil.b     		; Search until *r1 == r2
	sub	#1, r1		; suntil.b leaves r1 pointing to the byte beyond the match.
null_string:
	sub	r4, r1		; Compute the length.
	rts
#endif
	.size _strlen, . - _strlen