-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathztypes_ppc_unix.go
2030 lines (2013 loc) · 73.3 KB
/
ztypes_ppc_unix.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
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
// Code generated by cmd/cgo -godefs; DO NOT EDIT.
// cgo -godefs ppc_unix.go
package capstone
type PpcBc uint32
const (
PPC_BC_INVALID PpcBc = 0x0
PPC_BC_LT PpcBc = 0xc
PPC_BC_LE PpcBc = 0x24
PPC_BC_EQ PpcBc = 0x4c
PPC_BC_GE PpcBc = 0x4
PPC_BC_GT PpcBc = 0x2c
PPC_BC_NE PpcBc = 0x44
PPC_BC_UN PpcBc = 0x6c
PPC_BC_NU PpcBc = 0x64
PPC_BC_SO PpcBc = 0x8c
PPC_BC_NS PpcBc = 0x84
)
type PpcBh uint32
const (
PPC_BH_INVALID PpcBh = 0x0
PPC_BH_PLUS PpcBh = 0x1
PPC_BH_MINUS PpcBh = 0x2
)
type PpcInsn uint32
const (
PPC_INS_INVALID PpcInsn = 0x0
PPC_INS_ADD PpcInsn = 0x1
PPC_INS_ADDC PpcInsn = 0x2
PPC_INS_ADDE PpcInsn = 0x3
PPC_INS_ADDI PpcInsn = 0x4
PPC_INS_ADDIC PpcInsn = 0x5
PPC_INS_ADDIS PpcInsn = 0x6
PPC_INS_ADDME PpcInsn = 0x7
PPC_INS_ADDPCIS PpcInsn = 0x8
PPC_INS_ADDZE PpcInsn = 0x9
PPC_INS_AND PpcInsn = 0xa
PPC_INS_ANDC PpcInsn = 0xb
PPC_INS_ANDI PpcInsn = 0xc
PPC_INS_ANDIS PpcInsn = 0xd
PPC_INS_ATTN PpcInsn = 0xe
PPC_INS_B PpcInsn = 0xf
PPC_INS_BA PpcInsn = 0x10
PPC_INS_BC PpcInsn = 0x11
PPC_INS_BCA PpcInsn = 0x12
PPC_INS_BCCTR PpcInsn = 0x13
PPC_INS_BCCTRL PpcInsn = 0x14
PPC_INS_BCDCFN PpcInsn = 0x15
PPC_INS_BCDCFSQ PpcInsn = 0x16
PPC_INS_BCDCFZ PpcInsn = 0x17
PPC_INS_BCDCPSGN PpcInsn = 0x18
PPC_INS_BCDCTN PpcInsn = 0x19
PPC_INS_BCDCTSQ PpcInsn = 0x1a
PPC_INS_BCDCTZ PpcInsn = 0x1b
PPC_INS_BCDS PpcInsn = 0x1c
PPC_INS_BCDSETSGN PpcInsn = 0x1d
PPC_INS_BCDSR PpcInsn = 0x1e
PPC_INS_BCDTRUNC PpcInsn = 0x1f
PPC_INS_BCDUS PpcInsn = 0x20
PPC_INS_BCDUTRUNC PpcInsn = 0x21
PPC_INS_BCL PpcInsn = 0x22
PPC_INS_BCLA PpcInsn = 0x23
PPC_INS_BCLR PpcInsn = 0x24
PPC_INS_BCLRL PpcInsn = 0x25
PPC_INS_BCTR PpcInsn = 0x26
PPC_INS_BCTRL PpcInsn = 0x27
PPC_INS_BDNZ PpcInsn = 0x28
PPC_INS_BDNZA PpcInsn = 0x29
PPC_INS_BDNZF PpcInsn = 0x2a
PPC_INS_BDNZFA PpcInsn = 0x2b
PPC_INS_BDNZFL PpcInsn = 0x2c
PPC_INS_BDNZFLA PpcInsn = 0x2d
PPC_INS_BDNZFLR PpcInsn = 0x2e
PPC_INS_BDNZFLRL PpcInsn = 0x2f
PPC_INS_BDNZL PpcInsn = 0x30
PPC_INS_BDNZLA PpcInsn = 0x31
PPC_INS_BDNZLR PpcInsn = 0x32
PPC_INS_BDNZLRL PpcInsn = 0x33
PPC_INS_BDNZT PpcInsn = 0x34
PPC_INS_BDNZTA PpcInsn = 0x35
PPC_INS_BDNZTL PpcInsn = 0x36
PPC_INS_BDNZTLA PpcInsn = 0x37
PPC_INS_BDNZTLR PpcInsn = 0x38
PPC_INS_BDNZTLRL PpcInsn = 0x39
PPC_INS_BDZ PpcInsn = 0x3a
PPC_INS_BDZA PpcInsn = 0x3b
PPC_INS_BDZF PpcInsn = 0x3c
PPC_INS_BDZFA PpcInsn = 0x3d
PPC_INS_BDZFL PpcInsn = 0x3e
PPC_INS_BDZFLA PpcInsn = 0x3f
PPC_INS_BDZFLR PpcInsn = 0x40
PPC_INS_BDZFLRL PpcInsn = 0x41
PPC_INS_BDZL PpcInsn = 0x42
PPC_INS_BDZLA PpcInsn = 0x43
PPC_INS_BDZLR PpcInsn = 0x44
PPC_INS_BDZLRL PpcInsn = 0x45
PPC_INS_BDZT PpcInsn = 0x46
PPC_INS_BDZTA PpcInsn = 0x47
PPC_INS_BDZTL PpcInsn = 0x48
PPC_INS_BDZTLA PpcInsn = 0x49
PPC_INS_BDZTLR PpcInsn = 0x4a
PPC_INS_BDZTLRL PpcInsn = 0x4b
PPC_INS_BEQ PpcInsn = 0x4c
PPC_INS_BEQA PpcInsn = 0x4d
PPC_INS_BEQCTR PpcInsn = 0x4e
PPC_INS_BEQCTRL PpcInsn = 0x4f
PPC_INS_BEQL PpcInsn = 0x50
PPC_INS_BEQLA PpcInsn = 0x51
PPC_INS_BEQLR PpcInsn = 0x52
PPC_INS_BEQLRL PpcInsn = 0x53
PPC_INS_BF PpcInsn = 0x54
PPC_INS_BFA PpcInsn = 0x55
PPC_INS_BFCTR PpcInsn = 0x56
PPC_INS_BFCTRL PpcInsn = 0x57
PPC_INS_BFL PpcInsn = 0x58
PPC_INS_BFLA PpcInsn = 0x59
PPC_INS_BFLR PpcInsn = 0x5a
PPC_INS_BFLRL PpcInsn = 0x5b
PPC_INS_BGE PpcInsn = 0x5c
PPC_INS_BGEA PpcInsn = 0x5d
PPC_INS_BGECTR PpcInsn = 0x5e
PPC_INS_BGECTRL PpcInsn = 0x5f
PPC_INS_BGEL PpcInsn = 0x60
PPC_INS_BGELA PpcInsn = 0x61
PPC_INS_BGELR PpcInsn = 0x62
PPC_INS_BGELRL PpcInsn = 0x63
PPC_INS_BGT PpcInsn = 0x64
PPC_INS_BGTA PpcInsn = 0x65
PPC_INS_BGTCTR PpcInsn = 0x66
PPC_INS_BGTCTRL PpcInsn = 0x67
PPC_INS_BGTL PpcInsn = 0x68
PPC_INS_BGTLA PpcInsn = 0x69
PPC_INS_BGTLR PpcInsn = 0x6a
PPC_INS_BGTLRL PpcInsn = 0x6b
PPC_INS_BL PpcInsn = 0x6c
PPC_INS_BLA PpcInsn = 0x6d
PPC_INS_BLE PpcInsn = 0x6e
PPC_INS_BLEA PpcInsn = 0x6f
PPC_INS_BLECTR PpcInsn = 0x70
PPC_INS_BLECTRL PpcInsn = 0x71
PPC_INS_BLEL PpcInsn = 0x72
PPC_INS_BLELA PpcInsn = 0x73
PPC_INS_BLELR PpcInsn = 0x74
PPC_INS_BLELRL PpcInsn = 0x75
PPC_INS_BLR PpcInsn = 0x76
PPC_INS_BLRL PpcInsn = 0x77
PPC_INS_BLT PpcInsn = 0x78
PPC_INS_BLTA PpcInsn = 0x79
PPC_INS_BLTCTR PpcInsn = 0x7a
PPC_INS_BLTCTRL PpcInsn = 0x7b
PPC_INS_BLTL PpcInsn = 0x7c
PPC_INS_BLTLA PpcInsn = 0x7d
PPC_INS_BLTLR PpcInsn = 0x7e
PPC_INS_BLTLRL PpcInsn = 0x7f
PPC_INS_BNE PpcInsn = 0x80
PPC_INS_BNEA PpcInsn = 0x81
PPC_INS_BNECTR PpcInsn = 0x82
PPC_INS_BNECTRL PpcInsn = 0x83
PPC_INS_BNEL PpcInsn = 0x84
PPC_INS_BNELA PpcInsn = 0x85
PPC_INS_BNELR PpcInsn = 0x86
PPC_INS_BNELRL PpcInsn = 0x87
PPC_INS_BNG PpcInsn = 0x88
PPC_INS_BNGA PpcInsn = 0x89
PPC_INS_BNGCTR PpcInsn = 0x8a
PPC_INS_BNGCTRL PpcInsn = 0x8b
PPC_INS_BNGL PpcInsn = 0x8c
PPC_INS_BNGLA PpcInsn = 0x8d
PPC_INS_BNGLR PpcInsn = 0x8e
PPC_INS_BNGLRL PpcInsn = 0x8f
PPC_INS_BNL PpcInsn = 0x90
PPC_INS_BNLA PpcInsn = 0x91
PPC_INS_BNLCTR PpcInsn = 0x92
PPC_INS_BNLCTRL PpcInsn = 0x93
PPC_INS_BNLL PpcInsn = 0x94
PPC_INS_BNLLA PpcInsn = 0x95
PPC_INS_BNLLR PpcInsn = 0x96
PPC_INS_BNLLRL PpcInsn = 0x97
PPC_INS_BNS PpcInsn = 0x98
PPC_INS_BNSA PpcInsn = 0x99
PPC_INS_BNSCTR PpcInsn = 0x9a
PPC_INS_BNSCTRL PpcInsn = 0x9b
PPC_INS_BNSL PpcInsn = 0x9c
PPC_INS_BNSLA PpcInsn = 0x9d
PPC_INS_BNSLR PpcInsn = 0x9e
PPC_INS_BNSLRL PpcInsn = 0x9f
PPC_INS_BNU PpcInsn = 0xa0
PPC_INS_BNUA PpcInsn = 0xa1
PPC_INS_BNUCTR PpcInsn = 0xa2
PPC_INS_BNUCTRL PpcInsn = 0xa3
PPC_INS_BNUL PpcInsn = 0xa4
PPC_INS_BNULA PpcInsn = 0xa5
PPC_INS_BNULR PpcInsn = 0xa6
PPC_INS_BNULRL PpcInsn = 0xa7
PPC_INS_BPERMD PpcInsn = 0xa8
PPC_INS_BRINC PpcInsn = 0xa9
PPC_INS_BSO PpcInsn = 0xaa
PPC_INS_BSOA PpcInsn = 0xab
PPC_INS_BSOCTR PpcInsn = 0xac
PPC_INS_BSOCTRL PpcInsn = 0xad
PPC_INS_BSOL PpcInsn = 0xae
PPC_INS_BSOLA PpcInsn = 0xaf
PPC_INS_BSOLR PpcInsn = 0xb0
PPC_INS_BSOLRL PpcInsn = 0xb1
PPC_INS_BT PpcInsn = 0xb2
PPC_INS_BTA PpcInsn = 0xb3
PPC_INS_BTCTR PpcInsn = 0xb4
PPC_INS_BTCTRL PpcInsn = 0xb5
PPC_INS_BTL PpcInsn = 0xb6
PPC_INS_BTLA PpcInsn = 0xb7
PPC_INS_BTLR PpcInsn = 0xb8
PPC_INS_BTLRL PpcInsn = 0xb9
PPC_INS_BUN PpcInsn = 0xba
PPC_INS_BUNA PpcInsn = 0xbb
PPC_INS_BUNCTR PpcInsn = 0xbc
PPC_INS_BUNCTRL PpcInsn = 0xbd
PPC_INS_BUNL PpcInsn = 0xbe
PPC_INS_BUNLA PpcInsn = 0xbf
PPC_INS_BUNLR PpcInsn = 0xc0
PPC_INS_BUNLRL PpcInsn = 0xc1
PPC_INS_CLRBHRB PpcInsn = 0xc2
PPC_INS_CLRLDI PpcInsn = 0xc3
PPC_INS_CLRLSLDI PpcInsn = 0xc4
PPC_INS_CLRLSLWI PpcInsn = 0xc5
PPC_INS_CLRLWI PpcInsn = 0xc6
PPC_INS_CLRRDI PpcInsn = 0xc7
PPC_INS_CLRRWI PpcInsn = 0xc8
PPC_INS_CMP PpcInsn = 0xc9
PPC_INS_CMPB PpcInsn = 0xca
PPC_INS_CMPD PpcInsn = 0xcb
PPC_INS_CMPDI PpcInsn = 0xcc
PPC_INS_CMPEQB PpcInsn = 0xcd
PPC_INS_CMPI PpcInsn = 0xce
PPC_INS_CMPL PpcInsn = 0xcf
PPC_INS_CMPLD PpcInsn = 0xd0
PPC_INS_CMPLDI PpcInsn = 0xd1
PPC_INS_CMPLI PpcInsn = 0xd2
PPC_INS_CMPLW PpcInsn = 0xd3
PPC_INS_CMPLWI PpcInsn = 0xd4
PPC_INS_CMPRB PpcInsn = 0xd5
PPC_INS_CMPW PpcInsn = 0xd6
PPC_INS_CMPWI PpcInsn = 0xd7
PPC_INS_CNTLZD PpcInsn = 0xd8
PPC_INS_CNTLZW PpcInsn = 0xd9
PPC_INS_CNTTZD PpcInsn = 0xda
PPC_INS_CNTTZW PpcInsn = 0xdb
PPC_INS_COPY PpcInsn = 0xdc
PPC_INS_COPY_FIRST PpcInsn = 0xdd
PPC_INS_CP_ABORT PpcInsn = 0xde
PPC_INS_CRAND PpcInsn = 0xdf
PPC_INS_CRANDC PpcInsn = 0xe0
PPC_INS_CRCLR PpcInsn = 0xe1
PPC_INS_CREQV PpcInsn = 0xe2
PPC_INS_CRMOVE PpcInsn = 0xe3
PPC_INS_CRNAND PpcInsn = 0xe4
PPC_INS_CRNOR PpcInsn = 0xe5
PPC_INS_CRNOT PpcInsn = 0xe6
PPC_INS_CROR PpcInsn = 0xe7
PPC_INS_CRORC PpcInsn = 0xe8
PPC_INS_CRSET PpcInsn = 0xe9
PPC_INS_CRXOR PpcInsn = 0xea
PPC_INS_DARN PpcInsn = 0xeb
PPC_INS_DCBA PpcInsn = 0xec
PPC_INS_DCBF PpcInsn = 0xed
PPC_INS_DCBFEP PpcInsn = 0xee
PPC_INS_DCBFL PpcInsn = 0xef
PPC_INS_DCBFLP PpcInsn = 0xf0
PPC_INS_DCBI PpcInsn = 0xf1
PPC_INS_DCBST PpcInsn = 0xf2
PPC_INS_DCBSTEP PpcInsn = 0xf3
PPC_INS_DCBT PpcInsn = 0xf4
PPC_INS_DCBTCT PpcInsn = 0xf5
PPC_INS_DCBTDS PpcInsn = 0xf6
PPC_INS_DCBTEP PpcInsn = 0xf7
PPC_INS_DCBTST PpcInsn = 0xf8
PPC_INS_DCBTSTCT PpcInsn = 0xf9
PPC_INS_DCBTSTDS PpcInsn = 0xfa
PPC_INS_DCBTSTEP PpcInsn = 0xfb
PPC_INS_DCBTSTT PpcInsn = 0xfc
PPC_INS_DCBTT PpcInsn = 0xfd
PPC_INS_DCBZ PpcInsn = 0xfe
PPC_INS_DCBZEP PpcInsn = 0xff
PPC_INS_DCBZL PpcInsn = 0x100
PPC_INS_DCBZLEP PpcInsn = 0x101
PPC_INS_DCCCI PpcInsn = 0x102
PPC_INS_DCI PpcInsn = 0x103
PPC_INS_DIVD PpcInsn = 0x104
PPC_INS_DIVDE PpcInsn = 0x105
PPC_INS_DIVDEU PpcInsn = 0x106
PPC_INS_DIVDU PpcInsn = 0x107
PPC_INS_DIVW PpcInsn = 0x108
PPC_INS_DIVWE PpcInsn = 0x109
PPC_INS_DIVWEU PpcInsn = 0x10a
PPC_INS_DIVWU PpcInsn = 0x10b
PPC_INS_DSS PpcInsn = 0x10c
PPC_INS_DSSALL PpcInsn = 0x10d
PPC_INS_DST PpcInsn = 0x10e
PPC_INS_DSTST PpcInsn = 0x10f
PPC_INS_DSTSTT PpcInsn = 0x110
PPC_INS_DSTT PpcInsn = 0x111
PPC_INS_EFDABS PpcInsn = 0x112
PPC_INS_EFDADD PpcInsn = 0x113
PPC_INS_EFDCFS PpcInsn = 0x114
PPC_INS_EFDCFSF PpcInsn = 0x115
PPC_INS_EFDCFSI PpcInsn = 0x116
PPC_INS_EFDCFSID PpcInsn = 0x117
PPC_INS_EFDCFUF PpcInsn = 0x118
PPC_INS_EFDCFUI PpcInsn = 0x119
PPC_INS_EFDCFUID PpcInsn = 0x11a
PPC_INS_EFDCMPEQ PpcInsn = 0x11b
PPC_INS_EFDCMPGT PpcInsn = 0x11c
PPC_INS_EFDCMPLT PpcInsn = 0x11d
PPC_INS_EFDCTSF PpcInsn = 0x11e
PPC_INS_EFDCTSI PpcInsn = 0x11f
PPC_INS_EFDCTSIDZ PpcInsn = 0x120
PPC_INS_EFDCTSIZ PpcInsn = 0x121
PPC_INS_EFDCTUF PpcInsn = 0x122
PPC_INS_EFDCTUI PpcInsn = 0x123
PPC_INS_EFDCTUIDZ PpcInsn = 0x124
PPC_INS_EFDCTUIZ PpcInsn = 0x125
PPC_INS_EFDDIV PpcInsn = 0x126
PPC_INS_EFDMUL PpcInsn = 0x127
PPC_INS_EFDNABS PpcInsn = 0x128
PPC_INS_EFDNEG PpcInsn = 0x129
PPC_INS_EFDSUB PpcInsn = 0x12a
PPC_INS_EFDTSTEQ PpcInsn = 0x12b
PPC_INS_EFDTSTGT PpcInsn = 0x12c
PPC_INS_EFDTSTLT PpcInsn = 0x12d
PPC_INS_EFSABS PpcInsn = 0x12e
PPC_INS_EFSADD PpcInsn = 0x12f
PPC_INS_EFSCFD PpcInsn = 0x130
PPC_INS_EFSCFSF PpcInsn = 0x131
PPC_INS_EFSCFSI PpcInsn = 0x132
PPC_INS_EFSCFUF PpcInsn = 0x133
PPC_INS_EFSCFUI PpcInsn = 0x134
PPC_INS_EFSCMPEQ PpcInsn = 0x135
PPC_INS_EFSCMPGT PpcInsn = 0x136
PPC_INS_EFSCMPLT PpcInsn = 0x137
PPC_INS_EFSCTSF PpcInsn = 0x138
PPC_INS_EFSCTSI PpcInsn = 0x139
PPC_INS_EFSCTSIZ PpcInsn = 0x13a
PPC_INS_EFSCTUF PpcInsn = 0x13b
PPC_INS_EFSCTUI PpcInsn = 0x13c
PPC_INS_EFSCTUIZ PpcInsn = 0x13d
PPC_INS_EFSDIV PpcInsn = 0x13e
PPC_INS_EFSMUL PpcInsn = 0x13f
PPC_INS_EFSNABS PpcInsn = 0x140
PPC_INS_EFSNEG PpcInsn = 0x141
PPC_INS_EFSSUB PpcInsn = 0x142
PPC_INS_EFSTSTEQ PpcInsn = 0x143
PPC_INS_EFSTSTGT PpcInsn = 0x144
PPC_INS_EFSTSTLT PpcInsn = 0x145
PPC_INS_EIEIO PpcInsn = 0x146
PPC_INS_EQV PpcInsn = 0x147
PPC_INS_EVABS PpcInsn = 0x148
PPC_INS_EVADDIW PpcInsn = 0x149
PPC_INS_EVADDSMIAAW PpcInsn = 0x14a
PPC_INS_EVADDSSIAAW PpcInsn = 0x14b
PPC_INS_EVADDUMIAAW PpcInsn = 0x14c
PPC_INS_EVADDUSIAAW PpcInsn = 0x14d
PPC_INS_EVADDW PpcInsn = 0x14e
PPC_INS_EVAND PpcInsn = 0x14f
PPC_INS_EVANDC PpcInsn = 0x150
PPC_INS_EVCMPEQ PpcInsn = 0x151
PPC_INS_EVCMPGTS PpcInsn = 0x152
PPC_INS_EVCMPGTU PpcInsn = 0x153
PPC_INS_EVCMPLTS PpcInsn = 0x154
PPC_INS_EVCMPLTU PpcInsn = 0x155
PPC_INS_EVCNTLSW PpcInsn = 0x156
PPC_INS_EVCNTLZW PpcInsn = 0x157
PPC_INS_EVDIVWS PpcInsn = 0x158
PPC_INS_EVDIVWU PpcInsn = 0x159
PPC_INS_EVEQV PpcInsn = 0x15a
PPC_INS_EVEXTSB PpcInsn = 0x15b
PPC_INS_EVEXTSH PpcInsn = 0x15c
PPC_INS_EVFSABS PpcInsn = 0x15d
PPC_INS_EVFSADD PpcInsn = 0x15e
PPC_INS_EVFSCFSF PpcInsn = 0x15f
PPC_INS_EVFSCFSI PpcInsn = 0x160
PPC_INS_EVFSCFUF PpcInsn = 0x161
PPC_INS_EVFSCFUI PpcInsn = 0x162
PPC_INS_EVFSCMPEQ PpcInsn = 0x163
PPC_INS_EVFSCMPGT PpcInsn = 0x164
PPC_INS_EVFSCMPLT PpcInsn = 0x165
PPC_INS_EVFSCTSF PpcInsn = 0x166
PPC_INS_EVFSCTSI PpcInsn = 0x167
PPC_INS_EVFSCTSIZ PpcInsn = 0x168
PPC_INS_EVFSCTUI PpcInsn = 0x169
PPC_INS_EVFSDIV PpcInsn = 0x16a
PPC_INS_EVFSMUL PpcInsn = 0x16b
PPC_INS_EVFSNABS PpcInsn = 0x16c
PPC_INS_EVFSNEG PpcInsn = 0x16d
PPC_INS_EVFSSUB PpcInsn = 0x16e
PPC_INS_EVFSTSTEQ PpcInsn = 0x16f
PPC_INS_EVFSTSTGT PpcInsn = 0x170
PPC_INS_EVFSTSTLT PpcInsn = 0x171
PPC_INS_EVLDD PpcInsn = 0x172
PPC_INS_EVLDDX PpcInsn = 0x173
PPC_INS_EVLDH PpcInsn = 0x174
PPC_INS_EVLDHX PpcInsn = 0x175
PPC_INS_EVLDW PpcInsn = 0x176
PPC_INS_EVLDWX PpcInsn = 0x177
PPC_INS_EVLHHESPLAT PpcInsn = 0x178
PPC_INS_EVLHHESPLATX PpcInsn = 0x179
PPC_INS_EVLHHOSSPLAT PpcInsn = 0x17a
PPC_INS_EVLHHOSSPLATX PpcInsn = 0x17b
PPC_INS_EVLHHOUSPLAT PpcInsn = 0x17c
PPC_INS_EVLHHOUSPLATX PpcInsn = 0x17d
PPC_INS_EVLWHE PpcInsn = 0x17e
PPC_INS_EVLWHEX PpcInsn = 0x17f
PPC_INS_EVLWHOS PpcInsn = 0x180
PPC_INS_EVLWHOSX PpcInsn = 0x181
PPC_INS_EVLWHOU PpcInsn = 0x182
PPC_INS_EVLWHOUX PpcInsn = 0x183
PPC_INS_EVLWHSPLAT PpcInsn = 0x184
PPC_INS_EVLWHSPLATX PpcInsn = 0x185
PPC_INS_EVLWWSPLAT PpcInsn = 0x186
PPC_INS_EVLWWSPLATX PpcInsn = 0x187
PPC_INS_EVMERGEHI PpcInsn = 0x188
PPC_INS_EVMERGEHILO PpcInsn = 0x189
PPC_INS_EVMERGELO PpcInsn = 0x18a
PPC_INS_EVMERGELOHI PpcInsn = 0x18b
PPC_INS_EVMHEGSMFAA PpcInsn = 0x18c
PPC_INS_EVMHEGSMFAN PpcInsn = 0x18d
PPC_INS_EVMHEGSMIAA PpcInsn = 0x18e
PPC_INS_EVMHEGSMIAN PpcInsn = 0x18f
PPC_INS_EVMHEGUMIAA PpcInsn = 0x190
PPC_INS_EVMHEGUMIAN PpcInsn = 0x191
PPC_INS_EVMHESMF PpcInsn = 0x192
PPC_INS_EVMHESMFA PpcInsn = 0x193
PPC_INS_EVMHESMFAAW PpcInsn = 0x194
PPC_INS_EVMHESMFANW PpcInsn = 0x195
PPC_INS_EVMHESMI PpcInsn = 0x196
PPC_INS_EVMHESMIA PpcInsn = 0x197
PPC_INS_EVMHESMIAAW PpcInsn = 0x198
PPC_INS_EVMHESMIANW PpcInsn = 0x199
PPC_INS_EVMHESSF PpcInsn = 0x19a
PPC_INS_EVMHESSFA PpcInsn = 0x19b
PPC_INS_EVMHESSFAAW PpcInsn = 0x19c
PPC_INS_EVMHESSFANW PpcInsn = 0x19d
PPC_INS_EVMHESSIAAW PpcInsn = 0x19e
PPC_INS_EVMHESSIANW PpcInsn = 0x19f
PPC_INS_EVMHEUMI PpcInsn = 0x1a0
PPC_INS_EVMHEUMIA PpcInsn = 0x1a1
PPC_INS_EVMHEUMIAAW PpcInsn = 0x1a2
PPC_INS_EVMHEUMIANW PpcInsn = 0x1a3
PPC_INS_EVMHEUSIAAW PpcInsn = 0x1a4
PPC_INS_EVMHEUSIANW PpcInsn = 0x1a5
PPC_INS_EVMHOGSMFAA PpcInsn = 0x1a6
PPC_INS_EVMHOGSMFAN PpcInsn = 0x1a7
PPC_INS_EVMHOGSMIAA PpcInsn = 0x1a8
PPC_INS_EVMHOGSMIAN PpcInsn = 0x1a9
PPC_INS_EVMHOGUMIAA PpcInsn = 0x1aa
PPC_INS_EVMHOGUMIAN PpcInsn = 0x1ab
PPC_INS_EVMHOSMF PpcInsn = 0x1ac
PPC_INS_EVMHOSMFA PpcInsn = 0x1ad
PPC_INS_EVMHOSMFAAW PpcInsn = 0x1ae
PPC_INS_EVMHOSMFANW PpcInsn = 0x1af
PPC_INS_EVMHOSMI PpcInsn = 0x1b0
PPC_INS_EVMHOSMIA PpcInsn = 0x1b1
PPC_INS_EVMHOSMIAAW PpcInsn = 0x1b2
PPC_INS_EVMHOSMIANW PpcInsn = 0x1b3
PPC_INS_EVMHOSSF PpcInsn = 0x1b4
PPC_INS_EVMHOSSFA PpcInsn = 0x1b5
PPC_INS_EVMHOSSFAAW PpcInsn = 0x1b6
PPC_INS_EVMHOSSFANW PpcInsn = 0x1b7
PPC_INS_EVMHOSSIAAW PpcInsn = 0x1b8
PPC_INS_EVMHOSSIANW PpcInsn = 0x1b9
PPC_INS_EVMHOUMI PpcInsn = 0x1ba
PPC_INS_EVMHOUMIA PpcInsn = 0x1bb
PPC_INS_EVMHOUMIAAW PpcInsn = 0x1bc
PPC_INS_EVMHOUMIANW PpcInsn = 0x1bd
PPC_INS_EVMHOUSIAAW PpcInsn = 0x1be
PPC_INS_EVMHOUSIANW PpcInsn = 0x1bf
PPC_INS_EVMRA PpcInsn = 0x1c0
PPC_INS_EVMWHSMF PpcInsn = 0x1c1
PPC_INS_EVMWHSMFA PpcInsn = 0x1c2
PPC_INS_EVMWHSMI PpcInsn = 0x1c3
PPC_INS_EVMWHSMIA PpcInsn = 0x1c4
PPC_INS_EVMWHSSF PpcInsn = 0x1c5
PPC_INS_EVMWHSSFA PpcInsn = 0x1c6
PPC_INS_EVMWHUMI PpcInsn = 0x1c7
PPC_INS_EVMWHUMIA PpcInsn = 0x1c8
PPC_INS_EVMWLSMIAAW PpcInsn = 0x1c9
PPC_INS_EVMWLSMIANW PpcInsn = 0x1ca
PPC_INS_EVMWLSSIAAW PpcInsn = 0x1cb
PPC_INS_EVMWLSSIANW PpcInsn = 0x1cc
PPC_INS_EVMWLUMI PpcInsn = 0x1cd
PPC_INS_EVMWLUMIA PpcInsn = 0x1ce
PPC_INS_EVMWLUMIAAW PpcInsn = 0x1cf
PPC_INS_EVMWLUMIANW PpcInsn = 0x1d0
PPC_INS_EVMWLUSIAAW PpcInsn = 0x1d1
PPC_INS_EVMWLUSIANW PpcInsn = 0x1d2
PPC_INS_EVMWSMF PpcInsn = 0x1d3
PPC_INS_EVMWSMFA PpcInsn = 0x1d4
PPC_INS_EVMWSMFAA PpcInsn = 0x1d5
PPC_INS_EVMWSMFAN PpcInsn = 0x1d6
PPC_INS_EVMWSMI PpcInsn = 0x1d7
PPC_INS_EVMWSMIA PpcInsn = 0x1d8
PPC_INS_EVMWSMIAA PpcInsn = 0x1d9
PPC_INS_EVMWSMIAN PpcInsn = 0x1da
PPC_INS_EVMWSSF PpcInsn = 0x1db
PPC_INS_EVMWSSFA PpcInsn = 0x1dc
PPC_INS_EVMWSSFAA PpcInsn = 0x1dd
PPC_INS_EVMWSSFAN PpcInsn = 0x1de
PPC_INS_EVMWUMI PpcInsn = 0x1df
PPC_INS_EVMWUMIA PpcInsn = 0x1e0
PPC_INS_EVMWUMIAA PpcInsn = 0x1e1
PPC_INS_EVMWUMIAN PpcInsn = 0x1e2
PPC_INS_EVNAND PpcInsn = 0x1e3
PPC_INS_EVNEG PpcInsn = 0x1e4
PPC_INS_EVNOR PpcInsn = 0x1e5
PPC_INS_EVOR PpcInsn = 0x1e6
PPC_INS_EVORC PpcInsn = 0x1e7
PPC_INS_EVRLW PpcInsn = 0x1e8
PPC_INS_EVRLWI PpcInsn = 0x1e9
PPC_INS_EVRNDW PpcInsn = 0x1ea
PPC_INS_EVSEL PpcInsn = 0x1eb
PPC_INS_EVSLW PpcInsn = 0x1ec
PPC_INS_EVSLWI PpcInsn = 0x1ed
PPC_INS_EVSPLATFI PpcInsn = 0x1ee
PPC_INS_EVSPLATI PpcInsn = 0x1ef
PPC_INS_EVSRWIS PpcInsn = 0x1f0
PPC_INS_EVSRWIU PpcInsn = 0x1f1
PPC_INS_EVSRWS PpcInsn = 0x1f2
PPC_INS_EVSRWU PpcInsn = 0x1f3
PPC_INS_EVSTDD PpcInsn = 0x1f4
PPC_INS_EVSTDDX PpcInsn = 0x1f5
PPC_INS_EVSTDH PpcInsn = 0x1f6
PPC_INS_EVSTDHX PpcInsn = 0x1f7
PPC_INS_EVSTDW PpcInsn = 0x1f8
PPC_INS_EVSTDWX PpcInsn = 0x1f9
PPC_INS_EVSTWHE PpcInsn = 0x1fa
PPC_INS_EVSTWHEX PpcInsn = 0x1fb
PPC_INS_EVSTWHO PpcInsn = 0x1fc
PPC_INS_EVSTWHOX PpcInsn = 0x1fd
PPC_INS_EVSTWWE PpcInsn = 0x1fe
PPC_INS_EVSTWWEX PpcInsn = 0x1ff
PPC_INS_EVSTWWO PpcInsn = 0x200
PPC_INS_EVSTWWOX PpcInsn = 0x201
PPC_INS_EVSUBFSMIAAW PpcInsn = 0x202
PPC_INS_EVSUBFSSIAAW PpcInsn = 0x203
PPC_INS_EVSUBFUMIAAW PpcInsn = 0x204
PPC_INS_EVSUBFUSIAAW PpcInsn = 0x205
PPC_INS_EVSUBFW PpcInsn = 0x206
PPC_INS_EVSUBIFW PpcInsn = 0x207
PPC_INS_EVXOR PpcInsn = 0x208
PPC_INS_EXTLDI PpcInsn = 0x209
PPC_INS_EXTLWI PpcInsn = 0x20a
PPC_INS_EXTRDI PpcInsn = 0x20b
PPC_INS_EXTRWI PpcInsn = 0x20c
PPC_INS_EXTSB PpcInsn = 0x20d
PPC_INS_EXTSH PpcInsn = 0x20e
PPC_INS_EXTSW PpcInsn = 0x20f
PPC_INS_EXTSWSLI PpcInsn = 0x210
PPC_INS_FABS PpcInsn = 0x211
PPC_INS_FADD PpcInsn = 0x212
PPC_INS_FADDS PpcInsn = 0x213
PPC_INS_FCFID PpcInsn = 0x214
PPC_INS_FCFIDS PpcInsn = 0x215
PPC_INS_FCFIDU PpcInsn = 0x216
PPC_INS_FCFIDUS PpcInsn = 0x217
PPC_INS_FCMPU PpcInsn = 0x218
PPC_INS_FCPSGN PpcInsn = 0x219
PPC_INS_FCTID PpcInsn = 0x21a
PPC_INS_FCTIDU PpcInsn = 0x21b
PPC_INS_FCTIDUZ PpcInsn = 0x21c
PPC_INS_FCTIDZ PpcInsn = 0x21d
PPC_INS_FCTIW PpcInsn = 0x21e
PPC_INS_FCTIWU PpcInsn = 0x21f
PPC_INS_FCTIWUZ PpcInsn = 0x220
PPC_INS_FCTIWZ PpcInsn = 0x221
PPC_INS_FDIV PpcInsn = 0x222
PPC_INS_FDIVS PpcInsn = 0x223
PPC_INS_FMADD PpcInsn = 0x224
PPC_INS_FMADDS PpcInsn = 0x225
PPC_INS_FMR PpcInsn = 0x226
PPC_INS_FMSUB PpcInsn = 0x227
PPC_INS_FMSUBS PpcInsn = 0x228
PPC_INS_FMUL PpcInsn = 0x229
PPC_INS_FMULS PpcInsn = 0x22a
PPC_INS_FNABS PpcInsn = 0x22b
PPC_INS_FNEG PpcInsn = 0x22c
PPC_INS_FNMADD PpcInsn = 0x22d
PPC_INS_FNMADDS PpcInsn = 0x22e
PPC_INS_FNMSUB PpcInsn = 0x22f
PPC_INS_FNMSUBS PpcInsn = 0x230
PPC_INS_FRE PpcInsn = 0x231
PPC_INS_FRES PpcInsn = 0x232
PPC_INS_FRIM PpcInsn = 0x233
PPC_INS_FRIN PpcInsn = 0x234
PPC_INS_FRIP PpcInsn = 0x235
PPC_INS_FRIZ PpcInsn = 0x236
PPC_INS_FRSP PpcInsn = 0x237
PPC_INS_FRSQRTE PpcInsn = 0x238
PPC_INS_FRSQRTES PpcInsn = 0x239
PPC_INS_FSEL PpcInsn = 0x23a
PPC_INS_FSQRT PpcInsn = 0x23b
PPC_INS_FSQRTS PpcInsn = 0x23c
PPC_INS_FSUB PpcInsn = 0x23d
PPC_INS_FSUBS PpcInsn = 0x23e
PPC_INS_FTDIV PpcInsn = 0x23f
PPC_INS_FTSQRT PpcInsn = 0x240
PPC_INS_HRFID PpcInsn = 0x241
PPC_INS_ICBI PpcInsn = 0x242
PPC_INS_ICBIEP PpcInsn = 0x243
PPC_INS_ICBLC PpcInsn = 0x244
PPC_INS_ICBLQ PpcInsn = 0x245
PPC_INS_ICBT PpcInsn = 0x246
PPC_INS_ICBTLS PpcInsn = 0x247
PPC_INS_ICCCI PpcInsn = 0x248
PPC_INS_ICI PpcInsn = 0x249
PPC_INS_INSLWI PpcInsn = 0x24a
PPC_INS_INSRDI PpcInsn = 0x24b
PPC_INS_INSRWI PpcInsn = 0x24c
PPC_INS_ISEL PpcInsn = 0x24d
PPC_INS_ISYNC PpcInsn = 0x24e
PPC_INS_LA PpcInsn = 0x24f
PPC_INS_LBARX PpcInsn = 0x250
PPC_INS_LBEPX PpcInsn = 0x251
PPC_INS_LBZ PpcInsn = 0x252
PPC_INS_LBZCIX PpcInsn = 0x253
PPC_INS_LBZU PpcInsn = 0x254
PPC_INS_LBZUX PpcInsn = 0x255
PPC_INS_LBZX PpcInsn = 0x256
PPC_INS_LD PpcInsn = 0x257
PPC_INS_LDARX PpcInsn = 0x258
PPC_INS_LDAT PpcInsn = 0x259
PPC_INS_LDBRX PpcInsn = 0x25a
PPC_INS_LDCIX PpcInsn = 0x25b
PPC_INS_LDMX PpcInsn = 0x25c
PPC_INS_LDU PpcInsn = 0x25d
PPC_INS_LDUX PpcInsn = 0x25e
PPC_INS_LDX PpcInsn = 0x25f
PPC_INS_LFD PpcInsn = 0x260
PPC_INS_LFDEPX PpcInsn = 0x261
PPC_INS_LFDU PpcInsn = 0x262
PPC_INS_LFDUX PpcInsn = 0x263
PPC_INS_LFDX PpcInsn = 0x264
PPC_INS_LFIWAX PpcInsn = 0x265
PPC_INS_LFIWZX PpcInsn = 0x266
PPC_INS_LFS PpcInsn = 0x267
PPC_INS_LFSU PpcInsn = 0x268
PPC_INS_LFSUX PpcInsn = 0x269
PPC_INS_LFSX PpcInsn = 0x26a
PPC_INS_LHA PpcInsn = 0x26b
PPC_INS_LHARX PpcInsn = 0x26c
PPC_INS_LHAU PpcInsn = 0x26d
PPC_INS_LHAUX PpcInsn = 0x26e
PPC_INS_LHAX PpcInsn = 0x26f
PPC_INS_LHBRX PpcInsn = 0x270
PPC_INS_LHEPX PpcInsn = 0x271
PPC_INS_LHZ PpcInsn = 0x272
PPC_INS_LHZCIX PpcInsn = 0x273
PPC_INS_LHZU PpcInsn = 0x274
PPC_INS_LHZUX PpcInsn = 0x275
PPC_INS_LHZX PpcInsn = 0x276
PPC_INS_LI PpcInsn = 0x277
PPC_INS_LIS PpcInsn = 0x278
PPC_INS_LMW PpcInsn = 0x279
PPC_INS_LNIA PpcInsn = 0x27a
PPC_INS_LSWI PpcInsn = 0x27b
PPC_INS_LVEBX PpcInsn = 0x27c
PPC_INS_LVEHX PpcInsn = 0x27d
PPC_INS_LVEWX PpcInsn = 0x27e
PPC_INS_LVSL PpcInsn = 0x27f
PPC_INS_LVSR PpcInsn = 0x280
PPC_INS_LVX PpcInsn = 0x281
PPC_INS_LVXL PpcInsn = 0x282
PPC_INS_LWA PpcInsn = 0x283
PPC_INS_LWARX PpcInsn = 0x284
PPC_INS_LWAT PpcInsn = 0x285
PPC_INS_LWAUX PpcInsn = 0x286
PPC_INS_LWAX PpcInsn = 0x287
PPC_INS_LWBRX PpcInsn = 0x288
PPC_INS_LWEPX PpcInsn = 0x289
PPC_INS_LWSYNC PpcInsn = 0x28a
PPC_INS_LWZ PpcInsn = 0x28b
PPC_INS_LWZCIX PpcInsn = 0x28c
PPC_INS_LWZU PpcInsn = 0x28d
PPC_INS_LWZUX PpcInsn = 0x28e
PPC_INS_LWZX PpcInsn = 0x28f
PPC_INS_LXSD PpcInsn = 0x290
PPC_INS_LXSDX PpcInsn = 0x291
PPC_INS_LXSIBZX PpcInsn = 0x292
PPC_INS_LXSIHZX PpcInsn = 0x293
PPC_INS_LXSIWAX PpcInsn = 0x294
PPC_INS_LXSIWZX PpcInsn = 0x295
PPC_INS_LXSSP PpcInsn = 0x296
PPC_INS_LXSSPX PpcInsn = 0x297
PPC_INS_LXV PpcInsn = 0x298
PPC_INS_LXVB16X PpcInsn = 0x299
PPC_INS_LXVD2X PpcInsn = 0x29a
PPC_INS_LXVDSX PpcInsn = 0x29b
PPC_INS_LXVH8X PpcInsn = 0x29c
PPC_INS_LXVL PpcInsn = 0x29d
PPC_INS_LXVLL PpcInsn = 0x29e
PPC_INS_LXVW4X PpcInsn = 0x29f
PPC_INS_LXVWSX PpcInsn = 0x2a0
PPC_INS_LXVX PpcInsn = 0x2a1
PPC_INS_MADDHD PpcInsn = 0x2a2
PPC_INS_MADDHDU PpcInsn = 0x2a3
PPC_INS_MADDLD PpcInsn = 0x2a4
PPC_INS_MBAR PpcInsn = 0x2a5
PPC_INS_MCRF PpcInsn = 0x2a6
PPC_INS_MCRFS PpcInsn = 0x2a7
PPC_INS_MCRXRX PpcInsn = 0x2a8
PPC_INS_MFAMR PpcInsn = 0x2a9
PPC_INS_MFASR PpcInsn = 0x2aa
PPC_INS_MFBHRBE PpcInsn = 0x2ab
PPC_INS_MFBR0 PpcInsn = 0x2ac
PPC_INS_MFBR1 PpcInsn = 0x2ad
PPC_INS_MFBR2 PpcInsn = 0x2ae
PPC_INS_MFBR3 PpcInsn = 0x2af
PPC_INS_MFBR4 PpcInsn = 0x2b0
PPC_INS_MFBR5 PpcInsn = 0x2b1
PPC_INS_MFBR6 PpcInsn = 0x2b2
PPC_INS_MFBR7 PpcInsn = 0x2b3
PPC_INS_MFCFAR PpcInsn = 0x2b4
PPC_INS_MFCR PpcInsn = 0x2b5
PPC_INS_MFCTR PpcInsn = 0x2b6
PPC_INS_MFDAR PpcInsn = 0x2b7
PPC_INS_MFDBATL PpcInsn = 0x2b8
PPC_INS_MFDBATU PpcInsn = 0x2b9
PPC_INS_MFDCCR PpcInsn = 0x2ba
PPC_INS_MFDCR PpcInsn = 0x2bb
PPC_INS_MFDEAR PpcInsn = 0x2bc
PPC_INS_MFDEC PpcInsn = 0x2bd
PPC_INS_MFDSCR PpcInsn = 0x2be
PPC_INS_MFDSISR PpcInsn = 0x2bf
PPC_INS_MFESR PpcInsn = 0x2c0
PPC_INS_MFFPRD PpcInsn = 0x2c1
PPC_INS_MFFS PpcInsn = 0x2c2
PPC_INS_MFFSCDRN PpcInsn = 0x2c3
PPC_INS_MFFSCDRNI PpcInsn = 0x2c4
PPC_INS_MFFSCE PpcInsn = 0x2c5
PPC_INS_MFFSCRN PpcInsn = 0x2c6
PPC_INS_MFFSCRNI PpcInsn = 0x2c7
PPC_INS_MFFSL PpcInsn = 0x2c8
PPC_INS_MFIBATL PpcInsn = 0x2c9
PPC_INS_MFIBATU PpcInsn = 0x2ca
PPC_INS_MFICCR PpcInsn = 0x2cb
PPC_INS_MFLR PpcInsn = 0x2cc
PPC_INS_MFMSR PpcInsn = 0x2cd
PPC_INS_MFOCRF PpcInsn = 0x2ce
PPC_INS_MFPID PpcInsn = 0x2cf
PPC_INS_MFPMR PpcInsn = 0x2d0
PPC_INS_MFPVR PpcInsn = 0x2d1
PPC_INS_MFRTCL PpcInsn = 0x2d2
PPC_INS_MFRTCU PpcInsn = 0x2d3
PPC_INS_MFSDR1 PpcInsn = 0x2d4
PPC_INS_MFSPEFSCR PpcInsn = 0x2d5
PPC_INS_MFSPR PpcInsn = 0x2d6
PPC_INS_MFSPRG PpcInsn = 0x2d7
PPC_INS_MFSPRG0 PpcInsn = 0x2d8
PPC_INS_MFSPRG1 PpcInsn = 0x2d9
PPC_INS_MFSPRG2 PpcInsn = 0x2da
PPC_INS_MFSPRG3 PpcInsn = 0x2db
PPC_INS_MFSPRG4 PpcInsn = 0x2dc
PPC_INS_MFSPRG5 PpcInsn = 0x2dd
PPC_INS_MFSPRG6 PpcInsn = 0x2de
PPC_INS_MFSPRG7 PpcInsn = 0x2df
PPC_INS_MFSR PpcInsn = 0x2e0
PPC_INS_MFSRIN PpcInsn = 0x2e1
PPC_INS_MFSRR0 PpcInsn = 0x2e2
PPC_INS_MFSRR1 PpcInsn = 0x2e3
PPC_INS_MFSRR2 PpcInsn = 0x2e4
PPC_INS_MFSRR3 PpcInsn = 0x2e5
PPC_INS_MFTB PpcInsn = 0x2e6
PPC_INS_MFTBHI PpcInsn = 0x2e7
PPC_INS_MFTBL PpcInsn = 0x2e8
PPC_INS_MFTBLO PpcInsn = 0x2e9
PPC_INS_MFTBU PpcInsn = 0x2ea
PPC_INS_MFTCR PpcInsn = 0x2eb
PPC_INS_MFVRD PpcInsn = 0x2ec
PPC_INS_MFVRSAVE PpcInsn = 0x2ed
PPC_INS_MFVSCR PpcInsn = 0x2ee
PPC_INS_MFVSRD PpcInsn = 0x2ef
PPC_INS_MFVSRLD PpcInsn = 0x2f0
PPC_INS_MFVSRWZ PpcInsn = 0x2f1
PPC_INS_MFXER PpcInsn = 0x2f2
PPC_INS_MODSD PpcInsn = 0x2f3
PPC_INS_MODSW PpcInsn = 0x2f4
PPC_INS_MODUD PpcInsn = 0x2f5
PPC_INS_MODUW PpcInsn = 0x2f6
PPC_INS_MR PpcInsn = 0x2f7
PPC_INS_MSGSYNC PpcInsn = 0x2f8
PPC_INS_MSYNC PpcInsn = 0x2f9
PPC_INS_MTAMR PpcInsn = 0x2fa
PPC_INS_MTASR PpcInsn = 0x2fb
PPC_INS_MTBR0 PpcInsn = 0x2fc
PPC_INS_MTBR1 PpcInsn = 0x2fd
PPC_INS_MTBR2 PpcInsn = 0x2fe
PPC_INS_MTBR3 PpcInsn = 0x2ff
PPC_INS_MTBR4 PpcInsn = 0x300
PPC_INS_MTBR5 PpcInsn = 0x301
PPC_INS_MTBR6 PpcInsn = 0x302
PPC_INS_MTBR7 PpcInsn = 0x303
PPC_INS_MTCFAR PpcInsn = 0x304
PPC_INS_MTCR PpcInsn = 0x305
PPC_INS_MTCRF PpcInsn = 0x306
PPC_INS_MTCTR PpcInsn = 0x307
PPC_INS_MTDAR PpcInsn = 0x308
PPC_INS_MTDBATL PpcInsn = 0x309
PPC_INS_MTDBATU PpcInsn = 0x30a
PPC_INS_MTDCCR PpcInsn = 0x30b
PPC_INS_MTDCR PpcInsn = 0x30c
PPC_INS_MTDEAR PpcInsn = 0x30d
PPC_INS_MTDEC PpcInsn = 0x30e
PPC_INS_MTDSCR PpcInsn = 0x30f
PPC_INS_MTDSISR PpcInsn = 0x310
PPC_INS_MTESR PpcInsn = 0x311
PPC_INS_MTFSB0 PpcInsn = 0x312
PPC_INS_MTFSB1 PpcInsn = 0x313
PPC_INS_MTFSF PpcInsn = 0x314
PPC_INS_MTFSFI PpcInsn = 0x315
PPC_INS_MTIBATL PpcInsn = 0x316
PPC_INS_MTIBATU PpcInsn = 0x317
PPC_INS_MTICCR PpcInsn = 0x318
PPC_INS_MTLR PpcInsn = 0x319
PPC_INS_MTMSR PpcInsn = 0x31a
PPC_INS_MTMSRD PpcInsn = 0x31b
PPC_INS_MTOCRF PpcInsn = 0x31c
PPC_INS_MTPID PpcInsn = 0x31d
PPC_INS_MTPMR PpcInsn = 0x31e
PPC_INS_MTSDR1 PpcInsn = 0x31f
PPC_INS_MTSPEFSCR PpcInsn = 0x320
PPC_INS_MTSPR PpcInsn = 0x321
PPC_INS_MTSPRG PpcInsn = 0x322
PPC_INS_MTSPRG0 PpcInsn = 0x323
PPC_INS_MTSPRG1 PpcInsn = 0x324
PPC_INS_MTSPRG2 PpcInsn = 0x325
PPC_INS_MTSPRG3 PpcInsn = 0x326
PPC_INS_MTSPRG4 PpcInsn = 0x327
PPC_INS_MTSPRG5 PpcInsn = 0x328
PPC_INS_MTSPRG6 PpcInsn = 0x329
PPC_INS_MTSPRG7 PpcInsn = 0x32a
PPC_INS_MTSR PpcInsn = 0x32b
PPC_INS_MTSRIN PpcInsn = 0x32c
PPC_INS_MTSRR0 PpcInsn = 0x32d
PPC_INS_MTSRR1 PpcInsn = 0x32e
PPC_INS_MTSRR2 PpcInsn = 0x32f
PPC_INS_MTSRR3 PpcInsn = 0x330
PPC_INS_MTTBHI PpcInsn = 0x331
PPC_INS_MTTBL PpcInsn = 0x332
PPC_INS_MTTBLO PpcInsn = 0x333
PPC_INS_MTTBU PpcInsn = 0x334
PPC_INS_MTTCR PpcInsn = 0x335
PPC_INS_MTVRSAVE PpcInsn = 0x336
PPC_INS_MTVSCR PpcInsn = 0x337
PPC_INS_MTVSRD PpcInsn = 0x338
PPC_INS_MTVSRDD PpcInsn = 0x339
PPC_INS_MTVSRWA PpcInsn = 0x33a
PPC_INS_MTVSRWS PpcInsn = 0x33b
PPC_INS_MTVSRWZ PpcInsn = 0x33c
PPC_INS_MTXER PpcInsn = 0x33d
PPC_INS_MULHD PpcInsn = 0x33e
PPC_INS_MULHDU PpcInsn = 0x33f
PPC_INS_MULHW PpcInsn = 0x340
PPC_INS_MULHWU PpcInsn = 0x341
PPC_INS_MULLD PpcInsn = 0x342
PPC_INS_MULLI PpcInsn = 0x343
PPC_INS_MULLW PpcInsn = 0x344
PPC_INS_NAND PpcInsn = 0x345
PPC_INS_NAP PpcInsn = 0x346
PPC_INS_NEG PpcInsn = 0x347
PPC_INS_NOP PpcInsn = 0x348
PPC_INS_NOR PpcInsn = 0x349
PPC_INS_NOT PpcInsn = 0x34a
PPC_INS_OR PpcInsn = 0x34b
PPC_INS_ORC PpcInsn = 0x34c
PPC_INS_ORI PpcInsn = 0x34d
PPC_INS_ORIS PpcInsn = 0x34e
PPC_INS_PASTE PpcInsn = 0x34f
PPC_INS_PASTE_LAST PpcInsn = 0x350
PPC_INS_POPCNTB PpcInsn = 0x351
PPC_INS_POPCNTD PpcInsn = 0x352
PPC_INS_POPCNTW PpcInsn = 0x353
PPC_INS_PTESYNC PpcInsn = 0x354
PPC_INS_QVALIGNI PpcInsn = 0x355
PPC_INS_QVESPLATI PpcInsn = 0x356
PPC_INS_QVFABS PpcInsn = 0x357
PPC_INS_QVFADD PpcInsn = 0x358
PPC_INS_QVFADDS PpcInsn = 0x359
PPC_INS_QVFAND PpcInsn = 0x35a
PPC_INS_QVFANDC PpcInsn = 0x35b
PPC_INS_QVFCFID PpcInsn = 0x35c
PPC_INS_QVFCFIDS PpcInsn = 0x35d
PPC_INS_QVFCFIDU PpcInsn = 0x35e
PPC_INS_QVFCFIDUS PpcInsn = 0x35f
PPC_INS_QVFCLR PpcInsn = 0x360
PPC_INS_QVFCMPEQ PpcInsn = 0x361
PPC_INS_QVFCMPGT PpcInsn = 0x362
PPC_INS_QVFCMPLT PpcInsn = 0x363
PPC_INS_QVFCPSGN PpcInsn = 0x364
PPC_INS_QVFCTFB PpcInsn = 0x365
PPC_INS_QVFCTID PpcInsn = 0x366
PPC_INS_QVFCTIDU PpcInsn = 0x367
PPC_INS_QVFCTIDUZ PpcInsn = 0x368
PPC_INS_QVFCTIDZ PpcInsn = 0x369
PPC_INS_QVFCTIW PpcInsn = 0x36a
PPC_INS_QVFCTIWU PpcInsn = 0x36b
PPC_INS_QVFCTIWUZ PpcInsn = 0x36c
PPC_INS_QVFCTIWZ PpcInsn = 0x36d
PPC_INS_QVFEQU PpcInsn = 0x36e
PPC_INS_QVFLOGICAL PpcInsn = 0x36f
PPC_INS_QVFMADD PpcInsn = 0x370
PPC_INS_QVFMADDS PpcInsn = 0x371
PPC_INS_QVFMR PpcInsn = 0x372
PPC_INS_QVFMSUB PpcInsn = 0x373
PPC_INS_QVFMSUBS PpcInsn = 0x374
PPC_INS_QVFMUL PpcInsn = 0x375
PPC_INS_QVFMULS PpcInsn = 0x376
PPC_INS_QVFNABS PpcInsn = 0x377
PPC_INS_QVFNAND PpcInsn = 0x378
PPC_INS_QVFNEG PpcInsn = 0x379
PPC_INS_QVFNMADD PpcInsn = 0x37a
PPC_INS_QVFNMADDS PpcInsn = 0x37b
PPC_INS_QVFNMSUB PpcInsn = 0x37c
PPC_INS_QVFNMSUBS PpcInsn = 0x37d
PPC_INS_QVFNOR PpcInsn = 0x37e
PPC_INS_QVFNOT PpcInsn = 0x37f
PPC_INS_QVFOR PpcInsn = 0x380
PPC_INS_QVFORC PpcInsn = 0x381
PPC_INS_QVFPERM PpcInsn = 0x382
PPC_INS_QVFRE PpcInsn = 0x383
PPC_INS_QVFRES PpcInsn = 0x384
PPC_INS_QVFRIM PpcInsn = 0x385
PPC_INS_QVFRIN PpcInsn = 0x386
PPC_INS_QVFRIP PpcInsn = 0x387
PPC_INS_QVFRIZ PpcInsn = 0x388
PPC_INS_QVFRSP PpcInsn = 0x389
PPC_INS_QVFRSQRTE PpcInsn = 0x38a
PPC_INS_QVFRSQRTES PpcInsn = 0x38b
PPC_INS_QVFSEL PpcInsn = 0x38c
PPC_INS_QVFSET PpcInsn = 0x38d
PPC_INS_QVFSUB PpcInsn = 0x38e
PPC_INS_QVFSUBS PpcInsn = 0x38f
PPC_INS_QVFTSTNAN PpcInsn = 0x390
PPC_INS_QVFXMADD PpcInsn = 0x391
PPC_INS_QVFXMADDS PpcInsn = 0x392
PPC_INS_QVFXMUL PpcInsn = 0x393
PPC_INS_QVFXMULS PpcInsn = 0x394
PPC_INS_QVFXOR PpcInsn = 0x395
PPC_INS_QVFXXCPNMADD PpcInsn = 0x396
PPC_INS_QVFXXCPNMADDS PpcInsn = 0x397
PPC_INS_QVFXXMADD PpcInsn = 0x398
PPC_INS_QVFXXMADDS PpcInsn = 0x399
PPC_INS_QVFXXNPMADD PpcInsn = 0x39a
PPC_INS_QVFXXNPMADDS PpcInsn = 0x39b
PPC_INS_QVGPCI PpcInsn = 0x39c
PPC_INS_QVLFCDUX PpcInsn = 0x39d
PPC_INS_QVLFCDUXA PpcInsn = 0x39e
PPC_INS_QVLFCDX PpcInsn = 0x39f
PPC_INS_QVLFCDXA PpcInsn = 0x3a0
PPC_INS_QVLFCSUX PpcInsn = 0x3a1
PPC_INS_QVLFCSUXA PpcInsn = 0x3a2
PPC_INS_QVLFCSX PpcInsn = 0x3a3
PPC_INS_QVLFCSXA PpcInsn = 0x3a4
PPC_INS_QVLFDUX PpcInsn = 0x3a5
PPC_INS_QVLFDUXA PpcInsn = 0x3a6
PPC_INS_QVLFDX PpcInsn = 0x3a7
PPC_INS_QVLFDXA PpcInsn = 0x3a8
PPC_INS_QVLFIWAX PpcInsn = 0x3a9
PPC_INS_QVLFIWAXA PpcInsn = 0x3aa
PPC_INS_QVLFIWZX PpcInsn = 0x3ab
PPC_INS_QVLFIWZXA PpcInsn = 0x3ac
PPC_INS_QVLFSUX PpcInsn = 0x3ad
PPC_INS_QVLFSUXA PpcInsn = 0x3ae
PPC_INS_QVLFSX PpcInsn = 0x3af
PPC_INS_QVLFSXA PpcInsn = 0x3b0
PPC_INS_QVLPCLDX PpcInsn = 0x3b1
PPC_INS_QVLPCLSX PpcInsn = 0x3b2
PPC_INS_QVLPCRDX PpcInsn = 0x3b3
PPC_INS_QVLPCRSX PpcInsn = 0x3b4
PPC_INS_QVSTFCDUX PpcInsn = 0x3b5
PPC_INS_QVSTFCDUXA PpcInsn = 0x3b6
PPC_INS_QVSTFCDUXI PpcInsn = 0x3b7
PPC_INS_QVSTFCDUXIA PpcInsn = 0x3b8
PPC_INS_QVSTFCDX PpcInsn = 0x3b9
PPC_INS_QVSTFCDXA PpcInsn = 0x3ba
PPC_INS_QVSTFCDXI PpcInsn = 0x3bb
PPC_INS_QVSTFCDXIA PpcInsn = 0x3bc
PPC_INS_QVSTFCSUX PpcInsn = 0x3bd
PPC_INS_QVSTFCSUXA PpcInsn = 0x3be
PPC_INS_QVSTFCSUXI PpcInsn = 0x3bf
PPC_INS_QVSTFCSUXIA PpcInsn = 0x3c0
PPC_INS_QVSTFCSX PpcInsn = 0x3c1
PPC_INS_QVSTFCSXA PpcInsn = 0x3c2
PPC_INS_QVSTFCSXI PpcInsn = 0x3c3
PPC_INS_QVSTFCSXIA PpcInsn = 0x3c4
PPC_INS_QVSTFDUX PpcInsn = 0x3c5
PPC_INS_QVSTFDUXA PpcInsn = 0x3c6
PPC_INS_QVSTFDUXI PpcInsn = 0x3c7