]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibSse2/Ia32/SetMem64.asm
ArmPkg/ArmDisassemblerLib: fix check for MSR instruction
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / Ia32 / SetMem64.asm
index c5d75c6f2b7ed1a11218f52cd97f514bb73b0438..d6f52a0239d9cd50c323169325ba37498aac6c54 100644 (file)
@@ -1,10 +1,10 @@
 ;------------------------------------------------------------------------------\r
 ;\r
-; Copyright (c) 2006, Intel Corporation\r
-; All rights reserved. This program and the accompanying materials\r
+; Copyright (c) 2006, 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
@@ -28,6 +28,7 @@
 \r
 ;------------------------------------------------------------------------------\r
 ;  VOID *\r
+;  EFIAPI\r
 ;  InternalMemSetMem64 (\r
 ;    IN VOID   *Buffer,\r
 ;    IN UINTN  Count,\r
 ;    )\r
 ;------------------------------------------------------------------------------\r
 InternalMemSetMem64 PROC\r
-    mov     eax, [esp + 4]\r
-    mov     ecx, [esp + 8]\r
+    mov     eax, [esp + 4]              ; eax <- Buffer\r
+    mov     ecx, [esp + 8]              ; ecx <- Count\r
     test    al, 8\r
     mov     edx, eax\r
-    movq    xmm0, [esp + 12]\r
+    movq    xmm0, qword ptr [esp + 12]\r
     jz      @F\r
-    movq    [edx], xmm0\r
+    movq    qword ptr [edx], xmm0\r
     add     edx, 8\r
     dec     ecx\r
 @@:\r
@@ -55,7 +56,7 @@ InternalMemSetMem64 PROC
     mfence\r
 @SetQwords:\r
     jnc     @F\r
-    movq    [edx], xmm0\r
+    movq    qword ptr [edx], xmm0\r
 @@:\r
     ret\r
 InternalMemSetMem64 ENDP\r