]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibSse2/X64/SetMem64.S
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / X64 / SetMem64.S
index 32dce91da8a46eae13477b494c6e5f26dc2e90c6..c44ec08ae629af0f83f9fe8b5a76ba881779e195 100644 (file)
@@ -3,11 +3,11 @@
 #\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006, 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 UINT64 Value\r
 #    )\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
-.globl ASM_PFX(InternalMemSetMem64)\r
+ASM_GLOBAL ASM_PFX(InternalMemSetMem64)\r
 ASM_PFX(InternalMemSetMem64):\r
-    mov     rax, rcx                    # rax <- Buffer\r
-    xchg    rcx, rdx                    # rcx <- Count & rdx <- Buffer\r
-    test    dl, 8\r
-    movq    xmm0, r8\r
+    movq    %rcx, %rax                    # rax <- Buffer\r
+    xchgq   %rdx, %rcx                    # rcx <- Count & rdx <- Buffer\r
+    testb   $8, %dl\r
+    movd    %r8, %xmm0\r
     jz      L0\r
-    mov     [rdx], r8\r
-    add     rdx, 8\r
-    dec     rcx\r
+    movq    %r8, (%rdx)\r
+    addq    $8, %rdx\r
+    decq    %rcx\r
 L0:\r
-    shr     rcx, 1\r
+    shrq    $1, %rcx\r
     jz      L_SetQwords\r
-    movlhps xmm0, xmm0\r
+    movlhps %xmm0, %xmm0\r
 L1:\r
-    movntdq [rdx], xmm0\r
-    lea     rdx, [rdx + 16]\r
+    movntdq %xmm0, (%rdx)\r
+    leaq    16(%rdx), %rdx\r
     loop    L1\r
     mfence\r
 L_SetQwords:\r
     jnc     L2\r
-    mov     [rdx], r8\r
+    movq    %r8, (%rdx)\r
 L2:\r
     ret\r
 \r