2 * linux/arch/arm/lib/memmove.S
4 * Author: Nicolas Pitre
5 * Created: Sep 28, 2005
6 * Copyright: (C) MontaVista Software Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
17 * Prototype: void *memmove(void *dest, const void *src, size_t n);
21 * If the memory regions don't overlap, we simply branch to memcpy which is
22 * normally a bit faster. Otherwise the copy is done going downwards. This
23 * is a transposition of the code from copy_template.S but with the copy
24 * occurring in the opposite direction.
33 stmfd sp!, {r0, r4, lr}
48 CALGN( ands ip, r0, #31 )
49 CALGN( sbcnes r4, ip, r2 ) @ C is always set here
52 CALGN( subs r2, r2, ip ) @ C is set here
53 CALGN( rsb ip, ip, #32 )
54 CALGN( add pc, r4, ip )
57 2: PLD( subs r2, r2, #96 )
63 3: PLD( pld [r1, #-128] )
64 4: ldmdb r1!, {r3, r4, r5, r6, r7, r8, ip, lr}
66 stmdb r0!, {r3, r4, r5, r6, r7, r8, ip, lr}
73 addne pc, pc, ip @ C is always clear here
97 7: ldmfd sp!, {r5 - r8}
99 8: movs r2, r2, lsl #31
100 ldrneb r3, [r1, #-1]!
101 ldrcsb r4, [r1, #-1]!
103 strneb r3, [r0, #-1]!
104 strcsb r4, [r0, #-1]!
106 ldmfd sp!, {r0, r4, pc}
109 ldrgtb r3, [r1, #-1]!
110 ldrgeb r4, [r1, #-1]!
112 strgtb r3, [r0, #-1]!
113 strgeb r4, [r0, #-1]!
127 .macro backward_copy_shift push pull
132 CALGN( ands ip, r0, #31 )
133 CALGN( sbcnes r4, ip, r2 ) @ C is always set here
134 CALGN( subcc r2, r2, ip )
137 11: stmfd sp!, {r5 - r9}
140 PLD( subs r2, r2, #96 )
141 PLD( pld [r1, #-32] )
143 PLD( pld [r1, #-64] )
144 PLD( pld [r1, #-96] )
146 12: PLD( pld [r1, #-128] )
147 13: ldmdb r1!, {r7, r8, r9, ip}
148 mov lr, r3, push #\push
150 ldmdb r1!, {r3, r4, r5, r6}
151 orr lr, lr, ip, pull #\pull
152 mov ip, ip, push #\push
153 orr ip, ip, r9, pull #\pull
154 mov r9, r9, push #\push
155 orr r9, r9, r8, pull #\pull
156 mov r8, r8, push #\push
157 orr r8, r8, r7, pull #\pull
158 mov r7, r7, push #\push
159 orr r7, r7, r6, pull #\pull
160 mov r6, r6, push #\push
161 orr r6, r6, r5, pull #\pull
162 mov r5, r5, push #\push
163 orr r5, r5, r4, pull #\pull
164 mov r4, r4, push #\push
165 orr r4, r4, r3, pull #\pull
166 stmdb r0!, {r4 - r9, ip, lr}
176 15: mov lr, r3, push #\push
179 orr lr, lr, r3, pull #\pull
185 16: add r1, r1, #(\pull / 8)
191 backward_copy_shift push=8 pull=24
193 17: backward_copy_shift push=16 pull=16
195 18: backward_copy_shift push=24 pull=8