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
|
dnl AMD64 mpn_mullo_basecase.
dnl Contributed to the GNU project by Torbjorn Granlund.
dnl Copyright 2008, 2009, 2011, 2012 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 The inner loops of this code are the result of running a code generation and
C optimisation tool suite written by David Harvey and Torbjorn Granlund.
C NOTES
C * There is a major stupidity in that we call mpn_mul_1 initially, for a
C large trip count. Instead, we should start with mul_2 for any operand
C size congruence class.
C * Stop iterating addmul_2 earlier, falling into straight-line triangle code
C for the last 2-3 iterations.
C * Perhaps implement n=4 special code.
C * The reload of the outer loop jump address hurts branch prediction.
C * The addmul_2 loop ends with an MUL whose high part is not used upon loop
C exit.
C INPUT PARAMETERS
define(`rp', `%rdi')
define(`up', `%rsi')
define(`vp_param', `%rdx')
define(`n', `%rcx')
define(`vp', `%r11')
define(`outer_addr', `%r8')
define(`j', `%r9')
define(`v0', `%r13')
define(`v1', `%r14')
define(`w0', `%rbx')
define(`w1', `%r15')
define(`w2', `%rbp')
define(`w3', `%r10')
ABI_SUPPORT(DOS64)
ABI_SUPPORT(STD64)
ASM_START()
TEXT
ALIGN(16)
PROLOGUE(mpn_mullo_basecase)
FUNC_ENTRY(4)
cmp $4, n
jge L(gen)
mov (up), %rax C u0
mov (vp_param), %r8 C v0
lea L(tab)(%rip), %r9
ifdef(`PIC',
` movslq (%r9,%rcx,4), %r10
add %r10, %r9
jmp *%r9
',`
jmp *(%r9,n,8)
')
JUMPTABSECT
ALIGN(8)
L(tab): JMPENT( L(tab), L(tab)) C not allowed
JMPENT( L(1), L(tab)) C 1
JMPENT( L(2), L(tab)) C 2
JMPENT( L(3), L(tab)) C 3
dnl JMPENT( L(0m4), L(tab)) C 4
dnl JMPENT( L(1m4), L(tab)) C 5
dnl JMPENT( L(2m4), L(tab)) C 6
dnl JMPENT( L(3m4), L(tab)) C 7
dnl JMPENT( L(0m4), L(tab)) C 8
dnl JMPENT( L(1m4), L(tab)) C 9
dnl JMPENT( L(2m4), L(tab)) C 10
dnl JMPENT( L(3m4), L(tab)) C 11
TEXT
L(1): imul %r8, %rax
mov %rax, (rp)
FUNC_EXIT()
ret
L(2): mov 8(vp_param), %r11
imul %rax, %r11 C u0 x v1
mul %r8 C u0 x v0
mov %rax, (rp)
imul 8(up), %r8 C u1 x v0
lea (%r11, %rdx), %rax
add %r8, %rax
mov %rax, 8(rp)
FUNC_EXIT()
ret
L(3): mov 8(vp_param), %r9 C v1
mov 16(vp_param), %r11
mul %r8 C u0 x v0 -> <r1,r0>
mov %rax, (rp) C r0
mov (up), %rax C u0
mov %rdx, %rcx C r1
mul %r9 C u0 x v1 -> <r2,r1>
imul 8(up), %r9 C u1 x v1 -> r2
mov 16(up), %r10
imul %r8, %r10 C u2 x v0 -> r2
add %rax, %rcx
adc %rdx, %r9
add %r10, %r9
mov 8(up), %rax C u1
mul %r8 C u1 x v0 -> <r2,r1>
add %rax, %rcx
adc %rdx, %r9
mov %r11, %rax
imul (up), %rax C u0 x v2 -> r2
add %rax, %r9
mov %rcx, 8(rp)
mov %r9, 16(rp)
FUNC_EXIT()
ret
L(0m4):
L(1m4):
L(2m4):
L(3m4):
L(gen): push %rbx
push %rbp
push %r13
push %r14
push %r15
mov (up), %rax
mov (vp_param), v0
mov vp_param, vp
lea (rp,n,8), rp
lea (up,n,8), up
neg n
mul v0
test $1, R8(n)
jz L(mul_2)
L(mul_1):
lea -8(rp), rp
lea -8(up), up
test $2, R8(n)
jnz L(mul_1_prologue_3)
L(mul_1_prologue_2): C n = 7, 11, 15, ...
lea -1(n), j
lea L(addmul_outer_1)(%rip), outer_addr
mov %rax, w0
mov %rdx, w1
xor R32(w2), R32(w2)
xor R32(w3), R32(w3)
mov 16(up,n,8), %rax
jmp L(mul_1_entry_2)
L(mul_1_prologue_3): C n = 5, 9, 13, ...
lea 1(n), j
lea L(addmul_outer_3)(%rip), outer_addr
mov %rax, w2
mov %rdx, w3
xor R32(w0), R32(w0)
jmp L(mul_1_entry_0)
ALIGN(16)
L(mul_1_top):
mov w0, -16(rp,j,8)
add %rax, w1
mov (up,j,8), %rax
adc %rdx, w2
xor R32(w0), R32(w0)
mul v0
mov w1, -8(rp,j,8)
add %rax, w2
adc %rdx, w3
L(mul_1_entry_0):
mov 8(up,j,8), %rax
mul v0
mov w2, (rp,j,8)
add %rax, w3
adc %rdx, w0
mov 16(up,j,8), %rax
mul v0
mov w3, 8(rp,j,8)
xor R32(w2), R32(w2) C zero
mov w2, w3 C zero
add %rax, w0
mov 24(up,j,8), %rax
mov w2, w1 C zero
adc %rdx, w1
L(mul_1_entry_2):
mul v0
add $4, j
js L(mul_1_top)
mov w0, -16(rp)
add %rax, w1
mov w1, -8(rp)
adc %rdx, w2
imul (up), v0
add v0, w2
mov w2, (rp)
add $1, n
jz L(ret)
mov 8(vp), v0
mov 16(vp), v1
lea 16(up), up
lea 8(vp), vp
lea 24(rp), rp
jmp *outer_addr
L(mul_2):
mov 8(vp), v1
test $2, R8(n)
jz L(mul_2_prologue_3)
ALIGN(16)
L(mul_2_prologue_1):
lea 0(n), j
mov %rax, w3
mov %rdx, w0
xor R32(w1), R32(w1)
mov (up,n,8), %rax
lea L(addmul_outer_3)(%rip), outer_addr
jmp L(mul_2_entry_1)
ALIGN(16)
L(mul_2_prologue_3):
lea 2(n), j
mov $0, R32(w3)
mov %rax, w1
mov (up,n,8), %rax
mov %rdx, w2
lea L(addmul_outer_1)(%rip), outer_addr
jmp L(mul_2_entry_3)
ALIGN(16)
L(mul_2_top):
mov -32(up,j,8), %rax
mul v1
add %rax, w0
adc %rdx, w1
mov -24(up,j,8), %rax
xor R32(w2), R32(w2)
mul v0
add %rax, w0
mov -24(up,j,8), %rax
adc %rdx, w1
adc $0, R32(w2)
mul v1
add %rax, w1
mov w0, -24(rp,j,8)
adc %rdx, w2
mov -16(up,j,8), %rax
mul v0
mov $0, R32(w3)
add %rax, w1
adc %rdx, w2
mov -16(up,j,8), %rax
adc $0, R32(w3)
L(mul_2_entry_3):
mov $0, R32(w0)
mov w1, -16(rp,j,8)
mul v1
add %rax, w2
mov -8(up,j,8), %rax
adc %rdx, w3
mov $0, R32(w1)
mul v0
add %rax, w2
mov -8(up,j,8), %rax
adc %rdx, w3
adc R32(w1), R32(w0)
mul v1
add %rax, w3
mov w2, -8(rp,j,8)
adc %rdx, w0
mov (up,j,8), %rax
mul v0
add %rax, w3
adc %rdx, w0
adc $0, R32(w1)
L(mul_2_entry_1):
add $4, j
mov w3, -32(rp,j,8)
js L(mul_2_top)
imul -16(up), v1
add v1, w0
imul -8(up), v0
add v0, w0
mov w0, -8(rp)
add $2, n
jz L(ret)
mov 16(vp), v0
mov 24(vp), v1
lea 16(vp), vp
lea 16(rp), rp
jmp *outer_addr
L(addmul_outer_1):
lea -2(n), j
mov -16(up,n,8), %rax
mul v0
mov %rax, w3
mov -16(up,n,8), %rax
mov %rdx, w0
xor R32(w1), R32(w1)
lea L(addmul_outer_3)(%rip), outer_addr
jmp L(addmul_entry_1)
L(addmul_outer_3):
lea 0(n), j
mov -16(up,n,8), %rax
xor R32(w3), R32(w3)
mul v0
mov %rax, w1
mov -16(up,n,8), %rax
mov %rdx, w2
lea L(addmul_outer_1)(%rip), outer_addr
jmp L(addmul_entry_3)
ALIGN(16)
L(addmul_top):
add w3, -32(rp,j,8)
adc %rax, w0
mov -24(up,j,8), %rax
adc %rdx, w1
xor R32(w2), R32(w2)
mul v0
add %rax, w0
mov -24(up,j,8), %rax
adc %rdx, w1
adc R32(w2), R32(w2)
mul v1
xor R32(w3), R32(w3)
add w0, -24(rp,j,8)
adc %rax, w1
mov -16(up,j,8), %rax
adc %rdx, w2
mul v0
add %rax, w1
mov -16(up,j,8), %rax
adc %rdx, w2
adc $0, R32(w3)
L(addmul_entry_3):
mul v1
add w1, -16(rp,j,8)
adc %rax, w2
mov -8(up,j,8), %rax
adc %rdx, w3
mul v0
xor R32(w0), R32(w0)
add %rax, w2
adc %rdx, w3
mov $0, R32(w1)
mov -8(up,j,8), %rax
adc R32(w1), R32(w0)
mul v1
add w2, -8(rp,j,8)
adc %rax, w3
adc %rdx, w0
mov (up,j,8), %rax
mul v0
add %rax, w3
mov (up,j,8), %rax
adc %rdx, w0
adc $0, R32(w1)
L(addmul_entry_1):
mul v1
add $4, j
js L(addmul_top)
add w3, -32(rp)
adc %rax, w0
imul -24(up), v0
add v0, w0
add w0, -24(rp)
add $2, n
jns L(ret)
lea 16(vp), vp
mov (vp), v0
mov 8(vp), v1
lea -16(up), up
jmp *outer_addr
L(ret): pop %r15
pop %r14
pop %r13
pop %rbp
pop %rbx
FUNC_EXIT()
ret
EPILOGUE()
|