-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathamd64.mcs
583 lines (574 loc) · 12 KB
/
amd64.mcs
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
; MCS file for Gnu GCC AMD64 compiler
;
; Sorry about all the %'s! Each % must be input here as %%
; Hybrid x2 step
;
; "Triple" register is now rcx|r11|r10|r9|r8
; registers bh and bl are employed as "carry catchers"
;
;MACRO H2_MUL_START
; ASM (
; "movq %%0,%%%%r15\n"
; "movq %%1,%%%%rsi\n"
; "movq %%2,%%%%rdi\n"
; "xorq %%%%rcx,%%%%rcx\n"
; "xorq %%%%r8,%%%%r8\n"
; "xorq %%%%r9,%%%%r9\n"
; "xorq %%%%r10,%%%%r10\n"
; "xorq %%%%r11,%%%%r11\n"
; "xorq %%%%rbx,%%%%rbx\n"
;ENDM
;MACRO H2_STEP
; "movq 8*%d(%%%%r15),%%%%r12\n"
; "movq 8*(%d+1)(%%%%r15),%%%%r13\n"
; "movq 8*%d(%%%%rsi),%%%%r14\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r12\n"
; "addq %%%%rax,%%%%r8\n"
; "adcq %%%%rdx,%%%%r9\n"
; "adc %%%%ch,%%%%bl\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r13\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "movq 8*(%d+1)(%%%%rsi),%%%%r14\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r12\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r13\n"
; "addq %%%%rax,%%%%r10\n"
; "adcq %%%%rdx,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
;ENDM
;MACRO H2_MFIN
; "movq %%%%r8,8*%d(%%%%rdi)\n"
; "movq %%%%r9,8*%d(%%%%rdi)\n"
; "movzbq %%%%bl,%%%%rax\n"
; "addq %%%%rax,%%%%r10\n"
; "mov %%%%bh,%%%%al\n"
; "movzbq %%%%al,%%%%rax\n"
; "adcq %%%%rax,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
; "movq %%%%r10,%%%%r8\n"
; "movq %%%%r11,%%%%r9\n"
; "xorq %%%%rbx,%%%%rbx\n"
; "mov %%%%cl,%%%%bl\n"
; "xorq %%%%rcx,%%%%rcx\n"
; "xorq %%%%r10,%%%%r10\n"
; "xorq %%%%r11,%%%%r11\n"
;ENDM
;MACRO H2_MUL_END
; "movq %%%%r8,8*%d(%%%%rdi)\n"
; "movq %%%%r9,8*%d(%%%%rdi)\n"
; :
; :"m"(a),"m"(b),"m"(c)
; :"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","r10","r11","r12","r13","r14","r15","memory"
; );
;ENDM
;MACRO H2_SQR_START
; ASM (
; "movq %%0,%%%%rsi\n"
; "movq %%1,%%%%rdi\n"
; "xorq %%%%rcx,%%%%rcx\n"
; "xorq %%%%r8,%%%%r8\n"
; "xorq %%%%r9,%%%%r9\n"
; "xorq %%%%r10,%%%%r10\n"
; "xorq %%%%r11,%%%%r11\n"
; "xorq %%%%rbx,%%%%rbx\n"
;ENDM
;MACRO H2_DSTEP
; "movq 8*%d(%%%%rsi),%%%%r12\n"
; "movq 8*(%d+1)(%%%%rsi),%%%%r13\n"
; "movq 8*%d(%%%%rsi),%%%%r14\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r12\n"
; "addq %%%%rax,%%%%r8\n"
; "adcq %%%%rdx,%%%%r9\n"
; "adc %%%%ch,%%%%bl\n"
; "addq %%%%rax,%%%%r8\n"
; "adcq %%%%rdx,%%%%r9\n"
; "adc %%%%ch,%%%%bl\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r13\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "movq 8*(%d+1)(%%%%rsi),%%%%r14\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r12\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "movq %%%%r14,%%%%rax\n"
; "mulq %%%%r13\n"
; "addq %%%%rax,%%%%r10\n"
; "adcq %%%%rdx,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
; "addq %%%%rax,%%%%r10\n"
; "adcq %%%%rdx,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
;ENDM
;MACRO H2_SELF
; "movq 8*%d(%%%%rsi),%%%%r12\n"
; "movq 8*(%d+1)(%%%%rsi),%%%%r13\n"
; "movq %%%%r12,%%%%rax\n"
; "mulq %%%%rax\n"
; "addq %%%%rax,%%%%r8\n"
; "adcq %%%%rdx,%%%%r9\n"
; "adc %%%%ch,%%%%bl\n"
; "movq %%%%r13,%%%%rax\n"
; "mulq %%%%r12\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "addq %%%%rax,%%%%r9\n"
; "adcq %%%%rdx,%%%%r10\n"
; "adc %%%%ch,%%%%bh\n"
; "movq %%%%r13,%%%%rax\n"
; "mulq %%%%rax\n"
; "addq %%%%rax,%%%%r10\n"
; "adcq %%%%rdx,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
;ENDM
;MACRO H2_SFIN
; "movq %%%%r8,8*%d(%%%%rdi)\n"
; "movq %%%%r9,8*%d(%%%%rdi)\n"
; "movzbq %%%%bl,%%%%rax\n"
; "addq %%%%rax,%%%%r10\n"
; "mov %%%%bh,%%%%al\n"
; "movzbq %%%%al,%%%%rax\n"
; "adcq %%%%rax,%%%%r11\n"
; "adc %%%%ch,%%%%cl\n"
; "movq %%%%r10,%%%%r8\n"
; "movq %%%%r11,%%%%r9\n"
; "xorq %%%%rbx,%%%%rbx\n"
; "mov %%%%cl,%%%%bl\n"
; "xorq %%%%rcx,%%%%rcx\n"
; "xorq %%%%r10,%%%%r10\n"
; "xorq %%%%r11,%%%%r11\n"
;ENDM
;MACRO H2_SQR_END
; "movq %%%%r8,8*%d(%%%%rdi)\n"
; "movq %%%%r9,8*%d(%%%%rdi)\n"
; :
; :"m"(a),"m"(c)
; :"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","r10","r11","r12","r13","r14","memory"
; );
;ENDM
MACRO PMUL_START
ASM (
"movq %%0,%%%%rbx\n"
"movq %%1,%%%%rsi\n"
"movq %%2,%%%%rdi\n"
"xorq %%%%rcx,%%%%rcx\n"
"xorq %%%%r9,%%%%r9\n"
"movq %%3,%%%%r8\n"
ENDM
MACRO PMUL
"movq %%%%r8,%%%%rax\n"
"mulq 8*%d(%%%%rbx)\n"
"addq %%%%rcx,%%%%rax\n"
"adcq %%%%r9,%%%%rdx\n"
"movq %%%%rdx,%%%%rcx\n"
"movq %%%%r9,8*%d(%%%%rsi)\n"
"movq %%%%rax,8*%d(%%%%rdi)\n"
ENDM
MACRO PMUL_END
"movq %%%%r8,%%%%rax\n"
"mulq %%%%rcx\n"
"movq %%%%rax,(%%%%rsi)\n"
"movq %%%%rdx,8(%%%%rsi)\n"
:
:"m"(a),"m"(b),"m"(c),"m"(sn)
:"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","memory"
);
ENDM
; Triple register is cl|r9|r8
; MUL_START. Initialise registers. Make rbx and rsi point to multipliers a
; and b. rdi points at result c.
; Initialise Triple register to 0
; See makemcs.txt for more information about this file
;
MACRO MUL_START
ASM (
"movq %%0,%%%%rbx\n"
"movq %%1,%%%%rsi\n"
"movq %%2,%%%%rdi\n"
"xorq %%%%rcx,%%%%rcx\n"
"xorq %%%%r9,%%%%r9\n"
"xorq %%%%r8,%%%%r8\n"
ENDM
;
; STEP macro. Calculates a double-register partial product
; and adds it to the triple register total
; Parameters 1 & 2: Indices i and j for partial product multipliers a[i]
; and b[j]
MACRO STEP
"movq 8*%d(%%%%rbx),%%%%rax\n"
"mulq 8*%d(%%%%rsi)\n"
"addq %%%%rax,%%%%r8\n"
"adcq %%%%rdx,%%%%r9\n"
"adc %%%%ch,%%%%cl\n"
ENDM
;
; LAST
;
MACRO LAST
"movq 8*%d(%%%%rbx),%%%%rax\n"
"mulq 8*%d(%%%%rsi)\n"
"addq %%%%rax,%%%%r8\n"
ENDM
;
; MFIN macro. Finish column calculation. Store Sum for this column
; and get Carry for next
; Parameter 1: Index k for Column Sum c[k]
MACRO MFIN
"movq %%%%r8,8*%d(%%%%rdi)\n"
"movq %%%%r9,%%%%r8\n"
"movq %%%%rcx,%%%%r9\n"
"xor %%%%cl,%%%%cl\n"
ENDM
;
; MUL_END
; Parameter 1: Index for final carry c[.]
MACRO MUL_END
"movq %%%%r8,8*%d(%%%%rdi)\n"
:
:"m"(a),"m"(b),"m"(c)
:"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","memory"
);
ENDM
;
; SQR_START
;
MACRO SQR_START
ASM (
"movq %%0,%%%%rbx\n"
"movq %%1,%%%%rsi\n"
"xorq %%%%rcx,%%%%rcx\n"
"xorq %%%%r9,%%%%r9\n"
"xorq %%%%r8,%%%%r8\n"
ENDM
;
; DSTEP macro. Calculates a double-register partial product
; and add it twice to a triple register total
; Parameters 1 & 2 : Indices of partial product multipliers
MACRO DSTEP
"movq 8*%d(%%%%rbx),%%%%rax\n"
"mulq 8*%d(%%%%rbx)\n"
"addq %%%%rax,%%%%r8\n"
"adcq %%%%rdx,%%%%r9\n"
"adc %%%%ch,%%%%cl\n"
"addq %%%%rax,%%%%r8\n"
"adcq %%%%rdx,%%%%r9\n"
"adc %%%%ch,%%%%cl\n"
ENDM
;
; SELF macro. Calculate the double-register square and
; add it to a triple register total
; Parameter 1 : Index of diagonal element
MACRO SELF
"movq 8*%d(%%%%rbx),%%%%rax\n"
"mulq %%%%rax\n"
"addq %%%%rax,%%%%r8\n"
"adcq %%%%rdx,%%%%r9\n"
"adc %%%%ch,%%%%cl\n"
ENDM
;
; SFIN macro. Finish column calculation for squaring. Store Sum
; and get Carry for next column.
; Parameter 1: Index of Column Sum
MACRO SFIN
"movq %%%%r8,8*%d(%%%%rsi)\n"
"movq %%%%r9,%%%%r8\n"
"movq %%%%rcx,%%%%r9\n"
"xor %%%%cl,%%%%cl\n"
ENDM
;
; SQR_END
; Parameter 1: Index for final carry
MACRO SQR_END
"movq %%%%r8,8*%d(%%%%rsi)\n"
:
:"m"(a),"m"(c)
:"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","memory"
);
ENDM
;
; REDC_START
;
MACRO REDC_START
ASM (
"movq %%0,%%%%rbx\n"
"movq %%1,%%%%rsi\n"
"movq %%2,%%%%rdi\n"
"xorq %%%%r9,%%%%r9\n"
"xorq %%%%rcx,%%%%rcx\n"
"movq (%%%%rbx),%%%%r8\n"
"movq (%%%%rsi),%%%%r10\n"
ENDM
;
; RFINU macro
;
MACRO RFINU
"movq %%%%r8,%%%%rax\n"
"mulq %%%%rdi\n"
"movq %%%%rax,8*%d(%%%%rbx)\n"
"mulq %%%%r10\n"
"addq %%%%rax,%%%%r8\n"
"adcq %%%%rdx,%%%%r9\n"
"adc %%%%ch,%%%%cl\n"
"movq %%%%r9,%%%%r8\n"
"movq %%%%rcx,%%%%r9\n"
"xorq %%%%rcx,%%%%rcx\n"
"addq 8*(%d+1)(%%%%rbx),%%%%r8\n"
"adcq %%%%rcx,%%%%r9\n"
ENDM
;
; RFIND macro
;
MACRO RFIND
"movq %%%%r8,8*%d(%%%%rbx)\n"
"movq %%%%r9,%%%%r8\n"
"movq %%%%rcx,%%%%r9\n"
"xorq %%%%rcx,%%%%rcx\n"
"addq 8*(%d+1)(%%%%rbx),%%%%r8\n"
"adcq %%%%rcx,%%%%r9\n"
ENDM
;
; REDC_END
;
MACRO REDC_END
"movq %%%%r8,8*%d(%%%%rbx)\n"
"movq %%%%r9,8*(%d+1)(%%%%rbx)\n"
:
:"m"(a),"m"(b),"m"(ndash)
:"rax","rdi","rsi","rbx","rcx","rdx","r8","r9","r10","memory"
);
ENDM
;
; ADD_START macro - initialise for add. Do first one
;
MACRO ADD_START
ASM (
"movq %%0,%%%%rsi\n"
"movq %%1,%%%%rbx\n"
"movq %%3,%%%%rdi\n"
"movq (%%%%rsi),%%%%rax\n"
"addq (%%%%rbx),%%%%rax\n"
"movq %%%%rax,(%%%%rdi)\n"
ENDM
;
; ADD macro. Add two numbers from memory and store result in memory.
; Don't forget carry bit
;
MACRO ADD
"movq 8*%d(%%%%rsi),%%%%rax\n"
"adcq 8*%d(%%%%rbx),%%%%rax\n"
"movq %%%%rax,8*%d(%%%%rdi)\n"
ENDM
;
; ADD_END macro. Catch Carry
;
MACRO ADD_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry),"m"(c)
:"rax","rdi","rsi","rbx","memory"
);
ENDM
;
; INC_START macro
;
MACRO INC_START
ASM (
"movq %%0,%%%%rdi\n"
"movq %%1,%%%%rbx\n"
"movq (%%%%rbx),%%%%rax\n"
"addq %%%%rax,(%%%%rdi)\n"
ENDM
;
; INC macro. Increment number in memory. Don't forget carry
;
MACRO INC
"movq 8*%d(%%%%rbx),%%%%rax\n"
"adcq %%%%rax,8*%d(%%%%rdi)\n"
ENDM
;
; INC_END macro. Catch Carry
;
MACRO INC_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry)
:"rax","rdi","rbx","memory"
);
ENDM
;
; SUB_START macro. Do first one.
;
MACRO SUB_START
ASM (
"movq %%0,%%%%rsi\n"
"movq %%1,%%%%rbx\n"
"movq %%3,%%%%rdi\n"
"movq (%%%%rsi),%%%%rax\n"
"subq (%%%%rbx),%%%%rax\n"
"movq %%%%rax,(%%%%rdi)\n"
ENDM
;
; SUB macro. Subtract two numbers in memory and store result in memory.
;
MACRO SUB
"movq 8*%d(%%%%rsi),%%%%rax\n"
"sbbq 8*%d(%%%%rbx),%%%%rax\n"
"movq %%%%rax,8*%d(%%%%rdi)\n"
ENDM
;
; SUB_END macro. Catch Carry
;
MACRO SUB_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry),"m"(c)
:"rax","rdi","rsi","rbx","memory"
);
ENDM
;
; DEC_START macro. Do first one.
;
MACRO DEC_START
ASM (
"movq %%0,%%%%rdi\n"
"movq %%1,%%%%rbx\n"
"movq (%%%%rbx),%%%%rax\n"
"subq %%%%rax,(%%%%rdi)\n"
ENDM
;
; DEC macro. Decrement from number in memory. Don't forget borrow.
;
MACRO DEC
"movq 8*%d(%%%%rbx),%%%%rax\n"
"sbbq %%%%rax,8*%d(%%%%rdi)\n"
ENDM
;
; DEC_END macro
;
MACRO DEC_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry)
:"rax","rdi","rbx","memory"
);
ENDM
;
; KADD_START macro
;
MACRO KADD_START
ASM (
"movq %%0,%%%%rsi\n"
"movq %%1,%%%%rbx\n"
"movq %%3,%%%%rdi\n"
"movl %%4,%%%%ecx\n"
"xorq %%%%rax,%%%%rax\n"
"k%d:\n"
ENDM
;
; KASL macro
;
MACRO KASL
"decl %%%%ecx\n"
"je k%d\n"
"leaq 8*%d(%%%%rsi),%%%%rsi\n"
"leaq 8*%d(%%%%rbx),%%%%rbx\n"
"leaq 8*%d(%%%%rdi),%%%%rdi\n"
"jmp k%d\n"
"k%d:\n"
ENDM
;
; KADD_END macro
;
MACRO KADD_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry),"m"(c),"m"(n)
:"rax","rdi","rsi","rbx","ecx","memory"
);
ENDM
;
; KINC_START macro. Zero carry flag.
;
MACRO KINC_START
ASM (
"movq %%0,%%%%rdi\n"
"movq %%1,%%%%rbx\n"
"movl %%3,%%%%ecx\n"
"xorq %%%%rax,%%%%rax\n"
"k%d:\n"
ENDM
;
; KIDL macro
;
MACRO KIDL
"decl %%%%ecx\n"
"je k%d\n"
"leaq 8*%d(%%%%rbx),%%%%rbx\n"
"leaq 8*%d(%%%%rdi),%%%%rdi\n"
"jmp k%d\n"
"k%d:\n"
ENDM
;
; KINC_END macro
;
MACRO KINC_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry),"m"(n)
:"rax","rdi","rbx","ecx","memory"
);
ENDM
;
; KDEC_START macro
;
MACRO KDEC_START
ASM (
"movq %%0,%%%%rdi\n"
"movq %%1,%%%%rbx\n"
"movl %%3,%%%%ecx\n"
"xorq %%%%rax,%%%%rax\n"
"k%d:\n"
ENDM
;
; KDEC_END macro
;
MACRO KDEC_END
"movq $0,%%%%rax\n"
"adcq %%%%rax,%%%%rax\n"
"movq %%%%rax,%%2\n"
:
:"m"(a),"m"(b),"m"(carry),"m"(n)
:"rax","rdi","rbx","ecx","memory"
);
ENDM