2000-10-15 03:17:46 +00:00
|
|
|
;! HP-PA __mpn_add_n -- Add two limb vectors of the same length > 0 and store
|
|
|
|
;! sum in a third limb vector.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2015-01-02 16:28:19 +00:00
|
|
|
;! Copyright (C) 1992-2015 Free Software Foundation, Inc.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
;! This file is part of the GNU MP Library.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
;! The GNU MP Library is free software; you can redistribute it and/or modify
|
2001-07-07 10:13:33 +00:00
|
|
|
;! it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
;! the Free Software Foundation; either version 2.1 of the License, or (at your
|
2000-10-15 03:17:46 +00:00
|
|
|
;! option) any later version.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
;! The GNU MP Library is distributed in the hope that it will be useful, but
|
|
|
|
;! WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
2001-07-07 10:13:33 +00:00
|
|
|
;! or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
2000-10-15 03:17:46 +00:00
|
|
|
;! License for more details.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2001-07-07 10:13:33 +00:00
|
|
|
;! You should have received a copy of the GNU Lesser General Public License
|
2012-03-09 23:56:38 +00:00
|
|
|
;! along with the GNU MP Library. If not, see
|
|
|
|
;! <http://www.gnu.org/licenses/>.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
;! INPUT PARAMETERS
|
|
|
|
;! res_ptr gr26
|
|
|
|
;! s1_ptr gr25
|
|
|
|
;! s2_ptr gr24
|
|
|
|
;! size gr23
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
;! One might want to unroll this as for other processors, but it turns
|
|
|
|
;! out that the data cache contention after a store makes such
|
|
|
|
;! unrolling useless. We can't come under 5 cycles/limb anyway.
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
.text
|
1995-10-16 01:18:40 +00:00
|
|
|
.export __mpn_add_n
|
2000-10-15 03:17:46 +00:00
|
|
|
__mpn_add_n:
|
1995-10-16 01:18:40 +00:00
|
|
|
.proc
|
|
|
|
.callinfo frame=0,no_calls
|
|
|
|
.entry
|
|
|
|
|
2005-07-08 06:10:13 +00:00
|
|
|
ldws,ma 4(%r25),%r21
|
|
|
|
ldws,ma 4(%r24),%r20
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2000-10-15 03:17:46 +00:00
|
|
|
addib,= -1,%r23,L$end ;! check for (SIZE == 1)
|
|
|
|
add %r21,%r20,%r28 ;! add first limbs ignoring cy
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2005-07-08 06:10:13 +00:00
|
|
|
L$loop: ldws,ma 4(%r25),%r21
|
|
|
|
ldws,ma 4(%r24),%r20
|
|
|
|
stws,ma %r28,4(%r26)
|
1995-10-16 01:18:40 +00:00
|
|
|
addib,<> -1,%r23,L$loop
|
2000-10-15 03:17:46 +00:00
|
|
|
addc %r21,%r20,%r28
|
1995-10-16 01:18:40 +00:00
|
|
|
|
2005-07-08 06:10:13 +00:00
|
|
|
L$end: stws %r28,0(%r26)
|
1995-10-16 01:18:40 +00:00
|
|
|
bv 0(%r2)
|
|
|
|
addc %r0,%r0,%r28
|
|
|
|
|
|
|
|
.exit
|
|
|
|
.procend
|