]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibSse2/X64/ScanMem8.S
clean up all of eight BaseMemoryLib instances in MdePkg with the following updates:
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / X64 / ScanMem8.S
index 74667a6200f8a532cd84dde58bcb3da00e356def..de9cd8bd13bc88476ede4d499b0e59a3b8b36b2b 100644 (file)
@@ -3,7 +3,7 @@
 #\r
 #------------------------------------------------------------------------------\r
 #\r
-# Copyright (c) 2006 - 2008, Intel Corporation\r
+# Copyright (c) 2006 - 2009, Intel Corporation\r
 # All rights reserved. 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
 #   IN      UINT8                     Value\r
 #   );\r
 #------------------------------------------------------------------------------\r
-.intel_syntax noprefix\r
 ASM_GLOBAL ASM_PFX(InternalMemScanMem8)\r
 ASM_PFX(InternalMemScanMem8):\r
-    push    rdi\r
-    mov     rdi, rcx\r
-    mov     rcx, rdx\r
-    mov     rax, r8\r
+    pushq   %rdi\r
+    movq    %rcx, %rdi\r
+    movq    %rdx, %rcx\r
+    movq    %r8, %rax\r
     repne   scasb\r
-    lea     rax, [rdi - 1]\r
-    cmovnz  rax, rcx                    # set rax to 0 if not found\r
-    pop     rdi\r
+    leaq    -1(%rdi), %rax\r
+    cmovnz  %rcx, %rax                    # set rax to 0 if not found\r
+    popq    %rdi\r
     ret\r
 \r