summaryrefslogtreecommitdiff
path: root/zap/source/amd64/mem/strfill.S
blob: 590b99fbc6f430a9463f524f9d2e64f39045d73f (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
# 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/.

.globl zap_strfill

zap_strfill:
	# rdi: Address of the first character of the string.
	# rsi: Fill character.
	# rax: Address of the current character.

	movq %rdi,%rax

	# Iterate over string:
.loop:

	# Check if we have reached the null-terminator:
	cmpb $0x0,(%rax)
	je .done # Exit loop if we have.

	# Set the value of the current element:
	movb %sil,(%rax)

	# Continue to next character:
	incq %rax
	jmp .loop

	# Finish:
.done:

	# Get the length of the string:
	subq %rdi,%rax

	ret