]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibMmx/X64/ZeroMem.S
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / X64 / ZeroMem.S
index 1dbc3be847cf8dbd02482e67049f454a009b0561..79f0b3d50193d787b3ba36274d3b82734cd7d012 100644 (file)
@@ -3,11 +3,11 @@
 #\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006 - 2008, Intel Corporation\r
-# All rights reserved. This program and the accompanying materials\r
+# Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
+# This program and the accompanying materials\r
 # are licensed and made available under the terms and conditions of the BSD License\r
 # which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
+# http://opensource.org/licenses/bsd-license.php.\r
 #\r
 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 #    IN UINTN  Count\r
 #    );\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
-.globl ASM_PFX(InternalMemZeroMem)\r
+ASM_GLOBAL ASM_PFX(InternalMemZeroMem)\r
 ASM_PFX(InternalMemZeroMem):\r
-    push    rdi\r
-    mov     rdi, rcx\r
-    mov     rcx, rdx\r
-    mov     r8, rdi\r
-    and     edx, 7\r
-    shr     rcx, 3\r
+    pushq   %rdi\r
+    movq    %rcx, %rdi\r
+    movq    %rdx, %rcx\r
+    movq    %rdi, %r8\r
+    andq    $7, %rdx\r
+    shrq    $3, %rcx\r
     jz      L_ZeroBytes\r
-    pxor    mm0, mm0\r
+    pxor    %mm0, %mm0\r
 L0:\r
-    movntq  [rdi], mm0\r
-    add     rdi, 8\r
+    movntq  %mm0, (%rdi)\r
+    addq    $8, %rdi\r
     loop    L0\r
     mfence\r
 L_ZeroBytes:\r
-    xor     eax, eax\r
-    mov     ecx, edx\r
+    xorl    %eax, %eax\r
+    movl    %edx, %ecx\r
     rep     stosb\r
-    mov     rax, r8\r
-    pop     rdi\r
+    movq    %r8, %rax\r
+    popq    %rdi\r
     ret\r
 \r