]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibOptPei/Ia32/CopyMem.S
436dc32c0eb827553fdb6e4cd3a680b8e9ad24e2
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibOptPei / Ia32 / CopyMem.S
1 #------------------------------------------------------------------------------
2 #
3 # Copyright (c) 2006 - 2008, Intel Corporation
4 # All rights reserved. This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License
6 # which accompanies this distribution. The full text of the license may be found at
7 # http://opensource.org/licenses/bsd-license.php
8 #
9 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 #
12 # Module Name:
13 #
14 # CopyMem.S
15 #
16 # Abstract:
17 #
18 # CopyMem function
19 #
20 # Notes:
21 #
22 #------------------------------------------------------------------------------
23
24 ASM_GLOBAL ASM_PFX(InternalMemCopyMem)
25
26 #------------------------------------------------------------------------------
27 # VOID *
28 # EFIAPI
29 # InternalMemCopyMem (
30 # IN VOID *Destination,
31 # IN VOID *Source,
32 # IN UINTN Count
33 # );
34 #------------------------------------------------------------------------------
35 ASM_PFX(InternalMemCopyMem):
36 push %esi
37 push %edi
38 movl 16(%esp), %esi # esi <- Source
39 movl 12(%esp), %edi # edi <- Destination
40 movl 20(%esp), %edx # edx <- Count
41 cmpl %esi, %edi
42 je L_CopyDone
43 cmpl $0, %edx
44 je L_CopyDone
45 leal -1(%esi, %edx), %eax # eax <- End of Source
46 cmpl %edi, %esi
47 jae L_CopyBytes
48 cmpl %edi, %eax
49 jb L_CopyBytes # Copy backward if overlapped
50 movl %eax, %esi # esi <- End of Source
51 leal -1(%edi, %edx), %edi # edi <- End of Destination
52 std
53 L_CopyBytes:
54 movl %edx, %ecx
55 rep
56 movsb # Copy bytes backward
57 cld
58 L_CopyDone:
59 movl 12(%esp), %eax # eax <- Destination as return value
60 pop %edi
61 pop %esi
62 ret