Renamed remotely
[edk2.git] / EdkCompatibilityPkg / Foundation / Library / EfiCommonLib / x64 / EfiCopyMemRep1.asm
blobb96d861477559fb1f1a040cee61711e2b58e01cd
1 ;------------------------------------------------------------------------------
3 ; Copyright (c) 2007, 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
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.
12 ; Module Name:
14 ; EfiCopyMemRep1.asm
16 ; Abstract:
18 ; CopyMem function
20 ; Notes:
22 ;------------------------------------------------------------------------------
24 .code
26 ;------------------------------------------------------------------------------
27 ; VOID
28 ; EfiCommonLibCopyMem (
29 ; OUT VOID *Destination,
30 ; IN VOID *Source,
31 ; IN UINTN Count
32 ; );
33 ;------------------------------------------------------------------------------
34 EfiCommonLibCopyMem PROC USES rsi rdi
35 cmp rdx, rcx ; if Source == Destination, do nothing
36 je @CopyMemDone
37 cmp r8, 0 ; if Count == 0, do nothing
38 je @CopyMemDone
39 mov rsi, rdx ; rsi <- Source
40 mov rdi, rcx ; rdi <- Destination
41 lea r9, [rsi + r8 - 1] ; r9 <- End of Source
42 cmp rsi, rdi
43 jae @CopyBytes
44 cmp r9, rdi
45 jb @CopyBytes ; Copy backward if overlapped
46 mov rsi, r9 ; rsi <- End of Source
47 lea rdi, [rdi + r8 - 1] ; esi <- End of Destination
48 std ; set direction flag
49 @CopyBytes:
50 mov rcx, r8
51 rep movsb ; Copy bytes backward
52 cld
53 @CopyMemDone:
54 ret
55 EfiCommonLibCopyMem ENDP
57 END