summaryrefslogtreecommitdiff
path: root/zap/source/amd64/mem/fill.s
blob: 0abd2bea88321b7f1c846e2e73646942539b4fb9 (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
# Copyright 2022-2023 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>.

.intel_syntax noprefix

.globl zap_fill

zap_fill:
	                   # zap_i8 val1;
	                   # zap_i04 val8;

	movzx   rax,sil    # val8 = val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	shl     rax,0x8    # val8 <<= 0x8u;
	mov     al,sil     # val8 |= val;
	                   # val1 = val8;

.wrdfill:              # wrdfill:;
	cmp     rdx,0x8
	jl      .bytefill  # if (num < 0x8u) goto bytefill;

	mov     [rdi],rax  # *dest = val8;

	add     rdi,0x8    # dest += 0x8u;
	sub     rdx,0x8    # num -= 0x8u;
	jmp     .wrdfill   # goto wrdfill

.bytefill:             # bytefill:;
	test    rdx,rdx    # if (rem == 0x0)
	jz      .done      # goto done

	mov     [rsi],al   # *dest = val1;

	inc      rdi       # ++dest;
	dec      rdx       # --rem;
	jmp      .bytefill # goto bytefill;

.done:
	ret                # return