]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/hppa/hppa1.1/addmul_1.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / hppa / hppa1.1 / addmul_1.S
CommitLineData
acc97172
UD
1;! HP-PA-1.1 __mpn_addmul_1 -- Multiply a limb vector with a limb and
2;! add the result to a second limb vector.
7def3d92 3
04277e02 4;! Copyright (C) 1992-2019 Free Software Foundation, Inc.
7def3d92 5
acc97172 6;! This file is part of the GNU MP Library.
7def3d92 7
acc97172 8;! The GNU MP Library is free software; you can redistribute it and/or modify
f01ec467
AJ
9;! it under the terms of the GNU Lesser General Public License as published by
10;! the Free Software Foundation; either version 2.1 of the License, or (at your
acc97172 11;! option) any later version.
7def3d92 12
acc97172
UD
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
f01ec467 15;! or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
acc97172 16;! License for more details.
7def3d92 17
f01ec467 18;! You should have received a copy of the GNU Lesser General Public License
ab84e3ff
PE
19;! along with the GNU MP Library. If not, see
20;! <http://www.gnu.org/licenses/>.
7def3d92
RM
21
22
acc97172
UD
23;! INPUT PARAMETERS
24;! res_ptr r26
25;! s1_ptr r25
26;! size r24
27;! s2_limb r23
7def3d92 28
acc97172
UD
29;! This runs at 11 cycles/limb on a PA7000. With the used instructions, it
30;! can not become faster due to data cache contention after a store. On the
31;! PA7100 it runs at 10 cycles/limb, and that can not be improved either,
32;! since only the xmpyu does not need the integer pipeline, so the only
33;! dual-issue we will get are addc+xmpyu. Unrolling could gain a cycle/limb
34;! on the PA7100.
7def3d92 35
acc97172 36;! There are some ideas described in mul_1.s that applies to this code too.
7def3d92 37
acc97172 38 .text
7def3d92 39 .export __mpn_addmul_1
5556231d 40__mpn_addmul_1:
7def3d92
RM
41 .proc
42 .callinfo frame=64,no_calls
43 .entry
44
45 ldo 64(%r30),%r30
46 fldws,ma 4(%r25),%fr5
acc97172 47 stw %r23,-16(%r30) ;! move s2_limb ...
7def3d92 48 addib,= -1,%r24,L$just_one_limb
acc97172
UD
49 fldws -16(%r30),%fr4 ;! ... into fr4
50 add %r0,%r0,%r0 ;! clear carry
7def3d92
RM
51 xmpyu %fr4,%fr5,%fr6
52 fldws,ma 4(%r25),%fr7
53 fstds %fr6,-16(%r30)
54 xmpyu %fr4,%fr7,%fr8
acc97172 55 ldw -12(%r30),%r20 ;! least significant limb in product
7def3d92
RM
56 ldw -16(%r30),%r28
57
58 fstds %fr8,-16(%r30)
59 addib,= -1,%r24,L$end
60 ldw -12(%r30),%r1
61
acc97172 62;! Main loop
5556231d 63L$loop:
acc97172 64 ldws 0(%r26),%r29
7def3d92 65 fldws,ma 4(%r25),%fr5
acc97172
UD
66 add %r29,%r20,%r20
67 stws,ma %r20,4(%r26)
68 addc %r28,%r1,%r20
7def3d92
RM
69 xmpyu %fr4,%fr5,%fr6
70 ldw -16(%r30),%r28
71 fstds %fr6,-16(%r30)
72 addc %r0,%r28,%r28
73 addib,<> -1,%r24,L$loop
74 ldw -12(%r30),%r1
75
5556231d 76L$end:
acc97172
UD
77 ldw 0(%r26),%r29
78 add %r29,%r20,%r20
79 stws,ma %r20,4(%r26)
80 addc %r28,%r1,%r20
7def3d92
RM
81 ldw -16(%r30),%r28
82 ldws 0(%r26),%r29
83 addc %r0,%r28,%r28
acc97172
UD
84 add %r29,%r20,%r20
85 stws,ma %r20,4(%r26)
7def3d92
RM
86 addc %r0,%r28,%r28
87 bv 0(%r2)
acc97172 88 ldo -64(%r30),%r30
7def3d92 89
5556231d 90L$just_one_limb:
7def3d92
RM
91 xmpyu %fr4,%fr5,%fr6
92 ldw 0(%r26),%r29
93 fstds %fr6,-16(%r30)
94 ldw -12(%r30),%r1
95 ldw -16(%r30),%r28
acc97172
UD
96 add %r29,%r1,%r20
97 stw %r20,0(%r26)
7def3d92
RM
98 addc %r0,%r28,%r28
99 bv 0(%r2)
100 ldo -64(%r30),%r30
101
102 .exit
103 .procend