mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
7c0aa811ec
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
60 lines
1.3 KiB
NASM
60 lines
1.3 KiB
NASM
;------------------------------------------------------------------------------
|
|
;
|
|
; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
;
|
|
; Module Name:
|
|
;
|
|
; ZeroMem.nasm
|
|
;
|
|
; Abstract:
|
|
;
|
|
; ZeroMem function
|
|
;
|
|
; Notes:
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
DEFAULT REL
|
|
SECTION .text
|
|
|
|
;------------------------------------------------------------------------------
|
|
; VOID *
|
|
; InternalMemZeroMem (
|
|
; IN VOID *Buffer,
|
|
; IN UINTN Count
|
|
; )
|
|
;------------------------------------------------------------------------------
|
|
global ASM_PFX(InternalMemZeroMem)
|
|
ASM_PFX(InternalMemZeroMem):
|
|
push rdi
|
|
mov rdi, rcx
|
|
xor rcx, rcx
|
|
xor eax, eax
|
|
sub rcx, rdi
|
|
and rcx, 15
|
|
mov r8, rdi
|
|
jz .0
|
|
cmp rcx, rdx
|
|
cmova rcx, rdx
|
|
sub rdx, rcx
|
|
rep stosb
|
|
.0:
|
|
mov rcx, rdx
|
|
and edx, 15
|
|
shr rcx, 4
|
|
jz @ZeroBytes
|
|
pxor xmm0, xmm0
|
|
.1:
|
|
movntdq [rdi], xmm0 ; rdi should be 16-byte aligned
|
|
add rdi, 16
|
|
loop .1
|
|
mfence
|
|
@ZeroBytes:
|
|
mov ecx, edx
|
|
rep stosb
|
|
mov rax, r8
|
|
pop rdi
|
|
ret
|
|
|