~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/gmp/mpn/arm/copyd.asm

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2007-04-09 11:51:51 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070409115151-ql8cr0kalzx1jmla
Tags: 0.9i-20070324-2
Upload to unstable. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl  ARM mpn_copyd.
 
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 2.1 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; see the file COPYING.LIB.  If not, write
 
19
dnl  to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
dnl  Boston, MA 02110-1301, USA.
 
21
 
 
22
include(`../config.m4')
 
23
 
 
24
C This runs at 3 cycles/limb in the StrongARM.
 
25
 
 
26
define(`rp',`r0')
 
27
define(`up',`r1')
 
28
define(`n',`r2')
 
29
 
 
30
 
 
31
ASM_START()
 
32
PROLOGUE(mpn_copyd)
 
33
        mov     r12, n, lsl #2
 
34
        sub     r12, r12, #4
 
35
        add     rp, rp, r12                     C make rp point at last limb
 
36
        add     up, up, r12                     C make up point at last limb
 
37
 
 
38
        tst     n, #1
 
39
        beq     L(skip1)
 
40
        ldr     r3, [up], #-4
 
41
        str     r3, [rp], #-4
 
42
L(skip1):
 
43
        tst     n, #2
 
44
        beq     L(skip2)
 
45
        ldmda   up!, { r3, r12 }                C load 2 limbs
 
46
        stmda   rp!, { r3, r12 }                C store 2 limbs
 
47
L(skip2):
 
48
        bics    n, n, #3
 
49
        beq     L(return)
 
50
        stmfd   sp!, { r7, r8, r9 }             C save regs on stack
 
51
L(loop):
 
52
        ldmda   up!, { r3, r8, r9, r12 }        C load 4 limbs
 
53
        ldr     r7, [rp, #-12]                  C cache allocate
 
54
        subs    n, n, #4
 
55
        stmda   rp!, { r3, r8, r9, r12 }        C store 4 limbs
 
56
        bne     L(loop)
 
57
        ldmfd   sp!, { r7, r8, r9 }             C restore regs from stack
 
58
L(return):
 
59
        mov     pc, lr
 
60
EPILOGUE(mpn_copyd)