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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
|
# qhasm: int64 tp
# qhasm: int64 pos
# qhasm: int64 b
# qhasm: int64 basep
# qhasm: input tp
# qhasm: input pos
# qhasm: input b
# qhasm: input basep
# qhasm: int64 mask
# qhasm: int64 u
# qhasm: int64 tysubx0
# qhasm: int64 tysubx1
# qhasm: int64 tysubx2
# qhasm: int64 tysubx3
# qhasm: int64 txaddy0
# qhasm: int64 txaddy1
# qhasm: int64 txaddy2
# qhasm: int64 txaddy3
# qhasm: int64 tt2d0
# qhasm: int64 tt2d1
# qhasm: int64 tt2d2
# qhasm: int64 tt2d3
# qhasm: int64 tt0
# qhasm: int64 tt1
# qhasm: int64 tt2
# qhasm: int64 tt3
# qhasm: int64 subt0
# qhasm: int64 subt1
# qhasm: int64 t
# qhasm: stack64 tp_stack
# qhasm: int64 caller1
# qhasm: int64 caller2
# qhasm: int64 caller3
# qhasm: int64 caller4
# qhasm: int64 caller5
# qhasm: int64 caller6
# qhasm: int64 caller7
# qhasm: caller caller1
# qhasm: caller caller2
# qhasm: caller caller3
# qhasm: caller caller4
# qhasm: caller caller5
# qhasm: caller caller6
# qhasm: caller caller7
# qhasm: stack64 caller1_stack
# qhasm: stack64 caller2_stack
# qhasm: stack64 caller3_stack
# qhasm: stack64 caller4_stack
# qhasm: stack64 caller5_stack
# qhasm: stack64 caller6_stack
# qhasm: stack64 caller7_stack
# qhasm: enter crypto_sign_ed25519_amd64_64_choose_t
.text
.p2align 5
.globl _crypto_sign_ed25519_amd64_64_choose_t
.globl crypto_sign_ed25519_amd64_64_choose_t
_crypto_sign_ed25519_amd64_64_choose_t:
crypto_sign_ed25519_amd64_64_choose_t:
mov %rsp,%r11
and $31,%r11
add $64,%r11
sub %r11,%rsp
# qhasm: caller1_stack = caller1
# asm 1: movq <caller1=int64#9,>caller1_stack=stack64#1
# asm 2: movq <caller1=%r11,>caller1_stack=0(%rsp)
movq %r11,0(%rsp)
# qhasm: caller2_stack = caller2
# asm 1: movq <caller2=int64#10,>caller2_stack=stack64#2
# asm 2: movq <caller2=%r12,>caller2_stack=8(%rsp)
movq %r12,8(%rsp)
# qhasm: caller3_stack = caller3
# asm 1: movq <caller3=int64#11,>caller3_stack=stack64#3
# asm 2: movq <caller3=%r13,>caller3_stack=16(%rsp)
movq %r13,16(%rsp)
# qhasm: caller4_stack = caller4
# asm 1: movq <caller4=int64#12,>caller4_stack=stack64#4
# asm 2: movq <caller4=%r14,>caller4_stack=24(%rsp)
movq %r14,24(%rsp)
# qhasm: caller5_stack = caller5
# asm 1: movq <caller5=int64#13,>caller5_stack=stack64#5
# asm 2: movq <caller5=%r15,>caller5_stack=32(%rsp)
movq %r15,32(%rsp)
# qhasm: caller6_stack = caller6
# asm 1: movq <caller6=int64#14,>caller6_stack=stack64#6
# asm 2: movq <caller6=%rbx,>caller6_stack=40(%rsp)
movq %rbx,40(%rsp)
# qhasm: caller7_stack = caller7
# asm 1: movq <caller7=int64#15,>caller7_stack=stack64#7
# asm 2: movq <caller7=%rbp,>caller7_stack=48(%rsp)
movq %rbp,48(%rsp)
# qhasm: tp_stack = tp
# asm 1: movq <tp=int64#1,>tp_stack=stack64#8
# asm 2: movq <tp=%rdi,>tp_stack=56(%rsp)
movq %rdi,56(%rsp)
# qhasm: pos *= 768
# asm 1: imulq $768,<pos=int64#2,>pos=int64#1
# asm 2: imulq $768,<pos=%rsi,>pos=%rdi
imulq $768,%rsi,%rdi
# qhasm: mask = b
# asm 1: mov <b=int64#3,>mask=int64#2
# asm 2: mov <b=%rdx,>mask=%rsi
mov %rdx,%rsi
# qhasm: (int64) mask >>= 7
# asm 1: sar $7,<mask=int64#2
# asm 2: sar $7,<mask=%rsi
sar $7,%rsi
# qhasm: u = b
# asm 1: mov <b=int64#3,>u=int64#5
# asm 2: mov <b=%rdx,>u=%r8
mov %rdx,%r8
# qhasm: u += mask
# asm 1: add <mask=int64#2,<u=int64#5
# asm 2: add <mask=%rsi,<u=%r8
add %rsi,%r8
# qhasm: u ^= mask
# asm 1: xor <mask=int64#2,<u=int64#5
# asm 2: xor <mask=%rsi,<u=%r8
xor %rsi,%r8
# qhasm: tysubx0 = 1
# asm 1: mov $1,>tysubx0=int64#2
# asm 2: mov $1,>tysubx0=%rsi
mov $1,%rsi
# qhasm: tysubx1 = 0
# asm 1: mov $0,>tysubx1=int64#6
# asm 2: mov $0,>tysubx1=%r9
mov $0,%r9
# qhasm: tysubx2 = 0
# asm 1: mov $0,>tysubx2=int64#7
# asm 2: mov $0,>tysubx2=%rax
mov $0,%rax
# qhasm: tysubx3 = 0
# asm 1: mov $0,>tysubx3=int64#8
# asm 2: mov $0,>tysubx3=%r10
mov $0,%r10
# qhasm: txaddy0 = 1
# asm 1: mov $1,>txaddy0=int64#9
# asm 2: mov $1,>txaddy0=%r11
mov $1,%r11
# qhasm: txaddy1 = 0
# asm 1: mov $0,>txaddy1=int64#10
# asm 2: mov $0,>txaddy1=%r12
mov $0,%r12
# qhasm: txaddy2 = 0
# asm 1: mov $0,>txaddy2=int64#11
# asm 2: mov $0,>txaddy2=%r13
mov $0,%r13
# qhasm: txaddy3 = 0
# asm 1: mov $0,>txaddy3=int64#12
# asm 2: mov $0,>txaddy3=%r14
mov $0,%r14
# qhasm: =? u - 1
# asm 1: cmp $1,<u=int64#5
# asm 2: cmp $1,<u=%r8
cmp $1,%r8
# qhasm: t = *(uint64 *)(basep + 0 + pos)
# asm 1: movq 0(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 0(<basep=%rcx,<pos=%rdi),>t=%r15
movq 0(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 8 + pos)
# asm 1: movq 8(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 8(<basep=%rcx,<pos=%rdi),>t=%r15
movq 8(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 16 + pos)
# asm 1: movq 16(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 16(<basep=%rcx,<pos=%rdi),>t=%r15
movq 16(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 24 + pos)
# asm 1: movq 24(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 24(<basep=%rcx,<pos=%rdi),>t=%r15
movq 24(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 32 + pos)
# asm 1: movq 32(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 32(<basep=%rcx,<pos=%rdi),>t=%r15
movq 32(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 40 + pos)
# asm 1: movq 40(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 40(<basep=%rcx,<pos=%rdi),>t=%r15
movq 40(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 48 + pos)
# asm 1: movq 48(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 48(<basep=%rcx,<pos=%rdi),>t=%r15
movq 48(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 56 + pos)
# asm 1: movq 56(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 56(<basep=%rcx,<pos=%rdi),>t=%r15
movq 56(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 2
# asm 1: cmp $2,<u=int64#5
# asm 2: cmp $2,<u=%r8
cmp $2,%r8
# qhasm: t = *(uint64 *)(basep + 96 + pos)
# asm 1: movq 96(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 96(<basep=%rcx,<pos=%rdi),>t=%r15
movq 96(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 104 + pos)
# asm 1: movq 104(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 104(<basep=%rcx,<pos=%rdi),>t=%r15
movq 104(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 112 + pos)
# asm 1: movq 112(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 112(<basep=%rcx,<pos=%rdi),>t=%r15
movq 112(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 120 + pos)
# asm 1: movq 120(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 120(<basep=%rcx,<pos=%rdi),>t=%r15
movq 120(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 128 + pos)
# asm 1: movq 128(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 128(<basep=%rcx,<pos=%rdi),>t=%r15
movq 128(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 136 + pos)
# asm 1: movq 136(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 136(<basep=%rcx,<pos=%rdi),>t=%r15
movq 136(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 144 + pos)
# asm 1: movq 144(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 144(<basep=%rcx,<pos=%rdi),>t=%r15
movq 144(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 152 + pos)
# asm 1: movq 152(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 152(<basep=%rcx,<pos=%rdi),>t=%r15
movq 152(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 3
# asm 1: cmp $3,<u=int64#5
# asm 2: cmp $3,<u=%r8
cmp $3,%r8
# qhasm: t = *(uint64 *)(basep + 192 + pos)
# asm 1: movq 192(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 192(<basep=%rcx,<pos=%rdi),>t=%r15
movq 192(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 200 + pos)
# asm 1: movq 200(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 200(<basep=%rcx,<pos=%rdi),>t=%r15
movq 200(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 208 + pos)
# asm 1: movq 208(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 208(<basep=%rcx,<pos=%rdi),>t=%r15
movq 208(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 216 + pos)
# asm 1: movq 216(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 216(<basep=%rcx,<pos=%rdi),>t=%r15
movq 216(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 224 + pos)
# asm 1: movq 224(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 224(<basep=%rcx,<pos=%rdi),>t=%r15
movq 224(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 232 + pos)
# asm 1: movq 232(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 232(<basep=%rcx,<pos=%rdi),>t=%r15
movq 232(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 240 + pos)
# asm 1: movq 240(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 240(<basep=%rcx,<pos=%rdi),>t=%r15
movq 240(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 248 + pos)
# asm 1: movq 248(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 248(<basep=%rcx,<pos=%rdi),>t=%r15
movq 248(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 4
# asm 1: cmp $4,<u=int64#5
# asm 2: cmp $4,<u=%r8
cmp $4,%r8
# qhasm: t = *(uint64 *)(basep + 288 + pos)
# asm 1: movq 288(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 288(<basep=%rcx,<pos=%rdi),>t=%r15
movq 288(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 296 + pos)
# asm 1: movq 296(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 296(<basep=%rcx,<pos=%rdi),>t=%r15
movq 296(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 304 + pos)
# asm 1: movq 304(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 304(<basep=%rcx,<pos=%rdi),>t=%r15
movq 304(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 312 + pos)
# asm 1: movq 312(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 312(<basep=%rcx,<pos=%rdi),>t=%r15
movq 312(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 320 + pos)
# asm 1: movq 320(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 320(<basep=%rcx,<pos=%rdi),>t=%r15
movq 320(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 328 + pos)
# asm 1: movq 328(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 328(<basep=%rcx,<pos=%rdi),>t=%r15
movq 328(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 336 + pos)
# asm 1: movq 336(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 336(<basep=%rcx,<pos=%rdi),>t=%r15
movq 336(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 344 + pos)
# asm 1: movq 344(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 344(<basep=%rcx,<pos=%rdi),>t=%r15
movq 344(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 5
# asm 1: cmp $5,<u=int64#5
# asm 2: cmp $5,<u=%r8
cmp $5,%r8
# qhasm: t = *(uint64 *)(basep + 384 + pos)
# asm 1: movq 384(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 384(<basep=%rcx,<pos=%rdi),>t=%r15
movq 384(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 392 + pos)
# asm 1: movq 392(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 392(<basep=%rcx,<pos=%rdi),>t=%r15
movq 392(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 400 + pos)
# asm 1: movq 400(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 400(<basep=%rcx,<pos=%rdi),>t=%r15
movq 400(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 408 + pos)
# asm 1: movq 408(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 408(<basep=%rcx,<pos=%rdi),>t=%r15
movq 408(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 416 + pos)
# asm 1: movq 416(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 416(<basep=%rcx,<pos=%rdi),>t=%r15
movq 416(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 424 + pos)
# asm 1: movq 424(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 424(<basep=%rcx,<pos=%rdi),>t=%r15
movq 424(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 432 + pos)
# asm 1: movq 432(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 432(<basep=%rcx,<pos=%rdi),>t=%r15
movq 432(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 440 + pos)
# asm 1: movq 440(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 440(<basep=%rcx,<pos=%rdi),>t=%r15
movq 440(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 6
# asm 1: cmp $6,<u=int64#5
# asm 2: cmp $6,<u=%r8
cmp $6,%r8
# qhasm: t = *(uint64 *)(basep + 480 + pos)
# asm 1: movq 480(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 480(<basep=%rcx,<pos=%rdi),>t=%r15
movq 480(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 488 + pos)
# asm 1: movq 488(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 488(<basep=%rcx,<pos=%rdi),>t=%r15
movq 488(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 496 + pos)
# asm 1: movq 496(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 496(<basep=%rcx,<pos=%rdi),>t=%r15
movq 496(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 504 + pos)
# asm 1: movq 504(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 504(<basep=%rcx,<pos=%rdi),>t=%r15
movq 504(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 512 + pos)
# asm 1: movq 512(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 512(<basep=%rcx,<pos=%rdi),>t=%r15
movq 512(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 520 + pos)
# asm 1: movq 520(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 520(<basep=%rcx,<pos=%rdi),>t=%r15
movq 520(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 528 + pos)
# asm 1: movq 528(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 528(<basep=%rcx,<pos=%rdi),>t=%r15
movq 528(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 536 + pos)
# asm 1: movq 536(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 536(<basep=%rcx,<pos=%rdi),>t=%r15
movq 536(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 7
# asm 1: cmp $7,<u=int64#5
# asm 2: cmp $7,<u=%r8
cmp $7,%r8
# qhasm: t = *(uint64 *)(basep + 576 + pos)
# asm 1: movq 576(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 576(<basep=%rcx,<pos=%rdi),>t=%r15
movq 576(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 584 + pos)
# asm 1: movq 584(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 584(<basep=%rcx,<pos=%rdi),>t=%r15
movq 584(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 592 + pos)
# asm 1: movq 592(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 592(<basep=%rcx,<pos=%rdi),>t=%r15
movq 592(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 600 + pos)
# asm 1: movq 600(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 600(<basep=%rcx,<pos=%rdi),>t=%r15
movq 600(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 608 + pos)
# asm 1: movq 608(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 608(<basep=%rcx,<pos=%rdi),>t=%r15
movq 608(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 616 + pos)
# asm 1: movq 616(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 616(<basep=%rcx,<pos=%rdi),>t=%r15
movq 616(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 624 + pos)
# asm 1: movq 624(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 624(<basep=%rcx,<pos=%rdi),>t=%r15
movq 624(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 632 + pos)
# asm 1: movq 632(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 632(<basep=%rcx,<pos=%rdi),>t=%r15
movq 632(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: =? u - 8
# asm 1: cmp $8,<u=int64#5
# asm 2: cmp $8,<u=%r8
cmp $8,%r8
# qhasm: t = *(uint64 *)(basep + 672 + pos)
# asm 1: movq 672(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 672(<basep=%rcx,<pos=%rdi),>t=%r15
movq 672(%rcx,%rdi),%r15
# qhasm: tysubx0 = t if =
# asm 1: cmove <t=int64#13,<tysubx0=int64#2
# asm 2: cmove <t=%r15,<tysubx0=%rsi
cmove %r15,%rsi
# qhasm: t = *(uint64 *)(basep + 680 + pos)
# asm 1: movq 680(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 680(<basep=%rcx,<pos=%rdi),>t=%r15
movq 680(%rcx,%rdi),%r15
# qhasm: tysubx1 = t if =
# asm 1: cmove <t=int64#13,<tysubx1=int64#6
# asm 2: cmove <t=%r15,<tysubx1=%r9
cmove %r15,%r9
# qhasm: t = *(uint64 *)(basep + 688 + pos)
# asm 1: movq 688(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 688(<basep=%rcx,<pos=%rdi),>t=%r15
movq 688(%rcx,%rdi),%r15
# qhasm: tysubx2 = t if =
# asm 1: cmove <t=int64#13,<tysubx2=int64#7
# asm 2: cmove <t=%r15,<tysubx2=%rax
cmove %r15,%rax
# qhasm: t = *(uint64 *)(basep + 696 + pos)
# asm 1: movq 696(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 696(<basep=%rcx,<pos=%rdi),>t=%r15
movq 696(%rcx,%rdi),%r15
# qhasm: tysubx3 = t if =
# asm 1: cmove <t=int64#13,<tysubx3=int64#8
# asm 2: cmove <t=%r15,<tysubx3=%r10
cmove %r15,%r10
# qhasm: t = *(uint64 *)(basep + 704 + pos)
# asm 1: movq 704(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 704(<basep=%rcx,<pos=%rdi),>t=%r15
movq 704(%rcx,%rdi),%r15
# qhasm: txaddy0 = t if =
# asm 1: cmove <t=int64#13,<txaddy0=int64#9
# asm 2: cmove <t=%r15,<txaddy0=%r11
cmove %r15,%r11
# qhasm: t = *(uint64 *)(basep + 712 + pos)
# asm 1: movq 712(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 712(<basep=%rcx,<pos=%rdi),>t=%r15
movq 712(%rcx,%rdi),%r15
# qhasm: txaddy1 = t if =
# asm 1: cmove <t=int64#13,<txaddy1=int64#10
# asm 2: cmove <t=%r15,<txaddy1=%r12
cmove %r15,%r12
# qhasm: t = *(uint64 *)(basep + 720 + pos)
# asm 1: movq 720(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 720(<basep=%rcx,<pos=%rdi),>t=%r15
movq 720(%rcx,%rdi),%r15
# qhasm: txaddy2 = t if =
# asm 1: cmove <t=int64#13,<txaddy2=int64#11
# asm 2: cmove <t=%r15,<txaddy2=%r13
cmove %r15,%r13
# qhasm: t = *(uint64 *)(basep + 728 + pos)
# asm 1: movq 728(<basep=int64#4,<pos=int64#1),>t=int64#13
# asm 2: movq 728(<basep=%rcx,<pos=%rdi),>t=%r15
movq 728(%rcx,%rdi),%r15
# qhasm: txaddy3 = t if =
# asm 1: cmove <t=int64#13,<txaddy3=int64#12
# asm 2: cmove <t=%r15,<txaddy3=%r14
cmove %r15,%r14
# qhasm: signed<? b - 0
# asm 1: cmp $0,<b=int64#3
# asm 2: cmp $0,<b=%rdx
cmp $0,%rdx
# qhasm: t = tysubx0
# asm 1: mov <tysubx0=int64#2,>t=int64#13
# asm 2: mov <tysubx0=%rsi,>t=%r15
mov %rsi,%r15
# qhasm: tysubx0 = txaddy0 if signed<
# asm 1: cmovl <txaddy0=int64#9,<tysubx0=int64#2
# asm 2: cmovl <txaddy0=%r11,<tysubx0=%rsi
cmovl %r11,%rsi
# qhasm: txaddy0 = t if signed<
# asm 1: cmovl <t=int64#13,<txaddy0=int64#9
# asm 2: cmovl <t=%r15,<txaddy0=%r11
cmovl %r15,%r11
# qhasm: t = tysubx1
# asm 1: mov <tysubx1=int64#6,>t=int64#13
# asm 2: mov <tysubx1=%r9,>t=%r15
mov %r9,%r15
# qhasm: tysubx1 = txaddy1 if signed<
# asm 1: cmovl <txaddy1=int64#10,<tysubx1=int64#6
# asm 2: cmovl <txaddy1=%r12,<tysubx1=%r9
cmovl %r12,%r9
# qhasm: txaddy1 = t if signed<
# asm 1: cmovl <t=int64#13,<txaddy1=int64#10
# asm 2: cmovl <t=%r15,<txaddy1=%r12
cmovl %r15,%r12
# qhasm: t = tysubx2
# asm 1: mov <tysubx2=int64#7,>t=int64#13
# asm 2: mov <tysubx2=%rax,>t=%r15
mov %rax,%r15
# qhasm: tysubx2 = txaddy2 if signed<
# asm 1: cmovl <txaddy2=int64#11,<tysubx2=int64#7
# asm 2: cmovl <txaddy2=%r13,<tysubx2=%rax
cmovl %r13,%rax
# qhasm: txaddy2 = t if signed<
# asm 1: cmovl <t=int64#13,<txaddy2=int64#11
# asm 2: cmovl <t=%r15,<txaddy2=%r13
cmovl %r15,%r13
# qhasm: t = tysubx3
# asm 1: mov <tysubx3=int64#8,>t=int64#13
# asm 2: mov <tysubx3=%r10,>t=%r15
mov %r10,%r15
# qhasm: tysubx3 = txaddy3 if signed<
# asm 1: cmovl <txaddy3=int64#12,<tysubx3=int64#8
# asm 2: cmovl <txaddy3=%r14,<tysubx3=%r10
cmovl %r14,%r10
# qhasm: txaddy3 = t if signed<
# asm 1: cmovl <t=int64#13,<txaddy3=int64#12
# asm 2: cmovl <t=%r15,<txaddy3=%r14
cmovl %r15,%r14
# qhasm: tp = tp_stack
# asm 1: movq <tp_stack=stack64#8,>tp=int64#13
# asm 2: movq <tp_stack=56(%rsp),>tp=%r15
movq 56(%rsp),%r15
# qhasm: *(uint64 *)(tp + 0) = tysubx0
# asm 1: movq <tysubx0=int64#2,0(<tp=int64#13)
# asm 2: movq <tysubx0=%rsi,0(<tp=%r15)
movq %rsi,0(%r15)
# qhasm: *(uint64 *)(tp + 8) = tysubx1
# asm 1: movq <tysubx1=int64#6,8(<tp=int64#13)
# asm 2: movq <tysubx1=%r9,8(<tp=%r15)
movq %r9,8(%r15)
# qhasm: *(uint64 *)(tp + 16) = tysubx2
# asm 1: movq <tysubx2=int64#7,16(<tp=int64#13)
# asm 2: movq <tysubx2=%rax,16(<tp=%r15)
movq %rax,16(%r15)
# qhasm: *(uint64 *)(tp + 24) = tysubx3
# asm 1: movq <tysubx3=int64#8,24(<tp=int64#13)
# asm 2: movq <tysubx3=%r10,24(<tp=%r15)
movq %r10,24(%r15)
# qhasm: *(uint64 *)(tp + 32) = txaddy0
# asm 1: movq <txaddy0=int64#9,32(<tp=int64#13)
# asm 2: movq <txaddy0=%r11,32(<tp=%r15)
movq %r11,32(%r15)
# qhasm: *(uint64 *)(tp + 40) = txaddy1
# asm 1: movq <txaddy1=int64#10,40(<tp=int64#13)
# asm 2: movq <txaddy1=%r12,40(<tp=%r15)
movq %r12,40(%r15)
# qhasm: *(uint64 *)(tp + 48) = txaddy2
# asm 1: movq <txaddy2=int64#11,48(<tp=int64#13)
# asm 2: movq <txaddy2=%r13,48(<tp=%r15)
movq %r13,48(%r15)
# qhasm: *(uint64 *)(tp + 56) = txaddy3
# asm 1: movq <txaddy3=int64#12,56(<tp=int64#13)
# asm 2: movq <txaddy3=%r14,56(<tp=%r15)
movq %r14,56(%r15)
# qhasm: tt2d0 = 0
# asm 1: mov $0,>tt2d0=int64#2
# asm 2: mov $0,>tt2d0=%rsi
mov $0,%rsi
# qhasm: tt2d1 = 0
# asm 1: mov $0,>tt2d1=int64#6
# asm 2: mov $0,>tt2d1=%r9
mov $0,%r9
# qhasm: tt2d2 = 0
# asm 1: mov $0,>tt2d2=int64#7
# asm 2: mov $0,>tt2d2=%rax
mov $0,%rax
# qhasm: tt2d3 = 0
# asm 1: mov $0,>tt2d3=int64#8
# asm 2: mov $0,>tt2d3=%r10
mov $0,%r10
# qhasm: =? u - 1
# asm 1: cmp $1,<u=int64#5
# asm 2: cmp $1,<u=%r8
cmp $1,%r8
# qhasm: t = *(uint64 *)(basep + 64 + pos)
# asm 1: movq 64(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 64(<basep=%rcx,<pos=%rdi),>t=%r11
movq 64(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 72 + pos)
# asm 1: movq 72(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 72(<basep=%rcx,<pos=%rdi),>t=%r11
movq 72(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 80 + pos)
# asm 1: movq 80(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 80(<basep=%rcx,<pos=%rdi),>t=%r11
movq 80(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 88 + pos)
# asm 1: movq 88(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 88(<basep=%rcx,<pos=%rdi),>t=%r11
movq 88(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 2
# asm 1: cmp $2,<u=int64#5
# asm 2: cmp $2,<u=%r8
cmp $2,%r8
# qhasm: t = *(uint64 *)(basep + 160 + pos)
# asm 1: movq 160(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 160(<basep=%rcx,<pos=%rdi),>t=%r11
movq 160(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 168 + pos)
# asm 1: movq 168(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 168(<basep=%rcx,<pos=%rdi),>t=%r11
movq 168(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 176 + pos)
# asm 1: movq 176(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 176(<basep=%rcx,<pos=%rdi),>t=%r11
movq 176(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 184 + pos)
# asm 1: movq 184(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 184(<basep=%rcx,<pos=%rdi),>t=%r11
movq 184(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 3
# asm 1: cmp $3,<u=int64#5
# asm 2: cmp $3,<u=%r8
cmp $3,%r8
# qhasm: t = *(uint64 *)(basep + 256 + pos)
# asm 1: movq 256(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 256(<basep=%rcx,<pos=%rdi),>t=%r11
movq 256(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 264 + pos)
# asm 1: movq 264(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 264(<basep=%rcx,<pos=%rdi),>t=%r11
movq 264(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 272 + pos)
# asm 1: movq 272(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 272(<basep=%rcx,<pos=%rdi),>t=%r11
movq 272(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 280 + pos)
# asm 1: movq 280(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 280(<basep=%rcx,<pos=%rdi),>t=%r11
movq 280(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 4
# asm 1: cmp $4,<u=int64#5
# asm 2: cmp $4,<u=%r8
cmp $4,%r8
# qhasm: t = *(uint64 *)(basep + 352 + pos)
# asm 1: movq 352(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 352(<basep=%rcx,<pos=%rdi),>t=%r11
movq 352(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 360 + pos)
# asm 1: movq 360(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 360(<basep=%rcx,<pos=%rdi),>t=%r11
movq 360(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 368 + pos)
# asm 1: movq 368(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 368(<basep=%rcx,<pos=%rdi),>t=%r11
movq 368(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 376 + pos)
# asm 1: movq 376(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 376(<basep=%rcx,<pos=%rdi),>t=%r11
movq 376(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 5
# asm 1: cmp $5,<u=int64#5
# asm 2: cmp $5,<u=%r8
cmp $5,%r8
# qhasm: t = *(uint64 *)(basep + 448 + pos)
# asm 1: movq 448(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 448(<basep=%rcx,<pos=%rdi),>t=%r11
movq 448(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 456 + pos)
# asm 1: movq 456(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 456(<basep=%rcx,<pos=%rdi),>t=%r11
movq 456(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 464 + pos)
# asm 1: movq 464(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 464(<basep=%rcx,<pos=%rdi),>t=%r11
movq 464(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 472 + pos)
# asm 1: movq 472(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 472(<basep=%rcx,<pos=%rdi),>t=%r11
movq 472(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 6
# asm 1: cmp $6,<u=int64#5
# asm 2: cmp $6,<u=%r8
cmp $6,%r8
# qhasm: t = *(uint64 *)(basep + 544 + pos)
# asm 1: movq 544(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 544(<basep=%rcx,<pos=%rdi),>t=%r11
movq 544(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 552 + pos)
# asm 1: movq 552(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 552(<basep=%rcx,<pos=%rdi),>t=%r11
movq 552(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 560 + pos)
# asm 1: movq 560(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 560(<basep=%rcx,<pos=%rdi),>t=%r11
movq 560(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 568 + pos)
# asm 1: movq 568(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 568(<basep=%rcx,<pos=%rdi),>t=%r11
movq 568(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 7
# asm 1: cmp $7,<u=int64#5
# asm 2: cmp $7,<u=%r8
cmp $7,%r8
# qhasm: t = *(uint64 *)(basep + 640 + pos)
# asm 1: movq 640(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 640(<basep=%rcx,<pos=%rdi),>t=%r11
movq 640(%rcx,%rdi),%r11
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#9,<tt2d0=int64#2
# asm 2: cmove <t=%r11,<tt2d0=%rsi
cmove %r11,%rsi
# qhasm: t = *(uint64 *)(basep + 648 + pos)
# asm 1: movq 648(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 648(<basep=%rcx,<pos=%rdi),>t=%r11
movq 648(%rcx,%rdi),%r11
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#9,<tt2d1=int64#6
# asm 2: cmove <t=%r11,<tt2d1=%r9
cmove %r11,%r9
# qhasm: t = *(uint64 *)(basep + 656 + pos)
# asm 1: movq 656(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 656(<basep=%rcx,<pos=%rdi),>t=%r11
movq 656(%rcx,%rdi),%r11
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#9,<tt2d2=int64#7
# asm 2: cmove <t=%r11,<tt2d2=%rax
cmove %r11,%rax
# qhasm: t = *(uint64 *)(basep + 664 + pos)
# asm 1: movq 664(<basep=int64#4,<pos=int64#1),>t=int64#9
# asm 2: movq 664(<basep=%rcx,<pos=%rdi),>t=%r11
movq 664(%rcx,%rdi),%r11
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#9,<tt2d3=int64#8
# asm 2: cmove <t=%r11,<tt2d3=%r10
cmove %r11,%r10
# qhasm: =? u - 8
# asm 1: cmp $8,<u=int64#5
# asm 2: cmp $8,<u=%r8
cmp $8,%r8
# qhasm: t = *(uint64 *)(basep + 736 + pos)
# asm 1: movq 736(<basep=int64#4,<pos=int64#1),>t=int64#5
# asm 2: movq 736(<basep=%rcx,<pos=%rdi),>t=%r8
movq 736(%rcx,%rdi),%r8
# qhasm: tt2d0 = t if =
# asm 1: cmove <t=int64#5,<tt2d0=int64#2
# asm 2: cmove <t=%r8,<tt2d0=%rsi
cmove %r8,%rsi
# qhasm: t = *(uint64 *)(basep + 744 + pos)
# asm 1: movq 744(<basep=int64#4,<pos=int64#1),>t=int64#5
# asm 2: movq 744(<basep=%rcx,<pos=%rdi),>t=%r8
movq 744(%rcx,%rdi),%r8
# qhasm: tt2d1 = t if =
# asm 1: cmove <t=int64#5,<tt2d1=int64#6
# asm 2: cmove <t=%r8,<tt2d1=%r9
cmove %r8,%r9
# qhasm: t = *(uint64 *)(basep + 752 + pos)
# asm 1: movq 752(<basep=int64#4,<pos=int64#1),>t=int64#5
# asm 2: movq 752(<basep=%rcx,<pos=%rdi),>t=%r8
movq 752(%rcx,%rdi),%r8
# qhasm: tt2d2 = t if =
# asm 1: cmove <t=int64#5,<tt2d2=int64#7
# asm 2: cmove <t=%r8,<tt2d2=%rax
cmove %r8,%rax
# qhasm: t = *(uint64 *)(basep + 760 + pos)
# asm 1: movq 760(<basep=int64#4,<pos=int64#1),>t=int64#1
# asm 2: movq 760(<basep=%rcx,<pos=%rdi),>t=%rdi
movq 760(%rcx,%rdi),%rdi
# qhasm: tt2d3 = t if =
# asm 1: cmove <t=int64#1,<tt2d3=int64#8
# asm 2: cmove <t=%rdi,<tt2d3=%r10
cmove %rdi,%r10
# qhasm: tt0 = 0
# asm 1: mov $0,>tt0=int64#1
# asm 2: mov $0,>tt0=%rdi
mov $0,%rdi
# qhasm: tt1 = 0
# asm 1: mov $0,>tt1=int64#4
# asm 2: mov $0,>tt1=%rcx
mov $0,%rcx
# qhasm: tt2 = 0
# asm 1: mov $0,>tt2=int64#5
# asm 2: mov $0,>tt2=%r8
mov $0,%r8
# qhasm: tt3 = 0
# asm 1: mov $0,>tt3=int64#9
# asm 2: mov $0,>tt3=%r11
mov $0,%r11
# qhasm: carry? tt0 -= tt2d0
# asm 1: sub <tt2d0=int64#2,<tt0=int64#1
# asm 2: sub <tt2d0=%rsi,<tt0=%rdi
sub %rsi,%rdi
# qhasm: carry? tt1 -= tt2d1 - carry
# asm 1: sbb <tt2d1=int64#6,<tt1=int64#4
# asm 2: sbb <tt2d1=%r9,<tt1=%rcx
sbb %r9,%rcx
# qhasm: carry? tt2 -= tt2d2 - carry
# asm 1: sbb <tt2d2=int64#7,<tt2=int64#5
# asm 2: sbb <tt2d2=%rax,<tt2=%r8
sbb %rax,%r8
# qhasm: carry? tt3 -= tt2d3 - carry
# asm 1: sbb <tt2d3=int64#8,<tt3=int64#9
# asm 2: sbb <tt2d3=%r10,<tt3=%r11
sbb %r10,%r11
# qhasm: subt0 = 0
# asm 1: mov $0,>subt0=int64#10
# asm 2: mov $0,>subt0=%r12
mov $0,%r12
# qhasm: subt1 = 38
# asm 1: mov $38,>subt1=int64#11
# asm 2: mov $38,>subt1=%r13
mov $38,%r13
# qhasm: subt1 = subt0 if !carry
# asm 1: cmovae <subt0=int64#10,<subt1=int64#11
# asm 2: cmovae <subt0=%r12,<subt1=%r13
cmovae %r12,%r13
# qhasm: carry? tt0 -= subt1
# asm 1: sub <subt1=int64#11,<tt0=int64#1
# asm 2: sub <subt1=%r13,<tt0=%rdi
sub %r13,%rdi
# qhasm: carry? tt1 -= subt0 - carry
# asm 1: sbb <subt0=int64#10,<tt1=int64#4
# asm 2: sbb <subt0=%r12,<tt1=%rcx
sbb %r12,%rcx
# qhasm: carry? tt2 -= subt0 - carry
# asm 1: sbb <subt0=int64#10,<tt2=int64#5
# asm 2: sbb <subt0=%r12,<tt2=%r8
sbb %r12,%r8
# qhasm: carry? tt3 -= subt0 - carry
# asm 1: sbb <subt0=int64#10,<tt3=int64#9
# asm 2: sbb <subt0=%r12,<tt3=%r11
sbb %r12,%r11
# qhasm: subt0 = subt1 if carry
# asm 1: cmovc <subt1=int64#11,<subt0=int64#10
# asm 2: cmovc <subt1=%r13,<subt0=%r12
cmovc %r13,%r12
# qhasm: tt0 -= subt0
# asm 1: sub <subt0=int64#10,<tt0=int64#1
# asm 2: sub <subt0=%r12,<tt0=%rdi
sub %r12,%rdi
# qhasm: signed<? b - 0
# asm 1: cmp $0,<b=int64#3
# asm 2: cmp $0,<b=%rdx
cmp $0,%rdx
# qhasm: tt2d0 = tt0 if signed<
# asm 1: cmovl <tt0=int64#1,<tt2d0=int64#2
# asm 2: cmovl <tt0=%rdi,<tt2d0=%rsi
cmovl %rdi,%rsi
# qhasm: tt2d1 = tt1 if signed<
# asm 1: cmovl <tt1=int64#4,<tt2d1=int64#6
# asm 2: cmovl <tt1=%rcx,<tt2d1=%r9
cmovl %rcx,%r9
# qhasm: tt2d2 = tt2 if signed<
# asm 1: cmovl <tt2=int64#5,<tt2d2=int64#7
# asm 2: cmovl <tt2=%r8,<tt2d2=%rax
cmovl %r8,%rax
# qhasm: tt2d3 = tt3 if signed<
# asm 1: cmovl <tt3=int64#9,<tt2d3=int64#8
# asm 2: cmovl <tt3=%r11,<tt2d3=%r10
cmovl %r11,%r10
# qhasm: *(uint64 *)(tp + 64) = tt2d0
# asm 1: movq <tt2d0=int64#2,64(<tp=int64#13)
# asm 2: movq <tt2d0=%rsi,64(<tp=%r15)
movq %rsi,64(%r15)
# qhasm: *(uint64 *)(tp + 72) = tt2d1
# asm 1: movq <tt2d1=int64#6,72(<tp=int64#13)
# asm 2: movq <tt2d1=%r9,72(<tp=%r15)
movq %r9,72(%r15)
# qhasm: *(uint64 *)(tp + 80) = tt2d2
# asm 1: movq <tt2d2=int64#7,80(<tp=int64#13)
# asm 2: movq <tt2d2=%rax,80(<tp=%r15)
movq %rax,80(%r15)
# qhasm: *(uint64 *)(tp + 88) = tt2d3
# asm 1: movq <tt2d3=int64#8,88(<tp=int64#13)
# asm 2: movq <tt2d3=%r10,88(<tp=%r15)
movq %r10,88(%r15)
# qhasm: caller1 = caller1_stack
# asm 1: movq <caller1_stack=stack64#1,>caller1=int64#9
# asm 2: movq <caller1_stack=0(%rsp),>caller1=%r11
movq 0(%rsp),%r11
# qhasm: caller2 = caller2_stack
# asm 1: movq <caller2_stack=stack64#2,>caller2=int64#10
# asm 2: movq <caller2_stack=8(%rsp),>caller2=%r12
movq 8(%rsp),%r12
# qhasm: caller3 = caller3_stack
# asm 1: movq <caller3_stack=stack64#3,>caller3=int64#11
# asm 2: movq <caller3_stack=16(%rsp),>caller3=%r13
movq 16(%rsp),%r13
# qhasm: caller4 = caller4_stack
# asm 1: movq <caller4_stack=stack64#4,>caller4=int64#12
# asm 2: movq <caller4_stack=24(%rsp),>caller4=%r14
movq 24(%rsp),%r14
# qhasm: caller5 = caller5_stack
# asm 1: movq <caller5_stack=stack64#5,>caller5=int64#13
# asm 2: movq <caller5_stack=32(%rsp),>caller5=%r15
movq 32(%rsp),%r15
# qhasm: caller6 = caller6_stack
# asm 1: movq <caller6_stack=stack64#6,>caller6=int64#14
# asm 2: movq <caller6_stack=40(%rsp),>caller6=%rbx
movq 40(%rsp),%rbx
# qhasm: caller7 = caller7_stack
# asm 1: movq <caller7_stack=stack64#7,>caller7=int64#15
# asm 2: movq <caller7_stack=48(%rsp),>caller7=%rbp
movq 48(%rsp),%rbp
# qhasm: leave
add %r11,%rsp
mov %rdi,%rax
mov %rsi,%rdx
ret
|