aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ifuzz/powerpc/generated/insns.go
blob: 898ccd1636f04710ad0e44ff86e81743e72dce93 (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
// Code generated by ./pkg/ifuzz/powerpc/gen/powerisa31_tex_to_syz. DO NOT EDIT.

//go:build !codeanalysis

package generated

import "github.com/google/syzkaller/pkg/ifuzz/powerpc"

func init() {
	powerpc.Register(insns)
}

var insns = []*powerpc.Insn{
	{Name: "add", Opcode: 0x7c000214, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "add.", Opcode: 0x7c000215, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addc", Opcode: 0x7c000014, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addc.", Opcode: 0x7c000015, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addco", Opcode: 0x7c000414, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addco.", Opcode: 0x7c000415, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "adde", Opcode: 0x7c000114, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "adde.", Opcode: 0x7c000115, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addeo", Opcode: 0x7c000514, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addeo.", Opcode: 0x7c000515, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addex", Opcode: 0x7c000154, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "CY", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addg6s", Opcode: 0x7c000094, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addi", Opcode: 0x38000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "addic", Opcode: 0x30000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "addic.", Opcode: 0x34000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "addis", Opcode: 0x3c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "addme", Opcode: 0x7c0001d4, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addme.", Opcode: 0x7c0001d5, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addmeo", Opcode: 0x7c0005d4, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addmeo.", Opcode: 0x7c0005d5, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addo", Opcode: 0x7c000614, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addo.", Opcode: 0x7c000615, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addpcis", Opcode: 0x4c000004, Mask: 0xfc00003e, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d0", Bits: []powerpc.InsnBits{{16, 10}}}, {Name: "d1", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "d2", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "addze", Opcode: 0x7c000194, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addze.", Opcode: 0x7c000195, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addzeo", Opcode: 0x7c000594, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "addzeo.", Opcode: 0x7c000595, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "and", Opcode: 0x7c000038, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "and.", Opcode: 0x7c000039, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "andc", Opcode: 0x7c000078, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "andc.", Opcode: 0x7c000079, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "andi.", Opcode: 0x70000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "andis.", Opcode: 0x74000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "b", Opcode: 0x48000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "LI", Bits: []powerpc.InsnBits{{6, 24}}}}},
	{Name: "ba", Opcode: 0x48000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "LI", Bits: []powerpc.InsnBits{{6, 24}}}}},
	{Name: "bc", Opcode: 0x40000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "BD", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bca", Opcode: 0x40000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "BD", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcctr", Opcode: 0x4c000420, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcctrl", Opcode: 0x4c000421, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdadd.", Opcode: 0x10000401, Mask: 0xfc0005ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdcfn.", Opcode: 0x10070581, Mask: 0xfc1f05ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdcfsq.", Opcode: 0x10020581, Mask: 0xfc1f05ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdcfz.", Opcode: 0x10060581, Mask: 0xfc1f05ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdcpsgn.", Opcode: 0x10000341, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdctn.", Opcode: 0x10050581, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdctsq.", Opcode: 0x10000581, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdctz.", Opcode: 0x10040581, Mask: 0xfc1f05ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcds.", Opcode: 0x100004c1, Mask: 0xfc0005ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdsetsgn.", Opcode: 0x101f0581, Mask: 0xfc1f05ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdsr.", Opcode: 0x100005c1, Mask: 0xfc0005ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdsub.", Opcode: 0x10000441, Mask: 0xfc0005ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdtrunc.", Opcode: 0x10000501, Mask: 0xfc0005ff, Fields: []powerpc.InsnField{{Name: "PS", Bits: []powerpc.InsnBits{{22, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdus.", Opcode: 0x10000481, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcdutrunc.", Opcode: 0x10000541, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcl", Opcode: 0x40000001, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "BD", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bcla", Opcode: 0x40000003, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "BD", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bclr", Opcode: 0x4c000020, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bclrl", Opcode: 0x4c000021, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bctar", Opcode: 0x4c000460, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bctarl", Opcode: 0x4c000461, Mask: 0xfc00e7ff, Fields: []powerpc.InsnField{{Name: "BH", Bits: []powerpc.InsnBits{{19, 2}}}, {Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "bl", Opcode: 0x48000001, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "LI", Bits: []powerpc.InsnBits{{6, 24}}}}},
	{Name: "bla", Opcode: 0x48000003, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "LI", Bits: []powerpc.InsnBits{{6, 24}}}}},
	{Name: "bpermd", Opcode: 0x7c0001f8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "brd", Opcode: 0x7c000176, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "brh", Opcode: 0x7c0001b6, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "brw", Opcode: 0x7c000136, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cbcdtd", Opcode: 0x7c000274, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cdtbcd", Opcode: 0x7c000234, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cfuged", Opcode: 0x7c0001b8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "clrbhrb", Opcode: 0x7c00035c, Mask: 0xffffffff, Fields: []powerpc.InsnField{}},
	{Name: "cmp", Opcode: 0x7c000000, Mask: 0xfc4007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "cmpb", Opcode: 0x7c0003f8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "Rc", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "cmpeqb", Opcode: 0x7c0001c0, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "cmpi", Opcode: 0x2c000000, Mask: 0xfc400000, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "cmpl", Opcode: 0x7c000040, Mask: 0xfc4007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "cmpli", Opcode: 0x28000000, Mask: 0xfc400000, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "cmprb", Opcode: 0x7c000180, Mask: 0xfc4007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "cntlzd", Opcode: 0x7c000074, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cntlzd.", Opcode: 0x7c000075, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cntlzdm", Opcode: 0x7c000076, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cntlzw", Opcode: 0x7c000034, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cntlzw.", Opcode: 0x7c000035, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cnttzd", Opcode: 0x7c000474, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cnttzd.", Opcode: 0x7c000475, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cnttzdm", Opcode: 0x7c000476, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cnttzw", Opcode: 0x7c000434, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cnttzw.", Opcode: 0x7c000435, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "copy", Opcode: 0x7c20060c, Mask: 0xffe007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "cpabort", Opcode: 0x7c00068c, Mask: 0xffffffff, Fields: []powerpc.InsnField{}},
	{Name: "crand", Opcode: 0x4c000202, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "crandc", Opcode: 0x4c000102, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "creqv", Opcode: 0x4c000242, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "crnand", Opcode: 0x4c0001c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "crnor", Opcode: 0x4c000042, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "cror", Opcode: 0x4c000382, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "crorc", Opcode: 0x4c000342, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "crxor", Opcode: 0x4c000182, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "BB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dadd", Opcode: 0xec000004, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dadd.", Opcode: 0xec000005, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "daddq", Opcode: 0xfc000004, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "daddq.", Opcode: 0xfc000005, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "darn", Opcode: 0x7c0005e6, Mask: 0xfc1cffff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{14, 2}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcbf", Opcode: 0x7c0000ac, Mask: 0xff0007ff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{8, 3}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcbst", Opcode: 0x7c00006c, Mask: 0xffe007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcbt", Opcode: 0x7c00022c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "TH", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcbtst", Opcode: 0x7c0001ec, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "TH", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcbz", Opcode: 0x7c0007ec, Mask: 0xffe007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcffix", Opcode: 0xec000644, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcffix.", Opcode: 0xec000645, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcffixq", Opcode: 0xfc000644, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcffixq.", Opcode: 0xfc000645, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dcffixqq", Opcode: 0xfc0007c4, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcmpo", Opcode: 0xec000104, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcmpoq", Opcode: 0xfc000104, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcmpu", Opcode: 0xec000504, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dcmpuq", Opcode: 0xfc000504, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dctdp", Opcode: 0xec000204, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctdp.", Opcode: 0xec000205, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctfix", Opcode: 0xec000244, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctfix.", Opcode: 0xec000245, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctfixq", Opcode: 0xfc000244, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctfixq.", Opcode: 0xfc000245, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctfixqq", Opcode: 0xfc0107c4, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctqpq", Opcode: 0xfc000204, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dctqpq.", Opcode: 0xfc000205, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ddedpd", Opcode: 0xec000284, Mask: 0xfc0707ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SP", Bits: []powerpc.InsnBits{{11, 2}}}}},
	{Name: "ddedpd.", Opcode: 0xec000285, Mask: 0xfc0707ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SP", Bits: []powerpc.InsnBits{{11, 2}}}}},
	{Name: "ddedpdq", Opcode: 0xfc000284, Mask: 0xfc0707ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SP", Bits: []powerpc.InsnBits{{11, 2}}}}},
	{Name: "ddedpdq.", Opcode: 0xfc000285, Mask: 0xfc0707ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SP", Bits: []powerpc.InsnBits{{11, 2}}}}},
	{Name: "ddiv", Opcode: 0xec000444, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ddiv.", Opcode: 0xec000445, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ddivq", Opcode: 0xfc000444, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ddivq.", Opcode: 0xfc000445, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "denbcd", Opcode: 0xec000684, Mask: 0xfc0f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{11, 1}}}}},
	{Name: "denbcd.", Opcode: 0xec000685, Mask: 0xfc0f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{11, 1}}}}},
	{Name: "denbcdq", Opcode: 0xfc000684, Mask: 0xfc0f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{11, 1}}}}},
	{Name: "denbcdq.", Opcode: 0xfc000685, Mask: 0xfc0f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{11, 1}}}}},
	{Name: "diex", Opcode: 0xec0006c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "diex.", Opcode: 0xec0006c5, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "diexq", Opcode: 0xfc0006c4, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "Rc", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "diexq.", Opcode: 0xfc0006c5, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divd", Opcode: 0x7c0003d2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divd.", Opcode: 0x7c0003d3, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divde", Opcode: 0x7c000352, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divde.", Opcode: 0x7c000353, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeo", Opcode: 0x7c000752, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeo.", Opcode: 0x7c000753, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeu", Opcode: 0x7c000312, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeu.", Opcode: 0x7c000313, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeuo", Opcode: 0x7c000712, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdeuo.", Opcode: 0x7c000713, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdo", Opcode: 0x7c0007d2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdo.", Opcode: 0x7c0007d3, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdu", Opcode: 0x7c000392, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divdu.", Opcode: 0x7c000393, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divduo", Opcode: 0x7c000792, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divduo.", Opcode: 0x7c000793, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divw", Opcode: 0x7c0003d6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divw.", Opcode: 0x7c0003d7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwe", Opcode: 0x7c000356, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwe.", Opcode: 0x7c000357, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweo", Opcode: 0x7c000756, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweo.", Opcode: 0x7c000757, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweu", Opcode: 0x7c000316, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweu.", Opcode: 0x7c000317, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweuo", Opcode: 0x7c000716, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divweuo.", Opcode: 0x7c000717, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwo", Opcode: 0x7c0007d6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwo.", Opcode: 0x7c0007d7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwu", Opcode: 0x7c000396, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwu.", Opcode: 0x7c000397, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwuo", Opcode: 0x7c000796, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "divwuo.", Opcode: 0x7c000797, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dmul", Opcode: 0xec000044, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dmul.", Opcode: 0xec000045, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dmulq", Opcode: 0xfc000044, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dmulq.", Opcode: 0xfc000045, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dqua", Opcode: 0xec000006, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "dqua.", Opcode: 0xec000007, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "dquai", Opcode: 0xec000086, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "TE", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dquai.", Opcode: 0xec000087, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "TE", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dquaiq", Opcode: 0xfc000086, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "TE", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dquaiq.", Opcode: 0xfc000087, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "TE", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dquaq", Opcode: 0xfc000006, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "dquaq.", Opcode: 0xfc000007, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drdpq", Opcode: 0xfc000604, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "drdpq.", Opcode: 0xfc000605, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "drintn", Opcode: 0xec0001c6, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintn.", Opcode: 0xec0001c7, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintnq", Opcode: 0xfc0001c6, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintnq.", Opcode: 0xfc0001c7, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintx", Opcode: 0xec0000c6, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintx.", Opcode: 0xec0000c7, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintxq", Opcode: 0xfc0000c6, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drintxq.", Opcode: 0xfc0000c7, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drrnd", Opcode: 0xec000046, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drrnd.", Opcode: 0xec000047, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drrndq", Opcode: 0xfc000046, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drrndq.", Opcode: 0xfc000047, Mask: 0xfc0001ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}}},
	{Name: "drsp", Opcode: 0xec000604, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "drsp.", Opcode: 0xec000605, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dscli", Opcode: 0xec000084, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscli.", Opcode: 0xec000085, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscliq", Opcode: 0xfc000084, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscliq.", Opcode: 0xfc000085, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscri", Opcode: 0xec0000c4, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscri.", Opcode: 0xec0000c5, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscriq", Opcode: 0xfc0000c4, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dscriq.", Opcode: 0xfc0000c5, Mask: 0xfc0003ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 6}}}}},
	{Name: "dsub", Opcode: 0xec000404, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dsub.", Opcode: 0xec000405, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dsubq", Opcode: 0xfc000404, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dsubq.", Opcode: 0xfc000405, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dtstdc", Opcode: 0xec000184, Mask: 0xfc6003ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "DCM", Bits: []powerpc.InsnBits{{16, 6}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dtstdcq", Opcode: 0xfc000184, Mask: 0xfc6003ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "DCM", Bits: []powerpc.InsnBits{{16, 6}}}, {Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dtstdg", Opcode: 0xec0001c4, Mask: 0xfc6003ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "DGM", Bits: []powerpc.InsnBits{{16, 6}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dtstdgq", Opcode: 0xfc0001c4, Mask: 0xfc6003ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "DGM", Bits: []powerpc.InsnBits{{16, 6}}}, {Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "dtstex", Opcode: 0xec000144, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dtstexq", Opcode: 0xfc000144, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRAp", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dtstsf", Opcode: 0xec000544, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dtstsfi", Opcode: 0xec000546, Mask: 0xfc4007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{10, 6}}}}},
	{Name: "dtstsfiq", Opcode: 0xfc000546, Mask: 0xfc4007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{10, 6}}}}},
	{Name: "dtstsfq", Opcode: 0xfc000544, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "dxex", Opcode: 0xec0002c4, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dxex.", Opcode: 0xec0002c5, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dxexq", Opcode: 0xfc0002c4, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "dxexq.", Opcode: 0xfc0002c5, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRBp", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "eieio", Opcode: 0x7c0006ac, Mask: 0xffffffff, Fields: []powerpc.InsnField{}},
	{Name: "eqv", Opcode: 0x7c000238, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "eqv.", Opcode: 0x7c000239, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsb", Opcode: 0x7c000774, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsb.", Opcode: 0x7c000775, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsh", Opcode: 0x7c000734, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsh.", Opcode: 0x7c000735, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsw", Opcode: 0x7c0007b4, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extsw.", Opcode: 0x7c0007b5, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "extswsli", Opcode: 0x7c0006f4, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "extswsli.", Opcode: 0x7c0006f5, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "fabs", Opcode: 0xfc000210, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fabs.", Opcode: 0xfc000211, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fadd", Opcode: 0xfc00002a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fadd.", Opcode: 0xfc00002b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fadds", Opcode: 0xec00002a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fadds.", Opcode: 0xec00002b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfid", Opcode: 0xfc00069c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfid.", Opcode: 0xfc00069d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfids", Opcode: 0xec00069c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfids.", Opcode: 0xec00069d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfidu", Opcode: 0xfc00079c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfidu.", Opcode: 0xfc00079d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfidus", Opcode: 0xec00079c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcfidus.", Opcode: 0xec00079d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcmpo", Opcode: 0xfc000040, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "fcmpu", Opcode: 0xfc000000, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "fcpsgn", Opcode: 0xfc000010, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fcpsgn.", Opcode: 0xfc000011, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctid", Opcode: 0xfc00065c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctid.", Opcode: 0xfc00065d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctidu", Opcode: 0xfc00075c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctidu.", Opcode: 0xfc00075d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiduz", Opcode: 0xfc00075e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiduz.", Opcode: 0xfc00075f, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctidz", Opcode: 0xfc00065e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctidz.", Opcode: 0xfc00065f, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiw", Opcode: 0xfc00001c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiw.", Opcode: 0xfc00001d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwu", Opcode: 0xfc00011c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwu.", Opcode: 0xfc00011d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwuz", Opcode: 0xfc00011e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwuz.", Opcode: 0xfc00011f, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwz", Opcode: 0xfc00001e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fctiwz.", Opcode: 0xfc00001f, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fdiv", Opcode: 0xfc000024, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fdiv.", Opcode: 0xfc000025, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fdivs", Opcode: 0xec000024, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fdivs.", Opcode: 0xec000025, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmadd", Opcode: 0xfc00003a, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmadd.", Opcode: 0xfc00003b, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmadds", Opcode: 0xec00003a, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmadds.", Opcode: 0xec00003b, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmr", Opcode: 0xfc000090, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmr.", Opcode: 0xfc000091, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmrgew", Opcode: 0xfc00078c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmrgow", Opcode: 0xfc00068c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmsub", Opcode: 0xfc000038, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmsub.", Opcode: 0xfc000039, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmsubs", Opcode: 0xec000038, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmsubs.", Opcode: 0xec000039, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmul", Opcode: 0xfc000032, Mask: 0xfc00f83f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmul.", Opcode: 0xfc000033, Mask: 0xfc00f83f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmuls", Opcode: 0xec000032, Mask: 0xfc00f83f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fmuls.", Opcode: 0xec000033, Mask: 0xfc00f83f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnabs", Opcode: 0xfc000110, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnabs.", Opcode: 0xfc000111, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fneg", Opcode: 0xfc000050, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fneg.", Opcode: 0xfc000051, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmadd", Opcode: 0xfc00003e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmadd.", Opcode: 0xfc00003f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmadds", Opcode: 0xec00003e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmadds.", Opcode: 0xec00003f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmsub", Opcode: 0xfc00003c, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmsub.", Opcode: 0xfc00003d, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmsubs", Opcode: 0xec00003c, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fnmsubs.", Opcode: 0xec00003d, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fre", Opcode: 0xfc000030, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fre.", Opcode: 0xfc000031, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fres", Opcode: 0xec000030, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fres.", Opcode: 0xec000031, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frim", Opcode: 0xfc0003d0, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frim.", Opcode: 0xfc0003d1, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frin", Opcode: 0xfc000310, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frin.", Opcode: 0xfc000311, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frip", Opcode: 0xfc000390, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frip.", Opcode: 0xfc000391, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "friz", Opcode: 0xfc000350, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "friz.", Opcode: 0xfc000351, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsp", Opcode: 0xfc000018, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsp.", Opcode: 0xfc000019, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsqrte", Opcode: 0xfc000034, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsqrte.", Opcode: 0xfc000035, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsqrtes", Opcode: 0xec000034, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "frsqrtes.", Opcode: 0xec000035, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsel", Opcode: 0xfc00002e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsel.", Opcode: 0xfc00002f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsqrt", Opcode: 0xfc00002c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsqrt.", Opcode: 0xfc00002d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsqrts", Opcode: 0xec00002c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsqrts.", Opcode: 0xec00002d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsub", Opcode: 0xfc000028, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsub.", Opcode: 0xfc000029, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsubs", Opcode: 0xec000028, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "fsubs.", Opcode: 0xec000029, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ftdiv", Opcode: 0xfc000100, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "ftsqrt", Opcode: 0xfc000140, Mask: 0xfc7f07ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "hashchk", Opcode: 0x7c0005e4, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "DX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "hashchkp", Opcode: 0x7c000564, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "DX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "hashst", Opcode: 0x7c0005a4, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "DX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "hashstp", Opcode: 0x7c000524, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "DX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "hrfid", Opcode: 0x4c000224, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "icbi", Opcode: 0x7c0007ac, Mask: 0xffe007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "icbt", Opcode: 0x7c00002c, Mask: 0xfe0007ff, Fields: []powerpc.InsnField{{Name: "CT", Bits: []powerpc.InsnBits{{7, 4}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "isel", Opcode: 0x7c00001e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "BC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "isync", Opcode: 0x4c00012c, Mask: 0xffffffff, Fields: []powerpc.InsnField{}},
	{Name: "lbarx", Opcode: 0x7c000068, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "EH", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lbz", Opcode: 0x88000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lbzcix", Opcode: 0x7c0006aa, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "lbzu", Opcode: 0x8c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lbzux", Opcode: 0x7c0000ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lbzx", Opcode: 0x7c0000ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ld", Opcode: 0xe8000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldarx", Opcode: 0x7c0000a8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "EH", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldat", Opcode: 0x7c0004cc, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FC", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldbrx", Opcode: 0x7c000428, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldcix", Opcode: 0x7c0006ea, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "ldu", Opcode: 0xe8000001, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldux", Opcode: 0x7c00006a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ldx", Opcode: 0x7c00002a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lfd", Opcode: 0xc8000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "lfdp", Opcode: 0xe4000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "lfdpx", Opcode: 0x7c00062e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfdu", Opcode: 0xcc000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "lfdux", Opcode: 0x7c0004ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfdx", Opcode: 0x7c0004ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfiwax", Opcode: 0x7c0006ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfiwzx", Opcode: 0x7c0006ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfs", Opcode: 0xc0000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "lfsu", Opcode: 0xc4000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "lfsux", Opcode: 0x7c00046e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lfsx", Opcode: 0x7c00042e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lha", Opcode: 0xa8000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lharx", Opcode: 0x7c0000e8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "EH", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhau", Opcode: 0xac000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhaux", Opcode: 0x7c0002ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhax", Opcode: 0x7c0002ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhbrx", Opcode: 0x7c00062c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhz", Opcode: 0xa0000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhzcix", Opcode: 0x7c00066a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "lhzu", Opcode: 0xa4000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhzux", Opcode: 0x7c00026e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lhzx", Opcode: 0x7c00022e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lmw", Opcode: 0xb8000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lq", Opcode: 0xe0000000, Mask: 0xfc00000f, Fields: []powerpc.InsnField{{Name: "DQ", Bits: []powerpc.InsnBits{{16, 12}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lqarx", Opcode: 0x7c000228, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "EH", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RTp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lswi", Opcode: 0x7c0004aa, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "NB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lswx", Opcode: 0x7c00042a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvebx", Opcode: 0x7c00000e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvehx", Opcode: 0x7c00004e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvewx", Opcode: 0x7c00008e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvsl", Opcode: 0x7c00000c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvsr", Opcode: 0x7c00004c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvx", Opcode: 0x7c0000ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lvxl", Opcode: 0x7c0002ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwa", Opcode: 0xe8000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwarx", Opcode: 0x7c000028, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "EH", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwat", Opcode: 0x7c00048c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FC", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwaux", Opcode: 0x7c0002ea, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwax", Opcode: 0x7c0002aa, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwbrx", Opcode: 0x7c00042c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwz", Opcode: 0x80000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwzcix", Opcode: 0x7c00062a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "lwzu", Opcode: 0x84000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwzux", Opcode: 0x7c00006e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lwzx", Opcode: 0x7c00002e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lxsd", Opcode: 0xe4000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lxsdx", Opcode: 0x7c000498, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxsibzx", Opcode: 0x7c00061a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxsihzx", Opcode: 0x7c00065a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxsiwax", Opcode: 0x7c000098, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxsiwzx", Opcode: 0x7c000018, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxssp", Opcode: 0xe4000003, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "lxsspx", Opcode: 0x7c000418, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxv", Opcode: 0xf4000001, Mask: 0xfc000007, Fields: []powerpc.InsnField{{Name: "DQ", Bits: []powerpc.InsnBits{{16, 12}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{28, 1}}}}},
	{Name: "lxvb16x", Opcode: 0x7c0006d8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvd2x", Opcode: 0x7c000698, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvdsx", Opcode: 0x7c000298, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvh8x", Opcode: 0x7c000658, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvkq", Opcode: 0xf01f02d0, Mask: 0xfc1f07fe, Fields: []powerpc.InsnField{{Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "lxvl", Opcode: 0x7c00021a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvll", Opcode: 0x7c00025a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvp", Opcode: 0x18000000, Mask: 0xfc00000f, Fields: []powerpc.InsnField{{Name: "DQ", Bits: []powerpc.InsnBits{{16, 12}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Tp", Bits: []powerpc.InsnBits{{6, 4}}}}},
	{Name: "lxvpx", Opcode: 0x7c00029a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Tp", Bits: []powerpc.InsnBits{{6, 4}}}}},
	{Name: "lxvrbx", Opcode: 0x7c00001a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvrdx", Opcode: 0x7c0000da, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvrhx", Opcode: 0x7c00005a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvrwx", Opcode: 0x7c00009a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvw4x", Opcode: 0x7c000618, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvwsx", Opcode: 0x7c0002d8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "lxvx", Opcode: 0x7c000218, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "maddhd", Opcode: 0x10000030, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "maddhdu", Opcode: 0x10000031, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "maddld", Opcode: 0x10000033, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mcrf", Opcode: 0x4c000000, Mask: 0xfc63ffff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BFA", Bits: []powerpc.InsnBits{{11, 3}}}}},
	{Name: "mcrfs", Opcode: 0xfc000080, Mask: 0xfc63ffff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BFA", Bits: []powerpc.InsnBits{{11, 3}}}}},
	{Name: "mcrxrx", Opcode: 0x7c000480, Mask: 0xfc7fffff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}}},
	{Name: "mfbhrbe", Opcode: 0x7c00025c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BHRBE", Bits: []powerpc.InsnBits{{11, 10}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mfcr", Opcode: 0x7c000026, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffs", Opcode: 0xfc00048e, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffs.", Opcode: 0xfc00048f, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffscdrn", Opcode: 0xfc14048e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffscdrni", Opcode: 0xfc15048e, Mask: 0xfc1fc7ff, Fields: []powerpc.InsnField{{Name: "DRM", Bits: []powerpc.InsnBits{{18, 3}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffsce", Opcode: 0xfc01048e, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffscrn", Opcode: 0xfc16048e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mffscrni", Opcode: 0xfc17048e, Mask: 0xfc1fe7ff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RM", Bits: []powerpc.InsnBits{{19, 2}}}}},
	{Name: "mffsl", Opcode: 0xfc18048e, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mfmsr", Opcode: 0x7c0000a6, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "mfocrf", Opcode: 0x7c100026, Mask: 0xfc100fff, Fields: []powerpc.InsnField{{Name: "FXM", Bits: []powerpc.InsnBits{{12, 8}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mfspr", Opcode: 0x7c0002a6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "spr", Bits: []powerpc.InsnBits{{16, 5}, {11, 5}}}}},
	{Name: "mftb", Opcode: 0x7c0002e6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "tbr", Bits: []powerpc.InsnBits{{11, 10}}}}},
	{Name: "mfvscr", Opcode: 0x10000604, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mfvsrd", Opcode: 0x7c000066, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mfvsrld", Opcode: 0x7c000266, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mfvsrwz", Opcode: 0x7c0000e6, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "modsd", Opcode: 0x7c000612, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "modsw", Opcode: 0x7c000616, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "modud", Opcode: 0x7c000212, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "moduw", Opcode: 0x7c000216, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "msgclr", Opcode: 0x7c0001dc, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgclrp", Opcode: 0x7c00015c, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgclru", Opcode: 0x7c0000dc, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgsnd", Opcode: 0x7c00019c, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgsndp", Opcode: 0x7c00011c, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgsndu", Opcode: 0x7c00009c, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "msgsync", Opcode: 0x7c0006ec, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "mtcrf", Opcode: 0x7c000120, Mask: 0xfc100fff, Fields: []powerpc.InsnField{{Name: "FXM", Bits: []powerpc.InsnBits{{12, 8}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtfsb0", Opcode: 0xfc00008c, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtfsb0.", Opcode: 0xfc00008d, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtfsb1", Opcode: 0xfc00004c, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtfsb1.", Opcode: 0xfc00004d, Mask: 0xfc1fffff, Fields: []powerpc.InsnField{{Name: "BT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtfsf", Opcode: 0xfc00058e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FLM", Bits: []powerpc.InsnBits{{7, 8}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "L", Bits: []powerpc.InsnBits{{6, 1}}}, {Name: "W", Bits: []powerpc.InsnBits{{15, 1}}}}},
	{Name: "mtfsf.", Opcode: 0xfc00058f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FLM", Bits: []powerpc.InsnBits{{7, 8}}}, {Name: "FRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "L", Bits: []powerpc.InsnBits{{6, 1}}}, {Name: "W", Bits: []powerpc.InsnBits{{15, 1}}}}},
	{Name: "mtfsfi", Opcode: 0xfc00010c, Mask: 0xfc7e0fff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "U", Bits: []powerpc.InsnBits{{16, 4}}}, {Name: "W", Bits: []powerpc.InsnBits{{15, 1}}}}},
	{Name: "mtfsfi.", Opcode: 0xfc00010d, Mask: 0xfc7e0fff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "U", Bits: []powerpc.InsnBits{{16, 4}}}, {Name: "W", Bits: []powerpc.InsnBits{{15, 1}}}}},
	{Name: "mtmsr", Opcode: 0x7c000124, Mask: 0xfc1effff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "mtmsrd", Opcode: 0x7c000164, Mask: 0xfc1effff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "mtocrf", Opcode: 0x7c100120, Mask: 0xfc100fff, Fields: []powerpc.InsnField{{Name: "FXM", Bits: []powerpc.InsnBits{{12, 8}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtspr", Opcode: 0x7c0003a6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "spr", Bits: []powerpc.InsnBits{{16, 5}, {11, 5}}}}},
	{Name: "mtvscr", Opcode: 0x10000644, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "mtvsrbm", Opcode: 0x10100642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtvsrbmi", Opcode: 0x10000014, Mask: 0xfc00003e, Fields: []powerpc.InsnField{{Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "b0", Bits: []powerpc.InsnBits{{16, 10}}}, {Name: "b1", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "b2", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mtvsrd", Opcode: 0x7c000166, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mtvsrdd", Opcode: 0x7c000366, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mtvsrdm", Opcode: 0x10130642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtvsrhm", Opcode: 0x10110642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtvsrqm", Opcode: 0x10140642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtvsrwa", Opcode: 0x7c0001a6, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mtvsrwm", Opcode: 0x10120642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mtvsrws", Opcode: 0x7c000326, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mtvsrwz", Opcode: 0x7c0001e6, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "mulhd", Opcode: 0x7c000092, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhd.", Opcode: 0x7c000093, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhdu", Opcode: 0x7c000012, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhdu.", Opcode: 0x7c000013, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhw", Opcode: 0x7c000096, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhw.", Opcode: 0x7c000097, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhwu", Opcode: 0x7c000016, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulhwu.", Opcode: 0x7c000017, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulld", Opcode: 0x7c0001d2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulld.", Opcode: 0x7c0001d3, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulldo", Opcode: 0x7c0005d2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulldo.", Opcode: 0x7c0005d3, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mulli", Opcode: 0x1c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "mullw", Opcode: 0x7c0001d6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mullw.", Opcode: 0x7c0001d7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mullwo", Opcode: 0x7c0005d6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "mullwo.", Opcode: 0x7c0005d7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nand", Opcode: 0x7c0003b8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nand.", Opcode: 0x7c0003b9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "neg", Opcode: 0x7c0000d0, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "neg.", Opcode: 0x7c0000d1, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nego", Opcode: 0x7c0004d0, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nego.", Opcode: 0x7c0004d1, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nor", Opcode: 0x7c0000f8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "nor.", Opcode: 0x7c0000f9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "or", Opcode: 0x7c000378, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "or.", Opcode: 0x7c000379, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "orc", Opcode: 0x7c000338, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "orc.", Opcode: 0x7c000339, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "ori", Opcode: 0x60000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "oris", Opcode: 0x64000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "paddi", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "si0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0x38000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "si1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "paste.", Opcode: 0x7c00070d, Mask: 0xffc007ff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "pdepd", Opcode: 0x7c000138, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "pextd", Opcode: 0x7c000178, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "plbz", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0x88000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pld", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xe4000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plfd", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xc8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plfs", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xc0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "FRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plha", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xa8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plhz", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xa0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plq", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xe0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RTp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plwa", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xa4000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plwz", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0x80000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plxsd", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xa8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plxssp", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xac000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plxv", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xc8000000, MaskSuffix: 0xf8000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{5, 1}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "plxvp", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xe8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Tp", Bits: []powerpc.InsnBits{{6, 4}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pmxvbf16ger2", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000198, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvbf16ger2nn", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000790, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvbf16ger2np", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000390, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvbf16ger2pn", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000590, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvbf16ger2pp", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000190, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf16ger2", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000098, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf16ger2nn", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000690, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf16ger2np", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000290, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf16ger2pn", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000490, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf16ger2pp", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000090, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf32ger", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec0000d8, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf32gernn", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec0006d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf32gernp", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec0002d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf32gerpn", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec0004d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf32gerpp", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec0000d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf64ger", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 2}}}},
		OpcodeSuffix: 0xec0001d8, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf64gernn", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 2}}}},
		OpcodeSuffix: 0xec0007d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf64gernp", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 2}}}},
		OpcodeSuffix: 0xec0003d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf64gerpn", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 2}}}},
		OpcodeSuffix: 0xec0005d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvf64gerpp", Opcode: 0x07900000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 2}}}},
		OpcodeSuffix: 0xec0001d0, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi16ger2", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000258, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi16ger2pp", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000358, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi16ger2s", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000158, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi16ger2spp", Opcode: 0x07900000, Mask: 0xffff3f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 2}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000150, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi4ger8", Opcode: 0x07900000, Mask: 0xffff0000, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 8}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000118, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi4ger8pp", Opcode: 0x07900000, Mask: 0xffff0000, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 8}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000110, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi8ger4", Opcode: 0x07900000, Mask: 0xffff0f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 4}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000018, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi8ger4pp", Opcode: 0x07900000, Mask: 0xffff0f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 4}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000010, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pmxvi8ger4spp", Opcode: 0x07900000, Mask: 0xffff0f00, Fields: []powerpc.InsnField{{Name: "PMSK", Bits: []powerpc.InsnBits{{16, 4}}}, {Name: "XMSK", Bits: []powerpc.InsnBits{{24, 4}}}, {Name: "YMSK", Bits: []powerpc.InsnBits{{28, 4}}}},
		OpcodeSuffix: 0xec000318, MaskSuffix: 0xfc6007f9, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "pnop", Opcode: 0x07000000, Mask: 0xffffffff, Fields: []powerpc.InsnField{},
		OpcodeSuffix: 0x00000000, MaskSuffix: 0x00000000, FieldsSuffix: []powerpc.InsnField{}},
	{Name: "popcntb", Opcode: 0x7c0000f4, Mask: 0xfc00fffe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "Rc", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "popcntd", Opcode: 0x7c0003f4, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "popcntw", Opcode: 0x7c0002f4, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "prtyd", Opcode: 0x7c000174, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "prtyw", Opcode: 0x7c000134, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "pstb", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0x98000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstd", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xf4000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstfd", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xd8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstfs", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xd0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "psth", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xb0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstq", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xf0000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RSp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstw", Opcode: 0x06000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0x90000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstxsd", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xb8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstxssp", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xbc000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstxv", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xd8000000, MaskSuffix: 0xf8000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{5, 1}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "pstxvp", Opcode: 0x04000000, Mask: 0xffec0000, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{11, 1}}}, {Name: "d0", Bits: []powerpc.InsnBits{{14, 18}}}},
		OpcodeSuffix: 0xf8000000, MaskSuffix: 0xfc000000, FieldsSuffix: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Sp", Bits: []powerpc.InsnBits{{6, 4}}}, {Name: "d1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "rfebb", Opcode: 0x4c000124, Mask: 0xfffff7ff, Fields: []powerpc.InsnField{{Name: "S", Bits: []powerpc.InsnBits{{20, 1}}}}},
	{Name: "rfid", Opcode: 0x4c000024, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "rfscv", Opcode: 0x4c0000a4, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "rldcl", Opcode: 0x78000010, Mask: 0xfc00001f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}}},
	{Name: "rldcl.", Opcode: 0x78000011, Mask: 0xfc00001f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}}},
	{Name: "rldcr", Opcode: 0x78000012, Mask: 0xfc00001f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "me", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}}},
	{Name: "rldcr.", Opcode: 0x78000013, Mask: 0xfc00001f, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "me", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}}},
	{Name: "rldic", Opcode: 0x78000008, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldic.", Opcode: 0x78000009, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldicl", Opcode: 0x78000000, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldicl.", Opcode: 0x78000001, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldicr", Opcode: 0x78000004, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "me", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldicr.", Opcode: 0x78000005, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "me", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldimi", Opcode: 0x7800000c, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rldimi.", Opcode: 0x7800000d, Mask: 0xfc00001d, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "mb", Bits: []powerpc.InsnBits{{21, 5}, {26, 1}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "rlwimi", Opcode: 0x50000000, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "rlwimi.", Opcode: 0x50000001, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "rlwinm", Opcode: 0x54000000, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "rlwinm.", Opcode: 0x54000001, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "rlwnm", Opcode: 0x5c000000, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "rlwnm.", Opcode: 0x5c000001, Mask: 0xfc000001, Fields: []powerpc.InsnField{{Name: "MB", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "ME", Bits: []powerpc.InsnBits{{26, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sc", Opcode: 0x44000002, Mask: 0xfffff01f, Fields: []powerpc.InsnField{{Name: "LEV", Bits: []powerpc.InsnBits{{20, 7}}}}},
	{Name: "scv", Opcode: 0x44000001, Mask: 0xfffff01f, Fields: []powerpc.InsnField{{Name: "LEV", Bits: []powerpc.InsnBits{{20, 7}}}}},
	{Name: "setb", Opcode: 0x7c000100, Mask: 0xfc03ffff, Fields: []powerpc.InsnField{{Name: "BFA", Bits: []powerpc.InsnBits{{11, 3}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "setbc", Opcode: 0x7c000300, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "setbcr", Opcode: 0x7c000340, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "setnbc", Opcode: 0x7c000380, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "setnbcr", Opcode: 0x7c0003c0, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "BI", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "slbfee.", Opcode: 0x7c0007a7, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbia", Opcode: 0x7c0003e4, Mask: 0xff1fffff, Fields: []powerpc.InsnField{{Name: "IH", Bits: []powerpc.InsnBits{{8, 3}}}}, Priv: true},
	{Name: "slbiag", Opcode: 0x7c0006a4, Mask: 0xfc1effff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbie", Opcode: 0x7c000364, Mask: 0xffff07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}, Priv: true},
	{Name: "slbieg", Opcode: 0x7c0003a4, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbmfee", Opcode: 0x7c000726, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbmfev", Opcode: 0x7c0006a6, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbmte", Opcode: 0x7c000324, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "slbsync", Opcode: 0x7c0002a4, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "sld", Opcode: 0x7c000036, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sld.", Opcode: 0x7c000037, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "slw", Opcode: 0x7c000030, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "slw.", Opcode: 0x7c000031, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srad", Opcode: 0x7c000634, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srad.", Opcode: 0x7c000635, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sradi", Opcode: 0x7c000674, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "sradi.", Opcode: 0x7c000675, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "sh", Bits: []powerpc.InsnBits{{16, 5}, {30, 1}}}}},
	{Name: "sraw", Opcode: 0x7c000630, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sraw.", Opcode: 0x7c000631, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srawi", Opcode: 0x7c000670, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "srawi.", Opcode: 0x7c000671, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SH", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "srd", Opcode: 0x7c000436, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srd.", Opcode: 0x7c000437, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srw", Opcode: 0x7c000430, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "srw.", Opcode: 0x7c000431, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stb", Opcode: 0x98000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stbcix", Opcode: 0x7c0007aa, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "stbcx.", Opcode: 0x7c00056d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stbu", Opcode: 0x9c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stbux", Opcode: 0x7c0001ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stbx", Opcode: 0x7c0001ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "std", Opcode: 0xf8000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdat", Opcode: 0x7c0005cc, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FC", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdbrx", Opcode: 0x7c000528, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdcix", Opcode: 0x7c0007ea, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "stdcx.", Opcode: 0x7c0001ad, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdu", Opcode: 0xf8000001, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdux", Opcode: 0x7c00016a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stdx", Opcode: 0x7c00012a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stfd", Opcode: 0xd8000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "stfdp", Opcode: 0xf4000000, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "FRSp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "stfdpx", Opcode: 0x7c00072e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRSp", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "stfdu", Opcode: 0xdc000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "stfdux", Opcode: 0x7c0005ee, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "stfdx", Opcode: 0x7c0005ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "stfiwx", Opcode: 0x7c0007ae, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "stfs", Opcode: 0xd0000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "stfsu", Opcode: 0xd4000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "stfsux", Opcode: 0x7c00056e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "stfsx", Opcode: 0x7c00052e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FRS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "sth", Opcode: 0xb0000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sthbrx", Opcode: 0x7c00072c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sthcix", Opcode: 0x7c00076a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "sthcx.", Opcode: 0x7c0005ad, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sthu", Opcode: 0xb4000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sthux", Opcode: 0x7c00036e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sthx", Opcode: 0x7c00032e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stmw", Opcode: 0xbc000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stop", Opcode: 0x4c0002e4, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "stq", Opcode: 0xf8000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RSp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stqcx.", Opcode: 0x7c00016d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RSp", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stswi", Opcode: 0x7c0005aa, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "NB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stswx", Opcode: 0x7c00052a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stvebx", Opcode: 0x7c00010e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stvehx", Opcode: 0x7c00014e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stvewx", Opcode: 0x7c00018e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stvx", Opcode: 0x7c0001ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stvxl", Opcode: 0x7c0003ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stw", Opcode: 0x90000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwat", Opcode: 0x7c00058c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "FC", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwbrx", Opcode: 0x7c00052c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwcix", Opcode: 0x7c00072a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "stwcx.", Opcode: 0x7c00012d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwu", Opcode: 0x94000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "D", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwux", Opcode: 0x7c00016e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stwx", Opcode: 0x7c00012e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stxsd", Opcode: 0xf4000002, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stxsdx", Opcode: 0x7c000598, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxsibx", Opcode: 0x7c00071a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxsihx", Opcode: 0x7c00075a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxsiwx", Opcode: 0x7c000118, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxssp", Opcode: 0xf4000003, Mask: 0xfc000003, Fields: []powerpc.InsnField{{Name: "DS", Bits: []powerpc.InsnBits{{16, 14}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "stxsspx", Opcode: 0x7c000518, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxv", Opcode: 0xf4000005, Mask: 0xfc000007, Fields: []powerpc.InsnField{{Name: "DQ", Bits: []powerpc.InsnBits{{16, 12}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{28, 1}}}}},
	{Name: "stxvb16x", Opcode: 0x7c0007d8, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvd2x", Opcode: 0x7c000798, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvh8x", Opcode: 0x7c000758, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvl", Opcode: 0x7c00031a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvll", Opcode: 0x7c00035a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvp", Opcode: 0x18000001, Mask: 0xfc00000f, Fields: []powerpc.InsnField{{Name: "DQ", Bits: []powerpc.InsnBits{{16, 12}}}, {Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Sp", Bits: []powerpc.InsnBits{{6, 4}}}}},
	{Name: "stxvpx", Opcode: 0x7c00039a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{10, 1}}}, {Name: "Sp", Bits: []powerpc.InsnBits{{6, 4}}}}},
	{Name: "stxvrbx", Opcode: 0x7c00011a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvrdx", Opcode: 0x7c0001da, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvrhx", Opcode: 0x7c00015a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvrwx", Opcode: 0x7c00019a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvw4x", Opcode: 0x7c000718, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "stxvx", Opcode: 0x7c000318, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "S", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "subf", Opcode: 0x7c000050, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subf.", Opcode: 0x7c000051, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfc", Opcode: 0x7c000010, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfc.", Opcode: 0x7c000011, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfco", Opcode: 0x7c000410, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfco.", Opcode: 0x7c000411, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfe", Opcode: 0x7c000110, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfe.", Opcode: 0x7c000111, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfeo", Opcode: 0x7c000510, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfeo.", Opcode: 0x7c000511, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfic", Opcode: 0x20000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "subfme", Opcode: 0x7c0001d0, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfme.", Opcode: 0x7c0001d1, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfmeo", Opcode: 0x7c0005d0, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfmeo.", Opcode: 0x7c0005d1, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfo", Opcode: 0x7c000450, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfo.", Opcode: 0x7c000451, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfze", Opcode: 0x7c000190, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfze.", Opcode: 0x7c000191, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfzeo", Opcode: 0x7c000590, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "subfzeo.", Opcode: 0x7c000591, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "sync", Opcode: 0x7c0004ac, Mask: 0xff1cffff, Fields: []powerpc.InsnField{{Name: "L", Bits: []powerpc.InsnBits{{8, 3}}}, {Name: "SC", Bits: []powerpc.InsnBits{{14, 2}}}}},
	{Name: "td", Opcode: 0x7c000088, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "TO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "tdi", Opcode: 0x08000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "TO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "tlbie", Opcode: 0x7c000264, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "PRS", Bits: []powerpc.InsnBits{{14, 1}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RIC", Bits: []powerpc.InsnBits{{12, 2}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "tlbiel", Opcode: 0x7c000224, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "PRS", Bits: []powerpc.InsnBits{{14, 1}}}, {Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RIC", Bits: []powerpc.InsnBits{{12, 2}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}, Priv: true},
	{Name: "tlbsync", Opcode: 0x7c00046c, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "tw", Opcode: 0x7c000008, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "TO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "twi", Opcode: 0x0c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "SI", Bits: []powerpc.InsnBits{{16, 16}}}, {Name: "TO", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "urfid", Opcode: 0x4c000264, Mask: 0xffffffff, Fields: []powerpc.InsnField{}, Priv: true},
	{Name: "vabsdub", Opcode: 0x10000403, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vabsduh", Opcode: 0x10000443, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vabsduw", Opcode: 0x10000483, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddcuq", Opcode: 0x10000140, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddcuw", Opcode: 0x10000180, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddecuq", Opcode: 0x1000003d, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddeuqm", Opcode: 0x1000003c, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddfp", Opcode: 0x1000000a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddsbs", Opcode: 0x10000300, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddshs", Opcode: 0x10000340, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddsws", Opcode: 0x10000380, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddubm", Opcode: 0x10000000, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddubs", Opcode: 0x10000200, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vaddudm", Opcode: 0x100000c0, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vadduhm", Opcode: 0x10000040, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vadduhs", Opcode: 0x10000240, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vadduqm", Opcode: 0x10000100, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vadduwm", Opcode: 0x10000080, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vadduws", Opcode: 0x10000280, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vand", Opcode: 0x10000404, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vandc", Opcode: 0x10000444, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavgsb", Opcode: 0x10000502, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavgsh", Opcode: 0x10000542, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavgsw", Opcode: 0x10000582, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavgub", Opcode: 0x10000402, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavguh", Opcode: 0x10000442, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vavguw", Opcode: 0x10000482, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vbpermd", Opcode: 0x100005cc, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vbpermq", Opcode: 0x1000054c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcfsx", Opcode: 0x1000034a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcfuged", Opcode: 0x1000054d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcfux", Opcode: 0x1000030a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcipher", Opcode: 0x10000508, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcipherlast", Opcode: 0x10000509, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclrlb", Opcode: 0x1000018d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclrrb", Opcode: 0x100001cd, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclzb", Opcode: 0x10000702, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclzd", Opcode: 0x100007c2, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclzdm", Opcode: 0x10000784, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclzh", Opcode: 0x10000742, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vclzlsbb", Opcode: 0x10000602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vclzw", Opcode: 0x10000782, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpbfp", Opcode: 0x100003c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpbfp.", Opcode: 0x100007c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpeqfp", Opcode: 0x100000c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpeqfp.", Opcode: 0x100004c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequb", Opcode: 0x10000006, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequb.", Opcode: 0x10000406, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequd", Opcode: 0x100000c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequd.", Opcode: 0x100004c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequh", Opcode: 0x10000046, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequh.", Opcode: 0x10000446, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequq", Opcode: 0x100001c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequq.", Opcode: 0x100005c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequw", Opcode: 0x10000086, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpequw.", Opcode: 0x10000486, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgefp", Opcode: 0x100001c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgefp.", Opcode: 0x100005c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtfp", Opcode: 0x100002c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtfp.", Opcode: 0x100006c6, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsb", Opcode: 0x10000306, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsb.", Opcode: 0x10000706, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsd", Opcode: 0x100003c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsd.", Opcode: 0x100007c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsh", Opcode: 0x10000346, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsh.", Opcode: 0x10000746, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsq", Opcode: 0x10000387, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsq.", Opcode: 0x10000787, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsw", Opcode: 0x10000386, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtsw.", Opcode: 0x10000786, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtub", Opcode: 0x10000206, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtub.", Opcode: 0x10000606, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtud", Opcode: 0x100002c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtud.", Opcode: 0x100006c7, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuh", Opcode: 0x10000246, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuh.", Opcode: 0x10000646, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuq", Opcode: 0x10000287, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuq.", Opcode: 0x10000687, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuw", Opcode: 0x10000286, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpgtuw.", Opcode: 0x10000686, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpneb", Opcode: 0x10000007, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpneb.", Opcode: 0x10000407, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpneh", Opcode: 0x10000047, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpneh.", Opcode: 0x10000447, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnew", Opcode: 0x10000087, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnew.", Opcode: 0x10000487, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezb", Opcode: 0x10000107, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezb.", Opcode: 0x10000507, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezh", Opcode: 0x10000147, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezh.", Opcode: 0x10000547, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezw", Opcode: 0x10000187, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpnezw.", Opcode: 0x10000587, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vcmpsq", Opcode: 0x10000141, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vcmpuq", Opcode: 0x10000101, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vcntmbb", Opcode: 0x10180642, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "MP", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vcntmbd", Opcode: 0x101e0642, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "MP", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vcntmbh", Opcode: 0x101a0642, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "MP", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vcntmbw", Opcode: 0x101c0642, Mask: 0xfc1e07ff, Fields: []powerpc.InsnField{{Name: "MP", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vctsxs", Opcode: 0x100003ca, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctuxs", Opcode: 0x1000038a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctzb", Opcode: 0x101c0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctzd", Opcode: 0x101f0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctzdm", Opcode: 0x100007c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctzh", Opcode: 0x101d0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vctzlsbb", Opcode: 0x10010602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vctzw", Opcode: 0x101e0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivesd", Opcode: 0x100003cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivesq", Opcode: 0x1000030b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivesw", Opcode: 0x1000038b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdiveud", Opcode: 0x100002cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdiveuq", Opcode: 0x1000020b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdiveuw", Opcode: 0x1000028b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivsd", Opcode: 0x100001cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivsq", Opcode: 0x1000010b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivsw", Opcode: 0x1000018b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivud", Opcode: 0x100000cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivuq", Opcode: 0x1000000b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vdivuw", Opcode: 0x1000008b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "veqv", Opcode: 0x10000684, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexpandbm", Opcode: 0x10000642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexpanddm", Opcode: 0x10030642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexpandhm", Opcode: 0x10010642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexpandqm", Opcode: 0x10040642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexpandwm", Opcode: 0x10020642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vexptefp", Opcode: 0x1000018a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextddvlx", Opcode: 0x1000001e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextddvrx", Opcode: 0x1000001f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextdubvlx", Opcode: 0x10000018, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextdubvrx", Opcode: 0x10000019, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextduhvlx", Opcode: 0x1000001a, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextduhvrx", Opcode: 0x1000001b, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextduwvlx", Opcode: 0x1000001c, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextduwvrx", Opcode: 0x1000001d, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "RC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextractbm", Opcode: 0x10080642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextractd", Opcode: 0x100002cd, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextractdm", Opcode: 0x100b0642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextracthm", Opcode: 0x10090642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextractqm", Opcode: 0x100c0642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextractub", Opcode: 0x1000020d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextractuh", Opcode: 0x1000024d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextractuw", Opcode: 0x1000028d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextractwm", Opcode: 0x100a0642, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextsb2d", Opcode: 0x10180602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextsb2w", Opcode: 0x10100602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextsd2q", Opcode: 0x101b0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextsh2d", Opcode: 0x10190602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextsh2w", Opcode: 0x10110602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextsw2d", Opcode: 0x101a0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vextublx", Opcode: 0x1000060d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextubrx", Opcode: 0x1000070d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextuhlx", Opcode: 0x1000064d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextuhrx", Opcode: 0x1000074d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextuwlx", Opcode: 0x1000068d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vextuwrx", Opcode: 0x1000078d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vgbbd", Opcode: 0x1000050c, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vgnb", Opcode: 0x100004cc, Mask: 0xfc1807ff, Fields: []powerpc.InsnField{{Name: "N", Bits: []powerpc.InsnBits{{13, 3}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "vinsblx", Opcode: 0x1000020f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsbrx", Opcode: 0x1000030f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsbvlx", Opcode: 0x1000000f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsbvrx", Opcode: 0x1000010f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsd", Opcode: 0x100001cf, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsdlx", Opcode: 0x100002cf, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsdrx", Opcode: 0x100003cf, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsertb", Opcode: 0x1000030d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsertd", Opcode: 0x100003cd, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinserth", Opcode: 0x1000034d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsertw", Opcode: 0x1000038d, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinshlx", Opcode: 0x1000024f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinshrx", Opcode: 0x1000034f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinshvlx", Opcode: 0x1000004f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinshvrx", Opcode: 0x1000014f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinsw", Opcode: 0x100000cf, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinswlx", Opcode: 0x1000028f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinswrx", Opcode: 0x1000038f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinswvlx", Opcode: 0x1000008f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vinswvrx", Opcode: 0x1000018f, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vlogefp", Opcode: 0x100001ca, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaddfp", Opcode: 0x1000002e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxfp", Opcode: 0x1000040a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxsb", Opcode: 0x10000102, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxsd", Opcode: 0x100001c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxsh", Opcode: 0x10000142, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxsw", Opcode: 0x10000182, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxub", Opcode: 0x10000002, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxud", Opcode: 0x100000c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxuh", Opcode: 0x10000042, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmaxuw", Opcode: 0x10000082, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmhaddshs", Opcode: 0x10000020, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmhraddshs", Opcode: 0x10000021, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminfp", Opcode: 0x1000044a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminsb", Opcode: 0x10000302, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminsd", Opcode: 0x100003c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminsh", Opcode: 0x10000342, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminsw", Opcode: 0x10000382, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminub", Opcode: 0x10000202, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminud", Opcode: 0x100002c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminuh", Opcode: 0x10000242, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vminuw", Opcode: 0x10000282, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmladduhm", Opcode: 0x10000022, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmodsd", Opcode: 0x100007cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmodsq", Opcode: 0x1000070b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmodsw", Opcode: 0x1000078b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmodud", Opcode: 0x100006cb, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmoduq", Opcode: 0x1000060b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmoduw", Opcode: 0x1000068b, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrgew", Opcode: 0x1000078c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrghb", Opcode: 0x1000000c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrghh", Opcode: 0x1000004c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrghw", Opcode: 0x1000008c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrglb", Opcode: 0x1000010c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrglh", Opcode: 0x1000014c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrglw", Opcode: 0x1000018c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmrgow", Opcode: 0x1000068c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumcud", Opcode: 0x10000017, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsummbm", Opcode: 0x10000025, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumshm", Opcode: 0x10000028, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumshs", Opcode: 0x10000029, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumubm", Opcode: 0x10000024, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumudm", Opcode: 0x10000023, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumuhm", Opcode: 0x10000026, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmsumuhs", Opcode: 0x10000027, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmul10cuq", Opcode: 0x10000001, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmul10ecuq", Opcode: 0x10000041, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmul10euq", Opcode: 0x10000241, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmul10uq", Opcode: 0x10000201, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulesb", Opcode: 0x10000308, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulesd", Opcode: 0x100003c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulesh", Opcode: 0x10000348, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulesw", Opcode: 0x10000388, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuleub", Opcode: 0x10000208, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuleud", Opcode: 0x100002c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuleuh", Opcode: 0x10000248, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuleuw", Opcode: 0x10000288, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulhsd", Opcode: 0x100003c9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulhsw", Opcode: 0x10000389, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulhud", Opcode: 0x100002c9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulhuw", Opcode: 0x10000289, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulld", Opcode: 0x100001c9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulosb", Opcode: 0x10000108, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulosd", Opcode: 0x100001c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulosh", Opcode: 0x10000148, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulosw", Opcode: 0x10000188, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuloub", Opcode: 0x10000008, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuloud", Opcode: 0x100000c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulouh", Opcode: 0x10000048, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmulouw", Opcode: 0x10000088, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vmuluwm", Opcode: 0x10000089, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vnand", Opcode: 0x10000584, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vncipher", Opcode: 0x10000548, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vncipherlast", Opcode: 0x10000549, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vnegd", Opcode: 0x10070602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vnegw", Opcode: 0x10060602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vnmsubfp", Opcode: 0x1000002f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vnor", Opcode: 0x10000504, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vor", Opcode: 0x10000484, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vorc", Opcode: 0x10000544, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpdepd", Opcode: 0x100005cd, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vperm", Opcode: 0x1000002b, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpermr", Opcode: 0x1000003b, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpermxor", Opcode: 0x1000002d, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpextd", Opcode: 0x1000058d, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkpx", Opcode: 0x1000030e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpksdss", Opcode: 0x100005ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpksdus", Opcode: 0x1000054e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkshss", Opcode: 0x1000018e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkshus", Opcode: 0x1000010e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkswss", Opcode: 0x100001ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkswus", Opcode: 0x1000014e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkudum", Opcode: 0x1000044e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkudus", Opcode: 0x100004ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkuhum", Opcode: 0x1000000e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkuhus", Opcode: 0x1000008e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkuwum", Opcode: 0x1000004e, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpkuwus", Opcode: 0x100000ce, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpmsumb", Opcode: 0x10000408, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpmsumd", Opcode: 0x100004c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpmsumh", Opcode: 0x10000448, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpmsumw", Opcode: 0x10000488, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpopcntb", Opcode: 0x10000703, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpopcntd", Opcode: 0x100007c3, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpopcnth", Opcode: 0x10000743, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vpopcntw", Opcode: 0x10000783, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vprtybd", Opcode: 0x10090602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vprtybq", Opcode: 0x100a0602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vprtybw", Opcode: 0x10080602, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrefp", Opcode: 0x1000010a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrfim", Opcode: 0x100002ca, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrfin", Opcode: 0x1000020a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrfip", Opcode: 0x1000028a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrfiz", Opcode: 0x1000024a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlb", Opcode: 0x10000004, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrld", Opcode: 0x100000c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrldmi", Opcode: 0x100000c5, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrldnm", Opcode: 0x100001c5, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlh", Opcode: 0x10000044, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlq", Opcode: 0x10000005, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlqmi", Opcode: 0x10000045, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlqnm", Opcode: 0x10000145, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlw", Opcode: 0x10000084, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlwmi", Opcode: 0x10000085, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrlwnm", Opcode: 0x10000185, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vrsqrtefp", Opcode: 0x1000014a, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsbox", Opcode: 0x100005c8, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsel", Opcode: 0x1000002a, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vshasigmad", Opcode: 0x100006c2, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "SIX", Bits: []powerpc.InsnBits{{17, 4}}}, {Name: "ST", Bits: []powerpc.InsnBits{{16, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vshasigmaw", Opcode: 0x10000682, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "SIX", Bits: []powerpc.InsnBits{{17, 4}}}, {Name: "ST", Bits: []powerpc.InsnBits{{16, 1}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsl", Opcode: 0x100001c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslb", Opcode: 0x10000104, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsld", Opcode: 0x100005c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsldbi", Opcode: 0x10000016, Mask: 0xfc00063f, Fields: []powerpc.InsnField{{Name: "SH", Bits: []powerpc.InsnBits{{23, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsldoi", Opcode: 0x1000002c, Mask: 0xfc00043f, Fields: []powerpc.InsnField{{Name: "SHB", Bits: []powerpc.InsnBits{{22, 4}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslh", Opcode: 0x10000144, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslo", Opcode: 0x1000040c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslq", Opcode: 0x10000105, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslv", Opcode: 0x10000744, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vslw", Opcode: 0x10000184, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vspltb", Opcode: 0x1000020c, Mask: 0xfc1007ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsplth", Opcode: 0x1000024c, Mask: 0xfc1807ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{13, 3}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vspltisb", Opcode: 0x1000030c, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "SIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vspltish", Opcode: 0x1000034c, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "SIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vspltisw", Opcode: 0x1000038c, Mask: 0xfc00ffff, Fields: []powerpc.InsnField{{Name: "SIM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vspltw", Opcode: 0x1000028c, Mask: 0xfc1c07ff, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{14, 2}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsr", Opcode: 0x100002c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrab", Opcode: 0x10000304, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrad", Opcode: 0x100003c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrah", Opcode: 0x10000344, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsraq", Opcode: 0x10000305, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsraw", Opcode: 0x10000384, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrb", Opcode: 0x10000204, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrd", Opcode: 0x100006c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrdbi", Opcode: 0x10000216, Mask: 0xfc00063f, Fields: []powerpc.InsnField{{Name: "SH", Bits: []powerpc.InsnBits{{23, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrh", Opcode: 0x10000244, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsro", Opcode: 0x1000044c, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrq", Opcode: 0x10000205, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrv", Opcode: 0x10000704, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsrw", Opcode: 0x10000284, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstribl", Opcode: 0x1000000d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstribl.", Opcode: 0x1000040d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstribr", Opcode: 0x1001000d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstribr.", Opcode: 0x1001040d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstrihl", Opcode: 0x1002000d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstrihl.", Opcode: 0x1002040d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstrihr", Opcode: 0x1003000d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vstrihr.", Opcode: 0x1003040d, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubcuq", Opcode: 0x10000540, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubcuw", Opcode: 0x10000580, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubecuq", Opcode: 0x1000003f, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubeuqm", Opcode: 0x1000003e, Mask: 0xfc00003f, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRC", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubfp", Opcode: 0x1000004a, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubsbs", Opcode: 0x10000700, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubshs", Opcode: 0x10000740, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubsws", Opcode: 0x10000780, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsububm", Opcode: 0x10000400, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsububs", Opcode: 0x10000600, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubudm", Opcode: 0x100004c0, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubuhm", Opcode: 0x10000440, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubuhs", Opcode: 0x10000640, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubuqm", Opcode: 0x10000500, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubuwm", Opcode: 0x10000480, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsubuws", Opcode: 0x10000680, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsum2sws", Opcode: 0x10000688, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsum4sbs", Opcode: 0x10000708, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsum4shs", Opcode: 0x10000648, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsum4ubs", Opcode: 0x10000608, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vsumsws", Opcode: 0x10000788, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupkhpx", Opcode: 0x1000034e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupkhsb", Opcode: 0x1000020e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupkhsh", Opcode: 0x1000024e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupkhsw", Opcode: 0x1000064e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupklpx", Opcode: 0x100003ce, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupklsb", Opcode: 0x1000028e, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupklsh", Opcode: 0x100002ce, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vupklsw", Opcode: 0x100006ce, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "vxor", Opcode: 0x100004c4, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "wait", Opcode: 0x7c00003c, Mask: 0xfc9cffff, Fields: []powerpc.InsnField{{Name: "PL", Bits: []powerpc.InsnBits{{14, 2}}}, {Name: "WC", Bits: []powerpc.InsnBits{{9, 2}}}}},
	{Name: "xor", Opcode: 0x7c000278, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xor.", Opcode: 0x7c000279, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xori", Opcode: 0x68000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "xoris", Opcode: 0x6c000000, Mask: 0xfc000000, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RS", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "UI", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "xsabsdp", Opcode: 0xf0000564, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsabsqp", Opcode: 0xfc000648, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsadddp", Opcode: 0xf0000100, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsaddqp", Opcode: 0xfc000008, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsaddqpo", Opcode: 0xfc000009, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsaddsp", Opcode: 0xf0000000, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscmpeqdp", Opcode: 0xf0000018, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscmpeqqp", Opcode: 0xfc000088, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscmpexpdp", Opcode: 0xf00001d8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xscmpexpqp", Opcode: 0xfc000148, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xscmpgedp", Opcode: 0xf0000098, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscmpgeqp", Opcode: 0xfc000188, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscmpgtdp", Opcode: 0xf0000058, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscmpgtqp", Opcode: 0xfc0001c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscmpodp", Opcode: 0xf0000158, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xscmpoqp", Opcode: 0xfc000108, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xscmpudp", Opcode: 0xf0000118, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xscmpuqp", Opcode: 0xfc000508, Mask: 0xfc6007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xscpsgndp", Opcode: 0xf0000580, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscpsgnqp", Opcode: 0xfc0000c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvdphp", Opcode: 0xf011056c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpqp", Opcode: 0xfc160688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvdpsp", Opcode: 0xf0000424, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpspn", Opcode: 0xf000042c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpsxds", Opcode: 0xf0000560, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpsxws", Opcode: 0xf0000160, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpuxds", Opcode: 0xf0000520, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvdpuxws", Opcode: 0xf0000120, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvhpdp", Opcode: 0xf010056c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvqpdp", Opcode: 0xfc140688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpdpo", Opcode: 0xfc140689, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpsdz", Opcode: 0xfc190688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpsqz", Opcode: 0xfc080688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpswz", Opcode: 0xfc090688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpudz", Opcode: 0xfc110688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpuqz", Opcode: 0xfc000688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvqpuwz", Opcode: 0xfc010688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvsdqp", Opcode: 0xfc0a0688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvspdp", Opcode: 0xf0000524, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvspdpn", Opcode: 0xf000052c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvsqqp", Opcode: 0xfc0b0688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvsxddp", Opcode: 0xf00005e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvsxdsp", Opcode: 0xf00004e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvudqp", Opcode: 0xfc020688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvuqqp", Opcode: 0xfc030688, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xscvuxddp", Opcode: 0xf00005a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xscvuxdsp", Opcode: 0xf00004a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsdivdp", Opcode: 0xf00001c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsdivqp", Opcode: 0xfc000448, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsdivqpo", Opcode: 0xfc000449, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsdivsp", Opcode: 0xf00000c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsiexpdp", Opcode: 0xf000072c, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "RA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "RB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsiexpqp", Opcode: 0xfc0006c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmaddadp", Opcode: 0xf0000108, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaddasp", Opcode: 0xf0000008, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaddmdp", Opcode: 0xf0000148, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaddmsp", Opcode: 0xf0000048, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaddqp", Opcode: 0xfc000308, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmaddqpo", Opcode: 0xfc000309, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmaxcdp", Opcode: 0xf0000400, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaxcqp", Opcode: 0xfc000548, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmaxdp", Opcode: 0xf0000500, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmaxjdp", Opcode: 0xf0000480, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmincdp", Opcode: 0xf0000440, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmincqp", Opcode: 0xfc0005c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmindp", Opcode: 0xf0000540, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsminjdp", Opcode: 0xf00004c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmsubadp", Opcode: 0xf0000188, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmsubasp", Opcode: 0xf0000088, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmsubmdp", Opcode: 0xf00001c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmsubmsp", Opcode: 0xf00000c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmsubqp", Opcode: 0xfc000348, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmsubqpo", Opcode: 0xfc000349, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmuldp", Opcode: 0xf0000180, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsmulqp", Opcode: 0xfc000048, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmulqpo", Opcode: 0xfc000049, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsmulsp", Opcode: 0xf0000080, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnabsdp", Opcode: 0xf00005a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnabsqp", Opcode: 0xfc080648, Mask: 0xfc1f07fe, Fields: []powerpc.InsnField{{Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsnegdp", Opcode: 0xf00005e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnegqp", Opcode: 0xfc100648, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsnmaddadp", Opcode: 0xf0000508, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmaddasp", Opcode: 0xf0000408, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmaddmdp", Opcode: 0xf0000548, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmaddmsp", Opcode: 0xf0000448, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmaddqp", Opcode: 0xfc000388, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsnmaddqpo", Opcode: 0xfc000389, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsnmsubadp", Opcode: 0xf0000588, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmsubasp", Opcode: 0xf0000488, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmsubmdp", Opcode: 0xf00005c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmsubmsp", Opcode: 0xf00004c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsnmsubqp", Opcode: 0xfc0003c8, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsnmsubqpo", Opcode: 0xfc0003c9, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsrdpi", Opcode: 0xf0000124, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrdpic", Opcode: 0xf00001ac, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrdpim", Opcode: 0xf00001e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrdpip", Opcode: 0xf00001a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrdpiz", Opcode: 0xf0000164, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsredp", Opcode: 0xf0000168, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsresp", Opcode: 0xf0000068, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrqpi", Opcode: 0xfc00000a, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsrqpix", Opcode: 0xfc00000b, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsrqpxp", Opcode: 0xfc00004a, Mask: 0xfc1e01ff, Fields: []powerpc.InsnField{{Name: "R", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "RMC", Bits: []powerpc.InsnBits{{21, 2}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsrsp", Opcode: 0xf0000464, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrsqrtedp", Opcode: 0xf0000128, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xsrsqrtesp", Opcode: 0xf0000028, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xssqrtdp", Opcode: 0xf000012c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xssqrtqp", Opcode: 0xfc1b0648, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xssqrtqpo", Opcode: 0xfc1b0649, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xssqrtsp", Opcode: 0xf000002c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xssubdp", Opcode: 0xf0000140, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xssubqp", Opcode: 0xfc000408, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xssubqpo", Opcode: 0xfc000409, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "VRA", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xssubsp", Opcode: 0xf0000040, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xstdivdp", Opcode: 0xf00001e8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xstsqrtdp", Opcode: 0xf00001a8, Mask: 0xfc7f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xststdcdp", Opcode: 0xf00005a8, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "DCMX", Bits: []powerpc.InsnBits{{9, 7}}}}},
	{Name: "xststdcqp", Opcode: 0xfc000588, Mask: 0xfc0007ff, Fields: []powerpc.InsnField{{Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "DCMX", Bits: []powerpc.InsnBits{{9, 7}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xststdcsp", Opcode: 0xf00004a8, Mask: 0xfc0007fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "DCMX", Bits: []powerpc.InsnBits{{9, 7}}}}},
	{Name: "xsxexpdp", Opcode: 0xf000056c, Mask: 0xfc1f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsxexpqp", Opcode: 0xfc020648, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsxsigdp", Opcode: 0xf001056c, Mask: 0xfc1f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "RT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xsxsigqp", Opcode: 0xfc120648, Mask: 0xfc1f07ff, Fields: []powerpc.InsnField{{Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "VRT", Bits: []powerpc.InsnBits{{6, 5}}}}},
	{Name: "xvabsdp", Opcode: 0xf0000764, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvabssp", Opcode: 0xf0000664, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvadddp", Opcode: 0xf0000300, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvaddsp", Opcode: 0xf0000200, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvbf16ger2", Opcode: 0xec000198, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvbf16ger2nn", Opcode: 0xec000790, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvbf16ger2np", Opcode: 0xec000390, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvbf16ger2pn", Opcode: 0xec000590, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvbf16ger2pp", Opcode: 0xec000190, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvcmpeqdp", Opcode: 0xf0000318, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpeqdp.", Opcode: 0xf0000718, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpeqsp", Opcode: 0xf0000218, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpeqsp.", Opcode: 0xf0000618, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgedp", Opcode: 0xf0000398, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgedp.", Opcode: 0xf0000798, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgesp", Opcode: 0xf0000298, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgesp.", Opcode: 0xf0000698, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgtdp", Opcode: 0xf0000358, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgtdp.", Opcode: 0xf0000758, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgtsp", Opcode: 0xf0000258, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcmpgtsp.", Opcode: 0xf0000658, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcpsgndp", Opcode: 0xf0000780, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcpsgnsp", Opcode: 0xf0000680, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvbf16spn", Opcode: 0xf010076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvdpsp", Opcode: 0xf0000624, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvdpsxds", Opcode: 0xf0000760, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvdpsxws", Opcode: 0xf0000360, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvdpuxds", Opcode: 0xf0000720, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvdpuxws", Opcode: 0xf0000320, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvhpsp", Opcode: 0xf018076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspbf16", Opcode: 0xf011076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspdp", Opcode: 0xf0000724, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvsphp", Opcode: 0xf019076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspsxds", Opcode: 0xf0000660, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspsxws", Opcode: 0xf0000260, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspuxds", Opcode: 0xf0000620, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvspuxws", Opcode: 0xf0000220, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvsxddp", Opcode: 0xf00007e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvsxdsp", Opcode: 0xf00006e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvsxwdp", Opcode: 0xf00003e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvsxwsp", Opcode: 0xf00002e0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvuxddp", Opcode: 0xf00007a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvuxdsp", Opcode: 0xf00006a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvuxwdp", Opcode: 0xf00003a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvcvuxwsp", Opcode: 0xf00002a0, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvdivdp", Opcode: 0xf00003c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvdivsp", Opcode: 0xf00002c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvf16ger2", Opcode: 0xec000098, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf16ger2nn", Opcode: 0xec000690, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf16ger2np", Opcode: 0xec000290, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf16ger2pn", Opcode: 0xec000490, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf16ger2pp", Opcode: 0xec000090, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf32ger", Opcode: 0xec0000d8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf32gernn", Opcode: 0xec0006d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf32gernp", Opcode: 0xec0002d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf32gerpn", Opcode: 0xec0004d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf32gerpp", Opcode: 0xec0000d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf64ger", Opcode: 0xec0001d8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf64gernn", Opcode: 0xec0007d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf64gernp", Opcode: 0xec0003d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf64gerpn", Opcode: 0xec0005d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvf64gerpp", Opcode: 0xec0001d0, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "Ap", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi16ger2", Opcode: 0xec000258, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi16ger2pp", Opcode: 0xec000358, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi16ger2s", Opcode: 0xec000158, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi16ger2spp", Opcode: 0xec000150, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi4ger8", Opcode: 0xec000118, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi4ger8pp", Opcode: 0xec000110, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi8ger4", Opcode: 0xec000018, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi8ger4pp", Opcode: 0xec000010, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvi8ger4spp", Opcode: 0xec000318, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xviexpdp", Opcode: 0xf00007c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xviexpsp", Opcode: 0xf00006c0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaddadp", Opcode: 0xf0000308, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaddasp", Opcode: 0xf0000208, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaddmdp", Opcode: 0xf0000348, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaddmsp", Opcode: 0xf0000248, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaxdp", Opcode: 0xf0000700, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmaxsp", Opcode: 0xf0000600, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmindp", Opcode: 0xf0000740, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvminsp", Opcode: 0xf0000640, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmsubadp", Opcode: 0xf0000388, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmsubasp", Opcode: 0xf0000288, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmsubmdp", Opcode: 0xf00003c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmsubmsp", Opcode: 0xf00002c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmuldp", Opcode: 0xf0000380, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvmulsp", Opcode: 0xf0000280, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnabsdp", Opcode: 0xf00007a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnabssp", Opcode: 0xf00006a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnegdp", Opcode: 0xf00007e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnegsp", Opcode: 0xf00006e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmaddadp", Opcode: 0xf0000708, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmaddasp", Opcode: 0xf0000608, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmaddmdp", Opcode: 0xf0000748, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmaddmsp", Opcode: 0xf0000648, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmsubadp", Opcode: 0xf0000788, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmsubasp", Opcode: 0xf0000688, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmsubmdp", Opcode: 0xf00007c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvnmsubmsp", Opcode: 0xf00006c8, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrdpi", Opcode: 0xf0000324, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrdpic", Opcode: 0xf00003ac, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrdpim", Opcode: 0xf00003e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrdpip", Opcode: 0xf00003a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrdpiz", Opcode: 0xf0000364, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvredp", Opcode: 0xf0000368, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvresp", Opcode: 0xf0000268, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrspi", Opcode: 0xf0000224, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrspic", Opcode: 0xf00002ac, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrspim", Opcode: 0xf00002e4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrspip", Opcode: 0xf00002a4, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrspiz", Opcode: 0xf0000264, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrsqrtedp", Opcode: 0xf0000328, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvrsqrtesp", Opcode: 0xf0000228, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvsqrtdp", Opcode: 0xf000032c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvsqrtsp", Opcode: 0xf000022c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvsubdp", Opcode: 0xf0000340, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvsubsp", Opcode: 0xf0000240, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvtdivdp", Opcode: 0xf00003e8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvtdivsp", Opcode: 0xf00002e8, Mask: 0xfc6007f9, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvtlsbb", Opcode: 0xf002076c, Mask: 0xfc7f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvtsqrtdp", Opcode: 0xf00003a8, Mask: 0xfc7f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvtsqrtsp", Opcode: 0xf00002a8, Mask: 0xfc7f07fd, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BF", Bits: []powerpc.InsnBits{{6, 3}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}}},
	{Name: "xvtstdcdp", Opcode: 0xf00007a8, Mask: 0xfc0007b8, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "dc", Bits: []powerpc.InsnBits{{25, 1}}}, {Name: "dm", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "dx", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "xvtstdcsp", Opcode: 0xf00006a8, Mask: 0xfc0007b8, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "dc", Bits: []powerpc.InsnBits{{25, 1}}}, {Name: "dm", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "dx", Bits: []powerpc.InsnBits{{11, 5}}}}},
	{Name: "xvxexpdp", Opcode: 0xf000076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvxexpsp", Opcode: 0xf008076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvxsigdp", Opcode: 0xf001076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xvxsigsp", Opcode: 0xf009076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxblendvb", Opcode: 0x05000000, Mask: 0xffffffff, Fields: []powerpc.InsnField{},
		OpcodeSuffix: 0x84000000, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxblendvd", Opcode: 0x05000000, Mask: 0xffffffff, Fields: []powerpc.InsnField{},
		OpcodeSuffix: 0x84000030, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxblendvh", Opcode: 0x05000000, Mask: 0xffffffff, Fields: []powerpc.InsnField{},
		OpcodeSuffix: 0x84000010, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxblendvw", Opcode: 0x05000000, Mask: 0xffffffff, Fields: []powerpc.InsnField{},
		OpcodeSuffix: 0x84000020, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxbrd", Opcode: 0xf017076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxbrh", Opcode: 0xf007076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxbrq", Opcode: 0xf01f076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxbrw", Opcode: 0xf00f076c, Mask: 0xfc1f07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxeval", Opcode: 0x05000000, Mask: 0xffffff00, Fields: []powerpc.InsnField{{Name: "IMM", Bits: []powerpc.InsnBits{{24, 8}}}},
		OpcodeSuffix: 0x88000010, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxextractuw", Opcode: 0xf0000294, Mask: 0xfc1007fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}}},
	{Name: "xxgenpcvbm", Opcode: 0xf0000728, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "IMM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xxgenpcvdm", Opcode: 0xf000076a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "IMM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xxgenpcvhm", Opcode: 0xf000072a, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "IMM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xxgenpcvwm", Opcode: 0xf0000768, Mask: 0xfc0007fe, Fields: []powerpc.InsnField{{Name: "IMM", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "VRB", Bits: []powerpc.InsnBits{{16, 5}}}}},
	{Name: "xxinsertw", Opcode: 0xf00002d4, Mask: 0xfc1007fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{12, 4}}}}},
	{Name: "xxland", Opcode: 0xf0000410, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlandc", Opcode: 0xf0000450, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxleqv", Opcode: 0xf00005d0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlnand", Opcode: 0xf0000590, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlnor", Opcode: 0xf0000510, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlor", Opcode: 0xf0000490, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlorc", Opcode: 0xf0000550, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxlxor", Opcode: 0xf00004d0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxmfacc", Opcode: 0x7c000162, Mask: 0xfc7fffff, Fields: []powerpc.InsnField{{Name: "AS", Bits: []powerpc.InsnBits{{6, 3}}}}},
	{Name: "xxmrghw", Opcode: 0xf0000090, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxmrglw", Opcode: 0xf0000190, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxmtacc", Opcode: 0x7c010162, Mask: 0xfc7fffff, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}}},
	{Name: "xxperm", Opcode: 0xf00000d0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxpermdi", Opcode: 0xf0000050, Mask: 0xfc0004f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "DM", Bits: []powerpc.InsnBits{{22, 2}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxpermr", Opcode: 0xf00001d0, Mask: 0xfc0007f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxpermx", Opcode: 0x05000000, Mask: 0xfffffff8, Fields: []powerpc.InsnField{{Name: "UIM", Bits: []powerpc.InsnBits{{29, 3}}}},
		OpcodeSuffix: 0x88000000, MaskSuffix: 0xfc000030, FieldsSuffix: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxsel", Opcode: 0xf0000030, Mask: 0xfc000030, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "C", Bits: []powerpc.InsnBits{{21, 5}}}, {Name: "CX", Bits: []powerpc.InsnBits{{28, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxsetaccz", Opcode: 0x7c030162, Mask: 0xfc7fffff, Fields: []powerpc.InsnField{{Name: "AT", Bits: []powerpc.InsnBits{{6, 3}}}}},
	{Name: "xxsldwi", Opcode: 0xf0000010, Mask: 0xfc0004f8, Fields: []powerpc.InsnField{{Name: "A", Bits: []powerpc.InsnBits{{11, 5}}}, {Name: "AX", Bits: []powerpc.InsnBits{{29, 1}}}, {Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "SHW", Bits: []powerpc.InsnBits{{22, 2}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxsplti32dx", Opcode: 0x05000000, Mask: 0xffff0000, Fields: []powerpc.InsnField{{Name: "imm0", Bits: []powerpc.InsnBits{{16, 16}}}},
		OpcodeSuffix: 0x80000000, MaskSuffix: 0xfc1c0000, FieldsSuffix: []powerpc.InsnField{{Name: "IX", Bits: []powerpc.InsnBits{{14, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "imm1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "xxspltib", Opcode: 0xf00002d0, Mask: 0xfc1807fe, Fields: []powerpc.InsnField{{Name: "IMM8", Bits: []powerpc.InsnBits{{13, 8}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}}},
	{Name: "xxspltidp", Opcode: 0x05000000, Mask: 0xffff0000, Fields: []powerpc.InsnField{{Name: "imm0", Bits: []powerpc.InsnBits{{16, 16}}}},
		OpcodeSuffix: 0x80040000, MaskSuffix: 0xfc1e0000, FieldsSuffix: []powerpc.InsnField{{Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "imm1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "xxspltiw", Opcode: 0x05000000, Mask: 0xffff0000, Fields: []powerpc.InsnField{{Name: "imm0", Bits: []powerpc.InsnBits{{16, 16}}}},
		OpcodeSuffix: 0x80060000, MaskSuffix: 0xfc1e0000, FieldsSuffix: []powerpc.InsnField{{Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{15, 1}}}, {Name: "imm1", Bits: []powerpc.InsnBits{{16, 16}}}}},
	{Name: "xxspltw", Opcode: 0xf0000290, Mask: 0xfc1c07fc, Fields: []powerpc.InsnField{{Name: "B", Bits: []powerpc.InsnBits{{16, 5}}}, {Name: "BX", Bits: []powerpc.InsnBits{{30, 1}}}, {Name: "T", Bits: []powerpc.InsnBits{{6, 5}}}, {Name: "TX", Bits: []powerpc.InsnBits{{31, 1}}}, {Name: "UIM", Bits: []powerpc.InsnBits{{14, 2}}}}},
}