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:
|
|
;
|
|
;------------------------------------------------------------------------------
|
|
|
|
SECTION .text
|
|
|
|
;------------------------------------------------------------------------------
|
|
; VOID *
|
|
; EFIAPI
|
|
; InternalMemZeroMem (
|
|
; IN VOID *Buffer,
|
|
; IN UINTN Count
|
|
; );
|
|
;------------------------------------------------------------------------------
|
|
global ASM_PFX(InternalMemZeroMem)
|
|
ASM_PFX(InternalMemZeroMem):
|
|
push edi
|
|
mov edi, [esp + 8]
|
|
mov edx, [esp + 12]
|
|
xor ecx, ecx
|
|
sub ecx, edi
|
|
xor eax, eax
|
|
and ecx, 15
|
|
jz .0
|
|
cmp ecx, edx
|
|
cmova ecx, edx
|
|
sub edx, ecx
|
|
rep stosb
|
|
.0:
|
|
mov ecx, edx
|
|
and edx, 15
|
|
shr ecx, 4
|
|
jz @ZeroBytes
|
|
pxor xmm0, xmm0
|
|
.1:
|
|
movntdq [edi], xmm0
|
|
add edi, 16
|
|
loop .1
|
|
mfence
|
|
@ZeroBytes:
|
|
mov ecx, edx
|
|
rep stosb
|
|
mov eax, [esp + 8]
|
|
pop edi
|
|
ret
|
|
|