blob: 63a1aade0c2b26e8a348c91a22a5e62420dfa5f5 (
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
|
/*
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_memfill
zap_memfill:
/*
void const * ptr
zap_sz num
unsigned char val
*/
#if defined(__amd64__)
# rdi: Address of the current element.
# rsi: Address of the element after the last element.
# rdx: Byte value.
addq %rdi,%rsi
# Iterate over buffer:
.loop:
# Check if we have reached the final element:
cmpq %rdi,%rsi
je .done # Exit loop if we have.
# Set the value of the current element:
movb %dl,(%rdi)
# Continue to next element:
incq %rdi
jmp .loop
# Finish:
.done:
ret
#endif
|