]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Library/BaseMemoryLibVstm/Arm/CopyMem.S
Update remaining ARM .S files with INTERWORK_FUNC macro. This is the 2nd half of...
[mirror_edk2.git] / ArmPkg / Library / BaseMemoryLibVstm / Arm / CopyMem.S
CommitLineData
d39eb83c 1#------------------------------------------------------------------------------ \r
2#\r
3# CopyMem() worker for ARM\r
4#\r
5# This file started out as C code that did 64 bit moves if the buffer was\r
6# 32-bit aligned, else it does a byte copy. It also does a byte copy for\r
7# any trailing bytes. Update using VSTM/SLDM to do 128 byte copies.\r
8#\r
d6ebcab7
HT
9# Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>\r
10# This program and the accompanying materials\r
d39eb83c 11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14#\r
15# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
16# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
17#\r
18#------------------------------------------------------------------------------\r
19\r
20/**\r
21 Copy Length bytes from Source to Destination. Overlap is OK.\r
22\r
23 This implementation \r
24\r
25 @param Destination Target of copy\r
26 @param Source Place to copy from\r
27 @param Length Number of bytes to copy\r
28\r
29 @return Destination\r
30\r
31\r
32VOID *\r
33EFIAPI\r
34InternalMemCopyMem (\r
35 OUT VOID *DestinationBuffer,\r
36 IN CONST VOID *SourceBuffer,\r
37 IN UINTN Length\r
38 )\r
39**/\r
40.text\r
41.align 2\r
42.globl ASM_PFX(InternalMemCopyMem)\r
63ca7402 43INTERWORK_FUNC(InternalMemCopyMem)\r
d39eb83c 44\r
45ASM_PFX(InternalMemCopyMem):\r
46 stmfd sp!, {r4, r9, lr}\r
47 tst r0, #3\r
48 mov r4, r0\r
49 mov r9, r0\r
50 mov ip, r2\r
51 mov lr, r1\r
52 movne r0, #0\r
53 bne L4\r
54 tst r1, #3\r
55 movne r3, #0\r
56 moveq r3, #1\r
57 cmp r2, #127\r
58 movls r0, #0\r
59 andhi r0, r3, #1\r
60L4:\r
61 cmp r4, r1\r
62 bcc L26\r
63 bls L7\r
64 rsb r3, r1, r4\r
65 cmp ip, r3\r
66 bcc L26\r
67 cmp ip, #0\r
68 beq L7\r
69 add r9, r4, ip\r
70 add lr, ip, r1\r
71 b L16\r
72L29:\r
73 sub ip, ip, #8\r
74 cmp ip, #7\r
75 ldrd r2, [lr, #-8]!\r
76 movls r0, #0\r
77 cmp ip, #0\r
78 strd r2, [r9, #-8]!\r
79 beq L7\r
80L16:\r
81 cmp r0, #0\r
82 bne L29\r
83 sub r3, lr, #1\r
84 sub ip, ip, #1\r
85 ldrb r3, [r3, #0] \r
86 sub r2, r9, #1\r
87 cmp ip, #0\r
88 sub r9, r9, #1\r
89 sub lr, lr, #1\r
90 strb r3, [r2, #0]\r
91 bne L16\r
92 b L7\r
93L11:\r
94 ldrb r3, [lr], #1 \r
95 sub ip, ip, #1\r
96 strb r3, [r9], #1\r
97L26:\r
98 cmp ip, #0\r
99 beq L7\r
100L30:\r
101 cmp r0, #0\r
102 beq L11\r
103 sub ip, ip, #128 // 32\r
104 cmp ip, #127 // 31\r
105 vldm lr!, {d0-d15}\r
106 movls r0, #0\r
107 cmp ip, #0\r
108 vstm r9!, {d0-d15}\r
109 bne L30\r
110L7:\r
111 dsb\r
112 mov r0, r4\r
113 ldmfd sp!, {r4, r9, pc}\r
114\r
115 \r