Aiken Harris 2e0a87e596
All checks were successful
Builds / ExectOS (i686, debug) (push) Successful in 25s
Builds / ExectOS (amd64, debug) (push) Successful in 41s
Builds / ExectOS (i686, release) (push) Successful in 37s
Builds / ExectOS (amd64, release) (push) Successful in 20s
Use __asm__ to comply with disabled GNU extensions
2025-08-15 11:07:07 +02:00

39 lines
1.0 KiB
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/mm/i686/pages.c
* DESCRIPTION: Architecture dependent paging support
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtos.h>
/**
* Fills a section of memory with zeroes like RtlZeroMemory(), but in more efficient way.
*
* @param Address
* Supplies an address of the page to be filled with zeroes.
*
* @param Size
* Number of bytes to be filled with zeros. This always should be a multiply of page size.
*
* @return This routine does not return any value.
*
* @since XT 1.0
*/
XTFASTCALL
VOID
MmZeroPages(IN PVOID Address,
IN ULONG Size)
{
__asm__ volatile("xor %%eax, %%eax\n"
"rep stosb"
: "=D"(Address),
"=c"(Size)
: "0"(Address),
"1"(Size),
"a"(0)
: "memory");
}