]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/CopyMem.S
EdkCompatibilityPkg: Remove EdkCompatibilityPkg
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseMemoryLib / X64 / CopyMem.S
diff --git a/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/CopyMem.S b/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/X64/CopyMem.S
deleted file mode 100644 (file)
index dddb866..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-#\r
-# ConvertAsm.py: Automatically generated from CopyMem.asm\r
-#\r
-#------------------------------------------------------------------------------\r
-#\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
-#\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
-#\r
-# Module Name:\r
-#\r
-#   CopyMem.S\r
-#\r
-# Abstract:\r
-#\r
-#   CopyMem function\r
-#\r
-# Notes:\r
-#\r
-#------------------------------------------------------------------------------\r
-\r
-#include <EdkIIGlueBase.h>\r
-#------------------------------------------------------------------------------\r
-#  VOID *\r
-#  EFIAPI\r
-#  InternalMemCopyMem (\r
-#    IN VOID   *Destination,\r
-#    IN VOID   *Source,\r
-#    IN UINTN  Count\r
-#    )\r
-#------------------------------------------------------------------------------\r
-.globl ASM_PFX(InternalMemCopyMem)\r
-ASM_PFX(InternalMemCopyMem):\r
-    pushq   %rsi\r
-    pushq   %rdi\r
-    movq    %rdx, %rsi                  # rsi <- Source\r
-    movq    %rcx, %rdi                  # rdi <- Destination\r
-    leaq    -1(%rsi, %r8,), %r9         # r9 <- End of Source\r
-    cmpq    %rdi, %rsi\r
-    movq    %rdi, %rax                  # rax <- Destination as return value\r
-    jae     L0\r
-    cmpq    %rdi, %r9\r
-    jae     L_CopyBackward               # Copy backward if overlapped\r
-L0:\r
-    movq    %r8, %rcx\r
-    andq    $7, %r8\r
-    shrq    $3, %rcx\r
-    rep     movsq                       # Copy as many Qwords as possible\r
-    jmp     L_CopyBytes\r
-L_CopyBackward:\r
-    movq    %r9, %rsi                   # rsi <- End of Source\r
-    leaq    -1(%rdi, %r8),  %rdi        # esi <- End of Destination\r
-    std                                 # set direction flag\r
-L_CopyBytes:\r
-    movq    %r8, %rcx\r
-    rep     movsb                       # Copy bytes backward\r
-    cld\r
-    popq    %rdi\r
-    popq    %rsi\r
-    ret\r
-\r