This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
arithmetic_decl.go
628 lines (419 loc) · 8.67 KB
/
arithmetic_decl.go
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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
package eip
//go:noescape
func is_even(a fe) bool
//go:noescape
func eq1(a, b fe) bool
//go:noescape
func mul_two_1(a fe)
//go:noescape
func div_two_1(a fe)
//go:noescape
func cpy1(dst, src fe)
//go:noescape
func cmp1(a, b fe) int8
//go:noescape
func add1(c, a, b, p fe)
//go:noescape
func addn1(a, b fe) uint64
//go:noescape
func sub1(c, a, b, p fe)
//go:noescape
func subn1(a, b fe) uint64
//go:noescape
func _neg1(c, a, p fe)
//go:noescape
func double1(c, a, p fe)
//go:noescape
func mul1(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_1(c, a, b, p fe, inp uint64)
//go:noescape
func eq2(a, b fe) bool
//go:noescape
func mul_two_2(a fe)
//go:noescape
func div_two_2(a fe)
//go:noescape
func cpy2(dst, src fe)
//go:noescape
func cmp2(a, b fe) int8
//go:noescape
func add2(c, a, b, p fe)
//go:noescape
func addn2(a, b fe) uint64
//go:noescape
func sub2(c, a, b, p fe)
//go:noescape
func subn2(a, b fe) uint64
//go:noescape
func _neg2(c, a, p fe)
//go:noescape
func double2(c, a, p fe)
//go:noescape
func mul2(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_2(c, a, b, p fe, inp uint64)
//go:noescape
func eq3(a, b fe) bool
//go:noescape
func mul_two_3(a fe)
//go:noescape
func div_two_3(a fe)
//go:noescape
func cpy3(dst, src fe)
//go:noescape
func cmp3(a, b fe) int8
//go:noescape
func add3(c, a, b, p fe)
//go:noescape
func addn3(a, b fe) uint64
//go:noescape
func sub3(c, a, b, p fe)
//go:noescape
func subn3(a, b fe) uint64
//go:noescape
func _neg3(c, a, p fe)
//go:noescape
func double3(c, a, p fe)
//go:noescape
func mul3(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_3(c, a, b, p fe, inp uint64)
//go:noescape
func eq4(a, b fe) bool
//go:noescape
func mul_two_4(a fe)
//go:noescape
func div_two_4(a fe)
//go:noescape
func cpy4(dst, src fe)
//go:noescape
func cmp4(a, b fe) int8
//go:noescape
func add4(c, a, b, p fe)
//go:noescape
func addn4(a, b fe) uint64
//go:noescape
func sub4(c, a, b, p fe)
//go:noescape
func subn4(a, b fe) uint64
//go:noescape
func _neg4(c, a, p fe)
//go:noescape
func double4(c, a, p fe)
//go:noescape
func mul4(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_4(c, a, b, p fe, inp uint64)
//go:noescape
func eq5(a, b fe) bool
//go:noescape
func mul_two_5(a fe)
//go:noescape
func div_two_5(a fe)
//go:noescape
func cpy5(dst, src fe)
//go:noescape
func cmp5(a, b fe) int8
//go:noescape
func add5(c, a, b, p fe)
//go:noescape
func addn5(a, b fe) uint64
//go:noescape
func sub5(c, a, b, p fe)
//go:noescape
func subn5(a, b fe) uint64
//go:noescape
func _neg5(c, a, p fe)
//go:noescape
func double5(c, a, p fe)
//go:noescape
func mul5(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_5(c, a, b, p fe, inp uint64)
//go:noescape
func eq6(a, b fe) bool
//go:noescape
func mul_two_6(a fe)
//go:noescape
func div_two_6(a fe)
//go:noescape
func cpy6(dst, src fe)
//go:noescape
func cmp6(a, b fe) int8
//go:noescape
func add6(c, a, b, p fe)
//go:noescape
func addn6(a, b fe) uint64
//go:noescape
func sub6(c, a, b, p fe)
//go:noescape
func subn6(a, b fe) uint64
//go:noescape
func _neg6(c, a, p fe)
//go:noescape
func double6(c, a, p fe)
//go:noescape
func mul6(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_6(c, a, b, p fe, inp uint64)
//go:noescape
func eq7(a, b fe) bool
//go:noescape
func mul_two_7(a fe)
//go:noescape
func div_two_7(a fe)
//go:noescape
func cpy7(dst, src fe)
//go:noescape
func cmp7(a, b fe) int8
//go:noescape
func add7(c, a, b, p fe)
//go:noescape
func addn7(a, b fe) uint64
//go:noescape
func sub7(c, a, b, p fe)
//go:noescape
func subn7(a, b fe) uint64
//go:noescape
func _neg7(c, a, p fe)
//go:noescape
func double7(c, a, p fe)
//go:noescape
func mul7(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_7(c, a, b, p fe, inp uint64)
//go:noescape
func eq8(a, b fe) bool
//go:noescape
func mul_two_8(a fe)
//go:noescape
func div_two_8(a fe)
//go:noescape
func cpy8(dst, src fe)
//go:noescape
func cmp8(a, b fe) int8
//go:noescape
func add8(c, a, b, p fe)
//go:noescape
func addn8(a, b fe) uint64
//go:noescape
func sub8(c, a, b, p fe)
//go:noescape
func subn8(a, b fe) uint64
//go:noescape
func _neg8(c, a, p fe)
//go:noescape
func double8(c, a, p fe)
//go:noescape
func mul8(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_8(c, a, b, p fe, inp uint64)
//go:noescape
func eq9(a, b fe) bool
//go:noescape
func mul_two_9(a fe)
//go:noescape
func div_two_9(a fe)
//go:noescape
func cpy9(dst, src fe)
//go:noescape
func cmp9(a, b fe) int8
//go:noescape
func add9(c, a, b, p fe)
//go:noescape
func addn9(a, b fe) uint64
//go:noescape
func sub9(c, a, b, p fe)
//go:noescape
func subn9(a, b fe) uint64
//go:noescape
func _neg9(c, a, p fe)
//go:noescape
func double9(c, a, p fe)
//go:noescape
func mul9(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_9(c, a, b, p fe, inp uint64)
//go:noescape
func eq10(a, b fe) bool
//go:noescape
func mul_two_10(a fe)
//go:noescape
func div_two_10(a fe)
//go:noescape
func cpy10(dst, src fe)
//go:noescape
func cmp10(a, b fe) int8
//go:noescape
func add10(c, a, b, p fe)
//go:noescape
func addn10(a, b fe) uint64
//go:noescape
func sub10(c, a, b, p fe)
//go:noescape
func subn10(a, b fe) uint64
//go:noescape
func _neg10(c, a, p fe)
//go:noescape
func double10(c, a, p fe)
//go:noescape
func mul10(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_10(c, a, b, p fe, inp uint64)
//go:noescape
func eq11(a, b fe) bool
//go:noescape
func mul_two_11(a fe)
//go:noescape
func div_two_11(a fe)
//go:noescape
func cpy11(dst, src fe)
//go:noescape
func cmp11(a, b fe) int8
//go:noescape
func add11(c, a, b, p fe)
//go:noescape
func addn11(a, b fe) uint64
//go:noescape
func sub11(c, a, b, p fe)
//go:noescape
func subn11(a, b fe) uint64
//go:noescape
func _neg11(c, a, p fe)
//go:noescape
func double11(c, a, p fe)
//go:noescape
func mul11(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_11(c, a, b, p fe, inp uint64)
//go:noescape
func eq12(a, b fe) bool
//go:noescape
func mul_two_12(a fe)
//go:noescape
func div_two_12(a fe)
//go:noescape
func cpy12(dst, src fe)
//go:noescape
func cmp12(a, b fe) int8
//go:noescape
func add12(c, a, b, p fe)
//go:noescape
func addn12(a, b fe) uint64
//go:noescape
func sub12(c, a, b, p fe)
//go:noescape
func subn12(a, b fe) uint64
//go:noescape
func _neg12(c, a, p fe)
//go:noescape
func double12(c, a, p fe)
//go:noescape
func mul12(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_12(c, a, b, p fe, inp uint64)
//go:noescape
func eq13(a, b fe) bool
//go:noescape
func mul_two_13(a fe)
//go:noescape
func div_two_13(a fe)
//go:noescape
func cpy13(dst, src fe)
//go:noescape
func cmp13(a, b fe) int8
//go:noescape
func add13(c, a, b, p fe)
//go:noescape
func addn13(a, b fe) uint64
//go:noescape
func sub13(c, a, b, p fe)
//go:noescape
func subn13(a, b fe) uint64
//go:noescape
func _neg13(c, a, p fe)
//go:noescape
func double13(c, a, p fe)
//go:noescape
func mul13(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_13(c, a, b, p fe, inp uint64)
//go:noescape
func eq14(a, b fe) bool
//go:noescape
func mul_two_14(a fe)
//go:noescape
func div_two_14(a fe)
//go:noescape
func cpy14(dst, src fe)
//go:noescape
func cmp14(a, b fe) int8
//go:noescape
func add14(c, a, b, p fe)
//go:noescape
func addn14(a, b fe) uint64
//go:noescape
func sub14(c, a, b, p fe)
//go:noescape
func subn14(a, b fe) uint64
//go:noescape
func _neg14(c, a, p fe)
//go:noescape
func double14(c, a, p fe)
//go:noescape
func mul14(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_14(c, a, b, p fe, inp uint64)
//go:noescape
func eq15(a, b fe) bool
//go:noescape
func mul_two_15(a fe)
//go:noescape
func div_two_15(a fe)
//go:noescape
func cpy15(dst, src fe)
//go:noescape
func cmp15(a, b fe) int8
//go:noescape
func add15(c, a, b, p fe)
//go:noescape
func addn15(a, b fe) uint64
//go:noescape
func sub15(c, a, b, p fe)
//go:noescape
func subn15(a, b fe) uint64
//go:noescape
func _neg15(c, a, p fe)
//go:noescape
func double15(c, a, p fe)
//go:noescape
func mul15(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_15(c, a, b, p fe, inp uint64)
//go:noescape
func eq16(a, b fe) bool
//go:noescape
func mul_two_16(a fe)
//go:noescape
func div_two_16(a fe)
//go:noescape
func cpy16(dst, src fe)
//go:noescape
func cmp16(a, b fe) int8
//go:noescape
func add16(c, a, b, p fe)
//go:noescape
func addn16(a, b fe) uint64
//go:noescape
func sub16(c, a, b, p fe)
//go:noescape
func subn16(a, b fe) uint64
//go:noescape
func _neg16(c, a, p fe)
//go:noescape
func double16(c, a, p fe)
//go:noescape
func mul16(c, a, b, p fe, inp uint64)
//go:noescape
func mul_no_adx_bmi2_16(c, a, b, p fe, inp uint64)