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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
dnl AMD64 mpn_mul_basecase optimised for AMD Zen.
dnl Copyright 2012, 2013, 2017 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 TODO
C * Try 2x unrolling instead of current 4x, at least for mul_1. Else consider
C shallower sw pipelining of mul_1/addmul_1 loops, allowing 4 or 6 instead
C of 8 product registers.
C * Split up mul_1 into 4 loops in order to fall into the addmul_1 loops
C without branch tree.
C * Improve the overlapped software pipelining. The mulx in the osp block now
C suffers from write/read conflicts, in particular the 1 mod 4 case. Also,
C mul_1 could osp into addmul_1.
C * Let vn_param be vn to save a copy.
C * Re-allocate to benefit more from 32-bit encoding.
C * Poor performance for e.g. n = 12,16.
define(`rp', `%rdi')
define(`up', `%rsi')
define(`un_param', `%rdx')
define(`vp_param', `%rcx')
define(`vn_param', `%r8')
define(`un', `%r14')
define(`vp', `%rbp')
define(`v0', `%rdx')
define(`n', `%rcx')
define(`vn', `%r15')
ABI_SUPPORT(DOS64)
ABI_SUPPORT(STD64)
ASM_START()
TEXT
ALIGN(32)
PROLOGUE(mpn_mul_basecase)
FUNC_ENTRY(4)
IFDOS(` mov 56(%rsp), %r8d ')
cmp $2, un_param
ja L(gen)
mov (vp_param), %rdx
mulx( (up), %rax, %r9) C 0 1
je L(s2x)
L(s11): mov %rax, (rp)
mov %r9, 8(rp)
FUNC_EXIT()
ret
L(s2x): cmp $2, vn_param
mulx( 8,(up), %r8, %r10) C 1 2
je L(s22)
L(s21): add %r8, %r9
adc $0, %r10
mov %rax, (rp)
mov %r9, 8(rp)
mov %r10, 16(rp)
FUNC_EXIT()
ret
L(s22): add %r8, %r9 C 1
adc $0, %r10 C 2
mov 8(vp_param), %rdx
mov %rax, (rp)
mulx( (up), %r8, %r11) C 1 2
mulx( 8,(up), %rax, %rdx) C 2 3
add %r11, %rax C 2
adc $0, %rdx C 3
add %r8, %r9 C 1
adc %rax, %r10 C 2
adc $0, %rdx C 3
mov %r9, 8(rp)
mov %r10, 16(rp)
mov %rdx, 24(rp)
FUNC_EXIT()
ret
L(gen): push %r15
push %r14
push %r13
push %r12
push %rbp
push %rbx
mov un_param, un
mov vp_param, vp
mov vn_param, vn
mov (up), %r9
mov (vp), v0
lea (up,un,8), up
lea -32(rp,un,8), rp
neg un
mov un, n
test $1, R8(un)
jz L(mx0)
L(mx1): test $2, R8(un)
jz L(mb3)
L(mb1): mulx( %r9, %rbx, %rax)
inc n
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %r9, %r8
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x10 C mulx 16(up,un,8), %r11, %r10
jmp L(mlo1)
L(mb3): mulx( %r9, %r11, %r10)
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x08 C mulx 8(up,un,8), %r13, %r12
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %rbx, %rax
sub $-3, n
jz L(mwd3)
test R32(%rdx), R32(%rdx)
jmp L(mlo3)
L(mx0): test $2, R8(un)
jz L(mb0)
L(mb2): mulx( %r9, %r13, %r12)
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %rbx, %rax
lea 2(n), n
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %r9, %r8
jmp L(mlo2)
L(mb0): mulx( %r9, %r9, %r8)
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x08 C mulx 8(up,un,8), %r11, %r10
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x10 C mulx 16(up,un,8), %r13, %r12
jmp L(mlo0)
L(mtop):jrcxz L(mend)
adc %r8, %r11
mov %r9, (rp,n,8)
L(mlo3):.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r10, %r13
mov %r11, 8(rp,n,8)
L(mlo2):.byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
adc %r12, %rbx
mov %r13, 16(rp,n,8)
L(mlo1):.byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
adc %rax, %r9
mov %rbx, 24(rp,n,8)
L(mlo0):.byte 0xc4,0xe2,0xe3,0xf6,0x44,0xce,0x18 C mulx 24(up,n,8), %rbx, %rax
lea 4(n), n
jmp L(mtop)
L(mend):mov %r9, (rp)
adc %r8, %r11
L(mwd3):mov %r11, 8(rp)
adc %r10, %r13
mov %r13, 16(rp)
adc %r12, %rbx
adc $0, %rax
mov %rbx, 24(rp)
mov %rax, 32(rp)
add $8, vp
dec vn
jz L(end)
C The rest of the file are 4 osp loops around addmul_1
test $1, R8(un)
jnz L(0x1)
L(0x0): test $2, R8(un)
jnz L(oloop2_entry)
L(oloop0_entry):
C initial feed-in block
mov (vp), %rdx
add $8, vp
mov un, n
add $8, rp
.byte 0xc4,0x22,0xb3,0xf6,0x04,0xf6 C mulx (up,un,8), %r9, %r8
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x08 C mulx 8(up,un,8), %r11, %r10
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x10 C mulx 16(up,un,8), %r13, %r12
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x18 C mulx 24(up,un,8), %rbx, %rax
add %r8, %r11
jmp L(lo0)
L(oloop0):
C overlapped software pipelining block
mov (vp), %rdx C new
add $8, vp
add %r9, (rp) C prev
.byte 0xc4,0x22,0xb3,0xf6,0x04,0xf6 C mulx (%rsi,%r14,8),%r9,%r8
adc %r11, 8(rp) C prev
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x08 C mulx 0x8(%rsi,%r14,8),%r11,%r10
adc %r13, 16(rp) C prev
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x10 C mulx 0x10(%rsi,%r14,8),%r13,%r12
adc %rbx, 24(rp) C prev
mov un, n
adc $0, %rax C prev
mov %rax, 32(rp) C prev
add $8, rp
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x18 C mulx 0x18(%rsi,%r14,8),%rbx,%rax
add %r8, %r11 C new
jmp L(lo0)
ALIGN(16)
L(tp0): add %r9, (rp,n,8)
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r11, 8(rp,n,8)
.byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
adc %r13, 16(rp,n,8)
.byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
adc %rbx, 24(rp,n,8)
adc %rax, %r9
.byte 0xc4,0xe2,0xe3,0xf6,0x44,0xce,0x18 C mulx 24(up,n,8), %rbx, %rax
adc %r8, %r11
L(lo0): adc %r10, %r13
adc %r12, %rbx
adc $0, %rax
add $4, n
jnz L(tp0)
dec vn
jne L(oloop0)
jmp L(final_wind_down)
L(oloop2_entry):
mov (vp), %rdx
add $8, vp
lea 2(un), n
add $8, rp
.byte 0xc4,0x22,0x93,0xf6,0x24,0xf6 C mulx (up,un,8), %r13, %r12
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %rbx, %rax
add %r12, %rbx
adc $0, %rax
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %r9, %r8
.byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
add %r13, 16(rp,n,8)
jmp L(lo2)
L(oloop2):
mov (vp), %rdx
add $8, vp
add %r9, (rp)
adc %r11, 8(rp)
adc %r13, 16(rp)
.byte 0xc4,0x22,0x93,0xf6,0x24,0xf6 C mulx (up,un,8), %r13, %r12
adc %rbx, 24(rp)
adc $0, %rax
mov %rax, 32(rp)
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %rbx, %rax
lea 2(un), n
add $8, rp
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %r9, %r8
add %r12, %rbx
adc $0, %rax
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x18 C mulx 0x18(%rsi,%r14,8),%r11,%r10
add %r13, 16(rp,n,8)
jmp L(lo2)
ALIGN(16)
L(tp2): add %r9, (rp,n,8)
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r11, 8(rp,n,8)
.byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
adc %r13, 16(rp,n,8)
L(lo2): .byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
adc %rbx, 24(rp,n,8)
adc %rax, %r9
.byte 0xc4,0xe2,0xe3,0xf6,0x44,0xce,0x18 C mulx 24(up,n,8), %rbx, %rax
adc %r8, %r11
adc %r10, %r13
adc %r12, %rbx
adc $0, %rax
add $4, n
jnz L(tp2)
dec vn
jne L(oloop2)
jmp L(final_wind_down)
L(0x1): test $2, R8(un)
jz L(oloop3_entry)
L(oloop1_entry):
mov (vp), %rdx
add $8, vp
lea 1(un), n
add $8, rp
.byte 0xc4,0xa2,0xe3,0xf6,0x04,0xf6 C mulx (up,un,8), %rbx, %rax
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %r9, %r8
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x10 C mulx 16(up,un,8), %r11, %r10
.byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
add %rbx, 24(rp,n,8)
jmp L(lo1)
L(oloop1):
mov (vp), %rdx
add $8, vp
add %r9, (rp)
.byte 0xc4,0x22,0xb3,0xf6,0x44,0xf6,0x08 C mulx 8(up,un,8), %r9, %r8
adc %r11, 8(rp)
.byte 0xc4,0x22,0xa3,0xf6,0x54,0xf6,0x10 C mulx 16(up,un,8), %r11, %r10
adc %r13, 16(rp)
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x18 C mulx 0x18(%rsi,%r14,8),%r13,%r12
adc %rbx, 24(rp)
adc $0, %rax
mov %rax, 32(rp)
.byte 0xc4,0xa2,0xe3,0xf6,0x04,0xf6 C mulx (up,un,8), %rbx, %rax
lea 1(un), n
add $8, rp
add %rbx, 24(rp,n,8)
jmp L(lo1)
ALIGN(16)
L(tp1): add %r9, (rp,n,8)
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r11, 8(rp,n,8)
.byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
adc %r13, 16(rp,n,8)
.byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
adc %rbx, 24(rp,n,8)
L(lo1): adc %rax, %r9
.byte 0xc4,0xe2,0xe3,0xf6,0x44,0xce,0x18 C mulx 24(up,n,8), %rbx, %rax
adc %r8, %r11
adc %r10, %r13
adc %r12, %rbx
adc $0, %rax
add $4, n
jnz L(tp1)
dec vn
jne L(oloop1)
jmp L(final_wind_down)
L(oloop3_entry):
mov (vp), %rdx
add $8, vp
lea 3(un), n
add $8, rp
.byte 0xc4,0x22,0xa3,0xf6,0x14,0xf6 C mulx (up,un,8), %r11, %r10
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x08 C mulx 8(up,un,8), %r13, %r12
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %rbx, %rax
add %r10, %r13
adc %r12, %rbx
adc $0, %rax
test n, n
jz L(wd3)
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
add %r11, 8(rp,n,8)
jmp L(lo3)
L(oloop3):
mov (vp), %rdx
add $8, vp
add %r9, (rp)
adc %r11, 8(rp)
.byte 0xc4,0x22,0xa3,0xf6,0x14,0xf6 C mulx (up,un,8), %r11, %r10
adc %r13, 16(rp)
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x08 C mulx 8(up,un,8), %r13, %r12
adc %rbx, 24(rp)
adc $0, %rax
mov %rax, 32(rp)
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %rbx, %rax
lea 3(un), n
add $8, rp
add %r10, %r13
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r12, %rbx
adc $0, %rax
add %r11, 8(rp,n,8)
jmp L(lo3)
ALIGN(16)
L(tp3): add %r9, (rp,n,8)
.byte 0xc4,0x62,0xb3,0xf6,0x04,0xce C mulx (up,n,8), %r9, %r8
adc %r11, 8(rp,n,8)
L(lo3): .byte 0xc4,0x62,0xa3,0xf6,0x54,0xce,0x08 C mulx 8(up,n,8), %r11, %r10
adc %r13, 16(rp,n,8)
.byte 0xc4,0x62,0x93,0xf6,0x64,0xce,0x10 C mulx 16(up,n,8), %r13, %r12
adc %rbx, 24(rp,n,8)
adc %rax, %r9
.byte 0xc4,0xe2,0xe3,0xf6,0x44,0xce,0x18 C mulx 24(up,n,8), %rbx, %rax
adc %r8, %r11
adc %r10, %r13
adc %r12, %rbx
adc $0, %rax
add $4, n
jnz L(tp3)
dec vn
jne L(oloop3)
L(final_wind_down):
add %r9, (rp)
adc %r11, 8(rp)
adc %r13, 16(rp)
adc %rbx, 24(rp)
adc $0, %rax
mov %rax, 32(rp)
L(end): pop %rbx
pop %rbp
pop %r12
pop %r13
pop %r14
pop %r15
FUNC_EXIT()
ret
L(3): mov (vp), %rdx
add $8, vp
add $8, rp
.byte 0xc4,0x22,0xa3,0xf6,0x14,0xf6 C mulx (up,un,8), %r11, %r10
.byte 0xc4,0x22,0x93,0xf6,0x64,0xf6,0x08 C mulx 8(up,un,8), %r13, %r12
.byte 0xc4,0xa2,0xe3,0xf6,0x44,0xf6,0x10 C mulx 16(up,un,8), %rbx, %rax
add %r10, %r13
adc %r12, %rbx
adc $0, %rax
L(wd3): adc %r11, 8(rp)
adc %r13, 16(rp)
adc %rbx, 24(rp)
adc $0, %rax
mov %rax, 32(rp)
dec vn
jne L(3)
jmp L(end)
EPILOGUE()
|