reactos/ntoskrnl/ke/amd64/zeropage.S
Jérôme Gardou 42bec35f65 [NTOS:KE] Also rewrite KeZeroPages in assembly for amd64
Let's stick with "rep movsq" until we are able to have more precise benchmarks
2021-08-04 17:48:39 +02:00

46 lines
896 B
ArmAsm

/*
* PROJECT: ReactOS Kernel
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Fast zeroing of pages
* COPYRIGHT: Copyright 2021 Jérôme Gardou <jerome.gardou@reactos.org>
*/
#include <asm.inc>
/* FUNCTIONS ****************************************************************/
.code
/* Benchmarking from Timo on some AMD machine:
rep movsq : 128
movaps 175
movnti 620
movntdq: 620
movntps: 620
MS KeZeroPages (movnti unrolled): 883
MS KeZeroSinglePage (mov): 346
whole discussion in https://github.com/reactos/reactos/pull/3765
We stick with rep stosq.
*/
/*
* VOID
* KeZeroPages(PVOID Ptr, ULONG Size);
*/
PUBLIC KeZeroPages
FUNC KeZeroPages
push rdi
.PUSHREG rdi
.ENDPROLOG
mov rdi, rcx
mov ecx, edx
shr ecx, 3
xor rax, rax
rep stosq
pop rdi
ret
ENDFUNC
END