summaryrefslogtreecommitdiff
path: root/zap/src/mem/fndbyte.S
blob: 4413b42d2de4d98e27320e434bbabee7969d9a60 (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
55
56
57
58
59
/*
	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 <zap/priv.h>

.globl zap_fndbyte

zap_fndbyte:

	/*
		void const *  ptr
		zap_sz        num
		unsigned char byte
	*/

#if defined(__amd64__)

	# rax: Address of the current element.
	# rdi: Address of the first element.
	# rsi: Address of the element after the last element.
	# rdx: Byte value.
	# rcx: Current byte.

	movq %rdi,%rax

	addq %rdi,%rsi

	# Iterate over the array:
.loop:

	# Check if we have reached the end of the array:
	cmpq %rax,%rsi
	je .nfnd
	
	# Check if we have found the byte value:
	movb (%rax),%cl
	cmpb %cl,%dl
	je .fnd

	# Continue to the next byte:
	incq %rax
	jmp .loop

	# Found:
.fnd:

	subq %rdi,%rax
	ret

	# Not found:
.nfnd:

	movq $0xFFFFFFFFFFFFFFFF,%rax
	ret

#endif