Annotation of OpenXM_contrib/gmp/mpn/sparc32/mul_1.asm, Revision 1.1.1.1
1.1 maekawa 1: dnl SPARC mpn_mul_1 -- Multiply a limb vector with a limb and store
2: dnl the result in a second limb vector.
3:
4: dnl Copyright (C) 1992, 1993, 1994, 2000 Free Software Foundation, Inc.
5:
6: dnl This file is part of the GNU MP Library.
7:
8: dnl The GNU MP Library is free software; you can redistribute it and/or modify
9: dnl it under the terms of the GNU Lesser General Public License as published
10: dnl by the Free Software Foundation; either version 2.1 of the License, or (at
11: dnl your option) any later version.
12:
13: dnl The GNU MP Library is distributed in the hope that it will be useful, but
14: dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15: dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16: dnl License for more details.
17:
18: dnl You should have received a copy of the GNU Lesser General Public License
19: dnl along with the GNU MP Library; see the file COPYING.LIB. If not, write to
20: dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21: dnl MA 02111-1307, USA.
22:
23:
24: include(`../config.m4')
25:
26: C INPUT PARAMETERS
27: C res_ptr o0
28: C s1_ptr o1
29: C size o2
30: C s2_limb o3
31:
32: ASM_START()
33: PROLOGUE(mpn_mul_1)
34: C Make S1_PTR and RES_PTR point at the end of their blocks
35: C and put (- 4 x SIZE) in index/loop counter.
36: sll %o2,2,%o2
37: add %o0,%o2,%o4 C RES_PTR in o4 since o0 is retval
38: add %o1,%o2,%o1
39: sub %g0,%o2,%o2
40:
41: cmp %o3,0xfff
42: bgu L(large)
43: nop
44:
45: ld [%o1+%o2],%o5
46: mov 0,%o0
47: b L(0)
48: add %o4,-4,%o4
49: L(loop0):
50: st %g1,[%o4+%o2]
51: L(0): wr %g0,%o3,%y
52: sra %o5,31,%g2
53: and %o3,%g2,%g2
54: andcc %g1,0,%g1
55: mulscc %g1,%o5,%g1
56: mulscc %g1,%o5,%g1
57: mulscc %g1,%o5,%g1
58: mulscc %g1,%o5,%g1
59: mulscc %g1,%o5,%g1
60: mulscc %g1,%o5,%g1
61: mulscc %g1,%o5,%g1
62: mulscc %g1,%o5,%g1
63: mulscc %g1,%o5,%g1
64: mulscc %g1,%o5,%g1
65: mulscc %g1,%o5,%g1
66: mulscc %g1,%o5,%g1
67: mulscc %g1,0,%g1
68: sra %g1,20,%g4
69: sll %g1,12,%g1
70: rd %y,%g3
71: srl %g3,20,%g3
72: or %g1,%g3,%g1
73:
74: addcc %g1,%o0,%g1
75: addx %g2,%g4,%o0 C add sign-compensation and cy to hi limb
76: addcc %o2,4,%o2 C loop counter
77: bne,a L(loop0)
78: ld [%o1+%o2],%o5
79:
80: retl
81: st %g1,[%o4+%o2]
82:
83:
84: L(large):
85: ld [%o1+%o2],%o5
86: mov 0,%o0
87: sra %o3,31,%g4 C g4 = mask of ones iff S2_LIMB < 0
88: b L(1)
89: add %o4,-4,%o4
90: L(loop):
91: st %g3,[%o4+%o2]
92: L(1): wr %g0,%o5,%y
93: and %o5,%g4,%g2 C g2 = S1_LIMB iff S2_LIMB < 0, else 0
94: andcc %g0,%g0,%g1
95: mulscc %g1,%o3,%g1
96: mulscc %g1,%o3,%g1
97: mulscc %g1,%o3,%g1
98: mulscc %g1,%o3,%g1
99: mulscc %g1,%o3,%g1
100: mulscc %g1,%o3,%g1
101: mulscc %g1,%o3,%g1
102: mulscc %g1,%o3,%g1
103: mulscc %g1,%o3,%g1
104: mulscc %g1,%o3,%g1
105: mulscc %g1,%o3,%g1
106: mulscc %g1,%o3,%g1
107: mulscc %g1,%o3,%g1
108: mulscc %g1,%o3,%g1
109: mulscc %g1,%o3,%g1
110: mulscc %g1,%o3,%g1
111: mulscc %g1,%o3,%g1
112: mulscc %g1,%o3,%g1
113: mulscc %g1,%o3,%g1
114: mulscc %g1,%o3,%g1
115: mulscc %g1,%o3,%g1
116: mulscc %g1,%o3,%g1
117: mulscc %g1,%o3,%g1
118: mulscc %g1,%o3,%g1
119: mulscc %g1,%o3,%g1
120: mulscc %g1,%o3,%g1
121: mulscc %g1,%o3,%g1
122: mulscc %g1,%o3,%g1
123: mulscc %g1,%o3,%g1
124: mulscc %g1,%o3,%g1
125: mulscc %g1,%o3,%g1
126: mulscc %g1,%o3,%g1
127: mulscc %g1,%g0,%g1
128: rd %y,%g3
129: addcc %g3,%o0,%g3
130: addx %g2,%g1,%o0 C add sign-compensation and cy to hi limb
131: addcc %o2,4,%o2 C loop counter
132: bne,a L(loop)
133: ld [%o1+%o2],%o5
134:
135: retl
136: st %g3,[%o4+%o2]
137: EPILOGUE(mpn_mul_1)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>