summaryrefslogtreecommitdiff
path: root/rgo/src/fndchr.S
blob: 608916b5f63bb44d2dd316dbcbf2950593a2c598 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
	Copyright 2022 Gabriel Jensen.
	This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
	If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include <rgo.h>

.global rgo_fndchr

rgo_fndchr:
	/*
		char const * str
		char         chr
	*/
#if defined(__i386__)
	/* eax: Address of the current character. */
	movl 0x4(%esp),%eax
	/* ecx: Character. */
	movb 0x8(%esp),%cl
	/* edx: Current character. */
.loop:
	movb (%eax),%dl
	cmpb %dl,%cl
	je .fnd /* Exit loop if we have found the character. */
	testb %dl,%dl
	je .nfnd /* We encountered the null-terminator but not the specified character. */
	incl %eax
	jmp .loop
.fnd:
	subl 0x4(%esp),%eax
	ret
.nfnd:
	movl $0xFFFFFFFF,%eax
	ret
#elif defined(__x86_64__)
	/* rax: Address of the current character. */
	movq %rdi,%rax
	/* rdx: Current character. */
.loop:
	movb (%rax),%dl
	cmpb %dl,%sil
	je .fnd /* Exit loop if we have found the character. */
	testb %dl,%dl
	je .nfnd /* We encountered the null-terminator but not the specified character. */
	incq %rax
	jmp .loop
.fnd:
	subq %rdi,%rax
	ret
.nfnd:
	movq $0xFFFFFFFFFFFFFFFF,%rax
	ret
#endif