Blame mpn/pa32/sub_n.asm

Packit 5c3484
dnl  HP-PA mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
Packit 5c3484
dnl  store difference in a third limb vector.
Packit 5c3484
Packit 5c3484
dnl  Copyright 1992, 1994, 2000-2002 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
dnl  This file is part of the GNU MP Library.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
dnl  it under the terms of either:
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU Lesser General Public License as published by the Free
Packit 5c3484
dnl      Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
dnl      option) any later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU General Public License as published by the Free Software
Packit 5c3484
dnl      Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
dnl      later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or both in parallel, as here.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
dnl  for more details.
Packit 5c3484
dnl
Packit 5c3484
dnl  You should have received copies of the GNU General Public License and the
Packit 5c3484
dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
dnl  see https://www.gnu.org/licenses/.
Packit 5c3484
Packit 5c3484
include(`../config.m4')
Packit 5c3484
Packit 5c3484
C INPUT PARAMETERS
Packit 5c3484
C res_ptr	gr26
Packit 5c3484
C s1_ptr	gr25
Packit 5c3484
C s2_ptr	gr24
Packit 5c3484
C size		gr23
Packit 5c3484
Packit 5c3484
C One might want to unroll this as for other processors, but it turns out that
Packit 5c3484
C the data cache contention after a store makes such unrolling useless.  We
Packit 5c3484
C can't come under 5 cycles/limb anyway.
Packit 5c3484
Packit 5c3484
ASM_START()
Packit 5c3484
PROLOGUE(mpn_sub_n)
Packit 5c3484
	ldws,ma		4(0,%r25),%r20
Packit 5c3484
	ldws,ma		4(0,%r24),%r19
Packit 5c3484
Packit 5c3484
	addib,=		-1,%r23,L(end)	C check for (SIZE == 1)
Packit 5c3484
	 sub		%r20,%r19,%r28	C subtract first limbs ignoring cy
Packit 5c3484
Packit 5c3484
LDEF(loop)
Packit 5c3484
	ldws,ma		4(0,%r25),%r20
Packit 5c3484
	ldws,ma		4(0,%r24),%r19
Packit 5c3484
	stws,ma		%r28,4(0,%r26)
Packit 5c3484
	addib,<>	-1,%r23,L(loop)
Packit 5c3484
	 subb		%r20,%r19,%r28
Packit 5c3484
Packit 5c3484
LDEF(end)
Packit 5c3484
	stws		%r28,0(0,%r26)
Packit 5c3484
	addc		%r0,%r0,%r28
Packit 5c3484
	bv		0(%r2)
Packit 5c3484
	 subi		1,%r28,%r28
Packit 5c3484
EPILOGUE()