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
|
dnl S/390-64 mpn_mul_2
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')
C cycles/limb
C z900 -
C z990 -
C z9 -
C z10 ?
C z196 ?
C z12 ?
C z13 ?
C z14 ?
C z15 2.8
define(`rp', `%r2')
define(`up', `%r3')
define(`un', `%r4')
define(`vp', `%r5')
define(`idx', `%r12')
define(`v0', `%r11')
define(`v1', `%r5')
ASM_START()
PROLOGUE(mpn_mul_2)
stmg %r6, %r12, 48(%r15)
vzero %v27
vzero %v28
vzero %v29
vzero %v30
lghi %r10, 0
lg v0, 0(vp)
lg v1, 8(vp)
tmll un, 1
srlg un, un, 1
je L(evn)
L(odd): lg %r7, 0(up)
mlgr %r6, v0 C W2 W1
lg %r1, 0(up)
stg %r7, 0(rp)
lghi idx, 8
dnl clgije un, 0, L(end)
j L(top)
L(evn): lghi %r6, 0
lghi idx, 0
lghi %r1, 0
L(top): lg %r9, 0(idx, up)
mlgr %r0, v1 C W2 W1
mlgr %r8, v1 C W3 W2
vlvgp %v22, %r0, %r1 C W2 W1
vlvgp %v23, %r9, %r6 C W2 W1
lg %r1, 0(idx, up)
lg %r7, 8(idx, up)
mlgr %r0, v0 C W2 W1
mlgr %r6, v0 C W3 W2
vlvgp %v20, %r0, %r1 C W2 W1
vlvgp %v21, %r7, %r10 C W2 W1
vacq %v24, %v22, %v23, %v27 C
vacccq %v27, %v22, %v23, %v27 C carry critical path 1
vacq %v23, %v24, %v20, %v28 C
vacccq %v28, %v24, %v20, %v28 C carry critical path 2
vacq %v20, %v23, %v21, %v29 C
vacccq %v29, %v23, %v21, %v29 C carry critical path 3
vpdi %v20, %v20, %v20, 4
lg %r1, 8(idx, up)
vst %v20, 0(idx, rp), 3
lgr %r10, %r8
la idx, 16(idx)
brctg un, L(top)
L(end): mlgr %r0, v1
algr %r1, %r6
alcgr %r0, un
algr %r1, %r8
alcgr %r0, un
vag %v27, %v27, %v28
vag %v29, %v29, %v30
vag %v27, %v27, %v29
vlgvg %r10, %v27, 1
algr %r1, %r10
stg %r1, 0(idx, rp)
alcgr %r0, un
lgr %r2, %r0
lmg %r6, %r12, 48(%r15)
br %r14
EPILOGUE()
|