4 * Copyright (C) 2008 The Android Open Source Project
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
27 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * Optimized memcpy() for ARM.
35 * note that memcpy() always returns the destination pointer,
36 * so we have to preserve R0.
40 * This file has been modified from the original for use in musl libc.
41 * The main changes are: addition of .type memcpy,%function to make the
42 * code safely callable from thumb mode, adjusting the return
43 * instructions to be compatible with pre-thumb ARM cpus, and removal
44 * of prefetch code that is not compatible with older cpus.
50 .type memcpy,%function
52 /* The stack must always be 64-bits aligned to be compliant with the
53 * ARM ABI. Since we have to save R0, we might as well save R4
54 * which we can use for better pipelining of the reads below
58 stmfd sp!, {r0, r4, lr}
59 /* Making room for r5-r11 which will be spilled later */
63 /* it simplifies things to take care of len<4 early */
65 blo copy_last_3_and_return
67 /* compute the offset to align the source
68 * offset = (4-(src&3))&3 = -src & 3
74 /* align source to 32 bits. We need to insert 2 instructions between
75 * a ldr[b|h] and str[b|h] because byte and half-word instructions
79 sub r2, r2, r3 /* we know that r3 <= r2 because r2 >= 4 */
89 /* see if src and dst are aligned together (congruent) */
94 /* Use post-incriment mode for stm to spill r5-r11 to reserved stack
95 * frame. Don't update sp.
99 /* align the destination to a cache-line */
102 beq congruent_aligned32
106 /* conditionnaly copies 0 to 7 words (length in r3) */
107 movs r12, r3, lsl #28
108 ldmcs r1!, {r4, r5, r6, r7} /* 16 bytes */
109 ldmmi r1!, {r8, r9} /* 8 bytes */
110 stmcs r0!, {r4, r5, r6, r7}
113 ldrne r10,[r1], #4 /* 4 bytes */
119 * here source is aligned to 32 bytes.
124 blo less_than_32_left
127 * We preload a cache-line up to 64 bytes ahead. On the 926, this will
128 * stall only until the requested world is fetched, but the linefill
129 * continues in the the background.
130 * While the linefill is going, we write our previous cache-line
131 * into the write-buffer (which should have some free space).
132 * When the linefill is done, the writebuffer will
133 * start dumping its content into memory
135 * While all this is going, we then load a full cache line into
136 * 8 registers, this cache line should be in the cache by now
137 * (or partly in the cache).
139 * This code should work well regardless of the source/dest alignment.
143 /* Align the preload register to a cache-line because the cpu does
144 * "critical word first" (the first word requested is loaded first).
149 1: ldmia r1!, { r4-r11 }
153 * NOTE: if r12 is more than 64 ahead of r1, the following ldrhi
154 * for ARM9 preload will not be safely guarded by the preceding subs.
155 * When it is safely guarded the only possibility to have SIGSEGV here
156 * is because the caller overstates the length.
158 @ ldrhi r3, [r12], #32 /* cheap ARM9 preload */
159 stmia r0!, { r4-r11 }
166 * less than 32 bytes left at this point (length in r2)
169 /* skip all this if there is nothing to do, which should
170 * be a common case (if not executed the code below takes
176 /* conditionnaly copies 0 to 31 bytes */
177 movs r12, r2, lsl #28
178 ldmcs r1!, {r4, r5, r6, r7} /* 16 bytes */
179 ldmmi r1!, {r8, r9} /* 8 bytes */
180 stmcs r0!, {r4, r5, r6, r7}
182 movs r12, r2, lsl #30
183 ldrcs r3, [r1], #4 /* 4 bytes */
184 ldrhmi r4, [r1], #2 /* 2 bytes */
188 ldrbne r3, [r1] /* last byte */
191 /* we're done! restore everything and return */
192 1: ldmfd sp!, {r5-r11}
193 ldmfd sp!, {r0, r4, lr}
196 /********************************************************************/
200 * here source is aligned to 4 bytes
201 * but destination is not.
203 * in the code below r2 is the number of bytes read
204 * (the number of bytes written is always smaller, because we have
205 * partial words in the shift queue)
208 blo copy_last_3_and_return
210 /* Use post-incriment mode for stm to spill r5-r11 to reserved stack
211 * frame. Don't update sp.
215 /* compute shifts needed to align src to dest */
217 and r5, r5, #3 /* r5 = # bytes in partial words */
218 mov r12, r5, lsl #3 /* r12 = right */
219 rsb lr, r12, #32 /* lr = left */
221 /* read the first word */
225 /* write a partial word (0 to 3 bytes), such that destination
226 * becomes aligned to 32 bits (r5 = nb of words to copy for alignment)
237 blo partial_word_tail
239 /* Align destination to 32 bytes (cache line boundary) */
244 orr r4, r3, r5, lsl lr
249 blo partial_word_tail
251 /* copy 32 bytes at a time */
253 blo less_than_thirtytwo
255 /* Use immediate mode for the shifts, because there is an extra cycle
256 * for register shifts, which could account for up to 50% of
268 ldmia r1!, { r5,r6,r7, r8,r9,r10,r11}
271 orr r3, r3, r4, lsl #16
273 orr r4, r4, r5, lsl #16
275 orr r5, r5, r6, lsl #16
277 orr r6, r6, r7, lsl #16
279 orr r7, r7, r8, lsl #16
281 orr r8, r8, r9, lsl #16
283 orr r9, r9, r10, lsl #16
284 mov r10, r10, lsr #16
285 orr r10, r10, r11, lsl #16
286 stmia r0!, {r3,r4,r5,r6, r7,r8,r9,r10}
289 b less_than_thirtytwo
294 ldmia r1!, { r5,r6,r7, r8,r9,r10,r11}
297 orr r3, r3, r4, lsl #24
299 orr r4, r4, r5, lsl #24
301 orr r5, r5, r6, lsl #24
303 orr r6, r6, r7, lsl #24
305 orr r7, r7, r8, lsl #24
307 orr r8, r8, r9, lsl #24
309 orr r9, r9, r10, lsl #24
311 orr r10, r10, r11, lsl #24
312 stmia r0!, {r3,r4,r5,r6, r7,r8,r9,r10}
315 b less_than_thirtytwo
320 ldmia r1!, { r5,r6,r7, r8,r9,r10,r11}
323 orr r3, r3, r4, lsl #8
325 orr r4, r4, r5, lsl #8
327 orr r5, r5, r6, lsl #8
329 orr r6, r6, r7, lsl #8
331 orr r7, r7, r8, lsl #8
333 orr r8, r8, r9, lsl #8
335 orr r9, r9, r10, lsl #8
336 mov r10, r10, lsr #24
337 orr r10, r10, r11, lsl #8
338 stmia r0!, {r3,r4,r5,r6, r7,r8,r9,r10}
343 /* copy the last 0 to 31 bytes of the source */
344 rsb r12, lr, #32 /* we corrupted r12, recompute it */
347 blo partial_word_tail
351 orr r4, r3, r5, lsl lr
358 /* we have a partial word in the input buffer */
359 movs r5, lr, lsl #(31-3)
366 /* Refill spilled registers from the stack. Don't update sp. */
369 copy_last_3_and_return:
370 movs r2, r2, lsl #31 /* copy remaining 0, 1, 2 or 3 bytes */
378 /* we're done! restore sp and spilled registers and return */
380 ldmfd sp!, {r0, r4, lr}