2 Copyright (C) 2000-2005 Axis Communications.
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
9 1. Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
12 2. Neither the name of Axis Communications nor the names of its
13 contributors may be used to endorse or promote products derived
14 from this software without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS
17 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS
20 COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
26 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 POSSIBILITY OF SUCH DAMAGE. */
29 /* FIXME: This file should really only be used for reference, as the
30 result is somewhat depending on gcc generating what we expect rather
31 than what we describe. An assembly file should be used instead.
33 Even worse, we base it on memcpy, on the assumption that overlapping
34 moves are rare, and we will do no worse than the generic memmove. */
38 /* Break even between movem and move16 is really at 38.7 * 2, but
39 modulo 44, so up to the next multiple of 44, we use ordinary code. */
40 #define MEMMOVE_BY_BLOCK_THRESHOLD (44 * 2)
42 /* No name ambiguities in this file. */
43 __asm__ (".syntax no_register_prefix");
46 memmove(void *pdst
, const void *psrc
, size_t pn
)
48 /* Now we want the parameters put in special registers.
49 Make sure the compiler is able to make something useful of this.
50 As it is now: r10 -> r13; r11 -> r11 (nop); r12 -> r12 (nop).
52 If gcc was allright, it really would need no temporaries, and no
53 stack space to save stuff on. */
55 register void *return_dst
__asm__ ("r10") = pdst
;
56 register unsigned char *dst
__asm__ ("r13") = pdst
;
57 register unsigned const char *src
__asm__ ("r11") = psrc
;
58 register int n
__asm__ ("r12") = pn
;
60 /* Check and handle overlap. */
61 if (src
< dst
&& dst
< src
+ n
)
63 /* Destructive overlap. We could optimize this, but we don't (for
74 /* Whew, no overlap. Proceed as with memcpy. We could call it instead
75 of having a copy here. That would spoil some of the optimization, so
76 we take the trouble with having two copies. */
78 /* When src is aligned but not dst, this makes a few extra needless
79 cycles. I believe it would take as many to check that the
80 re-alignment was unnecessary. */
81 if (((unsigned long) dst
& 3) != 0
82 /* Don't align if we wouldn't copy more than a few bytes; so we
83 don't have to check further for overflows. */
86 if ((unsigned long) dst
& 1)
94 if ((unsigned long) dst
& 2)
97 *(short *) dst
= *(short *) src
;
103 /* Decide which copying method to use. */
104 if (n
>= MEMMOVE_BY_BLOCK_THRESHOLD
)
106 /* It is not optimal to tell the compiler about clobbering any
107 registers; that will move the saving/restoring of those registers
108 to the function prologue/epilogue, and make non-movem sizes
112 ;; GCC does promise correct register allocations, but let's \n\
113 ;; make sure it keeps its promises. \n\
114 .ifnc %0-%1-%2,$r13-$r11-$r12 \n\
115 .error \"GCC reg alloc bug: %0-%1-%4 != $r13-$r12-$r11\" \n\
118 ;; Save the registers we'll use in the movem process \n\
123 ;; Now we've got this: \n\
128 ;; Update n for the first loop. \n\
132 #ifdef __arch_common_v10_v32
133 /* Cater to branch offset difference between v32 and v10. We
134 assume the branch below has an 8-bit offset. */
137 " movem [r11+],r10 \n\
142 ;; Compensate for last loop underflowing n. \n\
145 ;; Restore registers from stack. \n\
149 : "=r" (dst
), "=r" (src
), "=r" (n
)
152 : "0" (dst
), "1" (src
), "2" (n
));
157 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
158 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
159 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
160 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
175 *(short *) dst
= *(short *) src
;
179 *(short *) dst
= *(short *) src
; dst
+= 2; src
+= 2;
184 *(long *) dst
= *(long *) src
;
188 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
193 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
194 *(short *) dst
= *(short *) src
;
198 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
199 *(short *) dst
= *(short *) src
; dst
+= 2; src
+= 2;
204 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
205 *(long *) dst
= *(long *) src
;
209 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
210 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
215 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
216 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
217 *(short *) dst
= *(short *) src
;
221 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
222 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
223 *(short *) dst
= *(short *) src
; dst
+= 2; src
+= 2;
228 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
229 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
230 *(long *) dst
= *(long *) src
;
234 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
235 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
236 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
241 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
242 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
243 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
244 *(short *) dst
= *(short *) src
;
248 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
249 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
250 *(long *) dst
= *(long *) src
; dst
+= 4; src
+= 4;
251 *(short *) dst
= *(short *) src
; dst
+= 2; src
+= 2;