]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseMemoryLibMmx/X64/ZeroMem.nasm
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / X64 / ZeroMem.nasm
CommitLineData
8b247ef7
JJ
1;------------------------------------------------------------------------------\r
2;\r
3; Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>\r
4; This program and the accompanying materials\r
5; are licensed and made available under the terms and conditions of the BSD License\r
6; which accompanies this distribution. The full text of the license may be found at\r
7; http://opensource.org/licenses/bsd-license.php.\r
8;\r
9; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11;\r
12; Module Name:\r
13;\r
14; ZeroMem.nasm\r
15;\r
16; Abstract:\r
17;\r
18; ZeroMem function\r
19;\r
20; Notes:\r
21;\r
22;------------------------------------------------------------------------------\r
23\r
24 DEFAULT REL\r
25 SECTION .text\r
26\r
27;------------------------------------------------------------------------------\r
28; VOID *\r
29; InternalMemZeroMem (\r
30; IN VOID *Buffer,\r
31; IN UINTN Count\r
32; );\r
33;------------------------------------------------------------------------------\r
34global ASM_PFX(InternalMemZeroMem)\r
35ASM_PFX(InternalMemZeroMem):\r
36 push rdi\r
37 mov rdi, rcx\r
38 mov rcx, rdx\r
39 mov r8, rdi\r
40 and edx, 7\r
41 shr rcx, 3\r
42 jz @ZeroBytes\r
43 DB 0xf, 0xef, 0xc0 ; pxor mm0, mm0\r
44.0:\r
45 DB 0xf, 0xe7, 7 ; movntq [rdi], mm0\r
46 add rdi, 8\r
47 loop .0\r
48 DB 0xf, 0xae, 0xf0 ; mfence\r
49@ZeroBytes:\r
50 xor eax, eax\r
51 mov ecx, edx\r
52 rep stosb\r
53 mov rax, r8\r
54 pop rdi\r
55 ret\r
56\r