xref: /netbsd-src/external/lgpl3/gmp/dist/mpn/pa32/hppa1_1/sqr_diagonal.asm (revision f89f6560d453f5e37386cc7938c072d2f528b9fa)
1dnl  HP-PA 1.1 32-bit mpn_sqr_diagonal.
2
3dnl  Copyright 2001, 2002 Free Software Foundation, Inc.
4
5dnl  This file is part of the GNU MP Library.
6
7dnl  The GNU MP Library is free software; you can redistribute it and/or modify
8dnl  it under the terms of the GNU Lesser General Public License as published
9dnl  by the Free Software Foundation; either version 3 of the License, or (at
10dnl  your option) any later version.
11
12dnl  The GNU MP Library is distributed in the hope that it will be useful, but
13dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15dnl  License for more details.
16
17dnl  You should have received a copy of the GNU Lesser General Public License
18dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
19
20include(`../config.m4')
21
22C This code runs at 6 cycles/limb on the PA7100 and 2.5 cycles/limb on PA8x00.
23C 2-way unrolling wouldn't help the PA7100; it could however bring times down
24C to 2.0 cycles/limb for the PA8x00.
25
26C INPUT PARAMETERS
27define(`rp',`%r26')
28define(`up',`%r25')
29define(`n',`%r24')
30
31ASM_START()
32PROLOGUE(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
38LDEF(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
45LDEF(exit)
46	fstws		%fr5r,-4(rp)
47	bv		0(%r2)
48	fstws		%fr5l,0(rp)
49EPILOGUE(mpn_sqr_diagonal)
50