summaryrefslogtreecommitdiff
path: root/rgo/src/streq.S
blob: 2df763c828adf8e6d6fcaa9d51cd2a6fa470ac98 (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
/*
	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_streq

rgo_streq:
	/*
		char const * lstr
		char const * rstr
	*/
#if defined(__x86_64__)
	/* rax: Address of the current input character. */
	movq %rdi,%rax
	/* rsi: Address of the current output character. */
	movq %rsi,%rsi
	/* rdx: Current input character. */
	/* rcx: Current output character. */
.loop:
	movb (%rax),%dl
	movb (%rsi),%cl
	cmpb %dl,%cl
	jne .neq
	testb %dl,%dl /* Check if we have reached the null-terminator. */
	jz .eq
	incq %rax
	incq %rsi
	jmp .loop
.eq:
	mov $0x1,%rax
	ret
.neq:
	mov $0x0,%rax
	ret
#endif