Tizen 2.1 base
[external/gmp.git] / mpn / arm / copyi.asm
1 dnl  ARM mpn_copyi.
2
3 dnl  Copyright 2003 Free Software Foundation, Inc.
4
5 dnl  This file is part of the GNU MP Library.
6
7 dnl  The GNU MP Library is free software; you can redistribute it and/or modify
8 dnl  it under the terms of the GNU Lesser General Public License as published
9 dnl  by the Free Software Foundation; either version 3 of the License, or (at
10 dnl  your option) any later version.
11
12 dnl  The GNU MP Library is distributed in the hope that it will be useful, but
13 dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15 dnl  License for more details.
16
17 dnl  You should have received a copy of the GNU Lesser General Public License
18 dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
19
20 include(`../config.m4')
21
22 C This runs at 3 cycles/limb in the StrongARM.
23
24 define(`rp',`r0')
25 define(`up',`r1')
26 define(`n',`r2')
27
28
29 ASM_START()
30 PROLOGUE(mpn_copyi)
31         tst     n, #1
32         beq     L(skip1)
33         ldr     r3, [up], #4
34         str     r3, [rp], #4
35 L(skip1):
36         tst     n, #2
37         beq     L(skip2)
38         ldmia   up!, { r3, r12 }                C load 2 limbs
39         stmia   rp!, { r3, r12 }                C store 2 limbs
40 L(skip2):
41         bics    n, n, #3
42         beq     L(return)
43         stmfd   sp!, { r7, r8, r9 }             C save regs on stack
44 L(loop):
45         ldmia   up!, { r3, r8, r9, r12 }        C load 4 limbs
46         ldr     r7, [rp, #12]                   C cache allocate
47         subs    n, n, #4
48         stmia   rp!, { r3, r8, r9, r12 }        C store 4 limbs
49         bne     L(loop)
50         ldmfd   sp!, { r7, r8, r9 }             C restore regs from stack
51 L(return):
52         mov     pc, lr
53 EPILOGUE(mpn_copyi)