• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
2|*                                                                            *|
3|*  * PPC Disassembler                                                        *|
4|*                                                                            *|
5|* Automatically generated file, do not edit!                                 *|
6|*                                                                            *|
7\*===----------------------------------------------------------------------===*/
8
9#include "llvm/MC/MCInst.h"
10#include "llvm/Support/Debug.h"
11#include "llvm/Support/DataTypes.h"
12#include "llvm/Support/LEB128.h"
13#include "llvm/Support/raw_ostream.h"
14#include <assert.h>
15
16namespace llvm {
17
18// Helper functions for extracting fields from encoded instructions.
19// InsnType must either be integral or an APInt-like object that must:
20// * Have a static const max_size_in_bits equal to the number of bits in the
21//   encoding.
22// * be default-constructible and copy-constructible
23// * be constructible from a uint64_t
24// * be constructible from an APInt (this can be private)
25// * Support getBitsSet(loBit, hiBit)
26// * be convertible to uint64_t
27// * Support the ~, &, ==, !=, and |= operators with other objects of the same type
28// * Support shift (<<, >>) with signed and unsigned integers on the RHS
29// * Support put (<<) to raw_ostream&
30template<typename InsnType>
31#if defined(_MSC_VER) && !defined(__clang__)
32__declspec(noinline)
33#endif
34static InsnType fieldFromInstruction(InsnType insn, unsigned startBit,
35                                     unsigned numBits, std::true_type) {
36  assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!");
37  assert(startBit + numBits <= (sizeof(InsnType) * 8) &&
38         "Instruction field out of bounds!");
39  InsnType fieldMask;
40  if (numBits == sizeof(InsnType) * 8)
41    fieldMask = (InsnType)(-1LL);
42  else
43    fieldMask = (((InsnType)1 << numBits) - 1) << startBit;
44  return (insn & fieldMask) >> startBit;
45}
46
47template<typename InsnType>
48static InsnType fieldFromInstruction(InsnType insn, unsigned startBit,
49                                     unsigned numBits, std::false_type) {
50  assert(startBit + numBits <= InsnType::max_size_in_bits && "Instruction field out of bounds!");
51  InsnType fieldMask = InsnType::getBitsSet(0, numBits);
52  return (insn >> startBit) & fieldMask;
53}
54
55template<typename InsnType>
56static InsnType fieldFromInstruction(InsnType insn, unsigned startBit,
57                                     unsigned numBits) {
58  return fieldFromInstruction(insn, startBit, numBits, std::is_integral<InsnType>());
59}
60
61static const uint8_t DecoderTable32[] = {
62/* 0 */       MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
63/* 3 */       MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 20
64/* 8 */       MCD::OPC_CheckField, 1, 10, 128, 2, 133, 66, 0, // Skip to: 17045
65/* 16 */      MCD::OPC_Decode, 133, 3, 0, // Opcode: ATTN
66/* 20 */      MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 29
67/* 25 */      MCD::OPC_Decode, 168, 13, 1, // Opcode: TDI
68/* 29 */      MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 38
69/* 34 */      MCD::OPC_Decode, 189, 13, 2, // Opcode: TWI
70/* 38 */      MCD::OPC_FilterValue, 4, 12, 12, 0, // Skip to: 3127
71/* 43 */      MCD::OPC_ExtractField, 0, 6,  // Inst{5-0} ...
72/* 46 */      MCD::OPC_FilterValue, 0, 237, 0, 0, // Skip to: 288
73/* 51 */      MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
74/* 54 */      MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 63
75/* 59 */      MCD::OPC_Decode, 204, 13, 3, // Opcode: VADDUBM
76/* 63 */      MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 72
77/* 68 */      MCD::OPC_Decode, 207, 13, 3, // Opcode: VADDUHM
78/* 72 */      MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 81
79/* 77 */      MCD::OPC_Decode, 210, 13, 3, // Opcode: VADDUWM
80/* 81 */      MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 90
81/* 86 */      MCD::OPC_Decode, 206, 13, 3, // Opcode: VADDUDM
82/* 90 */      MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 99
83/* 95 */      MCD::OPC_Decode, 209, 13, 3, // Opcode: VADDUQM
84/* 99 */      MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 108
85/* 104 */     MCD::OPC_Decode, 196, 13, 3, // Opcode: VADDCUQ
86/* 108 */     MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 117
87/* 113 */     MCD::OPC_Decode, 197, 13, 3, // Opcode: VADDCUW
88/* 117 */     MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 126
89/* 122 */     MCD::OPC_Decode, 205, 13, 3, // Opcode: VADDUBS
90/* 126 */     MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 135
91/* 131 */     MCD::OPC_Decode, 208, 13, 3, // Opcode: VADDUHS
92/* 135 */     MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 144
93/* 140 */     MCD::OPC_Decode, 211, 13, 3, // Opcode: VADDUWS
94/* 144 */     MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 153
95/* 149 */     MCD::OPC_Decode, 201, 13, 3, // Opcode: VADDSBS
96/* 153 */     MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 162
97/* 158 */     MCD::OPC_Decode, 202, 13, 3, // Opcode: VADDSHS
98/* 162 */     MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 171
99/* 167 */     MCD::OPC_Decode, 203, 13, 3, // Opcode: VADDSWS
100/* 171 */     MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 180
101/* 176 */     MCD::OPC_Decode, 200, 15, 3, // Opcode: VSUBUBM
102/* 180 */     MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 189
103/* 185 */     MCD::OPC_Decode, 203, 15, 3, // Opcode: VSUBUHM
104/* 189 */     MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 198
105/* 194 */     MCD::OPC_Decode, 206, 15, 3, // Opcode: VSUBUWM
106/* 198 */     MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 207
107/* 203 */     MCD::OPC_Decode, 202, 15, 3, // Opcode: VSUBUDM
108/* 207 */     MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 216
109/* 212 */     MCD::OPC_Decode, 205, 15, 3, // Opcode: VSUBUQM
110/* 216 */     MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 225
111/* 221 */     MCD::OPC_Decode, 192, 15, 3, // Opcode: VSUBCUQ
112/* 225 */     MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 234
113/* 230 */     MCD::OPC_Decode, 193, 15, 3, // Opcode: VSUBCUW
114/* 234 */     MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 243
115/* 239 */     MCD::OPC_Decode, 201, 15, 3, // Opcode: VSUBUBS
116/* 243 */     MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 252
117/* 248 */     MCD::OPC_Decode, 204, 15, 3, // Opcode: VSUBUHS
118/* 252 */     MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 261
119/* 257 */     MCD::OPC_Decode, 207, 15, 3, // Opcode: VSUBUWS
120/* 261 */     MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 270
121/* 266 */     MCD::OPC_Decode, 197, 15, 3, // Opcode: VSUBSBS
122/* 270 */     MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 279
123/* 275 */     MCD::OPC_Decode, 198, 15, 3, // Opcode: VSUBSHS
124/* 279 */     MCD::OPC_FilterValue, 30, 121, 65, 0, // Skip to: 17045
125/* 284 */     MCD::OPC_Decode, 199, 15, 3, // Opcode: VSUBSWS
126/* 288 */     MCD::OPC_FilterValue, 1, 9, 1, 0, // Skip to: 558
127/* 293 */     MCD::OPC_ExtractField, 6, 3,  // Inst{8-6} ...
128/* 296 */     MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 322
129/* 301 */     MCD::OPC_ExtractField, 9, 7,  // Inst{15-9} ...
130/* 304 */     MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 313
131/* 309 */     MCD::OPC_Decode, 222, 14, 4, // Opcode: VMUL10CUQ
132/* 313 */     MCD::OPC_FilterValue, 1, 87, 65, 0, // Skip to: 17045
133/* 318 */     MCD::OPC_Decode, 225, 14, 4, // Opcode: VMUL10UQ
134/* 322 */     MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 348
135/* 327 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
136/* 330 */     MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 339
137/* 335 */     MCD::OPC_Decode, 223, 14, 3, // Opcode: VMUL10ECUQ
138/* 339 */     MCD::OPC_FilterValue, 1, 61, 65, 0, // Skip to: 17045
139/* 344 */     MCD::OPC_Decode, 224, 14, 3, // Opcode: VMUL10EUQ
140/* 348 */     MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 364
141/* 353 */     MCD::OPC_CheckField, 9, 2, 2, 45, 65, 0, // Skip to: 17045
142/* 360 */     MCD::OPC_Decode, 166, 3, 3, // Opcode: BCDUS_rec
143/* 364 */     MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 380
144/* 369 */     MCD::OPC_CheckField, 10, 1, 1, 29, 65, 0, // Skip to: 17045
145/* 376 */     MCD::OPC_Decode, 164, 3, 5, // Opcode: BCDS_rec
146/* 380 */     MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 396
147/* 385 */     MCD::OPC_CheckField, 10, 1, 1, 13, 65, 0, // Skip to: 17045
148/* 392 */     MCD::OPC_Decode, 165, 3, 5, // Opcode: BCDTRUNC_rec
149/* 396 */     MCD::OPC_FilterValue, 5, 21, 0, 0, // Skip to: 422
150/* 401 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
151/* 404 */     MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 413
152/* 409 */     MCD::OPC_Decode, 158, 3, 3, // Opcode: BCDCPSGN_rec
153/* 413 */     MCD::OPC_FilterValue, 2, 243, 64, 0, // Skip to: 17045
154/* 418 */     MCD::OPC_Decode, 167, 3, 3, // Opcode: BCDUTRUNC_rec
155/* 422 */     MCD::OPC_FilterValue, 6, 115, 0, 0, // Skip to: 542
156/* 427 */     MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
157/* 430 */     MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 446
158/* 435 */     MCD::OPC_CheckField, 9, 2, 2, 219, 64, 0, // Skip to: 17045
159/* 442 */     MCD::OPC_Decode, 160, 3, 6, // Opcode: BCDCTSQ_rec
160/* 446 */     MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 462
161/* 451 */     MCD::OPC_CheckField, 10, 1, 1, 203, 64, 0, // Skip to: 17045
162/* 458 */     MCD::OPC_Decode, 156, 3, 7, // Opcode: BCDCFSQ_rec
163/* 462 */     MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 478
164/* 467 */     MCD::OPC_CheckField, 10, 1, 1, 187, 64, 0, // Skip to: 17045
165/* 474 */     MCD::OPC_Decode, 161, 3, 7, // Opcode: BCDCTZ_rec
166/* 478 */     MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 494
167/* 483 */     MCD::OPC_CheckField, 9, 2, 2, 171, 64, 0, // Skip to: 17045
168/* 490 */     MCD::OPC_Decode, 159, 3, 6, // Opcode: BCDCTN_rec
169/* 494 */     MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 510
170/* 499 */     MCD::OPC_CheckField, 10, 1, 1, 155, 64, 0, // Skip to: 17045
171/* 506 */     MCD::OPC_Decode, 157, 3, 7, // Opcode: BCDCFZ_rec
172/* 510 */     MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 526
173/* 515 */     MCD::OPC_CheckField, 10, 1, 1, 139, 64, 0, // Skip to: 17045
174/* 522 */     MCD::OPC_Decode, 155, 3, 7, // Opcode: BCDCFN_rec
175/* 526 */     MCD::OPC_FilterValue, 31, 130, 64, 0, // Skip to: 17045
176/* 531 */     MCD::OPC_CheckField, 10, 1, 1, 123, 64, 0, // Skip to: 17045
177/* 538 */     MCD::OPC_Decode, 162, 3, 7, // Opcode: BCDSETSGN_rec
178/* 542 */     MCD::OPC_FilterValue, 7, 114, 64, 0, // Skip to: 17045
179/* 547 */     MCD::OPC_CheckField, 10, 1, 1, 107, 64, 0, // Skip to: 17045
180/* 554 */     MCD::OPC_Decode, 163, 3, 5, // Opcode: BCDSR_rec
181/* 558 */     MCD::OPC_FilterValue, 2, 179, 1, 0, // Skip to: 998
182/* 563 */     MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
183/* 566 */     MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 575
184/* 571 */     MCD::OPC_Decode, 192, 14, 3, // Opcode: VMAXUB
185/* 575 */     MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 584
186/* 580 */     MCD::OPC_Decode, 194, 14, 3, // Opcode: VMAXUH
187/* 584 */     MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 593
188/* 589 */     MCD::OPC_Decode, 195, 14, 3, // Opcode: VMAXUW
189/* 593 */     MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 602
190/* 598 */     MCD::OPC_Decode, 193, 14, 3, // Opcode: VMAXUD
191/* 602 */     MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 611
192/* 607 */     MCD::OPC_Decode, 188, 14, 3, // Opcode: VMAXSB
193/* 611 */     MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 620
194/* 616 */     MCD::OPC_Decode, 190, 14, 3, // Opcode: VMAXSH
195/* 620 */     MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 629
196/* 625 */     MCD::OPC_Decode, 191, 14, 3, // Opcode: VMAXSW
197/* 629 */     MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 638
198/* 634 */     MCD::OPC_Decode, 189, 14, 3, // Opcode: VMAXSD
199/* 638 */     MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 647
200/* 643 */     MCD::OPC_Decode, 203, 14, 3, // Opcode: VMINUB
201/* 647 */     MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 656
202/* 652 */     MCD::OPC_Decode, 205, 14, 3, // Opcode: VMINUH
203/* 656 */     MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 665
204/* 661 */     MCD::OPC_Decode, 206, 14, 3, // Opcode: VMINUW
205/* 665 */     MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 674
206/* 670 */     MCD::OPC_Decode, 204, 14, 3, // Opcode: VMINUD
207/* 674 */     MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 683
208/* 679 */     MCD::OPC_Decode, 199, 14, 3, // Opcode: VMINSB
209/* 683 */     MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 692
210/* 688 */     MCD::OPC_Decode, 201, 14, 3, // Opcode: VMINSH
211/* 692 */     MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 701
212/* 697 */     MCD::OPC_Decode, 202, 14, 3, // Opcode: VMINSW
213/* 701 */     MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 710
214/* 706 */     MCD::OPC_Decode, 200, 14, 3, // Opcode: VMINSD
215/* 710 */     MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 719
216/* 715 */     MCD::OPC_Decode, 217, 13, 3, // Opcode: VAVGUB
217/* 719 */     MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 728
218/* 724 */     MCD::OPC_Decode, 218, 13, 3, // Opcode: VAVGUH
219/* 728 */     MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 737
220/* 733 */     MCD::OPC_Decode, 219, 13, 3, // Opcode: VAVGUW
221/* 737 */     MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 746
222/* 742 */     MCD::OPC_Decode, 214, 13, 3, // Opcode: VAVGSB
223/* 746 */     MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 755
224/* 751 */     MCD::OPC_Decode, 215, 13, 3, // Opcode: VAVGSH
225/* 755 */     MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 764
226/* 760 */     MCD::OPC_Decode, 216, 13, 3, // Opcode: VAVGSW
227/* 764 */     MCD::OPC_FilterValue, 24, 147, 0, 0, // Skip to: 916
228/* 769 */     MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
229/* 772 */     MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 781
230/* 777 */     MCD::OPC_Decode, 231, 13, 8, // Opcode: VCLZLSBB
231/* 781 */     MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 790
232/* 786 */     MCD::OPC_Decode, 156, 14, 8, // Opcode: VCTZLSBB
233/* 790 */     MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 799
234/* 795 */     MCD::OPC_Decode, 243, 14, 6, // Opcode: VNEGW
235/* 799 */     MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 808
236/* 804 */     MCD::OPC_Decode, 242, 14, 6, // Opcode: VNEGD
237/* 808 */     MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 817
238/* 813 */     MCD::OPC_Decode, 146, 15, 6, // Opcode: VPRTYBW
239/* 817 */     MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 826
240/* 822 */     MCD::OPC_Decode, 144, 15, 6, // Opcode: VPRTYBD
241/* 826 */     MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 835
242/* 831 */     MCD::OPC_Decode, 145, 15, 6, // Opcode: VPRTYBQ
243/* 835 */     MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 844
244/* 840 */     MCD::OPC_Decode, 166, 14, 6, // Opcode: VEXTSB2W
245/* 844 */     MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 853
246/* 849 */     MCD::OPC_Decode, 170, 14, 6, // Opcode: VEXTSH2W
247/* 853 */     MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 862
248/* 858 */     MCD::OPC_Decode, 164, 14, 6, // Opcode: VEXTSB2D
249/* 862 */     MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 871
250/* 867 */     MCD::OPC_Decode, 168, 14, 6, // Opcode: VEXTSH2D
251/* 871 */     MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 880
252/* 876 */     MCD::OPC_Decode, 172, 14, 6, // Opcode: VEXTSW2D
253/* 880 */     MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 889
254/* 885 */     MCD::OPC_Decode, 153, 14, 6, // Opcode: VCTZB
255/* 889 */     MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 898
256/* 894 */     MCD::OPC_Decode, 155, 14, 6, // Opcode: VCTZH
257/* 898 */     MCD::OPC_FilterValue, 30, 4, 0, 0, // Skip to: 907
258/* 903 */     MCD::OPC_Decode, 157, 14, 6, // Opcode: VCTZW
259/* 907 */     MCD::OPC_FilterValue, 31, 5, 63, 0, // Skip to: 17045
260/* 912 */     MCD::OPC_Decode, 154, 14, 6, // Opcode: VCTZD
261/* 916 */     MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 925
262/* 921 */     MCD::OPC_Decode, 164, 15, 9, // Opcode: VSHASIGMAW
263/* 925 */     MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 934
264/* 930 */     MCD::OPC_Decode, 163, 15, 9, // Opcode: VSHASIGMAD
265/* 934 */     MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 950
266/* 939 */     MCD::OPC_CheckField, 16, 5, 0, 227, 62, 0, // Skip to: 17045
267/* 946 */     MCD::OPC_Decode, 228, 13, 6, // Opcode: VCLZB
268/* 950 */     MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 966
269/* 955 */     MCD::OPC_CheckField, 16, 5, 0, 211, 62, 0, // Skip to: 17045
270/* 962 */     MCD::OPC_Decode, 230, 13, 6, // Opcode: VCLZH
271/* 966 */     MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 982
272/* 971 */     MCD::OPC_CheckField, 16, 5, 0, 195, 62, 0, // Skip to: 17045
273/* 978 */     MCD::OPC_Decode, 232, 13, 6, // Opcode: VCLZW
274/* 982 */     MCD::OPC_FilterValue, 31, 186, 62, 0, // Skip to: 17045
275/* 987 */     MCD::OPC_CheckField, 16, 5, 0, 179, 62, 0, // Skip to: 17045
276/* 994 */     MCD::OPC_Decode, 229, 13, 6, // Opcode: VCLZD
277/* 998 */     MCD::OPC_FilterValue, 3, 94, 0, 0, // Skip to: 1097
278/* 1003 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
279/* 1006 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1015
280/* 1011 */    MCD::OPC_Decode, 193, 13, 3, // Opcode: VABSDUB
281/* 1015 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1024
282/* 1020 */    MCD::OPC_Decode, 194, 13, 3, // Opcode: VABSDUH
283/* 1024 */    MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1033
284/* 1029 */    MCD::OPC_Decode, 195, 13, 3, // Opcode: VABSDUW
285/* 1033 */    MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 1049
286/* 1038 */    MCD::OPC_CheckField, 16, 5, 0, 128, 62, 0, // Skip to: 17045
287/* 1045 */    MCD::OPC_Decode, 140, 15, 6, // Opcode: VPOPCNTB
288/* 1049 */    MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 1065
289/* 1054 */    MCD::OPC_CheckField, 16, 5, 0, 112, 62, 0, // Skip to: 17045
290/* 1061 */    MCD::OPC_Decode, 142, 15, 6, // Opcode: VPOPCNTH
291/* 1065 */    MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 1081
292/* 1070 */    MCD::OPC_CheckField, 16, 5, 0, 96, 62, 0, // Skip to: 17045
293/* 1077 */    MCD::OPC_Decode, 143, 15, 6, // Opcode: VPOPCNTW
294/* 1081 */    MCD::OPC_FilterValue, 31, 87, 62, 0, // Skip to: 17045
295/* 1086 */    MCD::OPC_CheckField, 16, 5, 0, 80, 62, 0, // Skip to: 17045
296/* 1093 */    MCD::OPC_Decode, 141, 15, 6, // Opcode: VPOPCNTD
297/* 1097 */    MCD::OPC_FilterValue, 4, 31, 1, 0, // Skip to: 1389
298/* 1102 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
299/* 1105 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1114
300/* 1110 */    MCD::OPC_Decode, 152, 15, 3, // Opcode: VRLB
301/* 1114 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1123
302/* 1119 */    MCD::OPC_Decode, 156, 15, 3, // Opcode: VRLH
303/* 1123 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1132
304/* 1128 */    MCD::OPC_Decode, 157, 15, 3, // Opcode: VRLW
305/* 1132 */    MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1141
306/* 1137 */    MCD::OPC_Decode, 153, 15, 3, // Opcode: VRLD
307/* 1141 */    MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1150
308/* 1146 */    MCD::OPC_Decode, 166, 15, 3, // Opcode: VSLB
309/* 1150 */    MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1159
310/* 1155 */    MCD::OPC_Decode, 169, 15, 3, // Opcode: VSLH
311/* 1159 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1168
312/* 1164 */    MCD::OPC_Decode, 172, 15, 3, // Opcode: VSLW
313/* 1168 */    MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1177
314/* 1173 */    MCD::OPC_Decode, 165, 15, 3, // Opcode: VSL
315/* 1177 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1186
316/* 1182 */    MCD::OPC_Decode, 186, 15, 3, // Opcode: VSRB
317/* 1186 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1195
318/* 1191 */    MCD::OPC_Decode, 188, 15, 3, // Opcode: VSRH
319/* 1195 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1204
320/* 1200 */    MCD::OPC_Decode, 191, 15, 3, // Opcode: VSRW
321/* 1204 */    MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1213
322/* 1209 */    MCD::OPC_Decode, 181, 15, 3, // Opcode: VSR
323/* 1213 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1222
324/* 1218 */    MCD::OPC_Decode, 182, 15, 3, // Opcode: VSRAB
325/* 1222 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1231
326/* 1227 */    MCD::OPC_Decode, 184, 15, 3, // Opcode: VSRAH
327/* 1231 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1240
328/* 1236 */    MCD::OPC_Decode, 185, 15, 3, // Opcode: VSRAW
329/* 1240 */    MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1249
330/* 1245 */    MCD::OPC_Decode, 183, 15, 3, // Opcode: VSRAD
331/* 1249 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1258
332/* 1254 */    MCD::OPC_Decode, 212, 13, 3, // Opcode: VAND
333/* 1258 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1267
334/* 1263 */    MCD::OPC_Decode, 213, 13, 3, // Opcode: VANDC
335/* 1267 */    MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1276
336/* 1272 */    MCD::OPC_Decode, 246, 14, 3, // Opcode: VOR
337/* 1276 */    MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1285
338/* 1281 */    MCD::OPC_Decode, 221, 15, 3, // Opcode: VXOR
339/* 1285 */    MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 1294
340/* 1290 */    MCD::OPC_Decode, 245, 14, 3, // Opcode: VNOR
341/* 1294 */    MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 1303
342/* 1299 */    MCD::OPC_Decode, 247, 14, 3, // Opcode: VORC
343/* 1303 */    MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 1312
344/* 1308 */    MCD::OPC_Decode, 239, 14, 3, // Opcode: VNAND
345/* 1312 */    MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 1321
346/* 1317 */    MCD::OPC_Decode, 167, 15, 3, // Opcode: VSLD
347/* 1321 */    MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 1337
348/* 1326 */    MCD::OPC_CheckField, 11, 10, 0, 96, 61, 0, // Skip to: 17045
349/* 1333 */    MCD::OPC_Decode, 147, 9, 10, // Opcode: MFVSCR
350/* 1337 */    MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 1353
351/* 1342 */    MCD::OPC_CheckField, 16, 10, 0, 80, 61, 0, // Skip to: 17045
352/* 1349 */    MCD::OPC_Decode, 187, 9, 11, // Opcode: MTVSCR
353/* 1353 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 1362
354/* 1358 */    MCD::OPC_Decode, 158, 14, 3, // Opcode: VEQV
355/* 1362 */    MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1371
356/* 1367 */    MCD::OPC_Decode, 187, 15, 3, // Opcode: VSRD
357/* 1371 */    MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 1380
358/* 1376 */    MCD::OPC_Decode, 190, 15, 3, // Opcode: VSRV
359/* 1380 */    MCD::OPC_FilterValue, 29, 44, 61, 0, // Skip to: 17045
360/* 1385 */    MCD::OPC_Decode, 171, 15, 3, // Opcode: VSLV
361/* 1389 */    MCD::OPC_FilterValue, 5, 39, 0, 0, // Skip to: 1433
362/* 1394 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
363/* 1397 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1406
364/* 1402 */    MCD::OPC_Decode, 158, 15, 12, // Opcode: VRLWMI
365/* 1406 */    MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1415
366/* 1411 */    MCD::OPC_Decode, 154, 15, 12, // Opcode: VRLDMI
367/* 1415 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1424
368/* 1420 */    MCD::OPC_Decode, 159, 15, 3, // Opcode: VRLWNM
369/* 1424 */    MCD::OPC_FilterValue, 7, 0, 61, 0, // Skip to: 17045
370/* 1429 */    MCD::OPC_Decode, 155, 15, 3, // Opcode: VRLDNM
371/* 1433 */    MCD::OPC_FilterValue, 6, 237, 0, 0, // Skip to: 1675
372/* 1438 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
373/* 1441 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1450
374/* 1446 */    MCD::OPC_Decode, 237, 13, 3, // Opcode: VCMPEQUB
375/* 1450 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1459
376/* 1455 */    MCD::OPC_Decode, 241, 13, 3, // Opcode: VCMPEQUH
377/* 1459 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1468
378/* 1464 */    MCD::OPC_Decode, 243, 13, 3, // Opcode: VCMPEQUW
379/* 1468 */    MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1477
380/* 1473 */    MCD::OPC_Decode, 235, 13, 3, // Opcode: VCMPEQFP
381/* 1477 */    MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1486
382/* 1482 */    MCD::OPC_Decode, 245, 13, 3, // Opcode: VCMPGEFP
383/* 1486 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1495
384/* 1491 */    MCD::OPC_Decode, 129, 14, 3, // Opcode: VCMPGTUB
385/* 1495 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1504
386/* 1500 */    MCD::OPC_Decode, 133, 14, 3, // Opcode: VCMPGTUH
387/* 1504 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1513
388/* 1509 */    MCD::OPC_Decode, 135, 14, 3, // Opcode: VCMPGTUW
389/* 1513 */    MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1522
390/* 1518 */    MCD::OPC_Decode, 247, 13, 3, // Opcode: VCMPGTFP
391/* 1522 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1531
392/* 1527 */    MCD::OPC_Decode, 249, 13, 3, // Opcode: VCMPGTSB
393/* 1531 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1540
394/* 1536 */    MCD::OPC_Decode, 253, 13, 3, // Opcode: VCMPGTSH
395/* 1540 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1549
396/* 1545 */    MCD::OPC_Decode, 255, 13, 3, // Opcode: VCMPGTSW
397/* 1549 */    MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1558
398/* 1554 */    MCD::OPC_Decode, 233, 13, 3, // Opcode: VCMPBFP
399/* 1558 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1567
400/* 1563 */    MCD::OPC_Decode, 238, 13, 3, // Opcode: VCMPEQUB_rec
401/* 1567 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1576
402/* 1572 */    MCD::OPC_Decode, 242, 13, 3, // Opcode: VCMPEQUH_rec
403/* 1576 */    MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1585
404/* 1581 */    MCD::OPC_Decode, 244, 13, 3, // Opcode: VCMPEQUW_rec
405/* 1585 */    MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1594
406/* 1590 */    MCD::OPC_Decode, 236, 13, 3, // Opcode: VCMPEQFP_rec
407/* 1594 */    MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 1603
408/* 1599 */    MCD::OPC_Decode, 246, 13, 3, // Opcode: VCMPGEFP_rec
409/* 1603 */    MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 1612
410/* 1608 */    MCD::OPC_Decode, 130, 14, 3, // Opcode: VCMPGTUB_rec
411/* 1612 */    MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 1621
412/* 1617 */    MCD::OPC_Decode, 134, 14, 3, // Opcode: VCMPGTUH_rec
413/* 1621 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 1630
414/* 1626 */    MCD::OPC_Decode, 136, 14, 3, // Opcode: VCMPGTUW_rec
415/* 1630 */    MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1639
416/* 1635 */    MCD::OPC_Decode, 248, 13, 3, // Opcode: VCMPGTFP_rec
417/* 1639 */    MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 1648
418/* 1644 */    MCD::OPC_Decode, 250, 13, 3, // Opcode: VCMPGTSB_rec
419/* 1648 */    MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 1657
420/* 1653 */    MCD::OPC_Decode, 254, 13, 3, // Opcode: VCMPGTSH_rec
421/* 1657 */    MCD::OPC_FilterValue, 30, 4, 0, 0, // Skip to: 1666
422/* 1662 */    MCD::OPC_Decode, 128, 14, 3, // Opcode: VCMPGTSW_rec
423/* 1666 */    MCD::OPC_FilterValue, 31, 14, 60, 0, // Skip to: 17045
424/* 1671 */    MCD::OPC_Decode, 234, 13, 3, // Opcode: VCMPBFP_rec
425/* 1675 */    MCD::OPC_FilterValue, 7, 165, 0, 0, // Skip to: 1845
426/* 1680 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
427/* 1683 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1692
428/* 1688 */    MCD::OPC_Decode, 137, 14, 3, // Opcode: VCMPNEB
429/* 1692 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1701
430/* 1697 */    MCD::OPC_Decode, 139, 14, 3, // Opcode: VCMPNEH
431/* 1701 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1710
432/* 1706 */    MCD::OPC_Decode, 141, 14, 3, // Opcode: VCMPNEW
433/* 1710 */    MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1719
434/* 1715 */    MCD::OPC_Decode, 239, 13, 3, // Opcode: VCMPEQUD
435/* 1719 */    MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1728
436/* 1724 */    MCD::OPC_Decode, 143, 14, 3, // Opcode: VCMPNEZB
437/* 1728 */    MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1737
438/* 1733 */    MCD::OPC_Decode, 145, 14, 3, // Opcode: VCMPNEZH
439/* 1737 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1746
440/* 1742 */    MCD::OPC_Decode, 147, 14, 3, // Opcode: VCMPNEZW
441/* 1746 */    MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1755
442/* 1751 */    MCD::OPC_Decode, 131, 14, 3, // Opcode: VCMPGTUD
443/* 1755 */    MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1764
444/* 1760 */    MCD::OPC_Decode, 251, 13, 3, // Opcode: VCMPGTSD
445/* 1764 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1773
446/* 1769 */    MCD::OPC_Decode, 138, 14, 3, // Opcode: VCMPNEB_rec
447/* 1773 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1782
448/* 1778 */    MCD::OPC_Decode, 140, 14, 3, // Opcode: VCMPNEH_rec
449/* 1782 */    MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1791
450/* 1787 */    MCD::OPC_Decode, 142, 14, 3, // Opcode: VCMPNEW_rec
451/* 1791 */    MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1800
452/* 1796 */    MCD::OPC_Decode, 240, 13, 3, // Opcode: VCMPEQUD_rec
453/* 1800 */    MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 1809
454/* 1805 */    MCD::OPC_Decode, 144, 14, 3, // Opcode: VCMPNEZB_rec
455/* 1809 */    MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 1818
456/* 1814 */    MCD::OPC_Decode, 146, 14, 3, // Opcode: VCMPNEZH_rec
457/* 1818 */    MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 1827
458/* 1823 */    MCD::OPC_Decode, 148, 14, 3, // Opcode: VCMPNEZW_rec
459/* 1827 */    MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1836
460/* 1832 */    MCD::OPC_Decode, 132, 14, 3, // Opcode: VCMPGTUD_rec
461/* 1836 */    MCD::OPC_FilterValue, 31, 100, 59, 0, // Skip to: 17045
462/* 1841 */    MCD::OPC_Decode, 252, 13, 3, // Opcode: VCMPGTSD_rec
463/* 1845 */    MCD::OPC_FilterValue, 8, 226, 0, 0, // Skip to: 2076
464/* 1850 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
465/* 1853 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1862
466/* 1858 */    MCD::OPC_Decode, 235, 14, 3, // Opcode: VMULOUB
467/* 1862 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1871
468/* 1867 */    MCD::OPC_Decode, 236, 14, 3, // Opcode: VMULOUH
469/* 1871 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1880
470/* 1876 */    MCD::OPC_Decode, 237, 14, 3, // Opcode: VMULOUW
471/* 1880 */    MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1889
472/* 1885 */    MCD::OPC_Decode, 232, 14, 3, // Opcode: VMULOSB
473/* 1889 */    MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1898
474/* 1894 */    MCD::OPC_Decode, 233, 14, 3, // Opcode: VMULOSH
475/* 1898 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1907
476/* 1903 */    MCD::OPC_Decode, 234, 14, 3, // Opcode: VMULOSW
477/* 1907 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1916
478/* 1912 */    MCD::OPC_Decode, 229, 14, 3, // Opcode: VMULEUB
479/* 1916 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1925
480/* 1921 */    MCD::OPC_Decode, 230, 14, 3, // Opcode: VMULEUH
481/* 1925 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1934
482/* 1930 */    MCD::OPC_Decode, 231, 14, 3, // Opcode: VMULEUW
483/* 1934 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1943
484/* 1939 */    MCD::OPC_Decode, 226, 14, 3, // Opcode: VMULESB
485/* 1943 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1952
486/* 1948 */    MCD::OPC_Decode, 227, 14, 3, // Opcode: VMULESH
487/* 1952 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1961
488/* 1957 */    MCD::OPC_Decode, 228, 14, 3, // Opcode: VMULESW
489/* 1961 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1970
490/* 1966 */    MCD::OPC_Decode, 136, 15, 3, // Opcode: VPMSUMB
491/* 1970 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1979
492/* 1975 */    MCD::OPC_Decode, 138, 15, 3, // Opcode: VPMSUMH
493/* 1979 */    MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1988
494/* 1984 */    MCD::OPC_Decode, 139, 15, 3, // Opcode: VPMSUMW
495/* 1988 */    MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1997
496/* 1993 */    MCD::OPC_Decode, 137, 15, 3, // Opcode: VPMSUMD
497/* 1997 */    MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 2006
498/* 2002 */    MCD::OPC_Decode, 226, 13, 3, // Opcode: VCIPHER
499/* 2006 */    MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2015
500/* 2011 */    MCD::OPC_Decode, 240, 14, 3, // Opcode: VNCIPHER
501/* 2015 */    MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 2031
502/* 2020 */    MCD::OPC_CheckField, 11, 5, 0, 170, 58, 0, // Skip to: 17045
503/* 2027 */    MCD::OPC_Decode, 161, 15, 4, // Opcode: VSBOX
504/* 2031 */    MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 2040
505/* 2036 */    MCD::OPC_Decode, 211, 15, 3, // Opcode: VSUM4UBS
506/* 2040 */    MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 2049
507/* 2045 */    MCD::OPC_Decode, 210, 15, 3, // Opcode: VSUM4SHS
508/* 2049 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2058
509/* 2054 */    MCD::OPC_Decode, 208, 15, 3, // Opcode: VSUM2SWS
510/* 2058 */    MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 2067
511/* 2063 */    MCD::OPC_Decode, 209, 15, 3, // Opcode: VSUM4SBS
512/* 2067 */    MCD::OPC_FilterValue, 30, 125, 58, 0, // Skip to: 17045
513/* 2072 */    MCD::OPC_Decode, 212, 15, 3, // Opcode: VSUMSWS
514/* 2076 */    MCD::OPC_FilterValue, 9, 30, 0, 0, // Skip to: 2111
515/* 2081 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
516/* 2084 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2093
517/* 2089 */    MCD::OPC_Decode, 238, 14, 3, // Opcode: VMULUWM
518/* 2093 */    MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 2102
519/* 2098 */    MCD::OPC_Decode, 227, 13, 3, // Opcode: VCIPHERLAST
520/* 2102 */    MCD::OPC_FilterValue, 21, 90, 58, 0, // Skip to: 17045
521/* 2107 */    MCD::OPC_Decode, 241, 14, 3, // Opcode: VNCIPHERLAST
522/* 2111 */    MCD::OPC_FilterValue, 10, 203, 0, 0, // Skip to: 2319
523/* 2116 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
524/* 2119 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2128
525/* 2124 */    MCD::OPC_Decode, 200, 13, 3, // Opcode: VADDFP
526/* 2128 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2137
527/* 2133 */    MCD::OPC_Decode, 196, 15, 3, // Opcode: VSUBFP
528/* 2137 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 2153
529/* 2142 */    MCD::OPC_CheckField, 16, 5, 0, 48, 58, 0, // Skip to: 17045
530/* 2149 */    MCD::OPC_Decode, 147, 15, 6, // Opcode: VREFP
531/* 2153 */    MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 2169
532/* 2158 */    MCD::OPC_CheckField, 16, 5, 0, 32, 58, 0, // Skip to: 17045
533/* 2165 */    MCD::OPC_Decode, 160, 15, 6, // Opcode: VRSQRTEFP
534/* 2169 */    MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 2185
535/* 2174 */    MCD::OPC_CheckField, 16, 5, 0, 16, 58, 0, // Skip to: 17045
536/* 2181 */    MCD::OPC_Decode, 159, 14, 6, // Opcode: VEXPTEFP
537/* 2185 */    MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 2201
538/* 2190 */    MCD::OPC_CheckField, 16, 5, 0, 0, 58, 0, // Skip to: 17045
539/* 2197 */    MCD::OPC_Decode, 185, 14, 6, // Opcode: VLOGEFP
540/* 2201 */    MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 2217
541/* 2206 */    MCD::OPC_CheckField, 16, 5, 0, 240, 57, 0, // Skip to: 17045
542/* 2213 */    MCD::OPC_Decode, 149, 15, 6, // Opcode: VRFIN
543/* 2217 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 2233
544/* 2222 */    MCD::OPC_CheckField, 16, 5, 0, 224, 57, 0, // Skip to: 17045
545/* 2229 */    MCD::OPC_Decode, 151, 15, 6, // Opcode: VRFIZ
546/* 2233 */    MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 2249
547/* 2238 */    MCD::OPC_CheckField, 16, 5, 0, 208, 57, 0, // Skip to: 17045
548/* 2245 */    MCD::OPC_Decode, 150, 15, 6, // Opcode: VRFIP
549/* 2249 */    MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 2265
550/* 2254 */    MCD::OPC_CheckField, 16, 5, 0, 192, 57, 0, // Skip to: 17045
551/* 2261 */    MCD::OPC_Decode, 148, 15, 6, // Opcode: VRFIM
552/* 2265 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2274
553/* 2270 */    MCD::OPC_Decode, 224, 13, 13, // Opcode: VCFUX
554/* 2274 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 2283
555/* 2279 */    MCD::OPC_Decode, 222, 13, 13, // Opcode: VCFSX
556/* 2283 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 2292
557/* 2288 */    MCD::OPC_Decode, 151, 14, 13, // Opcode: VCTUXS
558/* 2292 */    MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 2301
559/* 2297 */    MCD::OPC_Decode, 149, 14, 13, // Opcode: VCTSXS
560/* 2301 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 2310
561/* 2306 */    MCD::OPC_Decode, 187, 14, 3, // Opcode: VMAXFP
562/* 2310 */    MCD::OPC_FilterValue, 17, 138, 57, 0, // Skip to: 17045
563/* 2315 */    MCD::OPC_Decode, 198, 14, 3, // Opcode: VMINFP
564/* 2319 */    MCD::OPC_FilterValue, 12, 202, 0, 0, // Skip to: 2526
565/* 2324 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
566/* 2327 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2336
567/* 2332 */    MCD::OPC_Decode, 209, 14, 3, // Opcode: VMRGHB
568/* 2336 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2345
569/* 2341 */    MCD::OPC_Decode, 210, 14, 3, // Opcode: VMRGHH
570/* 2345 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2354
571/* 2350 */    MCD::OPC_Decode, 211, 14, 3, // Opcode: VMRGHW
572/* 2354 */    MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 2363
573/* 2359 */    MCD::OPC_Decode, 212, 14, 3, // Opcode: VMRGLB
574/* 2363 */    MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 2372
575/* 2368 */    MCD::OPC_Decode, 213, 14, 3, // Opcode: VMRGLH
576/* 2372 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 2381
577/* 2377 */    MCD::OPC_Decode, 214, 14, 3, // Opcode: VMRGLW
578/* 2381 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 2390
579/* 2386 */    MCD::OPC_Decode, 173, 15, 13, // Opcode: VSPLTB
580/* 2390 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 2399
581/* 2395 */    MCD::OPC_Decode, 175, 15, 13, // Opcode: VSPLTH
582/* 2399 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 2408
583/* 2404 */    MCD::OPC_Decode, 180, 15, 13, // Opcode: VSPLTW
584/* 2408 */    MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 2424
585/* 2413 */    MCD::OPC_CheckField, 11, 5, 0, 33, 57, 0, // Skip to: 17045
586/* 2420 */    MCD::OPC_Decode, 177, 15, 14, // Opcode: VSPLTISB
587/* 2424 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 2440
588/* 2429 */    MCD::OPC_CheckField, 11, 5, 0, 17, 57, 0, // Skip to: 17045
589/* 2436 */    MCD::OPC_Decode, 178, 15, 14, // Opcode: VSPLTISH
590/* 2440 */    MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 2456
591/* 2445 */    MCD::OPC_CheckField, 11, 5, 0, 1, 57, 0, // Skip to: 17045
592/* 2452 */    MCD::OPC_Decode, 179, 15, 14, // Opcode: VSPLTISW
593/* 2456 */    MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 2465
594/* 2461 */    MCD::OPC_Decode, 170, 15, 3, // Opcode: VSLO
595/* 2465 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 2474
596/* 2470 */    MCD::OPC_Decode, 189, 15, 3, // Opcode: VSRO
597/* 2474 */    MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 2490
598/* 2479 */    MCD::OPC_CheckField, 16, 5, 0, 223, 56, 0, // Skip to: 17045
599/* 2486 */    MCD::OPC_Decode, 180, 14, 6, // Opcode: VGBBD
600/* 2490 */    MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2499
601/* 2495 */    MCD::OPC_Decode, 221, 13, 3, // Opcode: VBPERMQ
602/* 2499 */    MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 2508
603/* 2504 */    MCD::OPC_Decode, 220, 13, 3, // Opcode: VBPERMD
604/* 2508 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2517
605/* 2513 */    MCD::OPC_Decode, 215, 14, 3, // Opcode: VMRGOW
606/* 2517 */    MCD::OPC_FilterValue, 30, 187, 56, 0, // Skip to: 17045
607/* 2522 */    MCD::OPC_Decode, 208, 14, 3, // Opcode: VMRGEW
608/* 2526 */    MCD::OPC_FilterValue, 13, 129, 0, 0, // Skip to: 2660
609/* 2531 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
610/* 2534 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 2543
611/* 2539 */    MCD::OPC_Decode, 161, 14, 15, // Opcode: VEXTRACTUB
612/* 2543 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 2552
613/* 2548 */    MCD::OPC_Decode, 162, 14, 15, // Opcode: VEXTRACTUH
614/* 2552 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 2561
615/* 2557 */    MCD::OPC_Decode, 163, 14, 15, // Opcode: VEXTRACTUW
616/* 2561 */    MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 2570
617/* 2566 */    MCD::OPC_Decode, 160, 14, 15, // Opcode: VEXTRACTD
618/* 2570 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2579
619/* 2575 */    MCD::OPC_Decode, 181, 14, 16, // Opcode: VINSERTB
620/* 2579 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 2588
621/* 2584 */    MCD::OPC_Decode, 183, 14, 16, // Opcode: VINSERTH
622/* 2588 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 2597
623/* 2593 */    MCD::OPC_Decode, 184, 14, 15, // Opcode: VINSERTW
624/* 2597 */    MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 2606
625/* 2602 */    MCD::OPC_Decode, 182, 14, 15, // Opcode: VINSERTD
626/* 2606 */    MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 2615
627/* 2611 */    MCD::OPC_Decode, 174, 14, 17, // Opcode: VEXTUBLX
628/* 2615 */    MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 2624
629/* 2620 */    MCD::OPC_Decode, 176, 14, 17, // Opcode: VEXTUHLX
630/* 2624 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2633
631/* 2629 */    MCD::OPC_Decode, 178, 14, 17, // Opcode: VEXTUWLX
632/* 2633 */    MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 2642
633/* 2638 */    MCD::OPC_Decode, 175, 14, 17, // Opcode: VEXTUBRX
634/* 2642 */    MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 2651
635/* 2647 */    MCD::OPC_Decode, 177, 14, 17, // Opcode: VEXTUHRX
636/* 2651 */    MCD::OPC_FilterValue, 30, 53, 56, 0, // Skip to: 17045
637/* 2656 */    MCD::OPC_Decode, 179, 14, 17, // Opcode: VEXTUWRX
638/* 2660 */    MCD::OPC_FilterValue, 14, 248, 0, 0, // Skip to: 2913
639/* 2665 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
640/* 2668 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2677
641/* 2673 */    MCD::OPC_Decode, 132, 15, 3, // Opcode: VPKUHUM
642/* 2677 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2686
643/* 2682 */    MCD::OPC_Decode, 134, 15, 3, // Opcode: VPKUWUM
644/* 2686 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2695
645/* 2691 */    MCD::OPC_Decode, 133, 15, 3, // Opcode: VPKUHUS
646/* 2695 */    MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 2704
647/* 2700 */    MCD::OPC_Decode, 135, 15, 3, // Opcode: VPKUWUS
648/* 2704 */    MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 2713
649/* 2709 */    MCD::OPC_Decode, 255, 14, 3, // Opcode: VPKSHUS
650/* 2713 */    MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 2722
651/* 2718 */    MCD::OPC_Decode, 129, 15, 3, // Opcode: VPKSWUS
652/* 2722 */    MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 2731
653/* 2727 */    MCD::OPC_Decode, 254, 14, 3, // Opcode: VPKSHSS
654/* 2731 */    MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 2740
655/* 2736 */    MCD::OPC_Decode, 128, 15, 3, // Opcode: VPKSWSS
656/* 2740 */    MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 2756
657/* 2745 */    MCD::OPC_CheckField, 16, 5, 0, 213, 55, 0, // Skip to: 17045
658/* 2752 */    MCD::OPC_Decode, 214, 15, 6, // Opcode: VUPKHSB
659/* 2756 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 2772
660/* 2761 */    MCD::OPC_CheckField, 16, 5, 0, 197, 55, 0, // Skip to: 17045
661/* 2768 */    MCD::OPC_Decode, 215, 15, 6, // Opcode: VUPKHSH
662/* 2772 */    MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 2788
663/* 2777 */    MCD::OPC_CheckField, 16, 5, 0, 181, 55, 0, // Skip to: 17045
664/* 2784 */    MCD::OPC_Decode, 218, 15, 6, // Opcode: VUPKLSB
665/* 2788 */    MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 2804
666/* 2793 */    MCD::OPC_CheckField, 16, 5, 0, 165, 55, 0, // Skip to: 17045
667/* 2800 */    MCD::OPC_Decode, 219, 15, 6, // Opcode: VUPKLSH
668/* 2804 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2813
669/* 2809 */    MCD::OPC_Decode, 251, 14, 3, // Opcode: VPKPX
670/* 2813 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 2829
671/* 2818 */    MCD::OPC_CheckField, 16, 5, 0, 140, 55, 0, // Skip to: 17045
672/* 2825 */    MCD::OPC_Decode, 213, 15, 6, // Opcode: VUPKHPX
673/* 2829 */    MCD::OPC_FilterValue, 15, 11, 0, 0, // Skip to: 2845
674/* 2834 */    MCD::OPC_CheckField, 16, 5, 0, 124, 55, 0, // Skip to: 17045
675/* 2841 */    MCD::OPC_Decode, 217, 15, 6, // Opcode: VUPKLPX
676/* 2845 */    MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 2854
677/* 2850 */    MCD::OPC_Decode, 130, 15, 3, // Opcode: VPKUDUM
678/* 2854 */    MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 2863
679/* 2859 */    MCD::OPC_Decode, 131, 15, 3, // Opcode: VPKUDUS
680/* 2863 */    MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2872
681/* 2868 */    MCD::OPC_Decode, 253, 14, 3, // Opcode: VPKSDUS
682/* 2872 */    MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 2881
683/* 2877 */    MCD::OPC_Decode, 252, 14, 3, // Opcode: VPKSDSS
684/* 2881 */    MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 2897
685/* 2886 */    MCD::OPC_CheckField, 16, 5, 0, 72, 55, 0, // Skip to: 17045
686/* 2893 */    MCD::OPC_Decode, 216, 15, 6, // Opcode: VUPKHSW
687/* 2897 */    MCD::OPC_FilterValue, 27, 63, 55, 0, // Skip to: 17045
688/* 2902 */    MCD::OPC_CheckField, 16, 5, 0, 56, 55, 0, // Skip to: 17045
689/* 2909 */    MCD::OPC_Decode, 220, 15, 6, // Opcode: VUPKLSW
690/* 2913 */    MCD::OPC_FilterValue, 32, 4, 0, 0, // Skip to: 2922
691/* 2918 */    MCD::OPC_Decode, 196, 14, 18, // Opcode: VMHADDSHS
692/* 2922 */    MCD::OPC_FilterValue, 33, 4, 0, 0, // Skip to: 2931
693/* 2927 */    MCD::OPC_Decode, 197, 14, 18, // Opcode: VMHRADDSHS
694/* 2931 */    MCD::OPC_FilterValue, 34, 4, 0, 0, // Skip to: 2940
695/* 2936 */    MCD::OPC_Decode, 207, 14, 18, // Opcode: VMLADDUHM
696/* 2940 */    MCD::OPC_FilterValue, 36, 4, 0, 0, // Skip to: 2949
697/* 2945 */    MCD::OPC_Decode, 219, 14, 18, // Opcode: VMSUMUBM
698/* 2949 */    MCD::OPC_FilterValue, 37, 4, 0, 0, // Skip to: 2958
699/* 2954 */    MCD::OPC_Decode, 216, 14, 18, // Opcode: VMSUMMBM
700/* 2958 */    MCD::OPC_FilterValue, 38, 4, 0, 0, // Skip to: 2967
701/* 2963 */    MCD::OPC_Decode, 220, 14, 18, // Opcode: VMSUMUHM
702/* 2967 */    MCD::OPC_FilterValue, 39, 4, 0, 0, // Skip to: 2976
703/* 2972 */    MCD::OPC_Decode, 221, 14, 18, // Opcode: VMSUMUHS
704/* 2976 */    MCD::OPC_FilterValue, 40, 4, 0, 0, // Skip to: 2985
705/* 2981 */    MCD::OPC_Decode, 217, 14, 18, // Opcode: VMSUMSHM
706/* 2985 */    MCD::OPC_FilterValue, 41, 4, 0, 0, // Skip to: 2994
707/* 2990 */    MCD::OPC_Decode, 218, 14, 18, // Opcode: VMSUMSHS
708/* 2994 */    MCD::OPC_FilterValue, 42, 4, 0, 0, // Skip to: 3003
709/* 2999 */    MCD::OPC_Decode, 162, 15, 18, // Opcode: VSEL
710/* 3003 */    MCD::OPC_FilterValue, 43, 4, 0, 0, // Skip to: 3012
711/* 3008 */    MCD::OPC_Decode, 248, 14, 18, // Opcode: VPERM
712/* 3012 */    MCD::OPC_FilterValue, 44, 11, 0, 0, // Skip to: 3028
713/* 3017 */    MCD::OPC_CheckField, 10, 1, 0, 197, 54, 0, // Skip to: 17045
714/* 3024 */    MCD::OPC_Decode, 168, 15, 19, // Opcode: VSLDOI
715/* 3028 */    MCD::OPC_FilterValue, 45, 4, 0, 0, // Skip to: 3037
716/* 3033 */    MCD::OPC_Decode, 250, 14, 18, // Opcode: VPERMXOR
717/* 3037 */    MCD::OPC_FilterValue, 46, 4, 0, 0, // Skip to: 3046
718/* 3042 */    MCD::OPC_Decode, 186, 14, 20, // Opcode: VMADDFP
719/* 3046 */    MCD::OPC_FilterValue, 47, 4, 0, 0, // Skip to: 3055
720/* 3051 */    MCD::OPC_Decode, 244, 14, 20, // Opcode: VNMSUBFP
721/* 3055 */    MCD::OPC_FilterValue, 48, 4, 0, 0, // Skip to: 3064
722/* 3060 */    MCD::OPC_Decode, 237, 8, 21, // Opcode: MADDHD
723/* 3064 */    MCD::OPC_FilterValue, 49, 4, 0, 0, // Skip to: 3073
724/* 3069 */    MCD::OPC_Decode, 238, 8, 21, // Opcode: MADDHDU
725/* 3073 */    MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 3082
726/* 3078 */    MCD::OPC_Decode, 239, 8, 22, // Opcode: MADDLD
727/* 3082 */    MCD::OPC_FilterValue, 59, 4, 0, 0, // Skip to: 3091
728/* 3087 */    MCD::OPC_Decode, 249, 14, 18, // Opcode: VPERMR
729/* 3091 */    MCD::OPC_FilterValue, 60, 4, 0, 0, // Skip to: 3100
730/* 3096 */    MCD::OPC_Decode, 199, 13, 18, // Opcode: VADDEUQM
731/* 3100 */    MCD::OPC_FilterValue, 61, 4, 0, 0, // Skip to: 3109
732/* 3105 */    MCD::OPC_Decode, 198, 13, 18, // Opcode: VADDECUQ
733/* 3109 */    MCD::OPC_FilterValue, 62, 4, 0, 0, // Skip to: 3118
734/* 3114 */    MCD::OPC_Decode, 195, 15, 18, // Opcode: VSUBEUQM
735/* 3118 */    MCD::OPC_FilterValue, 63, 98, 54, 0, // Skip to: 17045
736/* 3123 */    MCD::OPC_Decode, 194, 15, 18, // Opcode: VSUBECUQ
737/* 3127 */    MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 3136
738/* 3132 */    MCD::OPC_Decode, 205, 9, 23, // Opcode: MULLI
739/* 3136 */    MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 3145
740/* 3141 */    MCD::OPC_Decode, 252, 12, 23, // Opcode: SUBFIC
741/* 3145 */    MCD::OPC_FilterValue, 10, 21, 0, 0, // Skip to: 3171
742/* 3150 */    MCD::OPC_ExtractField, 21, 2,  // Inst{22-21} ...
743/* 3153 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3162
744/* 3158 */    MCD::OPC_Decode, 247, 3, 24, // Opcode: CMPLWI
745/* 3162 */    MCD::OPC_FilterValue, 1, 54, 54, 0, // Skip to: 17045
746/* 3167 */    MCD::OPC_Decode, 245, 3, 25, // Opcode: CMPLDI
747/* 3171 */    MCD::OPC_FilterValue, 11, 21, 0, 0, // Skip to: 3197
748/* 3176 */    MCD::OPC_ExtractField, 21, 2,  // Inst{22-21} ...
749/* 3179 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3188
750/* 3184 */    MCD::OPC_Decode, 251, 3, 26, // Opcode: CMPWI
751/* 3188 */    MCD::OPC_FilterValue, 1, 28, 54, 0, // Skip to: 17045
752/* 3193 */    MCD::OPC_Decode, 242, 3, 27, // Opcode: CMPDI
753/* 3197 */    MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 3206
754/* 3202 */    MCD::OPC_Decode, 155, 2, 23, // Opcode: ADDIC
755/* 3206 */    MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 3215
756/* 3211 */    MCD::OPC_Decode, 157, 2, 23, // Opcode: ADDIC_rec
757/* 3215 */    MCD::OPC_FilterValue, 14, 15, 0, 0, // Skip to: 3235
758/* 3220 */    MCD::OPC_CheckField, 16, 5, 0, 4, 0, 0, // Skip to: 3231
759/* 3227 */    MCD::OPC_Decode, 181, 8, 28, // Opcode: LI
760/* 3231 */    MCD::OPC_Decode, 153, 2, 29, // Opcode: ADDI
761/* 3235 */    MCD::OPC_FilterValue, 15, 15, 0, 0, // Skip to: 3255
762/* 3240 */    MCD::OPC_CheckField, 16, 5, 0, 4, 0, 0, // Skip to: 3251
763/* 3247 */    MCD::OPC_Decode, 183, 8, 28, // Opcode: LIS
764/* 3251 */    MCD::OPC_Decode, 158, 2, 29, // Opcode: ADDIS
765/* 3255 */    MCD::OPC_FilterValue, 16, 35, 1, 0, // Skip to: 3551
766/* 3260 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
767/* 3263 */    MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 3335
768/* 3268 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
769/* 3271 */    MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3281
770/* 3277 */    MCD::OPC_Decode, 182, 3, 30, // Opcode: BDNZ
771/* 3281 */    MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3291
772/* 3287 */    MCD::OPC_Decode, 202, 3, 30, // Opcode: BDZ
773/* 3291 */    MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3301
774/* 3297 */    MCD::OPC_Decode, 200, 3, 30, // Opcode: BDNZm
775/* 3301 */    MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3311
776/* 3307 */    MCD::OPC_Decode, 201, 3, 30, // Opcode: BDNZp
777/* 3311 */    MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3321
778/* 3317 */    MCD::OPC_Decode, 220, 3, 30, // Opcode: BDZm
779/* 3321 */    MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3331
780/* 3327 */    MCD::OPC_Decode, 221, 3, 30, // Opcode: BDZp
781/* 3331 */    MCD::OPC_Decode, 228, 17, 31, // Opcode: gBC
782/* 3335 */    MCD::OPC_FilterValue, 1, 67, 0, 0, // Skip to: 3407
783/* 3340 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
784/* 3343 */    MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3353
785/* 3349 */    MCD::OPC_Decode, 187, 3, 30, // Opcode: BDNZL
786/* 3353 */    MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3363
787/* 3359 */    MCD::OPC_Decode, 207, 3, 30, // Opcode: BDZL
788/* 3363 */    MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3373
789/* 3369 */    MCD::OPC_Decode, 198, 3, 30, // Opcode: BDNZLm
790/* 3373 */    MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3383
791/* 3379 */    MCD::OPC_Decode, 199, 3, 30, // Opcode: BDNZLp
792/* 3383 */    MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3393
793/* 3389 */    MCD::OPC_Decode, 218, 3, 30, // Opcode: BDZLm
794/* 3393 */    MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3403
795/* 3399 */    MCD::OPC_Decode, 219, 3, 30, // Opcode: BDZLp
796/* 3403 */    MCD::OPC_Decode, 233, 17, 31, // Opcode: gBCL
797/* 3407 */    MCD::OPC_FilterValue, 2, 67, 0, 0, // Skip to: 3479
798/* 3412 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
799/* 3415 */    MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3425
800/* 3421 */    MCD::OPC_Decode, 184, 3, 30, // Opcode: BDNZA
801/* 3425 */    MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3435
802/* 3431 */    MCD::OPC_Decode, 204, 3, 30, // Opcode: BDZA
803/* 3435 */    MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3445
804/* 3441 */    MCD::OPC_Decode, 185, 3, 30, // Opcode: BDNZAm
805/* 3445 */    MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3455
806/* 3451 */    MCD::OPC_Decode, 186, 3, 30, // Opcode: BDNZAp
807/* 3455 */    MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3465
808/* 3461 */    MCD::OPC_Decode, 205, 3, 30, // Opcode: BDZAm
809/* 3465 */    MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3475
810/* 3471 */    MCD::OPC_Decode, 206, 3, 30, // Opcode: BDZAp
811/* 3475 */    MCD::OPC_Decode, 229, 17, 31, // Opcode: gBCA
812/* 3479 */    MCD::OPC_FilterValue, 3, 249, 52, 0, // Skip to: 17045
813/* 3484 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
814/* 3487 */    MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3497
815/* 3493 */    MCD::OPC_Decode, 188, 3, 30, // Opcode: BDNZLA
816/* 3497 */    MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3507
817/* 3503 */    MCD::OPC_Decode, 208, 3, 30, // Opcode: BDZLA
818/* 3507 */    MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3517
819/* 3513 */    MCD::OPC_Decode, 189, 3, 30, // Opcode: BDNZLAm
820/* 3517 */    MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3527
821/* 3523 */    MCD::OPC_Decode, 190, 3, 30, // Opcode: BDNZLAp
822/* 3527 */    MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3537
823/* 3533 */    MCD::OPC_Decode, 209, 3, 30, // Opcode: BDZLAm
824/* 3537 */    MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3547
825/* 3543 */    MCD::OPC_Decode, 210, 3, 30, // Opcode: BDZLAp
826/* 3547 */    MCD::OPC_Decode, 234, 17, 31, // Opcode: gBCLA
827/* 3551 */    MCD::OPC_FilterValue, 17, 11, 0, 0, // Skip to: 3567
828/* 3556 */    MCD::OPC_CheckField, 1, 1, 1, 170, 52, 0, // Skip to: 17045
829/* 3563 */    MCD::OPC_Decode, 200, 11, 32, // Opcode: SC
830/* 3567 */    MCD::OPC_FilterValue, 18, 39, 0, 0, // Skip to: 3611
831/* 3572 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
832/* 3575 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3584
833/* 3580 */    MCD::OPC_Decode, 134, 3, 33, // Opcode: B
834/* 3584 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 3593
835/* 3589 */    MCD::OPC_Decode, 222, 3, 34, // Opcode: BL
836/* 3593 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 3602
837/* 3598 */    MCD::OPC_Decode, 135, 3, 33, // Opcode: BA
838/* 3602 */    MCD::OPC_FilterValue, 3, 126, 52, 0, // Skip to: 17045
839/* 3607 */    MCD::OPC_Decode, 228, 3, 33, // Opcode: BLA
840/* 3611 */    MCD::OPC_FilterValue, 19, 22, 3, 0, // Skip to: 4406
841/* 3616 */    MCD::OPC_ExtractField, 1, 5,  // Inst{5-1} ...
842/* 3619 */    MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 3649
843/* 3624 */    MCD::OPC_CheckField, 21, 2, 0, 102, 52, 0, // Skip to: 17045
844/* 3631 */    MCD::OPC_CheckField, 6, 12, 0, 95, 52, 0, // Skip to: 17045
845/* 3638 */    MCD::OPC_CheckField, 0, 1, 0, 88, 52, 0, // Skip to: 17045
846/* 3645 */    MCD::OPC_Decode, 242, 8, 35, // Opcode: MCRF
847/* 3649 */    MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 3785
848/* 3654 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
849/* 3657 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 3673
850/* 3662 */    MCD::OPC_CheckField, 0, 1, 0, 64, 52, 0, // Skip to: 17045
851/* 3669 */    MCD::OPC_Decode, 149, 4, 36, // Opcode: CRNOR
852/* 3673 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 3689
853/* 3678 */    MCD::OPC_CheckField, 0, 1, 0, 48, 52, 0, // Skip to: 17045
854/* 3685 */    MCD::OPC_Decode, 146, 4, 36, // Opcode: CRANDC
855/* 3689 */    MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 3705
856/* 3694 */    MCD::OPC_CheckField, 0, 1, 0, 32, 52, 0, // Skip to: 17045
857/* 3701 */    MCD::OPC_Decode, 154, 4, 36, // Opcode: CRXOR
858/* 3705 */    MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 3721
859/* 3710 */    MCD::OPC_CheckField, 0, 1, 0, 16, 52, 0, // Skip to: 17045
860/* 3717 */    MCD::OPC_Decode, 148, 4, 36, // Opcode: CRNAND
861/* 3721 */    MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 3737
862/* 3726 */    MCD::OPC_CheckField, 0, 1, 0, 0, 52, 0, // Skip to: 17045
863/* 3733 */    MCD::OPC_Decode, 145, 4, 36, // Opcode: CRAND
864/* 3737 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 3753
865/* 3742 */    MCD::OPC_CheckField, 0, 1, 0, 240, 51, 0, // Skip to: 17045
866/* 3749 */    MCD::OPC_Decode, 147, 4, 36, // Opcode: CREQV
867/* 3753 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 3769
868/* 3758 */    MCD::OPC_CheckField, 0, 1, 0, 224, 51, 0, // Skip to: 17045
869/* 3765 */    MCD::OPC_Decode, 151, 4, 36, // Opcode: CRORC
870/* 3769 */    MCD::OPC_FilterValue, 14, 215, 51, 0, // Skip to: 17045
871/* 3774 */    MCD::OPC_CheckField, 0, 1, 0, 208, 51, 0, // Skip to: 17045
872/* 3781 */    MCD::OPC_Decode, 150, 4, 36, // Opcode: CROR
873/* 3785 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 3794
874/* 3790 */    MCD::OPC_Decode, 186, 2, 37, // Opcode: ADDPCIS
875/* 3794 */    MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 3817
876/* 3799 */    MCD::OPC_CheckField, 6, 20, 1, 183, 51, 0, // Skip to: 17045
877/* 3806 */    MCD::OPC_CheckField, 0, 1, 0, 176, 51, 0, // Skip to: 17045
878/* 3813 */    MCD::OPC_Decode, 170, 11, 0, // Opcode: RFMCI
879/* 3817 */    MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 3840
880/* 3822 */    MCD::OPC_CheckField, 6, 20, 1, 160, 51, 0, // Skip to: 17045
881/* 3829 */    MCD::OPC_CheckField, 0, 1, 0, 153, 51, 0, // Skip to: 17045
882/* 3836 */    MCD::OPC_Decode, 166, 11, 0, // Opcode: RFDI
883/* 3840 */    MCD::OPC_FilterValue, 16, 113, 1, 0, // Skip to: 4214
884/* 3845 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
885/* 3848 */    MCD::OPC_FilterValue, 0, 178, 0, 0, // Skip to: 4031
886/* 3853 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
887/* 3856 */    MCD::OPC_FilterValue, 0, 134, 0, 0, // Skip to: 3995
888/* 3861 */    MCD::OPC_ExtractField, 13, 3,  // Inst{15-13} ...
889/* 3864 */    MCD::OPC_FilterValue, 0, 120, 51, 0, // Skip to: 17045
890/* 3869 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
891/* 3872 */    MCD::OPC_FilterValue, 128, 4, 11, 0, 0, // Skip to: 3889
892/* 3878 */    MCD::OPC_CheckField, 11, 2, 0, 106, 0, 0, // Skip to: 3991
893/* 3885 */    MCD::OPC_Decode, 191, 3, 0, // Opcode: BDNZLR
894/* 3889 */    MCD::OPC_FilterValue, 192, 4, 11, 0, 0, // Skip to: 3906
895/* 3895 */    MCD::OPC_CheckField, 11, 2, 0, 89, 0, 0, // Skip to: 3991
896/* 3902 */    MCD::OPC_Decode, 211, 3, 0, // Opcode: BDZLR
897/* 3906 */    MCD::OPC_FilterValue, 128, 5, 11, 0, 0, // Skip to: 3923
898/* 3912 */    MCD::OPC_CheckField, 11, 2, 0, 72, 0, 0, // Skip to: 3991
899/* 3919 */    MCD::OPC_Decode, 231, 3, 0, // Opcode: BLR
900/* 3923 */    MCD::OPC_FilterValue, 128, 6, 11, 0, 0, // Skip to: 3940
901/* 3929 */    MCD::OPC_CheckField, 11, 2, 0, 55, 0, 0, // Skip to: 3991
902/* 3936 */    MCD::OPC_Decode, 196, 3, 0, // Opcode: BDNZLRm
903/* 3940 */    MCD::OPC_FilterValue, 160, 6, 11, 0, 0, // Skip to: 3957
904/* 3946 */    MCD::OPC_CheckField, 11, 2, 0, 38, 0, 0, // Skip to: 3991
905/* 3953 */    MCD::OPC_Decode, 197, 3, 0, // Opcode: BDNZLRp
906/* 3957 */    MCD::OPC_FilterValue, 192, 6, 11, 0, 0, // Skip to: 3974
907/* 3963 */    MCD::OPC_CheckField, 11, 2, 0, 21, 0, 0, // Skip to: 3991
908/* 3970 */    MCD::OPC_Decode, 216, 3, 0, // Opcode: BDZLRm
909/* 3974 */    MCD::OPC_FilterValue, 224, 6, 11, 0, 0, // Skip to: 3991
910/* 3980 */    MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 3991
911/* 3987 */    MCD::OPC_Decode, 217, 3, 0, // Opcode: BDZLRp
912/* 3991 */    MCD::OPC_Decode, 236, 17, 38, // Opcode: gBCLR
913/* 3995 */    MCD::OPC_FilterValue, 16, 245, 50, 0, // Skip to: 17045
914/* 4000 */    MCD::OPC_ExtractField, 13, 3,  // Inst{15-13} ...
915/* 4003 */    MCD::OPC_FilterValue, 0, 237, 50, 0, // Skip to: 17045
916/* 4008 */    MCD::OPC_CheckField, 16, 10, 128, 5, 11, 0, 0, // Skip to: 4027
917/* 4016 */    MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4027
918/* 4023 */    MCD::OPC_Decode, 175, 3, 0, // Opcode: BCTR
919/* 4027 */    MCD::OPC_Decode, 231, 17, 38, // Opcode: gBCCTR
920/* 4031 */    MCD::OPC_FilterValue, 1, 209, 50, 0, // Skip to: 17045
921/* 4036 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
922/* 4039 */    MCD::OPC_FilterValue, 0, 134, 0, 0, // Skip to: 4178
923/* 4044 */    MCD::OPC_ExtractField, 13, 3,  // Inst{15-13} ...
924/* 4047 */    MCD::OPC_FilterValue, 0, 193, 50, 0, // Skip to: 17045
925/* 4052 */    MCD::OPC_ExtractField, 16, 10,  // Inst{25-16} ...
926/* 4055 */    MCD::OPC_FilterValue, 128, 4, 11, 0, 0, // Skip to: 4072
927/* 4061 */    MCD::OPC_CheckField, 11, 2, 0, 106, 0, 0, // Skip to: 4174
928/* 4068 */    MCD::OPC_Decode, 193, 3, 0, // Opcode: BDNZLRL
929/* 4072 */    MCD::OPC_FilterValue, 192, 4, 11, 0, 0, // Skip to: 4089
930/* 4078 */    MCD::OPC_CheckField, 11, 2, 0, 89, 0, 0, // Skip to: 4174
931/* 4085 */    MCD::OPC_Decode, 213, 3, 0, // Opcode: BDZLRL
932/* 4089 */    MCD::OPC_FilterValue, 128, 5, 11, 0, 0, // Skip to: 4106
933/* 4095 */    MCD::OPC_CheckField, 11, 2, 0, 72, 0, 0, // Skip to: 4174
934/* 4102 */    MCD::OPC_Decode, 233, 3, 0, // Opcode: BLRL
935/* 4106 */    MCD::OPC_FilterValue, 128, 6, 11, 0, 0, // Skip to: 4123
936/* 4112 */    MCD::OPC_CheckField, 11, 2, 0, 55, 0, 0, // Skip to: 4174
937/* 4119 */    MCD::OPC_Decode, 194, 3, 0, // Opcode: BDNZLRLm
938/* 4123 */    MCD::OPC_FilterValue, 160, 6, 11, 0, 0, // Skip to: 4140
939/* 4129 */    MCD::OPC_CheckField, 11, 2, 0, 38, 0, 0, // Skip to: 4174
940/* 4136 */    MCD::OPC_Decode, 195, 3, 0, // Opcode: BDNZLRLp
941/* 4140 */    MCD::OPC_FilterValue, 192, 6, 11, 0, 0, // Skip to: 4157
942/* 4146 */    MCD::OPC_CheckField, 11, 2, 0, 21, 0, 0, // Skip to: 4174
943/* 4153 */    MCD::OPC_Decode, 214, 3, 0, // Opcode: BDZLRLm
944/* 4157 */    MCD::OPC_FilterValue, 224, 6, 11, 0, 0, // Skip to: 4174
945/* 4163 */    MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4174
946/* 4170 */    MCD::OPC_Decode, 215, 3, 0, // Opcode: BDZLRLp
947/* 4174 */    MCD::OPC_Decode, 237, 17, 38, // Opcode: gBCLRL
948/* 4178 */    MCD::OPC_FilterValue, 16, 62, 50, 0, // Skip to: 17045
949/* 4183 */    MCD::OPC_ExtractField, 13, 3,  // Inst{15-13} ...
950/* 4186 */    MCD::OPC_FilterValue, 0, 54, 50, 0, // Skip to: 17045
951/* 4191 */    MCD::OPC_CheckField, 16, 10, 128, 5, 11, 0, 0, // Skip to: 4210
952/* 4199 */    MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4210
953/* 4206 */    MCD::OPC_Decode, 177, 3, 0, // Opcode: BCTRL
954/* 4210 */    MCD::OPC_Decode, 232, 17, 38, // Opcode: gBCCTRL
955/* 4214 */    MCD::OPC_FilterValue, 18, 141, 0, 0, // Skip to: 4360
956/* 4219 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
957/* 4222 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 4245
958/* 4227 */    MCD::OPC_CheckField, 11, 15, 0, 11, 50, 0, // Skip to: 17045
959/* 4234 */    MCD::OPC_CheckField, 0, 1, 0, 4, 50, 0, // Skip to: 17045
960/* 4241 */    MCD::OPC_Decode, 169, 11, 0, // Opcode: RFID
961/* 4245 */    MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 4268
962/* 4250 */    MCD::OPC_CheckField, 11, 15, 0, 244, 49, 0, // Skip to: 17045
963/* 4257 */    MCD::OPC_CheckField, 0, 1, 0, 237, 49, 0, // Skip to: 17045
964/* 4264 */    MCD::OPC_Decode, 168, 11, 0, // Opcode: RFI
965/* 4268 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4291
966/* 4273 */    MCD::OPC_CheckField, 12, 14, 0, 221, 49, 0, // Skip to: 17045
967/* 4280 */    MCD::OPC_CheckField, 0, 1, 0, 214, 49, 0, // Skip to: 17045
968/* 4287 */    MCD::OPC_Decode, 167, 11, 39, // Opcode: RFEBB
969/* 4291 */    MCD::OPC_FilterValue, 8, 18, 0, 0, // Skip to: 4314
970/* 4296 */    MCD::OPC_CheckField, 11, 15, 0, 198, 49, 0, // Skip to: 17045
971/* 4303 */    MCD::OPC_CheckField, 0, 1, 0, 191, 49, 0, // Skip to: 17045
972/* 4310 */    MCD::OPC_Decode, 227, 7, 0, // Opcode: HRFID
973/* 4314 */    MCD::OPC_FilterValue, 11, 18, 0, 0, // Skip to: 4337
974/* 4319 */    MCD::OPC_CheckField, 11, 15, 0, 175, 49, 0, // Skip to: 17045
975/* 4326 */    MCD::OPC_CheckField, 0, 1, 0, 168, 49, 0, // Skip to: 17045
976/* 4333 */    MCD::OPC_Decode, 191, 12, 0, // Opcode: STOP
977/* 4337 */    MCD::OPC_FilterValue, 13, 159, 49, 0, // Skip to: 17045
978/* 4342 */    MCD::OPC_CheckField, 11, 15, 0, 152, 49, 0, // Skip to: 17045
979/* 4349 */    MCD::OPC_CheckField, 0, 1, 0, 145, 49, 0, // Skip to: 17045
980/* 4356 */    MCD::OPC_Decode, 218, 9, 0, // Opcode: NAP
981/* 4360 */    MCD::OPC_FilterValue, 19, 18, 0, 0, // Skip to: 4383
982/* 4365 */    MCD::OPC_CheckField, 6, 20, 1, 129, 49, 0, // Skip to: 17045
983/* 4372 */    MCD::OPC_CheckField, 0, 1, 0, 122, 49, 0, // Skip to: 17045
984/* 4379 */    MCD::OPC_Decode, 165, 11, 0, // Opcode: RFCI
985/* 4383 */    MCD::OPC_FilterValue, 22, 113, 49, 0, // Skip to: 17045
986/* 4388 */    MCD::OPC_CheckField, 6, 20, 4, 106, 49, 0, // Skip to: 17045
987/* 4395 */    MCD::OPC_CheckField, 0, 1, 0, 99, 49, 0, // Skip to: 17045
988/* 4402 */    MCD::OPC_Decode, 237, 7, 0, // Opcode: ISYNC
989/* 4406 */    MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 4432
990/* 4411 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
991/* 4414 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4423
992/* 4419 */    MCD::OPC_Decode, 187, 11, 40, // Opcode: RLWIMI
993/* 4423 */    MCD::OPC_FilterValue, 1, 73, 49, 0, // Skip to: 17045
994/* 4428 */    MCD::OPC_Decode, 190, 11, 40, // Opcode: RLWIMI_rec
995/* 4432 */    MCD::OPC_FilterValue, 21, 21, 0, 0, // Skip to: 4458
996/* 4437 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
997/* 4440 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4449
998/* 4445 */    MCD::OPC_Decode, 191, 11, 41, // Opcode: RLWINM
999/* 4449 */    MCD::OPC_FilterValue, 1, 47, 49, 0, // Skip to: 17045
1000/* 4454 */    MCD::OPC_Decode, 194, 11, 41, // Opcode: RLWINM_rec
1001/* 4458 */    MCD::OPC_FilterValue, 23, 21, 0, 0, // Skip to: 4484
1002/* 4463 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
1003/* 4466 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4475
1004/* 4471 */    MCD::OPC_Decode, 195, 11, 42, // Opcode: RLWNM
1005/* 4475 */    MCD::OPC_FilterValue, 1, 21, 49, 0, // Skip to: 17045
1006/* 4480 */    MCD::OPC_Decode, 198, 11, 42, // Opcode: RLWNM_rec
1007/* 4484 */    MCD::OPC_FilterValue, 24, 15, 0, 0, // Skip to: 4504
1008/* 4489 */    MCD::OPC_CheckField, 0, 26, 0, 4, 0, 0, // Skip to: 4500
1009/* 4496 */    MCD::OPC_Decode, 227, 9, 0, // Opcode: NOP
1010/* 4500 */    MCD::OPC_Decode, 241, 9, 43, // Opcode: ORI
1011/* 4504 */    MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 4513
1012/* 4509 */    MCD::OPC_Decode, 243, 9, 43, // Opcode: ORIS
1013/* 4513 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 4522
1014/* 4518 */    MCD::OPC_Decode, 234, 15, 43, // Opcode: XORI
1015/* 4522 */    MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 4531
1016/* 4527 */    MCD::OPC_Decode, 236, 15, 43, // Opcode: XORIS
1017/* 4531 */    MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 4540
1018/* 4536 */    MCD::OPC_Decode, 207, 2, 43, // Opcode: ANDI_rec
1019/* 4540 */    MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 4549
1020/* 4545 */    MCD::OPC_Decode, 206, 2, 43, // Opcode: ANDIS_rec
1021/* 4549 */    MCD::OPC_FilterValue, 30, 151, 0, 0, // Skip to: 4705
1022/* 4554 */    MCD::OPC_ExtractField, 2, 3,  // Inst{4-2} ...
1023/* 4557 */    MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 4583
1024/* 4562 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
1025/* 4565 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4574
1026/* 4570 */    MCD::OPC_Decode, 176, 11, 44, // Opcode: RLDICL
1027/* 4574 */    MCD::OPC_FilterValue, 1, 178, 48, 0, // Skip to: 17045
1028/* 4579 */    MCD::OPC_Decode, 180, 11, 44, // Opcode: RLDICL_rec
1029/* 4583 */    MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 4609
1030/* 4588 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
1031/* 4591 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4600
1032/* 4596 */    MCD::OPC_Decode, 181, 11, 44, // Opcode: RLDICR
1033/* 4600 */    MCD::OPC_FilterValue, 1, 152, 48, 0, // Skip to: 17045
1034/* 4605 */    MCD::OPC_Decode, 183, 11, 44, // Opcode: RLDICR_rec
1035/* 4609 */    MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 4635
1036/* 4614 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
1037/* 4617 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4626
1038/* 4622 */    MCD::OPC_Decode, 175, 11, 44, // Opcode: RLDIC
1039/* 4626 */    MCD::OPC_FilterValue, 1, 126, 48, 0, // Skip to: 17045
1040/* 4631 */    MCD::OPC_Decode, 184, 11, 44, // Opcode: RLDIC_rec
1041/* 4635 */    MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 4661
1042/* 4640 */    MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
1043/* 4643 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4652
1044/* 4648 */    MCD::OPC_Decode, 185, 11, 45, // Opcode: RLDIMI
1045/* 4652 */    MCD::OPC_FilterValue, 1, 100, 48, 0, // Skip to: 17045
1046/* 4657 */    MCD::OPC_Decode, 186, 11, 45, // Opcode: RLDIMI_rec
1047/* 4661 */    MCD::OPC_FilterValue, 4, 91, 48, 0, // Skip to: 17045
1048/* 4666 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1049/* 4669 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4678
1050/* 4674 */    MCD::OPC_Decode, 171, 11, 46, // Opcode: RLDCL
1051/* 4678 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 4687
1052/* 4683 */    MCD::OPC_Decode, 172, 11, 46, // Opcode: RLDCL_rec
1053/* 4687 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 4696
1054/* 4692 */    MCD::OPC_Decode, 173, 11, 46, // Opcode: RLDCR
1055/* 4696 */    MCD::OPC_FilterValue, 3, 56, 48, 0, // Skip to: 17045
1056/* 4701 */    MCD::OPC_Decode, 174, 11, 46, // Opcode: RLDCR_rec
1057/* 4705 */    MCD::OPC_FilterValue, 31, 161, 23, 0, // Skip to: 10759
1058/* 4710 */    MCD::OPC_ExtractField, 2, 4,  // Inst{5-2} ...
1059/* 4713 */    MCD::OPC_FilterValue, 0, 175, 0, 0, // Skip to: 4893
1060/* 4718 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1061/* 4721 */    MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 4761
1062/* 4726 */    MCD::OPC_ExtractField, 21, 2,  // Inst{22-21} ...
1063/* 4729 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 4745
1064/* 4734 */    MCD::OPC_CheckField, 0, 2, 0, 16, 48, 0, // Skip to: 17045
1065/* 4741 */    MCD::OPC_Decode, 250, 3, 47, // Opcode: CMPW
1066/* 4745 */    MCD::OPC_FilterValue, 1, 7, 48, 0, // Skip to: 17045
1067/* 4750 */    MCD::OPC_CheckField, 0, 2, 0, 0, 48, 0, // Skip to: 17045
1068/* 4757 */    MCD::OPC_Decode, 241, 3, 48, // Opcode: CMPD
1069/* 4761 */    MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 4801
1070/* 4766 */    MCD::OPC_ExtractField, 21, 2,  // Inst{22-21} ...
1071/* 4769 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 4785
1072/* 4774 */    MCD::OPC_CheckField, 0, 2, 0, 232, 47, 0, // Skip to: 17045
1073/* 4781 */    MCD::OPC_Decode, 246, 3, 47, // Opcode: CMPLW
1074/* 4785 */    MCD::OPC_FilterValue, 1, 223, 47, 0, // Skip to: 17045
1075/* 4790 */    MCD::OPC_CheckField, 0, 2, 0, 216, 47, 0, // Skip to: 17045
1076/* 4797 */    MCD::OPC_Decode, 244, 3, 48, // Opcode: CMPLD
1077/* 4801 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4824
1078/* 4806 */    MCD::OPC_CheckField, 11, 7, 0, 200, 47, 0, // Skip to: 17045
1079/* 4813 */    MCD::OPC_CheckField, 0, 2, 0, 193, 47, 0, // Skip to: 17045
1080/* 4820 */    MCD::OPC_Decode, 229, 11, 49, // Opcode: SETB
1081/* 4824 */    MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 4847
1082/* 4829 */    MCD::OPC_CheckField, 22, 1, 0, 177, 47, 0, // Skip to: 17045
1083/* 4836 */    MCD::OPC_CheckField, 0, 2, 0, 170, 47, 0, // Skip to: 17045
1084/* 4843 */    MCD::OPC_Decode, 248, 3, 50, // Opcode: CMPRB
1085/* 4847 */    MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 4870
1086/* 4852 */    MCD::OPC_CheckField, 21, 2, 0, 154, 47, 0, // Skip to: 17045
1087/* 4859 */    MCD::OPC_CheckField, 0, 2, 0, 147, 47, 0, // Skip to: 17045
1088/* 4866 */    MCD::OPC_Decode, 243, 3, 51, // Opcode: CMPEQB
1089/* 4870 */    MCD::OPC_FilterValue, 18, 138, 47, 0, // Skip to: 17045
1090/* 4875 */    MCD::OPC_CheckField, 11, 12, 0, 131, 47, 0, // Skip to: 17045
1091/* 4882 */    MCD::OPC_CheckField, 0, 2, 0, 124, 47, 0, // Skip to: 17045
1092/* 4889 */    MCD::OPC_Decode, 244, 8, 52, // Opcode: MCRXRX
1093/* 4893 */    MCD::OPC_FilterValue, 1, 74, 0, 0, // Skip to: 4972
1094/* 4898 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1095/* 4901 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4924
1096/* 4906 */    MCD::OPC_CheckField, 16, 1, 0, 100, 47, 0, // Skip to: 17045
1097/* 4913 */    MCD::OPC_CheckField, 1, 1, 1, 93, 47, 0, // Skip to: 17045
1098/* 4920 */    MCD::OPC_Decode, 229, 15, 53, // Opcode: WRTEE
1099/* 4924 */    MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 4940
1100/* 4929 */    MCD::OPC_CheckField, 1, 1, 1, 77, 47, 0, // Skip to: 17045
1101/* 4936 */    MCD::OPC_Decode, 230, 15, 54, // Opcode: WRTEEI
1102/* 4940 */    MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 4956
1103/* 4945 */    MCD::OPC_CheckField, 0, 2, 2, 61, 47, 0, // Skip to: 17045
1104/* 4952 */    MCD::OPC_Decode, 250, 8, 55, // Opcode: MFDCR
1105/* 4956 */    MCD::OPC_FilterValue, 14, 52, 47, 0, // Skip to: 17045
1106/* 4961 */    MCD::OPC_CheckField, 0, 2, 2, 45, 47, 0, // Skip to: 17045
1107/* 4968 */    MCD::OPC_Decode, 163, 9, 55, // Opcode: MTDCR
1108/* 4972 */    MCD::OPC_FilterValue, 2, 49, 0, 0, // Skip to: 5026
1109/* 4977 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1110/* 4980 */    MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 5010
1111/* 4985 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1112/* 4988 */    MCD::OPC_FilterValue, 0, 20, 47, 0, // Skip to: 17045
1113/* 4993 */    MCD::OPC_CheckField, 11, 15, 128, 248, 1, 4, 0, 0, // Skip to: 5006
1114/* 5002 */    MCD::OPC_Decode, 184, 13, 0, // Opcode: TRAP
1115/* 5006 */    MCD::OPC_Decode, 188, 13, 56, // Opcode: TW
1116/* 5010 */    MCD::OPC_FilterValue, 2, 254, 46, 0, // Skip to: 17045
1117/* 5015 */    MCD::OPC_CheckField, 0, 2, 0, 247, 46, 0, // Skip to: 17045
1118/* 5022 */    MCD::OPC_Decode, 167, 13, 57, // Opcode: TD
1119/* 5026 */    MCD::OPC_FilterValue, 3, 174, 1, 0, // Skip to: 5461
1120/* 5031 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1121/* 5034 */    MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 5060
1122/* 5039 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1123/* 5042 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5051
1124/* 5047 */    MCD::OPC_Decode, 190, 8, 58, // Opcode: LVSL
1125/* 5051 */    MCD::OPC_FilterValue, 2, 213, 46, 0, // Skip to: 17045
1126/* 5056 */    MCD::OPC_Decode, 187, 8, 58, // Opcode: LVEBX
1127/* 5060 */    MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 5086
1128/* 5065 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1129/* 5068 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5077
1130/* 5073 */    MCD::OPC_Decode, 191, 8, 58, // Opcode: LVSR
1131/* 5077 */    MCD::OPC_FilterValue, 2, 187, 46, 0, // Skip to: 17045
1132/* 5082 */    MCD::OPC_Decode, 188, 8, 58, // Opcode: LVEHX
1133/* 5086 */    MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 5102
1134/* 5091 */    MCD::OPC_CheckField, 0, 2, 2, 171, 46, 0, // Skip to: 17045
1135/* 5098 */    MCD::OPC_Decode, 189, 8, 58, // Opcode: LVEWX
1136/* 5102 */    MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 5118
1137/* 5107 */    MCD::OPC_CheckField, 0, 2, 2, 155, 46, 0, // Skip to: 17045
1138/* 5114 */    MCD::OPC_Decode, 192, 8, 58, // Opcode: LVX
1139/* 5118 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 5134
1140/* 5123 */    MCD::OPC_CheckField, 0, 2, 2, 139, 46, 0, // Skip to: 17045
1141/* 5130 */    MCD::OPC_Decode, 193, 12, 58, // Opcode: STVEBX
1142/* 5134 */    MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 5150
1143/* 5139 */    MCD::OPC_CheckField, 0, 2, 2, 123, 46, 0, // Skip to: 17045
1144/* 5146 */    MCD::OPC_Decode, 194, 12, 58, // Opcode: STVEHX
1145/* 5150 */    MCD::OPC_FilterValue, 6, 28, 0, 0, // Skip to: 5183
1146/* 5155 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1147/* 5158 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5174
1148/* 5163 */    MCD::OPC_CheckField, 25, 1, 0, 99, 46, 0, // Skip to: 17045
1149/* 5170 */    MCD::OPC_Decode, 231, 7, 59, // Opcode: ICBLQ
1150/* 5174 */    MCD::OPC_FilterValue, 2, 90, 46, 0, // Skip to: 17045
1151/* 5179 */    MCD::OPC_Decode, 195, 12, 58, // Opcode: STVEWX
1152/* 5183 */    MCD::OPC_FilterValue, 7, 28, 0, 0, // Skip to: 5216
1153/* 5188 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1154/* 5191 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5207
1155/* 5196 */    MCD::OPC_CheckField, 25, 1, 0, 66, 46, 0, // Skip to: 17045
1156/* 5203 */    MCD::OPC_Decode, 230, 7, 59, // Opcode: ICBLC
1157/* 5207 */    MCD::OPC_FilterValue, 2, 57, 46, 0, // Skip to: 17045
1158/* 5212 */    MCD::OPC_Decode, 196, 12, 58, // Opcode: STVX
1159/* 5216 */    MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 5232
1160/* 5221 */    MCD::OPC_CheckField, 0, 2, 2, 41, 46, 0, // Skip to: 17045
1161/* 5228 */    MCD::OPC_Decode, 193, 8, 58, // Opcode: LVXL
1162/* 5232 */    MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 5255
1163/* 5237 */    MCD::OPC_CheckField, 21, 5, 0, 25, 46, 0, // Skip to: 17045
1164/* 5244 */    MCD::OPC_CheckField, 0, 2, 0, 18, 46, 0, // Skip to: 17045
1165/* 5251 */    MCD::OPC_Decode, 171, 4, 60, // Opcode: DCCCI
1166/* 5255 */    MCD::OPC_FilterValue, 15, 28, 0, 0, // Skip to: 5288
1167/* 5260 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1168/* 5263 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5279
1169/* 5268 */    MCD::OPC_CheckField, 25, 1, 0, 250, 45, 0, // Skip to: 17045
1170/* 5275 */    MCD::OPC_Decode, 233, 7, 59, // Opcode: ICBTLS
1171/* 5279 */    MCD::OPC_FilterValue, 2, 241, 45, 0, // Skip to: 17045
1172/* 5284 */    MCD::OPC_Decode, 197, 12, 58, // Opcode: STVXL
1173/* 5288 */    MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 5304
1174/* 5293 */    MCD::OPC_CheckField, 0, 2, 0, 225, 45, 0, // Skip to: 17045
1175/* 5300 */    MCD::OPC_Decode, 197, 8, 61, // Opcode: LWAT
1176/* 5304 */    MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 5320
1177/* 5309 */    MCD::OPC_CheckField, 0, 2, 0, 209, 45, 0, // Skip to: 17045
1178/* 5316 */    MCD::OPC_Decode, 129, 8, 62, // Opcode: LDAT
1179/* 5320 */    MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 5336
1180/* 5325 */    MCD::OPC_CheckField, 0, 2, 0, 193, 45, 0, // Skip to: 17045
1181/* 5332 */    MCD::OPC_Decode, 200, 12, 61, // Opcode: STWAT
1182/* 5336 */    MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 5352
1183/* 5341 */    MCD::OPC_CheckField, 0, 2, 0, 177, 45, 0, // Skip to: 17045
1184/* 5348 */    MCD::OPC_Decode, 156, 12, 62, // Opcode: STDAT
1185/* 5352 */    MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 5375
1186/* 5357 */    MCD::OPC_CheckField, 22, 4, 0, 161, 45, 0, // Skip to: 17045
1187/* 5364 */    MCD::OPC_CheckField, 0, 2, 0, 154, 45, 0, // Skip to: 17045
1188/* 5371 */    MCD::OPC_Decode, 137, 4, 63, // Opcode: CP_COPY
1189/* 5375 */    MCD::OPC_FilterValue, 26, 18, 0, 0, // Skip to: 5398
1190/* 5380 */    MCD::OPC_CheckField, 11, 15, 0, 138, 45, 0, // Skip to: 17045
1191/* 5387 */    MCD::OPC_CheckField, 0, 2, 0, 131, 45, 0, // Skip to: 17045
1192/* 5394 */    MCD::OPC_Decode, 136, 4, 0, // Opcode: CP_ABORT
1193/* 5398 */    MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 5438
1194/* 5403 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1195/* 5406 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5422
1196/* 5411 */    MCD::OPC_CheckField, 22, 4, 0, 107, 45, 0, // Skip to: 17045
1197/* 5418 */    MCD::OPC_Decode, 139, 4, 63, // Opcode: CP_PASTE
1198/* 5422 */    MCD::OPC_FilterValue, 1, 98, 45, 0, // Skip to: 17045
1199/* 5427 */    MCD::OPC_CheckField, 22, 4, 0, 91, 45, 0, // Skip to: 17045
1200/* 5434 */    MCD::OPC_Decode, 142, 4, 63, // Opcode: CP_PASTE_rec
1201/* 5438 */    MCD::OPC_FilterValue, 30, 82, 45, 0, // Skip to: 17045
1202/* 5443 */    MCD::OPC_CheckField, 21, 5, 0, 75, 45, 0, // Skip to: 17045
1203/* 5450 */    MCD::OPC_CheckField, 0, 2, 0, 68, 45, 0, // Skip to: 17045
1204/* 5457 */    MCD::OPC_Decode, 234, 7, 60, // Opcode: ICCCI
1205/* 5461 */    MCD::OPC_FilterValue, 4, 207, 2, 0, // Skip to: 6185
1206/* 5466 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1207/* 5469 */    MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 5513
1208/* 5474 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1209/* 5477 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5486
1210/* 5482 */    MCD::OPC_Decode, 236, 12, 64, // Opcode: SUBFC
1211/* 5486 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 5495
1212/* 5491 */    MCD::OPC_Decode, 243, 12, 64, // Opcode: SUBFC_rec
1213/* 5495 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5504
1214/* 5500 */    MCD::OPC_Decode, 194, 9, 65, // Opcode: MULHDU
1215/* 5504 */    MCD::OPC_FilterValue, 3, 16, 45, 0, // Skip to: 17045
1216/* 5509 */    MCD::OPC_Decode, 195, 9, 65, // Opcode: MULHDU_rec
1217/* 5513 */    MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 5539
1218/* 5518 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1219/* 5521 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5530
1220/* 5526 */    MCD::OPC_Decode, 231, 12, 64, // Opcode: SUBF
1221/* 5530 */    MCD::OPC_FilterValue, 1, 246, 44, 0, // Skip to: 17045
1222/* 5535 */    MCD::OPC_Decode, 144, 13, 64, // Opcode: SUBF_rec
1223/* 5539 */    MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 5565
1224/* 5544 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1225/* 5547 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5556
1226/* 5552 */    MCD::OPC_Decode, 193, 9, 65, // Opcode: MULHD
1227/* 5556 */    MCD::OPC_FilterValue, 3, 220, 44, 0, // Skip to: 17045
1228/* 5561 */    MCD::OPC_Decode, 196, 9, 65, // Opcode: MULHD_rec
1229/* 5565 */    MCD::OPC_FilterValue, 3, 35, 0, 0, // Skip to: 5605
1230/* 5570 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1231/* 5573 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5589
1232/* 5578 */    MCD::OPC_CheckField, 11, 5, 0, 196, 44, 0, // Skip to: 17045
1233/* 5585 */    MCD::OPC_Decode, 219, 9, 66, // Opcode: NEG
1234/* 5589 */    MCD::OPC_FilterValue, 1, 187, 44, 0, // Skip to: 17045
1235/* 5594 */    MCD::OPC_CheckField, 11, 5, 0, 180, 44, 0, // Skip to: 17045
1236/* 5601 */    MCD::OPC_Decode, 226, 9, 66, // Opcode: NEG_rec
1237/* 5605 */    MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 5631
1238/* 5610 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1239/* 5613 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5622
1240/* 5618 */    MCD::OPC_Decode, 244, 12, 64, // Opcode: SUBFE
1241/* 5622 */    MCD::OPC_FilterValue, 1, 154, 44, 0, // Skip to: 17045
1242/* 5627 */    MCD::OPC_Decode, 251, 12, 64, // Opcode: SUBFE_rec
1243/* 5631 */    MCD::OPC_FilterValue, 6, 35, 0, 0, // Skip to: 5671
1244/* 5636 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1245/* 5639 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5655
1246/* 5644 */    MCD::OPC_CheckField, 11, 5, 0, 130, 44, 0, // Skip to: 17045
1247/* 5651 */    MCD::OPC_Decode, 136, 13, 66, // Opcode: SUBFZE
1248/* 5655 */    MCD::OPC_FilterValue, 1, 121, 44, 0, // Skip to: 17045
1249/* 5660 */    MCD::OPC_CheckField, 11, 5, 0, 114, 44, 0, // Skip to: 17045
1250/* 5667 */    MCD::OPC_Decode, 143, 13, 66, // Opcode: SUBFZE_rec
1251/* 5671 */    MCD::OPC_FilterValue, 7, 53, 0, 0, // Skip to: 5729
1252/* 5676 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1253/* 5679 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5695
1254/* 5684 */    MCD::OPC_CheckField, 11, 5, 0, 90, 44, 0, // Skip to: 17045
1255/* 5691 */    MCD::OPC_Decode, 254, 12, 66, // Opcode: SUBFME
1256/* 5695 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 5711
1257/* 5700 */    MCD::OPC_CheckField, 11, 5, 0, 74, 44, 0, // Skip to: 17045
1258/* 5707 */    MCD::OPC_Decode, 133, 13, 66, // Opcode: SUBFME_rec
1259/* 5711 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5720
1260/* 5716 */    MCD::OPC_Decode, 201, 9, 65, // Opcode: MULLD
1261/* 5720 */    MCD::OPC_FilterValue, 3, 56, 44, 0, // Skip to: 17045
1262/* 5725 */    MCD::OPC_Decode, 204, 9, 65, // Opcode: MULLD_rec
1263/* 5729 */    MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 5745
1264/* 5734 */    MCD::OPC_CheckField, 0, 2, 2, 40, 44, 0, // Skip to: 17045
1265/* 5741 */    MCD::OPC_Decode, 153, 9, 65, // Opcode: MODUD
1266/* 5745 */    MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 5771
1267/* 5750 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1268/* 5753 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5762
1269/* 5758 */    MCD::OPC_Decode, 176, 4, 65, // Opcode: DIVDEU
1270/* 5762 */    MCD::OPC_FilterValue, 3, 14, 44, 0, // Skip to: 17045
1271/* 5767 */    MCD::OPC_Decode, 179, 4, 65, // Opcode: DIVDEU_rec
1272/* 5771 */    MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 5797
1273/* 5776 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1274/* 5779 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5788
1275/* 5784 */    MCD::OPC_Decode, 173, 4, 65, // Opcode: DIVDE
1276/* 5788 */    MCD::OPC_FilterValue, 3, 244, 43, 0, // Skip to: 17045
1277/* 5793 */    MCD::OPC_Decode, 180, 4, 65, // Opcode: DIVDE_rec
1278/* 5797 */    MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 5823
1279/* 5802 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1280/* 5805 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5814
1281/* 5810 */    MCD::OPC_Decode, 183, 4, 65, // Opcode: DIVDU
1282/* 5814 */    MCD::OPC_FilterValue, 3, 218, 43, 0, // Skip to: 17045
1283/* 5819 */    MCD::OPC_Decode, 186, 4, 65, // Opcode: DIVDU_rec
1284/* 5823 */    MCD::OPC_FilterValue, 15, 21, 0, 0, // Skip to: 5849
1285/* 5828 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1286/* 5831 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5840
1287/* 5836 */    MCD::OPC_Decode, 172, 4, 65, // Opcode: DIVD
1288/* 5840 */    MCD::OPC_FilterValue, 3, 192, 43, 0, // Skip to: 17045
1289/* 5845 */    MCD::OPC_Decode, 187, 4, 65, // Opcode: DIVD_rec
1290/* 5849 */    MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 5875
1291/* 5854 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1292/* 5857 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5866
1293/* 5862 */    MCD::OPC_Decode, 241, 12, 64, // Opcode: SUBFCO
1294/* 5866 */    MCD::OPC_FilterValue, 1, 166, 43, 0, // Skip to: 17045
1295/* 5871 */    MCD::OPC_Decode, 242, 12, 64, // Opcode: SUBFCO_rec
1296/* 5875 */    MCD::OPC_FilterValue, 17, 21, 0, 0, // Skip to: 5901
1297/* 5880 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1298/* 5883 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5892
1299/* 5888 */    MCD::OPC_Decode, 134, 13, 64, // Opcode: SUBFO
1300/* 5892 */    MCD::OPC_FilterValue, 1, 140, 43, 0, // Skip to: 17045
1301/* 5897 */    MCD::OPC_Decode, 135, 13, 64, // Opcode: SUBFO_rec
1302/* 5901 */    MCD::OPC_FilterValue, 19, 35, 0, 0, // Skip to: 5941
1303/* 5906 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1304/* 5909 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5925
1305/* 5914 */    MCD::OPC_CheckField, 11, 5, 0, 116, 43, 0, // Skip to: 17045
1306/* 5921 */    MCD::OPC_Decode, 224, 9, 66, // Opcode: NEGO
1307/* 5925 */    MCD::OPC_FilterValue, 1, 107, 43, 0, // Skip to: 17045
1308/* 5930 */    MCD::OPC_CheckField, 11, 5, 0, 100, 43, 0, // Skip to: 17045
1309/* 5937 */    MCD::OPC_Decode, 225, 9, 66, // Opcode: NEGO_rec
1310/* 5941 */    MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 5967
1311/* 5946 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1312/* 5949 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5958
1313/* 5954 */    MCD::OPC_Decode, 249, 12, 64, // Opcode: SUBFEO
1314/* 5958 */    MCD::OPC_FilterValue, 1, 74, 43, 0, // Skip to: 17045
1315/* 5963 */    MCD::OPC_Decode, 250, 12, 64, // Opcode: SUBFEO_rec
1316/* 5967 */    MCD::OPC_FilterValue, 22, 35, 0, 0, // Skip to: 6007
1317/* 5972 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1318/* 5975 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5991
1319/* 5980 */    MCD::OPC_CheckField, 11, 5, 0, 50, 43, 0, // Skip to: 17045
1320/* 5987 */    MCD::OPC_Decode, 141, 13, 66, // Opcode: SUBFZEO
1321/* 5991 */    MCD::OPC_FilterValue, 1, 41, 43, 0, // Skip to: 17045
1322/* 5996 */    MCD::OPC_CheckField, 11, 5, 0, 34, 43, 0, // Skip to: 17045
1323/* 6003 */    MCD::OPC_Decode, 142, 13, 66, // Opcode: SUBFZEO_rec
1324/* 6007 */    MCD::OPC_FilterValue, 23, 53, 0, 0, // Skip to: 6065
1325/* 6012 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1326/* 6015 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6031
1327/* 6020 */    MCD::OPC_CheckField, 11, 5, 0, 10, 43, 0, // Skip to: 17045
1328/* 6027 */    MCD::OPC_Decode, 131, 13, 66, // Opcode: SUBFMEO
1329/* 6031 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6047
1330/* 6036 */    MCD::OPC_CheckField, 11, 5, 0, 250, 42, 0, // Skip to: 17045
1331/* 6043 */    MCD::OPC_Decode, 132, 13, 66, // Opcode: SUBFMEO_rec
1332/* 6047 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6056
1333/* 6052 */    MCD::OPC_Decode, 202, 9, 65, // Opcode: MULLDO
1334/* 6056 */    MCD::OPC_FilterValue, 3, 232, 42, 0, // Skip to: 17045
1335/* 6061 */    MCD::OPC_Decode, 203, 9, 65, // Opcode: MULLDO_rec
1336/* 6065 */    MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 6081
1337/* 6070 */    MCD::OPC_CheckField, 0, 2, 2, 216, 42, 0, // Skip to: 17045
1338/* 6077 */    MCD::OPC_Decode, 151, 9, 65, // Opcode: MODSD
1339/* 6081 */    MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 6107
1340/* 6086 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1341/* 6089 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6098
1342/* 6094 */    MCD::OPC_Decode, 177, 4, 65, // Opcode: DIVDEUO
1343/* 6098 */    MCD::OPC_FilterValue, 3, 190, 42, 0, // Skip to: 17045
1344/* 6103 */    MCD::OPC_Decode, 178, 4, 65, // Opcode: DIVDEUO_rec
1345/* 6107 */    MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 6133
1346/* 6112 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1347/* 6115 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6124
1348/* 6120 */    MCD::OPC_Decode, 174, 4, 65, // Opcode: DIVDEO
1349/* 6124 */    MCD::OPC_FilterValue, 3, 164, 42, 0, // Skip to: 17045
1350/* 6129 */    MCD::OPC_Decode, 175, 4, 65, // Opcode: DIVDEO_rec
1351/* 6133 */    MCD::OPC_FilterValue, 30, 21, 0, 0, // Skip to: 6159
1352/* 6138 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1353/* 6141 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6150
1354/* 6146 */    MCD::OPC_Decode, 184, 4, 65, // Opcode: DIVDUO
1355/* 6150 */    MCD::OPC_FilterValue, 3, 138, 42, 0, // Skip to: 17045
1356/* 6155 */    MCD::OPC_Decode, 185, 4, 65, // Opcode: DIVDUO_rec
1357/* 6159 */    MCD::OPC_FilterValue, 31, 129, 42, 0, // Skip to: 17045
1358/* 6164 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1359/* 6167 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6176
1360/* 6172 */    MCD::OPC_Decode, 181, 4, 65, // Opcode: DIVDO
1361/* 6176 */    MCD::OPC_FilterValue, 3, 112, 42, 0, // Skip to: 17045
1362/* 6181 */    MCD::OPC_Decode, 182, 4, 65, // Opcode: DIVDO_rec
1363/* 6185 */    MCD::OPC_FilterValue, 5, 113, 2, 0, // Skip to: 6815
1364/* 6190 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1365/* 6193 */    MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 6237
1366/* 6198 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1367/* 6201 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6210
1368/* 6206 */    MCD::OPC_Decode, 137, 2, 64, // Opcode: ADDC
1369/* 6210 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6219
1370/* 6215 */    MCD::OPC_Decode, 144, 2, 64, // Opcode: ADDC_rec
1371/* 6219 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6228
1372/* 6224 */    MCD::OPC_Decode, 198, 9, 64, // Opcode: MULHWU
1373/* 6228 */    MCD::OPC_FilterValue, 3, 60, 42, 0, // Skip to: 17045
1374/* 6233 */    MCD::OPC_Decode, 199, 9, 64, // Opcode: MULHWU_rec
1375/* 6237 */    MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 6263
1376/* 6242 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1377/* 6245 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6254
1378/* 6250 */    MCD::OPC_Decode, 197, 9, 64, // Opcode: MULHW
1379/* 6254 */    MCD::OPC_FilterValue, 3, 34, 42, 0, // Skip to: 17045
1380/* 6259 */    MCD::OPC_Decode, 200, 9, 64, // Opcode: MULHW_rec
1381/* 6263 */    MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 6289
1382/* 6268 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1383/* 6271 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6280
1384/* 6276 */    MCD::OPC_Decode, 145, 2, 64, // Opcode: ADDE
1385/* 6280 */    MCD::OPC_FilterValue, 1, 8, 42, 0, // Skip to: 17045
1386/* 6285 */    MCD::OPC_Decode, 152, 2, 64, // Opcode: ADDE_rec
1387/* 6289 */    MCD::OPC_FilterValue, 6, 35, 0, 0, // Skip to: 6329
1388/* 6294 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1389/* 6297 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6313
1390/* 6302 */    MCD::OPC_CheckField, 11, 5, 0, 240, 41, 0, // Skip to: 17045
1391/* 6309 */    MCD::OPC_Decode, 187, 2, 66, // Opcode: ADDZE
1392/* 6313 */    MCD::OPC_FilterValue, 1, 231, 41, 0, // Skip to: 17045
1393/* 6318 */    MCD::OPC_CheckField, 11, 5, 0, 224, 41, 0, // Skip to: 17045
1394/* 6325 */    MCD::OPC_Decode, 194, 2, 66, // Opcode: ADDZE_rec
1395/* 6329 */    MCD::OPC_FilterValue, 7, 53, 0, 0, // Skip to: 6387
1396/* 6334 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1397/* 6337 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6353
1398/* 6342 */    MCD::OPC_CheckField, 11, 5, 0, 200, 41, 0, // Skip to: 17045
1399/* 6349 */    MCD::OPC_Decode, 178, 2, 66, // Opcode: ADDME
1400/* 6353 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6369
1401/* 6358 */    MCD::OPC_CheckField, 11, 5, 0, 184, 41, 0, // Skip to: 17045
1402/* 6365 */    MCD::OPC_Decode, 185, 2, 66, // Opcode: ADDME_rec
1403/* 6369 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6378
1404/* 6374 */    MCD::OPC_Decode, 207, 9, 64, // Opcode: MULLW
1405/* 6378 */    MCD::OPC_FilterValue, 3, 166, 41, 0, // Skip to: 17045
1406/* 6383 */    MCD::OPC_Decode, 210, 9, 64, // Opcode: MULLW_rec
1407/* 6387 */    MCD::OPC_FilterValue, 8, 30, 0, 0, // Skip to: 6422
1408/* 6392 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1409/* 6395 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6404
1410/* 6400 */    MCD::OPC_Decode, 254, 1, 64, // Opcode: ADD4
1411/* 6404 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6413
1412/* 6409 */    MCD::OPC_Decode, 130, 2, 64, // Opcode: ADD4_rec
1413/* 6413 */    MCD::OPC_FilterValue, 2, 131, 41, 0, // Skip to: 17045
1414/* 6418 */    MCD::OPC_Decode, 154, 9, 64, // Opcode: MODUW
1415/* 6422 */    MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 6448
1416/* 6427 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1417/* 6430 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6439
1418/* 6435 */    MCD::OPC_Decode, 192, 4, 64, // Opcode: DIVWEU
1419/* 6439 */    MCD::OPC_FilterValue, 3, 105, 41, 0, // Skip to: 17045
1420/* 6444 */    MCD::OPC_Decode, 195, 4, 64, // Opcode: DIVWEU_rec
1421/* 6448 */    MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 6474
1422/* 6453 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1423/* 6456 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6465
1424/* 6461 */    MCD::OPC_Decode, 189, 4, 64, // Opcode: DIVWE
1425/* 6465 */    MCD::OPC_FilterValue, 3, 79, 41, 0, // Skip to: 17045
1426/* 6470 */    MCD::OPC_Decode, 196, 4, 64, // Opcode: DIVWE_rec
1427/* 6474 */    MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 6500
1428/* 6479 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1429/* 6482 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6491
1430/* 6487 */    MCD::OPC_Decode, 199, 4, 64, // Opcode: DIVWU
1431/* 6491 */    MCD::OPC_FilterValue, 3, 53, 41, 0, // Skip to: 17045
1432/* 6496 */    MCD::OPC_Decode, 202, 4, 64, // Opcode: DIVWU_rec
1433/* 6500 */    MCD::OPC_FilterValue, 15, 21, 0, 0, // Skip to: 6526
1434/* 6505 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1435/* 6508 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6517
1436/* 6513 */    MCD::OPC_Decode, 188, 4, 64, // Opcode: DIVW
1437/* 6517 */    MCD::OPC_FilterValue, 3, 27, 41, 0, // Skip to: 17045
1438/* 6522 */    MCD::OPC_Decode, 203, 4, 64, // Opcode: DIVW_rec
1439/* 6526 */    MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 6552
1440/* 6531 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1441/* 6534 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6543
1442/* 6539 */    MCD::OPC_Decode, 142, 2, 64, // Opcode: ADDCO
1443/* 6543 */    MCD::OPC_FilterValue, 1, 1, 41, 0, // Skip to: 17045
1444/* 6548 */    MCD::OPC_Decode, 143, 2, 64, // Opcode: ADDCO_rec
1445/* 6552 */    MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 6578
1446/* 6557 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1447/* 6560 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6569
1448/* 6565 */    MCD::OPC_Decode, 150, 2, 64, // Opcode: ADDEO
1449/* 6569 */    MCD::OPC_FilterValue, 1, 231, 40, 0, // Skip to: 17045
1450/* 6574 */    MCD::OPC_Decode, 151, 2, 64, // Opcode: ADDEO_rec
1451/* 6578 */    MCD::OPC_FilterValue, 22, 35, 0, 0, // Skip to: 6618
1452/* 6583 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1453/* 6586 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6602
1454/* 6591 */    MCD::OPC_CheckField, 11, 5, 0, 207, 40, 0, // Skip to: 17045
1455/* 6598 */    MCD::OPC_Decode, 192, 2, 66, // Opcode: ADDZEO
1456/* 6602 */    MCD::OPC_FilterValue, 1, 198, 40, 0, // Skip to: 17045
1457/* 6607 */    MCD::OPC_CheckField, 11, 5, 0, 191, 40, 0, // Skip to: 17045
1458/* 6614 */    MCD::OPC_Decode, 193, 2, 66, // Opcode: ADDZEO_rec
1459/* 6618 */    MCD::OPC_FilterValue, 23, 53, 0, 0, // Skip to: 6676
1460/* 6623 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1461/* 6626 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6642
1462/* 6631 */    MCD::OPC_CheckField, 11, 5, 0, 167, 40, 0, // Skip to: 17045
1463/* 6638 */    MCD::OPC_Decode, 183, 2, 66, // Opcode: ADDMEO
1464/* 6642 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6658
1465/* 6647 */    MCD::OPC_CheckField, 11, 5, 0, 151, 40, 0, // Skip to: 17045
1466/* 6654 */    MCD::OPC_Decode, 184, 2, 66, // Opcode: ADDMEO_rec
1467/* 6658 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6667
1468/* 6663 */    MCD::OPC_Decode, 208, 9, 64, // Opcode: MULLWO
1469/* 6667 */    MCD::OPC_FilterValue, 3, 133, 40, 0, // Skip to: 17045
1470/* 6672 */    MCD::OPC_Decode, 209, 9, 64, // Opcode: MULLWO_rec
1471/* 6676 */    MCD::OPC_FilterValue, 24, 30, 0, 0, // Skip to: 6711
1472/* 6681 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1473/* 6684 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6693
1474/* 6689 */    MCD::OPC_Decode, 255, 1, 64, // Opcode: ADD4O
1475/* 6693 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6702
1476/* 6698 */    MCD::OPC_Decode, 128, 2, 64, // Opcode: ADD4O_rec
1477/* 6702 */    MCD::OPC_FilterValue, 2, 98, 40, 0, // Skip to: 17045
1478/* 6707 */    MCD::OPC_Decode, 152, 9, 64, // Opcode: MODSW
1479/* 6711 */    MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 6737
1480/* 6716 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1481/* 6719 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6728
1482/* 6724 */    MCD::OPC_Decode, 193, 4, 64, // Opcode: DIVWEUO
1483/* 6728 */    MCD::OPC_FilterValue, 3, 72, 40, 0, // Skip to: 17045
1484/* 6733 */    MCD::OPC_Decode, 194, 4, 64, // Opcode: DIVWEUO_rec
1485/* 6737 */    MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 6763
1486/* 6742 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1487/* 6745 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6754
1488/* 6750 */    MCD::OPC_Decode, 190, 4, 64, // Opcode: DIVWEO
1489/* 6754 */    MCD::OPC_FilterValue, 3, 46, 40, 0, // Skip to: 17045
1490/* 6759 */    MCD::OPC_Decode, 191, 4, 64, // Opcode: DIVWEO_rec
1491/* 6763 */    MCD::OPC_FilterValue, 30, 21, 0, 0, // Skip to: 6789
1492/* 6768 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1493/* 6771 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6780
1494/* 6776 */    MCD::OPC_Decode, 200, 4, 64, // Opcode: DIVWUO
1495/* 6780 */    MCD::OPC_FilterValue, 3, 20, 40, 0, // Skip to: 17045
1496/* 6785 */    MCD::OPC_Decode, 201, 4, 64, // Opcode: DIVWUO_rec
1497/* 6789 */    MCD::OPC_FilterValue, 31, 11, 40, 0, // Skip to: 17045
1498/* 6794 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1499/* 6797 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6806
1500/* 6802 */    MCD::OPC_Decode, 197, 4, 64, // Opcode: DIVWO
1501/* 6806 */    MCD::OPC_FilterValue, 3, 250, 39, 0, // Skip to: 17045
1502/* 6811 */    MCD::OPC_Decode, 198, 4, 64, // Opcode: DIVWO_rec
1503/* 6815 */    MCD::OPC_FilterValue, 6, 143, 1, 0, // Skip to: 7219
1504/* 6820 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1505/* 6823 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6839
1506/* 6828 */    MCD::OPC_CheckField, 1, 1, 0, 226, 39, 0, // Skip to: 17045
1507/* 6835 */    MCD::OPC_Decode, 224, 8, 67, // Opcode: LXSIWZX
1508/* 6839 */    MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 6855
1509/* 6844 */    MCD::OPC_CheckField, 1, 1, 0, 210, 39, 0, // Skip to: 17045
1510/* 6851 */    MCD::OPC_Decode, 223, 8, 67, // Opcode: LXSIWAX
1511/* 6855 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 6871
1512/* 6860 */    MCD::OPC_CheckField, 1, 1, 0, 194, 39, 0, // Skip to: 17045
1513/* 6867 */    MCD::OPC_Decode, 220, 12, 67, // Opcode: STXSIWX
1514/* 6871 */    MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 6897
1515/* 6876 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1516/* 6879 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6888
1517/* 6884 */    MCD::OPC_Decode, 236, 8, 68, // Opcode: LXVX
1518/* 6888 */    MCD::OPC_FilterValue, 1, 168, 39, 0, // Skip to: 17045
1519/* 6893 */    MCD::OPC_Decode, 232, 8, 69, // Opcode: LXVL
1520/* 6897 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 6913
1521/* 6902 */    MCD::OPC_CheckField, 1, 1, 1, 152, 39, 0, // Skip to: 17045
1522/* 6909 */    MCD::OPC_Decode, 233, 8, 69, // Opcode: LXVLL
1523/* 6913 */    MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 6929
1524/* 6918 */    MCD::OPC_CheckField, 1, 1, 0, 136, 39, 0, // Skip to: 17045
1525/* 6925 */    MCD::OPC_Decode, 230, 8, 68, // Opcode: LXVDSX
1526/* 6929 */    MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 6945
1527/* 6934 */    MCD::OPC_CheckField, 1, 1, 0, 120, 39, 0, // Skip to: 17045
1528/* 6941 */    MCD::OPC_Decode, 235, 8, 68, // Opcode: LXVWSX
1529/* 6945 */    MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 6971
1530/* 6950 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1531/* 6953 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6962
1532/* 6958 */    MCD::OPC_Decode, 230, 12, 68, // Opcode: STXVX
1533/* 6962 */    MCD::OPC_FilterValue, 1, 94, 39, 0, // Skip to: 17045
1534/* 6967 */    MCD::OPC_Decode, 227, 12, 69, // Opcode: STXVL
1535/* 6971 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 6987
1536/* 6976 */    MCD::OPC_CheckField, 1, 1, 1, 78, 39, 0, // Skip to: 17045
1537/* 6983 */    MCD::OPC_Decode, 228, 12, 69, // Opcode: STXVLL
1538/* 6987 */    MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 7003
1539/* 6992 */    MCD::OPC_CheckField, 1, 1, 0, 62, 39, 0, // Skip to: 17045
1540/* 6999 */    MCD::OPC_Decode, 226, 8, 70, // Opcode: LXSSPX
1541/* 7003 */    MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 7019
1542/* 7008 */    MCD::OPC_CheckField, 1, 1, 0, 46, 39, 0, // Skip to: 17045
1543/* 7015 */    MCD::OPC_Decode, 220, 8, 67, // Opcode: LXSDX
1544/* 7019 */    MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 7035
1545/* 7024 */    MCD::OPC_CheckField, 1, 1, 0, 30, 39, 0, // Skip to: 17045
1546/* 7031 */    MCD::OPC_Decode, 222, 12, 70, // Opcode: STXSSPX
1547/* 7035 */    MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 7051
1548/* 7040 */    MCD::OPC_CheckField, 1, 1, 0, 14, 39, 0, // Skip to: 17045
1549/* 7047 */    MCD::OPC_Decode, 215, 12, 67, // Opcode: STXSDX
1550/* 7051 */    MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 7077
1551/* 7056 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1552/* 7059 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7068
1553/* 7064 */    MCD::OPC_Decode, 234, 8, 68, // Opcode: LXVW4X
1554/* 7068 */    MCD::OPC_FilterValue, 1, 244, 38, 0, // Skip to: 17045
1555/* 7073 */    MCD::OPC_Decode, 221, 8, 67, // Opcode: LXSIBZX
1556/* 7077 */    MCD::OPC_FilterValue, 25, 21, 0, 0, // Skip to: 7103
1557/* 7082 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1558/* 7085 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7094
1559/* 7090 */    MCD::OPC_Decode, 231, 8, 68, // Opcode: LXVH8X
1560/* 7094 */    MCD::OPC_FilterValue, 1, 218, 38, 0, // Skip to: 17045
1561/* 7099 */    MCD::OPC_Decode, 222, 8, 67, // Opcode: LXSIHZX
1562/* 7103 */    MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 7119
1563/* 7108 */    MCD::OPC_CheckField, 1, 1, 0, 202, 38, 0, // Skip to: 17045
1564/* 7115 */    MCD::OPC_Decode, 229, 8, 68, // Opcode: LXVD2X
1565/* 7119 */    MCD::OPC_FilterValue, 27, 11, 0, 0, // Skip to: 7135
1566/* 7124 */    MCD::OPC_CheckField, 1, 1, 0, 186, 38, 0, // Skip to: 17045
1567/* 7131 */    MCD::OPC_Decode, 228, 8, 68, // Opcode: LXVB16X
1568/* 7135 */    MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 7161
1569/* 7140 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1570/* 7143 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7152
1571/* 7148 */    MCD::OPC_Decode, 229, 12, 68, // Opcode: STXVW4X
1572/* 7152 */    MCD::OPC_FilterValue, 1, 160, 38, 0, // Skip to: 17045
1573/* 7157 */    MCD::OPC_Decode, 216, 12, 67, // Opcode: STXSIBX
1574/* 7161 */    MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 7187
1575/* 7166 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1576/* 7169 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7178
1577/* 7174 */    MCD::OPC_Decode, 226, 12, 68, // Opcode: STXVH8X
1578/* 7178 */    MCD::OPC_FilterValue, 1, 134, 38, 0, // Skip to: 17045
1579/* 7183 */    MCD::OPC_Decode, 218, 12, 67, // Opcode: STXSIHX
1580/* 7187 */    MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 7203
1581/* 7192 */    MCD::OPC_CheckField, 1, 1, 0, 118, 38, 0, // Skip to: 17045
1582/* 7199 */    MCD::OPC_Decode, 225, 12, 68, // Opcode: STXVD2X
1583/* 7203 */    MCD::OPC_FilterValue, 31, 109, 38, 0, // Skip to: 17045
1584/* 7208 */    MCD::OPC_CheckField, 1, 1, 0, 102, 38, 0, // Skip to: 17045
1585/* 7215 */    MCD::OPC_Decode, 224, 12, 68, // Opcode: STXVB16X
1586/* 7219 */    MCD::OPC_FilterValue, 7, 247, 0, 0, // Skip to: 7471
1587/* 7224 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1588/* 7227 */    MCD::OPC_FilterValue, 0, 62, 0, 0, // Skip to: 7294
1589/* 7232 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1590/* 7235 */    MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 7244
1591/* 7240 */    MCD::OPC_Decode, 245, 8, 71, // Opcode: MFBHRBE
1592/* 7244 */    MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7253
1593/* 7249 */    MCD::OPC_Decode, 136, 9, 55, // Opcode: MFPMR
1594/* 7253 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 7269
1595/* 7258 */    MCD::OPC_CheckField, 11, 15, 0, 52, 38, 0, // Skip to: 17045
1596/* 7265 */    MCD::OPC_Decode, 238, 3, 0, // Opcode: CLRBHRB
1597/* 7269 */    MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 7278
1598/* 7274 */    MCD::OPC_Decode, 177, 9, 72, // Opcode: MTPMR
1599/* 7278 */    MCD::OPC_FilterValue, 22, 34, 38, 0, // Skip to: 17045
1600/* 7283 */    MCD::OPC_CheckField, 11, 12, 0, 27, 38, 0, // Skip to: 17045
1601/* 7290 */    MCD::OPC_Decode, 159, 13, 52, // Opcode: TCHECK
1602/* 7294 */    MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 7462
1603/* 7299 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1604/* 7302 */    MCD::OPC_FilterValue, 20, 18, 0, 0, // Skip to: 7325
1605/* 7307 */    MCD::OPC_CheckField, 22, 4, 0, 3, 38, 0, // Skip to: 17045
1606/* 7314 */    MCD::OPC_CheckField, 11, 10, 0, 252, 37, 0, // Skip to: 17045
1607/* 7321 */    MCD::OPC_Decode, 157, 13, 73, // Opcode: TBEGIN
1608/* 7325 */    MCD::OPC_FilterValue, 21, 11, 0, 0, // Skip to: 7341
1609/* 7330 */    MCD::OPC_CheckField, 11, 14, 0, 236, 37, 0, // Skip to: 17045
1610/* 7337 */    MCD::OPC_Decode, 169, 13, 74, // Opcode: TEND
1611/* 7341 */    MCD::OPC_FilterValue, 23, 18, 0, 0, // Skip to: 7364
1612/* 7346 */    MCD::OPC_CheckField, 22, 3, 0, 220, 37, 0, // Skip to: 17045
1613/* 7353 */    MCD::OPC_CheckField, 11, 10, 0, 213, 37, 0, // Skip to: 17045
1614/* 7360 */    MCD::OPC_Decode, 187, 13, 73, // Opcode: TSR
1615/* 7364 */    MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 7373
1616/* 7369 */    MCD::OPC_Decode, 149, 13, 56, // Opcode: TABORTWC
1617/* 7373 */    MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 7382
1618/* 7378 */    MCD::OPC_Decode, 147, 13, 56, // Opcode: TABORTDC
1619/* 7382 */    MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 7391
1620/* 7387 */    MCD::OPC_Decode, 150, 13, 75, // Opcode: TABORTWCI
1621/* 7391 */    MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 7400
1622/* 7396 */    MCD::OPC_Decode, 148, 13, 75, // Opcode: TABORTDCI
1623/* 7400 */    MCD::OPC_FilterValue, 28, 18, 0, 0, // Skip to: 7423
1624/* 7405 */    MCD::OPC_CheckField, 21, 5, 0, 161, 37, 0, // Skip to: 17045
1625/* 7412 */    MCD::OPC_CheckField, 11, 5, 0, 154, 37, 0, // Skip to: 17045
1626/* 7419 */    MCD::OPC_Decode, 146, 13, 76, // Opcode: TABORT
1627/* 7423 */    MCD::OPC_FilterValue, 29, 18, 0, 0, // Skip to: 7446
1628/* 7428 */    MCD::OPC_CheckField, 21, 5, 0, 138, 37, 0, // Skip to: 17045
1629/* 7435 */    MCD::OPC_CheckField, 11, 5, 0, 131, 37, 0, // Skip to: 17045
1630/* 7442 */    MCD::OPC_Decode, 186, 13, 76, // Opcode: TRECLAIM
1631/* 7446 */    MCD::OPC_FilterValue, 31, 122, 37, 0, // Skip to: 17045
1632/* 7451 */    MCD::OPC_CheckField, 11, 15, 0, 115, 37, 0, // Skip to: 17045
1633/* 7458 */    MCD::OPC_Decode, 185, 13, 0, // Opcode: TRECHKPT
1634/* 7462 */    MCD::OPC_FilterValue, 2, 106, 37, 0, // Skip to: 17045
1635/* 7467 */    MCD::OPC_Decode, 235, 7, 77, // Opcode: ISEL
1636/* 7471 */    MCD::OPC_FilterValue, 8, 49, 0, 0, // Skip to: 7525
1637/* 7476 */    MCD::OPC_ExtractField, 20, 1,  // Inst{20} ...
1638/* 7479 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7502
1639/* 7484 */    MCD::OPC_CheckField, 6, 6, 4, 82, 37, 0, // Skip to: 17045
1640/* 7491 */    MCD::OPC_CheckField, 0, 2, 0, 75, 37, 0, // Skip to: 17045
1641/* 7498 */    MCD::OPC_Decode, 157, 9, 78, // Opcode: MTCRF
1642/* 7502 */    MCD::OPC_FilterValue, 1, 66, 37, 0, // Skip to: 17045
1643/* 7507 */    MCD::OPC_CheckField, 6, 6, 4, 59, 37, 0, // Skip to: 17045
1644/* 7514 */    MCD::OPC_CheckField, 0, 2, 0, 52, 37, 0, // Skip to: 17045
1645/* 7521 */    MCD::OPC_Decode, 175, 9, 79, // Opcode: MTOCRF
1646/* 7525 */    MCD::OPC_FilterValue, 9, 65, 3, 0, // Skip to: 8363
1647/* 7530 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1648/* 7533 */    MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 7587
1649/* 7538 */    MCD::OPC_ExtractField, 20, 1,  // Inst{20} ...
1650/* 7541 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7564
1651/* 7546 */    MCD::OPC_CheckField, 11, 9, 0, 20, 37, 0, // Skip to: 17045
1652/* 7553 */    MCD::OPC_CheckField, 0, 2, 2, 13, 37, 0, // Skip to: 17045
1653/* 7560 */    MCD::OPC_Decode, 246, 8, 53, // Opcode: MFCR
1654/* 7564 */    MCD::OPC_FilterValue, 1, 4, 37, 0, // Skip to: 17045
1655/* 7569 */    MCD::OPC_CheckField, 11, 1, 0, 253, 36, 0, // Skip to: 17045
1656/* 7576 */    MCD::OPC_CheckField, 0, 2, 2, 246, 36, 0, // Skip to: 17045
1657/* 7583 */    MCD::OPC_Decode, 134, 9, 80, // Opcode: MFOCRF
1658/* 7587 */    MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 7610
1659/* 7592 */    MCD::OPC_CheckField, 11, 5, 0, 230, 36, 0, // Skip to: 17045
1660/* 7599 */    MCD::OPC_CheckField, 1, 1, 1, 223, 36, 0, // Skip to: 17045
1661/* 7606 */    MCD::OPC_Decode, 148, 9, 81, // Opcode: MFVSRD
1662/* 7610 */    MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 7633
1663/* 7615 */    MCD::OPC_CheckField, 11, 10, 0, 207, 36, 0, // Skip to: 17045
1664/* 7622 */    MCD::OPC_CheckField, 0, 2, 2, 200, 36, 0, // Skip to: 17045
1665/* 7629 */    MCD::OPC_Decode, 133, 9, 53, // Opcode: MFMSR
1666/* 7633 */    MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 7656
1667/* 7638 */    MCD::OPC_CheckField, 11, 5, 0, 184, 36, 0, // Skip to: 17045
1668/* 7645 */    MCD::OPC_CheckField, 1, 1, 1, 177, 36, 0, // Skip to: 17045
1669/* 7652 */    MCD::OPC_Decode, 150, 9, 82, // Opcode: MFVSRWZ
1670/* 7656 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 7672
1671/* 7661 */    MCD::OPC_CheckField, 1, 1, 0, 161, 36, 0, // Skip to: 17045
1672/* 7668 */    MCD::OPC_Decode, 173, 9, 83, // Opcode: MTMSR
1673/* 7672 */    MCD::OPC_FilterValue, 5, 28, 0, 0, // Skip to: 7705
1674/* 7677 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1675/* 7680 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7689
1676/* 7685 */    MCD::OPC_Decode, 174, 9, 83, // Opcode: MTMSRD
1677/* 7689 */    MCD::OPC_FilterValue, 1, 135, 36, 0, // Skip to: 17045
1678/* 7694 */    MCD::OPC_CheckField, 11, 5, 0, 128, 36, 0, // Skip to: 17045
1679/* 7701 */    MCD::OPC_Decode, 188, 9, 84, // Opcode: MTVSRD
1680/* 7705 */    MCD::OPC_FilterValue, 6, 28, 0, 0, // Skip to: 7738
1681/* 7710 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1682/* 7713 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7722
1683/* 7718 */    MCD::OPC_Decode, 180, 9, 85, // Opcode: MTSR
1684/* 7722 */    MCD::OPC_FilterValue, 1, 102, 36, 0, // Skip to: 17045
1685/* 7727 */    MCD::OPC_CheckField, 11, 5, 0, 95, 36, 0, // Skip to: 17045
1686/* 7734 */    MCD::OPC_Decode, 190, 9, 86, // Opcode: MTVSRWA
1687/* 7738 */    MCD::OPC_FilterValue, 7, 28, 0, 0, // Skip to: 7771
1688/* 7743 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1689/* 7746 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7755
1690/* 7751 */    MCD::OPC_Decode, 181, 9, 87, // Opcode: MTSRIN
1691/* 7755 */    MCD::OPC_FilterValue, 1, 69, 36, 0, // Skip to: 17045
1692/* 7760 */    MCD::OPC_CheckField, 11, 5, 0, 62, 36, 0, // Skip to: 17045
1693/* 7767 */    MCD::OPC_Decode, 192, 9, 86, // Opcode: MTVSRWZ
1694/* 7771 */    MCD::OPC_FilterValue, 8, 18, 0, 0, // Skip to: 7794
1695/* 7776 */    MCD::OPC_CheckField, 16, 10, 0, 46, 36, 0, // Skip to: 17045
1696/* 7783 */    MCD::OPC_CheckField, 0, 2, 0, 39, 36, 0, // Skip to: 17045
1697/* 7790 */    MCD::OPC_Decode, 172, 13, 88, // Opcode: TLBIEL
1698/* 7794 */    MCD::OPC_FilterValue, 9, 42, 0, 0, // Skip to: 7841
1699/* 7799 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1700/* 7802 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7825
1701/* 7807 */    MCD::OPC_CheckField, 16, 5, 0, 15, 36, 0, // Skip to: 17045
1702/* 7814 */    MCD::OPC_CheckField, 0, 1, 0, 8, 36, 0, // Skip to: 17045
1703/* 7821 */    MCD::OPC_Decode, 171, 13, 87, // Opcode: TLBIE
1704/* 7825 */    MCD::OPC_FilterValue, 1, 255, 35, 0, // Skip to: 17045
1705/* 7830 */    MCD::OPC_CheckField, 11, 5, 0, 248, 35, 0, // Skip to: 17045
1706/* 7837 */    MCD::OPC_Decode, 149, 9, 89, // Opcode: MFVSRLD
1707/* 7841 */    MCD::OPC_FilterValue, 10, 51, 0, 0, // Skip to: 7897
1708/* 7846 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1709/* 7849 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 7865
1710/* 7854 */    MCD::OPC_CheckField, 11, 15, 0, 224, 35, 0, // Skip to: 17045
1711/* 7861 */    MCD::OPC_Decode, 240, 11, 0, // Opcode: SLBSYNC
1712/* 7865 */    MCD::OPC_FilterValue, 2, 215, 35, 0, // Skip to: 17045
1713/* 7870 */    MCD::OPC_ExtractField, 11, 10,  // Inst{20-11} ...
1714/* 7873 */    MCD::OPC_FilterValue, 128, 2, 4, 0, 0, // Skip to: 7883
1715/* 7879 */    MCD::OPC_Decode, 131, 9, 53, // Opcode: MFLR
1716/* 7883 */    MCD::OPC_FilterValue, 160, 2, 4, 0, 0, // Skip to: 7893
1717/* 7889 */    MCD::OPC_Decode, 248, 8, 53, // Opcode: MFCTR
1718/* 7893 */    MCD::OPC_Decode, 137, 9, 55, // Opcode: MFSPR
1719/* 7897 */    MCD::OPC_FilterValue, 11, 28, 0, 0, // Skip to: 7930
1720/* 7902 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1721/* 7905 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 7921
1722/* 7910 */    MCD::OPC_CheckField, 11, 15, 0, 168, 35, 0, // Skip to: 17045
1723/* 7917 */    MCD::OPC_Decode, 170, 13, 0, // Opcode: TLBIA
1724/* 7921 */    MCD::OPC_FilterValue, 2, 159, 35, 0, // Skip to: 17045
1725/* 7926 */    MCD::OPC_Decode, 141, 9, 55, // Opcode: MFTB
1726/* 7930 */    MCD::OPC_FilterValue, 12, 42, 0, 0, // Skip to: 7977
1727/* 7935 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1728/* 7938 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7961
1729/* 7943 */    MCD::OPC_CheckField, 16, 5, 0, 135, 35, 0, // Skip to: 17045
1730/* 7950 */    MCD::OPC_CheckField, 0, 1, 0, 128, 35, 0, // Skip to: 17045
1731/* 7957 */    MCD::OPC_Decode, 239, 11, 87, // Opcode: SLBMTE
1732/* 7961 */    MCD::OPC_FilterValue, 1, 119, 35, 0, // Skip to: 17045
1733/* 7966 */    MCD::OPC_CheckField, 11, 5, 0, 112, 35, 0, // Skip to: 17045
1734/* 7973 */    MCD::OPC_Decode, 191, 9, 90, // Opcode: MTVSRWS
1735/* 7977 */    MCD::OPC_FilterValue, 13, 35, 0, 0, // Skip to: 8017
1736/* 7982 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
1737/* 7985 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 8008
1738/* 7990 */    MCD::OPC_CheckField, 16, 10, 0, 88, 35, 0, // Skip to: 17045
1739/* 7997 */    MCD::OPC_CheckField, 0, 1, 0, 81, 35, 0, // Skip to: 17045
1740/* 8004 */    MCD::OPC_Decode, 235, 11, 88, // Opcode: SLBIE
1741/* 8008 */    MCD::OPC_FilterValue, 1, 72, 35, 0, // Skip to: 17045
1742/* 8013 */    MCD::OPC_Decode, 189, 9, 91, // Opcode: MTVSRDD
1743/* 8017 */    MCD::OPC_FilterValue, 14, 51, 0, 0, // Skip to: 8073
1744/* 8022 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1745/* 8025 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8041
1746/* 8030 */    MCD::OPC_CheckField, 16, 5, 0, 48, 35, 0, // Skip to: 17045
1747/* 8037 */    MCD::OPC_Decode, 236, 11, 87, // Opcode: SLBIEG
1748/* 8041 */    MCD::OPC_FilterValue, 2, 39, 35, 0, // Skip to: 17045
1749/* 8046 */    MCD::OPC_ExtractField, 11, 10,  // Inst{20-11} ...
1750/* 8049 */    MCD::OPC_FilterValue, 128, 2, 4, 0, 0, // Skip to: 8059
1751/* 8055 */    MCD::OPC_Decode, 171, 9, 53, // Opcode: MTLR
1752/* 8059 */    MCD::OPC_FilterValue, 160, 2, 4, 0, 0, // Skip to: 8069
1753/* 8065 */    MCD::OPC_Decode, 159, 9, 53, // Opcode: MTCTR
1754/* 8069 */    MCD::OPC_Decode, 178, 9, 72, // Opcode: MTSPR
1755/* 8073 */    MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 8096
1756/* 8078 */    MCD::OPC_CheckField, 11, 15, 0, 0, 35, 0, // Skip to: 17045
1757/* 8085 */    MCD::OPC_CheckField, 0, 2, 0, 249, 34, 0, // Skip to: 17045
1758/* 8092 */    MCD::OPC_Decode, 234, 11, 0, // Opcode: SLBIA
1759/* 8096 */    MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 8112
1760/* 8101 */    MCD::OPC_CheckField, 1, 1, 1, 233, 34, 0, // Skip to: 17045
1761/* 8108 */    MCD::OPC_Decode, 139, 9, 85, // Opcode: MFSR
1762/* 8112 */    MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 8128
1763/* 8117 */    MCD::OPC_CheckField, 1, 1, 1, 217, 34, 0, // Skip to: 17045
1764/* 8124 */    MCD::OPC_Decode, 140, 9, 87, // Opcode: MFSRIN
1765/* 8128 */    MCD::OPC_FilterValue, 23, 25, 0, 0, // Skip to: 8158
1766/* 8133 */    MCD::OPC_CheckField, 18, 3, 0, 201, 34, 0, // Skip to: 17045
1767/* 8140 */    MCD::OPC_CheckField, 11, 5, 0, 194, 34, 0, // Skip to: 17045
1768/* 8147 */    MCD::OPC_CheckField, 0, 2, 2, 187, 34, 0, // Skip to: 17045
1769/* 8154 */    MCD::OPC_Decode, 156, 4, 92, // Opcode: DARN
1770/* 8158 */    MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 8181
1771/* 8163 */    MCD::OPC_CheckField, 21, 5, 0, 171, 34, 0, // Skip to: 17045
1772/* 8170 */    MCD::OPC_CheckField, 0, 2, 0, 164, 34, 0, // Skip to: 17045
1773/* 8177 */    MCD::OPC_Decode, 173, 13, 60, // Opcode: TLBIVAX
1774/* 8181 */    MCD::OPC_FilterValue, 26, 18, 0, 0, // Skip to: 8204
1775/* 8186 */    MCD::OPC_CheckField, 16, 5, 0, 148, 34, 0, // Skip to: 17045
1776/* 8193 */    MCD::OPC_CheckField, 0, 2, 2, 141, 34, 0, // Skip to: 17045
1777/* 8200 */    MCD::OPC_Decode, 238, 11, 87, // Opcode: SLBMFEV
1778/* 8204 */    MCD::OPC_FilterValue, 28, 48, 0, 0, // Skip to: 8257
1779/* 8209 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1780/* 8212 */    MCD::OPC_FilterValue, 0, 15, 0, 0, // Skip to: 8232
1781/* 8217 */    MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 8228
1782/* 8224 */    MCD::OPC_Decode, 178, 13, 60, // Opcode: TLBSX
1783/* 8228 */    MCD::OPC_Decode, 179, 13, 64, // Opcode: TLBSX2
1784/* 8232 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8241
1785/* 8237 */    MCD::OPC_Decode, 180, 13, 64, // Opcode: TLBSX2D
1786/* 8241 */    MCD::OPC_FilterValue, 2, 95, 34, 0, // Skip to: 17045
1787/* 8246 */    MCD::OPC_CheckField, 16, 5, 0, 88, 34, 0, // Skip to: 17045
1788/* 8253 */    MCD::OPC_Decode, 237, 11, 87, // Opcode: SLBMFEE
1789/* 8257 */    MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 8285
1790/* 8262 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1791/* 8265 */    MCD::OPC_FilterValue, 0, 71, 34, 0, // Skip to: 17045
1792/* 8270 */    MCD::OPC_CheckField, 11, 15, 0, 4, 0, 0, // Skip to: 8281
1793/* 8277 */    MCD::OPC_Decode, 176, 13, 0, // Opcode: TLBRE
1794/* 8281 */    MCD::OPC_Decode, 177, 13, 93, // Opcode: TLBRE2
1795/* 8285 */    MCD::OPC_FilterValue, 30, 50, 0, 0, // Skip to: 8340
1796/* 8290 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1797/* 8293 */    MCD::OPC_FilterValue, 0, 26, 0, 0, // Skip to: 8324
1798/* 8298 */    MCD::OPC_CheckField, 11, 15, 0, 4, 0, 0, // Skip to: 8309
1799/* 8305 */    MCD::OPC_Decode, 182, 13, 0, // Opcode: TLBWE
1800/* 8309 */    MCD::OPC_CheckField, 16, 10, 0, 4, 0, 0, // Skip to: 8320
1801/* 8316 */    MCD::OPC_Decode, 174, 13, 88, // Opcode: TLBLD
1802/* 8320 */    MCD::OPC_Decode, 183, 13, 93, // Opcode: TLBWE2
1803/* 8324 */    MCD::OPC_FilterValue, 3, 12, 34, 0, // Skip to: 17045
1804/* 8329 */    MCD::OPC_CheckField, 16, 5, 0, 5, 34, 0, // Skip to: 17045
1805/* 8336 */    MCD::OPC_Decode, 233, 11, 87, // Opcode: SLBFEE_rec
1806/* 8340 */    MCD::OPC_FilterValue, 31, 252, 33, 0, // Skip to: 17045
1807/* 8345 */    MCD::OPC_CheckField, 16, 10, 0, 245, 33, 0, // Skip to: 17045
1808/* 8352 */    MCD::OPC_CheckField, 0, 2, 0, 238, 33, 0, // Skip to: 17045
1809/* 8359 */    MCD::OPC_Decode, 175, 13, 88, // Opcode: TLBLI
1810/* 8363 */    MCD::OPC_FilterValue, 10, 141, 1, 0, // Skip to: 8765
1811/* 8368 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1812/* 8371 */    MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 8406
1813/* 8376 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1814/* 8379 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8388
1815/* 8384 */    MCD::OPC_Decode, 195, 8, 94, // Opcode: LWARX
1816/* 8388 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8397
1817/* 8393 */    MCD::OPC_Decode, 196, 8, 94, // Opcode: LWARXL
1818/* 8397 */    MCD::OPC_FilterValue, 2, 195, 33, 0, // Skip to: 17045
1819/* 8402 */    MCD::OPC_Decode, 135, 8, 95, // Opcode: LDX
1820/* 8406 */    MCD::OPC_FilterValue, 1, 30, 0, 0, // Skip to: 8441
1821/* 8411 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1822/* 8414 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8423
1823/* 8419 */    MCD::OPC_Decode, 239, 7, 94, // Opcode: LBARX
1824/* 8423 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8432
1825/* 8428 */    MCD::OPC_Decode, 240, 7, 94, // Opcode: LBARXL
1826/* 8432 */    MCD::OPC_FilterValue, 2, 160, 33, 0, // Skip to: 17045
1827/* 8437 */    MCD::OPC_Decode, 134, 8, 96, // Opcode: LDUX
1828/* 8441 */    MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 8467
1829/* 8446 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1830/* 8449 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8458
1831/* 8454 */    MCD::OPC_Decode, 255, 7, 95, // Opcode: LDARX
1832/* 8458 */    MCD::OPC_FilterValue, 1, 134, 33, 0, // Skip to: 17045
1833/* 8463 */    MCD::OPC_Decode, 128, 8, 95, // Opcode: LDARXL
1834/* 8467 */    MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 8493
1835/* 8472 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1836/* 8475 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8484
1837/* 8480 */    MCD::OPC_Decode, 158, 8, 94, // Opcode: LHARX
1838/* 8484 */    MCD::OPC_FilterValue, 1, 108, 33, 0, // Skip to: 17045
1839/* 8489 */    MCD::OPC_Decode, 159, 8, 94, // Opcode: LHARXL
1840/* 8493 */    MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 8509
1841/* 8498 */    MCD::OPC_CheckField, 0, 2, 2, 92, 33, 0, // Skip to: 17045
1842/* 8505 */    MCD::OPC_Decode, 162, 12, 95, // Opcode: STDX
1843/* 8509 */    MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 8525
1844/* 8514 */    MCD::OPC_CheckField, 0, 2, 2, 76, 33, 0, // Skip to: 17045
1845/* 8521 */    MCD::OPC_Decode, 161, 12, 97, // Opcode: STDUX
1846/* 8525 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 8541
1847/* 8530 */    MCD::OPC_CheckField, 0, 2, 2, 60, 33, 0, // Skip to: 17045
1848/* 8537 */    MCD::OPC_Decode, 132, 8, 95, // Opcode: LDMX
1849/* 8541 */    MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 8557
1850/* 8546 */    MCD::OPC_CheckField, 0, 2, 2, 44, 33, 0, // Skip to: 17045
1851/* 8553 */    MCD::OPC_Decode, 199, 8, 95, // Opcode: LWAX
1852/* 8557 */    MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 8573
1853/* 8562 */    MCD::OPC_CheckField, 0, 2, 2, 28, 33, 0, // Skip to: 17045
1854/* 8569 */    MCD::OPC_Decode, 198, 8, 96, // Opcode: LWAUX
1855/* 8573 */    MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 8589
1856/* 8578 */    MCD::OPC_CheckField, 0, 2, 0, 12, 33, 0, // Skip to: 17045
1857/* 8585 */    MCD::OPC_Decode, 130, 8, 95, // Opcode: LDBRX
1858/* 8589 */    MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 8605
1859/* 8594 */    MCD::OPC_CheckField, 0, 2, 2, 252, 32, 0, // Skip to: 17045
1860/* 8601 */    MCD::OPC_Decode, 186, 8, 61, // Opcode: LSWI
1861/* 8605 */    MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 8621
1862/* 8610 */    MCD::OPC_CheckField, 0, 2, 0, 236, 32, 0, // Skip to: 17045
1863/* 8617 */    MCD::OPC_Decode, 157, 12, 95, // Opcode: STDBRX
1864/* 8621 */    MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 8637
1865/* 8626 */    MCD::OPC_CheckField, 0, 2, 2, 220, 32, 0, // Skip to: 17045
1866/* 8633 */    MCD::OPC_Decode, 192, 12, 61, // Opcode: STSWI
1867/* 8637 */    MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 8653
1868/* 8642 */    MCD::OPC_CheckField, 0, 2, 2, 204, 32, 0, // Skip to: 17045
1869/* 8649 */    MCD::OPC_Decode, 207, 8, 64, // Opcode: LWZCIX
1870/* 8653 */    MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 8669
1871/* 8658 */    MCD::OPC_CheckField, 0, 2, 2, 188, 32, 0, // Skip to: 17045
1872/* 8665 */    MCD::OPC_Decode, 171, 8, 64, // Opcode: LHZCIX
1873/* 8669 */    MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 8685
1874/* 8674 */    MCD::OPC_CheckField, 0, 2, 2, 172, 32, 0, // Skip to: 17045
1875/* 8681 */    MCD::OPC_Decode, 244, 7, 64, // Opcode: LBZCIX
1876/* 8685 */    MCD::OPC_FilterValue, 27, 11, 0, 0, // Skip to: 8701
1877/* 8690 */    MCD::OPC_CheckField, 0, 2, 2, 156, 32, 0, // Skip to: 17045
1878/* 8697 */    MCD::OPC_Decode, 131, 8, 64, // Opcode: LDCIX
1879/* 8701 */    MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 8717
1880/* 8706 */    MCD::OPC_CheckField, 0, 2, 2, 140, 32, 0, // Skip to: 17045
1881/* 8713 */    MCD::OPC_Decode, 202, 12, 64, // Opcode: STWCIX
1882/* 8717 */    MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 8733
1883/* 8722 */    MCD::OPC_CheckField, 0, 2, 2, 124, 32, 0, // Skip to: 17045
1884/* 8729 */    MCD::OPC_Decode, 178, 12, 64, // Opcode: STHCIX
1885/* 8733 */    MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 8749
1886/* 8738 */    MCD::OPC_CheckField, 0, 2, 2, 108, 32, 0, // Skip to: 17045
1887/* 8745 */    MCD::OPC_Decode, 143, 12, 64, // Opcode: STBCIX
1888/* 8749 */    MCD::OPC_FilterValue, 31, 99, 32, 0, // Skip to: 17045
1889/* 8754 */    MCD::OPC_CheckField, 0, 2, 2, 92, 32, 0, // Skip to: 17045
1890/* 8761 */    MCD::OPC_Decode, 158, 12, 64, // Opcode: STDCIX
1891/* 8765 */    MCD::OPC_FilterValue, 11, 89, 3, 0, // Skip to: 9627
1892/* 8770 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
1893/* 8773 */    MCD::OPC_FilterValue, 0, 28, 0, 0, // Skip to: 8806
1894/* 8778 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1895/* 8781 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8797
1896/* 8786 */    MCD::OPC_CheckField, 25, 1, 0, 60, 32, 0, // Skip to: 17045
1897/* 8793 */    MCD::OPC_Decode, 232, 7, 59, // Opcode: ICBT
1898/* 8797 */    MCD::OPC_FilterValue, 2, 51, 32, 0, // Skip to: 17045
1899/* 8802 */    MCD::OPC_Decode, 212, 8, 94, // Opcode: LWZX
1900/* 8806 */    MCD::OPC_FilterValue, 1, 28, 0, 0, // Skip to: 8839
1901/* 8811 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1902/* 8814 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8830
1903/* 8819 */    MCD::OPC_CheckField, 21, 5, 0, 27, 32, 0, // Skip to: 17045
1904/* 8826 */    MCD::OPC_Decode, 161, 4, 98, // Opcode: DCBST
1905/* 8830 */    MCD::OPC_FilterValue, 2, 18, 32, 0, // Skip to: 17045
1906/* 8835 */    MCD::OPC_Decode, 210, 8, 99, // Opcode: LWZUX
1907/* 8839 */    MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 8865
1908/* 8844 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1909/* 8847 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8856
1910/* 8852 */    MCD::OPC_Decode, 158, 4, 100, // Opcode: DCBF
1911/* 8856 */    MCD::OPC_FilterValue, 2, 248, 31, 0, // Skip to: 17045
1912/* 8861 */    MCD::OPC_Decode, 249, 7, 94, // Opcode: LBZX
1913/* 8865 */    MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 8881
1914/* 8870 */    MCD::OPC_CheckField, 0, 2, 2, 232, 31, 0, // Skip to: 17045
1915/* 8877 */    MCD::OPC_Decode, 247, 7, 99, // Opcode: LBZUX
1916/* 8881 */    MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 8907
1917/* 8886 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1918/* 8889 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8898
1919/* 8894 */    MCD::OPC_Decode, 203, 12, 94, // Opcode: STWCX
1920/* 8898 */    MCD::OPC_FilterValue, 2, 206, 31, 0, // Skip to: 17045
1921/* 8903 */    MCD::OPC_Decode, 209, 12, 94, // Opcode: STWX
1922/* 8907 */    MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 8923
1923/* 8912 */    MCD::OPC_CheckField, 0, 2, 2, 190, 31, 0, // Skip to: 17045
1924/* 8919 */    MCD::OPC_Decode, 207, 12, 101, // Opcode: STWUX
1925/* 8923 */    MCD::OPC_FilterValue, 6, 21, 0, 0, // Skip to: 8949
1926/* 8928 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1927/* 8931 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8940
1928/* 8936 */    MCD::OPC_Decode, 159, 12, 95, // Opcode: STDCX
1929/* 8940 */    MCD::OPC_FilterValue, 2, 164, 31, 0, // Skip to: 17045
1930/* 8945 */    MCD::OPC_Decode, 150, 12, 94, // Opcode: STBX
1931/* 8949 */    MCD::OPC_FilterValue, 7, 21, 0, 0, // Skip to: 8975
1932/* 8954 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1933/* 8957 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8966
1934/* 8962 */    MCD::OPC_Decode, 165, 4, 100, // Opcode: DCBTST
1935/* 8966 */    MCD::OPC_FilterValue, 2, 138, 31, 0, // Skip to: 17045
1936/* 8971 */    MCD::OPC_Decode, 148, 12, 101, // Opcode: STBUX
1937/* 8975 */    MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 9001
1938/* 8980 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1939/* 8983 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8992
1940/* 8988 */    MCD::OPC_Decode, 163, 4, 100, // Opcode: DCBT
1941/* 8992 */    MCD::OPC_FilterValue, 2, 112, 31, 0, // Skip to: 17045
1942/* 8997 */    MCD::OPC_Decode, 176, 8, 94, // Opcode: LHZX
1943/* 9001 */    MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 9017
1944/* 9006 */    MCD::OPC_CheckField, 0, 2, 2, 96, 31, 0, // Skip to: 17045
1945/* 9013 */    MCD::OPC_Decode, 174, 8, 99, // Opcode: LHZUX
1946/* 9017 */    MCD::OPC_FilterValue, 10, 38, 0, 0, // Skip to: 9060
1947/* 9022 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1948/* 9025 */    MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9051
1949/* 9030 */    MCD::OPC_ExtractField, 23, 3,  // Inst{25-23} ...
1950/* 9033 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9042
1951/* 9038 */    MCD::OPC_Decode, 206, 4, 102, // Opcode: DST
1952/* 9042 */    MCD::OPC_FilterValue, 4, 62, 31, 0, // Skip to: 17045
1953/* 9047 */    MCD::OPC_Decode, 212, 4, 102, // Opcode: DSTT
1954/* 9051 */    MCD::OPC_FilterValue, 2, 53, 31, 0, // Skip to: 17045
1955/* 9056 */    MCD::OPC_Decode, 164, 8, 94, // Opcode: LHAX
1956/* 9060 */    MCD::OPC_FilterValue, 11, 38, 0, 0, // Skip to: 9103
1957/* 9065 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1958/* 9068 */    MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9094
1959/* 9073 */    MCD::OPC_ExtractField, 23, 3,  // Inst{25-23} ...
1960/* 9076 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9085
1961/* 9081 */    MCD::OPC_Decode, 208, 4, 102, // Opcode: DSTST
1962/* 9085 */    MCD::OPC_FilterValue, 4, 19, 31, 0, // Skip to: 17045
1963/* 9090 */    MCD::OPC_Decode, 210, 4, 102, // Opcode: DSTSTT
1964/* 9094 */    MCD::OPC_FilterValue, 2, 10, 31, 0, // Skip to: 17045
1965/* 9099 */    MCD::OPC_Decode, 162, 8, 99, // Opcode: LHAUX
1966/* 9103 */    MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 9119
1967/* 9108 */    MCD::OPC_CheckField, 0, 2, 2, 250, 30, 0, // Skip to: 17045
1968/* 9115 */    MCD::OPC_Decode, 185, 12, 94, // Opcode: STHX
1969/* 9119 */    MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 9135
1970/* 9124 */    MCD::OPC_CheckField, 0, 2, 2, 234, 30, 0, // Skip to: 17045
1971/* 9131 */    MCD::OPC_Decode, 183, 12, 101, // Opcode: STHUX
1972/* 9135 */    MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 9158
1973/* 9140 */    MCD::OPC_CheckField, 21, 5, 0, 218, 30, 0, // Skip to: 17045
1974/* 9147 */    MCD::OPC_CheckField, 0, 2, 0, 211, 30, 0, // Skip to: 17045
1975/* 9154 */    MCD::OPC_Decode, 160, 4, 98, // Opcode: DCBI
1976/* 9158 */    MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 9184
1977/* 9163 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1978/* 9166 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9175
1979/* 9171 */    MCD::OPC_Decode, 202, 8, 94, // Opcode: LWBRX
1980/* 9175 */    MCD::OPC_FilterValue, 2, 185, 30, 0, // Skip to: 17045
1981/* 9180 */    MCD::OPC_Decode, 155, 8, 103, // Opcode: LFSX
1982/* 9184 */    MCD::OPC_FilterValue, 17, 28, 0, 0, // Skip to: 9217
1983/* 9189 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1984/* 9192 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9208
1985/* 9197 */    MCD::OPC_CheckField, 11, 15, 0, 161, 30, 0, // Skip to: 17045
1986/* 9204 */    MCD::OPC_Decode, 181, 13, 0, // Opcode: TLBSYNC
1987/* 9208 */    MCD::OPC_FilterValue, 2, 152, 30, 0, // Skip to: 17045
1988/* 9213 */    MCD::OPC_Decode, 154, 8, 104, // Opcode: LFSUX
1989/* 9217 */    MCD::OPC_FilterValue, 18, 35, 0, 0, // Skip to: 9257
1990/* 9222 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
1991/* 9225 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 9248
1992/* 9230 */    MCD::OPC_CheckField, 23, 3, 0, 128, 30, 0, // Skip to: 17045
1993/* 9237 */    MCD::OPC_CheckField, 11, 10, 0, 121, 30, 0, // Skip to: 17045
1994/* 9244 */    MCD::OPC_Decode, 145, 13, 105, // Opcode: SYNC
1995/* 9248 */    MCD::OPC_FilterValue, 2, 112, 30, 0, // Skip to: 17045
1996/* 9253 */    MCD::OPC_Decode, 149, 8, 106, // Opcode: LFDX
1997/* 9257 */    MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 9273
1998/* 9262 */    MCD::OPC_CheckField, 0, 2, 2, 96, 30, 0, // Skip to: 17045
1999/* 9269 */    MCD::OPC_Decode, 148, 8, 107, // Opcode: LFDUX
2000/* 9273 */    MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 9299
2001/* 9278 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2002/* 9281 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9290
2003/* 9286 */    MCD::OPC_Decode, 201, 12, 94, // Opcode: STWBRX
2004/* 9290 */    MCD::OPC_FilterValue, 2, 70, 30, 0, // Skip to: 17045
2005/* 9295 */    MCD::OPC_Decode, 174, 12, 103, // Opcode: STFSX
2006/* 9299 */    MCD::OPC_FilterValue, 21, 21, 0, 0, // Skip to: 9325
2007/* 9304 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2008/* 9307 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 9316
2009/* 9312 */    MCD::OPC_Decode, 144, 12, 94, // Opcode: STBCX
2010/* 9316 */    MCD::OPC_FilterValue, 2, 44, 30, 0, // Skip to: 17045
2011/* 9321 */    MCD::OPC_Decode, 173, 12, 108, // Opcode: STFSUX
2012/* 9325 */    MCD::OPC_FilterValue, 22, 21, 0, 0, // Skip to: 9351
2013/* 9330 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2014/* 9333 */    MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 9342
2015/* 9338 */    MCD::OPC_Decode, 179, 12, 94, // Opcode: STHCX
2016/* 9342 */    MCD::OPC_FilterValue, 2, 18, 30, 0, // Skip to: 17045
2017/* 9347 */    MCD::OPC_Decode, 169, 12, 106, // Opcode: STFDX
2018/* 9351 */    MCD::OPC_FilterValue, 23, 28, 0, 0, // Skip to: 9384
2019/* 9356 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2020/* 9359 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9375
2021/* 9364 */    MCD::OPC_CheckField, 21, 5, 0, 250, 29, 0, // Skip to: 17045
2022/* 9371 */    MCD::OPC_Decode, 157, 4, 98, // Opcode: DCBA
2023/* 9375 */    MCD::OPC_FilterValue, 2, 241, 29, 0, // Skip to: 17045
2024/* 9380 */    MCD::OPC_Decode, 168, 12, 109, // Opcode: STFDUX
2025/* 9384 */    MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 9400
2026/* 9389 */    MCD::OPC_CheckField, 0, 2, 0, 225, 29, 0, // Skip to: 17045
2027/* 9396 */    MCD::OPC_Decode, 166, 8, 94, // Opcode: LHBRX
2028/* 9400 */    MCD::OPC_FilterValue, 25, 49, 0, 0, // Skip to: 9454
2029/* 9405 */    MCD::OPC_ExtractField, 23, 3,  // Inst{25-23} ...
2030/* 9408 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 9431
2031/* 9413 */    MCD::OPC_CheckField, 11, 10, 0, 201, 29, 0, // Skip to: 17045
2032/* 9420 */    MCD::OPC_CheckField, 0, 2, 0, 194, 29, 0, // Skip to: 17045
2033/* 9427 */    MCD::OPC_Decode, 204, 4, 110, // Opcode: DSS
2034/* 9431 */    MCD::OPC_FilterValue, 4, 185, 29, 0, // Skip to: 17045
2035/* 9436 */    MCD::OPC_CheckField, 11, 12, 0, 178, 29, 0, // Skip to: 17045
2036/* 9443 */    MCD::OPC_CheckField, 0, 2, 0, 171, 29, 0, // Skip to: 17045
2037/* 9450 */    MCD::OPC_Decode, 205, 4, 0, // Opcode: DSSALL
2038/* 9454 */    MCD::OPC_FilterValue, 26, 46, 0, 0, // Skip to: 9505
2039/* 9459 */    MCD::OPC_ExtractField, 1, 1,  // Inst{1} ...
2040/* 9462 */    MCD::OPC_FilterValue, 0, 22, 0, 0, // Skip to: 9489
2041/* 9467 */    MCD::OPC_CheckField, 11, 15, 0, 11, 0, 0, // Skip to: 9485
2042/* 9474 */    MCD::OPC_CheckField, 0, 1, 0, 4, 0, 0, // Skip to: 9485
2043/* 9481 */    MCD::OPC_Decode, 237, 6, 0, // Opcode: EnforceIEIO
2044/* 9485 */    MCD::OPC_Decode, 241, 8, 111, // Opcode: MBAR
2045/* 9489 */    MCD::OPC_FilterValue, 1, 127, 29, 0, // Skip to: 17045
2046/* 9494 */    MCD::OPC_CheckField, 0, 1, 0, 120, 29, 0, // Skip to: 17045
2047/* 9501 */    MCD::OPC_Decode, 150, 8, 106, // Opcode: LFIWAX
2048/* 9505 */    MCD::OPC_FilterValue, 27, 28, 0, 0, // Skip to: 9538
2049/* 9510 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2050/* 9513 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9529
2051/* 9518 */    MCD::OPC_CheckField, 11, 15, 0, 96, 29, 0, // Skip to: 17045
2052/* 9525 */    MCD::OPC_Decode, 155, 9, 0, // Opcode: MSGSYNC
2053/* 9529 */    MCD::OPC_FilterValue, 2, 87, 29, 0, // Skip to: 17045
2054/* 9534 */    MCD::OPC_Decode, 151, 8, 106, // Opcode: LFIWZX
2055/* 9538 */    MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 9554
2056/* 9543 */    MCD::OPC_CheckField, 0, 2, 0, 71, 29, 0, // Skip to: 17045
2057/* 9550 */    MCD::OPC_Decode, 177, 12, 94, // Opcode: STHBRX
2058/* 9554 */    MCD::OPC_FilterValue, 30, 28, 0, 0, // Skip to: 9587
2059/* 9559 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2060/* 9562 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9578
2061/* 9567 */    MCD::OPC_CheckField, 21, 5, 0, 47, 29, 0, // Skip to: 17045
2062/* 9574 */    MCD::OPC_Decode, 228, 7, 98, // Opcode: ICBI
2063/* 9578 */    MCD::OPC_FilterValue, 2, 38, 29, 0, // Skip to: 17045
2064/* 9583 */    MCD::OPC_Decode, 170, 12, 106, // Opcode: STFIWX
2065/* 9587 */    MCD::OPC_FilterValue, 31, 29, 29, 0, // Skip to: 17045
2066/* 9592 */    MCD::OPC_ExtractField, 21, 5,  // Inst{25-21} ...
2067/* 9595 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9611
2068/* 9600 */    MCD::OPC_CheckField, 0, 2, 0, 14, 29, 0, // Skip to: 17045
2069/* 9607 */    MCD::OPC_Decode, 167, 4, 98, // Opcode: DCBZ
2070/* 9611 */    MCD::OPC_FilterValue, 1, 5, 29, 0, // Skip to: 17045
2071/* 9616 */    MCD::OPC_CheckField, 0, 2, 0, 254, 28, 0, // Skip to: 17045
2072/* 9623 */    MCD::OPC_Decode, 169, 4, 98, // Opcode: DCBZL
2073/* 9627 */    MCD::OPC_FilterValue, 12, 107, 0, 0, // Skip to: 9739
2074/* 9632 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2075/* 9635 */    MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9661
2076/* 9640 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2077/* 9643 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9652
2078/* 9648 */    MCD::OPC_Decode, 243, 11, 112, // Opcode: SLW
2079/* 9652 */    MCD::OPC_FilterValue, 1, 220, 28, 0, // Skip to: 17045
2080/* 9657 */    MCD::OPC_Decode, 246, 11, 112, // Opcode: SLW_rec
2081/* 9661 */    MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 9687
2082/* 9666 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2083/* 9669 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9678
2084/* 9674 */    MCD::OPC_Decode, 137, 12, 112, // Opcode: SRW
2085/* 9678 */    MCD::OPC_FilterValue, 1, 194, 28, 0, // Skip to: 17045
2086/* 9683 */    MCD::OPC_Decode, 140, 12, 112, // Opcode: SRW_rec
2087/* 9687 */    MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 9713
2088/* 9692 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2089/* 9695 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9704
2090/* 9700 */    MCD::OPC_Decode, 131, 12, 112, // Opcode: SRAW
2091/* 9704 */    MCD::OPC_FilterValue, 1, 168, 28, 0, // Skip to: 17045
2092/* 9709 */    MCD::OPC_Decode, 134, 12, 112, // Opcode: SRAW_rec
2093/* 9713 */    MCD::OPC_FilterValue, 25, 159, 28, 0, // Skip to: 17045
2094/* 9718 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2095/* 9721 */    MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9730
2096/* 9726 */    MCD::OPC_Decode, 132, 12, 113, // Opcode: SRAWI
2097/* 9730 */    MCD::OPC_FilterValue, 1, 142, 28, 0, // Skip to: 17045
2098/* 9735 */    MCD::OPC_Decode, 133, 12, 113, // Opcode: SRAWI_rec
2099/* 9739 */    MCD::OPC_FilterValue, 13, 210, 1, 0, // Skip to: 10210
2100/* 9744 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2101/* 9747 */    MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 9805
2102/* 9752 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2103/* 9755 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9771
2104/* 9760 */    MCD::OPC_CheckField, 11, 5, 0, 110, 28, 0, // Skip to: 17045
2105/* 9767 */    MCD::OPC_Decode, 254, 3, 114, // Opcode: CNTLZW
2106/* 9771 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 9787
2107/* 9776 */    MCD::OPC_CheckField, 11, 5, 0, 94, 28, 0, // Skip to: 17045
2108/* 9783 */    MCD::OPC_Decode, 129, 4, 114, // Opcode: CNTLZW_rec
2109/* 9787 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 9796
2110/* 9792 */    MCD::OPC_Decode, 241, 11, 115, // Opcode: SLD
2111/* 9796 */    MCD::OPC_FilterValue, 3, 76, 28, 0, // Skip to: 17045
2112/* 9801 */    MCD::OPC_Decode, 242, 11, 115, // Opcode: SLD_rec
2113/* 9805 */    MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 9845
2114/* 9810 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2115/* 9813 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9829
2116/* 9818 */    MCD::OPC_CheckField, 11, 5, 0, 52, 28, 0, // Skip to: 17045
2117/* 9825 */    MCD::OPC_Decode, 252, 3, 116, // Opcode: CNTLZD
2118/* 9829 */    MCD::OPC_FilterValue, 1, 43, 28, 0, // Skip to: 17045
2119/* 9834 */    MCD::OPC_CheckField, 11, 5, 0, 36, 28, 0, // Skip to: 17045
2120/* 9841 */    MCD::OPC_Decode, 253, 3, 116, // Opcode: CNTLZD_rec
2121/* 9845 */    MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 9868
2122/* 9850 */    MCD::OPC_CheckField, 11, 5, 0, 20, 28, 0, // Skip to: 17045
2123/* 9857 */    MCD::OPC_CheckField, 0, 2, 0, 13, 28, 0, // Skip to: 17045
2124/* 9864 */    MCD::OPC_Decode, 246, 9, 114, // Opcode: POPCNTB
2125/* 9868 */    MCD::OPC_FilterValue, 11, 18, 0, 0, // Skip to: 9891
2126/* 9873 */    MCD::OPC_CheckField, 11, 5, 0, 253, 27, 0, // Skip to: 17045
2127/* 9880 */    MCD::OPC_CheckField, 0, 2, 0, 246, 27, 0, // Skip to: 17045
2128/* 9887 */    MCD::OPC_Decode, 248, 9, 114, // Opcode: POPCNTW
2129/* 9891 */    MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 9914
2130/* 9896 */    MCD::OPC_CheckField, 11, 5, 0, 230, 27, 0, // Skip to: 17045
2131/* 9903 */    MCD::OPC_CheckField, 0, 2, 0, 223, 27, 0, // Skip to: 17045
2132/* 9910 */    MCD::OPC_Decode, 247, 9, 116, // Opcode: POPCNTD
2133/* 9914 */    MCD::OPC_FilterValue, 16, 53, 0, 0, // Skip to: 9972
2134/* 9919 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2135/* 9922 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9938
2136/* 9927 */    MCD::OPC_CheckField, 11, 5, 0, 199, 27, 0, // Skip to: 17045
2137/* 9934 */    MCD::OPC_Decode, 132, 4, 114, // Opcode: CNTTZW
2138/* 9938 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 9954
2139/* 9943 */    MCD::OPC_CheckField, 11, 5, 0, 183, 27, 0, // Skip to: 17045
2140/* 9950 */    MCD::OPC_Decode, 135, 4, 114, // Opcode: CNTTZW_rec
2141/* 9954 */    MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 9963
2142/* 9959 */    MCD::OPC_Decode, 135, 12, 115, // Opcode: SRD
2143/* 9963 */    MCD::OPC_FilterValue, 3, 165, 27, 0, // Skip to: 17045
2144/* 9968 */    MCD::OPC_Decode, 136, 12, 115, // Opcode: SRD_rec
2145/* 9972 */    MCD::OPC_FilterValue, 17, 35, 0, 0, // Skip to: 10012
2146/* 9977 */    MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2147/* 9980 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9996
2148/* 9985 */    MCD::OPC_CheckField, 11, 5, 0, 141, 27, 0, // Skip to: 17045
2149/* 9992 */    MCD::OPC_Decode, 130, 4, 116, // Opcode: CNTTZD
2150/* 9996 */    MCD::OPC_FilterValue, 1, 132, 27, 0, // Skip to: 17045
2151/* 10001 */   MCD::OPC_CheckField, 11, 5, 0, 125, 27, 0, // Skip to: 17045
2152/* 10008 */   MCD::OPC_Decode, 131, 4, 116, // Opcode: CNTTZD_rec
2153/* 10012 */   MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 10038
2154/* 10017 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2155/* 10020 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10029
2156/* 10025 */   MCD::OPC_Decode, 254, 11, 115, // Opcode: SRAD
2157/* 10029 */   MCD::OPC_FilterValue, 1, 99, 27, 0, // Skip to: 17045
2158/* 10034 */   MCD::OPC_Decode, 130, 12, 115, // Opcode: SRAD_rec
2159/* 10038 */   MCD::OPC_FilterValue, 25, 21, 0, 0, // Skip to: 10064
2160/* 10043 */   MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
2161/* 10046 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10055
2162/* 10051 */   MCD::OPC_Decode, 255, 11, 117, // Opcode: SRADI
2163/* 10055 */   MCD::OPC_FilterValue, 1, 73, 27, 0, // Skip to: 17045
2164/* 10060 */   MCD::OPC_Decode, 129, 12, 117, // Opcode: SRADI_rec
2165/* 10064 */   MCD::OPC_FilterValue, 27, 21, 0, 0, // Skip to: 10090
2166/* 10069 */   MCD::OPC_ExtractField, 0, 1,  // Inst{0} ...
2167/* 10072 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10081
2168/* 10077 */   MCD::OPC_Decode, 229, 6, 117, // Opcode: EXTSWSLI
2169/* 10081 */   MCD::OPC_FilterValue, 1, 47, 27, 0, // Skip to: 17045
2170/* 10086 */   MCD::OPC_Decode, 232, 6, 117, // Opcode: EXTSWSLI_rec
2171/* 10090 */   MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 10130
2172/* 10095 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2173/* 10098 */   MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10114
2174/* 10103 */   MCD::OPC_CheckField, 11, 5, 0, 23, 27, 0, // Skip to: 17045
2175/* 10110 */   MCD::OPC_Decode, 223, 6, 114, // Opcode: EXTSH
2176/* 10114 */   MCD::OPC_FilterValue, 1, 14, 27, 0, // Skip to: 17045
2177/* 10119 */   MCD::OPC_CheckField, 11, 5, 0, 7, 27, 0, // Skip to: 17045
2178/* 10126 */   MCD::OPC_Decode, 227, 6, 114, // Opcode: EXTSH_rec
2179/* 10130 */   MCD::OPC_FilterValue, 29, 35, 0, 0, // Skip to: 10170
2180/* 10135 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2181/* 10138 */   MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10154
2182/* 10143 */   MCD::OPC_CheckField, 11, 5, 0, 239, 26, 0, // Skip to: 17045
2183/* 10150 */   MCD::OPC_Decode, 218, 6, 114, // Opcode: EXTSB
2184/* 10154 */   MCD::OPC_FilterValue, 1, 230, 26, 0, // Skip to: 17045
2185/* 10159 */   MCD::OPC_CheckField, 11, 5, 0, 223, 26, 0, // Skip to: 17045
2186/* 10166 */   MCD::OPC_Decode, 222, 6, 114, // Opcode: EXTSB_rec
2187/* 10170 */   MCD::OPC_FilterValue, 30, 214, 26, 0, // Skip to: 17045
2188/* 10175 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2189/* 10178 */   MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10194
2190/* 10183 */   MCD::OPC_CheckField, 11, 5, 0, 199, 26, 0, // Skip to: 17045
2191/* 10190 */   MCD::OPC_Decode, 228, 6, 116, // Opcode: EXTSW
2192/* 10194 */   MCD::OPC_FilterValue, 1, 190, 26, 0, // Skip to: 17045
2193/* 10199 */   MCD::OPC_CheckField, 11, 5, 0, 183, 26, 0, // Skip to: 17045
2194/* 10206 */   MCD::OPC_Decode, 236, 6, 116, // Opcode: EXTSW_rec
2195/* 10210 */   MCD::OPC_FilterValue, 14, 243, 0, 0, // Skip to: 10458
2196/* 10215 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2197/* 10218 */   MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 10244
2198/* 10223 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2199/* 10226 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10235
2200/* 10231 */   MCD::OPC_Decode, 197, 2, 112, // Opcode: AND
2201/* 10235 */   MCD::OPC_FilterValue, 1, 149, 26, 0, // Skip to: 17045
2202/* 10240 */   MCD::OPC_Decode, 212, 2, 112, // Opcode: AND_rec
2203/* 10244 */   MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 10270
2204/* 10249 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2205/* 10252 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10261
2206/* 10257 */   MCD::OPC_Decode, 200, 2, 112, // Opcode: ANDC
2207/* 10261 */   MCD::OPC_FilterValue, 1, 123, 26, 0, // Skip to: 17045
2208/* 10266 */   MCD::OPC_Decode, 203, 2, 112, // Opcode: ANDC_rec
2209/* 10270 */   MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 10296
2210/* 10275 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2211/* 10278 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10287
2212/* 10283 */   MCD::OPC_Decode, 230, 9, 112, // Opcode: NOR
2213/* 10287 */   MCD::OPC_FilterValue, 1, 97, 26, 0, // Skip to: 17045
2214/* 10292 */   MCD::OPC_Decode, 233, 9, 112, // Opcode: NOR_rec
2215/* 10296 */   MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 10312
2216/* 10301 */   MCD::OPC_CheckField, 0, 2, 0, 81, 26, 0, // Skip to: 17045
2217/* 10308 */   MCD::OPC_Decode, 236, 3, 118, // Opcode: BPERMD
2218/* 10312 */   MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 10338
2219/* 10317 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2220/* 10320 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10329
2221/* 10325 */   MCD::OPC_Decode, 147, 5, 112, // Opcode: EQV
2222/* 10329 */   MCD::OPC_FilterValue, 1, 55, 26, 0, // Skip to: 17045
2223/* 10334 */   MCD::OPC_Decode, 150, 5, 112, // Opcode: EQV_rec
2224/* 10338 */   MCD::OPC_FilterValue, 9, 21, 0, 0, // Skip to: 10364
2225/* 10343 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2226/* 10346 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10355
2227/* 10351 */   MCD::OPC_Decode, 231, 15, 112, // Opcode: XOR
2228/* 10355 */   MCD::OPC_FilterValue, 1, 29, 26, 0, // Skip to: 17045
2229/* 10360 */   MCD::OPC_Decode, 238, 15, 112, // Opcode: XOR_rec
2230/* 10364 */   MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 10390
2231/* 10369 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2232/* 10372 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10381
2233/* 10377 */   MCD::OPC_Decode, 237, 9, 112, // Opcode: ORC
2234/* 10381 */   MCD::OPC_FilterValue, 1, 3, 26, 0, // Skip to: 17045
2235/* 10386 */   MCD::OPC_Decode, 240, 9, 112, // Opcode: ORC_rec
2236/* 10390 */   MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 10416
2237/* 10395 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2238/* 10398 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10407
2239/* 10403 */   MCD::OPC_Decode, 234, 9, 112, // Opcode: OR
2240/* 10407 */   MCD::OPC_FilterValue, 1, 233, 25, 0, // Skip to: 17045
2241/* 10412 */   MCD::OPC_Decode, 245, 9, 112, // Opcode: OR_rec
2242/* 10416 */   MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 10442
2243/* 10421 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2244/* 10424 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10433
2245/* 10429 */   MCD::OPC_Decode, 214, 9, 112, // Opcode: NAND
2246/* 10433 */   MCD::OPC_FilterValue, 1, 207, 25, 0, // Skip to: 17045
2247/* 10438 */   MCD::OPC_Decode, 217, 9, 112, // Opcode: NAND_rec
2248/* 10442 */   MCD::OPC_FilterValue, 15, 198, 25, 0, // Skip to: 17045
2249/* 10447 */   MCD::OPC_CheckField, 0, 2, 0, 191, 25, 0, // Skip to: 17045
2250/* 10454 */   MCD::OPC_Decode, 239, 3, 112, // Opcode: CMPB
2251/* 10458 */   MCD::OPC_FilterValue, 15, 182, 25, 0, // Skip to: 17045
2252/* 10463 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2253/* 10466 */   MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 10506
2254/* 10471 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2255/* 10474 */   MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 10497
2256/* 10479 */   MCD::OPC_CheckField, 23, 3, 0, 159, 25, 0, // Skip to: 17045
2257/* 10486 */   MCD::OPC_CheckField, 11, 10, 0, 152, 25, 0, // Skip to: 17045
2258/* 10493 */   MCD::OPC_Decode, 228, 15, 105, // Opcode: WAIT
2259/* 10497 */   MCD::OPC_FilterValue, 2, 143, 25, 0, // Skip to: 17045
2260/* 10502 */   MCD::OPC_Decode, 204, 8, 94, // Opcode: LWEPX
2261/* 10506 */   MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 10529
2262/* 10511 */   MCD::OPC_CheckField, 21, 5, 0, 127, 25, 0, // Skip to: 17045
2263/* 10518 */   MCD::OPC_CheckField, 0, 2, 2, 120, 25, 0, // Skip to: 17045
2264/* 10525 */   MCD::OPC_Decode, 162, 4, 98, // Opcode: DCBSTEP
2265/* 10529 */   MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 10545
2266/* 10534 */   MCD::OPC_CheckField, 0, 2, 2, 104, 25, 0, // Skip to: 17045
2267/* 10541 */   MCD::OPC_Decode, 241, 7, 94, // Opcode: LBEPX
2268/* 10545 */   MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 10568
2269/* 10550 */   MCD::OPC_CheckField, 21, 5, 0, 88, 25, 0, // Skip to: 17045
2270/* 10557 */   MCD::OPC_CheckField, 0, 2, 2, 81, 25, 0, // Skip to: 17045
2271/* 10564 */   MCD::OPC_Decode, 159, 4, 98, // Opcode: DCBFEP
2272/* 10568 */   MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 10584
2273/* 10573 */   MCD::OPC_CheckField, 0, 2, 2, 65, 25, 0, // Skip to: 17045
2274/* 10580 */   MCD::OPC_Decode, 204, 12, 94, // Opcode: STWEPX
2275/* 10584 */   MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 10600
2276/* 10589 */   MCD::OPC_CheckField, 0, 2, 2, 49, 25, 0, // Skip to: 17045
2277/* 10596 */   MCD::OPC_Decode, 145, 12, 94, // Opcode: STBEPX
2278/* 10600 */   MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 10616
2279/* 10605 */   MCD::OPC_CheckField, 0, 2, 2, 33, 25, 0, // Skip to: 17045
2280/* 10612 */   MCD::OPC_Decode, 166, 4, 119, // Opcode: DCBTSTEP
2281/* 10616 */   MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 10632
2282/* 10621 */   MCD::OPC_CheckField, 0, 2, 2, 17, 25, 0, // Skip to: 17045
2283/* 10628 */   MCD::OPC_Decode, 168, 8, 94, // Opcode: LHEPX
2284/* 10632 */   MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 10648
2285/* 10637 */   MCD::OPC_CheckField, 0, 2, 2, 1, 25, 0, // Skip to: 17045
2286/* 10644 */   MCD::OPC_Decode, 164, 4, 119, // Opcode: DCBTEP
2287/* 10648 */   MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 10664
2288/* 10653 */   MCD::OPC_CheckField, 0, 2, 2, 241, 24, 0, // Skip to: 17045
2289/* 10660 */   MCD::OPC_Decode, 180, 12, 94, // Opcode: STHEPX
2290/* 10664 */   MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 10680
2291/* 10669 */   MCD::OPC_CheckField, 0, 2, 2, 225, 24, 0, // Skip to: 17045
2292/* 10676 */   MCD::OPC_Decode, 146, 8, 106, // Opcode: LFDEPX
2293/* 10680 */   MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 10696
2294/* 10685 */   MCD::OPC_CheckField, 0, 2, 2, 209, 24, 0, // Skip to: 17045
2295/* 10692 */   MCD::OPC_Decode, 166, 12, 106, // Opcode: STFDEPX
2296/* 10696 */   MCD::OPC_FilterValue, 30, 18, 0, 0, // Skip to: 10719
2297/* 10701 */   MCD::OPC_CheckField, 21, 5, 0, 193, 24, 0, // Skip to: 17045
2298/* 10708 */   MCD::OPC_CheckField, 0, 2, 2, 186, 24, 0, // Skip to: 17045
2299/* 10715 */   MCD::OPC_Decode, 229, 7, 98, // Opcode: ICBIEP
2300/* 10719 */   MCD::OPC_FilterValue, 31, 177, 24, 0, // Skip to: 17045
2301/* 10724 */   MCD::OPC_ExtractField, 21, 5,  // Inst{25-21} ...
2302/* 10727 */   MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10743
2303/* 10732 */   MCD::OPC_CheckField, 0, 2, 2, 162, 24, 0, // Skip to: 17045
2304/* 10739 */   MCD::OPC_Decode, 168, 4, 98, // Opcode: DCBZEP
2305/* 10743 */   MCD::OPC_FilterValue, 1, 153, 24, 0, // Skip to: 17045
2306/* 10748 */   MCD::OPC_CheckField, 0, 2, 2, 146, 24, 0, // Skip to: 17045
2307/* 10755 */   MCD::OPC_Decode, 170, 4, 98, // Opcode: DCBZLEP
2308/* 10759 */   MCD::OPC_FilterValue, 32, 4, 0, 0, // Skip to: 10768
2309/* 10764 */   MCD::OPC_Decode, 205, 8, 120, // Opcode: LWZ
2310/* 10768 */   MCD::OPC_FilterValue, 33, 4, 0, 0, // Skip to: 10777
2311/* 10773 */   MCD::OPC_Decode, 208, 8, 120, // Opcode: LWZU
2312/* 10777 */   MCD::OPC_FilterValue, 34, 4, 0, 0, // Skip to: 10786
2313/* 10782 */   MCD::OPC_Decode, 242, 7, 120, // Opcode: LBZ
2314/* 10786 */   MCD::OPC_FilterValue, 35, 4, 0, 0, // Skip to: 10795
2315/* 10791 */   MCD::OPC_Decode, 245, 7, 120, // Opcode: LBZU
2316/* 10795 */   MCD::OPC_FilterValue, 36, 4, 0, 0, // Skip to: 10804
2317/* 10800 */   MCD::OPC_Decode, 198, 12, 120, // Opcode: STW
2318/* 10804 */   MCD::OPC_FilterValue, 37, 4, 0, 0, // Skip to: 10813
2319/* 10809 */   MCD::OPC_Decode, 205, 12, 120, // Opcode: STWU
2320/* 10813 */   MCD::OPC_FilterValue, 38, 4, 0, 0, // Skip to: 10822
2321/* 10818 */   MCD::OPC_Decode, 141, 12, 120, // Opcode: STB
2322/* 10822 */   MCD::OPC_FilterValue, 39, 4, 0, 0, // Skip to: 10831
2323/* 10827 */   MCD::OPC_Decode, 146, 12, 120, // Opcode: STBU
2324/* 10831 */   MCD::OPC_FilterValue, 40, 4, 0, 0, // Skip to: 10840
2325/* 10836 */   MCD::OPC_Decode, 169, 8, 120, // Opcode: LHZ
2326/* 10840 */   MCD::OPC_FilterValue, 41, 4, 0, 0, // Skip to: 10849
2327/* 10845 */   MCD::OPC_Decode, 172, 8, 120, // Opcode: LHZU
2328/* 10849 */   MCD::OPC_FilterValue, 42, 4, 0, 0, // Skip to: 10858
2329/* 10854 */   MCD::OPC_Decode, 156, 8, 120, // Opcode: LHA
2330/* 10858 */   MCD::OPC_FilterValue, 43, 4, 0, 0, // Skip to: 10867
2331/* 10863 */   MCD::OPC_Decode, 160, 8, 120, // Opcode: LHAU
2332/* 10867 */   MCD::OPC_FilterValue, 44, 4, 0, 0, // Skip to: 10876
2333/* 10872 */   MCD::OPC_Decode, 175, 12, 120, // Opcode: STH
2334/* 10876 */   MCD::OPC_FilterValue, 45, 4, 0, 0, // Skip to: 10885
2335/* 10881 */   MCD::OPC_Decode, 181, 12, 120, // Opcode: STHU
2336/* 10885 */   MCD::OPC_FilterValue, 46, 4, 0, 0, // Skip to: 10894
2337/* 10890 */   MCD::OPC_Decode, 185, 8, 120, // Opcode: LMW
2338/* 10894 */   MCD::OPC_FilterValue, 47, 4, 0, 0, // Skip to: 10903
2339/* 10899 */   MCD::OPC_Decode, 190, 12, 120, // Opcode: STMW
2340/* 10903 */   MCD::OPC_FilterValue, 48, 4, 0, 0, // Skip to: 10912
2341/* 10908 */   MCD::OPC_Decode, 152, 8, 121, // Opcode: LFS
2342/* 10912 */   MCD::OPC_FilterValue, 49, 4, 0, 0, // Skip to: 10921
2343/* 10917 */   MCD::OPC_Decode, 153, 8, 121, // Opcode: LFSU
2344/* 10921 */   MCD::OPC_FilterValue, 50, 4, 0, 0, // Skip to: 10930
2345/* 10926 */   MCD::OPC_Decode, 145, 8, 122, // Opcode: LFD
2346/* 10930 */   MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 10939
2347/* 10935 */   MCD::OPC_Decode, 147, 8, 122, // Opcode: LFDU
2348/* 10939 */   MCD::OPC_FilterValue, 52, 4, 0, 0, // Skip to: 10948
2349/* 10944 */   MCD::OPC_Decode, 171, 12, 121, // Opcode: STFS
2350/* 10948 */   MCD::OPC_FilterValue, 53, 4, 0, 0, // Skip to: 10957
2351/* 10953 */   MCD::OPC_Decode, 172, 12, 121, // Opcode: STFSU
2352/* 10957 */   MCD::OPC_FilterValue, 54, 4, 0, 0, // Skip to: 10966
2353/* 10962 */   MCD::OPC_Decode, 165, 12, 122, // Opcode: STFD
2354/* 10966 */   MCD::OPC_FilterValue, 55, 4, 0, 0, // Skip to: 10975
2355/* 10971 */   MCD::OPC_Decode, 167, 12, 122, // Opcode: STFDU
2356/* 10975 */   MCD::OPC_FilterValue, 57, 21, 0, 0, // Skip to: 11001
2357/* 10980 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2358/* 10983 */   MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 10992
2359/* 10988 */   MCD::OPC_Decode, 219, 8, 123, // Opcode: LXSD
2360/* 10992 */   MCD::OPC_FilterValue, 3, 160, 23, 0, // Skip to: 17045
2361/* 10997 */   MCD::OPC_Decode, 225, 8, 123, // Opcode: LXSSP
2362/* 11001 */   MCD::OPC_FilterValue, 58, 30, 0, 0, // Skip to: 11036
2363/* 11006 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
2364/* 11009 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 11018
2365/* 11014 */   MCD::OPC_Decode, 254, 7, 124, // Opcode: LD
2366/* 11018 */   MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 11027
2367/* 11023 */   MCD::OPC_Decode, 133, 8, 124, // Opcode: LDU
2368/* 11027 */   MCD::OPC_FilterValue, 2, 125, 23, 0, // Skip to: 17045
2369/* 11032 */   MCD::OPC_Decode, 194, 8, 124, // Opcode: LWA
2370/* 11036 */   MCD::OPC_FilterValue, 59, 175, 1, 0, // Skip to: 11472
2371/* 11041 */   MCD::OPC_ExtractField, 0, 6,  // Inst{5-0} ...
2372/* 11044 */   MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 11084
2373/* 11049 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2374/* 11052 */   MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 11068
2375/* 11057 */   MCD::OPC_CheckField, 16, 5, 0, 93, 23, 0, // Skip to: 17045
2376/* 11064 */   MCD::OPC_Decode, 248, 6, 125, // Opcode: FCFIDS
2377/* 11068 */   MCD::OPC_FilterValue, 30, 84, 23, 0, // Skip to: 17045
2378/* 11073 */   MCD::OPC_CheckField, 16, 5, 0, 77, 23, 0, // Skip to: 17045
2379/* 11080 */   MCD::OPC_Decode, 251, 6, 125, // Opcode: FCFIDUS
2380/* 11084 */   MCD::OPC_FilterValue, 29, 35, 0, 0, // Skip to: 11124
2381/* 11089 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2382/* 11092 */   MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 11108
2383/* 11097 */   MCD::OPC_CheckField, 16, 5, 0, 53, 23, 0, // Skip to: 17045
2384/* 11104 */   MCD::OPC_Decode, 249, 6, 125, // Opcode: FCFIDS_rec
2385/* 11108 */   MCD::OPC_FilterValue, 30, 44, 23, 0, // Skip to: 17045
2386/* 11113 */   MCD::OPC_CheckField, 16, 5, 0, 37, 23, 0, // Skip to: 17045
2387/* 11120 */   MCD::OPC_Decode, 252, 6, 125, // Opcode: FCFIDUS_rec
2388/* 11124 */   MCD::OPC_FilterValue, 36, 11, 0, 0, // Skip to: 11140
2389/* 11129 */   MCD::OPC_CheckField, 6, 5, 0, 21, 23, 0, // Skip to: 17045
2390/* 11136 */   MCD::OPC_Decode, 150, 7, 126, // Opcode: FDIVS
2391/* 11140 */   MCD::OPC_FilterValue, 37, 11, 0, 0, // Skip to: 11156
2392/* 11145 */   MCD::OPC_CheckField, 6, 5, 0, 5, 23, 0, // Skip to: 17045
2393/* 11152 */   MCD::OPC_Decode, 151, 7, 126, // Opcode: FDIVS_rec
2394/* 11156 */   MCD::OPC_FilterValue, 40, 11, 0, 0, // Skip to: 11172
2395/* 11161 */   MCD::OPC_CheckField, 6, 5, 0, 245, 22, 0, // Skip to: 17045
2396/* 11168 */   MCD::OPC_Decode, 218, 7, 126, // Opcode: FSUBS
2397/* 11172 */   MCD::OPC_FilterValue, 41, 11, 0, 0, // Skip to: 11188
2398/* 11177 */   MCD::OPC_CheckField, 6, 5, 0, 229, 22, 0, // Skip to: 17045
2399/* 11184 */   MCD::OPC_Decode, 219, 7, 126, // Opcode: FSUBS_rec
2400/* 11188 */   MCD::OPC_FilterValue, 42, 11, 0, 0, // Skip to: 11204
2401/* 11193 */   MCD::OPC_CheckField, 6, 5, 0, 213, 22, 0, // Skip to: 17045
2402/* 11200 */   MCD::OPC_Decode, 243, 6, 126, // Opcode: FADDS
2403/* 11204 */   MCD::OPC_FilterValue, 43, 11, 0, 0, // Skip to: 11220
2404/* 11209 */   MCD::OPC_CheckField, 6, 5, 0, 197, 22, 0, // Skip to: 17045
2405/* 11216 */   MCD::OPC_Decode, 244, 6, 126, // Opcode: FADDS_rec
2406/* 11220 */   MCD::OPC_FilterValue, 44, 18, 0, 0, // Skip to: 11243
2407/* 11225 */   MCD::OPC_CheckField, 16, 5, 0, 181, 22, 0, // Skip to: 17045
2408/* 11232 */   MCD::OPC_CheckField, 6, 5, 0, 174, 22, 0, // Skip to: 17045
2409/* 11239 */   MCD::OPC_Decode, 214, 7, 127, // Opcode: FSQRTS
2410/* 11243 */   MCD::OPC_FilterValue, 45, 18, 0, 0, // Skip to: 11266
2411/* 11248 */   MCD::OPC_CheckField, 16, 5, 0, 158, 22, 0, // Skip to: 17045
2412/* 11255 */   MCD::OPC_CheckField, 6, 5, 0, 151, 22, 0, // Skip to: 17045
2413/* 11262 */   MCD::OPC_Decode, 215, 7, 127, // Opcode: FSQRTS_rec
2414/* 11266 */   MCD::OPC_FilterValue, 48, 18, 0, 0, // Skip to: 11289
2415/* 11271 */   MCD::OPC_CheckField, 16, 5, 0, 135, 22, 0, // Skip to: 17045
2416/* 11278 */   MCD::OPC_CheckField, 6, 5, 0, 128, 22, 0, // Skip to: 17045
2417/* 11285 */   MCD::OPC_Decode, 184, 7, 127, // Opcode: FRES
2418/* 11289 */   MCD::OPC_FilterValue, 49, 18, 0, 0, // Skip to: 11312
2419/* 11294 */   MCD::OPC_CheckField, 16, 5, 0, 112, 22, 0, // Skip to: 17045
2420/* 11301 */   MCD::OPC_CheckField, 6, 5, 0, 105, 22, 0, // Skip to: 17045
2421/* 11308 */   MCD::OPC_Decode, 185, 7, 127, // Opcode: FRES_rec
2422/* 11312 */   MCD::OPC_FilterValue, 50, 12, 0, 0, // Skip to: 11329
2423/* 11317 */   MCD::OPC_CheckField, 11, 5, 0, 89, 22, 0, // Skip to: 17045
2424/* 11324 */   MCD::OPC_Decode, 164, 7, 128, 1, // Opcode: FMULS
2425/* 11329 */   MCD::OPC_FilterValue, 51, 12, 0, 0, // Skip to: 11346
2426/* 11334 */   MCD::OPC_CheckField, 11, 5, 0, 72, 22, 0, // Skip to: 17045
2427/* 11341 */   MCD::OPC_Decode, 165, 7, 128, 1, // Opcode: FMULS_rec
2428/* 11346 */   MCD::OPC_FilterValue, 52, 18, 0, 0, // Skip to: 11369
2429/* 11351 */   MCD::OPC_CheckField, 16, 5, 0, 55, 22, 0, // Skip to: 17045
2430/* 11358 */   MCD::OPC_CheckField, 6, 5, 0, 48, 22, 0, // Skip to: 17045
2431/* 11365 */   MCD::OPC_Decode, 206, 7, 127, // Opcode: FRSQRTES
2432/* 11369 */   MCD::OPC_FilterValue, 53, 18, 0, 0, // Skip to: 11392
2433/* 11374 */   MCD::OPC_CheckField, 16, 5, 0, 32, 22, 0, // Skip to: 17045
2434/* 11381 */   MCD::OPC_CheckField, 6, 5, 0, 25, 22, 0, // Skip to: 17045
2435/* 11388 */   MCD::OPC_Decode, 207, 7, 127, // Opcode: FRSQRTES_rec
2436/* 11392 */   MCD::OPC_FilterValue, 56, 5, 0, 0, // Skip to: 11402
2437/* 11397 */   MCD::OPC_Decode, 160, 7, 129, 1, // Opcode: FMSUBS
2438/* 11402 */   MCD::OPC_FilterValue, 57, 5, 0, 0, // Skip to: 11412
2439/* 11407 */   MCD::OPC_Decode, 161, 7, 129, 1, // Opcode: FMSUBS_rec
2440/* 11412 */   MCD::OPC_FilterValue, 58, 5, 0, 0, // Skip to: 11422
2441/* 11417 */   MCD::OPC_Decode, 154, 7, 129, 1, // Opcode: FMADDS
2442/* 11422 */   MCD::OPC_FilterValue, 59, 5, 0, 0, // Skip to: 11432
2443/* 11427 */   MCD::OPC_Decode, 155, 7, 129, 1, // Opcode: FMADDS_rec
2444/* 11432 */   MCD::OPC_FilterValue, 60, 5, 0, 0, // Skip to: 11442
2445/* 11437 */   MCD::OPC_Decode, 180, 7, 129, 1, // Opcode: FNMSUBS
2446/* 11442 */   MCD::OPC_FilterValue, 61, 5, 0, 0, // Skip to: 11452
2447/* 11447 */   MCD::OPC_Decode, 181, 7, 129, 1, // Opcode: FNMSUBS_rec
2448/* 11452 */   MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 11462
2449/* 11457 */   MCD::OPC_Decode, 176, 7, 129, 1, // Opcode: FNMADDS
2450/* 11462 */   MCD::OPC_FilterValue, 63, 202, 21, 0, // Skip to: 17045
2451/* 11467 */   MCD::OPC_Decode, 177, 7, 129, 1, // Opcode: FNMADDS_rec
2452/* 11472 */   MCD::OPC_FilterValue, 60, 242, 13, 0, // Skip to: 15047
2453/* 11477 */   MCD::OPC_ExtractField, 4, 2,  // Inst{5-4} ...
2454/* 11480 */   MCD::OPC_FilterValue, 0, 120, 3, 0, // Skip to: 12373
2455/* 11485 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
2456/* 11488 */   MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 11516
2457/* 11493 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2458/* 11496 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11506
2459/* 11501 */   MCD::OPC_Decode, 244, 15, 130, 1, // Opcode: XSADDSP
2460/* 11506 */   MCD::OPC_FilterValue, 1, 158, 21, 0, // Skip to: 17045
2461/* 11511 */   MCD::OPC_Decode, 162, 16, 131, 1, // Opcode: XSMADDASP
2462/* 11516 */   MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 11544
2463/* 11521 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2464/* 11524 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11534
2465/* 11529 */   MCD::OPC_Decode, 219, 16, 130, 1, // Opcode: XSSUBSP
2466/* 11534 */   MCD::OPC_FilterValue, 1, 130, 21, 0, // Skip to: 17045
2467/* 11539 */   MCD::OPC_Decode, 164, 16, 131, 1, // Opcode: XSMADDMSP
2468/* 11544 */   MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 11572
2469/* 11549 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2470/* 11552 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11562
2471/* 11557 */   MCD::OPC_Decode, 182, 16, 130, 1, // Opcode: XSMULSP
2472/* 11562 */   MCD::OPC_FilterValue, 1, 102, 21, 0, // Skip to: 17045
2473/* 11567 */   MCD::OPC_Decode, 174, 16, 131, 1, // Opcode: XSMSUBASP
2474/* 11572 */   MCD::OPC_FilterValue, 3, 23, 0, 0, // Skip to: 11600
2475/* 11577 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2476/* 11580 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11590
2477/* 11585 */   MCD::OPC_Decode, 158, 16, 130, 1, // Opcode: XSDIVSP
2478/* 11590 */   MCD::OPC_FilterValue, 1, 74, 21, 0, // Skip to: 17045
2479/* 11595 */   MCD::OPC_Decode, 176, 16, 131, 1, // Opcode: XSMSUBMSP
2480/* 11600 */   MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 11628
2481/* 11605 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2482/* 11608 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11618
2483/* 11613 */   MCD::OPC_Decode, 241, 15, 132, 1, // Opcode: XSADDDP
2484/* 11618 */   MCD::OPC_FilterValue, 1, 46, 21, 0, // Skip to: 17045
2485/* 11623 */   MCD::OPC_Decode, 161, 16, 133, 1, // Opcode: XSMADDADP
2486/* 11628 */   MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 11656
2487/* 11633 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2488/* 11636 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11646
2489/* 11641 */   MCD::OPC_Decode, 216, 16, 132, 1, // Opcode: XSSUBDP
2490/* 11646 */   MCD::OPC_FilterValue, 1, 18, 21, 0, // Skip to: 17045
2491/* 11651 */   MCD::OPC_Decode, 163, 16, 133, 1, // Opcode: XSMADDMDP
2492/* 11656 */   MCD::OPC_FilterValue, 6, 23, 0, 0, // Skip to: 11684
2493/* 11661 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2494/* 11664 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11674
2495/* 11669 */   MCD::OPC_Decode, 179, 16, 132, 1, // Opcode: XSMULDP
2496/* 11674 */   MCD::OPC_FilterValue, 1, 246, 20, 0, // Skip to: 17045
2497/* 11679 */   MCD::OPC_Decode, 173, 16, 133, 1, // Opcode: XSMSUBADP
2498/* 11684 */   MCD::OPC_FilterValue, 7, 23, 0, 0, // Skip to: 11712
2499/* 11689 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2500/* 11692 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11702
2501/* 11697 */   MCD::OPC_Decode, 155, 16, 132, 1, // Opcode: XSDIVDP
2502/* 11702 */   MCD::OPC_FilterValue, 1, 218, 20, 0, // Skip to: 17045
2503/* 11707 */   MCD::OPC_Decode, 175, 16, 133, 1, // Opcode: XSMSUBMDP
2504/* 11712 */   MCD::OPC_FilterValue, 8, 23, 0, 0, // Skip to: 11740
2505/* 11717 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2506/* 11720 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11730
2507/* 11725 */   MCD::OPC_Decode, 232, 16, 134, 1, // Opcode: XVADDSP
2508/* 11730 */   MCD::OPC_FilterValue, 1, 190, 20, 0, // Skip to: 17045
2509/* 11735 */   MCD::OPC_Decode, 144, 17, 135, 1, // Opcode: XVMADDASP
2510/* 11740 */   MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 11768
2511/* 11745 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2512/* 11748 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11758
2513/* 11753 */   MCD::OPC_Decode, 186, 17, 134, 1, // Opcode: XVSUBSP
2514/* 11758 */   MCD::OPC_FilterValue, 1, 162, 20, 0, // Skip to: 17045
2515/* 11763 */   MCD::OPC_Decode, 146, 17, 135, 1, // Opcode: XVMADDMSP
2516/* 11768 */   MCD::OPC_FilterValue, 10, 23, 0, 0, // Skip to: 11796
2517/* 11773 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2518/* 11776 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11786
2519/* 11781 */   MCD::OPC_Decode, 156, 17, 134, 1, // Opcode: XVMULSP
2520/* 11786 */   MCD::OPC_FilterValue, 1, 134, 20, 0, // Skip to: 17045
2521/* 11791 */   MCD::OPC_Decode, 152, 17, 135, 1, // Opcode: XVMSUBASP
2522/* 11796 */   MCD::OPC_FilterValue, 11, 23, 0, 0, // Skip to: 11824
2523/* 11801 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2524/* 11804 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11814
2525/* 11809 */   MCD::OPC_Decode, 140, 17, 134, 1, // Opcode: XVDIVSP
2526/* 11814 */   MCD::OPC_FilterValue, 1, 106, 20, 0, // Skip to: 17045
2527/* 11819 */   MCD::OPC_Decode, 154, 17, 135, 1, // Opcode: XVMSUBMSP
2528/* 11824 */   MCD::OPC_FilterValue, 12, 23, 0, 0, // Skip to: 11852
2529/* 11829 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2530/* 11832 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11842
2531/* 11837 */   MCD::OPC_Decode, 231, 16, 134, 1, // Opcode: XVADDDP
2532/* 11842 */   MCD::OPC_FilterValue, 1, 78, 20, 0, // Skip to: 17045
2533/* 11847 */   MCD::OPC_Decode, 143, 17, 135, 1, // Opcode: XVMADDADP
2534/* 11852 */   MCD::OPC_FilterValue, 13, 23, 0, 0, // Skip to: 11880
2535/* 11857 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2536/* 11860 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11870
2537/* 11865 */   MCD::OPC_Decode, 185, 17, 134, 1, // Opcode: XVSUBDP
2538/* 11870 */   MCD::OPC_FilterValue, 1, 50, 20, 0, // Skip to: 17045
2539/* 11875 */   MCD::OPC_Decode, 145, 17, 135, 1, // Opcode: XVMADDMDP
2540/* 11880 */   MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 11908
2541/* 11885 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2542/* 11888 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11898
2543/* 11893 */   MCD::OPC_Decode, 155, 17, 134, 1, // Opcode: XVMULDP
2544/* 11898 */   MCD::OPC_FilterValue, 1, 22, 20, 0, // Skip to: 17045
2545/* 11903 */   MCD::OPC_Decode, 151, 17, 135, 1, // Opcode: XVMSUBADP
2546/* 11908 */   MCD::OPC_FilterValue, 15, 23, 0, 0, // Skip to: 11936
2547/* 11913 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2548/* 11916 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11926
2549/* 11921 */   MCD::OPC_Decode, 139, 17, 134, 1, // Opcode: XVDIVDP
2550/* 11926 */   MCD::OPC_FilterValue, 1, 250, 19, 0, // Skip to: 17045
2551/* 11931 */   MCD::OPC_Decode, 153, 17, 135, 1, // Opcode: XVMSUBMDP
2552/* 11936 */   MCD::OPC_FilterValue, 16, 23, 0, 0, // Skip to: 11964
2553/* 11941 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2554/* 11944 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11954
2555/* 11949 */   MCD::OPC_Decode, 167, 16, 132, 1, // Opcode: XSMAXCDP
2556/* 11954 */   MCD::OPC_FilterValue, 1, 222, 19, 0, // Skip to: 17045
2557/* 11959 */   MCD::OPC_Decode, 188, 16, 131, 1, // Opcode: XSNMADDASP
2558/* 11964 */   MCD::OPC_FilterValue, 17, 23, 0, 0, // Skip to: 11992
2559/* 11969 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2560/* 11972 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11982
2561/* 11977 */   MCD::OPC_Decode, 170, 16, 132, 1, // Opcode: XSMINCDP
2562/* 11982 */   MCD::OPC_FilterValue, 1, 194, 19, 0, // Skip to: 17045
2563/* 11987 */   MCD::OPC_Decode, 190, 16, 131, 1, // Opcode: XSNMADDMSP
2564/* 11992 */   MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 12020
2565/* 11997 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2566/* 12000 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12010
2567/* 12005 */   MCD::OPC_Decode, 169, 16, 136, 1, // Opcode: XSMAXJDP
2568/* 12010 */   MCD::OPC_FilterValue, 1, 166, 19, 0, // Skip to: 17045
2569/* 12015 */   MCD::OPC_Decode, 194, 16, 131, 1, // Opcode: XSNMSUBASP
2570/* 12020 */   MCD::OPC_FilterValue, 19, 23, 0, 0, // Skip to: 12048
2571/* 12025 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2572/* 12028 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12038
2573/* 12033 */   MCD::OPC_Decode, 172, 16, 136, 1, // Opcode: XSMINJDP
2574/* 12038 */   MCD::OPC_FilterValue, 1, 138, 19, 0, // Skip to: 17045
2575/* 12043 */   MCD::OPC_Decode, 196, 16, 131, 1, // Opcode: XSNMSUBMSP
2576/* 12048 */   MCD::OPC_FilterValue, 20, 23, 0, 0, // Skip to: 12076
2577/* 12053 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2578/* 12056 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12066
2579/* 12061 */   MCD::OPC_Decode, 168, 16, 132, 1, // Opcode: XSMAXDP
2580/* 12066 */   MCD::OPC_FilterValue, 1, 110, 19, 0, // Skip to: 17045
2581/* 12071 */   MCD::OPC_Decode, 187, 16, 133, 1, // Opcode: XSNMADDADP
2582/* 12076 */   MCD::OPC_FilterValue, 21, 23, 0, 0, // Skip to: 12104
2583/* 12081 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2584/* 12084 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12094
2585/* 12089 */   MCD::OPC_Decode, 171, 16, 132, 1, // Opcode: XSMINDP
2586/* 12094 */   MCD::OPC_FilterValue, 1, 82, 19, 0, // Skip to: 17045
2587/* 12099 */   MCD::OPC_Decode, 189, 16, 133, 1, // Opcode: XSNMADDMDP
2588/* 12104 */   MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 12132
2589/* 12109 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2590/* 12112 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12122
2591/* 12117 */   MCD::OPC_Decode, 254, 15, 132, 1, // Opcode: XSCPSGNDP
2592/* 12122 */   MCD::OPC_FilterValue, 1, 54, 19, 0, // Skip to: 17045
2593/* 12127 */   MCD::OPC_Decode, 193, 16, 133, 1, // Opcode: XSNMSUBADP
2594/* 12132 */   MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 12149
2595/* 12137 */   MCD::OPC_CheckField, 3, 1, 1, 37, 19, 0, // Skip to: 17045
2596/* 12144 */   MCD::OPC_Decode, 195, 16, 133, 1, // Opcode: XSNMSUBMDP
2597/* 12149 */   MCD::OPC_FilterValue, 24, 23, 0, 0, // Skip to: 12177
2598/* 12154 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2599/* 12157 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12167
2600/* 12162 */   MCD::OPC_Decode, 148, 17, 134, 1, // Opcode: XVMAXSP
2601/* 12167 */   MCD::OPC_FilterValue, 1, 9, 19, 0, // Skip to: 17045
2602/* 12172 */   MCD::OPC_Decode, 162, 17, 135, 1, // Opcode: XVNMADDASP
2603/* 12177 */   MCD::OPC_FilterValue, 25, 23, 0, 0, // Skip to: 12205
2604/* 12182 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2605/* 12185 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12195
2606/* 12190 */   MCD::OPC_Decode, 150, 17, 134, 1, // Opcode: XVMINSP
2607/* 12195 */   MCD::OPC_FilterValue, 1, 237, 18, 0, // Skip to: 17045
2608/* 12200 */   MCD::OPC_Decode, 164, 17, 135, 1, // Opcode: XVNMADDMSP
2609/* 12205 */   MCD::OPC_FilterValue, 26, 23, 0, 0, // Skip to: 12233
2610/* 12210 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2611/* 12213 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12223
2612/* 12218 */   MCD::OPC_Decode, 246, 16, 134, 1, // Opcode: XVCPSGNSP
2613/* 12223 */   MCD::OPC_FilterValue, 1, 209, 18, 0, // Skip to: 17045
2614/* 12228 */   MCD::OPC_Decode, 166, 17, 135, 1, // Opcode: XVNMSUBASP
2615/* 12233 */   MCD::OPC_FilterValue, 27, 23, 0, 0, // Skip to: 12261
2616/* 12238 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2617/* 12241 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12251
2618/* 12246 */   MCD::OPC_Decode, 142, 17, 134, 1, // Opcode: XVIEXPSP
2619/* 12251 */   MCD::OPC_FilterValue, 1, 181, 18, 0, // Skip to: 17045
2620/* 12256 */   MCD::OPC_Decode, 168, 17, 135, 1, // Opcode: XVNMSUBMSP
2621/* 12261 */   MCD::OPC_FilterValue, 28, 23, 0, 0, // Skip to: 12289
2622/* 12266 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2623/* 12269 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12279
2624/* 12274 */   MCD::OPC_Decode, 147, 17, 134, 1, // Opcode: XVMAXDP
2625/* 12279 */   MCD::OPC_FilterValue, 1, 153, 18, 0, // Skip to: 17045
2626/* 12284 */   MCD::OPC_Decode, 161, 17, 135, 1, // Opcode: XVNMADDADP
2627/* 12289 */   MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 12317
2628/* 12294 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2629/* 12297 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12307
2630/* 12302 */   MCD::OPC_Decode, 149, 17, 134, 1, // Opcode: XVMINDP
2631/* 12307 */   MCD::OPC_FilterValue, 1, 125, 18, 0, // Skip to: 17045
2632/* 12312 */   MCD::OPC_Decode, 163, 17, 135, 1, // Opcode: XVNMADDMDP
2633/* 12317 */   MCD::OPC_FilterValue, 30, 23, 0, 0, // Skip to: 12345
2634/* 12322 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2635/* 12325 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12335
2636/* 12330 */   MCD::OPC_Decode, 245, 16, 134, 1, // Opcode: XVCPSGNDP
2637/* 12335 */   MCD::OPC_FilterValue, 1, 97, 18, 0, // Skip to: 17045
2638/* 12340 */   MCD::OPC_Decode, 165, 17, 135, 1, // Opcode: XVNMSUBADP
2639/* 12345 */   MCD::OPC_FilterValue, 31, 87, 18, 0, // Skip to: 17045
2640/* 12350 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2641/* 12353 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12363
2642/* 12358 */   MCD::OPC_Decode, 141, 17, 134, 1, // Opcode: XVIEXPDP
2643/* 12363 */   MCD::OPC_FilterValue, 1, 69, 18, 0, // Skip to: 17045
2644/* 12368 */   MCD::OPC_Decode, 167, 17, 135, 1, // Opcode: XVNMSUBMDP
2645/* 12373 */   MCD::OPC_FilterValue, 1, 97, 2, 0, // Skip to: 12987
2646/* 12378 */   MCD::OPC_ExtractField, 6, 2,  // Inst{7-6} ...
2647/* 12381 */   MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 12517
2648/* 12386 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2649/* 12389 */   MCD::OPC_FilterValue, 0, 41, 0, 0, // Skip to: 12435
2650/* 12394 */   MCD::OPC_ExtractField, 10, 1,  // Inst{10} ...
2651/* 12397 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12407
2652/* 12402 */   MCD::OPC_Decode, 223, 17, 137, 1, // Opcode: XXSLDWI
2653/* 12407 */   MCD::OPC_FilterValue, 1, 25, 18, 0, // Skip to: 17045
2654/* 12412 */   MCD::OPC_ExtractField, 8, 2,  // Inst{9-8} ...
2655/* 12415 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12425
2656/* 12420 */   MCD::OPC_Decode, 203, 17, 134, 1, // Opcode: XXLAND
2657/* 12425 */   MCD::OPC_FilterValue, 1, 7, 18, 0, // Skip to: 17045
2658/* 12430 */   MCD::OPC_Decode, 208, 17, 134, 1, // Opcode: XXLNOR
2659/* 12435 */   MCD::OPC_FilterValue, 1, 253, 17, 0, // Skip to: 17045
2660/* 12440 */   MCD::OPC_ExtractField, 8, 3,  // Inst{10-8} ...
2661/* 12443 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12453
2662/* 12448 */   MCD::OPC_Decode, 245, 15, 136, 1, // Opcode: XSCMPEQDP
2663/* 12453 */   MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 12477
2664/* 12458 */   MCD::OPC_CheckField, 21, 2, 0, 228, 17, 0, // Skip to: 17045
2665/* 12465 */   MCD::OPC_CheckField, 0, 1, 0, 221, 17, 0, // Skip to: 17045
2666/* 12472 */   MCD::OPC_Decode, 252, 15, 138, 1, // Opcode: XSCMPUDP
2667/* 12477 */   MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 12487
2668/* 12482 */   MCD::OPC_Decode, 235, 16, 134, 1, // Opcode: XVCMPEQSP
2669/* 12487 */   MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 12497
2670/* 12492 */   MCD::OPC_Decode, 233, 16, 134, 1, // Opcode: XVCMPEQDP
2671/* 12497 */   MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 12507
2672/* 12502 */   MCD::OPC_Decode, 236, 16, 134, 1, // Opcode: XVCMPEQSP_rec
2673/* 12507 */   MCD::OPC_FilterValue, 7, 181, 17, 0, // Skip to: 17045
2674/* 12512 */   MCD::OPC_Decode, 234, 16, 134, 1, // Opcode: XVCMPEQDP_rec
2675/* 12517 */   MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 12653
2676/* 12522 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2677/* 12525 */   MCD::OPC_FilterValue, 0, 41, 0, 0, // Skip to: 12571
2678/* 12530 */   MCD::OPC_ExtractField, 10, 1,  // Inst{10} ...
2679/* 12533 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12543
2680/* 12538 */   MCD::OPC_Decode, 219, 17, 137, 1, // Opcode: XXPERMDI
2681/* 12543 */   MCD::OPC_FilterValue, 1, 145, 17, 0, // Skip to: 17045
2682/* 12548 */   MCD::OPC_ExtractField, 8, 2,  // Inst{9-8} ...
2683/* 12551 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12561
2684/* 12556 */   MCD::OPC_Decode, 204, 17, 134, 1, // Opcode: XXLANDC
2685/* 12561 */   MCD::OPC_FilterValue, 1, 127, 17, 0, // Skip to: 17045
2686/* 12566 */   MCD::OPC_Decode, 210, 17, 134, 1, // Opcode: XXLORC
2687/* 12571 */   MCD::OPC_FilterValue, 1, 117, 17, 0, // Skip to: 17045
2688/* 12576 */   MCD::OPC_ExtractField, 8, 3,  // Inst{10-8} ...
2689/* 12579 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12589
2690/* 12584 */   MCD::OPC_Decode, 249, 15, 136, 1, // Opcode: XSCMPGTDP
2691/* 12589 */   MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 12613
2692/* 12594 */   MCD::OPC_CheckField, 21, 2, 0, 92, 17, 0, // Skip to: 17045
2693/* 12601 */   MCD::OPC_CheckField, 0, 1, 0, 85, 17, 0, // Skip to: 17045
2694/* 12608 */   MCD::OPC_Decode, 250, 15, 138, 1, // Opcode: XSCMPODP
2695/* 12613 */   MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 12623
2696/* 12618 */   MCD::OPC_Decode, 243, 16, 134, 1, // Opcode: XVCMPGTSP
2697/* 12623 */   MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 12633
2698/* 12628 */   MCD::OPC_Decode, 241, 16, 134, 1, // Opcode: XVCMPGTDP
2699/* 12633 */   MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 12643
2700/* 12638 */   MCD::OPC_Decode, 244, 16, 134, 1, // Opcode: XVCMPGTSP_rec
2701/* 12643 */   MCD::OPC_FilterValue, 7, 45, 17, 0, // Skip to: 17045
2702/* 12648 */   MCD::OPC_Decode, 242, 16, 134, 1, // Opcode: XVCMPGTDP_rec
2703/* 12653 */   MCD::OPC_FilterValue, 2, 186, 0, 0, // Skip to: 12844
2704/* 12658 */   MCD::OPC_ExtractField, 8, 3,  // Inst{10-8} ...
2705/* 12661 */   MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 12689
2706/* 12666 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2707/* 12669 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12679
2708/* 12674 */   MCD::OPC_Decode, 216, 17, 134, 1, // Opcode: XXMRGHW
2709/* 12679 */   MCD::OPC_FilterValue, 1, 9, 17, 0, // Skip to: 17045
2710/* 12684 */   MCD::OPC_Decode, 248, 15, 136, 1, // Opcode: XSCMPGEDP
2711/* 12689 */   MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 12706
2712/* 12694 */   MCD::OPC_CheckField, 3, 1, 0, 248, 16, 0, // Skip to: 17045
2713/* 12701 */   MCD::OPC_Decode, 217, 17, 134, 1, // Opcode: XXMRGLW
2714/* 12706 */   MCD::OPC_FilterValue, 2, 48, 0, 0, // Skip to: 12759
2715/* 12711 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2716/* 12714 */   MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 12749
2717/* 12719 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2718/* 12722 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 12739
2719/* 12727 */   MCD::OPC_CheckField, 18, 3, 0, 215, 16, 0, // Skip to: 17045
2720/* 12734 */   MCD::OPC_Decode, 226, 17, 139, 1, // Opcode: XXSPLTW
2721/* 12739 */   MCD::OPC_FilterValue, 1, 205, 16, 0, // Skip to: 17045
2722/* 12744 */   MCD::OPC_Decode, 201, 17, 140, 1, // Opcode: XXEXTRACTUW
2723/* 12749 */   MCD::OPC_FilterValue, 1, 195, 16, 0, // Skip to: 17045
2724/* 12754 */   MCD::OPC_Decode, 239, 16, 134, 1, // Opcode: XVCMPGESP
2725/* 12759 */   MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 12776
2726/* 12764 */   MCD::OPC_CheckField, 3, 1, 1, 178, 16, 0, // Skip to: 17045
2727/* 12771 */   MCD::OPC_Decode, 237, 16, 134, 1, // Opcode: XVCMPGEDP
2728/* 12776 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 12793
2729/* 12781 */   MCD::OPC_CheckField, 3, 1, 0, 161, 16, 0, // Skip to: 17045
2730/* 12788 */   MCD::OPC_Decode, 209, 17, 134, 1, // Opcode: XXLOR
2731/* 12793 */   MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 12810
2732/* 12798 */   MCD::OPC_CheckField, 3, 1, 0, 144, 16, 0, // Skip to: 17045
2733/* 12805 */   MCD::OPC_Decode, 207, 17, 134, 1, // Opcode: XXLNAND
2734/* 12810 */   MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 12827
2735/* 12815 */   MCD::OPC_CheckField, 3, 1, 1, 127, 16, 0, // Skip to: 17045
2736/* 12822 */   MCD::OPC_Decode, 240, 16, 134, 1, // Opcode: XVCMPGESP_rec
2737/* 12827 */   MCD::OPC_FilterValue, 7, 117, 16, 0, // Skip to: 17045
2738/* 12832 */   MCD::OPC_CheckField, 3, 1, 1, 110, 16, 0, // Skip to: 17045
2739/* 12839 */   MCD::OPC_Decode, 238, 16, 134, 1, // Opcode: XVCMPGEDP_rec
2740/* 12844 */   MCD::OPC_FilterValue, 3, 100, 16, 0, // Skip to: 17045
2741/* 12849 */   MCD::OPC_ExtractField, 8, 3,  // Inst{10-8} ...
2742/* 12852 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 12869
2743/* 12857 */   MCD::OPC_CheckField, 3, 1, 0, 85, 16, 0, // Skip to: 17045
2744/* 12864 */   MCD::OPC_Decode, 218, 17, 134, 1, // Opcode: XXPERM
2745/* 12869 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 12911
2746/* 12874 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2747/* 12877 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12887
2748/* 12882 */   MCD::OPC_Decode, 221, 17, 134, 1, // Opcode: XXPERMR
2749/* 12887 */   MCD::OPC_FilterValue, 1, 57, 16, 0, // Skip to: 17045
2750/* 12892 */   MCD::OPC_CheckField, 21, 2, 0, 50, 16, 0, // Skip to: 17045
2751/* 12899 */   MCD::OPC_CheckField, 0, 1, 0, 43, 16, 0, // Skip to: 17045
2752/* 12906 */   MCD::OPC_Decode, 246, 15, 138, 1, // Opcode: XSCMPEXPDP
2753/* 12911 */   MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 12953
2754/* 12916 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2755/* 12919 */   MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 12943
2756/* 12924 */   MCD::OPC_CheckField, 19, 2, 0, 18, 16, 0, // Skip to: 17045
2757/* 12931 */   MCD::OPC_CheckField, 1, 1, 0, 11, 16, 0, // Skip to: 17045
2758/* 12938 */   MCD::OPC_Decode, 225, 17, 141, 1, // Opcode: XXSPLTIB
2759/* 12943 */   MCD::OPC_FilterValue, 1, 1, 16, 0, // Skip to: 17045
2760/* 12948 */   MCD::OPC_Decode, 202, 17, 142, 1, // Opcode: XXINSERTW
2761/* 12953 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 12970
2762/* 12958 */   MCD::OPC_CheckField, 3, 1, 0, 240, 15, 0, // Skip to: 17045
2763/* 12965 */   MCD::OPC_Decode, 212, 17, 134, 1, // Opcode: XXLXOR
2764/* 12970 */   MCD::OPC_FilterValue, 5, 230, 15, 0, // Skip to: 17045
2765/* 12975 */   MCD::OPC_CheckField, 3, 1, 0, 223, 15, 0, // Skip to: 17045
2766/* 12982 */   MCD::OPC_Decode, 205, 17, 134, 1, // Opcode: XXLEQV
2767/* 12987 */   MCD::OPC_FilterValue, 2, 253, 7, 0, // Skip to: 15037
2768/* 12992 */   MCD::OPC_ExtractField, 7, 4,  // Inst{10-7} ...
2769/* 12995 */   MCD::OPC_FilterValue, 0, 69, 0, 0, // Skip to: 13069
2770/* 13000 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2771/* 13003 */   MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13045
2772/* 13008 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2773/* 13011 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13028
2774/* 13016 */   MCD::OPC_CheckField, 16, 5, 0, 182, 15, 0, // Skip to: 17045
2775/* 13023 */   MCD::OPC_Decode, 211, 16, 143, 1, // Opcode: XSRSQRTESP
2776/* 13028 */   MCD::OPC_FilterValue, 1, 172, 15, 0, // Skip to: 17045
2777/* 13033 */   MCD::OPC_CheckField, 16, 5, 0, 165, 15, 0, // Skip to: 17045
2778/* 13040 */   MCD::OPC_Decode, 205, 16, 143, 1, // Opcode: XSRESP
2779/* 13045 */   MCD::OPC_FilterValue, 3, 155, 15, 0, // Skip to: 17045
2780/* 13050 */   MCD::OPC_CheckField, 16, 5, 0, 148, 15, 0, // Skip to: 17045
2781/* 13057 */   MCD::OPC_CheckField, 6, 1, 0, 141, 15, 0, // Skip to: 17045
2782/* 13064 */   MCD::OPC_Decode, 215, 16, 143, 1, // Opcode: XSSQRTSP
2783/* 13069 */   MCD::OPC_FilterValue, 2, 153, 0, 0, // Skip to: 13227
2784/* 13074 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2785/* 13077 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13119
2786/* 13082 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2787/* 13085 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13102
2788/* 13090 */   MCD::OPC_CheckField, 16, 5, 0, 108, 15, 0, // Skip to: 17045
2789/* 13097 */   MCD::OPC_Decode, 138, 16, 144, 1, // Opcode: XSCVDPUXWS
2790/* 13102 */   MCD::OPC_FilterValue, 1, 98, 15, 0, // Skip to: 17045
2791/* 13107 */   MCD::OPC_CheckField, 16, 5, 0, 91, 15, 0, // Skip to: 17045
2792/* 13114 */   MCD::OPC_Decode, 134, 16, 144, 1, // Opcode: XSCVDPSXWS
2793/* 13119 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13161
2794/* 13124 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2795/* 13127 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13144
2796/* 13132 */   MCD::OPC_CheckField, 16, 5, 0, 66, 15, 0, // Skip to: 17045
2797/* 13139 */   MCD::OPC_Decode, 199, 16, 144, 1, // Opcode: XSRDPI
2798/* 13144 */   MCD::OPC_FilterValue, 1, 56, 15, 0, // Skip to: 17045
2799/* 13149 */   MCD::OPC_CheckField, 16, 5, 0, 49, 15, 0, // Skip to: 17045
2800/* 13156 */   MCD::OPC_Decode, 203, 16, 144, 1, // Opcode: XSRDPIZ
2801/* 13161 */   MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13203
2802/* 13166 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2803/* 13169 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13186
2804/* 13174 */   MCD::OPC_CheckField, 16, 5, 0, 24, 15, 0, // Skip to: 17045
2805/* 13181 */   MCD::OPC_Decode, 210, 16, 144, 1, // Opcode: XSRSQRTEDP
2806/* 13186 */   MCD::OPC_FilterValue, 1, 14, 15, 0, // Skip to: 17045
2807/* 13191 */   MCD::OPC_CheckField, 16, 5, 0, 7, 15, 0, // Skip to: 17045
2808/* 13198 */   MCD::OPC_Decode, 204, 16, 144, 1, // Opcode: XSREDP
2809/* 13203 */   MCD::OPC_FilterValue, 3, 253, 14, 0, // Skip to: 17045
2810/* 13208 */   MCD::OPC_CheckField, 16, 5, 0, 246, 14, 0, // Skip to: 17045
2811/* 13215 */   MCD::OPC_CheckField, 6, 1, 0, 239, 14, 0, // Skip to: 17045
2812/* 13222 */   MCD::OPC_Decode, 212, 16, 144, 1, // Opcode: XSSQRTDP
2813/* 13227 */   MCD::OPC_FilterValue, 3, 140, 0, 0, // Skip to: 13372
2814/* 13232 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2815/* 13235 */   MCD::OPC_FilterValue, 0, 51, 0, 0, // Skip to: 13291
2816/* 13240 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2817/* 13243 */   MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13267
2818/* 13248 */   MCD::OPC_CheckField, 16, 5, 0, 206, 14, 0, // Skip to: 17045
2819/* 13255 */   MCD::OPC_CheckField, 2, 1, 1, 199, 14, 0, // Skip to: 17045
2820/* 13262 */   MCD::OPC_Decode, 202, 16, 144, 1, // Opcode: XSRDPIP
2821/* 13267 */   MCD::OPC_FilterValue, 1, 189, 14, 0, // Skip to: 17045
2822/* 13272 */   MCD::OPC_CheckField, 16, 5, 0, 182, 14, 0, // Skip to: 17045
2823/* 13279 */   MCD::OPC_CheckField, 2, 1, 1, 175, 14, 0, // Skip to: 17045
2824/* 13286 */   MCD::OPC_Decode, 201, 16, 144, 1, // Opcode: XSRDPIM
2825/* 13291 */   MCD::OPC_FilterValue, 1, 165, 14, 0, // Skip to: 17045
2826/* 13296 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2827/* 13299 */   MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 13348
2828/* 13304 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2829/* 13307 */   MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13331
2830/* 13312 */   MCD::OPC_CheckField, 16, 7, 0, 142, 14, 0, // Skip to: 17045
2831/* 13319 */   MCD::OPC_CheckField, 0, 1, 0, 135, 14, 0, // Skip to: 17045
2832/* 13326 */   MCD::OPC_Decode, 221, 16, 145, 1, // Opcode: XSTSQRTDP
2833/* 13331 */   MCD::OPC_FilterValue, 1, 125, 14, 0, // Skip to: 17045
2834/* 13336 */   MCD::OPC_CheckField, 16, 5, 0, 118, 14, 0, // Skip to: 17045
2835/* 13343 */   MCD::OPC_Decode, 200, 16, 144, 1, // Opcode: XSRDPIC
2836/* 13348 */   MCD::OPC_FilterValue, 1, 108, 14, 0, // Skip to: 17045
2837/* 13353 */   MCD::OPC_CheckField, 21, 2, 0, 101, 14, 0, // Skip to: 17045
2838/* 13360 */   MCD::OPC_CheckField, 0, 1, 0, 94, 14, 0, // Skip to: 17045
2839/* 13367 */   MCD::OPC_Decode, 220, 16, 138, 1, // Opcode: XSTDIVDP
2840/* 13372 */   MCD::OPC_FilterValue, 4, 153, 0, 0, // Skip to: 13530
2841/* 13377 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2842/* 13380 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13422
2843/* 13385 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2844/* 13388 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13405
2845/* 13393 */   MCD::OPC_CheckField, 16, 5, 0, 61, 14, 0, // Skip to: 17045
2846/* 13400 */   MCD::OPC_Decode, 130, 17, 146, 1, // Opcode: XVCVSPUXWS
2847/* 13405 */   MCD::OPC_FilterValue, 1, 51, 14, 0, // Skip to: 17045
2848/* 13410 */   MCD::OPC_CheckField, 16, 5, 0, 44, 14, 0, // Skip to: 17045
2849/* 13417 */   MCD::OPC_Decode, 128, 17, 146, 1, // Opcode: XVCVSPSXWS
2850/* 13422 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13464
2851/* 13427 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2852/* 13430 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13447
2853/* 13435 */   MCD::OPC_CheckField, 16, 5, 0, 19, 14, 0, // Skip to: 17045
2854/* 13442 */   MCD::OPC_Decode, 176, 17, 146, 1, // Opcode: XVRSPI
2855/* 13447 */   MCD::OPC_FilterValue, 1, 9, 14, 0, // Skip to: 17045
2856/* 13452 */   MCD::OPC_CheckField, 16, 5, 0, 2, 14, 0, // Skip to: 17045
2857/* 13459 */   MCD::OPC_Decode, 180, 17, 146, 1, // Opcode: XVRSPIZ
2858/* 13464 */   MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13506
2859/* 13469 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2860/* 13472 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13489
2861/* 13477 */   MCD::OPC_CheckField, 16, 5, 0, 233, 13, 0, // Skip to: 17045
2862/* 13484 */   MCD::OPC_Decode, 182, 17, 146, 1, // Opcode: XVRSQRTESP
2863/* 13489 */   MCD::OPC_FilterValue, 1, 223, 13, 0, // Skip to: 17045
2864/* 13494 */   MCD::OPC_CheckField, 16, 5, 0, 216, 13, 0, // Skip to: 17045
2865/* 13501 */   MCD::OPC_Decode, 175, 17, 146, 1, // Opcode: XVRESP
2866/* 13506 */   MCD::OPC_FilterValue, 3, 206, 13, 0, // Skip to: 17045
2867/* 13511 */   MCD::OPC_CheckField, 16, 5, 0, 199, 13, 0, // Skip to: 17045
2868/* 13518 */   MCD::OPC_CheckField, 6, 1, 0, 192, 13, 0, // Skip to: 17045
2869/* 13525 */   MCD::OPC_Decode, 184, 17, 146, 1, // Opcode: XVSQRTSP
2870/* 13530 */   MCD::OPC_FilterValue, 5, 176, 0, 0, // Skip to: 13711
2871/* 13535 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2872/* 13538 */   MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 13630
2873/* 13543 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2874/* 13546 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13588
2875/* 13551 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2876/* 13554 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13571
2877/* 13559 */   MCD::OPC_CheckField, 16, 5, 0, 151, 13, 0, // Skip to: 17045
2878/* 13566 */   MCD::OPC_Decode, 138, 17, 146, 1, // Opcode: XVCVUXWSP
2879/* 13571 */   MCD::OPC_FilterValue, 1, 141, 13, 0, // Skip to: 17045
2880/* 13576 */   MCD::OPC_CheckField, 16, 5, 0, 134, 13, 0, // Skip to: 17045
2881/* 13583 */   MCD::OPC_Decode, 134, 17, 146, 1, // Opcode: XVCVSXWSP
2882/* 13588 */   MCD::OPC_FilterValue, 1, 124, 13, 0, // Skip to: 17045
2883/* 13593 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2884/* 13596 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13613
2885/* 13601 */   MCD::OPC_CheckField, 16, 5, 0, 109, 13, 0, // Skip to: 17045
2886/* 13608 */   MCD::OPC_Decode, 179, 17, 146, 1, // Opcode: XVRSPIP
2887/* 13613 */   MCD::OPC_FilterValue, 1, 99, 13, 0, // Skip to: 17045
2888/* 13618 */   MCD::OPC_CheckField, 16, 5, 0, 92, 13, 0, // Skip to: 17045
2889/* 13625 */   MCD::OPC_Decode, 178, 17, 146, 1, // Opcode: XVRSPIM
2890/* 13630 */   MCD::OPC_FilterValue, 1, 82, 13, 0, // Skip to: 17045
2891/* 13635 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2892/* 13638 */   MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 13687
2893/* 13643 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2894/* 13646 */   MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13670
2895/* 13651 */   MCD::OPC_CheckField, 16, 7, 0, 59, 13, 0, // Skip to: 17045
2896/* 13658 */   MCD::OPC_CheckField, 0, 1, 0, 52, 13, 0, // Skip to: 17045
2897/* 13665 */   MCD::OPC_Decode, 190, 17, 147, 1, // Opcode: XVTSQRTSP
2898/* 13670 */   MCD::OPC_FilterValue, 1, 42, 13, 0, // Skip to: 17045
2899/* 13675 */   MCD::OPC_CheckField, 16, 5, 0, 35, 13, 0, // Skip to: 17045
2900/* 13682 */   MCD::OPC_Decode, 177, 17, 146, 1, // Opcode: XVRSPIC
2901/* 13687 */   MCD::OPC_FilterValue, 1, 25, 13, 0, // Skip to: 17045
2902/* 13692 */   MCD::OPC_CheckField, 21, 2, 0, 18, 13, 0, // Skip to: 17045
2903/* 13699 */   MCD::OPC_CheckField, 0, 1, 0, 11, 13, 0, // Skip to: 17045
2904/* 13706 */   MCD::OPC_Decode, 188, 17, 148, 1, // Opcode: XVTDIVSP
2905/* 13711 */   MCD::OPC_FilterValue, 6, 153, 0, 0, // Skip to: 13869
2906/* 13716 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2907/* 13719 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13761
2908/* 13724 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2909/* 13727 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13744
2910/* 13732 */   MCD::OPC_CheckField, 16, 5, 0, 234, 12, 0, // Skip to: 17045
2911/* 13739 */   MCD::OPC_Decode, 251, 16, 146, 1, // Opcode: XVCVDPUXWS
2912/* 13744 */   MCD::OPC_FilterValue, 1, 224, 12, 0, // Skip to: 17045
2913/* 13749 */   MCD::OPC_CheckField, 16, 5, 0, 217, 12, 0, // Skip to: 17045
2914/* 13756 */   MCD::OPC_Decode, 249, 16, 146, 1, // Opcode: XVCVDPSXWS
2915/* 13761 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13803
2916/* 13766 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2917/* 13769 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13786
2918/* 13774 */   MCD::OPC_CheckField, 16, 5, 0, 192, 12, 0, // Skip to: 17045
2919/* 13781 */   MCD::OPC_Decode, 169, 17, 146, 1, // Opcode: XVRDPI
2920/* 13786 */   MCD::OPC_FilterValue, 1, 182, 12, 0, // Skip to: 17045
2921/* 13791 */   MCD::OPC_CheckField, 16, 5, 0, 175, 12, 0, // Skip to: 17045
2922/* 13798 */   MCD::OPC_Decode, 173, 17, 146, 1, // Opcode: XVRDPIZ
2923/* 13803 */   MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13845
2924/* 13808 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2925/* 13811 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13828
2926/* 13816 */   MCD::OPC_CheckField, 16, 5, 0, 150, 12, 0, // Skip to: 17045
2927/* 13823 */   MCD::OPC_Decode, 181, 17, 146, 1, // Opcode: XVRSQRTEDP
2928/* 13828 */   MCD::OPC_FilterValue, 1, 140, 12, 0, // Skip to: 17045
2929/* 13833 */   MCD::OPC_CheckField, 16, 5, 0, 133, 12, 0, // Skip to: 17045
2930/* 13840 */   MCD::OPC_Decode, 174, 17, 146, 1, // Opcode: XVREDP
2931/* 13845 */   MCD::OPC_FilterValue, 3, 123, 12, 0, // Skip to: 17045
2932/* 13850 */   MCD::OPC_CheckField, 16, 5, 0, 116, 12, 0, // Skip to: 17045
2933/* 13857 */   MCD::OPC_CheckField, 6, 1, 0, 109, 12, 0, // Skip to: 17045
2934/* 13864 */   MCD::OPC_Decode, 183, 17, 146, 1, // Opcode: XVSQRTDP
2935/* 13869 */   MCD::OPC_FilterValue, 7, 176, 0, 0, // Skip to: 14050
2936/* 13874 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
2937/* 13877 */   MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 13969
2938/* 13882 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2939/* 13885 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13927
2940/* 13890 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2941/* 13893 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13910
2942/* 13898 */   MCD::OPC_CheckField, 16, 5, 0, 68, 12, 0, // Skip to: 17045
2943/* 13905 */   MCD::OPC_Decode, 137, 17, 146, 1, // Opcode: XVCVUXWDP
2944/* 13910 */   MCD::OPC_FilterValue, 1, 58, 12, 0, // Skip to: 17045
2945/* 13915 */   MCD::OPC_CheckField, 16, 5, 0, 51, 12, 0, // Skip to: 17045
2946/* 13922 */   MCD::OPC_Decode, 133, 17, 146, 1, // Opcode: XVCVSXWDP
2947/* 13927 */   MCD::OPC_FilterValue, 1, 41, 12, 0, // Skip to: 17045
2948/* 13932 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2949/* 13935 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13952
2950/* 13940 */   MCD::OPC_CheckField, 16, 5, 0, 26, 12, 0, // Skip to: 17045
2951/* 13947 */   MCD::OPC_Decode, 172, 17, 146, 1, // Opcode: XVRDPIP
2952/* 13952 */   MCD::OPC_FilterValue, 1, 16, 12, 0, // Skip to: 17045
2953/* 13957 */   MCD::OPC_CheckField, 16, 5, 0, 9, 12, 0, // Skip to: 17045
2954/* 13964 */   MCD::OPC_Decode, 171, 17, 146, 1, // Opcode: XVRDPIM
2955/* 13969 */   MCD::OPC_FilterValue, 1, 255, 11, 0, // Skip to: 17045
2956/* 13974 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2957/* 13977 */   MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 14026
2958/* 13982 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
2959/* 13985 */   MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 14009
2960/* 13990 */   MCD::OPC_CheckField, 16, 7, 0, 232, 11, 0, // Skip to: 17045
2961/* 13997 */   MCD::OPC_CheckField, 0, 1, 0, 225, 11, 0, // Skip to: 17045
2962/* 14004 */   MCD::OPC_Decode, 189, 17, 147, 1, // Opcode: XVTSQRTDP
2963/* 14009 */   MCD::OPC_FilterValue, 1, 215, 11, 0, // Skip to: 17045
2964/* 14014 */   MCD::OPC_CheckField, 16, 5, 0, 208, 11, 0, // Skip to: 17045
2965/* 14021 */   MCD::OPC_Decode, 170, 17, 146, 1, // Opcode: XVRDPIC
2966/* 14026 */   MCD::OPC_FilterValue, 1, 198, 11, 0, // Skip to: 17045
2967/* 14031 */   MCD::OPC_CheckField, 21, 2, 0, 191, 11, 0, // Skip to: 17045
2968/* 14038 */   MCD::OPC_CheckField, 0, 1, 0, 184, 11, 0, // Skip to: 17045
2969/* 14045 */   MCD::OPC_Decode, 187, 17, 148, 1, // Opcode: XVTDIVDP
2970/* 14050 */   MCD::OPC_FilterValue, 8, 69, 0, 0, // Skip to: 14124
2971/* 14055 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2972/* 14058 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14100
2973/* 14063 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2974/* 14066 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14083
2975/* 14071 */   MCD::OPC_CheckField, 16, 5, 0, 151, 11, 0, // Skip to: 17045
2976/* 14078 */   MCD::OPC_Decode, 130, 16, 144, 1, // Opcode: XSCVDPSP
2977/* 14083 */   MCD::OPC_FilterValue, 1, 141, 11, 0, // Skip to: 17045
2978/* 14088 */   MCD::OPC_CheckField, 16, 5, 0, 134, 11, 0, // Skip to: 17045
2979/* 14095 */   MCD::OPC_Decode, 209, 16, 149, 1, // Opcode: XSRSP
2980/* 14100 */   MCD::OPC_FilterValue, 3, 124, 11, 0, // Skip to: 17045
2981/* 14105 */   MCD::OPC_CheckField, 16, 5, 0, 117, 11, 0, // Skip to: 17045
2982/* 14112 */   MCD::OPC_CheckField, 6, 1, 0, 110, 11, 0, // Skip to: 17045
2983/* 14119 */   MCD::OPC_Decode, 131, 16, 150, 1, // Opcode: XSCVDPSPN
2984/* 14124 */   MCD::OPC_FilterValue, 9, 69, 0, 0, // Skip to: 14198
2985/* 14129 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
2986/* 14132 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14174
2987/* 14137 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
2988/* 14140 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14157
2989/* 14145 */   MCD::OPC_CheckField, 16, 5, 0, 77, 11, 0, // Skip to: 17045
2990/* 14152 */   MCD::OPC_Decode, 154, 16, 149, 1, // Opcode: XSCVUXDSP
2991/* 14157 */   MCD::OPC_FilterValue, 1, 67, 11, 0, // Skip to: 17045
2992/* 14162 */   MCD::OPC_CheckField, 16, 5, 0, 60, 11, 0, // Skip to: 17045
2993/* 14169 */   MCD::OPC_Decode, 151, 16, 149, 1, // Opcode: XSCVSXDSP
2994/* 14174 */   MCD::OPC_FilterValue, 2, 50, 11, 0, // Skip to: 17045
2995/* 14179 */   MCD::OPC_CheckField, 6, 1, 0, 43, 11, 0, // Skip to: 17045
2996/* 14186 */   MCD::OPC_CheckField, 0, 1, 0, 36, 11, 0, // Skip to: 17045
2997/* 14193 */   MCD::OPC_Decode, 224, 16, 151, 1, // Opcode: XSTSTDCSP
2998/* 14198 */   MCD::OPC_FilterValue, 10, 181, 0, 0, // Skip to: 14384
2999/* 14203 */   MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
3000/* 14206 */   MCD::OPC_FilterValue, 0, 94, 0, 0, // Skip to: 14305
3001/* 14211 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
3002/* 14214 */   MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 14242
3003/* 14219 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3004/* 14222 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14232
3005/* 14227 */   MCD::OPC_Decode, 136, 16, 144, 1, // Opcode: XSCVDPUXDS
3006/* 14232 */   MCD::OPC_FilterValue, 1, 248, 10, 0, // Skip to: 17045
3007/* 14237 */   MCD::OPC_Decode, 132, 16, 144, 1, // Opcode: XSCVDPSXDS
3008/* 14242 */   MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 14270
3009/* 14247 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3010/* 14250 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14260
3011/* 14255 */   MCD::OPC_Decode, 148, 16, 144, 1, // Opcode: XSCVSPDP
3012/* 14260 */   MCD::OPC_FilterValue, 1, 220, 10, 0, // Skip to: 17045
3013/* 14265 */   MCD::OPC_Decode, 239, 15, 144, 1, // Opcode: XSABSDP
3014/* 14270 */   MCD::OPC_FilterValue, 3, 210, 10, 0, // Skip to: 17045
3015/* 14275 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3016/* 14278 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14288
3017/* 14283 */   MCD::OPC_Decode, 149, 16, 152, 1, // Opcode: XSCVSPDPN
3018/* 14288 */   MCD::OPC_FilterValue, 1, 192, 10, 0, // Skip to: 17045
3019/* 14293 */   MCD::OPC_CheckField, 0, 1, 0, 185, 10, 0, // Skip to: 17045
3020/* 14300 */   MCD::OPC_Decode, 225, 16, 153, 1, // Opcode: XSXEXPDP
3021/* 14305 */   MCD::OPC_FilterValue, 1, 26, 0, 0, // Skip to: 14336
3022/* 14310 */   MCD::OPC_CheckField, 6, 1, 1, 168, 10, 0, // Skip to: 17045
3023/* 14317 */   MCD::OPC_CheckField, 2, 2, 3, 161, 10, 0, // Skip to: 17045
3024/* 14324 */   MCD::OPC_CheckField, 0, 1, 0, 154, 10, 0, // Skip to: 17045
3025/* 14331 */   MCD::OPC_Decode, 227, 16, 153, 1, // Opcode: XSXSIGDP
3026/* 14336 */   MCD::OPC_FilterValue, 16, 19, 0, 0, // Skip to: 14360
3027/* 14341 */   MCD::OPC_CheckField, 6, 1, 1, 137, 10, 0, // Skip to: 17045
3028/* 14348 */   MCD::OPC_CheckField, 2, 2, 3, 130, 10, 0, // Skip to: 17045
3029/* 14355 */   MCD::OPC_Decode, 140, 16, 144, 1, // Opcode: XSCVHPDP
3030/* 14360 */   MCD::OPC_FilterValue, 17, 120, 10, 0, // Skip to: 17045
3031/* 14365 */   MCD::OPC_CheckField, 6, 1, 1, 113, 10, 0, // Skip to: 17045
3032/* 14372 */   MCD::OPC_CheckField, 2, 2, 3, 106, 10, 0, // Skip to: 17045
3033/* 14379 */   MCD::OPC_Decode, 128, 16, 144, 1, // Opcode: XSCVDPHP
3034/* 14384 */   MCD::OPC_FilterValue, 11, 111, 0, 0, // Skip to: 14500
3035/* 14389 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
3036/* 14392 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14434
3037/* 14397 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3038/* 14400 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14417
3039/* 14405 */   MCD::OPC_CheckField, 16, 5, 0, 73, 10, 0, // Skip to: 17045
3040/* 14412 */   MCD::OPC_Decode, 153, 16, 144, 1, // Opcode: XSCVUXDDP
3041/* 14417 */   MCD::OPC_FilterValue, 1, 63, 10, 0, // Skip to: 17045
3042/* 14422 */   MCD::OPC_CheckField, 16, 5, 0, 56, 10, 0, // Skip to: 17045
3043/* 14429 */   MCD::OPC_Decode, 150, 16, 144, 1, // Opcode: XSCVSXDDP
3044/* 14434 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14476
3045/* 14439 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3046/* 14442 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14459
3047/* 14447 */   MCD::OPC_CheckField, 16, 5, 0, 31, 10, 0, // Skip to: 17045
3048/* 14454 */   MCD::OPC_Decode, 183, 16, 144, 1, // Opcode: XSNABSDP
3049/* 14459 */   MCD::OPC_FilterValue, 1, 21, 10, 0, // Skip to: 17045
3050/* 14464 */   MCD::OPC_CheckField, 16, 5, 0, 14, 10, 0, // Skip to: 17045
3051/* 14471 */   MCD::OPC_Decode, 185, 16, 144, 1, // Opcode: XSNEGDP
3052/* 14476 */   MCD::OPC_FilterValue, 2, 4, 10, 0, // Skip to: 17045
3053/* 14481 */   MCD::OPC_CheckField, 6, 1, 0, 253, 9, 0, // Skip to: 17045
3054/* 14488 */   MCD::OPC_CheckField, 0, 1, 0, 246, 9, 0, // Skip to: 17045
3055/* 14495 */   MCD::OPC_Decode, 222, 16, 151, 1, // Opcode: XSTSTDCDP
3056/* 14500 */   MCD::OPC_FilterValue, 12, 87, 0, 0, // Skip to: 14592
3057/* 14505 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
3058/* 14508 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14550
3059/* 14513 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3060/* 14516 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14533
3061/* 14521 */   MCD::OPC_CheckField, 16, 5, 0, 213, 9, 0, // Skip to: 17045
3062/* 14528 */   MCD::OPC_Decode, 129, 17, 146, 1, // Opcode: XVCVSPUXDS
3063/* 14533 */   MCD::OPC_FilterValue, 1, 203, 9, 0, // Skip to: 17045
3064/* 14538 */   MCD::OPC_CheckField, 16, 5, 0, 196, 9, 0, // Skip to: 17045
3065/* 14545 */   MCD::OPC_Decode, 255, 16, 146, 1, // Opcode: XVCVSPSXDS
3066/* 14550 */   MCD::OPC_FilterValue, 1, 186, 9, 0, // Skip to: 17045
3067/* 14555 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3068/* 14558 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14575
3069/* 14563 */   MCD::OPC_CheckField, 16, 5, 0, 171, 9, 0, // Skip to: 17045
3070/* 14570 */   MCD::OPC_Decode, 247, 16, 146, 1, // Opcode: XVCVDPSP
3071/* 14575 */   MCD::OPC_FilterValue, 1, 161, 9, 0, // Skip to: 17045
3072/* 14580 */   MCD::OPC_CheckField, 16, 5, 0, 154, 9, 0, // Skip to: 17045
3073/* 14587 */   MCD::OPC_Decode, 230, 16, 146, 1, // Opcode: XVABSSP
3074/* 14592 */   MCD::OPC_FilterValue, 13, 105, 0, 0, // Skip to: 14702
3075/* 14597 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
3076/* 14600 */   MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 14692
3077/* 14605 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
3078/* 14608 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14650
3079/* 14613 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3080/* 14616 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14633
3081/* 14621 */   MCD::OPC_CheckField, 16, 5, 0, 113, 9, 0, // Skip to: 17045
3082/* 14628 */   MCD::OPC_Decode, 136, 17, 146, 1, // Opcode: XVCVUXDSP
3083/* 14633 */   MCD::OPC_FilterValue, 1, 103, 9, 0, // Skip to: 17045
3084/* 14638 */   MCD::OPC_CheckField, 16, 5, 0, 96, 9, 0, // Skip to: 17045
3085/* 14645 */   MCD::OPC_Decode, 132, 17, 146, 1, // Opcode: XVCVSXDSP
3086/* 14650 */   MCD::OPC_FilterValue, 1, 86, 9, 0, // Skip to: 17045
3087/* 14655 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3088/* 14658 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14675
3089/* 14663 */   MCD::OPC_CheckField, 16, 5, 0, 71, 9, 0, // Skip to: 17045
3090/* 14670 */   MCD::OPC_Decode, 158, 17, 146, 1, // Opcode: XVNABSSP
3091/* 14675 */   MCD::OPC_FilterValue, 1, 61, 9, 0, // Skip to: 17045
3092/* 14680 */   MCD::OPC_CheckField, 16, 5, 0, 54, 9, 0, // Skip to: 17045
3093/* 14687 */   MCD::OPC_Decode, 160, 17, 146, 1, // Opcode: XVNEGSP
3094/* 14692 */   MCD::OPC_FilterValue, 1, 44, 9, 0, // Skip to: 17045
3095/* 14697 */   MCD::OPC_Decode, 192, 17, 154, 1, // Opcode: XVTSTDCSP
3096/* 14702 */   MCD::OPC_FilterValue, 14, 220, 0, 0, // Skip to: 14927
3097/* 14707 */   MCD::OPC_ExtractField, 2, 2,  // Inst{3-2} ...
3098/* 14710 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14752
3099/* 14715 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3100/* 14718 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14735
3101/* 14723 */   MCD::OPC_CheckField, 16, 5, 0, 11, 9, 0, // Skip to: 17045
3102/* 14730 */   MCD::OPC_Decode, 250, 16, 146, 1, // Opcode: XVCVDPUXDS
3103/* 14735 */   MCD::OPC_FilterValue, 1, 1, 9, 0, // Skip to: 17045
3104/* 14740 */   MCD::OPC_CheckField, 16, 5, 0, 250, 8, 0, // Skip to: 17045
3105/* 14747 */   MCD::OPC_Decode, 248, 16, 146, 1, // Opcode: XVCVDPSXDS
3106/* 14752 */   MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14794
3107/* 14757 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3108/* 14760 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14777
3109/* 14765 */   MCD::OPC_CheckField, 16, 5, 0, 225, 8, 0, // Skip to: 17045
3110/* 14772 */   MCD::OPC_Decode, 253, 16, 146, 1, // Opcode: XVCVSPDP
3111/* 14777 */   MCD::OPC_FilterValue, 1, 215, 8, 0, // Skip to: 17045
3112/* 14782 */   MCD::OPC_CheckField, 16, 5, 0, 208, 8, 0, // Skip to: 17045
3113/* 14789 */   MCD::OPC_Decode, 229, 16, 146, 1, // Opcode: XVABSDP
3114/* 14794 */   MCD::OPC_FilterValue, 3, 198, 8, 0, // Skip to: 17045
3115/* 14799 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3116/* 14802 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14819
3117/* 14807 */   MCD::OPC_CheckField, 1, 1, 0, 183, 8, 0, // Skip to: 17045
3118/* 14814 */   MCD::OPC_Decode, 159, 16, 155, 1, // Opcode: XSIEXPDP
3119/* 14819 */   MCD::OPC_FilterValue, 1, 173, 8, 0, // Skip to: 17045
3120/* 14824 */   MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
3121/* 14827 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14837
3122/* 14832 */   MCD::OPC_Decode, 193, 17, 146, 1, // Opcode: XVXEXPDP
3123/* 14837 */   MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 14847
3124/* 14842 */   MCD::OPC_Decode, 195, 17, 146, 1, // Opcode: XVXSIGDP
3125/* 14847 */   MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 14857
3126/* 14852 */   MCD::OPC_Decode, 198, 17, 146, 1, // Opcode: XXBRH
3127/* 14857 */   MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 14867
3128/* 14862 */   MCD::OPC_Decode, 194, 17, 146, 1, // Opcode: XVXEXPSP
3129/* 14867 */   MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 14877
3130/* 14872 */   MCD::OPC_Decode, 196, 17, 146, 1, // Opcode: XVXSIGSP
3131/* 14877 */   MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 14887
3132/* 14882 */   MCD::OPC_Decode, 200, 17, 146, 1, // Opcode: XXBRW
3133/* 14887 */   MCD::OPC_FilterValue, 23, 5, 0, 0, // Skip to: 14897
3134/* 14892 */   MCD::OPC_Decode, 197, 17, 146, 1, // Opcode: XXBRD
3135/* 14897 */   MCD::OPC_FilterValue, 24, 5, 0, 0, // Skip to: 14907
3136/* 14902 */   MCD::OPC_Decode, 252, 16, 146, 1, // Opcode: XVCVHPSP
3137/* 14907 */   MCD::OPC_FilterValue, 25, 5, 0, 0, // Skip to: 14917
3138/* 14912 */   MCD::OPC_Decode, 254, 16, 146, 1, // Opcode: XVCVSPHP
3139/* 14917 */   MCD::OPC_FilterValue, 31, 75, 8, 0, // Skip to: 17045
3140/* 14922 */   MCD::OPC_Decode, 199, 17, 146, 1, // Opcode: XXBRQ
3141/* 14927 */   MCD::OPC_FilterValue, 15, 65, 8, 0, // Skip to: 17045
3142/* 14932 */   MCD::OPC_ExtractField, 3, 1,  // Inst{3} ...
3143/* 14935 */   MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 15027
3144/* 14940 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
3145/* 14943 */   MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14985
3146/* 14948 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3147/* 14951 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14968
3148/* 14956 */   MCD::OPC_CheckField, 16, 5, 0, 34, 8, 0, // Skip to: 17045
3149/* 14963 */   MCD::OPC_Decode, 135, 17, 146, 1, // Opcode: XVCVUXDDP
3150/* 14968 */   MCD::OPC_FilterValue, 1, 24, 8, 0, // Skip to: 17045
3151/* 14973 */   MCD::OPC_CheckField, 16, 5, 0, 17, 8, 0, // Skip to: 17045
3152/* 14980 */   MCD::OPC_Decode, 131, 17, 146, 1, // Opcode: XVCVSXDDP
3153/* 14985 */   MCD::OPC_FilterValue, 1, 7, 8, 0, // Skip to: 17045
3154/* 14990 */   MCD::OPC_ExtractField, 6, 1,  // Inst{6} ...
3155/* 14993 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15010
3156/* 14998 */   MCD::OPC_CheckField, 16, 5, 0, 248, 7, 0, // Skip to: 17045
3157/* 15005 */   MCD::OPC_Decode, 157, 17, 146, 1, // Opcode: XVNABSDP
3158/* 15010 */   MCD::OPC_FilterValue, 1, 238, 7, 0, // Skip to: 17045
3159/* 15015 */   MCD::OPC_CheckField, 16, 5, 0, 231, 7, 0, // Skip to: 17045
3160/* 15022 */   MCD::OPC_Decode, 159, 17, 146, 1, // Opcode: XVNEGDP
3161/* 15027 */   MCD::OPC_FilterValue, 1, 221, 7, 0, // Skip to: 17045
3162/* 15032 */   MCD::OPC_Decode, 191, 17, 154, 1, // Opcode: XVTSTDCDP
3163/* 15037 */   MCD::OPC_FilterValue, 3, 211, 7, 0, // Skip to: 17045
3164/* 15042 */   MCD::OPC_Decode, 222, 17, 156, 1, // Opcode: XXSEL
3165/* 15047 */   MCD::OPC_FilterValue, 61, 49, 0, 0, // Skip to: 15101
3166/* 15052 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
3167/* 15055 */   MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 15083
3168/* 15060 */   MCD::OPC_ExtractField, 2, 1,  // Inst{2} ...
3169/* 15063 */   MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 15073
3170/* 15068 */   MCD::OPC_Decode, 227, 8, 157, 1, // Opcode: LXV
3171/* 15073 */   MCD::OPC_FilterValue, 1, 175, 7, 0, // Skip to: 17045
3172/* 15078 */   MCD::OPC_Decode, 223, 12, 157, 1, // Opcode: STXV
3173/* 15083 */   MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 15092
3174/* 15088 */   MCD::OPC_Decode, 214, 12, 123, // Opcode: STXSD
3175/* 15092 */   MCD::OPC_FilterValue, 3, 156, 7, 0, // Skip to: 17045
3176/* 15097 */   MCD::OPC_Decode, 221, 12, 123, // Opcode: STXSSP
3177/* 15101 */   MCD::OPC_FilterValue, 62, 21, 0, 0, // Skip to: 15127
3178/* 15106 */   MCD::OPC_ExtractField, 0, 2,  // Inst{1-0} ...
3179/* 15109 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15118
3180/* 15114 */   MCD::OPC_Decode, 155, 12, 124, // Opcode: STD
3181/* 15118 */   MCD::OPC_FilterValue, 1, 130, 7, 0, // Skip to: 17045
3182/* 15123 */   MCD::OPC_Decode, 160, 12, 124, // Opcode: STDU
3183/* 15127 */   MCD::OPC_FilterValue, 63, 121, 7, 0, // Skip to: 17045
3184/* 15132 */   MCD::OPC_ExtractField, 0, 6,  // Inst{5-0} ...
3185/* 15135 */   MCD::OPC_FilterValue, 0, 77, 0, 0, // Skip to: 15217
3186/* 15140 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3187/* 15143 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15160
3188/* 15148 */   MCD::OPC_CheckField, 21, 2, 0, 98, 7, 0, // Skip to: 17045
3189/* 15155 */   MCD::OPC_Decode, 128, 7, 158, 1, // Opcode: FCMPUS
3190/* 15160 */   MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 15183
3191/* 15165 */   MCD::OPC_CheckField, 21, 2, 0, 81, 7, 0, // Skip to: 17045
3192/* 15172 */   MCD::OPC_CheckField, 11, 7, 0, 74, 7, 0, // Skip to: 17045
3193/* 15179 */   MCD::OPC_Decode, 243, 8, 35, // Opcode: MCRFS
3194/* 15183 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 15200
3195/* 15188 */   MCD::OPC_CheckField, 21, 2, 0, 58, 7, 0, // Skip to: 17045
3196/* 15195 */   MCD::OPC_Decode, 221, 7, 159, 1, // Opcode: FTDIV
3197/* 15200 */   MCD::OPC_FilterValue, 5, 48, 7, 0, // Skip to: 17045
3198/* 15205 */   MCD::OPC_CheckField, 16, 7, 0, 41, 7, 0, // Skip to: 17045
3199/* 15212 */   MCD::OPC_Decode, 222, 7, 160, 1, // Opcode: FTSQRT
3200/* 15217 */   MCD::OPC_FilterValue, 8, 49, 1, 0, // Skip to: 15527
3201/* 15222 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3202/* 15225 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15234
3203/* 15230 */   MCD::OPC_Decode, 242, 15, 3, // Opcode: XSADDQP
3204/* 15234 */   MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15243
3205/* 15239 */   MCD::OPC_Decode, 180, 16, 3, // Opcode: XSMULQP
3206/* 15243 */   MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 15252
3207/* 15248 */   MCD::OPC_Decode, 255, 15, 3, // Opcode: XSCPSGNQP
3208/* 15252 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 15269
3209/* 15257 */   MCD::OPC_CheckField, 21, 2, 0, 245, 6, 0, // Skip to: 17045
3210/* 15264 */   MCD::OPC_Decode, 251, 15, 161, 1, // Opcode: XSCMPOQP
3211/* 15269 */   MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 15286
3212/* 15274 */   MCD::OPC_CheckField, 21, 2, 0, 228, 6, 0, // Skip to: 17045
3213/* 15281 */   MCD::OPC_Decode, 247, 15, 161, 1, // Opcode: XSCMPEXPQP
3214/* 15286 */   MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 15296
3215/* 15291 */   MCD::OPC_Decode, 165, 16, 162, 1, // Opcode: XSMADDQP
3216/* 15296 */   MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 15306
3217/* 15301 */   MCD::OPC_Decode, 177, 16, 162, 1, // Opcode: XSMSUBQP
3218/* 15306 */   MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 15316
3219/* 15311 */   MCD::OPC_Decode, 191, 16, 162, 1, // Opcode: XSNMADDQP
3220/* 15316 */   MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 15326
3221/* 15321 */   MCD::OPC_Decode, 197, 16, 162, 1, // Opcode: XSNMSUBQP
3222/* 15326 */   MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15335
3223/* 15331 */   MCD::OPC_Decode, 217, 16, 3, // Opcode: XSSUBQP
3224/* 15335 */   MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15344
3225/* 15340 */   MCD::OPC_Decode, 156, 16, 3, // Opcode: XSDIVQP
3226/* 15344 */   MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 15361
3227/* 15349 */   MCD::OPC_CheckField, 21, 2, 0, 153, 6, 0, // Skip to: 17045
3228/* 15356 */   MCD::OPC_Decode, 253, 15, 161, 1, // Opcode: XSCMPUQP
3229/* 15361 */   MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15371
3230/* 15366 */   MCD::OPC_Decode, 223, 16, 163, 1, // Opcode: XSTSTDCQP
3231/* 15371 */   MCD::OPC_FilterValue, 25, 57, 0, 0, // Skip to: 15433
3232/* 15376 */   MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
3233/* 15379 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15388
3234/* 15384 */   MCD::OPC_Decode, 240, 15, 6, // Opcode: XSABSQP
3235/* 15388 */   MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 15397
3236/* 15393 */   MCD::OPC_Decode, 226, 16, 6, // Opcode: XSXEXPQP
3237/* 15397 */   MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 15406
3238/* 15402 */   MCD::OPC_Decode, 184, 16, 6, // Opcode: XSNABSQP
3239/* 15406 */   MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15415
3240/* 15411 */   MCD::OPC_Decode, 186, 16, 6, // Opcode: XSNEGQP
3241/* 15415 */   MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 15424
3242/* 15420 */   MCD::OPC_Decode, 228, 16, 6, // Opcode: XSXSIGQP
3243/* 15424 */   MCD::OPC_FilterValue, 27, 80, 6, 0, // Skip to: 17045
3244/* 15429 */   MCD::OPC_Decode, 213, 16, 6, // Opcode: XSSQRTQP
3245/* 15433 */   MCD::OPC_FilterValue, 26, 79, 0, 0, // Skip to: 15517
3246/* 15438 */   MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
3247/* 15441 */   MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15450
3248/* 15446 */   MCD::OPC_Decode, 146, 16, 6, // Opcode: XSCVQPUWZ
3249/* 15450 */   MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 15460
3250/* 15455 */   MCD::OPC_Decode, 152, 16, 164, 1, // Opcode: XSCVUDQP
3251/* 15460 */   MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 15469
3252/* 15465 */   MCD::OPC_Decode, 144, 16, 6, // Opcode: XSCVQPSWZ
3253/* 15469 */   MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 15479
3254/* 15474 */   MCD::OPC_Decode, 147, 16, 164, 1, // Opcode: XSCVSDQP
3255/* 15479 */   MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15488
3256/* 15484 */   MCD::OPC_Decode, 145, 16, 6, // Opcode: XSCVQPUDZ
3257/* 15488 */   MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 15498
3258/* 15493 */   MCD::OPC_Decode, 141, 16, 165, 1, // Opcode: XSCVQPDP
3259/* 15498 */   MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15508
3260/* 15503 */   MCD::OPC_Decode, 129, 16, 164, 1, // Opcode: XSCVDPQP
3261/* 15508 */   MCD::OPC_FilterValue, 25, 252, 5, 0, // Skip to: 17045
3262/* 15513 */   MCD::OPC_Decode, 143, 16, 6, // Opcode: XSCVQPSDZ
3263/* 15517 */   MCD::OPC_FilterValue, 27, 243, 5, 0, // Skip to: 17045
3264/* 15522 */   MCD::OPC_Decode, 160, 16, 166, 1, // Opcode: XSIEXPQP
3265/* 15527 */   MCD::OPC_FilterValue, 9, 112, 0, 0, // Skip to: 15644
3266/* 15532 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3267/* 15535 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15544
3268/* 15540 */   MCD::OPC_Decode, 243, 15, 3, // Opcode: XSADDQPO
3269/* 15544 */   MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15553
3270/* 15549 */   MCD::OPC_Decode, 181, 16, 3, // Opcode: XSMULQPO
3271/* 15553 */   MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 15563
3272/* 15558 */   MCD::OPC_Decode, 166, 16, 162, 1, // Opcode: XSMADDQPO
3273/* 15563 */   MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 15573
3274/* 15568 */   MCD::OPC_Decode, 178, 16, 162, 1, // Opcode: XSMSUBQPO
3275/* 15573 */   MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 15583
3276/* 15578 */   MCD::OPC_Decode, 192, 16, 162, 1, // Opcode: XSNMADDQPO
3277/* 15583 */   MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 15593
3278/* 15588 */   MCD::OPC_Decode, 198, 16, 162, 1, // Opcode: XSNMSUBQPO
3279/* 15593 */   MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15602
3280/* 15598 */   MCD::OPC_Decode, 218, 16, 3, // Opcode: XSSUBQPO
3281/* 15602 */   MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15611
3282/* 15607 */   MCD::OPC_Decode, 157, 16, 3, // Opcode: XSDIVQPO
3283/* 15611 */   MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 15627
3284/* 15616 */   MCD::OPC_CheckField, 16, 5, 27, 142, 5, 0, // Skip to: 17045
3285/* 15623 */   MCD::OPC_Decode, 214, 16, 6, // Opcode: XSSQRTQPO
3286/* 15627 */   MCD::OPC_FilterValue, 26, 133, 5, 0, // Skip to: 17045
3287/* 15632 */   MCD::OPC_CheckField, 16, 5, 20, 126, 5, 0, // Skip to: 17045
3288/* 15639 */   MCD::OPC_Decode, 142, 16, 165, 1, // Opcode: XSCVQPDPO
3289/* 15644 */   MCD::OPC_FilterValue, 10, 37, 0, 0, // Skip to: 15686
3290/* 15649 */   MCD::OPC_ExtractField, 6, 3,  // Inst{8-6} ...
3291/* 15652 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15669
3292/* 15657 */   MCD::OPC_CheckField, 17, 4, 0, 101, 5, 0, // Skip to: 17045
3293/* 15664 */   MCD::OPC_Decode, 206, 16, 167, 1, // Opcode: XSRQPI
3294/* 15669 */   MCD::OPC_FilterValue, 1, 91, 5, 0, // Skip to: 17045
3295/* 15674 */   MCD::OPC_CheckField, 17, 4, 0, 84, 5, 0, // Skip to: 17045
3296/* 15681 */   MCD::OPC_Decode, 208, 16, 167, 1, // Opcode: XSRQPXP
3297/* 15686 */   MCD::OPC_FilterValue, 11, 19, 0, 0, // Skip to: 15710
3298/* 15691 */   MCD::OPC_CheckField, 17, 4, 0, 67, 5, 0, // Skip to: 17045
3299/* 15698 */   MCD::OPC_CheckField, 6, 3, 0, 60, 5, 0, // Skip to: 17045
3300/* 15705 */   MCD::OPC_Decode, 207, 16, 167, 1, // Opcode: XSRQPIX
3301/* 15710 */   MCD::OPC_FilterValue, 12, 52, 0, 0, // Skip to: 15767
3302/* 15715 */   MCD::OPC_ExtractField, 6, 6,  // Inst{11-6} ...
3303/* 15718 */   MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 15734
3304/* 15723 */   MCD::OPC_CheckField, 12, 9, 0, 35, 5, 0, // Skip to: 17045
3305/* 15730 */   MCD::OPC_Decode, 165, 9, 111, // Opcode: MTFSB1
3306/* 15734 */   MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 15750
3307/* 15739 */   MCD::OPC_CheckField, 12, 9, 0, 19, 5, 0, // Skip to: 17045
3308/* 15746 */   MCD::OPC_Decode, 164, 9, 111, // Opcode: MTFSB0
3309/* 15750 */   MCD::OPC_FilterValue, 4, 10, 5, 0, // Skip to: 17045
3310/* 15755 */   MCD::OPC_CheckField, 17, 6, 0, 3, 5, 0, // Skip to: 17045
3311/* 15762 */   MCD::OPC_Decode, 167, 9, 168, 1, // Opcode: MTFSFI
3312/* 15767 */   MCD::OPC_FilterValue, 13, 19, 0, 0, // Skip to: 15791
3313/* 15772 */   MCD::OPC_CheckField, 17, 6, 0, 242, 4, 0, // Skip to: 17045
3314/* 15779 */   MCD::OPC_CheckField, 6, 6, 4, 235, 4, 0, // Skip to: 17045
3315/* 15786 */   MCD::OPC_Decode, 168, 9, 168, 1, // Opcode: MTFSFI_rec
3316/* 15791 */   MCD::OPC_FilterValue, 14, 126, 0, 0, // Skip to: 15922
3317/* 15796 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3318/* 15799 */   MCD::OPC_FilterValue, 18, 108, 0, 0, // Skip to: 15912
3319/* 15804 */   MCD::OPC_ExtractField, 16, 5,  // Inst{20-16} ...
3320/* 15807 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15824
3321/* 15812 */   MCD::OPC_CheckField, 11, 5, 0, 202, 4, 0, // Skip to: 17045
3322/* 15819 */   MCD::OPC_Decode, 251, 8, 169, 1, // Opcode: MFFS
3323/* 15824 */   MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 15841
3324/* 15829 */   MCD::OPC_CheckField, 11, 5, 0, 185, 4, 0, // Skip to: 17045
3325/* 15836 */   MCD::OPC_Decode, 254, 8, 169, 1, // Opcode: MFFSCE
3326/* 15841 */   MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 15851
3327/* 15846 */   MCD::OPC_Decode, 252, 8, 170, 1, // Opcode: MFFSCDRN
3328/* 15851 */   MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 15868
3329/* 15856 */   MCD::OPC_CheckField, 14, 2, 0, 158, 4, 0, // Skip to: 17045
3330/* 15863 */   MCD::OPC_Decode, 253, 8, 171, 1, // Opcode: MFFSCDRNI
3331/* 15868 */   MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15878
3332/* 15873 */   MCD::OPC_Decode, 255, 8, 170, 1, // Opcode: MFFSCRN
3333/* 15878 */   MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 15895
3334/* 15883 */   MCD::OPC_CheckField, 13, 3, 0, 131, 4, 0, // Skip to: 17045
3335/* 15890 */   MCD::OPC_Decode, 128, 9, 172, 1, // Opcode: MFFSCRNI
3336/* 15895 */   MCD::OPC_FilterValue, 24, 121, 4, 0, // Skip to: 17045
3337/* 15900 */   MCD::OPC_CheckField, 11, 5, 0, 114, 4, 0, // Skip to: 17045
3338/* 15907 */   MCD::OPC_Decode, 129, 9, 169, 1, // Opcode: MFFSL
3339/* 15912 */   MCD::OPC_FilterValue, 22, 104, 4, 0, // Skip to: 17045
3340/* 15917 */   MCD::OPC_Decode, 166, 9, 173, 1, // Opcode: MTFSF
3341/* 15922 */   MCD::OPC_FilterValue, 15, 30, 0, 0, // Skip to: 15957
3342/* 15927 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3343/* 15930 */   MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 15947
3344/* 15935 */   MCD::OPC_CheckField, 11, 10, 0, 79, 4, 0, // Skip to: 17045
3345/* 15942 */   MCD::OPC_Decode, 130, 9, 169, 1, // Opcode: MFFS_rec
3346/* 15947 */   MCD::OPC_FilterValue, 22, 69, 4, 0, // Skip to: 17045
3347/* 15952 */   MCD::OPC_Decode, 169, 9, 173, 1, // Opcode: MTFSF_rec
3348/* 15957 */   MCD::OPC_FilterValue, 16, 140, 0, 0, // Skip to: 16102
3349/* 15962 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3350/* 15965 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15974
3351/* 15970 */   MCD::OPC_Decode, 131, 7, 126, // Opcode: FCPSGNS
3352/* 15974 */   MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 15990
3353/* 15979 */   MCD::OPC_CheckField, 16, 5, 0, 35, 4, 0, // Skip to: 17045
3354/* 15986 */   MCD::OPC_Decode, 173, 7, 127, // Opcode: FNEGS
3355/* 15990 */   MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 16006
3356/* 15995 */   MCD::OPC_CheckField, 16, 5, 0, 19, 4, 0, // Skip to: 17045
3357/* 16002 */   MCD::OPC_Decode, 157, 7, 127, // Opcode: FMR
3358/* 16006 */   MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 16022
3359/* 16011 */   MCD::OPC_CheckField, 16, 5, 0, 3, 4, 0, // Skip to: 17045
3360/* 16018 */   MCD::OPC_Decode, 169, 7, 127, // Opcode: FNABSS
3361/* 16022 */   MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 16038
3362/* 16027 */   MCD::OPC_CheckField, 16, 5, 0, 243, 3, 0, // Skip to: 17045
3363/* 16034 */   MCD::OPC_Decode, 240, 6, 127, // Opcode: FABSS
3364/* 16038 */   MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 16054
3365/* 16043 */   MCD::OPC_CheckField, 16, 5, 0, 227, 3, 0, // Skip to: 17045
3366/* 16050 */   MCD::OPC_Decode, 193, 7, 127, // Opcode: FRINS
3367/* 16054 */   MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 16070
3368/* 16059 */   MCD::OPC_CheckField, 16, 5, 0, 211, 3, 0, // Skip to: 17045
3369/* 16066 */   MCD::OPC_Decode, 201, 7, 127, // Opcode: FRIZS
3370/* 16070 */   MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 16086
3371/* 16075 */   MCD::OPC_CheckField, 16, 5, 0, 195, 3, 0, // Skip to: 17045
3372/* 16082 */   MCD::OPC_Decode, 197, 7, 127, // Opcode: FRIPS
3373/* 16086 */   MCD::OPC_FilterValue, 15, 186, 3, 0, // Skip to: 17045
3374/* 16091 */   MCD::OPC_CheckField, 16, 5, 0, 179, 3, 0, // Skip to: 17045
3375/* 16098 */   MCD::OPC_Decode, 189, 7, 127, // Opcode: FRIMS
3376/* 16102 */   MCD::OPC_FilterValue, 17, 140, 0, 0, // Skip to: 16247
3377/* 16107 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3378/* 16110 */   MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 16119
3379/* 16115 */   MCD::OPC_Decode, 132, 7, 126, // Opcode: FCPSGNS_rec
3380/* 16119 */   MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 16135
3381/* 16124 */   MCD::OPC_CheckField, 16, 5, 0, 146, 3, 0, // Skip to: 17045
3382/* 16131 */   MCD::OPC_Decode, 174, 7, 127, // Opcode: FNEGS_rec
3383/* 16135 */   MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 16151
3384/* 16140 */   MCD::OPC_CheckField, 16, 5, 0, 130, 3, 0, // Skip to: 17045
3385/* 16147 */   MCD::OPC_Decode, 158, 7, 127, // Opcode: FMR_rec
3386/* 16151 */   MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 16167
3387/* 16156 */   MCD::OPC_CheckField, 16, 5, 0, 114, 3, 0, // Skip to: 17045
3388/* 16163 */   MCD::OPC_Decode, 170, 7, 127, // Opcode: FNABSS_rec
3389/* 16167 */   MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 16183
3390/* 16172 */   MCD::OPC_CheckField, 16, 5, 0, 98, 3, 0, // Skip to: 17045
3391/* 16179 */   MCD::OPC_Decode, 241, 6, 127, // Opcode: FABSS_rec
3392/* 16183 */   MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 16199
3393/* 16188 */   MCD::OPC_CheckField, 16, 5, 0, 82, 3, 0, // Skip to: 17045
3394/* 16195 */   MCD::OPC_Decode, 194, 7, 127, // Opcode: FRINS_rec
3395/* 16199 */   MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 16215
3396/* 16204 */   MCD::OPC_CheckField, 16, 5, 0, 66, 3, 0, // Skip to: 17045
3397/* 16211 */   MCD::OPC_Decode, 202, 7, 127, // Opcode: FRIZS_rec
3398/* 16215 */   MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 16231
3399/* 16220 */   MCD::OPC_CheckField, 16, 5, 0, 50, 3, 0, // Skip to: 17045
3400/* 16227 */   MCD::OPC_Decode, 198, 7, 127, // Opcode: FRIPS_rec
3401/* 16231 */   MCD::OPC_FilterValue, 15, 41, 3, 0, // Skip to: 17045
3402/* 16236 */   MCD::OPC_CheckField, 16, 5, 0, 34, 3, 0, // Skip to: 17045
3403/* 16243 */   MCD::OPC_Decode, 190, 7, 127, // Opcode: FRIMS_rec
3404/* 16247 */   MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 16270
3405/* 16252 */   MCD::OPC_CheckField, 16, 5, 0, 18, 3, 0, // Skip to: 17045
3406/* 16259 */   MCD::OPC_CheckField, 6, 5, 0, 11, 3, 0, // Skip to: 17045
3407/* 16266 */   MCD::OPC_Decode, 203, 7, 125, // Opcode: FRSP
3408/* 16270 */   MCD::OPC_FilterValue, 25, 18, 0, 0, // Skip to: 16293
3409/* 16275 */   MCD::OPC_CheckField, 16, 5, 0, 251, 2, 0, // Skip to: 17045
3410/* 16282 */   MCD::OPC_CheckField, 6, 5, 0, 244, 2, 0, // Skip to: 17045
3411/* 16289 */   MCD::OPC_Decode, 204, 7, 125, // Opcode: FRSP_rec
3412/* 16293 */   MCD::OPC_FilterValue, 28, 105, 0, 0, // Skip to: 16403
3413/* 16298 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3414/* 16301 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16318
3415/* 16306 */   MCD::OPC_CheckField, 16, 5, 0, 220, 2, 0, // Skip to: 17045
3416/* 16313 */   MCD::OPC_Decode, 141, 7, 170, 1, // Opcode: FCTIW
3417/* 16318 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16335
3418/* 16323 */   MCD::OPC_CheckField, 16, 5, 0, 203, 2, 0, // Skip to: 17045
3419/* 16330 */   MCD::OPC_Decode, 142, 7, 170, 1, // Opcode: FCTIWU
3420/* 16335 */   MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16352
3421/* 16340 */   MCD::OPC_CheckField, 16, 5, 0, 186, 2, 0, // Skip to: 17045
3422/* 16347 */   MCD::OPC_Decode, 133, 7, 170, 1, // Opcode: FCTID
3423/* 16352 */   MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 16369
3424/* 16357 */   MCD::OPC_CheckField, 16, 5, 0, 169, 2, 0, // Skip to: 17045
3425/* 16364 */   MCD::OPC_Decode, 247, 6, 170, 1, // Opcode: FCFID
3426/* 16369 */   MCD::OPC_FilterValue, 29, 12, 0, 0, // Skip to: 16386
3427/* 16374 */   MCD::OPC_CheckField, 16, 5, 0, 152, 2, 0, // Skip to: 17045
3428/* 16381 */   MCD::OPC_Decode, 134, 7, 170, 1, // Opcode: FCTIDU
3429/* 16386 */   MCD::OPC_FilterValue, 30, 142, 2, 0, // Skip to: 17045
3430/* 16391 */   MCD::OPC_CheckField, 16, 5, 0, 135, 2, 0, // Skip to: 17045
3431/* 16398 */   MCD::OPC_Decode, 250, 6, 170, 1, // Opcode: FCFIDU
3432/* 16403 */   MCD::OPC_FilterValue, 29, 105, 0, 0, // Skip to: 16513
3433/* 16408 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3434/* 16411 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16428
3435/* 16416 */   MCD::OPC_CheckField, 16, 5, 0, 110, 2, 0, // Skip to: 17045
3436/* 16423 */   MCD::OPC_Decode, 148, 7, 170, 1, // Opcode: FCTIW_rec
3437/* 16428 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16445
3438/* 16433 */   MCD::OPC_CheckField, 16, 5, 0, 93, 2, 0, // Skip to: 17045
3439/* 16440 */   MCD::OPC_Decode, 145, 7, 170, 1, // Opcode: FCTIWU_rec
3440/* 16445 */   MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16462
3441/* 16450 */   MCD::OPC_CheckField, 16, 5, 0, 76, 2, 0, // Skip to: 17045
3442/* 16457 */   MCD::OPC_Decode, 140, 7, 170, 1, // Opcode: FCTID_rec
3443/* 16462 */   MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 16479
3444/* 16467 */   MCD::OPC_CheckField, 16, 5, 0, 59, 2, 0, // Skip to: 17045
3445/* 16474 */   MCD::OPC_Decode, 254, 6, 170, 1, // Opcode: FCFID_rec
3446/* 16479 */   MCD::OPC_FilterValue, 29, 12, 0, 0, // Skip to: 16496
3447/* 16484 */   MCD::OPC_CheckField, 16, 5, 0, 42, 2, 0, // Skip to: 17045
3448/* 16491 */   MCD::OPC_Decode, 137, 7, 170, 1, // Opcode: FCTIDU_rec
3449/* 16496 */   MCD::OPC_FilterValue, 30, 32, 2, 0, // Skip to: 17045
3450/* 16501 */   MCD::OPC_CheckField, 16, 5, 0, 25, 2, 0, // Skip to: 17045
3451/* 16508 */   MCD::OPC_Decode, 253, 6, 170, 1, // Opcode: FCFIDU_rec
3452/* 16513 */   MCD::OPC_FilterValue, 30, 71, 0, 0, // Skip to: 16589
3453/* 16518 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3454/* 16521 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16538
3455/* 16526 */   MCD::OPC_CheckField, 16, 5, 0, 0, 2, 0, // Skip to: 17045
3456/* 16533 */   MCD::OPC_Decode, 146, 7, 170, 1, // Opcode: FCTIWZ
3457/* 16538 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16555
3458/* 16543 */   MCD::OPC_CheckField, 16, 5, 0, 239, 1, 0, // Skip to: 17045
3459/* 16550 */   MCD::OPC_Decode, 143, 7, 170, 1, // Opcode: FCTIWUZ
3460/* 16555 */   MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16572
3461/* 16560 */   MCD::OPC_CheckField, 16, 5, 0, 222, 1, 0, // Skip to: 17045
3462/* 16567 */   MCD::OPC_Decode, 138, 7, 170, 1, // Opcode: FCTIDZ
3463/* 16572 */   MCD::OPC_FilterValue, 29, 212, 1, 0, // Skip to: 17045
3464/* 16577 */   MCD::OPC_CheckField, 16, 5, 0, 205, 1, 0, // Skip to: 17045
3465/* 16584 */   MCD::OPC_Decode, 135, 7, 170, 1, // Opcode: FCTIDUZ
3466/* 16589 */   MCD::OPC_FilterValue, 31, 71, 0, 0, // Skip to: 16665
3467/* 16594 */   MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3468/* 16597 */   MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16614
3469/* 16602 */   MCD::OPC_CheckField, 16, 5, 0, 180, 1, 0, // Skip to: 17045
3470/* 16609 */   MCD::OPC_Decode, 147, 7, 170, 1, // Opcode: FCTIWZ_rec
3471/* 16614 */   MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16631
3472/* 16619 */   MCD::OPC_CheckField, 16, 5, 0, 163, 1, 0, // Skip to: 17045
3473/* 16626 */   MCD::OPC_Decode, 144, 7, 170, 1, // Opcode: FCTIWUZ_rec
3474/* 16631 */   MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16648
3475/* 16636 */   MCD::OPC_CheckField, 16, 5, 0, 146, 1, 0, // Skip to: 17045
3476/* 16643 */   MCD::OPC_Decode, 139, 7, 170, 1, // Opcode: FCTIDZ_rec
3477/* 16648 */   MCD::OPC_FilterValue, 29, 136, 1, 0, // Skip to: 17045
3478/* 16653 */   MCD::OPC_CheckField, 16, 5, 0, 129, 1, 0, // Skip to: 17045
3479/* 16660 */   MCD::OPC_Decode, 136, 7, 170, 1, // Opcode: FCTIDUZ_rec
3480/* 16665 */   MCD::OPC_FilterValue, 36, 12, 0, 0, // Skip to: 16682
3481/* 16670 */   MCD::OPC_CheckField, 6, 5, 0, 112, 1, 0, // Skip to: 17045
3482/* 16677 */   MCD::OPC_Decode, 149, 7, 174, 1, // Opcode: FDIV
3483/* 16682 */   MCD::OPC_FilterValue, 37, 12, 0, 0, // Skip to: 16699
3484/* 16687 */   MCD::OPC_CheckField, 6, 5, 0, 95, 1, 0, // Skip to: 17045
3485/* 16694 */   MCD::OPC_Decode, 152, 7, 174, 1, // Opcode: FDIV_rec
3486/* 16699 */   MCD::OPC_FilterValue, 40, 12, 0, 0, // Skip to: 16716
3487/* 16704 */   MCD::OPC_CheckField, 6, 5, 0, 78, 1, 0, // Skip to: 17045
3488/* 16711 */   MCD::OPC_Decode, 217, 7, 174, 1, // Opcode: FSUB
3489/* 16716 */   MCD::OPC_FilterValue, 41, 12, 0, 0, // Skip to: 16733
3490/* 16721 */   MCD::OPC_CheckField, 6, 5, 0, 61, 1, 0, // Skip to: 17045
3491/* 16728 */   MCD::OPC_Decode, 220, 7, 174, 1, // Opcode: FSUB_rec
3492/* 16733 */   MCD::OPC_FilterValue, 42, 12, 0, 0, // Skip to: 16750
3493/* 16738 */   MCD::OPC_CheckField, 6, 5, 0, 44, 1, 0, // Skip to: 17045
3494/* 16745 */   MCD::OPC_Decode, 242, 6, 174, 1, // Opcode: FADD
3495/* 16750 */   MCD::OPC_FilterValue, 43, 12, 0, 0, // Skip to: 16767
3496/* 16755 */   MCD::OPC_CheckField, 6, 5, 0, 27, 1, 0, // Skip to: 17045
3497/* 16762 */   MCD::OPC_Decode, 245, 6, 174, 1, // Opcode: FADD_rec
3498/* 16767 */   MCD::OPC_FilterValue, 44, 19, 0, 0, // Skip to: 16791
3499/* 16772 */   MCD::OPC_CheckField, 16, 5, 0, 10, 1, 0, // Skip to: 17045
3500/* 16779 */   MCD::OPC_CheckField, 6, 5, 0, 3, 1, 0, // Skip to: 17045
3501/* 16786 */   MCD::OPC_Decode, 213, 7, 170, 1, // Opcode: FSQRT
3502/* 16791 */   MCD::OPC_FilterValue, 45, 19, 0, 0, // Skip to: 16815
3503/* 16796 */   MCD::OPC_CheckField, 16, 5, 0, 242, 0, 0, // Skip to: 17045
3504/* 16803 */   MCD::OPC_CheckField, 6, 5, 0, 235, 0, 0, // Skip to: 17045
3505/* 16810 */   MCD::OPC_Decode, 216, 7, 170, 1, // Opcode: FSQRT_rec
3506/* 16815 */   MCD::OPC_FilterValue, 46, 5, 0, 0, // Skip to: 16825
3507/* 16820 */   MCD::OPC_Decode, 211, 7, 175, 1, // Opcode: FSELS
3508/* 16825 */   MCD::OPC_FilterValue, 47, 5, 0, 0, // Skip to: 16835
3509/* 16830 */   MCD::OPC_Decode, 212, 7, 175, 1, // Opcode: FSELS_rec
3510/* 16835 */   MCD::OPC_FilterValue, 48, 19, 0, 0, // Skip to: 16859
3511/* 16840 */   MCD::OPC_CheckField, 16, 5, 0, 198, 0, 0, // Skip to: 17045
3512/* 16847 */   MCD::OPC_CheckField, 6, 5, 0, 191, 0, 0, // Skip to: 17045
3513/* 16854 */   MCD::OPC_Decode, 183, 7, 170, 1, // Opcode: FRE
3514/* 16859 */   MCD::OPC_FilterValue, 49, 19, 0, 0, // Skip to: 16883
3515/* 16864 */   MCD::OPC_CheckField, 16, 5, 0, 174, 0, 0, // Skip to: 17045
3516/* 16871 */   MCD::OPC_CheckField, 6, 5, 0, 167, 0, 0, // Skip to: 17045
3517/* 16878 */   MCD::OPC_Decode, 186, 7, 170, 1, // Opcode: FRE_rec
3518/* 16883 */   MCD::OPC_FilterValue, 50, 12, 0, 0, // Skip to: 16900
3519/* 16888 */   MCD::OPC_CheckField, 11, 5, 0, 150, 0, 0, // Skip to: 17045
3520/* 16895 */   MCD::OPC_Decode, 163, 7, 176, 1, // Opcode: FMUL
3521/* 16900 */   MCD::OPC_FilterValue, 51, 12, 0, 0, // Skip to: 16917
3522/* 16905 */   MCD::OPC_CheckField, 11, 5, 0, 133, 0, 0, // Skip to: 17045
3523/* 16912 */   MCD::OPC_Decode, 166, 7, 176, 1, // Opcode: FMUL_rec
3524/* 16917 */   MCD::OPC_FilterValue, 52, 19, 0, 0, // Skip to: 16941
3525/* 16922 */   MCD::OPC_CheckField, 16, 5, 0, 116, 0, 0, // Skip to: 17045
3526/* 16929 */   MCD::OPC_CheckField, 6, 5, 0, 109, 0, 0, // Skip to: 17045
3527/* 16936 */   MCD::OPC_Decode, 205, 7, 170, 1, // Opcode: FRSQRTE
3528/* 16941 */   MCD::OPC_FilterValue, 53, 19, 0, 0, // Skip to: 16965
3529/* 16946 */   MCD::OPC_CheckField, 16, 5, 0, 92, 0, 0, // Skip to: 17045
3530/* 16953 */   MCD::OPC_CheckField, 6, 5, 0, 85, 0, 0, // Skip to: 17045
3531/* 16960 */   MCD::OPC_Decode, 208, 7, 170, 1, // Opcode: FRSQRTE_rec
3532/* 16965 */   MCD::OPC_FilterValue, 56, 5, 0, 0, // Skip to: 16975
3533/* 16970 */   MCD::OPC_Decode, 159, 7, 177, 1, // Opcode: FMSUB
3534/* 16975 */   MCD::OPC_FilterValue, 57, 5, 0, 0, // Skip to: 16985
3535/* 16980 */   MCD::OPC_Decode, 162, 7, 177, 1, // Opcode: FMSUB_rec
3536/* 16985 */   MCD::OPC_FilterValue, 58, 5, 0, 0, // Skip to: 16995
3537/* 16990 */   MCD::OPC_Decode, 153, 7, 177, 1, // Opcode: FMADD
3538/* 16995 */   MCD::OPC_FilterValue, 59, 5, 0, 0, // Skip to: 17005
3539/* 17000 */   MCD::OPC_Decode, 156, 7, 177, 1, // Opcode: FMADD_rec
3540/* 17005 */   MCD::OPC_FilterValue, 60, 5, 0, 0, // Skip to: 17015
3541/* 17010 */   MCD::OPC_Decode, 179, 7, 177, 1, // Opcode: FNMSUB
3542/* 17015 */   MCD::OPC_FilterValue, 61, 5, 0, 0, // Skip to: 17025
3543/* 17020 */   MCD::OPC_Decode, 182, 7, 177, 1, // Opcode: FNMSUB_rec
3544/* 17025 */   MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 17035
3545/* 17030 */   MCD::OPC_Decode, 175, 7, 177, 1, // Opcode: FNMADD
3546/* 17035 */   MCD::OPC_FilterValue, 63, 5, 0, 0, // Skip to: 17045
3547/* 17040 */   MCD::OPC_Decode, 178, 7, 177, 1, // Opcode: FNMADD_rec
3548/* 17045 */   MCD::OPC_Fail,
3549  0
3550};
3551
3552static const uint8_t DecoderTableQPX32[] = {
3553/* 0 */       MCD::OPC_ExtractField, 0, 6,  // Inst{5-0} ...
3554/* 3 */       MCD::OPC_FilterValue, 0, 71, 0, 0, // Skip to: 79
3555/* 8 */       MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3556/* 11 */      MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 28
3557/* 16 */      MCD::OPC_CheckField, 26, 6, 4, 186, 8, 0, // Skip to: 2257
3558/* 23 */      MCD::OPC_Decode, 140, 10, 178, 1, // Opcode: QVFCMPEQb
3559/* 28 */      MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 45
3560/* 33 */      MCD::OPC_CheckField, 26, 6, 4, 169, 8, 0, // Skip to: 2257
3561/* 40 */      MCD::OPC_Decode, 143, 10, 178, 1, // Opcode: QVFCMPGTb
3562/* 45 */      MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 62
3563/* 50 */      MCD::OPC_CheckField, 26, 6, 4, 152, 8, 0, // Skip to: 2257
3564/* 57 */      MCD::OPC_Decode, 210, 10, 178, 1, // Opcode: QVFTSTNANb
3565/* 62 */      MCD::OPC_FilterValue, 3, 142, 8, 0, // Skip to: 2257
3566/* 67 */      MCD::OPC_CheckField, 26, 6, 4, 135, 8, 0, // Skip to: 2257
3567/* 74 */      MCD::OPC_Decode, 146, 10, 178, 1, // Opcode: QVFCMPLTb
3568/* 79 */      MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 107
3569/* 84 */      MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3570/* 87 */      MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 97
3571/* 92 */      MCD::OPC_Decode, 219, 10, 179, 1, // Opcode: QVFXXMADDS
3572/* 97 */      MCD::OPC_FilterValue, 4, 107, 8, 0, // Skip to: 2257
3573/* 102 */     MCD::OPC_Decode, 218, 10, 179, 1, // Opcode: QVFXXMADD
3574/* 107 */     MCD::OPC_FilterValue, 6, 23, 0, 0, // Skip to: 135
3575/* 112 */     MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3576/* 115 */     MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 125
3577/* 120 */     MCD::OPC_Decode, 217, 10, 179, 1, // Opcode: QVFXXCPNMADDS
3578/* 125 */     MCD::OPC_FilterValue, 4, 79, 8, 0, // Skip to: 2257
3579/* 130 */     MCD::OPC_Decode, 216, 10, 179, 1, // Opcode: QVFXXCPNMADD
3580/* 135 */     MCD::OPC_FilterValue, 8, 19, 0, 0, // Skip to: 159
3581/* 140 */     MCD::OPC_CheckField, 26, 6, 4, 62, 8, 0, // Skip to: 2257
3582/* 147 */     MCD::OPC_CheckField, 6, 1, 0, 55, 8, 0, // Skip to: 2257
3583/* 154 */     MCD::OPC_Decode, 160, 10, 180, 1, // Opcode: QVFLOGICALb
3584/* 159 */     MCD::OPC_FilterValue, 10, 216, 0, 0, // Skip to: 380
3585/* 164 */     MCD::OPC_ExtractField, 6, 3,  // Inst{8-6} ...
3586/* 167 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 184
3587/* 172 */     MCD::OPC_CheckField, 26, 6, 4, 30, 8, 0, // Skip to: 2257
3588/* 179 */     MCD::OPC_Decode, 251, 9, 181, 1, // Opcode: QVALIGNI
3589/* 184 */     MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 208
3590/* 189 */     MCD::OPC_CheckField, 26, 6, 4, 13, 8, 0, // Skip to: 2257
3591/* 196 */     MCD::OPC_CheckField, 11, 5, 0, 6, 8, 0, // Skip to: 2257
3592/* 203 */     MCD::OPC_Decode, 254, 9, 182, 1, // Opcode: QVESPLATI
3593/* 208 */     MCD::OPC_FilterValue, 4, 41, 0, 0, // Skip to: 254
3594/* 213 */     MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3595/* 216 */     MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 226
3596/* 221 */     MCD::OPC_Decode, 222, 10, 183, 1, // Opcode: QVGPCI
3597/* 226 */     MCD::OPC_FilterValue, 31, 234, 7, 0, // Skip to: 2257
3598/* 231 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
3599/* 234 */     MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 244
3600/* 239 */     MCD::OPC_Decode, 138, 11, 184, 1, // Opcode: QVSTFCSXI
3601/* 244 */     MCD::OPC_FilterValue, 2, 216, 7, 0, // Skip to: 2257
3602/* 249 */     MCD::OPC_Decode, 159, 11, 184, 1, // Opcode: QVSTFSXI
3603/* 254 */     MCD::OPC_FilterValue, 5, 37, 0, 0, // Skip to: 296
3604/* 259 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
3605/* 262 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 279
3606/* 267 */     MCD::OPC_CheckField, 26, 6, 31, 191, 7, 0, // Skip to: 2257
3607/* 274 */     MCD::OPC_Decode, 134, 11, 184, 1, // Opcode: QVSTFCSUXI
3608/* 279 */     MCD::OPC_FilterValue, 2, 181, 7, 0, // Skip to: 2257
3609/* 284 */     MCD::OPC_CheckField, 26, 6, 31, 174, 7, 0, // Skip to: 2257
3610/* 291 */     MCD::OPC_Decode, 154, 11, 184, 1, // Opcode: QVSTFSUXI
3611/* 296 */     MCD::OPC_FilterValue, 6, 37, 0, 0, // Skip to: 338
3612/* 301 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
3613/* 304 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 321
3614/* 309 */     MCD::OPC_CheckField, 26, 6, 31, 149, 7, 0, // Skip to: 2257
3615/* 316 */     MCD::OPC_Decode, 130, 11, 184, 1, // Opcode: QVSTFCDXI
3616/* 321 */     MCD::OPC_FilterValue, 2, 139, 7, 0, // Skip to: 2257
3617/* 326 */     MCD::OPC_CheckField, 26, 6, 31, 132, 7, 0, // Skip to: 2257
3618/* 333 */     MCD::OPC_Decode, 147, 11, 184, 1, // Opcode: QVSTFDXI
3619/* 338 */     MCD::OPC_FilterValue, 7, 122, 7, 0, // Skip to: 2257
3620/* 343 */     MCD::OPC_ExtractField, 9, 2,  // Inst{10-9} ...
3621/* 346 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 363
3622/* 351 */     MCD::OPC_CheckField, 26, 6, 31, 107, 7, 0, // Skip to: 2257
3623/* 358 */     MCD::OPC_Decode, 254, 10, 184, 1, // Opcode: QVSTFCDUXI
3624/* 363 */     MCD::OPC_FilterValue, 2, 97, 7, 0, // Skip to: 2257
3625/* 368 */     MCD::OPC_CheckField, 26, 6, 31, 90, 7, 0, // Skip to: 2257
3626/* 375 */     MCD::OPC_Decode, 143, 11, 184, 1, // Opcode: QVSTFDUXI
3627/* 380 */     MCD::OPC_FilterValue, 11, 139, 0, 0, // Skip to: 524
3628/* 385 */     MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3629/* 388 */     MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 405
3630/* 393 */     MCD::OPC_CheckField, 26, 6, 31, 65, 7, 0, // Skip to: 2257
3631/* 400 */     MCD::OPC_Decode, 139, 11, 184, 1, // Opcode: QVSTFCSXIA
3632/* 405 */     MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 422
3633/* 410 */     MCD::OPC_CheckField, 26, 6, 31, 48, 7, 0, // Skip to: 2257
3634/* 417 */     MCD::OPC_Decode, 135, 11, 184, 1, // Opcode: QVSTFCSUXIA
3635/* 422 */     MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 439
3636/* 427 */     MCD::OPC_CheckField, 26, 6, 31, 31, 7, 0, // Skip to: 2257
3637/* 434 */     MCD::OPC_Decode, 131, 11, 184, 1, // Opcode: QVSTFCDXIA
3638/* 439 */     MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 456
3639/* 444 */     MCD::OPC_CheckField, 26, 6, 31, 14, 7, 0, // Skip to: 2257
3640/* 451 */     MCD::OPC_Decode, 255, 10, 184, 1, // Opcode: QVSTFCDUXIA
3641/* 456 */     MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 473
3642/* 461 */     MCD::OPC_CheckField, 26, 6, 31, 253, 6, 0, // Skip to: 2257
3643/* 468 */     MCD::OPC_Decode, 160, 11, 184, 1, // Opcode: QVSTFSXIA
3644/* 473 */     MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 490
3645/* 478 */     MCD::OPC_CheckField, 26, 6, 31, 236, 6, 0, // Skip to: 2257
3646/* 485 */     MCD::OPC_Decode, 155, 11, 184, 1, // Opcode: QVSTFSUXIA
3647/* 490 */     MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 507
3648/* 495 */     MCD::OPC_CheckField, 26, 6, 31, 219, 6, 0, // Skip to: 2257
3649/* 502 */     MCD::OPC_Decode, 148, 11, 184, 1, // Opcode: QVSTFDXIA
3650/* 507 */     MCD::OPC_FilterValue, 23, 209, 6, 0, // Skip to: 2257
3651/* 512 */     MCD::OPC_CheckField, 26, 6, 31, 202, 6, 0, // Skip to: 2257
3652/* 519 */     MCD::OPC_Decode, 144, 11, 184, 1, // Opcode: QVSTFDUXIA
3653/* 524 */     MCD::OPC_FilterValue, 12, 61, 0, 0, // Skip to: 590
3654/* 529 */     MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3655/* 532 */     MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 542
3656/* 537 */     MCD::OPC_Decode, 184, 10, 179, 1, // Opcode: QVFPERM
3657/* 542 */     MCD::OPC_FilterValue, 31, 174, 6, 0, // Skip to: 2257
3658/* 547 */     MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3659/* 550 */     MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 560
3660/* 555 */     MCD::OPC_Decode, 251, 10, 184, 1, // Opcode: QVLPCRSX
3661/* 560 */     MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 570
3662/* 565 */     MCD::OPC_Decode, 250, 10, 184, 1, // Opcode: QVLPCRDX
3663/* 570 */     MCD::OPC_FilterValue, 16, 5, 0, 0, // Skip to: 580
3664/* 575 */     MCD::OPC_Decode, 248, 10, 184, 1, // Opcode: QVLPCLSX
3665/* 580 */     MCD::OPC_FilterValue, 18, 136, 6, 0, // Skip to: 2257
3666/* 585 */     MCD::OPC_Decode, 247, 10, 184, 1, // Opcode: QVLPCLDX
3667/* 590 */     MCD::OPC_FilterValue, 14, 70, 1, 0, // Skip to: 921
3668/* 595 */     MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3669/* 598 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 615
3670/* 603 */     MCD::OPC_CheckField, 26, 6, 31, 111, 6, 0, // Skip to: 2257
3671/* 610 */     MCD::OPC_Decode, 229, 10, 184, 1, // Opcode: QVLFCSX
3672/* 615 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 632
3673/* 620 */     MCD::OPC_CheckField, 26, 6, 31, 94, 6, 0, // Skip to: 2257
3674/* 627 */     MCD::OPC_Decode, 227, 10, 184, 1, // Opcode: QVLFCSUX
3675/* 632 */     MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 649
3676/* 637 */     MCD::OPC_CheckField, 26, 6, 31, 77, 6, 0, // Skip to: 2257
3677/* 644 */     MCD::OPC_Decode, 225, 10, 184, 1, // Opcode: QVLFCDX
3678/* 649 */     MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 666
3679/* 654 */     MCD::OPC_CheckField, 26, 6, 31, 60, 6, 0, // Skip to: 2257
3680/* 661 */     MCD::OPC_Decode, 223, 10, 184, 1, // Opcode: QVLFCDUX
3681/* 666 */     MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 683
3682/* 671 */     MCD::OPC_CheckField, 26, 6, 31, 43, 6, 0, // Skip to: 2257
3683/* 678 */     MCD::OPC_Decode, 136, 11, 184, 1, // Opcode: QVSTFCSX
3684/* 683 */     MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 700
3685/* 688 */     MCD::OPC_CheckField, 26, 6, 31, 26, 6, 0, // Skip to: 2257
3686/* 695 */     MCD::OPC_Decode, 132, 11, 184, 1, // Opcode: QVSTFCSUX
3687/* 700 */     MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 717
3688/* 705 */     MCD::OPC_CheckField, 26, 6, 31, 9, 6, 0, // Skip to: 2257
3689/* 712 */     MCD::OPC_Decode, 128, 11, 184, 1, // Opcode: QVSTFCDX
3690/* 717 */     MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 734
3691/* 722 */     MCD::OPC_CheckField, 26, 6, 31, 248, 5, 0, // Skip to: 2257
3692/* 729 */     MCD::OPC_Decode, 252, 10, 184, 1, // Opcode: QVSTFCDUX
3693/* 734 */     MCD::OPC_FilterValue, 16, 12, 0, 0, // Skip to: 751
3694/* 739 */     MCD::OPC_CheckField, 26, 6, 31, 231, 5, 0, // Skip to: 2257
3695/* 746 */     MCD::OPC_Decode, 243, 10, 184, 1, // Opcode: QVLFSX
3696/* 751 */     MCD::OPC_FilterValue, 17, 12, 0, 0, // Skip to: 768
3697/* 756 */     MCD::OPC_CheckField, 26, 6, 31, 214, 5, 0, // Skip to: 2257
3698/* 763 */     MCD::OPC_Decode, 241, 10, 185, 1, // Opcode: QVLFSUX
3699/* 768 */     MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 785
3700/* 773 */     MCD::OPC_CheckField, 26, 6, 31, 197, 5, 0, // Skip to: 2257
3701/* 780 */     MCD::OPC_Decode, 234, 10, 184, 1, // Opcode: QVLFDX
3702/* 785 */     MCD::OPC_FilterValue, 19, 12, 0, 0, // Skip to: 802
3703/* 790 */     MCD::OPC_CheckField, 26, 6, 31, 180, 5, 0, // Skip to: 2257
3704/* 797 */     MCD::OPC_Decode, 232, 10, 186, 1, // Opcode: QVLFDUX
3705/* 802 */     MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 819
3706/* 807 */     MCD::OPC_CheckField, 26, 6, 31, 163, 5, 0, // Skip to: 2257
3707/* 814 */     MCD::OPC_Decode, 157, 11, 184, 1, // Opcode: QVSTFSX
3708/* 819 */     MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 836
3709/* 824 */     MCD::OPC_CheckField, 26, 6, 31, 146, 5, 0, // Skip to: 2257
3710/* 831 */     MCD::OPC_Decode, 152, 11, 187, 1, // Opcode: QVSTFSUX
3711/* 836 */     MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 853
3712/* 841 */     MCD::OPC_CheckField, 26, 6, 31, 129, 5, 0, // Skip to: 2257
3713/* 848 */     MCD::OPC_Decode, 145, 11, 184, 1, // Opcode: QVSTFDX
3714/* 853 */     MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 870
3715/* 858 */     MCD::OPC_CheckField, 26, 6, 31, 112, 5, 0, // Skip to: 2257
3716/* 865 */     MCD::OPC_Decode, 141, 11, 188, 1, // Opcode: QVSTFDUX
3717/* 870 */     MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 887
3718/* 875 */     MCD::OPC_CheckField, 26, 6, 31, 95, 5, 0, // Skip to: 2257
3719/* 882 */     MCD::OPC_Decode, 239, 10, 184, 1, // Opcode: QVLFIWZX
3720/* 887 */     MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 904
3721/* 892 */     MCD::OPC_CheckField, 26, 6, 31, 78, 5, 0, // Skip to: 2257
3722/* 899 */     MCD::OPC_Decode, 237, 10, 184, 1, // Opcode: QVLFIWAX
3723/* 904 */     MCD::OPC_FilterValue, 30, 68, 5, 0, // Skip to: 2257
3724/* 909 */     MCD::OPC_CheckField, 26, 6, 31, 61, 5, 0, // Skip to: 2257
3725/* 916 */     MCD::OPC_Decode, 150, 11, 184, 1, // Opcode: QVSTFIWX
3726/* 921 */     MCD::OPC_FilterValue, 15, 70, 1, 0, // Skip to: 1252
3727/* 926 */     MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3728/* 929 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 946
3729/* 934 */     MCD::OPC_CheckField, 26, 6, 31, 36, 5, 0, // Skip to: 2257
3730/* 941 */     MCD::OPC_Decode, 230, 10, 184, 1, // Opcode: QVLFCSXA
3731/* 946 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 963
3732/* 951 */     MCD::OPC_CheckField, 26, 6, 31, 19, 5, 0, // Skip to: 2257
3733/* 958 */     MCD::OPC_Decode, 228, 10, 184, 1, // Opcode: QVLFCSUXA
3734/* 963 */     MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 980
3735/* 968 */     MCD::OPC_CheckField, 26, 6, 31, 2, 5, 0, // Skip to: 2257
3736/* 975 */     MCD::OPC_Decode, 226, 10, 184, 1, // Opcode: QVLFCDXA
3737/* 980 */     MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 997
3738/* 985 */     MCD::OPC_CheckField, 26, 6, 31, 241, 4, 0, // Skip to: 2257
3739/* 992 */     MCD::OPC_Decode, 224, 10, 184, 1, // Opcode: QVLFCDUXA
3740/* 997 */     MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 1014
3741/* 1002 */    MCD::OPC_CheckField, 26, 6, 31, 224, 4, 0, // Skip to: 2257
3742/* 1009 */    MCD::OPC_Decode, 137, 11, 184, 1, // Opcode: QVSTFCSXA
3743/* 1014 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 1031
3744/* 1019 */    MCD::OPC_CheckField, 26, 6, 31, 207, 4, 0, // Skip to: 2257
3745/* 1026 */    MCD::OPC_Decode, 133, 11, 184, 1, // Opcode: QVSTFCSUXA
3746/* 1031 */    MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 1048
3747/* 1036 */    MCD::OPC_CheckField, 26, 6, 31, 190, 4, 0, // Skip to: 2257
3748/* 1043 */    MCD::OPC_Decode, 129, 11, 184, 1, // Opcode: QVSTFCDXA
3749/* 1048 */    MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 1065
3750/* 1053 */    MCD::OPC_CheckField, 26, 6, 31, 173, 4, 0, // Skip to: 2257
3751/* 1060 */    MCD::OPC_Decode, 253, 10, 184, 1, // Opcode: QVSTFCDUXA
3752/* 1065 */    MCD::OPC_FilterValue, 16, 12, 0, 0, // Skip to: 1082
3753/* 1070 */    MCD::OPC_CheckField, 26, 6, 31, 156, 4, 0, // Skip to: 2257
3754/* 1077 */    MCD::OPC_Decode, 244, 10, 184, 1, // Opcode: QVLFSXA
3755/* 1082 */    MCD::OPC_FilterValue, 17, 12, 0, 0, // Skip to: 1099
3756/* 1087 */    MCD::OPC_CheckField, 26, 6, 31, 139, 4, 0, // Skip to: 2257
3757/* 1094 */    MCD::OPC_Decode, 242, 10, 184, 1, // Opcode: QVLFSUXA
3758/* 1099 */    MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 1116
3759/* 1104 */    MCD::OPC_CheckField, 26, 6, 31, 122, 4, 0, // Skip to: 2257
3760/* 1111 */    MCD::OPC_Decode, 235, 10, 184, 1, // Opcode: QVLFDXA
3761/* 1116 */    MCD::OPC_FilterValue, 19, 12, 0, 0, // Skip to: 1133
3762/* 1121 */    MCD::OPC_CheckField, 26, 6, 31, 105, 4, 0, // Skip to: 2257
3763/* 1128 */    MCD::OPC_Decode, 233, 10, 184, 1, // Opcode: QVLFDUXA
3764/* 1133 */    MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 1150
3765/* 1138 */    MCD::OPC_CheckField, 26, 6, 31, 88, 4, 0, // Skip to: 2257
3766/* 1145 */    MCD::OPC_Decode, 158, 11, 184, 1, // Opcode: QVSTFSXA
3767/* 1150 */    MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 1167
3768/* 1155 */    MCD::OPC_CheckField, 26, 6, 31, 71, 4, 0, // Skip to: 2257
3769/* 1162 */    MCD::OPC_Decode, 153, 11, 184, 1, // Opcode: QVSTFSUXA
3770/* 1167 */    MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 1184
3771/* 1172 */    MCD::OPC_CheckField, 26, 6, 31, 54, 4, 0, // Skip to: 2257
3772/* 1179 */    MCD::OPC_Decode, 146, 11, 184, 1, // Opcode: QVSTFDXA
3773/* 1184 */    MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 1201
3774/* 1189 */    MCD::OPC_CheckField, 26, 6, 31, 37, 4, 0, // Skip to: 2257
3775/* 1196 */    MCD::OPC_Decode, 142, 11, 184, 1, // Opcode: QVSTFDUXA
3776/* 1201 */    MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 1218
3777/* 1206 */    MCD::OPC_CheckField, 26, 6, 31, 20, 4, 0, // Skip to: 2257
3778/* 1213 */    MCD::OPC_Decode, 240, 10, 184, 1, // Opcode: QVLFIWZXA
3779/* 1218 */    MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 1235
3780/* 1223 */    MCD::OPC_CheckField, 26, 6, 31, 3, 4, 0, // Skip to: 2257
3781/* 1230 */    MCD::OPC_Decode, 238, 10, 184, 1, // Opcode: QVLFIWAXA
3782/* 1235 */    MCD::OPC_FilterValue, 30, 249, 3, 0, // Skip to: 2257
3783/* 1240 */    MCD::OPC_CheckField, 26, 6, 31, 242, 3, 0, // Skip to: 2257
3784/* 1247 */    MCD::OPC_Decode, 151, 11, 184, 1, // Opcode: QVSTFIWXA
3785/* 1252 */    MCD::OPC_FilterValue, 16, 212, 0, 0, // Skip to: 1469
3786/* 1257 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3787/* 1260 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1277
3788/* 1265 */    MCD::OPC_CheckField, 26, 6, 4, 217, 3, 0, // Skip to: 2257
3789/* 1272 */    MCD::OPC_Decode, 148, 10, 189, 1, // Opcode: QVFCPSGN
3790/* 1277 */    MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 1301
3791/* 1282 */    MCD::OPC_CheckField, 26, 6, 4, 200, 3, 0, // Skip to: 2257
3792/* 1289 */    MCD::OPC_CheckField, 16, 5, 0, 193, 3, 0, // Skip to: 2257
3793/* 1296 */    MCD::OPC_Decode, 176, 10, 190, 1, // Opcode: QVFNEG
3794/* 1301 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1325
3795/* 1306 */    MCD::OPC_CheckField, 26, 6, 4, 176, 3, 0, // Skip to: 2257
3796/* 1313 */    MCD::OPC_CheckField, 16, 5, 0, 169, 3, 0, // Skip to: 2257
3797/* 1320 */    MCD::OPC_Decode, 165, 10, 190, 1, // Opcode: QVFMR
3798/* 1325 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1349
3799/* 1330 */    MCD::OPC_CheckField, 26, 6, 4, 152, 3, 0, // Skip to: 2257
3800/* 1337 */    MCD::OPC_CheckField, 16, 5, 0, 145, 3, 0, // Skip to: 2257
3801/* 1344 */    MCD::OPC_Decode, 174, 10, 190, 1, // Opcode: QVFNABS
3802/* 1349 */    MCD::OPC_FilterValue, 8, 19, 0, 0, // Skip to: 1373
3803/* 1354 */    MCD::OPC_CheckField, 26, 6, 4, 128, 3, 0, // Skip to: 2257
3804/* 1361 */    MCD::OPC_CheckField, 16, 5, 0, 121, 3, 0, // Skip to: 2257
3805/* 1368 */    MCD::OPC_Decode, 129, 10, 190, 1, // Opcode: QVFABS
3806/* 1373 */    MCD::OPC_FilterValue, 12, 19, 0, 0, // Skip to: 1397
3807/* 1378 */    MCD::OPC_CheckField, 26, 6, 4, 104, 3, 0, // Skip to: 2257
3808/* 1385 */    MCD::OPC_CheckField, 16, 5, 0, 97, 3, 0, // Skip to: 2257
3809/* 1392 */    MCD::OPC_Decode, 191, 10, 190, 1, // Opcode: QVFRIN
3810/* 1397 */    MCD::OPC_FilterValue, 13, 19, 0, 0, // Skip to: 1421
3811/* 1402 */    MCD::OPC_CheckField, 26, 6, 4, 80, 3, 0, // Skip to: 2257
3812/* 1409 */    MCD::OPC_CheckField, 16, 5, 0, 73, 3, 0, // Skip to: 2257
3813/* 1416 */    MCD::OPC_Decode, 195, 10, 190, 1, // Opcode: QVFRIZ
3814/* 1421 */    MCD::OPC_FilterValue, 14, 19, 0, 0, // Skip to: 1445
3815/* 1426 */    MCD::OPC_CheckField, 26, 6, 4, 56, 3, 0, // Skip to: 2257
3816/* 1433 */    MCD::OPC_CheckField, 16, 5, 0, 49, 3, 0, // Skip to: 2257
3817/* 1440 */    MCD::OPC_Decode, 193, 10, 190, 1, // Opcode: QVFRIP
3818/* 1445 */    MCD::OPC_FilterValue, 15, 39, 3, 0, // Skip to: 2257
3819/* 1450 */    MCD::OPC_CheckField, 26, 6, 4, 32, 3, 0, // Skip to: 2257
3820/* 1457 */    MCD::OPC_CheckField, 16, 5, 0, 25, 3, 0, // Skip to: 2257
3821/* 1464 */    MCD::OPC_Decode, 189, 10, 190, 1, // Opcode: QVFRIM
3822/* 1469 */    MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 1497
3823/* 1474 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3824/* 1477 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 1487
3825/* 1482 */    MCD::OPC_Decode, 213, 10, 179, 1, // Opcode: QVFXMADDS
3826/* 1487 */    MCD::OPC_FilterValue, 4, 253, 2, 0, // Skip to: 2257
3827/* 1492 */    MCD::OPC_Decode, 212, 10, 179, 1, // Opcode: QVFXMADD
3828/* 1497 */    MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 1525
3829/* 1502 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3830/* 1505 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 1515
3831/* 1510 */    MCD::OPC_Decode, 221, 10, 179, 1, // Opcode: QVFXXNPMADDS
3832/* 1515 */    MCD::OPC_FilterValue, 4, 225, 2, 0, // Skip to: 2257
3833/* 1520 */    MCD::OPC_Decode, 220, 10, 179, 1, // Opcode: QVFXXNPMADD
3834/* 1525 */    MCD::OPC_FilterValue, 24, 26, 0, 0, // Skip to: 1556
3835/* 1530 */    MCD::OPC_CheckField, 26, 6, 4, 208, 2, 0, // Skip to: 2257
3836/* 1537 */    MCD::OPC_CheckField, 16, 5, 0, 201, 2, 0, // Skip to: 2257
3837/* 1544 */    MCD::OPC_CheckField, 6, 5, 0, 194, 2, 0, // Skip to: 2257
3838/* 1551 */    MCD::OPC_Decode, 198, 10, 191, 1, // Opcode: QVFRSPs
3839/* 1556 */    MCD::OPC_FilterValue, 28, 183, 0, 0, // Skip to: 1744
3840/* 1561 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3841/* 1564 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1588
3842/* 1569 */    MCD::OPC_CheckField, 26, 6, 4, 169, 2, 0, // Skip to: 2257
3843/* 1576 */    MCD::OPC_CheckField, 16, 5, 0, 162, 2, 0, // Skip to: 2257
3844/* 1583 */    MCD::OPC_Decode, 155, 10, 190, 1, // Opcode: QVFCTIW
3845/* 1588 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1612
3846/* 1593 */    MCD::OPC_CheckField, 26, 6, 4, 145, 2, 0, // Skip to: 2257
3847/* 1600 */    MCD::OPC_CheckField, 16, 5, 0, 138, 2, 0, // Skip to: 2257
3848/* 1607 */    MCD::OPC_Decode, 156, 10, 190, 1, // Opcode: QVFCTIWU
3849/* 1612 */    MCD::OPC_FilterValue, 25, 19, 0, 0, // Skip to: 1636
3850/* 1617 */    MCD::OPC_CheckField, 26, 6, 4, 121, 2, 0, // Skip to: 2257
3851/* 1624 */    MCD::OPC_CheckField, 16, 5, 0, 114, 2, 0, // Skip to: 2257
3852/* 1631 */    MCD::OPC_Decode, 150, 10, 190, 1, // Opcode: QVFCTID
3853/* 1636 */    MCD::OPC_FilterValue, 26, 37, 0, 0, // Skip to: 1678
3854/* 1641 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3855/* 1644 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1661
3856/* 1649 */    MCD::OPC_CheckField, 16, 5, 0, 89, 2, 0, // Skip to: 2257
3857/* 1656 */    MCD::OPC_Decode, 135, 10, 190, 1, // Opcode: QVFCFIDS
3858/* 1661 */    MCD::OPC_FilterValue, 4, 79, 2, 0, // Skip to: 2257
3859/* 1666 */    MCD::OPC_CheckField, 16, 5, 0, 72, 2, 0, // Skip to: 2257
3860/* 1673 */    MCD::OPC_Decode, 134, 10, 190, 1, // Opcode: QVFCFID
3861/* 1678 */    MCD::OPC_FilterValue, 29, 19, 0, 0, // Skip to: 1702
3862/* 1683 */    MCD::OPC_CheckField, 26, 6, 4, 55, 2, 0, // Skip to: 2257
3863/* 1690 */    MCD::OPC_CheckField, 16, 5, 0, 48, 2, 0, // Skip to: 2257
3864/* 1697 */    MCD::OPC_Decode, 151, 10, 190, 1, // Opcode: QVFCTIDU
3865/* 1702 */    MCD::OPC_FilterValue, 30, 38, 2, 0, // Skip to: 2257
3866/* 1707 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3867/* 1710 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1727
3868/* 1715 */    MCD::OPC_CheckField, 16, 5, 0, 23, 2, 0, // Skip to: 2257
3869/* 1722 */    MCD::OPC_Decode, 137, 10, 190, 1, // Opcode: QVFCFIDUS
3870/* 1727 */    MCD::OPC_FilterValue, 4, 13, 2, 0, // Skip to: 2257
3871/* 1732 */    MCD::OPC_CheckField, 16, 5, 0, 6, 2, 0, // Skip to: 2257
3872/* 1739 */    MCD::OPC_Decode, 136, 10, 190, 1, // Opcode: QVFCFIDU
3873/* 1744 */    MCD::OPC_FilterValue, 30, 99, 0, 0, // Skip to: 1848
3874/* 1749 */    MCD::OPC_ExtractField, 6, 5,  // Inst{10-6} ...
3875/* 1752 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1776
3876/* 1757 */    MCD::OPC_CheckField, 26, 6, 4, 237, 1, 0, // Skip to: 2257
3877/* 1764 */    MCD::OPC_CheckField, 16, 5, 0, 230, 1, 0, // Skip to: 2257
3878/* 1771 */    MCD::OPC_Decode, 158, 10, 190, 1, // Opcode: QVFCTIWZ
3879/* 1776 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1800
3880/* 1781 */    MCD::OPC_CheckField, 26, 6, 4, 213, 1, 0, // Skip to: 2257
3881/* 1788 */    MCD::OPC_CheckField, 16, 5, 0, 206, 1, 0, // Skip to: 2257
3882/* 1795 */    MCD::OPC_Decode, 157, 10, 190, 1, // Opcode: QVFCTIWUZ
3883/* 1800 */    MCD::OPC_FilterValue, 25, 19, 0, 0, // Skip to: 1824
3884/* 1805 */    MCD::OPC_CheckField, 26, 6, 4, 189, 1, 0, // Skip to: 2257
3885/* 1812 */    MCD::OPC_CheckField, 16, 5, 0, 182, 1, 0, // Skip to: 2257
3886/* 1819 */    MCD::OPC_Decode, 153, 10, 190, 1, // Opcode: QVFCTIDZ
3887/* 1824 */    MCD::OPC_FilterValue, 29, 172, 1, 0, // Skip to: 2257
3888/* 1829 */    MCD::OPC_CheckField, 26, 6, 4, 165, 1, 0, // Skip to: 2257
3889/* 1836 */    MCD::OPC_CheckField, 16, 5, 0, 158, 1, 0, // Skip to: 2257
3890/* 1843 */    MCD::OPC_Decode, 152, 10, 190, 1, // Opcode: QVFCTIDUZ
3891/* 1848 */    MCD::OPC_FilterValue, 34, 37, 0, 0, // Skip to: 1890
3892/* 1853 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3893/* 1856 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1873
3894/* 1861 */    MCD::OPC_CheckField, 11, 5, 0, 133, 1, 0, // Skip to: 2257
3895/* 1868 */    MCD::OPC_Decode, 215, 10, 192, 1, // Opcode: QVFXMULS
3896/* 1873 */    MCD::OPC_FilterValue, 4, 123, 1, 0, // Skip to: 2257
3897/* 1878 */    MCD::OPC_CheckField, 11, 5, 0, 116, 1, 0, // Skip to: 2257
3898/* 1885 */    MCD::OPC_Decode, 214, 10, 192, 1, // Opcode: QVFXMUL
3899/* 1890 */    MCD::OPC_FilterValue, 40, 37, 0, 0, // Skip to: 1932
3900/* 1895 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3901/* 1898 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1915
3902/* 1903 */    MCD::OPC_CheckField, 6, 5, 0, 91, 1, 0, // Skip to: 2257
3903/* 1910 */    MCD::OPC_Decode, 208, 10, 193, 1, // Opcode: QVFSUBSs
3904/* 1915 */    MCD::OPC_FilterValue, 4, 81, 1, 0, // Skip to: 2257
3905/* 1920 */    MCD::OPC_CheckField, 6, 5, 0, 74, 1, 0, // Skip to: 2257
3906/* 1927 */    MCD::OPC_Decode, 206, 10, 189, 1, // Opcode: QVFSUB
3907/* 1932 */    MCD::OPC_FilterValue, 42, 37, 0, 0, // Skip to: 1974
3908/* 1937 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3909/* 1940 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1957
3910/* 1945 */    MCD::OPC_CheckField, 6, 5, 0, 49, 1, 0, // Skip to: 2257
3911/* 1952 */    MCD::OPC_Decode, 133, 10, 193, 1, // Opcode: QVFADDSs
3912/* 1957 */    MCD::OPC_FilterValue, 4, 39, 1, 0, // Skip to: 2257
3913/* 1962 */    MCD::OPC_CheckField, 6, 5, 0, 32, 1, 0, // Skip to: 2257
3914/* 1969 */    MCD::OPC_Decode, 131, 10, 189, 1, // Opcode: QVFADD
3915/* 1974 */    MCD::OPC_FilterValue, 46, 12, 0, 0, // Skip to: 1991
3916/* 1979 */    MCD::OPC_CheckField, 26, 6, 4, 15, 1, 0, // Skip to: 2257
3917/* 1986 */    MCD::OPC_Decode, 203, 10, 194, 1, // Opcode: QVFSELb
3918/* 1991 */    MCD::OPC_FilterValue, 48, 51, 0, 0, // Skip to: 2047
3919/* 1996 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3920/* 1999 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2023
3921/* 2004 */    MCD::OPC_CheckField, 16, 5, 0, 246, 0, 0, // Skip to: 2257
3922/* 2011 */    MCD::OPC_CheckField, 6, 5, 0, 239, 0, 0, // Skip to: 2257
3923/* 2018 */    MCD::OPC_Decode, 187, 10, 190, 1, // Opcode: QVFRES
3924/* 2023 */    MCD::OPC_FilterValue, 4, 229, 0, 0, // Skip to: 2257
3925/* 2028 */    MCD::OPC_CheckField, 16, 5, 0, 222, 0, 0, // Skip to: 2257
3926/* 2035 */    MCD::OPC_CheckField, 6, 5, 0, 215, 0, 0, // Skip to: 2257
3927/* 2042 */    MCD::OPC_Decode, 186, 10, 190, 1, // Opcode: QVFRE
3928/* 2047 */    MCD::OPC_FilterValue, 50, 37, 0, 0, // Skip to: 2089
3929/* 2052 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3930/* 2055 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2072
3931/* 2060 */    MCD::OPC_CheckField, 11, 5, 0, 190, 0, 0, // Skip to: 2257
3932/* 2067 */    MCD::OPC_Decode, 173, 10, 195, 1, // Opcode: QVFMULSs
3933/* 2072 */    MCD::OPC_FilterValue, 4, 180, 0, 0, // Skip to: 2257
3934/* 2077 */    MCD::OPC_CheckField, 11, 5, 0, 173, 0, 0, // Skip to: 2257
3935/* 2084 */    MCD::OPC_Decode, 171, 10, 192, 1, // Opcode: QVFMUL
3936/* 2089 */    MCD::OPC_FilterValue, 52, 51, 0, 0, // Skip to: 2145
3937/* 2094 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3938/* 2097 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2121
3939/* 2102 */    MCD::OPC_CheckField, 16, 5, 0, 148, 0, 0, // Skip to: 2257
3940/* 2109 */    MCD::OPC_CheckField, 6, 5, 0, 141, 0, 0, // Skip to: 2257
3941/* 2116 */    MCD::OPC_Decode, 200, 10, 190, 1, // Opcode: QVFRSQRTES
3942/* 2121 */    MCD::OPC_FilterValue, 4, 131, 0, 0, // Skip to: 2257
3943/* 2126 */    MCD::OPC_CheckField, 16, 5, 0, 124, 0, 0, // Skip to: 2257
3944/* 2133 */    MCD::OPC_CheckField, 6, 5, 0, 117, 0, 0, // Skip to: 2257
3945/* 2140 */    MCD::OPC_Decode, 199, 10, 190, 1, // Opcode: QVFRSQRTE
3946/* 2145 */    MCD::OPC_FilterValue, 56, 23, 0, 0, // Skip to: 2173
3947/* 2150 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3948/* 2153 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2163
3949/* 2158 */    MCD::OPC_Decode, 170, 10, 196, 1, // Opcode: QVFMSUBSs
3950/* 2163 */    MCD::OPC_FilterValue, 4, 89, 0, 0, // Skip to: 2257
3951/* 2168 */    MCD::OPC_Decode, 168, 10, 179, 1, // Opcode: QVFMSUB
3952/* 2173 */    MCD::OPC_FilterValue, 58, 23, 0, 0, // Skip to: 2201
3953/* 2178 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3954/* 2181 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2191
3955/* 2186 */    MCD::OPC_Decode, 164, 10, 196, 1, // Opcode: QVFMADDSs
3956/* 2191 */    MCD::OPC_FilterValue, 4, 61, 0, 0, // Skip to: 2257
3957/* 2196 */    MCD::OPC_Decode, 162, 10, 179, 1, // Opcode: QVFMADD
3958/* 2201 */    MCD::OPC_FilterValue, 60, 23, 0, 0, // Skip to: 2229
3959/* 2206 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3960/* 2209 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2219
3961/* 2214 */    MCD::OPC_Decode, 183, 10, 196, 1, // Opcode: QVFNMSUBSs
3962/* 2219 */    MCD::OPC_FilterValue, 4, 33, 0, 0, // Skip to: 2257
3963/* 2224 */    MCD::OPC_Decode, 181, 10, 179, 1, // Opcode: QVFNMSUB
3964/* 2229 */    MCD::OPC_FilterValue, 62, 23, 0, 0, // Skip to: 2257
3965/* 2234 */    MCD::OPC_ExtractField, 26, 6,  // Inst{31-26} ...
3966/* 2237 */    MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2247
3967/* 2242 */    MCD::OPC_Decode, 180, 10, 196, 1, // Opcode: QVFNMADDSs
3968/* 2247 */    MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 2257
3969/* 2252 */    MCD::OPC_Decode, 178, 10, 179, 1, // Opcode: QVFNMADD
3970/* 2257 */    MCD::OPC_Fail,
3971  0
3972};
3973
3974static const uint8_t DecoderTableSPE32[] = {
3975/* 0 */       MCD::OPC_ExtractField, 3, 8,  // Inst{10-3} ...
3976/* 3 */       MCD::OPC_FilterValue, 64, 71, 0, 0, // Skip to: 79
3977/* 8 */       MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
3978/* 11 */      MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 28
3979/* 16 */      MCD::OPC_CheckField, 26, 6, 4, 112, 20, 0, // Skip to: 5255
3980/* 23 */      MCD::OPC_Decode, 157, 5, 197, 1, // Opcode: EVADDW
3981/* 28 */      MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 45
3982/* 33 */      MCD::OPC_CheckField, 26, 6, 4, 95, 20, 0, // Skip to: 5255
3983/* 40 */      MCD::OPC_Decode, 152, 5, 198, 1, // Opcode: EVADDIW
3984/* 45 */      MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 62
3985/* 50 */      MCD::OPC_CheckField, 26, 6, 4, 78, 20, 0, // Skip to: 5255
3986/* 57 */      MCD::OPC_Decode, 215, 6, 197, 1, // Opcode: EVSUBFW
3987/* 62 */      MCD::OPC_FilterValue, 6, 68, 20, 0, // Skip to: 5255
3988/* 67 */      MCD::OPC_CheckField, 26, 6, 4, 61, 20, 0, // Skip to: 5255
3989/* 74 */      MCD::OPC_Decode, 216, 6, 199, 1, // Opcode: EVSUBIFW
3990/* 79 */      MCD::OPC_FilterValue, 65, 187, 0, 0, // Skip to: 271
3991/* 84 */      MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
3992/* 87 */      MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 111
3993/* 92 */      MCD::OPC_CheckField, 26, 6, 4, 36, 20, 0, // Skip to: 5255
3994/* 99 */      MCD::OPC_CheckField, 11, 5, 0, 29, 20, 0, // Skip to: 5255
3995/* 106 */     MCD::OPC_Decode, 151, 5, 200, 1, // Opcode: EVABS
3996/* 111 */     MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 135
3997/* 116 */     MCD::OPC_CheckField, 26, 6, 4, 12, 20, 0, // Skip to: 5255
3998/* 123 */     MCD::OPC_CheckField, 11, 5, 0, 5, 20, 0, // Skip to: 5255
3999/* 130 */     MCD::OPC_Decode, 181, 6, 200, 1, // Opcode: EVNEG
4000/* 135 */     MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 159
4001/* 140 */     MCD::OPC_CheckField, 26, 6, 4, 244, 19, 0, // Skip to: 5255
4002/* 147 */     MCD::OPC_CheckField, 11, 5, 0, 237, 19, 0, // Skip to: 5255
4003/* 154 */     MCD::OPC_Decode, 170, 5, 200, 1, // Opcode: EVEXTSB
4004/* 159 */     MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 183
4005/* 164 */     MCD::OPC_CheckField, 26, 6, 4, 220, 19, 0, // Skip to: 5255
4006/* 171 */     MCD::OPC_CheckField, 11, 5, 0, 213, 19, 0, // Skip to: 5255
4007/* 178 */     MCD::OPC_Decode, 171, 5, 200, 1, // Opcode: EVEXTSH
4008/* 183 */     MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 207
4009/* 188 */     MCD::OPC_CheckField, 26, 6, 4, 196, 19, 0, // Skip to: 5255
4010/* 195 */     MCD::OPC_CheckField, 11, 5, 0, 189, 19, 0, // Skip to: 5255
4011/* 202 */     MCD::OPC_Decode, 187, 6, 200, 1, // Opcode: EVRNDW
4012/* 207 */     MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 231
4013/* 212 */     MCD::OPC_CheckField, 26, 6, 4, 172, 19, 0, // Skip to: 5255
4014/* 219 */     MCD::OPC_CheckField, 11, 5, 0, 165, 19, 0, // Skip to: 5255
4015/* 226 */     MCD::OPC_Decode, 166, 5, 200, 1, // Opcode: EVCNTLZW
4016/* 231 */     MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 255
4017/* 236 */     MCD::OPC_CheckField, 26, 6, 4, 148, 19, 0, // Skip to: 5255
4018/* 243 */     MCD::OPC_CheckField, 11, 5, 0, 141, 19, 0, // Skip to: 5255
4019/* 250 */     MCD::OPC_Decode, 165, 5, 200, 1, // Opcode: EVCNTLSW
4020/* 255 */     MCD::OPC_FilterValue, 7, 131, 19, 0, // Skip to: 5255
4021/* 260 */     MCD::OPC_CheckField, 26, 6, 4, 124, 19, 0, // Skip to: 5255
4022/* 267 */     MCD::OPC_Decode, 237, 3, 64, // Opcode: BRINC
4023/* 271 */     MCD::OPC_FilterValue, 66, 71, 0, 0, // Skip to: 347
4024/* 276 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4025/* 279 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 296
4026/* 284 */     MCD::OPC_CheckField, 26, 6, 4, 100, 19, 0, // Skip to: 5255
4027/* 291 */     MCD::OPC_Decode, 158, 5, 197, 1, // Opcode: EVAND
4028/* 296 */     MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 313
4029/* 301 */     MCD::OPC_CheckField, 26, 6, 4, 83, 19, 0, // Skip to: 5255
4030/* 308 */     MCD::OPC_Decode, 159, 5, 197, 1, // Opcode: EVANDC
4031/* 313 */     MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 330
4032/* 318 */     MCD::OPC_CheckField, 26, 6, 4, 66, 19, 0, // Skip to: 5255
4033/* 325 */     MCD::OPC_Decode, 217, 6, 197, 1, // Opcode: EVXOR
4034/* 330 */     MCD::OPC_FilterValue, 7, 56, 19, 0, // Skip to: 5255
4035/* 335 */     MCD::OPC_CheckField, 26, 6, 4, 49, 19, 0, // Skip to: 5255
4036/* 342 */     MCD::OPC_Decode, 183, 6, 197, 1, // Opcode: EVOR
4037/* 347 */     MCD::OPC_FilterValue, 67, 71, 0, 0, // Skip to: 423
4038/* 352 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4039/* 355 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 372
4040/* 360 */     MCD::OPC_CheckField, 26, 6, 4, 24, 19, 0, // Skip to: 5255
4041/* 367 */     MCD::OPC_Decode, 182, 6, 197, 1, // Opcode: EVNOR
4042/* 372 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 389
4043/* 377 */     MCD::OPC_CheckField, 26, 6, 4, 7, 19, 0, // Skip to: 5255
4044/* 384 */     MCD::OPC_Decode, 169, 5, 197, 1, // Opcode: EVEQV
4045/* 389 */     MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 406
4046/* 394 */     MCD::OPC_CheckField, 26, 6, 4, 246, 18, 0, // Skip to: 5255
4047/* 401 */     MCD::OPC_Decode, 184, 6, 197, 1, // Opcode: EVORC
4048/* 406 */     MCD::OPC_FilterValue, 6, 236, 18, 0, // Skip to: 5255
4049/* 411 */     MCD::OPC_CheckField, 26, 6, 4, 229, 18, 0, // Skip to: 5255
4050/* 418 */     MCD::OPC_Decode, 180, 6, 197, 1, // Opcode: EVNAND
4051/* 423 */     MCD::OPC_FilterValue, 68, 105, 0, 0, // Skip to: 533
4052/* 428 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4053/* 431 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 448
4054/* 436 */     MCD::OPC_CheckField, 26, 6, 4, 204, 18, 0, // Skip to: 5255
4055/* 443 */     MCD::OPC_Decode, 196, 6, 197, 1, // Opcode: EVSRWU
4056/* 448 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 465
4057/* 453 */     MCD::OPC_CheckField, 26, 6, 4, 187, 18, 0, // Skip to: 5255
4058/* 460 */     MCD::OPC_Decode, 195, 6, 197, 1, // Opcode: EVSRWS
4059/* 465 */     MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 482
4060/* 470 */     MCD::OPC_CheckField, 26, 6, 4, 170, 18, 0, // Skip to: 5255
4061/* 477 */     MCD::OPC_Decode, 194, 6, 198, 1, // Opcode: EVSRWIU
4062/* 482 */     MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 499
4063/* 487 */     MCD::OPC_CheckField, 26, 6, 4, 153, 18, 0, // Skip to: 5255
4064/* 494 */     MCD::OPC_Decode, 193, 6, 198, 1, // Opcode: EVSRWIS
4065/* 499 */     MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 516
4066/* 504 */     MCD::OPC_CheckField, 26, 6, 4, 136, 18, 0, // Skip to: 5255
4067/* 511 */     MCD::OPC_Decode, 189, 6, 197, 1, // Opcode: EVSLW
4068/* 516 */     MCD::OPC_FilterValue, 6, 126, 18, 0, // Skip to: 5255
4069/* 521 */     MCD::OPC_CheckField, 26, 6, 4, 119, 18, 0, // Skip to: 5255
4070/* 528 */     MCD::OPC_Decode, 190, 6, 198, 1, // Opcode: EVSLWI
4071/* 533 */     MCD::OPC_FilterValue, 69, 153, 0, 0, // Skip to: 691
4072/* 538 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4073/* 541 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 558
4074/* 546 */     MCD::OPC_CheckField, 26, 6, 4, 94, 18, 0, // Skip to: 5255
4075/* 553 */     MCD::OPC_Decode, 185, 6, 197, 1, // Opcode: EVRLW
4076/* 558 */     MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 582
4077/* 563 */     MCD::OPC_CheckField, 26, 6, 4, 77, 18, 0, // Skip to: 5255
4078/* 570 */     MCD::OPC_CheckField, 11, 5, 0, 70, 18, 0, // Skip to: 5255
4079/* 577 */     MCD::OPC_Decode, 192, 6, 201, 1, // Opcode: EVSPLATI
4080/* 582 */     MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 599
4081/* 587 */     MCD::OPC_CheckField, 26, 6, 4, 53, 18, 0, // Skip to: 5255
4082/* 594 */     MCD::OPC_Decode, 186, 6, 198, 1, // Opcode: EVRLWI
4083/* 599 */     MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 623
4084/* 604 */     MCD::OPC_CheckField, 26, 6, 4, 36, 18, 0, // Skip to: 5255
4085/* 611 */     MCD::OPC_CheckField, 11, 5, 0, 29, 18, 0, // Skip to: 5255
4086/* 618 */     MCD::OPC_Decode, 191, 6, 201, 1, // Opcode: EVSPLATFI
4087/* 623 */     MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 640
4088/* 628 */     MCD::OPC_CheckField, 26, 6, 4, 12, 18, 0, // Skip to: 5255
4089/* 635 */     MCD::OPC_Decode, 217, 5, 197, 1, // Opcode: EVMERGEHI
4090/* 640 */     MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 657
4091/* 645 */     MCD::OPC_CheckField, 26, 6, 4, 251, 17, 0, // Skip to: 5255
4092/* 652 */     MCD::OPC_Decode, 219, 5, 202, 1, // Opcode: EVMERGELO
4093/* 657 */     MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 674
4094/* 662 */     MCD::OPC_CheckField, 26, 6, 4, 234, 17, 0, // Skip to: 5255
4095/* 669 */     MCD::OPC_Decode, 218, 5, 197, 1, // Opcode: EVMERGEHILO
4096/* 674 */     MCD::OPC_FilterValue, 7, 224, 17, 0, // Skip to: 5255
4097/* 679 */     MCD::OPC_CheckField, 26, 6, 4, 217, 17, 0, // Skip to: 5255
4098/* 686 */     MCD::OPC_Decode, 220, 5, 197, 1, // Opcode: EVMERGELOHI
4099/* 691 */     MCD::OPC_FilterValue, 70, 123, 0, 0, // Skip to: 819
4100/* 696 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4101/* 699 */     MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 723
4102/* 704 */     MCD::OPC_CheckField, 26, 6, 4, 192, 17, 0, // Skip to: 5255
4103/* 711 */     MCD::OPC_CheckField, 21, 2, 0, 185, 17, 0, // Skip to: 5255
4104/* 718 */     MCD::OPC_Decode, 162, 5, 203, 1, // Opcode: EVCMPGTU
4105/* 723 */     MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 747
4106/* 728 */     MCD::OPC_CheckField, 26, 6, 4, 168, 17, 0, // Skip to: 5255
4107/* 735 */     MCD::OPC_CheckField, 21, 2, 0, 161, 17, 0, // Skip to: 5255
4108/* 742 */     MCD::OPC_Decode, 161, 5, 203, 1, // Opcode: EVCMPGTS
4109/* 747 */     MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 771
4110/* 752 */     MCD::OPC_CheckField, 26, 6, 4, 144, 17, 0, // Skip to: 5255
4111/* 759 */     MCD::OPC_CheckField, 21, 2, 0, 137, 17, 0, // Skip to: 5255
4112/* 766 */     MCD::OPC_Decode, 164, 5, 203, 1, // Opcode: EVCMPLTU
4113/* 771 */     MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 795
4114/* 776 */     MCD::OPC_CheckField, 26, 6, 4, 120, 17, 0, // Skip to: 5255
4115/* 783 */     MCD::OPC_CheckField, 21, 2, 0, 113, 17, 0, // Skip to: 5255
4116/* 790 */     MCD::OPC_Decode, 163, 5, 203, 1, // Opcode: EVCMPLTS
4117/* 795 */     MCD::OPC_FilterValue, 4, 103, 17, 0, // Skip to: 5255
4118/* 800 */     MCD::OPC_CheckField, 26, 6, 4, 96, 17, 0, // Skip to: 5255
4119/* 807 */     MCD::OPC_CheckField, 21, 2, 0, 89, 17, 0, // Skip to: 5255
4120/* 814 */     MCD::OPC_Decode, 160, 5, 203, 1, // Opcode: EVCMPEQ
4121/* 819 */     MCD::OPC_FilterValue, 79, 12, 0, 0, // Skip to: 836
4122/* 824 */     MCD::OPC_CheckField, 26, 6, 4, 72, 17, 0, // Skip to: 5255
4123/* 831 */     MCD::OPC_Decode, 188, 6, 204, 1, // Opcode: EVSEL
4124/* 836 */     MCD::OPC_FilterValue, 80, 109, 0, 0, // Skip to: 950
4125/* 841 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4126/* 844 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 861
4127/* 849 */     MCD::OPC_CheckField, 26, 6, 4, 47, 17, 0, // Skip to: 5255
4128/* 856 */     MCD::OPC_Decode, 173, 5, 197, 1, // Opcode: EVFSADD
4129/* 861 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 878
4130/* 866 */     MCD::OPC_CheckField, 26, 6, 4, 30, 17, 0, // Skip to: 5255
4131/* 873 */     MCD::OPC_Decode, 191, 5, 197, 1, // Opcode: EVFSSUB
4132/* 878 */     MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 902
4133/* 883 */     MCD::OPC_CheckField, 26, 6, 4, 13, 17, 0, // Skip to: 5255
4134/* 890 */     MCD::OPC_CheckField, 11, 5, 0, 6, 17, 0, // Skip to: 5255
4135/* 897 */     MCD::OPC_Decode, 172, 5, 200, 1, // Opcode: EVFSABS
4136/* 902 */     MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 926
4137/* 907 */     MCD::OPC_CheckField, 26, 6, 4, 245, 16, 0, // Skip to: 5255
4138/* 914 */     MCD::OPC_CheckField, 11, 5, 0, 238, 16, 0, // Skip to: 5255
4139/* 921 */     MCD::OPC_Decode, 189, 5, 200, 1, // Opcode: EVFSNABS
4140/* 926 */     MCD::OPC_FilterValue, 6, 228, 16, 0, // Skip to: 5255
4141/* 931 */     MCD::OPC_CheckField, 26, 6, 4, 221, 16, 0, // Skip to: 5255
4142/* 938 */     MCD::OPC_CheckField, 11, 5, 0, 214, 16, 0, // Skip to: 5255
4143/* 945 */     MCD::OPC_Decode, 190, 5, 200, 1, // Opcode: EVFSNEG
4144/* 950 */     MCD::OPC_FilterValue, 81, 133, 0, 0, // Skip to: 1088
4145/* 955 */     MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4146/* 958 */     MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 975
4147/* 963 */     MCD::OPC_CheckField, 26, 6, 4, 189, 16, 0, // Skip to: 5255
4148/* 970 */     MCD::OPC_Decode, 188, 5, 197, 1, // Opcode: EVFSMUL
4149/* 975 */     MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 992
4150/* 980 */     MCD::OPC_CheckField, 26, 6, 4, 172, 16, 0, // Skip to: 5255
4151/* 987 */     MCD::OPC_Decode, 187, 5, 197, 1, // Opcode: EVFSDIV
4152/* 992 */     MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1016
4153/* 997 */     MCD::OPC_CheckField, 26, 6, 4, 155, 16, 0, // Skip to: 5255
4154/* 1004 */    MCD::OPC_CheckField, 16, 5, 0, 148, 16, 0, // Skip to: 5255
4155/* 1011 */    MCD::OPC_Decode, 177, 5, 205, 1, // Opcode: EVFSCFUI
4156/* 1016 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1040
4157/* 1021 */    MCD::OPC_CheckField, 26, 6, 4, 131, 16, 0, // Skip to: 5255
4158/* 1028 */    MCD::OPC_CheckField, 21, 2, 0, 124, 16, 0, // Skip to: 5255
4159/* 1035 */    MCD::OPC_Decode, 179, 5, 203, 1, // Opcode: EVFSCMPGT
4160/* 1040 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1064
4161/* 1045 */    MCD::OPC_CheckField, 26, 6, 4, 107, 16, 0, // Skip to: 5255
4162/* 1052 */    MCD::OPC_CheckField, 21, 2, 0, 100, 16, 0, // Skip to: 5255
4163/* 1059 */    MCD::OPC_Decode, 180, 5, 203, 1, // Opcode: EVFSCMPLT
4164/* 1064 */    MCD::OPC_FilterValue, 6, 90, 16, 0, // Skip to: 5255
4165/* 1069 */    MCD::OPC_CheckField, 26, 6, 4, 83, 16, 0, // Skip to: 5255
4166/* 1076 */    MCD::OPC_CheckField, 21, 2, 0, 76, 16, 0, // Skip to: 5255
4167/* 1083 */    MCD::OPC_Decode, 178, 5, 203, 1, // Opcode: EVFSCMPEQ
4168/* 1088 */    MCD::OPC_FilterValue, 82, 171, 0, 0, // Skip to: 1264
4169/* 1093 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4170/* 1096 */    MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 1120
4171/* 1101 */    MCD::OPC_CheckField, 26, 6, 4, 51, 16, 0, // Skip to: 5255
4172/* 1108 */    MCD::OPC_CheckField, 16, 5, 0, 44, 16, 0, // Skip to: 5255
4173/* 1115 */    MCD::OPC_Decode, 175, 5, 205, 1, // Opcode: EVFSCFSI
4174/* 1120 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1144
4175/* 1125 */    MCD::OPC_CheckField, 26, 6, 4, 27, 16, 0, // Skip to: 5255
4176/* 1132 */    MCD::OPC_CheckField, 16, 5, 0, 20, 16, 0, // Skip to: 5255
4177/* 1139 */    MCD::OPC_Decode, 176, 5, 205, 1, // Opcode: EVFSCFUF
4178/* 1144 */    MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 1168
4179/* 1149 */    MCD::OPC_CheckField, 26, 6, 4, 3, 16, 0, // Skip to: 5255
4180/* 1156 */    MCD::OPC_CheckField, 16, 5, 0, 252, 15, 0, // Skip to: 5255
4181/* 1163 */    MCD::OPC_Decode, 174, 5, 205, 1, // Opcode: EVFSCFSF
4182/* 1168 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1192
4183/* 1173 */    MCD::OPC_CheckField, 26, 6, 4, 235, 15, 0, // Skip to: 5255
4184/* 1180 */    MCD::OPC_CheckField, 16, 5, 0, 228, 15, 0, // Skip to: 5255
4185/* 1187 */    MCD::OPC_Decode, 185, 5, 205, 1, // Opcode: EVFSCTUI
4186/* 1192 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1216
4187/* 1197 */    MCD::OPC_CheckField, 26, 6, 4, 211, 15, 0, // Skip to: 5255
4188/* 1204 */    MCD::OPC_CheckField, 16, 5, 0, 204, 15, 0, // Skip to: 5255
4189/* 1211 */    MCD::OPC_Decode, 182, 5, 205, 1, // Opcode: EVFSCTSI
4190/* 1216 */    MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 1240
4191/* 1221 */    MCD::OPC_CheckField, 26, 6, 4, 187, 15, 0, // Skip to: 5255
4192/* 1228 */    MCD::OPC_CheckField, 16, 5, 0, 180, 15, 0, // Skip to: 5255
4193/* 1235 */    MCD::OPC_Decode, 184, 5, 205, 1, // Opcode: EVFSCTUF
4194/* 1240 */    MCD::OPC_FilterValue, 7, 170, 15, 0, // Skip to: 5255
4195/* 1245 */    MCD::OPC_CheckField, 26, 6, 4, 163, 15, 0, // Skip to: 5255
4196/* 1252 */    MCD::OPC_CheckField, 16, 5, 0, 156, 15, 0, // Skip to: 5255
4197/* 1259 */    MCD::OPC_Decode, 181, 5, 205, 1, // Opcode: EVFSCTSF
4198/* 1264 */    MCD::OPC_FilterValue, 83, 123, 0, 0, // Skip to: 1392
4199/* 1269 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4200/* 1272 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1296
4201/* 1277 */    MCD::OPC_CheckField, 26, 6, 4, 131, 15, 0, // Skip to: 5255
4202/* 1284 */    MCD::OPC_CheckField, 16, 5, 0, 124, 15, 0, // Skip to: 5255
4203/* 1291 */    MCD::OPC_Decode, 186, 5, 205, 1, // Opcode: EVFSCTUIZ
4204/* 1296 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1320
4205/* 1301 */    MCD::OPC_CheckField, 26, 6, 4, 107, 15, 0, // Skip to: 5255
4206/* 1308 */    MCD::OPC_CheckField, 16, 5, 0, 100, 15, 0, // Skip to: 5255
4207/* 1315 */    MCD::OPC_Decode, 183, 5, 205, 1, // Opcode: EVFSCTSIZ
4208/* 1320 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1344
4209/* 1325 */    MCD::OPC_CheckField, 26, 6, 4, 83, 15, 0, // Skip to: 5255
4210/* 1332 */    MCD::OPC_CheckField, 21, 2, 0, 76, 15, 0, // Skip to: 5255
4211/* 1339 */    MCD::OPC_Decode, 193, 5, 203, 1, // Opcode: EVFSTSTGT
4212/* 1344 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1368
4213/* 1349 */    MCD::OPC_CheckField, 26, 6, 4, 59, 15, 0, // Skip to: 5255
4214/* 1356 */    MCD::OPC_CheckField, 21, 2, 0, 52, 15, 0, // Skip to: 5255
4215/* 1363 */    MCD::OPC_Decode, 194, 5, 203, 1, // Opcode: EVFSTSTLT
4216/* 1368 */    MCD::OPC_FilterValue, 6, 42, 15, 0, // Skip to: 5255
4217/* 1373 */    MCD::OPC_CheckField, 26, 6, 4, 35, 15, 0, // Skip to: 5255
4218/* 1380 */    MCD::OPC_CheckField, 21, 2, 0, 28, 15, 0, // Skip to: 5255
4219/* 1387 */    MCD::OPC_Decode, 192, 5, 203, 1, // Opcode: EVFSTSTEQ
4220/* 1392 */    MCD::OPC_FilterValue, 88, 104, 0, 0, // Skip to: 1501
4221/* 1397 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4222/* 1400 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 1416
4223/* 1405 */    MCD::OPC_CheckField, 26, 6, 4, 3, 15, 0, // Skip to: 5255
4224/* 1412 */    MCD::OPC_Decode, 247, 4, 64, // Opcode: EFSADD
4225/* 1416 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 1432
4226/* 1421 */    MCD::OPC_CheckField, 26, 6, 4, 243, 14, 0, // Skip to: 5255
4227/* 1428 */    MCD::OPC_Decode, 138, 5, 64, // Opcode: EFSSUB
4228/* 1432 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1455
4229/* 1437 */    MCD::OPC_CheckField, 26, 6, 4, 227, 14, 0, // Skip to: 5255
4230/* 1444 */    MCD::OPC_CheckField, 11, 5, 0, 220, 14, 0, // Skip to: 5255
4231/* 1451 */    MCD::OPC_Decode, 246, 4, 66, // Opcode: EFSABS
4232/* 1455 */    MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1478
4233/* 1460 */    MCD::OPC_CheckField, 26, 6, 4, 204, 14, 0, // Skip to: 5255
4234/* 1467 */    MCD::OPC_CheckField, 11, 5, 0, 197, 14, 0, // Skip to: 5255
4235/* 1474 */    MCD::OPC_Decode, 136, 5, 66, // Opcode: EFSNABS
4236/* 1478 */    MCD::OPC_FilterValue, 6, 188, 14, 0, // Skip to: 5255
4237/* 1483 */    MCD::OPC_CheckField, 26, 6, 4, 181, 14, 0, // Skip to: 5255
4238/* 1490 */    MCD::OPC_CheckField, 11, 5, 0, 174, 14, 0, // Skip to: 5255
4239/* 1497 */    MCD::OPC_Decode, 137, 5, 66, // Opcode: EFSNEG
4240/* 1501 */    MCD::OPC_FilterValue, 89, 128, 0, 0, // Skip to: 1634
4241/* 1506 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4242/* 1509 */    MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 1525
4243/* 1514 */    MCD::OPC_CheckField, 26, 6, 4, 150, 14, 0, // Skip to: 5255
4244/* 1521 */    MCD::OPC_Decode, 135, 5, 64, // Opcode: EFSMUL
4245/* 1525 */    MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 1541
4246/* 1530 */    MCD::OPC_CheckField, 26, 6, 4, 134, 14, 0, // Skip to: 5255
4247/* 1537 */    MCD::OPC_Decode, 134, 5, 64, // Opcode: EFSDIV
4248/* 1541 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1564
4249/* 1546 */    MCD::OPC_CheckField, 26, 6, 4, 118, 14, 0, // Skip to: 5255
4250/* 1553 */    MCD::OPC_CheckField, 21, 2, 0, 111, 14, 0, // Skip to: 5255
4251/* 1560 */    MCD::OPC_Decode, 254, 4, 47, // Opcode: EFSCMPGT
4252/* 1564 */    MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1587
4253/* 1569 */    MCD::OPC_CheckField, 26, 6, 4, 95, 14, 0, // Skip to: 5255
4254/* 1576 */    MCD::OPC_CheckField, 21, 2, 0, 88, 14, 0, // Skip to: 5255
4255/* 1583 */    MCD::OPC_Decode, 255, 4, 47, // Opcode: EFSCMPLT
4256/* 1587 */    MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 1610
4257/* 1592 */    MCD::OPC_CheckField, 26, 6, 4, 72, 14, 0, // Skip to: 5255
4258/* 1599 */    MCD::OPC_CheckField, 21, 2, 0, 65, 14, 0, // Skip to: 5255
4259/* 1606 */    MCD::OPC_Decode, 253, 4, 47, // Opcode: EFSCMPEQ
4260/* 1610 */    MCD::OPC_FilterValue, 7, 56, 14, 0, // Skip to: 5255
4261/* 1615 */    MCD::OPC_CheckField, 26, 6, 4, 49, 14, 0, // Skip to: 5255
4262/* 1622 */    MCD::OPC_CheckField, 16, 5, 0, 42, 14, 0, // Skip to: 5255
4263/* 1629 */    MCD::OPC_Decode, 248, 4, 206, 1, // Opcode: EFSCFD
4264/* 1634 */    MCD::OPC_FilterValue, 90, 188, 0, 0, // Skip to: 1827
4265/* 1639 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4266/* 1642 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 1665
4267/* 1647 */    MCD::OPC_CheckField, 26, 6, 4, 17, 14, 0, // Skip to: 5255
4268/* 1654 */    MCD::OPC_CheckField, 16, 5, 0, 10, 14, 0, // Skip to: 5255
4269/* 1661 */    MCD::OPC_Decode, 252, 4, 87, // Opcode: EFSCFUI
4270/* 1665 */    MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 1688
4271/* 1670 */    MCD::OPC_CheckField, 26, 6, 4, 250, 13, 0, // Skip to: 5255
4272/* 1677 */    MCD::OPC_CheckField, 16, 5, 0, 243, 13, 0, // Skip to: 5255
4273/* 1684 */    MCD::OPC_Decode, 250, 4, 87, // Opcode: EFSCFSI
4274/* 1688 */    MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 1711
4275/* 1693 */    MCD::OPC_CheckField, 26, 6, 4, 227, 13, 0, // Skip to: 5255
4276/* 1700 */    MCD::OPC_CheckField, 16, 5, 0, 220, 13, 0, // Skip to: 5255
4277/* 1707 */    MCD::OPC_Decode, 251, 4, 87, // Opcode: EFSCFUF
4278/* 1711 */    MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 1734
4279/* 1716 */    MCD::OPC_CheckField, 26, 6, 4, 204, 13, 0, // Skip to: 5255
4280/* 1723 */    MCD::OPC_CheckField, 16, 5, 0, 197, 13, 0, // Skip to: 5255
4281/* 1730 */    MCD::OPC_Decode, 249, 4, 87, // Opcode: EFSCFSF
4282/* 1734 */    MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1757
4283/* 1739 */    MCD::OPC_CheckField, 26, 6, 4, 181, 13, 0, // Skip to: 5255
4284/* 1746 */    MCD::OPC_CheckField, 16, 5, 0, 174, 13, 0, // Skip to: 5255
4285/* 1753 */    MCD::OPC_Decode, 132, 5, 87, // Opcode: EFSCTUI
4286/* 1757 */    MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1780
4287/* 1762 */    MCD::OPC_CheckField, 26, 6, 4, 158, 13, 0, // Skip to: 5255
4288/* 1769 */    MCD::OPC_CheckField, 16, 5, 0, 151, 13, 0, // Skip to: 5255
4289/* 1776 */    MCD::OPC_Decode, 129, 5, 87, // Opcode: EFSCTSI
4290/* 1780 */    MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 1804
4291/* 1785 */    MCD::OPC_CheckField, 26, 6, 4, 135, 13, 0, // Skip to: 5255
4292/* 1792 */    MCD::OPC_CheckField, 16, 5, 0, 128, 13, 0, // Skip to: 5255
4293/* 1799 */    MCD::OPC_Decode, 131, 5, 207, 1, // Opcode: EFSCTUF
4294/* 1804 */    MCD::OPC_FilterValue, 7, 118, 13, 0, // Skip to: 5255
4295/* 1809 */    MCD::OPC_CheckField, 26, 6, 4, 111, 13, 0, // Skip to: 5255
4296/* 1816 */    MCD::OPC_CheckField, 16, 5, 0, 104, 13, 0, // Skip to: 5255
4297/* 1823 */    MCD::OPC_Decode, 128, 5, 87, // Opcode: EFSCTSF
4298/* 1827 */    MCD::OPC_FilterValue, 91, 121, 0, 0, // Skip to: 1953
4299/* 1832 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4300/* 1835 */    MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 1858
4301/* 1840 */    MCD::OPC_CheckField, 26, 6, 4, 80, 13, 0, // Skip to: 5255
4302/* 1847 */    MCD::OPC_CheckField, 16, 5, 0, 73, 13, 0, // Skip to: 5255
4303/* 1854 */    MCD::OPC_Decode, 133, 5, 87, // Opcode: EFSCTUIZ
4304/* 1858 */    MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 1881
4305/* 1863 */    MCD::OPC_CheckField, 26, 6, 4, 57, 13, 0, // Skip to: 5255
4306/* 1870 */    MCD::OPC_CheckField, 16, 5, 0, 50, 13, 0, // Skip to: 5255
4307/* 1877 */    MCD::OPC_Decode, 130, 5, 87, // Opcode: EFSCTSIZ
4308/* 1881 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1905
4309/* 1886 */    MCD::OPC_CheckField, 26, 6, 4, 34, 13, 0, // Skip to: 5255
4310/* 1893 */    MCD::OPC_CheckField, 21, 2, 0, 27, 13, 0, // Skip to: 5255
4311/* 1900 */    MCD::OPC_Decode, 140, 5, 203, 1, // Opcode: EFSTSTGT
4312/* 1905 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1929
4313/* 1910 */    MCD::OPC_CheckField, 26, 6, 4, 10, 13, 0, // Skip to: 5255
4314/* 1917 */    MCD::OPC_CheckField, 21, 2, 0, 3, 13, 0, // Skip to: 5255
4315/* 1924 */    MCD::OPC_Decode, 141, 5, 203, 1, // Opcode: EFSTSTLT
4316/* 1929 */    MCD::OPC_FilterValue, 6, 249, 12, 0, // Skip to: 5255
4317/* 1934 */    MCD::OPC_CheckField, 26, 6, 4, 242, 12, 0, // Skip to: 5255
4318/* 1941 */    MCD::OPC_CheckField, 21, 2, 0, 235, 12, 0, // Skip to: 5255
4319/* 1948 */    MCD::OPC_Decode, 139, 5, 203, 1, // Opcode: EFSTSTEQ
4320/* 1953 */    MCD::OPC_FilterValue, 92, 157, 0, 0, // Skip to: 2115
4321/* 1958 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4322/* 1961 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1978
4323/* 1966 */    MCD::OPC_CheckField, 26, 6, 4, 210, 12, 0, // Skip to: 5255
4324/* 1973 */    MCD::OPC_Decode, 219, 4, 197, 1, // Opcode: EFDADD
4325/* 1978 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 1995
4326/* 1983 */    MCD::OPC_CheckField, 26, 6, 4, 193, 12, 0, // Skip to: 5255
4327/* 1990 */    MCD::OPC_Decode, 242, 4, 197, 1, // Opcode: EFDSUB
4328/* 1995 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2019
4329/* 2000 */    MCD::OPC_CheckField, 26, 6, 4, 176, 12, 0, // Skip to: 5255
4330/* 2007 */    MCD::OPC_CheckField, 16, 5, 0, 169, 12, 0, // Skip to: 5255
4331/* 2014 */    MCD::OPC_Decode, 226, 4, 207, 1, // Opcode: EFDCFUID
4332/* 2019 */    MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2043
4333/* 2024 */    MCD::OPC_CheckField, 26, 6, 4, 152, 12, 0, // Skip to: 5255
4334/* 2031 */    MCD::OPC_CheckField, 16, 5, 0, 145, 12, 0, // Skip to: 5255
4335/* 2038 */    MCD::OPC_Decode, 223, 4, 207, 1, // Opcode: EFDCFSID
4336/* 2043 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2067
4337/* 2048 */    MCD::OPC_CheckField, 26, 6, 4, 128, 12, 0, // Skip to: 5255
4338/* 2055 */    MCD::OPC_CheckField, 11, 5, 0, 121, 12, 0, // Skip to: 5255
4339/* 2062 */    MCD::OPC_Decode, 218, 4, 200, 1, // Opcode: EFDABS
4340/* 2067 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2091
4341/* 2072 */    MCD::OPC_CheckField, 26, 6, 4, 104, 12, 0, // Skip to: 5255
4342/* 2079 */    MCD::OPC_CheckField, 11, 5, 0, 97, 12, 0, // Skip to: 5255
4343/* 2086 */    MCD::OPC_Decode, 240, 4, 200, 1, // Opcode: EFDNABS
4344/* 2091 */    MCD::OPC_FilterValue, 6, 87, 12, 0, // Skip to: 5255
4345/* 2096 */    MCD::OPC_CheckField, 26, 6, 4, 80, 12, 0, // Skip to: 5255
4346/* 2103 */    MCD::OPC_CheckField, 11, 5, 0, 73, 12, 0, // Skip to: 5255
4347/* 2110 */    MCD::OPC_Decode, 241, 4, 200, 1, // Opcode: EFDNEG
4348/* 2115 */    MCD::OPC_FilterValue, 93, 181, 0, 0, // Skip to: 2301
4349/* 2120 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4350/* 2123 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2140
4351/* 2128 */    MCD::OPC_CheckField, 26, 6, 4, 48, 12, 0, // Skip to: 5255
4352/* 2135 */    MCD::OPC_Decode, 239, 4, 197, 1, // Opcode: EFDMUL
4353/* 2140 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2157
4354/* 2145 */    MCD::OPC_CheckField, 26, 6, 4, 31, 12, 0, // Skip to: 5255
4355/* 2152 */    MCD::OPC_Decode, 238, 4, 197, 1, // Opcode: EFDDIV
4356/* 2157 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2181
4357/* 2162 */    MCD::OPC_CheckField, 26, 6, 4, 14, 12, 0, // Skip to: 5255
4358/* 2169 */    MCD::OPC_CheckField, 16, 5, 0, 7, 12, 0, // Skip to: 5255
4359/* 2176 */    MCD::OPC_Decode, 236, 4, 206, 1, // Opcode: EFDCTUIDZ
4360/* 2181 */    MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2205
4361/* 2186 */    MCD::OPC_CheckField, 26, 6, 4, 246, 11, 0, // Skip to: 5255
4362/* 2193 */    MCD::OPC_CheckField, 16, 5, 0, 239, 11, 0, // Skip to: 5255
4363/* 2200 */    MCD::OPC_Decode, 232, 4, 206, 1, // Opcode: EFDCTSIDZ
4364/* 2205 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2229
4365/* 2210 */    MCD::OPC_CheckField, 26, 6, 4, 222, 11, 0, // Skip to: 5255
4366/* 2217 */    MCD::OPC_CheckField, 21, 2, 0, 215, 11, 0, // Skip to: 5255
4367/* 2224 */    MCD::OPC_Decode, 228, 4, 203, 1, // Opcode: EFDCMPGT
4368/* 2229 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2253
4369/* 2234 */    MCD::OPC_CheckField, 26, 6, 4, 198, 11, 0, // Skip to: 5255
4370/* 2241 */    MCD::OPC_CheckField, 21, 2, 0, 191, 11, 0, // Skip to: 5255
4371/* 2248 */    MCD::OPC_Decode, 229, 4, 203, 1, // Opcode: EFDCMPLT
4372/* 2253 */    MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2277
4373/* 2258 */    MCD::OPC_CheckField, 26, 6, 4, 174, 11, 0, // Skip to: 5255
4374/* 2265 */    MCD::OPC_CheckField, 21, 2, 0, 167, 11, 0, // Skip to: 5255
4375/* 2272 */    MCD::OPC_Decode, 227, 4, 203, 1, // Opcode: EFDCMPEQ
4376/* 2277 */    MCD::OPC_FilterValue, 7, 157, 11, 0, // Skip to: 5255
4377/* 2282 */    MCD::OPC_CheckField, 26, 6, 4, 150, 11, 0, // Skip to: 5255
4378/* 2289 */    MCD::OPC_CheckField, 16, 5, 0, 143, 11, 0, // Skip to: 5255
4379/* 2296 */    MCD::OPC_Decode, 220, 4, 207, 1, // Opcode: EFDCFS
4380/* 2301 */    MCD::OPC_FilterValue, 94, 195, 0, 0, // Skip to: 2501
4381/* 2306 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4382/* 2309 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2333
4383/* 2314 */    MCD::OPC_CheckField, 26, 6, 4, 118, 11, 0, // Skip to: 5255
4384/* 2321 */    MCD::OPC_CheckField, 16, 5, 0, 111, 11, 0, // Skip to: 5255
4385/* 2328 */    MCD::OPC_Decode, 225, 4, 207, 1, // Opcode: EFDCFUI
4386/* 2333 */    MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 2357
4387/* 2338 */    MCD::OPC_CheckField, 26, 6, 4, 94, 11, 0, // Skip to: 5255
4388/* 2345 */    MCD::OPC_CheckField, 16, 5, 0, 87, 11, 0, // Skip to: 5255
4389/* 2352 */    MCD::OPC_Decode, 222, 4, 207, 1, // Opcode: EFDCFSI
4390/* 2357 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2381
4391/* 2362 */    MCD::OPC_CheckField, 26, 6, 4, 70, 11, 0, // Skip to: 5255
4392/* 2369 */    MCD::OPC_CheckField, 16, 5, 0, 63, 11, 0, // Skip to: 5255
4393/* 2376 */    MCD::OPC_Decode, 224, 4, 207, 1, // Opcode: EFDCFUF
4394/* 2381 */    MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2405
4395/* 2386 */    MCD::OPC_CheckField, 26, 6, 4, 46, 11, 0, // Skip to: 5255
4396/* 2393 */    MCD::OPC_CheckField, 16, 5, 0, 39, 11, 0, // Skip to: 5255
4397/* 2400 */    MCD::OPC_Decode, 221, 4, 207, 1, // Opcode: EFDCFSF
4398/* 2405 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2429
4399/* 2410 */    MCD::OPC_CheckField, 26, 6, 4, 22, 11, 0, // Skip to: 5255
4400/* 2417 */    MCD::OPC_CheckField, 16, 5, 0, 15, 11, 0, // Skip to: 5255
4401/* 2424 */    MCD::OPC_Decode, 235, 4, 206, 1, // Opcode: EFDCTUI
4402/* 2429 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2453
4403/* 2434 */    MCD::OPC_CheckField, 26, 6, 4, 254, 10, 0, // Skip to: 5255
4404/* 2441 */    MCD::OPC_CheckField, 16, 5, 0, 247, 10, 0, // Skip to: 5255
4405/* 2448 */    MCD::OPC_Decode, 231, 4, 206, 1, // Opcode: EFDCTSI
4406/* 2453 */    MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2477
4407/* 2458 */    MCD::OPC_CheckField, 26, 6, 4, 230, 10, 0, // Skip to: 5255
4408/* 2465 */    MCD::OPC_CheckField, 16, 5, 0, 223, 10, 0, // Skip to: 5255
4409/* 2472 */    MCD::OPC_Decode, 234, 4, 207, 1, // Opcode: EFDCTUF
4410/* 2477 */    MCD::OPC_FilterValue, 7, 213, 10, 0, // Skip to: 5255
4411/* 2482 */    MCD::OPC_CheckField, 26, 6, 4, 206, 10, 0, // Skip to: 5255
4412/* 2489 */    MCD::OPC_CheckField, 16, 5, 0, 199, 10, 0, // Skip to: 5255
4413/* 2496 */    MCD::OPC_Decode, 230, 4, 207, 1, // Opcode: EFDCTSF
4414/* 2501 */    MCD::OPC_FilterValue, 95, 123, 0, 0, // Skip to: 2629
4415/* 2506 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4416/* 2509 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2533
4417/* 2514 */    MCD::OPC_CheckField, 26, 6, 4, 174, 10, 0, // Skip to: 5255
4418/* 2521 */    MCD::OPC_CheckField, 16, 5, 0, 167, 10, 0, // Skip to: 5255
4419/* 2528 */    MCD::OPC_Decode, 237, 4, 206, 1, // Opcode: EFDCTUIZ
4420/* 2533 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2557
4421/* 2538 */    MCD::OPC_CheckField, 26, 6, 4, 150, 10, 0, // Skip to: 5255
4422/* 2545 */    MCD::OPC_CheckField, 16, 5, 0, 143, 10, 0, // Skip to: 5255
4423/* 2552 */    MCD::OPC_Decode, 233, 4, 206, 1, // Opcode: EFDCTSIZ
4424/* 2557 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2581
4425/* 2562 */    MCD::OPC_CheckField, 26, 6, 4, 126, 10, 0, // Skip to: 5255
4426/* 2569 */    MCD::OPC_CheckField, 21, 2, 0, 119, 10, 0, // Skip to: 5255
4427/* 2576 */    MCD::OPC_Decode, 244, 4, 203, 1, // Opcode: EFDTSTGT
4428/* 2581 */    MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2605
4429/* 2586 */    MCD::OPC_CheckField, 26, 6, 4, 102, 10, 0, // Skip to: 5255
4430/* 2593 */    MCD::OPC_CheckField, 21, 2, 0, 95, 10, 0, // Skip to: 5255
4431/* 2600 */    MCD::OPC_Decode, 245, 4, 203, 1, // Opcode: EFDTSTLT
4432/* 2605 */    MCD::OPC_FilterValue, 6, 85, 10, 0, // Skip to: 5255
4433/* 2610 */    MCD::OPC_CheckField, 26, 6, 4, 78, 10, 0, // Skip to: 5255
4434/* 2617 */    MCD::OPC_CheckField, 21, 2, 0, 71, 10, 0, // Skip to: 5255
4435/* 2624 */    MCD::OPC_Decode, 243, 4, 203, 1, // Opcode: EFDTSTEQ
4436/* 2629 */    MCD::OPC_FilterValue, 96, 105, 0, 0, // Skip to: 2739
4437/* 2634 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4438/* 2637 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2654
4439/* 2642 */    MCD::OPC_CheckField, 26, 6, 4, 46, 10, 0, // Skip to: 5255
4440/* 2649 */    MCD::OPC_Decode, 196, 5, 208, 1, // Opcode: EVLDDX
4441/* 2654 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2671
4442/* 2659 */    MCD::OPC_CheckField, 26, 6, 4, 29, 10, 0, // Skip to: 5255
4443/* 2666 */    MCD::OPC_Decode, 195, 5, 209, 1, // Opcode: EVLDD
4444/* 2671 */    MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 2688
4445/* 2676 */    MCD::OPC_CheckField, 26, 6, 4, 12, 10, 0, // Skip to: 5255
4446/* 2683 */    MCD::OPC_Decode, 200, 5, 208, 1, // Opcode: EVLDWX
4447/* 2688 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 2705
4448/* 2693 */    MCD::OPC_CheckField, 26, 6, 4, 251, 9, 0, // Skip to: 5255
4449/* 2700 */    MCD::OPC_Decode, 199, 5, 209, 1, // Opcode: EVLDW
4450/* 2705 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2722
4451/* 2710 */    MCD::OPC_CheckField, 26, 6, 4, 234, 9, 0, // Skip to: 5255
4452/* 2717 */    MCD::OPC_Decode, 198, 5, 208, 1, // Opcode: EVLDHX
4453/* 2722 */    MCD::OPC_FilterValue, 5, 224, 9, 0, // Skip to: 5255
4454/* 2727 */    MCD::OPC_CheckField, 26, 6, 4, 217, 9, 0, // Skip to: 5255
4455/* 2734 */    MCD::OPC_Decode, 197, 5, 209, 1, // Opcode: EVLDH
4456/* 2739 */    MCD::OPC_FilterValue, 97, 105, 0, 0, // Skip to: 2849
4457/* 2744 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4458/* 2747 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2764
4459/* 2752 */    MCD::OPC_CheckField, 26, 6, 4, 192, 9, 0, // Skip to: 5255
4460/* 2759 */    MCD::OPC_Decode, 202, 5, 208, 1, // Opcode: EVLHHESPLATX
4461/* 2764 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2781
4462/* 2769 */    MCD::OPC_CheckField, 26, 6, 4, 175, 9, 0, // Skip to: 5255
4463/* 2776 */    MCD::OPC_Decode, 201, 5, 210, 1, // Opcode: EVLHHESPLAT
4464/* 2781 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2798
4465/* 2786 */    MCD::OPC_CheckField, 26, 6, 4, 158, 9, 0, // Skip to: 5255
4466/* 2793 */    MCD::OPC_Decode, 206, 5, 208, 1, // Opcode: EVLHHOUSPLATX
4467/* 2798 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 2815
4468/* 2803 */    MCD::OPC_CheckField, 26, 6, 4, 141, 9, 0, // Skip to: 5255
4469/* 2810 */    MCD::OPC_Decode, 205, 5, 210, 1, // Opcode: EVLHHOUSPLAT
4470/* 2815 */    MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 2832
4471/* 2820 */    MCD::OPC_CheckField, 26, 6, 4, 124, 9, 0, // Skip to: 5255
4472/* 2827 */    MCD::OPC_Decode, 204, 5, 208, 1, // Opcode: EVLHHOSSPLATX
4473/* 2832 */    MCD::OPC_FilterValue, 7, 114, 9, 0, // Skip to: 5255
4474/* 2837 */    MCD::OPC_CheckField, 26, 6, 4, 107, 9, 0, // Skip to: 5255
4475/* 2844 */    MCD::OPC_Decode, 203, 5, 210, 1, // Opcode: EVLHHOSSPLAT
4476/* 2849 */    MCD::OPC_FilterValue, 98, 105, 0, 0, // Skip to: 2959
4477/* 2854 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4478/* 2857 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2874
4479/* 2862 */    MCD::OPC_CheckField, 26, 6, 4, 82, 9, 0, // Skip to: 5255
4480/* 2869 */    MCD::OPC_Decode, 208, 5, 208, 1, // Opcode: EVLWHEX
4481/* 2874 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2891
4482/* 2879 */    MCD::OPC_CheckField, 26, 6, 4, 65, 9, 0, // Skip to: 5255
4483/* 2886 */    MCD::OPC_Decode, 207, 5, 211, 1, // Opcode: EVLWHE
4484/* 2891 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2908
4485/* 2896 */    MCD::OPC_CheckField, 26, 6, 4, 48, 9, 0, // Skip to: 5255
4486/* 2903 */    MCD::OPC_Decode, 212, 5, 208, 1, // Opcode: EVLWHOUX
4487/* 2908 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 2925
4488/* 2913 */    MCD::OPC_CheckField, 26, 6, 4, 31, 9, 0, // Skip to: 5255
4489/* 2920 */    MCD::OPC_Decode, 211, 5, 211, 1, // Opcode: EVLWHOU
4490/* 2925 */    MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 2942
4491/* 2930 */    MCD::OPC_CheckField, 26, 6, 4, 14, 9, 0, // Skip to: 5255
4492/* 2937 */    MCD::OPC_Decode, 210, 5, 208, 1, // Opcode: EVLWHOSX
4493/* 2942 */    MCD::OPC_FilterValue, 7, 4, 9, 0, // Skip to: 5255
4494/* 2947 */    MCD::OPC_CheckField, 26, 6, 4, 253, 8, 0, // Skip to: 5255
4495/* 2954 */    MCD::OPC_Decode, 209, 5, 211, 1, // Opcode: EVLWHOS
4496/* 2959 */    MCD::OPC_FilterValue, 99, 71, 0, 0, // Skip to: 3035
4497/* 2964 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4498/* 2967 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2984
4499/* 2972 */    MCD::OPC_CheckField, 26, 6, 4, 228, 8, 0, // Skip to: 5255
4500/* 2979 */    MCD::OPC_Decode, 216, 5, 208, 1, // Opcode: EVLWWSPLATX
4501/* 2984 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3001
4502/* 2989 */    MCD::OPC_CheckField, 26, 6, 4, 211, 8, 0, // Skip to: 5255
4503/* 2996 */    MCD::OPC_Decode, 215, 5, 211, 1, // Opcode: EVLWWSPLAT
4504/* 3001 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3018
4505/* 3006 */    MCD::OPC_CheckField, 26, 6, 4, 194, 8, 0, // Skip to: 5255
4506/* 3013 */    MCD::OPC_Decode, 214, 5, 208, 1, // Opcode: EVLWHSPLATX
4507/* 3018 */    MCD::OPC_FilterValue, 5, 184, 8, 0, // Skip to: 5255
4508/* 3023 */    MCD::OPC_CheckField, 26, 6, 4, 177, 8, 0, // Skip to: 5255
4509/* 3030 */    MCD::OPC_Decode, 213, 5, 211, 1, // Opcode: EVLWHSPLAT
4510/* 3035 */    MCD::OPC_FilterValue, 100, 105, 0, 0, // Skip to: 3145
4511/* 3040 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4512/* 3043 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3060
4513/* 3048 */    MCD::OPC_CheckField, 26, 6, 4, 152, 8, 0, // Skip to: 5255
4514/* 3055 */    MCD::OPC_Decode, 198, 6, 208, 1, // Opcode: EVSTDDX
4515/* 3060 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3077
4516/* 3065 */    MCD::OPC_CheckField, 26, 6, 4, 135, 8, 0, // Skip to: 5255
4517/* 3072 */    MCD::OPC_Decode, 197, 6, 209, 1, // Opcode: EVSTDD
4518/* 3077 */    MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 3094
4519/* 3082 */    MCD::OPC_CheckField, 26, 6, 4, 118, 8, 0, // Skip to: 5255
4520/* 3089 */    MCD::OPC_Decode, 202, 6, 208, 1, // Opcode: EVSTDWX
4521/* 3094 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3111
4522/* 3099 */    MCD::OPC_CheckField, 26, 6, 4, 101, 8, 0, // Skip to: 5255
4523/* 3106 */    MCD::OPC_Decode, 201, 6, 209, 1, // Opcode: EVSTDW
4524/* 3111 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3128
4525/* 3116 */    MCD::OPC_CheckField, 26, 6, 4, 84, 8, 0, // Skip to: 5255
4526/* 3123 */    MCD::OPC_Decode, 200, 6, 208, 1, // Opcode: EVSTDHX
4527/* 3128 */    MCD::OPC_FilterValue, 5, 74, 8, 0, // Skip to: 5255
4528/* 3133 */    MCD::OPC_CheckField, 26, 6, 4, 67, 8, 0, // Skip to: 5255
4529/* 3140 */    MCD::OPC_Decode, 199, 6, 209, 1, // Opcode: EVSTDH
4530/* 3145 */    MCD::OPC_FilterValue, 102, 71, 0, 0, // Skip to: 3221
4531/* 3150 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4532/* 3153 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3170
4533/* 3158 */    MCD::OPC_CheckField, 26, 6, 4, 42, 8, 0, // Skip to: 5255
4534/* 3165 */    MCD::OPC_Decode, 204, 6, 208, 1, // Opcode: EVSTWHEX
4535/* 3170 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3187
4536/* 3175 */    MCD::OPC_CheckField, 26, 6, 4, 25, 8, 0, // Skip to: 5255
4537/* 3182 */    MCD::OPC_Decode, 203, 6, 211, 1, // Opcode: EVSTWHE
4538/* 3187 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3204
4539/* 3192 */    MCD::OPC_CheckField, 26, 6, 4, 8, 8, 0, // Skip to: 5255
4540/* 3199 */    MCD::OPC_Decode, 206, 6, 208, 1, // Opcode: EVSTWHOX
4541/* 3204 */    MCD::OPC_FilterValue, 5, 254, 7, 0, // Skip to: 5255
4542/* 3209 */    MCD::OPC_CheckField, 26, 6, 4, 247, 7, 0, // Skip to: 5255
4543/* 3216 */    MCD::OPC_Decode, 205, 6, 211, 1, // Opcode: EVSTWHO
4544/* 3221 */    MCD::OPC_FilterValue, 103, 71, 0, 0, // Skip to: 3297
4545/* 3226 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4546/* 3229 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3246
4547/* 3234 */    MCD::OPC_CheckField, 26, 6, 4, 222, 7, 0, // Skip to: 5255
4548/* 3241 */    MCD::OPC_Decode, 208, 6, 208, 1, // Opcode: EVSTWWEX
4549/* 3246 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3263
4550/* 3251 */    MCD::OPC_CheckField, 26, 6, 4, 205, 7, 0, // Skip to: 5255
4551/* 3258 */    MCD::OPC_Decode, 207, 6, 211, 1, // Opcode: EVSTWWE
4552/* 3263 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3280
4553/* 3268 */    MCD::OPC_CheckField, 26, 6, 4, 188, 7, 0, // Skip to: 5255
4554/* 3275 */    MCD::OPC_Decode, 210, 6, 208, 1, // Opcode: EVSTWWOX
4555/* 3280 */    MCD::OPC_FilterValue, 5, 178, 7, 0, // Skip to: 5255
4556/* 3285 */    MCD::OPC_CheckField, 26, 6, 4, 171, 7, 0, // Skip to: 5255
4557/* 3292 */    MCD::OPC_Decode, 209, 6, 211, 1, // Opcode: EVSTWWO
4558/* 3297 */    MCD::OPC_FilterValue, 128, 1, 37, 0, 0, // Skip to: 3340
4559/* 3303 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4560/* 3306 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3323
4561/* 3311 */    MCD::OPC_CheckField, 26, 6, 4, 145, 7, 0, // Skip to: 5255
4562/* 3318 */    MCD::OPC_Decode, 235, 5, 197, 1, // Opcode: EVMHESSF
4563/* 3323 */    MCD::OPC_FilterValue, 7, 135, 7, 0, // Skip to: 5255
4564/* 3328 */    MCD::OPC_CheckField, 26, 6, 4, 128, 7, 0, // Skip to: 5255
4565/* 3335 */    MCD::OPC_Decode, 133, 6, 197, 1, // Opcode: EVMHOSSF
4566/* 3340 */    MCD::OPC_FilterValue, 129, 1, 105, 0, 0, // Skip to: 3451
4567/* 3346 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4568/* 3349 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3366
4569/* 3354 */    MCD::OPC_CheckField, 26, 6, 4, 102, 7, 0, // Skip to: 5255
4570/* 3361 */    MCD::OPC_Decode, 241, 5, 197, 1, // Opcode: EVMHEUMI
4571/* 3366 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3383
4572/* 3371 */    MCD::OPC_CheckField, 26, 6, 4, 85, 7, 0, // Skip to: 5255
4573/* 3378 */    MCD::OPC_Decode, 231, 5, 197, 1, // Opcode: EVMHESMI
4574/* 3383 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3400
4575/* 3388 */    MCD::OPC_CheckField, 26, 6, 4, 68, 7, 0, // Skip to: 5255
4576/* 3395 */    MCD::OPC_Decode, 227, 5, 197, 1, // Opcode: EVMHESMF
4577/* 3400 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3417
4578/* 3405 */    MCD::OPC_CheckField, 26, 6, 4, 51, 7, 0, // Skip to: 5255
4579/* 3412 */    MCD::OPC_Decode, 139, 6, 197, 1, // Opcode: EVMHOUMI
4580/* 3417 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3434
4581/* 3422 */    MCD::OPC_CheckField, 26, 6, 4, 34, 7, 0, // Skip to: 5255
4582/* 3429 */    MCD::OPC_Decode, 129, 6, 197, 1, // Opcode: EVMHOSMI
4583/* 3434 */    MCD::OPC_FilterValue, 7, 24, 7, 0, // Skip to: 5255
4584/* 3439 */    MCD::OPC_CheckField, 26, 6, 4, 17, 7, 0, // Skip to: 5255
4585/* 3446 */    MCD::OPC_Decode, 253, 5, 197, 1, // Opcode: EVMHOSMF
4586/* 3451 */    MCD::OPC_FilterValue, 132, 1, 37, 0, 0, // Skip to: 3494
4587/* 3457 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4588/* 3460 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3477
4589/* 3465 */    MCD::OPC_CheckField, 26, 6, 4, 247, 6, 0, // Skip to: 5255
4590/* 3472 */    MCD::OPC_Decode, 236, 5, 197, 1, // Opcode: EVMHESSFA
4591/* 3477 */    MCD::OPC_FilterValue, 7, 237, 6, 0, // Skip to: 5255
4592/* 3482 */    MCD::OPC_CheckField, 26, 6, 4, 230, 6, 0, // Skip to: 5255
4593/* 3489 */    MCD::OPC_Decode, 134, 6, 197, 1, // Opcode: EVMHOSSFA
4594/* 3494 */    MCD::OPC_FilterValue, 133, 1, 105, 0, 0, // Skip to: 3605
4595/* 3500 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4596/* 3503 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3520
4597/* 3508 */    MCD::OPC_CheckField, 26, 6, 4, 204, 6, 0, // Skip to: 5255
4598/* 3515 */    MCD::OPC_Decode, 242, 5, 197, 1, // Opcode: EVMHEUMIA
4599/* 3520 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3537
4600/* 3525 */    MCD::OPC_CheckField, 26, 6, 4, 187, 6, 0, // Skip to: 5255
4601/* 3532 */    MCD::OPC_Decode, 232, 5, 197, 1, // Opcode: EVMHESMIA
4602/* 3537 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3554
4603/* 3542 */    MCD::OPC_CheckField, 26, 6, 4, 170, 6, 0, // Skip to: 5255
4604/* 3549 */    MCD::OPC_Decode, 228, 5, 197, 1, // Opcode: EVMHESMFA
4605/* 3554 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3571
4606/* 3559 */    MCD::OPC_CheckField, 26, 6, 4, 153, 6, 0, // Skip to: 5255
4607/* 3566 */    MCD::OPC_Decode, 140, 6, 197, 1, // Opcode: EVMHOUMIA
4608/* 3571 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3588
4609/* 3576 */    MCD::OPC_CheckField, 26, 6, 4, 136, 6, 0, // Skip to: 5255
4610/* 3583 */    MCD::OPC_Decode, 130, 6, 197, 1, // Opcode: EVMHOSMIA
4611/* 3588 */    MCD::OPC_FilterValue, 7, 126, 6, 0, // Skip to: 5255
4612/* 3593 */    MCD::OPC_CheckField, 26, 6, 4, 119, 6, 0, // Skip to: 5255
4613/* 3600 */    MCD::OPC_Decode, 254, 5, 197, 1, // Opcode: EVMHOSMFA
4614/* 3605 */    MCD::OPC_FilterValue, 136, 1, 19, 0, 0, // Skip to: 3630
4615/* 3611 */    MCD::OPC_CheckField, 26, 6, 4, 101, 6, 0, // Skip to: 5255
4616/* 3618 */    MCD::OPC_CheckField, 0, 3, 7, 94, 6, 0, // Skip to: 5255
4617/* 3625 */    MCD::OPC_Decode, 150, 6, 197, 1, // Opcode: EVMWHSSF
4618/* 3630 */    MCD::OPC_FilterValue, 137, 1, 71, 0, 0, // Skip to: 3707
4619/* 3636 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4620/* 3639 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3656
4621/* 3644 */    MCD::OPC_CheckField, 26, 6, 4, 68, 6, 0, // Skip to: 5255
4622/* 3651 */    MCD::OPC_Decode, 158, 6, 197, 1, // Opcode: EVMWLUMI
4623/* 3656 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3673
4624/* 3661 */    MCD::OPC_CheckField, 26, 6, 4, 51, 6, 0, // Skip to: 5255
4625/* 3668 */    MCD::OPC_Decode, 152, 6, 197, 1, // Opcode: EVMWHUMI
4626/* 3673 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3690
4627/* 3678 */    MCD::OPC_CheckField, 26, 6, 4, 34, 6, 0, // Skip to: 5255
4628/* 3685 */    MCD::OPC_Decode, 148, 6, 197, 1, // Opcode: EVMWHSMI
4629/* 3690 */    MCD::OPC_FilterValue, 7, 24, 6, 0, // Skip to: 5255
4630/* 3695 */    MCD::OPC_CheckField, 26, 6, 4, 17, 6, 0, // Skip to: 5255
4631/* 3702 */    MCD::OPC_Decode, 146, 6, 197, 1, // Opcode: EVMWHSMF
4632/* 3707 */    MCD::OPC_FilterValue, 138, 1, 19, 0, 0, // Skip to: 3732
4633/* 3713 */    MCD::OPC_CheckField, 26, 6, 4, 255, 5, 0, // Skip to: 5255
4634/* 3720 */    MCD::OPC_CheckField, 0, 3, 3, 248, 5, 0, // Skip to: 5255
4635/* 3727 */    MCD::OPC_Decode, 172, 6, 197, 1, // Opcode: EVMWSSF
4636/* 3732 */    MCD::OPC_FilterValue, 139, 1, 54, 0, 0, // Skip to: 3792
4637/* 3738 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4638/* 3741 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3758
4639/* 3746 */    MCD::OPC_CheckField, 26, 6, 4, 222, 5, 0, // Skip to: 5255
4640/* 3753 */    MCD::OPC_Decode, 176, 6, 197, 1, // Opcode: EVMWUMI
4641/* 3758 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3775
4642/* 3763 */    MCD::OPC_CheckField, 26, 6, 4, 205, 5, 0, // Skip to: 5255
4643/* 3770 */    MCD::OPC_Decode, 168, 6, 197, 1, // Opcode: EVMWSMI
4644/* 3775 */    MCD::OPC_FilterValue, 3, 195, 5, 0, // Skip to: 5255
4645/* 3780 */    MCD::OPC_CheckField, 26, 6, 4, 188, 5, 0, // Skip to: 5255
4646/* 3787 */    MCD::OPC_Decode, 164, 6, 197, 1, // Opcode: EVMWSMF
4647/* 3792 */    MCD::OPC_FilterValue, 140, 1, 19, 0, 0, // Skip to: 3817
4648/* 3798 */    MCD::OPC_CheckField, 26, 6, 4, 170, 5, 0, // Skip to: 5255
4649/* 3805 */    MCD::OPC_CheckField, 0, 3, 7, 163, 5, 0, // Skip to: 5255
4650/* 3812 */    MCD::OPC_Decode, 151, 6, 197, 1, // Opcode: EVMWHSSFA
4651/* 3817 */    MCD::OPC_FilterValue, 141, 1, 71, 0, 0, // Skip to: 3894
4652/* 3823 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4653/* 3826 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3843
4654/* 3831 */    MCD::OPC_CheckField, 26, 6, 4, 137, 5, 0, // Skip to: 5255
4655/* 3838 */    MCD::OPC_Decode, 159, 6, 197, 1, // Opcode: EVMWLUMIA
4656/* 3843 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3860
4657/* 3848 */    MCD::OPC_CheckField, 26, 6, 4, 120, 5, 0, // Skip to: 5255
4658/* 3855 */    MCD::OPC_Decode, 153, 6, 197, 1, // Opcode: EVMWHUMIA
4659/* 3860 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3877
4660/* 3865 */    MCD::OPC_CheckField, 26, 6, 4, 103, 5, 0, // Skip to: 5255
4661/* 3872 */    MCD::OPC_Decode, 149, 6, 197, 1, // Opcode: EVMWHSMIA
4662/* 3877 */    MCD::OPC_FilterValue, 7, 93, 5, 0, // Skip to: 5255
4663/* 3882 */    MCD::OPC_CheckField, 26, 6, 4, 86, 5, 0, // Skip to: 5255
4664/* 3889 */    MCD::OPC_Decode, 147, 6, 197, 1, // Opcode: EVMWHSMFA
4665/* 3894 */    MCD::OPC_FilterValue, 142, 1, 19, 0, 0, // Skip to: 3919
4666/* 3900 */    MCD::OPC_CheckField, 26, 6, 4, 68, 5, 0, // Skip to: 5255
4667/* 3907 */    MCD::OPC_CheckField, 0, 3, 3, 61, 5, 0, // Skip to: 5255
4668/* 3914 */    MCD::OPC_Decode, 173, 6, 197, 1, // Opcode: EVMWSSFA
4669/* 3919 */    MCD::OPC_FilterValue, 143, 1, 54, 0, 0, // Skip to: 3979
4670/* 3925 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4671/* 3928 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3945
4672/* 3933 */    MCD::OPC_CheckField, 26, 6, 4, 35, 5, 0, // Skip to: 5255
4673/* 3940 */    MCD::OPC_Decode, 177, 6, 197, 1, // Opcode: EVMWUMIA
4674/* 3945 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3962
4675/* 3950 */    MCD::OPC_CheckField, 26, 6, 4, 18, 5, 0, // Skip to: 5255
4676/* 3957 */    MCD::OPC_Decode, 169, 6, 197, 1, // Opcode: EVMWSMIA
4677/* 3962 */    MCD::OPC_FilterValue, 3, 8, 5, 0, // Skip to: 5255
4678/* 3967 */    MCD::OPC_CheckField, 26, 6, 4, 1, 5, 0, // Skip to: 5255
4679/* 3974 */    MCD::OPC_Decode, 165, 6, 197, 1, // Opcode: EVMWSMFA
4680/* 3979 */    MCD::OPC_FilterValue, 152, 1, 157, 0, 0, // Skip to: 4142
4681/* 3985 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4682/* 3988 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 4012
4683/* 3993 */    MCD::OPC_CheckField, 26, 6, 4, 231, 4, 0, // Skip to: 5255
4684/* 4000 */    MCD::OPC_CheckField, 11, 5, 0, 224, 4, 0, // Skip to: 5255
4685/* 4007 */    MCD::OPC_Decode, 156, 5, 200, 1, // Opcode: EVADDUSIAAW
4686/* 4012 */    MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 4036
4687/* 4017 */    MCD::OPC_CheckField, 26, 6, 4, 207, 4, 0, // Skip to: 5255
4688/* 4024 */    MCD::OPC_CheckField, 11, 5, 0, 200, 4, 0, // Skip to: 5255
4689/* 4031 */    MCD::OPC_Decode, 154, 5, 200, 1, // Opcode: EVADDSSIAAW
4690/* 4036 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 4060
4691/* 4041 */    MCD::OPC_CheckField, 26, 6, 4, 183, 4, 0, // Skip to: 5255
4692/* 4048 */    MCD::OPC_CheckField, 11, 5, 0, 176, 4, 0, // Skip to: 5255
4693/* 4055 */    MCD::OPC_Decode, 214, 6, 200, 1, // Opcode: EVSUBFUSIAAW
4694/* 4060 */    MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 4084
4695/* 4065 */    MCD::OPC_CheckField, 26, 6, 4, 159, 4, 0, // Skip to: 5255
4696/* 4072 */    MCD::OPC_CheckField, 11, 5, 0, 152, 4, 0, // Skip to: 5255
4697/* 4079 */    MCD::OPC_Decode, 212, 6, 200, 1, // Opcode: EVSUBFSSIAAW
4698/* 4084 */    MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 4108
4699/* 4089 */    MCD::OPC_CheckField, 26, 6, 4, 135, 4, 0, // Skip to: 5255
4700/* 4096 */    MCD::OPC_CheckField, 11, 5, 0, 128, 4, 0, // Skip to: 5255
4701/* 4103 */    MCD::OPC_Decode, 145, 6, 200, 1, // Opcode: EVMRA
4702/* 4108 */    MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 4125
4703/* 4113 */    MCD::OPC_CheckField, 26, 6, 4, 111, 4, 0, // Skip to: 5255
4704/* 4120 */    MCD::OPC_Decode, 167, 5, 197, 1, // Opcode: EVDIVWS
4705/* 4125 */    MCD::OPC_FilterValue, 7, 101, 4, 0, // Skip to: 5255
4706/* 4130 */    MCD::OPC_CheckField, 26, 6, 4, 94, 4, 0, // Skip to: 5255
4707/* 4137 */    MCD::OPC_Decode, 168, 5, 197, 1, // Opcode: EVDIVWU
4708/* 4142 */    MCD::OPC_FilterValue, 153, 1, 99, 0, 0, // Skip to: 4247
4709/* 4148 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4710/* 4151 */    MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 4175
4711/* 4156 */    MCD::OPC_CheckField, 26, 6, 4, 68, 4, 0, // Skip to: 5255
4712/* 4163 */    MCD::OPC_CheckField, 11, 5, 0, 61, 4, 0, // Skip to: 5255
4713/* 4170 */    MCD::OPC_Decode, 155, 5, 200, 1, // Opcode: EVADDUMIAAW
4714/* 4175 */    MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 4199
4715/* 4180 */    MCD::OPC_CheckField, 26, 6, 4, 44, 4, 0, // Skip to: 5255
4716/* 4187 */    MCD::OPC_CheckField, 11, 5, 0, 37, 4, 0, // Skip to: 5255
4717/* 4194 */    MCD::OPC_Decode, 153, 5, 200, 1, // Opcode: EVADDSMIAAW
4718/* 4199 */    MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 4223
4719/* 4204 */    MCD::OPC_CheckField, 26, 6, 4, 20, 4, 0, // Skip to: 5255
4720/* 4211 */    MCD::OPC_CheckField, 11, 5, 0, 13, 4, 0, // Skip to: 5255
4721/* 4218 */    MCD::OPC_Decode, 213, 6, 200, 1, // Opcode: EVSUBFUMIAAW
4722/* 4223 */    MCD::OPC_FilterValue, 3, 3, 4, 0, // Skip to: 5255
4723/* 4228 */    MCD::OPC_CheckField, 26, 6, 4, 252, 3, 0, // Skip to: 5255
4724/* 4235 */    MCD::OPC_CheckField, 11, 5, 0, 245, 3, 0, // Skip to: 5255
4725/* 4242 */    MCD::OPC_Decode, 211, 6, 200, 1, // Opcode: EVSUBFSMIAAW
4726/* 4247 */    MCD::OPC_FilterValue, 160, 1, 105, 0, 0, // Skip to: 4358
4727/* 4253 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4728/* 4256 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4273
4729/* 4261 */    MCD::OPC_CheckField, 26, 6, 4, 219, 3, 0, // Skip to: 5255
4730/* 4268 */    MCD::OPC_Decode, 245, 5, 197, 1, // Opcode: EVMHEUSIAAW
4731/* 4273 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4290
4732/* 4278 */    MCD::OPC_CheckField, 26, 6, 4, 202, 3, 0, // Skip to: 5255
4733/* 4285 */    MCD::OPC_Decode, 239, 5, 197, 1, // Opcode: EVMHESSIAAW
4734/* 4290 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4307
4735/* 4295 */    MCD::OPC_CheckField, 26, 6, 4, 185, 3, 0, // Skip to: 5255
4736/* 4302 */    MCD::OPC_Decode, 237, 5, 197, 1, // Opcode: EVMHESSFAAW
4737/* 4307 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4324
4738/* 4312 */    MCD::OPC_CheckField, 26, 6, 4, 168, 3, 0, // Skip to: 5255
4739/* 4319 */    MCD::OPC_Decode, 143, 6, 197, 1, // Opcode: EVMHOUSIAAW
4740/* 4324 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4341
4741/* 4329 */    MCD::OPC_CheckField, 26, 6, 4, 151, 3, 0, // Skip to: 5255
4742/* 4336 */    MCD::OPC_Decode, 137, 6, 197, 1, // Opcode: EVMHOSSIAAW
4743/* 4341 */    MCD::OPC_FilterValue, 7, 141, 3, 0, // Skip to: 5255
4744/* 4346 */    MCD::OPC_CheckField, 26, 6, 4, 134, 3, 0, // Skip to: 5255
4745/* 4353 */    MCD::OPC_Decode, 135, 6, 197, 1, // Opcode: EVMHOSSFAAW
4746/* 4358 */    MCD::OPC_FilterValue, 161, 1, 105, 0, 0, // Skip to: 4469
4747/* 4364 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4748/* 4367 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4384
4749/* 4372 */    MCD::OPC_CheckField, 26, 6, 4, 108, 3, 0, // Skip to: 5255
4750/* 4379 */    MCD::OPC_Decode, 243, 5, 197, 1, // Opcode: EVMHEUMIAAW
4751/* 4384 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4401
4752/* 4389 */    MCD::OPC_CheckField, 26, 6, 4, 91, 3, 0, // Skip to: 5255
4753/* 4396 */    MCD::OPC_Decode, 233, 5, 197, 1, // Opcode: EVMHESMIAAW
4754/* 4401 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4418
4755/* 4406 */    MCD::OPC_CheckField, 26, 6, 4, 74, 3, 0, // Skip to: 5255
4756/* 4413 */    MCD::OPC_Decode, 229, 5, 197, 1, // Opcode: EVMHESMFAAW
4757/* 4418 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4435
4758/* 4423 */    MCD::OPC_CheckField, 26, 6, 4, 57, 3, 0, // Skip to: 5255
4759/* 4430 */    MCD::OPC_Decode, 141, 6, 197, 1, // Opcode: EVMHOUMIAAW
4760/* 4435 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4452
4761/* 4440 */    MCD::OPC_CheckField, 26, 6, 4, 40, 3, 0, // Skip to: 5255
4762/* 4447 */    MCD::OPC_Decode, 131, 6, 197, 1, // Opcode: EVMHOSMIAAW
4763/* 4452 */    MCD::OPC_FilterValue, 7, 30, 3, 0, // Skip to: 5255
4764/* 4457 */    MCD::OPC_CheckField, 26, 6, 4, 23, 3, 0, // Skip to: 5255
4765/* 4464 */    MCD::OPC_Decode, 255, 5, 197, 1, // Opcode: EVMHOSMFAAW
4766/* 4469 */    MCD::OPC_FilterValue, 165, 1, 105, 0, 0, // Skip to: 4580
4767/* 4475 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4768/* 4478 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4495
4769/* 4483 */    MCD::OPC_CheckField, 26, 6, 4, 253, 2, 0, // Skip to: 5255
4770/* 4490 */    MCD::OPC_Decode, 225, 5, 197, 1, // Opcode: EVMHEGUMIAA
4771/* 4495 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4512
4772/* 4500 */    MCD::OPC_CheckField, 26, 6, 4, 236, 2, 0, // Skip to: 5255
4773/* 4507 */    MCD::OPC_Decode, 223, 5, 197, 1, // Opcode: EVMHEGSMIAA
4774/* 4512 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4529
4775/* 4517 */    MCD::OPC_CheckField, 26, 6, 4, 219, 2, 0, // Skip to: 5255
4776/* 4524 */    MCD::OPC_Decode, 221, 5, 197, 1, // Opcode: EVMHEGSMFAA
4777/* 4529 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4546
4778/* 4534 */    MCD::OPC_CheckField, 26, 6, 4, 202, 2, 0, // Skip to: 5255
4779/* 4541 */    MCD::OPC_Decode, 251, 5, 197, 1, // Opcode: EVMHOGUMIAA
4780/* 4546 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4563
4781/* 4551 */    MCD::OPC_CheckField, 26, 6, 4, 185, 2, 0, // Skip to: 5255
4782/* 4558 */    MCD::OPC_Decode, 249, 5, 197, 1, // Opcode: EVMHOGSMIAA
4783/* 4563 */    MCD::OPC_FilterValue, 7, 175, 2, 0, // Skip to: 5255
4784/* 4568 */    MCD::OPC_CheckField, 26, 6, 4, 168, 2, 0, // Skip to: 5255
4785/* 4575 */    MCD::OPC_Decode, 247, 5, 197, 1, // Opcode: EVMHOGSMFAA
4786/* 4580 */    MCD::OPC_FilterValue, 168, 1, 37, 0, 0, // Skip to: 4623
4787/* 4586 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4788/* 4589 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4606
4789/* 4594 */    MCD::OPC_CheckField, 26, 6, 4, 142, 2, 0, // Skip to: 5255
4790/* 4601 */    MCD::OPC_Decode, 162, 6, 197, 1, // Opcode: EVMWLUSIAAW
4791/* 4606 */    MCD::OPC_FilterValue, 1, 132, 2, 0, // Skip to: 5255
4792/* 4611 */    MCD::OPC_CheckField, 26, 6, 4, 125, 2, 0, // Skip to: 5255
4793/* 4618 */    MCD::OPC_Decode, 156, 6, 197, 1, // Opcode: EVMWLSSIAAW
4794/* 4623 */    MCD::OPC_FilterValue, 169, 1, 37, 0, 0, // Skip to: 4666
4795/* 4629 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4796/* 4632 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4649
4797/* 4637 */    MCD::OPC_CheckField, 26, 6, 4, 99, 2, 0, // Skip to: 5255
4798/* 4644 */    MCD::OPC_Decode, 160, 6, 197, 1, // Opcode: EVMWLUMIAAW
4799/* 4649 */    MCD::OPC_FilterValue, 1, 89, 2, 0, // Skip to: 5255
4800/* 4654 */    MCD::OPC_CheckField, 26, 6, 4, 82, 2, 0, // Skip to: 5255
4801/* 4661 */    MCD::OPC_Decode, 154, 6, 197, 1, // Opcode: EVMWLSMIAAW
4802/* 4666 */    MCD::OPC_FilterValue, 170, 1, 19, 0, 0, // Skip to: 4691
4803/* 4672 */    MCD::OPC_CheckField, 26, 6, 4, 64, 2, 0, // Skip to: 5255
4804/* 4679 */    MCD::OPC_CheckField, 0, 3, 3, 57, 2, 0, // Skip to: 5255
4805/* 4686 */    MCD::OPC_Decode, 174, 6, 197, 1, // Opcode: EVMWSSFAA
4806/* 4691 */    MCD::OPC_FilterValue, 171, 1, 54, 0, 0, // Skip to: 4751
4807/* 4697 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4808/* 4700 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4717
4809/* 4705 */    MCD::OPC_CheckField, 26, 6, 4, 31, 2, 0, // Skip to: 5255
4810/* 4712 */    MCD::OPC_Decode, 178, 6, 197, 1, // Opcode: EVMWUMIAA
4811/* 4717 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4734
4812/* 4722 */    MCD::OPC_CheckField, 26, 6, 4, 14, 2, 0, // Skip to: 5255
4813/* 4729 */    MCD::OPC_Decode, 170, 6, 197, 1, // Opcode: EVMWSMIAA
4814/* 4734 */    MCD::OPC_FilterValue, 3, 4, 2, 0, // Skip to: 5255
4815/* 4739 */    MCD::OPC_CheckField, 26, 6, 4, 253, 1, 0, // Skip to: 5255
4816/* 4746 */    MCD::OPC_Decode, 166, 6, 197, 1, // Opcode: EVMWSMFAA
4817/* 4751 */    MCD::OPC_FilterValue, 176, 1, 105, 0, 0, // Skip to: 4862
4818/* 4757 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4819/* 4760 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4777
4820/* 4765 */    MCD::OPC_CheckField, 26, 6, 4, 227, 1, 0, // Skip to: 5255
4821/* 4772 */    MCD::OPC_Decode, 246, 5, 197, 1, // Opcode: EVMHEUSIANW
4822/* 4777 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4794
4823/* 4782 */    MCD::OPC_CheckField, 26, 6, 4, 210, 1, 0, // Skip to: 5255
4824/* 4789 */    MCD::OPC_Decode, 240, 5, 197, 1, // Opcode: EVMHESSIANW
4825/* 4794 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4811
4826/* 4799 */    MCD::OPC_CheckField, 26, 6, 4, 193, 1, 0, // Skip to: 5255
4827/* 4806 */    MCD::OPC_Decode, 238, 5, 197, 1, // Opcode: EVMHESSFANW
4828/* 4811 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4828
4829/* 4816 */    MCD::OPC_CheckField, 26, 6, 4, 176, 1, 0, // Skip to: 5255
4830/* 4823 */    MCD::OPC_Decode, 144, 6, 197, 1, // Opcode: EVMHOUSIANW
4831/* 4828 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4845
4832/* 4833 */    MCD::OPC_CheckField, 26, 6, 4, 159, 1, 0, // Skip to: 5255
4833/* 4840 */    MCD::OPC_Decode, 138, 6, 197, 1, // Opcode: EVMHOSSIANW
4834/* 4845 */    MCD::OPC_FilterValue, 7, 149, 1, 0, // Skip to: 5255
4835/* 4850 */    MCD::OPC_CheckField, 26, 6, 4, 142, 1, 0, // Skip to: 5255
4836/* 4857 */    MCD::OPC_Decode, 136, 6, 197, 1, // Opcode: EVMHOSSFANW
4837/* 4862 */    MCD::OPC_FilterValue, 177, 1, 105, 0, 0, // Skip to: 4973
4838/* 4868 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4839/* 4871 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4888
4840/* 4876 */    MCD::OPC_CheckField, 26, 6, 4, 116, 1, 0, // Skip to: 5255
4841/* 4883 */    MCD::OPC_Decode, 244, 5, 197, 1, // Opcode: EVMHEUMIANW
4842/* 4888 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4905
4843/* 4893 */    MCD::OPC_CheckField, 26, 6, 4, 99, 1, 0, // Skip to: 5255
4844/* 4900 */    MCD::OPC_Decode, 234, 5, 197, 1, // Opcode: EVMHESMIANW
4845/* 4905 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4922
4846/* 4910 */    MCD::OPC_CheckField, 26, 6, 4, 82, 1, 0, // Skip to: 5255
4847/* 4917 */    MCD::OPC_Decode, 230, 5, 197, 1, // Opcode: EVMHESMFANW
4848/* 4922 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4939
4849/* 4927 */    MCD::OPC_CheckField, 26, 6, 4, 65, 1, 0, // Skip to: 5255
4850/* 4934 */    MCD::OPC_Decode, 142, 6, 197, 1, // Opcode: EVMHOUMIANW
4851/* 4939 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4956
4852/* 4944 */    MCD::OPC_CheckField, 26, 6, 4, 48, 1, 0, // Skip to: 5255
4853/* 4951 */    MCD::OPC_Decode, 132, 6, 197, 1, // Opcode: EVMHOSMIANW
4854/* 4956 */    MCD::OPC_FilterValue, 7, 38, 1, 0, // Skip to: 5255
4855/* 4961 */    MCD::OPC_CheckField, 26, 6, 4, 31, 1, 0, // Skip to: 5255
4856/* 4968 */    MCD::OPC_Decode, 128, 6, 197, 1, // Opcode: EVMHOSMFANW
4857/* 4973 */    MCD::OPC_FilterValue, 181, 1, 105, 0, 0, // Skip to: 5084
4858/* 4979 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4859/* 4982 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4999
4860/* 4987 */    MCD::OPC_CheckField, 26, 6, 4, 5, 1, 0, // Skip to: 5255
4861/* 4994 */    MCD::OPC_Decode, 226, 5, 197, 1, // Opcode: EVMHEGUMIAN
4862/* 4999 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 5016
4863/* 5004 */    MCD::OPC_CheckField, 26, 6, 4, 244, 0, 0, // Skip to: 5255
4864/* 5011 */    MCD::OPC_Decode, 224, 5, 197, 1, // Opcode: EVMHEGSMIAN
4865/* 5016 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 5033
4866/* 5021 */    MCD::OPC_CheckField, 26, 6, 4, 227, 0, 0, // Skip to: 5255
4867/* 5028 */    MCD::OPC_Decode, 222, 5, 197, 1, // Opcode: EVMHEGSMFAN
4868/* 5033 */    MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 5050
4869/* 5038 */    MCD::OPC_CheckField, 26, 6, 4, 210, 0, 0, // Skip to: 5255
4870/* 5045 */    MCD::OPC_Decode, 252, 5, 197, 1, // Opcode: EVMHOGUMIAN
4871/* 5050 */    MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 5067
4872/* 5055 */    MCD::OPC_CheckField, 26, 6, 4, 193, 0, 0, // Skip to: 5255
4873/* 5062 */    MCD::OPC_Decode, 250, 5, 197, 1, // Opcode: EVMHOGSMIAN
4874/* 5067 */    MCD::OPC_FilterValue, 7, 183, 0, 0, // Skip to: 5255
4875/* 5072 */    MCD::OPC_CheckField, 26, 6, 4, 176, 0, 0, // Skip to: 5255
4876/* 5079 */    MCD::OPC_Decode, 248, 5, 197, 1, // Opcode: EVMHOGSMFAN
4877/* 5084 */    MCD::OPC_FilterValue, 184, 1, 37, 0, 0, // Skip to: 5127
4878/* 5090 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4879/* 5093 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5110
4880/* 5098 */    MCD::OPC_CheckField, 26, 6, 4, 150, 0, 0, // Skip to: 5255
4881/* 5105 */    MCD::OPC_Decode, 163, 6, 197, 1, // Opcode: EVMWLUSIANW
4882/* 5110 */    MCD::OPC_FilterValue, 1, 140, 0, 0, // Skip to: 5255
4883/* 5115 */    MCD::OPC_CheckField, 26, 6, 4, 133, 0, 0, // Skip to: 5255
4884/* 5122 */    MCD::OPC_Decode, 157, 6, 197, 1, // Opcode: EVMWLSSIANW
4885/* 5127 */    MCD::OPC_FilterValue, 185, 1, 37, 0, 0, // Skip to: 5170
4886/* 5133 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4887/* 5136 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5153
4888/* 5141 */    MCD::OPC_CheckField, 26, 6, 4, 107, 0, 0, // Skip to: 5255
4889/* 5148 */    MCD::OPC_Decode, 161, 6, 197, 1, // Opcode: EVMWLUMIANW
4890/* 5153 */    MCD::OPC_FilterValue, 1, 97, 0, 0, // Skip to: 5255
4891/* 5158 */    MCD::OPC_CheckField, 26, 6, 4, 90, 0, 0, // Skip to: 5255
4892/* 5165 */    MCD::OPC_Decode, 155, 6, 197, 1, // Opcode: EVMWLSMIANW
4893/* 5170 */    MCD::OPC_FilterValue, 186, 1, 19, 0, 0, // Skip to: 5195
4894/* 5176 */    MCD::OPC_CheckField, 26, 6, 4, 72, 0, 0, // Skip to: 5255
4895/* 5183 */    MCD::OPC_CheckField, 0, 3, 3, 65, 0, 0, // Skip to: 5255
4896/* 5190 */    MCD::OPC_Decode, 175, 6, 197, 1, // Opcode: EVMWSSFAN
4897/* 5195 */    MCD::OPC_FilterValue, 187, 1, 54, 0, 0, // Skip to: 5255
4898/* 5201 */    MCD::OPC_ExtractField, 0, 3,  // Inst{2-0} ...
4899/* 5204 */    MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5221
4900/* 5209 */    MCD::OPC_CheckField, 26, 6, 4, 39, 0, 0, // Skip to: 5255
4901/* 5216 */    MCD::OPC_Decode, 179, 6, 197, 1, // Opcode: EVMWUMIAN
4902/* 5221 */    MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 5238
4903/* 5226 */    MCD::OPC_CheckField, 26, 6, 4, 22, 0, 0, // Skip to: 5255
4904/* 5233 */    MCD::OPC_Decode, 171, 6, 197, 1, // Opcode: EVMWSMIAN
4905/* 5238 */    MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 5255
4906/* 5243 */    MCD::OPC_CheckField, 26, 6, 4, 5, 0, 0, // Skip to: 5255
4907/* 5250 */    MCD::OPC_Decode, 167, 6, 197, 1, // Opcode: EVMWSMFAN
4908/* 5255 */    MCD::OPC_Fail,
4909  0
4910};
4911
4912static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset& Bits) {
4913  llvm_unreachable("Invalid index!");
4914}
4915
4916template<typename InsnType>
4917static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI,
4918                                   uint64_t Address, const void *Decoder, bool &DecodeComplete) {
4919  DecodeComplete = true;
4920  InsnType tmp;
4921  switch (Idx) {
4922  default: llvm_unreachable("Invalid index!");
4923  case 0:
4924    return S;
4925  case 1:
4926    tmp = fieldFromInstruction(insn, 21, 5);
4927    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4928    tmp = fieldFromInstruction(insn, 16, 5);
4929    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4930    tmp = fieldFromInstruction(insn, 0, 16);
4931    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4932    return S;
4933  case 2:
4934    tmp = fieldFromInstruction(insn, 21, 5);
4935    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4936    tmp = fieldFromInstruction(insn, 16, 5);
4937    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4938    tmp = fieldFromInstruction(insn, 0, 16);
4939    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4940    return S;
4941  case 3:
4942    tmp = fieldFromInstruction(insn, 21, 5);
4943    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4944    tmp = fieldFromInstruction(insn, 16, 5);
4945    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4946    tmp = fieldFromInstruction(insn, 11, 5);
4947    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4948    return S;
4949  case 4:
4950    tmp = fieldFromInstruction(insn, 21, 5);
4951    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4952    tmp = fieldFromInstruction(insn, 16, 5);
4953    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4954    return S;
4955  case 5:
4956    tmp = fieldFromInstruction(insn, 21, 5);
4957    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4958    tmp = fieldFromInstruction(insn, 16, 5);
4959    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4960    tmp = fieldFromInstruction(insn, 11, 5);
4961    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4962    tmp = fieldFromInstruction(insn, 9, 1);
4963    MI.addOperand(MCOperand::createImm(tmp));
4964    return S;
4965  case 6:
4966    tmp = fieldFromInstruction(insn, 21, 5);
4967    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4968    tmp = fieldFromInstruction(insn, 11, 5);
4969    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4970    return S;
4971  case 7:
4972    tmp = fieldFromInstruction(insn, 21, 5);
4973    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4974    tmp = fieldFromInstruction(insn, 11, 5);
4975    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4976    tmp = fieldFromInstruction(insn, 9, 1);
4977    MI.addOperand(MCOperand::createImm(tmp));
4978    return S;
4979  case 8:
4980    tmp = fieldFromInstruction(insn, 21, 5);
4981    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4982    tmp = fieldFromInstruction(insn, 11, 5);
4983    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4984    return S;
4985  case 9:
4986    tmp = fieldFromInstruction(insn, 21, 5);
4987    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4988    tmp = fieldFromInstruction(insn, 16, 5);
4989    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4990    tmp = fieldFromInstruction(insn, 15, 1);
4991    MI.addOperand(MCOperand::createImm(tmp));
4992    tmp = fieldFromInstruction(insn, 11, 4);
4993    MI.addOperand(MCOperand::createImm(tmp));
4994    return S;
4995  case 10:
4996    tmp = fieldFromInstruction(insn, 21, 5);
4997    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
4998    return S;
4999  case 11:
5000    tmp = fieldFromInstruction(insn, 11, 5);
5001    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5002    return S;
5003  case 12:
5004    tmp = fieldFromInstruction(insn, 21, 5);
5005    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5006    tmp = fieldFromInstruction(insn, 16, 5);
5007    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5008    tmp = fieldFromInstruction(insn, 11, 5);
5009    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5010    tmp = fieldFromInstruction(insn, 21, 5);
5011    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5012    return S;
5013  case 13:
5014    tmp = fieldFromInstruction(insn, 21, 5);
5015    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5016    tmp = fieldFromInstruction(insn, 16, 5);
5017    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5018    tmp = fieldFromInstruction(insn, 11, 5);
5019    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5020    return S;
5021  case 14:
5022    tmp = fieldFromInstruction(insn, 21, 5);
5023    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5024    tmp = fieldFromInstruction(insn, 16, 5);
5025    if (decodeSImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5026    return S;
5027  case 15:
5028    tmp = fieldFromInstruction(insn, 21, 5);
5029    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5030    tmp = fieldFromInstruction(insn, 16, 5);
5031    MI.addOperand(MCOperand::createImm(tmp));
5032    tmp = fieldFromInstruction(insn, 11, 5);
5033    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5034    return S;
5035  case 16:
5036    tmp = fieldFromInstruction(insn, 21, 5);
5037    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5038    tmp = fieldFromInstruction(insn, 21, 5);
5039    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5040    tmp = fieldFromInstruction(insn, 16, 5);
5041    MI.addOperand(MCOperand::createImm(tmp));
5042    tmp = fieldFromInstruction(insn, 11, 5);
5043    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5044    return S;
5045  case 17:
5046    tmp = fieldFromInstruction(insn, 21, 5);
5047    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5048    tmp = fieldFromInstruction(insn, 16, 5);
5049    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5050    tmp = fieldFromInstruction(insn, 11, 5);
5051    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5052    return S;
5053  case 18:
5054    tmp = fieldFromInstruction(insn, 21, 5);
5055    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5056    tmp = fieldFromInstruction(insn, 16, 5);
5057    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5058    tmp = fieldFromInstruction(insn, 11, 5);
5059    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5060    tmp = fieldFromInstruction(insn, 6, 5);
5061    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5062    return S;
5063  case 19:
5064    tmp = fieldFromInstruction(insn, 21, 5);
5065    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5066    tmp = fieldFromInstruction(insn, 16, 5);
5067    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5068    tmp = fieldFromInstruction(insn, 11, 5);
5069    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5070    tmp = fieldFromInstruction(insn, 6, 4);
5071    MI.addOperand(MCOperand::createImm(tmp));
5072    return S;
5073  case 20:
5074    tmp = fieldFromInstruction(insn, 21, 5);
5075    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5076    tmp = fieldFromInstruction(insn, 16, 5);
5077    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5078    tmp = fieldFromInstruction(insn, 6, 5);
5079    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5080    tmp = fieldFromInstruction(insn, 11, 5);
5081    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5082    return S;
5083  case 21:
5084    tmp = fieldFromInstruction(insn, 21, 5);
5085    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5086    tmp = fieldFromInstruction(insn, 16, 5);
5087    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5088    tmp = fieldFromInstruction(insn, 11, 5);
5089    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5090    tmp = fieldFromInstruction(insn, 6, 5);
5091    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5092    return S;
5093  case 22:
5094    tmp = fieldFromInstruction(insn, 21, 5);
5095    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5096    tmp = fieldFromInstruction(insn, 16, 5);
5097    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5098    tmp = fieldFromInstruction(insn, 11, 5);
5099    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5100    tmp = fieldFromInstruction(insn, 6, 5);
5101    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5102    return S;
5103  case 23:
5104    tmp = fieldFromInstruction(insn, 21, 5);
5105    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5106    tmp = fieldFromInstruction(insn, 16, 5);
5107    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5108    tmp = fieldFromInstruction(insn, 0, 16);
5109    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5110    return S;
5111  case 24:
5112    tmp = fieldFromInstruction(insn, 23, 3);
5113    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5114    tmp = fieldFromInstruction(insn, 16, 5);
5115    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5116    tmp = fieldFromInstruction(insn, 0, 16);
5117    if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5118    return S;
5119  case 25:
5120    tmp = fieldFromInstruction(insn, 23, 3);
5121    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5122    tmp = fieldFromInstruction(insn, 16, 5);
5123    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5124    tmp = fieldFromInstruction(insn, 0, 16);
5125    if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5126    return S;
5127  case 26:
5128    tmp = fieldFromInstruction(insn, 23, 3);
5129    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5130    tmp = fieldFromInstruction(insn, 16, 5);
5131    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5132    tmp = fieldFromInstruction(insn, 0, 16);
5133    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5134    return S;
5135  case 27:
5136    tmp = fieldFromInstruction(insn, 23, 3);
5137    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5138    tmp = fieldFromInstruction(insn, 16, 5);
5139    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5140    tmp = fieldFromInstruction(insn, 0, 16);
5141    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5142    return S;
5143  case 28:
5144    tmp = fieldFromInstruction(insn, 21, 5);
5145    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5146    tmp = fieldFromInstruction(insn, 0, 16);
5147    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5148    return S;
5149  case 29:
5150    tmp = fieldFromInstruction(insn, 21, 5);
5151    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5152    tmp = fieldFromInstruction(insn, 16, 5);
5153    if (DecodeGPRC_NOR0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5154    tmp = fieldFromInstruction(insn, 0, 16);
5155    if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5156    return S;
5157  case 30:
5158    tmp = fieldFromInstruction(insn, 2, 14);
5159    MI.addOperand(MCOperand::createImm(tmp));
5160    return S;
5161  case 31:
5162    tmp = fieldFromInstruction(insn, 21, 5);
5163    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5164    tmp = fieldFromInstruction(insn, 16, 5);
5165    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5166    tmp = fieldFromInstruction(insn, 2, 14);
5167    MI.addOperand(MCOperand::createImm(tmp));
5168    return S;
5169  case 32:
5170    tmp = fieldFromInstruction(insn, 5, 7);
5171    MI.addOperand(MCOperand::createImm(tmp));
5172    return S;
5173  case 33:
5174    tmp = fieldFromInstruction(insn, 2, 24);
5175    MI.addOperand(MCOperand::createImm(tmp));
5176    return S;
5177  case 34:
5178    tmp = fieldFromInstruction(insn, 2, 24);
5179    if (DecodePCRel24BranchTarget(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5180    return S;
5181  case 35:
5182    tmp = fieldFromInstruction(insn, 23, 3);
5183    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5184    tmp = fieldFromInstruction(insn, 18, 3);
5185    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5186    return S;
5187  case 36:
5188    tmp = fieldFromInstruction(insn, 21, 5);
5189    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5190    tmp = fieldFromInstruction(insn, 16, 5);
5191    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5192    tmp = fieldFromInstruction(insn, 11, 5);
5193    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5194    return S;
5195  case 37:
5196    tmp = fieldFromInstruction(insn, 21, 5);
5197    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5198    tmp = 0x0;
5199    tmp |= fieldFromInstruction(insn, 0, 1) << 0;
5200    tmp |= fieldFromInstruction(insn, 6, 10) << 6;
5201    tmp |= fieldFromInstruction(insn, 16, 5) << 1;
5202    MI.addOperand(MCOperand::createImm(tmp));
5203    return S;
5204  case 38:
5205    tmp = fieldFromInstruction(insn, 21, 5);
5206    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5207    tmp = fieldFromInstruction(insn, 16, 5);
5208    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5209    tmp = fieldFromInstruction(insn, 11, 2);
5210    MI.addOperand(MCOperand::createImm(tmp));
5211    return S;
5212  case 39:
5213    tmp = fieldFromInstruction(insn, 11, 1);
5214    MI.addOperand(MCOperand::createImm(tmp));
5215    return S;
5216  case 40:
5217    tmp = fieldFromInstruction(insn, 16, 5);
5218    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5219    tmp = fieldFromInstruction(insn, 16, 5);
5220    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5221    tmp = fieldFromInstruction(insn, 21, 5);
5222    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5223    tmp = fieldFromInstruction(insn, 11, 5);
5224    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5225    tmp = fieldFromInstruction(insn, 6, 5);
5226    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5227    tmp = fieldFromInstruction(insn, 1, 5);
5228    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5229    return S;
5230  case 41:
5231    tmp = fieldFromInstruction(insn, 16, 5);
5232    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5233    tmp = fieldFromInstruction(insn, 21, 5);
5234    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5235    tmp = fieldFromInstruction(insn, 11, 5);
5236    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5237    tmp = fieldFromInstruction(insn, 6, 5);
5238    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5239    tmp = fieldFromInstruction(insn, 1, 5);
5240    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5241    return S;
5242  case 42:
5243    tmp = fieldFromInstruction(insn, 16, 5);
5244    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5245    tmp = fieldFromInstruction(insn, 21, 5);
5246    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5247    tmp = fieldFromInstruction(insn, 11, 5);
5248    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5249    tmp = fieldFromInstruction(insn, 6, 5);
5250    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5251    tmp = fieldFromInstruction(insn, 1, 5);
5252    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5253    return S;
5254  case 43:
5255    tmp = fieldFromInstruction(insn, 16, 5);
5256    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5257    tmp = fieldFromInstruction(insn, 21, 5);
5258    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5259    tmp = fieldFromInstruction(insn, 0, 16);
5260    if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5261    return S;
5262  case 44:
5263    tmp = fieldFromInstruction(insn, 16, 5);
5264    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5265    tmp = fieldFromInstruction(insn, 21, 5);
5266    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5267    tmp = 0x0;
5268    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5269    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5270    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5271    tmp = 0x0;
5272    tmp |= fieldFromInstruction(insn, 5, 1) << 5;
5273    tmp |= fieldFromInstruction(insn, 6, 5) << 0;
5274    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5275    return S;
5276  case 45:
5277    tmp = fieldFromInstruction(insn, 16, 5);
5278    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5279    tmp = fieldFromInstruction(insn, 16, 5);
5280    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5281    tmp = fieldFromInstruction(insn, 21, 5);
5282    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5283    tmp = 0x0;
5284    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5285    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5286    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5287    tmp = 0x0;
5288    tmp |= fieldFromInstruction(insn, 5, 1) << 5;
5289    tmp |= fieldFromInstruction(insn, 6, 5) << 0;
5290    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5291    return S;
5292  case 46:
5293    tmp = fieldFromInstruction(insn, 16, 5);
5294    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5295    tmp = fieldFromInstruction(insn, 21, 5);
5296    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5297    tmp = fieldFromInstruction(insn, 11, 5);
5298    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5299    tmp = 0x0;
5300    tmp |= fieldFromInstruction(insn, 5, 1) << 5;
5301    tmp |= fieldFromInstruction(insn, 6, 5) << 0;
5302    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5303    return S;
5304  case 47:
5305    tmp = fieldFromInstruction(insn, 23, 3);
5306    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5307    tmp = fieldFromInstruction(insn, 16, 5);
5308    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5309    tmp = fieldFromInstruction(insn, 11, 5);
5310    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5311    return S;
5312  case 48:
5313    tmp = fieldFromInstruction(insn, 23, 3);
5314    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5315    tmp = fieldFromInstruction(insn, 16, 5);
5316    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5317    tmp = fieldFromInstruction(insn, 11, 5);
5318    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5319    return S;
5320  case 49:
5321    tmp = fieldFromInstruction(insn, 21, 5);
5322    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5323    tmp = fieldFromInstruction(insn, 18, 3);
5324    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5325    return S;
5326  case 50:
5327    tmp = fieldFromInstruction(insn, 23, 3);
5328    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5329    tmp = fieldFromInstruction(insn, 21, 1);
5330    MI.addOperand(MCOperand::createImm(tmp));
5331    tmp = fieldFromInstruction(insn, 16, 5);
5332    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5333    tmp = fieldFromInstruction(insn, 11, 5);
5334    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5335    return S;
5336  case 51:
5337    tmp = fieldFromInstruction(insn, 23, 3);
5338    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5339    tmp = fieldFromInstruction(insn, 16, 5);
5340    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5341    tmp = fieldFromInstruction(insn, 11, 5);
5342    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5343    return S;
5344  case 52:
5345    tmp = fieldFromInstruction(insn, 23, 3);
5346    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5347    return S;
5348  case 53:
5349    tmp = fieldFromInstruction(insn, 21, 5);
5350    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5351    return S;
5352  case 54:
5353    tmp = fieldFromInstruction(insn, 15, 1);
5354    MI.addOperand(MCOperand::createImm(tmp));
5355    return S;
5356  case 55:
5357    tmp = fieldFromInstruction(insn, 21, 5);
5358    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5359    tmp = 0x0;
5360    tmp |= fieldFromInstruction(insn, 11, 5) << 5;
5361    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5362    MI.addOperand(MCOperand::createImm(tmp));
5363    return S;
5364  case 56:
5365    tmp = fieldFromInstruction(insn, 21, 5);
5366    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5367    tmp = fieldFromInstruction(insn, 16, 5);
5368    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5369    tmp = fieldFromInstruction(insn, 11, 5);
5370    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5371    return S;
5372  case 57:
5373    tmp = fieldFromInstruction(insn, 21, 5);
5374    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5375    tmp = fieldFromInstruction(insn, 16, 5);
5376    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5377    tmp = fieldFromInstruction(insn, 11, 5);
5378    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5379    return S;
5380  case 58:
5381    tmp = fieldFromInstruction(insn, 21, 5);
5382    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5383    tmp = fieldFromInstruction(insn, 16, 5);
5384    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5385    tmp = fieldFromInstruction(insn, 11, 5);
5386    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5387    return S;
5388  case 59:
5389    tmp = fieldFromInstruction(insn, 21, 4);
5390    MI.addOperand(MCOperand::createImm(tmp));
5391    tmp = fieldFromInstruction(insn, 16, 5);
5392    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5393    tmp = fieldFromInstruction(insn, 11, 5);
5394    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5395    return S;
5396  case 60:
5397    tmp = fieldFromInstruction(insn, 16, 5);
5398    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5399    tmp = fieldFromInstruction(insn, 11, 5);
5400    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5401    return S;
5402  case 61:
5403    tmp = fieldFromInstruction(insn, 21, 5);
5404    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5405    tmp = fieldFromInstruction(insn, 16, 5);
5406    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5407    tmp = fieldFromInstruction(insn, 11, 5);
5408    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5409    return S;
5410  case 62:
5411    tmp = fieldFromInstruction(insn, 21, 5);
5412    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5413    tmp = fieldFromInstruction(insn, 16, 5);
5414    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5415    tmp = fieldFromInstruction(insn, 11, 5);
5416    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5417    return S;
5418  case 63:
5419    tmp = fieldFromInstruction(insn, 16, 5);
5420    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5421    tmp = fieldFromInstruction(insn, 11, 5);
5422    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5423    tmp = fieldFromInstruction(insn, 21, 1);
5424    MI.addOperand(MCOperand::createImm(tmp));
5425    return S;
5426  case 64:
5427    tmp = fieldFromInstruction(insn, 21, 5);
5428    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5429    tmp = fieldFromInstruction(insn, 16, 5);
5430    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5431    tmp = fieldFromInstruction(insn, 11, 5);
5432    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5433    return S;
5434  case 65:
5435    tmp = fieldFromInstruction(insn, 21, 5);
5436    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5437    tmp = fieldFromInstruction(insn, 16, 5);
5438    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5439    tmp = fieldFromInstruction(insn, 11, 5);
5440    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5441    return S;
5442  case 66:
5443    tmp = fieldFromInstruction(insn, 21, 5);
5444    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5445    tmp = fieldFromInstruction(insn, 16, 5);
5446    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5447    return S;
5448  case 67:
5449    tmp = 0x0;
5450    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5451    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5452    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5453    tmp = fieldFromInstruction(insn, 16, 5);
5454    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5455    tmp = fieldFromInstruction(insn, 11, 5);
5456    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5457    return S;
5458  case 68:
5459    tmp = 0x0;
5460    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5461    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5462    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5463    tmp = fieldFromInstruction(insn, 16, 5);
5464    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5465    tmp = fieldFromInstruction(insn, 11, 5);
5466    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5467    return S;
5468  case 69:
5469    tmp = 0x0;
5470    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5471    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5472    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5473    tmp = fieldFromInstruction(insn, 16, 5);
5474    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5475    tmp = fieldFromInstruction(insn, 11, 5);
5476    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5477    return S;
5478  case 70:
5479    tmp = 0x0;
5480    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5481    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5482    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5483    tmp = fieldFromInstruction(insn, 16, 5);
5484    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5485    tmp = fieldFromInstruction(insn, 11, 5);
5486    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5487    return S;
5488  case 71:
5489    tmp = fieldFromInstruction(insn, 21, 5);
5490    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5491    tmp = fieldFromInstruction(insn, 11, 10);
5492    if (decodeUImmOperand<10>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5493    return S;
5494  case 72:
5495    tmp = 0x0;
5496    tmp |= fieldFromInstruction(insn, 11, 5) << 5;
5497    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5498    MI.addOperand(MCOperand::createImm(tmp));
5499    tmp = fieldFromInstruction(insn, 21, 5);
5500    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5501    return S;
5502  case 73:
5503    tmp = fieldFromInstruction(insn, 21, 1);
5504    MI.addOperand(MCOperand::createImm(tmp));
5505    return S;
5506  case 74:
5507    tmp = fieldFromInstruction(insn, 25, 1);
5508    MI.addOperand(MCOperand::createImm(tmp));
5509    return S;
5510  case 75:
5511    tmp = fieldFromInstruction(insn, 21, 5);
5512    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5513    tmp = fieldFromInstruction(insn, 16, 5);
5514    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5515    tmp = fieldFromInstruction(insn, 11, 5);
5516    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5517    return S;
5518  case 76:
5519    tmp = fieldFromInstruction(insn, 16, 5);
5520    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5521    return S;
5522  case 77:
5523    tmp = fieldFromInstruction(insn, 21, 5);
5524    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5525    tmp = fieldFromInstruction(insn, 16, 5);
5526    if (DecodeGPRC_NOR0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5527    tmp = fieldFromInstruction(insn, 11, 5);
5528    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5529    tmp = fieldFromInstruction(insn, 6, 5);
5530    if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5531    return S;
5532  case 78:
5533    tmp = fieldFromInstruction(insn, 12, 8);
5534    MI.addOperand(MCOperand::createImm(tmp));
5535    tmp = fieldFromInstruction(insn, 21, 5);
5536    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5537    return S;
5538  case 79:
5539    tmp = fieldFromInstruction(insn, 12, 8);
5540    if (decodeCRBitMOperand(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5541    tmp = fieldFromInstruction(insn, 21, 5);
5542    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5543    return S;
5544  case 80:
5545    tmp = fieldFromInstruction(insn, 21, 5);
5546    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5547    tmp = fieldFromInstruction(insn, 12, 8);
5548    if (decodeCRBitMOperand(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5549    return S;
5550  case 81:
5551    tmp = fieldFromInstruction(insn, 16, 5);
5552    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5553    tmp = 0x0;
5554    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5555    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5556    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5557    return S;
5558  case 82:
5559    tmp = fieldFromInstruction(insn, 16, 5);
5560    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5561    tmp = 0x0;
5562    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5563    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5564    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5565    return S;
5566  case 83:
5567    tmp = fieldFromInstruction(insn, 21, 5);
5568    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5569    tmp = fieldFromInstruction(insn, 16, 1);
5570    MI.addOperand(MCOperand::createImm(tmp));
5571    return S;
5572  case 84:
5573    tmp = 0x0;
5574    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5575    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5576    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5577    tmp = fieldFromInstruction(insn, 16, 5);
5578    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5579    return S;
5580  case 85:
5581    tmp = fieldFromInstruction(insn, 21, 5);
5582    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5583    tmp = fieldFromInstruction(insn, 16, 4);
5584    MI.addOperand(MCOperand::createImm(tmp));
5585    return S;
5586  case 86:
5587    tmp = 0x0;
5588    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5589    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5590    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5591    tmp = fieldFromInstruction(insn, 16, 5);
5592    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5593    return S;
5594  case 87:
5595    tmp = fieldFromInstruction(insn, 21, 5);
5596    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5597    tmp = fieldFromInstruction(insn, 11, 5);
5598    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5599    return S;
5600  case 88:
5601    tmp = fieldFromInstruction(insn, 11, 5);
5602    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5603    return S;
5604  case 89:
5605    tmp = fieldFromInstruction(insn, 16, 5);
5606    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5607    tmp = 0x0;
5608    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5609    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5610    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5611    return S;
5612  case 90:
5613    tmp = 0x0;
5614    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5615    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5616    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5617    tmp = fieldFromInstruction(insn, 16, 5);
5618    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5619    return S;
5620  case 91:
5621    tmp = 0x0;
5622    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5623    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5624    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5625    tmp = fieldFromInstruction(insn, 16, 5);
5626    if (DecodeG8RC_NOX0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5627    tmp = fieldFromInstruction(insn, 11, 5);
5628    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5629    return S;
5630  case 92:
5631    tmp = fieldFromInstruction(insn, 21, 5);
5632    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5633    tmp = fieldFromInstruction(insn, 16, 2);
5634    MI.addOperand(MCOperand::createImm(tmp));
5635    return S;
5636  case 93:
5637    tmp = fieldFromInstruction(insn, 21, 5);
5638    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5639    tmp = fieldFromInstruction(insn, 16, 5);
5640    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5641    tmp = fieldFromInstruction(insn, 11, 1);
5642    MI.addOperand(MCOperand::createImm(tmp));
5643    return S;
5644  case 94:
5645    tmp = fieldFromInstruction(insn, 21, 5);
5646    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5647    tmp = fieldFromInstruction(insn, 16, 5);
5648    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5649    tmp = fieldFromInstruction(insn, 11, 5);
5650    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5651    return S;
5652  case 95:
5653    tmp = fieldFromInstruction(insn, 21, 5);
5654    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5655    tmp = fieldFromInstruction(insn, 16, 5);
5656    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5657    tmp = fieldFromInstruction(insn, 11, 5);
5658    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5659    return S;
5660  case 96:
5661    tmp = fieldFromInstruction(insn, 21, 5);
5662    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5663    tmp = fieldFromInstruction(insn, 16, 5);
5664    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5665    tmp = fieldFromInstruction(insn, 16, 5);
5666    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5667    tmp = fieldFromInstruction(insn, 11, 5);
5668    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5669    return S;
5670  case 97:
5671    tmp = fieldFromInstruction(insn, 16, 5);
5672    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5673    tmp = fieldFromInstruction(insn, 21, 5);
5674    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5675    tmp = fieldFromInstruction(insn, 16, 5);
5676    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5677    tmp = fieldFromInstruction(insn, 11, 5);
5678    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5679    return S;
5680  case 98:
5681    tmp = fieldFromInstruction(insn, 16, 5);
5682    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5683    tmp = fieldFromInstruction(insn, 11, 5);
5684    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5685    return S;
5686  case 99:
5687    tmp = fieldFromInstruction(insn, 21, 5);
5688    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5689    tmp = fieldFromInstruction(insn, 16, 5);
5690    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5691    tmp = fieldFromInstruction(insn, 16, 5);
5692    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5693    tmp = fieldFromInstruction(insn, 11, 5);
5694    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5695    return S;
5696  case 100:
5697    tmp = fieldFromInstruction(insn, 21, 5);
5698    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5699    tmp = fieldFromInstruction(insn, 16, 5);
5700    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5701    tmp = fieldFromInstruction(insn, 11, 5);
5702    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5703    return S;
5704  case 101:
5705    tmp = fieldFromInstruction(insn, 16, 5);
5706    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5707    tmp = fieldFromInstruction(insn, 21, 5);
5708    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5709    tmp = fieldFromInstruction(insn, 16, 5);
5710    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5711    tmp = fieldFromInstruction(insn, 11, 5);
5712    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5713    return S;
5714  case 102:
5715    tmp = fieldFromInstruction(insn, 21, 2);
5716    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5717    tmp = fieldFromInstruction(insn, 16, 5);
5718    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5719    tmp = fieldFromInstruction(insn, 11, 5);
5720    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5721    return S;
5722  case 103:
5723    tmp = fieldFromInstruction(insn, 21, 5);
5724    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5725    tmp = fieldFromInstruction(insn, 16, 5);
5726    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5727    tmp = fieldFromInstruction(insn, 11, 5);
5728    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5729    return S;
5730  case 104:
5731    tmp = fieldFromInstruction(insn, 21, 5);
5732    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5733    tmp = fieldFromInstruction(insn, 16, 5);
5734    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5735    tmp = fieldFromInstruction(insn, 16, 5);
5736    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5737    tmp = fieldFromInstruction(insn, 11, 5);
5738    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5739    return S;
5740  case 105:
5741    tmp = fieldFromInstruction(insn, 21, 2);
5742    MI.addOperand(MCOperand::createImm(tmp));
5743    return S;
5744  case 106:
5745    tmp = fieldFromInstruction(insn, 21, 5);
5746    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5747    tmp = fieldFromInstruction(insn, 16, 5);
5748    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5749    tmp = fieldFromInstruction(insn, 11, 5);
5750    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5751    return S;
5752  case 107:
5753    tmp = fieldFromInstruction(insn, 21, 5);
5754    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5755    tmp = fieldFromInstruction(insn, 16, 5);
5756    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5757    tmp = fieldFromInstruction(insn, 16, 5);
5758    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5759    tmp = fieldFromInstruction(insn, 11, 5);
5760    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5761    return S;
5762  case 108:
5763    tmp = fieldFromInstruction(insn, 16, 5);
5764    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5765    tmp = fieldFromInstruction(insn, 21, 5);
5766    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5767    tmp = fieldFromInstruction(insn, 16, 5);
5768    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5769    tmp = fieldFromInstruction(insn, 11, 5);
5770    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5771    return S;
5772  case 109:
5773    tmp = fieldFromInstruction(insn, 16, 5);
5774    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5775    tmp = fieldFromInstruction(insn, 21, 5);
5776    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5777    tmp = fieldFromInstruction(insn, 16, 5);
5778    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5779    tmp = fieldFromInstruction(insn, 11, 5);
5780    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5781    return S;
5782  case 110:
5783    tmp = fieldFromInstruction(insn, 21, 2);
5784    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5785    return S;
5786  case 111:
5787    tmp = fieldFromInstruction(insn, 21, 5);
5788    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5789    return S;
5790  case 112:
5791    tmp = fieldFromInstruction(insn, 16, 5);
5792    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5793    tmp = fieldFromInstruction(insn, 21, 5);
5794    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5795    tmp = fieldFromInstruction(insn, 11, 5);
5796    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5797    return S;
5798  case 113:
5799    tmp = fieldFromInstruction(insn, 16, 5);
5800    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5801    tmp = fieldFromInstruction(insn, 21, 5);
5802    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5803    tmp = fieldFromInstruction(insn, 11, 5);
5804    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5805    return S;
5806  case 114:
5807    tmp = fieldFromInstruction(insn, 16, 5);
5808    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5809    tmp = fieldFromInstruction(insn, 21, 5);
5810    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5811    return S;
5812  case 115:
5813    tmp = fieldFromInstruction(insn, 16, 5);
5814    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5815    tmp = fieldFromInstruction(insn, 21, 5);
5816    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5817    tmp = fieldFromInstruction(insn, 11, 5);
5818    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5819    return S;
5820  case 116:
5821    tmp = fieldFromInstruction(insn, 16, 5);
5822    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5823    tmp = fieldFromInstruction(insn, 21, 5);
5824    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5825    return S;
5826  case 117:
5827    tmp = fieldFromInstruction(insn, 16, 5);
5828    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5829    tmp = fieldFromInstruction(insn, 21, 5);
5830    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5831    tmp = 0x0;
5832    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5833    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5834    if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5835    return S;
5836  case 118:
5837    tmp = fieldFromInstruction(insn, 16, 5);
5838    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5839    tmp = fieldFromInstruction(insn, 21, 5);
5840    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5841    tmp = fieldFromInstruction(insn, 11, 5);
5842    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5843    return S;
5844  case 119:
5845    tmp = fieldFromInstruction(insn, 16, 5);
5846    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5847    tmp = fieldFromInstruction(insn, 11, 5);
5848    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5849    tmp = fieldFromInstruction(insn, 21, 5);
5850    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5851    return S;
5852  case 120:
5853    tmp = fieldFromInstruction(insn, 21, 5);
5854    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5855    tmp = fieldFromInstruction(insn, 0, 21);
5856    if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5857    return S;
5858  case 121:
5859    tmp = fieldFromInstruction(insn, 21, 5);
5860    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5861    tmp = fieldFromInstruction(insn, 0, 21);
5862    if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5863    return S;
5864  case 122:
5865    tmp = fieldFromInstruction(insn, 21, 5);
5866    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5867    tmp = fieldFromInstruction(insn, 0, 21);
5868    if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5869    return S;
5870  case 123:
5871    tmp = fieldFromInstruction(insn, 21, 5);
5872    if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5873    tmp = fieldFromInstruction(insn, 2, 19);
5874    if (decodeMemRIXOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5875    return S;
5876  case 124:
5877    tmp = fieldFromInstruction(insn, 21, 5);
5878    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5879    tmp = fieldFromInstruction(insn, 2, 19);
5880    if (decodeMemRIXOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5881    return S;
5882  case 125:
5883    tmp = fieldFromInstruction(insn, 21, 5);
5884    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5885    tmp = fieldFromInstruction(insn, 11, 5);
5886    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5887    return S;
5888  case 126:
5889    tmp = fieldFromInstruction(insn, 21, 5);
5890    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5891    tmp = fieldFromInstruction(insn, 16, 5);
5892    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5893    tmp = fieldFromInstruction(insn, 11, 5);
5894    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5895    return S;
5896  case 127:
5897    tmp = fieldFromInstruction(insn, 21, 5);
5898    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5899    tmp = fieldFromInstruction(insn, 11, 5);
5900    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5901    return S;
5902  case 128:
5903    tmp = fieldFromInstruction(insn, 21, 5);
5904    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5905    tmp = fieldFromInstruction(insn, 16, 5);
5906    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5907    tmp = fieldFromInstruction(insn, 6, 5);
5908    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5909    return S;
5910  case 129:
5911    tmp = fieldFromInstruction(insn, 21, 5);
5912    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5913    tmp = fieldFromInstruction(insn, 16, 5);
5914    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5915    tmp = fieldFromInstruction(insn, 6, 5);
5916    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5917    tmp = fieldFromInstruction(insn, 11, 5);
5918    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5919    return S;
5920  case 130:
5921    tmp = 0x0;
5922    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5923    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5924    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5925    tmp = 0x0;
5926    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
5927    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5928    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5929    tmp = 0x0;
5930    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5931    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5932    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5933    return S;
5934  case 131:
5935    tmp = 0x0;
5936    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5937    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5938    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5939    tmp = 0x0;
5940    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5941    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5942    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5943    tmp = 0x0;
5944    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
5945    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5946    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5947    tmp = 0x0;
5948    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5949    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5950    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5951    return S;
5952  case 132:
5953    tmp = 0x0;
5954    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5955    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5956    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5957    tmp = 0x0;
5958    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
5959    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5960    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5961    tmp = 0x0;
5962    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5963    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5964    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5965    return S;
5966  case 133:
5967    tmp = 0x0;
5968    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5969    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5970    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5971    tmp = 0x0;
5972    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5973    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5974    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5975    tmp = 0x0;
5976    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
5977    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5978    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5979    tmp = 0x0;
5980    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5981    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5982    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5983    return S;
5984  case 134:
5985    tmp = 0x0;
5986    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
5987    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
5988    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5989    tmp = 0x0;
5990    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
5991    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
5992    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5993    tmp = 0x0;
5994    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
5995    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
5996    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
5997    return S;
5998  case 135:
5999    tmp = 0x0;
6000    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6001    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6002    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6003    tmp = 0x0;
6004    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6005    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6006    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6007    tmp = 0x0;
6008    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6009    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6010    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6011    tmp = 0x0;
6012    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6013    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6014    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6015    return S;
6016  case 136:
6017    tmp = 0x0;
6018    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6019    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6020    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6021    tmp = 0x0;
6022    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6023    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6024    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6025    tmp = 0x0;
6026    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6027    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6028    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6029    return S;
6030  case 137:
6031    tmp = 0x0;
6032    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6033    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6034    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6035    tmp = 0x0;
6036    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6037    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6038    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6039    tmp = 0x0;
6040    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6041    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6042    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6043    tmp = fieldFromInstruction(insn, 8, 2);
6044    MI.addOperand(MCOperand::createImm(tmp));
6045    return S;
6046  case 138:
6047    tmp = fieldFromInstruction(insn, 23, 3);
6048    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6049    tmp = 0x0;
6050    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6051    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6052    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6053    tmp = 0x0;
6054    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6055    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6056    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6057    return S;
6058  case 139:
6059    tmp = 0x0;
6060    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6061    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6062    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6063    tmp = 0x0;
6064    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6065    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6066    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6067    tmp = fieldFromInstruction(insn, 16, 2);
6068    MI.addOperand(MCOperand::createImm(tmp));
6069    return S;
6070  case 140:
6071    tmp = 0x0;
6072    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6073    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6074    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6075    tmp = 0x0;
6076    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6077    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6078    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6079    tmp = fieldFromInstruction(insn, 16, 5);
6080    MI.addOperand(MCOperand::createImm(tmp));
6081    return S;
6082  case 141:
6083    tmp = 0x0;
6084    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6085    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6086    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6087    tmp = fieldFromInstruction(insn, 11, 8);
6088    if (decodeUImmOperand<8>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6089    return S;
6090  case 142:
6091    tmp = 0x0;
6092    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6093    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6094    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6095    tmp = 0x0;
6096    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6097    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6098    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6099    tmp = 0x0;
6100    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6101    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6102    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6103    tmp = fieldFromInstruction(insn, 16, 5);
6104    MI.addOperand(MCOperand::createImm(tmp));
6105    return S;
6106  case 143:
6107    tmp = 0x0;
6108    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6109    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6110    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6111    tmp = 0x0;
6112    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6113    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6114    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6115    return S;
6116  case 144:
6117    tmp = 0x0;
6118    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6119    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6120    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6121    tmp = 0x0;
6122    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6123    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6124    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6125    return S;
6126  case 145:
6127    tmp = fieldFromInstruction(insn, 23, 3);
6128    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6129    tmp = 0x0;
6130    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6131    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6132    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6133    return S;
6134  case 146:
6135    tmp = 0x0;
6136    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6137    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6138    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6139    tmp = 0x0;
6140    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6141    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6142    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6143    return S;
6144  case 147:
6145    tmp = fieldFromInstruction(insn, 23, 3);
6146    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6147    tmp = 0x0;
6148    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6149    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6150    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6151    return S;
6152  case 148:
6153    tmp = fieldFromInstruction(insn, 23, 3);
6154    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6155    tmp = 0x0;
6156    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6157    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6158    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6159    tmp = 0x0;
6160    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6161    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6162    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6163    return S;
6164  case 149:
6165    tmp = 0x0;
6166    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6167    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6168    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6169    tmp = 0x0;
6170    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6171    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6172    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6173    return S;
6174  case 150:
6175    tmp = 0x0;
6176    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6177    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6178    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6179    tmp = 0x0;
6180    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6181    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6182    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6183    return S;
6184  case 151:
6185    tmp = fieldFromInstruction(insn, 23, 3);
6186    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6187    tmp = fieldFromInstruction(insn, 16, 7);
6188    if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6189    tmp = 0x0;
6190    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6191    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6192    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6193    return S;
6194  case 152:
6195    tmp = 0x0;
6196    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6197    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6198    if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6199    tmp = 0x0;
6200    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6201    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6202    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6203    return S;
6204  case 153:
6205    tmp = fieldFromInstruction(insn, 21, 5);
6206    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6207    tmp = 0x0;
6208    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6209    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6210    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6211    return S;
6212  case 154:
6213    tmp = 0x0;
6214    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6215    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6216    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6217    tmp = 0x0;
6218    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6219    tmp |= fieldFromInstruction(insn, 6, 1) << 6;
6220    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6221    if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6222    tmp = 0x0;
6223    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6224    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6225    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6226    return S;
6227  case 155:
6228    tmp = 0x0;
6229    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6230    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6231    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6232    tmp = fieldFromInstruction(insn, 16, 5);
6233    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6234    tmp = fieldFromInstruction(insn, 11, 5);
6235    if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6236    return S;
6237  case 156:
6238    tmp = 0x0;
6239    tmp |= fieldFromInstruction(insn, 0, 1) << 5;
6240    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6241    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6242    tmp = 0x0;
6243    tmp |= fieldFromInstruction(insn, 2, 1) << 5;
6244    tmp |= fieldFromInstruction(insn, 16, 5) << 0;
6245    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6246    tmp = 0x0;
6247    tmp |= fieldFromInstruction(insn, 1, 1) << 5;
6248    tmp |= fieldFromInstruction(insn, 11, 5) << 0;
6249    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6250    tmp = 0x0;
6251    tmp |= fieldFromInstruction(insn, 3, 1) << 5;
6252    tmp |= fieldFromInstruction(insn, 6, 5) << 0;
6253    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6254    return S;
6255  case 157:
6256    tmp = 0x0;
6257    tmp |= fieldFromInstruction(insn, 3, 1) << 5;
6258    tmp |= fieldFromInstruction(insn, 21, 5) << 0;
6259    if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6260    tmp = fieldFromInstruction(insn, 4, 17);
6261    if (decodeMemRIX16Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6262    return S;
6263  case 158:
6264    tmp = fieldFromInstruction(insn, 23, 3);
6265    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6266    tmp = fieldFromInstruction(insn, 16, 5);
6267    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6268    tmp = fieldFromInstruction(insn, 11, 5);
6269    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6270    return S;
6271  case 159:
6272    tmp = fieldFromInstruction(insn, 23, 3);
6273    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6274    tmp = fieldFromInstruction(insn, 16, 5);
6275    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6276    tmp = fieldFromInstruction(insn, 11, 5);
6277    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6278    return S;
6279  case 160:
6280    tmp = fieldFromInstruction(insn, 23, 3);
6281    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6282    tmp = fieldFromInstruction(insn, 11, 5);
6283    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6284    return S;
6285  case 161:
6286    tmp = fieldFromInstruction(insn, 23, 3);
6287    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6288    tmp = fieldFromInstruction(insn, 16, 5);
6289    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6290    tmp = fieldFromInstruction(insn, 11, 5);
6291    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6292    return S;
6293  case 162:
6294    tmp = fieldFromInstruction(insn, 21, 5);
6295    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6296    tmp = fieldFromInstruction(insn, 21, 5);
6297    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6298    tmp = fieldFromInstruction(insn, 16, 5);
6299    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6300    tmp = fieldFromInstruction(insn, 11, 5);
6301    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6302    return S;
6303  case 163:
6304    tmp = fieldFromInstruction(insn, 23, 3);
6305    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6306    tmp = fieldFromInstruction(insn, 16, 7);
6307    if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6308    tmp = fieldFromInstruction(insn, 11, 5);
6309    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6310    return S;
6311  case 164:
6312    tmp = fieldFromInstruction(insn, 21, 5);
6313    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6314    tmp = fieldFromInstruction(insn, 11, 5);
6315    if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6316    return S;
6317  case 165:
6318    tmp = fieldFromInstruction(insn, 21, 5);
6319    if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6320    tmp = fieldFromInstruction(insn, 11, 5);
6321    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6322    return S;
6323  case 166:
6324    tmp = fieldFromInstruction(insn, 21, 5);
6325    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6326    tmp = fieldFromInstruction(insn, 16, 5);
6327    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6328    tmp = fieldFromInstruction(insn, 11, 5);
6329    if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6330    return S;
6331  case 167:
6332    tmp = fieldFromInstruction(insn, 21, 5);
6333    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6334    tmp = fieldFromInstruction(insn, 16, 1);
6335    MI.addOperand(MCOperand::createImm(tmp));
6336    tmp = fieldFromInstruction(insn, 11, 5);
6337    if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6338    tmp = fieldFromInstruction(insn, 9, 2);
6339    MI.addOperand(MCOperand::createImm(tmp));
6340    return S;
6341  case 168:
6342    tmp = fieldFromInstruction(insn, 23, 3);
6343    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6344    tmp = fieldFromInstruction(insn, 12, 4);
6345    MI.addOperand(MCOperand::createImm(tmp));
6346    tmp = fieldFromInstruction(insn, 16, 1);
6347    MI.addOperand(MCOperand::createImm(tmp));
6348    return S;
6349  case 169:
6350    tmp = fieldFromInstruction(insn, 21, 5);
6351    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6352    return S;
6353  case 170:
6354    tmp = fieldFromInstruction(insn, 21, 5);
6355    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6356    tmp = fieldFromInstruction(insn, 11, 5);
6357    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6358    return S;
6359  case 171:
6360    tmp = fieldFromInstruction(insn, 21, 5);
6361    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6362    tmp = fieldFromInstruction(insn, 11, 3);
6363    MI.addOperand(MCOperand::createImm(tmp));
6364    return S;
6365  case 172:
6366    tmp = fieldFromInstruction(insn, 21, 5);
6367    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6368    tmp = fieldFromInstruction(insn, 11, 2);
6369    MI.addOperand(MCOperand::createImm(tmp));
6370    return S;
6371  case 173:
6372    tmp = fieldFromInstruction(insn, 17, 8);
6373    MI.addOperand(MCOperand::createImm(tmp));
6374    tmp = fieldFromInstruction(insn, 11, 5);
6375    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6376    tmp = fieldFromInstruction(insn, 25, 1);
6377    MI.addOperand(MCOperand::createImm(tmp));
6378    tmp = fieldFromInstruction(insn, 16, 1);
6379    MI.addOperand(MCOperand::createImm(tmp));
6380    return S;
6381  case 174:
6382    tmp = fieldFromInstruction(insn, 21, 5);
6383    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6384    tmp = fieldFromInstruction(insn, 16, 5);
6385    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6386    tmp = fieldFromInstruction(insn, 11, 5);
6387    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6388    return S;
6389  case 175:
6390    tmp = fieldFromInstruction(insn, 21, 5);
6391    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6392    tmp = fieldFromInstruction(insn, 16, 5);
6393    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6394    tmp = fieldFromInstruction(insn, 6, 5);
6395    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6396    tmp = fieldFromInstruction(insn, 11, 5);
6397    if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6398    return S;
6399  case 176:
6400    tmp = fieldFromInstruction(insn, 21, 5);
6401    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6402    tmp = fieldFromInstruction(insn, 16, 5);
6403    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6404    tmp = fieldFromInstruction(insn, 6, 5);
6405    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6406    return S;
6407  case 177:
6408    tmp = fieldFromInstruction(insn, 21, 5);
6409    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6410    tmp = fieldFromInstruction(insn, 16, 5);
6411    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6412    tmp = fieldFromInstruction(insn, 6, 5);
6413    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6414    tmp = fieldFromInstruction(insn, 11, 5);
6415    if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6416    return S;
6417  case 178:
6418    tmp = fieldFromInstruction(insn, 21, 5);
6419    if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6420    tmp = fieldFromInstruction(insn, 16, 5);
6421    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6422    tmp = fieldFromInstruction(insn, 11, 5);
6423    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6424    return S;
6425  case 179:
6426    tmp = fieldFromInstruction(insn, 21, 5);
6427    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6428    tmp = fieldFromInstruction(insn, 16, 5);
6429    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6430    tmp = fieldFromInstruction(insn, 11, 5);
6431    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6432    tmp = fieldFromInstruction(insn, 6, 5);
6433    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6434    return S;
6435  case 180:
6436    tmp = fieldFromInstruction(insn, 21, 5);
6437    if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6438    tmp = fieldFromInstruction(insn, 16, 5);
6439    if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6440    tmp = fieldFromInstruction(insn, 11, 5);
6441    if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6442    tmp = fieldFromInstruction(insn, 7, 4);
6443    if (decodeUImmOperand<12>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6444    return S;
6445  case 181:
6446    tmp = fieldFromInstruction(insn, 21, 5);
6447    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6448    tmp = fieldFromInstruction(insn, 16, 5);
6449    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6450    tmp = fieldFromInstruction(insn, 11, 5);
6451    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6452    tmp = fieldFromInstruction(insn, 9, 2);
6453    MI.addOperand(MCOperand::createImm(tmp));
6454    return S;
6455  case 182:
6456    tmp = fieldFromInstruction(insn, 21, 5);
6457    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6458    tmp = fieldFromInstruction(insn, 16, 5);
6459    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6460    tmp = fieldFromInstruction(insn, 9, 2);
6461    MI.addOperand(MCOperand::createImm(tmp));
6462    return S;
6463  case 183:
6464    tmp = fieldFromInstruction(insn, 21, 5);
6465    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6466    tmp = fieldFromInstruction(insn, 9, 12);
6467    if (decodeUImmOperand<12>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6468    return S;
6469  case 184:
6470    tmp = fieldFromInstruction(insn, 21, 5);
6471    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6472    tmp = fieldFromInstruction(insn, 16, 5);
6473    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6474    tmp = fieldFromInstruction(insn, 11, 5);
6475    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6476    return S;
6477  case 185:
6478    tmp = fieldFromInstruction(insn, 21, 5);
6479    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6480    tmp = fieldFromInstruction(insn, 16, 5);
6481    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6482    tmp = fieldFromInstruction(insn, 16, 5);
6483    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6484    tmp = fieldFromInstruction(insn, 11, 5);
6485    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6486    return S;
6487  case 186:
6488    tmp = fieldFromInstruction(insn, 21, 5);
6489    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6490    tmp = fieldFromInstruction(insn, 16, 5);
6491    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6492    tmp = fieldFromInstruction(insn, 16, 5);
6493    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6494    tmp = fieldFromInstruction(insn, 11, 5);
6495    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6496    return S;
6497  case 187:
6498    tmp = fieldFromInstruction(insn, 16, 5);
6499    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6500    tmp = fieldFromInstruction(insn, 21, 5);
6501    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6502    tmp = fieldFromInstruction(insn, 16, 5);
6503    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6504    tmp = fieldFromInstruction(insn, 11, 5);
6505    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6506    return S;
6507  case 188:
6508    tmp = fieldFromInstruction(insn, 16, 5);
6509    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6510    tmp = fieldFromInstruction(insn, 21, 5);
6511    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6512    tmp = fieldFromInstruction(insn, 16, 5);
6513    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6514    tmp = fieldFromInstruction(insn, 11, 5);
6515    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6516    return S;
6517  case 189:
6518    tmp = fieldFromInstruction(insn, 21, 5);
6519    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6520    tmp = fieldFromInstruction(insn, 16, 5);
6521    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6522    tmp = fieldFromInstruction(insn, 11, 5);
6523    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6524    return S;
6525  case 190:
6526    tmp = fieldFromInstruction(insn, 21, 5);
6527    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6528    tmp = fieldFromInstruction(insn, 11, 5);
6529    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6530    return S;
6531  case 191:
6532    tmp = fieldFromInstruction(insn, 21, 5);
6533    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6534    tmp = fieldFromInstruction(insn, 11, 5);
6535    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6536    return S;
6537  case 192:
6538    tmp = fieldFromInstruction(insn, 21, 5);
6539    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6540    tmp = fieldFromInstruction(insn, 16, 5);
6541    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6542    tmp = fieldFromInstruction(insn, 6, 5);
6543    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6544    return S;
6545  case 193:
6546    tmp = fieldFromInstruction(insn, 21, 5);
6547    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6548    tmp = fieldFromInstruction(insn, 16, 5);
6549    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6550    tmp = fieldFromInstruction(insn, 11, 5);
6551    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6552    return S;
6553  case 194:
6554    tmp = fieldFromInstruction(insn, 21, 5);
6555    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6556    tmp = fieldFromInstruction(insn, 16, 5);
6557    if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6558    tmp = fieldFromInstruction(insn, 11, 5);
6559    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6560    tmp = fieldFromInstruction(insn, 6, 5);
6561    if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6562    return S;
6563  case 195:
6564    tmp = fieldFromInstruction(insn, 21, 5);
6565    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6566    tmp = fieldFromInstruction(insn, 16, 5);
6567    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6568    tmp = fieldFromInstruction(insn, 6, 5);
6569    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6570    return S;
6571  case 196:
6572    tmp = fieldFromInstruction(insn, 21, 5);
6573    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6574    tmp = fieldFromInstruction(insn, 16, 5);
6575    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6576    tmp = fieldFromInstruction(insn, 11, 5);
6577    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6578    tmp = fieldFromInstruction(insn, 6, 5);
6579    if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6580    return S;
6581  case 197:
6582    tmp = fieldFromInstruction(insn, 21, 5);
6583    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6584    tmp = fieldFromInstruction(insn, 16, 5);
6585    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6586    tmp = fieldFromInstruction(insn, 11, 5);
6587    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6588    return S;
6589  case 198:
6590    tmp = fieldFromInstruction(insn, 21, 5);
6591    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6592    tmp = fieldFromInstruction(insn, 16, 5);
6593    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6594    tmp = fieldFromInstruction(insn, 11, 5);
6595    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6596    return S;
6597  case 199:
6598    tmp = fieldFromInstruction(insn, 21, 5);
6599    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6600    tmp = fieldFromInstruction(insn, 16, 5);
6601    if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6602    tmp = fieldFromInstruction(insn, 11, 5);
6603    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6604    return S;
6605  case 200:
6606    tmp = fieldFromInstruction(insn, 21, 5);
6607    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6608    tmp = fieldFromInstruction(insn, 16, 5);
6609    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6610    return S;
6611  case 201:
6612    tmp = fieldFromInstruction(insn, 21, 5);
6613    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6614    tmp = fieldFromInstruction(insn, 16, 5);
6615    if (decodeSImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6616    return S;
6617  case 202:
6618    tmp = fieldFromInstruction(insn, 21, 5);
6619    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6620    tmp = fieldFromInstruction(insn, 16, 5);
6621    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6622    tmp = fieldFromInstruction(insn, 11, 5);
6623    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6624    return S;
6625  case 203:
6626    tmp = fieldFromInstruction(insn, 23, 3);
6627    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6628    tmp = fieldFromInstruction(insn, 16, 5);
6629    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6630    tmp = fieldFromInstruction(insn, 11, 5);
6631    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6632    return S;
6633  case 204:
6634    tmp = fieldFromInstruction(insn, 21, 5);
6635    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6636    tmp = fieldFromInstruction(insn, 16, 5);
6637    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6638    tmp = fieldFromInstruction(insn, 11, 5);
6639    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6640    tmp = fieldFromInstruction(insn, 0, 3);
6641    if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6642    return S;
6643  case 205:
6644    tmp = fieldFromInstruction(insn, 21, 5);
6645    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6646    tmp = fieldFromInstruction(insn, 11, 5);
6647    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6648    return S;
6649  case 206:
6650    tmp = fieldFromInstruction(insn, 21, 5);
6651    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6652    tmp = fieldFromInstruction(insn, 11, 5);
6653    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6654    return S;
6655  case 207:
6656    tmp = fieldFromInstruction(insn, 21, 5);
6657    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6658    tmp = fieldFromInstruction(insn, 11, 5);
6659    if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6660    return S;
6661  case 208:
6662    tmp = fieldFromInstruction(insn, 21, 5);
6663    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6664    tmp = fieldFromInstruction(insn, 16, 5);
6665    if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6666    tmp = fieldFromInstruction(insn, 11, 5);
6667    if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6668    return S;
6669  case 209:
6670    tmp = fieldFromInstruction(insn, 21, 5);
6671    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6672    tmp = fieldFromInstruction(insn, 11, 10);
6673    if (decodeSPE8Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6674    return S;
6675  case 210:
6676    tmp = fieldFromInstruction(insn, 21, 5);
6677    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6678    tmp = fieldFromInstruction(insn, 11, 10);
6679    if (decodeSPE2Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6680    return S;
6681  case 211:
6682    tmp = fieldFromInstruction(insn, 21, 5);
6683    if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6684    tmp = fieldFromInstruction(insn, 11, 10);
6685    if (decodeSPE4Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; }
6686    return S;
6687  }
6688}
6689
6690template<typename InsnType>
6691static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI,
6692                                      InsnType insn, uint64_t Address,
6693                                      const void *DisAsm,
6694                                      const MCSubtargetInfo &STI) {
6695  const FeatureBitset& Bits = STI.getFeatureBits();
6696
6697  const uint8_t *Ptr = DecodeTable;
6698  InsnType CurFieldValue = 0;
6699  DecodeStatus S = MCDisassembler::Success;
6700  while (true) {
6701    ptrdiff_t Loc = Ptr - DecodeTable;
6702    switch (*Ptr) {
6703    default:
6704      errs() << Loc << ": Unexpected decode table opcode!\n";
6705      return MCDisassembler::Fail;
6706    case MCD::OPC_ExtractField: {
6707      unsigned Start = *++Ptr;
6708      unsigned Len = *++Ptr;
6709      ++Ptr;
6710      CurFieldValue = fieldFromInstruction(insn, Start, Len);
6711      LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", "
6712                   << Len << "): " << CurFieldValue << "\n");
6713      break;
6714    }
6715    case MCD::OPC_FilterValue: {
6716      // Decode the field value.
6717      unsigned Len;
6718      InsnType Val = decodeULEB128(++Ptr, &Len);
6719      Ptr += Len;
6720      // NumToSkip is a plain 24-bit integer.
6721      unsigned NumToSkip = *Ptr++;
6722      NumToSkip |= (*Ptr++) << 8;
6723      NumToSkip |= (*Ptr++) << 16;
6724
6725      // Perform the filter operation.
6726      if (Val != CurFieldValue)
6727        Ptr += NumToSkip;
6728      LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip
6729                   << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:")
6730                   << " continuing at " << (Ptr - DecodeTable) << "\n");
6731
6732      break;
6733    }
6734    case MCD::OPC_CheckField: {
6735      unsigned Start = *++Ptr;
6736      unsigned Len = *++Ptr;
6737      InsnType FieldValue = fieldFromInstruction(insn, Start, Len);
6738      // Decode the field value.
6739      InsnType ExpectedValue = decodeULEB128(++Ptr, &Len);
6740      Ptr += Len;
6741      // NumToSkip is a plain 24-bit integer.
6742      unsigned NumToSkip = *Ptr++;
6743      NumToSkip |= (*Ptr++) << 8;
6744      NumToSkip |= (*Ptr++) << 16;
6745
6746      // If the actual and expected values don't match, skip.
6747      if (ExpectedValue != FieldValue)
6748        Ptr += NumToSkip;
6749      LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", "
6750                   << Len << ", " << ExpectedValue << ", " << NumToSkip
6751                   << "): FieldValue = " << FieldValue << ", ExpectedValue = "
6752                   << ExpectedValue << ": "
6753                   << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n"));
6754      break;
6755    }
6756    case MCD::OPC_CheckPredicate: {
6757      unsigned Len;
6758      // Decode the Predicate Index value.
6759      unsigned PIdx = decodeULEB128(++Ptr, &Len);
6760      Ptr += Len;
6761      // NumToSkip is a plain 24-bit integer.
6762      unsigned NumToSkip = *Ptr++;
6763      NumToSkip |= (*Ptr++) << 8;
6764      NumToSkip |= (*Ptr++) << 16;
6765      // Check the predicate.
6766      bool Pred;
6767      if (!(Pred = checkDecoderPredicate(PIdx, Bits)))
6768        Ptr += NumToSkip;
6769      (void)Pred;
6770      LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): "
6771            << (Pred ? "PASS\n" : "FAIL\n"));
6772
6773      break;
6774    }
6775    case MCD::OPC_Decode: {
6776      unsigned Len;
6777      // Decode the Opcode value.
6778      unsigned Opc = decodeULEB128(++Ptr, &Len);
6779      Ptr += Len;
6780      unsigned DecodeIdx = decodeULEB128(Ptr, &Len);
6781      Ptr += Len;
6782
6783      MI.clear();
6784      MI.setOpcode(Opc);
6785      bool DecodeComplete;
6786      S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, DecodeComplete);
6787      assert(DecodeComplete);
6788
6789      LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc
6790                   << ", using decoder " << DecodeIdx << ": "
6791                   << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n");
6792      return S;
6793    }
6794    case MCD::OPC_TryDecode: {
6795      unsigned Len;
6796      // Decode the Opcode value.
6797      unsigned Opc = decodeULEB128(++Ptr, &Len);
6798      Ptr += Len;
6799      unsigned DecodeIdx = decodeULEB128(Ptr, &Len);
6800      Ptr += Len;
6801      // NumToSkip is a plain 24-bit integer.
6802      unsigned NumToSkip = *Ptr++;
6803      NumToSkip |= (*Ptr++) << 8;
6804      NumToSkip |= (*Ptr++) << 16;
6805
6806      // Perform the decode operation.
6807      MCInst TmpMI;
6808      TmpMI.setOpcode(Opc);
6809      bool DecodeComplete;
6810      S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete);
6811      LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc
6812                   << ", using decoder " << DecodeIdx << ": ");
6813
6814      if (DecodeComplete) {
6815        // Decoding complete.
6816        LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n");
6817        MI = TmpMI;
6818        return S;
6819      } else {
6820        assert(S == MCDisassembler::Fail);
6821        // If the decoding was incomplete, skip.
6822        Ptr += NumToSkip;
6823        LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n");
6824        // Reset decode status. This also drops a SoftFail status that could be
6825        // set before the decode attempt.
6826        S = MCDisassembler::Success;
6827      }
6828      break;
6829    }
6830    case MCD::OPC_SoftFail: {
6831      // Decode the mask values.
6832      unsigned Len;
6833      InsnType PositiveMask = decodeULEB128(++Ptr, &Len);
6834      Ptr += Len;
6835      InsnType NegativeMask = decodeULEB128(Ptr, &Len);
6836      Ptr += Len;
6837      bool Fail = (insn & PositiveMask) || (~insn & NegativeMask);
6838      if (Fail)
6839        S = MCDisassembler::SoftFail;
6840      LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n":"PASS\n"));
6841      break;
6842    }
6843    case MCD::OPC_Fail: {
6844      LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n");
6845      return MCDisassembler::Fail;
6846    }
6847    }
6848  }
6849  llvm_unreachable("bogosity detected in disassembler state machine!");
6850}
6851
6852
6853} // end namespace llvm
6854