summaryrefslogtreecommitdiff
path: root/arch/arm64/disassembler/decode0.c
blob: 826458769aa79a9e8f5bb19072e72906e69f3310 (plain)
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
/* GENERATED FILE */
#include <stddef.h>
#include <stdbool.h>

#include "decode.h"
#include "decode1.h"
#include "pcode.h"

int decode_spec(context *ctx, Instruction *dec)
{
	uint32_t op0, op1, op2, op3, op4;

	dec->insword = ctx->insword;
	/* GROUP: root */
	op0 = INSWORD>>31;
	op1 = (INSWORD>>25)&15;
	if(!op0 && !op1) {
		/* GROUP: reserved */
		op0 = (INSWORD>>29)&3;
		op1 = (INSWORD>>16)&0x1ff;
		if(!op0 && !op1)
			return decode_iclass_perm_undef(ctx, dec);
		if(op1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unallocate3
		if(op0)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unallocate4
		RESERVED(ENC_UNKNOWN); // group: reserved
	}
	if(op0 && !op1) {
		/* GROUP: sme */
		op0 = (INSWORD>>29)&3;
		op1 = (INSWORD>>19)&0x3f;
		op2 = (INSWORD>>17)&1;
		op3 = (INSWORD>>9)&1;
		op4 = (INSWORD>>2)&7;
		if(!(op0&2) && (op1&0x18)==0x10 && !(op4&1)) {
			/* GROUP: mortlach_32bit_prod */
			op0 = (INSWORD>>29)&1;
			op1 = (INSWORD>>24)&1;
			op2 = (INSWORD>>21)&1;
			op3 = (INSWORD>>3)&1;
			if(!op0 && !op1 && !op2 && !op3)
				return decode_iclass_mortlach_f32f32_prod(ctx, dec);
			if(!op0 && !op1 && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_48
			if(!op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_49
			if(!op0 && op1 && !op2 && !op3)
				return decode_iclass_mortlach_b16f32_prod(ctx, dec);
			if(!op0 && op1 && op2 && !op3)
				return decode_iclass_mortlach_f16f32_prod(ctx, dec);
			if(!op0 && op1 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_51
			if(op0 && !op3)
				return decode_iclass_mortlach_i8i32_prod(ctx, dec);
			if(op0 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_58
			UNMATCHED;
		}
		if(!(op0&2) && (op1&0x18)==0x18 && !(op4&2)) {
			/* GROUP: mortlach_64bit_prod */
			op0 = (INSWORD>>29)&1;
			op1 = (INSWORD>>24)&1;
			op2 = (INSWORD>>21)&1;
			if(!op0 && !op1 && !op2)
				return decode_iclass_mortlach_f64f64_prod(ctx, dec);
			if(!op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_50
			if(!op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_52
			if(op0)
				return decode_iclass_mortlach_i16i64_prod(ctx, dec);
			UNMATCHED;
		}
		if(op0==2 && !(op1&0x27) && !op2 && !(op4&4)) {
			/* GROUP: mortlach_ins */
			op0 = (INSWORD>>18)&1;
			if(!op0)
				return decode_iclass_mortlach_insert_pred(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_62
			UNMATCHED;
		}
		if(op0==2 && !(op1&0x27) && op2 && !op3) {
			/* GROUP: mortlach_ext */
			op0 = (INSWORD>>18)&1;
			if(!op0)
				return decode_iclass_mortlach_extract_pred(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_63
			UNMATCHED;
		}
		if(op0==2 && (op1&0x27)==1) {
			/* GROUP: mortlach_misc */
			op0 = (INSWORD>>22)&3;
			op1 = (INSWORD>>8)&0x7ff;
			if(!op0 && !op1)
				return decode_iclass_mortlach_zero(ctx, dec);
			if(!op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_132
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_133
			UNMATCHED;
		}
		if(op0==2 && (op1&0x27)==2 && !(op4&2)) {
			/* GROUP: mortlach_hvadd */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>17)&3;
			op2 = (INSWORD>>4)&1;
			if(!op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_64
			if(op0 && !op1 && !op2)
				return decode_iclass_mortlach_addhv(ctx, dec);
			if(op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_65
			if(op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_126
			UNMATCHED;
		}
		if(op0==3) {
			/* GROUP: mortlach_mem */
			op0 = (INSWORD>>21)&15;
			op1 = (INSWORD>>15)&0x3f;
			op2 = (INSWORD>>10)&7;
			op3 = (INSWORD>>4)&1;
			if(!(op0&9) && !op3)
				return decode_iclass_mortlach_contig_load(ctx, dec);
			if((op0&9)==1 && !op3)
				return decode_iclass_mortlach_contig_store(ctx, dec);
			if(!(op0&8) && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_70
			if((op0&14)==8 && !op1 && !op2 && !op3)
				return decode_iclass_mortlach_ctxt_ldst(ctx, dec);
			if((op0&14)==8 && !op1 && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_71
			if((op0&14)==8 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_113
			if((op0&14)==8 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_114
			if((op0&14)==10)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_72
			if((op0&14)==12)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_73
			if(op0==14 && !op3)
				return decode_iclass_mortlach_contig_qload(ctx, dec);
			if(op0==15 && !op3)
				return decode_iclass_mortlach_contig_qstore(ctx, dec);
			if((op0&14)==14 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_74
			UNMATCHED;
		}
		UNMATCHED;
	}
	if(op1==1)
		UNALLOCATED(ENC_UNKNOWN); // iclass: unallocate1
	if(op1==2) {
		/* GROUP: sve */
		op0 = INSWORD>>29;
		op1 = (INSWORD>>23)&3;
		op2 = (INSWORD>>17)&0x1f;
		op3 = (INSWORD>>10)&0x3f;
		op4 = (INSWORD>>4)&1;
		if(!op0 && !(op1&2) && !(op2&0x10) && (op3&0x10)==0x10) {
			/* GROUP: sve_int_muladd_pred */
			op0 = (INSWORD>>15)&1;
			if(!op0)
				return decode_iclass_sve_int_mlas_vvv_pred(ctx, dec);
			if(op0)
				return decode_iclass_sve_int_mladdsub_vvv_pred(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && !(op2&0x10) && !(op3&0x38)) {
			/* GROUP: sve_int_pred_bin */
			op0 = (INSWORD>>18)&7;
			if(!(op0&6))
				return decode_iclass_sve_int_bin_pred_arit_0(ctx, dec);
			if((op0&6)==2)
				return decode_iclass_sve_int_bin_pred_arit_1(ctx, dec);
			if(op0==4)
				return decode_iclass_sve_int_bin_pred_arit_2(ctx, dec);
			if(op0==5)
				return decode_iclass_sve_int_bin_pred_div(ctx, dec);
			if((op0&6)==6)
				return decode_iclass_sve_int_bin_pred_log(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && !(op2&0x10) && (op3&0x38)==8) {
			/* GROUP: sve_int_pred_red */
			op0 = (INSWORD>>18)&7;
			if(!op0)
				return decode_iclass_sve_int_reduce_0(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_reduce_1(ctx, dec);
			if((op0&5)==1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_1
			if((op0&6)==4)
				return decode_iclass_sve_int_movprfx_pred(ctx, dec);
			if(op0==6)
				return decode_iclass_sve_int_reduce_2(ctx, dec);
			if(op0==7)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_2
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && !(op2&0x10) && (op3&0x38)==0x20) {
			/* GROUP: sve_int_pred_shift */
			op0 = (INSWORD>>19)&3;
			if(!(op0&2))
				return decode_iclass_sve_int_bin_pred_shift_0(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_bin_pred_shift_1(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_int_bin_pred_shift_2(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && !(op2&0x10) && (op3&0x38)==0x28) {
			/* GROUP: sve_int_pred_un */
			op0 = (INSWORD>>19)&3;
			if(!(op0&2))
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_0
			if(op0==2)
				return decode_iclass_sve_int_un_pred_arit_0(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_int_un_pred_arit_1(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && !(op3&0x38))
			return decode_iclass_sve_int_bin_cons_arit_0(ctx, dec);
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x38)==8) {
			/* GROUP: sve_int_unpred_logical */
			op0 = (INSWORD>>10)&7;
			if(!(op0&4))
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_3
			if(op0==4)
				return decode_iclass_sve_int_bin_cons_log(ctx, dec);
			if(op0==5)
				return decode_iclass_sve_int_rotate_imm(ctx, dec);
			if((op0&6)==6)
				return decode_iclass_sve_int_tern_log(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==0x10) {
			/* GROUP: sve_index */
			op0 = (INSWORD>>10)&3;
			if(!op0)
				return decode_iclass_sve_int_index_ii(ctx, dec);
			if(op0==1)
				return decode_iclass_sve_int_index_ri(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_index_ir(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_int_index_rr(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==0x14) {
			/* GROUP: sve_alloca */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>11)&1;
			if(!op0 && !op1)
				return decode_iclass_sve_int_arith_vl(ctx, dec);
			if(op0 && !op1)
				return decode_iclass_sve_int_read_vl_a(ctx, dec);
			if(op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_4
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x38)==0x18) {
			/* GROUP: sve_int_unpred_arit_b */
			op0 = (INSWORD>>11)&3;
			if(!(op0&2))
				return decode_iclass_sve_int_mul_b(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_sqdmulh(ctx, dec);
			if(op0==3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_5
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x38)==0x20) {
			/* GROUP: sve_int_unpred_shift */
			op0 = (INSWORD>>12)&1;
			if(!op0)
				return decode_iclass_sve_int_bin_cons_shift_a(ctx, dec);
			if(op0)
				return decode_iclass_sve_int_bin_cons_shift_b(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==0x28)
			return decode_iclass_sve_int_bin_cons_misc_0_a(ctx, dec);
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==0x2c) {
			/* GROUP: sve_int_unpred_misc */
			op0 = (INSWORD>>10)&3;
			if(!(op0&2))
				return decode_iclass_sve_int_bin_cons_misc_0_b(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_bin_cons_misc_0_c(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_int_bin_cons_misc_0_d(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x30)==0x30) {
			/* GROUP: sve_countelt */
			op0 = (INSWORD>>20)&1;
			op1 = (INSWORD>>11)&7;
			if(!op0 && !(op1&6))
				return decode_iclass_sve_int_countvlv0(ctx, dec);
			if(!op0 && op1==4)
				return decode_iclass_sve_int_count(ctx, dec);
			if(!op0 && op1==5)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_7
			if(op0 && !op1)
				return decode_iclass_sve_int_countvlv1(ctx, dec);
			if(op0 && op1==4)
				return decode_iclass_sve_int_pred_pattern_a(ctx, dec);
			if(op0 && (op1&3)==1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_8
			if((op1&6)==2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_6
			if((op1&6)==6)
				return decode_iclass_sve_int_pred_pattern_b(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && !(op2&0x18)) {
			/* GROUP: sve_maskimm */
			op0 = (INSWORD>>22)&3;
			op1 = (INSWORD>>18)&3;
			if(op0==3 && !op1)
				return decode_iclass_sve_int_dup_mask_imm(ctx, dec);
			if(op0!=3 && !op1)
				return decode_iclass_sve_int_log_imm(ctx, dec);
			if(op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_127
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && (op2&0x18)==8) {
			/* GROUP: sve_wideimm_pred */
			op0 = (INSWORD>>13)&7;
			if(!(op0&4))
				return decode_iclass_sve_int_dup_imm_pred(ctx, dec);
			if((op0&6)==4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_9
			if(op0==6)
				return decode_iclass_sve_int_dup_fpimm_pred(ctx, dec);
			if(op0==7)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_10
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && op3==8)
			return decode_iclass_sve_int_perm_dup_i(ctx, dec);
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && op3==9)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_0
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x3e)==10)
			return decode_iclass_sve_int_perm_tbl_3src(ctx, dec);
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x3d)==13)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_1
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && op3==12)
			return decode_iclass_sve_int_perm_tbl(ctx, dec);
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && op3==14) {
			/* GROUP: sve_perm_unpred_d */
			op0 = (INSWORD>>19)&3;
			op1 = (INSWORD>>16)&7;
			if(!op0 && !op1)
				return decode_iclass_sve_int_perm_dup_r(ctx, dec);
			if(!op0 && op1==4)
				return decode_iclass_sve_int_perm_insrs(ctx, dec);
			if(!op0 && (op1&3)==2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_83
			if(!op0 && op1&1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_82
			if(op0==1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_13
			if(op0==2 && !(op1&4))
				return decode_iclass_sve_int_perm_unpk(ctx, dec);
			if(op0==2 && op1==4)
				return decode_iclass_sve_int_perm_insrv(ctx, dec);
			if(op0==2 && op1==6)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_91
			if(op0==2 && (op1&5)==5)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_90
			if(op0==3 && !op1)
				return decode_iclass_sve_int_perm_reverse_z(ctx, dec);
			if(op0==3 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_120
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x10) {
			/* GROUP: sve_perm_predicates */
			op0 = (INSWORD>>22)&3;
			op1 = (INSWORD>>16)&0x1f;
			op2 = (INSWORD>>9)&15;
			op3 = (INSWORD>>4)&1;
			if(!op0 && (op1&0x1e)==0x10 && !op2 && !op3)
				return decode_iclass_sve_int_perm_punpk(ctx, dec);
			if(op0==1 && (op1&0x1e)==0x10 && !op2 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_92
			if(op0==2 && (op1&0x1e)==0x10 && !op2 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_93
			if(op0==3 && (op1&0x1e)==0x10 && !op2 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_94
			if(!(op1&0x10) && !(op2&1) && !op3)
				return decode_iclass_sve_int_perm_bin_perm_pp(ctx, dec);
			if(!(op1&0x10) && op2&1 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_81
			if(op1==0x14 && !op2 && !op3)
				return decode_iclass_sve_int_perm_reverse_p(ctx, dec);
			if(op1==0x15 && !op2 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_18
			if((op1&0x1a)==0x10 && op2==8 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_89
			if((op1&0x1a)==0x10 && (op2&7)==4 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_88
			if((op1&0x1a)==0x10 && (op2&3)==2 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_87
			if((op1&0x1a)==0x10 && op2&1 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_86
			if((op1&0x1a)==0x12 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_17
			if((op1&0x18)==0x18 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_19
			if(op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_80
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x18)
			return decode_iclass_sve_int_perm_bin_perm_zz(ctx, dec);
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x30)==0x20) {
			/* GROUP: sve_perm_pred */
			op0 = (INSWORD>>20)&1;
			op1 = (INSWORD>>17)&7;
			op2 = (INSWORD>>16)&1;
			op3 = (INSWORD>>13)&1;
			if(!op0 && !op1 && !op2 && !op3)
				return decode_iclass_sve_int_perm_cpy_v(ctx, dec);
			if(!op0 && !op1 && op2 && !op3)
				return decode_iclass_sve_int_perm_compact(ctx, dec);
			if(!op0 && !op1 && op3)
				return decode_iclass_sve_int_perm_last_r(ctx, dec);
			if(!op0 && op1==1 && !op3)
				return decode_iclass_sve_int_perm_last_v(ctx, dec);
			if(!op0 && (op1&6)==2 && !op3)
				return decode_iclass_sve_int_perm_rev(ctx, dec);
			if(!op0 && (op1&6)==2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_12
			if(!op0 && op1==4 && !op2 && op3)
				return decode_iclass_sve_int_perm_cpy_r(ctx, dec);
			if(!op0 && op1==4 && op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_14
			if(!op0 && op1==4 && !op3)
				return decode_iclass_sve_int_perm_clast_zz(ctx, dec);
			if(!op0 && op1==5 && !op3)
				return decode_iclass_sve_int_perm_clast_vz(ctx, dec);
			if(!op0 && op1==6 && !op2 && !op3)
				return decode_iclass_sve_int_perm_splice(ctx, dec);
			if(!op0 && op1==6 && op2 && !op3)
				return decode_iclass_sve_intx_perm_splice(ctx, dec);
			if(!op0 && op1==6 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_15
			if(!op0 && op1==7 && !op2 && !op3)
				return decode_iclass_sve_int_perm_revd(ctx, dec);
			if(!op0 && op1==7 && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_84
			if(!op0 && op1==7 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_85
			if(!op0 && (op1&3)==1 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_11
			if(op0 && !op1 && !op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_16
			if(op0 && !op1 && op3)
				return decode_iclass_sve_int_perm_clast_rz(ctx, dec);
			if(op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_111
			UNMATCHED;
		}
		if(!op0 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x30)==0x30)
			return decode_iclass_sve_int_sel_vvv(ctx, dec);
		if(!op0 && op1==2 && (op2&0x10)==0x10 && !(op3&0x38)) {
			/* GROUP: sve_perm_extract */
			op0 = (INSWORD>>22)&1;
			if(!op0)
				return decode_iclass_sve_int_perm_extract_i(ctx, dec);
			if(op0)
				return decode_iclass_sve_intx_perm_extract_i(ctx, dec);
			UNMATCHED;
		}
		if(!op0 && op1==3 && (op2&0x10)==0x10 && !(op3&0x38))
			return decode_iclass_sve_int_perm_bin_long_perm_zz(ctx, dec);
		if(op0==1 && !(op1&2) && !(op2&0x10)) {
			/* GROUP: sve_cmpvec */
			op0 = (INSWORD>>14)&1;
			if(!op0)
				return decode_iclass_sve_int_cmp_0(ctx, dec);
			if(op0)
				return decode_iclass_sve_int_cmp_1(ctx, dec);
			UNMATCHED;
		}
		if(op0==1 && !(op1&2) && (op2&0x10)==0x10)
			return decode_iclass_sve_int_ucmp_vi(ctx, dec);
		if(op0==1 && (op1&2)==2 && !(op2&0x10) && !(op3&0x10))
			return decode_iclass_sve_int_scmp_vi(ctx, dec);
		if(op0==1 && (op1&2)==2 && !(op2&0x18) && (op3&0x30)==0x10)
			return decode_iclass_sve_int_pred_log(ctx, dec);
		if(op0==1 && (op1&2)==2 && !(op2&0x18) && (op3&0x30)==0x30) {
			/* GROUP: sve_pred_gen_b */
			op0 = (INSWORD>>9)&1;
			if(!op0)
				return decode_iclass_sve_int_brkp(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_20
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x18)==8 && (op3&0x30)==0x10) {
			/* GROUP: sve_pred_gen_c */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>16)&15;
			op2 = (INSWORD>>9)&1;
			op3 = (INSWORD>>4)&1;
			if(!op0 && op1==8 && !op2 && !op3)
				return decode_iclass_sve_int_brkn(ctx, dec);
			if(!op0 && op1==8 && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_22
			if(!op0 && !(op1&7) && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_21
			if(!op0 && (op1&4)==4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_101
			if(!op0 && (op1&2)==2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_99
			if(!op0 && op1&1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_97
			if(op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_28
			if(op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_138
			if(!op1 && !op2)
				return decode_iclass_sve_int_break(ctx, dec);
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x18)==8 && (op3&0x30)==0x30) {
			/* GROUP: sve_pred_gen_d */
			op0 = (INSWORD>>16)&15;
			op1 = (INSWORD>>11)&7;
			op2 = (INSWORD>>9)&3;
			op3 = (INSWORD>>5)&15;
			op4 = (INSWORD>>4)&1;
			if(!op0 && !(op2&1) && !op4)
				return decode_iclass_sve_int_ptest(ctx, dec);
			if(op0==4 && !(op2&1) && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_102
			if((op0&11)==2 && !(op2&1) && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_100
			if((op0&9)==1 && !(op2&1) && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_98
			if(!(op0&8) && op2&1 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_96
			if(op0==8 && !op1 && !op2 && !op4)
				return decode_iclass_sve_int_pfirst(ctx, dec);
			if(op0==8 && !op1 && op2 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_128
			if(op0==8 && op1==4 && op2==2 && !op3 && !op4)
				return decode_iclass_sve_int_pfalse(ctx, dec);
			if(op0==8 && op1==4 && op2==2 && op3 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_129
			if(op0==8 && op1==6 && !op2 && !op4)
				return decode_iclass_sve_int_rdffr(ctx, dec);
			if(op0==9 && !op1 && !(op2&2) && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_24
			if(op0==9 && !op1 && op2==2 && !op4)
				return decode_iclass_sve_int_pnext(ctx, dec);
			if(op0==9 && !op1 && op2==3 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_25
			if(op0==9 && op1==4 && op2==2 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_26
			if(op0==9 && op1==6 && !op2 && !op3 && !op4)
				return decode_iclass_sve_int_rdffr_2(ctx, dec);
			if(op0==9 && op1==6 && !op2 && op3 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_131
			if((op0&14)==8 && op1==2 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_23
			if((op0&14)==8 && op1==4 && !(op2&2) && !op4)
				return decode_iclass_sve_int_ptrue(ctx, dec);
			if((op0&14)==8 && op1==4 && op2==3 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_104
			if((op0&14)==8 && op1==6 && op2 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_130
			if((op0&14)==8 && op1&1 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_103
			if((op0&14)==12 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_106
			if((op0&10)==10 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_105
			if(op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_95
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x10)==0x10 && !(op3&0x30)) {
			/* GROUP: sve_cmpgpr */
			op0 = (INSWORD>>12)&3;
			op1 = (INSWORD>>10)&3;
			op2 = INSWORD&15;
			if(!(op0&2))
				return decode_iclass_sve_int_while_rr(ctx, dec);
			if(op0==2 && !op1 && !op2)
				return decode_iclass_sve_int_cterm(ctx, dec);
			if(op0==2 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_121
			if(op0==3 && !op1)
				return decode_iclass_sve_int_whilenc(ctx, dec);
			if((op0&2)==2 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_122
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x30)==0x10 && !op4)
			return decode_iclass_sve_int_pred_dup(ctx, dec);
		if(op0==1 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x30)==0x10 && op4)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_3
		if(op0==1 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x30)==0x30) {
			/* GROUP: sve_wideimm_unpred */
			op0 = (INSWORD>>19)&3;
			op1 = (INSWORD>>16)&1;
			if(!op0)
				return decode_iclass_sve_int_arith_imm0(ctx, dec);
			if(op0==1)
				return decode_iclass_sve_int_arith_imm1(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_int_arith_imm2(ctx, dec);
			if(op0==3 && !op1)
				return decode_iclass_sve_int_dup_imm(ctx, dec);
			if(op0==3 && op1)
				return decode_iclass_sve_int_dup_fpimm(ctx, dec);
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x1c)==0x10 && (op3&0x30)==0x20) {
			/* GROUP: sve_pred_count_a */
			op0 = (INSWORD>>9)&1;
			if(!op0)
				return decode_iclass_sve_int_pcount_pred(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_27
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x1c)==0x14 && (op3&0x3c)==0x20) {
			/* GROUP: sve_pred_count_b */
			op0 = (INSWORD>>18)&1;
			op1 = (INSWORD>>11)&1;
			if(!op0 && !op1)
				return decode_iclass_sve_int_count_v_sat(ctx, dec);
			if(!op0 && op1)
				return decode_iclass_sve_int_count_r_sat(ctx, dec);
			if(op0 && !op1)
				return decode_iclass_sve_int_count_v(ctx, dec);
			if(op0 && op1)
				return decode_iclass_sve_int_count_r(ctx, dec);
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x1c)==0x14 && (op3&0x3c)==0x24) {
			/* GROUP: sve_pred_wrffr */
			op0 = (INSWORD>>18)&1;
			op1 = (INSWORD>>16)&3;
			op2 = (INSWORD>>9)&7;
			op3 = (INSWORD>>5)&15;
			op4 = INSWORD&0x1f;
			if(!op0 && !op1 && !op2 && !op4)
				return decode_iclass_sve_int_wrffr(ctx, dec);
			if(op0 && !op1 && !op2 && !op3 && !op4)
				return decode_iclass_sve_int_setffr(ctx, dec);
			if(op0 && !op1 && !op2 && (op3&8)==8 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_110
			if(op0 && !op1 && !op2 && (op3&4)==4 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_109
			if(op0 && !op1 && !op2 && (op3&2)==2 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_108
			if(op0 && !op1 && !op2 && op3&1 && !op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_107
			if(!op1 && !op2 && op4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_134
			if(!op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_135
			if(op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_136
			UNMATCHED;
		}
		if(op0==1 && (op1&2)==2 && (op2&0x1c)==0x14 && (op3&0x38)==0x28)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_2
		if(op0==1 && (op1&2)==2 && (op2&0x18)==0x18 && (op3&0x30)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_4
		if(op0==2 && !(op1&2) && !(op2&0x10) && !(op3&0x20)) {
			/* GROUP: sve_intx_muladd_unpred */
			op0 = (INSWORD>>10)&0x1f;
			if(!(op0&0x1e))
				return decode_iclass_sve_intx_dot(ctx, dec);
			if((op0&0x1e)==2)
				return decode_iclass_sve_intx_qdmlalbt(ctx, dec);
			if((op0&0x1c)==4)
				return decode_iclass_sve_intx_cdot(ctx, dec);
			if((op0&0x18)==8)
				return decode_iclass_sve_intx_cmla(ctx, dec);
			if((op0&0x18)==0x10)
				return decode_iclass_sve_intx_mlal_long(ctx, dec);
			if((op0&0x1c)==0x18)
				return decode_iclass_sve_intx_qdmlal_long(ctx, dec);
			if((op0&0x1e)==0x1c)
				return decode_iclass_sve_intx_qrdmlah(ctx, dec);
			if(op0==0x1e)
				return decode_iclass_sve_intx_mixed_dot(ctx, dec);
			if(op0==0x1f)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_29
			UNMATCHED;
		}
		if(op0==2 && !(op1&2) && !(op2&0x10) && (op3&0x30)==0x20) {
			/* GROUP: sve_intx_predicated */
			op0 = (INSWORD>>17)&15;
			op1 = (INSWORD>>13)&1;
			if(op0==2 && op1)
				return decode_iclass_sve_intx_accumulate_long_pairs(ctx, dec);
			if(op0==3 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_30
			if((op0&14)==6 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_31
			if(!(op0&10) && op1)
				return decode_iclass_sve_intx_pred_arith_unary(ctx, dec);
			if(!(op0&8) && !op1)
				return decode_iclass_sve_intx_bin_pred_shift_sat_round(ctx, dec);
			if((op0&12)==8 && !op1)
				return decode_iclass_sve_intx_pred_arith_binary(ctx, dec);
			if((op0&12)==8 && op1)
				return decode_iclass_sve_intx_arith_binary_pairs(ctx, dec);
			if((op0&12)==12 && !op1)
				return decode_iclass_sve_intx_pred_arith_binary_sat(ctx, dec);
			if((op0&12)==12 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_32
			UNMATCHED;
		}
		if(op0==2 && !(op1&2) && !(op2&0x10) && (op3&0x3e)==0x30)
			return decode_iclass_sve_intx_clamp(ctx, dec);
		if(op0==2 && !(op1&2) && !(op2&0x10) && (op3&0x3e)==0x32)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_5
		if(op0==2 && !(op1&2) && !(op2&0x10) && (op3&0x3c)==0x34)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_6
		if(op0==2 && !(op1&2) && !(op2&0x10) && (op3&0x38)==0x38)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_7
		if(op0==2 && !(op1&2) && (op2&0x10)==0x10) {
			/* GROUP: sve_intx_by_indexed_elem */
			op0 = (INSWORD>>10)&0x3f;
			if(!(op0&0x3e))
				return decode_iclass_sve_intx_dot_by_indexed_elem(ctx, dec);
			if((op0&0x3e)==2)
				return decode_iclass_sve_intx_mla_by_indexed_elem(ctx, dec);
			if((op0&0x3e)==4)
				return decode_iclass_sve_intx_qrdmlah_by_indexed_elem(ctx, dec);
			if((op0&0x3e)==6)
				return decode_iclass_sve_intx_mixed_dot_by_indexed_elem(ctx, dec);
			if((op0&0x38)==8)
				return decode_iclass_sve_intx_qdmla_long_by_indexed_elem(ctx, dec);
			if((op0&0x3c)==0x10)
				return decode_iclass_sve_intx_cdot_by_indexed_elem(ctx, dec);
			if((op0&0x3c)==0x14)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_33
			if((op0&0x3c)==0x18)
				return decode_iclass_sve_intx_cmla_by_indexed_elem(ctx, dec);
			if((op0&0x3c)==0x1c)
				return decode_iclass_sve_intx_qrdcmla_by_indexed_elem(ctx, dec);
			if((op0&0x30)==0x20)
				return decode_iclass_sve_intx_mla_long_by_indexed_elem(ctx, dec);
			if((op0&0x38)==0x30)
				return decode_iclass_sve_intx_mul_long_by_indexed_elem(ctx, dec);
			if((op0&0x3c)==0x38)
				return decode_iclass_sve_intx_qdmul_long_by_indexed_elem(ctx, dec);
			if((op0&0x3e)==0x3c)
				return decode_iclass_sve_intx_qdmulh_by_indexed_elem(ctx, dec);
			if(op0==0x3e)
				return decode_iclass_sve_intx_mul_by_indexed_elem(ctx, dec);
			if(op0==0x3f)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_34
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && !(op2&0x10) && !(op3&0x20)) {
			/* GROUP: sve_intx_cons_widening */
			op0 = (INSWORD>>13)&3;
			if(!(op0&2))
				return decode_iclass_sve_intx_cons_arith_long(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_intx_cons_arith_wide(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_intx_cons_mul_long(ctx, dec);
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && !(op2&0x10) && (op3&0x30)==0x20) {
			/* GROUP: sve_intx_constructive */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>10)&15;
			if(!op0 && (op1&12)==8)
				return decode_iclass_sve_intx_shift_long(ctx, dec);
			if(op0 && (op1&12)==8)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_40
			if(!(op1&12))
				return decode_iclass_sve_intx_clong(ctx, dec);
			if((op1&14)==4)
				return decode_iclass_sve_intx_eorx(ctx, dec);
			if(op1==6)
				return decode_iclass_sve_intx_mmla(ctx, dec);
			if(op1==7)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_35
			if((op1&12)==12)
				return decode_iclass_sve_intx_perm_bit(ctx, dec);
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && !(op2&0x10) && (op3&0x30)==0x30) {
			/* GROUP: sve_intx_acc */
			op0 = (INSWORD>>17)&15;
			op1 = (INSWORD>>11)&7;
			if(!op0 && op1==3)
				return decode_iclass_sve_intx_cadd(ctx, dec);
			if(op0 && op1==3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_125
			if(!(op1&6))
				return decode_iclass_sve_intx_aba_long(ctx, dec);
			if(op1==2)
				return decode_iclass_sve_intx_adc_long(ctx, dec);
			if((op1&6)==4)
				return decode_iclass_sve_intx_sra(ctx, dec);
			if(op1==6)
				return decode_iclass_sve_intx_shift_insert(ctx, dec);
			if(op1==7)
				return decode_iclass_sve_intx_aba(ctx, dec);
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && (op2&0x10)==0x10 && !(op3&0x20)) {
			/* GROUP: sve_intx_narrowing */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>16)&7;
			op2 = (INSWORD>>13)&3;
			if(!op0 && !op1 && op2==2)
				return decode_iclass_sve_intx_extract_narrow(ctx, dec);
			if(!op0 && op1 && op2==2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_137
			if(!op0 && !(op2&2))
				return decode_iclass_sve_intx_shift_narrow(ctx, dec);
			if(op0 && !(op2&2))
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_41
			if(op0 && op2==2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_42
			if(op2==3)
				return decode_iclass_sve_intx_arith_narrow(ctx, dec);
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x20)
			return decode_iclass_sve_intx_match(ctx, dec);
		if(op0==2 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x28) {
			/* GROUP: sve_intx_histseg */
			op0 = (INSWORD>>10)&7;
			if(!op0)
				return decode_iclass_sve_intx_histseg(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_119
			UNMATCHED;
		}
		if(op0==2 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x30)
			return decode_iclass_sve_intx_histcnt(ctx, dec);
		if(op0==2 && (op1&2)==2 && (op2&0x10)==0x10 && (op3&0x38)==0x38) {
			/* GROUP: sve_intx_crypto */
			op0 = (INSWORD>>18)&7;
			op1 = (INSWORD>>16)&3;
			op2 = (INSWORD>>11)&3;
			op3 = (INSWORD>>5)&0x1f;
			if(!op0 && !op1 && !op2 && !op3)
				return decode_iclass_sve_crypto_unary(ctx, dec);
			if(!op0 && !op1 && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_116
			if(!op0 && !op1 && op2&1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_36
			if(!op0 && op1==1 && !(op2&2))
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_37
			if(!op0 && op1==1 && op2==3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_38
			if(!op0 && (op1&2)==2 && !op2)
				return decode_iclass_sve_crypto_binary_dest(ctx, dec);
			if(!op0 && (op1&2)==2 && op2&1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_39
			if(op0 && !(op2&2))
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_117
			if(op0 && op2==3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_118
			if(op2==2)
				return decode_iclass_sve_crypto_binary_const(ctx, dec);
			UNMATCHED;
		}
		if(op0==3 && !(op1&2) && !(op2&0x10) && !(op3&0x20))
			return decode_iclass_sve_fp_fcmla(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x1a)==2 && (op3&0x20)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_13
		if(op0==3 && !(op1&2) && !op2 && (op3&0x38)==0x20)
			return decode_iclass_sve_fp_fcadd(ctx, dec);
		if(op0==3 && !(op1&2) && !op2 && (op3&0x38)==0x28)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_8
		if(op0==3 && !(op1&2) && !op2 && (op3&0x30)==0x30)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_9
		if(op0==3 && !(op1&2) && op2==1 && (op3&0x20)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_10
		if(op0==3 && !(op1&2) && (op2&0x1e)==4 && (op3&0x38)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_11
		if(op0==3 && !(op1&2) && (op2&0x1e)==4 && (op3&0x38)==0x28)
			return decode_iclass_sve_fp_fcvt2(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x1e)==4 && (op3&0x30)==0x30)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_12
		if(op0==3 && !(op1&2) && (op2&0x1c)==8 && (op3&0x38)==0x20)
			return decode_iclass_sve_fp_pairwise(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x1c)==8 && (op3&0x38)==0x28)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_14
		if(op0==3 && !(op1&2) && (op2&0x1c)==8 && (op3&0x30)==0x30)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_15
		if(op0==3 && !(op1&2) && (op2&0x1c)==12 && (op3&0x20)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_16
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x16)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_20
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && !(op3&0x3e))
			return decode_iclass_sve_fp_fma_by_indexed_elem(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==4)
			return decode_iclass_sve_fp_fcmla_by_indexed_elem(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && op3==8)
			return decode_iclass_sve_fp_fmul_by_indexed_elem(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && op3==9)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_17
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==12)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_18
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x34)==0x10) {
			/* GROUP: sve_fp_fma_w_by_indexed_elem */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>13)&1;
			op2 = (INSWORD>>10)&3;
			if(!op0 && !op1 && !op2)
				return decode_iclass_sve_fp_fdot_by_indexed_elem(ctx, dec);
			if(!op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_112
			if(!op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_43
			if(op0)
				return decode_iclass_sve_fp_fma_long_by_indexed_elem(ctx, dec);
			UNMATCHED;
		}
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x34)==0x14)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_19
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x36)==0x20) {
			/* GROUP: sve_fp_fma_w */
			op0 = (INSWORD>>23)&1;
			op1 = (INSWORD>>13)&1;
			op2 = (INSWORD>>10)&1;
			if(!op0 && !op1 && !op2)
				return decode_iclass_sve_fp_fdot(ctx, dec);
			if(!op0 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_44
			if(!op0 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_45
			if(op0)
				return decode_iclass_sve_fp_fma_long(ctx, dec);
			UNMATCHED;
		}
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x34)==0x24)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_21
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x38)==0x30)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_22
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && op3==0x38)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_23
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && op3==0x39)
			return decode_iclass_sve_fp_fmmla(ctx, dec);
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3e)==0x3a)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_24
		if(op0==3 && !(op1&2) && (op2&0x10)==0x10 && (op3&0x3c)==0x3c)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_25
		if(op0==3 && (op1&2)==2 && !(op2&0x10) && (op3&0x10)==0x10)
			return decode_iclass_sve_fp_3op_p_pd(ctx, dec);
		if(op0==3 && (op1&2)==2 && !(op2&0x10) && !(op3&0x38))
			return decode_iclass_sve_fp_3op_u_zd(ctx, dec);
		if(op0==3 && (op1&2)==2 && !(op2&0x10) && (op3&0x38)==0x20) {
			/* GROUP: sve_fp_pred */
			op0 = (INSWORD>>19)&3;
			op1 = (INSWORD>>10)&7;
			op2 = (INSWORD>>6)&15;
			if(!(op0&2))
				return decode_iclass_sve_fp_2op_p_zds(ctx, dec);
			if(op0==2 && !op1)
				return decode_iclass_sve_fp_ftmad(ctx, dec);
			if(op0==2 && op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_123
			if(op0==3 && !op2)
				return decode_iclass_sve_fp_2op_i_p_zds(ctx, dec);
			if(op0==3 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_124
			UNMATCHED;
		}
		if(op0==3 && (op1&2)==2 && !(op2&0x10) && (op3&0x38)==0x28) {
			/* GROUP: sve_fp_unary */
			op0 = (INSWORD>>18)&7;
			if(!(op0&6))
				return decode_iclass_sve_fp_2op_p_zd_a(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_fp_2op_p_zd_b_0(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_fp_2op_p_zd_b_1(ctx, dec);
			if((op0&6)==4)
				return decode_iclass_sve_fp_2op_p_zd_c(ctx, dec);
			if((op0&6)==6)
				return decode_iclass_sve_fp_2op_p_zd_d(ctx, dec);
			UNMATCHED;
		}
		if(op0==3 && (op1&2)==2 && !(op2&0x1c) && (op3&0x38)==8)
			return decode_iclass_sve_fp_fast_red(ctx, dec);
		if(op0==3 && (op1&2)==2 && (op2&0x1c)==4 && (op3&0x3c)==8)
			UNALLOCATED(ENC_UNKNOWN); // iclass: unalloc_26
		if(op0==3 && (op1&2)==2 && (op2&0x1c)==4 && (op3&0x3c)==12) {
			/* GROUP: sve_fp_unary_unpred */
			op0 = (INSWORD>>10)&3;
			if(!op0)
				return decode_iclass_sve_fp_2op_u_zd(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_115
			UNMATCHED;
		}
		if(op0==3 && (op1&2)==2 && (op2&0x1c)==8 && (op3&0x38)==8) {
			/* GROUP: sve_fp_cmpzero */
			op0 = (INSWORD>>18)&1;
			if(!op0)
				return decode_iclass_sve_fp_2op_p_pd(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_46
			UNMATCHED;
		}
		if(op0==3 && (op1&2)==2 && (op2&0x1c)==12 && (op3&0x38)==8) {
			/* GROUP: sve_fp_slowreduce */
			op0 = (INSWORD>>18)&1;
			if(!op0)
				return decode_iclass_sve_fp_2op_p_vd(ctx, dec);
			if(op0)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_47
			UNMATCHED;
		}
		if(op0==3 && (op1&2)==2 && (op2&0x10)==0x10) {
			/* GROUP: sve_fp_fma */
			op0 = (INSWORD>>15)&1;
			if(!op0)
				return decode_iclass_sve_fp_3op_p_zds_a(ctx, dec);
			if(op0)
				return decode_iclass_sve_fp_3op_p_zds_b(ctx, dec);
			UNMATCHED;
		}
		if(op0==4) {
			/* GROUP: sve_mem32 */
			op0 = (INSWORD>>23)&3;
			op1 = (INSWORD>>21)&3;
			op2 = (INSWORD>>13)&7;
			op3 = (INSWORD>>4)&1;
			if(!op0 && op1&1 && !(op2&4) && !op3)
				return decode_iclass_sve_mem_32b_prfm_sv(ctx, dec);
			if(!op0 && op1&1 && !(op2&4) && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_54
			if(op0==1 && op1&1 && !(op2&4))
				return decode_iclass_sve_mem_32b_gld_sv_a(ctx, dec);
			if(op0==2 && op1&1 && !(op2&4))
				return decode_iclass_sve_mem_32b_gld_sv_b(ctx, dec);
			if(op0==3 && !(op1&2) && !op2 && !op3)
				return decode_iclass_sve_mem_32b_pfill(ctx, dec);
			if(op0==3 && !(op1&2) && !op2 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_55
			if(op0==3 && !(op1&2) && op2==2)
				return decode_iclass_sve_mem_32b_fill(ctx, dec);
			if(op0==3 && !(op1&2) && (op2&5)==1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_56
			if(op0==3 && (op1&2)==2 && !(op2&4) && !op3)
				return decode_iclass_sve_mem_prfm_si(ctx, dec);
			if(op0==3 && (op1&2)==2 && !(op2&4) && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_57
			if(op0!=3 && !(op1&1) && !(op2&4))
				return decode_iclass_sve_mem_32b_gld_vs(ctx, dec);
			if(!op1 && (op2&6)==4)
				return decode_iclass_sve_mem_32b_gldnt_vs(ctx, dec);
			if(!op1 && op2==6 && !op3)
				return decode_iclass_sve_mem_prfm_ss(ctx, dec);
			if(!op1 && op2==7 && !op3)
				return decode_iclass_sve_mem_32b_prfm_vi(ctx, dec);
			if(!op1 && (op2&6)==6 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_53
			if(op1==1 && (op2&4)==4)
				return decode_iclass_sve_mem_32b_gld_vi(ctx, dec);
			if((op1&2)==2 && (op2&4)==4)
				return decode_iclass_sve_mem_ld_dup(ctx, dec);
			UNMATCHED;
		}
		if(op0==5) {
			/* GROUP: sve_memcld */
			op0 = (INSWORD>>21)&3;
			op1 = (INSWORD>>20)&1;
			op2 = (INSWORD>>13)&7;
			if(!op0 && !op1 && op2==7)
				return decode_iclass_sve_mem_cldnt_si(ctx, dec);
			if(!op0 && op2==6)
				return decode_iclass_sve_mem_cldnt_ss(ctx, dec);
			if(op0 && !op1 && op2==7)
				return decode_iclass_sve_mem_eld_si(ctx, dec);
			if(op0 && op2==6)
				return decode_iclass_sve_mem_eld_ss(ctx, dec);
			if(!op1 && op2==1)
				return decode_iclass_sve_mem_ldqr_si(ctx, dec);
			if(!op1 && op2==5)
				return decode_iclass_sve_mem_cld_si(ctx, dec);
			if(op1 && op2==1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_60
			if(op1 && op2==5)
				return decode_iclass_sve_mem_cldnf_si(ctx, dec);
			if(op1 && op2==7)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_61
			if(!op2)
				return decode_iclass_sve_mem_ldqr_ss(ctx, dec);
			if(op2==2)
				return decode_iclass_sve_mem_cld_ss(ctx, dec);
			if(op2==3)
				return decode_iclass_sve_mem_cldff_ss(ctx, dec);
			if(op2==4)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_59
			UNMATCHED;
		}
		if(op0==6) {
			/* GROUP: sve_mem64 */
			op0 = (INSWORD>>23)&3;
			op1 = (INSWORD>>21)&3;
			op2 = (INSWORD>>13)&7;
			op3 = (INSWORD>>4)&1;
			if(!op0 && op1==1 && !(op2&4) && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_68
			if(!op0 && op1==3 && (op2&4)==4 && !op3)
				return decode_iclass_sve_mem_64b_prfm_sv2(ctx, dec);
			if(!op0 && op1==3 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_69
			if(!op0 && op1&1 && !(op2&4) && !op3)
				return decode_iclass_sve_mem_64b_prfm_sv(ctx, dec);
			if(op0 && op1==3 && (op2&4)==4)
				return decode_iclass_sve_mem_64b_gld_sv2(ctx, dec);
			if(op0 && op1&1 && !(op2&4))
				return decode_iclass_sve_mem_64b_gld_sv(ctx, dec);
			if(!op1 && op2==5)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_66
			if(!op1 && op2==7 && !op3)
				return decode_iclass_sve_mem_64b_prfm_vi(ctx, dec);
			if(!op1 && op2==7 && op3)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_67
			if(!op1 && (op2&5)==4)
				return decode_iclass_sve_mem_64b_gldnt_vs(ctx, dec);
			if(op1==1 && (op2&4)==4)
				return decode_iclass_sve_mem_64b_gld_vi(ctx, dec);
			if(op1==2 && (op2&4)==4)
				return decode_iclass_sve_mem_64b_gld_vs2(ctx, dec);
			if(!(op1&1) && !(op2&4))
				return decode_iclass_sve_mem_64b_gld_vs(ctx, dec);
			UNMATCHED;
		}
		if(op0==7 && !(op3&0x28)) {
			/* GROUP: sve_memst_cs */
			op0 = (INSWORD>>22)&7;
			op1 = (INSWORD>>14)&1;
			op2 = (INSWORD>>4)&1;
			if(!(op0&4) && !op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_75
			if((op0&6)==4 && !op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_77
			if(op0==6 && !op1 && !op2)
				return decode_iclass_sve_mem_pspill(ctx, dec);
			if(op0==6 && !op1 && op2)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_78
			if(op0==6 && op1)
				return decode_iclass_sve_mem_spill(ctx, dec);
			if(op0==7 && !op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_79
			if(op0!=6 && op1)
				return decode_iclass_sve_mem_cst_ss(ctx, dec);
			UNMATCHED;
		}
		if(op0==7 && (op3&0x28)==8) {
			/* GROUP: sve_memst_nt */
			op0 = (INSWORD>>21)&3;
			op1 = (INSWORD>>14)&1;
			if(!op0 && !op1)
				return decode_iclass_sve_mem_sstnt_64b_vs(ctx, dec);
			if(!op0 && op1)
				return decode_iclass_sve_mem_cstnt_ss(ctx, dec);
			if(op0==2 && !op1)
				return decode_iclass_sve_mem_sstnt_32b_vs(ctx, dec);
			if(op0 && op1)
				return decode_iclass_sve_mem_est_ss(ctx, dec);
			if(op0&1 && !op1)
				UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_76
			UNMATCHED;
		}
		if(op0==7 && (op3&0x28)==0x20) {
			/* GROUP: sve_memst_ss */
			op0 = (INSWORD>>21)&3;
			if(!op0)
				return decode_iclass_sve_mem_sst_vs_a(ctx, dec);
			if(op0==1)
				return decode_iclass_sve_mem_sst_sv_a(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_mem_sst_vs_b(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_mem_sst_sv_b(ctx, dec);
			UNMATCHED;
		}
		if(op0==7 && (op3&0x38)==0x28) {
			/* GROUP: sve_memst_ss2 */
			op0 = (INSWORD>>21)&3;
			if(!op0)
				return decode_iclass_sve_mem_sst_vs2(ctx, dec);
			if(op0==1)
				return decode_iclass_sve_mem_sst_sv2(ctx, dec);
			if(op0==2)
				return decode_iclass_sve_mem_sst_vi_a(ctx, dec);
			if(op0==3)
				return decode_iclass_sve_mem_sst_vi_b(ctx, dec);
			UNMATCHED;
		}
		if(op0==7 && (op3&0x38)==0x38) {
			/* GROUP: sve_memst_si */
			op0 = (INSWORD>>21)&3;
			op1 = (INSWORD>>20)&1;
			if(!op0 && op1)
				return decode_iclass_sve_mem_cstnt_si(ctx, dec);
			if(op0 && op1)
				return decode_iclass_sve_mem_est_si(ctx, dec);
			if(!op1)
				return decode_iclass_sve_mem_cst_si(ctx, dec);
			UNMATCHED;
		}
		UNMATCHED;
	}
	if(op1==3)
		UNALLOCATED(ENC_UNKNOWN); // iclass: unallocate2
	if((op1&14)==8) {
		/* GROUP: dpimm */
		op0 = (INSWORD>>23)&7;
		if(!(op0&6))
			return decode_iclass_pcreladdr(ctx, dec);
		if(op0==2)
			return decode_iclass_addsub_imm(ctx, dec);
		if(op0==3)
			return decode_iclass_addsub_immtags(ctx, dec);
		if(op0==4)
			return decode_iclass_log_imm(ctx, dec);
		if(op0==5)
			return decode_iclass_movewide(ctx, dec);
		if(op0==6)
			return decode_iclass_bitfield(ctx, dec);
		if(op0==7)
			return decode_iclass_extract(ctx, dec);
		UNMATCHED;
	}
	if((op1&14)==10) {
		/* GROUP: control */
		op0 = INSWORD>>29;
		op1 = (INSWORD>>12)&0x3fff;
		op2 = INSWORD&0x1f;
		if(op0==2 && !(op1&0x2000))
			return decode_iclass_condbranch(ctx, dec);
		if(op0==6 && !(op1&0x3000))
			return decode_iclass_exception(ctx, dec);
		if(op0==6 && op1==0x1031)
			return decode_iclass_systeminstrswithreg(ctx, dec);
		if(op0==6 && op1==0x1032 && op2==0x1f)
			return decode_iclass_hints(ctx, dec);
		if(op0==6 && op1==0x1033)
			return decode_iclass_barriers(ctx, dec);
		if(op0==6 && (op1&0x3f8f)==0x1004)
			return decode_iclass_pstate(ctx, dec);
		if(op0==6 && (op1&0x3f80)==0x1200)
			return decode_iclass_systemresult(ctx, dec);
		if(op0==6 && (op1&0x3d80)==0x1080)
			return decode_iclass_systeminstrs(ctx, dec);
		if(op0==6 && (op1&0x3d00)==0x1100)
			return decode_iclass_systemmove(ctx, dec);
		if(op0==6 && (op1&0x2000)==0x2000)
			return decode_iclass_branch_reg(ctx, dec);
		if(!(op0&3))
			return decode_iclass_branch_imm(ctx, dec);
		if((op0&3)==1 && !(op1&0x2000))
			return decode_iclass_compbranch(ctx, dec);
		if((op0&3)==1 && (op1&0x2000)==0x2000)
			return decode_iclass_testbranch(ctx, dec);
		UNMATCHED;
	}
	if((op1&5)==4) {
		/* GROUP: ldst */
		op0 = INSWORD>>28;
		op1 = (INSWORD>>26)&1;
		op2 = (INSWORD>>23)&3;
		op3 = (INSWORD>>16)&0x3f;
		op4 = (INSWORD>>10)&3;
		if(!(op0&11) && !op1 && !op2 && (op3&0x20)==0x20)
			return decode_iclass_comswappr(ctx, dec);
		if(!(op0&11) && op1 && !op2 && !op3)
			return decode_iclass_asisdlse(ctx, dec);
		if(!(op0&11) && op1 && op2==1 && !(op3&0x20))
			return decode_iclass_asisdlsep(ctx, dec);
		if(!(op0&11) && op1 && !(op2&2) && (op3&0x20)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_85
		if(!(op0&11) && op1 && op2==2 && !(op3&0x1f))
			return decode_iclass_asisdlso(ctx, dec);
		if(!(op0&11) && op1 && op2==3)
			return decode_iclass_asisdlsop(ctx, dec);
		if(!(op0&11) && op1 && !(op2&1) && (op3&0x10)==0x10)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_94
		if(!(op0&11) && op1 && !(op2&1) && (op3&8)==8)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_93
		if(!(op0&11) && op1 && !(op2&1) && (op3&4)==4)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_92
		if(!(op0&11) && op1 && !(op2&1) && (op3&2)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_91
		if(!(op0&11) && op1 && !(op2&1) && op3&1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_90
		if(op0==13 && !op1 && (op2&2)==2 && (op3&0x20)==0x20)
			return decode_iclass_ldsttags(ctx, dec);
		if((op0&11)==8 && !op1 && !op2 && (op3&0x20)==0x20)
			return decode_iclass_ldstexclp(ctx, dec);
		if((op0&11)==8 && op1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_83
		if(!(op0&3) && !op1 && !op2 && !(op3&0x20))
			return decode_iclass_ldstexclr(ctx, dec);
		if(!(op0&3) && !op1 && op2==1 && !(op3&0x20))
			return decode_iclass_ldstord(ctx, dec);
		if(!(op0&3) && !op1 && op2==1 && (op3&0x20)==0x20)
			return decode_iclass_comswap(ctx, dec);
		if((op0&3)==1 && !op1 && (op2&2)==2 && !(op3&0x20) && !op4)
			return decode_iclass_ldapstl_unscaled(ctx, dec);
		if((op0&3)==1 && !(op2&2))
			return decode_iclass_loadlit(ctx, dec);
		if((op0&3)==2 && !op2)
			return decode_iclass_ldstnapair_offs(ctx, dec);
		if((op0&3)==2 && op2==1)
			return decode_iclass_ldstpair_post(ctx, dec);
		if((op0&3)==2 && op2==2)
			return decode_iclass_ldstpair_off(ctx, dec);
		if((op0&3)==2 && op2==3)
			return decode_iclass_ldstpair_pre(ctx, dec);
		if((op0&3)==3 && !(op2&2) && !(op3&0x20) && !op4)
			return decode_iclass_ldst_unscaled(ctx, dec);
		if((op0&3)==3 && !(op2&2) && !(op3&0x20) && op4==1)
			return decode_iclass_ldst_immpost(ctx, dec);
		if((op0&3)==3 && !(op2&2) && !(op3&0x20) && op4==2)
			return decode_iclass_ldst_unpriv(ctx, dec);
		if((op0&3)==3 && !(op2&2) && !(op3&0x20) && op4==3)
			return decode_iclass_ldst_immpre(ctx, dec);
		if((op0&3)==3 && !(op2&2) && (op3&0x20)==0x20 && !op4)
			return decode_iclass_memop(ctx, dec);
		if((op0&3)==3 && !(op2&2) && (op3&0x20)==0x20 && op4==2)
			return decode_iclass_ldst_regoff(ctx, dec);
		if((op0&3)==3 && !(op2&2) && (op3&0x20)==0x20 && op4&1)
			return decode_iclass_ldst_pac(ctx, dec);
		if((op0&3)==3 && (op2&2)==2)
			return decode_iclass_ldst_pos(ctx, dec);
		UNMATCHED;
	}
	if((op1&7)==5) {
		/* GROUP: dpreg */
		op0 = (INSWORD>>30)&1;
		op1 = (INSWORD>>28)&1;
		op2 = (INSWORD>>21)&15;
		op3 = (INSWORD>>10)&0x3f;
		if(!op0 && op1 && op2==6)
			return decode_iclass_dp_2src(ctx, dec);
		if(op0 && op1 && op2==6)
			return decode_iclass_dp_1src(ctx, dec);
		if(!op1 && !(op2&8))
			return decode_iclass_log_shift(ctx, dec);
		if(!op1 && (op2&9)==8)
			return decode_iclass_addsub_shift(ctx, dec);
		if(!op1 && (op2&9)==9)
			return decode_iclass_addsub_ext(ctx, dec);
		if(op1 && !op2 && !op3)
			return decode_iclass_addsub_carry(ctx, dec);
		if(op1 && !op2 && (op3&0x1f)==1)
			return decode_iclass_rmif(ctx, dec);
		if(op1 && !op2 && (op3&15)==2)
			return decode_iclass_setf(ctx, dec);
		if(op1 && op2==2 && !(op3&2))
			return decode_iclass_condcmp_reg(ctx, dec);
		if(op1 && op2==2 && (op3&2)==2)
			return decode_iclass_condcmp_imm(ctx, dec);
		if(op1 && op2==4)
			return decode_iclass_condsel(ctx, dec);
		if(op1 && (op2&8)==8)
			return decode_iclass_dp_3src(ctx, dec);
		UNMATCHED;
	}
	if((op1&7)==7) {
		/* GROUP: simd_dp */
		op0 = INSWORD>>28;
		op1 = (INSWORD>>23)&3;
		op2 = (INSWORD>>19)&15;
		op3 = (INSWORD>>10)&0x1ff;
		if(!op0 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_26
		if(op0==2 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_27
		if(op0==4 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			return decode_iclass_cryptoaes(ctx, dec);
		if(op0==5 && !(op1&2) && !(op2&4) && !(op3&0x23))
			return decode_iclass_cryptosha3(ctx, dec);
		if(op0==5 && !(op1&2) && !(op2&4) && (op3&0x23)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_52
		if(op0==5 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			return decode_iclass_cryptosha2(ctx, dec);
		if(op0==6 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_29
		if(op0==7 && !(op1&2) && !(op2&4) && !(op3&0x21))
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_53
		if(op0==7 && !(op1&2) && (op2&7)==5 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_63
		if((op0&13)==5 && !op1 && !(op2&12) && (op3&0x21)==1)
			return decode_iclass_asisdone(ctx, dec);
		if((op0&13)==5 && op1==1 && !(op2&12) && (op3&0x21)==1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_55
		if((op0&13)==5 && !(op1&2) && op2==7 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_65
		if((op0&13)==5 && !(op1&2) && (op2&12)==8 && (op3&0x31)==1)
			return decode_iclass_asisdsamefp16(ctx, dec);
		if((op0&13)==5 && !(op1&2) && (op2&12)==8 && (op3&0x31)==0x11)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_57
		if((op0&13)==5 && !(op1&2) && op2==15 && (op3&0x183)==2)
			return decode_iclass_asisdmiscfp16(ctx, dec);
		if((op0&13)==5 && !(op1&2) && !(op2&4) && (op3&0x21)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_49
		if((op0&13)==5 && !(op1&2) && !(op2&4) && (op3&0x21)==0x21)
			return decode_iclass_asisdsame2(ctx, dec);
		if((op0&13)==5 && !(op1&2) && (op2&7)==4 && (op3&0x183)==2)
			return decode_iclass_asisdmisc(ctx, dec);
		if((op0&13)==5 && !(op1&2) && (op2&7)==6 && (op3&0x183)==2)
			return decode_iclass_asisdpair(ctx, dec);
		if((op0&13)==5 && !(op1&2) && (op2&4)==4 && (op3&0x103)==0x102)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_67
		if((op0&13)==5 && !(op1&2) && (op2&4)==4 && (op3&0x83)==0x82)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_68
		if((op0&13)==5 && !(op1&2) && (op2&4)==4 && !(op3&3))
			return decode_iclass_asisddiff(ctx, dec);
		if((op0&13)==5 && !(op1&2) && (op2&4)==4 && op3&1)
			return decode_iclass_asisdsame(ctx, dec);
		if((op0&13)==5 && op1==2 && op3&1)
			return decode_iclass_asisdshf(ctx, dec);
		if((op0&13)==5 && op1==3 && op3&1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_70
		if((op0&13)==5 && (op1&2)==2 && !(op3&1))
			return decode_iclass_asisdelem(ctx, dec);
		if(!(op0&11) && !(op1&2) && !(op2&4) && !(op3&0x23))
			return decode_iclass_asimdtbl(ctx, dec);
		if(!(op0&11) && !(op1&2) && !(op2&4) && (op3&0x23)==2)
			return decode_iclass_asimdperm(ctx, dec);
		if((op0&11)==2 && !(op1&2) && !(op2&4) && !(op3&0x21))
			return decode_iclass_asimdext(ctx, dec);
		if(!(op0&9) && !op1 && !(op2&12) && (op3&0x21)==1)
			return decode_iclass_asimdins(ctx, dec);
		if(!(op0&9) && op1==1 && !(op2&12) && (op3&0x21)==1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_19
		if(!(op0&9) && !(op1&2) && op2==7 && (op3&0x183)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_31
		if(!(op0&9) && !(op1&2) && (op2&12)==8 && (op3&0x31)==1)
			return decode_iclass_asimdsamefp16(ctx, dec);
		if(!(op0&9) && !(op1&2) && (op2&12)==8 && (op3&0x31)==0x11)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_21
		if(!(op0&9) && !(op1&2) && op2==15 && (op3&0x183)==2)
			return decode_iclass_asimdmiscfp16(ctx, dec);
		if(!(op0&9) && !(op1&2) && !(op2&4) && (op3&0x21)==0x20)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_13
		if(!(op0&9) && !(op1&2) && !(op2&4) && (op3&0x21)==0x21)
			return decode_iclass_asimdsame2(ctx, dec);
		if(!(op0&9) && !(op1&2) && (op2&7)==4 && (op3&0x183)==2)
			return decode_iclass_asimdmisc(ctx, dec);
		if(!(op0&9) && !(op1&2) && (op2&7)==6 && (op3&0x183)==2)
			return decode_iclass_asimdall(ctx, dec);
		if(!(op0&9) && !(op1&2) && (op2&4)==4 && (op3&0x103)==0x102)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_33
		if(!(op0&9) && !(op1&2) && (op2&4)==4 && (op3&0x83)==0x82)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_34
		if(!(op0&9) && !(op1&2) && (op2&4)==4 && !(op3&3))
			return decode_iclass_asimddiff(ctx, dec);
		if(!(op0&9) && !(op1&2) && (op2&4)==4 && op3&1)
			return decode_iclass_asimdsame(ctx, dec);
		if(!(op0&9) && op1==2 && !op2 && op3&1)
			return decode_iclass_asimdimm(ctx, dec);
		if(!(op0&9) && op1==2 && op2 && op3&1)
			return decode_iclass_asimdshf(ctx, dec);
		if(!(op0&9) && op1==3 && op3&1)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_36
		if(!(op0&9) && (op1&2)==2 && !(op3&1))
			return decode_iclass_asimdelem(ctx, dec);
		if(op0==12 && !op1 && (op2&12)==8 && (op3&0x30)==0x20)
			return decode_iclass_crypto3_imm2(ctx, dec);
		if(op0==12 && !op1 && (op2&12)==12 && (op3&0x2c)==0x20)
			return decode_iclass_cryptosha512_3(ctx, dec);
		if(op0==12 && !op1 && !(op3&0x20))
			return decode_iclass_crypto4(ctx, dec);
		if(op0==12 && op1==1 && !(op2&12))
			return decode_iclass_crypto3_imm6(ctx, dec);
		if(op0==12 && op1==1 && op2==8 && (op3&0x1fc)==0x20)
			return decode_iclass_cryptosha512_2(ctx, dec);
		if((op0&9)==8 && (op1&2)==2)
			UNALLOCATED(ENC_UNKNOWN); // iclass: UNALLOCATED_advsimd_11
		if((op0&5)==1 && !(op1&2) && !(op2&4))
			return decode_iclass_float2fix(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && !(op3&0x3f))
			return decode_iclass_float2int(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&0x1f)==0x10)
			return decode_iclass_floatdp1(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&15)==8)
			return decode_iclass_floatcmp(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&7)==4)
			return decode_iclass_floatimm(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&3)==1)
			return decode_iclass_floatccmp(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&3)==2)
			return decode_iclass_floatdp2(ctx, dec);
		if((op0&5)==1 && !(op1&2) && (op2&4)==4 && (op3&3)==3)
			return decode_iclass_floatsel(ctx, dec);
		if((op0&5)==1 && (op1&2)==2)
			return decode_iclass_floatdp3(ctx, dec);
		UNMATCHED;
	}
	UNMATCHED;
}