1 ; mc88100 __mpn_add
-- Add two limb vectors of the same length
> 0 and store
2 ; sum in
a third limb vector.
4 ; Copyright
(C
) 1992, 1994, 1995 Free Software Foundation
, Inc.
6 ; This file is part of the GNU MP Library.
8 ; The GNU MP Library is free software; you can redistribute it
and/or modify
9 ; it under the terms of the GNU Library General Public License as published by
10 ; the Free Software Foundation; either version
2 of the License
, or (at your
11 ; option
) any later version.
13 ; The GNU MP Library is distributed in the hope that it will
be useful
, but
14 ; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 ;
or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU Library General Public
16 ; License for more details.
18 ; You should have received
a copy of the GNU Library General Public License
19 ; along with the GNU MP Library; see the file COPYING.LIB. If
not, write to
20 ; the Free Software Foundation
, Inc.
, 59 Temple Place
- Suite
330, Boston
,
30 ; This code has been optimized to run one instruction per clock
, avoiding
31 ; load stalls
and writeback contention. As
a result
, the instruction
32 ; order is
not always natural.
34 ; The speed is about
4.6 clocks
/limb
+ 18 clocks
/limb-vector on an
88100,
35 ; but on the
88110, it seems to run much slower
, 6.6 clocks
/limb.
41 ld r6,r3,0 ; read first limb from s1_ptr
43 ld r7,r4,0 ; read first limb from s2_ptr
45 subu.co
r5,r0,r5 ;
(clear carry as side effect
)
50 or.u
r12,r12,hi16
(Lbase
)
51 addu
r12,r12,r5 ;
r12 is address for entering in loop
53 extu
r5,r5,2 ; divide by
4
54 subu
r2,r2,r5 ; adjust res_ptr
55 subu
r3,r3,r5 ; adjust s1_ptr
56 subu
r4,r4,r5 ; adjust s2_ptr
69 Lzero
: subu
r10,r10,1 ;
add 0 + 8r limbs
(adj loop cnt
)
74 ld r6,r3,8 ;
add 7 + 8r limbs
78 ld r8,r3,12 ;
add 6 + 8r limbs
82 ld r6,r3,16 ;
add 5 + 8r limbs
86 ld r8,r3,20 ;
add 4 + 8r limbs
90 ld r6,r3,24 ;
add 3 + 8r limbs
94 ld r8,r3,28 ;
add 2 + 8r limbs
98 bcnd.n ne0
,r10,Loop ;
add 1 + 8r limbs
101 st r8,r2,28 ; store most significant limb
104 addu.ci
r2,r0,r0 ; return carry-out from most sign. limb