1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
dnl S/390-64 mpn_mul_1 and mpn_mul_1c.
dnl Based on C code contributed by Marius Hillenbrand.
dnl Copyright 2023 Free Software Foundation, Inc.
dnl This file is part of the GNU MP Library.
dnl
dnl The GNU MP Library is free software; you can redistribute it and/or modify
dnl it under the terms of either:
dnl
dnl * the GNU Lesser General Public License as published by the Free
dnl Software Foundation; either version 3 of the License, or (at your
dnl option) any later version.
dnl
dnl or
dnl
dnl * the GNU General Public License as published by the Free Software
dnl Foundation; either version 2 of the License, or (at your option) any
dnl later version.
dnl
dnl or both in parallel, as here.
dnl
dnl The GNU MP Library is distributed in the hope that it will be useful, but
dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
dnl for more details.
dnl
dnl You should have received copies of the GNU General Public License and the
dnl GNU Lesser General Public License along with the GNU MP Library. If not,
dnl see https://www.gnu.org/licenses/.
include(`../config.m4')
dnl TODO
dnl * Schedule vlvgp away from mlgr; that saves 20% of the run time.
dnl * Perhaps use vp[0]/vp[1] in innerloop instead preloading v0/v1.
C cycles/limb
C z900 -
C z990 -
C z9 -
C z10 -
C z196 -
C z12 ?
C z13 ?
C z14 ?
C z15 2.25
define(`rp', `%r2')
define(`ap', `%r3')
define(`an', `%r4')
define(`b0', `%r5')
define(`cy', `%r6')
define(`idx', `%r4')
ASM_START()
PROLOGUE(mpn_mul_1c)
stmg %r6, %r13, 48(%r15)
j L(ent)
EPILOGUE()
PROLOGUE(mpn_mul_1)
stmg %r6, %r13, 48(%r15)
lghi %r6, 0
L(ent): vzero %v2
srlg %r11, an, 2
tmll an, 1
je L(bx0)
L(bx1): tmll an, 2
jne L(b11)
L(b01): lghi idx, -24
lg %r13, 0(ap)
mlgr %r12, b0
algr %r13, %r6
lghi %r6, 0
alcgr %r12, %r6
stg %r13, 0(rp)
cgije %r11, 0, L(1)
j L(cj0)
L(b11): lghi idx, -8
lg %r9, 0(ap)
mlgr %r8, b0
algr %r9, %r6
lghi %r6, 0
alcgr %r8, %r6
stg %r9, 0(rp)
j L(cj1)
L(bx0): tmll an, 2
jne L(b10)
L(b00): lghi idx, -32
lgr %r12, %r6
L(cj0): lg %r1, 32(idx, ap)
lg %r9, 40(idx, ap)
mlgr %r0, b0
mlgr %r8, b0
vlvgp %v6, %r0, %r1
vlvgp %v7, %r9, %r12
j L(mid)
L(b10): lghi idx, -16
lgr %r8, %r6
L(cj1): lg %r7, 16(idx, ap)
lg %r13, 24(idx, ap)
mlgr %r6, b0
mlgr %r12, b0
vlvgp %v6, %r6, %r7
vlvgp %v7, %r13, %r8
cgije %r11, 0, L(end)
L(top): lg %r1, 32(idx, ap)
lg %r9, 40(idx, ap)
mlgr %r0, b0
mlgr %r8, b0
vacq %v3, %v6, %v7, %v2
vacccq %v2, %v6, %v7, %v2
vpdi %v3, %v3, %v3, 4
vst %v3, 16(idx, rp), 3
vlvgp %v6, %r0, %r1
vlvgp %v7, %r9, %r12
L(mid): lg %r7, 48(idx, ap)
lg %r13, 56(idx, ap)
mlgr %r6, b0
mlgr %r12, b0
vacq %v1, %v6, %v7, %v2
vacccq %v2, %v6, %v7, %v2
vpdi %v1, %v1, %v1, 4
vst %v1, 32(idx, rp), 3
vlvgp %v6, %r6, %r7
vlvgp %v7, %r13, %r8
la idx, 32(idx)
brctg %r11, L(top)
L(end): vacq %v3, %v6, %v7, %v2
vacccq %v2, %v6, %v7, %v2
vpdi %v3, %v3, %v3, 4
vst %v3, 16(idx, rp), 3
L(1): vlgvg %r2, %v2, 1
agr %r2, %r12
lmg %r6, %r13, 48(%r15)
br %r14
EPILOGUE()
|