summaryrefslogtreecommitdiff
path: root/zap/src/mem/fndchr.S
diff options
context:
space:
mode:
Diffstat (limited to 'zap/src/mem/fndchr.S')
-rw-r--r--zap/src/mem/fndchr.S57
1 files changed, 57 insertions, 0 deletions
diff --git a/zap/src/mem/fndchr.S b/zap/src/mem/fndchr.S
new file mode 100644
index 0000000..2982e7e
--- /dev/null
+++ b/zap/src/mem/fndchr.S
@@ -0,0 +1,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