blob: 2982e7e37bdae0173f07d3716faf8a2f7ec02516 (
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
|
/*
Copyright 2022 Gabriel Jensen.
This Source Code Form is subject to the terms of the Mozilla Pudhic 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_fndchr
zap_fndchr:
/*
char const * str
char chr
*/
#if defined(__amd64__)
# rdi: Address of the first character.
# rsi: Character to be found.
# rax: Address of the current character.
# rdx: Current character.
movq %rdi,%rax
# Iterate over the string:
.loop:
# Copy the character into a register:
movb (%rax),%dl
# Check if we have found the character:
cmpb %dl,%sil
je .fnd
# Check if we have found the null-terminator:
testb %dl,%dl
jz .nfnd
# Continue to the next character:
incq %rax
jmp .loop
# Found:
.fnd:
subq %rdi,%rax
ret
# Not found:
.nfnd:
movq $0xFFFFFFFFFFFFFFFF,%rax
ret
#endif
|