Upload Tizen:Base source
[external/gmp.git] / mpn / pa32 / hppa1_1 / sqr_diagonal.asm
1 dnl  HP-PA 1.1 32-bit mpn_sqr_diagonal.
2
3 dnl  Copyright 2001, 2002 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 code runs at 6 cycles/limb on the PA7100 and 2.5 cycles/limb on PA8x00.
23 C 2-way unrolling wouldn't help the PA7100; it could however bring times down
24 C to 2.0 cycles/limb for the PA8x00.
25
26 C INPUT PARAMETERS
27 define(`rp',`%r26')
28 define(`up',`%r25')
29 define(`n',`%r24')
30
31 ASM_START()
32 PROLOGUE(mpn_sqr_diagonal)
33         ldo             4(rp),rp
34         fldws,ma        4(up),%fr4r
35         addib,=         -1,n,L(exit)
36         xmpyu           %fr4r,%fr4r,%fr5
37
38 LDEF(loop)
39         fldws,ma        4(up),%fr4r
40         fstws           %fr5r,-4(rp)
41         fstws,ma        %fr5l,8(rp)
42         addib,<>        -1,n,L(loop)
43         xmpyu           %fr4r,%fr4r,%fr5
44
45 LDEF(exit)
46         fstws           %fr5r,-4(rp)
47         bv              0(%r2)
48         fstws           %fr5l,0(rp)
49 EPILOGUE(mpn_sqr_diagonal)