summaryrefslogtreecommitdiff
path: root/zap/source/amd64/mem/memfill.S
blob: c38eec809c268f796ce364515e73eabeb3337862 (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_memfill

zap_memfill:
# Address of the current element:
#define addr     %rdi
# Address of the element after the last element:
#define afterbuf %rsi
# Byte value:
#define val      %dl

	addq addr,afterbuf # afterbuf += addr // afterbuf contains the number of bytes

	# Iterate over buffer:
.loop:

	# Check if we have reached the final element:
	cmpq addr,afterbuf # if (addr == afterbuf)
	je .done           # goto done

	# Set the value of the current element:
	movb val,(addr) # *addr = val

	# Continue to next element:
	incq addr # ++addr
	jmp .loop # goto loop

	# Finish:
.done:

	ret # return