1 | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ |
2 | |* *| |
3 | |* * SystemZ Disassembler *| |
4 | |* *| |
5 | |* Automatically generated file, do not edit! *| |
6 | |* *| |
7 | \*===----------------------------------------------------------------------===*/ |
8 | |
9 | |
10 | #include "llvm/MC/MCInst.h" |
11 | #include "llvm/MC/MCSubtargetInfo.h" |
12 | #include "llvm/Support/DataTypes.h" |
13 | #include "llvm/Support/Debug.h" |
14 | #include "llvm/Support/LEB128.h" |
15 | #include "llvm/Support/raw_ostream.h" |
16 | #include "llvm/TargetParser/SubtargetFeature.h" |
17 | #include <assert.h> |
18 | |
19 | namespace llvm { |
20 | |
21 | // Helper functions for extracting fields from encoded instructions. |
22 | // InsnType must either be integral or an APInt-like object that must: |
23 | // * be default-constructible and copy-constructible |
24 | // * be constructible from an APInt (this can be private) |
25 | // * Support insertBits(bits, startBit, numBits) |
26 | // * Support extractBitsAsZExtValue(numBits, startBit) |
27 | // * Support the ~, &, ==, and != operators with other objects of the same type |
28 | // * Support the != and bitwise & with uint64_t |
29 | // * Support put (<<) to raw_ostream& |
30 | template <typename InsnType> |
31 | #if defined(_MSC_VER) && !defined(__clang__) |
32 | __declspec(noinline) |
33 | #endif |
34 | static std::enable_if_t<std::is_integral<InsnType>::value, InsnType> |
35 | fieldFromInstruction(const InsnType &insn, unsigned startBit, |
36 | unsigned numBits) { |
37 | assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!" ); |
38 | assert(startBit + numBits <= (sizeof(InsnType) * 8) && |
39 | "Instruction field out of bounds!" ); |
40 | InsnType fieldMask; |
41 | if (numBits == sizeof(InsnType) * 8) |
42 | fieldMask = (InsnType)(-1LL); |
43 | else |
44 | fieldMask = (((InsnType)1 << numBits) - 1) << startBit; |
45 | return (insn & fieldMask) >> startBit; |
46 | } |
47 | |
48 | template <typename InsnType> |
49 | static std::enable_if_t<!std::is_integral<InsnType>::value, uint64_t> |
50 | fieldFromInstruction(const InsnType &insn, unsigned startBit, |
51 | unsigned numBits) { |
52 | return insn.extractBitsAsZExtValue(numBits, startBit); |
53 | } |
54 | |
55 | // Helper function for inserting bits extracted from an encoded instruction into |
56 | // a field. |
57 | template <typename InsnType> |
58 | static std::enable_if_t<std::is_integral<InsnType>::value> |
59 | insertBits(InsnType &field, InsnType bits, unsigned startBit, unsigned numBits) { |
60 | assert(startBit + numBits <= sizeof field * 8); |
61 | field |= (InsnType)bits << startBit; |
62 | } |
63 | |
64 | template <typename InsnType> |
65 | static std::enable_if_t<!std::is_integral<InsnType>::value> |
66 | insertBits(InsnType &field, uint64_t bits, unsigned startBit, unsigned numBits) { |
67 | field.insertBits(bits, startBit, numBits); |
68 | } |
69 | |
70 | static bool Check(DecodeStatus &Out, DecodeStatus In) { |
71 | Out = static_cast<DecodeStatus>(Out & In); |
72 | return Out != MCDisassembler::Fail; |
73 | } |
74 | |
75 | static const uint8_t DecoderTable16[] = { |
76 | /* 0 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
77 | /* 3 */ MCD::OPC_FilterValue, 1, 94, 0, 0, // Skip to: 102 |
78 | /* 8 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
79 | /* 11 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 20 |
80 | /* 16 */ MCD::OPC_Decode, 207, 15, 0, // Opcode: PR |
81 | /* 20 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 29 |
82 | /* 25 */ MCD::OPC_Decode, 213, 18, 0, // Opcode: UPT |
83 | /* 29 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 38 |
84 | /* 34 */ MCD::OPC_Decode, 211, 15, 0, // Opcode: PTFF |
85 | /* 38 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 47 |
86 | /* 43 */ MCD::OPC_Decode, 252, 15, 0, // Opcode: SCKPF |
87 | /* 47 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 56 |
88 | /* 52 */ MCD::OPC_Decode, 197, 15, 0, // Opcode: PFPO |
89 | /* 56 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 65 |
90 | /* 61 */ MCD::OPC_Decode, 159, 18, 0, // Opcode: TAM |
91 | /* 65 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 74 |
92 | /* 70 */ MCD::OPC_Decode, 244, 15, 0, // Opcode: SAM24 |
93 | /* 74 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 83 |
94 | /* 79 */ MCD::OPC_Decode, 245, 15, 0, // Opcode: SAM31 |
95 | /* 83 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 92 |
96 | /* 88 */ MCD::OPC_Decode, 246, 15, 0, // Opcode: SAM64 |
97 | /* 92 */ MCD::OPC_FilterValue, 255, 1, 168, 2, 0, // Skip to: 778 |
98 | /* 98 */ MCD::OPC_Decode, 191, 18, 0, // Opcode: TRAP2 |
99 | /* 102 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 118 |
100 | /* 107 */ MCD::OPC_CheckField, 0, 4, 0, 152, 2, 0, // Skip to: 778 |
101 | /* 114 */ MCD::OPC_Decode, 247, 16, 1, // Opcode: SPM |
102 | /* 118 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 127 |
103 | /* 123 */ MCD::OPC_Decode, 201, 4, 2, // Opcode: BALR |
104 | /* 127 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 136 |
105 | /* 132 */ MCD::OPC_Decode, 232, 4, 3, // Opcode: BCTR |
106 | /* 136 */ MCD::OPC_FilterValue, 7, 151, 0, 0, // Skip to: 292 |
107 | /* 141 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... |
108 | /* 144 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 153 |
109 | /* 149 */ MCD::OPC_Decode, 160, 15, 4, // Opcode: NOPR |
110 | /* 153 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 162 |
111 | /* 158 */ MCD::OPC_Decode, 150, 5, 5, // Opcode: BRAsmO |
112 | /* 162 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 171 |
113 | /* 167 */ MCD::OPC_Decode, 134, 5, 5, // Opcode: BRAsmH |
114 | /* 171 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 180 |
115 | /* 176 */ MCD::OPC_Decode, 144, 5, 5, // Opcode: BRAsmNLE |
116 | /* 180 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 189 |
117 | /* 185 */ MCD::OPC_Decode, 136, 5, 5, // Opcode: BRAsmL |
118 | /* 189 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 198 |
119 | /* 194 */ MCD::OPC_Decode, 142, 5, 5, // Opcode: BRAsmNHE |
120 | /* 198 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 207 |
121 | /* 203 */ MCD::OPC_Decode, 138, 5, 5, // Opcode: BRAsmLH |
122 | /* 207 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 216 |
123 | /* 212 */ MCD::OPC_Decode, 140, 5, 5, // Opcode: BRAsmNE |
124 | /* 216 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 225 |
125 | /* 221 */ MCD::OPC_Decode, 133, 5, 5, // Opcode: BRAsmE |
126 | /* 225 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 234 |
127 | /* 230 */ MCD::OPC_Decode, 145, 5, 5, // Opcode: BRAsmNLH |
128 | /* 234 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 243 |
129 | /* 239 */ MCD::OPC_Decode, 135, 5, 5, // Opcode: BRAsmHE |
130 | /* 243 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 252 |
131 | /* 248 */ MCD::OPC_Decode, 143, 5, 5, // Opcode: BRAsmNL |
132 | /* 252 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 261 |
133 | /* 257 */ MCD::OPC_Decode, 137, 5, 5, // Opcode: BRAsmLE |
134 | /* 261 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 270 |
135 | /* 266 */ MCD::OPC_Decode, 141, 5, 5, // Opcode: BRAsmNH |
136 | /* 270 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 279 |
137 | /* 275 */ MCD::OPC_Decode, 147, 5, 5, // Opcode: BRAsmNO |
138 | /* 279 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 288 |
139 | /* 284 */ MCD::OPC_Decode, 130, 5, 5, // Opcode: BR |
140 | /* 288 */ MCD::OPC_Decode, 228, 4, 6, // Opcode: BCRAsm |
141 | /* 292 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 301 |
142 | /* 297 */ MCD::OPC_Decode, 150, 18, 7, // Opcode: SVC |
143 | /* 301 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 310 |
144 | /* 306 */ MCD::OPC_Decode, 166, 5, 2, // Opcode: BSM |
145 | /* 310 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 319 |
146 | /* 315 */ MCD::OPC_Decode, 204, 4, 2, // Opcode: BASSM |
147 | /* 319 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 328 |
148 | /* 324 */ MCD::OPC_Decode, 203, 4, 2, // Opcode: BASR |
149 | /* 328 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 337 |
150 | /* 333 */ MCD::OPC_Decode, 235, 14, 8, // Opcode: MVCL |
151 | /* 337 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 346 |
152 | /* 342 */ MCD::OPC_Decode, 131, 7, 8, // Opcode: CLCL |
153 | /* 346 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 355 |
154 | /* 351 */ MCD::OPC_Decode, 238, 13, 9, // Opcode: LPR |
155 | /* 355 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 364 |
156 | /* 360 */ MCD::OPC_Decode, 152, 12, 9, // Opcode: LNR |
157 | /* 364 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 373 |
158 | /* 369 */ MCD::OPC_Decode, 140, 14, 9, // Opcode: LTR |
159 | /* 373 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 382 |
160 | /* 378 */ MCD::OPC_Decode, 183, 11, 9, // Opcode: LCR |
161 | /* 382 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 391 |
162 | /* 387 */ MCD::OPC_Decode, 165, 15, 10, // Opcode: NR |
163 | /* 391 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 400 |
164 | /* 396 */ MCD::OPC_Decode, 178, 8, 9, // Opcode: CLR |
165 | /* 400 */ MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 409 |
166 | /* 405 */ MCD::OPC_Decode, 186, 15, 10, // Opcode: OR |
167 | /* 409 */ MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 418 |
168 | /* 414 */ MCD::OPC_Decode, 187, 24, 10, // Opcode: XR |
169 | /* 418 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 427 |
170 | /* 423 */ MCD::OPC_Decode, 245, 13, 9, // Opcode: LR |
171 | /* 427 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 436 |
172 | /* 432 */ MCD::OPC_Decode, 247, 8, 9, // Opcode: CR |
173 | /* 436 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 445 |
174 | /* 441 */ MCD::OPC_Decode, 186, 4, 10, // Opcode: AR |
175 | /* 445 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 454 |
176 | /* 450 */ MCD::OPC_Decode, 132, 17, 10, // Opcode: SR |
177 | /* 454 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 463 |
178 | /* 459 */ MCD::OPC_Decode, 207, 14, 11, // Opcode: MR |
179 | /* 463 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 472 |
180 | /* 468 */ MCD::OPC_Decode, 240, 9, 11, // Opcode: DR |
181 | /* 472 */ MCD::OPC_FilterValue, 30, 4, 0, 0, // Skip to: 481 |
182 | /* 477 */ MCD::OPC_Decode, 179, 4, 10, // Opcode: ALR |
183 | /* 481 */ MCD::OPC_FilterValue, 31, 4, 0, 0, // Skip to: 490 |
184 | /* 486 */ MCD::OPC_Decode, 239, 16, 10, // Opcode: SLR |
185 | /* 490 */ MCD::OPC_FilterValue, 32, 4, 0, 0, // Skip to: 499 |
186 | /* 495 */ MCD::OPC_Decode, 231, 13, 12, // Opcode: LPDR |
187 | /* 499 */ MCD::OPC_FilterValue, 33, 4, 0, 0, // Skip to: 508 |
188 | /* 504 */ MCD::OPC_Decode, 147, 12, 12, // Opcode: LNDR |
189 | /* 508 */ MCD::OPC_FilterValue, 34, 4, 0, 0, // Skip to: 517 |
190 | /* 513 */ MCD::OPC_Decode, 132, 14, 12, // Opcode: LTDR |
191 | /* 517 */ MCD::OPC_FilterValue, 35, 4, 0, 0, // Skip to: 526 |
192 | /* 522 */ MCD::OPC_Decode, 178, 11, 12, // Opcode: LCDR |
193 | /* 526 */ MCD::OPC_FilterValue, 36, 4, 0, 0, // Skip to: 535 |
194 | /* 531 */ MCD::OPC_Decode, 158, 10, 12, // Opcode: HDR |
195 | /* 535 */ MCD::OPC_FilterValue, 37, 4, 0, 0, // Skip to: 544 |
196 | /* 540 */ MCD::OPC_Decode, 200, 11, 13, // Opcode: LDXR |
197 | /* 544 */ MCD::OPC_FilterValue, 38, 4, 0, 0, // Skip to: 553 |
198 | /* 549 */ MCD::OPC_Decode, 130, 15, 14, // Opcode: MXR |
199 | /* 553 */ MCD::OPC_FilterValue, 39, 4, 0, 0, // Skip to: 562 |
200 | /* 558 */ MCD::OPC_Decode, 129, 15, 15, // Opcode: MXDR |
201 | /* 562 */ MCD::OPC_FilterValue, 40, 4, 0, 0, // Skip to: 571 |
202 | /* 567 */ MCD::OPC_Decode, 196, 11, 12, // Opcode: LDR |
203 | /* 571 */ MCD::OPC_FilterValue, 41, 4, 0, 0, // Skip to: 580 |
204 | /* 576 */ MCD::OPC_Decode, 189, 5, 12, // Opcode: CDR |
205 | /* 580 */ MCD::OPC_FilterValue, 42, 4, 0, 0, // Skip to: 589 |
206 | /* 585 */ MCD::OPC_Decode, 137, 4, 16, // Opcode: ADR |
207 | /* 589 */ MCD::OPC_FilterValue, 43, 4, 0, 0, // Skip to: 598 |
208 | /* 594 */ MCD::OPC_Decode, 128, 16, 16, // Opcode: SDR |
209 | /* 598 */ MCD::OPC_FilterValue, 44, 4, 0, 0, // Skip to: 607 |
210 | /* 603 */ MCD::OPC_Decode, 185, 14, 16, // Opcode: MDR |
211 | /* 607 */ MCD::OPC_FilterValue, 45, 4, 0, 0, // Skip to: 616 |
212 | /* 612 */ MCD::OPC_Decode, 224, 9, 16, // Opcode: DDR |
213 | /* 616 */ MCD::OPC_FilterValue, 46, 4, 0, 0, // Skip to: 625 |
214 | /* 621 */ MCD::OPC_Decode, 192, 4, 16, // Opcode: AWR |
215 | /* 625 */ MCD::OPC_FilterValue, 47, 4, 0, 0, // Skip to: 634 |
216 | /* 630 */ MCD::OPC_Decode, 152, 18, 16, // Opcode: SWR |
217 | /* 634 */ MCD::OPC_FilterValue, 48, 4, 0, 0, // Skip to: 643 |
218 | /* 639 */ MCD::OPC_Decode, 233, 13, 17, // Opcode: LPER |
219 | /* 643 */ MCD::OPC_FilterValue, 49, 4, 0, 0, // Skip to: 652 |
220 | /* 648 */ MCD::OPC_Decode, 149, 12, 17, // Opcode: LNER |
221 | /* 652 */ MCD::OPC_FilterValue, 50, 4, 0, 0, // Skip to: 661 |
222 | /* 657 */ MCD::OPC_Decode, 135, 14, 17, // Opcode: LTER |
223 | /* 661 */ MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 670 |
224 | /* 666 */ MCD::OPC_Decode, 180, 11, 17, // Opcode: LCER |
225 | /* 670 */ MCD::OPC_FilterValue, 52, 4, 0, 0, // Skip to: 679 |
226 | /* 675 */ MCD::OPC_Decode, 159, 10, 17, // Opcode: HER |
227 | /* 679 */ MCD::OPC_FilterValue, 53, 4, 0, 0, // Skip to: 688 |
228 | /* 684 */ MCD::OPC_Decode, 206, 11, 18, // Opcode: LEDR |
229 | /* 688 */ MCD::OPC_FilterValue, 54, 4, 0, 0, // Skip to: 697 |
230 | /* 693 */ MCD::OPC_Decode, 194, 4, 14, // Opcode: AXR |
231 | /* 697 */ MCD::OPC_FilterValue, 55, 4, 0, 0, // Skip to: 706 |
232 | /* 702 */ MCD::OPC_Decode, 154, 18, 14, // Opcode: SXR |
233 | /* 706 */ MCD::OPC_FilterValue, 56, 4, 0, 0, // Skip to: 715 |
234 | /* 711 */ MCD::OPC_Decode, 208, 11, 17, // Opcode: LER |
235 | /* 715 */ MCD::OPC_FilterValue, 57, 4, 0, 0, // Skip to: 724 |
236 | /* 720 */ MCD::OPC_Decode, 209, 5, 17, // Opcode: CER |
237 | /* 724 */ MCD::OPC_FilterValue, 58, 4, 0, 0, // Skip to: 733 |
238 | /* 729 */ MCD::OPC_Decode, 143, 4, 19, // Opcode: AER |
239 | /* 733 */ MCD::OPC_FilterValue, 59, 4, 0, 0, // Skip to: 742 |
240 | /* 738 */ MCD::OPC_Decode, 200, 16, 19, // Opcode: SER |
241 | /* 742 */ MCD::OPC_FilterValue, 60, 4, 0, 0, // Skip to: 751 |
242 | /* 747 */ MCD::OPC_Decode, 184, 14, 20, // Opcode: MDER |
243 | /* 751 */ MCD::OPC_FilterValue, 61, 4, 0, 0, // Skip to: 760 |
244 | /* 756 */ MCD::OPC_Decode, 230, 9, 19, // Opcode: DER |
245 | /* 760 */ MCD::OPC_FilterValue, 62, 4, 0, 0, // Skip to: 769 |
246 | /* 765 */ MCD::OPC_Decode, 190, 4, 19, // Opcode: AUR |
247 | /* 769 */ MCD::OPC_FilterValue, 63, 4, 0, 0, // Skip to: 778 |
248 | /* 774 */ MCD::OPC_Decode, 149, 18, 19, // Opcode: SUR |
249 | /* 778 */ MCD::OPC_Fail, |
250 | 0 |
251 | }; |
252 | |
253 | static const uint8_t DecoderTable32[] = { |
254 | /* 0 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
255 | /* 3 */ MCD::OPC_FilterValue, 64, 4, 0, 0, // Skip to: 12 |
256 | /* 8 */ MCD::OPC_Decode, 186, 17, 21, // Opcode: STH |
257 | /* 12 */ MCD::OPC_FilterValue, 65, 4, 0, 0, // Skip to: 21 |
258 | /* 17 */ MCD::OPC_Decode, 150, 11, 22, // Opcode: LA |
259 | /* 21 */ MCD::OPC_FilterValue, 66, 4, 0, 0, // Skip to: 30 |
260 | /* 26 */ MCD::OPC_Decode, 161, 17, 21, // Opcode: STC |
261 | /* 30 */ MCD::OPC_FilterValue, 67, 4, 0, 0, // Skip to: 39 |
262 | /* 35 */ MCD::OPC_Decode, 162, 10, 23, // Opcode: IC |
263 | /* 39 */ MCD::OPC_FilterValue, 68, 4, 0, 0, // Skip to: 48 |
264 | /* 44 */ MCD::OPC_Decode, 144, 10, 24, // Opcode: EX |
265 | /* 48 */ MCD::OPC_FilterValue, 69, 4, 0, 0, // Skip to: 57 |
266 | /* 53 */ MCD::OPC_Decode, 200, 4, 22, // Opcode: BAL |
267 | /* 57 */ MCD::OPC_FilterValue, 70, 4, 0, 0, // Skip to: 66 |
268 | /* 62 */ MCD::OPC_Decode, 229, 4, 25, // Opcode: BCT |
269 | /* 66 */ MCD::OPC_FilterValue, 71, 151, 0, 0, // Skip to: 222 |
270 | /* 71 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
271 | /* 74 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 83 |
272 | /* 79 */ MCD::OPC_Decode, 159, 15, 26, // Opcode: NOP |
273 | /* 83 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 92 |
274 | /* 88 */ MCD::OPC_Decode, 222, 4, 26, // Opcode: BAsmO |
275 | /* 92 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 101 |
276 | /* 97 */ MCD::OPC_Decode, 206, 4, 26, // Opcode: BAsmH |
277 | /* 101 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 110 |
278 | /* 106 */ MCD::OPC_Decode, 216, 4, 26, // Opcode: BAsmNLE |
279 | /* 110 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 119 |
280 | /* 115 */ MCD::OPC_Decode, 208, 4, 26, // Opcode: BAsmL |
281 | /* 119 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 128 |
282 | /* 124 */ MCD::OPC_Decode, 214, 4, 26, // Opcode: BAsmNHE |
283 | /* 128 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 137 |
284 | /* 133 */ MCD::OPC_Decode, 210, 4, 26, // Opcode: BAsmLH |
285 | /* 137 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 146 |
286 | /* 142 */ MCD::OPC_Decode, 212, 4, 26, // Opcode: BAsmNE |
287 | /* 146 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 155 |
288 | /* 151 */ MCD::OPC_Decode, 205, 4, 26, // Opcode: BAsmE |
289 | /* 155 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 164 |
290 | /* 160 */ MCD::OPC_Decode, 217, 4, 26, // Opcode: BAsmNLH |
291 | /* 164 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 173 |
292 | /* 169 */ MCD::OPC_Decode, 207, 4, 26, // Opcode: BAsmHE |
293 | /* 173 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 182 |
294 | /* 178 */ MCD::OPC_Decode, 215, 4, 26, // Opcode: BAsmNL |
295 | /* 182 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 191 |
296 | /* 187 */ MCD::OPC_Decode, 209, 4, 26, // Opcode: BAsmLE |
297 | /* 191 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 200 |
298 | /* 196 */ MCD::OPC_Decode, 213, 4, 26, // Opcode: BAsmNH |
299 | /* 200 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 209 |
300 | /* 205 */ MCD::OPC_Decode, 219, 4, 26, // Opcode: BAsmNO |
301 | /* 209 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 218 |
302 | /* 214 */ MCD::OPC_Decode, 198, 4, 26, // Opcode: B |
303 | /* 218 */ MCD::OPC_Decode, 226, 4, 27, // Opcode: BCAsm |
304 | /* 222 */ MCD::OPC_FilterValue, 72, 4, 0, 0, // Skip to: 231 |
305 | /* 227 */ MCD::OPC_Decode, 234, 11, 21, // Opcode: LH |
306 | /* 231 */ MCD::OPC_FilterValue, 73, 4, 0, 0, // Skip to: 240 |
307 | /* 236 */ MCD::OPC_Decode, 204, 6, 21, // Opcode: CH |
308 | /* 240 */ MCD::OPC_FilterValue, 74, 4, 0, 0, // Skip to: 249 |
309 | /* 245 */ MCD::OPC_Decode, 155, 4, 25, // Opcode: AH |
310 | /* 249 */ MCD::OPC_FilterValue, 75, 4, 0, 0, // Skip to: 258 |
311 | /* 254 */ MCD::OPC_Decode, 209, 16, 25, // Opcode: SH |
312 | /* 258 */ MCD::OPC_FilterValue, 76, 4, 0, 0, // Skip to: 267 |
313 | /* 263 */ MCD::OPC_Decode, 199, 14, 25, // Opcode: MH |
314 | /* 267 */ MCD::OPC_FilterValue, 77, 4, 0, 0, // Skip to: 276 |
315 | /* 272 */ MCD::OPC_Decode, 202, 4, 22, // Opcode: BAS |
316 | /* 276 */ MCD::OPC_FilterValue, 78, 4, 0, 0, // Skip to: 285 |
317 | /* 281 */ MCD::OPC_Decode, 194, 9, 21, // Opcode: CVD |
318 | /* 285 */ MCD::OPC_FilterValue, 79, 4, 0, 0, // Skip to: 294 |
319 | /* 290 */ MCD::OPC_Decode, 191, 9, 25, // Opcode: CVB |
320 | /* 294 */ MCD::OPC_FilterValue, 80, 4, 0, 0, // Skip to: 303 |
321 | /* 299 */ MCD::OPC_Decode, 156, 17, 21, // Opcode: ST |
322 | /* 303 */ MCD::OPC_FilterValue, 81, 4, 0, 0, // Skip to: 312 |
323 | /* 308 */ MCD::OPC_Decode, 155, 11, 22, // Opcode: LAE |
324 | /* 312 */ MCD::OPC_FilterValue, 84, 4, 0, 0, // Skip to: 321 |
325 | /* 317 */ MCD::OPC_Decode, 139, 15, 25, // Opcode: N |
326 | /* 321 */ MCD::OPC_FilterValue, 85, 4, 0, 0, // Skip to: 330 |
327 | /* 326 */ MCD::OPC_Decode, 129, 7, 21, // Opcode: CL |
328 | /* 330 */ MCD::OPC_FilterValue, 86, 4, 0, 0, // Skip to: 339 |
329 | /* 335 */ MCD::OPC_Decode, 171, 15, 25, // Opcode: O |
330 | /* 339 */ MCD::OPC_FilterValue, 87, 4, 0, 0, // Skip to: 348 |
331 | /* 344 */ MCD::OPC_Decode, 178, 24, 25, // Opcode: X |
332 | /* 348 */ MCD::OPC_FilterValue, 88, 4, 0, 0, // Skip to: 357 |
333 | /* 353 */ MCD::OPC_Decode, 149, 11, 21, // Opcode: L |
334 | /* 357 */ MCD::OPC_FilterValue, 89, 4, 0, 0, // Skip to: 366 |
335 | /* 362 */ MCD::OPC_Decode, 171, 5, 21, // Opcode: C |
336 | /* 366 */ MCD::OPC_FilterValue, 90, 4, 0, 0, // Skip to: 375 |
337 | /* 371 */ MCD::OPC_Decode, 133, 4, 25, // Opcode: A |
338 | /* 375 */ MCD::OPC_FilterValue, 91, 4, 0, 0, // Skip to: 384 |
339 | /* 380 */ MCD::OPC_Decode, 240, 15, 25, // Opcode: S |
340 | /* 384 */ MCD::OPC_FilterValue, 92, 4, 0, 0, // Skip to: 393 |
341 | /* 389 */ MCD::OPC_Decode, 162, 14, 28, // Opcode: M |
342 | /* 393 */ MCD::OPC_FilterValue, 93, 4, 0, 0, // Skip to: 402 |
343 | /* 398 */ MCD::OPC_Decode, 220, 9, 28, // Opcode: D |
344 | /* 402 */ MCD::OPC_FilterValue, 94, 4, 0, 0, // Skip to: 411 |
345 | /* 407 */ MCD::OPC_Decode, 162, 4, 25, // Opcode: AL |
346 | /* 411 */ MCD::OPC_FilterValue, 95, 4, 0, 0, // Skip to: 420 |
347 | /* 416 */ MCD::OPC_Decode, 216, 16, 25, // Opcode: SL |
348 | /* 420 */ MCD::OPC_FilterValue, 96, 4, 0, 0, // Skip to: 429 |
349 | /* 425 */ MCD::OPC_Decode, 175, 17, 29, // Opcode: STD |
350 | /* 429 */ MCD::OPC_FilterValue, 103, 4, 0, 0, // Skip to: 438 |
351 | /* 434 */ MCD::OPC_Decode, 254, 14, 30, // Opcode: MXD |
352 | /* 438 */ MCD::OPC_FilterValue, 104, 4, 0, 0, // Skip to: 447 |
353 | /* 443 */ MCD::OPC_Decode, 188, 11, 29, // Opcode: LD |
354 | /* 447 */ MCD::OPC_FilterValue, 105, 4, 0, 0, // Skip to: 456 |
355 | /* 452 */ MCD::OPC_Decode, 172, 5, 29, // Opcode: CD |
356 | /* 456 */ MCD::OPC_FilterValue, 106, 4, 0, 0, // Skip to: 465 |
357 | /* 461 */ MCD::OPC_Decode, 134, 4, 31, // Opcode: AD |
358 | /* 465 */ MCD::OPC_FilterValue, 107, 4, 0, 0, // Skip to: 474 |
359 | /* 470 */ MCD::OPC_Decode, 253, 15, 31, // Opcode: SD |
360 | /* 474 */ MCD::OPC_FilterValue, 108, 4, 0, 0, // Skip to: 483 |
361 | /* 479 */ MCD::OPC_Decode, 178, 14, 31, // Opcode: MD |
362 | /* 483 */ MCD::OPC_FilterValue, 109, 4, 0, 0, // Skip to: 492 |
363 | /* 488 */ MCD::OPC_Decode, 221, 9, 31, // Opcode: DD |
364 | /* 492 */ MCD::OPC_FilterValue, 110, 4, 0, 0, // Skip to: 501 |
365 | /* 497 */ MCD::OPC_Decode, 191, 4, 31, // Opcode: AW |
366 | /* 501 */ MCD::OPC_FilterValue, 111, 4, 0, 0, // Skip to: 510 |
367 | /* 506 */ MCD::OPC_Decode, 151, 18, 31, // Opcode: SW |
368 | /* 510 */ MCD::OPC_FilterValue, 112, 4, 0, 0, // Skip to: 519 |
369 | /* 515 */ MCD::OPC_Decode, 177, 17, 32, // Opcode: STE |
370 | /* 519 */ MCD::OPC_FilterValue, 113, 4, 0, 0, // Skip to: 528 |
371 | /* 524 */ MCD::OPC_Decode, 208, 14, 25, // Opcode: MS |
372 | /* 528 */ MCD::OPC_FilterValue, 120, 4, 0, 0, // Skip to: 537 |
373 | /* 533 */ MCD::OPC_Decode, 203, 11, 32, // Opcode: LE |
374 | /* 537 */ MCD::OPC_FilterValue, 121, 4, 0, 0, // Skip to: 546 |
375 | /* 542 */ MCD::OPC_Decode, 197, 5, 32, // Opcode: CE |
376 | /* 546 */ MCD::OPC_FilterValue, 122, 4, 0, 0, // Skip to: 555 |
377 | /* 551 */ MCD::OPC_Decode, 140, 4, 33, // Opcode: AE |
378 | /* 555 */ MCD::OPC_FilterValue, 123, 4, 0, 0, // Skip to: 564 |
379 | /* 560 */ MCD::OPC_Decode, 131, 16, 33, // Opcode: SE |
380 | /* 564 */ MCD::OPC_FilterValue, 124, 4, 0, 0, // Skip to: 573 |
381 | /* 569 */ MCD::OPC_Decode, 181, 14, 31, // Opcode: MDE |
382 | /* 573 */ MCD::OPC_FilterValue, 125, 4, 0, 0, // Skip to: 582 |
383 | /* 578 */ MCD::OPC_Decode, 227, 9, 33, // Opcode: DE |
384 | /* 582 */ MCD::OPC_FilterValue, 126, 4, 0, 0, // Skip to: 591 |
385 | /* 587 */ MCD::OPC_Decode, 189, 4, 33, // Opcode: AU |
386 | /* 591 */ MCD::OPC_FilterValue, 127, 4, 0, 0, // Skip to: 600 |
387 | /* 596 */ MCD::OPC_Decode, 148, 18, 33, // Opcode: SU |
388 | /* 600 */ MCD::OPC_FilterValue, 128, 1, 11, 0, 0, // Skip to: 617 |
389 | /* 606 */ MCD::OPC_CheckField, 16, 8, 0, 229, 39, 0, // Skip to: 10826 |
390 | /* 613 */ MCD::OPC_Decode, 155, 17, 34, // Opcode: SSM |
391 | /* 617 */ MCD::OPC_FilterValue, 130, 1, 11, 0, 0, // Skip to: 634 |
392 | /* 623 */ MCD::OPC_CheckField, 16, 8, 0, 212, 39, 0, // Skip to: 10826 |
393 | /* 630 */ MCD::OPC_Decode, 239, 13, 34, // Opcode: LPSW |
394 | /* 634 */ MCD::OPC_FilterValue, 131, 1, 4, 0, 0, // Skip to: 644 |
395 | /* 640 */ MCD::OPC_Decode, 232, 9, 35, // Opcode: DIAG |
396 | /* 644 */ MCD::OPC_FilterValue, 132, 1, 4, 0, 0, // Skip to: 654 |
397 | /* 650 */ MCD::OPC_Decode, 160, 5, 36, // Opcode: BRXH |
398 | /* 654 */ MCD::OPC_FilterValue, 133, 1, 4, 0, 0, // Skip to: 664 |
399 | /* 660 */ MCD::OPC_Decode, 162, 5, 36, // Opcode: BRXLE |
400 | /* 664 */ MCD::OPC_FilterValue, 134, 1, 4, 0, 0, // Skip to: 674 |
401 | /* 670 */ MCD::OPC_Decode, 167, 5, 37, // Opcode: BXH |
402 | /* 674 */ MCD::OPC_FilterValue, 135, 1, 4, 0, 0, // Skip to: 684 |
403 | /* 680 */ MCD::OPC_Decode, 169, 5, 37, // Opcode: BXLE |
404 | /* 684 */ MCD::OPC_FilterValue, 136, 1, 11, 0, 0, // Skip to: 701 |
405 | /* 690 */ MCD::OPC_CheckField, 16, 4, 0, 145, 39, 0, // Skip to: 10826 |
406 | /* 697 */ MCD::OPC_Decode, 140, 17, 38, // Opcode: SRL |
407 | /* 701 */ MCD::OPC_FilterValue, 137, 1, 11, 0, 0, // Skip to: 718 |
408 | /* 707 */ MCD::OPC_CheckField, 16, 4, 0, 128, 39, 0, // Skip to: 10826 |
409 | /* 714 */ MCD::OPC_Decode, 236, 16, 38, // Opcode: SLL |
410 | /* 718 */ MCD::OPC_FilterValue, 138, 1, 11, 0, 0, // Skip to: 735 |
411 | /* 724 */ MCD::OPC_CheckField, 16, 4, 0, 111, 39, 0, // Skip to: 10826 |
412 | /* 731 */ MCD::OPC_Decode, 133, 17, 38, // Opcode: SRA |
413 | /* 735 */ MCD::OPC_FilterValue, 139, 1, 11, 0, 0, // Skip to: 752 |
414 | /* 741 */ MCD::OPC_CheckField, 16, 4, 0, 94, 39, 0, // Skip to: 10826 |
415 | /* 748 */ MCD::OPC_Decode, 217, 16, 38, // Opcode: SLA |
416 | /* 752 */ MCD::OPC_FilterValue, 140, 1, 11, 0, 0, // Skip to: 769 |
417 | /* 758 */ MCD::OPC_CheckField, 16, 4, 0, 77, 39, 0, // Skip to: 10826 |
418 | /* 765 */ MCD::OPC_Decode, 137, 17, 39, // Opcode: SRDL |
419 | /* 769 */ MCD::OPC_FilterValue, 141, 1, 11, 0, 0, // Skip to: 786 |
420 | /* 775 */ MCD::OPC_CheckField, 16, 4, 0, 60, 39, 0, // Skip to: 10826 |
421 | /* 782 */ MCD::OPC_Decode, 225, 16, 39, // Opcode: SLDL |
422 | /* 786 */ MCD::OPC_FilterValue, 142, 1, 11, 0, 0, // Skip to: 803 |
423 | /* 792 */ MCD::OPC_CheckField, 16, 4, 0, 43, 39, 0, // Skip to: 10826 |
424 | /* 799 */ MCD::OPC_Decode, 136, 17, 39, // Opcode: SRDA |
425 | /* 803 */ MCD::OPC_FilterValue, 143, 1, 11, 0, 0, // Skip to: 820 |
426 | /* 809 */ MCD::OPC_CheckField, 16, 4, 0, 26, 39, 0, // Skip to: 10826 |
427 | /* 816 */ MCD::OPC_Decode, 224, 16, 39, // Opcode: SLDA |
428 | /* 820 */ MCD::OPC_FilterValue, 144, 1, 4, 0, 0, // Skip to: 830 |
429 | /* 826 */ MCD::OPC_Decode, 191, 17, 35, // Opcode: STM |
430 | /* 830 */ MCD::OPC_FilterValue, 145, 1, 4, 0, 0, // Skip to: 840 |
431 | /* 836 */ MCD::OPC_Decode, 178, 18, 40, // Opcode: TM |
432 | /* 840 */ MCD::OPC_FilterValue, 146, 1, 4, 0, 0, // Skip to: 850 |
433 | /* 846 */ MCD::OPC_Decode, 246, 14, 40, // Opcode: MVI |
434 | /* 850 */ MCD::OPC_FilterValue, 147, 1, 11, 0, 0, // Skip to: 867 |
435 | /* 856 */ MCD::OPC_CheckField, 16, 8, 0, 235, 38, 0, // Skip to: 10826 |
436 | /* 863 */ MCD::OPC_Decode, 208, 18, 34, // Opcode: TS |
437 | /* 867 */ MCD::OPC_FilterValue, 148, 1, 4, 0, 0, // Skip to: 877 |
438 | /* 873 */ MCD::OPC_Decode, 146, 15, 40, // Opcode: NI |
439 | /* 877 */ MCD::OPC_FilterValue, 149, 1, 4, 0, 0, // Skip to: 887 |
440 | /* 883 */ MCD::OPC_Decode, 144, 8, 40, // Opcode: CLI |
441 | /* 887 */ MCD::OPC_FilterValue, 150, 1, 4, 0, 0, // Skip to: 897 |
442 | /* 893 */ MCD::OPC_Decode, 178, 15, 40, // Opcode: OI |
443 | /* 897 */ MCD::OPC_FilterValue, 151, 1, 4, 0, 0, // Skip to: 907 |
444 | /* 903 */ MCD::OPC_Decode, 183, 24, 40, // Opcode: XI |
445 | /* 907 */ MCD::OPC_FilterValue, 152, 1, 4, 0, 0, // Skip to: 917 |
446 | /* 913 */ MCD::OPC_Decode, 139, 12, 35, // Opcode: LM |
447 | /* 917 */ MCD::OPC_FilterValue, 153, 1, 4, 0, 0, // Skip to: 927 |
448 | /* 923 */ MCD::OPC_Decode, 189, 18, 35, // Opcode: TRACE |
449 | /* 927 */ MCD::OPC_FilterValue, 154, 1, 4, 0, 0, // Skip to: 937 |
450 | /* 933 */ MCD::OPC_Decode, 157, 11, 41, // Opcode: LAM |
451 | /* 937 */ MCD::OPC_FilterValue, 155, 1, 4, 0, 0, // Skip to: 947 |
452 | /* 943 */ MCD::OPC_Decode, 157, 17, 41, // Opcode: STAM |
453 | /* 947 */ MCD::OPC_FilterValue, 165, 1, 147, 0, 0, // Skip to: 1100 |
454 | /* 953 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
455 | /* 956 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 965 |
456 | /* 961 */ MCD::OPC_Decode, 174, 10, 42, // Opcode: IIHH |
457 | /* 965 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 974 |
458 | /* 970 */ MCD::OPC_Decode, 175, 10, 42, // Opcode: IIHL |
459 | /* 974 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 983 |
460 | /* 979 */ MCD::OPC_Decode, 177, 10, 43, // Opcode: IILH |
461 | /* 983 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 992 |
462 | /* 988 */ MCD::OPC_Decode, 178, 10, 43, // Opcode: IILL |
463 | /* 992 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1001 |
464 | /* 997 */ MCD::OPC_Decode, 149, 15, 42, // Opcode: NIHH |
465 | /* 1001 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1010 |
466 | /* 1006 */ MCD::OPC_Decode, 150, 15, 42, // Opcode: NIHL |
467 | /* 1010 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1019 |
468 | /* 1015 */ MCD::OPC_Decode, 152, 15, 43, // Opcode: NILH |
469 | /* 1019 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1028 |
470 | /* 1024 */ MCD::OPC_Decode, 153, 15, 43, // Opcode: NILL |
471 | /* 1028 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1037 |
472 | /* 1033 */ MCD::OPC_Decode, 180, 15, 42, // Opcode: OIHH |
473 | /* 1037 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1046 |
474 | /* 1042 */ MCD::OPC_Decode, 181, 15, 42, // Opcode: OIHL |
475 | /* 1046 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1055 |
476 | /* 1051 */ MCD::OPC_Decode, 183, 15, 43, // Opcode: OILH |
477 | /* 1055 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1064 |
478 | /* 1060 */ MCD::OPC_Decode, 184, 15, 43, // Opcode: OILL |
479 | /* 1064 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1073 |
480 | /* 1069 */ MCD::OPC_Decode, 133, 12, 44, // Opcode: LLIHH |
481 | /* 1073 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1082 |
482 | /* 1078 */ MCD::OPC_Decode, 134, 12, 44, // Opcode: LLIHL |
483 | /* 1082 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1091 |
484 | /* 1087 */ MCD::OPC_Decode, 136, 12, 44, // Opcode: LLILH |
485 | /* 1091 */ MCD::OPC_FilterValue, 15, 2, 38, 0, // Skip to: 10826 |
486 | /* 1096 */ MCD::OPC_Decode, 137, 12, 44, // Opcode: LLILL |
487 | /* 1100 */ MCD::OPC_FilterValue, 167, 1, 29, 1, 0, // Skip to: 1391 |
488 | /* 1106 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
489 | /* 1109 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1118 |
490 | /* 1114 */ MCD::OPC_Decode, 181, 18, 45, // Opcode: TMLH |
491 | /* 1118 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1127 |
492 | /* 1123 */ MCD::OPC_Decode, 182, 18, 45, // Opcode: TMLL |
493 | /* 1127 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1136 |
494 | /* 1132 */ MCD::OPC_Decode, 179, 18, 46, // Opcode: TMHH |
495 | /* 1136 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1145 |
496 | /* 1141 */ MCD::OPC_Decode, 180, 18, 46, // Opcode: TMHL |
497 | /* 1145 */ MCD::OPC_FilterValue, 4, 142, 0, 0, // Skip to: 1292 |
498 | /* 1150 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
499 | /* 1153 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1162 |
500 | /* 1158 */ MCD::OPC_Decode, 236, 10, 47, // Opcode: JAsmO |
501 | /* 1162 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1171 |
502 | /* 1167 */ MCD::OPC_Decode, 220, 10, 47, // Opcode: JAsmH |
503 | /* 1171 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1180 |
504 | /* 1176 */ MCD::OPC_Decode, 230, 10, 47, // Opcode: JAsmNLE |
505 | /* 1180 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1189 |
506 | /* 1185 */ MCD::OPC_Decode, 222, 10, 47, // Opcode: JAsmL |
507 | /* 1189 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1198 |
508 | /* 1194 */ MCD::OPC_Decode, 228, 10, 47, // Opcode: JAsmNHE |
509 | /* 1198 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1207 |
510 | /* 1203 */ MCD::OPC_Decode, 224, 10, 47, // Opcode: JAsmLH |
511 | /* 1207 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1216 |
512 | /* 1212 */ MCD::OPC_Decode, 226, 10, 47, // Opcode: JAsmNE |
513 | /* 1216 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1225 |
514 | /* 1221 */ MCD::OPC_Decode, 219, 10, 47, // Opcode: JAsmE |
515 | /* 1225 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1234 |
516 | /* 1230 */ MCD::OPC_Decode, 231, 10, 47, // Opcode: JAsmNLH |
517 | /* 1234 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1243 |
518 | /* 1239 */ MCD::OPC_Decode, 221, 10, 47, // Opcode: JAsmHE |
519 | /* 1243 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1252 |
520 | /* 1248 */ MCD::OPC_Decode, 229, 10, 47, // Opcode: JAsmNL |
521 | /* 1252 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1261 |
522 | /* 1257 */ MCD::OPC_Decode, 223, 10, 47, // Opcode: JAsmLE |
523 | /* 1261 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1270 |
524 | /* 1266 */ MCD::OPC_Decode, 227, 10, 47, // Opcode: JAsmNH |
525 | /* 1270 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1279 |
526 | /* 1275 */ MCD::OPC_Decode, 233, 10, 47, // Opcode: JAsmNO |
527 | /* 1279 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1288 |
528 | /* 1284 */ MCD::OPC_Decode, 218, 10, 47, // Opcode: J |
529 | /* 1288 */ MCD::OPC_Decode, 154, 5, 48, // Opcode: BRCAsm |
530 | /* 1292 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1301 |
531 | /* 1297 */ MCD::OPC_Decode, 131, 5, 49, // Opcode: BRAS |
532 | /* 1301 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1310 |
533 | /* 1306 */ MCD::OPC_Decode, 157, 5, 50, // Opcode: BRCT |
534 | /* 1310 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1319 |
535 | /* 1315 */ MCD::OPC_Decode, 158, 5, 51, // Opcode: BRCTG |
536 | /* 1319 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1328 |
537 | /* 1324 */ MCD::OPC_Decode, 236, 11, 52, // Opcode: LHI |
538 | /* 1328 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1337 |
539 | /* 1333 */ MCD::OPC_Decode, 228, 11, 53, // Opcode: LGHI |
540 | /* 1337 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1346 |
541 | /* 1342 */ MCD::OPC_Decode, 158, 4, 54, // Opcode: AHI |
542 | /* 1346 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1355 |
543 | /* 1351 */ MCD::OPC_Decode, 150, 4, 55, // Opcode: AGHI |
544 | /* 1355 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1364 |
545 | /* 1360 */ MCD::OPC_Decode, 200, 14, 54, // Opcode: MHI |
546 | /* 1364 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1373 |
547 | /* 1369 */ MCD::OPC_Decode, 197, 14, 55, // Opcode: MGHI |
548 | /* 1373 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1382 |
549 | /* 1378 */ MCD::OPC_Decode, 208, 6, 52, // Opcode: CHI |
550 | /* 1382 */ MCD::OPC_FilterValue, 15, 223, 36, 0, // Skip to: 10826 |
551 | /* 1387 */ MCD::OPC_Decode, 238, 5, 53, // Opcode: CGHI |
552 | /* 1391 */ MCD::OPC_FilterValue, 168, 1, 4, 0, 0, // Skip to: 1401 |
553 | /* 1397 */ MCD::OPC_Decode, 236, 14, 56, // Opcode: MVCLE |
554 | /* 1401 */ MCD::OPC_FilterValue, 169, 1, 4, 0, 0, // Skip to: 1411 |
555 | /* 1407 */ MCD::OPC_Decode, 132, 7, 56, // Opcode: CLCLE |
556 | /* 1411 */ MCD::OPC_FilterValue, 172, 1, 4, 0, 0, // Skip to: 1421 |
557 | /* 1417 */ MCD::OPC_Decode, 195, 17, 40, // Opcode: STNSM |
558 | /* 1421 */ MCD::OPC_FilterValue, 173, 1, 4, 0, 0, // Skip to: 1431 |
559 | /* 1427 */ MCD::OPC_Decode, 134, 18, 40, // Opcode: STOSM |
560 | /* 1431 */ MCD::OPC_FilterValue, 174, 1, 4, 0, 0, // Skip to: 1441 |
561 | /* 1437 */ MCD::OPC_Decode, 215, 16, 57, // Opcode: SIGP |
562 | /* 1441 */ MCD::OPC_FilterValue, 175, 1, 4, 0, 0, // Skip to: 1451 |
563 | /* 1447 */ MCD::OPC_Decode, 177, 14, 40, // Opcode: MC |
564 | /* 1451 */ MCD::OPC_FilterValue, 177, 1, 4, 0, 0, // Skip to: 1461 |
565 | /* 1457 */ MCD::OPC_Decode, 246, 13, 22, // Opcode: LRA |
566 | /* 1461 */ MCD::OPC_FilterValue, 178, 1, 34, 6, 0, // Skip to: 3037 |
567 | /* 1467 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
568 | /* 1470 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1484 |
569 | /* 1475 */ MCD::OPC_CheckPredicate, 0, 130, 36, 0, // Skip to: 10826 |
570 | /* 1480 */ MCD::OPC_Decode, 170, 11, 34, // Opcode: LBEAR |
571 | /* 1484 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1498 |
572 | /* 1489 */ MCD::OPC_CheckPredicate, 0, 116, 36, 0, // Skip to: 10826 |
573 | /* 1494 */ MCD::OPC_Decode, 160, 17, 34, // Opcode: STBEAR |
574 | /* 1498 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1507 |
575 | /* 1503 */ MCD::OPC_Decode, 190, 17, 34, // Opcode: STIDP |
576 | /* 1507 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1516 |
577 | /* 1512 */ MCD::OPC_Decode, 250, 15, 34, // Opcode: SCK |
578 | /* 1516 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1525 |
579 | /* 1521 */ MCD::OPC_Decode, 163, 17, 34, // Opcode: STCK |
580 | /* 1525 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1534 |
581 | /* 1530 */ MCD::OPC_Decode, 251, 15, 34, // Opcode: SCKC |
582 | /* 1534 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1543 |
583 | /* 1539 */ MCD::OPC_Decode, 164, 17, 34, // Opcode: STCKC |
584 | /* 1543 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1552 |
585 | /* 1548 */ MCD::OPC_Decode, 248, 16, 34, // Opcode: SPT |
586 | /* 1552 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1561 |
587 | /* 1557 */ MCD::OPC_Decode, 136, 18, 34, // Opcode: STPT |
588 | /* 1561 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1570 |
589 | /* 1566 */ MCD::OPC_Decode, 246, 16, 34, // Opcode: SPKA |
590 | /* 1570 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 1586 |
591 | /* 1575 */ MCD::OPC_CheckField, 0, 16, 0, 28, 36, 0, // Skip to: 10826 |
592 | /* 1582 */ MCD::OPC_Decode, 179, 10, 0, // Opcode: IPK |
593 | /* 1586 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 1602 |
594 | /* 1591 */ MCD::OPC_CheckField, 0, 16, 0, 12, 36, 0, // Skip to: 10826 |
595 | /* 1598 */ MCD::OPC_Decode, 213, 15, 0, // Opcode: PTLB |
596 | /* 1602 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1611 |
597 | /* 1607 */ MCD::OPC_Decode, 249, 16, 34, // Opcode: SPX |
598 | /* 1611 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1620 |
599 | /* 1616 */ MCD::OPC_Decode, 137, 18, 34, // Opcode: STPX |
600 | /* 1620 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1629 |
601 | /* 1625 */ MCD::OPC_Decode, 159, 17, 34, // Opcode: STAP |
602 | /* 1629 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 1638 |
603 | /* 1634 */ MCD::OPC_Decode, 213, 16, 34, // Opcode: SIE |
604 | /* 1638 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 1647 |
605 | /* 1643 */ MCD::OPC_Decode, 191, 15, 34, // Opcode: PC |
606 | /* 1647 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 1656 |
607 | /* 1652 */ MCD::OPC_Decode, 241, 15, 34, // Opcode: SAC |
608 | /* 1656 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 1665 |
609 | /* 1661 */ MCD::OPC_Decode, 211, 5, 34, // Opcode: CFC |
610 | /* 1665 */ MCD::OPC_FilterValue, 33, 26, 0, 0, // Skip to: 1696 |
611 | /* 1670 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 1681 |
612 | /* 1677 */ MCD::OPC_Decode, 183, 10, 58, // Opcode: IPTEOptOpt |
613 | /* 1681 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 1692 |
614 | /* 1688 */ MCD::OPC_Decode, 182, 10, 59, // Opcode: IPTEOpt |
615 | /* 1692 */ MCD::OPC_Decode, 181, 10, 60, // Opcode: IPTE |
616 | /* 1696 */ MCD::OPC_FilterValue, 34, 18, 0, 0, // Skip to: 1719 |
617 | /* 1701 */ MCD::OPC_CheckField, 8, 8, 0, 158, 35, 0, // Skip to: 10826 |
618 | /* 1708 */ MCD::OPC_CheckField, 0, 4, 0, 151, 35, 0, // Skip to: 10826 |
619 | /* 1715 */ MCD::OPC_Decode, 180, 10, 1, // Opcode: IPM |
620 | /* 1719 */ MCD::OPC_FilterValue, 35, 11, 0, 0, // Skip to: 1735 |
621 | /* 1724 */ MCD::OPC_CheckField, 8, 8, 0, 135, 35, 0, // Skip to: 10826 |
622 | /* 1731 */ MCD::OPC_Decode, 186, 10, 3, // Opcode: IVSK |
623 | /* 1735 */ MCD::OPC_FilterValue, 36, 18, 0, 0, // Skip to: 1758 |
624 | /* 1740 */ MCD::OPC_CheckField, 8, 8, 0, 119, 35, 0, // Skip to: 10826 |
625 | /* 1747 */ MCD::OPC_CheckField, 0, 4, 0, 112, 35, 0, // Skip to: 10826 |
626 | /* 1754 */ MCD::OPC_Decode, 161, 10, 1, // Opcode: IAC |
627 | /* 1758 */ MCD::OPC_FilterValue, 37, 18, 0, 0, // Skip to: 1781 |
628 | /* 1763 */ MCD::OPC_CheckField, 8, 8, 0, 96, 35, 0, // Skip to: 10826 |
629 | /* 1770 */ MCD::OPC_CheckField, 0, 4, 0, 89, 35, 0, // Skip to: 10826 |
630 | /* 1777 */ MCD::OPC_Decode, 151, 17, 1, // Opcode: SSAR |
631 | /* 1781 */ MCD::OPC_FilterValue, 38, 18, 0, 0, // Skip to: 1804 |
632 | /* 1786 */ MCD::OPC_CheckField, 8, 8, 0, 73, 35, 0, // Skip to: 10826 |
633 | /* 1793 */ MCD::OPC_CheckField, 0, 4, 0, 66, 35, 0, // Skip to: 10826 |
634 | /* 1800 */ MCD::OPC_Decode, 132, 10, 1, // Opcode: EPAR |
635 | /* 1804 */ MCD::OPC_FilterValue, 39, 18, 0, 0, // Skip to: 1827 |
636 | /* 1809 */ MCD::OPC_CheckField, 8, 8, 0, 50, 35, 0, // Skip to: 10826 |
637 | /* 1816 */ MCD::OPC_CheckField, 0, 4, 0, 43, 35, 0, // Skip to: 10826 |
638 | /* 1823 */ MCD::OPC_Decode, 138, 10, 1, // Opcode: ESAR |
639 | /* 1827 */ MCD::OPC_FilterValue, 40, 11, 0, 0, // Skip to: 1843 |
640 | /* 1832 */ MCD::OPC_CheckField, 8, 8, 0, 27, 35, 0, // Skip to: 10826 |
641 | /* 1839 */ MCD::OPC_Decode, 209, 15, 61, // Opcode: PT |
642 | /* 1843 */ MCD::OPC_FilterValue, 41, 11, 0, 0, // Skip to: 1859 |
643 | /* 1848 */ MCD::OPC_CheckField, 8, 8, 0, 11, 35, 0, // Skip to: 10826 |
644 | /* 1855 */ MCD::OPC_Decode, 185, 10, 3, // Opcode: ISKE |
645 | /* 1859 */ MCD::OPC_FilterValue, 42, 11, 0, 0, // Skip to: 1875 |
646 | /* 1864 */ MCD::OPC_CheckField, 8, 8, 0, 251, 34, 0, // Skip to: 10826 |
647 | /* 1871 */ MCD::OPC_Decode, 234, 15, 61, // Opcode: RRBE |
648 | /* 1875 */ MCD::OPC_FilterValue, 43, 23, 0, 0, // Skip to: 1903 |
649 | /* 1880 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
650 | /* 1883 */ MCD::OPC_FilterValue, 0, 234, 34, 0, // Skip to: 10826 |
651 | /* 1888 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 1899 |
652 | /* 1895 */ MCD::OPC_Decode, 154, 17, 61, // Opcode: SSKEOpt |
653 | /* 1899 */ MCD::OPC_Decode, 153, 17, 62, // Opcode: SSKE |
654 | /* 1903 */ MCD::OPC_FilterValue, 44, 11, 0, 0, // Skip to: 1919 |
655 | /* 1908 */ MCD::OPC_CheckField, 8, 8, 0, 207, 34, 0, // Skip to: 10826 |
656 | /* 1915 */ MCD::OPC_Decode, 161, 18, 63, // Opcode: TB |
657 | /* 1919 */ MCD::OPC_FilterValue, 45, 11, 0, 0, // Skip to: 1935 |
658 | /* 1924 */ MCD::OPC_CheckField, 8, 8, 0, 191, 34, 0, // Skip to: 10826 |
659 | /* 1931 */ MCD::OPC_Decode, 246, 9, 14, // Opcode: DXR |
660 | /* 1935 */ MCD::OPC_FilterValue, 46, 11, 0, 0, // Skip to: 1951 |
661 | /* 1940 */ MCD::OPC_CheckField, 8, 8, 0, 175, 34, 0, // Skip to: 10826 |
662 | /* 1947 */ MCD::OPC_Decode, 198, 15, 63, // Opcode: PGIN |
663 | /* 1951 */ MCD::OPC_FilterValue, 47, 11, 0, 0, // Skip to: 1967 |
664 | /* 1956 */ MCD::OPC_CheckField, 8, 8, 0, 159, 34, 0, // Skip to: 10826 |
665 | /* 1963 */ MCD::OPC_Decode, 199, 15, 63, // Opcode: PGOUT |
666 | /* 1967 */ MCD::OPC_FilterValue, 48, 11, 0, 0, // Skip to: 1983 |
667 | /* 1972 */ MCD::OPC_CheckField, 0, 16, 0, 143, 34, 0, // Skip to: 10826 |
668 | /* 1979 */ MCD::OPC_Decode, 166, 9, 0, // Opcode: CSCH |
669 | /* 1983 */ MCD::OPC_FilterValue, 49, 11, 0, 0, // Skip to: 1999 |
670 | /* 1988 */ MCD::OPC_CheckField, 0, 16, 0, 127, 34, 0, // Skip to: 10826 |
671 | /* 1995 */ MCD::OPC_Decode, 160, 10, 0, // Opcode: HSCH |
672 | /* 1999 */ MCD::OPC_FilterValue, 50, 4, 0, 0, // Skip to: 2008 |
673 | /* 2004 */ MCD::OPC_Decode, 210, 14, 34, // Opcode: MSCH |
674 | /* 2008 */ MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 2017 |
675 | /* 2013 */ MCD::OPC_Decode, 152, 17, 34, // Opcode: SSCH |
676 | /* 2017 */ MCD::OPC_FilterValue, 52, 4, 0, 0, // Skip to: 2026 |
677 | /* 2022 */ MCD::OPC_Decode, 143, 18, 34, // Opcode: STSCH |
678 | /* 2026 */ MCD::OPC_FilterValue, 53, 4, 0, 0, // Skip to: 2035 |
679 | /* 2031 */ MCD::OPC_Decode, 209, 18, 34, // Opcode: TSCH |
680 | /* 2035 */ MCD::OPC_FilterValue, 54, 4, 0, 0, // Skip to: 2044 |
681 | /* 2040 */ MCD::OPC_Decode, 186, 18, 34, // Opcode: TPI |
682 | /* 2044 */ MCD::OPC_FilterValue, 55, 11, 0, 0, // Skip to: 2060 |
683 | /* 2049 */ MCD::OPC_CheckField, 0, 16, 0, 66, 34, 0, // Skip to: 10826 |
684 | /* 2056 */ MCD::OPC_Decode, 243, 15, 0, // Opcode: SAL |
685 | /* 2060 */ MCD::OPC_FilterValue, 56, 11, 0, 0, // Skip to: 2076 |
686 | /* 2065 */ MCD::OPC_CheckField, 0, 16, 0, 50, 34, 0, // Skip to: 10826 |
687 | /* 2072 */ MCD::OPC_Decode, 238, 15, 0, // Opcode: RSCH |
688 | /* 2076 */ MCD::OPC_FilterValue, 57, 4, 0, 0, // Skip to: 2085 |
689 | /* 2081 */ MCD::OPC_Decode, 171, 17, 34, // Opcode: STCRW |
690 | /* 2085 */ MCD::OPC_FilterValue, 58, 4, 0, 0, // Skip to: 2094 |
691 | /* 2090 */ MCD::OPC_Decode, 170, 17, 34, // Opcode: STCPS |
692 | /* 2094 */ MCD::OPC_FilterValue, 59, 11, 0, 0, // Skip to: 2110 |
693 | /* 2099 */ MCD::OPC_CheckField, 0, 16, 0, 16, 34, 0, // Skip to: 10826 |
694 | /* 2106 */ MCD::OPC_Decode, 219, 15, 0, // Opcode: RCHP |
695 | /* 2110 */ MCD::OPC_FilterValue, 60, 11, 0, 0, // Skip to: 2126 |
696 | /* 2115 */ MCD::OPC_CheckField, 0, 16, 0, 0, 34, 0, // Skip to: 10826 |
697 | /* 2122 */ MCD::OPC_Decode, 249, 15, 0, // Opcode: SCHM |
698 | /* 2126 */ MCD::OPC_FilterValue, 64, 11, 0, 0, // Skip to: 2142 |
699 | /* 2131 */ MCD::OPC_CheckField, 8, 8, 0, 240, 33, 0, // Skip to: 10826 |
700 | /* 2138 */ MCD::OPC_Decode, 199, 4, 63, // Opcode: BAKR |
701 | /* 2142 */ MCD::OPC_FilterValue, 65, 11, 0, 0, // Skip to: 2158 |
702 | /* 2147 */ MCD::OPC_CheckField, 8, 8, 0, 224, 33, 0, // Skip to: 10826 |
703 | /* 2154 */ MCD::OPC_Decode, 128, 7, 64, // Opcode: CKSM |
704 | /* 2158 */ MCD::OPC_FilterValue, 68, 11, 0, 0, // Skip to: 2174 |
705 | /* 2163 */ MCD::OPC_CheckField, 8, 8, 0, 208, 33, 0, // Skip to: 10826 |
706 | /* 2170 */ MCD::OPC_Decode, 253, 16, 12, // Opcode: SQDR |
707 | /* 2174 */ MCD::OPC_FilterValue, 69, 11, 0, 0, // Skip to: 2190 |
708 | /* 2179 */ MCD::OPC_CheckField, 8, 8, 0, 192, 33, 0, // Skip to: 10826 |
709 | /* 2186 */ MCD::OPC_Decode, 129, 17, 17, // Opcode: SQER |
710 | /* 2190 */ MCD::OPC_FilterValue, 70, 11, 0, 0, // Skip to: 2206 |
711 | /* 2195 */ MCD::OPC_CheckField, 8, 8, 0, 176, 33, 0, // Skip to: 10826 |
712 | /* 2202 */ MCD::OPC_Decode, 145, 18, 61, // Opcode: STURA |
713 | /* 2206 */ MCD::OPC_FilterValue, 71, 18, 0, 0, // Skip to: 2229 |
714 | /* 2211 */ MCD::OPC_CheckField, 8, 8, 0, 160, 33, 0, // Skip to: 10826 |
715 | /* 2218 */ MCD::OPC_CheckField, 0, 4, 0, 153, 33, 0, // Skip to: 10826 |
716 | /* 2225 */ MCD::OPC_Decode, 229, 14, 65, // Opcode: MSTA |
717 | /* 2229 */ MCD::OPC_FilterValue, 72, 11, 0, 0, // Skip to: 2245 |
718 | /* 2234 */ MCD::OPC_CheckField, 0, 16, 0, 137, 33, 0, // Skip to: 10826 |
719 | /* 2241 */ MCD::OPC_Decode, 190, 15, 0, // Opcode: PALB |
720 | /* 2245 */ MCD::OPC_FilterValue, 73, 11, 0, 0, // Skip to: 2261 |
721 | /* 2250 */ MCD::OPC_CheckField, 8, 8, 0, 121, 33, 0, // Skip to: 10826 |
722 | /* 2257 */ MCD::OPC_Decode, 135, 10, 9, // Opcode: EREG |
723 | /* 2261 */ MCD::OPC_FilterValue, 74, 11, 0, 0, // Skip to: 2277 |
724 | /* 2266 */ MCD::OPC_CheckField, 8, 8, 0, 105, 33, 0, // Skip to: 10826 |
725 | /* 2273 */ MCD::OPC_Decode, 141, 10, 66, // Opcode: ESTA |
726 | /* 2277 */ MCD::OPC_FilterValue, 75, 11, 0, 0, // Skip to: 2293 |
727 | /* 2282 */ MCD::OPC_CheckField, 8, 8, 0, 89, 33, 0, // Skip to: 10826 |
728 | /* 2289 */ MCD::OPC_Decode, 144, 14, 61, // Opcode: LURA |
729 | /* 2293 */ MCD::OPC_FilterValue, 76, 11, 0, 0, // Skip to: 2309 |
730 | /* 2298 */ MCD::OPC_CheckField, 8, 8, 0, 73, 33, 0, // Skip to: 10826 |
731 | /* 2305 */ MCD::OPC_Decode, 160, 18, 67, // Opcode: TAR |
732 | /* 2309 */ MCD::OPC_FilterValue, 77, 11, 0, 0, // Skip to: 2325 |
733 | /* 2314 */ MCD::OPC_CheckField, 8, 8, 0, 57, 33, 0, // Skip to: 10826 |
734 | /* 2321 */ MCD::OPC_Decode, 246, 8, 68, // Opcode: CPYA |
735 | /* 2325 */ MCD::OPC_FilterValue, 78, 11, 0, 0, // Skip to: 2341 |
736 | /* 2330 */ MCD::OPC_CheckField, 8, 8, 0, 41, 33, 0, // Skip to: 10826 |
737 | /* 2337 */ MCD::OPC_Decode, 247, 15, 67, // Opcode: SAR |
738 | /* 2341 */ MCD::OPC_FilterValue, 79, 11, 0, 0, // Skip to: 2357 |
739 | /* 2346 */ MCD::OPC_CheckField, 8, 8, 0, 25, 33, 0, // Skip to: 10826 |
740 | /* 2353 */ MCD::OPC_Decode, 249, 9, 69, // Opcode: EAR |
741 | /* 2357 */ MCD::OPC_FilterValue, 80, 11, 0, 0, // Skip to: 2373 |
742 | /* 2362 */ MCD::OPC_CheckField, 8, 8, 0, 9, 33, 0, // Skip to: 10826 |
743 | /* 2369 */ MCD::OPC_Decode, 169, 9, 70, // Opcode: CSP |
744 | /* 2373 */ MCD::OPC_FilterValue, 82, 11, 0, 0, // Skip to: 2389 |
745 | /* 2378 */ MCD::OPC_CheckField, 8, 8, 0, 249, 32, 0, // Skip to: 10826 |
746 | /* 2385 */ MCD::OPC_Decode, 227, 14, 10, // Opcode: MSR |
747 | /* 2389 */ MCD::OPC_FilterValue, 84, 11, 0, 0, // Skip to: 2405 |
748 | /* 2394 */ MCD::OPC_CheckField, 8, 8, 0, 233, 32, 0, // Skip to: 10826 |
749 | /* 2401 */ MCD::OPC_Decode, 250, 14, 63, // Opcode: MVPG |
750 | /* 2405 */ MCD::OPC_FilterValue, 85, 11, 0, 0, // Skip to: 2421 |
751 | /* 2410 */ MCD::OPC_CheckField, 8, 8, 0, 217, 32, 0, // Skip to: 10826 |
752 | /* 2417 */ MCD::OPC_Decode, 251, 14, 71, // Opcode: MVST |
753 | /* 2421 */ MCD::OPC_FilterValue, 87, 11, 0, 0, // Skip to: 2437 |
754 | /* 2426 */ MCD::OPC_CheckField, 8, 8, 0, 201, 32, 0, // Skip to: 10826 |
755 | /* 2433 */ MCD::OPC_Decode, 185, 9, 8, // Opcode: CUSE |
756 | /* 2437 */ MCD::OPC_FilterValue, 88, 11, 0, 0, // Skip to: 2453 |
757 | /* 2442 */ MCD::OPC_CheckField, 8, 8, 0, 185, 32, 0, // Skip to: 10826 |
758 | /* 2449 */ MCD::OPC_Decode, 165, 5, 63, // Opcode: BSG |
759 | /* 2453 */ MCD::OPC_FilterValue, 90, 11, 0, 0, // Skip to: 2469 |
760 | /* 2458 */ MCD::OPC_CheckField, 8, 8, 0, 169, 32, 0, // Skip to: 10826 |
761 | /* 2465 */ MCD::OPC_Decode, 164, 5, 63, // Opcode: BSA |
762 | /* 2469 */ MCD::OPC_FilterValue, 93, 11, 0, 0, // Skip to: 2485 |
763 | /* 2474 */ MCD::OPC_CheckField, 8, 8, 0, 153, 32, 0, // Skip to: 10826 |
764 | /* 2481 */ MCD::OPC_Decode, 222, 8, 71, // Opcode: CLST |
765 | /* 2485 */ MCD::OPC_FilterValue, 94, 11, 0, 0, // Skip to: 2501 |
766 | /* 2490 */ MCD::OPC_CheckField, 8, 8, 0, 137, 32, 0, // Skip to: 10826 |
767 | /* 2497 */ MCD::OPC_Decode, 147, 17, 71, // Opcode: SRST |
768 | /* 2501 */ MCD::OPC_FilterValue, 99, 11, 0, 0, // Skip to: 2517 |
769 | /* 2506 */ MCD::OPC_CheckField, 8, 8, 0, 121, 32, 0, // Skip to: 10826 |
770 | /* 2513 */ MCD::OPC_Decode, 238, 8, 8, // Opcode: CMPSC |
771 | /* 2517 */ MCD::OPC_FilterValue, 116, 4, 0, 0, // Skip to: 2526 |
772 | /* 2522 */ MCD::OPC_Decode, 214, 16, 34, // Opcode: SIGA |
773 | /* 2526 */ MCD::OPC_FilterValue, 118, 11, 0, 0, // Skip to: 2542 |
774 | /* 2531 */ MCD::OPC_CheckField, 0, 16, 0, 96, 32, 0, // Skip to: 10826 |
775 | /* 2538 */ MCD::OPC_Decode, 189, 24, 0, // Opcode: XSCH |
776 | /* 2542 */ MCD::OPC_FilterValue, 119, 4, 0, 0, // Skip to: 2551 |
777 | /* 2547 */ MCD::OPC_Decode, 233, 15, 34, // Opcode: RP |
778 | /* 2551 */ MCD::OPC_FilterValue, 120, 4, 0, 0, // Skip to: 2560 |
779 | /* 2556 */ MCD::OPC_Decode, 165, 17, 34, // Opcode: STCKE |
780 | /* 2560 */ MCD::OPC_FilterValue, 121, 4, 0, 0, // Skip to: 2569 |
781 | /* 2565 */ MCD::OPC_Decode, 242, 15, 34, // Opcode: SACF |
782 | /* 2569 */ MCD::OPC_FilterValue, 124, 4, 0, 0, // Skip to: 2578 |
783 | /* 2574 */ MCD::OPC_Decode, 166, 17, 34, // Opcode: STCKF |
784 | /* 2578 */ MCD::OPC_FilterValue, 125, 4, 0, 0, // Skip to: 2587 |
785 | /* 2583 */ MCD::OPC_Decode, 144, 18, 34, // Opcode: STSI |
786 | /* 2587 */ MCD::OPC_FilterValue, 128, 1, 4, 0, 0, // Skip to: 2597 |
787 | /* 2593 */ MCD::OPC_Decode, 236, 13, 34, // Opcode: LPP |
788 | /* 2597 */ MCD::OPC_FilterValue, 132, 1, 4, 0, 0, // Skip to: 2607 |
789 | /* 2603 */ MCD::OPC_Decode, 174, 11, 34, // Opcode: LCCTL |
790 | /* 2607 */ MCD::OPC_FilterValue, 133, 1, 4, 0, 0, // Skip to: 2617 |
791 | /* 2613 */ MCD::OPC_Decode, 225, 13, 34, // Opcode: LPCTL |
792 | /* 2617 */ MCD::OPC_FilterValue, 134, 1, 4, 0, 0, // Skip to: 2627 |
793 | /* 2623 */ MCD::OPC_Decode, 218, 15, 34, // Opcode: QSI |
794 | /* 2627 */ MCD::OPC_FilterValue, 135, 1, 4, 0, 0, // Skip to: 2637 |
795 | /* 2633 */ MCD::OPC_Decode, 129, 14, 34, // Opcode: LSCTL |
796 | /* 2637 */ MCD::OPC_FilterValue, 142, 1, 4, 0, 0, // Skip to: 2647 |
797 | /* 2643 */ MCD::OPC_Decode, 216, 15, 34, // Opcode: QCTRI |
798 | /* 2647 */ MCD::OPC_FilterValue, 143, 1, 9, 0, 0, // Skip to: 2662 |
799 | /* 2653 */ MCD::OPC_CheckPredicate, 1, 232, 31, 0, // Skip to: 10826 |
800 | /* 2658 */ MCD::OPC_Decode, 217, 15, 34, // Opcode: QPACI |
801 | /* 2662 */ MCD::OPC_FilterValue, 153, 1, 4, 0, 0, // Skip to: 2672 |
802 | /* 2668 */ MCD::OPC_Decode, 143, 17, 72, // Opcode: SRNM |
803 | /* 2672 */ MCD::OPC_FilterValue, 156, 1, 4, 0, 0, // Skip to: 2682 |
804 | /* 2678 */ MCD::OPC_Decode, 182, 17, 34, // Opcode: STFPC |
805 | /* 2682 */ MCD::OPC_FilterValue, 157, 1, 4, 0, 0, // Skip to: 2692 |
806 | /* 2688 */ MCD::OPC_Decode, 216, 11, 34, // Opcode: LFPC |
807 | /* 2692 */ MCD::OPC_FilterValue, 165, 1, 11, 0, 0, // Skip to: 2709 |
808 | /* 2698 */ MCD::OPC_CheckField, 8, 8, 0, 185, 31, 0, // Skip to: 10826 |
809 | /* 2705 */ MCD::OPC_Decode, 193, 18, 73, // Opcode: TRE |
810 | /* 2709 */ MCD::OPC_FilterValue, 166, 1, 23, 0, 0, // Skip to: 2738 |
811 | /* 2715 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
812 | /* 2718 */ MCD::OPC_FilterValue, 0, 167, 31, 0, // Skip to: 10826 |
813 | /* 2723 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 2734 |
814 | /* 2730 */ MCD::OPC_Decode, 179, 9, 8, // Opcode: CU21Opt |
815 | /* 2734 */ MCD::OPC_Decode, 178, 9, 74, // Opcode: CU21 |
816 | /* 2738 */ MCD::OPC_FilterValue, 167, 1, 23, 0, 0, // Skip to: 2767 |
817 | /* 2744 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
818 | /* 2747 */ MCD::OPC_FilterValue, 0, 138, 31, 0, // Skip to: 10826 |
819 | /* 2752 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 2763 |
820 | /* 2759 */ MCD::OPC_Decode, 175, 9, 8, // Opcode: CU12Opt |
821 | /* 2763 */ MCD::OPC_Decode, 174, 9, 74, // Opcode: CU12 |
822 | /* 2767 */ MCD::OPC_FilterValue, 176, 1, 4, 0, 0, // Skip to: 2777 |
823 | /* 2773 */ MCD::OPC_Decode, 181, 17, 34, // Opcode: STFLE |
824 | /* 2777 */ MCD::OPC_FilterValue, 177, 1, 4, 0, 0, // Skip to: 2787 |
825 | /* 2783 */ MCD::OPC_Decode, 180, 17, 34, // Opcode: STFL |
826 | /* 2787 */ MCD::OPC_FilterValue, 178, 1, 4, 0, 0, // Skip to: 2797 |
827 | /* 2793 */ MCD::OPC_Decode, 240, 13, 34, // Opcode: LPSWE |
828 | /* 2797 */ MCD::OPC_FilterValue, 184, 1, 9, 0, 0, // Skip to: 2812 |
829 | /* 2803 */ MCD::OPC_CheckPredicate, 2, 82, 31, 0, // Skip to: 10826 |
830 | /* 2808 */ MCD::OPC_Decode, 144, 17, 72, // Opcode: SRNMB |
831 | /* 2812 */ MCD::OPC_FilterValue, 185, 1, 4, 0, 0, // Skip to: 2822 |
832 | /* 2818 */ MCD::OPC_Decode, 145, 17, 72, // Opcode: SRNMT |
833 | /* 2822 */ MCD::OPC_FilterValue, 189, 1, 4, 0, 0, // Skip to: 2832 |
834 | /* 2828 */ MCD::OPC_Decode, 213, 11, 34, // Opcode: LFAS |
835 | /* 2832 */ MCD::OPC_FilterValue, 224, 1, 11, 0, 0, // Skip to: 2849 |
836 | /* 2838 */ MCD::OPC_CheckField, 8, 8, 0, 45, 31, 0, // Skip to: 10826 |
837 | /* 2845 */ MCD::OPC_Decode, 248, 15, 63, // Opcode: SCCTR |
838 | /* 2849 */ MCD::OPC_FilterValue, 225, 1, 11, 0, 0, // Skip to: 2866 |
839 | /* 2855 */ MCD::OPC_CheckField, 8, 8, 0, 28, 31, 0, // Skip to: 10826 |
840 | /* 2862 */ MCD::OPC_Decode, 245, 16, 63, // Opcode: SPCTR |
841 | /* 2866 */ MCD::OPC_FilterValue, 228, 1, 11, 0, 0, // Skip to: 2883 |
842 | /* 2872 */ MCD::OPC_CheckField, 8, 8, 0, 11, 31, 0, // Skip to: 10826 |
843 | /* 2879 */ MCD::OPC_Decode, 251, 9, 63, // Opcode: ECCTR |
844 | /* 2883 */ MCD::OPC_FilterValue, 229, 1, 11, 0, 0, // Skip to: 2900 |
845 | /* 2889 */ MCD::OPC_CheckField, 8, 8, 0, 250, 30, 0, // Skip to: 10826 |
846 | /* 2896 */ MCD::OPC_Decode, 133, 10, 63, // Opcode: EPCTR |
847 | /* 2900 */ MCD::OPC_FilterValue, 232, 1, 16, 0, 0, // Skip to: 2922 |
848 | /* 2906 */ MCD::OPC_CheckPredicate, 3, 235, 30, 0, // Skip to: 10826 |
849 | /* 2911 */ MCD::OPC_CheckField, 8, 4, 0, 228, 30, 0, // Skip to: 10826 |
850 | /* 2918 */ MCD::OPC_Decode, 205, 15, 75, // Opcode: PPA |
851 | /* 2922 */ MCD::OPC_FilterValue, 236, 1, 23, 0, 0, // Skip to: 2951 |
852 | /* 2928 */ MCD::OPC_CheckPredicate, 4, 213, 30, 0, // Skip to: 10826 |
853 | /* 2933 */ MCD::OPC_CheckField, 8, 8, 0, 206, 30, 0, // Skip to: 10826 |
854 | /* 2940 */ MCD::OPC_CheckField, 0, 4, 0, 199, 30, 0, // Skip to: 10826 |
855 | /* 2947 */ MCD::OPC_Decode, 143, 10, 1, // Opcode: ETND |
856 | /* 2951 */ MCD::OPC_FilterValue, 237, 1, 11, 0, 0, // Skip to: 2968 |
857 | /* 2957 */ MCD::OPC_CheckField, 8, 8, 0, 182, 30, 0, // Skip to: 10826 |
858 | /* 2964 */ MCD::OPC_Decode, 252, 9, 61, // Opcode: ECPGA |
859 | /* 2968 */ MCD::OPC_FilterValue, 248, 1, 16, 0, 0, // Skip to: 2990 |
860 | /* 2974 */ MCD::OPC_CheckPredicate, 4, 167, 30, 0, // Skip to: 10826 |
861 | /* 2979 */ MCD::OPC_CheckField, 0, 16, 0, 160, 30, 0, // Skip to: 10826 |
862 | /* 2986 */ MCD::OPC_Decode, 175, 18, 0, // Opcode: TEND |
863 | /* 2990 */ MCD::OPC_FilterValue, 250, 1, 16, 0, 0, // Skip to: 3012 |
864 | /* 2996 */ MCD::OPC_CheckPredicate, 5, 145, 30, 0, // Skip to: 10826 |
865 | /* 3001 */ MCD::OPC_CheckField, 8, 8, 0, 138, 30, 0, // Skip to: 10826 |
866 | /* 3008 */ MCD::OPC_Decode, 147, 15, 76, // Opcode: NIAI |
867 | /* 3012 */ MCD::OPC_FilterValue, 252, 1, 9, 0, 0, // Skip to: 3027 |
868 | /* 3018 */ MCD::OPC_CheckPredicate, 4, 123, 30, 0, // Skip to: 10826 |
869 | /* 3023 */ MCD::OPC_Decode, 158, 18, 34, // Opcode: TABORT |
870 | /* 3027 */ MCD::OPC_FilterValue, 255, 1, 113, 30, 0, // Skip to: 10826 |
871 | /* 3033 */ MCD::OPC_Decode, 192, 18, 34, // Opcode: TRAP4 |
872 | /* 3037 */ MCD::OPC_FilterValue, 179, 1, 238, 11, 0, // Skip to: 6097 |
873 | /* 3043 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
874 | /* 3046 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 3062 |
875 | /* 3051 */ MCD::OPC_CheckField, 8, 8, 0, 88, 30, 0, // Skip to: 10826 |
876 | /* 3058 */ MCD::OPC_Decode, 232, 13, 17, // Opcode: LPEBR |
877 | /* 3062 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 3078 |
878 | /* 3067 */ MCD::OPC_CheckField, 8, 8, 0, 72, 30, 0, // Skip to: 10826 |
879 | /* 3074 */ MCD::OPC_Decode, 148, 12, 17, // Opcode: LNEBR |
880 | /* 3078 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 3094 |
881 | /* 3083 */ MCD::OPC_CheckField, 8, 8, 0, 56, 30, 0, // Skip to: 10826 |
882 | /* 3090 */ MCD::OPC_Decode, 134, 14, 17, // Opcode: LTEBR |
883 | /* 3094 */ MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 3110 |
884 | /* 3099 */ MCD::OPC_CheckField, 8, 8, 0, 40, 30, 0, // Skip to: 10826 |
885 | /* 3106 */ MCD::OPC_Decode, 179, 11, 17, // Opcode: LCEBR |
886 | /* 3110 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 3126 |
887 | /* 3115 */ MCD::OPC_CheckField, 8, 8, 0, 24, 30, 0, // Skip to: 10826 |
888 | /* 3122 */ MCD::OPC_Decode, 192, 11, 77, // Opcode: LDEBR |
889 | /* 3126 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 3142 |
890 | /* 3131 */ MCD::OPC_CheckField, 8, 8, 0, 8, 30, 0, // Skip to: 10826 |
891 | /* 3138 */ MCD::OPC_Decode, 148, 14, 78, // Opcode: LXDBR |
892 | /* 3142 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 3158 |
893 | /* 3147 */ MCD::OPC_CheckField, 8, 8, 0, 248, 29, 0, // Skip to: 10826 |
894 | /* 3154 */ MCD::OPC_Decode, 153, 14, 79, // Opcode: LXEBR |
895 | /* 3158 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 3174 |
896 | /* 3163 */ MCD::OPC_CheckField, 8, 8, 0, 232, 29, 0, // Skip to: 10826 |
897 | /* 3170 */ MCD::OPC_Decode, 128, 15, 15, // Opcode: MXDBR |
898 | /* 3174 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 3190 |
899 | /* 3179 */ MCD::OPC_CheckField, 8, 8, 0, 216, 29, 0, // Skip to: 10826 |
900 | /* 3186 */ MCD::OPC_Decode, 137, 11, 17, // Opcode: KEBR |
901 | /* 3190 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 3206 |
902 | /* 3195 */ MCD::OPC_CheckField, 8, 8, 0, 200, 29, 0, // Skip to: 10826 |
903 | /* 3202 */ MCD::OPC_Decode, 199, 5, 17, // Opcode: CEBR |
904 | /* 3206 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 3222 |
905 | /* 3211 */ MCD::OPC_CheckField, 8, 8, 0, 184, 29, 0, // Skip to: 10826 |
906 | /* 3218 */ MCD::OPC_Decode, 142, 4, 19, // Opcode: AEBR |
907 | /* 3222 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 3238 |
908 | /* 3227 */ MCD::OPC_CheckField, 8, 8, 0, 168, 29, 0, // Skip to: 10826 |
909 | /* 3234 */ MCD::OPC_Decode, 133, 16, 19, // Opcode: SEBR |
910 | /* 3238 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 3254 |
911 | /* 3243 */ MCD::OPC_CheckField, 8, 8, 0, 152, 29, 0, // Skip to: 10826 |
912 | /* 3250 */ MCD::OPC_Decode, 183, 14, 20, // Opcode: MDEBR |
913 | /* 3254 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 3270 |
914 | /* 3259 */ MCD::OPC_CheckField, 8, 8, 0, 136, 29, 0, // Skip to: 10826 |
915 | /* 3266 */ MCD::OPC_Decode, 229, 9, 19, // Opcode: DEBR |
916 | /* 3270 */ MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 3286 |
917 | /* 3275 */ MCD::OPC_CheckField, 8, 4, 0, 120, 29, 0, // Skip to: 10826 |
918 | /* 3282 */ MCD::OPC_Decode, 169, 14, 80, // Opcode: MAEBR |
919 | /* 3286 */ MCD::OPC_FilterValue, 15, 11, 0, 0, // Skip to: 3302 |
920 | /* 3291 */ MCD::OPC_CheckField, 8, 4, 0, 104, 29, 0, // Skip to: 10826 |
921 | /* 3298 */ MCD::OPC_Decode, 217, 14, 80, // Opcode: MSEBR |
922 | /* 3302 */ MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 3318 |
923 | /* 3307 */ MCD::OPC_CheckField, 8, 8, 0, 88, 29, 0, // Skip to: 10826 |
924 | /* 3314 */ MCD::OPC_Decode, 227, 13, 12, // Opcode: LPDBR |
925 | /* 3318 */ MCD::OPC_FilterValue, 17, 11, 0, 0, // Skip to: 3334 |
926 | /* 3323 */ MCD::OPC_CheckField, 8, 8, 0, 72, 29, 0, // Skip to: 10826 |
927 | /* 3330 */ MCD::OPC_Decode, 144, 12, 12, // Opcode: LNDBR |
928 | /* 3334 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 3350 |
929 | /* 3339 */ MCD::OPC_CheckField, 8, 8, 0, 56, 29, 0, // Skip to: 10826 |
930 | /* 3346 */ MCD::OPC_Decode, 131, 14, 12, // Opcode: LTDBR |
931 | /* 3350 */ MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 3366 |
932 | /* 3355 */ MCD::OPC_CheckField, 8, 8, 0, 40, 29, 0, // Skip to: 10826 |
933 | /* 3362 */ MCD::OPC_Decode, 175, 11, 12, // Opcode: LCDBR |
934 | /* 3366 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 3382 |
935 | /* 3371 */ MCD::OPC_CheckField, 8, 8, 0, 24, 29, 0, // Skip to: 10826 |
936 | /* 3378 */ MCD::OPC_Decode, 128, 17, 17, // Opcode: SQEBR |
937 | /* 3382 */ MCD::OPC_FilterValue, 21, 11, 0, 0, // Skip to: 3398 |
938 | /* 3387 */ MCD::OPC_CheckField, 8, 8, 0, 8, 29, 0, // Skip to: 10826 |
939 | /* 3394 */ MCD::OPC_Decode, 252, 16, 12, // Opcode: SQDBR |
940 | /* 3398 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 3414 |
941 | /* 3403 */ MCD::OPC_CheckField, 8, 8, 0, 248, 28, 0, // Skip to: 10826 |
942 | /* 3410 */ MCD::OPC_Decode, 130, 17, 81, // Opcode: SQXBR |
943 | /* 3414 */ MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 3430 |
944 | /* 3419 */ MCD::OPC_CheckField, 8, 8, 0, 232, 28, 0, // Skip to: 10826 |
945 | /* 3426 */ MCD::OPC_Decode, 191, 14, 19, // Opcode: MEEBR |
946 | /* 3430 */ MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 3446 |
947 | /* 3435 */ MCD::OPC_CheckField, 8, 8, 0, 216, 28, 0, // Skip to: 10826 |
948 | /* 3442 */ MCD::OPC_Decode, 133, 11, 12, // Opcode: KDBR |
949 | /* 3446 */ MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 3462 |
950 | /* 3451 */ MCD::OPC_CheckField, 8, 8, 0, 200, 28, 0, // Skip to: 10826 |
951 | /* 3458 */ MCD::OPC_Decode, 174, 5, 12, // Opcode: CDBR |
952 | /* 3462 */ MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 3478 |
953 | /* 3467 */ MCD::OPC_CheckField, 8, 8, 0, 184, 28, 0, // Skip to: 10826 |
954 | /* 3474 */ MCD::OPC_Decode, 136, 4, 16, // Opcode: ADBR |
955 | /* 3478 */ MCD::OPC_FilterValue, 27, 11, 0, 0, // Skip to: 3494 |
956 | /* 3483 */ MCD::OPC_CheckField, 8, 8, 0, 168, 28, 0, // Skip to: 10826 |
957 | /* 3490 */ MCD::OPC_Decode, 255, 15, 16, // Opcode: SDBR |
958 | /* 3494 */ MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 3510 |
959 | /* 3499 */ MCD::OPC_CheckField, 8, 8, 0, 152, 28, 0, // Skip to: 10826 |
960 | /* 3506 */ MCD::OPC_Decode, 180, 14, 16, // Opcode: MDBR |
961 | /* 3510 */ MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 3526 |
962 | /* 3515 */ MCD::OPC_CheckField, 8, 8, 0, 136, 28, 0, // Skip to: 10826 |
963 | /* 3522 */ MCD::OPC_Decode, 223, 9, 16, // Opcode: DDBR |
964 | /* 3526 */ MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 3542 |
965 | /* 3531 */ MCD::OPC_CheckField, 8, 4, 0, 120, 28, 0, // Skip to: 10826 |
966 | /* 3538 */ MCD::OPC_Decode, 165, 14, 82, // Opcode: MADBR |
967 | /* 3542 */ MCD::OPC_FilterValue, 31, 11, 0, 0, // Skip to: 3558 |
968 | /* 3547 */ MCD::OPC_CheckField, 8, 4, 0, 104, 28, 0, // Skip to: 10826 |
969 | /* 3554 */ MCD::OPC_Decode, 213, 14, 82, // Opcode: MSDBR |
970 | /* 3558 */ MCD::OPC_FilterValue, 36, 11, 0, 0, // Skip to: 3574 |
971 | /* 3563 */ MCD::OPC_CheckField, 8, 8, 0, 88, 28, 0, // Skip to: 10826 |
972 | /* 3570 */ MCD::OPC_Decode, 193, 11, 77, // Opcode: LDER |
973 | /* 3574 */ MCD::OPC_FilterValue, 37, 11, 0, 0, // Skip to: 3590 |
974 | /* 3579 */ MCD::OPC_CheckField, 8, 8, 0, 72, 28, 0, // Skip to: 10826 |
975 | /* 3586 */ MCD::OPC_Decode, 149, 14, 78, // Opcode: LXDR |
976 | /* 3590 */ MCD::OPC_FilterValue, 38, 11, 0, 0, // Skip to: 3606 |
977 | /* 3595 */ MCD::OPC_CheckField, 8, 8, 0, 56, 28, 0, // Skip to: 10826 |
978 | /* 3602 */ MCD::OPC_Decode, 154, 14, 79, // Opcode: LXER |
979 | /* 3606 */ MCD::OPC_FilterValue, 46, 11, 0, 0, // Skip to: 3622 |
980 | /* 3611 */ MCD::OPC_CheckField, 8, 4, 0, 40, 28, 0, // Skip to: 10826 |
981 | /* 3618 */ MCD::OPC_Decode, 170, 14, 80, // Opcode: MAER |
982 | /* 3622 */ MCD::OPC_FilterValue, 47, 11, 0, 0, // Skip to: 3638 |
983 | /* 3627 */ MCD::OPC_CheckField, 8, 4, 0, 24, 28, 0, // Skip to: 10826 |
984 | /* 3634 */ MCD::OPC_Decode, 218, 14, 80, // Opcode: MSER |
985 | /* 3638 */ MCD::OPC_FilterValue, 54, 11, 0, 0, // Skip to: 3654 |
986 | /* 3643 */ MCD::OPC_CheckField, 8, 8, 0, 8, 28, 0, // Skip to: 10826 |
987 | /* 3650 */ MCD::OPC_Decode, 131, 17, 81, // Opcode: SQXR |
988 | /* 3654 */ MCD::OPC_FilterValue, 55, 11, 0, 0, // Skip to: 3670 |
989 | /* 3659 */ MCD::OPC_CheckField, 8, 8, 0, 248, 27, 0, // Skip to: 10826 |
990 | /* 3666 */ MCD::OPC_Decode, 192, 14, 19, // Opcode: MEER |
991 | /* 3670 */ MCD::OPC_FilterValue, 56, 11, 0, 0, // Skip to: 3686 |
992 | /* 3675 */ MCD::OPC_CheckField, 8, 4, 0, 232, 27, 0, // Skip to: 10826 |
993 | /* 3682 */ MCD::OPC_Decode, 175, 14, 82, // Opcode: MAYLR |
994 | /* 3686 */ MCD::OPC_FilterValue, 57, 11, 0, 0, // Skip to: 3702 |
995 | /* 3691 */ MCD::OPC_CheckField, 8, 4, 0, 216, 27, 0, // Skip to: 10826 |
996 | /* 3698 */ MCD::OPC_Decode, 137, 15, 83, // Opcode: MYLR |
997 | /* 3702 */ MCD::OPC_FilterValue, 58, 11, 0, 0, // Skip to: 3718 |
998 | /* 3707 */ MCD::OPC_CheckField, 8, 4, 0, 200, 27, 0, // Skip to: 10826 |
999 | /* 3714 */ MCD::OPC_Decode, 176, 14, 82, // Opcode: MAYR |
1000 | /* 3718 */ MCD::OPC_FilterValue, 59, 11, 0, 0, // Skip to: 3734 |
1001 | /* 3723 */ MCD::OPC_CheckField, 8, 4, 0, 184, 27, 0, // Skip to: 10826 |
1002 | /* 3730 */ MCD::OPC_Decode, 138, 15, 84, // Opcode: MYR |
1003 | /* 3734 */ MCD::OPC_FilterValue, 60, 11, 0, 0, // Skip to: 3750 |
1004 | /* 3739 */ MCD::OPC_CheckField, 8, 4, 0, 168, 27, 0, // Skip to: 10826 |
1005 | /* 3746 */ MCD::OPC_Decode, 173, 14, 82, // Opcode: MAYHR |
1006 | /* 3750 */ MCD::OPC_FilterValue, 61, 11, 0, 0, // Skip to: 3766 |
1007 | /* 3755 */ MCD::OPC_CheckField, 8, 4, 0, 152, 27, 0, // Skip to: 10826 |
1008 | /* 3762 */ MCD::OPC_Decode, 135, 15, 83, // Opcode: MYHR |
1009 | /* 3766 */ MCD::OPC_FilterValue, 62, 11, 0, 0, // Skip to: 3782 |
1010 | /* 3771 */ MCD::OPC_CheckField, 8, 4, 0, 136, 27, 0, // Skip to: 10826 |
1011 | /* 3778 */ MCD::OPC_Decode, 166, 14, 82, // Opcode: MADR |
1012 | /* 3782 */ MCD::OPC_FilterValue, 63, 11, 0, 0, // Skip to: 3798 |
1013 | /* 3787 */ MCD::OPC_CheckField, 8, 4, 0, 120, 27, 0, // Skip to: 10826 |
1014 | /* 3794 */ MCD::OPC_Decode, 214, 14, 82, // Opcode: MSDR |
1015 | /* 3798 */ MCD::OPC_FilterValue, 64, 11, 0, 0, // Skip to: 3814 |
1016 | /* 3803 */ MCD::OPC_CheckField, 8, 8, 0, 104, 27, 0, // Skip to: 10826 |
1017 | /* 3810 */ MCD::OPC_Decode, 243, 13, 81, // Opcode: LPXBR |
1018 | /* 3814 */ MCD::OPC_FilterValue, 65, 11, 0, 0, // Skip to: 3830 |
1019 | /* 3819 */ MCD::OPC_CheckField, 8, 8, 0, 88, 27, 0, // Skip to: 10826 |
1020 | /* 3826 */ MCD::OPC_Decode, 153, 12, 81, // Opcode: LNXBR |
1021 | /* 3830 */ MCD::OPC_FilterValue, 66, 11, 0, 0, // Skip to: 3846 |
1022 | /* 3835 */ MCD::OPC_CheckField, 8, 8, 0, 72, 27, 0, // Skip to: 10826 |
1023 | /* 3842 */ MCD::OPC_Decode, 141, 14, 81, // Opcode: LTXBR |
1024 | /* 3846 */ MCD::OPC_FilterValue, 67, 11, 0, 0, // Skip to: 3862 |
1025 | /* 3851 */ MCD::OPC_CheckField, 8, 8, 0, 56, 27, 0, // Skip to: 10826 |
1026 | /* 3858 */ MCD::OPC_Decode, 186, 11, 81, // Opcode: LCXBR |
1027 | /* 3862 */ MCD::OPC_FilterValue, 68, 20, 0, 0, // Skip to: 3887 |
1028 | /* 3867 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 3878 |
1029 | /* 3874 */ MCD::OPC_Decode, 204, 11, 18, // Opcode: LEDBR |
1030 | /* 3878 */ MCD::OPC_CheckPredicate, 2, 31, 27, 0, // Skip to: 10826 |
1031 | /* 3883 */ MCD::OPC_Decode, 205, 11, 85, // Opcode: LEDBRA |
1032 | /* 3887 */ MCD::OPC_FilterValue, 69, 20, 0, 0, // Skip to: 3912 |
1033 | /* 3892 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 3903 |
1034 | /* 3899 */ MCD::OPC_Decode, 198, 11, 81, // Opcode: LDXBR |
1035 | /* 3903 */ MCD::OPC_CheckPredicate, 2, 6, 27, 0, // Skip to: 10826 |
1036 | /* 3908 */ MCD::OPC_Decode, 199, 11, 86, // Opcode: LDXBRA |
1037 | /* 3912 */ MCD::OPC_FilterValue, 70, 20, 0, 0, // Skip to: 3937 |
1038 | /* 3917 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 3928 |
1039 | /* 3924 */ MCD::OPC_Decode, 209, 11, 81, // Opcode: LEXBR |
1040 | /* 3928 */ MCD::OPC_CheckPredicate, 2, 237, 26, 0, // Skip to: 10826 |
1041 | /* 3933 */ MCD::OPC_Decode, 210, 11, 86, // Opcode: LEXBRA |
1042 | /* 3937 */ MCD::OPC_FilterValue, 71, 20, 0, 0, // Skip to: 3962 |
1043 | /* 3942 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 3953 |
1044 | /* 3949 */ MCD::OPC_Decode, 153, 10, 87, // Opcode: FIXBR |
1045 | /* 3953 */ MCD::OPC_CheckPredicate, 2, 212, 26, 0, // Skip to: 10826 |
1046 | /* 3958 */ MCD::OPC_Decode, 154, 10, 86, // Opcode: FIXBRA |
1047 | /* 3962 */ MCD::OPC_FilterValue, 72, 11, 0, 0, // Skip to: 3978 |
1048 | /* 3967 */ MCD::OPC_CheckField, 8, 8, 0, 196, 26, 0, // Skip to: 10826 |
1049 | /* 3974 */ MCD::OPC_Decode, 147, 11, 81, // Opcode: KXBR |
1050 | /* 3978 */ MCD::OPC_FilterValue, 73, 11, 0, 0, // Skip to: 3994 |
1051 | /* 3983 */ MCD::OPC_CheckField, 8, 8, 0, 180, 26, 0, // Skip to: 10826 |
1052 | /* 3990 */ MCD::OPC_Decode, 197, 9, 81, // Opcode: CXBR |
1053 | /* 3994 */ MCD::OPC_FilterValue, 74, 11, 0, 0, // Skip to: 4010 |
1054 | /* 3999 */ MCD::OPC_CheckField, 8, 8, 0, 164, 26, 0, // Skip to: 10826 |
1055 | /* 4006 */ MCD::OPC_Decode, 193, 4, 14, // Opcode: AXBR |
1056 | /* 4010 */ MCD::OPC_FilterValue, 75, 11, 0, 0, // Skip to: 4026 |
1057 | /* 4015 */ MCD::OPC_CheckField, 8, 8, 0, 148, 26, 0, // Skip to: 10826 |
1058 | /* 4022 */ MCD::OPC_Decode, 153, 18, 14, // Opcode: SXBR |
1059 | /* 4026 */ MCD::OPC_FilterValue, 76, 11, 0, 0, // Skip to: 4042 |
1060 | /* 4031 */ MCD::OPC_CheckField, 8, 8, 0, 132, 26, 0, // Skip to: 10826 |
1061 | /* 4038 */ MCD::OPC_Decode, 253, 14, 14, // Opcode: MXBR |
1062 | /* 4042 */ MCD::OPC_FilterValue, 77, 11, 0, 0, // Skip to: 4058 |
1063 | /* 4047 */ MCD::OPC_CheckField, 8, 8, 0, 116, 26, 0, // Skip to: 10826 |
1064 | /* 4054 */ MCD::OPC_Decode, 245, 9, 14, // Opcode: DXBR |
1065 | /* 4058 */ MCD::OPC_FilterValue, 80, 11, 0, 0, // Skip to: 4074 |
1066 | /* 4063 */ MCD::OPC_CheckField, 8, 4, 0, 100, 26, 0, // Skip to: 10826 |
1067 | /* 4070 */ MCD::OPC_Decode, 163, 18, 88, // Opcode: TBEDR |
1068 | /* 4074 */ MCD::OPC_FilterValue, 81, 11, 0, 0, // Skip to: 4090 |
1069 | /* 4079 */ MCD::OPC_CheckField, 8, 4, 0, 84, 26, 0, // Skip to: 10826 |
1070 | /* 4086 */ MCD::OPC_Decode, 162, 18, 89, // Opcode: TBDR |
1071 | /* 4090 */ MCD::OPC_FilterValue, 83, 4, 0, 0, // Skip to: 4099 |
1072 | /* 4095 */ MCD::OPC_Decode, 234, 9, 90, // Opcode: DIEBR |
1073 | /* 4099 */ MCD::OPC_FilterValue, 87, 20, 0, 0, // Skip to: 4124 |
1074 | /* 4104 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4115 |
1075 | /* 4111 */ MCD::OPC_Decode, 150, 10, 91, // Opcode: FIEBR |
1076 | /* 4115 */ MCD::OPC_CheckPredicate, 2, 50, 26, 0, // Skip to: 10826 |
1077 | /* 4120 */ MCD::OPC_Decode, 151, 10, 92, // Opcode: FIEBRA |
1078 | /* 4124 */ MCD::OPC_FilterValue, 88, 11, 0, 0, // Skip to: 4140 |
1079 | /* 4129 */ MCD::OPC_CheckField, 8, 8, 0, 34, 26, 0, // Skip to: 10826 |
1080 | /* 4136 */ MCD::OPC_Decode, 176, 18, 77, // Opcode: THDER |
1081 | /* 4140 */ MCD::OPC_FilterValue, 89, 11, 0, 0, // Skip to: 4156 |
1082 | /* 4145 */ MCD::OPC_CheckField, 8, 8, 0, 18, 26, 0, // Skip to: 10826 |
1083 | /* 4152 */ MCD::OPC_Decode, 177, 18, 12, // Opcode: THDR |
1084 | /* 4156 */ MCD::OPC_FilterValue, 91, 4, 0, 0, // Skip to: 4165 |
1085 | /* 4161 */ MCD::OPC_Decode, 233, 9, 93, // Opcode: DIDBR |
1086 | /* 4165 */ MCD::OPC_FilterValue, 95, 20, 0, 0, // Skip to: 4190 |
1087 | /* 4170 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4181 |
1088 | /* 4177 */ MCD::OPC_Decode, 146, 10, 89, // Opcode: FIDBR |
1089 | /* 4181 */ MCD::OPC_CheckPredicate, 2, 240, 25, 0, // Skip to: 10826 |
1090 | /* 4186 */ MCD::OPC_Decode, 147, 10, 94, // Opcode: FIDBRA |
1091 | /* 4190 */ MCD::OPC_FilterValue, 96, 11, 0, 0, // Skip to: 4206 |
1092 | /* 4195 */ MCD::OPC_CheckField, 8, 8, 0, 224, 25, 0, // Skip to: 10826 |
1093 | /* 4202 */ MCD::OPC_Decode, 244, 13, 81, // Opcode: LPXR |
1094 | /* 4206 */ MCD::OPC_FilterValue, 97, 11, 0, 0, // Skip to: 4222 |
1095 | /* 4211 */ MCD::OPC_CheckField, 8, 8, 0, 208, 25, 0, // Skip to: 10826 |
1096 | /* 4218 */ MCD::OPC_Decode, 154, 12, 81, // Opcode: LNXR |
1097 | /* 4222 */ MCD::OPC_FilterValue, 98, 11, 0, 0, // Skip to: 4238 |
1098 | /* 4227 */ MCD::OPC_CheckField, 8, 8, 0, 192, 25, 0, // Skip to: 10826 |
1099 | /* 4234 */ MCD::OPC_Decode, 142, 14, 81, // Opcode: LTXR |
1100 | /* 4238 */ MCD::OPC_FilterValue, 99, 11, 0, 0, // Skip to: 4254 |
1101 | /* 4243 */ MCD::OPC_CheckField, 8, 8, 0, 176, 25, 0, // Skip to: 10826 |
1102 | /* 4250 */ MCD::OPC_Decode, 187, 11, 81, // Opcode: LCXR |
1103 | /* 4254 */ MCD::OPC_FilterValue, 101, 11, 0, 0, // Skip to: 4270 |
1104 | /* 4259 */ MCD::OPC_CheckField, 8, 8, 0, 160, 25, 0, // Skip to: 10826 |
1105 | /* 4266 */ MCD::OPC_Decode, 155, 14, 81, // Opcode: LXR |
1106 | /* 4270 */ MCD::OPC_FilterValue, 102, 11, 0, 0, // Skip to: 4286 |
1107 | /* 4275 */ MCD::OPC_CheckField, 8, 8, 0, 144, 25, 0, // Skip to: 10826 |
1108 | /* 4282 */ MCD::OPC_Decode, 211, 11, 95, // Opcode: LEXR |
1109 | /* 4286 */ MCD::OPC_FilterValue, 103, 11, 0, 0, // Skip to: 4302 |
1110 | /* 4291 */ MCD::OPC_CheckField, 8, 8, 0, 128, 25, 0, // Skip to: 10826 |
1111 | /* 4298 */ MCD::OPC_Decode, 155, 10, 81, // Opcode: FIXR |
1112 | /* 4302 */ MCD::OPC_FilterValue, 105, 11, 0, 0, // Skip to: 4318 |
1113 | /* 4307 */ MCD::OPC_CheckField, 8, 8, 0, 112, 25, 0, // Skip to: 10826 |
1114 | /* 4314 */ MCD::OPC_Decode, 212, 9, 81, // Opcode: CXR |
1115 | /* 4318 */ MCD::OPC_FilterValue, 112, 11, 0, 0, // Skip to: 4334 |
1116 | /* 4323 */ MCD::OPC_CheckField, 8, 8, 0, 96, 25, 0, // Skip to: 10826 |
1117 | /* 4330 */ MCD::OPC_Decode, 228, 13, 12, // Opcode: LPDFR |
1118 | /* 4334 */ MCD::OPC_FilterValue, 113, 11, 0, 0, // Skip to: 4350 |
1119 | /* 4339 */ MCD::OPC_CheckField, 8, 8, 0, 80, 25, 0, // Skip to: 10826 |
1120 | /* 4346 */ MCD::OPC_Decode, 145, 12, 12, // Opcode: LNDFR |
1121 | /* 4350 */ MCD::OPC_FilterValue, 114, 11, 0, 0, // Skip to: 4366 |
1122 | /* 4355 */ MCD::OPC_CheckField, 8, 4, 0, 64, 25, 0, // Skip to: 10826 |
1123 | /* 4362 */ MCD::OPC_Decode, 241, 8, 96, // Opcode: CPSDRdd |
1124 | /* 4366 */ MCD::OPC_FilterValue, 115, 11, 0, 0, // Skip to: 4382 |
1125 | /* 4371 */ MCD::OPC_CheckField, 8, 8, 0, 48, 25, 0, // Skip to: 10826 |
1126 | /* 4378 */ MCD::OPC_Decode, 176, 11, 12, // Opcode: LCDFR |
1127 | /* 4382 */ MCD::OPC_FilterValue, 116, 18, 0, 0, // Skip to: 4405 |
1128 | /* 4387 */ MCD::OPC_CheckField, 8, 8, 0, 32, 25, 0, // Skip to: 10826 |
1129 | /* 4394 */ MCD::OPC_CheckField, 0, 4, 0, 25, 25, 0, // Skip to: 10826 |
1130 | /* 4401 */ MCD::OPC_Decode, 158, 14, 97, // Opcode: LZER |
1131 | /* 4405 */ MCD::OPC_FilterValue, 117, 18, 0, 0, // Skip to: 4428 |
1132 | /* 4410 */ MCD::OPC_CheckField, 8, 8, 0, 9, 25, 0, // Skip to: 10826 |
1133 | /* 4417 */ MCD::OPC_CheckField, 0, 4, 0, 2, 25, 0, // Skip to: 10826 |
1134 | /* 4424 */ MCD::OPC_Decode, 157, 14, 98, // Opcode: LZDR |
1135 | /* 4428 */ MCD::OPC_FilterValue, 118, 18, 0, 0, // Skip to: 4451 |
1136 | /* 4433 */ MCD::OPC_CheckField, 8, 8, 0, 242, 24, 0, // Skip to: 10826 |
1137 | /* 4440 */ MCD::OPC_CheckField, 0, 4, 0, 235, 24, 0, // Skip to: 10826 |
1138 | /* 4447 */ MCD::OPC_Decode, 161, 14, 99, // Opcode: LZXR |
1139 | /* 4451 */ MCD::OPC_FilterValue, 119, 11, 0, 0, // Skip to: 4467 |
1140 | /* 4456 */ MCD::OPC_CheckField, 8, 8, 0, 219, 24, 0, // Skip to: 10826 |
1141 | /* 4463 */ MCD::OPC_Decode, 152, 10, 17, // Opcode: FIER |
1142 | /* 4467 */ MCD::OPC_FilterValue, 127, 11, 0, 0, // Skip to: 4483 |
1143 | /* 4472 */ MCD::OPC_CheckField, 8, 8, 0, 203, 24, 0, // Skip to: 10826 |
1144 | /* 4479 */ MCD::OPC_Decode, 148, 10, 12, // Opcode: FIDR |
1145 | /* 4483 */ MCD::OPC_FilterValue, 132, 1, 18, 0, 0, // Skip to: 4507 |
1146 | /* 4489 */ MCD::OPC_CheckField, 8, 8, 0, 186, 24, 0, // Skip to: 10826 |
1147 | /* 4496 */ MCD::OPC_CheckField, 0, 4, 0, 179, 24, 0, // Skip to: 10826 |
1148 | /* 4503 */ MCD::OPC_Decode, 202, 16, 1, // Opcode: SFPC |
1149 | /* 4507 */ MCD::OPC_FilterValue, 133, 1, 18, 0, 0, // Skip to: 4531 |
1150 | /* 4513 */ MCD::OPC_CheckField, 8, 8, 0, 162, 24, 0, // Skip to: 10826 |
1151 | /* 4520 */ MCD::OPC_CheckField, 0, 4, 0, 155, 24, 0, // Skip to: 10826 |
1152 | /* 4527 */ MCD::OPC_Decode, 201, 16, 1, // Opcode: SFASR |
1153 | /* 4531 */ MCD::OPC_FilterValue, 140, 1, 18, 0, 0, // Skip to: 4555 |
1154 | /* 4537 */ MCD::OPC_CheckField, 8, 8, 0, 138, 24, 0, // Skip to: 10826 |
1155 | /* 4544 */ MCD::OPC_CheckField, 0, 4, 0, 131, 24, 0, // Skip to: 10826 |
1156 | /* 4551 */ MCD::OPC_Decode, 130, 10, 1, // Opcode: EFPC |
1157 | /* 4555 */ MCD::OPC_FilterValue, 144, 1, 9, 0, 0, // Skip to: 4570 |
1158 | /* 4561 */ MCD::OPC_CheckPredicate, 2, 116, 24, 0, // Skip to: 10826 |
1159 | /* 4566 */ MCD::OPC_Decode, 207, 5, 100, // Opcode: CELFBR |
1160 | /* 4570 */ MCD::OPC_FilterValue, 145, 1, 9, 0, 0, // Skip to: 4585 |
1161 | /* 4576 */ MCD::OPC_CheckPredicate, 2, 101, 24, 0, // Skip to: 10826 |
1162 | /* 4581 */ MCD::OPC_Decode, 184, 5, 101, // Opcode: CDLFBR |
1163 | /* 4585 */ MCD::OPC_FilterValue, 146, 1, 9, 0, 0, // Skip to: 4600 |
1164 | /* 4591 */ MCD::OPC_CheckPredicate, 2, 86, 24, 0, // Skip to: 10826 |
1165 | /* 4596 */ MCD::OPC_Decode, 207, 9, 102, // Opcode: CXLFBR |
1166 | /* 4600 */ MCD::OPC_FilterValue, 148, 1, 20, 0, 0, // Skip to: 4626 |
1167 | /* 4606 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4617 |
1168 | /* 4613 */ MCD::OPC_Decode, 201, 5, 103, // Opcode: CEFBR |
1169 | /* 4617 */ MCD::OPC_CheckPredicate, 2, 60, 24, 0, // Skip to: 10826 |
1170 | /* 4622 */ MCD::OPC_Decode, 202, 5, 100, // Opcode: CEFBRA |
1171 | /* 4626 */ MCD::OPC_FilterValue, 149, 1, 20, 0, 0, // Skip to: 4652 |
1172 | /* 4632 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4643 |
1173 | /* 4639 */ MCD::OPC_Decode, 175, 5, 104, // Opcode: CDFBR |
1174 | /* 4643 */ MCD::OPC_CheckPredicate, 2, 34, 24, 0, // Skip to: 10826 |
1175 | /* 4648 */ MCD::OPC_Decode, 176, 5, 101, // Opcode: CDFBRA |
1176 | /* 4652 */ MCD::OPC_FilterValue, 150, 1, 20, 0, 0, // Skip to: 4678 |
1177 | /* 4658 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4669 |
1178 | /* 4665 */ MCD::OPC_Decode, 198, 9, 105, // Opcode: CXFBR |
1179 | /* 4669 */ MCD::OPC_CheckPredicate, 2, 8, 24, 0, // Skip to: 10826 |
1180 | /* 4674 */ MCD::OPC_Decode, 199, 9, 102, // Opcode: CXFBRA |
1181 | /* 4678 */ MCD::OPC_FilterValue, 152, 1, 20, 0, 0, // Skip to: 4704 |
1182 | /* 4684 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4695 |
1183 | /* 4691 */ MCD::OPC_Decode, 216, 5, 106, // Opcode: CFEBR |
1184 | /* 4695 */ MCD::OPC_CheckPredicate, 2, 238, 23, 0, // Skip to: 10826 |
1185 | /* 4700 */ MCD::OPC_Decode, 217, 5, 107, // Opcode: CFEBRA |
1186 | /* 4704 */ MCD::OPC_FilterValue, 153, 1, 20, 0, 0, // Skip to: 4730 |
1187 | /* 4710 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4721 |
1188 | /* 4717 */ MCD::OPC_Decode, 212, 5, 108, // Opcode: CFDBR |
1189 | /* 4721 */ MCD::OPC_CheckPredicate, 2, 212, 23, 0, // Skip to: 10826 |
1190 | /* 4726 */ MCD::OPC_Decode, 213, 5, 109, // Opcode: CFDBRA |
1191 | /* 4730 */ MCD::OPC_FilterValue, 154, 1, 20, 0, 0, // Skip to: 4756 |
1192 | /* 4736 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4747 |
1193 | /* 4743 */ MCD::OPC_Decode, 220, 5, 110, // Opcode: CFXBR |
1194 | /* 4747 */ MCD::OPC_CheckPredicate, 2, 186, 23, 0, // Skip to: 10826 |
1195 | /* 4752 */ MCD::OPC_Decode, 221, 5, 111, // Opcode: CFXBRA |
1196 | /* 4756 */ MCD::OPC_FilterValue, 156, 1, 9, 0, 0, // Skip to: 4771 |
1197 | /* 4762 */ MCD::OPC_CheckPredicate, 2, 171, 23, 0, // Skip to: 10826 |
1198 | /* 4767 */ MCD::OPC_Decode, 136, 7, 107, // Opcode: CLFEBR |
1199 | /* 4771 */ MCD::OPC_FilterValue, 157, 1, 9, 0, 0, // Skip to: 4786 |
1200 | /* 4777 */ MCD::OPC_CheckPredicate, 2, 156, 23, 0, // Skip to: 10826 |
1201 | /* 4782 */ MCD::OPC_Decode, 134, 7, 109, // Opcode: CLFDBR |
1202 | /* 4786 */ MCD::OPC_FilterValue, 158, 1, 9, 0, 0, // Skip to: 4801 |
1203 | /* 4792 */ MCD::OPC_CheckPredicate, 2, 141, 23, 0, // Skip to: 10826 |
1204 | /* 4797 */ MCD::OPC_Decode, 153, 7, 111, // Opcode: CLFXBR |
1205 | /* 4801 */ MCD::OPC_FilterValue, 160, 1, 9, 0, 0, // Skip to: 4816 |
1206 | /* 4807 */ MCD::OPC_CheckPredicate, 2, 126, 23, 0, // Skip to: 10826 |
1207 | /* 4812 */ MCD::OPC_Decode, 208, 5, 112, // Opcode: CELGBR |
1208 | /* 4816 */ MCD::OPC_FilterValue, 161, 1, 9, 0, 0, // Skip to: 4831 |
1209 | /* 4822 */ MCD::OPC_CheckPredicate, 2, 111, 23, 0, // Skip to: 10826 |
1210 | /* 4827 */ MCD::OPC_Decode, 186, 5, 113, // Opcode: CDLGBR |
1211 | /* 4831 */ MCD::OPC_FilterValue, 162, 1, 9, 0, 0, // Skip to: 4846 |
1212 | /* 4837 */ MCD::OPC_CheckPredicate, 2, 96, 23, 0, // Skip to: 10826 |
1213 | /* 4842 */ MCD::OPC_Decode, 209, 9, 114, // Opcode: CXLGBR |
1214 | /* 4846 */ MCD::OPC_FilterValue, 164, 1, 20, 0, 0, // Skip to: 4872 |
1215 | /* 4852 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4863 |
1216 | /* 4859 */ MCD::OPC_Decode, 204, 5, 115, // Opcode: CEGBR |
1217 | /* 4863 */ MCD::OPC_CheckPredicate, 2, 70, 23, 0, // Skip to: 10826 |
1218 | /* 4868 */ MCD::OPC_Decode, 205, 5, 112, // Opcode: CEGBRA |
1219 | /* 4872 */ MCD::OPC_FilterValue, 165, 1, 20, 0, 0, // Skip to: 4898 |
1220 | /* 4878 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4889 |
1221 | /* 4885 */ MCD::OPC_Decode, 179, 5, 116, // Opcode: CDGBR |
1222 | /* 4889 */ MCD::OPC_CheckPredicate, 2, 44, 23, 0, // Skip to: 10826 |
1223 | /* 4894 */ MCD::OPC_Decode, 180, 5, 113, // Opcode: CDGBRA |
1224 | /* 4898 */ MCD::OPC_FilterValue, 166, 1, 20, 0, 0, // Skip to: 4924 |
1225 | /* 4904 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 4915 |
1226 | /* 4911 */ MCD::OPC_Decode, 202, 9, 117, // Opcode: CXGBR |
1227 | /* 4915 */ MCD::OPC_CheckPredicate, 2, 18, 23, 0, // Skip to: 10826 |
1228 | /* 4920 */ MCD::OPC_Decode, 203, 9, 114, // Opcode: CXGBRA |
1229 | /* 4924 */ MCD::OPC_FilterValue, 168, 1, 20, 0, 0, // Skip to: 4950 |
1230 | /* 4930 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4941 |
1231 | /* 4937 */ MCD::OPC_Decode, 230, 5, 118, // Opcode: CGEBR |
1232 | /* 4941 */ MCD::OPC_CheckPredicate, 2, 248, 22, 0, // Skip to: 10826 |
1233 | /* 4946 */ MCD::OPC_Decode, 231, 5, 119, // Opcode: CGEBRA |
1234 | /* 4950 */ MCD::OPC_FilterValue, 169, 1, 20, 0, 0, // Skip to: 4976 |
1235 | /* 4956 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4967 |
1236 | /* 4963 */ MCD::OPC_Decode, 225, 5, 120, // Opcode: CGDBR |
1237 | /* 4967 */ MCD::OPC_CheckPredicate, 2, 222, 22, 0, // Skip to: 10826 |
1238 | /* 4972 */ MCD::OPC_Decode, 226, 5, 121, // Opcode: CGDBRA |
1239 | /* 4976 */ MCD::OPC_FilterValue, 170, 1, 20, 0, 0, // Skip to: 5002 |
1240 | /* 4982 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4993 |
1241 | /* 4989 */ MCD::OPC_Decode, 199, 6, 122, // Opcode: CGXBR |
1242 | /* 4993 */ MCD::OPC_CheckPredicate, 2, 196, 22, 0, // Skip to: 10826 |
1243 | /* 4998 */ MCD::OPC_Decode, 200, 6, 123, // Opcode: CGXBRA |
1244 | /* 5002 */ MCD::OPC_FilterValue, 172, 1, 9, 0, 0, // Skip to: 5017 |
1245 | /* 5008 */ MCD::OPC_CheckPredicate, 2, 181, 22, 0, // Skip to: 10826 |
1246 | /* 5013 */ MCD::OPC_Decode, 158, 7, 119, // Opcode: CLGEBR |
1247 | /* 5017 */ MCD::OPC_FilterValue, 173, 1, 9, 0, 0, // Skip to: 5032 |
1248 | /* 5023 */ MCD::OPC_CheckPredicate, 2, 166, 22, 0, // Skip to: 10826 |
1249 | /* 5028 */ MCD::OPC_Decode, 156, 7, 121, // Opcode: CLGDBR |
1250 | /* 5032 */ MCD::OPC_FilterValue, 174, 1, 9, 0, 0, // Skip to: 5047 |
1251 | /* 5038 */ MCD::OPC_CheckPredicate, 2, 151, 22, 0, // Skip to: 10826 |
1252 | /* 5043 */ MCD::OPC_Decode, 137, 8, 123, // Opcode: CLGXBR |
1253 | /* 5047 */ MCD::OPC_FilterValue, 180, 1, 11, 0, 0, // Skip to: 5064 |
1254 | /* 5053 */ MCD::OPC_CheckField, 8, 8, 0, 134, 22, 0, // Skip to: 10826 |
1255 | /* 5060 */ MCD::OPC_Decode, 203, 5, 103, // Opcode: CEFR |
1256 | /* 5064 */ MCD::OPC_FilterValue, 181, 1, 11, 0, 0, // Skip to: 5081 |
1257 | /* 5070 */ MCD::OPC_CheckField, 8, 8, 0, 117, 22, 0, // Skip to: 10826 |
1258 | /* 5077 */ MCD::OPC_Decode, 177, 5, 104, // Opcode: CDFR |
1259 | /* 5081 */ MCD::OPC_FilterValue, 182, 1, 11, 0, 0, // Skip to: 5098 |
1260 | /* 5087 */ MCD::OPC_CheckField, 8, 8, 0, 100, 22, 0, // Skip to: 10826 |
1261 | /* 5094 */ MCD::OPC_Decode, 200, 9, 105, // Opcode: CXFR |
1262 | /* 5098 */ MCD::OPC_FilterValue, 184, 1, 11, 0, 0, // Skip to: 5115 |
1263 | /* 5104 */ MCD::OPC_CheckField, 8, 4, 0, 83, 22, 0, // Skip to: 10826 |
1264 | /* 5111 */ MCD::OPC_Decode, 218, 5, 106, // Opcode: CFER |
1265 | /* 5115 */ MCD::OPC_FilterValue, 185, 1, 11, 0, 0, // Skip to: 5132 |
1266 | /* 5121 */ MCD::OPC_CheckField, 8, 4, 0, 66, 22, 0, // Skip to: 10826 |
1267 | /* 5128 */ MCD::OPC_Decode, 214, 5, 108, // Opcode: CFDR |
1268 | /* 5132 */ MCD::OPC_FilterValue, 186, 1, 11, 0, 0, // Skip to: 5149 |
1269 | /* 5138 */ MCD::OPC_CheckField, 8, 4, 0, 49, 22, 0, // Skip to: 10826 |
1270 | /* 5145 */ MCD::OPC_Decode, 222, 5, 110, // Opcode: CFXR |
1271 | /* 5149 */ MCD::OPC_FilterValue, 193, 1, 11, 0, 0, // Skip to: 5166 |
1272 | /* 5155 */ MCD::OPC_CheckField, 8, 8, 0, 32, 22, 0, // Skip to: 10826 |
1273 | /* 5162 */ MCD::OPC_Decode, 195, 11, 116, // Opcode: LDGR |
1274 | /* 5166 */ MCD::OPC_FilterValue, 196, 1, 11, 0, 0, // Skip to: 5183 |
1275 | /* 5172 */ MCD::OPC_CheckField, 8, 8, 0, 15, 22, 0, // Skip to: 10826 |
1276 | /* 5179 */ MCD::OPC_Decode, 206, 5, 115, // Opcode: CEGR |
1277 | /* 5183 */ MCD::OPC_FilterValue, 197, 1, 11, 0, 0, // Skip to: 5200 |
1278 | /* 5189 */ MCD::OPC_CheckField, 8, 8, 0, 254, 21, 0, // Skip to: 10826 |
1279 | /* 5196 */ MCD::OPC_Decode, 181, 5, 116, // Opcode: CDGR |
1280 | /* 5200 */ MCD::OPC_FilterValue, 198, 1, 11, 0, 0, // Skip to: 5217 |
1281 | /* 5206 */ MCD::OPC_CheckField, 8, 8, 0, 237, 21, 0, // Skip to: 10826 |
1282 | /* 5213 */ MCD::OPC_Decode, 204, 9, 117, // Opcode: CXGR |
1283 | /* 5217 */ MCD::OPC_FilterValue, 200, 1, 11, 0, 0, // Skip to: 5234 |
1284 | /* 5223 */ MCD::OPC_CheckField, 8, 4, 0, 220, 21, 0, // Skip to: 10826 |
1285 | /* 5230 */ MCD::OPC_Decode, 232, 5, 118, // Opcode: CGER |
1286 | /* 5234 */ MCD::OPC_FilterValue, 201, 1, 11, 0, 0, // Skip to: 5251 |
1287 | /* 5240 */ MCD::OPC_CheckField, 8, 4, 0, 203, 21, 0, // Skip to: 10826 |
1288 | /* 5247 */ MCD::OPC_Decode, 227, 5, 120, // Opcode: CGDR |
1289 | /* 5251 */ MCD::OPC_FilterValue, 202, 1, 11, 0, 0, // Skip to: 5268 |
1290 | /* 5257 */ MCD::OPC_CheckField, 8, 4, 0, 186, 21, 0, // Skip to: 10826 |
1291 | /* 5264 */ MCD::OPC_Decode, 201, 6, 122, // Opcode: CGXR |
1292 | /* 5268 */ MCD::OPC_FilterValue, 205, 1, 11, 0, 0, // Skip to: 5285 |
1293 | /* 5274 */ MCD::OPC_CheckField, 8, 8, 0, 169, 21, 0, // Skip to: 10826 |
1294 | /* 5281 */ MCD::OPC_Decode, 221, 11, 124, // Opcode: LGDR |
1295 | /* 5285 */ MCD::OPC_FilterValue, 208, 1, 20, 0, 0, // Skip to: 5311 |
1296 | /* 5291 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5302 |
1297 | /* 5298 */ MCD::OPC_Decode, 186, 14, 96, // Opcode: MDTR |
1298 | /* 5302 */ MCD::OPC_CheckPredicate, 2, 143, 21, 0, // Skip to: 10826 |
1299 | /* 5307 */ MCD::OPC_Decode, 187, 14, 125, // Opcode: MDTRA |
1300 | /* 5311 */ MCD::OPC_FilterValue, 209, 1, 20, 0, 0, // Skip to: 5337 |
1301 | /* 5317 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5328 |
1302 | /* 5324 */ MCD::OPC_Decode, 225, 9, 96, // Opcode: DDTR |
1303 | /* 5328 */ MCD::OPC_CheckPredicate, 2, 117, 21, 0, // Skip to: 10826 |
1304 | /* 5333 */ MCD::OPC_Decode, 226, 9, 125, // Opcode: DDTRA |
1305 | /* 5337 */ MCD::OPC_FilterValue, 210, 1, 20, 0, 0, // Skip to: 5363 |
1306 | /* 5343 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5354 |
1307 | /* 5350 */ MCD::OPC_Decode, 138, 4, 96, // Opcode: ADTR |
1308 | /* 5354 */ MCD::OPC_CheckPredicate, 2, 91, 21, 0, // Skip to: 10826 |
1309 | /* 5359 */ MCD::OPC_Decode, 139, 4, 125, // Opcode: ADTRA |
1310 | /* 5363 */ MCD::OPC_FilterValue, 211, 1, 20, 0, 0, // Skip to: 5389 |
1311 | /* 5369 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5380 |
1312 | /* 5376 */ MCD::OPC_Decode, 129, 16, 96, // Opcode: SDTR |
1313 | /* 5380 */ MCD::OPC_CheckPredicate, 2, 65, 21, 0, // Skip to: 10826 |
1314 | /* 5385 */ MCD::OPC_Decode, 130, 16, 125, // Opcode: SDTRA |
1315 | /* 5389 */ MCD::OPC_FilterValue, 212, 1, 11, 0, 0, // Skip to: 5406 |
1316 | /* 5395 */ MCD::OPC_CheckField, 12, 4, 0, 48, 21, 0, // Skip to: 10826 |
1317 | /* 5402 */ MCD::OPC_Decode, 194, 11, 126, // Opcode: LDETR |
1318 | /* 5406 */ MCD::OPC_FilterValue, 213, 1, 4, 0, 0, // Skip to: 5416 |
1319 | /* 5412 */ MCD::OPC_Decode, 207, 11, 85, // Opcode: LEDTR |
1320 | /* 5416 */ MCD::OPC_FilterValue, 214, 1, 11, 0, 0, // Skip to: 5433 |
1321 | /* 5422 */ MCD::OPC_CheckField, 8, 8, 0, 21, 21, 0, // Skip to: 10826 |
1322 | /* 5429 */ MCD::OPC_Decode, 133, 14, 12, // Opcode: LTDTR |
1323 | /* 5433 */ MCD::OPC_FilterValue, 215, 1, 4, 0, 0, // Skip to: 5443 |
1324 | /* 5439 */ MCD::OPC_Decode, 149, 10, 94, // Opcode: FIDTR |
1325 | /* 5443 */ MCD::OPC_FilterValue, 216, 1, 21, 0, 0, // Skip to: 5470 |
1326 | /* 5449 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5460 |
1327 | /* 5456 */ MCD::OPC_Decode, 131, 15, 127, // Opcode: MXTR |
1328 | /* 5460 */ MCD::OPC_CheckPredicate, 2, 241, 20, 0, // Skip to: 10826 |
1329 | /* 5465 */ MCD::OPC_Decode, 132, 15, 128, 1, // Opcode: MXTRA |
1330 | /* 5470 */ MCD::OPC_FilterValue, 217, 1, 21, 0, 0, // Skip to: 5497 |
1331 | /* 5476 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5487 |
1332 | /* 5483 */ MCD::OPC_Decode, 247, 9, 127, // Opcode: DXTR |
1333 | /* 5487 */ MCD::OPC_CheckPredicate, 2, 214, 20, 0, // Skip to: 10826 |
1334 | /* 5492 */ MCD::OPC_Decode, 248, 9, 128, 1, // Opcode: DXTRA |
1335 | /* 5497 */ MCD::OPC_FilterValue, 218, 1, 21, 0, 0, // Skip to: 5524 |
1336 | /* 5503 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5514 |
1337 | /* 5510 */ MCD::OPC_Decode, 195, 4, 127, // Opcode: AXTR |
1338 | /* 5514 */ MCD::OPC_CheckPredicate, 2, 187, 20, 0, // Skip to: 10826 |
1339 | /* 5519 */ MCD::OPC_Decode, 196, 4, 128, 1, // Opcode: AXTRA |
1340 | /* 5524 */ MCD::OPC_FilterValue, 219, 1, 21, 0, 0, // Skip to: 5551 |
1341 | /* 5530 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5541 |
1342 | /* 5537 */ MCD::OPC_Decode, 155, 18, 127, // Opcode: SXTR |
1343 | /* 5541 */ MCD::OPC_CheckPredicate, 2, 160, 20, 0, // Skip to: 10826 |
1344 | /* 5546 */ MCD::OPC_Decode, 156, 18, 128, 1, // Opcode: SXTRA |
1345 | /* 5551 */ MCD::OPC_FilterValue, 220, 1, 12, 0, 0, // Skip to: 5569 |
1346 | /* 5557 */ MCD::OPC_CheckField, 12, 4, 0, 142, 20, 0, // Skip to: 10826 |
1347 | /* 5564 */ MCD::OPC_Decode, 150, 14, 129, 1, // Opcode: LXDTR |
1348 | /* 5569 */ MCD::OPC_FilterValue, 221, 1, 4, 0, 0, // Skip to: 5579 |
1349 | /* 5575 */ MCD::OPC_Decode, 201, 11, 86, // Opcode: LDXTR |
1350 | /* 5579 */ MCD::OPC_FilterValue, 222, 1, 11, 0, 0, // Skip to: 5596 |
1351 | /* 5585 */ MCD::OPC_CheckField, 8, 8, 0, 114, 20, 0, // Skip to: 10826 |
1352 | /* 5592 */ MCD::OPC_Decode, 143, 14, 81, // Opcode: LTXTR |
1353 | /* 5596 */ MCD::OPC_FilterValue, 223, 1, 4, 0, 0, // Skip to: 5606 |
1354 | /* 5602 */ MCD::OPC_Decode, 156, 10, 86, // Opcode: FIXTR |
1355 | /* 5606 */ MCD::OPC_FilterValue, 224, 1, 11, 0, 0, // Skip to: 5623 |
1356 | /* 5612 */ MCD::OPC_CheckField, 8, 8, 0, 87, 20, 0, // Skip to: 10826 |
1357 | /* 5619 */ MCD::OPC_Decode, 135, 11, 12, // Opcode: KDTR |
1358 | /* 5623 */ MCD::OPC_FilterValue, 225, 1, 20, 0, 0, // Skip to: 5649 |
1359 | /* 5629 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5640 |
1360 | /* 5636 */ MCD::OPC_Decode, 228, 5, 120, // Opcode: CGDTR |
1361 | /* 5640 */ MCD::OPC_CheckPredicate, 2, 61, 20, 0, // Skip to: 10826 |
1362 | /* 5645 */ MCD::OPC_Decode, 229, 5, 121, // Opcode: CGDTRA |
1363 | /* 5649 */ MCD::OPC_FilterValue, 226, 1, 11, 0, 0, // Skip to: 5666 |
1364 | /* 5655 */ MCD::OPC_CheckField, 8, 8, 0, 44, 20, 0, // Skip to: 10826 |
1365 | /* 5662 */ MCD::OPC_Decode, 184, 9, 124, // Opcode: CUDTR |
1366 | /* 5666 */ MCD::OPC_FilterValue, 227, 1, 12, 0, 0, // Skip to: 5684 |
1367 | /* 5672 */ MCD::OPC_CheckField, 12, 4, 0, 27, 20, 0, // Skip to: 10826 |
1368 | /* 5679 */ MCD::OPC_Decode, 167, 9, 130, 1, // Opcode: CSDTR |
1369 | /* 5684 */ MCD::OPC_FilterValue, 228, 1, 11, 0, 0, // Skip to: 5701 |
1370 | /* 5690 */ MCD::OPC_CheckField, 8, 8, 0, 9, 20, 0, // Skip to: 10826 |
1371 | /* 5697 */ MCD::OPC_Decode, 194, 5, 12, // Opcode: CDTR |
1372 | /* 5701 */ MCD::OPC_FilterValue, 229, 1, 11, 0, 0, // Skip to: 5718 |
1373 | /* 5707 */ MCD::OPC_CheckField, 8, 8, 0, 248, 19, 0, // Skip to: 10826 |
1374 | /* 5714 */ MCD::OPC_Decode, 128, 10, 12, // Opcode: EEDTR |
1375 | /* 5718 */ MCD::OPC_FilterValue, 231, 1, 11, 0, 0, // Skip to: 5735 |
1376 | /* 5724 */ MCD::OPC_CheckField, 8, 8, 0, 231, 19, 0, // Skip to: 10826 |
1377 | /* 5731 */ MCD::OPC_Decode, 139, 10, 12, // Opcode: ESDTR |
1378 | /* 5735 */ MCD::OPC_FilterValue, 232, 1, 11, 0, 0, // Skip to: 5752 |
1379 | /* 5741 */ MCD::OPC_CheckField, 8, 8, 0, 214, 19, 0, // Skip to: 10826 |
1380 | /* 5748 */ MCD::OPC_Decode, 148, 11, 81, // Opcode: KXTR |
1381 | /* 5752 */ MCD::OPC_FilterValue, 233, 1, 20, 0, 0, // Skip to: 5778 |
1382 | /* 5758 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 5769 |
1383 | /* 5765 */ MCD::OPC_Decode, 202, 6, 122, // Opcode: CGXTR |
1384 | /* 5769 */ MCD::OPC_CheckPredicate, 2, 188, 19, 0, // Skip to: 10826 |
1385 | /* 5774 */ MCD::OPC_Decode, 203, 6, 123, // Opcode: CGXTRA |
1386 | /* 5778 */ MCD::OPC_FilterValue, 234, 1, 12, 0, 0, // Skip to: 5796 |
1387 | /* 5784 */ MCD::OPC_CheckField, 8, 8, 0, 171, 19, 0, // Skip to: 10826 |
1388 | /* 5791 */ MCD::OPC_Decode, 190, 9, 131, 1, // Opcode: CUXTR |
1389 | /* 5796 */ MCD::OPC_FilterValue, 235, 1, 12, 0, 0, // Skip to: 5814 |
1390 | /* 5802 */ MCD::OPC_CheckField, 12, 4, 0, 153, 19, 0, // Skip to: 10826 |
1391 | /* 5809 */ MCD::OPC_Decode, 172, 9, 132, 1, // Opcode: CSXTR |
1392 | /* 5814 */ MCD::OPC_FilterValue, 236, 1, 11, 0, 0, // Skip to: 5831 |
1393 | /* 5820 */ MCD::OPC_CheckField, 8, 8, 0, 135, 19, 0, // Skip to: 10826 |
1394 | /* 5827 */ MCD::OPC_Decode, 214, 9, 81, // Opcode: CXTR |
1395 | /* 5831 */ MCD::OPC_FilterValue, 237, 1, 11, 0, 0, // Skip to: 5848 |
1396 | /* 5837 */ MCD::OPC_CheckField, 8, 8, 0, 118, 19, 0, // Skip to: 10826 |
1397 | /* 5844 */ MCD::OPC_Decode, 129, 10, 81, // Opcode: EEXTR |
1398 | /* 5848 */ MCD::OPC_FilterValue, 239, 1, 11, 0, 0, // Skip to: 5865 |
1399 | /* 5854 */ MCD::OPC_CheckField, 8, 8, 0, 101, 19, 0, // Skip to: 10826 |
1400 | /* 5861 */ MCD::OPC_Decode, 142, 10, 81, // Opcode: ESXTR |
1401 | /* 5865 */ MCD::OPC_FilterValue, 241, 1, 20, 0, 0, // Skip to: 5891 |
1402 | /* 5871 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 5882 |
1403 | /* 5878 */ MCD::OPC_Decode, 182, 5, 116, // Opcode: CDGTR |
1404 | /* 5882 */ MCD::OPC_CheckPredicate, 2, 75, 19, 0, // Skip to: 10826 |
1405 | /* 5887 */ MCD::OPC_Decode, 183, 5, 113, // Opcode: CDGTRA |
1406 | /* 5891 */ MCD::OPC_FilterValue, 242, 1, 11, 0, 0, // Skip to: 5908 |
1407 | /* 5897 */ MCD::OPC_CheckField, 8, 8, 0, 58, 19, 0, // Skip to: 10826 |
1408 | /* 5904 */ MCD::OPC_Decode, 195, 5, 116, // Opcode: CDUTR |
1409 | /* 5908 */ MCD::OPC_FilterValue, 243, 1, 11, 0, 0, // Skip to: 5925 |
1410 | /* 5914 */ MCD::OPC_CheckField, 8, 8, 0, 41, 19, 0, // Skip to: 10826 |
1411 | /* 5921 */ MCD::OPC_Decode, 192, 5, 116, // Opcode: CDSTR |
1412 | /* 5925 */ MCD::OPC_FilterValue, 244, 1, 11, 0, 0, // Skip to: 5942 |
1413 | /* 5931 */ MCD::OPC_CheckField, 8, 8, 0, 24, 19, 0, // Skip to: 10826 |
1414 | /* 5938 */ MCD::OPC_Decode, 200, 5, 12, // Opcode: CEDTR |
1415 | /* 5942 */ MCD::OPC_FilterValue, 245, 1, 4, 0, 0, // Skip to: 5952 |
1416 | /* 5948 */ MCD::OPC_Decode, 214, 15, 93, // Opcode: QADTR |
1417 | /* 5952 */ MCD::OPC_FilterValue, 246, 1, 11, 0, 0, // Skip to: 5969 |
1418 | /* 5958 */ MCD::OPC_CheckField, 8, 4, 0, 253, 18, 0, // Skip to: 10826 |
1419 | /* 5965 */ MCD::OPC_Decode, 171, 10, 96, // Opcode: IEDTR |
1420 | /* 5969 */ MCD::OPC_FilterValue, 247, 1, 4, 0, 0, // Skip to: 5979 |
1421 | /* 5975 */ MCD::OPC_Decode, 236, 15, 93, // Opcode: RRDTR |
1422 | /* 5979 */ MCD::OPC_FilterValue, 249, 1, 20, 0, 0, // Skip to: 6005 |
1423 | /* 5985 */ MCD::OPC_CheckField, 8, 8, 0, 4, 0, 0, // Skip to: 5996 |
1424 | /* 5992 */ MCD::OPC_Decode, 205, 9, 117, // Opcode: CXGTR |
1425 | /* 5996 */ MCD::OPC_CheckPredicate, 2, 217, 18, 0, // Skip to: 10826 |
1426 | /* 6001 */ MCD::OPC_Decode, 206, 9, 114, // Opcode: CXGTRA |
1427 | /* 6005 */ MCD::OPC_FilterValue, 250, 1, 12, 0, 0, // Skip to: 6023 |
1428 | /* 6011 */ MCD::OPC_CheckField, 8, 8, 0, 200, 18, 0, // Skip to: 10826 |
1429 | /* 6018 */ MCD::OPC_Decode, 215, 9, 133, 1, // Opcode: CXUTR |
1430 | /* 6023 */ MCD::OPC_FilterValue, 251, 1, 12, 0, 0, // Skip to: 6041 |
1431 | /* 6029 */ MCD::OPC_CheckField, 8, 8, 0, 182, 18, 0, // Skip to: 10826 |
1432 | /* 6036 */ MCD::OPC_Decode, 213, 9, 133, 1, // Opcode: CXSTR |
1433 | /* 6041 */ MCD::OPC_FilterValue, 252, 1, 11, 0, 0, // Skip to: 6058 |
1434 | /* 6047 */ MCD::OPC_CheckField, 8, 8, 0, 164, 18, 0, // Skip to: 10826 |
1435 | /* 6054 */ MCD::OPC_Decode, 210, 5, 81, // Opcode: CEXTR |
1436 | /* 6058 */ MCD::OPC_FilterValue, 253, 1, 5, 0, 0, // Skip to: 6069 |
1437 | /* 6064 */ MCD::OPC_Decode, 215, 15, 134, 1, // Opcode: QAXTR |
1438 | /* 6069 */ MCD::OPC_FilterValue, 254, 1, 11, 0, 0, // Skip to: 6086 |
1439 | /* 6075 */ MCD::OPC_CheckField, 8, 4, 0, 136, 18, 0, // Skip to: 10826 |
1440 | /* 6082 */ MCD::OPC_Decode, 172, 10, 127, // Opcode: IEXTR |
1441 | /* 6086 */ MCD::OPC_FilterValue, 255, 1, 126, 18, 0, // Skip to: 10826 |
1442 | /* 6092 */ MCD::OPC_Decode, 237, 15, 134, 1, // Opcode: RRXTR |
1443 | /* 6097 */ MCD::OPC_FilterValue, 182, 1, 5, 0, 0, // Skip to: 6108 |
1444 | /* 6103 */ MCD::OPC_Decode, 173, 17, 135, 1, // Opcode: STCTL |
1445 | /* 6108 */ MCD::OPC_FilterValue, 183, 1, 5, 0, 0, // Skip to: 6119 |
1446 | /* 6114 */ MCD::OPC_Decode, 184, 11, 135, 1, // Opcode: LCTL |
1447 | /* 6119 */ MCD::OPC_FilterValue, 185, 1, 39, 18, 0, // Skip to: 10772 |
1448 | /* 6125 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
1449 | /* 6128 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6144 |
1450 | /* 6133 */ MCD::OPC_CheckField, 8, 8, 0, 78, 18, 0, // Skip to: 10826 |
1451 | /* 6140 */ MCD::OPC_Decode, 235, 13, 63, // Opcode: LPGR |
1452 | /* 6144 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6160 |
1453 | /* 6149 */ MCD::OPC_CheckField, 8, 8, 0, 62, 18, 0, // Skip to: 10826 |
1454 | /* 6156 */ MCD::OPC_Decode, 151, 12, 63, // Opcode: LNGR |
1455 | /* 6160 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 6176 |
1456 | /* 6165 */ MCD::OPC_CheckField, 8, 8, 0, 46, 18, 0, // Skip to: 10826 |
1457 | /* 6172 */ MCD::OPC_Decode, 139, 14, 63, // Opcode: LTGR |
1458 | /* 6176 */ MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 6192 |
1459 | /* 6181 */ MCD::OPC_CheckField, 8, 8, 0, 30, 18, 0, // Skip to: 10826 |
1460 | /* 6188 */ MCD::OPC_Decode, 182, 11, 63, // Opcode: LCGR |
1461 | /* 6192 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 6208 |
1462 | /* 6197 */ MCD::OPC_CheckField, 8, 8, 0, 14, 18, 0, // Skip to: 10826 |
1463 | /* 6204 */ MCD::OPC_Decode, 231, 11, 63, // Opcode: LGR |
1464 | /* 6208 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 6224 |
1465 | /* 6213 */ MCD::OPC_CheckField, 8, 8, 0, 254, 17, 0, // Skip to: 10826 |
1466 | /* 6220 */ MCD::OPC_Decode, 145, 14, 63, // Opcode: LURAG |
1467 | /* 6224 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 6240 |
1468 | /* 6229 */ MCD::OPC_CheckField, 8, 8, 0, 238, 17, 0, // Skip to: 10826 |
1469 | /* 6236 */ MCD::OPC_Decode, 220, 11, 63, // Opcode: LGBR |
1470 | /* 6240 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 6256 |
1471 | /* 6245 */ MCD::OPC_CheckField, 8, 8, 0, 222, 17, 0, // Skip to: 10826 |
1472 | /* 6252 */ MCD::OPC_Decode, 229, 11, 63, // Opcode: LGHR |
1473 | /* 6256 */ MCD::OPC_FilterValue, 8, 12, 0, 0, // Skip to: 6273 |
1474 | /* 6261 */ MCD::OPC_CheckField, 8, 8, 0, 206, 17, 0, // Skip to: 10826 |
1475 | /* 6268 */ MCD::OPC_Decode, 152, 4, 136, 1, // Opcode: AGR |
1476 | /* 6273 */ MCD::OPC_FilterValue, 9, 12, 0, 0, // Skip to: 6290 |
1477 | /* 6278 */ MCD::OPC_CheckField, 8, 8, 0, 189, 17, 0, // Skip to: 10826 |
1478 | /* 6285 */ MCD::OPC_Decode, 207, 16, 136, 1, // Opcode: SGR |
1479 | /* 6290 */ MCD::OPC_FilterValue, 10, 12, 0, 0, // Skip to: 6307 |
1480 | /* 6295 */ MCD::OPC_CheckField, 8, 8, 0, 172, 17, 0, // Skip to: 10826 |
1481 | /* 6302 */ MCD::OPC_Decode, 173, 4, 136, 1, // Opcode: ALGR |
1482 | /* 6307 */ MCD::OPC_FilterValue, 11, 12, 0, 0, // Skip to: 6324 |
1483 | /* 6312 */ MCD::OPC_CheckField, 8, 8, 0, 155, 17, 0, // Skip to: 10826 |
1484 | /* 6319 */ MCD::OPC_Decode, 232, 16, 136, 1, // Opcode: SLGR |
1485 | /* 6324 */ MCD::OPC_FilterValue, 12, 12, 0, 0, // Skip to: 6341 |
1486 | /* 6329 */ MCD::OPC_CheckField, 8, 8, 0, 138, 17, 0, // Skip to: 10826 |
1487 | /* 6336 */ MCD::OPC_Decode, 225, 14, 136, 1, // Opcode: MSGR |
1488 | /* 6341 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 6357 |
1489 | /* 6346 */ MCD::OPC_CheckField, 8, 8, 0, 121, 17, 0, // Skip to: 10826 |
1490 | /* 6353 */ MCD::OPC_Decode, 244, 9, 70, // Opcode: DSGR |
1491 | /* 6357 */ MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 6373 |
1492 | /* 6362 */ MCD::OPC_CheckField, 8, 8, 0, 105, 17, 0, // Skip to: 10826 |
1493 | /* 6369 */ MCD::OPC_Decode, 136, 10, 63, // Opcode: EREGG |
1494 | /* 6373 */ MCD::OPC_FilterValue, 15, 11, 0, 0, // Skip to: 6389 |
1495 | /* 6378 */ MCD::OPC_CheckField, 8, 8, 0, 89, 17, 0, // Skip to: 10826 |
1496 | /* 6385 */ MCD::OPC_Decode, 254, 13, 63, // Opcode: LRVGR |
1497 | /* 6389 */ MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 6405 |
1498 | /* 6394 */ MCD::OPC_CheckField, 8, 8, 0, 73, 17, 0, // Skip to: 10826 |
1499 | /* 6401 */ MCD::OPC_Decode, 234, 13, 58, // Opcode: LPGFR |
1500 | /* 6405 */ MCD::OPC_FilterValue, 17, 11, 0, 0, // Skip to: 6421 |
1501 | /* 6410 */ MCD::OPC_CheckField, 8, 8, 0, 57, 17, 0, // Skip to: 10826 |
1502 | /* 6417 */ MCD::OPC_Decode, 150, 12, 58, // Opcode: LNGFR |
1503 | /* 6421 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 6437 |
1504 | /* 6426 */ MCD::OPC_CheckField, 8, 8, 0, 41, 17, 0, // Skip to: 10826 |
1505 | /* 6433 */ MCD::OPC_Decode, 138, 14, 58, // Opcode: LTGFR |
1506 | /* 6437 */ MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 6453 |
1507 | /* 6442 */ MCD::OPC_CheckField, 8, 8, 0, 25, 17, 0, // Skip to: 10826 |
1508 | /* 6449 */ MCD::OPC_Decode, 181, 11, 58, // Opcode: LCGFR |
1509 | /* 6453 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 6469 |
1510 | /* 6458 */ MCD::OPC_CheckField, 8, 8, 0, 9, 17, 0, // Skip to: 10826 |
1511 | /* 6465 */ MCD::OPC_Decode, 224, 11, 58, // Opcode: LGFR |
1512 | /* 6469 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 6485 |
1513 | /* 6474 */ MCD::OPC_CheckField, 8, 8, 0, 249, 16, 0, // Skip to: 10826 |
1514 | /* 6481 */ MCD::OPC_Decode, 247, 11, 58, // Opcode: LLGFR |
1515 | /* 6485 */ MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 6501 |
1516 | /* 6490 */ MCD::OPC_CheckField, 8, 8, 0, 233, 16, 0, // Skip to: 10826 |
1517 | /* 6497 */ MCD::OPC_Decode, 255, 11, 63, // Opcode: LLGTR |
1518 | /* 6501 */ MCD::OPC_FilterValue, 24, 12, 0, 0, // Skip to: 6518 |
1519 | /* 6506 */ MCD::OPC_CheckField, 8, 8, 0, 217, 16, 0, // Skip to: 10826 |
1520 | /* 6513 */ MCD::OPC_Decode, 148, 4, 137, 1, // Opcode: AGFR |
1521 | /* 6518 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 6535 |
1522 | /* 6523 */ MCD::OPC_CheckField, 8, 8, 0, 200, 16, 0, // Skip to: 10826 |
1523 | /* 6530 */ MCD::OPC_Decode, 205, 16, 137, 1, // Opcode: SGFR |
1524 | /* 6535 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 6552 |
1525 | /* 6540 */ MCD::OPC_CheckField, 8, 8, 0, 183, 16, 0, // Skip to: 10826 |
1526 | /* 6547 */ MCD::OPC_Decode, 171, 4, 137, 1, // Opcode: ALGFR |
1527 | /* 6552 */ MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 6569 |
1528 | /* 6557 */ MCD::OPC_CheckField, 8, 8, 0, 166, 16, 0, // Skip to: 10826 |
1529 | /* 6564 */ MCD::OPC_Decode, 231, 16, 137, 1, // Opcode: SLGFR |
1530 | /* 6569 */ MCD::OPC_FilterValue, 28, 12, 0, 0, // Skip to: 6586 |
1531 | /* 6574 */ MCD::OPC_CheckField, 8, 8, 0, 149, 16, 0, // Skip to: 10826 |
1532 | /* 6581 */ MCD::OPC_Decode, 224, 14, 137, 1, // Opcode: MSGFR |
1533 | /* 6586 */ MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 6602 |
1534 | /* 6591 */ MCD::OPC_CheckField, 8, 8, 0, 132, 16, 0, // Skip to: 10826 |
1535 | /* 6598 */ MCD::OPC_Decode, 243, 9, 11, // Opcode: DSGFR |
1536 | /* 6602 */ MCD::OPC_FilterValue, 30, 12, 0, 0, // Skip to: 6619 |
1537 | /* 6607 */ MCD::OPC_CheckField, 8, 8, 0, 116, 16, 0, // Skip to: 10826 |
1538 | /* 6614 */ MCD::OPC_Decode, 142, 11, 138, 1, // Opcode: KMAC |
1539 | /* 6619 */ MCD::OPC_FilterValue, 31, 11, 0, 0, // Skip to: 6635 |
1540 | /* 6624 */ MCD::OPC_CheckField, 8, 8, 0, 99, 16, 0, // Skip to: 10826 |
1541 | /* 6631 */ MCD::OPC_Decode, 128, 14, 9, // Opcode: LRVR |
1542 | /* 6635 */ MCD::OPC_FilterValue, 32, 11, 0, 0, // Skip to: 6651 |
1543 | /* 6640 */ MCD::OPC_CheckField, 8, 8, 0, 83, 16, 0, // Skip to: 10826 |
1544 | /* 6647 */ MCD::OPC_Decode, 155, 6, 63, // Opcode: CGR |
1545 | /* 6651 */ MCD::OPC_FilterValue, 33, 11, 0, 0, // Skip to: 6667 |
1546 | /* 6656 */ MCD::OPC_CheckField, 8, 8, 0, 67, 16, 0, // Skip to: 10826 |
1547 | /* 6663 */ MCD::OPC_Decode, 207, 7, 63, // Opcode: CLGR |
1548 | /* 6667 */ MCD::OPC_FilterValue, 37, 11, 0, 0, // Skip to: 6683 |
1549 | /* 6672 */ MCD::OPC_CheckField, 8, 8, 0, 51, 16, 0, // Skip to: 10826 |
1550 | /* 6679 */ MCD::OPC_Decode, 146, 18, 63, // Opcode: STURG |
1551 | /* 6683 */ MCD::OPC_FilterValue, 38, 11, 0, 0, // Skip to: 6699 |
1552 | /* 6688 */ MCD::OPC_CheckField, 8, 8, 0, 35, 16, 0, // Skip to: 10826 |
1553 | /* 6695 */ MCD::OPC_Decode, 172, 11, 9, // Opcode: LBR |
1554 | /* 6699 */ MCD::OPC_FilterValue, 39, 11, 0, 0, // Skip to: 6715 |
1555 | /* 6704 */ MCD::OPC_CheckField, 8, 8, 0, 19, 16, 0, // Skip to: 10826 |
1556 | /* 6711 */ MCD::OPC_Decode, 237, 11, 9, // Opcode: LHR |
1557 | /* 6715 */ MCD::OPC_FilterValue, 40, 16, 0, 0, // Skip to: 6736 |
1558 | /* 6720 */ MCD::OPC_CheckPredicate, 6, 5, 16, 0, // Skip to: 10826 |
1559 | /* 6725 */ MCD::OPC_CheckField, 0, 16, 0, 254, 15, 0, // Skip to: 10826 |
1560 | /* 6732 */ MCD::OPC_Decode, 193, 15, 0, // Opcode: PCKMO |
1561 | /* 6736 */ MCD::OPC_FilterValue, 41, 17, 0, 0, // Skip to: 6758 |
1562 | /* 6741 */ MCD::OPC_CheckPredicate, 7, 240, 15, 0, // Skip to: 10826 |
1563 | /* 6746 */ MCD::OPC_CheckField, 8, 4, 0, 233, 15, 0, // Skip to: 10826 |
1564 | /* 6753 */ MCD::OPC_Decode, 141, 11, 139, 1, // Opcode: KMA |
1565 | /* 6758 */ MCD::OPC_FilterValue, 42, 16, 0, 0, // Skip to: 6779 |
1566 | /* 6763 */ MCD::OPC_CheckPredicate, 8, 218, 15, 0, // Skip to: 10826 |
1567 | /* 6768 */ MCD::OPC_CheckField, 8, 8, 0, 211, 15, 0, // Skip to: 10826 |
1568 | /* 6775 */ MCD::OPC_Decode, 145, 11, 8, // Opcode: KMF |
1569 | /* 6779 */ MCD::OPC_FilterValue, 43, 16, 0, 0, // Skip to: 6800 |
1570 | /* 6784 */ MCD::OPC_CheckPredicate, 8, 197, 15, 0, // Skip to: 10826 |
1571 | /* 6789 */ MCD::OPC_CheckField, 8, 8, 0, 190, 15, 0, // Skip to: 10826 |
1572 | /* 6796 */ MCD::OPC_Decode, 146, 11, 8, // Opcode: KMO |
1573 | /* 6800 */ MCD::OPC_FilterValue, 44, 16, 0, 0, // Skip to: 6821 |
1574 | /* 6805 */ MCD::OPC_CheckPredicate, 8, 176, 15, 0, // Skip to: 10826 |
1575 | /* 6810 */ MCD::OPC_CheckField, 0, 16, 0, 169, 15, 0, // Skip to: 10826 |
1576 | /* 6817 */ MCD::OPC_Decode, 192, 15, 0, // Opcode: PCC |
1577 | /* 6821 */ MCD::OPC_FilterValue, 45, 17, 0, 0, // Skip to: 6843 |
1578 | /* 6826 */ MCD::OPC_CheckPredicate, 8, 155, 15, 0, // Skip to: 10826 |
1579 | /* 6831 */ MCD::OPC_CheckField, 8, 4, 0, 148, 15, 0, // Skip to: 10826 |
1580 | /* 6838 */ MCD::OPC_Decode, 144, 11, 139, 1, // Opcode: KMCTR |
1581 | /* 6843 */ MCD::OPC_FilterValue, 46, 11, 0, 0, // Skip to: 6859 |
1582 | /* 6848 */ MCD::OPC_CheckField, 8, 8, 0, 131, 15, 0, // Skip to: 10826 |
1583 | /* 6855 */ MCD::OPC_Decode, 140, 11, 8, // Opcode: KM |
1584 | /* 6859 */ MCD::OPC_FilterValue, 47, 11, 0, 0, // Skip to: 6875 |
1585 | /* 6864 */ MCD::OPC_CheckField, 8, 8, 0, 115, 15, 0, // Skip to: 10826 |
1586 | /* 6871 */ MCD::OPC_Decode, 143, 11, 8, // Opcode: KMC |
1587 | /* 6875 */ MCD::OPC_FilterValue, 48, 11, 0, 0, // Skip to: 6891 |
1588 | /* 6880 */ MCD::OPC_CheckField, 8, 8, 0, 99, 15, 0, // Skip to: 10826 |
1589 | /* 6887 */ MCD::OPC_Decode, 235, 5, 58, // Opcode: CGFR |
1590 | /* 6891 */ MCD::OPC_FilterValue, 49, 11, 0, 0, // Skip to: 6907 |
1591 | /* 6896 */ MCD::OPC_CheckField, 8, 8, 0, 83, 15, 0, // Skip to: 10826 |
1592 | /* 6903 */ MCD::OPC_Decode, 161, 7, 58, // Opcode: CLGFR |
1593 | /* 6907 */ MCD::OPC_FilterValue, 56, 16, 0, 0, // Skip to: 6928 |
1594 | /* 6912 */ MCD::OPC_CheckPredicate, 9, 69, 15, 0, // Skip to: 10826 |
1595 | /* 6917 */ MCD::OPC_CheckField, 8, 8, 0, 62, 15, 0, // Skip to: 10826 |
1596 | /* 6924 */ MCD::OPC_Decode, 243, 16, 8, // Opcode: SORTL |
1597 | /* 6928 */ MCD::OPC_FilterValue, 57, 17, 0, 0, // Skip to: 6950 |
1598 | /* 6933 */ MCD::OPC_CheckPredicate, 10, 48, 15, 0, // Skip to: 10826 |
1599 | /* 6938 */ MCD::OPC_CheckField, 8, 4, 0, 41, 15, 0, // Skip to: 10826 |
1600 | /* 6945 */ MCD::OPC_Decode, 231, 9, 140, 1, // Opcode: DFLTCC |
1601 | /* 6950 */ MCD::OPC_FilterValue, 58, 17, 0, 0, // Skip to: 6972 |
1602 | /* 6955 */ MCD::OPC_CheckPredicate, 11, 26, 15, 0, // Skip to: 10826 |
1603 | /* 6960 */ MCD::OPC_CheckField, 8, 8, 0, 19, 15, 0, // Skip to: 10826 |
1604 | /* 6967 */ MCD::OPC_Decode, 134, 11, 138, 1, // Opcode: KDSA |
1605 | /* 6972 */ MCD::OPC_FilterValue, 59, 16, 0, 0, // Skip to: 6993 |
1606 | /* 6977 */ MCD::OPC_CheckPredicate, 12, 4, 15, 0, // Skip to: 10826 |
1607 | /* 6982 */ MCD::OPC_CheckField, 0, 16, 0, 253, 14, 0, // Skip to: 10826 |
1608 | /* 6989 */ MCD::OPC_Decode, 156, 15, 0, // Opcode: NNPA |
1609 | /* 6993 */ MCD::OPC_FilterValue, 60, 16, 0, 0, // Skip to: 7014 |
1610 | /* 6998 */ MCD::OPC_CheckPredicate, 13, 239, 14, 0, // Skip to: 10826 |
1611 | /* 7003 */ MCD::OPC_CheckField, 8, 8, 0, 232, 14, 0, // Skip to: 10826 |
1612 | /* 7010 */ MCD::OPC_Decode, 206, 15, 8, // Opcode: PPNO |
1613 | /* 7014 */ MCD::OPC_FilterValue, 62, 12, 0, 0, // Skip to: 7031 |
1614 | /* 7019 */ MCD::OPC_CheckField, 8, 8, 0, 216, 14, 0, // Skip to: 10826 |
1615 | /* 7026 */ MCD::OPC_Decode, 138, 11, 138, 1, // Opcode: KIMD |
1616 | /* 7031 */ MCD::OPC_FilterValue, 63, 12, 0, 0, // Skip to: 7048 |
1617 | /* 7036 */ MCD::OPC_CheckField, 8, 8, 0, 199, 14, 0, // Skip to: 10826 |
1618 | /* 7043 */ MCD::OPC_Decode, 139, 11, 138, 1, // Opcode: KLMD |
1619 | /* 7048 */ MCD::OPC_FilterValue, 65, 9, 0, 0, // Skip to: 7062 |
1620 | /* 7053 */ MCD::OPC_CheckPredicate, 2, 184, 14, 0, // Skip to: 10826 |
1621 | /* 7058 */ MCD::OPC_Decode, 215, 5, 109, // Opcode: CFDTR |
1622 | /* 7062 */ MCD::OPC_FilterValue, 66, 9, 0, 0, // Skip to: 7076 |
1623 | /* 7067 */ MCD::OPC_CheckPredicate, 2, 170, 14, 0, // Skip to: 10826 |
1624 | /* 7072 */ MCD::OPC_Decode, 157, 7, 121, // Opcode: CLGDTR |
1625 | /* 7076 */ MCD::OPC_FilterValue, 67, 9, 0, 0, // Skip to: 7090 |
1626 | /* 7081 */ MCD::OPC_CheckPredicate, 2, 156, 14, 0, // Skip to: 10826 |
1627 | /* 7086 */ MCD::OPC_Decode, 135, 7, 109, // Opcode: CLFDTR |
1628 | /* 7090 */ MCD::OPC_FilterValue, 70, 12, 0, 0, // Skip to: 7107 |
1629 | /* 7095 */ MCD::OPC_CheckField, 8, 8, 0, 140, 14, 0, // Skip to: 10826 |
1630 | /* 7102 */ MCD::OPC_Decode, 231, 4, 136, 1, // Opcode: BCTGR |
1631 | /* 7107 */ MCD::OPC_FilterValue, 73, 9, 0, 0, // Skip to: 7121 |
1632 | /* 7112 */ MCD::OPC_CheckPredicate, 2, 125, 14, 0, // Skip to: 10826 |
1633 | /* 7117 */ MCD::OPC_Decode, 223, 5, 111, // Opcode: CFXTR |
1634 | /* 7121 */ MCD::OPC_FilterValue, 74, 9, 0, 0, // Skip to: 7135 |
1635 | /* 7126 */ MCD::OPC_CheckPredicate, 2, 111, 14, 0, // Skip to: 10826 |
1636 | /* 7131 */ MCD::OPC_Decode, 138, 8, 123, // Opcode: CLGXTR |
1637 | /* 7135 */ MCD::OPC_FilterValue, 75, 9, 0, 0, // Skip to: 7149 |
1638 | /* 7140 */ MCD::OPC_CheckPredicate, 2, 97, 14, 0, // Skip to: 10826 |
1639 | /* 7145 */ MCD::OPC_Decode, 154, 7, 111, // Opcode: CLFXTR |
1640 | /* 7149 */ MCD::OPC_FilterValue, 81, 9, 0, 0, // Skip to: 7163 |
1641 | /* 7154 */ MCD::OPC_CheckPredicate, 2, 83, 14, 0, // Skip to: 10826 |
1642 | /* 7159 */ MCD::OPC_Decode, 178, 5, 101, // Opcode: CDFTR |
1643 | /* 7163 */ MCD::OPC_FilterValue, 82, 9, 0, 0, // Skip to: 7177 |
1644 | /* 7168 */ MCD::OPC_CheckPredicate, 2, 69, 14, 0, // Skip to: 10826 |
1645 | /* 7173 */ MCD::OPC_Decode, 187, 5, 113, // Opcode: CDLGTR |
1646 | /* 7177 */ MCD::OPC_FilterValue, 83, 9, 0, 0, // Skip to: 7191 |
1647 | /* 7182 */ MCD::OPC_CheckPredicate, 2, 55, 14, 0, // Skip to: 10826 |
1648 | /* 7187 */ MCD::OPC_Decode, 185, 5, 101, // Opcode: CDLFTR |
1649 | /* 7191 */ MCD::OPC_FilterValue, 89, 9, 0, 0, // Skip to: 7205 |
1650 | /* 7196 */ MCD::OPC_CheckPredicate, 2, 41, 14, 0, // Skip to: 10826 |
1651 | /* 7201 */ MCD::OPC_Decode, 201, 9, 102, // Opcode: CXFTR |
1652 | /* 7205 */ MCD::OPC_FilterValue, 90, 9, 0, 0, // Skip to: 7219 |
1653 | /* 7210 */ MCD::OPC_CheckPredicate, 2, 27, 14, 0, // Skip to: 10826 |
1654 | /* 7215 */ MCD::OPC_Decode, 210, 9, 114, // Opcode: CXLGTR |
1655 | /* 7219 */ MCD::OPC_FilterValue, 91, 9, 0, 0, // Skip to: 7233 |
1656 | /* 7224 */ MCD::OPC_CheckPredicate, 2, 13, 14, 0, // Skip to: 10826 |
1657 | /* 7229 */ MCD::OPC_Decode, 208, 9, 102, // Opcode: CXLFTR |
1658 | /* 7233 */ MCD::OPC_FilterValue, 96, 69, 0, 0, // Skip to: 7307 |
1659 | /* 7238 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1660 | /* 7241 */ MCD::OPC_FilterValue, 0, 252, 13, 0, // Skip to: 10826 |
1661 | /* 7246 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1662 | /* 7249 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 7258 |
1663 | /* 7254 */ MCD::OPC_Decode, 188, 6, 63, // Opcode: CGRTAsmH |
1664 | /* 7258 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 7267 |
1665 | /* 7263 */ MCD::OPC_Decode, 190, 6, 63, // Opcode: CGRTAsmL |
1666 | /* 7267 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 7276 |
1667 | /* 7272 */ MCD::OPC_Decode, 192, 6, 63, // Opcode: CGRTAsmLH |
1668 | /* 7276 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 7285 |
1669 | /* 7281 */ MCD::OPC_Decode, 187, 6, 63, // Opcode: CGRTAsmE |
1670 | /* 7285 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7294 |
1671 | /* 7290 */ MCD::OPC_Decode, 189, 6, 63, // Opcode: CGRTAsmHE |
1672 | /* 7294 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 7303 |
1673 | /* 7299 */ MCD::OPC_Decode, 191, 6, 63, // Opcode: CGRTAsmLE |
1674 | /* 7303 */ MCD::OPC_Decode, 186, 6, 75, // Opcode: CGRTAsm |
1675 | /* 7307 */ MCD::OPC_FilterValue, 97, 69, 0, 0, // Skip to: 7381 |
1676 | /* 7312 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1677 | /* 7315 */ MCD::OPC_FilterValue, 0, 178, 13, 0, // Skip to: 10826 |
1678 | /* 7320 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1679 | /* 7323 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 7332 |
1680 | /* 7328 */ MCD::OPC_Decode, 240, 7, 63, // Opcode: CLGRTAsmH |
1681 | /* 7332 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 7341 |
1682 | /* 7337 */ MCD::OPC_Decode, 242, 7, 63, // Opcode: CLGRTAsmL |
1683 | /* 7341 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 7350 |
1684 | /* 7346 */ MCD::OPC_Decode, 244, 7, 63, // Opcode: CLGRTAsmLH |
1685 | /* 7350 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 7359 |
1686 | /* 7355 */ MCD::OPC_Decode, 239, 7, 63, // Opcode: CLGRTAsmE |
1687 | /* 7359 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7368 |
1688 | /* 7364 */ MCD::OPC_Decode, 241, 7, 63, // Opcode: CLGRTAsmHE |
1689 | /* 7368 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 7377 |
1690 | /* 7373 */ MCD::OPC_Decode, 243, 7, 63, // Opcode: CLGRTAsmLE |
1691 | /* 7377 */ MCD::OPC_Decode, 238, 7, 75, // Opcode: CLGRTAsm |
1692 | /* 7381 */ MCD::OPC_FilterValue, 100, 17, 0, 0, // Skip to: 7403 |
1693 | /* 7386 */ MCD::OPC_CheckPredicate, 14, 107, 13, 0, // Skip to: 10826 |
1694 | /* 7391 */ MCD::OPC_CheckField, 8, 4, 0, 100, 13, 0, // Skip to: 10826 |
1695 | /* 7398 */ MCD::OPC_Decode, 155, 15, 141, 1, // Opcode: NNGRK |
1696 | /* 7403 */ MCD::OPC_FilterValue, 101, 17, 0, 0, // Skip to: 7425 |
1697 | /* 7408 */ MCD::OPC_CheckPredicate, 14, 85, 13, 0, // Skip to: 10826 |
1698 | /* 7413 */ MCD::OPC_CheckField, 8, 4, 0, 78, 13, 0, // Skip to: 10826 |
1699 | /* 7420 */ MCD::OPC_Decode, 173, 15, 141, 1, // Opcode: OCGRK |
1700 | /* 7425 */ MCD::OPC_FilterValue, 102, 17, 0, 0, // Skip to: 7447 |
1701 | /* 7430 */ MCD::OPC_CheckPredicate, 14, 63, 13, 0, // Skip to: 10826 |
1702 | /* 7435 */ MCD::OPC_CheckField, 8, 4, 0, 56, 13, 0, // Skip to: 10826 |
1703 | /* 7442 */ MCD::OPC_Decode, 158, 15, 141, 1, // Opcode: NOGRK |
1704 | /* 7447 */ MCD::OPC_FilterValue, 103, 17, 0, 0, // Skip to: 7469 |
1705 | /* 7452 */ MCD::OPC_CheckPredicate, 14, 41, 13, 0, // Skip to: 10826 |
1706 | /* 7457 */ MCD::OPC_CheckField, 8, 4, 0, 34, 13, 0, // Skip to: 10826 |
1707 | /* 7464 */ MCD::OPC_Decode, 168, 15, 141, 1, // Opcode: NXGRK |
1708 | /* 7469 */ MCD::OPC_FilterValue, 114, 70, 0, 0, // Skip to: 7544 |
1709 | /* 7474 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1710 | /* 7477 */ MCD::OPC_FilterValue, 0, 16, 13, 0, // Skip to: 10826 |
1711 | /* 7482 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1712 | /* 7485 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 7494 |
1713 | /* 7490 */ MCD::OPC_Decode, 154, 9, 9, // Opcode: CRTAsmH |
1714 | /* 7494 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 7503 |
1715 | /* 7499 */ MCD::OPC_Decode, 156, 9, 9, // Opcode: CRTAsmL |
1716 | /* 7503 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 7512 |
1717 | /* 7508 */ MCD::OPC_Decode, 158, 9, 9, // Opcode: CRTAsmLH |
1718 | /* 7512 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 7521 |
1719 | /* 7517 */ MCD::OPC_Decode, 153, 9, 9, // Opcode: CRTAsmE |
1720 | /* 7521 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7530 |
1721 | /* 7526 */ MCD::OPC_Decode, 155, 9, 9, // Opcode: CRTAsmHE |
1722 | /* 7530 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 7539 |
1723 | /* 7535 */ MCD::OPC_Decode, 157, 9, 9, // Opcode: CRTAsmLE |
1724 | /* 7539 */ MCD::OPC_Decode, 152, 9, 142, 1, // Opcode: CRTAsm |
1725 | /* 7544 */ MCD::OPC_FilterValue, 115, 70, 0, 0, // Skip to: 7619 |
1726 | /* 7549 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1727 | /* 7552 */ MCD::OPC_FilterValue, 0, 197, 12, 0, // Skip to: 10826 |
1728 | /* 7557 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1729 | /* 7560 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 7569 |
1730 | /* 7565 */ MCD::OPC_Decode, 211, 8, 9, // Opcode: CLRTAsmH |
1731 | /* 7569 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 7578 |
1732 | /* 7574 */ MCD::OPC_Decode, 213, 8, 9, // Opcode: CLRTAsmL |
1733 | /* 7578 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 7587 |
1734 | /* 7583 */ MCD::OPC_Decode, 215, 8, 9, // Opcode: CLRTAsmLH |
1735 | /* 7587 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 7596 |
1736 | /* 7592 */ MCD::OPC_Decode, 210, 8, 9, // Opcode: CLRTAsmE |
1737 | /* 7596 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7605 |
1738 | /* 7601 */ MCD::OPC_Decode, 212, 8, 9, // Opcode: CLRTAsmHE |
1739 | /* 7605 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 7614 |
1740 | /* 7610 */ MCD::OPC_Decode, 214, 8, 9, // Opcode: CLRTAsmLE |
1741 | /* 7614 */ MCD::OPC_Decode, 209, 8, 142, 1, // Opcode: CLRTAsm |
1742 | /* 7619 */ MCD::OPC_FilterValue, 116, 17, 0, 0, // Skip to: 7641 |
1743 | /* 7624 */ MCD::OPC_CheckPredicate, 14, 125, 12, 0, // Skip to: 10826 |
1744 | /* 7629 */ MCD::OPC_CheckField, 8, 4, 0, 118, 12, 0, // Skip to: 10826 |
1745 | /* 7636 */ MCD::OPC_Decode, 157, 15, 143, 1, // Opcode: NNRK |
1746 | /* 7641 */ MCD::OPC_FilterValue, 117, 17, 0, 0, // Skip to: 7663 |
1747 | /* 7646 */ MCD::OPC_CheckPredicate, 14, 103, 12, 0, // Skip to: 10826 |
1748 | /* 7651 */ MCD::OPC_CheckField, 8, 4, 0, 96, 12, 0, // Skip to: 10826 |
1749 | /* 7658 */ MCD::OPC_Decode, 174, 15, 143, 1, // Opcode: OCRK |
1750 | /* 7663 */ MCD::OPC_FilterValue, 118, 17, 0, 0, // Skip to: 7685 |
1751 | /* 7668 */ MCD::OPC_CheckPredicate, 14, 81, 12, 0, // Skip to: 10826 |
1752 | /* 7673 */ MCD::OPC_CheckField, 8, 4, 0, 74, 12, 0, // Skip to: 10826 |
1753 | /* 7680 */ MCD::OPC_Decode, 162, 15, 143, 1, // Opcode: NORK |
1754 | /* 7685 */ MCD::OPC_FilterValue, 119, 17, 0, 0, // Skip to: 7707 |
1755 | /* 7690 */ MCD::OPC_CheckPredicate, 14, 59, 12, 0, // Skip to: 10826 |
1756 | /* 7695 */ MCD::OPC_CheckField, 8, 4, 0, 52, 12, 0, // Skip to: 10826 |
1757 | /* 7702 */ MCD::OPC_Decode, 169, 15, 143, 1, // Opcode: NXRK |
1758 | /* 7707 */ MCD::OPC_FilterValue, 128, 1, 12, 0, 0, // Skip to: 7725 |
1759 | /* 7713 */ MCD::OPC_CheckField, 8, 8, 0, 34, 12, 0, // Skip to: 10826 |
1760 | /* 7720 */ MCD::OPC_Decode, 144, 15, 136, 1, // Opcode: NGR |
1761 | /* 7725 */ MCD::OPC_FilterValue, 129, 1, 12, 0, 0, // Skip to: 7743 |
1762 | /* 7731 */ MCD::OPC_CheckField, 8, 8, 0, 16, 12, 0, // Skip to: 10826 |
1763 | /* 7738 */ MCD::OPC_Decode, 176, 15, 136, 1, // Opcode: OGR |
1764 | /* 7743 */ MCD::OPC_FilterValue, 130, 1, 12, 0, 0, // Skip to: 7761 |
1765 | /* 7749 */ MCD::OPC_CheckField, 8, 8, 0, 254, 11, 0, // Skip to: 10826 |
1766 | /* 7756 */ MCD::OPC_Decode, 181, 24, 136, 1, // Opcode: XGR |
1767 | /* 7761 */ MCD::OPC_FilterValue, 131, 1, 12, 0, 0, // Skip to: 7779 |
1768 | /* 7767 */ MCD::OPC_CheckField, 8, 8, 0, 236, 11, 0, // Skip to: 10826 |
1769 | /* 7774 */ MCD::OPC_Decode, 157, 10, 144, 1, // Opcode: FLOGR |
1770 | /* 7779 */ MCD::OPC_FilterValue, 132, 1, 11, 0, 0, // Skip to: 7796 |
1771 | /* 7785 */ MCD::OPC_CheckField, 8, 8, 0, 218, 11, 0, // Skip to: 10826 |
1772 | /* 7792 */ MCD::OPC_Decode, 244, 11, 63, // Opcode: LLGCR |
1773 | /* 7796 */ MCD::OPC_FilterValue, 133, 1, 11, 0, 0, // Skip to: 7813 |
1774 | /* 7802 */ MCD::OPC_CheckField, 8, 8, 0, 201, 11, 0, // Skip to: 10826 |
1775 | /* 7809 */ MCD::OPC_Decode, 251, 11, 63, // Opcode: LLGHR |
1776 | /* 7813 */ MCD::OPC_FilterValue, 134, 1, 11, 0, 0, // Skip to: 7830 |
1777 | /* 7819 */ MCD::OPC_CheckField, 8, 8, 0, 184, 11, 0, // Skip to: 10826 |
1778 | /* 7826 */ MCD::OPC_Decode, 204, 14, 70, // Opcode: MLGR |
1779 | /* 7830 */ MCD::OPC_FilterValue, 135, 1, 11, 0, 0, // Skip to: 7847 |
1780 | /* 7836 */ MCD::OPC_CheckField, 8, 8, 0, 167, 11, 0, // Skip to: 10826 |
1781 | /* 7843 */ MCD::OPC_Decode, 237, 9, 70, // Opcode: DLGR |
1782 | /* 7847 */ MCD::OPC_FilterValue, 136, 1, 12, 0, 0, // Skip to: 7865 |
1783 | /* 7853 */ MCD::OPC_CheckField, 8, 8, 0, 150, 11, 0, // Skip to: 10826 |
1784 | /* 7860 */ MCD::OPC_Decode, 165, 4, 136, 1, // Opcode: ALCGR |
1785 | /* 7865 */ MCD::OPC_FilterValue, 137, 1, 12, 0, 0, // Skip to: 7883 |
1786 | /* 7871 */ MCD::OPC_CheckField, 8, 8, 0, 132, 11, 0, // Skip to: 10826 |
1787 | /* 7878 */ MCD::OPC_Decode, 222, 16, 136, 1, // Opcode: SLBGR |
1788 | /* 7883 */ MCD::OPC_FilterValue, 138, 1, 11, 0, 0, // Skip to: 7900 |
1789 | /* 7889 */ MCD::OPC_CheckField, 8, 8, 0, 114, 11, 0, // Skip to: 10826 |
1790 | /* 7896 */ MCD::OPC_Decode, 170, 9, 70, // Opcode: CSPG |
1791 | /* 7900 */ MCD::OPC_FilterValue, 139, 1, 27, 0, 0, // Skip to: 7933 |
1792 | /* 7906 */ MCD::OPC_CheckPredicate, 15, 12, 0, 0, // Skip to: 7923 |
1793 | /* 7911 */ MCD::OPC_CheckField, 8, 4, 0, 5, 0, 0, // Skip to: 7923 |
1794 | /* 7918 */ MCD::OPC_Decode, 221, 15, 141, 1, // Opcode: RDPOpt |
1795 | /* 7923 */ MCD::OPC_CheckPredicate, 15, 82, 11, 0, // Skip to: 10826 |
1796 | /* 7928 */ MCD::OPC_Decode, 220, 15, 145, 1, // Opcode: RDP |
1797 | /* 7933 */ MCD::OPC_FilterValue, 141, 1, 11, 0, 0, // Skip to: 7950 |
1798 | /* 7939 */ MCD::OPC_CheckField, 8, 8, 0, 64, 11, 0, // Skip to: 10826 |
1799 | /* 7946 */ MCD::OPC_Decode, 134, 10, 9, // Opcode: EPSW |
1800 | /* 7950 */ MCD::OPC_FilterValue, 142, 1, 17, 0, 0, // Skip to: 7973 |
1801 | /* 7956 */ MCD::OPC_CheckField, 8, 4, 0, 5, 0, 0, // Skip to: 7968 |
1802 | /* 7963 */ MCD::OPC_Decode, 170, 10, 141, 1, // Opcode: IDTEOpt |
1803 | /* 7968 */ MCD::OPC_Decode, 169, 10, 145, 1, // Opcode: IDTE |
1804 | /* 7973 */ MCD::OPC_FilterValue, 143, 1, 27, 0, 0, // Skip to: 8006 |
1805 | /* 7979 */ MCD::OPC_CheckPredicate, 16, 12, 0, 0, // Skip to: 7996 |
1806 | /* 7984 */ MCD::OPC_CheckField, 8, 4, 0, 5, 0, 0, // Skip to: 7996 |
1807 | /* 7991 */ MCD::OPC_Decode, 135, 9, 146, 1, // Opcode: CRDTEOpt |
1808 | /* 7996 */ MCD::OPC_CheckPredicate, 16, 9, 11, 0, // Skip to: 10826 |
1809 | /* 8001 */ MCD::OPC_Decode, 134, 9, 147, 1, // Opcode: CRDTE |
1810 | /* 8006 */ MCD::OPC_FilterValue, 144, 1, 24, 0, 0, // Skip to: 8036 |
1811 | /* 8012 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1812 | /* 8015 */ MCD::OPC_FilterValue, 0, 246, 10, 0, // Skip to: 10826 |
1813 | /* 8020 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8031 |
1814 | /* 8027 */ MCD::OPC_Decode, 207, 18, 73, // Opcode: TRTTOpt |
1815 | /* 8031 */ MCD::OPC_Decode, 206, 18, 148, 1, // Opcode: TRTT |
1816 | /* 8036 */ MCD::OPC_FilterValue, 145, 1, 24, 0, 0, // Skip to: 8066 |
1817 | /* 8042 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1818 | /* 8045 */ MCD::OPC_FilterValue, 0, 216, 10, 0, // Skip to: 10826 |
1819 | /* 8050 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8061 |
1820 | /* 8057 */ MCD::OPC_Decode, 202, 18, 73, // Opcode: TRTOOpt |
1821 | /* 8061 */ MCD::OPC_Decode, 201, 18, 148, 1, // Opcode: TRTO |
1822 | /* 8066 */ MCD::OPC_FilterValue, 146, 1, 24, 0, 0, // Skip to: 8096 |
1823 | /* 8072 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1824 | /* 8075 */ MCD::OPC_FilterValue, 0, 186, 10, 0, // Skip to: 10826 |
1825 | /* 8080 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8091 |
1826 | /* 8087 */ MCD::OPC_Decode, 197, 18, 73, // Opcode: TROTOpt |
1827 | /* 8091 */ MCD::OPC_Decode, 196, 18, 148, 1, // Opcode: TROT |
1828 | /* 8096 */ MCD::OPC_FilterValue, 147, 1, 24, 0, 0, // Skip to: 8126 |
1829 | /* 8102 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1830 | /* 8105 */ MCD::OPC_FilterValue, 0, 156, 10, 0, // Skip to: 10826 |
1831 | /* 8110 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8121 |
1832 | /* 8117 */ MCD::OPC_Decode, 195, 18, 73, // Opcode: TROOOpt |
1833 | /* 8121 */ MCD::OPC_Decode, 194, 18, 148, 1, // Opcode: TROO |
1834 | /* 8126 */ MCD::OPC_FilterValue, 148, 1, 11, 0, 0, // Skip to: 8143 |
1835 | /* 8132 */ MCD::OPC_CheckField, 8, 8, 0, 127, 10, 0, // Skip to: 10826 |
1836 | /* 8139 */ MCD::OPC_Decode, 242, 11, 9, // Opcode: LLCR |
1837 | /* 8143 */ MCD::OPC_FilterValue, 149, 1, 11, 0, 0, // Skip to: 8160 |
1838 | /* 8149 */ MCD::OPC_CheckField, 8, 8, 0, 110, 10, 0, // Skip to: 10826 |
1839 | /* 8156 */ MCD::OPC_Decode, 130, 12, 9, // Opcode: LLHR |
1840 | /* 8160 */ MCD::OPC_FilterValue, 150, 1, 11, 0, 0, // Skip to: 8177 |
1841 | /* 8166 */ MCD::OPC_CheckField, 8, 8, 0, 93, 10, 0, // Skip to: 10826 |
1842 | /* 8173 */ MCD::OPC_Decode, 205, 14, 11, // Opcode: MLR |
1843 | /* 8177 */ MCD::OPC_FilterValue, 151, 1, 11, 0, 0, // Skip to: 8194 |
1844 | /* 8183 */ MCD::OPC_CheckField, 8, 8, 0, 76, 10, 0, // Skip to: 10826 |
1845 | /* 8190 */ MCD::OPC_Decode, 238, 9, 11, // Opcode: DLR |
1846 | /* 8194 */ MCD::OPC_FilterValue, 152, 1, 11, 0, 0, // Skip to: 8211 |
1847 | /* 8200 */ MCD::OPC_CheckField, 8, 8, 0, 59, 10, 0, // Skip to: 10826 |
1848 | /* 8207 */ MCD::OPC_Decode, 166, 4, 10, // Opcode: ALCR |
1849 | /* 8211 */ MCD::OPC_FilterValue, 153, 1, 11, 0, 0, // Skip to: 8228 |
1850 | /* 8217 */ MCD::OPC_CheckField, 8, 8, 0, 42, 10, 0, // Skip to: 10826 |
1851 | /* 8224 */ MCD::OPC_Decode, 223, 16, 10, // Opcode: SLBR |
1852 | /* 8228 */ MCD::OPC_FilterValue, 154, 1, 19, 0, 0, // Skip to: 8253 |
1853 | /* 8234 */ MCD::OPC_CheckField, 8, 8, 0, 25, 10, 0, // Skip to: 10826 |
1854 | /* 8241 */ MCD::OPC_CheckField, 0, 4, 0, 18, 10, 0, // Skip to: 10826 |
1855 | /* 8248 */ MCD::OPC_Decode, 131, 10, 149, 1, // Opcode: EPAIR |
1856 | /* 8253 */ MCD::OPC_FilterValue, 155, 1, 19, 0, 0, // Skip to: 8278 |
1857 | /* 8259 */ MCD::OPC_CheckField, 8, 8, 0, 0, 10, 0, // Skip to: 10826 |
1858 | /* 8266 */ MCD::OPC_CheckField, 0, 4, 0, 249, 9, 0, // Skip to: 10826 |
1859 | /* 8273 */ MCD::OPC_Decode, 137, 10, 149, 1, // Opcode: ESAIR |
1860 | /* 8278 */ MCD::OPC_FilterValue, 157, 1, 19, 0, 0, // Skip to: 8303 |
1861 | /* 8284 */ MCD::OPC_CheckField, 8, 8, 0, 231, 9, 0, // Skip to: 10826 |
1862 | /* 8291 */ MCD::OPC_CheckField, 0, 4, 0, 224, 9, 0, // Skip to: 10826 |
1863 | /* 8298 */ MCD::OPC_Decode, 140, 10, 150, 1, // Opcode: ESEA |
1864 | /* 8303 */ MCD::OPC_FilterValue, 158, 1, 11, 0, 0, // Skip to: 8320 |
1865 | /* 8309 */ MCD::OPC_CheckField, 8, 8, 0, 206, 9, 0, // Skip to: 10826 |
1866 | /* 8316 */ MCD::OPC_Decode, 212, 15, 63, // Opcode: PTI |
1867 | /* 8320 */ MCD::OPC_FilterValue, 159, 1, 19, 0, 0, // Skip to: 8345 |
1868 | /* 8326 */ MCD::OPC_CheckField, 8, 8, 0, 189, 9, 0, // Skip to: 10826 |
1869 | /* 8333 */ MCD::OPC_CheckField, 0, 4, 0, 182, 9, 0, // Skip to: 10826 |
1870 | /* 8340 */ MCD::OPC_Decode, 150, 17, 149, 1, // Opcode: SSAIR |
1871 | /* 8345 */ MCD::OPC_FilterValue, 161, 1, 16, 0, 0, // Skip to: 8367 |
1872 | /* 8351 */ MCD::OPC_CheckPredicate, 17, 166, 9, 0, // Skip to: 10826 |
1873 | /* 8356 */ MCD::OPC_CheckField, 8, 8, 0, 159, 9, 0, // Skip to: 10826 |
1874 | /* 8363 */ MCD::OPC_Decode, 185, 18, 63, // Opcode: TPEI |
1875 | /* 8367 */ MCD::OPC_FilterValue, 162, 1, 19, 0, 0, // Skip to: 8392 |
1876 | /* 8373 */ MCD::OPC_CheckField, 8, 8, 0, 142, 9, 0, // Skip to: 10826 |
1877 | /* 8380 */ MCD::OPC_CheckField, 0, 4, 0, 135, 9, 0, // Skip to: 10826 |
1878 | /* 8387 */ MCD::OPC_Decode, 210, 15, 151, 1, // Opcode: PTF |
1879 | /* 8392 */ MCD::OPC_FilterValue, 170, 1, 5, 0, 0, // Skip to: 8403 |
1880 | /* 8398 */ MCD::OPC_Decode, 242, 13, 152, 1, // Opcode: LPTEA |
1881 | /* 8403 */ MCD::OPC_FilterValue, 172, 1, 16, 0, 0, // Skip to: 8425 |
1882 | /* 8409 */ MCD::OPC_CheckPredicate, 18, 108, 9, 0, // Skip to: 10826 |
1883 | /* 8414 */ MCD::OPC_CheckField, 8, 8, 0, 101, 9, 0, // Skip to: 10826 |
1884 | /* 8421 */ MCD::OPC_Decode, 184, 10, 63, // Opcode: IRBM |
1885 | /* 8425 */ MCD::OPC_FilterValue, 174, 1, 16, 0, 0, // Skip to: 8447 |
1886 | /* 8431 */ MCD::OPC_CheckPredicate, 19, 86, 9, 0, // Skip to: 10826 |
1887 | /* 8436 */ MCD::OPC_CheckField, 8, 8, 0, 79, 9, 0, // Skip to: 10826 |
1888 | /* 8443 */ MCD::OPC_Decode, 235, 15, 63, // Opcode: RRBM |
1889 | /* 8447 */ MCD::OPC_FilterValue, 175, 1, 12, 0, 0, // Skip to: 8465 |
1890 | /* 8453 */ MCD::OPC_CheckField, 8, 8, 0, 62, 9, 0, // Skip to: 10826 |
1891 | /* 8460 */ MCD::OPC_Decode, 196, 15, 153, 1, // Opcode: PFMF |
1892 | /* 8465 */ MCD::OPC_FilterValue, 176, 1, 23, 0, 0, // Skip to: 8494 |
1893 | /* 8471 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1894 | /* 8474 */ MCD::OPC_FilterValue, 0, 43, 9, 0, // Skip to: 10826 |
1895 | /* 8479 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8490 |
1896 | /* 8486 */ MCD::OPC_Decode, 177, 9, 8, // Opcode: CU14Opt |
1897 | /* 8490 */ MCD::OPC_Decode, 176, 9, 74, // Opcode: CU14 |
1898 | /* 8494 */ MCD::OPC_FilterValue, 177, 1, 23, 0, 0, // Skip to: 8523 |
1899 | /* 8500 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1900 | /* 8503 */ MCD::OPC_FilterValue, 0, 14, 9, 0, // Skip to: 10826 |
1901 | /* 8508 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 8519 |
1902 | /* 8515 */ MCD::OPC_Decode, 181, 9, 8, // Opcode: CU24Opt |
1903 | /* 8519 */ MCD::OPC_Decode, 180, 9, 74, // Opcode: CU24 |
1904 | /* 8523 */ MCD::OPC_FilterValue, 178, 1, 11, 0, 0, // Skip to: 8540 |
1905 | /* 8529 */ MCD::OPC_CheckField, 8, 8, 0, 242, 8, 0, // Skip to: 10826 |
1906 | /* 8536 */ MCD::OPC_Decode, 182, 9, 8, // Opcode: CU41 |
1907 | /* 8540 */ MCD::OPC_FilterValue, 179, 1, 11, 0, 0, // Skip to: 8557 |
1908 | /* 8546 */ MCD::OPC_CheckField, 8, 8, 0, 225, 8, 0, // Skip to: 10826 |
1909 | /* 8553 */ MCD::OPC_Decode, 183, 9, 8, // Opcode: CU42 |
1910 | /* 8557 */ MCD::OPC_FilterValue, 189, 1, 25, 0, 0, // Skip to: 8588 |
1911 | /* 8563 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1912 | /* 8566 */ MCD::OPC_FilterValue, 0, 207, 8, 0, // Skip to: 10826 |
1913 | /* 8571 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 8583 |
1914 | /* 8578 */ MCD::OPC_Decode, 205, 18, 154, 1, // Opcode: TRTREOpt |
1915 | /* 8583 */ MCD::OPC_Decode, 204, 18, 155, 1, // Opcode: TRTRE |
1916 | /* 8588 */ MCD::OPC_FilterValue, 190, 1, 11, 0, 0, // Skip to: 8605 |
1917 | /* 8594 */ MCD::OPC_CheckField, 8, 8, 0, 177, 8, 0, // Skip to: 10826 |
1918 | /* 8601 */ MCD::OPC_Decode, 148, 17, 71, // Opcode: SRSTU |
1919 | /* 8605 */ MCD::OPC_FilterValue, 191, 1, 25, 0, 0, // Skip to: 8636 |
1920 | /* 8611 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1921 | /* 8614 */ MCD::OPC_FilterValue, 0, 159, 8, 0, // Skip to: 10826 |
1922 | /* 8619 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 8631 |
1923 | /* 8626 */ MCD::OPC_Decode, 200, 18, 154, 1, // Opcode: TRTEOpt |
1924 | /* 8631 */ MCD::OPC_Decode, 199, 18, 155, 1, // Opcode: TRTE |
1925 | /* 8636 */ MCD::OPC_FilterValue, 192, 1, 223, 0, 0, // Skip to: 8865 |
1926 | /* 8642 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
1927 | /* 8645 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8660 |
1928 | /* 8650 */ MCD::OPC_CheckPredicate, 14, 200, 0, 0, // Skip to: 8855 |
1929 | /* 8655 */ MCD::OPC_Decode, 153, 16, 156, 1, // Opcode: SELFHRAsmO |
1930 | /* 8660 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8675 |
1931 | /* 8665 */ MCD::OPC_CheckPredicate, 14, 185, 0, 0, // Skip to: 8855 |
1932 | /* 8670 */ MCD::OPC_Decode, 137, 16, 156, 1, // Opcode: SELFHRAsmH |
1933 | /* 8675 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8690 |
1934 | /* 8680 */ MCD::OPC_CheckPredicate, 14, 170, 0, 0, // Skip to: 8855 |
1935 | /* 8685 */ MCD::OPC_Decode, 147, 16, 156, 1, // Opcode: SELFHRAsmNLE |
1936 | /* 8690 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 8705 |
1937 | /* 8695 */ MCD::OPC_CheckPredicate, 14, 155, 0, 0, // Skip to: 8855 |
1938 | /* 8700 */ MCD::OPC_Decode, 139, 16, 156, 1, // Opcode: SELFHRAsmL |
1939 | /* 8705 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 8720 |
1940 | /* 8710 */ MCD::OPC_CheckPredicate, 14, 140, 0, 0, // Skip to: 8855 |
1941 | /* 8715 */ MCD::OPC_Decode, 145, 16, 156, 1, // Opcode: SELFHRAsmNHE |
1942 | /* 8720 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 8735 |
1943 | /* 8725 */ MCD::OPC_CheckPredicate, 14, 125, 0, 0, // Skip to: 8855 |
1944 | /* 8730 */ MCD::OPC_Decode, 141, 16, 156, 1, // Opcode: SELFHRAsmLH |
1945 | /* 8735 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 8750 |
1946 | /* 8740 */ MCD::OPC_CheckPredicate, 14, 110, 0, 0, // Skip to: 8855 |
1947 | /* 8745 */ MCD::OPC_Decode, 143, 16, 156, 1, // Opcode: SELFHRAsmNE |
1948 | /* 8750 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8765 |
1949 | /* 8755 */ MCD::OPC_CheckPredicate, 14, 95, 0, 0, // Skip to: 8855 |
1950 | /* 8760 */ MCD::OPC_Decode, 136, 16, 156, 1, // Opcode: SELFHRAsmE |
1951 | /* 8765 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8780 |
1952 | /* 8770 */ MCD::OPC_CheckPredicate, 14, 80, 0, 0, // Skip to: 8855 |
1953 | /* 8775 */ MCD::OPC_Decode, 148, 16, 156, 1, // Opcode: SELFHRAsmNLH |
1954 | /* 8780 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8795 |
1955 | /* 8785 */ MCD::OPC_CheckPredicate, 14, 65, 0, 0, // Skip to: 8855 |
1956 | /* 8790 */ MCD::OPC_Decode, 138, 16, 156, 1, // Opcode: SELFHRAsmHE |
1957 | /* 8795 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8810 |
1958 | /* 8800 */ MCD::OPC_CheckPredicate, 14, 50, 0, 0, // Skip to: 8855 |
1959 | /* 8805 */ MCD::OPC_Decode, 146, 16, 156, 1, // Opcode: SELFHRAsmNL |
1960 | /* 8810 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 8825 |
1961 | /* 8815 */ MCD::OPC_CheckPredicate, 14, 35, 0, 0, // Skip to: 8855 |
1962 | /* 8820 */ MCD::OPC_Decode, 140, 16, 156, 1, // Opcode: SELFHRAsmLE |
1963 | /* 8825 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 8840 |
1964 | /* 8830 */ MCD::OPC_CheckPredicate, 14, 20, 0, 0, // Skip to: 8855 |
1965 | /* 8835 */ MCD::OPC_Decode, 144, 16, 156, 1, // Opcode: SELFHRAsmNH |
1966 | /* 8840 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8855 |
1967 | /* 8845 */ MCD::OPC_CheckPredicate, 14, 5, 0, 0, // Skip to: 8855 |
1968 | /* 8850 */ MCD::OPC_Decode, 150, 16, 156, 1, // Opcode: SELFHRAsmNO |
1969 | /* 8855 */ MCD::OPC_CheckPredicate, 14, 174, 7, 0, // Skip to: 10826 |
1970 | /* 8860 */ MCD::OPC_Decode, 135, 16, 157, 1, // Opcode: SELFHRAsm |
1971 | /* 8865 */ MCD::OPC_FilterValue, 200, 1, 17, 0, 0, // Skip to: 8888 |
1972 | /* 8871 */ MCD::OPC_CheckPredicate, 20, 158, 7, 0, // Skip to: 10826 |
1973 | /* 8876 */ MCD::OPC_CheckField, 8, 4, 0, 151, 7, 0, // Skip to: 10826 |
1974 | /* 8883 */ MCD::OPC_Decode, 156, 4, 158, 1, // Opcode: AHHHR |
1975 | /* 8888 */ MCD::OPC_FilterValue, 201, 1, 17, 0, 0, // Skip to: 8911 |
1976 | /* 8894 */ MCD::OPC_CheckPredicate, 20, 135, 7, 0, // Skip to: 10826 |
1977 | /* 8899 */ MCD::OPC_CheckField, 8, 4, 0, 128, 7, 0, // Skip to: 10826 |
1978 | /* 8906 */ MCD::OPC_Decode, 210, 16, 158, 1, // Opcode: SHHHR |
1979 | /* 8911 */ MCD::OPC_FilterValue, 202, 1, 17, 0, 0, // Skip to: 8934 |
1980 | /* 8917 */ MCD::OPC_CheckPredicate, 20, 112, 7, 0, // Skip to: 10826 |
1981 | /* 8922 */ MCD::OPC_CheckField, 8, 4, 0, 105, 7, 0, // Skip to: 10826 |
1982 | /* 8929 */ MCD::OPC_Decode, 176, 4, 158, 1, // Opcode: ALHHHR |
1983 | /* 8934 */ MCD::OPC_FilterValue, 203, 1, 17, 0, 0, // Skip to: 8957 |
1984 | /* 8940 */ MCD::OPC_CheckPredicate, 20, 89, 7, 0, // Skip to: 10826 |
1985 | /* 8945 */ MCD::OPC_CheckField, 8, 4, 0, 82, 7, 0, // Skip to: 10826 |
1986 | /* 8952 */ MCD::OPC_Decode, 234, 16, 158, 1, // Opcode: SLHHHR |
1987 | /* 8957 */ MCD::OPC_FilterValue, 205, 1, 17, 0, 0, // Skip to: 8980 |
1988 | /* 8963 */ MCD::OPC_CheckPredicate, 20, 66, 7, 0, // Skip to: 10826 |
1989 | /* 8968 */ MCD::OPC_CheckField, 8, 8, 0, 59, 7, 0, // Skip to: 10826 |
1990 | /* 8975 */ MCD::OPC_Decode, 206, 6, 159, 1, // Opcode: CHHR |
1991 | /* 8980 */ MCD::OPC_FilterValue, 207, 1, 17, 0, 0, // Skip to: 9003 |
1992 | /* 8986 */ MCD::OPC_CheckPredicate, 20, 43, 7, 0, // Skip to: 10826 |
1993 | /* 8991 */ MCD::OPC_CheckField, 8, 8, 0, 36, 7, 0, // Skip to: 10826 |
1994 | /* 8998 */ MCD::OPC_Decode, 140, 8, 159, 1, // Opcode: CLHHR |
1995 | /* 9003 */ MCD::OPC_FilterValue, 216, 1, 17, 0, 0, // Skip to: 9026 |
1996 | /* 9009 */ MCD::OPC_CheckPredicate, 20, 20, 7, 0, // Skip to: 10826 |
1997 | /* 9014 */ MCD::OPC_CheckField, 8, 4, 0, 13, 7, 0, // Skip to: 10826 |
1998 | /* 9021 */ MCD::OPC_Decode, 157, 4, 160, 1, // Opcode: AHHLR |
1999 | /* 9026 */ MCD::OPC_FilterValue, 217, 1, 17, 0, 0, // Skip to: 9049 |
2000 | /* 9032 */ MCD::OPC_CheckPredicate, 20, 253, 6, 0, // Skip to: 10826 |
2001 | /* 9037 */ MCD::OPC_CheckField, 8, 4, 0, 246, 6, 0, // Skip to: 10826 |
2002 | /* 9044 */ MCD::OPC_Decode, 211, 16, 160, 1, // Opcode: SHHLR |
2003 | /* 9049 */ MCD::OPC_FilterValue, 218, 1, 17, 0, 0, // Skip to: 9072 |
2004 | /* 9055 */ MCD::OPC_CheckPredicate, 20, 230, 6, 0, // Skip to: 10826 |
2005 | /* 9060 */ MCD::OPC_CheckField, 8, 4, 0, 223, 6, 0, // Skip to: 10826 |
2006 | /* 9067 */ MCD::OPC_Decode, 177, 4, 160, 1, // Opcode: ALHHLR |
2007 | /* 9072 */ MCD::OPC_FilterValue, 219, 1, 17, 0, 0, // Skip to: 9095 |
2008 | /* 9078 */ MCD::OPC_CheckPredicate, 20, 207, 6, 0, // Skip to: 10826 |
2009 | /* 9083 */ MCD::OPC_CheckField, 8, 4, 0, 200, 6, 0, // Skip to: 10826 |
2010 | /* 9090 */ MCD::OPC_Decode, 235, 16, 160, 1, // Opcode: SLHHLR |
2011 | /* 9095 */ MCD::OPC_FilterValue, 221, 1, 17, 0, 0, // Skip to: 9118 |
2012 | /* 9101 */ MCD::OPC_CheckPredicate, 20, 184, 6, 0, // Skip to: 10826 |
2013 | /* 9106 */ MCD::OPC_CheckField, 8, 8, 0, 177, 6, 0, // Skip to: 10826 |
2014 | /* 9113 */ MCD::OPC_Decode, 209, 6, 161, 1, // Opcode: CHLR |
2015 | /* 9118 */ MCD::OPC_FilterValue, 223, 1, 17, 0, 0, // Skip to: 9141 |
2016 | /* 9124 */ MCD::OPC_CheckPredicate, 20, 161, 6, 0, // Skip to: 10826 |
2017 | /* 9129 */ MCD::OPC_CheckField, 8, 8, 0, 154, 6, 0, // Skip to: 10826 |
2018 | /* 9136 */ MCD::OPC_Decode, 142, 8, 161, 1, // Opcode: CLHLR |
2019 | /* 9141 */ MCD::OPC_FilterValue, 224, 1, 231, 0, 0, // Skip to: 9378 |
2020 | /* 9147 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2021 | /* 9150 */ MCD::OPC_FilterValue, 0, 135, 6, 0, // Skip to: 10826 |
2022 | /* 9155 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2023 | /* 9158 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9173 |
2024 | /* 9163 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 9368 |
2025 | /* 9168 */ MCD::OPC_Decode, 218, 12, 162, 1, // Opcode: LOCFHRAsmO |
2026 | /* 9173 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9188 |
2027 | /* 9178 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 9368 |
2028 | /* 9183 */ MCD::OPC_Decode, 202, 12, 162, 1, // Opcode: LOCFHRAsmH |
2029 | /* 9188 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9203 |
2030 | /* 9193 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 9368 |
2031 | /* 9198 */ MCD::OPC_Decode, 212, 12, 162, 1, // Opcode: LOCFHRAsmNLE |
2032 | /* 9203 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9218 |
2033 | /* 9208 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 9368 |
2034 | /* 9213 */ MCD::OPC_Decode, 204, 12, 162, 1, // Opcode: LOCFHRAsmL |
2035 | /* 9218 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9233 |
2036 | /* 9223 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 9368 |
2037 | /* 9228 */ MCD::OPC_Decode, 210, 12, 162, 1, // Opcode: LOCFHRAsmNHE |
2038 | /* 9233 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9248 |
2039 | /* 9238 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 9368 |
2040 | /* 9243 */ MCD::OPC_Decode, 206, 12, 162, 1, // Opcode: LOCFHRAsmLH |
2041 | /* 9248 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9263 |
2042 | /* 9253 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 9368 |
2043 | /* 9258 */ MCD::OPC_Decode, 208, 12, 162, 1, // Opcode: LOCFHRAsmNE |
2044 | /* 9263 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 9278 |
2045 | /* 9268 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 9368 |
2046 | /* 9273 */ MCD::OPC_Decode, 201, 12, 162, 1, // Opcode: LOCFHRAsmE |
2047 | /* 9278 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9293 |
2048 | /* 9283 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 9368 |
2049 | /* 9288 */ MCD::OPC_Decode, 213, 12, 162, 1, // Opcode: LOCFHRAsmNLH |
2050 | /* 9293 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9308 |
2051 | /* 9298 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 9368 |
2052 | /* 9303 */ MCD::OPC_Decode, 203, 12, 162, 1, // Opcode: LOCFHRAsmHE |
2053 | /* 9308 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9323 |
2054 | /* 9313 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 9368 |
2055 | /* 9318 */ MCD::OPC_Decode, 211, 12, 162, 1, // Opcode: LOCFHRAsmNL |
2056 | /* 9323 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 9338 |
2057 | /* 9328 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 9368 |
2058 | /* 9333 */ MCD::OPC_Decode, 205, 12, 162, 1, // Opcode: LOCFHRAsmLE |
2059 | /* 9338 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9353 |
2060 | /* 9343 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 9368 |
2061 | /* 9348 */ MCD::OPC_Decode, 209, 12, 162, 1, // Opcode: LOCFHRAsmNH |
2062 | /* 9353 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9368 |
2063 | /* 9358 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 9368 |
2064 | /* 9363 */ MCD::OPC_Decode, 215, 12, 162, 1, // Opcode: LOCFHRAsmNO |
2065 | /* 9368 */ MCD::OPC_CheckPredicate, 21, 173, 5, 0, // Skip to: 10826 |
2066 | /* 9373 */ MCD::OPC_Decode, 200, 12, 163, 1, // Opcode: LOCFHRAsm |
2067 | /* 9378 */ MCD::OPC_FilterValue, 225, 1, 33, 0, 0, // Skip to: 9417 |
2068 | /* 9384 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2069 | /* 9387 */ MCD::OPC_FilterValue, 0, 154, 5, 0, // Skip to: 10826 |
2070 | /* 9392 */ MCD::OPC_CheckPredicate, 22, 11, 0, 0, // Skip to: 9408 |
2071 | /* 9397 */ MCD::OPC_CheckField, 12, 4, 0, 4, 0, 0, // Skip to: 9408 |
2072 | /* 9404 */ MCD::OPC_Decode, 203, 15, 63, // Opcode: POPCNT |
2073 | /* 9408 */ MCD::OPC_CheckPredicate, 14, 133, 5, 0, // Skip to: 10826 |
2074 | /* 9413 */ MCD::OPC_Decode, 204, 15, 75, // Opcode: POPCNTOpt |
2075 | /* 9417 */ MCD::OPC_FilterValue, 226, 1, 231, 0, 0, // Skip to: 9654 |
2076 | /* 9423 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2077 | /* 9426 */ MCD::OPC_FilterValue, 0, 115, 5, 0, // Skip to: 10826 |
2078 | /* 9431 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2079 | /* 9434 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9449 |
2080 | /* 9439 */ MCD::OPC_CheckPredicate, 23, 200, 0, 0, // Skip to: 9644 |
2081 | /* 9444 */ MCD::OPC_Decode, 156, 13, 136, 1, // Opcode: LOCGRAsmO |
2082 | /* 9449 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9464 |
2083 | /* 9454 */ MCD::OPC_CheckPredicate, 23, 185, 0, 0, // Skip to: 9644 |
2084 | /* 9459 */ MCD::OPC_Decode, 140, 13, 136, 1, // Opcode: LOCGRAsmH |
2085 | /* 9464 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9479 |
2086 | /* 9469 */ MCD::OPC_CheckPredicate, 23, 170, 0, 0, // Skip to: 9644 |
2087 | /* 9474 */ MCD::OPC_Decode, 150, 13, 136, 1, // Opcode: LOCGRAsmNLE |
2088 | /* 9479 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9494 |
2089 | /* 9484 */ MCD::OPC_CheckPredicate, 23, 155, 0, 0, // Skip to: 9644 |
2090 | /* 9489 */ MCD::OPC_Decode, 142, 13, 136, 1, // Opcode: LOCGRAsmL |
2091 | /* 9494 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9509 |
2092 | /* 9499 */ MCD::OPC_CheckPredicate, 23, 140, 0, 0, // Skip to: 9644 |
2093 | /* 9504 */ MCD::OPC_Decode, 148, 13, 136, 1, // Opcode: LOCGRAsmNHE |
2094 | /* 9509 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9524 |
2095 | /* 9514 */ MCD::OPC_CheckPredicate, 23, 125, 0, 0, // Skip to: 9644 |
2096 | /* 9519 */ MCD::OPC_Decode, 144, 13, 136, 1, // Opcode: LOCGRAsmLH |
2097 | /* 9524 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9539 |
2098 | /* 9529 */ MCD::OPC_CheckPredicate, 23, 110, 0, 0, // Skip to: 9644 |
2099 | /* 9534 */ MCD::OPC_Decode, 146, 13, 136, 1, // Opcode: LOCGRAsmNE |
2100 | /* 9539 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 9554 |
2101 | /* 9544 */ MCD::OPC_CheckPredicate, 23, 95, 0, 0, // Skip to: 9644 |
2102 | /* 9549 */ MCD::OPC_Decode, 139, 13, 136, 1, // Opcode: LOCGRAsmE |
2103 | /* 9554 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9569 |
2104 | /* 9559 */ MCD::OPC_CheckPredicate, 23, 80, 0, 0, // Skip to: 9644 |
2105 | /* 9564 */ MCD::OPC_Decode, 151, 13, 136, 1, // Opcode: LOCGRAsmNLH |
2106 | /* 9569 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9584 |
2107 | /* 9574 */ MCD::OPC_CheckPredicate, 23, 65, 0, 0, // Skip to: 9644 |
2108 | /* 9579 */ MCD::OPC_Decode, 141, 13, 136, 1, // Opcode: LOCGRAsmHE |
2109 | /* 9584 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9599 |
2110 | /* 9589 */ MCD::OPC_CheckPredicate, 23, 50, 0, 0, // Skip to: 9644 |
2111 | /* 9594 */ MCD::OPC_Decode, 149, 13, 136, 1, // Opcode: LOCGRAsmNL |
2112 | /* 9599 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 9614 |
2113 | /* 9604 */ MCD::OPC_CheckPredicate, 23, 35, 0, 0, // Skip to: 9644 |
2114 | /* 9609 */ MCD::OPC_Decode, 143, 13, 136, 1, // Opcode: LOCGRAsmLE |
2115 | /* 9614 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9629 |
2116 | /* 9619 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 9644 |
2117 | /* 9624 */ MCD::OPC_Decode, 147, 13, 136, 1, // Opcode: LOCGRAsmNH |
2118 | /* 9629 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9644 |
2119 | /* 9634 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 9644 |
2120 | /* 9639 */ MCD::OPC_Decode, 153, 13, 136, 1, // Opcode: LOCGRAsmNO |
2121 | /* 9644 */ MCD::OPC_CheckPredicate, 23, 153, 4, 0, // Skip to: 10826 |
2122 | /* 9649 */ MCD::OPC_Decode, 138, 13, 164, 1, // Opcode: LOCGRAsm |
2123 | /* 9654 */ MCD::OPC_FilterValue, 227, 1, 223, 0, 0, // Skip to: 9883 |
2124 | /* 9660 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2125 | /* 9663 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9678 |
2126 | /* 9668 */ MCD::OPC_CheckPredicate, 14, 200, 0, 0, // Skip to: 9873 |
2127 | /* 9673 */ MCD::OPC_Decode, 175, 16, 165, 1, // Opcode: SELGRAsmO |
2128 | /* 9678 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9693 |
2129 | /* 9683 */ MCD::OPC_CheckPredicate, 14, 185, 0, 0, // Skip to: 9873 |
2130 | /* 9688 */ MCD::OPC_Decode, 159, 16, 165, 1, // Opcode: SELGRAsmH |
2131 | /* 9693 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9708 |
2132 | /* 9698 */ MCD::OPC_CheckPredicate, 14, 170, 0, 0, // Skip to: 9873 |
2133 | /* 9703 */ MCD::OPC_Decode, 169, 16, 165, 1, // Opcode: SELGRAsmNLE |
2134 | /* 9708 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9723 |
2135 | /* 9713 */ MCD::OPC_CheckPredicate, 14, 155, 0, 0, // Skip to: 9873 |
2136 | /* 9718 */ MCD::OPC_Decode, 161, 16, 165, 1, // Opcode: SELGRAsmL |
2137 | /* 9723 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9738 |
2138 | /* 9728 */ MCD::OPC_CheckPredicate, 14, 140, 0, 0, // Skip to: 9873 |
2139 | /* 9733 */ MCD::OPC_Decode, 167, 16, 165, 1, // Opcode: SELGRAsmNHE |
2140 | /* 9738 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9753 |
2141 | /* 9743 */ MCD::OPC_CheckPredicate, 14, 125, 0, 0, // Skip to: 9873 |
2142 | /* 9748 */ MCD::OPC_Decode, 163, 16, 165, 1, // Opcode: SELGRAsmLH |
2143 | /* 9753 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9768 |
2144 | /* 9758 */ MCD::OPC_CheckPredicate, 14, 110, 0, 0, // Skip to: 9873 |
2145 | /* 9763 */ MCD::OPC_Decode, 165, 16, 165, 1, // Opcode: SELGRAsmNE |
2146 | /* 9768 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 9783 |
2147 | /* 9773 */ MCD::OPC_CheckPredicate, 14, 95, 0, 0, // Skip to: 9873 |
2148 | /* 9778 */ MCD::OPC_Decode, 158, 16, 165, 1, // Opcode: SELGRAsmE |
2149 | /* 9783 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9798 |
2150 | /* 9788 */ MCD::OPC_CheckPredicate, 14, 80, 0, 0, // Skip to: 9873 |
2151 | /* 9793 */ MCD::OPC_Decode, 170, 16, 165, 1, // Opcode: SELGRAsmNLH |
2152 | /* 9798 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9813 |
2153 | /* 9803 */ MCD::OPC_CheckPredicate, 14, 65, 0, 0, // Skip to: 9873 |
2154 | /* 9808 */ MCD::OPC_Decode, 160, 16, 165, 1, // Opcode: SELGRAsmHE |
2155 | /* 9813 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9828 |
2156 | /* 9818 */ MCD::OPC_CheckPredicate, 14, 50, 0, 0, // Skip to: 9873 |
2157 | /* 9823 */ MCD::OPC_Decode, 168, 16, 165, 1, // Opcode: SELGRAsmNL |
2158 | /* 9828 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 9843 |
2159 | /* 9833 */ MCD::OPC_CheckPredicate, 14, 35, 0, 0, // Skip to: 9873 |
2160 | /* 9838 */ MCD::OPC_Decode, 162, 16, 165, 1, // Opcode: SELGRAsmLE |
2161 | /* 9843 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9858 |
2162 | /* 9848 */ MCD::OPC_CheckPredicate, 14, 20, 0, 0, // Skip to: 9873 |
2163 | /* 9853 */ MCD::OPC_Decode, 166, 16, 165, 1, // Opcode: SELGRAsmNH |
2164 | /* 9858 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9873 |
2165 | /* 9863 */ MCD::OPC_CheckPredicate, 14, 5, 0, 0, // Skip to: 9873 |
2166 | /* 9868 */ MCD::OPC_Decode, 172, 16, 165, 1, // Opcode: SELGRAsmNO |
2167 | /* 9873 */ MCD::OPC_CheckPredicate, 14, 180, 3, 0, // Skip to: 10826 |
2168 | /* 9878 */ MCD::OPC_Decode, 157, 16, 166, 1, // Opcode: SELGRAsm |
2169 | /* 9883 */ MCD::OPC_FilterValue, 228, 1, 17, 0, 0, // Skip to: 9906 |
2170 | /* 9889 */ MCD::OPC_CheckPredicate, 24, 164, 3, 0, // Skip to: 10826 |
2171 | /* 9894 */ MCD::OPC_CheckField, 8, 4, 0, 157, 3, 0, // Skip to: 10826 |
2172 | /* 9901 */ MCD::OPC_Decode, 145, 15, 141, 1, // Opcode: NGRK |
2173 | /* 9906 */ MCD::OPC_FilterValue, 229, 1, 17, 0, 0, // Skip to: 9929 |
2174 | /* 9912 */ MCD::OPC_CheckPredicate, 14, 141, 3, 0, // Skip to: 10826 |
2175 | /* 9917 */ MCD::OPC_CheckField, 8, 4, 0, 134, 3, 0, // Skip to: 10826 |
2176 | /* 9924 */ MCD::OPC_Decode, 141, 15, 141, 1, // Opcode: NCGRK |
2177 | /* 9929 */ MCD::OPC_FilterValue, 230, 1, 17, 0, 0, // Skip to: 9952 |
2178 | /* 9935 */ MCD::OPC_CheckPredicate, 24, 118, 3, 0, // Skip to: 10826 |
2179 | /* 9940 */ MCD::OPC_CheckField, 8, 4, 0, 111, 3, 0, // Skip to: 10826 |
2180 | /* 9947 */ MCD::OPC_Decode, 177, 15, 141, 1, // Opcode: OGRK |
2181 | /* 9952 */ MCD::OPC_FilterValue, 231, 1, 17, 0, 0, // Skip to: 9975 |
2182 | /* 9958 */ MCD::OPC_CheckPredicate, 24, 95, 3, 0, // Skip to: 10826 |
2183 | /* 9963 */ MCD::OPC_CheckField, 8, 4, 0, 88, 3, 0, // Skip to: 10826 |
2184 | /* 9970 */ MCD::OPC_Decode, 182, 24, 141, 1, // Opcode: XGRK |
2185 | /* 9975 */ MCD::OPC_FilterValue, 232, 1, 17, 0, 0, // Skip to: 9998 |
2186 | /* 9981 */ MCD::OPC_CheckPredicate, 24, 72, 3, 0, // Skip to: 10826 |
2187 | /* 9986 */ MCD::OPC_CheckField, 8, 4, 0, 65, 3, 0, // Skip to: 10826 |
2188 | /* 9993 */ MCD::OPC_Decode, 153, 4, 141, 1, // Opcode: AGRK |
2189 | /* 9998 */ MCD::OPC_FilterValue, 233, 1, 17, 0, 0, // Skip to: 10021 |
2190 | /* 10004 */ MCD::OPC_CheckPredicate, 24, 49, 3, 0, // Skip to: 10826 |
2191 | /* 10009 */ MCD::OPC_CheckField, 8, 4, 0, 42, 3, 0, // Skip to: 10826 |
2192 | /* 10016 */ MCD::OPC_Decode, 208, 16, 141, 1, // Opcode: SGRK |
2193 | /* 10021 */ MCD::OPC_FilterValue, 234, 1, 17, 0, 0, // Skip to: 10044 |
2194 | /* 10027 */ MCD::OPC_CheckPredicate, 24, 26, 3, 0, // Skip to: 10826 |
2195 | /* 10032 */ MCD::OPC_CheckField, 8, 4, 0, 19, 3, 0, // Skip to: 10826 |
2196 | /* 10039 */ MCD::OPC_Decode, 174, 4, 141, 1, // Opcode: ALGRK |
2197 | /* 10044 */ MCD::OPC_FilterValue, 235, 1, 17, 0, 0, // Skip to: 10067 |
2198 | /* 10050 */ MCD::OPC_CheckPredicate, 24, 3, 3, 0, // Skip to: 10826 |
2199 | /* 10055 */ MCD::OPC_CheckField, 8, 4, 0, 252, 2, 0, // Skip to: 10826 |
2200 | /* 10062 */ MCD::OPC_Decode, 233, 16, 141, 1, // Opcode: SLGRK |
2201 | /* 10067 */ MCD::OPC_FilterValue, 236, 1, 17, 0, 0, // Skip to: 10090 |
2202 | /* 10073 */ MCD::OPC_CheckPredicate, 25, 236, 2, 0, // Skip to: 10826 |
2203 | /* 10078 */ MCD::OPC_CheckField, 8, 4, 0, 229, 2, 0, // Skip to: 10826 |
2204 | /* 10085 */ MCD::OPC_Decode, 198, 14, 167, 1, // Opcode: MGRK |
2205 | /* 10090 */ MCD::OPC_FilterValue, 237, 1, 17, 0, 0, // Skip to: 10113 |
2206 | /* 10096 */ MCD::OPC_CheckPredicate, 25, 213, 2, 0, // Skip to: 10826 |
2207 | /* 10101 */ MCD::OPC_CheckField, 8, 4, 0, 206, 2, 0, // Skip to: 10826 |
2208 | /* 10108 */ MCD::OPC_Decode, 226, 14, 141, 1, // Opcode: MSGRKC |
2209 | /* 10113 */ MCD::OPC_FilterValue, 240, 1, 223, 0, 0, // Skip to: 10342 |
2210 | /* 10119 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2211 | /* 10122 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10137 |
2212 | /* 10127 */ MCD::OPC_CheckPredicate, 14, 200, 0, 0, // Skip to: 10332 |
2213 | /* 10132 */ MCD::OPC_Decode, 197, 16, 168, 1, // Opcode: SELRAsmO |
2214 | /* 10137 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10152 |
2215 | /* 10142 */ MCD::OPC_CheckPredicate, 14, 185, 0, 0, // Skip to: 10332 |
2216 | /* 10147 */ MCD::OPC_Decode, 181, 16, 168, 1, // Opcode: SELRAsmH |
2217 | /* 10152 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 10167 |
2218 | /* 10157 */ MCD::OPC_CheckPredicate, 14, 170, 0, 0, // Skip to: 10332 |
2219 | /* 10162 */ MCD::OPC_Decode, 191, 16, 168, 1, // Opcode: SELRAsmNLE |
2220 | /* 10167 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 10182 |
2221 | /* 10172 */ MCD::OPC_CheckPredicate, 14, 155, 0, 0, // Skip to: 10332 |
2222 | /* 10177 */ MCD::OPC_Decode, 183, 16, 168, 1, // Opcode: SELRAsmL |
2223 | /* 10182 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 10197 |
2224 | /* 10187 */ MCD::OPC_CheckPredicate, 14, 140, 0, 0, // Skip to: 10332 |
2225 | /* 10192 */ MCD::OPC_Decode, 189, 16, 168, 1, // Opcode: SELRAsmNHE |
2226 | /* 10197 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 10212 |
2227 | /* 10202 */ MCD::OPC_CheckPredicate, 14, 125, 0, 0, // Skip to: 10332 |
2228 | /* 10207 */ MCD::OPC_Decode, 185, 16, 168, 1, // Opcode: SELRAsmLH |
2229 | /* 10212 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 10227 |
2230 | /* 10217 */ MCD::OPC_CheckPredicate, 14, 110, 0, 0, // Skip to: 10332 |
2231 | /* 10222 */ MCD::OPC_Decode, 187, 16, 168, 1, // Opcode: SELRAsmNE |
2232 | /* 10227 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10242 |
2233 | /* 10232 */ MCD::OPC_CheckPredicate, 14, 95, 0, 0, // Skip to: 10332 |
2234 | /* 10237 */ MCD::OPC_Decode, 180, 16, 168, 1, // Opcode: SELRAsmE |
2235 | /* 10242 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 10257 |
2236 | /* 10247 */ MCD::OPC_CheckPredicate, 14, 80, 0, 0, // Skip to: 10332 |
2237 | /* 10252 */ MCD::OPC_Decode, 192, 16, 168, 1, // Opcode: SELRAsmNLH |
2238 | /* 10257 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 10272 |
2239 | /* 10262 */ MCD::OPC_CheckPredicate, 14, 65, 0, 0, // Skip to: 10332 |
2240 | /* 10267 */ MCD::OPC_Decode, 182, 16, 168, 1, // Opcode: SELRAsmHE |
2241 | /* 10272 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 10287 |
2242 | /* 10277 */ MCD::OPC_CheckPredicate, 14, 50, 0, 0, // Skip to: 10332 |
2243 | /* 10282 */ MCD::OPC_Decode, 190, 16, 168, 1, // Opcode: SELRAsmNL |
2244 | /* 10287 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 10302 |
2245 | /* 10292 */ MCD::OPC_CheckPredicate, 14, 35, 0, 0, // Skip to: 10332 |
2246 | /* 10297 */ MCD::OPC_Decode, 184, 16, 168, 1, // Opcode: SELRAsmLE |
2247 | /* 10302 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 10317 |
2248 | /* 10307 */ MCD::OPC_CheckPredicate, 14, 20, 0, 0, // Skip to: 10332 |
2249 | /* 10312 */ MCD::OPC_Decode, 188, 16, 168, 1, // Opcode: SELRAsmNH |
2250 | /* 10317 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10332 |
2251 | /* 10322 */ MCD::OPC_CheckPredicate, 14, 5, 0, 0, // Skip to: 10332 |
2252 | /* 10327 */ MCD::OPC_Decode, 194, 16, 168, 1, // Opcode: SELRAsmNO |
2253 | /* 10332 */ MCD::OPC_CheckPredicate, 14, 233, 1, 0, // Skip to: 10826 |
2254 | /* 10337 */ MCD::OPC_Decode, 179, 16, 169, 1, // Opcode: SELRAsm |
2255 | /* 10342 */ MCD::OPC_FilterValue, 242, 1, 217, 0, 0, // Skip to: 10565 |
2256 | /* 10348 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
2257 | /* 10351 */ MCD::OPC_FilterValue, 0, 214, 1, 0, // Skip to: 10826 |
2258 | /* 10356 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2259 | /* 10359 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 10373 |
2260 | /* 10364 */ MCD::OPC_CheckPredicate, 23, 186, 0, 0, // Skip to: 10555 |
2261 | /* 10369 */ MCD::OPC_Decode, 222, 13, 10, // Opcode: LOCRAsmO |
2262 | /* 10373 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 10387 |
2263 | /* 10378 */ MCD::OPC_CheckPredicate, 23, 172, 0, 0, // Skip to: 10555 |
2264 | /* 10383 */ MCD::OPC_Decode, 206, 13, 10, // Opcode: LOCRAsmH |
2265 | /* 10387 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 10401 |
2266 | /* 10392 */ MCD::OPC_CheckPredicate, 23, 158, 0, 0, // Skip to: 10555 |
2267 | /* 10397 */ MCD::OPC_Decode, 216, 13, 10, // Opcode: LOCRAsmNLE |
2268 | /* 10401 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 10415 |
2269 | /* 10406 */ MCD::OPC_CheckPredicate, 23, 144, 0, 0, // Skip to: 10555 |
2270 | /* 10411 */ MCD::OPC_Decode, 208, 13, 10, // Opcode: LOCRAsmL |
2271 | /* 10415 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 10429 |
2272 | /* 10420 */ MCD::OPC_CheckPredicate, 23, 130, 0, 0, // Skip to: 10555 |
2273 | /* 10425 */ MCD::OPC_Decode, 214, 13, 10, // Opcode: LOCRAsmNHE |
2274 | /* 10429 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 10443 |
2275 | /* 10434 */ MCD::OPC_CheckPredicate, 23, 116, 0, 0, // Skip to: 10555 |
2276 | /* 10439 */ MCD::OPC_Decode, 210, 13, 10, // Opcode: LOCRAsmLH |
2277 | /* 10443 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 10457 |
2278 | /* 10448 */ MCD::OPC_CheckPredicate, 23, 102, 0, 0, // Skip to: 10555 |
2279 | /* 10453 */ MCD::OPC_Decode, 212, 13, 10, // Opcode: LOCRAsmNE |
2280 | /* 10457 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 10471 |
2281 | /* 10462 */ MCD::OPC_CheckPredicate, 23, 88, 0, 0, // Skip to: 10555 |
2282 | /* 10467 */ MCD::OPC_Decode, 205, 13, 10, // Opcode: LOCRAsmE |
2283 | /* 10471 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 10485 |
2284 | /* 10476 */ MCD::OPC_CheckPredicate, 23, 74, 0, 0, // Skip to: 10555 |
2285 | /* 10481 */ MCD::OPC_Decode, 217, 13, 10, // Opcode: LOCRAsmNLH |
2286 | /* 10485 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 10499 |
2287 | /* 10490 */ MCD::OPC_CheckPredicate, 23, 60, 0, 0, // Skip to: 10555 |
2288 | /* 10495 */ MCD::OPC_Decode, 207, 13, 10, // Opcode: LOCRAsmHE |
2289 | /* 10499 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 10513 |
2290 | /* 10504 */ MCD::OPC_CheckPredicate, 23, 46, 0, 0, // Skip to: 10555 |
2291 | /* 10509 */ MCD::OPC_Decode, 215, 13, 10, // Opcode: LOCRAsmNL |
2292 | /* 10513 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 10527 |
2293 | /* 10518 */ MCD::OPC_CheckPredicate, 23, 32, 0, 0, // Skip to: 10555 |
2294 | /* 10523 */ MCD::OPC_Decode, 209, 13, 10, // Opcode: LOCRAsmLE |
2295 | /* 10527 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 10541 |
2296 | /* 10532 */ MCD::OPC_CheckPredicate, 23, 18, 0, 0, // Skip to: 10555 |
2297 | /* 10537 */ MCD::OPC_Decode, 213, 13, 10, // Opcode: LOCRAsmNH |
2298 | /* 10541 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 10555 |
2299 | /* 10546 */ MCD::OPC_CheckPredicate, 23, 4, 0, 0, // Skip to: 10555 |
2300 | /* 10551 */ MCD::OPC_Decode, 219, 13, 10, // Opcode: LOCRAsmNO |
2301 | /* 10555 */ MCD::OPC_CheckPredicate, 23, 10, 1, 0, // Skip to: 10826 |
2302 | /* 10560 */ MCD::OPC_Decode, 204, 13, 170, 1, // Opcode: LOCRAsm |
2303 | /* 10565 */ MCD::OPC_FilterValue, 244, 1, 17, 0, 0, // Skip to: 10588 |
2304 | /* 10571 */ MCD::OPC_CheckPredicate, 24, 250, 0, 0, // Skip to: 10826 |
2305 | /* 10576 */ MCD::OPC_CheckField, 8, 4, 0, 243, 0, 0, // Skip to: 10826 |
2306 | /* 10583 */ MCD::OPC_Decode, 166, 15, 143, 1, // Opcode: NRK |
2307 | /* 10588 */ MCD::OPC_FilterValue, 245, 1, 17, 0, 0, // Skip to: 10611 |
2308 | /* 10594 */ MCD::OPC_CheckPredicate, 14, 227, 0, 0, // Skip to: 10826 |
2309 | /* 10599 */ MCD::OPC_CheckField, 8, 4, 0, 220, 0, 0, // Skip to: 10826 |
2310 | /* 10606 */ MCD::OPC_Decode, 142, 15, 143, 1, // Opcode: NCRK |
2311 | /* 10611 */ MCD::OPC_FilterValue, 246, 1, 17, 0, 0, // Skip to: 10634 |
2312 | /* 10617 */ MCD::OPC_CheckPredicate, 24, 204, 0, 0, // Skip to: 10826 |
2313 | /* 10622 */ MCD::OPC_CheckField, 8, 4, 0, 197, 0, 0, // Skip to: 10826 |
2314 | /* 10629 */ MCD::OPC_Decode, 187, 15, 143, 1, // Opcode: ORK |
2315 | /* 10634 */ MCD::OPC_FilterValue, 247, 1, 17, 0, 0, // Skip to: 10657 |
2316 | /* 10640 */ MCD::OPC_CheckPredicate, 24, 181, 0, 0, // Skip to: 10826 |
2317 | /* 10645 */ MCD::OPC_CheckField, 8, 4, 0, 174, 0, 0, // Skip to: 10826 |
2318 | /* 10652 */ MCD::OPC_Decode, 188, 24, 143, 1, // Opcode: XRK |
2319 | /* 10657 */ MCD::OPC_FilterValue, 248, 1, 17, 0, 0, // Skip to: 10680 |
2320 | /* 10663 */ MCD::OPC_CheckPredicate, 24, 158, 0, 0, // Skip to: 10826 |
2321 | /* 10668 */ MCD::OPC_CheckField, 8, 4, 0, 151, 0, 0, // Skip to: 10826 |
2322 | /* 10675 */ MCD::OPC_Decode, 187, 4, 143, 1, // Opcode: ARK |
2323 | /* 10680 */ MCD::OPC_FilterValue, 249, 1, 17, 0, 0, // Skip to: 10703 |
2324 | /* 10686 */ MCD::OPC_CheckPredicate, 24, 135, 0, 0, // Skip to: 10826 |
2325 | /* 10691 */ MCD::OPC_CheckField, 8, 4, 0, 128, 0, 0, // Skip to: 10826 |
2326 | /* 10698 */ MCD::OPC_Decode, 139, 17, 143, 1, // Opcode: SRK |
2327 | /* 10703 */ MCD::OPC_FilterValue, 250, 1, 17, 0, 0, // Skip to: 10726 |
2328 | /* 10709 */ MCD::OPC_CheckPredicate, 24, 112, 0, 0, // Skip to: 10826 |
2329 | /* 10714 */ MCD::OPC_CheckField, 8, 4, 0, 105, 0, 0, // Skip to: 10826 |
2330 | /* 10721 */ MCD::OPC_Decode, 180, 4, 143, 1, // Opcode: ALRK |
2331 | /* 10726 */ MCD::OPC_FilterValue, 251, 1, 17, 0, 0, // Skip to: 10749 |
2332 | /* 10732 */ MCD::OPC_CheckPredicate, 24, 89, 0, 0, // Skip to: 10826 |
2333 | /* 10737 */ MCD::OPC_CheckField, 8, 4, 0, 82, 0, 0, // Skip to: 10826 |
2334 | /* 10744 */ MCD::OPC_Decode, 240, 16, 143, 1, // Opcode: SLRK |
2335 | /* 10749 */ MCD::OPC_FilterValue, 253, 1, 71, 0, 0, // Skip to: 10826 |
2336 | /* 10755 */ MCD::OPC_CheckPredicate, 25, 66, 0, 0, // Skip to: 10826 |
2337 | /* 10760 */ MCD::OPC_CheckField, 8, 4, 0, 59, 0, 0, // Skip to: 10826 |
2338 | /* 10767 */ MCD::OPC_Decode, 228, 14, 143, 1, // Opcode: MSRKC |
2339 | /* 10772 */ MCD::OPC_FilterValue, 186, 1, 4, 0, 0, // Skip to: 10782 |
2340 | /* 10778 */ MCD::OPC_Decode, 165, 9, 37, // Opcode: CS |
2341 | /* 10782 */ MCD::OPC_FilterValue, 187, 1, 5, 0, 0, // Skip to: 10793 |
2342 | /* 10788 */ MCD::OPC_Decode, 190, 5, 171, 1, // Opcode: CDS |
2343 | /* 10793 */ MCD::OPC_FilterValue, 189, 1, 5, 0, 0, // Skip to: 10804 |
2344 | /* 10799 */ MCD::OPC_Decode, 175, 8, 172, 1, // Opcode: CLM |
2345 | /* 10804 */ MCD::OPC_FilterValue, 190, 1, 5, 0, 0, // Skip to: 10815 |
2346 | /* 10810 */ MCD::OPC_Decode, 167, 17, 172, 1, // Opcode: STCM |
2347 | /* 10815 */ MCD::OPC_FilterValue, 191, 1, 5, 0, 0, // Skip to: 10826 |
2348 | /* 10821 */ MCD::OPC_Decode, 165, 10, 173, 1, // Opcode: ICM |
2349 | /* 10826 */ MCD::OPC_Fail, |
2350 | 0 |
2351 | }; |
2352 | |
2353 | static const uint8_t DecoderTable48[] = { |
2354 | /* 0 */ MCD::OPC_ExtractField, 40, 8, // Inst{47-40} ... |
2355 | /* 3 */ MCD::OPC_FilterValue, 192, 1, 40, 1, 0, // Skip to: 305 |
2356 | /* 9 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2357 | /* 12 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 22 |
2358 | /* 17 */ MCD::OPC_Decode, 163, 11, 174, 1, // Opcode: LARL |
2359 | /* 22 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 32 |
2360 | /* 27 */ MCD::OPC_Decode, 223, 11, 175, 1, // Opcode: LGFI |
2361 | /* 32 */ MCD::OPC_FilterValue, 4, 158, 0, 0, // Skip to: 195 |
2362 | /* 37 */ MCD::OPC_ExtractField, 36, 4, // Inst{39-36} ... |
2363 | /* 40 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 50 |
2364 | /* 45 */ MCD::OPC_Decode, 129, 11, 176, 1, // Opcode: JGAsmO |
2365 | /* 50 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 60 |
2366 | /* 55 */ MCD::OPC_Decode, 241, 10, 176, 1, // Opcode: JGAsmH |
2367 | /* 60 */ MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 70 |
2368 | /* 65 */ MCD::OPC_Decode, 251, 10, 176, 1, // Opcode: JGAsmNLE |
2369 | /* 70 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 80 |
2370 | /* 75 */ MCD::OPC_Decode, 243, 10, 176, 1, // Opcode: JGAsmL |
2371 | /* 80 */ MCD::OPC_FilterValue, 5, 5, 0, 0, // Skip to: 90 |
2372 | /* 85 */ MCD::OPC_Decode, 249, 10, 176, 1, // Opcode: JGAsmNHE |
2373 | /* 90 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 100 |
2374 | /* 95 */ MCD::OPC_Decode, 245, 10, 176, 1, // Opcode: JGAsmLH |
2375 | /* 100 */ MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 110 |
2376 | /* 105 */ MCD::OPC_Decode, 247, 10, 176, 1, // Opcode: JGAsmNE |
2377 | /* 110 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 120 |
2378 | /* 115 */ MCD::OPC_Decode, 240, 10, 176, 1, // Opcode: JGAsmE |
2379 | /* 120 */ MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 130 |
2380 | /* 125 */ MCD::OPC_Decode, 252, 10, 176, 1, // Opcode: JGAsmNLH |
2381 | /* 130 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 140 |
2382 | /* 135 */ MCD::OPC_Decode, 242, 10, 176, 1, // Opcode: JGAsmHE |
2383 | /* 140 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 150 |
2384 | /* 145 */ MCD::OPC_Decode, 250, 10, 176, 1, // Opcode: JGAsmNL |
2385 | /* 150 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 160 |
2386 | /* 155 */ MCD::OPC_Decode, 244, 10, 176, 1, // Opcode: JGAsmLE |
2387 | /* 160 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 170 |
2388 | /* 165 */ MCD::OPC_Decode, 248, 10, 176, 1, // Opcode: JGAsmNH |
2389 | /* 170 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 180 |
2390 | /* 175 */ MCD::OPC_Decode, 254, 10, 176, 1, // Opcode: JGAsmNO |
2391 | /* 180 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 190 |
2392 | /* 185 */ MCD::OPC_Decode, 239, 10, 176, 1, // Opcode: JG |
2393 | /* 190 */ MCD::OPC_Decode, 156, 5, 177, 1, // Opcode: BRCLAsm |
2394 | /* 195 */ MCD::OPC_FilterValue, 5, 5, 0, 0, // Skip to: 205 |
2395 | /* 200 */ MCD::OPC_Decode, 132, 5, 178, 1, // Opcode: BRASL |
2396 | /* 205 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 215 |
2397 | /* 210 */ MCD::OPC_Decode, 184, 24, 179, 1, // Opcode: XIHF |
2398 | /* 215 */ MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 225 |
2399 | /* 220 */ MCD::OPC_Decode, 185, 24, 180, 1, // Opcode: XILF |
2400 | /* 225 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 235 |
2401 | /* 230 */ MCD::OPC_Decode, 173, 10, 181, 1, // Opcode: IIHF |
2402 | /* 235 */ MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 245 |
2403 | /* 240 */ MCD::OPC_Decode, 176, 10, 182, 1, // Opcode: IILF |
2404 | /* 245 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 255 |
2405 | /* 250 */ MCD::OPC_Decode, 148, 15, 179, 1, // Opcode: NIHF |
2406 | /* 255 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 265 |
2407 | /* 260 */ MCD::OPC_Decode, 151, 15, 180, 1, // Opcode: NILF |
2408 | /* 265 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 275 |
2409 | /* 270 */ MCD::OPC_Decode, 179, 15, 179, 1, // Opcode: OIHF |
2410 | /* 275 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 285 |
2411 | /* 280 */ MCD::OPC_Decode, 182, 15, 180, 1, // Opcode: OILF |
2412 | /* 285 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 295 |
2413 | /* 290 */ MCD::OPC_Decode, 132, 12, 183, 1, // Opcode: LLIHF |
2414 | /* 295 */ MCD::OPC_FilterValue, 15, 189, 89, 0, // Skip to: 23273 |
2415 | /* 300 */ MCD::OPC_Decode, 135, 12, 183, 1, // Opcode: LLILF |
2416 | /* 305 */ MCD::OPC_FilterValue, 194, 1, 123, 0, 0, // Skip to: 434 |
2417 | /* 311 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2418 | /* 314 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 324 |
2419 | /* 319 */ MCD::OPC_Decode, 223, 14, 184, 1, // Opcode: MSGFI |
2420 | /* 324 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 334 |
2421 | /* 329 */ MCD::OPC_Decode, 219, 14, 185, 1, // Opcode: MSFI |
2422 | /* 334 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 344 |
2423 | /* 339 */ MCD::OPC_Decode, 230, 16, 186, 1, // Opcode: SLGFI |
2424 | /* 344 */ MCD::OPC_FilterValue, 5, 5, 0, 0, // Skip to: 354 |
2425 | /* 349 */ MCD::OPC_Decode, 227, 16, 180, 1, // Opcode: SLFI |
2426 | /* 354 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 364 |
2427 | /* 359 */ MCD::OPC_Decode, 147, 4, 184, 1, // Opcode: AGFI |
2428 | /* 364 */ MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 374 |
2429 | /* 369 */ MCD::OPC_Decode, 144, 4, 185, 1, // Opcode: AFI |
2430 | /* 374 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 384 |
2431 | /* 379 */ MCD::OPC_Decode, 170, 4, 186, 1, // Opcode: ALGFI |
2432 | /* 384 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 394 |
2433 | /* 389 */ MCD::OPC_Decode, 167, 4, 180, 1, // Opcode: ALFI |
2434 | /* 394 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 404 |
2435 | /* 399 */ MCD::OPC_Decode, 234, 5, 175, 1, // Opcode: CGFI |
2436 | /* 404 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 414 |
2437 | /* 409 */ MCD::OPC_Decode, 219, 5, 187, 1, // Opcode: CFI |
2438 | /* 414 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 424 |
2439 | /* 419 */ MCD::OPC_Decode, 160, 7, 183, 1, // Opcode: CLGFI |
2440 | /* 424 */ MCD::OPC_FilterValue, 15, 60, 89, 0, // Skip to: 23273 |
2441 | /* 429 */ MCD::OPC_Decode, 138, 7, 182, 1, // Opcode: CLFI |
2442 | /* 434 */ MCD::OPC_FilterValue, 196, 1, 113, 0, 0, // Skip to: 553 |
2443 | /* 440 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2444 | /* 443 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 453 |
2445 | /* 448 */ MCD::OPC_Decode, 131, 12, 188, 1, // Opcode: LLHRL |
2446 | /* 453 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 463 |
2447 | /* 458 */ MCD::OPC_Decode, 230, 11, 174, 1, // Opcode: LGHRL |
2448 | /* 463 */ MCD::OPC_FilterValue, 5, 5, 0, 0, // Skip to: 473 |
2449 | /* 468 */ MCD::OPC_Decode, 238, 11, 188, 1, // Opcode: LHRL |
2450 | /* 473 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 483 |
2451 | /* 478 */ MCD::OPC_Decode, 252, 11, 174, 1, // Opcode: LLGHRL |
2452 | /* 483 */ MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 493 |
2453 | /* 488 */ MCD::OPC_Decode, 188, 17, 188, 1, // Opcode: STHRL |
2454 | /* 493 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 503 |
2455 | /* 498 */ MCD::OPC_Decode, 232, 11, 174, 1, // Opcode: LGRL |
2456 | /* 503 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 513 |
2457 | /* 508 */ MCD::OPC_Decode, 184, 17, 174, 1, // Opcode: STGRL |
2458 | /* 513 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 523 |
2459 | /* 518 */ MCD::OPC_Decode, 225, 11, 174, 1, // Opcode: LGFRL |
2460 | /* 523 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 533 |
2461 | /* 528 */ MCD::OPC_Decode, 251, 13, 188, 1, // Opcode: LRL |
2462 | /* 533 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 543 |
2463 | /* 538 */ MCD::OPC_Decode, 248, 11, 174, 1, // Opcode: LLGFRL |
2464 | /* 543 */ MCD::OPC_FilterValue, 15, 197, 88, 0, // Skip to: 23273 |
2465 | /* 548 */ MCD::OPC_Decode, 139, 18, 188, 1, // Opcode: STRL |
2466 | /* 553 */ MCD::OPC_FilterValue, 197, 1, 10, 0, 0, // Skip to: 569 |
2467 | /* 559 */ MCD::OPC_CheckPredicate, 5, 181, 88, 0, // Skip to: 23273 |
2468 | /* 564 */ MCD::OPC_Decode, 129, 5, 189, 1, // Opcode: BPRP |
2469 | /* 569 */ MCD::OPC_FilterValue, 198, 1, 123, 0, 0, // Skip to: 698 |
2470 | /* 575 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2471 | /* 578 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 588 |
2472 | /* 583 */ MCD::OPC_Decode, 145, 10, 190, 1, // Opcode: EXRL |
2473 | /* 588 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 598 |
2474 | /* 593 */ MCD::OPC_Decode, 195, 15, 191, 1, // Opcode: PFDRL |
2475 | /* 598 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 608 |
2476 | /* 603 */ MCD::OPC_Decode, 239, 5, 174, 1, // Opcode: CGHRL |
2477 | /* 608 */ MCD::OPC_FilterValue, 5, 5, 0, 0, // Skip to: 618 |
2478 | /* 613 */ MCD::OPC_Decode, 210, 6, 188, 1, // Opcode: CHRL |
2479 | /* 618 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 628 |
2480 | /* 623 */ MCD::OPC_Decode, 163, 7, 174, 1, // Opcode: CLGHRL |
2481 | /* 628 */ MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 638 |
2482 | /* 633 */ MCD::OPC_Decode, 143, 8, 188, 1, // Opcode: CLHRL |
2483 | /* 638 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 648 |
2484 | /* 643 */ MCD::OPC_Decode, 184, 6, 174, 1, // Opcode: CGRL |
2485 | /* 648 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 658 |
2486 | /* 653 */ MCD::OPC_Decode, 236, 7, 174, 1, // Opcode: CLGRL |
2487 | /* 658 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 668 |
2488 | /* 663 */ MCD::OPC_Decode, 236, 5, 174, 1, // Opcode: CGFRL |
2489 | /* 668 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 678 |
2490 | /* 673 */ MCD::OPC_Decode, 150, 9, 188, 1, // Opcode: CRL |
2491 | /* 678 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 688 |
2492 | /* 683 */ MCD::OPC_Decode, 162, 7, 174, 1, // Opcode: CLGFRL |
2493 | /* 688 */ MCD::OPC_FilterValue, 15, 52, 88, 0, // Skip to: 23273 |
2494 | /* 693 */ MCD::OPC_Decode, 207, 8, 188, 1, // Opcode: CLRL |
2495 | /* 698 */ MCD::OPC_FilterValue, 199, 1, 17, 0, 0, // Skip to: 721 |
2496 | /* 704 */ MCD::OPC_CheckPredicate, 5, 36, 88, 0, // Skip to: 23273 |
2497 | /* 709 */ MCD::OPC_CheckField, 32, 4, 0, 29, 88, 0, // Skip to: 23273 |
2498 | /* 716 */ MCD::OPC_Decode, 128, 5, 192, 1, // Opcode: BPP |
2499 | /* 721 */ MCD::OPC_FilterValue, 200, 1, 63, 0, 0, // Skip to: 790 |
2500 | /* 727 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2501 | /* 730 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 740 |
2502 | /* 735 */ MCD::OPC_Decode, 238, 14, 193, 1, // Opcode: MVCOS |
2503 | /* 740 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 750 |
2504 | /* 745 */ MCD::OPC_Decode, 253, 9, 193, 1, // Opcode: ECTG |
2505 | /* 750 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 760 |
2506 | /* 755 */ MCD::OPC_Decode, 171, 9, 193, 1, // Opcode: CSST |
2507 | /* 760 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 775 |
2508 | /* 765 */ MCD::OPC_CheckPredicate, 26, 231, 87, 0, // Skip to: 23273 |
2509 | /* 770 */ MCD::OPC_Decode, 226, 13, 194, 1, // Opcode: LPD |
2510 | /* 775 */ MCD::OPC_FilterValue, 5, 221, 87, 0, // Skip to: 23273 |
2511 | /* 780 */ MCD::OPC_CheckPredicate, 26, 216, 87, 0, // Skip to: 23273 |
2512 | /* 785 */ MCD::OPC_Decode, 230, 13, 194, 1, // Opcode: LPDG |
2513 | /* 790 */ MCD::OPC_FilterValue, 204, 1, 93, 0, 0, // Skip to: 889 |
2514 | /* 796 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
2515 | /* 799 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 814 |
2516 | /* 804 */ MCD::OPC_CheckPredicate, 20, 192, 87, 0, // Skip to: 23273 |
2517 | /* 809 */ MCD::OPC_Decode, 159, 5, 195, 1, // Opcode: BRCTH |
2518 | /* 814 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 829 |
2519 | /* 819 */ MCD::OPC_CheckPredicate, 20, 177, 87, 0, // Skip to: 23273 |
2520 | /* 824 */ MCD::OPC_Decode, 161, 4, 196, 1, // Opcode: AIH |
2521 | /* 829 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 844 |
2522 | /* 834 */ MCD::OPC_CheckPredicate, 20, 162, 87, 0, // Skip to: 23273 |
2523 | /* 839 */ MCD::OPC_Decode, 182, 4, 196, 1, // Opcode: ALSIH |
2524 | /* 844 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 859 |
2525 | /* 849 */ MCD::OPC_CheckPredicate, 20, 147, 87, 0, // Skip to: 23273 |
2526 | /* 854 */ MCD::OPC_Decode, 183, 4, 196, 1, // Opcode: ALSIHN |
2527 | /* 859 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 874 |
2528 | /* 864 */ MCD::OPC_CheckPredicate, 20, 132, 87, 0, // Skip to: 23273 |
2529 | /* 869 */ MCD::OPC_Decode, 227, 6, 197, 1, // Opcode: CIH |
2530 | /* 874 */ MCD::OPC_FilterValue, 15, 122, 87, 0, // Skip to: 23273 |
2531 | /* 879 */ MCD::OPC_CheckPredicate, 20, 117, 87, 0, // Skip to: 23273 |
2532 | /* 884 */ MCD::OPC_Decode, 159, 8, 181, 1, // Opcode: CLIH |
2533 | /* 889 */ MCD::OPC_FilterValue, 208, 1, 5, 0, 0, // Skip to: 900 |
2534 | /* 895 */ MCD::OPC_Decode, 203, 18, 198, 1, // Opcode: TRTR |
2535 | /* 900 */ MCD::OPC_FilterValue, 209, 1, 5, 0, 0, // Skip to: 911 |
2536 | /* 906 */ MCD::OPC_Decode, 248, 14, 198, 1, // Opcode: MVN |
2537 | /* 911 */ MCD::OPC_FilterValue, 210, 1, 5, 0, 0, // Skip to: 922 |
2538 | /* 917 */ MCD::OPC_Decode, 231, 14, 198, 1, // Opcode: MVC |
2539 | /* 922 */ MCD::OPC_FilterValue, 211, 1, 5, 0, 0, // Skip to: 933 |
2540 | /* 928 */ MCD::OPC_Decode, 252, 14, 198, 1, // Opcode: MVZ |
2541 | /* 933 */ MCD::OPC_FilterValue, 212, 1, 5, 0, 0, // Skip to: 944 |
2542 | /* 939 */ MCD::OPC_Decode, 140, 15, 198, 1, // Opcode: NC |
2543 | /* 944 */ MCD::OPC_FilterValue, 213, 1, 5, 0, 0, // Skip to: 955 |
2544 | /* 950 */ MCD::OPC_Decode, 130, 7, 198, 1, // Opcode: CLC |
2545 | /* 955 */ MCD::OPC_FilterValue, 214, 1, 5, 0, 0, // Skip to: 966 |
2546 | /* 961 */ MCD::OPC_Decode, 172, 15, 198, 1, // Opcode: OC |
2547 | /* 966 */ MCD::OPC_FilterValue, 215, 1, 5, 0, 0, // Skip to: 977 |
2548 | /* 972 */ MCD::OPC_Decode, 179, 24, 198, 1, // Opcode: XC |
2549 | /* 977 */ MCD::OPC_FilterValue, 217, 1, 5, 0, 0, // Skip to: 988 |
2550 | /* 983 */ MCD::OPC_Decode, 234, 14, 199, 1, // Opcode: MVCK |
2551 | /* 988 */ MCD::OPC_FilterValue, 218, 1, 5, 0, 0, // Skip to: 999 |
2552 | /* 994 */ MCD::OPC_Decode, 239, 14, 199, 1, // Opcode: MVCP |
2553 | /* 999 */ MCD::OPC_FilterValue, 219, 1, 5, 0, 0, // Skip to: 1010 |
2554 | /* 1005 */ MCD::OPC_Decode, 241, 14, 199, 1, // Opcode: MVCS |
2555 | /* 1010 */ MCD::OPC_FilterValue, 220, 1, 5, 0, 0, // Skip to: 1021 |
2556 | /* 1016 */ MCD::OPC_Decode, 188, 18, 198, 1, // Opcode: TR |
2557 | /* 1021 */ MCD::OPC_FilterValue, 221, 1, 5, 0, 0, // Skip to: 1032 |
2558 | /* 1027 */ MCD::OPC_Decode, 198, 18, 198, 1, // Opcode: TRT |
2559 | /* 1032 */ MCD::OPC_FilterValue, 222, 1, 5, 0, 0, // Skip to: 1043 |
2560 | /* 1038 */ MCD::OPC_Decode, 254, 9, 198, 1, // Opcode: ED |
2561 | /* 1043 */ MCD::OPC_FilterValue, 223, 1, 5, 0, 0, // Skip to: 1054 |
2562 | /* 1049 */ MCD::OPC_Decode, 255, 9, 198, 1, // Opcode: EDMK |
2563 | /* 1054 */ MCD::OPC_FilterValue, 225, 1, 5, 0, 0, // Skip to: 1065 |
2564 | /* 1060 */ MCD::OPC_Decode, 201, 15, 200, 1, // Opcode: PKU |
2565 | /* 1065 */ MCD::OPC_FilterValue, 226, 1, 5, 0, 0, // Skip to: 1076 |
2566 | /* 1071 */ MCD::OPC_Decode, 212, 18, 198, 1, // Opcode: UNPKU |
2567 | /* 1076 */ MCD::OPC_FilterValue, 227, 1, 255, 5, 0, // Skip to: 2617 |
2568 | /* 1082 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2569 | /* 1085 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 1095 |
2570 | /* 1090 */ MCD::OPC_Decode, 136, 14, 201, 1, // Opcode: LTG |
2571 | /* 1095 */ MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 1105 |
2572 | /* 1100 */ MCD::OPC_Decode, 247, 13, 201, 1, // Opcode: LRAG |
2573 | /* 1105 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 1115 |
2574 | /* 1110 */ MCD::OPC_Decode, 217, 11, 201, 1, // Opcode: LG |
2575 | /* 1115 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 1125 |
2576 | /* 1120 */ MCD::OPC_Decode, 193, 9, 202, 1, // Opcode: CVBY |
2577 | /* 1125 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 1135 |
2578 | /* 1130 */ MCD::OPC_Decode, 145, 4, 203, 1, // Opcode: AG |
2579 | /* 1135 */ MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 1145 |
2580 | /* 1140 */ MCD::OPC_Decode, 203, 16, 203, 1, // Opcode: SG |
2581 | /* 1145 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 1155 |
2582 | /* 1150 */ MCD::OPC_Decode, 168, 4, 203, 1, // Opcode: ALG |
2583 | /* 1155 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 1165 |
2584 | /* 1160 */ MCD::OPC_Decode, 228, 16, 203, 1, // Opcode: SLG |
2585 | /* 1165 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 1175 |
2586 | /* 1170 */ MCD::OPC_Decode, 220, 14, 203, 1, // Opcode: MSG |
2587 | /* 1175 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 1185 |
2588 | /* 1180 */ MCD::OPC_Decode, 241, 9, 204, 1, // Opcode: DSG |
2589 | /* 1185 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 1195 |
2590 | /* 1190 */ MCD::OPC_Decode, 192, 9, 203, 1, // Opcode: CVBG |
2591 | /* 1195 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 1205 |
2592 | /* 1200 */ MCD::OPC_Decode, 253, 13, 201, 1, // Opcode: LRVG |
2593 | /* 1205 */ MCD::OPC_FilterValue, 18, 5, 0, 0, // Skip to: 1215 |
2594 | /* 1210 */ MCD::OPC_Decode, 130, 14, 205, 1, // Opcode: LT |
2595 | /* 1215 */ MCD::OPC_FilterValue, 19, 5, 0, 0, // Skip to: 1225 |
2596 | /* 1220 */ MCD::OPC_Decode, 248, 13, 201, 1, // Opcode: LRAY |
2597 | /* 1225 */ MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 1235 |
2598 | /* 1230 */ MCD::OPC_Decode, 222, 11, 201, 1, // Opcode: LGF |
2599 | /* 1235 */ MCD::OPC_FilterValue, 21, 5, 0, 0, // Skip to: 1245 |
2600 | /* 1240 */ MCD::OPC_Decode, 227, 11, 201, 1, // Opcode: LGH |
2601 | /* 1245 */ MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 1255 |
2602 | /* 1250 */ MCD::OPC_Decode, 245, 11, 201, 1, // Opcode: LLGF |
2603 | /* 1255 */ MCD::OPC_FilterValue, 23, 5, 0, 0, // Skip to: 1265 |
2604 | /* 1260 */ MCD::OPC_Decode, 253, 11, 201, 1, // Opcode: LLGT |
2605 | /* 1265 */ MCD::OPC_FilterValue, 24, 5, 0, 0, // Skip to: 1275 |
2606 | /* 1270 */ MCD::OPC_Decode, 146, 4, 203, 1, // Opcode: AGF |
2607 | /* 1275 */ MCD::OPC_FilterValue, 25, 5, 0, 0, // Skip to: 1285 |
2608 | /* 1280 */ MCD::OPC_Decode, 204, 16, 203, 1, // Opcode: SGF |
2609 | /* 1285 */ MCD::OPC_FilterValue, 26, 5, 0, 0, // Skip to: 1295 |
2610 | /* 1290 */ MCD::OPC_Decode, 169, 4, 203, 1, // Opcode: ALGF |
2611 | /* 1295 */ MCD::OPC_FilterValue, 27, 5, 0, 0, // Skip to: 1305 |
2612 | /* 1300 */ MCD::OPC_Decode, 229, 16, 203, 1, // Opcode: SLGF |
2613 | /* 1305 */ MCD::OPC_FilterValue, 28, 5, 0, 0, // Skip to: 1315 |
2614 | /* 1310 */ MCD::OPC_Decode, 222, 14, 203, 1, // Opcode: MSGF |
2615 | /* 1315 */ MCD::OPC_FilterValue, 29, 5, 0, 0, // Skip to: 1325 |
2616 | /* 1320 */ MCD::OPC_Decode, 242, 9, 204, 1, // Opcode: DSGF |
2617 | /* 1325 */ MCD::OPC_FilterValue, 30, 5, 0, 0, // Skip to: 1335 |
2618 | /* 1330 */ MCD::OPC_Decode, 252, 13, 205, 1, // Opcode: LRV |
2619 | /* 1335 */ MCD::OPC_FilterValue, 31, 5, 0, 0, // Skip to: 1345 |
2620 | /* 1340 */ MCD::OPC_Decode, 255, 13, 205, 1, // Opcode: LRVH |
2621 | /* 1345 */ MCD::OPC_FilterValue, 32, 5, 0, 0, // Skip to: 1355 |
2622 | /* 1350 */ MCD::OPC_Decode, 224, 5, 201, 1, // Opcode: CG |
2623 | /* 1355 */ MCD::OPC_FilterValue, 33, 5, 0, 0, // Skip to: 1365 |
2624 | /* 1360 */ MCD::OPC_Decode, 155, 7, 201, 1, // Opcode: CLG |
2625 | /* 1365 */ MCD::OPC_FilterValue, 36, 5, 0, 0, // Skip to: 1375 |
2626 | /* 1370 */ MCD::OPC_Decode, 183, 17, 201, 1, // Opcode: STG |
2627 | /* 1375 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 1390 |
2628 | /* 1380 */ MCD::OPC_CheckPredicate, 4, 128, 85, 0, // Skip to: 23273 |
2629 | /* 1385 */ MCD::OPC_Decode, 167, 15, 201, 1, // Opcode: NTSTG |
2630 | /* 1390 */ MCD::OPC_FilterValue, 38, 5, 0, 0, // Skip to: 1400 |
2631 | /* 1395 */ MCD::OPC_Decode, 196, 9, 205, 1, // Opcode: CVDY |
2632 | /* 1400 */ MCD::OPC_FilterValue, 42, 10, 0, 0, // Skip to: 1415 |
2633 | /* 1405 */ MCD::OPC_CheckPredicate, 27, 103, 85, 0, // Skip to: 23273 |
2634 | /* 1410 */ MCD::OPC_Decode, 160, 14, 201, 1, // Opcode: LZRG |
2635 | /* 1415 */ MCD::OPC_FilterValue, 46, 5, 0, 0, // Skip to: 1425 |
2636 | /* 1420 */ MCD::OPC_Decode, 195, 9, 201, 1, // Opcode: CVDG |
2637 | /* 1425 */ MCD::OPC_FilterValue, 47, 5, 0, 0, // Skip to: 1435 |
2638 | /* 1430 */ MCD::OPC_Decode, 141, 18, 201, 1, // Opcode: STRVG |
2639 | /* 1435 */ MCD::OPC_FilterValue, 48, 5, 0, 0, // Skip to: 1445 |
2640 | /* 1440 */ MCD::OPC_Decode, 233, 5, 201, 1, // Opcode: CGF |
2641 | /* 1445 */ MCD::OPC_FilterValue, 49, 5, 0, 0, // Skip to: 1455 |
2642 | /* 1450 */ MCD::OPC_Decode, 159, 7, 201, 1, // Opcode: CLGF |
2643 | /* 1455 */ MCD::OPC_FilterValue, 50, 5, 0, 0, // Skip to: 1465 |
2644 | /* 1460 */ MCD::OPC_Decode, 137, 14, 201, 1, // Opcode: LTGF |
2645 | /* 1465 */ MCD::OPC_FilterValue, 52, 5, 0, 0, // Skip to: 1475 |
2646 | /* 1470 */ MCD::OPC_Decode, 237, 5, 201, 1, // Opcode: CGH |
2647 | /* 1475 */ MCD::OPC_FilterValue, 54, 5, 0, 0, // Skip to: 1485 |
2648 | /* 1480 */ MCD::OPC_Decode, 194, 15, 206, 1, // Opcode: PFD |
2649 | /* 1485 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 1500 |
2650 | /* 1490 */ MCD::OPC_CheckPredicate, 25, 18, 85, 0, // Skip to: 23273 |
2651 | /* 1495 */ MCD::OPC_Decode, 149, 4, 203, 1, // Opcode: AGH |
2652 | /* 1500 */ MCD::OPC_FilterValue, 57, 10, 0, 0, // Skip to: 1515 |
2653 | /* 1505 */ MCD::OPC_CheckPredicate, 25, 3, 85, 0, // Skip to: 23273 |
2654 | /* 1510 */ MCD::OPC_Decode, 206, 16, 203, 1, // Opcode: SGH |
2655 | /* 1515 */ MCD::OPC_FilterValue, 58, 10, 0, 0, // Skip to: 1530 |
2656 | /* 1520 */ MCD::OPC_CheckPredicate, 27, 244, 84, 0, // Skip to: 23273 |
2657 | /* 1525 */ MCD::OPC_Decode, 138, 12, 201, 1, // Opcode: LLZRGF |
2658 | /* 1530 */ MCD::OPC_FilterValue, 59, 10, 0, 0, // Skip to: 1545 |
2659 | /* 1535 */ MCD::OPC_CheckPredicate, 27, 229, 84, 0, // Skip to: 23273 |
2660 | /* 1540 */ MCD::OPC_Decode, 159, 14, 205, 1, // Opcode: LZRF |
2661 | /* 1545 */ MCD::OPC_FilterValue, 60, 10, 0, 0, // Skip to: 1560 |
2662 | /* 1550 */ MCD::OPC_CheckPredicate, 25, 214, 84, 0, // Skip to: 23273 |
2663 | /* 1555 */ MCD::OPC_Decode, 196, 14, 203, 1, // Opcode: MGH |
2664 | /* 1560 */ MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 1570 |
2665 | /* 1565 */ MCD::OPC_Decode, 140, 18, 205, 1, // Opcode: STRV |
2666 | /* 1570 */ MCD::OPC_FilterValue, 63, 5, 0, 0, // Skip to: 1580 |
2667 | /* 1575 */ MCD::OPC_Decode, 142, 18, 205, 1, // Opcode: STRVH |
2668 | /* 1580 */ MCD::OPC_FilterValue, 70, 5, 0, 0, // Skip to: 1590 |
2669 | /* 1585 */ MCD::OPC_Decode, 230, 4, 203, 1, // Opcode: BCTG |
2670 | /* 1590 */ MCD::OPC_FilterValue, 71, 238, 0, 0, // Skip to: 1833 |
2671 | /* 1595 */ MCD::OPC_ExtractField, 36, 4, // Inst{39-36} ... |
2672 | /* 1598 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1613 |
2673 | /* 1603 */ MCD::OPC_CheckPredicate, 25, 215, 0, 0, // Skip to: 1823 |
2674 | /* 1608 */ MCD::OPC_Decode, 251, 4, 207, 1, // Opcode: BIAsmO |
2675 | /* 1613 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1628 |
2676 | /* 1618 */ MCD::OPC_CheckPredicate, 25, 200, 0, 0, // Skip to: 1823 |
2677 | /* 1623 */ MCD::OPC_Decode, 235, 4, 207, 1, // Opcode: BIAsmH |
2678 | /* 1628 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1643 |
2679 | /* 1633 */ MCD::OPC_CheckPredicate, 25, 185, 0, 0, // Skip to: 1823 |
2680 | /* 1638 */ MCD::OPC_Decode, 245, 4, 207, 1, // Opcode: BIAsmNLE |
2681 | /* 1643 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1658 |
2682 | /* 1648 */ MCD::OPC_CheckPredicate, 25, 170, 0, 0, // Skip to: 1823 |
2683 | /* 1653 */ MCD::OPC_Decode, 237, 4, 207, 1, // Opcode: BIAsmL |
2684 | /* 1658 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1673 |
2685 | /* 1663 */ MCD::OPC_CheckPredicate, 25, 155, 0, 0, // Skip to: 1823 |
2686 | /* 1668 */ MCD::OPC_Decode, 243, 4, 207, 1, // Opcode: BIAsmNHE |
2687 | /* 1673 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1688 |
2688 | /* 1678 */ MCD::OPC_CheckPredicate, 25, 140, 0, 0, // Skip to: 1823 |
2689 | /* 1683 */ MCD::OPC_Decode, 239, 4, 207, 1, // Opcode: BIAsmLH |
2690 | /* 1688 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1703 |
2691 | /* 1693 */ MCD::OPC_CheckPredicate, 25, 125, 0, 0, // Skip to: 1823 |
2692 | /* 1698 */ MCD::OPC_Decode, 241, 4, 207, 1, // Opcode: BIAsmNE |
2693 | /* 1703 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1718 |
2694 | /* 1708 */ MCD::OPC_CheckPredicate, 25, 110, 0, 0, // Skip to: 1823 |
2695 | /* 1713 */ MCD::OPC_Decode, 234, 4, 207, 1, // Opcode: BIAsmE |
2696 | /* 1718 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1733 |
2697 | /* 1723 */ MCD::OPC_CheckPredicate, 25, 95, 0, 0, // Skip to: 1823 |
2698 | /* 1728 */ MCD::OPC_Decode, 246, 4, 207, 1, // Opcode: BIAsmNLH |
2699 | /* 1733 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1748 |
2700 | /* 1738 */ MCD::OPC_CheckPredicate, 25, 80, 0, 0, // Skip to: 1823 |
2701 | /* 1743 */ MCD::OPC_Decode, 236, 4, 207, 1, // Opcode: BIAsmHE |
2702 | /* 1748 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1763 |
2703 | /* 1753 */ MCD::OPC_CheckPredicate, 25, 65, 0, 0, // Skip to: 1823 |
2704 | /* 1758 */ MCD::OPC_Decode, 244, 4, 207, 1, // Opcode: BIAsmNL |
2705 | /* 1763 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1778 |
2706 | /* 1768 */ MCD::OPC_CheckPredicate, 25, 50, 0, 0, // Skip to: 1823 |
2707 | /* 1773 */ MCD::OPC_Decode, 238, 4, 207, 1, // Opcode: BIAsmLE |
2708 | /* 1778 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1793 |
2709 | /* 1783 */ MCD::OPC_CheckPredicate, 25, 35, 0, 0, // Skip to: 1823 |
2710 | /* 1788 */ MCD::OPC_Decode, 242, 4, 207, 1, // Opcode: BIAsmNH |
2711 | /* 1793 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1808 |
2712 | /* 1798 */ MCD::OPC_CheckPredicate, 25, 20, 0, 0, // Skip to: 1823 |
2713 | /* 1803 */ MCD::OPC_Decode, 248, 4, 207, 1, // Opcode: BIAsmNO |
2714 | /* 1808 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1823 |
2715 | /* 1813 */ MCD::OPC_CheckPredicate, 25, 5, 0, 0, // Skip to: 1823 |
2716 | /* 1818 */ MCD::OPC_Decode, 233, 4, 207, 1, // Opcode: BI |
2717 | /* 1823 */ MCD::OPC_CheckPredicate, 25, 197, 83, 0, // Skip to: 23273 |
2718 | /* 1828 */ MCD::OPC_Decode, 255, 4, 206, 1, // Opcode: BICAsm |
2719 | /* 1833 */ MCD::OPC_FilterValue, 72, 10, 0, 0, // Skip to: 1848 |
2720 | /* 1838 */ MCD::OPC_CheckPredicate, 28, 182, 83, 0, // Skip to: 23273 |
2721 | /* 1843 */ MCD::OPC_Decode, 249, 11, 201, 1, // Opcode: LLGFSG |
2722 | /* 1848 */ MCD::OPC_FilterValue, 73, 10, 0, 0, // Skip to: 1863 |
2723 | /* 1853 */ MCD::OPC_CheckPredicate, 28, 167, 83, 0, // Skip to: 23273 |
2724 | /* 1858 */ MCD::OPC_Decode, 185, 17, 201, 1, // Opcode: STGSC |
2725 | /* 1863 */ MCD::OPC_FilterValue, 76, 10, 0, 0, // Skip to: 1878 |
2726 | /* 1868 */ MCD::OPC_CheckPredicate, 28, 152, 83, 0, // Skip to: 23273 |
2727 | /* 1873 */ MCD::OPC_Decode, 226, 11, 201, 1, // Opcode: LGG |
2728 | /* 1878 */ MCD::OPC_FilterValue, 77, 10, 0, 0, // Skip to: 1893 |
2729 | /* 1883 */ MCD::OPC_CheckPredicate, 28, 137, 83, 0, // Skip to: 23273 |
2730 | /* 1888 */ MCD::OPC_Decode, 233, 11, 201, 1, // Opcode: LGSC |
2731 | /* 1893 */ MCD::OPC_FilterValue, 80, 5, 0, 0, // Skip to: 1903 |
2732 | /* 1898 */ MCD::OPC_Decode, 147, 18, 205, 1, // Opcode: STY |
2733 | /* 1903 */ MCD::OPC_FilterValue, 81, 5, 0, 0, // Skip to: 1913 |
2734 | /* 1908 */ MCD::OPC_Decode, 230, 14, 202, 1, // Opcode: MSY |
2735 | /* 1913 */ MCD::OPC_FilterValue, 83, 10, 0, 0, // Skip to: 1928 |
2736 | /* 1918 */ MCD::OPC_CheckPredicate, 25, 102, 83, 0, // Skip to: 23273 |
2737 | /* 1923 */ MCD::OPC_Decode, 209, 14, 202, 1, // Opcode: MSC |
2738 | /* 1928 */ MCD::OPC_FilterValue, 84, 5, 0, 0, // Skip to: 1938 |
2739 | /* 1933 */ MCD::OPC_Decode, 170, 15, 202, 1, // Opcode: NY |
2740 | /* 1938 */ MCD::OPC_FilterValue, 85, 5, 0, 0, // Skip to: 1948 |
2741 | /* 1943 */ MCD::OPC_Decode, 237, 8, 205, 1, // Opcode: CLY |
2742 | /* 1948 */ MCD::OPC_FilterValue, 86, 5, 0, 0, // Skip to: 1958 |
2743 | /* 1953 */ MCD::OPC_Decode, 188, 15, 202, 1, // Opcode: OY |
2744 | /* 1958 */ MCD::OPC_FilterValue, 87, 5, 0, 0, // Skip to: 1968 |
2745 | /* 1963 */ MCD::OPC_Decode, 190, 24, 202, 1, // Opcode: XY |
2746 | /* 1968 */ MCD::OPC_FilterValue, 88, 5, 0, 0, // Skip to: 1978 |
2747 | /* 1973 */ MCD::OPC_Decode, 156, 14, 205, 1, // Opcode: LY |
2748 | /* 1978 */ MCD::OPC_FilterValue, 89, 5, 0, 0, // Skip to: 1988 |
2749 | /* 1983 */ MCD::OPC_Decode, 217, 9, 205, 1, // Opcode: CY |
2750 | /* 1988 */ MCD::OPC_FilterValue, 90, 5, 0, 0, // Skip to: 1998 |
2751 | /* 1993 */ MCD::OPC_Decode, 197, 4, 202, 1, // Opcode: AY |
2752 | /* 1998 */ MCD::OPC_FilterValue, 91, 5, 0, 0, // Skip to: 2008 |
2753 | /* 2003 */ MCD::OPC_Decode, 157, 18, 202, 1, // Opcode: SY |
2754 | /* 2008 */ MCD::OPC_FilterValue, 92, 5, 0, 0, // Skip to: 2018 |
2755 | /* 2013 */ MCD::OPC_Decode, 194, 14, 204, 1, // Opcode: MFY |
2756 | /* 2018 */ MCD::OPC_FilterValue, 94, 5, 0, 0, // Skip to: 2028 |
2757 | /* 2023 */ MCD::OPC_Decode, 184, 4, 202, 1, // Opcode: ALY |
2758 | /* 2028 */ MCD::OPC_FilterValue, 95, 5, 0, 0, // Skip to: 2038 |
2759 | /* 2033 */ MCD::OPC_Decode, 242, 16, 202, 1, // Opcode: SLY |
2760 | /* 2038 */ MCD::OPC_FilterValue, 112, 5, 0, 0, // Skip to: 2048 |
2761 | /* 2043 */ MCD::OPC_Decode, 189, 17, 205, 1, // Opcode: STHY |
2762 | /* 2048 */ MCD::OPC_FilterValue, 113, 5, 0, 0, // Skip to: 2058 |
2763 | /* 2053 */ MCD::OPC_Decode, 168, 11, 201, 1, // Opcode: LAY |
2764 | /* 2058 */ MCD::OPC_FilterValue, 114, 5, 0, 0, // Skip to: 2068 |
2765 | /* 2063 */ MCD::OPC_Decode, 174, 17, 205, 1, // Opcode: STCY |
2766 | /* 2068 */ MCD::OPC_FilterValue, 115, 5, 0, 0, // Skip to: 2078 |
2767 | /* 2073 */ MCD::OPC_Decode, 168, 10, 203, 1, // Opcode: ICY |
2768 | /* 2078 */ MCD::OPC_FilterValue, 117, 5, 0, 0, // Skip to: 2088 |
2769 | /* 2083 */ MCD::OPC_Decode, 156, 11, 201, 1, // Opcode: LAEY |
2770 | /* 2088 */ MCD::OPC_FilterValue, 118, 5, 0, 0, // Skip to: 2098 |
2771 | /* 2093 */ MCD::OPC_Decode, 169, 11, 205, 1, // Opcode: LB |
2772 | /* 2098 */ MCD::OPC_FilterValue, 119, 5, 0, 0, // Skip to: 2108 |
2773 | /* 2103 */ MCD::OPC_Decode, 219, 11, 201, 1, // Opcode: LGB |
2774 | /* 2108 */ MCD::OPC_FilterValue, 120, 5, 0, 0, // Skip to: 2118 |
2775 | /* 2113 */ MCD::OPC_Decode, 239, 11, 205, 1, // Opcode: LHY |
2776 | /* 2118 */ MCD::OPC_FilterValue, 121, 5, 0, 0, // Skip to: 2128 |
2777 | /* 2123 */ MCD::OPC_Decode, 212, 6, 205, 1, // Opcode: CHY |
2778 | /* 2128 */ MCD::OPC_FilterValue, 122, 5, 0, 0, // Skip to: 2138 |
2779 | /* 2133 */ MCD::OPC_Decode, 160, 4, 202, 1, // Opcode: AHY |
2780 | /* 2138 */ MCD::OPC_FilterValue, 123, 5, 0, 0, // Skip to: 2148 |
2781 | /* 2143 */ MCD::OPC_Decode, 212, 16, 202, 1, // Opcode: SHY |
2782 | /* 2148 */ MCD::OPC_FilterValue, 124, 5, 0, 0, // Skip to: 2158 |
2783 | /* 2153 */ MCD::OPC_Decode, 201, 14, 202, 1, // Opcode: MHY |
2784 | /* 2158 */ MCD::OPC_FilterValue, 128, 1, 5, 0, 0, // Skip to: 2169 |
2785 | /* 2164 */ MCD::OPC_Decode, 143, 15, 203, 1, // Opcode: NG |
2786 | /* 2169 */ MCD::OPC_FilterValue, 129, 1, 5, 0, 0, // Skip to: 2180 |
2787 | /* 2175 */ MCD::OPC_Decode, 175, 15, 203, 1, // Opcode: OG |
2788 | /* 2180 */ MCD::OPC_FilterValue, 130, 1, 5, 0, 0, // Skip to: 2191 |
2789 | /* 2186 */ MCD::OPC_Decode, 180, 24, 203, 1, // Opcode: XG |
2790 | /* 2191 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 2207 |
2791 | /* 2197 */ MCD::OPC_CheckPredicate, 25, 79, 82, 0, // Skip to: 23273 |
2792 | /* 2202 */ MCD::OPC_Decode, 221, 14, 203, 1, // Opcode: MSGC |
2793 | /* 2207 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 2223 |
2794 | /* 2213 */ MCD::OPC_CheckPredicate, 25, 63, 82, 0, // Skip to: 23273 |
2795 | /* 2218 */ MCD::OPC_Decode, 195, 14, 204, 1, // Opcode: MG |
2796 | /* 2223 */ MCD::OPC_FilterValue, 133, 1, 10, 0, 0, // Skip to: 2239 |
2797 | /* 2229 */ MCD::OPC_CheckPredicate, 29, 47, 82, 0, // Skip to: 23273 |
2798 | /* 2234 */ MCD::OPC_Decode, 218, 11, 201, 1, // Opcode: LGAT |
2799 | /* 2239 */ MCD::OPC_FilterValue, 134, 1, 5, 0, 0, // Skip to: 2250 |
2800 | /* 2245 */ MCD::OPC_Decode, 203, 14, 204, 1, // Opcode: MLG |
2801 | /* 2250 */ MCD::OPC_FilterValue, 135, 1, 5, 0, 0, // Skip to: 2261 |
2802 | /* 2256 */ MCD::OPC_Decode, 236, 9, 204, 1, // Opcode: DLG |
2803 | /* 2261 */ MCD::OPC_FilterValue, 136, 1, 5, 0, 0, // Skip to: 2272 |
2804 | /* 2267 */ MCD::OPC_Decode, 164, 4, 203, 1, // Opcode: ALCG |
2805 | /* 2272 */ MCD::OPC_FilterValue, 137, 1, 5, 0, 0, // Skip to: 2283 |
2806 | /* 2278 */ MCD::OPC_Decode, 221, 16, 203, 1, // Opcode: SLBG |
2807 | /* 2283 */ MCD::OPC_FilterValue, 142, 1, 5, 0, 0, // Skip to: 2294 |
2808 | /* 2289 */ MCD::OPC_Decode, 135, 18, 208, 1, // Opcode: STPQ |
2809 | /* 2294 */ MCD::OPC_FilterValue, 143, 1, 5, 0, 0, // Skip to: 2305 |
2810 | /* 2300 */ MCD::OPC_Decode, 237, 13, 208, 1, // Opcode: LPQ |
2811 | /* 2305 */ MCD::OPC_FilterValue, 144, 1, 5, 0, 0, // Skip to: 2316 |
2812 | /* 2311 */ MCD::OPC_Decode, 243, 11, 201, 1, // Opcode: LLGC |
2813 | /* 2316 */ MCD::OPC_FilterValue, 145, 1, 5, 0, 0, // Skip to: 2327 |
2814 | /* 2322 */ MCD::OPC_Decode, 250, 11, 201, 1, // Opcode: LLGH |
2815 | /* 2327 */ MCD::OPC_FilterValue, 148, 1, 5, 0, 0, // Skip to: 2338 |
2816 | /* 2333 */ MCD::OPC_Decode, 240, 11, 205, 1, // Opcode: LLC |
2817 | /* 2338 */ MCD::OPC_FilterValue, 149, 1, 5, 0, 0, // Skip to: 2349 |
2818 | /* 2344 */ MCD::OPC_Decode, 128, 12, 205, 1, // Opcode: LLH |
2819 | /* 2349 */ MCD::OPC_FilterValue, 150, 1, 5, 0, 0, // Skip to: 2360 |
2820 | /* 2355 */ MCD::OPC_Decode, 202, 14, 204, 1, // Opcode: ML |
2821 | /* 2360 */ MCD::OPC_FilterValue, 151, 1, 5, 0, 0, // Skip to: 2371 |
2822 | /* 2366 */ MCD::OPC_Decode, 235, 9, 204, 1, // Opcode: DL |
2823 | /* 2371 */ MCD::OPC_FilterValue, 152, 1, 5, 0, 0, // Skip to: 2382 |
2824 | /* 2377 */ MCD::OPC_Decode, 163, 4, 202, 1, // Opcode: ALC |
2825 | /* 2382 */ MCD::OPC_FilterValue, 153, 1, 5, 0, 0, // Skip to: 2393 |
2826 | /* 2388 */ MCD::OPC_Decode, 220, 16, 202, 1, // Opcode: SLB |
2827 | /* 2393 */ MCD::OPC_FilterValue, 156, 1, 10, 0, 0, // Skip to: 2409 |
2828 | /* 2399 */ MCD::OPC_CheckPredicate, 29, 133, 81, 0, // Skip to: 23273 |
2829 | /* 2404 */ MCD::OPC_Decode, 254, 11, 201, 1, // Opcode: LLGTAT |
2830 | /* 2409 */ MCD::OPC_FilterValue, 157, 1, 10, 0, 0, // Skip to: 2425 |
2831 | /* 2415 */ MCD::OPC_CheckPredicate, 29, 117, 81, 0, // Skip to: 23273 |
2832 | /* 2420 */ MCD::OPC_Decode, 246, 11, 201, 1, // Opcode: LLGFAT |
2833 | /* 2425 */ MCD::OPC_FilterValue, 159, 1, 10, 0, 0, // Skip to: 2441 |
2834 | /* 2431 */ MCD::OPC_CheckPredicate, 29, 101, 81, 0, // Skip to: 23273 |
2835 | /* 2436 */ MCD::OPC_Decode, 165, 11, 205, 1, // Opcode: LAT |
2836 | /* 2441 */ MCD::OPC_FilterValue, 192, 1, 10, 0, 0, // Skip to: 2457 |
2837 | /* 2447 */ MCD::OPC_CheckPredicate, 20, 85, 81, 0, // Skip to: 23273 |
2838 | /* 2452 */ MCD::OPC_Decode, 171, 11, 209, 1, // Opcode: LBH |
2839 | /* 2457 */ MCD::OPC_FilterValue, 194, 1, 10, 0, 0, // Skip to: 2473 |
2840 | /* 2463 */ MCD::OPC_CheckPredicate, 20, 69, 81, 0, // Skip to: 23273 |
2841 | /* 2468 */ MCD::OPC_Decode, 241, 11, 209, 1, // Opcode: LLCH |
2842 | /* 2473 */ MCD::OPC_FilterValue, 195, 1, 10, 0, 0, // Skip to: 2489 |
2843 | /* 2479 */ MCD::OPC_CheckPredicate, 20, 53, 81, 0, // Skip to: 23273 |
2844 | /* 2484 */ MCD::OPC_Decode, 162, 17, 209, 1, // Opcode: STCH |
2845 | /* 2489 */ MCD::OPC_FilterValue, 196, 1, 10, 0, 0, // Skip to: 2505 |
2846 | /* 2495 */ MCD::OPC_CheckPredicate, 20, 37, 81, 0, // Skip to: 23273 |
2847 | /* 2500 */ MCD::OPC_Decode, 235, 11, 209, 1, // Opcode: LHH |
2848 | /* 2505 */ MCD::OPC_FilterValue, 198, 1, 10, 0, 0, // Skip to: 2521 |
2849 | /* 2511 */ MCD::OPC_CheckPredicate, 20, 21, 81, 0, // Skip to: 23273 |
2850 | /* 2516 */ MCD::OPC_Decode, 129, 12, 209, 1, // Opcode: LLHH |
2851 | /* 2521 */ MCD::OPC_FilterValue, 199, 1, 10, 0, 0, // Skip to: 2537 |
2852 | /* 2527 */ MCD::OPC_CheckPredicate, 20, 5, 81, 0, // Skip to: 23273 |
2853 | /* 2532 */ MCD::OPC_Decode, 187, 17, 209, 1, // Opcode: STHH |
2854 | /* 2537 */ MCD::OPC_FilterValue, 200, 1, 10, 0, 0, // Skip to: 2553 |
2855 | /* 2543 */ MCD::OPC_CheckPredicate, 29, 245, 80, 0, // Skip to: 23273 |
2856 | /* 2548 */ MCD::OPC_Decode, 215, 11, 209, 1, // Opcode: LFHAT |
2857 | /* 2553 */ MCD::OPC_FilterValue, 202, 1, 10, 0, 0, // Skip to: 2569 |
2858 | /* 2559 */ MCD::OPC_CheckPredicate, 20, 229, 80, 0, // Skip to: 23273 |
2859 | /* 2564 */ MCD::OPC_Decode, 214, 11, 209, 1, // Opcode: LFH |
2860 | /* 2569 */ MCD::OPC_FilterValue, 203, 1, 10, 0, 0, // Skip to: 2585 |
2861 | /* 2575 */ MCD::OPC_CheckPredicate, 20, 213, 80, 0, // Skip to: 23273 |
2862 | /* 2580 */ MCD::OPC_Decode, 179, 17, 209, 1, // Opcode: STFH |
2863 | /* 2585 */ MCD::OPC_FilterValue, 205, 1, 10, 0, 0, // Skip to: 2601 |
2864 | /* 2591 */ MCD::OPC_CheckPredicate, 20, 197, 80, 0, // Skip to: 23273 |
2865 | /* 2596 */ MCD::OPC_Decode, 205, 6, 209, 1, // Opcode: CHF |
2866 | /* 2601 */ MCD::OPC_FilterValue, 207, 1, 186, 80, 0, // Skip to: 23273 |
2867 | /* 2607 */ MCD::OPC_CheckPredicate, 20, 181, 80, 0, // Skip to: 23273 |
2868 | /* 2612 */ MCD::OPC_Decode, 139, 8, 209, 1, // Opcode: CLHF |
2869 | /* 2617 */ MCD::OPC_FilterValue, 229, 1, 188, 0, 0, // Skip to: 2811 |
2870 | /* 2623 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2871 | /* 2626 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2636 |
2872 | /* 2631 */ MCD::OPC_Decode, 164, 11, 210, 1, // Opcode: LASP |
2873 | /* 2636 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 2646 |
2874 | /* 2641 */ MCD::OPC_Decode, 187, 18, 210, 1, // Opcode: TPROT |
2875 | /* 2646 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 2656 |
2876 | /* 2651 */ MCD::OPC_Decode, 138, 18, 210, 1, // Opcode: STRAG |
2877 | /* 2656 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 2671 |
2878 | /* 2661 */ MCD::OPC_CheckPredicate, 14, 127, 80, 0, // Skip to: 23273 |
2879 | /* 2666 */ MCD::OPC_Decode, 240, 14, 210, 1, // Opcode: MVCRL |
2880 | /* 2671 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 2681 |
2881 | /* 2676 */ MCD::OPC_Decode, 242, 14, 210, 1, // Opcode: MVCSK |
2882 | /* 2681 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 2691 |
2883 | /* 2686 */ MCD::OPC_Decode, 232, 14, 210, 1, // Opcode: MVCDK |
2884 | /* 2691 */ MCD::OPC_FilterValue, 68, 5, 0, 0, // Skip to: 2701 |
2885 | /* 2696 */ MCD::OPC_Decode, 244, 14, 211, 1, // Opcode: MVHHI |
2886 | /* 2701 */ MCD::OPC_FilterValue, 72, 5, 0, 0, // Skip to: 2711 |
2887 | /* 2706 */ MCD::OPC_Decode, 243, 14, 211, 1, // Opcode: MVGHI |
2888 | /* 2711 */ MCD::OPC_FilterValue, 76, 5, 0, 0, // Skip to: 2721 |
2889 | /* 2716 */ MCD::OPC_Decode, 245, 14, 211, 1, // Opcode: MVHI |
2890 | /* 2721 */ MCD::OPC_FilterValue, 84, 5, 0, 0, // Skip to: 2731 |
2891 | /* 2726 */ MCD::OPC_Decode, 207, 6, 211, 1, // Opcode: CHHSI |
2892 | /* 2731 */ MCD::OPC_FilterValue, 85, 5, 0, 0, // Skip to: 2741 |
2893 | /* 2736 */ MCD::OPC_Decode, 141, 8, 212, 1, // Opcode: CLHHSI |
2894 | /* 2741 */ MCD::OPC_FilterValue, 88, 5, 0, 0, // Skip to: 2751 |
2895 | /* 2746 */ MCD::OPC_Decode, 240, 5, 211, 1, // Opcode: CGHSI |
2896 | /* 2751 */ MCD::OPC_FilterValue, 89, 5, 0, 0, // Skip to: 2761 |
2897 | /* 2756 */ MCD::OPC_Decode, 164, 7, 212, 1, // Opcode: CLGHSI |
2898 | /* 2761 */ MCD::OPC_FilterValue, 92, 5, 0, 0, // Skip to: 2771 |
2899 | /* 2766 */ MCD::OPC_Decode, 211, 6, 211, 1, // Opcode: CHSI |
2900 | /* 2771 */ MCD::OPC_FilterValue, 93, 5, 0, 0, // Skip to: 2781 |
2901 | /* 2776 */ MCD::OPC_Decode, 137, 7, 212, 1, // Opcode: CLFHSI |
2902 | /* 2781 */ MCD::OPC_FilterValue, 96, 10, 0, 0, // Skip to: 2796 |
2903 | /* 2786 */ MCD::OPC_CheckPredicate, 4, 2, 80, 0, // Skip to: 23273 |
2904 | /* 2791 */ MCD::OPC_Decode, 164, 18, 212, 1, // Opcode: TBEGIN |
2905 | /* 2796 */ MCD::OPC_FilterValue, 97, 248, 79, 0, // Skip to: 23273 |
2906 | /* 2801 */ MCD::OPC_CheckPredicate, 4, 243, 79, 0, // Skip to: 23273 |
2907 | /* 2806 */ MCD::OPC_Decode, 165, 18, 212, 1, // Opcode: TBEGINC |
2908 | /* 2811 */ MCD::OPC_FilterValue, 230, 1, 204, 6, 0, // Skip to: 4557 |
2909 | /* 2817 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2910 | /* 2820 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 2842 |
2911 | /* 2825 */ MCD::OPC_CheckPredicate, 30, 219, 79, 0, // Skip to: 23273 |
2912 | /* 2830 */ MCD::OPC_CheckField, 8, 3, 0, 212, 79, 0, // Skip to: 23273 |
2913 | /* 2837 */ MCD::OPC_Decode, 147, 21, 213, 1, // Opcode: VLEBRH |
2914 | /* 2842 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 2864 |
2915 | /* 2847 */ MCD::OPC_CheckPredicate, 30, 197, 79, 0, // Skip to: 23273 |
2916 | /* 2852 */ MCD::OPC_CheckField, 8, 3, 0, 190, 79, 0, // Skip to: 23273 |
2917 | /* 2859 */ MCD::OPC_Decode, 146, 21, 214, 1, // Opcode: VLEBRG |
2918 | /* 2864 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 2886 |
2919 | /* 2869 */ MCD::OPC_CheckPredicate, 30, 175, 79, 0, // Skip to: 23273 |
2920 | /* 2874 */ MCD::OPC_CheckField, 8, 3, 0, 168, 79, 0, // Skip to: 23273 |
2921 | /* 2881 */ MCD::OPC_Decode, 145, 21, 215, 1, // Opcode: VLEBRF |
2922 | /* 2886 */ MCD::OPC_FilterValue, 4, 81, 0, 0, // Skip to: 2972 |
2923 | /* 2891 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
2924 | /* 2894 */ MCD::OPC_FilterValue, 0, 150, 79, 0, // Skip to: 23273 |
2925 | /* 2899 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2926 | /* 2902 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2917 |
2927 | /* 2907 */ MCD::OPC_CheckPredicate, 30, 50, 0, 0, // Skip to: 2962 |
2928 | /* 2912 */ MCD::OPC_Decode, 172, 21, 216, 1, // Opcode: VLLEBRZH |
2929 | /* 2917 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2932 |
2930 | /* 2922 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 2962 |
2931 | /* 2927 */ MCD::OPC_Decode, 170, 21, 216, 1, // Opcode: VLLEBRZF |
2932 | /* 2932 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2947 |
2933 | /* 2937 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 2962 |
2934 | /* 2942 */ MCD::OPC_Decode, 171, 21, 216, 1, // Opcode: VLLEBRZG |
2935 | /* 2947 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 2962 |
2936 | /* 2952 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 2962 |
2937 | /* 2957 */ MCD::OPC_Decode, 169, 21, 216, 1, // Opcode: VLLEBRZE |
2938 | /* 2962 */ MCD::OPC_CheckPredicate, 30, 82, 79, 0, // Skip to: 23273 |
2939 | /* 2967 */ MCD::OPC_Decode, 168, 21, 217, 1, // Opcode: VLLEBRZ |
2940 | /* 2972 */ MCD::OPC_FilterValue, 5, 66, 0, 0, // Skip to: 3043 |
2941 | /* 2977 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
2942 | /* 2980 */ MCD::OPC_FilterValue, 0, 64, 79, 0, // Skip to: 23273 |
2943 | /* 2985 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2944 | /* 2988 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3003 |
2945 | /* 2993 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 3033 |
2946 | /* 2998 */ MCD::OPC_Decode, 136, 21, 216, 1, // Opcode: VLBRREPH |
2947 | /* 3003 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3018 |
2948 | /* 3008 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 3033 |
2949 | /* 3013 */ MCD::OPC_Decode, 134, 21, 216, 1, // Opcode: VLBRREPF |
2950 | /* 3018 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3033 |
2951 | /* 3023 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 3033 |
2952 | /* 3028 */ MCD::OPC_Decode, 135, 21, 216, 1, // Opcode: VLBRREPG |
2953 | /* 3033 */ MCD::OPC_CheckPredicate, 30, 11, 79, 0, // Skip to: 23273 |
2954 | /* 3038 */ MCD::OPC_Decode, 133, 21, 217, 1, // Opcode: VLBRREP |
2955 | /* 3043 */ MCD::OPC_FilterValue, 6, 81, 0, 0, // Skip to: 3129 |
2956 | /* 3048 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
2957 | /* 3051 */ MCD::OPC_FilterValue, 0, 249, 78, 0, // Skip to: 23273 |
2958 | /* 3056 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2959 | /* 3059 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3074 |
2960 | /* 3064 */ MCD::OPC_CheckPredicate, 30, 50, 0, 0, // Skip to: 3119 |
2961 | /* 3069 */ MCD::OPC_Decode, 131, 21, 216, 1, // Opcode: VLBRH |
2962 | /* 3074 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3089 |
2963 | /* 3079 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 3119 |
2964 | /* 3084 */ MCD::OPC_Decode, 129, 21, 216, 1, // Opcode: VLBRF |
2965 | /* 3089 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3104 |
2966 | /* 3094 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 3119 |
2967 | /* 3099 */ MCD::OPC_Decode, 130, 21, 216, 1, // Opcode: VLBRG |
2968 | /* 3104 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 3119 |
2969 | /* 3109 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 3119 |
2970 | /* 3114 */ MCD::OPC_Decode, 132, 21, 216, 1, // Opcode: VLBRQ |
2971 | /* 3119 */ MCD::OPC_CheckPredicate, 30, 181, 78, 0, // Skip to: 23273 |
2972 | /* 3124 */ MCD::OPC_Decode, 128, 21, 217, 1, // Opcode: VLBR |
2973 | /* 3129 */ MCD::OPC_FilterValue, 7, 66, 0, 0, // Skip to: 3200 |
2974 | /* 3134 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
2975 | /* 3137 */ MCD::OPC_FilterValue, 0, 163, 78, 0, // Skip to: 23273 |
2976 | /* 3142 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2977 | /* 3145 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3160 |
2978 | /* 3150 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 3190 |
2979 | /* 3155 */ MCD::OPC_Decode, 160, 21, 216, 1, // Opcode: VLERH |
2980 | /* 3160 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3175 |
2981 | /* 3165 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 3190 |
2982 | /* 3170 */ MCD::OPC_Decode, 158, 21, 216, 1, // Opcode: VLERF |
2983 | /* 3175 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3190 |
2984 | /* 3180 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 3190 |
2985 | /* 3185 */ MCD::OPC_Decode, 159, 21, 216, 1, // Opcode: VLERG |
2986 | /* 3190 */ MCD::OPC_CheckPredicate, 30, 110, 78, 0, // Skip to: 23273 |
2987 | /* 3195 */ MCD::OPC_Decode, 157, 21, 217, 1, // Opcode: VLER |
2988 | /* 3200 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 3222 |
2989 | /* 3205 */ MCD::OPC_CheckPredicate, 30, 95, 78, 0, // Skip to: 23273 |
2990 | /* 3210 */ MCD::OPC_CheckField, 8, 3, 0, 88, 78, 0, // Skip to: 23273 |
2991 | /* 3217 */ MCD::OPC_Decode, 132, 23, 218, 1, // Opcode: VSTEBRH |
2992 | /* 3222 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 3244 |
2993 | /* 3227 */ MCD::OPC_CheckPredicate, 30, 73, 78, 0, // Skip to: 23273 |
2994 | /* 3232 */ MCD::OPC_CheckField, 8, 3, 0, 66, 78, 0, // Skip to: 23273 |
2995 | /* 3239 */ MCD::OPC_Decode, 131, 23, 219, 1, // Opcode: VSTEBRG |
2996 | /* 3244 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 3266 |
2997 | /* 3249 */ MCD::OPC_CheckPredicate, 30, 51, 78, 0, // Skip to: 23273 |
2998 | /* 3254 */ MCD::OPC_CheckField, 8, 3, 0, 44, 78, 0, // Skip to: 23273 |
2999 | /* 3261 */ MCD::OPC_Decode, 130, 23, 220, 1, // Opcode: VSTEBRF |
3000 | /* 3266 */ MCD::OPC_FilterValue, 14, 81, 0, 0, // Skip to: 3352 |
3001 | /* 3271 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3002 | /* 3274 */ MCD::OPC_FilterValue, 0, 26, 78, 0, // Skip to: 23273 |
3003 | /* 3279 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3004 | /* 3282 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3297 |
3005 | /* 3287 */ MCD::OPC_CheckPredicate, 30, 50, 0, 0, // Skip to: 3342 |
3006 | /* 3292 */ MCD::OPC_Decode, 255, 22, 216, 1, // Opcode: VSTBRH |
3007 | /* 3297 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3312 |
3008 | /* 3302 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 3342 |
3009 | /* 3307 */ MCD::OPC_Decode, 253, 22, 216, 1, // Opcode: VSTBRF |
3010 | /* 3312 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3327 |
3011 | /* 3317 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 3342 |
3012 | /* 3322 */ MCD::OPC_Decode, 254, 22, 216, 1, // Opcode: VSTBRG |
3013 | /* 3327 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 3342 |
3014 | /* 3332 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 3342 |
3015 | /* 3337 */ MCD::OPC_Decode, 128, 23, 216, 1, // Opcode: VSTBRQ |
3016 | /* 3342 */ MCD::OPC_CheckPredicate, 30, 214, 77, 0, // Skip to: 23273 |
3017 | /* 3347 */ MCD::OPC_Decode, 252, 22, 217, 1, // Opcode: VSTBR |
3018 | /* 3352 */ MCD::OPC_FilterValue, 15, 66, 0, 0, // Skip to: 3423 |
3019 | /* 3357 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3020 | /* 3360 */ MCD::OPC_FilterValue, 0, 196, 77, 0, // Skip to: 23273 |
3021 | /* 3365 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3022 | /* 3368 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3383 |
3023 | /* 3373 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 3413 |
3024 | /* 3378 */ MCD::OPC_Decode, 139, 23, 216, 1, // Opcode: VSTERH |
3025 | /* 3383 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3398 |
3026 | /* 3388 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 3413 |
3027 | /* 3393 */ MCD::OPC_Decode, 137, 23, 216, 1, // Opcode: VSTERF |
3028 | /* 3398 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3413 |
3029 | /* 3403 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 3413 |
3030 | /* 3408 */ MCD::OPC_Decode, 138, 23, 216, 1, // Opcode: VSTERG |
3031 | /* 3413 */ MCD::OPC_CheckPredicate, 30, 143, 77, 0, // Skip to: 23273 |
3032 | /* 3418 */ MCD::OPC_Decode, 136, 23, 217, 1, // Opcode: VSTER |
3033 | /* 3423 */ MCD::OPC_FilterValue, 52, 17, 0, 0, // Skip to: 3445 |
3034 | /* 3428 */ MCD::OPC_CheckPredicate, 31, 128, 77, 0, // Skip to: 23273 |
3035 | /* 3433 */ MCD::OPC_CheckField, 9, 3, 0, 121, 77, 0, // Skip to: 23273 |
3036 | /* 3440 */ MCD::OPC_Decode, 190, 22, 221, 1, // Opcode: VPKZ |
3037 | /* 3445 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 3467 |
3038 | /* 3450 */ MCD::OPC_CheckPredicate, 31, 106, 77, 0, // Skip to: 23273 |
3039 | /* 3455 */ MCD::OPC_CheckField, 9, 3, 0, 99, 77, 0, // Skip to: 23273 |
3040 | /* 3462 */ MCD::OPC_Decode, 192, 21, 221, 1, // Opcode: VLRL |
3041 | /* 3467 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 3496 |
3042 | /* 3472 */ MCD::OPC_CheckPredicate, 31, 84, 77, 0, // Skip to: 23273 |
3043 | /* 3477 */ MCD::OPC_CheckField, 36, 4, 0, 77, 77, 0, // Skip to: 23273 |
3044 | /* 3484 */ MCD::OPC_CheckField, 9, 3, 0, 70, 77, 0, // Skip to: 23273 |
3045 | /* 3491 */ MCD::OPC_Decode, 193, 21, 222, 1, // Opcode: VLRLR |
3046 | /* 3496 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 3518 |
3047 | /* 3501 */ MCD::OPC_CheckPredicate, 31, 55, 77, 0, // Skip to: 23273 |
3048 | /* 3506 */ MCD::OPC_CheckField, 9, 3, 0, 48, 77, 0, // Skip to: 23273 |
3049 | /* 3513 */ MCD::OPC_Decode, 180, 23, 221, 1, // Opcode: VUPKZ |
3050 | /* 3518 */ MCD::OPC_FilterValue, 61, 17, 0, 0, // Skip to: 3540 |
3051 | /* 3523 */ MCD::OPC_CheckPredicate, 31, 33, 77, 0, // Skip to: 23273 |
3052 | /* 3528 */ MCD::OPC_CheckField, 9, 3, 0, 26, 77, 0, // Skip to: 23273 |
3053 | /* 3535 */ MCD::OPC_Decode, 156, 23, 221, 1, // Opcode: VSTRL |
3054 | /* 3540 */ MCD::OPC_FilterValue, 63, 24, 0, 0, // Skip to: 3569 |
3055 | /* 3545 */ MCD::OPC_CheckPredicate, 31, 11, 77, 0, // Skip to: 23273 |
3056 | /* 3550 */ MCD::OPC_CheckField, 36, 4, 0, 4, 77, 0, // Skip to: 23273 |
3057 | /* 3557 */ MCD::OPC_CheckField, 9, 3, 0, 253, 76, 0, // Skip to: 23273 |
3058 | /* 3564 */ MCD::OPC_Decode, 157, 23, 222, 1, // Opcode: VSTRLR |
3059 | /* 3569 */ MCD::OPC_FilterValue, 73, 24, 0, 0, // Skip to: 3598 |
3060 | /* 3574 */ MCD::OPC_CheckPredicate, 31, 238, 76, 0, // Skip to: 23273 |
3061 | /* 3579 */ MCD::OPC_CheckField, 32, 4, 0, 231, 76, 0, // Skip to: 23273 |
3062 | /* 3586 */ MCD::OPC_CheckField, 8, 3, 0, 224, 76, 0, // Skip to: 23273 |
3063 | /* 3593 */ MCD::OPC_Decode, 166, 21, 223, 1, // Opcode: VLIP |
3064 | /* 3598 */ MCD::OPC_FilterValue, 80, 51, 0, 0, // Skip to: 3654 |
3065 | /* 3603 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3066 | /* 3606 */ MCD::OPC_FilterValue, 0, 206, 76, 0, // Skip to: 23273 |
3067 | /* 3611 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
3068 | /* 3614 */ MCD::OPC_FilterValue, 0, 198, 76, 0, // Skip to: 23273 |
3069 | /* 3619 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
3070 | /* 3622 */ MCD::OPC_FilterValue, 0, 190, 76, 0, // Skip to: 23273 |
3071 | /* 3627 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 3644 |
3072 | /* 3632 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 3644 |
3073 | /* 3639 */ MCD::OPC_Decode, 176, 19, 224, 1, // Opcode: VCVB |
3074 | /* 3644 */ MCD::OPC_CheckPredicate, 32, 168, 76, 0, // Skip to: 23273 |
3075 | /* 3649 */ MCD::OPC_Decode, 179, 19, 225, 1, // Opcode: VCVBOpt |
3076 | /* 3654 */ MCD::OPC_FilterValue, 81, 31, 0, 0, // Skip to: 3690 |
3077 | /* 3659 */ MCD::OPC_CheckPredicate, 33, 153, 76, 0, // Skip to: 23273 |
3078 | /* 3664 */ MCD::OPC_CheckField, 24, 8, 0, 146, 76, 0, // Skip to: 23273 |
3079 | /* 3671 */ MCD::OPC_CheckField, 12, 8, 0, 139, 76, 0, // Skip to: 23273 |
3080 | /* 3678 */ MCD::OPC_CheckField, 8, 2, 0, 132, 76, 0, // Skip to: 23273 |
3081 | /* 3685 */ MCD::OPC_Decode, 162, 19, 226, 1, // Opcode: VCLZDP |
3082 | /* 3690 */ MCD::OPC_FilterValue, 82, 51, 0, 0, // Skip to: 3746 |
3083 | /* 3695 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3084 | /* 3698 */ MCD::OPC_FilterValue, 0, 114, 76, 0, // Skip to: 23273 |
3085 | /* 3703 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
3086 | /* 3706 */ MCD::OPC_FilterValue, 0, 106, 76, 0, // Skip to: 23273 |
3087 | /* 3711 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
3088 | /* 3714 */ MCD::OPC_FilterValue, 0, 98, 76, 0, // Skip to: 23273 |
3089 | /* 3719 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 3736 |
3090 | /* 3724 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 3736 |
3091 | /* 3731 */ MCD::OPC_Decode, 177, 19, 227, 1, // Opcode: VCVBG |
3092 | /* 3736 */ MCD::OPC_CheckPredicate, 32, 76, 76, 0, // Skip to: 23273 |
3093 | /* 3741 */ MCD::OPC_Decode, 178, 19, 228, 1, // Opcode: VCVBGOpt |
3094 | /* 3746 */ MCD::OPC_FilterValue, 84, 31, 0, 0, // Skip to: 3782 |
3095 | /* 3751 */ MCD::OPC_CheckPredicate, 33, 61, 76, 0, // Skip to: 23273 |
3096 | /* 3756 */ MCD::OPC_CheckField, 24, 8, 0, 54, 76, 0, // Skip to: 23273 |
3097 | /* 3763 */ MCD::OPC_CheckField, 12, 8, 0, 47, 76, 0, // Skip to: 23273 |
3098 | /* 3770 */ MCD::OPC_CheckField, 8, 2, 0, 40, 76, 0, // Skip to: 23273 |
3099 | /* 3777 */ MCD::OPC_Decode, 181, 23, 226, 1, // Opcode: VUPKZH |
3100 | /* 3782 */ MCD::OPC_FilterValue, 85, 24, 0, 0, // Skip to: 3811 |
3101 | /* 3787 */ MCD::OPC_CheckPredicate, 34, 25, 76, 0, // Skip to: 23273 |
3102 | /* 3792 */ MCD::OPC_CheckField, 20, 12, 0, 18, 76, 0, // Skip to: 23273 |
3103 | /* 3799 */ MCD::OPC_CheckField, 8, 2, 0, 11, 76, 0, // Skip to: 23273 |
3104 | /* 3806 */ MCD::OPC_Decode, 166, 19, 229, 1, // Opcode: VCNF |
3105 | /* 3811 */ MCD::OPC_FilterValue, 86, 24, 0, 0, // Skip to: 3840 |
3106 | /* 3816 */ MCD::OPC_CheckPredicate, 34, 252, 75, 0, // Skip to: 23273 |
3107 | /* 3821 */ MCD::OPC_CheckField, 20, 12, 0, 245, 75, 0, // Skip to: 23273 |
3108 | /* 3828 */ MCD::OPC_CheckField, 8, 2, 0, 238, 75, 0, // Skip to: 23273 |
3109 | /* 3835 */ MCD::OPC_Decode, 155, 19, 229, 1, // Opcode: VCLFNH |
3110 | /* 3840 */ MCD::OPC_FilterValue, 88, 24, 0, 0, // Skip to: 3869 |
3111 | /* 3845 */ MCD::OPC_CheckPredicate, 31, 223, 75, 0, // Skip to: 23273 |
3112 | /* 3850 */ MCD::OPC_CheckField, 24, 8, 0, 216, 75, 0, // Skip to: 23273 |
3113 | /* 3857 */ MCD::OPC_CheckField, 8, 3, 0, 209, 75, 0, // Skip to: 23273 |
3114 | /* 3864 */ MCD::OPC_Decode, 180, 19, 230, 1, // Opcode: VCVD |
3115 | /* 3869 */ MCD::OPC_FilterValue, 89, 17, 0, 0, // Skip to: 3891 |
3116 | /* 3874 */ MCD::OPC_CheckPredicate, 31, 194, 75, 0, // Skip to: 23273 |
3117 | /* 3879 */ MCD::OPC_CheckField, 8, 2, 0, 187, 75, 0, // Skip to: 23273 |
3118 | /* 3886 */ MCD::OPC_Decode, 248, 22, 231, 1, // Opcode: VSRP |
3119 | /* 3891 */ MCD::OPC_FilterValue, 90, 24, 0, 0, // Skip to: 3920 |
3120 | /* 3896 */ MCD::OPC_CheckPredicate, 31, 172, 75, 0, // Skip to: 23273 |
3121 | /* 3901 */ MCD::OPC_CheckField, 24, 8, 0, 165, 75, 0, // Skip to: 23273 |
3122 | /* 3908 */ MCD::OPC_CheckField, 8, 3, 0, 158, 75, 0, // Skip to: 23273 |
3123 | /* 3915 */ MCD::OPC_Decode, 181, 19, 232, 1, // Opcode: VCVDG |
3124 | /* 3920 */ MCD::OPC_FilterValue, 91, 17, 0, 0, // Skip to: 3942 |
3125 | /* 3925 */ MCD::OPC_CheckPredicate, 31, 143, 75, 0, // Skip to: 23273 |
3126 | /* 3930 */ MCD::OPC_CheckField, 8, 2, 0, 136, 75, 0, // Skip to: 23273 |
3127 | /* 3937 */ MCD::OPC_Decode, 197, 22, 231, 1, // Opcode: VPSOP |
3128 | /* 3942 */ MCD::OPC_FilterValue, 92, 31, 0, 0, // Skip to: 3978 |
3129 | /* 3947 */ MCD::OPC_CheckPredicate, 33, 121, 75, 0, // Skip to: 23273 |
3130 | /* 3952 */ MCD::OPC_CheckField, 24, 8, 0, 114, 75, 0, // Skip to: 23273 |
3131 | /* 3959 */ MCD::OPC_CheckField, 12, 8, 0, 107, 75, 0, // Skip to: 23273 |
3132 | /* 3966 */ MCD::OPC_CheckField, 8, 2, 0, 100, 75, 0, // Skip to: 23273 |
3133 | /* 3973 */ MCD::OPC_Decode, 182, 23, 226, 1, // Opcode: VUPKZL |
3134 | /* 3978 */ MCD::OPC_FilterValue, 93, 24, 0, 0, // Skip to: 4007 |
3135 | /* 3983 */ MCD::OPC_CheckPredicate, 34, 85, 75, 0, // Skip to: 23273 |
3136 | /* 3988 */ MCD::OPC_CheckField, 20, 12, 0, 78, 75, 0, // Skip to: 23273 |
3137 | /* 3995 */ MCD::OPC_CheckField, 8, 2, 0, 71, 75, 0, // Skip to: 23273 |
3138 | /* 4002 */ MCD::OPC_Decode, 130, 19, 229, 1, // Opcode: VCFN |
3139 | /* 4007 */ MCD::OPC_FilterValue, 94, 24, 0, 0, // Skip to: 4036 |
3140 | /* 4012 */ MCD::OPC_CheckPredicate, 34, 56, 75, 0, // Skip to: 23273 |
3141 | /* 4017 */ MCD::OPC_CheckField, 20, 12, 0, 49, 75, 0, // Skip to: 23273 |
3142 | /* 4024 */ MCD::OPC_CheckField, 8, 2, 0, 42, 75, 0, // Skip to: 23273 |
3143 | /* 4031 */ MCD::OPC_Decode, 156, 19, 229, 1, // Opcode: VCLFNL |
3144 | /* 4036 */ MCD::OPC_FilterValue, 95, 31, 0, 0, // Skip to: 4072 |
3145 | /* 4041 */ MCD::OPC_CheckPredicate, 31, 27, 75, 0, // Skip to: 23273 |
3146 | /* 4046 */ MCD::OPC_CheckField, 36, 4, 0, 20, 75, 0, // Skip to: 23273 |
3147 | /* 4053 */ MCD::OPC_CheckField, 11, 21, 0, 13, 75, 0, // Skip to: 23273 |
3148 | /* 4060 */ MCD::OPC_CheckField, 8, 2, 0, 6, 75, 0, // Skip to: 23273 |
3149 | /* 4067 */ MCD::OPC_Decode, 175, 23, 233, 1, // Opcode: VTP |
3150 | /* 4072 */ MCD::OPC_FilterValue, 112, 24, 0, 0, // Skip to: 4101 |
3151 | /* 4077 */ MCD::OPC_CheckPredicate, 33, 247, 74, 0, // Skip to: 23273 |
3152 | /* 4082 */ MCD::OPC_CheckField, 24, 4, 0, 240, 74, 0, // Skip to: 23273 |
3153 | /* 4089 */ MCD::OPC_CheckField, 8, 1, 0, 233, 74, 0, // Skip to: 23273 |
3154 | /* 4096 */ MCD::OPC_Decode, 191, 22, 234, 1, // Opcode: VPKZR |
3155 | /* 4101 */ MCD::OPC_FilterValue, 113, 24, 0, 0, // Skip to: 4130 |
3156 | /* 4106 */ MCD::OPC_CheckPredicate, 31, 218, 74, 0, // Skip to: 23273 |
3157 | /* 4111 */ MCD::OPC_CheckField, 24, 4, 0, 211, 74, 0, // Skip to: 23273 |
3158 | /* 4118 */ MCD::OPC_CheckField, 8, 1, 0, 204, 74, 0, // Skip to: 23273 |
3159 | /* 4125 */ MCD::OPC_Decode, 229, 18, 234, 1, // Opcode: VAP |
3160 | /* 4130 */ MCD::OPC_FilterValue, 114, 24, 0, 0, // Skip to: 4159 |
3161 | /* 4135 */ MCD::OPC_CheckPredicate, 33, 189, 74, 0, // Skip to: 23273 |
3162 | /* 4140 */ MCD::OPC_CheckField, 24, 4, 0, 182, 74, 0, // Skip to: 23273 |
3163 | /* 4147 */ MCD::OPC_CheckField, 8, 1, 0, 175, 74, 0, // Skip to: 23273 |
3164 | /* 4154 */ MCD::OPC_Decode, 249, 22, 234, 1, // Opcode: VSRPR |
3165 | /* 4159 */ MCD::OPC_FilterValue, 115, 24, 0, 0, // Skip to: 4188 |
3166 | /* 4164 */ MCD::OPC_CheckPredicate, 31, 160, 74, 0, // Skip to: 23273 |
3167 | /* 4169 */ MCD::OPC_CheckField, 24, 4, 0, 153, 74, 0, // Skip to: 23273 |
3168 | /* 4176 */ MCD::OPC_CheckField, 8, 1, 0, 146, 74, 0, // Skip to: 23273 |
3169 | /* 4183 */ MCD::OPC_Decode, 241, 22, 234, 1, // Opcode: VSP |
3170 | /* 4188 */ MCD::OPC_FilterValue, 116, 82, 0, 0, // Skip to: 4275 |
3171 | /* 4193 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3172 | /* 4196 */ MCD::OPC_FilterValue, 0, 128, 74, 0, // Skip to: 23273 |
3173 | /* 4201 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
3174 | /* 4204 */ MCD::OPC_FilterValue, 0, 120, 74, 0, // Skip to: 23273 |
3175 | /* 4209 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
3176 | /* 4212 */ MCD::OPC_FilterValue, 0, 112, 74, 0, // Skip to: 23273 |
3177 | /* 4217 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3178 | /* 4220 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 4235 |
3179 | /* 4225 */ MCD::OPC_CheckPredicate, 33, 35, 0, 0, // Skip to: 4265 |
3180 | /* 4230 */ MCD::OPC_Decode, 225, 22, 235, 1, // Opcode: VSCHSP |
3181 | /* 4235 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 4250 |
3182 | /* 4240 */ MCD::OPC_CheckPredicate, 33, 20, 0, 0, // Skip to: 4265 |
3183 | /* 4245 */ MCD::OPC_Decode, 223, 22, 235, 1, // Opcode: VSCHDP |
3184 | /* 4250 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 4265 |
3185 | /* 4255 */ MCD::OPC_CheckPredicate, 33, 5, 0, 0, // Skip to: 4265 |
3186 | /* 4260 */ MCD::OPC_Decode, 226, 22, 235, 1, // Opcode: VSCHXP |
3187 | /* 4265 */ MCD::OPC_CheckPredicate, 33, 59, 74, 0, // Skip to: 23273 |
3188 | /* 4270 */ MCD::OPC_Decode, 224, 22, 236, 1, // Opcode: VSCHP |
3189 | /* 4275 */ MCD::OPC_FilterValue, 117, 24, 0, 0, // Skip to: 4304 |
3190 | /* 4280 */ MCD::OPC_CheckPredicate, 34, 44, 74, 0, // Skip to: 23273 |
3191 | /* 4285 */ MCD::OPC_CheckField, 20, 8, 0, 37, 74, 0, // Skip to: 23273 |
3192 | /* 4292 */ MCD::OPC_CheckField, 8, 1, 0, 30, 74, 0, // Skip to: 23273 |
3193 | /* 4299 */ MCD::OPC_Decode, 168, 19, 237, 1, // Opcode: VCRNF |
3194 | /* 4304 */ MCD::OPC_FilterValue, 119, 38, 0, 0, // Skip to: 4347 |
3195 | /* 4309 */ MCD::OPC_CheckPredicate, 31, 15, 74, 0, // Skip to: 23273 |
3196 | /* 4314 */ MCD::OPC_CheckField, 36, 4, 0, 8, 74, 0, // Skip to: 23273 |
3197 | /* 4321 */ MCD::OPC_CheckField, 24, 4, 0, 1, 74, 0, // Skip to: 23273 |
3198 | /* 4328 */ MCD::OPC_CheckField, 11, 9, 0, 250, 73, 0, // Skip to: 23273 |
3199 | /* 4335 */ MCD::OPC_CheckField, 8, 1, 0, 243, 73, 0, // Skip to: 23273 |
3200 | /* 4342 */ MCD::OPC_Decode, 167, 19, 238, 1, // Opcode: VCP |
3201 | /* 4347 */ MCD::OPC_FilterValue, 120, 24, 0, 0, // Skip to: 4376 |
3202 | /* 4352 */ MCD::OPC_CheckPredicate, 31, 228, 73, 0, // Skip to: 23273 |
3203 | /* 4357 */ MCD::OPC_CheckField, 24, 4, 0, 221, 73, 0, // Skip to: 23273 |
3204 | /* 4364 */ MCD::OPC_CheckField, 8, 1, 0, 214, 73, 0, // Skip to: 23273 |
3205 | /* 4371 */ MCD::OPC_Decode, 138, 22, 234, 1, // Opcode: VMP |
3206 | /* 4376 */ MCD::OPC_FilterValue, 121, 24, 0, 0, // Skip to: 4405 |
3207 | /* 4381 */ MCD::OPC_CheckPredicate, 31, 199, 73, 0, // Skip to: 23273 |
3208 | /* 4386 */ MCD::OPC_CheckField, 24, 4, 0, 192, 73, 0, // Skip to: 23273 |
3209 | /* 4393 */ MCD::OPC_CheckField, 8, 1, 0, 185, 73, 0, // Skip to: 23273 |
3210 | /* 4400 */ MCD::OPC_Decode, 151, 22, 234, 1, // Opcode: VMSP |
3211 | /* 4405 */ MCD::OPC_FilterValue, 122, 24, 0, 0, // Skip to: 4434 |
3212 | /* 4410 */ MCD::OPC_CheckPredicate, 31, 170, 73, 0, // Skip to: 23273 |
3213 | /* 4415 */ MCD::OPC_CheckField, 24, 4, 0, 163, 73, 0, // Skip to: 23273 |
3214 | /* 4422 */ MCD::OPC_CheckField, 8, 1, 0, 156, 73, 0, // Skip to: 23273 |
3215 | /* 4429 */ MCD::OPC_Decode, 182, 19, 234, 1, // Opcode: VDP |
3216 | /* 4434 */ MCD::OPC_FilterValue, 123, 24, 0, 0, // Skip to: 4463 |
3217 | /* 4439 */ MCD::OPC_CheckPredicate, 31, 141, 73, 0, // Skip to: 23273 |
3218 | /* 4444 */ MCD::OPC_CheckField, 24, 4, 0, 134, 73, 0, // Skip to: 23273 |
3219 | /* 4451 */ MCD::OPC_CheckField, 8, 1, 0, 127, 73, 0, // Skip to: 23273 |
3220 | /* 4458 */ MCD::OPC_Decode, 208, 22, 234, 1, // Opcode: VRP |
3221 | /* 4463 */ MCD::OPC_FilterValue, 124, 24, 0, 0, // Skip to: 4492 |
3222 | /* 4468 */ MCD::OPC_CheckPredicate, 33, 112, 73, 0, // Skip to: 23273 |
3223 | /* 4473 */ MCD::OPC_CheckField, 12, 16, 0, 105, 73, 0, // Skip to: 23273 |
3224 | /* 4480 */ MCD::OPC_CheckField, 8, 1, 0, 98, 73, 0, // Skip to: 23273 |
3225 | /* 4487 */ MCD::OPC_Decode, 227, 22, 239, 1, // Opcode: VSCSHP |
3226 | /* 4492 */ MCD::OPC_FilterValue, 125, 31, 0, 0, // Skip to: 4528 |
3227 | /* 4497 */ MCD::OPC_CheckPredicate, 33, 83, 73, 0, // Skip to: 23273 |
3228 | /* 4502 */ MCD::OPC_CheckField, 24, 4, 0, 76, 73, 0, // Skip to: 23273 |
3229 | /* 4509 */ MCD::OPC_CheckField, 12, 8, 0, 69, 73, 0, // Skip to: 23273 |
3230 | /* 4516 */ MCD::OPC_CheckField, 8, 1, 0, 62, 73, 0, // Skip to: 23273 |
3231 | /* 4523 */ MCD::OPC_Decode, 170, 19, 235, 1, // Opcode: VCSPH |
3232 | /* 4528 */ MCD::OPC_FilterValue, 126, 52, 73, 0, // Skip to: 23273 |
3233 | /* 4533 */ MCD::OPC_CheckPredicate, 31, 47, 73, 0, // Skip to: 23273 |
3234 | /* 4538 */ MCD::OPC_CheckField, 24, 4, 0, 40, 73, 0, // Skip to: 23273 |
3235 | /* 4545 */ MCD::OPC_CheckField, 8, 1, 0, 33, 73, 0, // Skip to: 23273 |
3236 | /* 4552 */ MCD::OPC_Decode, 228, 22, 234, 1, // Opcode: VSDP |
3237 | /* 4557 */ MCD::OPC_FilterValue, 231, 1, 88, 49, 0, // Skip to: 17195 |
3238 | /* 4563 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3239 | /* 4566 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4588 |
3240 | /* 4571 */ MCD::OPC_CheckPredicate, 35, 9, 73, 0, // Skip to: 23273 |
3241 | /* 4576 */ MCD::OPC_CheckField, 8, 3, 0, 2, 73, 0, // Skip to: 23273 |
3242 | /* 4583 */ MCD::OPC_Decode, 144, 21, 240, 1, // Opcode: VLEB |
3243 | /* 4588 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4610 |
3244 | /* 4593 */ MCD::OPC_CheckPredicate, 35, 243, 72, 0, // Skip to: 23273 |
3245 | /* 4598 */ MCD::OPC_CheckField, 8, 3, 0, 236, 72, 0, // Skip to: 23273 |
3246 | /* 4605 */ MCD::OPC_Decode, 152, 21, 213, 1, // Opcode: VLEH |
3247 | /* 4610 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 4632 |
3248 | /* 4615 */ MCD::OPC_CheckPredicate, 35, 221, 72, 0, // Skip to: 23273 |
3249 | /* 4620 */ MCD::OPC_CheckField, 8, 3, 0, 214, 72, 0, // Skip to: 23273 |
3250 | /* 4627 */ MCD::OPC_Decode, 151, 21, 214, 1, // Opcode: VLEG |
3251 | /* 4632 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 4654 |
3252 | /* 4637 */ MCD::OPC_CheckPredicate, 35, 199, 72, 0, // Skip to: 23273 |
3253 | /* 4642 */ MCD::OPC_CheckField, 8, 3, 0, 192, 72, 0, // Skip to: 23273 |
3254 | /* 4649 */ MCD::OPC_Decode, 150, 21, 215, 1, // Opcode: VLEF |
3255 | /* 4654 */ MCD::OPC_FilterValue, 4, 96, 0, 0, // Skip to: 4755 |
3256 | /* 4659 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3257 | /* 4662 */ MCD::OPC_FilterValue, 0, 174, 72, 0, // Skip to: 23273 |
3258 | /* 4667 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3259 | /* 4670 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4685 |
3260 | /* 4675 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 4745 |
3261 | /* 4680 */ MCD::OPC_Decode, 174, 21, 216, 1, // Opcode: VLLEZB |
3262 | /* 4685 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 4700 |
3263 | /* 4690 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 4745 |
3264 | /* 4695 */ MCD::OPC_Decode, 177, 21, 216, 1, // Opcode: VLLEZH |
3265 | /* 4700 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 4715 |
3266 | /* 4705 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 4745 |
3267 | /* 4710 */ MCD::OPC_Decode, 175, 21, 216, 1, // Opcode: VLLEZF |
3268 | /* 4715 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 4730 |
3269 | /* 4720 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 4745 |
3270 | /* 4725 */ MCD::OPC_Decode, 176, 21, 216, 1, // Opcode: VLLEZG |
3271 | /* 4730 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 4745 |
3272 | /* 4735 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 4745 |
3273 | /* 4740 */ MCD::OPC_Decode, 178, 21, 216, 1, // Opcode: VLLEZLF |
3274 | /* 4745 */ MCD::OPC_CheckPredicate, 35, 91, 72, 0, // Skip to: 23273 |
3275 | /* 4750 */ MCD::OPC_Decode, 173, 21, 217, 1, // Opcode: VLLEZ |
3276 | /* 4755 */ MCD::OPC_FilterValue, 5, 81, 0, 0, // Skip to: 4841 |
3277 | /* 4760 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3278 | /* 4763 */ MCD::OPC_FilterValue, 0, 73, 72, 0, // Skip to: 23273 |
3279 | /* 4768 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3280 | /* 4771 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4786 |
3281 | /* 4776 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 4831 |
3282 | /* 4781 */ MCD::OPC_Decode, 188, 21, 216, 1, // Opcode: VLREPB |
3283 | /* 4786 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 4801 |
3284 | /* 4791 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 4831 |
3285 | /* 4796 */ MCD::OPC_Decode, 191, 21, 216, 1, // Opcode: VLREPH |
3286 | /* 4801 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 4816 |
3287 | /* 4806 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 4831 |
3288 | /* 4811 */ MCD::OPC_Decode, 189, 21, 216, 1, // Opcode: VLREPF |
3289 | /* 4816 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 4831 |
3290 | /* 4821 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 4831 |
3291 | /* 4826 */ MCD::OPC_Decode, 190, 21, 216, 1, // Opcode: VLREPG |
3292 | /* 4831 */ MCD::OPC_CheckPredicate, 35, 5, 72, 0, // Skip to: 23273 |
3293 | /* 4836 */ MCD::OPC_Decode, 187, 21, 217, 1, // Opcode: VLREP |
3294 | /* 4841 */ MCD::OPC_FilterValue, 6, 35, 0, 0, // Skip to: 4881 |
3295 | /* 4846 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3296 | /* 4849 */ MCD::OPC_FilterValue, 0, 243, 71, 0, // Skip to: 23273 |
3297 | /* 4854 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 4871 |
3298 | /* 4859 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 4871 |
3299 | /* 4866 */ MCD::OPC_Decode, 253, 20, 216, 1, // Opcode: VL |
3300 | /* 4871 */ MCD::OPC_CheckPredicate, 35, 221, 71, 0, // Skip to: 23273 |
3301 | /* 4876 */ MCD::OPC_Decode, 254, 20, 217, 1, // Opcode: VLAlign |
3302 | /* 4881 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 4903 |
3303 | /* 4886 */ MCD::OPC_CheckPredicate, 35, 206, 71, 0, // Skip to: 23273 |
3304 | /* 4891 */ MCD::OPC_CheckField, 8, 3, 0, 199, 71, 0, // Skip to: 23273 |
3305 | /* 4898 */ MCD::OPC_Decode, 255, 20, 217, 1, // Opcode: VLBB |
3306 | /* 4903 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 4925 |
3307 | /* 4908 */ MCD::OPC_CheckPredicate, 35, 184, 71, 0, // Skip to: 23273 |
3308 | /* 4913 */ MCD::OPC_CheckField, 8, 3, 0, 177, 71, 0, // Skip to: 23273 |
3309 | /* 4920 */ MCD::OPC_Decode, 129, 23, 217, 1, // Opcode: VSTEB |
3310 | /* 4925 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 4947 |
3311 | /* 4930 */ MCD::OPC_CheckPredicate, 35, 162, 71, 0, // Skip to: 23273 |
3312 | /* 4935 */ MCD::OPC_CheckField, 8, 3, 0, 155, 71, 0, // Skip to: 23273 |
3313 | /* 4942 */ MCD::OPC_Decode, 135, 23, 218, 1, // Opcode: VSTEH |
3314 | /* 4947 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 4969 |
3315 | /* 4952 */ MCD::OPC_CheckPredicate, 35, 140, 71, 0, // Skip to: 23273 |
3316 | /* 4957 */ MCD::OPC_CheckField, 8, 3, 0, 133, 71, 0, // Skip to: 23273 |
3317 | /* 4964 */ MCD::OPC_Decode, 134, 23, 219, 1, // Opcode: VSTEG |
3318 | /* 4969 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 4991 |
3319 | /* 4974 */ MCD::OPC_CheckPredicate, 35, 118, 71, 0, // Skip to: 23273 |
3320 | /* 4979 */ MCD::OPC_CheckField, 8, 3, 0, 111, 71, 0, // Skip to: 23273 |
3321 | /* 4986 */ MCD::OPC_Decode, 133, 23, 220, 1, // Opcode: VSTEF |
3322 | /* 4991 */ MCD::OPC_FilterValue, 14, 35, 0, 0, // Skip to: 5031 |
3323 | /* 4996 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3324 | /* 4999 */ MCD::OPC_FilterValue, 0, 93, 71, 0, // Skip to: 23273 |
3325 | /* 5004 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 5021 |
3326 | /* 5009 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 5021 |
3327 | /* 5016 */ MCD::OPC_Decode, 250, 22, 216, 1, // Opcode: VST |
3328 | /* 5021 */ MCD::OPC_CheckPredicate, 35, 71, 71, 0, // Skip to: 23273 |
3329 | /* 5026 */ MCD::OPC_Decode, 251, 22, 217, 1, // Opcode: VSTAlign |
3330 | /* 5031 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 5053 |
3331 | /* 5036 */ MCD::OPC_CheckPredicate, 35, 56, 71, 0, // Skip to: 23273 |
3332 | /* 5041 */ MCD::OPC_CheckField, 8, 2, 0, 49, 71, 0, // Skip to: 23273 |
3333 | /* 5048 */ MCD::OPC_Decode, 230, 20, 241, 1, // Opcode: VGEG |
3334 | /* 5053 */ MCD::OPC_FilterValue, 19, 17, 0, 0, // Skip to: 5075 |
3335 | /* 5058 */ MCD::OPC_CheckPredicate, 35, 34, 71, 0, // Skip to: 23273 |
3336 | /* 5063 */ MCD::OPC_CheckField, 8, 2, 0, 27, 71, 0, // Skip to: 23273 |
3337 | /* 5070 */ MCD::OPC_Decode, 229, 20, 242, 1, // Opcode: VGEF |
3338 | /* 5075 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 5097 |
3339 | /* 5080 */ MCD::OPC_CheckPredicate, 35, 12, 71, 0, // Skip to: 23273 |
3340 | /* 5085 */ MCD::OPC_CheckField, 8, 2, 0, 5, 71, 0, // Skip to: 23273 |
3341 | /* 5092 */ MCD::OPC_Decode, 222, 22, 243, 1, // Opcode: VSCEG |
3342 | /* 5097 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 5119 |
3343 | /* 5102 */ MCD::OPC_CheckPredicate, 35, 246, 70, 0, // Skip to: 23273 |
3344 | /* 5107 */ MCD::OPC_CheckField, 8, 2, 0, 239, 70, 0, // Skip to: 23273 |
3345 | /* 5114 */ MCD::OPC_Decode, 221, 22, 244, 1, // Opcode: VSCEF |
3346 | /* 5119 */ MCD::OPC_FilterValue, 33, 89, 0, 0, // Skip to: 5213 |
3347 | /* 5124 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3348 | /* 5127 */ MCD::OPC_FilterValue, 0, 221, 70, 0, // Skip to: 23273 |
3349 | /* 5132 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... |
3350 | /* 5135 */ MCD::OPC_FilterValue, 0, 213, 70, 0, // Skip to: 23273 |
3351 | /* 5140 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3352 | /* 5143 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5158 |
3353 | /* 5148 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5203 |
3354 | /* 5153 */ MCD::OPC_Decode, 162, 21, 245, 1, // Opcode: VLGVB |
3355 | /* 5158 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5173 |
3356 | /* 5163 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5203 |
3357 | /* 5168 */ MCD::OPC_Decode, 165, 21, 245, 1, // Opcode: VLGVH |
3358 | /* 5173 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5188 |
3359 | /* 5178 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5203 |
3360 | /* 5183 */ MCD::OPC_Decode, 163, 21, 245, 1, // Opcode: VLGVF |
3361 | /* 5188 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5203 |
3362 | /* 5193 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5203 |
3363 | /* 5198 */ MCD::OPC_Decode, 164, 21, 245, 1, // Opcode: VLGVG |
3364 | /* 5203 */ MCD::OPC_CheckPredicate, 35, 145, 70, 0, // Skip to: 23273 |
3365 | /* 5208 */ MCD::OPC_Decode, 161, 21, 246, 1, // Opcode: VLGV |
3366 | /* 5213 */ MCD::OPC_FilterValue, 34, 81, 0, 0, // Skip to: 5299 |
3367 | /* 5218 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3368 | /* 5221 */ MCD::OPC_FilterValue, 0, 127, 70, 0, // Skip to: 23273 |
3369 | /* 5226 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3370 | /* 5229 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5244 |
3371 | /* 5234 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5289 |
3372 | /* 5239 */ MCD::OPC_Decode, 195, 21, 247, 1, // Opcode: VLVGB |
3373 | /* 5244 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5259 |
3374 | /* 5249 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5289 |
3375 | /* 5254 */ MCD::OPC_Decode, 198, 21, 247, 1, // Opcode: VLVGH |
3376 | /* 5259 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5274 |
3377 | /* 5264 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5289 |
3378 | /* 5269 */ MCD::OPC_Decode, 196, 21, 247, 1, // Opcode: VLVGF |
3379 | /* 5274 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5289 |
3380 | /* 5279 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5289 |
3381 | /* 5284 */ MCD::OPC_Decode, 197, 21, 248, 1, // Opcode: VLVGG |
3382 | /* 5289 */ MCD::OPC_CheckPredicate, 35, 59, 70, 0, // Skip to: 23273 |
3383 | /* 5294 */ MCD::OPC_Decode, 194, 21, 249, 1, // Opcode: VLVG |
3384 | /* 5299 */ MCD::OPC_FilterValue, 39, 17, 0, 0, // Skip to: 5321 |
3385 | /* 5304 */ MCD::OPC_CheckPredicate, 35, 44, 70, 0, // Skip to: 23273 |
3386 | /* 5309 */ MCD::OPC_CheckField, 8, 4, 0, 37, 70, 0, // Skip to: 23273 |
3387 | /* 5316 */ MCD::OPC_Decode, 173, 11, 250, 1, // Opcode: LCBB |
3388 | /* 5321 */ MCD::OPC_FilterValue, 48, 81, 0, 0, // Skip to: 5407 |
3389 | /* 5326 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3390 | /* 5329 */ MCD::OPC_FilterValue, 0, 19, 70, 0, // Skip to: 23273 |
3391 | /* 5334 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3392 | /* 5337 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5352 |
3393 | /* 5342 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5397 |
3394 | /* 5347 */ MCD::OPC_Decode, 209, 19, 251, 1, // Opcode: VESLB |
3395 | /* 5352 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5367 |
3396 | /* 5357 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5397 |
3397 | /* 5362 */ MCD::OPC_Decode, 212, 19, 251, 1, // Opcode: VESLH |
3398 | /* 5367 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5382 |
3399 | /* 5372 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5397 |
3400 | /* 5377 */ MCD::OPC_Decode, 210, 19, 251, 1, // Opcode: VESLF |
3401 | /* 5382 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5397 |
3402 | /* 5387 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5397 |
3403 | /* 5392 */ MCD::OPC_Decode, 211, 19, 251, 1, // Opcode: VESLG |
3404 | /* 5397 */ MCD::OPC_CheckPredicate, 35, 207, 69, 0, // Skip to: 23273 |
3405 | /* 5402 */ MCD::OPC_Decode, 208, 19, 252, 1, // Opcode: VESL |
3406 | /* 5407 */ MCD::OPC_FilterValue, 51, 81, 0, 0, // Skip to: 5493 |
3407 | /* 5412 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3408 | /* 5415 */ MCD::OPC_FilterValue, 0, 189, 69, 0, // Skip to: 23273 |
3409 | /* 5420 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3410 | /* 5423 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5438 |
3411 | /* 5428 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5483 |
3412 | /* 5433 */ MCD::OPC_Decode, 199, 19, 251, 1, // Opcode: VERLLB |
3413 | /* 5438 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5453 |
3414 | /* 5443 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5483 |
3415 | /* 5448 */ MCD::OPC_Decode, 202, 19, 251, 1, // Opcode: VERLLH |
3416 | /* 5453 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5468 |
3417 | /* 5458 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5483 |
3418 | /* 5463 */ MCD::OPC_Decode, 200, 19, 251, 1, // Opcode: VERLLF |
3419 | /* 5468 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5483 |
3420 | /* 5473 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5483 |
3421 | /* 5478 */ MCD::OPC_Decode, 201, 19, 251, 1, // Opcode: VERLLG |
3422 | /* 5483 */ MCD::OPC_CheckPredicate, 35, 121, 69, 0, // Skip to: 23273 |
3423 | /* 5488 */ MCD::OPC_Decode, 198, 19, 252, 1, // Opcode: VERLL |
3424 | /* 5493 */ MCD::OPC_FilterValue, 54, 35, 0, 0, // Skip to: 5533 |
3425 | /* 5498 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3426 | /* 5501 */ MCD::OPC_FilterValue, 0, 103, 69, 0, // Skip to: 23273 |
3427 | /* 5506 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 5523 |
3428 | /* 5511 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 5523 |
3429 | /* 5518 */ MCD::OPC_Decode, 179, 21, 253, 1, // Opcode: VLM |
3430 | /* 5523 */ MCD::OPC_CheckPredicate, 35, 81, 69, 0, // Skip to: 23273 |
3431 | /* 5528 */ MCD::OPC_Decode, 180, 21, 254, 1, // Opcode: VLMAlign |
3432 | /* 5533 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 5562 |
3433 | /* 5538 */ MCD::OPC_CheckPredicate, 35, 66, 69, 0, // Skip to: 23273 |
3434 | /* 5543 */ MCD::OPC_CheckField, 12, 4, 0, 59, 69, 0, // Skip to: 23273 |
3435 | /* 5550 */ MCD::OPC_CheckField, 8, 3, 0, 52, 69, 0, // Skip to: 23273 |
3436 | /* 5557 */ MCD::OPC_Decode, 167, 21, 255, 1, // Opcode: VLL |
3437 | /* 5562 */ MCD::OPC_FilterValue, 56, 81, 0, 0, // Skip to: 5648 |
3438 | /* 5567 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3439 | /* 5570 */ MCD::OPC_FilterValue, 0, 34, 69, 0, // Skip to: 23273 |
3440 | /* 5575 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3441 | /* 5578 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5593 |
3442 | /* 5583 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5638 |
3443 | /* 5588 */ MCD::OPC_Decode, 229, 19, 251, 1, // Opcode: VESRLB |
3444 | /* 5593 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5608 |
3445 | /* 5598 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5638 |
3446 | /* 5603 */ MCD::OPC_Decode, 232, 19, 251, 1, // Opcode: VESRLH |
3447 | /* 5608 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5623 |
3448 | /* 5613 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5638 |
3449 | /* 5618 */ MCD::OPC_Decode, 230, 19, 251, 1, // Opcode: VESRLF |
3450 | /* 5623 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5638 |
3451 | /* 5628 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5638 |
3452 | /* 5633 */ MCD::OPC_Decode, 231, 19, 251, 1, // Opcode: VESRLG |
3453 | /* 5638 */ MCD::OPC_CheckPredicate, 35, 222, 68, 0, // Skip to: 23273 |
3454 | /* 5643 */ MCD::OPC_Decode, 228, 19, 252, 1, // Opcode: VESRL |
3455 | /* 5648 */ MCD::OPC_FilterValue, 58, 81, 0, 0, // Skip to: 5734 |
3456 | /* 5653 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3457 | /* 5656 */ MCD::OPC_FilterValue, 0, 204, 68, 0, // Skip to: 23273 |
3458 | /* 5661 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3459 | /* 5664 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5679 |
3460 | /* 5669 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 5724 |
3461 | /* 5674 */ MCD::OPC_Decode, 219, 19, 251, 1, // Opcode: VESRAB |
3462 | /* 5679 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5694 |
3463 | /* 5684 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 5724 |
3464 | /* 5689 */ MCD::OPC_Decode, 222, 19, 251, 1, // Opcode: VESRAH |
3465 | /* 5694 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5709 |
3466 | /* 5699 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 5724 |
3467 | /* 5704 */ MCD::OPC_Decode, 220, 19, 251, 1, // Opcode: VESRAF |
3468 | /* 5709 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5724 |
3469 | /* 5714 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5724 |
3470 | /* 5719 */ MCD::OPC_Decode, 221, 19, 251, 1, // Opcode: VESRAG |
3471 | /* 5724 */ MCD::OPC_CheckPredicate, 35, 136, 68, 0, // Skip to: 23273 |
3472 | /* 5729 */ MCD::OPC_Decode, 218, 19, 252, 1, // Opcode: VESRA |
3473 | /* 5734 */ MCD::OPC_FilterValue, 62, 35, 0, 0, // Skip to: 5774 |
3474 | /* 5739 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3475 | /* 5742 */ MCD::OPC_FilterValue, 0, 118, 68, 0, // Skip to: 23273 |
3476 | /* 5747 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 5764 |
3477 | /* 5752 */ MCD::OPC_CheckField, 12, 4, 0, 5, 0, 0, // Skip to: 5764 |
3478 | /* 5759 */ MCD::OPC_Decode, 141, 23, 253, 1, // Opcode: VSTM |
3479 | /* 5764 */ MCD::OPC_CheckPredicate, 35, 96, 68, 0, // Skip to: 23273 |
3480 | /* 5769 */ MCD::OPC_Decode, 142, 23, 254, 1, // Opcode: VSTMAlign |
3481 | /* 5774 */ MCD::OPC_FilterValue, 63, 24, 0, 0, // Skip to: 5803 |
3482 | /* 5779 */ MCD::OPC_CheckPredicate, 35, 81, 68, 0, // Skip to: 23273 |
3483 | /* 5784 */ MCD::OPC_CheckField, 12, 4, 0, 74, 68, 0, // Skip to: 23273 |
3484 | /* 5791 */ MCD::OPC_CheckField, 8, 3, 0, 67, 68, 0, // Skip to: 23273 |
3485 | /* 5798 */ MCD::OPC_Decode, 140, 23, 255, 1, // Opcode: VSTL |
3486 | /* 5803 */ MCD::OPC_FilterValue, 64, 24, 0, 0, // Skip to: 5832 |
3487 | /* 5808 */ MCD::OPC_CheckPredicate, 35, 52, 68, 0, // Skip to: 23273 |
3488 | /* 5813 */ MCD::OPC_CheckField, 32, 4, 0, 45, 68, 0, // Skip to: 23273 |
3489 | /* 5820 */ MCD::OPC_CheckField, 8, 3, 0, 38, 68, 0, // Skip to: 23273 |
3490 | /* 5827 */ MCD::OPC_Decode, 153, 21, 128, 2, // Opcode: VLEIB |
3491 | /* 5832 */ MCD::OPC_FilterValue, 65, 24, 0, 0, // Skip to: 5861 |
3492 | /* 5837 */ MCD::OPC_CheckPredicate, 35, 23, 68, 0, // Skip to: 23273 |
3493 | /* 5842 */ MCD::OPC_CheckField, 32, 4, 0, 16, 68, 0, // Skip to: 23273 |
3494 | /* 5849 */ MCD::OPC_CheckField, 8, 3, 0, 9, 68, 0, // Skip to: 23273 |
3495 | /* 5856 */ MCD::OPC_Decode, 156, 21, 129, 2, // Opcode: VLEIH |
3496 | /* 5861 */ MCD::OPC_FilterValue, 66, 24, 0, 0, // Skip to: 5890 |
3497 | /* 5866 */ MCD::OPC_CheckPredicate, 35, 250, 67, 0, // Skip to: 23273 |
3498 | /* 5871 */ MCD::OPC_CheckField, 32, 4, 0, 243, 67, 0, // Skip to: 23273 |
3499 | /* 5878 */ MCD::OPC_CheckField, 8, 3, 0, 236, 67, 0, // Skip to: 23273 |
3500 | /* 5885 */ MCD::OPC_Decode, 155, 21, 130, 2, // Opcode: VLEIG |
3501 | /* 5890 */ MCD::OPC_FilterValue, 67, 24, 0, 0, // Skip to: 5919 |
3502 | /* 5895 */ MCD::OPC_CheckPredicate, 35, 221, 67, 0, // Skip to: 23273 |
3503 | /* 5900 */ MCD::OPC_CheckField, 32, 4, 0, 214, 67, 0, // Skip to: 23273 |
3504 | /* 5907 */ MCD::OPC_CheckField, 8, 3, 0, 207, 67, 0, // Skip to: 23273 |
3505 | /* 5914 */ MCD::OPC_Decode, 154, 21, 131, 2, // Opcode: VLEIF |
3506 | /* 5919 */ MCD::OPC_FilterValue, 68, 69, 0, 0, // Skip to: 5993 |
3507 | /* 5924 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3508 | /* 5927 */ MCD::OPC_FilterValue, 0, 189, 67, 0, // Skip to: 23273 |
3509 | /* 5932 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3510 | /* 5935 */ MCD::OPC_FilterValue, 0, 181, 67, 0, // Skip to: 23273 |
3511 | /* 5940 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
3512 | /* 5943 */ MCD::OPC_FilterValue, 0, 173, 67, 0, // Skip to: 23273 |
3513 | /* 5948 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
3514 | /* 5951 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5966 |
3515 | /* 5956 */ MCD::OPC_CheckPredicate, 35, 22, 0, 0, // Skip to: 5983 |
3516 | /* 5961 */ MCD::OPC_Decode, 196, 23, 132, 2, // Opcode: VZERO |
3517 | /* 5966 */ MCD::OPC_FilterValue, 255, 255, 3, 10, 0, 0, // Skip to: 5983 |
3518 | /* 5973 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 5983 |
3519 | /* 5978 */ MCD::OPC_Decode, 169, 22, 132, 2, // Opcode: VONE |
3520 | /* 5983 */ MCD::OPC_CheckPredicate, 35, 133, 67, 0, // Skip to: 23273 |
3521 | /* 5988 */ MCD::OPC_Decode, 228, 20, 133, 2, // Opcode: VGBM |
3522 | /* 5993 */ MCD::OPC_FilterValue, 69, 89, 0, 0, // Skip to: 6087 |
3523 | /* 5998 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3524 | /* 6001 */ MCD::OPC_FilterValue, 0, 115, 67, 0, // Skip to: 23273 |
3525 | /* 6006 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
3526 | /* 6009 */ MCD::OPC_FilterValue, 0, 107, 67, 0, // Skip to: 23273 |
3527 | /* 6014 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3528 | /* 6017 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6032 |
3529 | /* 6022 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6077 |
3530 | /* 6027 */ MCD::OPC_Decode, 204, 22, 134, 2, // Opcode: VREPIB |
3531 | /* 6032 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6047 |
3532 | /* 6037 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6077 |
3533 | /* 6042 */ MCD::OPC_Decode, 207, 22, 134, 2, // Opcode: VREPIH |
3534 | /* 6047 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6062 |
3535 | /* 6052 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6077 |
3536 | /* 6057 */ MCD::OPC_Decode, 205, 22, 134, 2, // Opcode: VREPIF |
3537 | /* 6062 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6077 |
3538 | /* 6067 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6077 |
3539 | /* 6072 */ MCD::OPC_Decode, 206, 22, 134, 2, // Opcode: VREPIG |
3540 | /* 6077 */ MCD::OPC_CheckPredicate, 35, 39, 67, 0, // Skip to: 23273 |
3541 | /* 6082 */ MCD::OPC_Decode, 203, 22, 135, 2, // Opcode: VREPI |
3542 | /* 6087 */ MCD::OPC_FilterValue, 70, 89, 0, 0, // Skip to: 6181 |
3543 | /* 6092 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
3544 | /* 6095 */ MCD::OPC_FilterValue, 0, 21, 67, 0, // Skip to: 23273 |
3545 | /* 6100 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
3546 | /* 6103 */ MCD::OPC_FilterValue, 0, 13, 67, 0, // Skip to: 23273 |
3547 | /* 6108 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3548 | /* 6111 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6126 |
3549 | /* 6116 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6171 |
3550 | /* 6121 */ MCD::OPC_Decode, 242, 20, 136, 2, // Opcode: VGMB |
3551 | /* 6126 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6141 |
3552 | /* 6131 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6171 |
3553 | /* 6136 */ MCD::OPC_Decode, 245, 20, 136, 2, // Opcode: VGMH |
3554 | /* 6141 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6156 |
3555 | /* 6146 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6171 |
3556 | /* 6151 */ MCD::OPC_Decode, 243, 20, 136, 2, // Opcode: VGMF |
3557 | /* 6156 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6171 |
3558 | /* 6161 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6171 |
3559 | /* 6166 */ MCD::OPC_Decode, 244, 20, 136, 2, // Opcode: VGMG |
3560 | /* 6171 */ MCD::OPC_CheckPredicate, 35, 201, 66, 0, // Skip to: 23273 |
3561 | /* 6176 */ MCD::OPC_Decode, 241, 20, 137, 2, // Opcode: VGM |
3562 | /* 6181 */ MCD::OPC_FilterValue, 74, 99, 0, 0, // Skip to: 6285 |
3563 | /* 6186 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3564 | /* 6189 */ MCD::OPC_FilterValue, 0, 183, 66, 0, // Skip to: 23273 |
3565 | /* 6194 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
3566 | /* 6197 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6212 |
3567 | /* 6202 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 6275 |
3568 | /* 6207 */ MCD::OPC_Decode, 227, 20, 138, 2, // Opcode: VFTCISB |
3569 | /* 6212 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6227 |
3570 | /* 6217 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 6275 |
3571 | /* 6222 */ MCD::OPC_Decode, 226, 20, 138, 2, // Opcode: VFTCIDB |
3572 | /* 6227 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 6243 |
3573 | /* 6233 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 6275 |
3574 | /* 6238 */ MCD::OPC_Decode, 174, 24, 139, 2, // Opcode: WFTCISB |
3575 | /* 6243 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 6259 |
3576 | /* 6249 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 6275 |
3577 | /* 6254 */ MCD::OPC_Decode, 173, 24, 140, 2, // Opcode: WFTCIDB |
3578 | /* 6259 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 6275 |
3579 | /* 6265 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 6275 |
3580 | /* 6270 */ MCD::OPC_Decode, 175, 24, 138, 2, // Opcode: WFTCIXB |
3581 | /* 6275 */ MCD::OPC_CheckPredicate, 35, 97, 66, 0, // Skip to: 23273 |
3582 | /* 6280 */ MCD::OPC_Decode, 225, 20, 141, 2, // Opcode: VFTCI |
3583 | /* 6285 */ MCD::OPC_FilterValue, 77, 81, 0, 0, // Skip to: 6371 |
3584 | /* 6290 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3585 | /* 6293 */ MCD::OPC_FilterValue, 0, 79, 66, 0, // Skip to: 23273 |
3586 | /* 6298 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3587 | /* 6301 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6316 |
3588 | /* 6306 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6361 |
3589 | /* 6311 */ MCD::OPC_Decode, 199, 22, 142, 2, // Opcode: VREPB |
3590 | /* 6316 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6331 |
3591 | /* 6321 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6361 |
3592 | /* 6326 */ MCD::OPC_Decode, 202, 22, 142, 2, // Opcode: VREPH |
3593 | /* 6331 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6346 |
3594 | /* 6336 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6361 |
3595 | /* 6341 */ MCD::OPC_Decode, 200, 22, 142, 2, // Opcode: VREPF |
3596 | /* 6346 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6361 |
3597 | /* 6351 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6361 |
3598 | /* 6356 */ MCD::OPC_Decode, 201, 22, 142, 2, // Opcode: VREPG |
3599 | /* 6361 */ MCD::OPC_CheckPredicate, 35, 11, 66, 0, // Skip to: 23273 |
3600 | /* 6366 */ MCD::OPC_Decode, 198, 22, 143, 2, // Opcode: VREP |
3601 | /* 6371 */ MCD::OPC_FilterValue, 80, 89, 0, 0, // Skip to: 6465 |
3602 | /* 6376 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3603 | /* 6379 */ MCD::OPC_FilterValue, 0, 249, 65, 0, // Skip to: 23273 |
3604 | /* 6384 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
3605 | /* 6387 */ MCD::OPC_FilterValue, 0, 241, 65, 0, // Skip to: 23273 |
3606 | /* 6392 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3607 | /* 6395 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6410 |
3608 | /* 6400 */ MCD::OPC_CheckPredicate, 36, 50, 0, 0, // Skip to: 6455 |
3609 | /* 6405 */ MCD::OPC_Decode, 193, 22, 144, 2, // Opcode: VPOPCTB |
3610 | /* 6410 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6425 |
3611 | /* 6415 */ MCD::OPC_CheckPredicate, 36, 35, 0, 0, // Skip to: 6455 |
3612 | /* 6420 */ MCD::OPC_Decode, 196, 22, 144, 2, // Opcode: VPOPCTH |
3613 | /* 6425 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6440 |
3614 | /* 6430 */ MCD::OPC_CheckPredicate, 36, 20, 0, 0, // Skip to: 6455 |
3615 | /* 6435 */ MCD::OPC_Decode, 194, 22, 144, 2, // Opcode: VPOPCTF |
3616 | /* 6440 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6455 |
3617 | /* 6445 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 6455 |
3618 | /* 6450 */ MCD::OPC_Decode, 195, 22, 144, 2, // Opcode: VPOPCTG |
3619 | /* 6455 */ MCD::OPC_CheckPredicate, 35, 173, 65, 0, // Skip to: 23273 |
3620 | /* 6460 */ MCD::OPC_Decode, 192, 22, 145, 2, // Opcode: VPOPCT |
3621 | /* 6465 */ MCD::OPC_FilterValue, 82, 89, 0, 0, // Skip to: 6559 |
3622 | /* 6470 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3623 | /* 6473 */ MCD::OPC_FilterValue, 0, 155, 65, 0, // Skip to: 23273 |
3624 | /* 6478 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
3625 | /* 6481 */ MCD::OPC_FilterValue, 0, 147, 65, 0, // Skip to: 23273 |
3626 | /* 6486 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3627 | /* 6489 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6504 |
3628 | /* 6494 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6549 |
3629 | /* 6499 */ MCD::OPC_Decode, 172, 19, 144, 2, // Opcode: VCTZB |
3630 | /* 6504 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6519 |
3631 | /* 6509 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6549 |
3632 | /* 6514 */ MCD::OPC_Decode, 175, 19, 144, 2, // Opcode: VCTZH |
3633 | /* 6519 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6534 |
3634 | /* 6524 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6549 |
3635 | /* 6529 */ MCD::OPC_Decode, 173, 19, 144, 2, // Opcode: VCTZF |
3636 | /* 6534 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6549 |
3637 | /* 6539 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6549 |
3638 | /* 6544 */ MCD::OPC_Decode, 174, 19, 144, 2, // Opcode: VCTZG |
3639 | /* 6549 */ MCD::OPC_CheckPredicate, 35, 79, 65, 0, // Skip to: 23273 |
3640 | /* 6554 */ MCD::OPC_Decode, 171, 19, 145, 2, // Opcode: VCTZ |
3641 | /* 6559 */ MCD::OPC_FilterValue, 83, 89, 0, 0, // Skip to: 6653 |
3642 | /* 6564 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3643 | /* 6567 */ MCD::OPC_FilterValue, 0, 61, 65, 0, // Skip to: 23273 |
3644 | /* 6572 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
3645 | /* 6575 */ MCD::OPC_FilterValue, 0, 53, 65, 0, // Skip to: 23273 |
3646 | /* 6580 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3647 | /* 6583 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6598 |
3648 | /* 6588 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6643 |
3649 | /* 6593 */ MCD::OPC_Decode, 161, 19, 144, 2, // Opcode: VCLZB |
3650 | /* 6598 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6613 |
3651 | /* 6603 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6643 |
3652 | /* 6608 */ MCD::OPC_Decode, 165, 19, 144, 2, // Opcode: VCLZH |
3653 | /* 6613 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6628 |
3654 | /* 6618 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6643 |
3655 | /* 6623 */ MCD::OPC_Decode, 163, 19, 144, 2, // Opcode: VCLZF |
3656 | /* 6628 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6643 |
3657 | /* 6633 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6643 |
3658 | /* 6638 */ MCD::OPC_Decode, 164, 19, 144, 2, // Opcode: VCLZG |
3659 | /* 6643 */ MCD::OPC_CheckPredicate, 35, 241, 64, 0, // Skip to: 23273 |
3660 | /* 6648 */ MCD::OPC_Decode, 160, 19, 145, 2, // Opcode: VCLZ |
3661 | /* 6653 */ MCD::OPC_FilterValue, 86, 24, 0, 0, // Skip to: 6682 |
3662 | /* 6658 */ MCD::OPC_CheckPredicate, 35, 226, 64, 0, // Skip to: 23273 |
3663 | /* 6663 */ MCD::OPC_CheckField, 12, 20, 0, 219, 64, 0, // Skip to: 23273 |
3664 | /* 6670 */ MCD::OPC_CheckField, 8, 2, 0, 212, 64, 0, // Skip to: 23273 |
3665 | /* 6677 */ MCD::OPC_Decode, 186, 21, 144, 2, // Opcode: VLR |
3666 | /* 6682 */ MCD::OPC_FilterValue, 92, 133, 0, 0, // Skip to: 6820 |
3667 | /* 6687 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3668 | /* 6690 */ MCD::OPC_FilterValue, 0, 194, 64, 0, // Skip to: 23273 |
3669 | /* 6695 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
3670 | /* 6698 */ MCD::OPC_FilterValue, 0, 186, 64, 0, // Skip to: 23273 |
3671 | /* 6703 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
3672 | /* 6706 */ MCD::OPC_FilterValue, 0, 178, 64, 0, // Skip to: 23273 |
3673 | /* 6711 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3674 | /* 6714 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 6746 |
3675 | /* 6719 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 6736 |
3676 | /* 6724 */ MCD::OPC_CheckField, 20, 4, 1, 5, 0, 0, // Skip to: 6736 |
3677 | /* 6731 */ MCD::OPC_Decode, 248, 20, 144, 2, // Opcode: VISTRBS |
3678 | /* 6736 */ MCD::OPC_CheckPredicate, 35, 69, 0, 0, // Skip to: 6810 |
3679 | /* 6741 */ MCD::OPC_Decode, 247, 20, 226, 1, // Opcode: VISTRB |
3680 | /* 6746 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 6778 |
3681 | /* 6751 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 6768 |
3682 | /* 6756 */ MCD::OPC_CheckField, 20, 4, 1, 5, 0, 0, // Skip to: 6768 |
3683 | /* 6763 */ MCD::OPC_Decode, 252, 20, 144, 2, // Opcode: VISTRHS |
3684 | /* 6768 */ MCD::OPC_CheckPredicate, 35, 37, 0, 0, // Skip to: 6810 |
3685 | /* 6773 */ MCD::OPC_Decode, 251, 20, 226, 1, // Opcode: VISTRH |
3686 | /* 6778 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 6810 |
3687 | /* 6783 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 6800 |
3688 | /* 6788 */ MCD::OPC_CheckField, 20, 4, 1, 5, 0, 0, // Skip to: 6800 |
3689 | /* 6795 */ MCD::OPC_Decode, 250, 20, 144, 2, // Opcode: VISTRFS |
3690 | /* 6800 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6810 |
3691 | /* 6805 */ MCD::OPC_Decode, 249, 20, 226, 1, // Opcode: VISTRF |
3692 | /* 6810 */ MCD::OPC_CheckPredicate, 35, 74, 64, 0, // Skip to: 23273 |
3693 | /* 6815 */ MCD::OPC_Decode, 246, 20, 146, 2, // Opcode: VISTR |
3694 | /* 6820 */ MCD::OPC_FilterValue, 95, 74, 0, 0, // Skip to: 6899 |
3695 | /* 6825 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
3696 | /* 6828 */ MCD::OPC_FilterValue, 0, 56, 64, 0, // Skip to: 23273 |
3697 | /* 6833 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
3698 | /* 6836 */ MCD::OPC_FilterValue, 0, 48, 64, 0, // Skip to: 23273 |
3699 | /* 6841 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3700 | /* 6844 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6859 |
3701 | /* 6849 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6889 |
3702 | /* 6854 */ MCD::OPC_Decode, 230, 22, 144, 2, // Opcode: VSEGB |
3703 | /* 6859 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6874 |
3704 | /* 6864 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6889 |
3705 | /* 6869 */ MCD::OPC_Decode, 232, 22, 144, 2, // Opcode: VSEGH |
3706 | /* 6874 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6889 |
3707 | /* 6879 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6889 |
3708 | /* 6884 */ MCD::OPC_Decode, 231, 22, 144, 2, // Opcode: VSEGF |
3709 | /* 6889 */ MCD::OPC_CheckPredicate, 35, 251, 63, 0, // Skip to: 23273 |
3710 | /* 6894 */ MCD::OPC_Decode, 229, 22, 145, 2, // Opcode: VSEG |
3711 | /* 6899 */ MCD::OPC_FilterValue, 96, 89, 0, 0, // Skip to: 6993 |
3712 | /* 6904 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3713 | /* 6907 */ MCD::OPC_FilterValue, 0, 233, 63, 0, // Skip to: 23273 |
3714 | /* 6912 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3715 | /* 6915 */ MCD::OPC_FilterValue, 0, 225, 63, 0, // Skip to: 23273 |
3716 | /* 6920 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3717 | /* 6923 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6938 |
3718 | /* 6928 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 6983 |
3719 | /* 6933 */ MCD::OPC_Decode, 145, 22, 239, 1, // Opcode: VMRLB |
3720 | /* 6938 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6953 |
3721 | /* 6943 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 6983 |
3722 | /* 6948 */ MCD::OPC_Decode, 148, 22, 239, 1, // Opcode: VMRLH |
3723 | /* 6953 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6968 |
3724 | /* 6958 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 6983 |
3725 | /* 6963 */ MCD::OPC_Decode, 146, 22, 239, 1, // Opcode: VMRLF |
3726 | /* 6968 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6983 |
3727 | /* 6973 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 6983 |
3728 | /* 6978 */ MCD::OPC_Decode, 147, 22, 239, 1, // Opcode: VMRLG |
3729 | /* 6983 */ MCD::OPC_CheckPredicate, 35, 157, 63, 0, // Skip to: 23273 |
3730 | /* 6988 */ MCD::OPC_Decode, 144, 22, 147, 2, // Opcode: VMRL |
3731 | /* 6993 */ MCD::OPC_FilterValue, 97, 89, 0, 0, // Skip to: 7087 |
3732 | /* 6998 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3733 | /* 7001 */ MCD::OPC_FilterValue, 0, 139, 63, 0, // Skip to: 23273 |
3734 | /* 7006 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3735 | /* 7009 */ MCD::OPC_FilterValue, 0, 131, 63, 0, // Skip to: 23273 |
3736 | /* 7014 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3737 | /* 7017 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7032 |
3738 | /* 7022 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 7077 |
3739 | /* 7027 */ MCD::OPC_Decode, 140, 22, 239, 1, // Opcode: VMRHB |
3740 | /* 7032 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7047 |
3741 | /* 7037 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 7077 |
3742 | /* 7042 */ MCD::OPC_Decode, 143, 22, 239, 1, // Opcode: VMRHH |
3743 | /* 7047 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7062 |
3744 | /* 7052 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7077 |
3745 | /* 7057 */ MCD::OPC_Decode, 141, 22, 239, 1, // Opcode: VMRHF |
3746 | /* 7062 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7077 |
3747 | /* 7067 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7077 |
3748 | /* 7072 */ MCD::OPC_Decode, 142, 22, 239, 1, // Opcode: VMRHG |
3749 | /* 7077 */ MCD::OPC_CheckPredicate, 35, 63, 63, 0, // Skip to: 23273 |
3750 | /* 7082 */ MCD::OPC_Decode, 139, 22, 147, 2, // Opcode: VMRH |
3751 | /* 7087 */ MCD::OPC_FilterValue, 98, 24, 0, 0, // Skip to: 7116 |
3752 | /* 7092 */ MCD::OPC_CheckPredicate, 35, 48, 63, 0, // Skip to: 23273 |
3753 | /* 7097 */ MCD::OPC_CheckField, 12, 16, 0, 41, 63, 0, // Skip to: 23273 |
3754 | /* 7104 */ MCD::OPC_CheckField, 8, 3, 0, 34, 63, 0, // Skip to: 23273 |
3755 | /* 7111 */ MCD::OPC_Decode, 199, 21, 148, 2, // Opcode: VLVGP |
3756 | /* 7116 */ MCD::OPC_FilterValue, 100, 59, 0, 0, // Skip to: 7180 |
3757 | /* 7121 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3758 | /* 7124 */ MCD::OPC_FilterValue, 0, 16, 63, 0, // Skip to: 23273 |
3759 | /* 7129 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3760 | /* 7132 */ MCD::OPC_FilterValue, 0, 8, 63, 0, // Skip to: 23273 |
3761 | /* 7137 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3762 | /* 7140 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7155 |
3763 | /* 7145 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7170 |
3764 | /* 7150 */ MCD::OPC_Decode, 166, 23, 239, 1, // Opcode: VSUMB |
3765 | /* 7155 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7170 |
3766 | /* 7160 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7170 |
3767 | /* 7165 */ MCD::OPC_Decode, 170, 23, 239, 1, // Opcode: VSUMH |
3768 | /* 7170 */ MCD::OPC_CheckPredicate, 35, 226, 62, 0, // Skip to: 23273 |
3769 | /* 7175 */ MCD::OPC_Decode, 165, 23, 147, 2, // Opcode: VSUM |
3770 | /* 7180 */ MCD::OPC_FilterValue, 101, 59, 0, 0, // Skip to: 7244 |
3771 | /* 7185 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3772 | /* 7188 */ MCD::OPC_FilterValue, 0, 208, 62, 0, // Skip to: 23273 |
3773 | /* 7193 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3774 | /* 7196 */ MCD::OPC_FilterValue, 0, 200, 62, 0, // Skip to: 23273 |
3775 | /* 7201 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3776 | /* 7204 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7219 |
3777 | /* 7209 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7234 |
3778 | /* 7214 */ MCD::OPC_Decode, 169, 23, 239, 1, // Opcode: VSUMGH |
3779 | /* 7219 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7234 |
3780 | /* 7224 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7234 |
3781 | /* 7229 */ MCD::OPC_Decode, 168, 23, 239, 1, // Opcode: VSUMGF |
3782 | /* 7234 */ MCD::OPC_CheckPredicate, 35, 162, 62, 0, // Skip to: 23273 |
3783 | /* 7239 */ MCD::OPC_Decode, 167, 23, 147, 2, // Opcode: VSUMG |
3784 | /* 7244 */ MCD::OPC_FilterValue, 102, 24, 0, 0, // Skip to: 7273 |
3785 | /* 7249 */ MCD::OPC_CheckPredicate, 35, 147, 62, 0, // Skip to: 23273 |
3786 | /* 7254 */ MCD::OPC_CheckField, 12, 16, 0, 140, 62, 0, // Skip to: 23273 |
3787 | /* 7261 */ MCD::OPC_CheckField, 8, 1, 0, 133, 62, 0, // Skip to: 23273 |
3788 | /* 7268 */ MCD::OPC_Decode, 153, 19, 239, 1, // Opcode: VCKSM |
3789 | /* 7273 */ MCD::OPC_FilterValue, 103, 59, 0, 0, // Skip to: 7337 |
3790 | /* 7278 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3791 | /* 7281 */ MCD::OPC_FilterValue, 0, 115, 62, 0, // Skip to: 23273 |
3792 | /* 7286 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3793 | /* 7289 */ MCD::OPC_FilterValue, 0, 107, 62, 0, // Skip to: 23273 |
3794 | /* 7294 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3795 | /* 7297 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7312 |
3796 | /* 7302 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7327 |
3797 | /* 7307 */ MCD::OPC_Decode, 172, 23, 239, 1, // Opcode: VSUMQF |
3798 | /* 7312 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7327 |
3799 | /* 7317 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7327 |
3800 | /* 7322 */ MCD::OPC_Decode, 173, 23, 239, 1, // Opcode: VSUMQG |
3801 | /* 7327 */ MCD::OPC_CheckPredicate, 35, 69, 62, 0, // Skip to: 23273 |
3802 | /* 7332 */ MCD::OPC_Decode, 171, 23, 147, 2, // Opcode: VSUMQ |
3803 | /* 7337 */ MCD::OPC_FilterValue, 104, 24, 0, 0, // Skip to: 7366 |
3804 | /* 7342 */ MCD::OPC_CheckPredicate, 35, 54, 62, 0, // Skip to: 23273 |
3805 | /* 7347 */ MCD::OPC_CheckField, 12, 16, 0, 47, 62, 0, // Skip to: 23273 |
3806 | /* 7354 */ MCD::OPC_CheckField, 8, 1, 0, 40, 62, 0, // Skip to: 23273 |
3807 | /* 7361 */ MCD::OPC_Decode, 162, 22, 239, 1, // Opcode: VN |
3808 | /* 7366 */ MCD::OPC_FilterValue, 105, 24, 0, 0, // Skip to: 7395 |
3809 | /* 7371 */ MCD::OPC_CheckPredicate, 35, 25, 62, 0, // Skip to: 23273 |
3810 | /* 7376 */ MCD::OPC_CheckField, 12, 16, 0, 18, 62, 0, // Skip to: 23273 |
3811 | /* 7383 */ MCD::OPC_CheckField, 8, 1, 0, 11, 62, 0, // Skip to: 23273 |
3812 | /* 7390 */ MCD::OPC_Decode, 163, 22, 239, 1, // Opcode: VNC |
3813 | /* 7395 */ MCD::OPC_FilterValue, 106, 24, 0, 0, // Skip to: 7424 |
3814 | /* 7400 */ MCD::OPC_CheckPredicate, 35, 252, 61, 0, // Skip to: 23273 |
3815 | /* 7405 */ MCD::OPC_CheckField, 12, 16, 0, 245, 61, 0, // Skip to: 23273 |
3816 | /* 7412 */ MCD::OPC_CheckField, 8, 1, 0, 238, 61, 0, // Skip to: 23273 |
3817 | /* 7419 */ MCD::OPC_Decode, 167, 22, 239, 1, // Opcode: VO |
3818 | /* 7424 */ MCD::OPC_FilterValue, 107, 24, 0, 0, // Skip to: 7453 |
3819 | /* 7429 */ MCD::OPC_CheckPredicate, 35, 223, 61, 0, // Skip to: 23273 |
3820 | /* 7434 */ MCD::OPC_CheckField, 12, 16, 0, 216, 61, 0, // Skip to: 23273 |
3821 | /* 7441 */ MCD::OPC_CheckField, 8, 1, 0, 209, 61, 0, // Skip to: 23273 |
3822 | /* 7448 */ MCD::OPC_Decode, 165, 22, 239, 1, // Opcode: VNO |
3823 | /* 7453 */ MCD::OPC_FilterValue, 108, 24, 0, 0, // Skip to: 7482 |
3824 | /* 7458 */ MCD::OPC_CheckPredicate, 36, 194, 61, 0, // Skip to: 23273 |
3825 | /* 7463 */ MCD::OPC_CheckField, 12, 16, 0, 187, 61, 0, // Skip to: 23273 |
3826 | /* 7470 */ MCD::OPC_CheckField, 8, 1, 0, 180, 61, 0, // Skip to: 23273 |
3827 | /* 7477 */ MCD::OPC_Decode, 166, 22, 239, 1, // Opcode: VNX |
3828 | /* 7482 */ MCD::OPC_FilterValue, 109, 24, 0, 0, // Skip to: 7511 |
3829 | /* 7487 */ MCD::OPC_CheckPredicate, 35, 165, 61, 0, // Skip to: 23273 |
3830 | /* 7492 */ MCD::OPC_CheckField, 12, 16, 0, 158, 61, 0, // Skip to: 23273 |
3831 | /* 7499 */ MCD::OPC_CheckField, 8, 1, 0, 151, 61, 0, // Skip to: 23273 |
3832 | /* 7506 */ MCD::OPC_Decode, 195, 23, 239, 1, // Opcode: VX |
3833 | /* 7511 */ MCD::OPC_FilterValue, 110, 24, 0, 0, // Skip to: 7540 |
3834 | /* 7516 */ MCD::OPC_CheckPredicate, 36, 136, 61, 0, // Skip to: 23273 |
3835 | /* 7521 */ MCD::OPC_CheckField, 12, 16, 0, 129, 61, 0, // Skip to: 23273 |
3836 | /* 7528 */ MCD::OPC_CheckField, 8, 1, 0, 122, 61, 0, // Skip to: 23273 |
3837 | /* 7535 */ MCD::OPC_Decode, 164, 22, 239, 1, // Opcode: VNN |
3838 | /* 7540 */ MCD::OPC_FilterValue, 111, 24, 0, 0, // Skip to: 7569 |
3839 | /* 7545 */ MCD::OPC_CheckPredicate, 36, 107, 61, 0, // Skip to: 23273 |
3840 | /* 7550 */ MCD::OPC_CheckField, 12, 16, 0, 100, 61, 0, // Skip to: 23273 |
3841 | /* 7557 */ MCD::OPC_CheckField, 8, 1, 0, 93, 61, 0, // Skip to: 23273 |
3842 | /* 7564 */ MCD::OPC_Decode, 168, 22, 239, 1, // Opcode: VOC |
3843 | /* 7569 */ MCD::OPC_FilterValue, 112, 89, 0, 0, // Skip to: 7663 |
3844 | /* 7574 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3845 | /* 7577 */ MCD::OPC_FilterValue, 0, 75, 61, 0, // Skip to: 23273 |
3846 | /* 7582 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3847 | /* 7585 */ MCD::OPC_FilterValue, 0, 67, 61, 0, // Skip to: 23273 |
3848 | /* 7590 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3849 | /* 7593 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7608 |
3850 | /* 7598 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 7653 |
3851 | /* 7603 */ MCD::OPC_Decode, 214, 19, 239, 1, // Opcode: VESLVB |
3852 | /* 7608 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7623 |
3853 | /* 7613 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 7653 |
3854 | /* 7618 */ MCD::OPC_Decode, 217, 19, 239, 1, // Opcode: VESLVH |
3855 | /* 7623 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7638 |
3856 | /* 7628 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7653 |
3857 | /* 7633 */ MCD::OPC_Decode, 215, 19, 239, 1, // Opcode: VESLVF |
3858 | /* 7638 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7653 |
3859 | /* 7643 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7653 |
3860 | /* 7648 */ MCD::OPC_Decode, 216, 19, 239, 1, // Opcode: VESLVG |
3861 | /* 7653 */ MCD::OPC_CheckPredicate, 35, 255, 60, 0, // Skip to: 23273 |
3862 | /* 7658 */ MCD::OPC_Decode, 213, 19, 147, 2, // Opcode: VESLV |
3863 | /* 7663 */ MCD::OPC_FilterValue, 114, 89, 0, 0, // Skip to: 7757 |
3864 | /* 7668 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3865 | /* 7671 */ MCD::OPC_FilterValue, 0, 237, 60, 0, // Skip to: 23273 |
3866 | /* 7676 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
3867 | /* 7679 */ MCD::OPC_FilterValue, 0, 229, 60, 0, // Skip to: 23273 |
3868 | /* 7684 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3869 | /* 7687 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7702 |
3870 | /* 7692 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 7747 |
3871 | /* 7697 */ MCD::OPC_Decode, 194, 19, 149, 2, // Opcode: VERIMB |
3872 | /* 7702 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7717 |
3873 | /* 7707 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 7747 |
3874 | /* 7712 */ MCD::OPC_Decode, 197, 19, 149, 2, // Opcode: VERIMH |
3875 | /* 7717 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7732 |
3876 | /* 7722 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7747 |
3877 | /* 7727 */ MCD::OPC_Decode, 195, 19, 149, 2, // Opcode: VERIMF |
3878 | /* 7732 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7747 |
3879 | /* 7737 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7747 |
3880 | /* 7742 */ MCD::OPC_Decode, 196, 19, 149, 2, // Opcode: VERIMG |
3881 | /* 7747 */ MCD::OPC_CheckPredicate, 35, 161, 60, 0, // Skip to: 23273 |
3882 | /* 7752 */ MCD::OPC_Decode, 193, 19, 150, 2, // Opcode: VERIM |
3883 | /* 7757 */ MCD::OPC_FilterValue, 115, 89, 0, 0, // Skip to: 7851 |
3884 | /* 7762 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3885 | /* 7765 */ MCD::OPC_FilterValue, 0, 143, 60, 0, // Skip to: 23273 |
3886 | /* 7770 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3887 | /* 7773 */ MCD::OPC_FilterValue, 0, 135, 60, 0, // Skip to: 23273 |
3888 | /* 7778 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3889 | /* 7781 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7796 |
3890 | /* 7786 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 7841 |
3891 | /* 7791 */ MCD::OPC_Decode, 204, 19, 239, 1, // Opcode: VERLLVB |
3892 | /* 7796 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7811 |
3893 | /* 7801 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 7841 |
3894 | /* 7806 */ MCD::OPC_Decode, 207, 19, 239, 1, // Opcode: VERLLVH |
3895 | /* 7811 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7826 |
3896 | /* 7816 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 7841 |
3897 | /* 7821 */ MCD::OPC_Decode, 205, 19, 239, 1, // Opcode: VERLLVF |
3898 | /* 7826 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7841 |
3899 | /* 7831 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 7841 |
3900 | /* 7836 */ MCD::OPC_Decode, 206, 19, 239, 1, // Opcode: VERLLVG |
3901 | /* 7841 */ MCD::OPC_CheckPredicate, 35, 67, 60, 0, // Skip to: 23273 |
3902 | /* 7846 */ MCD::OPC_Decode, 203, 19, 147, 2, // Opcode: VERLLV |
3903 | /* 7851 */ MCD::OPC_FilterValue, 116, 24, 0, 0, // Skip to: 7880 |
3904 | /* 7856 */ MCD::OPC_CheckPredicate, 35, 52, 60, 0, // Skip to: 23273 |
3905 | /* 7861 */ MCD::OPC_CheckField, 12, 16, 0, 45, 60, 0, // Skip to: 23273 |
3906 | /* 7868 */ MCD::OPC_CheckField, 8, 1, 0, 38, 60, 0, // Skip to: 23273 |
3907 | /* 7875 */ MCD::OPC_Decode, 237, 22, 239, 1, // Opcode: VSL |
3908 | /* 7880 */ MCD::OPC_FilterValue, 117, 24, 0, 0, // Skip to: 7909 |
3909 | /* 7885 */ MCD::OPC_CheckPredicate, 35, 23, 60, 0, // Skip to: 23273 |
3910 | /* 7890 */ MCD::OPC_CheckField, 12, 16, 0, 16, 60, 0, // Skip to: 23273 |
3911 | /* 7897 */ MCD::OPC_CheckField, 8, 1, 0, 9, 60, 0, // Skip to: 23273 |
3912 | /* 7904 */ MCD::OPC_Decode, 238, 22, 239, 1, // Opcode: VSLB |
3913 | /* 7909 */ MCD::OPC_FilterValue, 119, 31, 0, 0, // Skip to: 7945 |
3914 | /* 7914 */ MCD::OPC_CheckPredicate, 35, 250, 59, 0, // Skip to: 23273 |
3915 | /* 7919 */ MCD::OPC_CheckField, 24, 4, 0, 243, 59, 0, // Skip to: 23273 |
3916 | /* 7926 */ MCD::OPC_CheckField, 12, 4, 0, 236, 59, 0, // Skip to: 23273 |
3917 | /* 7933 */ MCD::OPC_CheckField, 8, 1, 0, 229, 59, 0, // Skip to: 23273 |
3918 | /* 7940 */ MCD::OPC_Decode, 240, 22, 151, 2, // Opcode: VSLDB |
3919 | /* 7945 */ MCD::OPC_FilterValue, 120, 89, 0, 0, // Skip to: 8039 |
3920 | /* 7950 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3921 | /* 7953 */ MCD::OPC_FilterValue, 0, 211, 59, 0, // Skip to: 23273 |
3922 | /* 7958 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3923 | /* 7961 */ MCD::OPC_FilterValue, 0, 203, 59, 0, // Skip to: 23273 |
3924 | /* 7966 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3925 | /* 7969 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7984 |
3926 | /* 7974 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 8029 |
3927 | /* 7979 */ MCD::OPC_Decode, 234, 19, 239, 1, // Opcode: VESRLVB |
3928 | /* 7984 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7999 |
3929 | /* 7989 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8029 |
3930 | /* 7994 */ MCD::OPC_Decode, 237, 19, 239, 1, // Opcode: VESRLVH |
3931 | /* 7999 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8014 |
3932 | /* 8004 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8029 |
3933 | /* 8009 */ MCD::OPC_Decode, 235, 19, 239, 1, // Opcode: VESRLVF |
3934 | /* 8014 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8029 |
3935 | /* 8019 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8029 |
3936 | /* 8024 */ MCD::OPC_Decode, 236, 19, 239, 1, // Opcode: VESRLVG |
3937 | /* 8029 */ MCD::OPC_CheckPredicate, 35, 135, 59, 0, // Skip to: 23273 |
3938 | /* 8034 */ MCD::OPC_Decode, 233, 19, 147, 2, // Opcode: VESRLV |
3939 | /* 8039 */ MCD::OPC_FilterValue, 122, 89, 0, 0, // Skip to: 8133 |
3940 | /* 8044 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3941 | /* 8047 */ MCD::OPC_FilterValue, 0, 117, 59, 0, // Skip to: 23273 |
3942 | /* 8052 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
3943 | /* 8055 */ MCD::OPC_FilterValue, 0, 109, 59, 0, // Skip to: 23273 |
3944 | /* 8060 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3945 | /* 8063 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8078 |
3946 | /* 8068 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 8123 |
3947 | /* 8073 */ MCD::OPC_Decode, 224, 19, 239, 1, // Opcode: VESRAVB |
3948 | /* 8078 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8093 |
3949 | /* 8083 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8123 |
3950 | /* 8088 */ MCD::OPC_Decode, 227, 19, 239, 1, // Opcode: VESRAVH |
3951 | /* 8093 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8108 |
3952 | /* 8098 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8123 |
3953 | /* 8103 */ MCD::OPC_Decode, 225, 19, 239, 1, // Opcode: VESRAVF |
3954 | /* 8108 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8123 |
3955 | /* 8113 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8123 |
3956 | /* 8118 */ MCD::OPC_Decode, 226, 19, 239, 1, // Opcode: VESRAVG |
3957 | /* 8123 */ MCD::OPC_CheckPredicate, 35, 41, 59, 0, // Skip to: 23273 |
3958 | /* 8128 */ MCD::OPC_Decode, 223, 19, 147, 2, // Opcode: VESRAV |
3959 | /* 8133 */ MCD::OPC_FilterValue, 124, 24, 0, 0, // Skip to: 8162 |
3960 | /* 8138 */ MCD::OPC_CheckPredicate, 35, 26, 59, 0, // Skip to: 23273 |
3961 | /* 8143 */ MCD::OPC_CheckField, 12, 16, 0, 19, 59, 0, // Skip to: 23273 |
3962 | /* 8150 */ MCD::OPC_CheckField, 8, 1, 0, 12, 59, 0, // Skip to: 23273 |
3963 | /* 8157 */ MCD::OPC_Decode, 246, 22, 239, 1, // Opcode: VSRL |
3964 | /* 8162 */ MCD::OPC_FilterValue, 125, 24, 0, 0, // Skip to: 8191 |
3965 | /* 8167 */ MCD::OPC_CheckPredicate, 35, 253, 58, 0, // Skip to: 23273 |
3966 | /* 8172 */ MCD::OPC_CheckField, 12, 16, 0, 246, 58, 0, // Skip to: 23273 |
3967 | /* 8179 */ MCD::OPC_CheckField, 8, 1, 0, 239, 58, 0, // Skip to: 23273 |
3968 | /* 8186 */ MCD::OPC_Decode, 247, 22, 239, 1, // Opcode: VSRLB |
3969 | /* 8191 */ MCD::OPC_FilterValue, 126, 24, 0, 0, // Skip to: 8220 |
3970 | /* 8196 */ MCD::OPC_CheckPredicate, 35, 224, 58, 0, // Skip to: 23273 |
3971 | /* 8201 */ MCD::OPC_CheckField, 12, 16, 0, 217, 58, 0, // Skip to: 23273 |
3972 | /* 8208 */ MCD::OPC_CheckField, 8, 1, 0, 210, 58, 0, // Skip to: 23273 |
3973 | /* 8215 */ MCD::OPC_Decode, 243, 22, 239, 1, // Opcode: VSRA |
3974 | /* 8220 */ MCD::OPC_FilterValue, 127, 24, 0, 0, // Skip to: 8249 |
3975 | /* 8225 */ MCD::OPC_CheckPredicate, 35, 195, 58, 0, // Skip to: 23273 |
3976 | /* 8230 */ MCD::OPC_CheckField, 12, 16, 0, 188, 58, 0, // Skip to: 23273 |
3977 | /* 8237 */ MCD::OPC_CheckField, 8, 1, 0, 181, 58, 0, // Skip to: 23273 |
3978 | /* 8244 */ MCD::OPC_Decode, 244, 22, 239, 1, // Opcode: VSRAB |
3979 | /* 8249 */ MCD::OPC_FilterValue, 128, 1, 226, 0, 0, // Skip to: 8481 |
3980 | /* 8255 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
3981 | /* 8258 */ MCD::OPC_FilterValue, 0, 162, 58, 0, // Skip to: 23273 |
3982 | /* 8263 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
3983 | /* 8266 */ MCD::OPC_FilterValue, 0, 154, 58, 0, // Skip to: 23273 |
3984 | /* 8271 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
3985 | /* 8274 */ MCD::OPC_FilterValue, 0, 146, 58, 0, // Skip to: 23273 |
3986 | /* 8279 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
3987 | /* 8282 */ MCD::OPC_FilterValue, 0, 58, 0, 0, // Skip to: 8345 |
3988 | /* 8287 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
3989 | /* 8290 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8305 |
3990 | /* 8295 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8335 |
3991 | /* 8300 */ MCD::OPC_Decode, 146, 20, 239, 1, // Opcode: VFEEBS |
3992 | /* 8305 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8320 |
3993 | /* 8310 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8335 |
3994 | /* 8315 */ MCD::OPC_Decode, 151, 20, 239, 1, // Opcode: VFEEZB |
3995 | /* 8320 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8335 |
3996 | /* 8325 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8335 |
3997 | /* 8330 */ MCD::OPC_Decode, 152, 20, 239, 1, // Opcode: VFEEZBS |
3998 | /* 8335 */ MCD::OPC_CheckPredicate, 35, 131, 0, 0, // Skip to: 8471 |
3999 | /* 8340 */ MCD::OPC_Decode, 145, 20, 235, 1, // Opcode: VFEEB |
4000 | /* 8345 */ MCD::OPC_FilterValue, 1, 58, 0, 0, // Skip to: 8408 |
4001 | /* 8350 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4002 | /* 8353 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8368 |
4003 | /* 8358 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8398 |
4004 | /* 8363 */ MCD::OPC_Decode, 150, 20, 239, 1, // Opcode: VFEEHS |
4005 | /* 8368 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8383 |
4006 | /* 8373 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8398 |
4007 | /* 8378 */ MCD::OPC_Decode, 155, 20, 239, 1, // Opcode: VFEEZH |
4008 | /* 8383 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8398 |
4009 | /* 8388 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8398 |
4010 | /* 8393 */ MCD::OPC_Decode, 156, 20, 239, 1, // Opcode: VFEEZHS |
4011 | /* 8398 */ MCD::OPC_CheckPredicate, 35, 68, 0, 0, // Skip to: 8471 |
4012 | /* 8403 */ MCD::OPC_Decode, 149, 20, 235, 1, // Opcode: VFEEH |
4013 | /* 8408 */ MCD::OPC_FilterValue, 2, 58, 0, 0, // Skip to: 8471 |
4014 | /* 8413 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4015 | /* 8416 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8431 |
4016 | /* 8421 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8461 |
4017 | /* 8426 */ MCD::OPC_Decode, 148, 20, 239, 1, // Opcode: VFEEFS |
4018 | /* 8431 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8446 |
4019 | /* 8436 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8461 |
4020 | /* 8441 */ MCD::OPC_Decode, 153, 20, 239, 1, // Opcode: VFEEZF |
4021 | /* 8446 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8461 |
4022 | /* 8451 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8461 |
4023 | /* 8456 */ MCD::OPC_Decode, 154, 20, 239, 1, // Opcode: VFEEZFS |
4024 | /* 8461 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8471 |
4025 | /* 8466 */ MCD::OPC_Decode, 147, 20, 235, 1, // Opcode: VFEEF |
4026 | /* 8471 */ MCD::OPC_CheckPredicate, 35, 205, 57, 0, // Skip to: 23273 |
4027 | /* 8476 */ MCD::OPC_Decode, 144, 20, 236, 1, // Opcode: VFEE |
4028 | /* 8481 */ MCD::OPC_FilterValue, 129, 1, 226, 0, 0, // Skip to: 8713 |
4029 | /* 8487 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4030 | /* 8490 */ MCD::OPC_FilterValue, 0, 186, 57, 0, // Skip to: 23273 |
4031 | /* 8495 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4032 | /* 8498 */ MCD::OPC_FilterValue, 0, 178, 57, 0, // Skip to: 23273 |
4033 | /* 8503 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4034 | /* 8506 */ MCD::OPC_FilterValue, 0, 170, 57, 0, // Skip to: 23273 |
4035 | /* 8511 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4036 | /* 8514 */ MCD::OPC_FilterValue, 0, 58, 0, 0, // Skip to: 8577 |
4037 | /* 8519 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4038 | /* 8522 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8537 |
4039 | /* 8527 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8567 |
4040 | /* 8532 */ MCD::OPC_Decode, 159, 20, 239, 1, // Opcode: VFENEBS |
4041 | /* 8537 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8552 |
4042 | /* 8542 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8567 |
4043 | /* 8547 */ MCD::OPC_Decode, 164, 20, 239, 1, // Opcode: VFENEZB |
4044 | /* 8552 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8567 |
4045 | /* 8557 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8567 |
4046 | /* 8562 */ MCD::OPC_Decode, 165, 20, 239, 1, // Opcode: VFENEZBS |
4047 | /* 8567 */ MCD::OPC_CheckPredicate, 35, 131, 0, 0, // Skip to: 8703 |
4048 | /* 8572 */ MCD::OPC_Decode, 158, 20, 235, 1, // Opcode: VFENEB |
4049 | /* 8577 */ MCD::OPC_FilterValue, 1, 58, 0, 0, // Skip to: 8640 |
4050 | /* 8582 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4051 | /* 8585 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8600 |
4052 | /* 8590 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8630 |
4053 | /* 8595 */ MCD::OPC_Decode, 163, 20, 239, 1, // Opcode: VFENEHS |
4054 | /* 8600 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8615 |
4055 | /* 8605 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8630 |
4056 | /* 8610 */ MCD::OPC_Decode, 168, 20, 239, 1, // Opcode: VFENEZH |
4057 | /* 8615 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8630 |
4058 | /* 8620 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8630 |
4059 | /* 8625 */ MCD::OPC_Decode, 169, 20, 239, 1, // Opcode: VFENEZHS |
4060 | /* 8630 */ MCD::OPC_CheckPredicate, 35, 68, 0, 0, // Skip to: 8703 |
4061 | /* 8635 */ MCD::OPC_Decode, 162, 20, 235, 1, // Opcode: VFENEH |
4062 | /* 8640 */ MCD::OPC_FilterValue, 2, 58, 0, 0, // Skip to: 8703 |
4063 | /* 8645 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4064 | /* 8648 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8663 |
4065 | /* 8653 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 8693 |
4066 | /* 8658 */ MCD::OPC_Decode, 161, 20, 239, 1, // Opcode: VFENEFS |
4067 | /* 8663 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8678 |
4068 | /* 8668 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 8693 |
4069 | /* 8673 */ MCD::OPC_Decode, 166, 20, 239, 1, // Opcode: VFENEZF |
4070 | /* 8678 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8693 |
4071 | /* 8683 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8693 |
4072 | /* 8688 */ MCD::OPC_Decode, 167, 20, 239, 1, // Opcode: VFENEZFS |
4073 | /* 8693 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8703 |
4074 | /* 8698 */ MCD::OPC_Decode, 160, 20, 235, 1, // Opcode: VFENEF |
4075 | /* 8703 */ MCD::OPC_CheckPredicate, 35, 229, 56, 0, // Skip to: 23273 |
4076 | /* 8708 */ MCD::OPC_Decode, 157, 20, 236, 1, // Opcode: VFENE |
4077 | /* 8713 */ MCD::OPC_FilterValue, 130, 1, 235, 0, 0, // Skip to: 8954 |
4078 | /* 8719 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4079 | /* 8722 */ MCD::OPC_FilterValue, 0, 210, 56, 0, // Skip to: 23273 |
4080 | /* 8727 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4081 | /* 8730 */ MCD::OPC_FilterValue, 0, 202, 56, 0, // Skip to: 23273 |
4082 | /* 8735 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4083 | /* 8738 */ MCD::OPC_FilterValue, 0, 194, 56, 0, // Skip to: 23273 |
4084 | /* 8743 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4085 | /* 8746 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 8812 |
4086 | /* 8751 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8768 |
4087 | /* 8756 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 8768 |
4088 | /* 8763 */ MCD::OPC_Decode, 248, 19, 152, 2, // Opcode: VFAEZBS |
4089 | /* 8768 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8785 |
4090 | /* 8773 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 8785 |
4091 | /* 8780 */ MCD::OPC_Decode, 242, 19, 153, 2, // Opcode: VFAEBS |
4092 | /* 8785 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8802 |
4093 | /* 8790 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 8802 |
4094 | /* 8797 */ MCD::OPC_Decode, 247, 19, 154, 2, // Opcode: VFAEZB |
4095 | /* 8802 */ MCD::OPC_CheckPredicate, 35, 137, 0, 0, // Skip to: 8944 |
4096 | /* 8807 */ MCD::OPC_Decode, 241, 19, 235, 1, // Opcode: VFAEB |
4097 | /* 8812 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 8878 |
4098 | /* 8817 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8834 |
4099 | /* 8822 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 8834 |
4100 | /* 8829 */ MCD::OPC_Decode, 252, 19, 152, 2, // Opcode: VFAEZHS |
4101 | /* 8834 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8851 |
4102 | /* 8839 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 8851 |
4103 | /* 8846 */ MCD::OPC_Decode, 246, 19, 153, 2, // Opcode: VFAEHS |
4104 | /* 8851 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8868 |
4105 | /* 8856 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 8868 |
4106 | /* 8863 */ MCD::OPC_Decode, 251, 19, 154, 2, // Opcode: VFAEZH |
4107 | /* 8868 */ MCD::OPC_CheckPredicate, 35, 71, 0, 0, // Skip to: 8944 |
4108 | /* 8873 */ MCD::OPC_Decode, 245, 19, 235, 1, // Opcode: VFAEH |
4109 | /* 8878 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 8944 |
4110 | /* 8883 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8900 |
4111 | /* 8888 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 8900 |
4112 | /* 8895 */ MCD::OPC_Decode, 250, 19, 152, 2, // Opcode: VFAEZFS |
4113 | /* 8900 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8917 |
4114 | /* 8905 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 8917 |
4115 | /* 8912 */ MCD::OPC_Decode, 244, 19, 153, 2, // Opcode: VFAEFS |
4116 | /* 8917 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 8934 |
4117 | /* 8922 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 8934 |
4118 | /* 8929 */ MCD::OPC_Decode, 249, 19, 154, 2, // Opcode: VFAEZF |
4119 | /* 8934 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 8944 |
4120 | /* 8939 */ MCD::OPC_Decode, 243, 19, 235, 1, // Opcode: VFAEF |
4121 | /* 8944 */ MCD::OPC_CheckPredicate, 35, 244, 55, 0, // Skip to: 23273 |
4122 | /* 8949 */ MCD::OPC_Decode, 240, 19, 236, 1, // Opcode: VFAE |
4123 | /* 8954 */ MCD::OPC_FilterValue, 132, 1, 24, 0, 0, // Skip to: 8984 |
4124 | /* 8960 */ MCD::OPC_CheckPredicate, 35, 228, 55, 0, // Skip to: 23273 |
4125 | /* 8965 */ MCD::OPC_CheckField, 16, 12, 0, 221, 55, 0, // Skip to: 23273 |
4126 | /* 8972 */ MCD::OPC_CheckField, 8, 1, 0, 214, 55, 0, // Skip to: 23273 |
4127 | /* 8979 */ MCD::OPC_Decode, 170, 22, 147, 2, // Opcode: VPDI |
4128 | /* 8984 */ MCD::OPC_FilterValue, 133, 1, 24, 0, 0, // Skip to: 9014 |
4129 | /* 8990 */ MCD::OPC_CheckPredicate, 36, 198, 55, 0, // Skip to: 23273 |
4130 | /* 8995 */ MCD::OPC_CheckField, 12, 16, 0, 191, 55, 0, // Skip to: 23273 |
4131 | /* 9002 */ MCD::OPC_CheckField, 8, 1, 0, 184, 55, 0, // Skip to: 23273 |
4132 | /* 9009 */ MCD::OPC_Decode, 241, 18, 239, 1, // Opcode: VBPERM |
4133 | /* 9014 */ MCD::OPC_FilterValue, 134, 1, 31, 0, 0, // Skip to: 9051 |
4134 | /* 9020 */ MCD::OPC_CheckPredicate, 30, 168, 55, 0, // Skip to: 23273 |
4135 | /* 9025 */ MCD::OPC_CheckField, 24, 4, 0, 161, 55, 0, // Skip to: 23273 |
4136 | /* 9032 */ MCD::OPC_CheckField, 12, 4, 0, 154, 55, 0, // Skip to: 23273 |
4137 | /* 9039 */ MCD::OPC_CheckField, 8, 1, 0, 147, 55, 0, // Skip to: 23273 |
4138 | /* 9046 */ MCD::OPC_Decode, 239, 22, 151, 2, // Opcode: VSLD |
4139 | /* 9051 */ MCD::OPC_FilterValue, 135, 1, 31, 0, 0, // Skip to: 9088 |
4140 | /* 9057 */ MCD::OPC_CheckPredicate, 30, 131, 55, 0, // Skip to: 23273 |
4141 | /* 9062 */ MCD::OPC_CheckField, 24, 4, 0, 124, 55, 0, // Skip to: 23273 |
4142 | /* 9069 */ MCD::OPC_CheckField, 12, 4, 0, 117, 55, 0, // Skip to: 23273 |
4143 | /* 9076 */ MCD::OPC_CheckField, 8, 1, 0, 110, 55, 0, // Skip to: 23273 |
4144 | /* 9083 */ MCD::OPC_Decode, 245, 22, 151, 2, // Opcode: VSRD |
4145 | /* 9088 */ MCD::OPC_FilterValue, 138, 1, 219, 0, 0, // Skip to: 9313 |
4146 | /* 9094 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4147 | /* 9097 */ MCD::OPC_FilterValue, 0, 91, 55, 0, // Skip to: 23273 |
4148 | /* 9102 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4149 | /* 9105 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 9171 |
4150 | /* 9110 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9127 |
4151 | /* 9115 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 9127 |
4152 | /* 9122 */ MCD::OPC_Decode, 151, 23, 155, 2, // Opcode: VSTRCZBS |
4153 | /* 9127 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9144 |
4154 | /* 9132 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 9144 |
4155 | /* 9139 */ MCD::OPC_Decode, 145, 23, 156, 2, // Opcode: VSTRCBS |
4156 | /* 9144 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9161 |
4157 | /* 9149 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 9161 |
4158 | /* 9156 */ MCD::OPC_Decode, 150, 23, 157, 2, // Opcode: VSTRCZB |
4159 | /* 9161 */ MCD::OPC_CheckPredicate, 35, 137, 0, 0, // Skip to: 9303 |
4160 | /* 9166 */ MCD::OPC_Decode, 144, 23, 158, 2, // Opcode: VSTRCB |
4161 | /* 9171 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 9237 |
4162 | /* 9176 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9193 |
4163 | /* 9181 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 9193 |
4164 | /* 9188 */ MCD::OPC_Decode, 155, 23, 155, 2, // Opcode: VSTRCZHS |
4165 | /* 9193 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9210 |
4166 | /* 9198 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 9210 |
4167 | /* 9205 */ MCD::OPC_Decode, 149, 23, 156, 2, // Opcode: VSTRCHS |
4168 | /* 9210 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9227 |
4169 | /* 9215 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 9227 |
4170 | /* 9222 */ MCD::OPC_Decode, 154, 23, 157, 2, // Opcode: VSTRCZH |
4171 | /* 9227 */ MCD::OPC_CheckPredicate, 35, 71, 0, 0, // Skip to: 9303 |
4172 | /* 9232 */ MCD::OPC_Decode, 148, 23, 158, 2, // Opcode: VSTRCH |
4173 | /* 9237 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 9303 |
4174 | /* 9242 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9259 |
4175 | /* 9247 */ MCD::OPC_CheckField, 20, 2, 3, 5, 0, 0, // Skip to: 9259 |
4176 | /* 9254 */ MCD::OPC_Decode, 153, 23, 155, 2, // Opcode: VSTRCZFS |
4177 | /* 9259 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9276 |
4178 | /* 9264 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 9276 |
4179 | /* 9271 */ MCD::OPC_Decode, 147, 23, 156, 2, // Opcode: VSTRCFS |
4180 | /* 9276 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 9293 |
4181 | /* 9281 */ MCD::OPC_CheckField, 21, 1, 1, 5, 0, 0, // Skip to: 9293 |
4182 | /* 9288 */ MCD::OPC_Decode, 152, 23, 157, 2, // Opcode: VSTRCZF |
4183 | /* 9293 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 9303 |
4184 | /* 9298 */ MCD::OPC_Decode, 146, 23, 158, 2, // Opcode: VSTRCF |
4185 | /* 9303 */ MCD::OPC_CheckPredicate, 35, 141, 54, 0, // Skip to: 23273 |
4186 | /* 9308 */ MCD::OPC_Decode, 143, 23, 159, 2, // Opcode: VSTRC |
4187 | /* 9313 */ MCD::OPC_FilterValue, 139, 1, 114, 0, 0, // Skip to: 9433 |
4188 | /* 9319 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4189 | /* 9322 */ MCD::OPC_FilterValue, 0, 122, 54, 0, // Skip to: 23273 |
4190 | /* 9327 */ MCD::OPC_ExtractField, 20, 8, // Inst{27-20} ... |
4191 | /* 9330 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9345 |
4192 | /* 9335 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 9375 |
4193 | /* 9340 */ MCD::OPC_Decode, 162, 23, 160, 2, // Opcode: VSTRSZB |
4194 | /* 9345 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9360 |
4195 | /* 9350 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 9375 |
4196 | /* 9355 */ MCD::OPC_Decode, 164, 23, 160, 2, // Opcode: VSTRSZH |
4197 | /* 9360 */ MCD::OPC_FilterValue, 34, 10, 0, 0, // Skip to: 9375 |
4198 | /* 9365 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 9375 |
4199 | /* 9370 */ MCD::OPC_Decode, 163, 23, 160, 2, // Opcode: VSTRSZF |
4200 | /* 9375 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4201 | /* 9378 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9393 |
4202 | /* 9383 */ MCD::OPC_CheckPredicate, 30, 35, 0, 0, // Skip to: 9423 |
4203 | /* 9388 */ MCD::OPC_Decode, 159, 23, 158, 2, // Opcode: VSTRSB |
4204 | /* 9393 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9408 |
4205 | /* 9398 */ MCD::OPC_CheckPredicate, 30, 20, 0, 0, // Skip to: 9423 |
4206 | /* 9403 */ MCD::OPC_Decode, 161, 23, 158, 2, // Opcode: VSTRSH |
4207 | /* 9408 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9423 |
4208 | /* 9413 */ MCD::OPC_CheckPredicate, 30, 5, 0, 0, // Skip to: 9423 |
4209 | /* 9418 */ MCD::OPC_Decode, 160, 23, 158, 2, // Opcode: VSTRSF |
4210 | /* 9423 */ MCD::OPC_CheckPredicate, 30, 21, 54, 0, // Skip to: 23273 |
4211 | /* 9428 */ MCD::OPC_Decode, 158, 23, 159, 2, // Opcode: VSTRS |
4212 | /* 9433 */ MCD::OPC_FilterValue, 140, 1, 17, 0, 0, // Skip to: 9456 |
4213 | /* 9439 */ MCD::OPC_CheckPredicate, 35, 5, 54, 0, // Skip to: 23273 |
4214 | /* 9444 */ MCD::OPC_CheckField, 16, 12, 0, 254, 53, 0, // Skip to: 23273 |
4215 | /* 9451 */ MCD::OPC_Decode, 171, 22, 160, 2, // Opcode: VPERM |
4216 | /* 9456 */ MCD::OPC_FilterValue, 141, 1, 17, 0, 0, // Skip to: 9479 |
4217 | /* 9462 */ MCD::OPC_CheckPredicate, 35, 238, 53, 0, // Skip to: 23273 |
4218 | /* 9467 */ MCD::OPC_CheckField, 16, 12, 0, 231, 53, 0, // Skip to: 23273 |
4219 | /* 9474 */ MCD::OPC_Decode, 233, 22, 160, 2, // Opcode: VSEL |
4220 | /* 9479 */ MCD::OPC_FilterValue, 142, 1, 119, 0, 0, // Skip to: 9604 |
4221 | /* 9485 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4222 | /* 9488 */ MCD::OPC_FilterValue, 0, 212, 53, 0, // Skip to: 23273 |
4223 | /* 9493 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4224 | /* 9496 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 9534 |
4225 | /* 9501 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4226 | /* 9504 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9519 |
4227 | /* 9509 */ MCD::OPC_CheckPredicate, 36, 80, 0, 0, // Skip to: 9594 |
4228 | /* 9514 */ MCD::OPC_Decode, 209, 20, 160, 2, // Opcode: VFMSSB |
4229 | /* 9519 */ MCD::OPC_FilterValue, 8, 70, 0, 0, // Skip to: 9594 |
4230 | /* 9524 */ MCD::OPC_CheckPredicate, 36, 65, 0, 0, // Skip to: 9594 |
4231 | /* 9529 */ MCD::OPC_Decode, 155, 24, 161, 2, // Opcode: WFMSSB |
4232 | /* 9534 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 9572 |
4233 | /* 9539 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4234 | /* 9542 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9557 |
4235 | /* 9547 */ MCD::OPC_CheckPredicate, 35, 42, 0, 0, // Skip to: 9594 |
4236 | /* 9552 */ MCD::OPC_Decode, 208, 20, 160, 2, // Opcode: VFMSDB |
4237 | /* 9557 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 9594 |
4238 | /* 9562 */ MCD::OPC_CheckPredicate, 35, 27, 0, 0, // Skip to: 9594 |
4239 | /* 9567 */ MCD::OPC_Decode, 154, 24, 162, 2, // Opcode: WFMSDB |
4240 | /* 9572 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 9594 |
4241 | /* 9577 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 9594 |
4242 | /* 9582 */ MCD::OPC_CheckField, 16, 4, 8, 5, 0, 0, // Skip to: 9594 |
4243 | /* 9589 */ MCD::OPC_Decode, 156, 24, 160, 2, // Opcode: WFMSXB |
4244 | /* 9594 */ MCD::OPC_CheckPredicate, 35, 106, 53, 0, // Skip to: 23273 |
4245 | /* 9599 */ MCD::OPC_Decode, 206, 20, 163, 2, // Opcode: VFMS |
4246 | /* 9604 */ MCD::OPC_FilterValue, 143, 1, 119, 0, 0, // Skip to: 9729 |
4247 | /* 9610 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4248 | /* 9613 */ MCD::OPC_FilterValue, 0, 87, 53, 0, // Skip to: 23273 |
4249 | /* 9618 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4250 | /* 9621 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 9659 |
4251 | /* 9626 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4252 | /* 9629 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9644 |
4253 | /* 9634 */ MCD::OPC_CheckPredicate, 36, 80, 0, 0, // Skip to: 9719 |
4254 | /* 9639 */ MCD::OPC_Decode, 198, 20, 160, 2, // Opcode: VFMASB |
4255 | /* 9644 */ MCD::OPC_FilterValue, 8, 70, 0, 0, // Skip to: 9719 |
4256 | /* 9649 */ MCD::OPC_CheckPredicate, 36, 65, 0, 0, // Skip to: 9719 |
4257 | /* 9654 */ MCD::OPC_Decode, 144, 24, 161, 2, // Opcode: WFMASB |
4258 | /* 9659 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 9697 |
4259 | /* 9664 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4260 | /* 9667 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9682 |
4261 | /* 9672 */ MCD::OPC_CheckPredicate, 35, 42, 0, 0, // Skip to: 9719 |
4262 | /* 9677 */ MCD::OPC_Decode, 197, 20, 160, 2, // Opcode: VFMADB |
4263 | /* 9682 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 9719 |
4264 | /* 9687 */ MCD::OPC_CheckPredicate, 35, 27, 0, 0, // Skip to: 9719 |
4265 | /* 9692 */ MCD::OPC_Decode, 143, 24, 162, 2, // Opcode: WFMADB |
4266 | /* 9697 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 9719 |
4267 | /* 9702 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 9719 |
4268 | /* 9707 */ MCD::OPC_CheckField, 16, 4, 8, 5, 0, 0, // Skip to: 9719 |
4269 | /* 9714 */ MCD::OPC_Decode, 145, 24, 160, 2, // Opcode: WFMAXB |
4270 | /* 9719 */ MCD::OPC_CheckPredicate, 35, 237, 52, 0, // Skip to: 23273 |
4271 | /* 9724 */ MCD::OPC_Decode, 196, 20, 163, 2, // Opcode: VFMA |
4272 | /* 9729 */ MCD::OPC_FilterValue, 148, 1, 74, 0, 0, // Skip to: 9809 |
4273 | /* 9735 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4274 | /* 9738 */ MCD::OPC_FilterValue, 0, 218, 52, 0, // Skip to: 23273 |
4275 | /* 9743 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4276 | /* 9746 */ MCD::OPC_FilterValue, 0, 210, 52, 0, // Skip to: 23273 |
4277 | /* 9751 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4278 | /* 9754 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9769 |
4279 | /* 9759 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 9799 |
4280 | /* 9764 */ MCD::OPC_Decode, 175, 22, 239, 1, // Opcode: VPKH |
4281 | /* 9769 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9784 |
4282 | /* 9774 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 9799 |
4283 | /* 9779 */ MCD::OPC_Decode, 173, 22, 239, 1, // Opcode: VPKF |
4284 | /* 9784 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9799 |
4285 | /* 9789 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 9799 |
4286 | /* 9794 */ MCD::OPC_Decode, 174, 22, 239, 1, // Opcode: VPKG |
4287 | /* 9799 */ MCD::OPC_CheckPredicate, 35, 157, 52, 0, // Skip to: 23273 |
4288 | /* 9804 */ MCD::OPC_Decode, 172, 22, 147, 2, // Opcode: VPK |
4289 | /* 9809 */ MCD::OPC_FilterValue, 149, 1, 151, 0, 0, // Skip to: 9966 |
4290 | /* 9815 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4291 | /* 9818 */ MCD::OPC_FilterValue, 0, 138, 52, 0, // Skip to: 23273 |
4292 | /* 9823 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4293 | /* 9826 */ MCD::OPC_FilterValue, 0, 130, 52, 0, // Skip to: 23273 |
4294 | /* 9831 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4295 | /* 9834 */ MCD::OPC_FilterValue, 0, 122, 52, 0, // Skip to: 23273 |
4296 | /* 9839 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4297 | /* 9842 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 9880 |
4298 | /* 9847 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4299 | /* 9850 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9865 |
4300 | /* 9855 */ MCD::OPC_CheckPredicate, 35, 96, 0, 0, // Skip to: 9956 |
4301 | /* 9860 */ MCD::OPC_Decode, 181, 22, 239, 1, // Opcode: VPKLSH |
4302 | /* 9865 */ MCD::OPC_FilterValue, 1, 86, 0, 0, // Skip to: 9956 |
4303 | /* 9870 */ MCD::OPC_CheckPredicate, 35, 81, 0, 0, // Skip to: 9956 |
4304 | /* 9875 */ MCD::OPC_Decode, 182, 22, 239, 1, // Opcode: VPKLSHS |
4305 | /* 9880 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 9918 |
4306 | /* 9885 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4307 | /* 9888 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9903 |
4308 | /* 9893 */ MCD::OPC_CheckPredicate, 35, 58, 0, 0, // Skip to: 9956 |
4309 | /* 9898 */ MCD::OPC_Decode, 177, 22, 239, 1, // Opcode: VPKLSF |
4310 | /* 9903 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 9956 |
4311 | /* 9908 */ MCD::OPC_CheckPredicate, 35, 43, 0, 0, // Skip to: 9956 |
4312 | /* 9913 */ MCD::OPC_Decode, 178, 22, 239, 1, // Opcode: VPKLSFS |
4313 | /* 9918 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 9956 |
4314 | /* 9923 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4315 | /* 9926 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9941 |
4316 | /* 9931 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 9956 |
4317 | /* 9936 */ MCD::OPC_Decode, 179, 22, 239, 1, // Opcode: VPKLSG |
4318 | /* 9941 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9956 |
4319 | /* 9946 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 9956 |
4320 | /* 9951 */ MCD::OPC_Decode, 180, 22, 239, 1, // Opcode: VPKLSGS |
4321 | /* 9956 */ MCD::OPC_CheckPredicate, 35, 0, 52, 0, // Skip to: 23273 |
4322 | /* 9961 */ MCD::OPC_Decode, 176, 22, 236, 1, // Opcode: VPKLS |
4323 | /* 9966 */ MCD::OPC_FilterValue, 151, 1, 151, 0, 0, // Skip to: 10123 |
4324 | /* 9972 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4325 | /* 9975 */ MCD::OPC_FilterValue, 0, 237, 51, 0, // Skip to: 23273 |
4326 | /* 9980 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4327 | /* 9983 */ MCD::OPC_FilterValue, 0, 229, 51, 0, // Skip to: 23273 |
4328 | /* 9988 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4329 | /* 9991 */ MCD::OPC_FilterValue, 0, 221, 51, 0, // Skip to: 23273 |
4330 | /* 9996 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4331 | /* 9999 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 10037 |
4332 | /* 10004 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4333 | /* 10007 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10022 |
4334 | /* 10012 */ MCD::OPC_CheckPredicate, 35, 96, 0, 0, // Skip to: 10113 |
4335 | /* 10017 */ MCD::OPC_Decode, 188, 22, 239, 1, // Opcode: VPKSH |
4336 | /* 10022 */ MCD::OPC_FilterValue, 1, 86, 0, 0, // Skip to: 10113 |
4337 | /* 10027 */ MCD::OPC_CheckPredicate, 35, 81, 0, 0, // Skip to: 10113 |
4338 | /* 10032 */ MCD::OPC_Decode, 189, 22, 239, 1, // Opcode: VPKSHS |
4339 | /* 10037 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 10075 |
4340 | /* 10042 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4341 | /* 10045 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10060 |
4342 | /* 10050 */ MCD::OPC_CheckPredicate, 35, 58, 0, 0, // Skip to: 10113 |
4343 | /* 10055 */ MCD::OPC_Decode, 184, 22, 239, 1, // Opcode: VPKSF |
4344 | /* 10060 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 10113 |
4345 | /* 10065 */ MCD::OPC_CheckPredicate, 35, 43, 0, 0, // Skip to: 10113 |
4346 | /* 10070 */ MCD::OPC_Decode, 185, 22, 239, 1, // Opcode: VPKSFS |
4347 | /* 10075 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 10113 |
4348 | /* 10080 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4349 | /* 10083 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10098 |
4350 | /* 10088 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10113 |
4351 | /* 10093 */ MCD::OPC_Decode, 186, 22, 239, 1, // Opcode: VPKSG |
4352 | /* 10098 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10113 |
4353 | /* 10103 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10113 |
4354 | /* 10108 */ MCD::OPC_Decode, 187, 22, 239, 1, // Opcode: VPKSGS |
4355 | /* 10113 */ MCD::OPC_CheckPredicate, 35, 99, 51, 0, // Skip to: 23273 |
4356 | /* 10118 */ MCD::OPC_Decode, 183, 22, 236, 1, // Opcode: VPKS |
4357 | /* 10123 */ MCD::OPC_FilterValue, 158, 1, 119, 0, 0, // Skip to: 10248 |
4358 | /* 10129 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4359 | /* 10132 */ MCD::OPC_FilterValue, 0, 80, 51, 0, // Skip to: 23273 |
4360 | /* 10137 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4361 | /* 10140 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 10178 |
4362 | /* 10145 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4363 | /* 10148 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10163 |
4364 | /* 10153 */ MCD::OPC_CheckPredicate, 36, 80, 0, 0, // Skip to: 10238 |
4365 | /* 10158 */ MCD::OPC_Decode, 215, 20, 160, 2, // Opcode: VFNMSSB |
4366 | /* 10163 */ MCD::OPC_FilterValue, 8, 70, 0, 0, // Skip to: 10238 |
4367 | /* 10168 */ MCD::OPC_CheckPredicate, 36, 65, 0, 0, // Skip to: 10238 |
4368 | /* 10173 */ MCD::OPC_Decode, 162, 24, 161, 2, // Opcode: WFNMSSB |
4369 | /* 10178 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 10216 |
4370 | /* 10183 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4371 | /* 10186 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10201 |
4372 | /* 10191 */ MCD::OPC_CheckPredicate, 36, 42, 0, 0, // Skip to: 10238 |
4373 | /* 10196 */ MCD::OPC_Decode, 214, 20, 160, 2, // Opcode: VFNMSDB |
4374 | /* 10201 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 10238 |
4375 | /* 10206 */ MCD::OPC_CheckPredicate, 36, 27, 0, 0, // Skip to: 10238 |
4376 | /* 10211 */ MCD::OPC_Decode, 161, 24, 162, 2, // Opcode: WFNMSDB |
4377 | /* 10216 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 10238 |
4378 | /* 10221 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 10238 |
4379 | /* 10226 */ MCD::OPC_CheckField, 16, 4, 8, 5, 0, 0, // Skip to: 10238 |
4380 | /* 10233 */ MCD::OPC_Decode, 163, 24, 160, 2, // Opcode: WFNMSXB |
4381 | /* 10238 */ MCD::OPC_CheckPredicate, 36, 230, 50, 0, // Skip to: 23273 |
4382 | /* 10243 */ MCD::OPC_Decode, 213, 20, 163, 2, // Opcode: VFNMS |
4383 | /* 10248 */ MCD::OPC_FilterValue, 159, 1, 119, 0, 0, // Skip to: 10373 |
4384 | /* 10254 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
4385 | /* 10257 */ MCD::OPC_FilterValue, 0, 211, 50, 0, // Skip to: 23273 |
4386 | /* 10262 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4387 | /* 10265 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 10303 |
4388 | /* 10270 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4389 | /* 10273 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10288 |
4390 | /* 10278 */ MCD::OPC_CheckPredicate, 36, 80, 0, 0, // Skip to: 10363 |
4391 | /* 10283 */ MCD::OPC_Decode, 212, 20, 160, 2, // Opcode: VFNMASB |
4392 | /* 10288 */ MCD::OPC_FilterValue, 8, 70, 0, 0, // Skip to: 10363 |
4393 | /* 10293 */ MCD::OPC_CheckPredicate, 36, 65, 0, 0, // Skip to: 10363 |
4394 | /* 10298 */ MCD::OPC_Decode, 159, 24, 161, 2, // Opcode: WFNMASB |
4395 | /* 10303 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 10341 |
4396 | /* 10308 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4397 | /* 10311 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10326 |
4398 | /* 10316 */ MCD::OPC_CheckPredicate, 36, 42, 0, 0, // Skip to: 10363 |
4399 | /* 10321 */ MCD::OPC_Decode, 211, 20, 160, 2, // Opcode: VFNMADB |
4400 | /* 10326 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 10363 |
4401 | /* 10331 */ MCD::OPC_CheckPredicate, 36, 27, 0, 0, // Skip to: 10363 |
4402 | /* 10336 */ MCD::OPC_Decode, 158, 24, 162, 2, // Opcode: WFNMADB |
4403 | /* 10341 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 10363 |
4404 | /* 10346 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 10363 |
4405 | /* 10351 */ MCD::OPC_CheckField, 16, 4, 8, 5, 0, 0, // Skip to: 10363 |
4406 | /* 10358 */ MCD::OPC_Decode, 160, 24, 160, 2, // Opcode: WFNMAXB |
4407 | /* 10363 */ MCD::OPC_CheckPredicate, 36, 105, 50, 0, // Skip to: 23273 |
4408 | /* 10368 */ MCD::OPC_Decode, 210, 20, 163, 2, // Opcode: VFNMA |
4409 | /* 10373 */ MCD::OPC_FilterValue, 161, 1, 74, 0, 0, // Skip to: 10453 |
4410 | /* 10379 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4411 | /* 10382 */ MCD::OPC_FilterValue, 0, 86, 50, 0, // Skip to: 23273 |
4412 | /* 10387 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4413 | /* 10390 */ MCD::OPC_FilterValue, 0, 78, 50, 0, // Skip to: 23273 |
4414 | /* 10395 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4415 | /* 10398 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10413 |
4416 | /* 10403 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10443 |
4417 | /* 10408 */ MCD::OPC_Decode, 244, 21, 239, 1, // Opcode: VMLHB |
4418 | /* 10413 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10428 |
4419 | /* 10418 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10443 |
4420 | /* 10423 */ MCD::OPC_Decode, 246, 21, 239, 1, // Opcode: VMLHH |
4421 | /* 10428 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10443 |
4422 | /* 10433 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10443 |
4423 | /* 10438 */ MCD::OPC_Decode, 245, 21, 239, 1, // Opcode: VMLHF |
4424 | /* 10443 */ MCD::OPC_CheckPredicate, 35, 25, 50, 0, // Skip to: 23273 |
4425 | /* 10448 */ MCD::OPC_Decode, 243, 21, 147, 2, // Opcode: VMLH |
4426 | /* 10453 */ MCD::OPC_FilterValue, 162, 1, 74, 0, 0, // Skip to: 10533 |
4427 | /* 10459 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4428 | /* 10462 */ MCD::OPC_FilterValue, 0, 6, 50, 0, // Skip to: 23273 |
4429 | /* 10467 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4430 | /* 10470 */ MCD::OPC_FilterValue, 0, 254, 49, 0, // Skip to: 23273 |
4431 | /* 10475 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4432 | /* 10478 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10493 |
4433 | /* 10483 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10523 |
4434 | /* 10488 */ MCD::OPC_Decode, 237, 21, 239, 1, // Opcode: VMLB |
4435 | /* 10493 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10508 |
4436 | /* 10498 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10523 |
4437 | /* 10503 */ MCD::OPC_Decode, 247, 21, 239, 1, // Opcode: VMLHW |
4438 | /* 10508 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10523 |
4439 | /* 10513 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10523 |
4440 | /* 10518 */ MCD::OPC_Decode, 242, 21, 239, 1, // Opcode: VMLF |
4441 | /* 10523 */ MCD::OPC_CheckPredicate, 35, 201, 49, 0, // Skip to: 23273 |
4442 | /* 10528 */ MCD::OPC_Decode, 236, 21, 147, 2, // Opcode: VML |
4443 | /* 10533 */ MCD::OPC_FilterValue, 163, 1, 74, 0, 0, // Skip to: 10613 |
4444 | /* 10539 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4445 | /* 10542 */ MCD::OPC_FilterValue, 0, 182, 49, 0, // Skip to: 23273 |
4446 | /* 10547 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4447 | /* 10550 */ MCD::OPC_FilterValue, 0, 174, 49, 0, // Skip to: 23273 |
4448 | /* 10555 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4449 | /* 10558 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10573 |
4450 | /* 10563 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10603 |
4451 | /* 10568 */ MCD::OPC_Decode, 233, 21, 239, 1, // Opcode: VMHB |
4452 | /* 10573 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10588 |
4453 | /* 10578 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10603 |
4454 | /* 10583 */ MCD::OPC_Decode, 235, 21, 239, 1, // Opcode: VMHH |
4455 | /* 10588 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10603 |
4456 | /* 10593 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10603 |
4457 | /* 10598 */ MCD::OPC_Decode, 234, 21, 239, 1, // Opcode: VMHF |
4458 | /* 10603 */ MCD::OPC_CheckPredicate, 35, 121, 49, 0, // Skip to: 23273 |
4459 | /* 10608 */ MCD::OPC_Decode, 232, 21, 147, 2, // Opcode: VMH |
4460 | /* 10613 */ MCD::OPC_FilterValue, 164, 1, 74, 0, 0, // Skip to: 10693 |
4461 | /* 10619 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4462 | /* 10622 */ MCD::OPC_FilterValue, 0, 102, 49, 0, // Skip to: 23273 |
4463 | /* 10627 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4464 | /* 10630 */ MCD::OPC_FilterValue, 0, 94, 49, 0, // Skip to: 23273 |
4465 | /* 10635 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4466 | /* 10638 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10653 |
4467 | /* 10643 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10683 |
4468 | /* 10648 */ MCD::OPC_Decode, 239, 21, 239, 1, // Opcode: VMLEB |
4469 | /* 10653 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10668 |
4470 | /* 10658 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10683 |
4471 | /* 10663 */ MCD::OPC_Decode, 241, 21, 239, 1, // Opcode: VMLEH |
4472 | /* 10668 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10683 |
4473 | /* 10673 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10683 |
4474 | /* 10678 */ MCD::OPC_Decode, 240, 21, 239, 1, // Opcode: VMLEF |
4475 | /* 10683 */ MCD::OPC_CheckPredicate, 35, 41, 49, 0, // Skip to: 23273 |
4476 | /* 10688 */ MCD::OPC_Decode, 238, 21, 147, 2, // Opcode: VMLE |
4477 | /* 10693 */ MCD::OPC_FilterValue, 165, 1, 74, 0, 0, // Skip to: 10773 |
4478 | /* 10699 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4479 | /* 10702 */ MCD::OPC_FilterValue, 0, 22, 49, 0, // Skip to: 23273 |
4480 | /* 10707 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4481 | /* 10710 */ MCD::OPC_FilterValue, 0, 14, 49, 0, // Skip to: 23273 |
4482 | /* 10715 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4483 | /* 10718 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10733 |
4484 | /* 10723 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10763 |
4485 | /* 10728 */ MCD::OPC_Decode, 249, 21, 239, 1, // Opcode: VMLOB |
4486 | /* 10733 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10748 |
4487 | /* 10738 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10763 |
4488 | /* 10743 */ MCD::OPC_Decode, 251, 21, 239, 1, // Opcode: VMLOH |
4489 | /* 10748 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10763 |
4490 | /* 10753 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10763 |
4491 | /* 10758 */ MCD::OPC_Decode, 250, 21, 239, 1, // Opcode: VMLOF |
4492 | /* 10763 */ MCD::OPC_CheckPredicate, 35, 217, 48, 0, // Skip to: 23273 |
4493 | /* 10768 */ MCD::OPC_Decode, 248, 21, 147, 2, // Opcode: VMLO |
4494 | /* 10773 */ MCD::OPC_FilterValue, 166, 1, 74, 0, 0, // Skip to: 10853 |
4495 | /* 10779 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4496 | /* 10782 */ MCD::OPC_FilterValue, 0, 198, 48, 0, // Skip to: 23273 |
4497 | /* 10787 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4498 | /* 10790 */ MCD::OPC_FilterValue, 0, 190, 48, 0, // Skip to: 23273 |
4499 | /* 10795 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4500 | /* 10798 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10813 |
4501 | /* 10803 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10843 |
4502 | /* 10808 */ MCD::OPC_Decode, 229, 21, 239, 1, // Opcode: VMEB |
4503 | /* 10813 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10828 |
4504 | /* 10818 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10843 |
4505 | /* 10823 */ MCD::OPC_Decode, 231, 21, 239, 1, // Opcode: VMEH |
4506 | /* 10828 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10843 |
4507 | /* 10833 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10843 |
4508 | /* 10838 */ MCD::OPC_Decode, 230, 21, 239, 1, // Opcode: VMEF |
4509 | /* 10843 */ MCD::OPC_CheckPredicate, 35, 137, 48, 0, // Skip to: 23273 |
4510 | /* 10848 */ MCD::OPC_Decode, 228, 21, 147, 2, // Opcode: VME |
4511 | /* 10853 */ MCD::OPC_FilterValue, 167, 1, 74, 0, 0, // Skip to: 10933 |
4512 | /* 10859 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4513 | /* 10862 */ MCD::OPC_FilterValue, 0, 118, 48, 0, // Skip to: 23273 |
4514 | /* 10867 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4515 | /* 10870 */ MCD::OPC_FilterValue, 0, 110, 48, 0, // Skip to: 23273 |
4516 | /* 10875 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4517 | /* 10878 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10893 |
4518 | /* 10883 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10923 |
4519 | /* 10888 */ MCD::OPC_Decode, 135, 22, 239, 1, // Opcode: VMOB |
4520 | /* 10893 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10908 |
4521 | /* 10898 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10923 |
4522 | /* 10903 */ MCD::OPC_Decode, 137, 22, 239, 1, // Opcode: VMOH |
4523 | /* 10908 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10923 |
4524 | /* 10913 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10923 |
4525 | /* 10918 */ MCD::OPC_Decode, 136, 22, 239, 1, // Opcode: VMOF |
4526 | /* 10923 */ MCD::OPC_CheckPredicate, 35, 57, 48, 0, // Skip to: 23273 |
4527 | /* 10928 */ MCD::OPC_Decode, 134, 22, 147, 2, // Opcode: VMO |
4528 | /* 10933 */ MCD::OPC_FilterValue, 169, 1, 66, 0, 0, // Skip to: 11005 |
4529 | /* 10939 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4530 | /* 10942 */ MCD::OPC_FilterValue, 0, 38, 48, 0, // Skip to: 23273 |
4531 | /* 10947 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4532 | /* 10950 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10965 |
4533 | /* 10955 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 10995 |
4534 | /* 10960 */ MCD::OPC_Decode, 216, 21, 160, 2, // Opcode: VMALHB |
4535 | /* 10965 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10980 |
4536 | /* 10970 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 10995 |
4537 | /* 10975 */ MCD::OPC_Decode, 218, 21, 160, 2, // Opcode: VMALHH |
4538 | /* 10980 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10995 |
4539 | /* 10985 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 10995 |
4540 | /* 10990 */ MCD::OPC_Decode, 217, 21, 160, 2, // Opcode: VMALHF |
4541 | /* 10995 */ MCD::OPC_CheckPredicate, 35, 241, 47, 0, // Skip to: 23273 |
4542 | /* 11000 */ MCD::OPC_Decode, 215, 21, 164, 2, // Opcode: VMALH |
4543 | /* 11005 */ MCD::OPC_FilterValue, 170, 1, 66, 0, 0, // Skip to: 11077 |
4544 | /* 11011 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4545 | /* 11014 */ MCD::OPC_FilterValue, 0, 222, 47, 0, // Skip to: 23273 |
4546 | /* 11019 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4547 | /* 11022 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11037 |
4548 | /* 11027 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11067 |
4549 | /* 11032 */ MCD::OPC_Decode, 209, 21, 160, 2, // Opcode: VMALB |
4550 | /* 11037 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11052 |
4551 | /* 11042 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11067 |
4552 | /* 11047 */ MCD::OPC_Decode, 219, 21, 160, 2, // Opcode: VMALHW |
4553 | /* 11052 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11067 |
4554 | /* 11057 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11067 |
4555 | /* 11062 */ MCD::OPC_Decode, 214, 21, 160, 2, // Opcode: VMALF |
4556 | /* 11067 */ MCD::OPC_CheckPredicate, 35, 169, 47, 0, // Skip to: 23273 |
4557 | /* 11072 */ MCD::OPC_Decode, 208, 21, 164, 2, // Opcode: VMAL |
4558 | /* 11077 */ MCD::OPC_FilterValue, 171, 1, 66, 0, 0, // Skip to: 11149 |
4559 | /* 11083 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4560 | /* 11086 */ MCD::OPC_FilterValue, 0, 150, 47, 0, // Skip to: 23273 |
4561 | /* 11091 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4562 | /* 11094 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11109 |
4563 | /* 11099 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11139 |
4564 | /* 11104 */ MCD::OPC_Decode, 205, 21, 160, 2, // Opcode: VMAHB |
4565 | /* 11109 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11124 |
4566 | /* 11114 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11139 |
4567 | /* 11119 */ MCD::OPC_Decode, 207, 21, 160, 2, // Opcode: VMAHH |
4568 | /* 11124 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11139 |
4569 | /* 11129 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11139 |
4570 | /* 11134 */ MCD::OPC_Decode, 206, 21, 160, 2, // Opcode: VMAHF |
4571 | /* 11139 */ MCD::OPC_CheckPredicate, 35, 97, 47, 0, // Skip to: 23273 |
4572 | /* 11144 */ MCD::OPC_Decode, 204, 21, 164, 2, // Opcode: VMAH |
4573 | /* 11149 */ MCD::OPC_FilterValue, 172, 1, 66, 0, 0, // Skip to: 11221 |
4574 | /* 11155 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4575 | /* 11158 */ MCD::OPC_FilterValue, 0, 78, 47, 0, // Skip to: 23273 |
4576 | /* 11163 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4577 | /* 11166 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11181 |
4578 | /* 11171 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11211 |
4579 | /* 11176 */ MCD::OPC_Decode, 211, 21, 160, 2, // Opcode: VMALEB |
4580 | /* 11181 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11196 |
4581 | /* 11186 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11211 |
4582 | /* 11191 */ MCD::OPC_Decode, 213, 21, 160, 2, // Opcode: VMALEH |
4583 | /* 11196 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11211 |
4584 | /* 11201 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11211 |
4585 | /* 11206 */ MCD::OPC_Decode, 212, 21, 160, 2, // Opcode: VMALEF |
4586 | /* 11211 */ MCD::OPC_CheckPredicate, 35, 25, 47, 0, // Skip to: 23273 |
4587 | /* 11216 */ MCD::OPC_Decode, 210, 21, 164, 2, // Opcode: VMALE |
4588 | /* 11221 */ MCD::OPC_FilterValue, 173, 1, 66, 0, 0, // Skip to: 11293 |
4589 | /* 11227 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4590 | /* 11230 */ MCD::OPC_FilterValue, 0, 6, 47, 0, // Skip to: 23273 |
4591 | /* 11235 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4592 | /* 11238 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11253 |
4593 | /* 11243 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11283 |
4594 | /* 11248 */ MCD::OPC_Decode, 221, 21, 160, 2, // Opcode: VMALOB |
4595 | /* 11253 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11268 |
4596 | /* 11258 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11283 |
4597 | /* 11263 */ MCD::OPC_Decode, 223, 21, 160, 2, // Opcode: VMALOH |
4598 | /* 11268 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11283 |
4599 | /* 11273 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11283 |
4600 | /* 11278 */ MCD::OPC_Decode, 222, 21, 160, 2, // Opcode: VMALOF |
4601 | /* 11283 */ MCD::OPC_CheckPredicate, 35, 209, 46, 0, // Skip to: 23273 |
4602 | /* 11288 */ MCD::OPC_Decode, 220, 21, 164, 2, // Opcode: VMALO |
4603 | /* 11293 */ MCD::OPC_FilterValue, 174, 1, 66, 0, 0, // Skip to: 11365 |
4604 | /* 11299 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4605 | /* 11302 */ MCD::OPC_FilterValue, 0, 190, 46, 0, // Skip to: 23273 |
4606 | /* 11307 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4607 | /* 11310 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11325 |
4608 | /* 11315 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11355 |
4609 | /* 11320 */ MCD::OPC_Decode, 201, 21, 160, 2, // Opcode: VMAEB |
4610 | /* 11325 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11340 |
4611 | /* 11330 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11355 |
4612 | /* 11335 */ MCD::OPC_Decode, 203, 21, 160, 2, // Opcode: VMAEH |
4613 | /* 11340 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11355 |
4614 | /* 11345 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11355 |
4615 | /* 11350 */ MCD::OPC_Decode, 202, 21, 160, 2, // Opcode: VMAEF |
4616 | /* 11355 */ MCD::OPC_CheckPredicate, 35, 137, 46, 0, // Skip to: 23273 |
4617 | /* 11360 */ MCD::OPC_Decode, 200, 21, 164, 2, // Opcode: VMAE |
4618 | /* 11365 */ MCD::OPC_FilterValue, 175, 1, 66, 0, 0, // Skip to: 11437 |
4619 | /* 11371 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4620 | /* 11374 */ MCD::OPC_FilterValue, 0, 118, 46, 0, // Skip to: 23273 |
4621 | /* 11379 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4622 | /* 11382 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11397 |
4623 | /* 11387 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11427 |
4624 | /* 11392 */ MCD::OPC_Decode, 225, 21, 160, 2, // Opcode: VMAOB |
4625 | /* 11397 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11412 |
4626 | /* 11402 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11427 |
4627 | /* 11407 */ MCD::OPC_Decode, 227, 21, 160, 2, // Opcode: VMAOH |
4628 | /* 11412 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11427 |
4629 | /* 11417 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11427 |
4630 | /* 11422 */ MCD::OPC_Decode, 226, 21, 160, 2, // Opcode: VMAOF |
4631 | /* 11427 */ MCD::OPC_CheckPredicate, 35, 65, 46, 0, // Skip to: 23273 |
4632 | /* 11432 */ MCD::OPC_Decode, 224, 21, 164, 2, // Opcode: VMAO |
4633 | /* 11437 */ MCD::OPC_FilterValue, 180, 1, 89, 0, 0, // Skip to: 11532 |
4634 | /* 11443 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
4635 | /* 11446 */ MCD::OPC_FilterValue, 0, 46, 46, 0, // Skip to: 23273 |
4636 | /* 11451 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
4637 | /* 11454 */ MCD::OPC_FilterValue, 0, 38, 46, 0, // Skip to: 23273 |
4638 | /* 11459 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4639 | /* 11462 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11477 |
4640 | /* 11467 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 11522 |
4641 | /* 11472 */ MCD::OPC_Decode, 237, 20, 239, 1, // Opcode: VGFMB |
4642 | /* 11477 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11492 |
4643 | /* 11482 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11522 |
4644 | /* 11487 */ MCD::OPC_Decode, 240, 20, 239, 1, // Opcode: VGFMH |
4645 | /* 11492 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11507 |
4646 | /* 11497 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11522 |
4647 | /* 11502 */ MCD::OPC_Decode, 238, 20, 239, 1, // Opcode: VGFMF |
4648 | /* 11507 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11522 |
4649 | /* 11512 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11522 |
4650 | /* 11517 */ MCD::OPC_Decode, 239, 20, 239, 1, // Opcode: VGFMG |
4651 | /* 11522 */ MCD::OPC_CheckPredicate, 35, 226, 45, 0, // Skip to: 23273 |
4652 | /* 11527 */ MCD::OPC_Decode, 231, 20, 147, 2, // Opcode: VGFM |
4653 | /* 11532 */ MCD::OPC_FilterValue, 184, 1, 35, 0, 0, // Skip to: 11573 |
4654 | /* 11538 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
4655 | /* 11541 */ MCD::OPC_FilterValue, 0, 207, 45, 0, // Skip to: 23273 |
4656 | /* 11546 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 11563 |
4657 | /* 11551 */ MCD::OPC_CheckField, 24, 4, 3, 5, 0, 0, // Skip to: 11563 |
4658 | /* 11558 */ MCD::OPC_Decode, 150, 22, 158, 2, // Opcode: VMSLG |
4659 | /* 11563 */ MCD::OPC_CheckPredicate, 36, 185, 45, 0, // Skip to: 23273 |
4660 | /* 11568 */ MCD::OPC_Decode, 149, 22, 159, 2, // Opcode: VMSL |
4661 | /* 11573 */ MCD::OPC_FilterValue, 185, 1, 35, 0, 0, // Skip to: 11614 |
4662 | /* 11579 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4663 | /* 11582 */ MCD::OPC_FilterValue, 0, 166, 45, 0, // Skip to: 23273 |
4664 | /* 11587 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 11604 |
4665 | /* 11592 */ MCD::OPC_CheckField, 24, 4, 4, 5, 0, 0, // Skip to: 11604 |
4666 | /* 11599 */ MCD::OPC_Decode, 220, 18, 160, 2, // Opcode: VACCCQ |
4667 | /* 11604 */ MCD::OPC_CheckPredicate, 35, 144, 45, 0, // Skip to: 23273 |
4668 | /* 11609 */ MCD::OPC_Decode, 219, 18, 164, 2, // Opcode: VACCC |
4669 | /* 11614 */ MCD::OPC_FilterValue, 187, 1, 35, 0, 0, // Skip to: 11655 |
4670 | /* 11620 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4671 | /* 11623 */ MCD::OPC_FilterValue, 0, 125, 45, 0, // Skip to: 23273 |
4672 | /* 11628 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 11645 |
4673 | /* 11633 */ MCD::OPC_CheckField, 24, 4, 4, 5, 0, 0, // Skip to: 11645 |
4674 | /* 11640 */ MCD::OPC_Decode, 225, 18, 160, 2, // Opcode: VACQ |
4675 | /* 11645 */ MCD::OPC_CheckPredicate, 35, 103, 45, 0, // Skip to: 23273 |
4676 | /* 11650 */ MCD::OPC_Decode, 216, 18, 164, 2, // Opcode: VAC |
4677 | /* 11655 */ MCD::OPC_FilterValue, 188, 1, 81, 0, 0, // Skip to: 11742 |
4678 | /* 11661 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4679 | /* 11664 */ MCD::OPC_FilterValue, 0, 84, 45, 0, // Skip to: 23273 |
4680 | /* 11669 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
4681 | /* 11672 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11687 |
4682 | /* 11677 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 11732 |
4683 | /* 11682 */ MCD::OPC_Decode, 233, 20, 160, 2, // Opcode: VGFMAB |
4684 | /* 11687 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11702 |
4685 | /* 11692 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 11732 |
4686 | /* 11697 */ MCD::OPC_Decode, 236, 20, 160, 2, // Opcode: VGFMAH |
4687 | /* 11702 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11717 |
4688 | /* 11707 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 11732 |
4689 | /* 11712 */ MCD::OPC_Decode, 234, 20, 160, 2, // Opcode: VGFMAF |
4690 | /* 11717 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11732 |
4691 | /* 11722 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11732 |
4692 | /* 11727 */ MCD::OPC_Decode, 235, 20, 160, 2, // Opcode: VGFMAG |
4693 | /* 11732 */ MCD::OPC_CheckPredicate, 35, 16, 45, 0, // Skip to: 23273 |
4694 | /* 11737 */ MCD::OPC_Decode, 232, 20, 164, 2, // Opcode: VGFMA |
4695 | /* 11742 */ MCD::OPC_FilterValue, 189, 1, 35, 0, 0, // Skip to: 11783 |
4696 | /* 11748 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4697 | /* 11751 */ MCD::OPC_FilterValue, 0, 253, 44, 0, // Skip to: 23273 |
4698 | /* 11756 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 11773 |
4699 | /* 11761 */ MCD::OPC_CheckField, 24, 4, 4, 5, 0, 0, // Skip to: 11773 |
4700 | /* 11768 */ MCD::OPC_Decode, 212, 22, 160, 2, // Opcode: VSBCBIQ |
4701 | /* 11773 */ MCD::OPC_CheckPredicate, 35, 231, 44, 0, // Skip to: 23273 |
4702 | /* 11778 */ MCD::OPC_Decode, 211, 22, 164, 2, // Opcode: VSBCBI |
4703 | /* 11783 */ MCD::OPC_FilterValue, 191, 1, 35, 0, 0, // Skip to: 11824 |
4704 | /* 11789 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4705 | /* 11792 */ MCD::OPC_FilterValue, 0, 212, 44, 0, // Skip to: 23273 |
4706 | /* 11797 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 11814 |
4707 | /* 11802 */ MCD::OPC_CheckField, 24, 4, 4, 5, 0, 0, // Skip to: 11814 |
4708 | /* 11809 */ MCD::OPC_Decode, 214, 22, 160, 2, // Opcode: VSBIQ |
4709 | /* 11814 */ MCD::OPC_CheckPredicate, 35, 190, 44, 0, // Skip to: 23273 |
4710 | /* 11819 */ MCD::OPC_Decode, 213, 22, 164, 2, // Opcode: VSBI |
4711 | /* 11824 */ MCD::OPC_FilterValue, 192, 1, 93, 0, 0, // Skip to: 11923 |
4712 | /* 11830 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4713 | /* 11833 */ MCD::OPC_FilterValue, 0, 171, 44, 0, // Skip to: 23273 |
4714 | /* 11838 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4715 | /* 11841 */ MCD::OPC_FilterValue, 0, 163, 44, 0, // Skip to: 23273 |
4716 | /* 11846 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4717 | /* 11849 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 11881 |
4718 | /* 11854 */ MCD::OPC_CheckPredicate, 30, 12, 0, 0, // Skip to: 11871 |
4719 | /* 11859 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 11871 |
4720 | /* 11866 */ MCD::OPC_Decode, 203, 23, 165, 2, // Opcode: WCLFEB |
4721 | /* 11871 */ MCD::OPC_CheckPredicate, 30, 37, 0, 0, // Skip to: 11913 |
4722 | /* 11876 */ MCD::OPC_Decode, 154, 19, 166, 2, // Opcode: VCLFEB |
4723 | /* 11881 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 11913 |
4724 | /* 11886 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 11903 |
4725 | /* 11891 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 11903 |
4726 | /* 11898 */ MCD::OPC_Decode, 204, 23, 167, 2, // Opcode: WCLGDB |
4727 | /* 11903 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 11913 |
4728 | /* 11908 */ MCD::OPC_Decode, 159, 19, 166, 2, // Opcode: VCLGDB |
4729 | /* 11913 */ MCD::OPC_CheckPredicate, 35, 91, 44, 0, // Skip to: 23273 |
4730 | /* 11918 */ MCD::OPC_Decode, 158, 19, 168, 2, // Opcode: VCLGD |
4731 | /* 11923 */ MCD::OPC_FilterValue, 193, 1, 93, 0, 0, // Skip to: 12022 |
4732 | /* 11929 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4733 | /* 11932 */ MCD::OPC_FilterValue, 0, 72, 44, 0, // Skip to: 23273 |
4734 | /* 11937 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4735 | /* 11940 */ MCD::OPC_FilterValue, 0, 64, 44, 0, // Skip to: 23273 |
4736 | /* 11945 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4737 | /* 11948 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 11980 |
4738 | /* 11953 */ MCD::OPC_CheckPredicate, 30, 12, 0, 0, // Skip to: 11970 |
4739 | /* 11958 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 11970 |
4740 | /* 11965 */ MCD::OPC_Decode, 200, 23, 165, 2, // Opcode: WCELFB |
4741 | /* 11970 */ MCD::OPC_CheckPredicate, 30, 37, 0, 0, // Skip to: 12012 |
4742 | /* 11975 */ MCD::OPC_Decode, 247, 18, 166, 2, // Opcode: VCELFB |
4743 | /* 11980 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 12012 |
4744 | /* 11985 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 12002 |
4745 | /* 11990 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12002 |
4746 | /* 11997 */ MCD::OPC_Decode, 198, 23, 167, 2, // Opcode: WCDLGB |
4747 | /* 12002 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 12012 |
4748 | /* 12007 */ MCD::OPC_Decode, 245, 18, 166, 2, // Opcode: VCDLGB |
4749 | /* 12012 */ MCD::OPC_CheckPredicate, 35, 248, 43, 0, // Skip to: 23273 |
4750 | /* 12017 */ MCD::OPC_Decode, 244, 18, 168, 2, // Opcode: VCDLG |
4751 | /* 12022 */ MCD::OPC_FilterValue, 194, 1, 93, 0, 0, // Skip to: 12121 |
4752 | /* 12028 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4753 | /* 12031 */ MCD::OPC_FilterValue, 0, 229, 43, 0, // Skip to: 23273 |
4754 | /* 12036 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4755 | /* 12039 */ MCD::OPC_FilterValue, 0, 221, 43, 0, // Skip to: 23273 |
4756 | /* 12044 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4757 | /* 12047 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 12079 |
4758 | /* 12052 */ MCD::OPC_CheckPredicate, 30, 12, 0, 0, // Skip to: 12069 |
4759 | /* 12057 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12069 |
4760 | /* 12064 */ MCD::OPC_Decode, 201, 23, 165, 2, // Opcode: WCFEB |
4761 | /* 12069 */ MCD::OPC_CheckPredicate, 30, 37, 0, 0, // Skip to: 12111 |
4762 | /* 12074 */ MCD::OPC_Decode, 129, 19, 166, 2, // Opcode: VCFEB |
4763 | /* 12079 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 12111 |
4764 | /* 12084 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 12101 |
4765 | /* 12089 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12101 |
4766 | /* 12096 */ MCD::OPC_Decode, 202, 23, 167, 2, // Opcode: WCGDB |
4767 | /* 12101 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 12111 |
4768 | /* 12106 */ MCD::OPC_Decode, 134, 19, 166, 2, // Opcode: VCGDB |
4769 | /* 12111 */ MCD::OPC_CheckPredicate, 35, 149, 43, 0, // Skip to: 23273 |
4770 | /* 12116 */ MCD::OPC_Decode, 133, 19, 168, 2, // Opcode: VCGD |
4771 | /* 12121 */ MCD::OPC_FilterValue, 195, 1, 93, 0, 0, // Skip to: 12220 |
4772 | /* 12127 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4773 | /* 12130 */ MCD::OPC_FilterValue, 0, 130, 43, 0, // Skip to: 23273 |
4774 | /* 12135 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4775 | /* 12138 */ MCD::OPC_FilterValue, 0, 122, 43, 0, // Skip to: 23273 |
4776 | /* 12143 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4777 | /* 12146 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 12178 |
4778 | /* 12151 */ MCD::OPC_CheckPredicate, 30, 12, 0, 0, // Skip to: 12168 |
4779 | /* 12156 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12168 |
4780 | /* 12163 */ MCD::OPC_Decode, 199, 23, 165, 2, // Opcode: WCEFB |
4781 | /* 12168 */ MCD::OPC_CheckPredicate, 30, 37, 0, 0, // Skip to: 12210 |
4782 | /* 12173 */ MCD::OPC_Decode, 246, 18, 166, 2, // Opcode: VCEFB |
4783 | /* 12178 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 12210 |
4784 | /* 12183 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 12200 |
4785 | /* 12188 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12200 |
4786 | /* 12195 */ MCD::OPC_Decode, 197, 23, 167, 2, // Opcode: WCDGB |
4787 | /* 12200 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 12210 |
4788 | /* 12205 */ MCD::OPC_Decode, 243, 18, 166, 2, // Opcode: VCDGB |
4789 | /* 12210 */ MCD::OPC_CheckPredicate, 35, 50, 43, 0, // Skip to: 23273 |
4790 | /* 12215 */ MCD::OPC_Decode, 242, 18, 168, 2, // Opcode: VCDG |
4791 | /* 12220 */ MCD::OPC_FilterValue, 196, 1, 76, 0, 0, // Skip to: 12302 |
4792 | /* 12226 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4793 | /* 12229 */ MCD::OPC_FilterValue, 0, 31, 43, 0, // Skip to: 23273 |
4794 | /* 12234 */ MCD::OPC_ExtractField, 20, 12, // Inst{31-20} ... |
4795 | /* 12237 */ MCD::OPC_FilterValue, 0, 23, 43, 0, // Skip to: 23273 |
4796 | /* 12242 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
4797 | /* 12245 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12260 |
4798 | /* 12250 */ MCD::OPC_CheckPredicate, 35, 37, 0, 0, // Skip to: 12292 |
4799 | /* 12255 */ MCD::OPC_Decode, 143, 21, 144, 2, // Opcode: VLDEB |
4800 | /* 12260 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 12276 |
4801 | /* 12266 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 12292 |
4802 | /* 12271 */ MCD::OPC_Decode, 176, 24, 169, 2, // Opcode: WLDEB |
4803 | /* 12276 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 12292 |
4804 | /* 12282 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 12292 |
4805 | /* 12287 */ MCD::OPC_Decode, 133, 24, 170, 2, // Opcode: WFLLD |
4806 | /* 12292 */ MCD::OPC_CheckPredicate, 35, 224, 42, 0, // Skip to: 23273 |
4807 | /* 12297 */ MCD::OPC_Decode, 142, 21, 229, 1, // Opcode: VLDE |
4808 | /* 12302 */ MCD::OPC_FilterValue, 197, 1, 83, 0, 0, // Skip to: 12391 |
4809 | /* 12308 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4810 | /* 12311 */ MCD::OPC_FilterValue, 0, 205, 42, 0, // Skip to: 23273 |
4811 | /* 12316 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4812 | /* 12319 */ MCD::OPC_FilterValue, 0, 197, 42, 0, // Skip to: 23273 |
4813 | /* 12324 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4814 | /* 12327 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 12359 |
4815 | /* 12332 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 12349 |
4816 | /* 12337 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12349 |
4817 | /* 12344 */ MCD::OPC_Decode, 177, 24, 171, 2, // Opcode: WLEDB |
4818 | /* 12349 */ MCD::OPC_CheckPredicate, 35, 27, 0, 0, // Skip to: 12381 |
4819 | /* 12354 */ MCD::OPC_Decode, 149, 21, 166, 2, // Opcode: VLEDB |
4820 | /* 12359 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 12381 |
4821 | /* 12364 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 12381 |
4822 | /* 12369 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12381 |
4823 | /* 12376 */ MCD::OPC_Decode, 142, 24, 172, 2, // Opcode: WFLRX |
4824 | /* 12381 */ MCD::OPC_CheckPredicate, 35, 135, 42, 0, // Skip to: 23273 |
4825 | /* 12386 */ MCD::OPC_Decode, 148, 21, 168, 2, // Opcode: VLED |
4826 | /* 12391 */ MCD::OPC_FilterValue, 199, 1, 115, 0, 0, // Skip to: 12512 |
4827 | /* 12397 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4828 | /* 12400 */ MCD::OPC_FilterValue, 0, 116, 42, 0, // Skip to: 23273 |
4829 | /* 12405 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4830 | /* 12408 */ MCD::OPC_FilterValue, 0, 108, 42, 0, // Skip to: 23273 |
4831 | /* 12413 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4832 | /* 12416 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 12448 |
4833 | /* 12421 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 12438 |
4834 | /* 12426 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12438 |
4835 | /* 12433 */ MCD::OPC_Decode, 234, 23, 165, 2, // Opcode: WFISB |
4836 | /* 12438 */ MCD::OPC_CheckPredicate, 36, 59, 0, 0, // Skip to: 12502 |
4837 | /* 12443 */ MCD::OPC_Decode, 172, 20, 166, 2, // Opcode: VFISB |
4838 | /* 12448 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 12480 |
4839 | /* 12453 */ MCD::OPC_CheckPredicate, 35, 12, 0, 0, // Skip to: 12470 |
4840 | /* 12458 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12470 |
4841 | /* 12465 */ MCD::OPC_Decode, 233, 23, 167, 2, // Opcode: WFIDB |
4842 | /* 12470 */ MCD::OPC_CheckPredicate, 35, 27, 0, 0, // Skip to: 12502 |
4843 | /* 12475 */ MCD::OPC_Decode, 171, 20, 166, 2, // Opcode: VFIDB |
4844 | /* 12480 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 12502 |
4845 | /* 12485 */ MCD::OPC_CheckPredicate, 36, 12, 0, 0, // Skip to: 12502 |
4846 | /* 12490 */ MCD::OPC_CheckField, 19, 1, 1, 5, 0, 0, // Skip to: 12502 |
4847 | /* 12497 */ MCD::OPC_Decode, 235, 23, 173, 2, // Opcode: WFIXB |
4848 | /* 12502 */ MCD::OPC_CheckPredicate, 35, 14, 42, 0, // Skip to: 23273 |
4849 | /* 12507 */ MCD::OPC_Decode, 170, 20, 168, 2, // Opcode: VFI |
4850 | /* 12512 */ MCD::OPC_FilterValue, 202, 1, 74, 0, 0, // Skip to: 12592 |
4851 | /* 12518 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4852 | /* 12521 */ MCD::OPC_FilterValue, 0, 251, 41, 0, // Skip to: 23273 |
4853 | /* 12526 */ MCD::OPC_ExtractField, 20, 12, // Inst{31-20} ... |
4854 | /* 12529 */ MCD::OPC_FilterValue, 0, 243, 41, 0, // Skip to: 23273 |
4855 | /* 12534 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
4856 | /* 12537 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12552 |
4857 | /* 12542 */ MCD::OPC_CheckPredicate, 36, 35, 0, 0, // Skip to: 12582 |
4858 | /* 12547 */ MCD::OPC_Decode, 128, 24, 174, 2, // Opcode: WFKSB |
4859 | /* 12552 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12567 |
4860 | /* 12557 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 12582 |
4861 | /* 12562 */ MCD::OPC_Decode, 237, 23, 175, 2, // Opcode: WFKDB |
4862 | /* 12567 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12582 |
4863 | /* 12572 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 12582 |
4864 | /* 12577 */ MCD::OPC_Decode, 129, 24, 144, 2, // Opcode: WFKXB |
4865 | /* 12582 */ MCD::OPC_CheckPredicate, 35, 190, 41, 0, // Skip to: 23273 |
4866 | /* 12587 */ MCD::OPC_Decode, 236, 23, 176, 2, // Opcode: WFK |
4867 | /* 12592 */ MCD::OPC_FilterValue, 203, 1, 74, 0, 0, // Skip to: 12672 |
4868 | /* 12598 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4869 | /* 12601 */ MCD::OPC_FilterValue, 0, 171, 41, 0, // Skip to: 23273 |
4870 | /* 12606 */ MCD::OPC_ExtractField, 20, 12, // Inst{31-20} ... |
4871 | /* 12609 */ MCD::OPC_FilterValue, 0, 163, 41, 0, // Skip to: 23273 |
4872 | /* 12614 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
4873 | /* 12617 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12632 |
4874 | /* 12622 */ MCD::OPC_CheckPredicate, 36, 35, 0, 0, // Skip to: 12662 |
4875 | /* 12627 */ MCD::OPC_Decode, 228, 23, 174, 2, // Opcode: WFCSB |
4876 | /* 12632 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12647 |
4877 | /* 12637 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 12662 |
4878 | /* 12642 */ MCD::OPC_Decode, 209, 23, 175, 2, // Opcode: WFCDB |
4879 | /* 12647 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12662 |
4880 | /* 12652 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 12662 |
4881 | /* 12657 */ MCD::OPC_Decode, 229, 23, 144, 2, // Opcode: WFCXB |
4882 | /* 12662 */ MCD::OPC_CheckPredicate, 35, 110, 41, 0, // Skip to: 23273 |
4883 | /* 12667 */ MCD::OPC_Decode, 208, 23, 176, 2, // Opcode: WFC |
4884 | /* 12672 */ MCD::OPC_FilterValue, 204, 1, 92, 1, 0, // Skip to: 13026 |
4885 | /* 12678 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4886 | /* 12681 */ MCD::OPC_FilterValue, 0, 91, 41, 0, // Skip to: 23273 |
4887 | /* 12686 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... |
4888 | /* 12689 */ MCD::OPC_FilterValue, 0, 83, 41, 0, // Skip to: 23273 |
4889 | /* 12694 */ MCD::OPC_ExtractField, 12, 12, // Inst{23-12} ... |
4890 | /* 12697 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12712 |
4891 | /* 12702 */ MCD::OPC_CheckPredicate, 36, 228, 0, 0, // Skip to: 12935 |
4892 | /* 12707 */ MCD::OPC_Decode, 186, 20, 144, 2, // Opcode: VFLCSB |
4893 | /* 12712 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12727 |
4894 | /* 12717 */ MCD::OPC_CheckPredicate, 35, 213, 0, 0, // Skip to: 12935 |
4895 | /* 12722 */ MCD::OPC_Decode, 185, 20, 144, 2, // Opcode: VFLCDB |
4896 | /* 12727 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 12743 |
4897 | /* 12733 */ MCD::OPC_CheckPredicate, 36, 197, 0, 0, // Skip to: 12935 |
4898 | /* 12738 */ MCD::OPC_Decode, 131, 24, 174, 2, // Opcode: WFLCSB |
4899 | /* 12743 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 12759 |
4900 | /* 12749 */ MCD::OPC_CheckPredicate, 35, 181, 0, 0, // Skip to: 12935 |
4901 | /* 12754 */ MCD::OPC_Decode, 130, 24, 175, 2, // Opcode: WFLCDB |
4902 | /* 12759 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 12775 |
4903 | /* 12765 */ MCD::OPC_CheckPredicate, 36, 165, 0, 0, // Skip to: 12935 |
4904 | /* 12770 */ MCD::OPC_Decode, 132, 24, 144, 2, // Opcode: WFLCXB |
4905 | /* 12775 */ MCD::OPC_FilterValue, 130, 2, 10, 0, 0, // Skip to: 12791 |
4906 | /* 12781 */ MCD::OPC_CheckPredicate, 36, 149, 0, 0, // Skip to: 12935 |
4907 | /* 12786 */ MCD::OPC_Decode, 190, 20, 144, 2, // Opcode: VFLNSB |
4908 | /* 12791 */ MCD::OPC_FilterValue, 131, 2, 10, 0, 0, // Skip to: 12807 |
4909 | /* 12797 */ MCD::OPC_CheckPredicate, 35, 133, 0, 0, // Skip to: 12935 |
4910 | /* 12802 */ MCD::OPC_Decode, 189, 20, 144, 2, // Opcode: VFLNDB |
4911 | /* 12807 */ MCD::OPC_FilterValue, 130, 3, 10, 0, 0, // Skip to: 12823 |
4912 | /* 12813 */ MCD::OPC_CheckPredicate, 36, 117, 0, 0, // Skip to: 12935 |
4913 | /* 12818 */ MCD::OPC_Decode, 136, 24, 174, 2, // Opcode: WFLNSB |
4914 | /* 12823 */ MCD::OPC_FilterValue, 131, 3, 10, 0, 0, // Skip to: 12839 |
4915 | /* 12829 */ MCD::OPC_CheckPredicate, 35, 101, 0, 0, // Skip to: 12935 |
4916 | /* 12834 */ MCD::OPC_Decode, 135, 24, 175, 2, // Opcode: WFLNDB |
4917 | /* 12839 */ MCD::OPC_FilterValue, 132, 3, 10, 0, 0, // Skip to: 12855 |
4918 | /* 12845 */ MCD::OPC_CheckPredicate, 36, 85, 0, 0, // Skip to: 12935 |
4919 | /* 12850 */ MCD::OPC_Decode, 137, 24, 144, 2, // Opcode: WFLNXB |
4920 | /* 12855 */ MCD::OPC_FilterValue, 130, 4, 10, 0, 0, // Skip to: 12871 |
4921 | /* 12861 */ MCD::OPC_CheckPredicate, 36, 69, 0, 0, // Skip to: 12935 |
4922 | /* 12866 */ MCD::OPC_Decode, 192, 20, 144, 2, // Opcode: VFLPSB |
4923 | /* 12871 */ MCD::OPC_FilterValue, 131, 4, 10, 0, 0, // Skip to: 12887 |
4924 | /* 12877 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 12935 |
4925 | /* 12882 */ MCD::OPC_Decode, 191, 20, 144, 2, // Opcode: VFLPDB |
4926 | /* 12887 */ MCD::OPC_FilterValue, 130, 5, 10, 0, 0, // Skip to: 12903 |
4927 | /* 12893 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 12935 |
4928 | /* 12898 */ MCD::OPC_Decode, 139, 24, 174, 2, // Opcode: WFLPSB |
4929 | /* 12903 */ MCD::OPC_FilterValue, 131, 5, 10, 0, 0, // Skip to: 12919 |
4930 | /* 12909 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 12935 |
4931 | /* 12914 */ MCD::OPC_Decode, 138, 24, 175, 2, // Opcode: WFLPDB |
4932 | /* 12919 */ MCD::OPC_FilterValue, 132, 5, 10, 0, 0, // Skip to: 12935 |
4933 | /* 12925 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 12935 |
4934 | /* 12930 */ MCD::OPC_Decode, 140, 24, 144, 2, // Opcode: WFLPXB |
4935 | /* 12935 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
4936 | /* 12938 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12953 |
4937 | /* 12943 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 13016 |
4938 | /* 12948 */ MCD::OPC_Decode, 218, 20, 226, 1, // Opcode: VFPSOSB |
4939 | /* 12953 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12968 |
4940 | /* 12958 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 13016 |
4941 | /* 12963 */ MCD::OPC_Decode, 217, 20, 226, 1, // Opcode: VFPSODB |
4942 | /* 12968 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 12984 |
4943 | /* 12974 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 13016 |
4944 | /* 12979 */ MCD::OPC_Decode, 165, 24, 177, 2, // Opcode: WFPSOSB |
4945 | /* 12984 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 13000 |
4946 | /* 12990 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 13016 |
4947 | /* 12995 */ MCD::OPC_Decode, 164, 24, 178, 2, // Opcode: WFPSODB |
4948 | /* 13000 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 13016 |
4949 | /* 13006 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 13016 |
4950 | /* 13011 */ MCD::OPC_Decode, 166, 24, 226, 1, // Opcode: WFPSOXB |
4951 | /* 13016 */ MCD::OPC_CheckPredicate, 35, 12, 40, 0, // Skip to: 23273 |
4952 | /* 13021 */ MCD::OPC_Decode, 216, 20, 168, 2, // Opcode: VFPSO |
4953 | /* 13026 */ MCD::OPC_FilterValue, 206, 1, 107, 0, 0, // Skip to: 13139 |
4954 | /* 13032 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4955 | /* 13035 */ MCD::OPC_FilterValue, 0, 249, 39, 0, // Skip to: 23273 |
4956 | /* 13040 */ MCD::OPC_ExtractField, 20, 12, // Inst{31-20} ... |
4957 | /* 13043 */ MCD::OPC_FilterValue, 0, 241, 39, 0, // Skip to: 23273 |
4958 | /* 13048 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
4959 | /* 13051 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13066 |
4960 | /* 13056 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 13129 |
4961 | /* 13061 */ MCD::OPC_Decode, 223, 20, 144, 2, // Opcode: VFSQSB |
4962 | /* 13066 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13081 |
4963 | /* 13071 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 13129 |
4964 | /* 13076 */ MCD::OPC_Decode, 222, 20, 144, 2, // Opcode: VFSQDB |
4965 | /* 13081 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 13097 |
4966 | /* 13087 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 13129 |
4967 | /* 13092 */ MCD::OPC_Decode, 169, 24, 174, 2, // Opcode: WFSQSB |
4968 | /* 13097 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 13113 |
4969 | /* 13103 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 13129 |
4970 | /* 13108 */ MCD::OPC_Decode, 168, 24, 175, 2, // Opcode: WFSQDB |
4971 | /* 13113 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 13129 |
4972 | /* 13119 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 13129 |
4973 | /* 13124 */ MCD::OPC_Decode, 170, 24, 144, 2, // Opcode: WFSQXB |
4974 | /* 13129 */ MCD::OPC_CheckPredicate, 35, 155, 39, 0, // Skip to: 23273 |
4975 | /* 13134 */ MCD::OPC_Decode, 221, 20, 229, 1, // Opcode: VFSQ |
4976 | /* 13139 */ MCD::OPC_FilterValue, 212, 1, 74, 0, 0, // Skip to: 13219 |
4977 | /* 13145 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4978 | /* 13148 */ MCD::OPC_FilterValue, 0, 136, 39, 0, // Skip to: 23273 |
4979 | /* 13153 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
4980 | /* 13156 */ MCD::OPC_FilterValue, 0, 128, 39, 0, // Skip to: 23273 |
4981 | /* 13161 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4982 | /* 13164 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13179 |
4983 | /* 13169 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13209 |
4984 | /* 13174 */ MCD::OPC_Decode, 192, 23, 144, 2, // Opcode: VUPLLB |
4985 | /* 13179 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13194 |
4986 | /* 13184 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13209 |
4987 | /* 13189 */ MCD::OPC_Decode, 194, 23, 144, 2, // Opcode: VUPLLH |
4988 | /* 13194 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13209 |
4989 | /* 13199 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13209 |
4990 | /* 13204 */ MCD::OPC_Decode, 193, 23, 144, 2, // Opcode: VUPLLF |
4991 | /* 13209 */ MCD::OPC_CheckPredicate, 35, 75, 39, 0, // Skip to: 23273 |
4992 | /* 13214 */ MCD::OPC_Decode, 191, 23, 145, 2, // Opcode: VUPLL |
4993 | /* 13219 */ MCD::OPC_FilterValue, 213, 1, 74, 0, 0, // Skip to: 13299 |
4994 | /* 13225 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
4995 | /* 13228 */ MCD::OPC_FilterValue, 0, 56, 39, 0, // Skip to: 23273 |
4996 | /* 13233 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
4997 | /* 13236 */ MCD::OPC_FilterValue, 0, 48, 39, 0, // Skip to: 23273 |
4998 | /* 13241 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
4999 | /* 13244 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13259 |
5000 | /* 13249 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13289 |
5001 | /* 13254 */ MCD::OPC_Decode, 187, 23, 144, 2, // Opcode: VUPLHB |
5002 | /* 13259 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13274 |
5003 | /* 13264 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13289 |
5004 | /* 13269 */ MCD::OPC_Decode, 189, 23, 144, 2, // Opcode: VUPLHH |
5005 | /* 13274 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13289 |
5006 | /* 13279 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13289 |
5007 | /* 13284 */ MCD::OPC_Decode, 188, 23, 144, 2, // Opcode: VUPLHF |
5008 | /* 13289 */ MCD::OPC_CheckPredicate, 35, 251, 38, 0, // Skip to: 23273 |
5009 | /* 13294 */ MCD::OPC_Decode, 186, 23, 145, 2, // Opcode: VUPLH |
5010 | /* 13299 */ MCD::OPC_FilterValue, 214, 1, 74, 0, 0, // Skip to: 13379 |
5011 | /* 13305 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5012 | /* 13308 */ MCD::OPC_FilterValue, 0, 232, 38, 0, // Skip to: 23273 |
5013 | /* 13313 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5014 | /* 13316 */ MCD::OPC_FilterValue, 0, 224, 38, 0, // Skip to: 23273 |
5015 | /* 13321 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5016 | /* 13324 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13339 |
5017 | /* 13329 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13369 |
5018 | /* 13334 */ MCD::OPC_Decode, 184, 23, 144, 2, // Opcode: VUPLB |
5019 | /* 13339 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13354 |
5020 | /* 13344 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13369 |
5021 | /* 13349 */ MCD::OPC_Decode, 190, 23, 144, 2, // Opcode: VUPLHW |
5022 | /* 13354 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13369 |
5023 | /* 13359 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13369 |
5024 | /* 13364 */ MCD::OPC_Decode, 185, 23, 144, 2, // Opcode: VUPLF |
5025 | /* 13369 */ MCD::OPC_CheckPredicate, 35, 171, 38, 0, // Skip to: 23273 |
5026 | /* 13374 */ MCD::OPC_Decode, 183, 23, 145, 2, // Opcode: VUPL |
5027 | /* 13379 */ MCD::OPC_FilterValue, 215, 1, 74, 0, 0, // Skip to: 13459 |
5028 | /* 13385 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5029 | /* 13388 */ MCD::OPC_FilterValue, 0, 152, 38, 0, // Skip to: 23273 |
5030 | /* 13393 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5031 | /* 13396 */ MCD::OPC_FilterValue, 0, 144, 38, 0, // Skip to: 23273 |
5032 | /* 13401 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5033 | /* 13404 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13419 |
5034 | /* 13409 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13449 |
5035 | /* 13414 */ MCD::OPC_Decode, 177, 23, 144, 2, // Opcode: VUPHB |
5036 | /* 13419 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13434 |
5037 | /* 13424 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13449 |
5038 | /* 13429 */ MCD::OPC_Decode, 179, 23, 144, 2, // Opcode: VUPHH |
5039 | /* 13434 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13449 |
5040 | /* 13439 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13449 |
5041 | /* 13444 */ MCD::OPC_Decode, 178, 23, 144, 2, // Opcode: VUPHF |
5042 | /* 13449 */ MCD::OPC_CheckPredicate, 35, 91, 38, 0, // Skip to: 23273 |
5043 | /* 13454 */ MCD::OPC_Decode, 176, 23, 145, 2, // Opcode: VUPH |
5044 | /* 13459 */ MCD::OPC_FilterValue, 216, 1, 24, 0, 0, // Skip to: 13489 |
5045 | /* 13465 */ MCD::OPC_CheckPredicate, 35, 75, 38, 0, // Skip to: 23273 |
5046 | /* 13470 */ MCD::OPC_CheckField, 12, 20, 0, 68, 38, 0, // Skip to: 23273 |
5047 | /* 13477 */ MCD::OPC_CheckField, 8, 2, 0, 61, 38, 0, // Skip to: 23273 |
5048 | /* 13484 */ MCD::OPC_Decode, 174, 23, 144, 2, // Opcode: VTM |
5049 | /* 13489 */ MCD::OPC_FilterValue, 217, 1, 89, 0, 0, // Skip to: 13584 |
5050 | /* 13495 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5051 | /* 13498 */ MCD::OPC_FilterValue, 0, 42, 38, 0, // Skip to: 23273 |
5052 | /* 13503 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5053 | /* 13506 */ MCD::OPC_FilterValue, 0, 34, 38, 0, // Skip to: 23273 |
5054 | /* 13511 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5055 | /* 13514 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13529 |
5056 | /* 13519 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 13574 |
5057 | /* 13524 */ MCD::OPC_Decode, 189, 19, 144, 2, // Opcode: VECLB |
5058 | /* 13529 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13544 |
5059 | /* 13534 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13574 |
5060 | /* 13539 */ MCD::OPC_Decode, 192, 19, 144, 2, // Opcode: VECLH |
5061 | /* 13544 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13559 |
5062 | /* 13549 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13574 |
5063 | /* 13554 */ MCD::OPC_Decode, 190, 19, 144, 2, // Opcode: VECLF |
5064 | /* 13559 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13574 |
5065 | /* 13564 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13574 |
5066 | /* 13569 */ MCD::OPC_Decode, 191, 19, 144, 2, // Opcode: VECLG |
5067 | /* 13574 */ MCD::OPC_CheckPredicate, 35, 222, 37, 0, // Skip to: 23273 |
5068 | /* 13579 */ MCD::OPC_Decode, 188, 19, 145, 2, // Opcode: VECL |
5069 | /* 13584 */ MCD::OPC_FilterValue, 219, 1, 89, 0, 0, // Skip to: 13679 |
5070 | /* 13590 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5071 | /* 13593 */ MCD::OPC_FilterValue, 0, 203, 37, 0, // Skip to: 23273 |
5072 | /* 13598 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5073 | /* 13601 */ MCD::OPC_FilterValue, 0, 195, 37, 0, // Skip to: 23273 |
5074 | /* 13606 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5075 | /* 13609 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13624 |
5076 | /* 13614 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 13669 |
5077 | /* 13619 */ MCD::OPC_Decode, 184, 19, 144, 2, // Opcode: VECB |
5078 | /* 13624 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13639 |
5079 | /* 13629 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13669 |
5080 | /* 13634 */ MCD::OPC_Decode, 187, 19, 144, 2, // Opcode: VECH |
5081 | /* 13639 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13654 |
5082 | /* 13644 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13669 |
5083 | /* 13649 */ MCD::OPC_Decode, 185, 19, 144, 2, // Opcode: VECF |
5084 | /* 13654 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13669 |
5085 | /* 13659 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13669 |
5086 | /* 13664 */ MCD::OPC_Decode, 186, 19, 144, 2, // Opcode: VECG |
5087 | /* 13669 */ MCD::OPC_CheckPredicate, 35, 127, 37, 0, // Skip to: 23273 |
5088 | /* 13674 */ MCD::OPC_Decode, 183, 19, 145, 2, // Opcode: VEC |
5089 | /* 13679 */ MCD::OPC_FilterValue, 222, 1, 89, 0, 0, // Skip to: 13774 |
5090 | /* 13685 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5091 | /* 13688 */ MCD::OPC_FilterValue, 0, 108, 37, 0, // Skip to: 23273 |
5092 | /* 13693 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5093 | /* 13696 */ MCD::OPC_FilterValue, 0, 100, 37, 0, // Skip to: 23273 |
5094 | /* 13701 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5095 | /* 13704 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13719 |
5096 | /* 13709 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 13764 |
5097 | /* 13714 */ MCD::OPC_Decode, 138, 21, 144, 2, // Opcode: VLCB |
5098 | /* 13719 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13734 |
5099 | /* 13724 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13764 |
5100 | /* 13729 */ MCD::OPC_Decode, 141, 21, 144, 2, // Opcode: VLCH |
5101 | /* 13734 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13749 |
5102 | /* 13739 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13764 |
5103 | /* 13744 */ MCD::OPC_Decode, 139, 21, 144, 2, // Opcode: VLCF |
5104 | /* 13749 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13764 |
5105 | /* 13754 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13764 |
5106 | /* 13759 */ MCD::OPC_Decode, 140, 21, 144, 2, // Opcode: VLCG |
5107 | /* 13764 */ MCD::OPC_CheckPredicate, 35, 32, 37, 0, // Skip to: 23273 |
5108 | /* 13769 */ MCD::OPC_Decode, 137, 21, 145, 2, // Opcode: VLC |
5109 | /* 13774 */ MCD::OPC_FilterValue, 223, 1, 89, 0, 0, // Skip to: 13869 |
5110 | /* 13780 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... |
5111 | /* 13783 */ MCD::OPC_FilterValue, 0, 13, 37, 0, // Skip to: 23273 |
5112 | /* 13788 */ MCD::OPC_ExtractField, 16, 16, // Inst{31-16} ... |
5113 | /* 13791 */ MCD::OPC_FilterValue, 0, 5, 37, 0, // Skip to: 23273 |
5114 | /* 13796 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5115 | /* 13799 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13814 |
5116 | /* 13804 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 13859 |
5117 | /* 13809 */ MCD::OPC_Decode, 182, 21, 144, 2, // Opcode: VLPB |
5118 | /* 13814 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13829 |
5119 | /* 13819 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 13859 |
5120 | /* 13824 */ MCD::OPC_Decode, 185, 21, 144, 2, // Opcode: VLPH |
5121 | /* 13829 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13844 |
5122 | /* 13834 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 13859 |
5123 | /* 13839 */ MCD::OPC_Decode, 183, 21, 144, 2, // Opcode: VLPF |
5124 | /* 13844 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13859 |
5125 | /* 13849 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 13859 |
5126 | /* 13854 */ MCD::OPC_Decode, 184, 21, 144, 2, // Opcode: VLPG |
5127 | /* 13859 */ MCD::OPC_CheckPredicate, 35, 193, 36, 0, // Skip to: 23273 |
5128 | /* 13864 */ MCD::OPC_Decode, 181, 21, 145, 2, // Opcode: VLP |
5129 | /* 13869 */ MCD::OPC_FilterValue, 226, 1, 107, 0, 0, // Skip to: 13982 |
5130 | /* 13875 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5131 | /* 13878 */ MCD::OPC_FilterValue, 0, 174, 36, 0, // Skip to: 23273 |
5132 | /* 13883 */ MCD::OPC_ExtractField, 20, 8, // Inst{27-20} ... |
5133 | /* 13886 */ MCD::OPC_FilterValue, 0, 166, 36, 0, // Skip to: 23273 |
5134 | /* 13891 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5135 | /* 13894 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 13909 |
5136 | /* 13899 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 13972 |
5137 | /* 13904 */ MCD::OPC_Decode, 224, 20, 239, 1, // Opcode: VFSSB |
5138 | /* 13909 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 13924 |
5139 | /* 13914 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 13972 |
5140 | /* 13919 */ MCD::OPC_Decode, 220, 20, 239, 1, // Opcode: VFSDB |
5141 | /* 13924 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 13940 |
5142 | /* 13930 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 13972 |
5143 | /* 13935 */ MCD::OPC_Decode, 171, 24, 179, 2, // Opcode: WFSSB |
5144 | /* 13940 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 13956 |
5145 | /* 13946 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 13972 |
5146 | /* 13951 */ MCD::OPC_Decode, 167, 24, 180, 2, // Opcode: WFSDB |
5147 | /* 13956 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 13972 |
5148 | /* 13962 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 13972 |
5149 | /* 13967 */ MCD::OPC_Decode, 172, 24, 239, 1, // Opcode: WFSXB |
5150 | /* 13972 */ MCD::OPC_CheckPredicate, 35, 80, 36, 0, // Skip to: 23273 |
5151 | /* 13977 */ MCD::OPC_Decode, 219, 20, 237, 1, // Opcode: VFS |
5152 | /* 13982 */ MCD::OPC_FilterValue, 227, 1, 107, 0, 0, // Skip to: 14095 |
5153 | /* 13988 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5154 | /* 13991 */ MCD::OPC_FilterValue, 0, 61, 36, 0, // Skip to: 23273 |
5155 | /* 13996 */ MCD::OPC_ExtractField, 20, 8, // Inst{27-20} ... |
5156 | /* 13999 */ MCD::OPC_FilterValue, 0, 53, 36, 0, // Skip to: 23273 |
5157 | /* 14004 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5158 | /* 14007 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14022 |
5159 | /* 14012 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 14085 |
5160 | /* 14017 */ MCD::OPC_Decode, 253, 19, 239, 1, // Opcode: VFASB |
5161 | /* 14022 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14037 |
5162 | /* 14027 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 14085 |
5163 | /* 14032 */ MCD::OPC_Decode, 239, 19, 239, 1, // Opcode: VFADB |
5164 | /* 14037 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 14053 |
5165 | /* 14043 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 14085 |
5166 | /* 14048 */ MCD::OPC_Decode, 206, 23, 179, 2, // Opcode: WFASB |
5167 | /* 14053 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 14069 |
5168 | /* 14059 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 14085 |
5169 | /* 14064 */ MCD::OPC_Decode, 205, 23, 180, 2, // Opcode: WFADB |
5170 | /* 14069 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 14085 |
5171 | /* 14075 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 14085 |
5172 | /* 14080 */ MCD::OPC_Decode, 207, 23, 239, 1, // Opcode: WFAXB |
5173 | /* 14085 */ MCD::OPC_CheckPredicate, 35, 223, 35, 0, // Skip to: 23273 |
5174 | /* 14090 */ MCD::OPC_Decode, 238, 19, 237, 1, // Opcode: VFA |
5175 | /* 14095 */ MCD::OPC_FilterValue, 229, 1, 107, 0, 0, // Skip to: 14208 |
5176 | /* 14101 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5177 | /* 14104 */ MCD::OPC_FilterValue, 0, 204, 35, 0, // Skip to: 23273 |
5178 | /* 14109 */ MCD::OPC_ExtractField, 20, 8, // Inst{27-20} ... |
5179 | /* 14112 */ MCD::OPC_FilterValue, 0, 196, 35, 0, // Skip to: 23273 |
5180 | /* 14117 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5181 | /* 14120 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14135 |
5182 | /* 14125 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 14198 |
5183 | /* 14130 */ MCD::OPC_Decode, 143, 20, 239, 1, // Opcode: VFDSB |
5184 | /* 14135 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14150 |
5185 | /* 14140 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 14198 |
5186 | /* 14145 */ MCD::OPC_Decode, 142, 20, 239, 1, // Opcode: VFDDB |
5187 | /* 14150 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 14166 |
5188 | /* 14156 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 14198 |
5189 | /* 14161 */ MCD::OPC_Decode, 231, 23, 179, 2, // Opcode: WFDSB |
5190 | /* 14166 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 14182 |
5191 | /* 14172 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 14198 |
5192 | /* 14177 */ MCD::OPC_Decode, 230, 23, 180, 2, // Opcode: WFDDB |
5193 | /* 14182 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 14198 |
5194 | /* 14188 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 14198 |
5195 | /* 14193 */ MCD::OPC_Decode, 232, 23, 239, 1, // Opcode: WFDXB |
5196 | /* 14198 */ MCD::OPC_CheckPredicate, 35, 110, 35, 0, // Skip to: 23273 |
5197 | /* 14203 */ MCD::OPC_Decode, 141, 20, 237, 1, // Opcode: VFD |
5198 | /* 14208 */ MCD::OPC_FilterValue, 231, 1, 107, 0, 0, // Skip to: 14321 |
5199 | /* 14214 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5200 | /* 14217 */ MCD::OPC_FilterValue, 0, 91, 35, 0, // Skip to: 23273 |
5201 | /* 14222 */ MCD::OPC_ExtractField, 20, 8, // Inst{27-20} ... |
5202 | /* 14225 */ MCD::OPC_FilterValue, 0, 83, 35, 0, // Skip to: 23273 |
5203 | /* 14230 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5204 | /* 14233 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14248 |
5205 | /* 14238 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 14311 |
5206 | /* 14243 */ MCD::OPC_Decode, 207, 20, 239, 1, // Opcode: VFMSB |
5207 | /* 14248 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14263 |
5208 | /* 14253 */ MCD::OPC_CheckPredicate, 35, 53, 0, 0, // Skip to: 14311 |
5209 | /* 14258 */ MCD::OPC_Decode, 202, 20, 239, 1, // Opcode: VFMDB |
5210 | /* 14263 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 14279 |
5211 | /* 14269 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 14311 |
5212 | /* 14274 */ MCD::OPC_Decode, 153, 24, 179, 2, // Opcode: WFMSB |
5213 | /* 14279 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 14295 |
5214 | /* 14285 */ MCD::OPC_CheckPredicate, 35, 21, 0, 0, // Skip to: 14311 |
5215 | /* 14290 */ MCD::OPC_Decode, 149, 24, 180, 2, // Opcode: WFMDB |
5216 | /* 14295 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 14311 |
5217 | /* 14301 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 14311 |
5218 | /* 14306 */ MCD::OPC_Decode, 157, 24, 239, 1, // Opcode: WFMXB |
5219 | /* 14311 */ MCD::OPC_CheckPredicate, 35, 253, 34, 0, // Skip to: 23273 |
5220 | /* 14316 */ MCD::OPC_Decode, 195, 20, 237, 1, // Opcode: VFM |
5221 | /* 14321 */ MCD::OPC_FilterValue, 232, 1, 89, 1, 0, // Skip to: 14672 |
5222 | /* 14327 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5223 | /* 14330 */ MCD::OPC_FilterValue, 0, 234, 34, 0, // Skip to: 23273 |
5224 | /* 14335 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5225 | /* 14338 */ MCD::OPC_FilterValue, 0, 226, 34, 0, // Skip to: 23273 |
5226 | /* 14343 */ MCD::OPC_ExtractField, 12, 12, // Inst{23-12} ... |
5227 | /* 14346 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14361 |
5228 | /* 14351 */ MCD::OPC_CheckPredicate, 36, 50, 1, 0, // Skip to: 14662 |
5229 | /* 14356 */ MCD::OPC_Decode, 129, 20, 239, 1, // Opcode: VFCESB |
5230 | /* 14361 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14376 |
5231 | /* 14366 */ MCD::OPC_CheckPredicate, 35, 35, 1, 0, // Skip to: 14662 |
5232 | /* 14371 */ MCD::OPC_Decode, 255, 19, 239, 1, // Opcode: VFCEDB |
5233 | /* 14376 */ MCD::OPC_FilterValue, 66, 10, 0, 0, // Skip to: 14391 |
5234 | /* 14381 */ MCD::OPC_CheckPredicate, 36, 20, 1, 0, // Skip to: 14662 |
5235 | /* 14386 */ MCD::OPC_Decode, 175, 20, 239, 1, // Opcode: VFKESB |
5236 | /* 14391 */ MCD::OPC_FilterValue, 67, 10, 0, 0, // Skip to: 14406 |
5237 | /* 14396 */ MCD::OPC_CheckPredicate, 36, 5, 1, 0, // Skip to: 14662 |
5238 | /* 14401 */ MCD::OPC_Decode, 173, 20, 239, 1, // Opcode: VFKEDB |
5239 | /* 14406 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 14422 |
5240 | /* 14412 */ MCD::OPC_CheckPredicate, 36, 245, 0, 0, // Skip to: 14662 |
5241 | /* 14417 */ MCD::OPC_Decode, 212, 23, 179, 2, // Opcode: WFCESB |
5242 | /* 14422 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 14438 |
5243 | /* 14428 */ MCD::OPC_CheckPredicate, 35, 229, 0, 0, // Skip to: 14662 |
5244 | /* 14433 */ MCD::OPC_Decode, 210, 23, 180, 2, // Opcode: WFCEDB |
5245 | /* 14438 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 14454 |
5246 | /* 14444 */ MCD::OPC_CheckPredicate, 36, 213, 0, 0, // Skip to: 14662 |
5247 | /* 14449 */ MCD::OPC_Decode, 214, 23, 239, 1, // Opcode: WFCEXB |
5248 | /* 14454 */ MCD::OPC_FilterValue, 194, 1, 10, 0, 0, // Skip to: 14470 |
5249 | /* 14460 */ MCD::OPC_CheckPredicate, 36, 197, 0, 0, // Skip to: 14662 |
5250 | /* 14465 */ MCD::OPC_Decode, 240, 23, 179, 2, // Opcode: WFKESB |
5251 | /* 14470 */ MCD::OPC_FilterValue, 195, 1, 10, 0, 0, // Skip to: 14486 |
5252 | /* 14476 */ MCD::OPC_CheckPredicate, 36, 181, 0, 0, // Skip to: 14662 |
5253 | /* 14481 */ MCD::OPC_Decode, 238, 23, 180, 2, // Opcode: WFKEDB |
5254 | /* 14486 */ MCD::OPC_FilterValue, 196, 1, 10, 0, 0, // Skip to: 14502 |
5255 | /* 14492 */ MCD::OPC_CheckPredicate, 36, 165, 0, 0, // Skip to: 14662 |
5256 | /* 14497 */ MCD::OPC_Decode, 242, 23, 239, 1, // Opcode: WFKEXB |
5257 | /* 14502 */ MCD::OPC_FilterValue, 130, 2, 10, 0, 0, // Skip to: 14518 |
5258 | /* 14508 */ MCD::OPC_CheckPredicate, 36, 149, 0, 0, // Skip to: 14662 |
5259 | /* 14513 */ MCD::OPC_Decode, 130, 20, 239, 1, // Opcode: VFCESBS |
5260 | /* 14518 */ MCD::OPC_FilterValue, 131, 2, 10, 0, 0, // Skip to: 14534 |
5261 | /* 14524 */ MCD::OPC_CheckPredicate, 35, 133, 0, 0, // Skip to: 14662 |
5262 | /* 14529 */ MCD::OPC_Decode, 128, 20, 239, 1, // Opcode: VFCEDBS |
5263 | /* 14534 */ MCD::OPC_FilterValue, 194, 2, 10, 0, 0, // Skip to: 14550 |
5264 | /* 14540 */ MCD::OPC_CheckPredicate, 36, 117, 0, 0, // Skip to: 14662 |
5265 | /* 14545 */ MCD::OPC_Decode, 176, 20, 239, 1, // Opcode: VFKESBS |
5266 | /* 14550 */ MCD::OPC_FilterValue, 195, 2, 10, 0, 0, // Skip to: 14566 |
5267 | /* 14556 */ MCD::OPC_CheckPredicate, 36, 101, 0, 0, // Skip to: 14662 |
5268 | /* 14561 */ MCD::OPC_Decode, 174, 20, 239, 1, // Opcode: VFKEDBS |
5269 | /* 14566 */ MCD::OPC_FilterValue, 130, 3, 10, 0, 0, // Skip to: 14582 |
5270 | /* 14572 */ MCD::OPC_CheckPredicate, 36, 85, 0, 0, // Skip to: 14662 |
5271 | /* 14577 */ MCD::OPC_Decode, 213, 23, 179, 2, // Opcode: WFCESBS |
5272 | /* 14582 */ MCD::OPC_FilterValue, 131, 3, 10, 0, 0, // Skip to: 14598 |
5273 | /* 14588 */ MCD::OPC_CheckPredicate, 35, 69, 0, 0, // Skip to: 14662 |
5274 | /* 14593 */ MCD::OPC_Decode, 211, 23, 180, 2, // Opcode: WFCEDBS |
5275 | /* 14598 */ MCD::OPC_FilterValue, 132, 3, 10, 0, 0, // Skip to: 14614 |
5276 | /* 14604 */ MCD::OPC_CheckPredicate, 36, 53, 0, 0, // Skip to: 14662 |
5277 | /* 14609 */ MCD::OPC_Decode, 215, 23, 239, 1, // Opcode: WFCEXBS |
5278 | /* 14614 */ MCD::OPC_FilterValue, 194, 3, 10, 0, 0, // Skip to: 14630 |
5279 | /* 14620 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 14662 |
5280 | /* 14625 */ MCD::OPC_Decode, 241, 23, 179, 2, // Opcode: WFKESBS |
5281 | /* 14630 */ MCD::OPC_FilterValue, 195, 3, 10, 0, 0, // Skip to: 14646 |
5282 | /* 14636 */ MCD::OPC_CheckPredicate, 36, 21, 0, 0, // Skip to: 14662 |
5283 | /* 14641 */ MCD::OPC_Decode, 239, 23, 180, 2, // Opcode: WFKEDBS |
5284 | /* 14646 */ MCD::OPC_FilterValue, 196, 3, 10, 0, 0, // Skip to: 14662 |
5285 | /* 14652 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 14662 |
5286 | /* 14657 */ MCD::OPC_Decode, 243, 23, 239, 1, // Opcode: WFKEXBS |
5287 | /* 14662 */ MCD::OPC_CheckPredicate, 35, 158, 33, 0, // Skip to: 23273 |
5288 | /* 14667 */ MCD::OPC_Decode, 254, 19, 181, 2, // Opcode: VFCE |
5289 | /* 14672 */ MCD::OPC_FilterValue, 234, 1, 89, 1, 0, // Skip to: 15023 |
5290 | /* 14678 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5291 | /* 14681 */ MCD::OPC_FilterValue, 0, 139, 33, 0, // Skip to: 23273 |
5292 | /* 14686 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5293 | /* 14689 */ MCD::OPC_FilterValue, 0, 131, 33, 0, // Skip to: 23273 |
5294 | /* 14694 */ MCD::OPC_ExtractField, 12, 12, // Inst{23-12} ... |
5295 | /* 14697 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14712 |
5296 | /* 14702 */ MCD::OPC_CheckPredicate, 36, 50, 1, 0, // Skip to: 15013 |
5297 | /* 14707 */ MCD::OPC_Decode, 137, 20, 239, 1, // Opcode: VFCHESB |
5298 | /* 14712 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14727 |
5299 | /* 14717 */ MCD::OPC_CheckPredicate, 35, 35, 1, 0, // Skip to: 15013 |
5300 | /* 14722 */ MCD::OPC_Decode, 135, 20, 239, 1, // Opcode: VFCHEDB |
5301 | /* 14727 */ MCD::OPC_FilterValue, 66, 10, 0, 0, // Skip to: 14742 |
5302 | /* 14732 */ MCD::OPC_CheckPredicate, 36, 20, 1, 0, // Skip to: 15013 |
5303 | /* 14737 */ MCD::OPC_Decode, 181, 20, 239, 1, // Opcode: VFKHESB |
5304 | /* 14742 */ MCD::OPC_FilterValue, 67, 10, 0, 0, // Skip to: 14757 |
5305 | /* 14747 */ MCD::OPC_CheckPredicate, 36, 5, 1, 0, // Skip to: 15013 |
5306 | /* 14752 */ MCD::OPC_Decode, 179, 20, 239, 1, // Opcode: VFKHEDB |
5307 | /* 14757 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 14773 |
5308 | /* 14763 */ MCD::OPC_CheckPredicate, 36, 245, 0, 0, // Skip to: 15013 |
5309 | /* 14768 */ MCD::OPC_Decode, 220, 23, 179, 2, // Opcode: WFCHESB |
5310 | /* 14773 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 14789 |
5311 | /* 14779 */ MCD::OPC_CheckPredicate, 35, 229, 0, 0, // Skip to: 15013 |
5312 | /* 14784 */ MCD::OPC_Decode, 218, 23, 180, 2, // Opcode: WFCHEDB |
5313 | /* 14789 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 14805 |
5314 | /* 14795 */ MCD::OPC_CheckPredicate, 36, 213, 0, 0, // Skip to: 15013 |
5315 | /* 14800 */ MCD::OPC_Decode, 222, 23, 239, 1, // Opcode: WFCHEXB |
5316 | /* 14805 */ MCD::OPC_FilterValue, 194, 1, 10, 0, 0, // Skip to: 14821 |
5317 | /* 14811 */ MCD::OPC_CheckPredicate, 36, 197, 0, 0, // Skip to: 15013 |
5318 | /* 14816 */ MCD::OPC_Decode, 248, 23, 179, 2, // Opcode: WFKHESB |
5319 | /* 14821 */ MCD::OPC_FilterValue, 195, 1, 10, 0, 0, // Skip to: 14837 |
5320 | /* 14827 */ MCD::OPC_CheckPredicate, 36, 181, 0, 0, // Skip to: 15013 |
5321 | /* 14832 */ MCD::OPC_Decode, 246, 23, 180, 2, // Opcode: WFKHEDB |
5322 | /* 14837 */ MCD::OPC_FilterValue, 196, 1, 10, 0, 0, // Skip to: 14853 |
5323 | /* 14843 */ MCD::OPC_CheckPredicate, 36, 165, 0, 0, // Skip to: 15013 |
5324 | /* 14848 */ MCD::OPC_Decode, 250, 23, 239, 1, // Opcode: WFKHEXB |
5325 | /* 14853 */ MCD::OPC_FilterValue, 130, 2, 10, 0, 0, // Skip to: 14869 |
5326 | /* 14859 */ MCD::OPC_CheckPredicate, 36, 149, 0, 0, // Skip to: 15013 |
5327 | /* 14864 */ MCD::OPC_Decode, 138, 20, 239, 1, // Opcode: VFCHESBS |
5328 | /* 14869 */ MCD::OPC_FilterValue, 131, 2, 10, 0, 0, // Skip to: 14885 |
5329 | /* 14875 */ MCD::OPC_CheckPredicate, 35, 133, 0, 0, // Skip to: 15013 |
5330 | /* 14880 */ MCD::OPC_Decode, 136, 20, 239, 1, // Opcode: VFCHEDBS |
5331 | /* 14885 */ MCD::OPC_FilterValue, 194, 2, 10, 0, 0, // Skip to: 14901 |
5332 | /* 14891 */ MCD::OPC_CheckPredicate, 36, 117, 0, 0, // Skip to: 15013 |
5333 | /* 14896 */ MCD::OPC_Decode, 182, 20, 239, 1, // Opcode: VFKHESBS |
5334 | /* 14901 */ MCD::OPC_FilterValue, 195, 2, 10, 0, 0, // Skip to: 14917 |
5335 | /* 14907 */ MCD::OPC_CheckPredicate, 36, 101, 0, 0, // Skip to: 15013 |
5336 | /* 14912 */ MCD::OPC_Decode, 180, 20, 239, 1, // Opcode: VFKHEDBS |
5337 | /* 14917 */ MCD::OPC_FilterValue, 130, 3, 10, 0, 0, // Skip to: 14933 |
5338 | /* 14923 */ MCD::OPC_CheckPredicate, 36, 85, 0, 0, // Skip to: 15013 |
5339 | /* 14928 */ MCD::OPC_Decode, 221, 23, 179, 2, // Opcode: WFCHESBS |
5340 | /* 14933 */ MCD::OPC_FilterValue, 131, 3, 10, 0, 0, // Skip to: 14949 |
5341 | /* 14939 */ MCD::OPC_CheckPredicate, 35, 69, 0, 0, // Skip to: 15013 |
5342 | /* 14944 */ MCD::OPC_Decode, 219, 23, 180, 2, // Opcode: WFCHEDBS |
5343 | /* 14949 */ MCD::OPC_FilterValue, 132, 3, 10, 0, 0, // Skip to: 14965 |
5344 | /* 14955 */ MCD::OPC_CheckPredicate, 36, 53, 0, 0, // Skip to: 15013 |
5345 | /* 14960 */ MCD::OPC_Decode, 223, 23, 239, 1, // Opcode: WFCHEXBS |
5346 | /* 14965 */ MCD::OPC_FilterValue, 194, 3, 10, 0, 0, // Skip to: 14981 |
5347 | /* 14971 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 15013 |
5348 | /* 14976 */ MCD::OPC_Decode, 249, 23, 179, 2, // Opcode: WFKHESBS |
5349 | /* 14981 */ MCD::OPC_FilterValue, 195, 3, 10, 0, 0, // Skip to: 14997 |
5350 | /* 14987 */ MCD::OPC_CheckPredicate, 36, 21, 0, 0, // Skip to: 15013 |
5351 | /* 14992 */ MCD::OPC_Decode, 247, 23, 180, 2, // Opcode: WFKHEDBS |
5352 | /* 14997 */ MCD::OPC_FilterValue, 196, 3, 10, 0, 0, // Skip to: 15013 |
5353 | /* 15003 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 15013 |
5354 | /* 15008 */ MCD::OPC_Decode, 251, 23, 239, 1, // Opcode: WFKHEXBS |
5355 | /* 15013 */ MCD::OPC_CheckPredicate, 35, 63, 32, 0, // Skip to: 23273 |
5356 | /* 15018 */ MCD::OPC_Decode, 134, 20, 181, 2, // Opcode: VFCHE |
5357 | /* 15023 */ MCD::OPC_FilterValue, 235, 1, 89, 1, 0, // Skip to: 15374 |
5358 | /* 15029 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5359 | /* 15032 */ MCD::OPC_FilterValue, 0, 44, 32, 0, // Skip to: 23273 |
5360 | /* 15037 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5361 | /* 15040 */ MCD::OPC_FilterValue, 0, 36, 32, 0, // Skip to: 23273 |
5362 | /* 15045 */ MCD::OPC_ExtractField, 12, 12, // Inst{23-12} ... |
5363 | /* 15048 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15063 |
5364 | /* 15053 */ MCD::OPC_CheckPredicate, 36, 50, 1, 0, // Skip to: 15364 |
5365 | /* 15058 */ MCD::OPC_Decode, 139, 20, 239, 1, // Opcode: VFCHSB |
5366 | /* 15063 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15078 |
5367 | /* 15068 */ MCD::OPC_CheckPredicate, 35, 35, 1, 0, // Skip to: 15364 |
5368 | /* 15073 */ MCD::OPC_Decode, 132, 20, 239, 1, // Opcode: VFCHDB |
5369 | /* 15078 */ MCD::OPC_FilterValue, 66, 10, 0, 0, // Skip to: 15093 |
5370 | /* 15083 */ MCD::OPC_CheckPredicate, 36, 20, 1, 0, // Skip to: 15364 |
5371 | /* 15088 */ MCD::OPC_Decode, 183, 20, 239, 1, // Opcode: VFKHSB |
5372 | /* 15093 */ MCD::OPC_FilterValue, 67, 10, 0, 0, // Skip to: 15108 |
5373 | /* 15098 */ MCD::OPC_CheckPredicate, 36, 5, 1, 0, // Skip to: 15364 |
5374 | /* 15103 */ MCD::OPC_Decode, 177, 20, 239, 1, // Opcode: VFKHDB |
5375 | /* 15108 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 15124 |
5376 | /* 15114 */ MCD::OPC_CheckPredicate, 36, 245, 0, 0, // Skip to: 15364 |
5377 | /* 15119 */ MCD::OPC_Decode, 224, 23, 179, 2, // Opcode: WFCHSB |
5378 | /* 15124 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 15140 |
5379 | /* 15130 */ MCD::OPC_CheckPredicate, 35, 229, 0, 0, // Skip to: 15364 |
5380 | /* 15135 */ MCD::OPC_Decode, 216, 23, 180, 2, // Opcode: WFCHDB |
5381 | /* 15140 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 15156 |
5382 | /* 15146 */ MCD::OPC_CheckPredicate, 36, 213, 0, 0, // Skip to: 15364 |
5383 | /* 15151 */ MCD::OPC_Decode, 226, 23, 239, 1, // Opcode: WFCHXB |
5384 | /* 15156 */ MCD::OPC_FilterValue, 194, 1, 10, 0, 0, // Skip to: 15172 |
5385 | /* 15162 */ MCD::OPC_CheckPredicate, 36, 197, 0, 0, // Skip to: 15364 |
5386 | /* 15167 */ MCD::OPC_Decode, 252, 23, 179, 2, // Opcode: WFKHSB |
5387 | /* 15172 */ MCD::OPC_FilterValue, 195, 1, 10, 0, 0, // Skip to: 15188 |
5388 | /* 15178 */ MCD::OPC_CheckPredicate, 36, 181, 0, 0, // Skip to: 15364 |
5389 | /* 15183 */ MCD::OPC_Decode, 244, 23, 180, 2, // Opcode: WFKHDB |
5390 | /* 15188 */ MCD::OPC_FilterValue, 196, 1, 10, 0, 0, // Skip to: 15204 |
5391 | /* 15194 */ MCD::OPC_CheckPredicate, 36, 165, 0, 0, // Skip to: 15364 |
5392 | /* 15199 */ MCD::OPC_Decode, 254, 23, 239, 1, // Opcode: WFKHXB |
5393 | /* 15204 */ MCD::OPC_FilterValue, 130, 2, 10, 0, 0, // Skip to: 15220 |
5394 | /* 15210 */ MCD::OPC_CheckPredicate, 36, 149, 0, 0, // Skip to: 15364 |
5395 | /* 15215 */ MCD::OPC_Decode, 140, 20, 239, 1, // Opcode: VFCHSBS |
5396 | /* 15220 */ MCD::OPC_FilterValue, 131, 2, 10, 0, 0, // Skip to: 15236 |
5397 | /* 15226 */ MCD::OPC_CheckPredicate, 35, 133, 0, 0, // Skip to: 15364 |
5398 | /* 15231 */ MCD::OPC_Decode, 133, 20, 239, 1, // Opcode: VFCHDBS |
5399 | /* 15236 */ MCD::OPC_FilterValue, 194, 2, 10, 0, 0, // Skip to: 15252 |
5400 | /* 15242 */ MCD::OPC_CheckPredicate, 36, 117, 0, 0, // Skip to: 15364 |
5401 | /* 15247 */ MCD::OPC_Decode, 184, 20, 239, 1, // Opcode: VFKHSBS |
5402 | /* 15252 */ MCD::OPC_FilterValue, 195, 2, 10, 0, 0, // Skip to: 15268 |
5403 | /* 15258 */ MCD::OPC_CheckPredicate, 36, 101, 0, 0, // Skip to: 15364 |
5404 | /* 15263 */ MCD::OPC_Decode, 178, 20, 239, 1, // Opcode: VFKHDBS |
5405 | /* 15268 */ MCD::OPC_FilterValue, 130, 3, 10, 0, 0, // Skip to: 15284 |
5406 | /* 15274 */ MCD::OPC_CheckPredicate, 36, 85, 0, 0, // Skip to: 15364 |
5407 | /* 15279 */ MCD::OPC_Decode, 225, 23, 179, 2, // Opcode: WFCHSBS |
5408 | /* 15284 */ MCD::OPC_FilterValue, 131, 3, 10, 0, 0, // Skip to: 15300 |
5409 | /* 15290 */ MCD::OPC_CheckPredicate, 35, 69, 0, 0, // Skip to: 15364 |
5410 | /* 15295 */ MCD::OPC_Decode, 217, 23, 180, 2, // Opcode: WFCHDBS |
5411 | /* 15300 */ MCD::OPC_FilterValue, 132, 3, 10, 0, 0, // Skip to: 15316 |
5412 | /* 15306 */ MCD::OPC_CheckPredicate, 36, 53, 0, 0, // Skip to: 15364 |
5413 | /* 15311 */ MCD::OPC_Decode, 227, 23, 239, 1, // Opcode: WFCHXBS |
5414 | /* 15316 */ MCD::OPC_FilterValue, 194, 3, 10, 0, 0, // Skip to: 15332 |
5415 | /* 15322 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 15364 |
5416 | /* 15327 */ MCD::OPC_Decode, 253, 23, 179, 2, // Opcode: WFKHSBS |
5417 | /* 15332 */ MCD::OPC_FilterValue, 195, 3, 10, 0, 0, // Skip to: 15348 |
5418 | /* 15338 */ MCD::OPC_CheckPredicate, 36, 21, 0, 0, // Skip to: 15364 |
5419 | /* 15343 */ MCD::OPC_Decode, 245, 23, 180, 2, // Opcode: WFKHDBS |
5420 | /* 15348 */ MCD::OPC_FilterValue, 196, 3, 10, 0, 0, // Skip to: 15364 |
5421 | /* 15354 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 15364 |
5422 | /* 15359 */ MCD::OPC_Decode, 255, 23, 239, 1, // Opcode: WFKHXBS |
5423 | /* 15364 */ MCD::OPC_CheckPredicate, 35, 224, 30, 0, // Skip to: 23273 |
5424 | /* 15369 */ MCD::OPC_Decode, 131, 20, 181, 2, // Opcode: VFCH |
5425 | /* 15374 */ MCD::OPC_FilterValue, 238, 1, 107, 0, 0, // Skip to: 15487 |
5426 | /* 15380 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5427 | /* 15383 */ MCD::OPC_FilterValue, 0, 205, 30, 0, // Skip to: 23273 |
5428 | /* 15388 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5429 | /* 15391 */ MCD::OPC_FilterValue, 0, 197, 30, 0, // Skip to: 23273 |
5430 | /* 15396 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5431 | /* 15399 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15414 |
5432 | /* 15404 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 15477 |
5433 | /* 15409 */ MCD::OPC_Decode, 205, 20, 235, 1, // Opcode: VFMINSB |
5434 | /* 15414 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15429 |
5435 | /* 15419 */ MCD::OPC_CheckPredicate, 36, 53, 0, 0, // Skip to: 15477 |
5436 | /* 15424 */ MCD::OPC_Decode, 204, 20, 235, 1, // Opcode: VFMINDB |
5437 | /* 15429 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 15445 |
5438 | /* 15435 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 15477 |
5439 | /* 15440 */ MCD::OPC_Decode, 151, 24, 182, 2, // Opcode: WFMINSB |
5440 | /* 15445 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 15461 |
5441 | /* 15451 */ MCD::OPC_CheckPredicate, 36, 21, 0, 0, // Skip to: 15477 |
5442 | /* 15456 */ MCD::OPC_Decode, 150, 24, 183, 2, // Opcode: WFMINDB |
5443 | /* 15461 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 15477 |
5444 | /* 15467 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 15477 |
5445 | /* 15472 */ MCD::OPC_Decode, 152, 24, 235, 1, // Opcode: WFMINXB |
5446 | /* 15477 */ MCD::OPC_CheckPredicate, 36, 111, 30, 0, // Skip to: 23273 |
5447 | /* 15482 */ MCD::OPC_Decode, 203, 20, 181, 2, // Opcode: VFMIN |
5448 | /* 15487 */ MCD::OPC_FilterValue, 239, 1, 107, 0, 0, // Skip to: 15600 |
5449 | /* 15493 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5450 | /* 15496 */ MCD::OPC_FilterValue, 0, 92, 30, 0, // Skip to: 23273 |
5451 | /* 15501 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5452 | /* 15504 */ MCD::OPC_FilterValue, 0, 84, 30, 0, // Skip to: 23273 |
5453 | /* 15509 */ MCD::OPC_ExtractField, 12, 8, // Inst{19-12} ... |
5454 | /* 15512 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15527 |
5455 | /* 15517 */ MCD::OPC_CheckPredicate, 36, 68, 0, 0, // Skip to: 15590 |
5456 | /* 15522 */ MCD::OPC_Decode, 201, 20, 235, 1, // Opcode: VFMAXSB |
5457 | /* 15527 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15542 |
5458 | /* 15532 */ MCD::OPC_CheckPredicate, 36, 53, 0, 0, // Skip to: 15590 |
5459 | /* 15537 */ MCD::OPC_Decode, 200, 20, 235, 1, // Opcode: VFMAXDB |
5460 | /* 15542 */ MCD::OPC_FilterValue, 130, 1, 10, 0, 0, // Skip to: 15558 |
5461 | /* 15548 */ MCD::OPC_CheckPredicate, 36, 37, 0, 0, // Skip to: 15590 |
5462 | /* 15553 */ MCD::OPC_Decode, 147, 24, 182, 2, // Opcode: WFMAXSB |
5463 | /* 15558 */ MCD::OPC_FilterValue, 131, 1, 10, 0, 0, // Skip to: 15574 |
5464 | /* 15564 */ MCD::OPC_CheckPredicate, 36, 21, 0, 0, // Skip to: 15590 |
5465 | /* 15569 */ MCD::OPC_Decode, 146, 24, 183, 2, // Opcode: WFMAXDB |
5466 | /* 15574 */ MCD::OPC_FilterValue, 132, 1, 10, 0, 0, // Skip to: 15590 |
5467 | /* 15580 */ MCD::OPC_CheckPredicate, 36, 5, 0, 0, // Skip to: 15590 |
5468 | /* 15585 */ MCD::OPC_Decode, 148, 24, 235, 1, // Opcode: WFMAXXB |
5469 | /* 15590 */ MCD::OPC_CheckPredicate, 36, 254, 29, 0, // Skip to: 23273 |
5470 | /* 15595 */ MCD::OPC_Decode, 199, 20, 181, 2, // Opcode: VFMAX |
5471 | /* 15600 */ MCD::OPC_FilterValue, 240, 1, 89, 0, 0, // Skip to: 15695 |
5472 | /* 15606 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5473 | /* 15609 */ MCD::OPC_FilterValue, 0, 235, 29, 0, // Skip to: 23273 |
5474 | /* 15614 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5475 | /* 15617 */ MCD::OPC_FilterValue, 0, 227, 29, 0, // Skip to: 23273 |
5476 | /* 15622 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5477 | /* 15625 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15640 |
5478 | /* 15630 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 15685 |
5479 | /* 15635 */ MCD::OPC_Decode, 237, 18, 239, 1, // Opcode: VAVGLB |
5480 | /* 15640 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15655 |
5481 | /* 15645 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 15685 |
5482 | /* 15650 */ MCD::OPC_Decode, 240, 18, 239, 1, // Opcode: VAVGLH |
5483 | /* 15655 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15670 |
5484 | /* 15660 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 15685 |
5485 | /* 15665 */ MCD::OPC_Decode, 238, 18, 239, 1, // Opcode: VAVGLF |
5486 | /* 15670 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15685 |
5487 | /* 15675 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 15685 |
5488 | /* 15680 */ MCD::OPC_Decode, 239, 18, 239, 1, // Opcode: VAVGLG |
5489 | /* 15685 */ MCD::OPC_CheckPredicate, 35, 159, 29, 0, // Skip to: 23273 |
5490 | /* 15690 */ MCD::OPC_Decode, 236, 18, 147, 2, // Opcode: VAVGL |
5491 | /* 15695 */ MCD::OPC_FilterValue, 241, 1, 104, 0, 0, // Skip to: 15805 |
5492 | /* 15701 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5493 | /* 15704 */ MCD::OPC_FilterValue, 0, 140, 29, 0, // Skip to: 23273 |
5494 | /* 15709 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5495 | /* 15712 */ MCD::OPC_FilterValue, 0, 132, 29, 0, // Skip to: 23273 |
5496 | /* 15717 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5497 | /* 15720 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15735 |
5498 | /* 15725 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 15795 |
5499 | /* 15730 */ MCD::OPC_Decode, 218, 18, 239, 1, // Opcode: VACCB |
5500 | /* 15735 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15750 |
5501 | /* 15740 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 15795 |
5502 | /* 15745 */ MCD::OPC_Decode, 223, 18, 239, 1, // Opcode: VACCH |
5503 | /* 15750 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15765 |
5504 | /* 15755 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 15795 |
5505 | /* 15760 */ MCD::OPC_Decode, 221, 18, 239, 1, // Opcode: VACCF |
5506 | /* 15765 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15780 |
5507 | /* 15770 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 15795 |
5508 | /* 15775 */ MCD::OPC_Decode, 222, 18, 239, 1, // Opcode: VACCG |
5509 | /* 15780 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 15795 |
5510 | /* 15785 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 15795 |
5511 | /* 15790 */ MCD::OPC_Decode, 224, 18, 239, 1, // Opcode: VACCQ |
5512 | /* 15795 */ MCD::OPC_CheckPredicate, 35, 49, 29, 0, // Skip to: 23273 |
5513 | /* 15800 */ MCD::OPC_Decode, 217, 18, 147, 2, // Opcode: VACC |
5514 | /* 15805 */ MCD::OPC_FilterValue, 242, 1, 89, 0, 0, // Skip to: 15900 |
5515 | /* 15811 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5516 | /* 15814 */ MCD::OPC_FilterValue, 0, 30, 29, 0, // Skip to: 23273 |
5517 | /* 15819 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5518 | /* 15822 */ MCD::OPC_FilterValue, 0, 22, 29, 0, // Skip to: 23273 |
5519 | /* 15827 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5520 | /* 15830 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15845 |
5521 | /* 15835 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 15890 |
5522 | /* 15840 */ MCD::OPC_Decode, 232, 18, 239, 1, // Opcode: VAVGB |
5523 | /* 15845 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15860 |
5524 | /* 15850 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 15890 |
5525 | /* 15855 */ MCD::OPC_Decode, 235, 18, 239, 1, // Opcode: VAVGH |
5526 | /* 15860 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15875 |
5527 | /* 15865 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 15890 |
5528 | /* 15870 */ MCD::OPC_Decode, 233, 18, 239, 1, // Opcode: VAVGF |
5529 | /* 15875 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15890 |
5530 | /* 15880 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 15890 |
5531 | /* 15885 */ MCD::OPC_Decode, 234, 18, 239, 1, // Opcode: VAVGG |
5532 | /* 15890 */ MCD::OPC_CheckPredicate, 35, 210, 28, 0, // Skip to: 23273 |
5533 | /* 15895 */ MCD::OPC_Decode, 231, 18, 147, 2, // Opcode: VAVG |
5534 | /* 15900 */ MCD::OPC_FilterValue, 243, 1, 104, 0, 0, // Skip to: 16010 |
5535 | /* 15906 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5536 | /* 15909 */ MCD::OPC_FilterValue, 0, 191, 28, 0, // Skip to: 23273 |
5537 | /* 15914 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5538 | /* 15917 */ MCD::OPC_FilterValue, 0, 183, 28, 0, // Skip to: 23273 |
5539 | /* 15922 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5540 | /* 15925 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15940 |
5541 | /* 15930 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 16000 |
5542 | /* 15935 */ MCD::OPC_Decode, 215, 18, 239, 1, // Opcode: VAB |
5543 | /* 15940 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15955 |
5544 | /* 15945 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 16000 |
5545 | /* 15950 */ MCD::OPC_Decode, 228, 18, 239, 1, // Opcode: VAH |
5546 | /* 15955 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15970 |
5547 | /* 15960 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 16000 |
5548 | /* 15965 */ MCD::OPC_Decode, 226, 18, 239, 1, // Opcode: VAF |
5549 | /* 15970 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15985 |
5550 | /* 15975 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16000 |
5551 | /* 15980 */ MCD::OPC_Decode, 227, 18, 239, 1, // Opcode: VAG |
5552 | /* 15985 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 16000 |
5553 | /* 15990 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16000 |
5554 | /* 15995 */ MCD::OPC_Decode, 230, 18, 239, 1, // Opcode: VAQ |
5555 | /* 16000 */ MCD::OPC_CheckPredicate, 35, 100, 28, 0, // Skip to: 23273 |
5556 | /* 16005 */ MCD::OPC_Decode, 214, 18, 147, 2, // Opcode: VA |
5557 | /* 16010 */ MCD::OPC_FilterValue, 245, 1, 104, 0, 0, // Skip to: 16120 |
5558 | /* 16016 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5559 | /* 16019 */ MCD::OPC_FilterValue, 0, 81, 28, 0, // Skip to: 23273 |
5560 | /* 16024 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5561 | /* 16027 */ MCD::OPC_FilterValue, 0, 73, 28, 0, // Skip to: 23273 |
5562 | /* 16032 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5563 | /* 16035 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16050 |
5564 | /* 16040 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 16110 |
5565 | /* 16045 */ MCD::OPC_Decode, 216, 22, 239, 1, // Opcode: VSCBIB |
5566 | /* 16050 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16065 |
5567 | /* 16055 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 16110 |
5568 | /* 16060 */ MCD::OPC_Decode, 219, 22, 239, 1, // Opcode: VSCBIH |
5569 | /* 16065 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 16080 |
5570 | /* 16070 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 16110 |
5571 | /* 16075 */ MCD::OPC_Decode, 217, 22, 239, 1, // Opcode: VSCBIF |
5572 | /* 16080 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 16095 |
5573 | /* 16085 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16110 |
5574 | /* 16090 */ MCD::OPC_Decode, 218, 22, 239, 1, // Opcode: VSCBIG |
5575 | /* 16095 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 16110 |
5576 | /* 16100 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16110 |
5577 | /* 16105 */ MCD::OPC_Decode, 220, 22, 239, 1, // Opcode: VSCBIQ |
5578 | /* 16110 */ MCD::OPC_CheckPredicate, 35, 246, 27, 0, // Skip to: 23273 |
5579 | /* 16115 */ MCD::OPC_Decode, 215, 22, 147, 2, // Opcode: VSCBI |
5580 | /* 16120 */ MCD::OPC_FilterValue, 247, 1, 104, 0, 0, // Skip to: 16230 |
5581 | /* 16126 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5582 | /* 16129 */ MCD::OPC_FilterValue, 0, 227, 27, 0, // Skip to: 23273 |
5583 | /* 16134 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5584 | /* 16137 */ MCD::OPC_FilterValue, 0, 219, 27, 0, // Skip to: 23273 |
5585 | /* 16142 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5586 | /* 16145 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16160 |
5587 | /* 16150 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 16220 |
5588 | /* 16155 */ MCD::OPC_Decode, 210, 22, 239, 1, // Opcode: VSB |
5589 | /* 16160 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16175 |
5590 | /* 16165 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 16220 |
5591 | /* 16170 */ MCD::OPC_Decode, 236, 22, 239, 1, // Opcode: VSH |
5592 | /* 16175 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 16190 |
5593 | /* 16180 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 16220 |
5594 | /* 16185 */ MCD::OPC_Decode, 234, 22, 239, 1, // Opcode: VSF |
5595 | /* 16190 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 16205 |
5596 | /* 16195 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16220 |
5597 | /* 16200 */ MCD::OPC_Decode, 235, 22, 239, 1, // Opcode: VSG |
5598 | /* 16205 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 16220 |
5599 | /* 16210 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16220 |
5600 | /* 16215 */ MCD::OPC_Decode, 242, 22, 239, 1, // Opcode: VSQ |
5601 | /* 16220 */ MCD::OPC_CheckPredicate, 35, 136, 27, 0, // Skip to: 23273 |
5602 | /* 16225 */ MCD::OPC_Decode, 209, 22, 147, 2, // Opcode: VS |
5603 | /* 16230 */ MCD::OPC_FilterValue, 248, 1, 189, 0, 0, // Skip to: 16425 |
5604 | /* 16236 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5605 | /* 16239 */ MCD::OPC_FilterValue, 0, 117, 27, 0, // Skip to: 23273 |
5606 | /* 16244 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
5607 | /* 16247 */ MCD::OPC_FilterValue, 0, 109, 27, 0, // Skip to: 23273 |
5608 | /* 16252 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5609 | /* 16255 */ MCD::OPC_FilterValue, 0, 101, 27, 0, // Skip to: 23273 |
5610 | /* 16260 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5611 | /* 16263 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 16301 |
5612 | /* 16268 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5613 | /* 16271 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16286 |
5614 | /* 16276 */ MCD::OPC_CheckPredicate, 35, 134, 0, 0, // Skip to: 16415 |
5615 | /* 16281 */ MCD::OPC_Decode, 249, 18, 239, 1, // Opcode: VCEQB |
5616 | /* 16286 */ MCD::OPC_FilterValue, 1, 124, 0, 0, // Skip to: 16415 |
5617 | /* 16291 */ MCD::OPC_CheckPredicate, 35, 119, 0, 0, // Skip to: 16415 |
5618 | /* 16296 */ MCD::OPC_Decode, 250, 18, 239, 1, // Opcode: VCEQBS |
5619 | /* 16301 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 16339 |
5620 | /* 16306 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5621 | /* 16309 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16324 |
5622 | /* 16314 */ MCD::OPC_CheckPredicate, 35, 96, 0, 0, // Skip to: 16415 |
5623 | /* 16319 */ MCD::OPC_Decode, 255, 18, 239, 1, // Opcode: VCEQH |
5624 | /* 16324 */ MCD::OPC_FilterValue, 1, 86, 0, 0, // Skip to: 16415 |
5625 | /* 16329 */ MCD::OPC_CheckPredicate, 35, 81, 0, 0, // Skip to: 16415 |
5626 | /* 16334 */ MCD::OPC_Decode, 128, 19, 239, 1, // Opcode: VCEQHS |
5627 | /* 16339 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 16377 |
5628 | /* 16344 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5629 | /* 16347 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16362 |
5630 | /* 16352 */ MCD::OPC_CheckPredicate, 35, 58, 0, 0, // Skip to: 16415 |
5631 | /* 16357 */ MCD::OPC_Decode, 251, 18, 239, 1, // Opcode: VCEQF |
5632 | /* 16362 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 16415 |
5633 | /* 16367 */ MCD::OPC_CheckPredicate, 35, 43, 0, 0, // Skip to: 16415 |
5634 | /* 16372 */ MCD::OPC_Decode, 252, 18, 239, 1, // Opcode: VCEQFS |
5635 | /* 16377 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 16415 |
5636 | /* 16382 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5637 | /* 16385 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16400 |
5638 | /* 16390 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16415 |
5639 | /* 16395 */ MCD::OPC_Decode, 253, 18, 239, 1, // Opcode: VCEQG |
5640 | /* 16400 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16415 |
5641 | /* 16405 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16415 |
5642 | /* 16410 */ MCD::OPC_Decode, 254, 18, 239, 1, // Opcode: VCEQGS |
5643 | /* 16415 */ MCD::OPC_CheckPredicate, 35, 197, 26, 0, // Skip to: 23273 |
5644 | /* 16420 */ MCD::OPC_Decode, 248, 18, 236, 1, // Opcode: VCEQ |
5645 | /* 16425 */ MCD::OPC_FilterValue, 249, 1, 189, 0, 0, // Skip to: 16620 |
5646 | /* 16431 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5647 | /* 16434 */ MCD::OPC_FilterValue, 0, 178, 26, 0, // Skip to: 23273 |
5648 | /* 16439 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
5649 | /* 16442 */ MCD::OPC_FilterValue, 0, 170, 26, 0, // Skip to: 23273 |
5650 | /* 16447 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5651 | /* 16450 */ MCD::OPC_FilterValue, 0, 162, 26, 0, // Skip to: 23273 |
5652 | /* 16455 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5653 | /* 16458 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 16496 |
5654 | /* 16463 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5655 | /* 16466 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16481 |
5656 | /* 16471 */ MCD::OPC_CheckPredicate, 35, 134, 0, 0, // Skip to: 16610 |
5657 | /* 16476 */ MCD::OPC_Decode, 145, 19, 239, 1, // Opcode: VCHLB |
5658 | /* 16481 */ MCD::OPC_FilterValue, 1, 124, 0, 0, // Skip to: 16610 |
5659 | /* 16486 */ MCD::OPC_CheckPredicate, 35, 119, 0, 0, // Skip to: 16610 |
5660 | /* 16491 */ MCD::OPC_Decode, 146, 19, 239, 1, // Opcode: VCHLBS |
5661 | /* 16496 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 16534 |
5662 | /* 16501 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5663 | /* 16504 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16519 |
5664 | /* 16509 */ MCD::OPC_CheckPredicate, 35, 96, 0, 0, // Skip to: 16610 |
5665 | /* 16514 */ MCD::OPC_Decode, 151, 19, 239, 1, // Opcode: VCHLH |
5666 | /* 16519 */ MCD::OPC_FilterValue, 1, 86, 0, 0, // Skip to: 16610 |
5667 | /* 16524 */ MCD::OPC_CheckPredicate, 35, 81, 0, 0, // Skip to: 16610 |
5668 | /* 16529 */ MCD::OPC_Decode, 152, 19, 239, 1, // Opcode: VCHLHS |
5669 | /* 16534 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 16572 |
5670 | /* 16539 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5671 | /* 16542 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16557 |
5672 | /* 16547 */ MCD::OPC_CheckPredicate, 35, 58, 0, 0, // Skip to: 16610 |
5673 | /* 16552 */ MCD::OPC_Decode, 147, 19, 239, 1, // Opcode: VCHLF |
5674 | /* 16557 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 16610 |
5675 | /* 16562 */ MCD::OPC_CheckPredicate, 35, 43, 0, 0, // Skip to: 16610 |
5676 | /* 16567 */ MCD::OPC_Decode, 148, 19, 239, 1, // Opcode: VCHLFS |
5677 | /* 16572 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 16610 |
5678 | /* 16577 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5679 | /* 16580 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16595 |
5680 | /* 16585 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16610 |
5681 | /* 16590 */ MCD::OPC_Decode, 149, 19, 239, 1, // Opcode: VCHLG |
5682 | /* 16595 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16610 |
5683 | /* 16600 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16610 |
5684 | /* 16605 */ MCD::OPC_Decode, 150, 19, 239, 1, // Opcode: VCHLGS |
5685 | /* 16610 */ MCD::OPC_CheckPredicate, 35, 2, 26, 0, // Skip to: 23273 |
5686 | /* 16615 */ MCD::OPC_Decode, 144, 19, 236, 1, // Opcode: VCHL |
5687 | /* 16620 */ MCD::OPC_FilterValue, 251, 1, 189, 0, 0, // Skip to: 16815 |
5688 | /* 16626 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5689 | /* 16629 */ MCD::OPC_FilterValue, 0, 239, 25, 0, // Skip to: 23273 |
5690 | /* 16634 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... |
5691 | /* 16637 */ MCD::OPC_FilterValue, 0, 231, 25, 0, // Skip to: 23273 |
5692 | /* 16642 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... |
5693 | /* 16645 */ MCD::OPC_FilterValue, 0, 223, 25, 0, // Skip to: 23273 |
5694 | /* 16650 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5695 | /* 16653 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 16691 |
5696 | /* 16658 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5697 | /* 16661 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16676 |
5698 | /* 16666 */ MCD::OPC_CheckPredicate, 35, 134, 0, 0, // Skip to: 16805 |
5699 | /* 16671 */ MCD::OPC_Decode, 136, 19, 239, 1, // Opcode: VCHB |
5700 | /* 16676 */ MCD::OPC_FilterValue, 1, 124, 0, 0, // Skip to: 16805 |
5701 | /* 16681 */ MCD::OPC_CheckPredicate, 35, 119, 0, 0, // Skip to: 16805 |
5702 | /* 16686 */ MCD::OPC_Decode, 137, 19, 239, 1, // Opcode: VCHBS |
5703 | /* 16691 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 16729 |
5704 | /* 16696 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5705 | /* 16699 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16714 |
5706 | /* 16704 */ MCD::OPC_CheckPredicate, 35, 96, 0, 0, // Skip to: 16805 |
5707 | /* 16709 */ MCD::OPC_Decode, 142, 19, 239, 1, // Opcode: VCHH |
5708 | /* 16714 */ MCD::OPC_FilterValue, 1, 86, 0, 0, // Skip to: 16805 |
5709 | /* 16719 */ MCD::OPC_CheckPredicate, 35, 81, 0, 0, // Skip to: 16805 |
5710 | /* 16724 */ MCD::OPC_Decode, 143, 19, 239, 1, // Opcode: VCHHS |
5711 | /* 16729 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 16767 |
5712 | /* 16734 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5713 | /* 16737 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16752 |
5714 | /* 16742 */ MCD::OPC_CheckPredicate, 35, 58, 0, 0, // Skip to: 16805 |
5715 | /* 16747 */ MCD::OPC_Decode, 138, 19, 239, 1, // Opcode: VCHF |
5716 | /* 16752 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 16805 |
5717 | /* 16757 */ MCD::OPC_CheckPredicate, 35, 43, 0, 0, // Skip to: 16805 |
5718 | /* 16762 */ MCD::OPC_Decode, 139, 19, 239, 1, // Opcode: VCHFS |
5719 | /* 16767 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 16805 |
5720 | /* 16772 */ MCD::OPC_ExtractField, 20, 4, // Inst{23-20} ... |
5721 | /* 16775 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16790 |
5722 | /* 16780 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16805 |
5723 | /* 16785 */ MCD::OPC_Decode, 140, 19, 239, 1, // Opcode: VCHG |
5724 | /* 16790 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16805 |
5725 | /* 16795 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16805 |
5726 | /* 16800 */ MCD::OPC_Decode, 141, 19, 239, 1, // Opcode: VCHGS |
5727 | /* 16805 */ MCD::OPC_CheckPredicate, 35, 63, 25, 0, // Skip to: 23273 |
5728 | /* 16810 */ MCD::OPC_Decode, 135, 19, 236, 1, // Opcode: VCH |
5729 | /* 16815 */ MCD::OPC_FilterValue, 252, 1, 89, 0, 0, // Skip to: 16910 |
5730 | /* 16821 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5731 | /* 16824 */ MCD::OPC_FilterValue, 0, 44, 25, 0, // Skip to: 23273 |
5732 | /* 16829 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5733 | /* 16832 */ MCD::OPC_FilterValue, 0, 36, 25, 0, // Skip to: 23273 |
5734 | /* 16837 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5735 | /* 16840 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16855 |
5736 | /* 16845 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 16900 |
5737 | /* 16850 */ MCD::OPC_Decode, 130, 22, 239, 1, // Opcode: VMNLB |
5738 | /* 16855 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16870 |
5739 | /* 16860 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 16900 |
5740 | /* 16865 */ MCD::OPC_Decode, 133, 22, 239, 1, // Opcode: VMNLH |
5741 | /* 16870 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 16885 |
5742 | /* 16875 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16900 |
5743 | /* 16880 */ MCD::OPC_Decode, 131, 22, 239, 1, // Opcode: VMNLF |
5744 | /* 16885 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 16900 |
5745 | /* 16890 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16900 |
5746 | /* 16895 */ MCD::OPC_Decode, 132, 22, 239, 1, // Opcode: VMNLG |
5747 | /* 16900 */ MCD::OPC_CheckPredicate, 35, 224, 24, 0, // Skip to: 23273 |
5748 | /* 16905 */ MCD::OPC_Decode, 129, 22, 147, 2, // Opcode: VMNL |
5749 | /* 16910 */ MCD::OPC_FilterValue, 253, 1, 89, 0, 0, // Skip to: 17005 |
5750 | /* 16916 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5751 | /* 16919 */ MCD::OPC_FilterValue, 0, 205, 24, 0, // Skip to: 23273 |
5752 | /* 16924 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5753 | /* 16927 */ MCD::OPC_FilterValue, 0, 197, 24, 0, // Skip to: 23273 |
5754 | /* 16932 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5755 | /* 16935 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16950 |
5756 | /* 16940 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 16995 |
5757 | /* 16945 */ MCD::OPC_Decode, 158, 22, 239, 1, // Opcode: VMXLB |
5758 | /* 16950 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16965 |
5759 | /* 16955 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 16995 |
5760 | /* 16960 */ MCD::OPC_Decode, 161, 22, 239, 1, // Opcode: VMXLH |
5761 | /* 16965 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 16980 |
5762 | /* 16970 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 16995 |
5763 | /* 16975 */ MCD::OPC_Decode, 159, 22, 239, 1, // Opcode: VMXLF |
5764 | /* 16980 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 16995 |
5765 | /* 16985 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 16995 |
5766 | /* 16990 */ MCD::OPC_Decode, 160, 22, 239, 1, // Opcode: VMXLG |
5767 | /* 16995 */ MCD::OPC_CheckPredicate, 35, 129, 24, 0, // Skip to: 23273 |
5768 | /* 17000 */ MCD::OPC_Decode, 157, 22, 147, 2, // Opcode: VMXL |
5769 | /* 17005 */ MCD::OPC_FilterValue, 254, 1, 89, 0, 0, // Skip to: 17100 |
5770 | /* 17011 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5771 | /* 17014 */ MCD::OPC_FilterValue, 0, 110, 24, 0, // Skip to: 23273 |
5772 | /* 17019 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5773 | /* 17022 */ MCD::OPC_FilterValue, 0, 102, 24, 0, // Skip to: 23273 |
5774 | /* 17027 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5775 | /* 17030 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17045 |
5776 | /* 17035 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 17090 |
5777 | /* 17040 */ MCD::OPC_Decode, 253, 21, 239, 1, // Opcode: VMNB |
5778 | /* 17045 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 17060 |
5779 | /* 17050 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 17090 |
5780 | /* 17055 */ MCD::OPC_Decode, 128, 22, 239, 1, // Opcode: VMNH |
5781 | /* 17060 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 17075 |
5782 | /* 17065 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 17090 |
5783 | /* 17070 */ MCD::OPC_Decode, 254, 21, 239, 1, // Opcode: VMNF |
5784 | /* 17075 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 17090 |
5785 | /* 17080 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 17090 |
5786 | /* 17085 */ MCD::OPC_Decode, 255, 21, 239, 1, // Opcode: VMNG |
5787 | /* 17090 */ MCD::OPC_CheckPredicate, 35, 34, 24, 0, // Skip to: 23273 |
5788 | /* 17095 */ MCD::OPC_Decode, 252, 21, 147, 2, // Opcode: VMN |
5789 | /* 17100 */ MCD::OPC_FilterValue, 255, 1, 23, 24, 0, // Skip to: 23273 |
5790 | /* 17106 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... |
5791 | /* 17109 */ MCD::OPC_FilterValue, 0, 15, 24, 0, // Skip to: 23273 |
5792 | /* 17114 */ MCD::OPC_ExtractField, 16, 12, // Inst{27-16} ... |
5793 | /* 17117 */ MCD::OPC_FilterValue, 0, 7, 24, 0, // Skip to: 23273 |
5794 | /* 17122 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
5795 | /* 17125 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17140 |
5796 | /* 17130 */ MCD::OPC_CheckPredicate, 35, 50, 0, 0, // Skip to: 17185 |
5797 | /* 17135 */ MCD::OPC_Decode, 153, 22, 239, 1, // Opcode: VMXB |
5798 | /* 17140 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 17155 |
5799 | /* 17145 */ MCD::OPC_CheckPredicate, 35, 35, 0, 0, // Skip to: 17185 |
5800 | /* 17150 */ MCD::OPC_Decode, 156, 22, 239, 1, // Opcode: VMXH |
5801 | /* 17155 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 17170 |
5802 | /* 17160 */ MCD::OPC_CheckPredicate, 35, 20, 0, 0, // Skip to: 17185 |
5803 | /* 17165 */ MCD::OPC_Decode, 154, 22, 239, 1, // Opcode: VMXF |
5804 | /* 17170 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 17185 |
5805 | /* 17175 */ MCD::OPC_CheckPredicate, 35, 5, 0, 0, // Skip to: 17185 |
5806 | /* 17180 */ MCD::OPC_Decode, 155, 22, 239, 1, // Opcode: VMXG |
5807 | /* 17185 */ MCD::OPC_CheckPredicate, 35, 195, 23, 0, // Skip to: 23273 |
5808 | /* 17190 */ MCD::OPC_Decode, 152, 22, 147, 2, // Opcode: VMX |
5809 | /* 17195 */ MCD::OPC_FilterValue, 232, 1, 5, 0, 0, // Skip to: 17206 |
5810 | /* 17201 */ MCD::OPC_Decode, 233, 14, 198, 1, // Opcode: MVCIN |
5811 | /* 17206 */ MCD::OPC_FilterValue, 233, 1, 5, 0, 0, // Skip to: 17217 |
5812 | /* 17212 */ MCD::OPC_Decode, 200, 15, 200, 1, // Opcode: PKA |
5813 | /* 17217 */ MCD::OPC_FilterValue, 234, 1, 5, 0, 0, // Skip to: 17228 |
5814 | /* 17223 */ MCD::OPC_Decode, 211, 18, 198, 1, // Opcode: UNPKA |
5815 | /* 17228 */ MCD::OPC_FilterValue, 235, 1, 245, 8, 0, // Skip to: 19527 |
5816 | /* 17234 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5817 | /* 17237 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 17247 |
5818 | /* 17242 */ MCD::OPC_Decode, 141, 12, 184, 2, // Opcode: LMG |
5819 | /* 17247 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 17257 |
5820 | /* 17252 */ MCD::OPC_Decode, 134, 17, 185, 2, // Opcode: SRAG |
5821 | /* 17257 */ MCD::OPC_FilterValue, 11, 5, 0, 0, // Skip to: 17267 |
5822 | /* 17262 */ MCD::OPC_Decode, 218, 16, 185, 2, // Opcode: SLAG |
5823 | /* 17267 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 17277 |
5824 | /* 17272 */ MCD::OPC_Decode, 141, 17, 185, 2, // Opcode: SRLG |
5825 | /* 17277 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 17287 |
5826 | /* 17282 */ MCD::OPC_Decode, 237, 16, 185, 2, // Opcode: SLLG |
5827 | /* 17287 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 17297 |
5828 | /* 17292 */ MCD::OPC_Decode, 190, 18, 184, 2, // Opcode: TRACG |
5829 | /* 17297 */ MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 17307 |
5830 | /* 17302 */ MCD::OPC_Decode, 173, 9, 186, 2, // Opcode: CSY |
5831 | /* 17307 */ MCD::OPC_FilterValue, 28, 5, 0, 0, // Skip to: 17317 |
5832 | /* 17312 */ MCD::OPC_Decode, 230, 15, 185, 2, // Opcode: RLLG |
5833 | /* 17317 */ MCD::OPC_FilterValue, 29, 5, 0, 0, // Skip to: 17327 |
5834 | /* 17322 */ MCD::OPC_Decode, 229, 15, 187, 2, // Opcode: RLL |
5835 | /* 17327 */ MCD::OPC_FilterValue, 32, 5, 0, 0, // Skip to: 17337 |
5836 | /* 17332 */ MCD::OPC_Decode, 176, 8, 188, 2, // Opcode: CLMH |
5837 | /* 17337 */ MCD::OPC_FilterValue, 33, 5, 0, 0, // Skip to: 17347 |
5838 | /* 17342 */ MCD::OPC_Decode, 177, 8, 189, 2, // Opcode: CLMY |
5839 | /* 17347 */ MCD::OPC_FilterValue, 35, 103, 0, 0, // Skip to: 17455 |
5840 | /* 17352 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
5841 | /* 17355 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 17370 |
5842 | /* 17360 */ MCD::OPC_CheckPredicate, 37, 80, 0, 0, // Skip to: 17445 |
5843 | /* 17365 */ MCD::OPC_Decode, 226, 8, 190, 2, // Opcode: CLTAsmH |
5844 | /* 17370 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 17385 |
5845 | /* 17375 */ MCD::OPC_CheckPredicate, 37, 65, 0, 0, // Skip to: 17445 |
5846 | /* 17380 */ MCD::OPC_Decode, 228, 8, 190, 2, // Opcode: CLTAsmL |
5847 | /* 17385 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 17400 |
5848 | /* 17390 */ MCD::OPC_CheckPredicate, 37, 50, 0, 0, // Skip to: 17445 |
5849 | /* 17395 */ MCD::OPC_Decode, 230, 8, 190, 2, // Opcode: CLTAsmLH |
5850 | /* 17400 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 17415 |
5851 | /* 17405 */ MCD::OPC_CheckPredicate, 37, 35, 0, 0, // Skip to: 17445 |
5852 | /* 17410 */ MCD::OPC_Decode, 225, 8, 190, 2, // Opcode: CLTAsmE |
5853 | /* 17415 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 17430 |
5854 | /* 17420 */ MCD::OPC_CheckPredicate, 37, 20, 0, 0, // Skip to: 17445 |
5855 | /* 17425 */ MCD::OPC_Decode, 227, 8, 190, 2, // Opcode: CLTAsmHE |
5856 | /* 17430 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 17445 |
5857 | /* 17435 */ MCD::OPC_CheckPredicate, 37, 5, 0, 0, // Skip to: 17445 |
5858 | /* 17440 */ MCD::OPC_Decode, 229, 8, 190, 2, // Opcode: CLTAsmLE |
5859 | /* 17445 */ MCD::OPC_CheckPredicate, 37, 191, 22, 0, // Skip to: 23273 |
5860 | /* 17450 */ MCD::OPC_Decode, 224, 8, 191, 2, // Opcode: CLTAsm |
5861 | /* 17455 */ MCD::OPC_FilterValue, 36, 5, 0, 0, // Skip to: 17465 |
5862 | /* 17460 */ MCD::OPC_Decode, 192, 17, 184, 2, // Opcode: STMG |
5863 | /* 17465 */ MCD::OPC_FilterValue, 37, 5, 0, 0, // Skip to: 17475 |
5864 | /* 17470 */ MCD::OPC_Decode, 172, 17, 192, 2, // Opcode: STCTG |
5865 | /* 17475 */ MCD::OPC_FilterValue, 38, 5, 0, 0, // Skip to: 17485 |
5866 | /* 17480 */ MCD::OPC_Decode, 193, 17, 193, 2, // Opcode: STMH |
5867 | /* 17485 */ MCD::OPC_FilterValue, 43, 103, 0, 0, // Skip to: 17593 |
5868 | /* 17490 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
5869 | /* 17493 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 17508 |
5870 | /* 17498 */ MCD::OPC_CheckPredicate, 37, 80, 0, 0, // Skip to: 17583 |
5871 | /* 17503 */ MCD::OPC_Decode, 254, 7, 194, 2, // Opcode: CLGTAsmH |
5872 | /* 17508 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 17523 |
5873 | /* 17513 */ MCD::OPC_CheckPredicate, 37, 65, 0, 0, // Skip to: 17583 |
5874 | /* 17518 */ MCD::OPC_Decode, 128, 8, 194, 2, // Opcode: CLGTAsmL |
5875 | /* 17523 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 17538 |
5876 | /* 17528 */ MCD::OPC_CheckPredicate, 37, 50, 0, 0, // Skip to: 17583 |
5877 | /* 17533 */ MCD::OPC_Decode, 130, 8, 194, 2, // Opcode: CLGTAsmLH |
5878 | /* 17538 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 17553 |
5879 | /* 17543 */ MCD::OPC_CheckPredicate, 37, 35, 0, 0, // Skip to: 17583 |
5880 | /* 17548 */ MCD::OPC_Decode, 253, 7, 194, 2, // Opcode: CLGTAsmE |
5881 | /* 17553 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 17568 |
5882 | /* 17558 */ MCD::OPC_CheckPredicate, 37, 20, 0, 0, // Skip to: 17583 |
5883 | /* 17563 */ MCD::OPC_Decode, 255, 7, 194, 2, // Opcode: CLGTAsmHE |
5884 | /* 17568 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 17583 |
5885 | /* 17573 */ MCD::OPC_CheckPredicate, 37, 5, 0, 0, // Skip to: 17583 |
5886 | /* 17578 */ MCD::OPC_Decode, 129, 8, 194, 2, // Opcode: CLGTAsmLE |
5887 | /* 17583 */ MCD::OPC_CheckPredicate, 37, 53, 22, 0, // Skip to: 23273 |
5888 | /* 17588 */ MCD::OPC_Decode, 252, 7, 195, 2, // Opcode: CLGTAsm |
5889 | /* 17593 */ MCD::OPC_FilterValue, 44, 5, 0, 0, // Skip to: 17603 |
5890 | /* 17598 */ MCD::OPC_Decode, 168, 17, 188, 2, // Opcode: STCMH |
5891 | /* 17603 */ MCD::OPC_FilterValue, 45, 5, 0, 0, // Skip to: 17613 |
5892 | /* 17608 */ MCD::OPC_Decode, 169, 17, 189, 2, // Opcode: STCMY |
5893 | /* 17613 */ MCD::OPC_FilterValue, 47, 5, 0, 0, // Skip to: 17623 |
5894 | /* 17618 */ MCD::OPC_Decode, 185, 11, 192, 2, // Opcode: LCTLG |
5895 | /* 17623 */ MCD::OPC_FilterValue, 48, 5, 0, 0, // Skip to: 17633 |
5896 | /* 17628 */ MCD::OPC_Decode, 168, 9, 196, 2, // Opcode: CSG |
5897 | /* 17633 */ MCD::OPC_FilterValue, 49, 5, 0, 0, // Skip to: 17643 |
5898 | /* 17638 */ MCD::OPC_Decode, 193, 5, 197, 2, // Opcode: CDSY |
5899 | /* 17643 */ MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 17653 |
5900 | /* 17648 */ MCD::OPC_Decode, 191, 5, 197, 2, // Opcode: CDSG |
5901 | /* 17653 */ MCD::OPC_FilterValue, 68, 5, 0, 0, // Skip to: 17663 |
5902 | /* 17658 */ MCD::OPC_Decode, 168, 5, 196, 2, // Opcode: BXHG |
5903 | /* 17663 */ MCD::OPC_FilterValue, 69, 5, 0, 0, // Skip to: 17673 |
5904 | /* 17668 */ MCD::OPC_Decode, 170, 5, 196, 2, // Opcode: BXLEG |
5905 | /* 17673 */ MCD::OPC_FilterValue, 76, 5, 0, 0, // Skip to: 17683 |
5906 | /* 17678 */ MCD::OPC_Decode, 250, 9, 185, 2, // Opcode: ECAG |
5907 | /* 17683 */ MCD::OPC_FilterValue, 81, 5, 0, 0, // Skip to: 17693 |
5908 | /* 17688 */ MCD::OPC_Decode, 183, 18, 198, 2, // Opcode: TMY |
5909 | /* 17693 */ MCD::OPC_FilterValue, 82, 5, 0, 0, // Skip to: 17703 |
5910 | /* 17698 */ MCD::OPC_Decode, 247, 14, 198, 2, // Opcode: MVIY |
5911 | /* 17703 */ MCD::OPC_FilterValue, 84, 5, 0, 0, // Skip to: 17713 |
5912 | /* 17708 */ MCD::OPC_Decode, 154, 15, 198, 2, // Opcode: NIY |
5913 | /* 17713 */ MCD::OPC_FilterValue, 85, 5, 0, 0, // Skip to: 17723 |
5914 | /* 17718 */ MCD::OPC_Decode, 174, 8, 198, 2, // Opcode: CLIY |
5915 | /* 17723 */ MCD::OPC_FilterValue, 86, 5, 0, 0, // Skip to: 17733 |
5916 | /* 17728 */ MCD::OPC_Decode, 185, 15, 198, 2, // Opcode: OIY |
5917 | /* 17733 */ MCD::OPC_FilterValue, 87, 5, 0, 0, // Skip to: 17743 |
5918 | /* 17738 */ MCD::OPC_Decode, 186, 24, 198, 2, // Opcode: XIY |
5919 | /* 17743 */ MCD::OPC_FilterValue, 106, 5, 0, 0, // Skip to: 17753 |
5920 | /* 17748 */ MCD::OPC_Decode, 188, 4, 199, 2, // Opcode: ASI |
5921 | /* 17753 */ MCD::OPC_FilterValue, 110, 5, 0, 0, // Skip to: 17763 |
5922 | /* 17758 */ MCD::OPC_Decode, 181, 4, 199, 2, // Opcode: ALSI |
5923 | /* 17763 */ MCD::OPC_FilterValue, 113, 17, 0, 0, // Skip to: 17785 |
5924 | /* 17768 */ MCD::OPC_CheckPredicate, 0, 124, 21, 0, // Skip to: 23273 |
5925 | /* 17773 */ MCD::OPC_CheckField, 32, 8, 0, 117, 21, 0, // Skip to: 23273 |
5926 | /* 17780 */ MCD::OPC_Decode, 241, 13, 200, 2, // Opcode: LPSWEY |
5927 | /* 17785 */ MCD::OPC_FilterValue, 122, 5, 0, 0, // Skip to: 17795 |
5928 | /* 17790 */ MCD::OPC_Decode, 154, 4, 199, 2, // Opcode: AGSI |
5929 | /* 17795 */ MCD::OPC_FilterValue, 126, 5, 0, 0, // Skip to: 17805 |
5930 | /* 17800 */ MCD::OPC_Decode, 175, 4, 199, 2, // Opcode: ALGSI |
5931 | /* 17805 */ MCD::OPC_FilterValue, 128, 1, 5, 0, 0, // Skip to: 17816 |
5932 | /* 17811 */ MCD::OPC_Decode, 166, 10, 201, 2, // Opcode: ICMH |
5933 | /* 17816 */ MCD::OPC_FilterValue, 129, 1, 5, 0, 0, // Skip to: 17827 |
5934 | /* 17822 */ MCD::OPC_Decode, 167, 10, 202, 2, // Opcode: ICMY |
5935 | /* 17827 */ MCD::OPC_FilterValue, 142, 1, 5, 0, 0, // Skip to: 17838 |
5936 | /* 17833 */ MCD::OPC_Decode, 237, 14, 203, 2, // Opcode: MVCLU |
5937 | /* 17838 */ MCD::OPC_FilterValue, 143, 1, 5, 0, 0, // Skip to: 17849 |
5938 | /* 17844 */ MCD::OPC_Decode, 133, 7, 203, 2, // Opcode: CLCLU |
5939 | /* 17849 */ MCD::OPC_FilterValue, 144, 1, 5, 0, 0, // Skip to: 17860 |
5940 | /* 17855 */ MCD::OPC_Decode, 194, 17, 204, 2, // Opcode: STMY |
5941 | /* 17860 */ MCD::OPC_FilterValue, 150, 1, 5, 0, 0, // Skip to: 17871 |
5942 | /* 17866 */ MCD::OPC_Decode, 142, 12, 193, 2, // Opcode: LMH |
5943 | /* 17871 */ MCD::OPC_FilterValue, 152, 1, 5, 0, 0, // Skip to: 17882 |
5944 | /* 17877 */ MCD::OPC_Decode, 143, 12, 204, 2, // Opcode: LMY |
5945 | /* 17882 */ MCD::OPC_FilterValue, 154, 1, 5, 0, 0, // Skip to: 17893 |
5946 | /* 17888 */ MCD::OPC_Decode, 158, 11, 205, 2, // Opcode: LAMY |
5947 | /* 17893 */ MCD::OPC_FilterValue, 155, 1, 5, 0, 0, // Skip to: 17904 |
5948 | /* 17899 */ MCD::OPC_Decode, 158, 17, 205, 2, // Opcode: STAMY |
5949 | /* 17904 */ MCD::OPC_FilterValue, 192, 1, 19, 0, 0, // Skip to: 17929 |
5950 | /* 17910 */ MCD::OPC_CheckField, 32, 4, 0, 236, 20, 0, // Skip to: 23273 |
5951 | /* 17917 */ MCD::OPC_CheckField, 8, 8, 0, 229, 20, 0, // Skip to: 23273 |
5952 | /* 17924 */ MCD::OPC_Decode, 184, 18, 206, 2, // Opcode: TP |
5953 | /* 17929 */ MCD::OPC_FilterValue, 220, 1, 10, 0, 0, // Skip to: 17945 |
5954 | /* 17935 */ MCD::OPC_CheckPredicate, 24, 213, 20, 0, // Skip to: 23273 |
5955 | /* 17940 */ MCD::OPC_Decode, 135, 17, 187, 2, // Opcode: SRAK |
5956 | /* 17945 */ MCD::OPC_FilterValue, 221, 1, 10, 0, 0, // Skip to: 17961 |
5957 | /* 17951 */ MCD::OPC_CheckPredicate, 24, 197, 20, 0, // Skip to: 23273 |
5958 | /* 17956 */ MCD::OPC_Decode, 219, 16, 187, 2, // Opcode: SLAK |
5959 | /* 17961 */ MCD::OPC_FilterValue, 222, 1, 10, 0, 0, // Skip to: 17977 |
5960 | /* 17967 */ MCD::OPC_CheckPredicate, 24, 181, 20, 0, // Skip to: 23273 |
5961 | /* 17972 */ MCD::OPC_Decode, 142, 17, 187, 2, // Opcode: SRLK |
5962 | /* 17977 */ MCD::OPC_FilterValue, 223, 1, 10, 0, 0, // Skip to: 17993 |
5963 | /* 17983 */ MCD::OPC_CheckPredicate, 24, 165, 20, 0, // Skip to: 23273 |
5964 | /* 17988 */ MCD::OPC_Decode, 238, 16, 187, 2, // Opcode: SLLK |
5965 | /* 17993 */ MCD::OPC_FilterValue, 224, 1, 223, 0, 0, // Skip to: 18222 |
5966 | /* 17999 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
5967 | /* 18002 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 18017 |
5968 | /* 18007 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 18212 |
5969 | /* 18012 */ MCD::OPC_Decode, 196, 12, 207, 2, // Opcode: LOCFHAsmO |
5970 | /* 18017 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 18032 |
5971 | /* 18022 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 18212 |
5972 | /* 18027 */ MCD::OPC_Decode, 180, 12, 207, 2, // Opcode: LOCFHAsmH |
5973 | /* 18032 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 18047 |
5974 | /* 18037 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 18212 |
5975 | /* 18042 */ MCD::OPC_Decode, 190, 12, 207, 2, // Opcode: LOCFHAsmNLE |
5976 | /* 18047 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 18062 |
5977 | /* 18052 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 18212 |
5978 | /* 18057 */ MCD::OPC_Decode, 182, 12, 207, 2, // Opcode: LOCFHAsmL |
5979 | /* 18062 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 18077 |
5980 | /* 18067 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 18212 |
5981 | /* 18072 */ MCD::OPC_Decode, 188, 12, 207, 2, // Opcode: LOCFHAsmNHE |
5982 | /* 18077 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 18092 |
5983 | /* 18082 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 18212 |
5984 | /* 18087 */ MCD::OPC_Decode, 184, 12, 207, 2, // Opcode: LOCFHAsmLH |
5985 | /* 18092 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 18107 |
5986 | /* 18097 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 18212 |
5987 | /* 18102 */ MCD::OPC_Decode, 186, 12, 207, 2, // Opcode: LOCFHAsmNE |
5988 | /* 18107 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 18122 |
5989 | /* 18112 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 18212 |
5990 | /* 18117 */ MCD::OPC_Decode, 179, 12, 207, 2, // Opcode: LOCFHAsmE |
5991 | /* 18122 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 18137 |
5992 | /* 18127 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 18212 |
5993 | /* 18132 */ MCD::OPC_Decode, 191, 12, 207, 2, // Opcode: LOCFHAsmNLH |
5994 | /* 18137 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 18152 |
5995 | /* 18142 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 18212 |
5996 | /* 18147 */ MCD::OPC_Decode, 181, 12, 207, 2, // Opcode: LOCFHAsmHE |
5997 | /* 18152 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 18167 |
5998 | /* 18157 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 18212 |
5999 | /* 18162 */ MCD::OPC_Decode, 189, 12, 207, 2, // Opcode: LOCFHAsmNL |
6000 | /* 18167 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 18182 |
6001 | /* 18172 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 18212 |
6002 | /* 18177 */ MCD::OPC_Decode, 183, 12, 207, 2, // Opcode: LOCFHAsmLE |
6003 | /* 18182 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 18197 |
6004 | /* 18187 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 18212 |
6005 | /* 18192 */ MCD::OPC_Decode, 187, 12, 207, 2, // Opcode: LOCFHAsmNH |
6006 | /* 18197 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 18212 |
6007 | /* 18202 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 18212 |
6008 | /* 18207 */ MCD::OPC_Decode, 193, 12, 207, 2, // Opcode: LOCFHAsmNO |
6009 | /* 18212 */ MCD::OPC_CheckPredicate, 21, 192, 19, 0, // Skip to: 23273 |
6010 | /* 18217 */ MCD::OPC_Decode, 178, 12, 208, 2, // Opcode: LOCFHAsm |
6011 | /* 18222 */ MCD::OPC_FilterValue, 225, 1, 223, 0, 0, // Skip to: 18451 |
6012 | /* 18228 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6013 | /* 18231 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 18246 |
6014 | /* 18236 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 18441 |
6015 | /* 18241 */ MCD::OPC_Decode, 237, 17, 209, 2, // Opcode: STOCFHAsmO |
6016 | /* 18246 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 18261 |
6017 | /* 18251 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 18441 |
6018 | /* 18256 */ MCD::OPC_Decode, 221, 17, 209, 2, // Opcode: STOCFHAsmH |
6019 | /* 18261 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 18276 |
6020 | /* 18266 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 18441 |
6021 | /* 18271 */ MCD::OPC_Decode, 231, 17, 209, 2, // Opcode: STOCFHAsmNLE |
6022 | /* 18276 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 18291 |
6023 | /* 18281 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 18441 |
6024 | /* 18286 */ MCD::OPC_Decode, 223, 17, 209, 2, // Opcode: STOCFHAsmL |
6025 | /* 18291 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 18306 |
6026 | /* 18296 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 18441 |
6027 | /* 18301 */ MCD::OPC_Decode, 229, 17, 209, 2, // Opcode: STOCFHAsmNHE |
6028 | /* 18306 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 18321 |
6029 | /* 18311 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 18441 |
6030 | /* 18316 */ MCD::OPC_Decode, 225, 17, 209, 2, // Opcode: STOCFHAsmLH |
6031 | /* 18321 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 18336 |
6032 | /* 18326 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 18441 |
6033 | /* 18331 */ MCD::OPC_Decode, 227, 17, 209, 2, // Opcode: STOCFHAsmNE |
6034 | /* 18336 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 18351 |
6035 | /* 18341 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 18441 |
6036 | /* 18346 */ MCD::OPC_Decode, 220, 17, 209, 2, // Opcode: STOCFHAsmE |
6037 | /* 18351 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 18366 |
6038 | /* 18356 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 18441 |
6039 | /* 18361 */ MCD::OPC_Decode, 232, 17, 209, 2, // Opcode: STOCFHAsmNLH |
6040 | /* 18366 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 18381 |
6041 | /* 18371 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 18441 |
6042 | /* 18376 */ MCD::OPC_Decode, 222, 17, 209, 2, // Opcode: STOCFHAsmHE |
6043 | /* 18381 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 18396 |
6044 | /* 18386 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 18441 |
6045 | /* 18391 */ MCD::OPC_Decode, 230, 17, 209, 2, // Opcode: STOCFHAsmNL |
6046 | /* 18396 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 18411 |
6047 | /* 18401 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 18441 |
6048 | /* 18406 */ MCD::OPC_Decode, 224, 17, 209, 2, // Opcode: STOCFHAsmLE |
6049 | /* 18411 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 18426 |
6050 | /* 18416 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 18441 |
6051 | /* 18421 */ MCD::OPC_Decode, 228, 17, 209, 2, // Opcode: STOCFHAsmNH |
6052 | /* 18426 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 18441 |
6053 | /* 18431 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 18441 |
6054 | /* 18436 */ MCD::OPC_Decode, 234, 17, 209, 2, // Opcode: STOCFHAsmNO |
6055 | /* 18441 */ MCD::OPC_CheckPredicate, 21, 219, 18, 0, // Skip to: 23273 |
6056 | /* 18446 */ MCD::OPC_Decode, 219, 17, 210, 2, // Opcode: STOCFHAsm |
6057 | /* 18451 */ MCD::OPC_FilterValue, 226, 1, 223, 0, 0, // Skip to: 18680 |
6058 | /* 18457 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6059 | /* 18460 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 18475 |
6060 | /* 18465 */ MCD::OPC_CheckPredicate, 23, 200, 0, 0, // Skip to: 18670 |
6061 | /* 18470 */ MCD::OPC_Decode, 240, 12, 211, 2, // Opcode: LOCGAsmO |
6062 | /* 18475 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 18490 |
6063 | /* 18480 */ MCD::OPC_CheckPredicate, 23, 185, 0, 0, // Skip to: 18670 |
6064 | /* 18485 */ MCD::OPC_Decode, 224, 12, 211, 2, // Opcode: LOCGAsmH |
6065 | /* 18490 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 18505 |
6066 | /* 18495 */ MCD::OPC_CheckPredicate, 23, 170, 0, 0, // Skip to: 18670 |
6067 | /* 18500 */ MCD::OPC_Decode, 234, 12, 211, 2, // Opcode: LOCGAsmNLE |
6068 | /* 18505 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 18520 |
6069 | /* 18510 */ MCD::OPC_CheckPredicate, 23, 155, 0, 0, // Skip to: 18670 |
6070 | /* 18515 */ MCD::OPC_Decode, 226, 12, 211, 2, // Opcode: LOCGAsmL |
6071 | /* 18520 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 18535 |
6072 | /* 18525 */ MCD::OPC_CheckPredicate, 23, 140, 0, 0, // Skip to: 18670 |
6073 | /* 18530 */ MCD::OPC_Decode, 232, 12, 211, 2, // Opcode: LOCGAsmNHE |
6074 | /* 18535 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 18550 |
6075 | /* 18540 */ MCD::OPC_CheckPredicate, 23, 125, 0, 0, // Skip to: 18670 |
6076 | /* 18545 */ MCD::OPC_Decode, 228, 12, 211, 2, // Opcode: LOCGAsmLH |
6077 | /* 18550 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 18565 |
6078 | /* 18555 */ MCD::OPC_CheckPredicate, 23, 110, 0, 0, // Skip to: 18670 |
6079 | /* 18560 */ MCD::OPC_Decode, 230, 12, 211, 2, // Opcode: LOCGAsmNE |
6080 | /* 18565 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 18580 |
6081 | /* 18570 */ MCD::OPC_CheckPredicate, 23, 95, 0, 0, // Skip to: 18670 |
6082 | /* 18575 */ MCD::OPC_Decode, 223, 12, 211, 2, // Opcode: LOCGAsmE |
6083 | /* 18580 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 18595 |
6084 | /* 18585 */ MCD::OPC_CheckPredicate, 23, 80, 0, 0, // Skip to: 18670 |
6085 | /* 18590 */ MCD::OPC_Decode, 235, 12, 211, 2, // Opcode: LOCGAsmNLH |
6086 | /* 18595 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 18610 |
6087 | /* 18600 */ MCD::OPC_CheckPredicate, 23, 65, 0, 0, // Skip to: 18670 |
6088 | /* 18605 */ MCD::OPC_Decode, 225, 12, 211, 2, // Opcode: LOCGAsmHE |
6089 | /* 18610 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 18625 |
6090 | /* 18615 */ MCD::OPC_CheckPredicate, 23, 50, 0, 0, // Skip to: 18670 |
6091 | /* 18620 */ MCD::OPC_Decode, 233, 12, 211, 2, // Opcode: LOCGAsmNL |
6092 | /* 18625 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 18640 |
6093 | /* 18630 */ MCD::OPC_CheckPredicate, 23, 35, 0, 0, // Skip to: 18670 |
6094 | /* 18635 */ MCD::OPC_Decode, 227, 12, 211, 2, // Opcode: LOCGAsmLE |
6095 | /* 18640 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 18655 |
6096 | /* 18645 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 18670 |
6097 | /* 18650 */ MCD::OPC_Decode, 231, 12, 211, 2, // Opcode: LOCGAsmNH |
6098 | /* 18655 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 18670 |
6099 | /* 18660 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 18670 |
6100 | /* 18665 */ MCD::OPC_Decode, 237, 12, 211, 2, // Opcode: LOCGAsmNO |
6101 | /* 18670 */ MCD::OPC_CheckPredicate, 23, 246, 17, 0, // Skip to: 23273 |
6102 | /* 18675 */ MCD::OPC_Decode, 222, 12, 212, 2, // Opcode: LOCGAsm |
6103 | /* 18680 */ MCD::OPC_FilterValue, 227, 1, 223, 0, 0, // Skip to: 18909 |
6104 | /* 18686 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6105 | /* 18689 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 18704 |
6106 | /* 18694 */ MCD::OPC_CheckPredicate, 23, 200, 0, 0, // Skip to: 18899 |
6107 | /* 18699 */ MCD::OPC_Decode, 131, 18, 194, 2, // Opcode: STOCGAsmO |
6108 | /* 18704 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 18719 |
6109 | /* 18709 */ MCD::OPC_CheckPredicate, 23, 185, 0, 0, // Skip to: 18899 |
6110 | /* 18714 */ MCD::OPC_Decode, 243, 17, 194, 2, // Opcode: STOCGAsmH |
6111 | /* 18719 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 18734 |
6112 | /* 18724 */ MCD::OPC_CheckPredicate, 23, 170, 0, 0, // Skip to: 18899 |
6113 | /* 18729 */ MCD::OPC_Decode, 253, 17, 194, 2, // Opcode: STOCGAsmNLE |
6114 | /* 18734 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 18749 |
6115 | /* 18739 */ MCD::OPC_CheckPredicate, 23, 155, 0, 0, // Skip to: 18899 |
6116 | /* 18744 */ MCD::OPC_Decode, 245, 17, 194, 2, // Opcode: STOCGAsmL |
6117 | /* 18749 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 18764 |
6118 | /* 18754 */ MCD::OPC_CheckPredicate, 23, 140, 0, 0, // Skip to: 18899 |
6119 | /* 18759 */ MCD::OPC_Decode, 251, 17, 194, 2, // Opcode: STOCGAsmNHE |
6120 | /* 18764 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 18779 |
6121 | /* 18769 */ MCD::OPC_CheckPredicate, 23, 125, 0, 0, // Skip to: 18899 |
6122 | /* 18774 */ MCD::OPC_Decode, 247, 17, 194, 2, // Opcode: STOCGAsmLH |
6123 | /* 18779 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 18794 |
6124 | /* 18784 */ MCD::OPC_CheckPredicate, 23, 110, 0, 0, // Skip to: 18899 |
6125 | /* 18789 */ MCD::OPC_Decode, 249, 17, 194, 2, // Opcode: STOCGAsmNE |
6126 | /* 18794 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 18809 |
6127 | /* 18799 */ MCD::OPC_CheckPredicate, 23, 95, 0, 0, // Skip to: 18899 |
6128 | /* 18804 */ MCD::OPC_Decode, 242, 17, 194, 2, // Opcode: STOCGAsmE |
6129 | /* 18809 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 18824 |
6130 | /* 18814 */ MCD::OPC_CheckPredicate, 23, 80, 0, 0, // Skip to: 18899 |
6131 | /* 18819 */ MCD::OPC_Decode, 254, 17, 194, 2, // Opcode: STOCGAsmNLH |
6132 | /* 18824 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 18839 |
6133 | /* 18829 */ MCD::OPC_CheckPredicate, 23, 65, 0, 0, // Skip to: 18899 |
6134 | /* 18834 */ MCD::OPC_Decode, 244, 17, 194, 2, // Opcode: STOCGAsmHE |
6135 | /* 18839 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 18854 |
6136 | /* 18844 */ MCD::OPC_CheckPredicate, 23, 50, 0, 0, // Skip to: 18899 |
6137 | /* 18849 */ MCD::OPC_Decode, 252, 17, 194, 2, // Opcode: STOCGAsmNL |
6138 | /* 18854 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 18869 |
6139 | /* 18859 */ MCD::OPC_CheckPredicate, 23, 35, 0, 0, // Skip to: 18899 |
6140 | /* 18864 */ MCD::OPC_Decode, 246, 17, 194, 2, // Opcode: STOCGAsmLE |
6141 | /* 18869 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 18884 |
6142 | /* 18874 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 18899 |
6143 | /* 18879 */ MCD::OPC_Decode, 250, 17, 194, 2, // Opcode: STOCGAsmNH |
6144 | /* 18884 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 18899 |
6145 | /* 18889 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 18899 |
6146 | /* 18894 */ MCD::OPC_Decode, 128, 18, 194, 2, // Opcode: STOCGAsmNO |
6147 | /* 18899 */ MCD::OPC_CheckPredicate, 23, 17, 17, 0, // Skip to: 23273 |
6148 | /* 18904 */ MCD::OPC_Decode, 241, 17, 195, 2, // Opcode: STOCGAsm |
6149 | /* 18909 */ MCD::OPC_FilterValue, 228, 1, 10, 0, 0, // Skip to: 18925 |
6150 | /* 18915 */ MCD::OPC_CheckPredicate, 26, 1, 17, 0, // Skip to: 23273 |
6151 | /* 18920 */ MCD::OPC_Decode, 160, 11, 184, 2, // Opcode: LANG |
6152 | /* 18925 */ MCD::OPC_FilterValue, 230, 1, 10, 0, 0, // Skip to: 18941 |
6153 | /* 18931 */ MCD::OPC_CheckPredicate, 26, 241, 16, 0, // Skip to: 23273 |
6154 | /* 18936 */ MCD::OPC_Decode, 162, 11, 184, 2, // Opcode: LAOG |
6155 | /* 18941 */ MCD::OPC_FilterValue, 231, 1, 10, 0, 0, // Skip to: 18957 |
6156 | /* 18947 */ MCD::OPC_CheckPredicate, 26, 225, 16, 0, // Skip to: 23273 |
6157 | /* 18952 */ MCD::OPC_Decode, 167, 11, 184, 2, // Opcode: LAXG |
6158 | /* 18957 */ MCD::OPC_FilterValue, 232, 1, 10, 0, 0, // Skip to: 18973 |
6159 | /* 18963 */ MCD::OPC_CheckPredicate, 26, 209, 16, 0, // Skip to: 23273 |
6160 | /* 18968 */ MCD::OPC_Decode, 152, 11, 184, 2, // Opcode: LAAG |
6161 | /* 18973 */ MCD::OPC_FilterValue, 234, 1, 10, 0, 0, // Skip to: 18989 |
6162 | /* 18979 */ MCD::OPC_CheckPredicate, 26, 193, 16, 0, // Skip to: 23273 |
6163 | /* 18984 */ MCD::OPC_Decode, 154, 11, 184, 2, // Opcode: LAALG |
6164 | /* 18989 */ MCD::OPC_FilterValue, 242, 1, 223, 0, 0, // Skip to: 19218 |
6165 | /* 18995 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6166 | /* 18998 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 19013 |
6167 | /* 19003 */ MCD::OPC_CheckPredicate, 23, 200, 0, 0, // Skip to: 19208 |
6168 | /* 19008 */ MCD::OPC_Decode, 174, 12, 213, 2, // Opcode: LOCAsmO |
6169 | /* 19013 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 19028 |
6170 | /* 19018 */ MCD::OPC_CheckPredicate, 23, 185, 0, 0, // Skip to: 19208 |
6171 | /* 19023 */ MCD::OPC_Decode, 158, 12, 213, 2, // Opcode: LOCAsmH |
6172 | /* 19028 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 19043 |
6173 | /* 19033 */ MCD::OPC_CheckPredicate, 23, 170, 0, 0, // Skip to: 19208 |
6174 | /* 19038 */ MCD::OPC_Decode, 168, 12, 213, 2, // Opcode: LOCAsmNLE |
6175 | /* 19043 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 19058 |
6176 | /* 19048 */ MCD::OPC_CheckPredicate, 23, 155, 0, 0, // Skip to: 19208 |
6177 | /* 19053 */ MCD::OPC_Decode, 160, 12, 213, 2, // Opcode: LOCAsmL |
6178 | /* 19058 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 19073 |
6179 | /* 19063 */ MCD::OPC_CheckPredicate, 23, 140, 0, 0, // Skip to: 19208 |
6180 | /* 19068 */ MCD::OPC_Decode, 166, 12, 213, 2, // Opcode: LOCAsmNHE |
6181 | /* 19073 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 19088 |
6182 | /* 19078 */ MCD::OPC_CheckPredicate, 23, 125, 0, 0, // Skip to: 19208 |
6183 | /* 19083 */ MCD::OPC_Decode, 162, 12, 213, 2, // Opcode: LOCAsmLH |
6184 | /* 19088 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 19103 |
6185 | /* 19093 */ MCD::OPC_CheckPredicate, 23, 110, 0, 0, // Skip to: 19208 |
6186 | /* 19098 */ MCD::OPC_Decode, 164, 12, 213, 2, // Opcode: LOCAsmNE |
6187 | /* 19103 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 19118 |
6188 | /* 19108 */ MCD::OPC_CheckPredicate, 23, 95, 0, 0, // Skip to: 19208 |
6189 | /* 19113 */ MCD::OPC_Decode, 157, 12, 213, 2, // Opcode: LOCAsmE |
6190 | /* 19118 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 19133 |
6191 | /* 19123 */ MCD::OPC_CheckPredicate, 23, 80, 0, 0, // Skip to: 19208 |
6192 | /* 19128 */ MCD::OPC_Decode, 169, 12, 213, 2, // Opcode: LOCAsmNLH |
6193 | /* 19133 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 19148 |
6194 | /* 19138 */ MCD::OPC_CheckPredicate, 23, 65, 0, 0, // Skip to: 19208 |
6195 | /* 19143 */ MCD::OPC_Decode, 159, 12, 213, 2, // Opcode: LOCAsmHE |
6196 | /* 19148 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 19163 |
6197 | /* 19153 */ MCD::OPC_CheckPredicate, 23, 50, 0, 0, // Skip to: 19208 |
6198 | /* 19158 */ MCD::OPC_Decode, 167, 12, 213, 2, // Opcode: LOCAsmNL |
6199 | /* 19163 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 19178 |
6200 | /* 19168 */ MCD::OPC_CheckPredicate, 23, 35, 0, 0, // Skip to: 19208 |
6201 | /* 19173 */ MCD::OPC_Decode, 161, 12, 213, 2, // Opcode: LOCAsmLE |
6202 | /* 19178 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 19193 |
6203 | /* 19183 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 19208 |
6204 | /* 19188 */ MCD::OPC_Decode, 165, 12, 213, 2, // Opcode: LOCAsmNH |
6205 | /* 19193 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 19208 |
6206 | /* 19198 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 19208 |
6207 | /* 19203 */ MCD::OPC_Decode, 171, 12, 213, 2, // Opcode: LOCAsmNO |
6208 | /* 19208 */ MCD::OPC_CheckPredicate, 23, 220, 15, 0, // Skip to: 23273 |
6209 | /* 19213 */ MCD::OPC_Decode, 156, 12, 214, 2, // Opcode: LOCAsm |
6210 | /* 19218 */ MCD::OPC_FilterValue, 243, 1, 223, 0, 0, // Skip to: 19447 |
6211 | /* 19224 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6212 | /* 19227 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 19242 |
6213 | /* 19232 */ MCD::OPC_CheckPredicate, 23, 200, 0, 0, // Skip to: 19437 |
6214 | /* 19237 */ MCD::OPC_Decode, 215, 17, 190, 2, // Opcode: STOCAsmO |
6215 | /* 19242 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 19257 |
6216 | /* 19247 */ MCD::OPC_CheckPredicate, 23, 185, 0, 0, // Skip to: 19437 |
6217 | /* 19252 */ MCD::OPC_Decode, 199, 17, 190, 2, // Opcode: STOCAsmH |
6218 | /* 19257 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 19272 |
6219 | /* 19262 */ MCD::OPC_CheckPredicate, 23, 170, 0, 0, // Skip to: 19437 |
6220 | /* 19267 */ MCD::OPC_Decode, 209, 17, 190, 2, // Opcode: STOCAsmNLE |
6221 | /* 19272 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 19287 |
6222 | /* 19277 */ MCD::OPC_CheckPredicate, 23, 155, 0, 0, // Skip to: 19437 |
6223 | /* 19282 */ MCD::OPC_Decode, 201, 17, 190, 2, // Opcode: STOCAsmL |
6224 | /* 19287 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 19302 |
6225 | /* 19292 */ MCD::OPC_CheckPredicate, 23, 140, 0, 0, // Skip to: 19437 |
6226 | /* 19297 */ MCD::OPC_Decode, 207, 17, 190, 2, // Opcode: STOCAsmNHE |
6227 | /* 19302 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 19317 |
6228 | /* 19307 */ MCD::OPC_CheckPredicate, 23, 125, 0, 0, // Skip to: 19437 |
6229 | /* 19312 */ MCD::OPC_Decode, 203, 17, 190, 2, // Opcode: STOCAsmLH |
6230 | /* 19317 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 19332 |
6231 | /* 19322 */ MCD::OPC_CheckPredicate, 23, 110, 0, 0, // Skip to: 19437 |
6232 | /* 19327 */ MCD::OPC_Decode, 205, 17, 190, 2, // Opcode: STOCAsmNE |
6233 | /* 19332 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 19347 |
6234 | /* 19337 */ MCD::OPC_CheckPredicate, 23, 95, 0, 0, // Skip to: 19437 |
6235 | /* 19342 */ MCD::OPC_Decode, 198, 17, 190, 2, // Opcode: STOCAsmE |
6236 | /* 19347 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 19362 |
6237 | /* 19352 */ MCD::OPC_CheckPredicate, 23, 80, 0, 0, // Skip to: 19437 |
6238 | /* 19357 */ MCD::OPC_Decode, 210, 17, 190, 2, // Opcode: STOCAsmNLH |
6239 | /* 19362 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 19377 |
6240 | /* 19367 */ MCD::OPC_CheckPredicate, 23, 65, 0, 0, // Skip to: 19437 |
6241 | /* 19372 */ MCD::OPC_Decode, 200, 17, 190, 2, // Opcode: STOCAsmHE |
6242 | /* 19377 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 19392 |
6243 | /* 19382 */ MCD::OPC_CheckPredicate, 23, 50, 0, 0, // Skip to: 19437 |
6244 | /* 19387 */ MCD::OPC_Decode, 208, 17, 190, 2, // Opcode: STOCAsmNL |
6245 | /* 19392 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 19407 |
6246 | /* 19397 */ MCD::OPC_CheckPredicate, 23, 35, 0, 0, // Skip to: 19437 |
6247 | /* 19402 */ MCD::OPC_Decode, 202, 17, 190, 2, // Opcode: STOCAsmLE |
6248 | /* 19407 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 19422 |
6249 | /* 19412 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 19437 |
6250 | /* 19417 */ MCD::OPC_Decode, 206, 17, 190, 2, // Opcode: STOCAsmNH |
6251 | /* 19422 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 19437 |
6252 | /* 19427 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 19437 |
6253 | /* 19432 */ MCD::OPC_Decode, 212, 17, 190, 2, // Opcode: STOCAsmNO |
6254 | /* 19437 */ MCD::OPC_CheckPredicate, 23, 247, 14, 0, // Skip to: 23273 |
6255 | /* 19442 */ MCD::OPC_Decode, 197, 17, 191, 2, // Opcode: STOCAsm |
6256 | /* 19447 */ MCD::OPC_FilterValue, 244, 1, 10, 0, 0, // Skip to: 19463 |
6257 | /* 19453 */ MCD::OPC_CheckPredicate, 26, 231, 14, 0, // Skip to: 23273 |
6258 | /* 19458 */ MCD::OPC_Decode, 159, 11, 204, 2, // Opcode: LAN |
6259 | /* 19463 */ MCD::OPC_FilterValue, 246, 1, 10, 0, 0, // Skip to: 19479 |
6260 | /* 19469 */ MCD::OPC_CheckPredicate, 26, 215, 14, 0, // Skip to: 23273 |
6261 | /* 19474 */ MCD::OPC_Decode, 161, 11, 204, 2, // Opcode: LAO |
6262 | /* 19479 */ MCD::OPC_FilterValue, 247, 1, 10, 0, 0, // Skip to: 19495 |
6263 | /* 19485 */ MCD::OPC_CheckPredicate, 26, 199, 14, 0, // Skip to: 23273 |
6264 | /* 19490 */ MCD::OPC_Decode, 166, 11, 204, 2, // Opcode: LAX |
6265 | /* 19495 */ MCD::OPC_FilterValue, 248, 1, 10, 0, 0, // Skip to: 19511 |
6266 | /* 19501 */ MCD::OPC_CheckPredicate, 26, 183, 14, 0, // Skip to: 23273 |
6267 | /* 19506 */ MCD::OPC_Decode, 151, 11, 204, 2, // Opcode: LAA |
6268 | /* 19511 */ MCD::OPC_FilterValue, 250, 1, 172, 14, 0, // Skip to: 23273 |
6269 | /* 19517 */ MCD::OPC_CheckPredicate, 26, 167, 14, 0, // Skip to: 23273 |
6270 | /* 19522 */ MCD::OPC_Decode, 153, 11, 204, 2, // Opcode: LAAL |
6271 | /* 19527 */ MCD::OPC_FilterValue, 236, 1, 243, 9, 0, // Skip to: 22080 |
6272 | /* 19533 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6273 | /* 19536 */ MCD::OPC_FilterValue, 66, 231, 0, 0, // Skip to: 19772 |
6274 | /* 19541 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
6275 | /* 19544 */ MCD::OPC_FilterValue, 0, 140, 14, 0, // Skip to: 23273 |
6276 | /* 19549 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6277 | /* 19552 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 19567 |
6278 | /* 19557 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 19762 |
6279 | /* 19562 */ MCD::OPC_Decode, 200, 13, 215, 2, // Opcode: LOCHIAsmO |
6280 | /* 19567 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 19582 |
6281 | /* 19572 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 19762 |
6282 | /* 19577 */ MCD::OPC_Decode, 184, 13, 215, 2, // Opcode: LOCHIAsmH |
6283 | /* 19582 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 19597 |
6284 | /* 19587 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 19762 |
6285 | /* 19592 */ MCD::OPC_Decode, 194, 13, 215, 2, // Opcode: LOCHIAsmNLE |
6286 | /* 19597 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 19612 |
6287 | /* 19602 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 19762 |
6288 | /* 19607 */ MCD::OPC_Decode, 186, 13, 215, 2, // Opcode: LOCHIAsmL |
6289 | /* 19612 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 19627 |
6290 | /* 19617 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 19762 |
6291 | /* 19622 */ MCD::OPC_Decode, 192, 13, 215, 2, // Opcode: LOCHIAsmNHE |
6292 | /* 19627 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 19642 |
6293 | /* 19632 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 19762 |
6294 | /* 19637 */ MCD::OPC_Decode, 188, 13, 215, 2, // Opcode: LOCHIAsmLH |
6295 | /* 19642 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 19657 |
6296 | /* 19647 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 19762 |
6297 | /* 19652 */ MCD::OPC_Decode, 190, 13, 215, 2, // Opcode: LOCHIAsmNE |
6298 | /* 19657 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 19672 |
6299 | /* 19662 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 19762 |
6300 | /* 19667 */ MCD::OPC_Decode, 183, 13, 215, 2, // Opcode: LOCHIAsmE |
6301 | /* 19672 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 19687 |
6302 | /* 19677 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 19762 |
6303 | /* 19682 */ MCD::OPC_Decode, 195, 13, 215, 2, // Opcode: LOCHIAsmNLH |
6304 | /* 19687 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 19702 |
6305 | /* 19692 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 19762 |
6306 | /* 19697 */ MCD::OPC_Decode, 185, 13, 215, 2, // Opcode: LOCHIAsmHE |
6307 | /* 19702 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 19717 |
6308 | /* 19707 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 19762 |
6309 | /* 19712 */ MCD::OPC_Decode, 193, 13, 215, 2, // Opcode: LOCHIAsmNL |
6310 | /* 19717 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 19732 |
6311 | /* 19722 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 19762 |
6312 | /* 19727 */ MCD::OPC_Decode, 187, 13, 215, 2, // Opcode: LOCHIAsmLE |
6313 | /* 19732 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 19747 |
6314 | /* 19737 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 19762 |
6315 | /* 19742 */ MCD::OPC_Decode, 191, 13, 215, 2, // Opcode: LOCHIAsmNH |
6316 | /* 19747 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 19762 |
6317 | /* 19752 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 19762 |
6318 | /* 19757 */ MCD::OPC_Decode, 197, 13, 215, 2, // Opcode: LOCHIAsmNO |
6319 | /* 19762 */ MCD::OPC_CheckPredicate, 21, 178, 13, 0, // Skip to: 23273 |
6320 | /* 19767 */ MCD::OPC_Decode, 182, 13, 216, 2, // Opcode: LOCHIAsm |
6321 | /* 19772 */ MCD::OPC_FilterValue, 68, 12, 0, 0, // Skip to: 19789 |
6322 | /* 19777 */ MCD::OPC_CheckField, 8, 8, 0, 161, 13, 0, // Skip to: 23273 |
6323 | /* 19784 */ MCD::OPC_Decode, 161, 5, 217, 2, // Opcode: BRXHG |
6324 | /* 19789 */ MCD::OPC_FilterValue, 69, 12, 0, 0, // Skip to: 19806 |
6325 | /* 19794 */ MCD::OPC_CheckField, 8, 8, 0, 144, 13, 0, // Skip to: 23273 |
6326 | /* 19801 */ MCD::OPC_Decode, 163, 5, 217, 2, // Opcode: BRXLG |
6327 | /* 19806 */ MCD::OPC_FilterValue, 70, 231, 0, 0, // Skip to: 20042 |
6328 | /* 19811 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
6329 | /* 19814 */ MCD::OPC_FilterValue, 0, 126, 13, 0, // Skip to: 23273 |
6330 | /* 19819 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6331 | /* 19822 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 19837 |
6332 | /* 19827 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 20032 |
6333 | /* 19832 */ MCD::OPC_Decode, 134, 13, 218, 2, // Opcode: LOCGHIAsmO |
6334 | /* 19837 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 19852 |
6335 | /* 19842 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 20032 |
6336 | /* 19847 */ MCD::OPC_Decode, 246, 12, 218, 2, // Opcode: LOCGHIAsmH |
6337 | /* 19852 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 19867 |
6338 | /* 19857 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 20032 |
6339 | /* 19862 */ MCD::OPC_Decode, 128, 13, 218, 2, // Opcode: LOCGHIAsmNLE |
6340 | /* 19867 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 19882 |
6341 | /* 19872 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 20032 |
6342 | /* 19877 */ MCD::OPC_Decode, 248, 12, 218, 2, // Opcode: LOCGHIAsmL |
6343 | /* 19882 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 19897 |
6344 | /* 19887 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 20032 |
6345 | /* 19892 */ MCD::OPC_Decode, 254, 12, 218, 2, // Opcode: LOCGHIAsmNHE |
6346 | /* 19897 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 19912 |
6347 | /* 19902 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 20032 |
6348 | /* 19907 */ MCD::OPC_Decode, 250, 12, 218, 2, // Opcode: LOCGHIAsmLH |
6349 | /* 19912 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 19927 |
6350 | /* 19917 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 20032 |
6351 | /* 19922 */ MCD::OPC_Decode, 252, 12, 218, 2, // Opcode: LOCGHIAsmNE |
6352 | /* 19927 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 19942 |
6353 | /* 19932 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 20032 |
6354 | /* 19937 */ MCD::OPC_Decode, 245, 12, 218, 2, // Opcode: LOCGHIAsmE |
6355 | /* 19942 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 19957 |
6356 | /* 19947 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 20032 |
6357 | /* 19952 */ MCD::OPC_Decode, 129, 13, 218, 2, // Opcode: LOCGHIAsmNLH |
6358 | /* 19957 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 19972 |
6359 | /* 19962 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 20032 |
6360 | /* 19967 */ MCD::OPC_Decode, 247, 12, 218, 2, // Opcode: LOCGHIAsmHE |
6361 | /* 19972 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 19987 |
6362 | /* 19977 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 20032 |
6363 | /* 19982 */ MCD::OPC_Decode, 255, 12, 218, 2, // Opcode: LOCGHIAsmNL |
6364 | /* 19987 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 20002 |
6365 | /* 19992 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 20032 |
6366 | /* 19997 */ MCD::OPC_Decode, 249, 12, 218, 2, // Opcode: LOCGHIAsmLE |
6367 | /* 20002 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 20017 |
6368 | /* 20007 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 20032 |
6369 | /* 20012 */ MCD::OPC_Decode, 253, 12, 218, 2, // Opcode: LOCGHIAsmNH |
6370 | /* 20017 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 20032 |
6371 | /* 20022 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 20032 |
6372 | /* 20027 */ MCD::OPC_Decode, 131, 13, 218, 2, // Opcode: LOCGHIAsmNO |
6373 | /* 20032 */ MCD::OPC_CheckPredicate, 21, 164, 12, 0, // Skip to: 23273 |
6374 | /* 20037 */ MCD::OPC_Decode, 244, 12, 219, 2, // Opcode: LOCGHIAsm |
6375 | /* 20042 */ MCD::OPC_FilterValue, 78, 231, 0, 0, // Skip to: 20278 |
6376 | /* 20047 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
6377 | /* 20050 */ MCD::OPC_FilterValue, 0, 146, 12, 0, // Skip to: 23273 |
6378 | /* 20055 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6379 | /* 20058 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 20073 |
6380 | /* 20063 */ MCD::OPC_CheckPredicate, 21, 200, 0, 0, // Skip to: 20268 |
6381 | /* 20068 */ MCD::OPC_Decode, 178, 13, 220, 2, // Opcode: LOCHHIAsmO |
6382 | /* 20073 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 20088 |
6383 | /* 20078 */ MCD::OPC_CheckPredicate, 21, 185, 0, 0, // Skip to: 20268 |
6384 | /* 20083 */ MCD::OPC_Decode, 162, 13, 220, 2, // Opcode: LOCHHIAsmH |
6385 | /* 20088 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 20103 |
6386 | /* 20093 */ MCD::OPC_CheckPredicate, 21, 170, 0, 0, // Skip to: 20268 |
6387 | /* 20098 */ MCD::OPC_Decode, 172, 13, 220, 2, // Opcode: LOCHHIAsmNLE |
6388 | /* 20103 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 20118 |
6389 | /* 20108 */ MCD::OPC_CheckPredicate, 21, 155, 0, 0, // Skip to: 20268 |
6390 | /* 20113 */ MCD::OPC_Decode, 164, 13, 220, 2, // Opcode: LOCHHIAsmL |
6391 | /* 20118 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 20133 |
6392 | /* 20123 */ MCD::OPC_CheckPredicate, 21, 140, 0, 0, // Skip to: 20268 |
6393 | /* 20128 */ MCD::OPC_Decode, 170, 13, 220, 2, // Opcode: LOCHHIAsmNHE |
6394 | /* 20133 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 20148 |
6395 | /* 20138 */ MCD::OPC_CheckPredicate, 21, 125, 0, 0, // Skip to: 20268 |
6396 | /* 20143 */ MCD::OPC_Decode, 166, 13, 220, 2, // Opcode: LOCHHIAsmLH |
6397 | /* 20148 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 20163 |
6398 | /* 20153 */ MCD::OPC_CheckPredicate, 21, 110, 0, 0, // Skip to: 20268 |
6399 | /* 20158 */ MCD::OPC_Decode, 168, 13, 220, 2, // Opcode: LOCHHIAsmNE |
6400 | /* 20163 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 20178 |
6401 | /* 20168 */ MCD::OPC_CheckPredicate, 21, 95, 0, 0, // Skip to: 20268 |
6402 | /* 20173 */ MCD::OPC_Decode, 161, 13, 220, 2, // Opcode: LOCHHIAsmE |
6403 | /* 20178 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 20193 |
6404 | /* 20183 */ MCD::OPC_CheckPredicate, 21, 80, 0, 0, // Skip to: 20268 |
6405 | /* 20188 */ MCD::OPC_Decode, 173, 13, 220, 2, // Opcode: LOCHHIAsmNLH |
6406 | /* 20193 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 20208 |
6407 | /* 20198 */ MCD::OPC_CheckPredicate, 21, 65, 0, 0, // Skip to: 20268 |
6408 | /* 20203 */ MCD::OPC_Decode, 163, 13, 220, 2, // Opcode: LOCHHIAsmHE |
6409 | /* 20208 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 20223 |
6410 | /* 20213 */ MCD::OPC_CheckPredicate, 21, 50, 0, 0, // Skip to: 20268 |
6411 | /* 20218 */ MCD::OPC_Decode, 171, 13, 220, 2, // Opcode: LOCHHIAsmNL |
6412 | /* 20223 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 20238 |
6413 | /* 20228 */ MCD::OPC_CheckPredicate, 21, 35, 0, 0, // Skip to: 20268 |
6414 | /* 20233 */ MCD::OPC_Decode, 165, 13, 220, 2, // Opcode: LOCHHIAsmLE |
6415 | /* 20238 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 20253 |
6416 | /* 20243 */ MCD::OPC_CheckPredicate, 21, 20, 0, 0, // Skip to: 20268 |
6417 | /* 20248 */ MCD::OPC_Decode, 169, 13, 220, 2, // Opcode: LOCHHIAsmNH |
6418 | /* 20253 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 20268 |
6419 | /* 20258 */ MCD::OPC_CheckPredicate, 21, 5, 0, 0, // Skip to: 20268 |
6420 | /* 20263 */ MCD::OPC_Decode, 175, 13, 220, 2, // Opcode: LOCHHIAsmNO |
6421 | /* 20268 */ MCD::OPC_CheckPredicate, 21, 184, 11, 0, // Skip to: 23273 |
6422 | /* 20273 */ MCD::OPC_Decode, 160, 13, 221, 2, // Opcode: LOCHHIAsm |
6423 | /* 20278 */ MCD::OPC_FilterValue, 81, 10, 0, 0, // Skip to: 20293 |
6424 | /* 20283 */ MCD::OPC_CheckPredicate, 20, 169, 11, 0, // Skip to: 23273 |
6425 | /* 20288 */ MCD::OPC_Decode, 228, 15, 222, 2, // Opcode: RISBLG |
6426 | /* 20293 */ MCD::OPC_FilterValue, 84, 5, 0, 0, // Skip to: 20303 |
6427 | /* 20298 */ MCD::OPC_Decode, 231, 15, 223, 2, // Opcode: RNSBG |
6428 | /* 20303 */ MCD::OPC_FilterValue, 85, 17, 0, 0, // Skip to: 20325 |
6429 | /* 20308 */ MCD::OPC_CheckField, 23, 1, 1, 5, 0, 0, // Skip to: 20320 |
6430 | /* 20315 */ MCD::OPC_Decode, 226, 15, 224, 2, // Opcode: RISBGZ |
6431 | /* 20320 */ MCD::OPC_Decode, 222, 15, 223, 2, // Opcode: RISBG |
6432 | /* 20325 */ MCD::OPC_FilterValue, 86, 5, 0, 0, // Skip to: 20335 |
6433 | /* 20330 */ MCD::OPC_Decode, 232, 15, 223, 2, // Opcode: ROSBG |
6434 | /* 20335 */ MCD::OPC_FilterValue, 87, 5, 0, 0, // Skip to: 20345 |
6435 | /* 20340 */ MCD::OPC_Decode, 239, 15, 223, 2, // Opcode: RXSBG |
6436 | /* 20345 */ MCD::OPC_FilterValue, 89, 27, 0, 0, // Skip to: 20377 |
6437 | /* 20350 */ MCD::OPC_CheckPredicate, 37, 12, 0, 0, // Skip to: 20367 |
6438 | /* 20355 */ MCD::OPC_CheckField, 23, 1, 1, 5, 0, 0, // Skip to: 20367 |
6439 | /* 20362 */ MCD::OPC_Decode, 225, 15, 224, 2, // Opcode: RISBGNZ |
6440 | /* 20367 */ MCD::OPC_CheckPredicate, 37, 85, 11, 0, // Skip to: 23273 |
6441 | /* 20372 */ MCD::OPC_Decode, 224, 15, 223, 2, // Opcode: RISBGN |
6442 | /* 20377 */ MCD::OPC_FilterValue, 93, 10, 0, 0, // Skip to: 20392 |
6443 | /* 20382 */ MCD::OPC_CheckPredicate, 20, 70, 11, 0, // Skip to: 23273 |
6444 | /* 20387 */ MCD::OPC_Decode, 227, 15, 225, 2, // Opcode: RISBHG |
6445 | /* 20392 */ MCD::OPC_FilterValue, 100, 76, 0, 0, // Skip to: 20473 |
6446 | /* 20397 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6447 | /* 20400 */ MCD::OPC_FilterValue, 0, 52, 11, 0, // Skip to: 23273 |
6448 | /* 20405 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6449 | /* 20408 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20418 |
6450 | /* 20413 */ MCD::OPC_Decode, 173, 6, 226, 2, // Opcode: CGRJAsmH |
6451 | /* 20418 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20428 |
6452 | /* 20423 */ MCD::OPC_Decode, 175, 6, 226, 2, // Opcode: CGRJAsmL |
6453 | /* 20428 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20438 |
6454 | /* 20433 */ MCD::OPC_Decode, 177, 6, 226, 2, // Opcode: CGRJAsmLH |
6455 | /* 20438 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20448 |
6456 | /* 20443 */ MCD::OPC_Decode, 172, 6, 226, 2, // Opcode: CGRJAsmE |
6457 | /* 20448 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20458 |
6458 | /* 20453 */ MCD::OPC_Decode, 174, 6, 226, 2, // Opcode: CGRJAsmHE |
6459 | /* 20458 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20468 |
6460 | /* 20463 */ MCD::OPC_Decode, 176, 6, 226, 2, // Opcode: CGRJAsmLE |
6461 | /* 20468 */ MCD::OPC_Decode, 171, 6, 227, 2, // Opcode: CGRJAsm |
6462 | /* 20473 */ MCD::OPC_FilterValue, 101, 76, 0, 0, // Skip to: 20554 |
6463 | /* 20478 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6464 | /* 20481 */ MCD::OPC_FilterValue, 0, 227, 10, 0, // Skip to: 23273 |
6465 | /* 20486 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6466 | /* 20489 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20499 |
6467 | /* 20494 */ MCD::OPC_Decode, 225, 7, 226, 2, // Opcode: CLGRJAsmH |
6468 | /* 20499 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20509 |
6469 | /* 20504 */ MCD::OPC_Decode, 227, 7, 226, 2, // Opcode: CLGRJAsmL |
6470 | /* 20509 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20519 |
6471 | /* 20514 */ MCD::OPC_Decode, 229, 7, 226, 2, // Opcode: CLGRJAsmLH |
6472 | /* 20519 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20529 |
6473 | /* 20524 */ MCD::OPC_Decode, 224, 7, 226, 2, // Opcode: CLGRJAsmE |
6474 | /* 20529 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20539 |
6475 | /* 20534 */ MCD::OPC_Decode, 226, 7, 226, 2, // Opcode: CLGRJAsmHE |
6476 | /* 20539 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20549 |
6477 | /* 20544 */ MCD::OPC_Decode, 228, 7, 226, 2, // Opcode: CLGRJAsmLE |
6478 | /* 20549 */ MCD::OPC_Decode, 223, 7, 227, 2, // Opcode: CLGRJAsm |
6479 | /* 20554 */ MCD::OPC_FilterValue, 112, 84, 0, 0, // Skip to: 20643 |
6480 | /* 20559 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6481 | /* 20562 */ MCD::OPC_FilterValue, 0, 146, 10, 0, // Skip to: 23273 |
6482 | /* 20567 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6483 | /* 20570 */ MCD::OPC_FilterValue, 0, 138, 10, 0, // Skip to: 23273 |
6484 | /* 20575 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6485 | /* 20578 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20588 |
6486 | /* 20583 */ MCD::OPC_Decode, 144, 6, 228, 2, // Opcode: CGITAsmH |
6487 | /* 20588 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20598 |
6488 | /* 20593 */ MCD::OPC_Decode, 146, 6, 228, 2, // Opcode: CGITAsmL |
6489 | /* 20598 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20608 |
6490 | /* 20603 */ MCD::OPC_Decode, 148, 6, 228, 2, // Opcode: CGITAsmLH |
6491 | /* 20608 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20618 |
6492 | /* 20613 */ MCD::OPC_Decode, 143, 6, 228, 2, // Opcode: CGITAsmE |
6493 | /* 20618 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20628 |
6494 | /* 20623 */ MCD::OPC_Decode, 145, 6, 228, 2, // Opcode: CGITAsmHE |
6495 | /* 20628 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20638 |
6496 | /* 20633 */ MCD::OPC_Decode, 147, 6, 228, 2, // Opcode: CGITAsmLE |
6497 | /* 20638 */ MCD::OPC_Decode, 142, 6, 229, 2, // Opcode: CGITAsm |
6498 | /* 20643 */ MCD::OPC_FilterValue, 113, 84, 0, 0, // Skip to: 20732 |
6499 | /* 20648 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6500 | /* 20651 */ MCD::OPC_FilterValue, 0, 57, 10, 0, // Skip to: 23273 |
6501 | /* 20656 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6502 | /* 20659 */ MCD::OPC_FilterValue, 0, 49, 10, 0, // Skip to: 23273 |
6503 | /* 20664 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6504 | /* 20667 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20677 |
6505 | /* 20672 */ MCD::OPC_Decode, 196, 7, 230, 2, // Opcode: CLGITAsmH |
6506 | /* 20677 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20687 |
6507 | /* 20682 */ MCD::OPC_Decode, 198, 7, 230, 2, // Opcode: CLGITAsmL |
6508 | /* 20687 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20697 |
6509 | /* 20692 */ MCD::OPC_Decode, 200, 7, 230, 2, // Opcode: CLGITAsmLH |
6510 | /* 20697 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20707 |
6511 | /* 20702 */ MCD::OPC_Decode, 195, 7, 230, 2, // Opcode: CLGITAsmE |
6512 | /* 20707 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20717 |
6513 | /* 20712 */ MCD::OPC_Decode, 197, 7, 230, 2, // Opcode: CLGITAsmHE |
6514 | /* 20717 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20727 |
6515 | /* 20722 */ MCD::OPC_Decode, 199, 7, 230, 2, // Opcode: CLGITAsmLE |
6516 | /* 20727 */ MCD::OPC_Decode, 194, 7, 231, 2, // Opcode: CLGITAsm |
6517 | /* 20732 */ MCD::OPC_FilterValue, 114, 84, 0, 0, // Skip to: 20821 |
6518 | /* 20737 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6519 | /* 20740 */ MCD::OPC_FilterValue, 0, 224, 9, 0, // Skip to: 23273 |
6520 | /* 20745 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6521 | /* 20748 */ MCD::OPC_FilterValue, 0, 216, 9, 0, // Skip to: 23273 |
6522 | /* 20753 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6523 | /* 20756 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20766 |
6524 | /* 20761 */ MCD::OPC_Decode, 245, 6, 232, 2, // Opcode: CITAsmH |
6525 | /* 20766 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20776 |
6526 | /* 20771 */ MCD::OPC_Decode, 247, 6, 232, 2, // Opcode: CITAsmL |
6527 | /* 20776 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20786 |
6528 | /* 20781 */ MCD::OPC_Decode, 249, 6, 232, 2, // Opcode: CITAsmLH |
6529 | /* 20786 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20796 |
6530 | /* 20791 */ MCD::OPC_Decode, 244, 6, 232, 2, // Opcode: CITAsmE |
6531 | /* 20796 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20806 |
6532 | /* 20801 */ MCD::OPC_Decode, 246, 6, 232, 2, // Opcode: CITAsmHE |
6533 | /* 20806 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20816 |
6534 | /* 20811 */ MCD::OPC_Decode, 248, 6, 232, 2, // Opcode: CITAsmLE |
6535 | /* 20816 */ MCD::OPC_Decode, 243, 6, 233, 2, // Opcode: CITAsm |
6536 | /* 20821 */ MCD::OPC_FilterValue, 115, 84, 0, 0, // Skip to: 20910 |
6537 | /* 20826 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6538 | /* 20829 */ MCD::OPC_FilterValue, 0, 135, 9, 0, // Skip to: 23273 |
6539 | /* 20834 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6540 | /* 20837 */ MCD::OPC_FilterValue, 0, 127, 9, 0, // Skip to: 23273 |
6541 | /* 20842 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6542 | /* 20845 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20855 |
6543 | /* 20850 */ MCD::OPC_Decode, 142, 7, 234, 2, // Opcode: CLFITAsmH |
6544 | /* 20855 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20865 |
6545 | /* 20860 */ MCD::OPC_Decode, 144, 7, 234, 2, // Opcode: CLFITAsmL |
6546 | /* 20865 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20875 |
6547 | /* 20870 */ MCD::OPC_Decode, 146, 7, 234, 2, // Opcode: CLFITAsmLH |
6548 | /* 20875 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20885 |
6549 | /* 20880 */ MCD::OPC_Decode, 141, 7, 234, 2, // Opcode: CLFITAsmE |
6550 | /* 20885 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20895 |
6551 | /* 20890 */ MCD::OPC_Decode, 143, 7, 234, 2, // Opcode: CLFITAsmHE |
6552 | /* 20895 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20905 |
6553 | /* 20900 */ MCD::OPC_Decode, 145, 7, 234, 2, // Opcode: CLFITAsmLE |
6554 | /* 20905 */ MCD::OPC_Decode, 140, 7, 235, 2, // Opcode: CLFITAsm |
6555 | /* 20910 */ MCD::OPC_FilterValue, 118, 76, 0, 0, // Skip to: 20991 |
6556 | /* 20915 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6557 | /* 20918 */ MCD::OPC_FilterValue, 0, 46, 9, 0, // Skip to: 23273 |
6558 | /* 20923 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6559 | /* 20926 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 20936 |
6560 | /* 20931 */ MCD::OPC_Decode, 139, 9, 236, 2, // Opcode: CRJAsmH |
6561 | /* 20936 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 20946 |
6562 | /* 20941 */ MCD::OPC_Decode, 141, 9, 236, 2, // Opcode: CRJAsmL |
6563 | /* 20946 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 20956 |
6564 | /* 20951 */ MCD::OPC_Decode, 143, 9, 236, 2, // Opcode: CRJAsmLH |
6565 | /* 20956 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 20966 |
6566 | /* 20961 */ MCD::OPC_Decode, 138, 9, 236, 2, // Opcode: CRJAsmE |
6567 | /* 20966 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 20976 |
6568 | /* 20971 */ MCD::OPC_Decode, 140, 9, 236, 2, // Opcode: CRJAsmHE |
6569 | /* 20976 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 20986 |
6570 | /* 20981 */ MCD::OPC_Decode, 142, 9, 236, 2, // Opcode: CRJAsmLE |
6571 | /* 20986 */ MCD::OPC_Decode, 137, 9, 237, 2, // Opcode: CRJAsm |
6572 | /* 20991 */ MCD::OPC_FilterValue, 119, 76, 0, 0, // Skip to: 21072 |
6573 | /* 20996 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6574 | /* 20999 */ MCD::OPC_FilterValue, 0, 221, 8, 0, // Skip to: 23273 |
6575 | /* 21004 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6576 | /* 21007 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21017 |
6577 | /* 21012 */ MCD::OPC_Decode, 196, 8, 236, 2, // Opcode: CLRJAsmH |
6578 | /* 21017 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21027 |
6579 | /* 21022 */ MCD::OPC_Decode, 198, 8, 236, 2, // Opcode: CLRJAsmL |
6580 | /* 21027 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21037 |
6581 | /* 21032 */ MCD::OPC_Decode, 200, 8, 236, 2, // Opcode: CLRJAsmLH |
6582 | /* 21037 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21047 |
6583 | /* 21042 */ MCD::OPC_Decode, 195, 8, 236, 2, // Opcode: CLRJAsmE |
6584 | /* 21047 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21057 |
6585 | /* 21052 */ MCD::OPC_Decode, 197, 8, 236, 2, // Opcode: CLRJAsmHE |
6586 | /* 21057 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21067 |
6587 | /* 21062 */ MCD::OPC_Decode, 199, 8, 236, 2, // Opcode: CLRJAsmLE |
6588 | /* 21067 */ MCD::OPC_Decode, 194, 8, 237, 2, // Opcode: CLRJAsm |
6589 | /* 21072 */ MCD::OPC_FilterValue, 124, 68, 0, 0, // Skip to: 21145 |
6590 | /* 21077 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6591 | /* 21080 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21090 |
6592 | /* 21085 */ MCD::OPC_Decode, 130, 6, 238, 2, // Opcode: CGIJAsmH |
6593 | /* 21090 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21100 |
6594 | /* 21095 */ MCD::OPC_Decode, 132, 6, 238, 2, // Opcode: CGIJAsmL |
6595 | /* 21100 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21110 |
6596 | /* 21105 */ MCD::OPC_Decode, 134, 6, 238, 2, // Opcode: CGIJAsmLH |
6597 | /* 21110 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21120 |
6598 | /* 21115 */ MCD::OPC_Decode, 129, 6, 238, 2, // Opcode: CGIJAsmE |
6599 | /* 21120 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21130 |
6600 | /* 21125 */ MCD::OPC_Decode, 131, 6, 238, 2, // Opcode: CGIJAsmHE |
6601 | /* 21130 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21140 |
6602 | /* 21135 */ MCD::OPC_Decode, 133, 6, 238, 2, // Opcode: CGIJAsmLE |
6603 | /* 21140 */ MCD::OPC_Decode, 128, 6, 239, 2, // Opcode: CGIJAsm |
6604 | /* 21145 */ MCD::OPC_FilterValue, 125, 68, 0, 0, // Skip to: 21218 |
6605 | /* 21150 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6606 | /* 21153 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21163 |
6607 | /* 21158 */ MCD::OPC_Decode, 182, 7, 240, 2, // Opcode: CLGIJAsmH |
6608 | /* 21163 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21173 |
6609 | /* 21168 */ MCD::OPC_Decode, 184, 7, 240, 2, // Opcode: CLGIJAsmL |
6610 | /* 21173 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21183 |
6611 | /* 21178 */ MCD::OPC_Decode, 186, 7, 240, 2, // Opcode: CLGIJAsmLH |
6612 | /* 21183 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21193 |
6613 | /* 21188 */ MCD::OPC_Decode, 181, 7, 240, 2, // Opcode: CLGIJAsmE |
6614 | /* 21193 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21203 |
6615 | /* 21198 */ MCD::OPC_Decode, 183, 7, 240, 2, // Opcode: CLGIJAsmHE |
6616 | /* 21203 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21213 |
6617 | /* 21208 */ MCD::OPC_Decode, 185, 7, 240, 2, // Opcode: CLGIJAsmLE |
6618 | /* 21213 */ MCD::OPC_Decode, 180, 7, 241, 2, // Opcode: CLGIJAsm |
6619 | /* 21218 */ MCD::OPC_FilterValue, 126, 68, 0, 0, // Skip to: 21291 |
6620 | /* 21223 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6621 | /* 21226 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21236 |
6622 | /* 21231 */ MCD::OPC_Decode, 231, 6, 242, 2, // Opcode: CIJAsmH |
6623 | /* 21236 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21246 |
6624 | /* 21241 */ MCD::OPC_Decode, 233, 6, 242, 2, // Opcode: CIJAsmL |
6625 | /* 21246 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21256 |
6626 | /* 21251 */ MCD::OPC_Decode, 235, 6, 242, 2, // Opcode: CIJAsmLH |
6627 | /* 21256 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21266 |
6628 | /* 21261 */ MCD::OPC_Decode, 230, 6, 242, 2, // Opcode: CIJAsmE |
6629 | /* 21266 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21276 |
6630 | /* 21271 */ MCD::OPC_Decode, 232, 6, 242, 2, // Opcode: CIJAsmHE |
6631 | /* 21276 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21286 |
6632 | /* 21281 */ MCD::OPC_Decode, 234, 6, 242, 2, // Opcode: CIJAsmLE |
6633 | /* 21286 */ MCD::OPC_Decode, 229, 6, 243, 2, // Opcode: CIJAsm |
6634 | /* 21291 */ MCD::OPC_FilterValue, 127, 68, 0, 0, // Skip to: 21364 |
6635 | /* 21296 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6636 | /* 21299 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21309 |
6637 | /* 21304 */ MCD::OPC_Decode, 163, 8, 244, 2, // Opcode: CLIJAsmH |
6638 | /* 21309 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21319 |
6639 | /* 21314 */ MCD::OPC_Decode, 165, 8, 244, 2, // Opcode: CLIJAsmL |
6640 | /* 21319 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21329 |
6641 | /* 21324 */ MCD::OPC_Decode, 167, 8, 244, 2, // Opcode: CLIJAsmLH |
6642 | /* 21329 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21339 |
6643 | /* 21334 */ MCD::OPC_Decode, 162, 8, 244, 2, // Opcode: CLIJAsmE |
6644 | /* 21339 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21349 |
6645 | /* 21344 */ MCD::OPC_Decode, 164, 8, 244, 2, // Opcode: CLIJAsmHE |
6646 | /* 21349 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21359 |
6647 | /* 21354 */ MCD::OPC_Decode, 166, 8, 244, 2, // Opcode: CLIJAsmLE |
6648 | /* 21359 */ MCD::OPC_Decode, 161, 8, 245, 2, // Opcode: CLIJAsm |
6649 | /* 21364 */ MCD::OPC_FilterValue, 216, 1, 17, 0, 0, // Skip to: 21387 |
6650 | /* 21370 */ MCD::OPC_CheckPredicate, 24, 106, 7, 0, // Skip to: 23273 |
6651 | /* 21375 */ MCD::OPC_CheckField, 8, 8, 0, 99, 7, 0, // Skip to: 23273 |
6652 | /* 21382 */ MCD::OPC_Decode, 159, 4, 246, 2, // Opcode: AHIK |
6653 | /* 21387 */ MCD::OPC_FilterValue, 217, 1, 17, 0, 0, // Skip to: 21410 |
6654 | /* 21393 */ MCD::OPC_CheckPredicate, 24, 83, 7, 0, // Skip to: 23273 |
6655 | /* 21398 */ MCD::OPC_CheckField, 8, 8, 0, 76, 7, 0, // Skip to: 23273 |
6656 | /* 21405 */ MCD::OPC_Decode, 151, 4, 247, 2, // Opcode: AGHIK |
6657 | /* 21410 */ MCD::OPC_FilterValue, 218, 1, 17, 0, 0, // Skip to: 21433 |
6658 | /* 21416 */ MCD::OPC_CheckPredicate, 24, 60, 7, 0, // Skip to: 23273 |
6659 | /* 21421 */ MCD::OPC_CheckField, 8, 8, 0, 53, 7, 0, // Skip to: 23273 |
6660 | /* 21428 */ MCD::OPC_Decode, 178, 4, 246, 2, // Opcode: ALHSIK |
6661 | /* 21433 */ MCD::OPC_FilterValue, 219, 1, 17, 0, 0, // Skip to: 21456 |
6662 | /* 21439 */ MCD::OPC_CheckPredicate, 24, 37, 7, 0, // Skip to: 23273 |
6663 | /* 21444 */ MCD::OPC_CheckField, 8, 8, 0, 30, 7, 0, // Skip to: 23273 |
6664 | /* 21451 */ MCD::OPC_Decode, 172, 4, 247, 2, // Opcode: ALGHSIK |
6665 | /* 21456 */ MCD::OPC_FilterValue, 228, 1, 76, 0, 0, // Skip to: 21538 |
6666 | /* 21462 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6667 | /* 21465 */ MCD::OPC_FilterValue, 0, 11, 7, 0, // Skip to: 23273 |
6668 | /* 21470 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6669 | /* 21473 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21483 |
6670 | /* 21478 */ MCD::OPC_Decode, 159, 6, 248, 2, // Opcode: CGRBAsmH |
6671 | /* 21483 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21493 |
6672 | /* 21488 */ MCD::OPC_Decode, 161, 6, 248, 2, // Opcode: CGRBAsmL |
6673 | /* 21493 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21503 |
6674 | /* 21498 */ MCD::OPC_Decode, 163, 6, 248, 2, // Opcode: CGRBAsmLH |
6675 | /* 21503 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21513 |
6676 | /* 21508 */ MCD::OPC_Decode, 158, 6, 248, 2, // Opcode: CGRBAsmE |
6677 | /* 21513 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21523 |
6678 | /* 21518 */ MCD::OPC_Decode, 160, 6, 248, 2, // Opcode: CGRBAsmHE |
6679 | /* 21523 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21533 |
6680 | /* 21528 */ MCD::OPC_Decode, 162, 6, 248, 2, // Opcode: CGRBAsmLE |
6681 | /* 21533 */ MCD::OPC_Decode, 157, 6, 249, 2, // Opcode: CGRBAsm |
6682 | /* 21538 */ MCD::OPC_FilterValue, 229, 1, 76, 0, 0, // Skip to: 21620 |
6683 | /* 21544 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6684 | /* 21547 */ MCD::OPC_FilterValue, 0, 185, 6, 0, // Skip to: 23273 |
6685 | /* 21552 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6686 | /* 21555 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21565 |
6687 | /* 21560 */ MCD::OPC_Decode, 211, 7, 248, 2, // Opcode: CLGRBAsmH |
6688 | /* 21565 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21575 |
6689 | /* 21570 */ MCD::OPC_Decode, 213, 7, 248, 2, // Opcode: CLGRBAsmL |
6690 | /* 21575 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21585 |
6691 | /* 21580 */ MCD::OPC_Decode, 215, 7, 248, 2, // Opcode: CLGRBAsmLH |
6692 | /* 21585 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21595 |
6693 | /* 21590 */ MCD::OPC_Decode, 210, 7, 248, 2, // Opcode: CLGRBAsmE |
6694 | /* 21595 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21605 |
6695 | /* 21600 */ MCD::OPC_Decode, 212, 7, 248, 2, // Opcode: CLGRBAsmHE |
6696 | /* 21605 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21615 |
6697 | /* 21610 */ MCD::OPC_Decode, 214, 7, 248, 2, // Opcode: CLGRBAsmLE |
6698 | /* 21615 */ MCD::OPC_Decode, 209, 7, 249, 2, // Opcode: CLGRBAsm |
6699 | /* 21620 */ MCD::OPC_FilterValue, 246, 1, 76, 0, 0, // Skip to: 21702 |
6700 | /* 21626 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6701 | /* 21629 */ MCD::OPC_FilterValue, 0, 103, 6, 0, // Skip to: 23273 |
6702 | /* 21634 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6703 | /* 21637 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21647 |
6704 | /* 21642 */ MCD::OPC_Decode, 251, 8, 250, 2, // Opcode: CRBAsmH |
6705 | /* 21647 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21657 |
6706 | /* 21652 */ MCD::OPC_Decode, 253, 8, 250, 2, // Opcode: CRBAsmL |
6707 | /* 21657 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21667 |
6708 | /* 21662 */ MCD::OPC_Decode, 255, 8, 250, 2, // Opcode: CRBAsmLH |
6709 | /* 21667 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21677 |
6710 | /* 21672 */ MCD::OPC_Decode, 250, 8, 250, 2, // Opcode: CRBAsmE |
6711 | /* 21677 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21687 |
6712 | /* 21682 */ MCD::OPC_Decode, 252, 8, 250, 2, // Opcode: CRBAsmHE |
6713 | /* 21687 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21697 |
6714 | /* 21692 */ MCD::OPC_Decode, 254, 8, 250, 2, // Opcode: CRBAsmLE |
6715 | /* 21697 */ MCD::OPC_Decode, 249, 8, 251, 2, // Opcode: CRBAsm |
6716 | /* 21702 */ MCD::OPC_FilterValue, 247, 1, 76, 0, 0, // Skip to: 21784 |
6717 | /* 21708 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... |
6718 | /* 21711 */ MCD::OPC_FilterValue, 0, 21, 6, 0, // Skip to: 23273 |
6719 | /* 21716 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
6720 | /* 21719 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21729 |
6721 | /* 21724 */ MCD::OPC_Decode, 182, 8, 250, 2, // Opcode: CLRBAsmH |
6722 | /* 21729 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21739 |
6723 | /* 21734 */ MCD::OPC_Decode, 184, 8, 250, 2, // Opcode: CLRBAsmL |
6724 | /* 21739 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21749 |
6725 | /* 21744 */ MCD::OPC_Decode, 186, 8, 250, 2, // Opcode: CLRBAsmLH |
6726 | /* 21749 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21759 |
6727 | /* 21754 */ MCD::OPC_Decode, 181, 8, 250, 2, // Opcode: CLRBAsmE |
6728 | /* 21759 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21769 |
6729 | /* 21764 */ MCD::OPC_Decode, 183, 8, 250, 2, // Opcode: CLRBAsmHE |
6730 | /* 21769 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21779 |
6731 | /* 21774 */ MCD::OPC_Decode, 185, 8, 250, 2, // Opcode: CLRBAsmLE |
6732 | /* 21779 */ MCD::OPC_Decode, 180, 8, 251, 2, // Opcode: CLRBAsm |
6733 | /* 21784 */ MCD::OPC_FilterValue, 252, 1, 68, 0, 0, // Skip to: 21858 |
6734 | /* 21790 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6735 | /* 21793 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21803 |
6736 | /* 21798 */ MCD::OPC_Decode, 244, 5, 252, 2, // Opcode: CGIBAsmH |
6737 | /* 21803 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21813 |
6738 | /* 21808 */ MCD::OPC_Decode, 246, 5, 252, 2, // Opcode: CGIBAsmL |
6739 | /* 21813 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21823 |
6740 | /* 21818 */ MCD::OPC_Decode, 248, 5, 252, 2, // Opcode: CGIBAsmLH |
6741 | /* 21823 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21833 |
6742 | /* 21828 */ MCD::OPC_Decode, 243, 5, 252, 2, // Opcode: CGIBAsmE |
6743 | /* 21833 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21843 |
6744 | /* 21838 */ MCD::OPC_Decode, 245, 5, 252, 2, // Opcode: CGIBAsmHE |
6745 | /* 21843 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21853 |
6746 | /* 21848 */ MCD::OPC_Decode, 247, 5, 252, 2, // Opcode: CGIBAsmLE |
6747 | /* 21853 */ MCD::OPC_Decode, 242, 5, 253, 2, // Opcode: CGIBAsm |
6748 | /* 21858 */ MCD::OPC_FilterValue, 253, 1, 68, 0, 0, // Skip to: 21932 |
6749 | /* 21864 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6750 | /* 21867 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21877 |
6751 | /* 21872 */ MCD::OPC_Decode, 168, 7, 254, 2, // Opcode: CLGIBAsmH |
6752 | /* 21877 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21887 |
6753 | /* 21882 */ MCD::OPC_Decode, 170, 7, 254, 2, // Opcode: CLGIBAsmL |
6754 | /* 21887 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21897 |
6755 | /* 21892 */ MCD::OPC_Decode, 172, 7, 254, 2, // Opcode: CLGIBAsmLH |
6756 | /* 21897 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21907 |
6757 | /* 21902 */ MCD::OPC_Decode, 167, 7, 254, 2, // Opcode: CLGIBAsmE |
6758 | /* 21907 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21917 |
6759 | /* 21912 */ MCD::OPC_Decode, 169, 7, 254, 2, // Opcode: CLGIBAsmHE |
6760 | /* 21917 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 21927 |
6761 | /* 21922 */ MCD::OPC_Decode, 171, 7, 254, 2, // Opcode: CLGIBAsmLE |
6762 | /* 21927 */ MCD::OPC_Decode, 166, 7, 255, 2, // Opcode: CLGIBAsm |
6763 | /* 21932 */ MCD::OPC_FilterValue, 254, 1, 68, 0, 0, // Skip to: 22006 |
6764 | /* 21938 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6765 | /* 21941 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 21951 |
6766 | /* 21946 */ MCD::OPC_Decode, 216, 6, 128, 3, // Opcode: CIBAsmH |
6767 | /* 21951 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 21961 |
6768 | /* 21956 */ MCD::OPC_Decode, 218, 6, 128, 3, // Opcode: CIBAsmL |
6769 | /* 21961 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 21971 |
6770 | /* 21966 */ MCD::OPC_Decode, 220, 6, 128, 3, // Opcode: CIBAsmLH |
6771 | /* 21971 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 21981 |
6772 | /* 21976 */ MCD::OPC_Decode, 215, 6, 128, 3, // Opcode: CIBAsmE |
6773 | /* 21981 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 21991 |
6774 | /* 21986 */ MCD::OPC_Decode, 217, 6, 128, 3, // Opcode: CIBAsmHE |
6775 | /* 21991 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 22001 |
6776 | /* 21996 */ MCD::OPC_Decode, 219, 6, 128, 3, // Opcode: CIBAsmLE |
6777 | /* 22001 */ MCD::OPC_Decode, 214, 6, 129, 3, // Opcode: CIBAsm |
6778 | /* 22006 */ MCD::OPC_FilterValue, 255, 1, 237, 4, 0, // Skip to: 23273 |
6779 | /* 22012 */ MCD::OPC_ExtractField, 32, 4, // Inst{35-32} ... |
6780 | /* 22015 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 22025 |
6781 | /* 22020 */ MCD::OPC_Decode, 148, 8, 130, 3, // Opcode: CLIBAsmH |
6782 | /* 22025 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 22035 |
6783 | /* 22030 */ MCD::OPC_Decode, 150, 8, 130, 3, // Opcode: CLIBAsmL |
6784 | /* 22035 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 22045 |
6785 | /* 22040 */ MCD::OPC_Decode, 152, 8, 130, 3, // Opcode: CLIBAsmLH |
6786 | /* 22045 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 22055 |
6787 | /* 22050 */ MCD::OPC_Decode, 147, 8, 130, 3, // Opcode: CLIBAsmE |
6788 | /* 22055 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 22065 |
6789 | /* 22060 */ MCD::OPC_Decode, 149, 8, 130, 3, // Opcode: CLIBAsmHE |
6790 | /* 22065 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 22075 |
6791 | /* 22070 */ MCD::OPC_Decode, 151, 8, 130, 3, // Opcode: CLIBAsmLE |
6792 | /* 22075 */ MCD::OPC_Decode, 146, 8, 131, 3, // Opcode: CLIBAsm |
6793 | /* 22080 */ MCD::OPC_FilterValue, 237, 1, 31, 4, 0, // Skip to: 23141 |
6794 | /* 22086 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6795 | /* 22089 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 22106 |
6796 | /* 22094 */ MCD::OPC_CheckField, 8, 8, 0, 148, 4, 0, // Skip to: 23273 |
6797 | /* 22101 */ MCD::OPC_Decode, 191, 11, 132, 3, // Opcode: LDEB |
6798 | /* 22106 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 22123 |
6799 | /* 22111 */ MCD::OPC_CheckField, 8, 8, 0, 131, 4, 0, // Skip to: 23273 |
6800 | /* 22118 */ MCD::OPC_Decode, 147, 14, 133, 3, // Opcode: LXDB |
6801 | /* 22123 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 22140 |
6802 | /* 22128 */ MCD::OPC_CheckField, 8, 8, 0, 114, 4, 0, // Skip to: 23273 |
6803 | /* 22135 */ MCD::OPC_Decode, 152, 14, 133, 3, // Opcode: LXEB |
6804 | /* 22140 */ MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 22157 |
6805 | /* 22145 */ MCD::OPC_CheckField, 8, 8, 0, 97, 4, 0, // Skip to: 23273 |
6806 | /* 22152 */ MCD::OPC_Decode, 255, 14, 134, 3, // Opcode: MXDB |
6807 | /* 22157 */ MCD::OPC_FilterValue, 8, 12, 0, 0, // Skip to: 22174 |
6808 | /* 22162 */ MCD::OPC_CheckField, 8, 8, 0, 80, 4, 0, // Skip to: 23273 |
6809 | /* 22169 */ MCD::OPC_Decode, 136, 11, 135, 3, // Opcode: KEB |
6810 | /* 22174 */ MCD::OPC_FilterValue, 9, 12, 0, 0, // Skip to: 22191 |
6811 | /* 22179 */ MCD::OPC_CheckField, 8, 8, 0, 63, 4, 0, // Skip to: 23273 |
6812 | /* 22186 */ MCD::OPC_Decode, 198, 5, 135, 3, // Opcode: CEB |
6813 | /* 22191 */ MCD::OPC_FilterValue, 10, 12, 0, 0, // Skip to: 22208 |
6814 | /* 22196 */ MCD::OPC_CheckField, 8, 8, 0, 46, 4, 0, // Skip to: 23273 |
6815 | /* 22203 */ MCD::OPC_Decode, 141, 4, 136, 3, // Opcode: AEB |
6816 | /* 22208 */ MCD::OPC_FilterValue, 11, 12, 0, 0, // Skip to: 22225 |
6817 | /* 22213 */ MCD::OPC_CheckField, 8, 8, 0, 29, 4, 0, // Skip to: 23273 |
6818 | /* 22220 */ MCD::OPC_Decode, 132, 16, 136, 3, // Opcode: SEB |
6819 | /* 22225 */ MCD::OPC_FilterValue, 12, 12, 0, 0, // Skip to: 22242 |
6820 | /* 22230 */ MCD::OPC_CheckField, 8, 8, 0, 12, 4, 0, // Skip to: 23273 |
6821 | /* 22237 */ MCD::OPC_Decode, 182, 14, 137, 3, // Opcode: MDEB |
6822 | /* 22242 */ MCD::OPC_FilterValue, 13, 12, 0, 0, // Skip to: 22259 |
6823 | /* 22247 */ MCD::OPC_CheckField, 8, 8, 0, 251, 3, 0, // Skip to: 23273 |
6824 | /* 22254 */ MCD::OPC_Decode, 228, 9, 136, 3, // Opcode: DEB |
6825 | /* 22259 */ MCD::OPC_FilterValue, 14, 12, 0, 0, // Skip to: 22276 |
6826 | /* 22264 */ MCD::OPC_CheckField, 8, 4, 0, 234, 3, 0, // Skip to: 23273 |
6827 | /* 22271 */ MCD::OPC_Decode, 168, 14, 138, 3, // Opcode: MAEB |
6828 | /* 22276 */ MCD::OPC_FilterValue, 15, 12, 0, 0, // Skip to: 22293 |
6829 | /* 22281 */ MCD::OPC_CheckField, 8, 4, 0, 217, 3, 0, // Skip to: 23273 |
6830 | /* 22288 */ MCD::OPC_Decode, 216, 14, 138, 3, // Opcode: MSEB |
6831 | /* 22293 */ MCD::OPC_FilterValue, 16, 12, 0, 0, // Skip to: 22310 |
6832 | /* 22298 */ MCD::OPC_CheckField, 8, 8, 0, 200, 3, 0, // Skip to: 23273 |
6833 | /* 22305 */ MCD::OPC_Decode, 167, 18, 135, 3, // Opcode: TCEB |
6834 | /* 22310 */ MCD::OPC_FilterValue, 17, 12, 0, 0, // Skip to: 22327 |
6835 | /* 22315 */ MCD::OPC_CheckField, 8, 8, 0, 183, 3, 0, // Skip to: 23273 |
6836 | /* 22322 */ MCD::OPC_Decode, 166, 18, 132, 3, // Opcode: TCDB |
6837 | /* 22327 */ MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 22344 |
6838 | /* 22332 */ MCD::OPC_CheckField, 8, 8, 0, 166, 3, 0, // Skip to: 23273 |
6839 | /* 22339 */ MCD::OPC_Decode, 168, 18, 133, 3, // Opcode: TCXB |
6840 | /* 22344 */ MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 22361 |
6841 | /* 22349 */ MCD::OPC_CheckField, 8, 8, 0, 149, 3, 0, // Skip to: 23273 |
6842 | /* 22356 */ MCD::OPC_Decode, 255, 16, 135, 3, // Opcode: SQEB |
6843 | /* 22361 */ MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 22378 |
6844 | /* 22366 */ MCD::OPC_CheckField, 8, 8, 0, 132, 3, 0, // Skip to: 23273 |
6845 | /* 22373 */ MCD::OPC_Decode, 251, 16, 132, 3, // Opcode: SQDB |
6846 | /* 22378 */ MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 22395 |
6847 | /* 22383 */ MCD::OPC_CheckField, 8, 8, 0, 115, 3, 0, // Skip to: 23273 |
6848 | /* 22390 */ MCD::OPC_Decode, 190, 14, 136, 3, // Opcode: MEEB |
6849 | /* 22395 */ MCD::OPC_FilterValue, 24, 12, 0, 0, // Skip to: 22412 |
6850 | /* 22400 */ MCD::OPC_CheckField, 8, 8, 0, 98, 3, 0, // Skip to: 23273 |
6851 | /* 22407 */ MCD::OPC_Decode, 132, 11, 132, 3, // Opcode: KDB |
6852 | /* 22412 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 22429 |
6853 | /* 22417 */ MCD::OPC_CheckField, 8, 8, 0, 81, 3, 0, // Skip to: 23273 |
6854 | /* 22424 */ MCD::OPC_Decode, 173, 5, 132, 3, // Opcode: CDB |
6855 | /* 22429 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 22446 |
6856 | /* 22434 */ MCD::OPC_CheckField, 8, 8, 0, 64, 3, 0, // Skip to: 23273 |
6857 | /* 22441 */ MCD::OPC_Decode, 135, 4, 137, 3, // Opcode: ADB |
6858 | /* 22446 */ MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 22463 |
6859 | /* 22451 */ MCD::OPC_CheckField, 8, 8, 0, 47, 3, 0, // Skip to: 23273 |
6860 | /* 22458 */ MCD::OPC_Decode, 254, 15, 137, 3, // Opcode: SDB |
6861 | /* 22463 */ MCD::OPC_FilterValue, 28, 12, 0, 0, // Skip to: 22480 |
6862 | /* 22468 */ MCD::OPC_CheckField, 8, 8, 0, 30, 3, 0, // Skip to: 23273 |
6863 | /* 22475 */ MCD::OPC_Decode, 179, 14, 137, 3, // Opcode: MDB |
6864 | /* 22480 */ MCD::OPC_FilterValue, 29, 12, 0, 0, // Skip to: 22497 |
6865 | /* 22485 */ MCD::OPC_CheckField, 8, 8, 0, 13, 3, 0, // Skip to: 23273 |
6866 | /* 22492 */ MCD::OPC_Decode, 222, 9, 137, 3, // Opcode: DDB |
6867 | /* 22497 */ MCD::OPC_FilterValue, 30, 12, 0, 0, // Skip to: 22514 |
6868 | /* 22502 */ MCD::OPC_CheckField, 8, 4, 0, 252, 2, 0, // Skip to: 23273 |
6869 | /* 22509 */ MCD::OPC_Decode, 164, 14, 139, 3, // Opcode: MADB |
6870 | /* 22514 */ MCD::OPC_FilterValue, 31, 12, 0, 0, // Skip to: 22531 |
6871 | /* 22519 */ MCD::OPC_CheckField, 8, 4, 0, 235, 2, 0, // Skip to: 23273 |
6872 | /* 22526 */ MCD::OPC_Decode, 212, 14, 139, 3, // Opcode: MSDB |
6873 | /* 22531 */ MCD::OPC_FilterValue, 36, 12, 0, 0, // Skip to: 22548 |
6874 | /* 22536 */ MCD::OPC_CheckField, 8, 8, 0, 218, 2, 0, // Skip to: 23273 |
6875 | /* 22543 */ MCD::OPC_Decode, 189, 11, 132, 3, // Opcode: LDE |
6876 | /* 22548 */ MCD::OPC_FilterValue, 37, 12, 0, 0, // Skip to: 22565 |
6877 | /* 22553 */ MCD::OPC_CheckField, 8, 8, 0, 201, 2, 0, // Skip to: 23273 |
6878 | /* 22560 */ MCD::OPC_Decode, 146, 14, 133, 3, // Opcode: LXD |
6879 | /* 22565 */ MCD::OPC_FilterValue, 38, 12, 0, 0, // Skip to: 22582 |
6880 | /* 22570 */ MCD::OPC_CheckField, 8, 8, 0, 184, 2, 0, // Skip to: 23273 |
6881 | /* 22577 */ MCD::OPC_Decode, 151, 14, 133, 3, // Opcode: LXE |
6882 | /* 22582 */ MCD::OPC_FilterValue, 46, 12, 0, 0, // Skip to: 22599 |
6883 | /* 22587 */ MCD::OPC_CheckField, 8, 4, 0, 167, 2, 0, // Skip to: 23273 |
6884 | /* 22594 */ MCD::OPC_Decode, 167, 14, 138, 3, // Opcode: MAE |
6885 | /* 22599 */ MCD::OPC_FilterValue, 47, 12, 0, 0, // Skip to: 22616 |
6886 | /* 22604 */ MCD::OPC_CheckField, 8, 4, 0, 150, 2, 0, // Skip to: 23273 |
6887 | /* 22611 */ MCD::OPC_Decode, 215, 14, 138, 3, // Opcode: MSE |
6888 | /* 22616 */ MCD::OPC_FilterValue, 52, 12, 0, 0, // Skip to: 22633 |
6889 | /* 22621 */ MCD::OPC_CheckField, 8, 8, 0, 133, 2, 0, // Skip to: 23273 |
6890 | /* 22628 */ MCD::OPC_Decode, 254, 16, 135, 3, // Opcode: SQE |
6891 | /* 22633 */ MCD::OPC_FilterValue, 53, 12, 0, 0, // Skip to: 22650 |
6892 | /* 22638 */ MCD::OPC_CheckField, 8, 8, 0, 116, 2, 0, // Skip to: 23273 |
6893 | /* 22645 */ MCD::OPC_Decode, 250, 16, 132, 3, // Opcode: SQD |
6894 | /* 22650 */ MCD::OPC_FilterValue, 55, 12, 0, 0, // Skip to: 22667 |
6895 | /* 22655 */ MCD::OPC_CheckField, 8, 8, 0, 99, 2, 0, // Skip to: 23273 |
6896 | /* 22662 */ MCD::OPC_Decode, 189, 14, 136, 3, // Opcode: MEE |
6897 | /* 22667 */ MCD::OPC_FilterValue, 56, 12, 0, 0, // Skip to: 22684 |
6898 | /* 22672 */ MCD::OPC_CheckField, 8, 4, 0, 82, 2, 0, // Skip to: 23273 |
6899 | /* 22679 */ MCD::OPC_Decode, 174, 14, 139, 3, // Opcode: MAYL |
6900 | /* 22684 */ MCD::OPC_FilterValue, 57, 12, 0, 0, // Skip to: 22701 |
6901 | /* 22689 */ MCD::OPC_CheckField, 8, 4, 0, 65, 2, 0, // Skip to: 23273 |
6902 | /* 22696 */ MCD::OPC_Decode, 136, 15, 140, 3, // Opcode: MYL |
6903 | /* 22701 */ MCD::OPC_FilterValue, 58, 12, 0, 0, // Skip to: 22718 |
6904 | /* 22706 */ MCD::OPC_CheckField, 8, 4, 0, 48, 2, 0, // Skip to: 23273 |
6905 | /* 22713 */ MCD::OPC_Decode, 171, 14, 139, 3, // Opcode: MAY |
6906 | /* 22718 */ MCD::OPC_FilterValue, 59, 12, 0, 0, // Skip to: 22735 |
6907 | /* 22723 */ MCD::OPC_CheckField, 8, 4, 0, 31, 2, 0, // Skip to: 23273 |
6908 | /* 22730 */ MCD::OPC_Decode, 133, 15, 141, 3, // Opcode: MY |
6909 | /* 22735 */ MCD::OPC_FilterValue, 60, 12, 0, 0, // Skip to: 22752 |
6910 | /* 22740 */ MCD::OPC_CheckField, 8, 4, 0, 14, 2, 0, // Skip to: 23273 |
6911 | /* 22747 */ MCD::OPC_Decode, 172, 14, 139, 3, // Opcode: MAYH |
6912 | /* 22752 */ MCD::OPC_FilterValue, 61, 12, 0, 0, // Skip to: 22769 |
6913 | /* 22757 */ MCD::OPC_CheckField, 8, 4, 0, 253, 1, 0, // Skip to: 23273 |
6914 | /* 22764 */ MCD::OPC_Decode, 134, 15, 140, 3, // Opcode: MYH |
6915 | /* 22769 */ MCD::OPC_FilterValue, 62, 12, 0, 0, // Skip to: 22786 |
6916 | /* 22774 */ MCD::OPC_CheckField, 8, 4, 0, 236, 1, 0, // Skip to: 23273 |
6917 | /* 22781 */ MCD::OPC_Decode, 163, 14, 139, 3, // Opcode: MAD |
6918 | /* 22786 */ MCD::OPC_FilterValue, 63, 12, 0, 0, // Skip to: 22803 |
6919 | /* 22791 */ MCD::OPC_CheckField, 8, 4, 0, 219, 1, 0, // Skip to: 23273 |
6920 | /* 22798 */ MCD::OPC_Decode, 211, 14, 139, 3, // Opcode: MSD |
6921 | /* 22803 */ MCD::OPC_FilterValue, 64, 12, 0, 0, // Skip to: 22820 |
6922 | /* 22808 */ MCD::OPC_CheckField, 8, 4, 0, 202, 1, 0, // Skip to: 23273 |
6923 | /* 22815 */ MCD::OPC_Decode, 226, 16, 140, 3, // Opcode: SLDT |
6924 | /* 22820 */ MCD::OPC_FilterValue, 65, 12, 0, 0, // Skip to: 22837 |
6925 | /* 22825 */ MCD::OPC_CheckField, 8, 4, 0, 185, 1, 0, // Skip to: 23273 |
6926 | /* 22832 */ MCD::OPC_Decode, 138, 17, 140, 3, // Opcode: SRDT |
6927 | /* 22837 */ MCD::OPC_FilterValue, 72, 12, 0, 0, // Skip to: 22854 |
6928 | /* 22842 */ MCD::OPC_CheckField, 8, 4, 0, 168, 1, 0, // Skip to: 23273 |
6929 | /* 22849 */ MCD::OPC_Decode, 241, 16, 142, 3, // Opcode: SLXT |
6930 | /* 22854 */ MCD::OPC_FilterValue, 73, 12, 0, 0, // Skip to: 22871 |
6931 | /* 22859 */ MCD::OPC_CheckField, 8, 4, 0, 151, 1, 0, // Skip to: 23273 |
6932 | /* 22866 */ MCD::OPC_Decode, 149, 17, 142, 3, // Opcode: SRXT |
6933 | /* 22871 */ MCD::OPC_FilterValue, 80, 12, 0, 0, // Skip to: 22888 |
6934 | /* 22876 */ MCD::OPC_CheckField, 8, 8, 0, 134, 1, 0, // Skip to: 23273 |
6935 | /* 22883 */ MCD::OPC_Decode, 170, 18, 135, 3, // Opcode: TDCET |
6936 | /* 22888 */ MCD::OPC_FilterValue, 81, 12, 0, 0, // Skip to: 22905 |
6937 | /* 22893 */ MCD::OPC_CheckField, 8, 8, 0, 117, 1, 0, // Skip to: 23273 |
6938 | /* 22900 */ MCD::OPC_Decode, 173, 18, 135, 3, // Opcode: TDGET |
6939 | /* 22905 */ MCD::OPC_FilterValue, 84, 12, 0, 0, // Skip to: 22922 |
6940 | /* 22910 */ MCD::OPC_CheckField, 8, 8, 0, 100, 1, 0, // Skip to: 23273 |
6941 | /* 22917 */ MCD::OPC_Decode, 169, 18, 132, 3, // Opcode: TDCDT |
6942 | /* 22922 */ MCD::OPC_FilterValue, 85, 12, 0, 0, // Skip to: 22939 |
6943 | /* 22927 */ MCD::OPC_CheckField, 8, 8, 0, 83, 1, 0, // Skip to: 23273 |
6944 | /* 22934 */ MCD::OPC_Decode, 172, 18, 132, 3, // Opcode: TDGDT |
6945 | /* 22939 */ MCD::OPC_FilterValue, 88, 12, 0, 0, // Skip to: 22956 |
6946 | /* 22944 */ MCD::OPC_CheckField, 8, 8, 0, 66, 1, 0, // Skip to: 23273 |
6947 | /* 22951 */ MCD::OPC_Decode, 171, 18, 133, 3, // Opcode: TDCXT |
6948 | /* 22956 */ MCD::OPC_FilterValue, 89, 12, 0, 0, // Skip to: 22973 |
6949 | /* 22961 */ MCD::OPC_CheckField, 8, 8, 0, 49, 1, 0, // Skip to: 23273 |
6950 | /* 22968 */ MCD::OPC_Decode, 174, 18, 133, 3, // Opcode: TDGXT |
6951 | /* 22973 */ MCD::OPC_FilterValue, 100, 5, 0, 0, // Skip to: 22983 |
6952 | /* 22978 */ MCD::OPC_Decode, 212, 11, 143, 3, // Opcode: LEY |
6953 | /* 22983 */ MCD::OPC_FilterValue, 101, 5, 0, 0, // Skip to: 22993 |
6954 | /* 22988 */ MCD::OPC_Decode, 202, 11, 144, 3, // Opcode: LDY |
6955 | /* 22993 */ MCD::OPC_FilterValue, 102, 5, 0, 0, // Skip to: 23003 |
6956 | /* 22998 */ MCD::OPC_Decode, 178, 17, 143, 3, // Opcode: STEY |
6957 | /* 23003 */ MCD::OPC_FilterValue, 103, 5, 0, 0, // Skip to: 23013 |
6958 | /* 23008 */ MCD::OPC_Decode, 176, 17, 144, 3, // Opcode: STDY |
6959 | /* 23013 */ MCD::OPC_FilterValue, 168, 1, 10, 0, 0, // Skip to: 23029 |
6960 | /* 23019 */ MCD::OPC_CheckPredicate, 38, 249, 0, 0, // Skip to: 23273 |
6961 | /* 23024 */ MCD::OPC_Decode, 218, 9, 145, 3, // Opcode: CZDT |
6962 | /* 23029 */ MCD::OPC_FilterValue, 169, 1, 10, 0, 0, // Skip to: 23045 |
6963 | /* 23035 */ MCD::OPC_CheckPredicate, 38, 233, 0, 0, // Skip to: 23273 |
6964 | /* 23040 */ MCD::OPC_Decode, 219, 9, 146, 3, // Opcode: CZXT |
6965 | /* 23045 */ MCD::OPC_FilterValue, 170, 1, 10, 0, 0, // Skip to: 23061 |
6966 | /* 23051 */ MCD::OPC_CheckPredicate, 38, 217, 0, 0, // Skip to: 23273 |
6967 | /* 23056 */ MCD::OPC_Decode, 196, 5, 145, 3, // Opcode: CDZT |
6968 | /* 23061 */ MCD::OPC_FilterValue, 171, 1, 10, 0, 0, // Skip to: 23077 |
6969 | /* 23067 */ MCD::OPC_CheckPredicate, 38, 201, 0, 0, // Skip to: 23273 |
6970 | /* 23072 */ MCD::OPC_Decode, 216, 9, 146, 3, // Opcode: CXZT |
6971 | /* 23077 */ MCD::OPC_FilterValue, 172, 1, 10, 0, 0, // Skip to: 23093 |
6972 | /* 23083 */ MCD::OPC_CheckPredicate, 39, 185, 0, 0, // Skip to: 23273 |
6973 | /* 23088 */ MCD::OPC_Decode, 240, 8, 145, 3, // Opcode: CPDT |
6974 | /* 23093 */ MCD::OPC_FilterValue, 173, 1, 10, 0, 0, // Skip to: 23109 |
6975 | /* 23099 */ MCD::OPC_CheckPredicate, 39, 169, 0, 0, // Skip to: 23273 |
6976 | /* 23104 */ MCD::OPC_Decode, 245, 8, 146, 3, // Opcode: CPXT |
6977 | /* 23109 */ MCD::OPC_FilterValue, 174, 1, 10, 0, 0, // Skip to: 23125 |
6978 | /* 23115 */ MCD::OPC_CheckPredicate, 39, 153, 0, 0, // Skip to: 23273 |
6979 | /* 23120 */ MCD::OPC_Decode, 188, 5, 145, 3, // Opcode: CDPT |
6980 | /* 23125 */ MCD::OPC_FilterValue, 175, 1, 142, 0, 0, // Skip to: 23273 |
6981 | /* 23131 */ MCD::OPC_CheckPredicate, 39, 137, 0, 0, // Skip to: 23273 |
6982 | /* 23136 */ MCD::OPC_Decode, 211, 9, 146, 3, // Opcode: CXPT |
6983 | /* 23141 */ MCD::OPC_FilterValue, 238, 1, 5, 0, 0, // Skip to: 23152 |
6984 | /* 23147 */ MCD::OPC_Decode, 202, 15, 147, 3, // Opcode: PLO |
6985 | /* 23152 */ MCD::OPC_FilterValue, 239, 1, 5, 0, 0, // Skip to: 23163 |
6986 | /* 23158 */ MCD::OPC_Decode, 140, 12, 148, 3, // Opcode: LMD |
6987 | /* 23163 */ MCD::OPC_FilterValue, 240, 1, 5, 0, 0, // Skip to: 23174 |
6988 | /* 23169 */ MCD::OPC_Decode, 146, 17, 149, 3, // Opcode: SRP |
6989 | /* 23174 */ MCD::OPC_FilterValue, 241, 1, 5, 0, 0, // Skip to: 23185 |
6990 | /* 23180 */ MCD::OPC_Decode, 249, 14, 150, 3, // Opcode: MVO |
6991 | /* 23185 */ MCD::OPC_FilterValue, 242, 1, 5, 0, 0, // Skip to: 23196 |
6992 | /* 23191 */ MCD::OPC_Decode, 189, 15, 150, 3, // Opcode: PACK |
6993 | /* 23196 */ MCD::OPC_FilterValue, 243, 1, 5, 0, 0, // Skip to: 23207 |
6994 | /* 23202 */ MCD::OPC_Decode, 210, 18, 150, 3, // Opcode: UNPK |
6995 | /* 23207 */ MCD::OPC_FilterValue, 248, 1, 5, 0, 0, // Skip to: 23218 |
6996 | /* 23213 */ MCD::OPC_Decode, 191, 24, 150, 3, // Opcode: ZAP |
6997 | /* 23218 */ MCD::OPC_FilterValue, 249, 1, 5, 0, 0, // Skip to: 23229 |
6998 | /* 23224 */ MCD::OPC_Decode, 239, 8, 150, 3, // Opcode: CP |
6999 | /* 23229 */ MCD::OPC_FilterValue, 250, 1, 5, 0, 0, // Skip to: 23240 |
7000 | /* 23235 */ MCD::OPC_Decode, 185, 4, 150, 3, // Opcode: AP |
7001 | /* 23240 */ MCD::OPC_FilterValue, 251, 1, 5, 0, 0, // Skip to: 23251 |
7002 | /* 23246 */ MCD::OPC_Decode, 244, 16, 150, 3, // Opcode: SP |
7003 | /* 23251 */ MCD::OPC_FilterValue, 252, 1, 5, 0, 0, // Skip to: 23262 |
7004 | /* 23257 */ MCD::OPC_Decode, 206, 14, 150, 3, // Opcode: MP |
7005 | /* 23262 */ MCD::OPC_FilterValue, 253, 1, 5, 0, 0, // Skip to: 23273 |
7006 | /* 23268 */ MCD::OPC_Decode, 239, 9, 150, 3, // Opcode: DP |
7007 | /* 23273 */ MCD::OPC_Fail, |
7008 | 0 |
7009 | }; |
7010 | |
7011 | static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset &Bits) { |
7012 | switch (Idx) { |
7013 | default: llvm_unreachable("Invalid index!" ); |
7014 | case 0: |
7015 | return (Bits[SystemZ::FeatureBEAREnhancement]); |
7016 | case 1: |
7017 | return (Bits[SystemZ::FeatureProcessorActivityInstrumentation]); |
7018 | case 2: |
7019 | return (Bits[SystemZ::FeatureFPExtension]); |
7020 | case 3: |
7021 | return (Bits[SystemZ::FeatureProcessorAssist]); |
7022 | case 4: |
7023 | return (Bits[SystemZ::FeatureTransactionalExecution]); |
7024 | case 5: |
7025 | return (Bits[SystemZ::FeatureExecutionHint]); |
7026 | case 6: |
7027 | return (Bits[SystemZ::FeatureMessageSecurityAssist3]); |
7028 | case 7: |
7029 | return (Bits[SystemZ::FeatureMessageSecurityAssist8]); |
7030 | case 8: |
7031 | return (Bits[SystemZ::FeatureMessageSecurityAssist4]); |
7032 | case 9: |
7033 | return (Bits[SystemZ::FeatureEnhancedSort]); |
7034 | case 10: |
7035 | return (Bits[SystemZ::FeatureDeflateConversion]); |
7036 | case 11: |
7037 | return (Bits[SystemZ::FeatureMessageSecurityAssist9]); |
7038 | case 12: |
7039 | return (Bits[SystemZ::FeatureNNPAssist]); |
7040 | case 13: |
7041 | return (Bits[SystemZ::FeatureMessageSecurityAssist5]); |
7042 | case 14: |
7043 | return (Bits[SystemZ::FeatureMiscellaneousExtensions3]); |
7044 | case 15: |
7045 | return (Bits[SystemZ::FeatureResetDATProtection]); |
7046 | case 16: |
7047 | return (Bits[SystemZ::FeatureEnhancedDAT2]); |
7048 | case 17: |
7049 | return (Bits[SystemZ::FeatureTestPendingExternalInterruption]); |
7050 | case 18: |
7051 | return (Bits[SystemZ::FeatureInsertReferenceBitsMultiple]); |
7052 | case 19: |
7053 | return (Bits[SystemZ::FeatureResetReferenceBitsMultiple]); |
7054 | case 20: |
7055 | return (Bits[SystemZ::FeatureHighWord]); |
7056 | case 21: |
7057 | return (Bits[SystemZ::FeatureLoadStoreOnCond2]); |
7058 | case 22: |
7059 | return (Bits[SystemZ::FeaturePopulationCount]); |
7060 | case 23: |
7061 | return (Bits[SystemZ::FeatureLoadStoreOnCond]); |
7062 | case 24: |
7063 | return (Bits[SystemZ::FeatureDistinctOps]); |
7064 | case 25: |
7065 | return (Bits[SystemZ::FeatureMiscellaneousExtensions2]); |
7066 | case 26: |
7067 | return (Bits[SystemZ::FeatureInterlockedAccess1]); |
7068 | case 27: |
7069 | return (Bits[SystemZ::FeatureLoadAndZeroRightmostByte]); |
7070 | case 28: |
7071 | return (Bits[SystemZ::FeatureGuardedStorage]); |
7072 | case 29: |
7073 | return (Bits[SystemZ::FeatureLoadAndTrap]); |
7074 | case 30: |
7075 | return (Bits[SystemZ::FeatureVectorEnhancements2]); |
7076 | case 31: |
7077 | return (Bits[SystemZ::FeatureVectorPackedDecimal]); |
7078 | case 32: |
7079 | return (Bits[SystemZ::FeatureVectorPackedDecimalEnhancement]); |
7080 | case 33: |
7081 | return (Bits[SystemZ::FeatureVectorPackedDecimalEnhancement2]); |
7082 | case 34: |
7083 | return (Bits[SystemZ::FeatureVector] && Bits[SystemZ::FeatureNNPAssist]); |
7084 | case 35: |
7085 | return (Bits[SystemZ::FeatureVector]); |
7086 | case 36: |
7087 | return (Bits[SystemZ::FeatureVectorEnhancements1]); |
7088 | case 37: |
7089 | return (Bits[SystemZ::FeatureMiscellaneousExtensions]); |
7090 | case 38: |
7091 | return (Bits[SystemZ::FeatureDFPZonedConversion]); |
7092 | case 39: |
7093 | return (Bits[SystemZ::FeatureDFPPackedConversion]); |
7094 | } |
7095 | } |
7096 | |
7097 | template <typename InsnType> |
7098 | static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI, |
7099 | uint64_t Address, const MCDisassembler *Decoder, bool &DecodeComplete) { |
7100 | DecodeComplete = true; |
7101 | using TmpType = std::conditional_t<std::is_integral<InsnType>::value, InsnType, uint64_t>; |
7102 | TmpType tmp; |
7103 | switch (Idx) { |
7104 | default: llvm_unreachable("Invalid index!" ); |
7105 | case 0: |
7106 | return S; |
7107 | case 1: |
7108 | tmp = fieldFromInstruction(insn, 4, 4); |
7109 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7110 | return S; |
7111 | case 2: |
7112 | tmp = fieldFromInstruction(insn, 4, 4); |
7113 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7114 | tmp = fieldFromInstruction(insn, 0, 4); |
7115 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7116 | return S; |
7117 | case 3: |
7118 | tmp = fieldFromInstruction(insn, 4, 4); |
7119 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7120 | tmp = fieldFromInstruction(insn, 4, 4); |
7121 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7122 | tmp = fieldFromInstruction(insn, 0, 4); |
7123 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7124 | return S; |
7125 | case 4: |
7126 | tmp = fieldFromInstruction(insn, 0, 4); |
7127 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7128 | return S; |
7129 | case 5: |
7130 | tmp = fieldFromInstruction(insn, 0, 4); |
7131 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7132 | return S; |
7133 | case 6: |
7134 | tmp = fieldFromInstruction(insn, 4, 4); |
7135 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7136 | tmp = fieldFromInstruction(insn, 0, 4); |
7137 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7138 | return S; |
7139 | case 7: |
7140 | tmp = fieldFromInstruction(insn, 0, 8); |
7141 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7142 | return S; |
7143 | case 8: |
7144 | tmp = fieldFromInstruction(insn, 4, 4); |
7145 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7146 | tmp = fieldFromInstruction(insn, 0, 4); |
7147 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7148 | tmp = fieldFromInstruction(insn, 4, 4); |
7149 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7150 | tmp = fieldFromInstruction(insn, 0, 4); |
7151 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7152 | return S; |
7153 | case 9: |
7154 | tmp = fieldFromInstruction(insn, 4, 4); |
7155 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7156 | tmp = fieldFromInstruction(insn, 0, 4); |
7157 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7158 | return S; |
7159 | case 10: |
7160 | tmp = fieldFromInstruction(insn, 4, 4); |
7161 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7162 | tmp = fieldFromInstruction(insn, 4, 4); |
7163 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7164 | tmp = fieldFromInstruction(insn, 0, 4); |
7165 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7166 | return S; |
7167 | case 11: |
7168 | tmp = fieldFromInstruction(insn, 4, 4); |
7169 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7170 | tmp = fieldFromInstruction(insn, 4, 4); |
7171 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7172 | tmp = fieldFromInstruction(insn, 0, 4); |
7173 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7174 | return S; |
7175 | case 12: |
7176 | tmp = fieldFromInstruction(insn, 4, 4); |
7177 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7178 | tmp = fieldFromInstruction(insn, 0, 4); |
7179 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7180 | return S; |
7181 | case 13: |
7182 | tmp = fieldFromInstruction(insn, 4, 4); |
7183 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7184 | tmp = fieldFromInstruction(insn, 0, 4); |
7185 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7186 | return S; |
7187 | case 14: |
7188 | tmp = fieldFromInstruction(insn, 4, 4); |
7189 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7190 | tmp = fieldFromInstruction(insn, 4, 4); |
7191 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7192 | tmp = fieldFromInstruction(insn, 0, 4); |
7193 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7194 | return S; |
7195 | case 15: |
7196 | tmp = fieldFromInstruction(insn, 4, 4); |
7197 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7198 | tmp = fieldFromInstruction(insn, 4, 4); |
7199 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7200 | tmp = fieldFromInstruction(insn, 0, 4); |
7201 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7202 | return S; |
7203 | case 16: |
7204 | tmp = fieldFromInstruction(insn, 4, 4); |
7205 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7206 | tmp = fieldFromInstruction(insn, 4, 4); |
7207 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7208 | tmp = fieldFromInstruction(insn, 0, 4); |
7209 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7210 | return S; |
7211 | case 17: |
7212 | tmp = fieldFromInstruction(insn, 4, 4); |
7213 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7214 | tmp = fieldFromInstruction(insn, 0, 4); |
7215 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7216 | return S; |
7217 | case 18: |
7218 | tmp = fieldFromInstruction(insn, 4, 4); |
7219 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7220 | tmp = fieldFromInstruction(insn, 0, 4); |
7221 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7222 | return S; |
7223 | case 19: |
7224 | tmp = fieldFromInstruction(insn, 4, 4); |
7225 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7226 | tmp = fieldFromInstruction(insn, 4, 4); |
7227 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7228 | tmp = fieldFromInstruction(insn, 0, 4); |
7229 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7230 | return S; |
7231 | case 20: |
7232 | tmp = fieldFromInstruction(insn, 4, 4); |
7233 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7234 | tmp = fieldFromInstruction(insn, 4, 4); |
7235 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7236 | tmp = fieldFromInstruction(insn, 0, 4); |
7237 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7238 | return S; |
7239 | case 21: |
7240 | tmp = fieldFromInstruction(insn, 20, 4); |
7241 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7242 | tmp = fieldFromInstruction(insn, 12, 4); |
7243 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7244 | tmp = fieldFromInstruction(insn, 0, 12); |
7245 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7246 | tmp = fieldFromInstruction(insn, 16, 4); |
7247 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7248 | return S; |
7249 | case 22: |
7250 | tmp = fieldFromInstruction(insn, 20, 4); |
7251 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7252 | tmp = fieldFromInstruction(insn, 12, 4); |
7253 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7254 | tmp = fieldFromInstruction(insn, 0, 12); |
7255 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7256 | tmp = fieldFromInstruction(insn, 16, 4); |
7257 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7258 | return S; |
7259 | case 23: |
7260 | tmp = fieldFromInstruction(insn, 20, 4); |
7261 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7262 | tmp = fieldFromInstruction(insn, 20, 4); |
7263 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7264 | tmp = fieldFromInstruction(insn, 12, 4); |
7265 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7266 | tmp = fieldFromInstruction(insn, 0, 12); |
7267 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7268 | tmp = fieldFromInstruction(insn, 16, 4); |
7269 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7270 | return S; |
7271 | case 24: |
7272 | tmp = fieldFromInstruction(insn, 20, 4); |
7273 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7274 | tmp = fieldFromInstruction(insn, 12, 4); |
7275 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7276 | tmp = fieldFromInstruction(insn, 0, 12); |
7277 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7278 | tmp = fieldFromInstruction(insn, 16, 4); |
7279 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7280 | return S; |
7281 | case 25: |
7282 | tmp = fieldFromInstruction(insn, 20, 4); |
7283 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7284 | tmp = fieldFromInstruction(insn, 20, 4); |
7285 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7286 | tmp = fieldFromInstruction(insn, 12, 4); |
7287 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7288 | tmp = fieldFromInstruction(insn, 0, 12); |
7289 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7290 | tmp = fieldFromInstruction(insn, 16, 4); |
7291 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7292 | return S; |
7293 | case 26: |
7294 | tmp = fieldFromInstruction(insn, 12, 4); |
7295 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7296 | tmp = fieldFromInstruction(insn, 0, 12); |
7297 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7298 | tmp = fieldFromInstruction(insn, 16, 4); |
7299 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7300 | return S; |
7301 | case 27: |
7302 | tmp = fieldFromInstruction(insn, 20, 4); |
7303 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7304 | tmp = fieldFromInstruction(insn, 12, 4); |
7305 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7306 | tmp = fieldFromInstruction(insn, 0, 12); |
7307 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7308 | tmp = fieldFromInstruction(insn, 16, 4); |
7309 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7310 | return S; |
7311 | case 28: |
7312 | tmp = fieldFromInstruction(insn, 20, 4); |
7313 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7314 | tmp = fieldFromInstruction(insn, 20, 4); |
7315 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7316 | tmp = fieldFromInstruction(insn, 12, 4); |
7317 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7318 | tmp = fieldFromInstruction(insn, 0, 12); |
7319 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7320 | tmp = fieldFromInstruction(insn, 16, 4); |
7321 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7322 | return S; |
7323 | case 29: |
7324 | tmp = fieldFromInstruction(insn, 20, 4); |
7325 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7326 | tmp = fieldFromInstruction(insn, 12, 4); |
7327 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7328 | tmp = fieldFromInstruction(insn, 0, 12); |
7329 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7330 | tmp = fieldFromInstruction(insn, 16, 4); |
7331 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7332 | return S; |
7333 | case 30: |
7334 | tmp = fieldFromInstruction(insn, 20, 4); |
7335 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7336 | tmp = fieldFromInstruction(insn, 20, 4); |
7337 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7338 | tmp = fieldFromInstruction(insn, 12, 4); |
7339 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7340 | tmp = fieldFromInstruction(insn, 0, 12); |
7341 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7342 | tmp = fieldFromInstruction(insn, 16, 4); |
7343 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7344 | return S; |
7345 | case 31: |
7346 | tmp = fieldFromInstruction(insn, 20, 4); |
7347 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7348 | tmp = fieldFromInstruction(insn, 20, 4); |
7349 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7350 | tmp = fieldFromInstruction(insn, 12, 4); |
7351 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7352 | tmp = fieldFromInstruction(insn, 0, 12); |
7353 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7354 | tmp = fieldFromInstruction(insn, 16, 4); |
7355 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7356 | return S; |
7357 | case 32: |
7358 | tmp = fieldFromInstruction(insn, 20, 4); |
7359 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7360 | tmp = fieldFromInstruction(insn, 12, 4); |
7361 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7362 | tmp = fieldFromInstruction(insn, 0, 12); |
7363 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7364 | tmp = fieldFromInstruction(insn, 16, 4); |
7365 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7366 | return S; |
7367 | case 33: |
7368 | tmp = fieldFromInstruction(insn, 20, 4); |
7369 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7370 | tmp = fieldFromInstruction(insn, 20, 4); |
7371 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7372 | tmp = fieldFromInstruction(insn, 12, 4); |
7373 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7374 | tmp = fieldFromInstruction(insn, 0, 12); |
7375 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7376 | tmp = fieldFromInstruction(insn, 16, 4); |
7377 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7378 | return S; |
7379 | case 34: |
7380 | tmp = fieldFromInstruction(insn, 12, 4); |
7381 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7382 | tmp = fieldFromInstruction(insn, 0, 12); |
7383 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7384 | return S; |
7385 | case 35: |
7386 | tmp = fieldFromInstruction(insn, 20, 4); |
7387 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7388 | tmp = fieldFromInstruction(insn, 16, 4); |
7389 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7390 | tmp = fieldFromInstruction(insn, 12, 4); |
7391 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7392 | tmp = fieldFromInstruction(insn, 0, 12); |
7393 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7394 | return S; |
7395 | case 36: |
7396 | tmp = fieldFromInstruction(insn, 20, 4); |
7397 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7398 | tmp = fieldFromInstruction(insn, 20, 4); |
7399 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7400 | tmp = fieldFromInstruction(insn, 16, 4); |
7401 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7402 | tmp = fieldFromInstruction(insn, 0, 16); |
7403 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7404 | return S; |
7405 | case 37: |
7406 | tmp = fieldFromInstruction(insn, 20, 4); |
7407 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7408 | tmp = fieldFromInstruction(insn, 20, 4); |
7409 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7410 | tmp = fieldFromInstruction(insn, 16, 4); |
7411 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7412 | tmp = fieldFromInstruction(insn, 12, 4); |
7413 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7414 | tmp = fieldFromInstruction(insn, 0, 12); |
7415 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7416 | return S; |
7417 | case 38: |
7418 | tmp = fieldFromInstruction(insn, 20, 4); |
7419 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7420 | tmp = fieldFromInstruction(insn, 20, 4); |
7421 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7422 | tmp = fieldFromInstruction(insn, 12, 4); |
7423 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7424 | tmp = fieldFromInstruction(insn, 0, 12); |
7425 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7426 | return S; |
7427 | case 39: |
7428 | tmp = fieldFromInstruction(insn, 20, 4); |
7429 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7430 | tmp = fieldFromInstruction(insn, 20, 4); |
7431 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7432 | tmp = fieldFromInstruction(insn, 12, 4); |
7433 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7434 | tmp = fieldFromInstruction(insn, 0, 12); |
7435 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7436 | return S; |
7437 | case 40: |
7438 | tmp = fieldFromInstruction(insn, 12, 4); |
7439 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7440 | tmp = fieldFromInstruction(insn, 0, 12); |
7441 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7442 | tmp = fieldFromInstruction(insn, 16, 8); |
7443 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7444 | return S; |
7445 | case 41: |
7446 | tmp = fieldFromInstruction(insn, 20, 4); |
7447 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7448 | tmp = fieldFromInstruction(insn, 16, 4); |
7449 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7450 | tmp = fieldFromInstruction(insn, 12, 4); |
7451 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7452 | tmp = fieldFromInstruction(insn, 0, 12); |
7453 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7454 | return S; |
7455 | case 42: |
7456 | tmp = fieldFromInstruction(insn, 20, 4); |
7457 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7458 | tmp = fieldFromInstruction(insn, 20, 4); |
7459 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7460 | tmp = fieldFromInstruction(insn, 0, 16); |
7461 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7462 | return S; |
7463 | case 43: |
7464 | tmp = fieldFromInstruction(insn, 20, 4); |
7465 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7466 | tmp = fieldFromInstruction(insn, 20, 4); |
7467 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7468 | tmp = fieldFromInstruction(insn, 0, 16); |
7469 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7470 | return S; |
7471 | case 44: |
7472 | tmp = fieldFromInstruction(insn, 20, 4); |
7473 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7474 | tmp = fieldFromInstruction(insn, 0, 16); |
7475 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7476 | return S; |
7477 | case 45: |
7478 | tmp = fieldFromInstruction(insn, 20, 4); |
7479 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7480 | tmp = fieldFromInstruction(insn, 0, 16); |
7481 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7482 | return S; |
7483 | case 46: |
7484 | tmp = fieldFromInstruction(insn, 20, 4); |
7485 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7486 | tmp = fieldFromInstruction(insn, 0, 16); |
7487 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7488 | return S; |
7489 | case 47: |
7490 | tmp = fieldFromInstruction(insn, 0, 16); |
7491 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7492 | return S; |
7493 | case 48: |
7494 | tmp = fieldFromInstruction(insn, 20, 4); |
7495 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7496 | tmp = fieldFromInstruction(insn, 0, 16); |
7497 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7498 | return S; |
7499 | case 49: |
7500 | tmp = fieldFromInstruction(insn, 20, 4); |
7501 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7502 | tmp = fieldFromInstruction(insn, 0, 16); |
7503 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7504 | return S; |
7505 | case 50: |
7506 | tmp = fieldFromInstruction(insn, 20, 4); |
7507 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7508 | tmp = fieldFromInstruction(insn, 20, 4); |
7509 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7510 | tmp = fieldFromInstruction(insn, 0, 16); |
7511 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7512 | return S; |
7513 | case 51: |
7514 | tmp = fieldFromInstruction(insn, 20, 4); |
7515 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7516 | tmp = fieldFromInstruction(insn, 20, 4); |
7517 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7518 | tmp = fieldFromInstruction(insn, 0, 16); |
7519 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7520 | return S; |
7521 | case 52: |
7522 | tmp = fieldFromInstruction(insn, 20, 4); |
7523 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7524 | tmp = fieldFromInstruction(insn, 0, 16); |
7525 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7526 | return S; |
7527 | case 53: |
7528 | tmp = fieldFromInstruction(insn, 20, 4); |
7529 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7530 | tmp = fieldFromInstruction(insn, 0, 16); |
7531 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7532 | return S; |
7533 | case 54: |
7534 | tmp = fieldFromInstruction(insn, 20, 4); |
7535 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7536 | tmp = fieldFromInstruction(insn, 20, 4); |
7537 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7538 | tmp = fieldFromInstruction(insn, 0, 16); |
7539 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7540 | return S; |
7541 | case 55: |
7542 | tmp = fieldFromInstruction(insn, 20, 4); |
7543 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7544 | tmp = fieldFromInstruction(insn, 20, 4); |
7545 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7546 | tmp = fieldFromInstruction(insn, 0, 16); |
7547 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7548 | return S; |
7549 | case 56: |
7550 | tmp = fieldFromInstruction(insn, 20, 4); |
7551 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7552 | tmp = fieldFromInstruction(insn, 16, 4); |
7553 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7554 | tmp = fieldFromInstruction(insn, 20, 4); |
7555 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7556 | tmp = fieldFromInstruction(insn, 16, 4); |
7557 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7558 | tmp = fieldFromInstruction(insn, 12, 4); |
7559 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7560 | tmp = fieldFromInstruction(insn, 0, 12); |
7561 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7562 | return S; |
7563 | case 57: |
7564 | tmp = fieldFromInstruction(insn, 20, 4); |
7565 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7566 | tmp = fieldFromInstruction(insn, 16, 4); |
7567 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7568 | tmp = fieldFromInstruction(insn, 12, 4); |
7569 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7570 | tmp = fieldFromInstruction(insn, 0, 12); |
7571 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7572 | return S; |
7573 | case 58: |
7574 | tmp = fieldFromInstruction(insn, 4, 4); |
7575 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7576 | tmp = fieldFromInstruction(insn, 0, 4); |
7577 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7578 | return S; |
7579 | case 59: |
7580 | tmp = fieldFromInstruction(insn, 4, 4); |
7581 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7582 | tmp = fieldFromInstruction(insn, 0, 4); |
7583 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7584 | tmp = fieldFromInstruction(insn, 12, 4); |
7585 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7586 | return S; |
7587 | case 60: |
7588 | tmp = fieldFromInstruction(insn, 4, 4); |
7589 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7590 | tmp = fieldFromInstruction(insn, 0, 4); |
7591 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7592 | tmp = fieldFromInstruction(insn, 12, 4); |
7593 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7594 | tmp = fieldFromInstruction(insn, 8, 4); |
7595 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7596 | return S; |
7597 | case 61: |
7598 | tmp = fieldFromInstruction(insn, 4, 4); |
7599 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7600 | tmp = fieldFromInstruction(insn, 0, 4); |
7601 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7602 | return S; |
7603 | case 62: |
7604 | tmp = fieldFromInstruction(insn, 4, 4); |
7605 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7606 | tmp = fieldFromInstruction(insn, 0, 4); |
7607 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7608 | tmp = fieldFromInstruction(insn, 12, 4); |
7609 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7610 | return S; |
7611 | case 63: |
7612 | tmp = fieldFromInstruction(insn, 4, 4); |
7613 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7614 | tmp = fieldFromInstruction(insn, 0, 4); |
7615 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7616 | return S; |
7617 | case 64: |
7618 | tmp = fieldFromInstruction(insn, 4, 4); |
7619 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7620 | tmp = fieldFromInstruction(insn, 0, 4); |
7621 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7622 | tmp = fieldFromInstruction(insn, 4, 4); |
7623 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7624 | tmp = fieldFromInstruction(insn, 0, 4); |
7625 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7626 | return S; |
7627 | case 65: |
7628 | tmp = fieldFromInstruction(insn, 4, 4); |
7629 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7630 | return S; |
7631 | case 66: |
7632 | tmp = fieldFromInstruction(insn, 4, 4); |
7633 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7634 | tmp = fieldFromInstruction(insn, 0, 4); |
7635 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7636 | return S; |
7637 | case 67: |
7638 | tmp = fieldFromInstruction(insn, 4, 4); |
7639 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7640 | tmp = fieldFromInstruction(insn, 0, 4); |
7641 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7642 | return S; |
7643 | case 68: |
7644 | tmp = fieldFromInstruction(insn, 4, 4); |
7645 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7646 | tmp = fieldFromInstruction(insn, 0, 4); |
7647 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7648 | return S; |
7649 | case 69: |
7650 | tmp = fieldFromInstruction(insn, 4, 4); |
7651 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7652 | tmp = fieldFromInstruction(insn, 0, 4); |
7653 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7654 | return S; |
7655 | case 70: |
7656 | tmp = fieldFromInstruction(insn, 4, 4); |
7657 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7658 | tmp = fieldFromInstruction(insn, 4, 4); |
7659 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7660 | tmp = fieldFromInstruction(insn, 0, 4); |
7661 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7662 | return S; |
7663 | case 71: |
7664 | tmp = fieldFromInstruction(insn, 4, 4); |
7665 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7666 | tmp = fieldFromInstruction(insn, 0, 4); |
7667 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7668 | tmp = fieldFromInstruction(insn, 4, 4); |
7669 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7670 | tmp = fieldFromInstruction(insn, 0, 4); |
7671 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7672 | return S; |
7673 | case 72: |
7674 | tmp = fieldFromInstruction(insn, 12, 4); |
7675 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7676 | tmp = fieldFromInstruction(insn, 0, 12); |
7677 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7678 | return S; |
7679 | case 73: |
7680 | tmp = fieldFromInstruction(insn, 4, 4); |
7681 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7682 | tmp = fieldFromInstruction(insn, 0, 4); |
7683 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7684 | tmp = fieldFromInstruction(insn, 4, 4); |
7685 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7686 | tmp = fieldFromInstruction(insn, 0, 4); |
7687 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7688 | return S; |
7689 | case 74: |
7690 | tmp = fieldFromInstruction(insn, 4, 4); |
7691 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7692 | tmp = fieldFromInstruction(insn, 0, 4); |
7693 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7694 | tmp = fieldFromInstruction(insn, 4, 4); |
7695 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7696 | tmp = fieldFromInstruction(insn, 0, 4); |
7697 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7698 | tmp = fieldFromInstruction(insn, 12, 4); |
7699 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7700 | return S; |
7701 | case 75: |
7702 | tmp = fieldFromInstruction(insn, 4, 4); |
7703 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7704 | tmp = fieldFromInstruction(insn, 0, 4); |
7705 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7706 | tmp = fieldFromInstruction(insn, 12, 4); |
7707 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7708 | return S; |
7709 | case 76: |
7710 | tmp = fieldFromInstruction(insn, 4, 4); |
7711 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7712 | tmp = fieldFromInstruction(insn, 0, 4); |
7713 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7714 | return S; |
7715 | case 77: |
7716 | tmp = fieldFromInstruction(insn, 4, 4); |
7717 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7718 | tmp = fieldFromInstruction(insn, 0, 4); |
7719 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7720 | return S; |
7721 | case 78: |
7722 | tmp = fieldFromInstruction(insn, 4, 4); |
7723 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7724 | tmp = fieldFromInstruction(insn, 0, 4); |
7725 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7726 | return S; |
7727 | case 79: |
7728 | tmp = fieldFromInstruction(insn, 4, 4); |
7729 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7730 | tmp = fieldFromInstruction(insn, 0, 4); |
7731 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7732 | return S; |
7733 | case 80: |
7734 | tmp = fieldFromInstruction(insn, 12, 4); |
7735 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7736 | tmp = fieldFromInstruction(insn, 12, 4); |
7737 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7738 | tmp = fieldFromInstruction(insn, 4, 4); |
7739 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7740 | tmp = fieldFromInstruction(insn, 0, 4); |
7741 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7742 | return S; |
7743 | case 81: |
7744 | tmp = fieldFromInstruction(insn, 4, 4); |
7745 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7746 | tmp = fieldFromInstruction(insn, 0, 4); |
7747 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7748 | return S; |
7749 | case 82: |
7750 | tmp = fieldFromInstruction(insn, 12, 4); |
7751 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7752 | tmp = fieldFromInstruction(insn, 12, 4); |
7753 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7754 | tmp = fieldFromInstruction(insn, 4, 4); |
7755 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7756 | tmp = fieldFromInstruction(insn, 0, 4); |
7757 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7758 | return S; |
7759 | case 83: |
7760 | tmp = fieldFromInstruction(insn, 12, 4); |
7761 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7762 | tmp = fieldFromInstruction(insn, 4, 4); |
7763 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7764 | tmp = fieldFromInstruction(insn, 0, 4); |
7765 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7766 | return S; |
7767 | case 84: |
7768 | tmp = fieldFromInstruction(insn, 12, 4); |
7769 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7770 | tmp = fieldFromInstruction(insn, 4, 4); |
7771 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7772 | tmp = fieldFromInstruction(insn, 0, 4); |
7773 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7774 | return S; |
7775 | case 85: |
7776 | tmp = fieldFromInstruction(insn, 4, 4); |
7777 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7778 | tmp = fieldFromInstruction(insn, 12, 4); |
7779 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7780 | tmp = fieldFromInstruction(insn, 0, 4); |
7781 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7782 | tmp = fieldFromInstruction(insn, 8, 4); |
7783 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7784 | return S; |
7785 | case 86: |
7786 | tmp = fieldFromInstruction(insn, 4, 4); |
7787 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7788 | tmp = fieldFromInstruction(insn, 12, 4); |
7789 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7790 | tmp = fieldFromInstruction(insn, 0, 4); |
7791 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7792 | tmp = fieldFromInstruction(insn, 8, 4); |
7793 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7794 | return S; |
7795 | case 87: |
7796 | tmp = fieldFromInstruction(insn, 4, 4); |
7797 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7798 | tmp = fieldFromInstruction(insn, 12, 4); |
7799 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7800 | tmp = fieldFromInstruction(insn, 0, 4); |
7801 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7802 | return S; |
7803 | case 88: |
7804 | tmp = fieldFromInstruction(insn, 4, 4); |
7805 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7806 | tmp = fieldFromInstruction(insn, 12, 4); |
7807 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7808 | tmp = fieldFromInstruction(insn, 0, 4); |
7809 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7810 | return S; |
7811 | case 89: |
7812 | tmp = fieldFromInstruction(insn, 4, 4); |
7813 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7814 | tmp = fieldFromInstruction(insn, 12, 4); |
7815 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7816 | tmp = fieldFromInstruction(insn, 0, 4); |
7817 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7818 | return S; |
7819 | case 90: |
7820 | tmp = fieldFromInstruction(insn, 4, 4); |
7821 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7822 | tmp = fieldFromInstruction(insn, 12, 4); |
7823 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7824 | tmp = fieldFromInstruction(insn, 4, 4); |
7825 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7826 | tmp = fieldFromInstruction(insn, 0, 4); |
7827 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7828 | tmp = fieldFromInstruction(insn, 8, 4); |
7829 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7830 | return S; |
7831 | case 91: |
7832 | tmp = fieldFromInstruction(insn, 4, 4); |
7833 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7834 | tmp = fieldFromInstruction(insn, 12, 4); |
7835 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7836 | tmp = fieldFromInstruction(insn, 0, 4); |
7837 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7838 | return S; |
7839 | case 92: |
7840 | tmp = fieldFromInstruction(insn, 4, 4); |
7841 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7842 | tmp = fieldFromInstruction(insn, 12, 4); |
7843 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7844 | tmp = fieldFromInstruction(insn, 0, 4); |
7845 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7846 | tmp = fieldFromInstruction(insn, 8, 4); |
7847 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7848 | return S; |
7849 | case 93: |
7850 | tmp = fieldFromInstruction(insn, 4, 4); |
7851 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7852 | tmp = fieldFromInstruction(insn, 12, 4); |
7853 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7854 | tmp = fieldFromInstruction(insn, 4, 4); |
7855 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7856 | tmp = fieldFromInstruction(insn, 0, 4); |
7857 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7858 | tmp = fieldFromInstruction(insn, 8, 4); |
7859 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7860 | return S; |
7861 | case 94: |
7862 | tmp = fieldFromInstruction(insn, 4, 4); |
7863 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7864 | tmp = fieldFromInstruction(insn, 12, 4); |
7865 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7866 | tmp = fieldFromInstruction(insn, 0, 4); |
7867 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7868 | tmp = fieldFromInstruction(insn, 8, 4); |
7869 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7870 | return S; |
7871 | case 95: |
7872 | tmp = fieldFromInstruction(insn, 4, 4); |
7873 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7874 | tmp = fieldFromInstruction(insn, 0, 4); |
7875 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7876 | return S; |
7877 | case 96: |
7878 | tmp = fieldFromInstruction(insn, 4, 4); |
7879 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7880 | tmp = fieldFromInstruction(insn, 0, 4); |
7881 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7882 | tmp = fieldFromInstruction(insn, 12, 4); |
7883 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7884 | return S; |
7885 | case 97: |
7886 | tmp = fieldFromInstruction(insn, 4, 4); |
7887 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7888 | return S; |
7889 | case 98: |
7890 | tmp = fieldFromInstruction(insn, 4, 4); |
7891 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7892 | return S; |
7893 | case 99: |
7894 | tmp = fieldFromInstruction(insn, 4, 4); |
7895 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7896 | return S; |
7897 | case 100: |
7898 | tmp = fieldFromInstruction(insn, 4, 4); |
7899 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7900 | tmp = fieldFromInstruction(insn, 12, 4); |
7901 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7902 | tmp = fieldFromInstruction(insn, 0, 4); |
7903 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7904 | tmp = fieldFromInstruction(insn, 8, 4); |
7905 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7906 | return S; |
7907 | case 101: |
7908 | tmp = fieldFromInstruction(insn, 4, 4); |
7909 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7910 | tmp = fieldFromInstruction(insn, 12, 4); |
7911 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7912 | tmp = fieldFromInstruction(insn, 0, 4); |
7913 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7914 | tmp = fieldFromInstruction(insn, 8, 4); |
7915 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7916 | return S; |
7917 | case 102: |
7918 | tmp = fieldFromInstruction(insn, 4, 4); |
7919 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7920 | tmp = fieldFromInstruction(insn, 12, 4); |
7921 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7922 | tmp = fieldFromInstruction(insn, 0, 4); |
7923 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7924 | tmp = fieldFromInstruction(insn, 8, 4); |
7925 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7926 | return S; |
7927 | case 103: |
7928 | tmp = fieldFromInstruction(insn, 4, 4); |
7929 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7930 | tmp = fieldFromInstruction(insn, 0, 4); |
7931 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7932 | return S; |
7933 | case 104: |
7934 | tmp = fieldFromInstruction(insn, 4, 4); |
7935 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7936 | tmp = fieldFromInstruction(insn, 0, 4); |
7937 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7938 | return S; |
7939 | case 105: |
7940 | tmp = fieldFromInstruction(insn, 4, 4); |
7941 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7942 | tmp = fieldFromInstruction(insn, 0, 4); |
7943 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7944 | return S; |
7945 | case 106: |
7946 | tmp = fieldFromInstruction(insn, 4, 4); |
7947 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7948 | tmp = fieldFromInstruction(insn, 12, 4); |
7949 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7950 | tmp = fieldFromInstruction(insn, 0, 4); |
7951 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7952 | return S; |
7953 | case 107: |
7954 | tmp = fieldFromInstruction(insn, 4, 4); |
7955 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7956 | tmp = fieldFromInstruction(insn, 12, 4); |
7957 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7958 | tmp = fieldFromInstruction(insn, 0, 4); |
7959 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7960 | tmp = fieldFromInstruction(insn, 8, 4); |
7961 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7962 | return S; |
7963 | case 108: |
7964 | tmp = fieldFromInstruction(insn, 4, 4); |
7965 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7966 | tmp = fieldFromInstruction(insn, 12, 4); |
7967 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7968 | tmp = fieldFromInstruction(insn, 0, 4); |
7969 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7970 | return S; |
7971 | case 109: |
7972 | tmp = fieldFromInstruction(insn, 4, 4); |
7973 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7974 | tmp = fieldFromInstruction(insn, 12, 4); |
7975 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7976 | tmp = fieldFromInstruction(insn, 0, 4); |
7977 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7978 | tmp = fieldFromInstruction(insn, 8, 4); |
7979 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7980 | return S; |
7981 | case 110: |
7982 | tmp = fieldFromInstruction(insn, 4, 4); |
7983 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7984 | tmp = fieldFromInstruction(insn, 12, 4); |
7985 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7986 | tmp = fieldFromInstruction(insn, 0, 4); |
7987 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7988 | return S; |
7989 | case 111: |
7990 | tmp = fieldFromInstruction(insn, 4, 4); |
7991 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7992 | tmp = fieldFromInstruction(insn, 12, 4); |
7993 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7994 | tmp = fieldFromInstruction(insn, 0, 4); |
7995 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7996 | tmp = fieldFromInstruction(insn, 8, 4); |
7997 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7998 | return S; |
7999 | case 112: |
8000 | tmp = fieldFromInstruction(insn, 4, 4); |
8001 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8002 | tmp = fieldFromInstruction(insn, 12, 4); |
8003 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8004 | tmp = fieldFromInstruction(insn, 0, 4); |
8005 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8006 | tmp = fieldFromInstruction(insn, 8, 4); |
8007 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8008 | return S; |
8009 | case 113: |
8010 | tmp = fieldFromInstruction(insn, 4, 4); |
8011 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8012 | tmp = fieldFromInstruction(insn, 12, 4); |
8013 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8014 | tmp = fieldFromInstruction(insn, 0, 4); |
8015 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8016 | tmp = fieldFromInstruction(insn, 8, 4); |
8017 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8018 | return S; |
8019 | case 114: |
8020 | tmp = fieldFromInstruction(insn, 4, 4); |
8021 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8022 | tmp = fieldFromInstruction(insn, 12, 4); |
8023 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8024 | tmp = fieldFromInstruction(insn, 0, 4); |
8025 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8026 | tmp = fieldFromInstruction(insn, 8, 4); |
8027 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8028 | return S; |
8029 | case 115: |
8030 | tmp = fieldFromInstruction(insn, 4, 4); |
8031 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8032 | tmp = fieldFromInstruction(insn, 0, 4); |
8033 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8034 | return S; |
8035 | case 116: |
8036 | tmp = fieldFromInstruction(insn, 4, 4); |
8037 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8038 | tmp = fieldFromInstruction(insn, 0, 4); |
8039 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8040 | return S; |
8041 | case 117: |
8042 | tmp = fieldFromInstruction(insn, 4, 4); |
8043 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8044 | tmp = fieldFromInstruction(insn, 0, 4); |
8045 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8046 | return S; |
8047 | case 118: |
8048 | tmp = fieldFromInstruction(insn, 4, 4); |
8049 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8050 | tmp = fieldFromInstruction(insn, 12, 4); |
8051 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8052 | tmp = fieldFromInstruction(insn, 0, 4); |
8053 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8054 | return S; |
8055 | case 119: |
8056 | tmp = fieldFromInstruction(insn, 4, 4); |
8057 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8058 | tmp = fieldFromInstruction(insn, 12, 4); |
8059 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8060 | tmp = fieldFromInstruction(insn, 0, 4); |
8061 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8062 | tmp = fieldFromInstruction(insn, 8, 4); |
8063 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8064 | return S; |
8065 | case 120: |
8066 | tmp = fieldFromInstruction(insn, 4, 4); |
8067 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8068 | tmp = fieldFromInstruction(insn, 12, 4); |
8069 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8070 | tmp = fieldFromInstruction(insn, 0, 4); |
8071 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8072 | return S; |
8073 | case 121: |
8074 | tmp = fieldFromInstruction(insn, 4, 4); |
8075 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8076 | tmp = fieldFromInstruction(insn, 12, 4); |
8077 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8078 | tmp = fieldFromInstruction(insn, 0, 4); |
8079 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8080 | tmp = fieldFromInstruction(insn, 8, 4); |
8081 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8082 | return S; |
8083 | case 122: |
8084 | tmp = fieldFromInstruction(insn, 4, 4); |
8085 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8086 | tmp = fieldFromInstruction(insn, 12, 4); |
8087 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8088 | tmp = fieldFromInstruction(insn, 0, 4); |
8089 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8090 | return S; |
8091 | case 123: |
8092 | tmp = fieldFromInstruction(insn, 4, 4); |
8093 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8094 | tmp = fieldFromInstruction(insn, 12, 4); |
8095 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8096 | tmp = fieldFromInstruction(insn, 0, 4); |
8097 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8098 | tmp = fieldFromInstruction(insn, 8, 4); |
8099 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8100 | return S; |
8101 | case 124: |
8102 | tmp = fieldFromInstruction(insn, 4, 4); |
8103 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8104 | tmp = fieldFromInstruction(insn, 0, 4); |
8105 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8106 | return S; |
8107 | case 125: |
8108 | tmp = fieldFromInstruction(insn, 4, 4); |
8109 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8110 | tmp = fieldFromInstruction(insn, 0, 4); |
8111 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8112 | tmp = fieldFromInstruction(insn, 12, 4); |
8113 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8114 | tmp = fieldFromInstruction(insn, 8, 4); |
8115 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8116 | return S; |
8117 | case 126: |
8118 | tmp = fieldFromInstruction(insn, 4, 4); |
8119 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8120 | tmp = fieldFromInstruction(insn, 0, 4); |
8121 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8122 | tmp = fieldFromInstruction(insn, 8, 4); |
8123 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8124 | return S; |
8125 | case 127: |
8126 | tmp = fieldFromInstruction(insn, 4, 4); |
8127 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8128 | tmp = fieldFromInstruction(insn, 0, 4); |
8129 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8130 | tmp = fieldFromInstruction(insn, 12, 4); |
8131 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8132 | return S; |
8133 | case 128: |
8134 | tmp = fieldFromInstruction(insn, 4, 4); |
8135 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8136 | tmp = fieldFromInstruction(insn, 0, 4); |
8137 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8138 | tmp = fieldFromInstruction(insn, 12, 4); |
8139 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8140 | tmp = fieldFromInstruction(insn, 8, 4); |
8141 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8142 | return S; |
8143 | case 129: |
8144 | tmp = fieldFromInstruction(insn, 4, 4); |
8145 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8146 | tmp = fieldFromInstruction(insn, 0, 4); |
8147 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8148 | tmp = fieldFromInstruction(insn, 8, 4); |
8149 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8150 | return S; |
8151 | case 130: |
8152 | tmp = fieldFromInstruction(insn, 4, 4); |
8153 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8154 | tmp = fieldFromInstruction(insn, 0, 4); |
8155 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8156 | tmp = fieldFromInstruction(insn, 8, 4); |
8157 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8158 | return S; |
8159 | case 131: |
8160 | tmp = fieldFromInstruction(insn, 4, 4); |
8161 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8162 | tmp = fieldFromInstruction(insn, 0, 4); |
8163 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8164 | return S; |
8165 | case 132: |
8166 | tmp = fieldFromInstruction(insn, 4, 4); |
8167 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8168 | tmp = fieldFromInstruction(insn, 0, 4); |
8169 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8170 | tmp = fieldFromInstruction(insn, 8, 4); |
8171 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8172 | return S; |
8173 | case 133: |
8174 | tmp = fieldFromInstruction(insn, 4, 4); |
8175 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8176 | tmp = fieldFromInstruction(insn, 0, 4); |
8177 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8178 | return S; |
8179 | case 134: |
8180 | tmp = fieldFromInstruction(insn, 4, 4); |
8181 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8182 | tmp = fieldFromInstruction(insn, 12, 4); |
8183 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8184 | tmp = fieldFromInstruction(insn, 4, 4); |
8185 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8186 | tmp = fieldFromInstruction(insn, 0, 4); |
8187 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8188 | tmp = fieldFromInstruction(insn, 8, 4); |
8189 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8190 | return S; |
8191 | case 135: |
8192 | tmp = fieldFromInstruction(insn, 20, 4); |
8193 | if (!Check(S, DecodeCR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8194 | tmp = fieldFromInstruction(insn, 16, 4); |
8195 | if (!Check(S, DecodeCR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8196 | tmp = fieldFromInstruction(insn, 12, 4); |
8197 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8198 | tmp = fieldFromInstruction(insn, 0, 12); |
8199 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8200 | return S; |
8201 | case 136: |
8202 | tmp = fieldFromInstruction(insn, 4, 4); |
8203 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8204 | tmp = fieldFromInstruction(insn, 4, 4); |
8205 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8206 | tmp = fieldFromInstruction(insn, 0, 4); |
8207 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8208 | return S; |
8209 | case 137: |
8210 | tmp = fieldFromInstruction(insn, 4, 4); |
8211 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8212 | tmp = fieldFromInstruction(insn, 4, 4); |
8213 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8214 | tmp = fieldFromInstruction(insn, 0, 4); |
8215 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8216 | return S; |
8217 | case 138: |
8218 | tmp = fieldFromInstruction(insn, 0, 4); |
8219 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8220 | tmp = fieldFromInstruction(insn, 4, 4); |
8221 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8222 | tmp = fieldFromInstruction(insn, 0, 4); |
8223 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8224 | return S; |
8225 | case 139: |
8226 | tmp = fieldFromInstruction(insn, 4, 4); |
8227 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8228 | tmp = fieldFromInstruction(insn, 0, 4); |
8229 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8230 | tmp = fieldFromInstruction(insn, 12, 4); |
8231 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8232 | tmp = fieldFromInstruction(insn, 4, 4); |
8233 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8234 | tmp = fieldFromInstruction(insn, 0, 4); |
8235 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8236 | tmp = fieldFromInstruction(insn, 12, 4); |
8237 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8238 | return S; |
8239 | case 140: |
8240 | tmp = fieldFromInstruction(insn, 4, 4); |
8241 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8242 | tmp = fieldFromInstruction(insn, 0, 4); |
8243 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8244 | tmp = fieldFromInstruction(insn, 4, 4); |
8245 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8246 | tmp = fieldFromInstruction(insn, 0, 4); |
8247 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8248 | tmp = fieldFromInstruction(insn, 12, 4); |
8249 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8250 | return S; |
8251 | case 141: |
8252 | tmp = fieldFromInstruction(insn, 4, 4); |
8253 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8254 | tmp = fieldFromInstruction(insn, 0, 4); |
8255 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8256 | tmp = fieldFromInstruction(insn, 12, 4); |
8257 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8258 | return S; |
8259 | case 142: |
8260 | tmp = fieldFromInstruction(insn, 4, 4); |
8261 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8262 | tmp = fieldFromInstruction(insn, 0, 4); |
8263 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8264 | tmp = fieldFromInstruction(insn, 12, 4); |
8265 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8266 | return S; |
8267 | case 143: |
8268 | tmp = fieldFromInstruction(insn, 4, 4); |
8269 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8270 | tmp = fieldFromInstruction(insn, 0, 4); |
8271 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8272 | tmp = fieldFromInstruction(insn, 12, 4); |
8273 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8274 | return S; |
8275 | case 144: |
8276 | tmp = fieldFromInstruction(insn, 4, 4); |
8277 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8278 | tmp = fieldFromInstruction(insn, 0, 4); |
8279 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8280 | return S; |
8281 | case 145: |
8282 | tmp = fieldFromInstruction(insn, 4, 4); |
8283 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8284 | tmp = fieldFromInstruction(insn, 0, 4); |
8285 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8286 | tmp = fieldFromInstruction(insn, 12, 4); |
8287 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8288 | tmp = fieldFromInstruction(insn, 8, 4); |
8289 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8290 | return S; |
8291 | case 146: |
8292 | tmp = fieldFromInstruction(insn, 4, 4); |
8293 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8294 | tmp = fieldFromInstruction(insn, 0, 4); |
8295 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8296 | tmp = fieldFromInstruction(insn, 12, 4); |
8297 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8298 | return S; |
8299 | case 147: |
8300 | tmp = fieldFromInstruction(insn, 4, 4); |
8301 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8302 | tmp = fieldFromInstruction(insn, 0, 4); |
8303 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8304 | tmp = fieldFromInstruction(insn, 12, 4); |
8305 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8306 | tmp = fieldFromInstruction(insn, 8, 4); |
8307 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8308 | return S; |
8309 | case 148: |
8310 | tmp = fieldFromInstruction(insn, 4, 4); |
8311 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8312 | tmp = fieldFromInstruction(insn, 0, 4); |
8313 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8314 | tmp = fieldFromInstruction(insn, 4, 4); |
8315 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8316 | tmp = fieldFromInstruction(insn, 0, 4); |
8317 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8318 | tmp = fieldFromInstruction(insn, 12, 4); |
8319 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8320 | return S; |
8321 | case 149: |
8322 | tmp = fieldFromInstruction(insn, 4, 4); |
8323 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8324 | return S; |
8325 | case 150: |
8326 | tmp = fieldFromInstruction(insn, 4, 4); |
8327 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8328 | tmp = fieldFromInstruction(insn, 4, 4); |
8329 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8330 | return S; |
8331 | case 151: |
8332 | tmp = fieldFromInstruction(insn, 4, 4); |
8333 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8334 | tmp = fieldFromInstruction(insn, 4, 4); |
8335 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8336 | return S; |
8337 | case 152: |
8338 | tmp = fieldFromInstruction(insn, 4, 4); |
8339 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8340 | tmp = fieldFromInstruction(insn, 12, 4); |
8341 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8342 | tmp = fieldFromInstruction(insn, 4, 4); |
8343 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8344 | tmp = fieldFromInstruction(insn, 0, 4); |
8345 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8346 | tmp = fieldFromInstruction(insn, 8, 4); |
8347 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8348 | return S; |
8349 | case 153: |
8350 | tmp = fieldFromInstruction(insn, 0, 4); |
8351 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8352 | tmp = fieldFromInstruction(insn, 4, 4); |
8353 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8354 | tmp = fieldFromInstruction(insn, 0, 4); |
8355 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8356 | return S; |
8357 | case 154: |
8358 | tmp = fieldFromInstruction(insn, 0, 4); |
8359 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8360 | tmp = fieldFromInstruction(insn, 4, 4); |
8361 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8362 | tmp = fieldFromInstruction(insn, 4, 4); |
8363 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8364 | return S; |
8365 | case 155: |
8366 | tmp = fieldFromInstruction(insn, 0, 4); |
8367 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8368 | tmp = fieldFromInstruction(insn, 4, 4); |
8369 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8370 | tmp = fieldFromInstruction(insn, 4, 4); |
8371 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8372 | tmp = fieldFromInstruction(insn, 12, 4); |
8373 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8374 | return S; |
8375 | case 156: |
8376 | tmp = fieldFromInstruction(insn, 4, 4); |
8377 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8378 | tmp = fieldFromInstruction(insn, 12, 4); |
8379 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8380 | tmp = fieldFromInstruction(insn, 0, 4); |
8381 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8382 | return S; |
8383 | case 157: |
8384 | tmp = fieldFromInstruction(insn, 4, 4); |
8385 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8386 | tmp = fieldFromInstruction(insn, 12, 4); |
8387 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8388 | tmp = fieldFromInstruction(insn, 0, 4); |
8389 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8390 | tmp = fieldFromInstruction(insn, 8, 4); |
8391 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8392 | return S; |
8393 | case 158: |
8394 | tmp = fieldFromInstruction(insn, 4, 4); |
8395 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8396 | tmp = fieldFromInstruction(insn, 0, 4); |
8397 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8398 | tmp = fieldFromInstruction(insn, 12, 4); |
8399 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8400 | return S; |
8401 | case 159: |
8402 | tmp = fieldFromInstruction(insn, 4, 4); |
8403 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8404 | tmp = fieldFromInstruction(insn, 0, 4); |
8405 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8406 | return S; |
8407 | case 160: |
8408 | tmp = fieldFromInstruction(insn, 4, 4); |
8409 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8410 | tmp = fieldFromInstruction(insn, 0, 4); |
8411 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8412 | tmp = fieldFromInstruction(insn, 12, 4); |
8413 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8414 | return S; |
8415 | case 161: |
8416 | tmp = fieldFromInstruction(insn, 4, 4); |
8417 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8418 | tmp = fieldFromInstruction(insn, 0, 4); |
8419 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8420 | return S; |
8421 | case 162: |
8422 | tmp = fieldFromInstruction(insn, 4, 4); |
8423 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8424 | tmp = fieldFromInstruction(insn, 4, 4); |
8425 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8426 | tmp = fieldFromInstruction(insn, 0, 4); |
8427 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8428 | return S; |
8429 | case 163: |
8430 | tmp = fieldFromInstruction(insn, 4, 4); |
8431 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8432 | tmp = fieldFromInstruction(insn, 4, 4); |
8433 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8434 | tmp = fieldFromInstruction(insn, 0, 4); |
8435 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8436 | tmp = fieldFromInstruction(insn, 12, 4); |
8437 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8438 | return S; |
8439 | case 164: |
8440 | tmp = fieldFromInstruction(insn, 4, 4); |
8441 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8442 | tmp = fieldFromInstruction(insn, 4, 4); |
8443 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8444 | tmp = fieldFromInstruction(insn, 0, 4); |
8445 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8446 | tmp = fieldFromInstruction(insn, 12, 4); |
8447 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8448 | return S; |
8449 | case 165: |
8450 | tmp = fieldFromInstruction(insn, 4, 4); |
8451 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8452 | tmp = fieldFromInstruction(insn, 12, 4); |
8453 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8454 | tmp = fieldFromInstruction(insn, 0, 4); |
8455 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8456 | return S; |
8457 | case 166: |
8458 | tmp = fieldFromInstruction(insn, 4, 4); |
8459 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8460 | tmp = fieldFromInstruction(insn, 12, 4); |
8461 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8462 | tmp = fieldFromInstruction(insn, 0, 4); |
8463 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8464 | tmp = fieldFromInstruction(insn, 8, 4); |
8465 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8466 | return S; |
8467 | case 167: |
8468 | tmp = fieldFromInstruction(insn, 4, 4); |
8469 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8470 | tmp = fieldFromInstruction(insn, 0, 4); |
8471 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8472 | tmp = fieldFromInstruction(insn, 12, 4); |
8473 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8474 | return S; |
8475 | case 168: |
8476 | tmp = fieldFromInstruction(insn, 4, 4); |
8477 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8478 | tmp = fieldFromInstruction(insn, 12, 4); |
8479 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8480 | tmp = fieldFromInstruction(insn, 0, 4); |
8481 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8482 | return S; |
8483 | case 169: |
8484 | tmp = fieldFromInstruction(insn, 4, 4); |
8485 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8486 | tmp = fieldFromInstruction(insn, 12, 4); |
8487 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8488 | tmp = fieldFromInstruction(insn, 0, 4); |
8489 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8490 | tmp = fieldFromInstruction(insn, 8, 4); |
8491 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8492 | return S; |
8493 | case 170: |
8494 | tmp = fieldFromInstruction(insn, 4, 4); |
8495 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8496 | tmp = fieldFromInstruction(insn, 4, 4); |
8497 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8498 | tmp = fieldFromInstruction(insn, 0, 4); |
8499 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8500 | tmp = fieldFromInstruction(insn, 12, 4); |
8501 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8502 | return S; |
8503 | case 171: |
8504 | tmp = fieldFromInstruction(insn, 20, 4); |
8505 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8506 | tmp = fieldFromInstruction(insn, 20, 4); |
8507 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8508 | tmp = fieldFromInstruction(insn, 16, 4); |
8509 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8510 | tmp = fieldFromInstruction(insn, 12, 4); |
8511 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8512 | tmp = fieldFromInstruction(insn, 0, 12); |
8513 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8514 | return S; |
8515 | case 172: |
8516 | tmp = fieldFromInstruction(insn, 20, 4); |
8517 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8518 | tmp = fieldFromInstruction(insn, 16, 4); |
8519 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8520 | tmp = fieldFromInstruction(insn, 12, 4); |
8521 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8522 | tmp = fieldFromInstruction(insn, 0, 12); |
8523 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8524 | return S; |
8525 | case 173: |
8526 | tmp = fieldFromInstruction(insn, 20, 4); |
8527 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8528 | tmp = fieldFromInstruction(insn, 20, 4); |
8529 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8530 | tmp = fieldFromInstruction(insn, 16, 4); |
8531 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8532 | tmp = fieldFromInstruction(insn, 12, 4); |
8533 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8534 | tmp = fieldFromInstruction(insn, 0, 12); |
8535 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8536 | return S; |
8537 | case 174: |
8538 | tmp = fieldFromInstruction(insn, 36, 4); |
8539 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8540 | tmp = fieldFromInstruction(insn, 0, 32); |
8541 | if (!Check(S, decodePC32DBLOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8542 | return S; |
8543 | case 175: |
8544 | tmp = fieldFromInstruction(insn, 36, 4); |
8545 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8546 | tmp = fieldFromInstruction(insn, 0, 32); |
8547 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8548 | return S; |
8549 | case 176: |
8550 | tmp = fieldFromInstruction(insn, 0, 32); |
8551 | if (!Check(S, decodePC32DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8552 | return S; |
8553 | case 177: |
8554 | tmp = fieldFromInstruction(insn, 36, 4); |
8555 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8556 | tmp = fieldFromInstruction(insn, 0, 32); |
8557 | if (!Check(S, decodePC32DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8558 | return S; |
8559 | case 178: |
8560 | tmp = fieldFromInstruction(insn, 36, 4); |
8561 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8562 | tmp = fieldFromInstruction(insn, 0, 32); |
8563 | if (!Check(S, decodePC32DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8564 | return S; |
8565 | case 179: |
8566 | tmp = fieldFromInstruction(insn, 36, 4); |
8567 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8568 | tmp = fieldFromInstruction(insn, 36, 4); |
8569 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8570 | tmp = fieldFromInstruction(insn, 0, 32); |
8571 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8572 | return S; |
8573 | case 180: |
8574 | tmp = fieldFromInstruction(insn, 36, 4); |
8575 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8576 | tmp = fieldFromInstruction(insn, 36, 4); |
8577 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8578 | tmp = fieldFromInstruction(insn, 0, 32); |
8579 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8580 | return S; |
8581 | case 181: |
8582 | tmp = fieldFromInstruction(insn, 36, 4); |
8583 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8584 | tmp = fieldFromInstruction(insn, 0, 32); |
8585 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8586 | return S; |
8587 | case 182: |
8588 | tmp = fieldFromInstruction(insn, 36, 4); |
8589 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8590 | tmp = fieldFromInstruction(insn, 0, 32); |
8591 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8592 | return S; |
8593 | case 183: |
8594 | tmp = fieldFromInstruction(insn, 36, 4); |
8595 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8596 | tmp = fieldFromInstruction(insn, 0, 32); |
8597 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8598 | return S; |
8599 | case 184: |
8600 | tmp = fieldFromInstruction(insn, 36, 4); |
8601 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8602 | tmp = fieldFromInstruction(insn, 36, 4); |
8603 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8604 | tmp = fieldFromInstruction(insn, 0, 32); |
8605 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8606 | return S; |
8607 | case 185: |
8608 | tmp = fieldFromInstruction(insn, 36, 4); |
8609 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8610 | tmp = fieldFromInstruction(insn, 36, 4); |
8611 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8612 | tmp = fieldFromInstruction(insn, 0, 32); |
8613 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8614 | return S; |
8615 | case 186: |
8616 | tmp = fieldFromInstruction(insn, 36, 4); |
8617 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8618 | tmp = fieldFromInstruction(insn, 36, 4); |
8619 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8620 | tmp = fieldFromInstruction(insn, 0, 32); |
8621 | if (!Check(S, decodeU32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8622 | return S; |
8623 | case 187: |
8624 | tmp = fieldFromInstruction(insn, 36, 4); |
8625 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8626 | tmp = fieldFromInstruction(insn, 0, 32); |
8627 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8628 | return S; |
8629 | case 188: |
8630 | tmp = fieldFromInstruction(insn, 36, 4); |
8631 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8632 | tmp = fieldFromInstruction(insn, 0, 32); |
8633 | if (!Check(S, decodePC32DBLOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8634 | return S; |
8635 | case 189: |
8636 | tmp = fieldFromInstruction(insn, 36, 4); |
8637 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8638 | tmp = fieldFromInstruction(insn, 24, 12); |
8639 | if (!Check(S, decodePC12DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8640 | tmp = fieldFromInstruction(insn, 0, 24); |
8641 | if (!Check(S, decodePC24DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8642 | return S; |
8643 | case 190: |
8644 | tmp = fieldFromInstruction(insn, 36, 4); |
8645 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8646 | tmp = fieldFromInstruction(insn, 0, 32); |
8647 | if (!Check(S, decodePC32DBLOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8648 | return S; |
8649 | case 191: |
8650 | tmp = fieldFromInstruction(insn, 36, 4); |
8651 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8652 | tmp = fieldFromInstruction(insn, 0, 32); |
8653 | if (!Check(S, decodePC32DBLOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8654 | return S; |
8655 | case 192: |
8656 | tmp = fieldFromInstruction(insn, 36, 4); |
8657 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8658 | tmp = fieldFromInstruction(insn, 0, 16); |
8659 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8660 | tmp = fieldFromInstruction(insn, 28, 4); |
8661 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8662 | tmp = fieldFromInstruction(insn, 16, 12); |
8663 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8664 | return S; |
8665 | case 193: |
8666 | tmp = fieldFromInstruction(insn, 28, 4); |
8667 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8668 | tmp = fieldFromInstruction(insn, 16, 12); |
8669 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8670 | tmp = fieldFromInstruction(insn, 12, 4); |
8671 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8672 | tmp = fieldFromInstruction(insn, 0, 12); |
8673 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8674 | tmp = fieldFromInstruction(insn, 36, 4); |
8675 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8676 | return S; |
8677 | case 194: |
8678 | tmp = fieldFromInstruction(insn, 36, 4); |
8679 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8680 | tmp = fieldFromInstruction(insn, 28, 4); |
8681 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8682 | tmp = fieldFromInstruction(insn, 16, 12); |
8683 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8684 | tmp = fieldFromInstruction(insn, 12, 4); |
8685 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8686 | tmp = fieldFromInstruction(insn, 0, 12); |
8687 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8688 | return S; |
8689 | case 195: |
8690 | tmp = fieldFromInstruction(insn, 36, 4); |
8691 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8692 | tmp = fieldFromInstruction(insn, 36, 4); |
8693 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8694 | tmp = fieldFromInstruction(insn, 0, 32); |
8695 | if (!Check(S, decodePC32DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8696 | return S; |
8697 | case 196: |
8698 | tmp = fieldFromInstruction(insn, 36, 4); |
8699 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8700 | tmp = fieldFromInstruction(insn, 36, 4); |
8701 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8702 | tmp = fieldFromInstruction(insn, 0, 32); |
8703 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8704 | return S; |
8705 | case 197: |
8706 | tmp = fieldFromInstruction(insn, 36, 4); |
8707 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8708 | tmp = fieldFromInstruction(insn, 0, 32); |
8709 | if (!Check(S, decodeS32ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8710 | return S; |
8711 | case 198: |
8712 | tmp = fieldFromInstruction(insn, 28, 4); |
8713 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8714 | tmp = fieldFromInstruction(insn, 16, 12); |
8715 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8716 | tmp = fieldFromInstruction(insn, 32, 8); |
8717 | if (!Check(S, decodeLenOperand<8>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8718 | tmp = fieldFromInstruction(insn, 12, 4); |
8719 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8720 | tmp = fieldFromInstruction(insn, 0, 12); |
8721 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8722 | return S; |
8723 | case 199: |
8724 | tmp = fieldFromInstruction(insn, 28, 4); |
8725 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8726 | tmp = fieldFromInstruction(insn, 16, 12); |
8727 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8728 | tmp = fieldFromInstruction(insn, 36, 4); |
8729 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8730 | tmp = fieldFromInstruction(insn, 12, 4); |
8731 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8732 | tmp = fieldFromInstruction(insn, 0, 12); |
8733 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8734 | tmp = fieldFromInstruction(insn, 32, 4); |
8735 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8736 | return S; |
8737 | case 200: |
8738 | tmp = fieldFromInstruction(insn, 28, 4); |
8739 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8740 | tmp = fieldFromInstruction(insn, 16, 12); |
8741 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8742 | tmp = fieldFromInstruction(insn, 12, 4); |
8743 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8744 | tmp = fieldFromInstruction(insn, 0, 12); |
8745 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8746 | tmp = fieldFromInstruction(insn, 32, 8); |
8747 | if (!Check(S, decodeLenOperand<8>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8748 | return S; |
8749 | case 201: |
8750 | tmp = fieldFromInstruction(insn, 36, 4); |
8751 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8752 | tmp = fieldFromInstruction(insn, 28, 4); |
8753 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8754 | tmp = 0x0; |
8755 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8756 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8757 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8758 | tmp = fieldFromInstruction(insn, 32, 4); |
8759 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8760 | return S; |
8761 | case 202: |
8762 | tmp = fieldFromInstruction(insn, 36, 4); |
8763 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8764 | tmp = fieldFromInstruction(insn, 36, 4); |
8765 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8766 | tmp = fieldFromInstruction(insn, 28, 4); |
8767 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8768 | tmp = 0x0; |
8769 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8770 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8771 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8772 | tmp = fieldFromInstruction(insn, 32, 4); |
8773 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8774 | return S; |
8775 | case 203: |
8776 | tmp = fieldFromInstruction(insn, 36, 4); |
8777 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8778 | tmp = fieldFromInstruction(insn, 36, 4); |
8779 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8780 | tmp = fieldFromInstruction(insn, 28, 4); |
8781 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8782 | tmp = 0x0; |
8783 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8784 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8785 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8786 | tmp = fieldFromInstruction(insn, 32, 4); |
8787 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8788 | return S; |
8789 | case 204: |
8790 | tmp = fieldFromInstruction(insn, 36, 4); |
8791 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8792 | tmp = fieldFromInstruction(insn, 36, 4); |
8793 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8794 | tmp = fieldFromInstruction(insn, 28, 4); |
8795 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8796 | tmp = 0x0; |
8797 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8798 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8799 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8800 | tmp = fieldFromInstruction(insn, 32, 4); |
8801 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8802 | return S; |
8803 | case 205: |
8804 | tmp = fieldFromInstruction(insn, 36, 4); |
8805 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8806 | tmp = fieldFromInstruction(insn, 28, 4); |
8807 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8808 | tmp = 0x0; |
8809 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8810 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8811 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8812 | tmp = fieldFromInstruction(insn, 32, 4); |
8813 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8814 | return S; |
8815 | case 206: |
8816 | tmp = fieldFromInstruction(insn, 36, 4); |
8817 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8818 | tmp = fieldFromInstruction(insn, 28, 4); |
8819 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8820 | tmp = 0x0; |
8821 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8822 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8823 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8824 | tmp = fieldFromInstruction(insn, 32, 4); |
8825 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8826 | return S; |
8827 | case 207: |
8828 | tmp = fieldFromInstruction(insn, 28, 4); |
8829 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8830 | tmp = 0x0; |
8831 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8832 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8833 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8834 | tmp = fieldFromInstruction(insn, 32, 4); |
8835 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8836 | return S; |
8837 | case 208: |
8838 | tmp = fieldFromInstruction(insn, 36, 4); |
8839 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8840 | tmp = fieldFromInstruction(insn, 28, 4); |
8841 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8842 | tmp = 0x0; |
8843 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8844 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8845 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8846 | tmp = fieldFromInstruction(insn, 32, 4); |
8847 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8848 | return S; |
8849 | case 209: |
8850 | tmp = fieldFromInstruction(insn, 36, 4); |
8851 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8852 | tmp = fieldFromInstruction(insn, 28, 4); |
8853 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8854 | tmp = 0x0; |
8855 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
8856 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
8857 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8858 | tmp = fieldFromInstruction(insn, 32, 4); |
8859 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8860 | return S; |
8861 | case 210: |
8862 | tmp = fieldFromInstruction(insn, 28, 4); |
8863 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8864 | tmp = fieldFromInstruction(insn, 16, 12); |
8865 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8866 | tmp = fieldFromInstruction(insn, 12, 4); |
8867 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8868 | tmp = fieldFromInstruction(insn, 0, 12); |
8869 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8870 | return S; |
8871 | case 211: |
8872 | tmp = fieldFromInstruction(insn, 28, 4); |
8873 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8874 | tmp = fieldFromInstruction(insn, 16, 12); |
8875 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8876 | tmp = fieldFromInstruction(insn, 0, 16); |
8877 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8878 | return S; |
8879 | case 212: |
8880 | tmp = fieldFromInstruction(insn, 28, 4); |
8881 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8882 | tmp = fieldFromInstruction(insn, 16, 12); |
8883 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8884 | tmp = fieldFromInstruction(insn, 0, 16); |
8885 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8886 | return S; |
8887 | case 213: |
8888 | tmp = 0x0; |
8889 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8890 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8891 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8892 | tmp = 0x0; |
8893 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8894 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8895 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8896 | tmp = fieldFromInstruction(insn, 28, 4); |
8897 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8898 | tmp = fieldFromInstruction(insn, 16, 12); |
8899 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8900 | tmp = fieldFromInstruction(insn, 32, 4); |
8901 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8902 | tmp = fieldFromInstruction(insn, 12, 4); |
8903 | if (!Check(S, decodeU3ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8904 | return S; |
8905 | case 214: |
8906 | tmp = 0x0; |
8907 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8908 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8909 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8910 | tmp = 0x0; |
8911 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8912 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8913 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8914 | tmp = fieldFromInstruction(insn, 28, 4); |
8915 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8916 | tmp = fieldFromInstruction(insn, 16, 12); |
8917 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8918 | tmp = fieldFromInstruction(insn, 32, 4); |
8919 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8920 | tmp = fieldFromInstruction(insn, 12, 4); |
8921 | if (!Check(S, decodeU1ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8922 | return S; |
8923 | case 215: |
8924 | tmp = 0x0; |
8925 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8926 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8927 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8928 | tmp = 0x0; |
8929 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8930 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8931 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8932 | tmp = fieldFromInstruction(insn, 28, 4); |
8933 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8934 | tmp = fieldFromInstruction(insn, 16, 12); |
8935 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8936 | tmp = fieldFromInstruction(insn, 32, 4); |
8937 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8938 | tmp = fieldFromInstruction(insn, 12, 4); |
8939 | if (!Check(S, decodeU2ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8940 | return S; |
8941 | case 216: |
8942 | tmp = 0x0; |
8943 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8944 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8945 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8946 | tmp = fieldFromInstruction(insn, 28, 4); |
8947 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8948 | tmp = fieldFromInstruction(insn, 16, 12); |
8949 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8950 | tmp = fieldFromInstruction(insn, 32, 4); |
8951 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8952 | return S; |
8953 | case 217: |
8954 | tmp = 0x0; |
8955 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8956 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8957 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8958 | tmp = fieldFromInstruction(insn, 28, 4); |
8959 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8960 | tmp = fieldFromInstruction(insn, 16, 12); |
8961 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8962 | tmp = fieldFromInstruction(insn, 32, 4); |
8963 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8964 | tmp = fieldFromInstruction(insn, 12, 4); |
8965 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8966 | return S; |
8967 | case 218: |
8968 | tmp = 0x0; |
8969 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8970 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8971 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8972 | tmp = fieldFromInstruction(insn, 28, 4); |
8973 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8974 | tmp = fieldFromInstruction(insn, 16, 12); |
8975 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8976 | tmp = fieldFromInstruction(insn, 32, 4); |
8977 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8978 | tmp = fieldFromInstruction(insn, 12, 4); |
8979 | if (!Check(S, decodeU3ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8980 | return S; |
8981 | case 219: |
8982 | tmp = 0x0; |
8983 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8984 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8985 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8986 | tmp = fieldFromInstruction(insn, 28, 4); |
8987 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8988 | tmp = fieldFromInstruction(insn, 16, 12); |
8989 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8990 | tmp = fieldFromInstruction(insn, 32, 4); |
8991 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8992 | tmp = fieldFromInstruction(insn, 12, 4); |
8993 | if (!Check(S, decodeU1ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8994 | return S; |
8995 | case 220: |
8996 | tmp = 0x0; |
8997 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
8998 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
8999 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9000 | tmp = fieldFromInstruction(insn, 28, 4); |
9001 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9002 | tmp = fieldFromInstruction(insn, 16, 12); |
9003 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9004 | tmp = fieldFromInstruction(insn, 32, 4); |
9005 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9006 | tmp = fieldFromInstruction(insn, 12, 4); |
9007 | if (!Check(S, decodeU2ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9008 | return S; |
9009 | case 221: |
9010 | tmp = 0x0; |
9011 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9012 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9013 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9014 | tmp = fieldFromInstruction(insn, 28, 4); |
9015 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9016 | tmp = fieldFromInstruction(insn, 16, 12); |
9017 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9018 | tmp = fieldFromInstruction(insn, 32, 8); |
9019 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9020 | return S; |
9021 | case 222: |
9022 | tmp = 0x0; |
9023 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9024 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9025 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9026 | tmp = fieldFromInstruction(insn, 32, 4); |
9027 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9028 | tmp = fieldFromInstruction(insn, 28, 4); |
9029 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9030 | tmp = fieldFromInstruction(insn, 16, 12); |
9031 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9032 | return S; |
9033 | case 223: |
9034 | tmp = 0x0; |
9035 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9036 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9037 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9038 | tmp = fieldFromInstruction(insn, 16, 16); |
9039 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9040 | tmp = fieldFromInstruction(insn, 12, 4); |
9041 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9042 | return S; |
9043 | case 224: |
9044 | tmp = fieldFromInstruction(insn, 36, 4); |
9045 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9046 | tmp = 0x0; |
9047 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9048 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9049 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9050 | tmp = fieldFromInstruction(insn, 20, 4); |
9051 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9052 | return S; |
9053 | case 225: |
9054 | tmp = fieldFromInstruction(insn, 36, 4); |
9055 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9056 | tmp = 0x0; |
9057 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9058 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9059 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9060 | tmp = fieldFromInstruction(insn, 20, 4); |
9061 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9062 | tmp = fieldFromInstruction(insn, 16, 4); |
9063 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9064 | return S; |
9065 | case 226: |
9066 | tmp = 0x0; |
9067 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9068 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9069 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9070 | tmp = 0x0; |
9071 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9072 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9073 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9074 | tmp = fieldFromInstruction(insn, 20, 4); |
9075 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9076 | return S; |
9077 | case 227: |
9078 | tmp = fieldFromInstruction(insn, 36, 4); |
9079 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9080 | tmp = 0x0; |
9081 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9082 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9083 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9084 | tmp = fieldFromInstruction(insn, 20, 4); |
9085 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9086 | return S; |
9087 | case 228: |
9088 | tmp = fieldFromInstruction(insn, 36, 4); |
9089 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9090 | tmp = 0x0; |
9091 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9092 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9093 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9094 | tmp = fieldFromInstruction(insn, 20, 4); |
9095 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9096 | tmp = fieldFromInstruction(insn, 16, 4); |
9097 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9098 | return S; |
9099 | case 229: |
9100 | tmp = 0x0; |
9101 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9102 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9103 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9104 | tmp = 0x0; |
9105 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9106 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9107 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9108 | tmp = fieldFromInstruction(insn, 12, 4); |
9109 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9110 | tmp = fieldFromInstruction(insn, 16, 4); |
9111 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9112 | return S; |
9113 | case 230: |
9114 | tmp = 0x0; |
9115 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9116 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9117 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9118 | tmp = fieldFromInstruction(insn, 32, 4); |
9119 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9120 | tmp = fieldFromInstruction(insn, 12, 8); |
9121 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9122 | tmp = fieldFromInstruction(insn, 20, 4); |
9123 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9124 | return S; |
9125 | case 231: |
9126 | tmp = 0x0; |
9127 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9128 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9129 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9130 | tmp = 0x0; |
9131 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9132 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9133 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9134 | tmp = fieldFromInstruction(insn, 12, 8); |
9135 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9136 | tmp = fieldFromInstruction(insn, 24, 8); |
9137 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9138 | tmp = fieldFromInstruction(insn, 20, 4); |
9139 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9140 | return S; |
9141 | case 232: |
9142 | tmp = 0x0; |
9143 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9144 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9145 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9146 | tmp = fieldFromInstruction(insn, 32, 4); |
9147 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9148 | tmp = fieldFromInstruction(insn, 12, 8); |
9149 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9150 | tmp = fieldFromInstruction(insn, 20, 4); |
9151 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9152 | return S; |
9153 | case 233: |
9154 | tmp = 0x0; |
9155 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9156 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9157 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9158 | return S; |
9159 | case 234: |
9160 | tmp = 0x0; |
9161 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9162 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9163 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9164 | tmp = 0x0; |
9165 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9166 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9167 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9168 | tmp = 0x0; |
9169 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9170 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9171 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9172 | tmp = fieldFromInstruction(insn, 12, 8); |
9173 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9174 | tmp = fieldFromInstruction(insn, 20, 4); |
9175 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9176 | return S; |
9177 | case 235: |
9178 | tmp = 0x0; |
9179 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9180 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9181 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9182 | tmp = 0x0; |
9183 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9184 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9185 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9186 | tmp = 0x0; |
9187 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9188 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9189 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9190 | tmp = fieldFromInstruction(insn, 20, 4); |
9191 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9192 | return S; |
9193 | case 236: |
9194 | tmp = 0x0; |
9195 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9196 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9197 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9198 | tmp = 0x0; |
9199 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9200 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9201 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9202 | tmp = 0x0; |
9203 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9204 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9205 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9206 | tmp = fieldFromInstruction(insn, 12, 4); |
9207 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9208 | tmp = fieldFromInstruction(insn, 20, 4); |
9209 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9210 | return S; |
9211 | case 237: |
9212 | tmp = 0x0; |
9213 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9214 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9215 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9216 | tmp = 0x0; |
9217 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9218 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9219 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9220 | tmp = 0x0; |
9221 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9222 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9223 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9224 | tmp = fieldFromInstruction(insn, 12, 4); |
9225 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9226 | tmp = fieldFromInstruction(insn, 16, 4); |
9227 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9228 | return S; |
9229 | case 238: |
9230 | tmp = 0x0; |
9231 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9232 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9233 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9234 | tmp = 0x0; |
9235 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9236 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9237 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9238 | tmp = fieldFromInstruction(insn, 20, 4); |
9239 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9240 | return S; |
9241 | case 239: |
9242 | tmp = 0x0; |
9243 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9244 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9245 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9246 | tmp = 0x0; |
9247 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9248 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9249 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9250 | tmp = 0x0; |
9251 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9252 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9253 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9254 | return S; |
9255 | case 240: |
9256 | tmp = 0x0; |
9257 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9258 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9259 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9260 | tmp = 0x0; |
9261 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9262 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9263 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9264 | tmp = fieldFromInstruction(insn, 28, 4); |
9265 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9266 | tmp = fieldFromInstruction(insn, 16, 12); |
9267 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9268 | tmp = fieldFromInstruction(insn, 32, 4); |
9269 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9270 | tmp = fieldFromInstruction(insn, 12, 4); |
9271 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9272 | return S; |
9273 | case 241: |
9274 | tmp = 0x0; |
9275 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9276 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9277 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9278 | tmp = 0x0; |
9279 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9280 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9281 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9282 | tmp = fieldFromInstruction(insn, 28, 4); |
9283 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9284 | tmp = fieldFromInstruction(insn, 16, 12); |
9285 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9286 | tmp = 0x0; |
9287 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9288 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9289 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9290 | tmp = fieldFromInstruction(insn, 12, 4); |
9291 | if (!Check(S, decodeU1ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9292 | return S; |
9293 | case 242: |
9294 | tmp = 0x0; |
9295 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9296 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9297 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9298 | tmp = 0x0; |
9299 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9300 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9301 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9302 | tmp = fieldFromInstruction(insn, 28, 4); |
9303 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9304 | tmp = fieldFromInstruction(insn, 16, 12); |
9305 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9306 | tmp = 0x0; |
9307 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9308 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9309 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9310 | tmp = fieldFromInstruction(insn, 12, 4); |
9311 | if (!Check(S, decodeU2ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9312 | return S; |
9313 | case 243: |
9314 | tmp = 0x0; |
9315 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9316 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9317 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9318 | tmp = fieldFromInstruction(insn, 28, 4); |
9319 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9320 | tmp = fieldFromInstruction(insn, 16, 12); |
9321 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9322 | tmp = 0x0; |
9323 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9324 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9325 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9326 | tmp = fieldFromInstruction(insn, 12, 4); |
9327 | if (!Check(S, decodeU1ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9328 | return S; |
9329 | case 244: |
9330 | tmp = 0x0; |
9331 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9332 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9333 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9334 | tmp = fieldFromInstruction(insn, 28, 4); |
9335 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9336 | tmp = fieldFromInstruction(insn, 16, 12); |
9337 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9338 | tmp = 0x0; |
9339 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9340 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9341 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9342 | tmp = fieldFromInstruction(insn, 12, 4); |
9343 | if (!Check(S, decodeU2ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9344 | return S; |
9345 | case 245: |
9346 | tmp = fieldFromInstruction(insn, 36, 4); |
9347 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9348 | tmp = 0x0; |
9349 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9350 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9351 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9352 | tmp = fieldFromInstruction(insn, 28, 4); |
9353 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9354 | tmp = fieldFromInstruction(insn, 16, 12); |
9355 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9356 | return S; |
9357 | case 246: |
9358 | tmp = fieldFromInstruction(insn, 36, 4); |
9359 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9360 | tmp = 0x0; |
9361 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9362 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9363 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9364 | tmp = fieldFromInstruction(insn, 28, 4); |
9365 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9366 | tmp = fieldFromInstruction(insn, 16, 12); |
9367 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9368 | tmp = fieldFromInstruction(insn, 12, 4); |
9369 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9370 | return S; |
9371 | case 247: |
9372 | tmp = 0x0; |
9373 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9374 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9375 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9376 | tmp = 0x0; |
9377 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9378 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9379 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9380 | tmp = fieldFromInstruction(insn, 32, 4); |
9381 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9382 | tmp = fieldFromInstruction(insn, 28, 4); |
9383 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9384 | tmp = fieldFromInstruction(insn, 16, 12); |
9385 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9386 | return S; |
9387 | case 248: |
9388 | tmp = 0x0; |
9389 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9390 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9391 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9392 | tmp = 0x0; |
9393 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9394 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9395 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9396 | tmp = fieldFromInstruction(insn, 32, 4); |
9397 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9398 | tmp = fieldFromInstruction(insn, 28, 4); |
9399 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9400 | tmp = fieldFromInstruction(insn, 16, 12); |
9401 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9402 | return S; |
9403 | case 249: |
9404 | tmp = 0x0; |
9405 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9406 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9407 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9408 | tmp = 0x0; |
9409 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9410 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9411 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9412 | tmp = fieldFromInstruction(insn, 32, 4); |
9413 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9414 | tmp = fieldFromInstruction(insn, 28, 4); |
9415 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9416 | tmp = fieldFromInstruction(insn, 16, 12); |
9417 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9418 | tmp = fieldFromInstruction(insn, 12, 4); |
9419 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9420 | return S; |
9421 | case 250: |
9422 | tmp = fieldFromInstruction(insn, 36, 4); |
9423 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9424 | tmp = fieldFromInstruction(insn, 28, 4); |
9425 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9426 | tmp = fieldFromInstruction(insn, 16, 12); |
9427 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9428 | tmp = fieldFromInstruction(insn, 32, 4); |
9429 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9430 | tmp = fieldFromInstruction(insn, 12, 4); |
9431 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9432 | return S; |
9433 | case 251: |
9434 | tmp = 0x0; |
9435 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9436 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9437 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9438 | tmp = 0x0; |
9439 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9440 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9441 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9442 | tmp = fieldFromInstruction(insn, 28, 4); |
9443 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9444 | tmp = fieldFromInstruction(insn, 16, 12); |
9445 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9446 | return S; |
9447 | case 252: |
9448 | tmp = 0x0; |
9449 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9450 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9451 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9452 | tmp = 0x0; |
9453 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9454 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9455 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9456 | tmp = fieldFromInstruction(insn, 28, 4); |
9457 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9458 | tmp = fieldFromInstruction(insn, 16, 12); |
9459 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9460 | tmp = fieldFromInstruction(insn, 12, 4); |
9461 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9462 | return S; |
9463 | case 253: |
9464 | tmp = 0x0; |
9465 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9466 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9467 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9468 | tmp = 0x0; |
9469 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9470 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9471 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9472 | tmp = fieldFromInstruction(insn, 28, 4); |
9473 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9474 | tmp = fieldFromInstruction(insn, 16, 12); |
9475 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9476 | return S; |
9477 | case 254: |
9478 | tmp = 0x0; |
9479 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9480 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9481 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9482 | tmp = 0x0; |
9483 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9484 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9485 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9486 | tmp = fieldFromInstruction(insn, 28, 4); |
9487 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9488 | tmp = fieldFromInstruction(insn, 16, 12); |
9489 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9490 | tmp = fieldFromInstruction(insn, 12, 4); |
9491 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9492 | return S; |
9493 | case 255: |
9494 | tmp = 0x0; |
9495 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9496 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9497 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9498 | tmp = fieldFromInstruction(insn, 32, 4); |
9499 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9500 | tmp = fieldFromInstruction(insn, 28, 4); |
9501 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9502 | tmp = fieldFromInstruction(insn, 16, 12); |
9503 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9504 | return S; |
9505 | case 256: |
9506 | tmp = 0x0; |
9507 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9508 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9509 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9510 | tmp = 0x0; |
9511 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9512 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9513 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9514 | tmp = fieldFromInstruction(insn, 16, 16); |
9515 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9516 | tmp = fieldFromInstruction(insn, 12, 4); |
9517 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9518 | return S; |
9519 | case 257: |
9520 | tmp = 0x0; |
9521 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9522 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9523 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9524 | tmp = 0x0; |
9525 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9526 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9527 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9528 | tmp = fieldFromInstruction(insn, 16, 16); |
9529 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9530 | tmp = fieldFromInstruction(insn, 12, 4); |
9531 | if (!Check(S, decodeU3ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9532 | return S; |
9533 | case 258: |
9534 | tmp = 0x0; |
9535 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9536 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9537 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9538 | tmp = 0x0; |
9539 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9540 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9541 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9542 | tmp = fieldFromInstruction(insn, 16, 16); |
9543 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9544 | tmp = fieldFromInstruction(insn, 12, 4); |
9545 | if (!Check(S, decodeU1ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9546 | return S; |
9547 | case 259: |
9548 | tmp = 0x0; |
9549 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9550 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9551 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9552 | tmp = 0x0; |
9553 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9554 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9555 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9556 | tmp = fieldFromInstruction(insn, 16, 16); |
9557 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9558 | tmp = fieldFromInstruction(insn, 12, 4); |
9559 | if (!Check(S, decodeU2ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9560 | return S; |
9561 | case 260: |
9562 | tmp = 0x0; |
9563 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9564 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9565 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9566 | return S; |
9567 | case 261: |
9568 | tmp = 0x0; |
9569 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9570 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9571 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9572 | tmp = fieldFromInstruction(insn, 16, 16); |
9573 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9574 | return S; |
9575 | case 262: |
9576 | tmp = 0x0; |
9577 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9578 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9579 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9580 | tmp = fieldFromInstruction(insn, 16, 16); |
9581 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9582 | return S; |
9583 | case 263: |
9584 | tmp = 0x0; |
9585 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9586 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9587 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9588 | tmp = fieldFromInstruction(insn, 16, 16); |
9589 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9590 | tmp = fieldFromInstruction(insn, 12, 4); |
9591 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9592 | return S; |
9593 | case 264: |
9594 | tmp = 0x0; |
9595 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9596 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9597 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9598 | tmp = fieldFromInstruction(insn, 24, 8); |
9599 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9600 | tmp = fieldFromInstruction(insn, 16, 8); |
9601 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9602 | return S; |
9603 | case 265: |
9604 | tmp = 0x0; |
9605 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9606 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9607 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9608 | tmp = fieldFromInstruction(insn, 24, 8); |
9609 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9610 | tmp = fieldFromInstruction(insn, 16, 8); |
9611 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9612 | tmp = fieldFromInstruction(insn, 12, 4); |
9613 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9614 | return S; |
9615 | case 266: |
9616 | tmp = 0x0; |
9617 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9618 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9619 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9620 | tmp = 0x0; |
9621 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9622 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9623 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9624 | tmp = fieldFromInstruction(insn, 20, 12); |
9625 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9626 | return S; |
9627 | case 267: |
9628 | tmp = 0x0; |
9629 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9630 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9631 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9632 | tmp = 0x0; |
9633 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9634 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9635 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9636 | tmp = fieldFromInstruction(insn, 20, 12); |
9637 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9638 | return S; |
9639 | case 268: |
9640 | tmp = 0x0; |
9641 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9642 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9643 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9644 | tmp = 0x0; |
9645 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9646 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9647 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9648 | tmp = fieldFromInstruction(insn, 20, 12); |
9649 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9650 | return S; |
9651 | case 269: |
9652 | tmp = 0x0; |
9653 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9654 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9655 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9656 | tmp = 0x0; |
9657 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9658 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9659 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9660 | tmp = fieldFromInstruction(insn, 20, 12); |
9661 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9662 | tmp = fieldFromInstruction(insn, 12, 4); |
9663 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9664 | tmp = fieldFromInstruction(insn, 16, 4); |
9665 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9666 | return S; |
9667 | case 270: |
9668 | tmp = 0x0; |
9669 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9670 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9671 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9672 | tmp = 0x0; |
9673 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9674 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9675 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9676 | tmp = fieldFromInstruction(insn, 16, 16); |
9677 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9678 | return S; |
9679 | case 271: |
9680 | tmp = 0x0; |
9681 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9682 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9683 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9684 | tmp = 0x0; |
9685 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9686 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9687 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9688 | tmp = fieldFromInstruction(insn, 16, 16); |
9689 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9690 | tmp = fieldFromInstruction(insn, 12, 4); |
9691 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9692 | return S; |
9693 | case 272: |
9694 | tmp = 0x0; |
9695 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9696 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9697 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9698 | tmp = 0x0; |
9699 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9700 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9701 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9702 | return S; |
9703 | case 273: |
9704 | tmp = 0x0; |
9705 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9706 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9707 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9708 | tmp = 0x0; |
9709 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9710 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9711 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9712 | tmp = fieldFromInstruction(insn, 12, 4); |
9713 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9714 | return S; |
9715 | case 274: |
9716 | tmp = 0x0; |
9717 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9718 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9719 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9720 | tmp = 0x0; |
9721 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9722 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9723 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9724 | tmp = fieldFromInstruction(insn, 12, 4); |
9725 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9726 | tmp = fieldFromInstruction(insn, 20, 4); |
9727 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9728 | return S; |
9729 | case 275: |
9730 | tmp = 0x0; |
9731 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9732 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9733 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9734 | tmp = 0x0; |
9735 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9736 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9737 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9738 | tmp = 0x0; |
9739 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9740 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9741 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9742 | tmp = fieldFromInstruction(insn, 12, 4); |
9743 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9744 | return S; |
9745 | case 276: |
9746 | tmp = 0x0; |
9747 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9748 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9749 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9750 | tmp = fieldFromInstruction(insn, 32, 4); |
9751 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9752 | tmp = fieldFromInstruction(insn, 28, 4); |
9753 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9754 | return S; |
9755 | case 277: |
9756 | tmp = 0x0; |
9757 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9758 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9759 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9760 | tmp = 0x0; |
9761 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9762 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9763 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9764 | tmp = 0x0; |
9765 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9766 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9767 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9768 | tmp = 0x0; |
9769 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9770 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9771 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9772 | tmp = fieldFromInstruction(insn, 16, 8); |
9773 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9774 | return S; |
9775 | case 278: |
9776 | tmp = 0x0; |
9777 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9778 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9779 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9780 | tmp = 0x0; |
9781 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9782 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9783 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9784 | tmp = 0x0; |
9785 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9786 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9787 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9788 | tmp = 0x0; |
9789 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9790 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9791 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9792 | tmp = fieldFromInstruction(insn, 16, 8); |
9793 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9794 | tmp = fieldFromInstruction(insn, 12, 4); |
9795 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9796 | return S; |
9797 | case 279: |
9798 | tmp = 0x0; |
9799 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9800 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9801 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9802 | tmp = 0x0; |
9803 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9804 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9805 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9806 | tmp = 0x0; |
9807 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9808 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9809 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9810 | tmp = fieldFromInstruction(insn, 16, 8); |
9811 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9812 | return S; |
9813 | case 280: |
9814 | tmp = 0x0; |
9815 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9816 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9817 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9818 | tmp = 0x0; |
9819 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9820 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9821 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9822 | tmp = 0x0; |
9823 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9824 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9825 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9826 | tmp = fieldFromInstruction(insn, 22, 2) << 2; |
9827 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9828 | return S; |
9829 | case 281: |
9830 | tmp = 0x0; |
9831 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9832 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9833 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9834 | tmp = 0x0; |
9835 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9836 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9837 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9838 | tmp = 0x0; |
9839 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9840 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9841 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9842 | tmp = fieldFromInstruction(insn, 21, 3) << 1; |
9843 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9844 | return S; |
9845 | case 282: |
9846 | tmp = 0x0; |
9847 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9848 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9849 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9850 | tmp = 0x0; |
9851 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9852 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9853 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9854 | tmp = 0x0; |
9855 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9856 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9857 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9858 | tmp = 0x0; |
9859 | insertBits(tmp, fieldFromInstruction(insn, 20, 1), 0, 1); |
9860 | insertBits(tmp, fieldFromInstruction(insn, 22, 2), 2, 2); |
9861 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9862 | return S; |
9863 | case 283: |
9864 | tmp = 0x0; |
9865 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9866 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9867 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9868 | tmp = 0x0; |
9869 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9870 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9871 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9872 | tmp = 0x0; |
9873 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9874 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9875 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9876 | tmp = 0x0; |
9877 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9878 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9879 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9880 | tmp = fieldFromInstruction(insn, 22, 2) << 2; |
9881 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9882 | return S; |
9883 | case 284: |
9884 | tmp = 0x0; |
9885 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9886 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9887 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9888 | tmp = 0x0; |
9889 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9890 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9891 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9892 | tmp = 0x0; |
9893 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9894 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9895 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9896 | tmp = 0x0; |
9897 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9898 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9899 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9900 | tmp = fieldFromInstruction(insn, 21, 3) << 1; |
9901 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9902 | return S; |
9903 | case 285: |
9904 | tmp = 0x0; |
9905 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9906 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9907 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9908 | tmp = 0x0; |
9909 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9910 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9911 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9912 | tmp = 0x0; |
9913 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9914 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9915 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9916 | tmp = 0x0; |
9917 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9918 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9919 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9920 | tmp = 0x0; |
9921 | insertBits(tmp, fieldFromInstruction(insn, 20, 1), 0, 1); |
9922 | insertBits(tmp, fieldFromInstruction(insn, 22, 2), 2, 2); |
9923 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9924 | return S; |
9925 | case 286: |
9926 | tmp = 0x0; |
9927 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9928 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9929 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9930 | tmp = 0x0; |
9931 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9932 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9933 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9934 | tmp = 0x0; |
9935 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9936 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9937 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9938 | tmp = 0x0; |
9939 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9940 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9941 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9942 | tmp = fieldFromInstruction(insn, 20, 4); |
9943 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9944 | return S; |
9945 | case 287: |
9946 | tmp = 0x0; |
9947 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9948 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9949 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9950 | tmp = 0x0; |
9951 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9952 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9953 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9954 | tmp = 0x0; |
9955 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9956 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9957 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9958 | tmp = 0x0; |
9959 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9960 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9961 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9962 | tmp = fieldFromInstruction(insn, 24, 4); |
9963 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9964 | tmp = fieldFromInstruction(insn, 20, 4); |
9965 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9966 | return S; |
9967 | case 288: |
9968 | tmp = 0x0; |
9969 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9970 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9971 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9972 | tmp = 0x0; |
9973 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9974 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9975 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9976 | tmp = 0x0; |
9977 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9978 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9979 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9980 | tmp = 0x0; |
9981 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
9982 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
9983 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9984 | return S; |
9985 | case 289: |
9986 | tmp = 0x0; |
9987 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
9988 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
9989 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9990 | tmp = 0x0; |
9991 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
9992 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
9993 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9994 | tmp = 0x0; |
9995 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
9996 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
9997 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9998 | tmp = 0x0; |
9999 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
10000 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
10001 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10002 | return S; |
10003 | case 290: |
10004 | tmp = 0x0; |
10005 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10006 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10007 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10008 | tmp = 0x0; |
10009 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10010 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10011 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10012 | tmp = 0x0; |
10013 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10014 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10015 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10016 | tmp = 0x0; |
10017 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
10018 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
10019 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10020 | return S; |
10021 | case 291: |
10022 | tmp = 0x0; |
10023 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10024 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10025 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10026 | tmp = 0x0; |
10027 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10028 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10029 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10030 | tmp = 0x0; |
10031 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10032 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10033 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10034 | tmp = 0x0; |
10035 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
10036 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
10037 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10038 | tmp = fieldFromInstruction(insn, 16, 4); |
10039 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10040 | tmp = fieldFromInstruction(insn, 24, 4); |
10041 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10042 | return S; |
10043 | case 292: |
10044 | tmp = 0x0; |
10045 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10046 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10047 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10048 | tmp = 0x0; |
10049 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10050 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10051 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10052 | tmp = 0x0; |
10053 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10054 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10055 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10056 | tmp = 0x0; |
10057 | insertBits(tmp, fieldFromInstruction(insn, 8, 1), 4, 1); |
10058 | insertBits(tmp, fieldFromInstruction(insn, 12, 4), 0, 4); |
10059 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10060 | tmp = fieldFromInstruction(insn, 24, 4); |
10061 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10062 | return S; |
10063 | case 293: |
10064 | tmp = 0x0; |
10065 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10066 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10067 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10068 | tmp = 0x0; |
10069 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10070 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10071 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10072 | tmp = fieldFromInstruction(insn, 16, 3); |
10073 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10074 | tmp = fieldFromInstruction(insn, 20, 4); |
10075 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10076 | return S; |
10077 | case 294: |
10078 | tmp = 0x0; |
10079 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10080 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10081 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10082 | tmp = 0x0; |
10083 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10084 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10085 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10086 | tmp = fieldFromInstruction(insn, 16, 4); |
10087 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10088 | tmp = fieldFromInstruction(insn, 20, 4); |
10089 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10090 | return S; |
10091 | case 295: |
10092 | tmp = 0x0; |
10093 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10094 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10095 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10096 | tmp = 0x0; |
10097 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10098 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10099 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10100 | tmp = fieldFromInstruction(insn, 16, 3); |
10101 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10102 | tmp = fieldFromInstruction(insn, 20, 4); |
10103 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10104 | return S; |
10105 | case 296: |
10106 | tmp = 0x0; |
10107 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10108 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10109 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10110 | tmp = 0x0; |
10111 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10112 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10113 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10114 | tmp = fieldFromInstruction(insn, 12, 4); |
10115 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10116 | tmp = fieldFromInstruction(insn, 16, 4); |
10117 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10118 | tmp = fieldFromInstruction(insn, 20, 4); |
10119 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10120 | return S; |
10121 | case 297: |
10122 | tmp = 0x0; |
10123 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10124 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10125 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10126 | tmp = 0x0; |
10127 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10128 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10129 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10130 | return S; |
10131 | case 298: |
10132 | tmp = 0x0; |
10133 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10134 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10135 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10136 | tmp = 0x0; |
10137 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10138 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10139 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10140 | return S; |
10141 | case 299: |
10142 | tmp = 0x0; |
10143 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10144 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10145 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10146 | tmp = 0x0; |
10147 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10148 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10149 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10150 | tmp = fieldFromInstruction(insn, 16, 3); |
10151 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10152 | tmp = fieldFromInstruction(insn, 20, 4); |
10153 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10154 | return S; |
10155 | case 300: |
10156 | tmp = 0x0; |
10157 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10158 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10159 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10160 | tmp = 0x0; |
10161 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10162 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10163 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10164 | tmp = fieldFromInstruction(insn, 16, 3); |
10165 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10166 | tmp = fieldFromInstruction(insn, 20, 4); |
10167 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10168 | return S; |
10169 | case 301: |
10170 | tmp = 0x0; |
10171 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10172 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10173 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10174 | tmp = 0x0; |
10175 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10176 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10177 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10178 | tmp = fieldFromInstruction(insn, 16, 3); |
10179 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10180 | tmp = fieldFromInstruction(insn, 20, 4); |
10181 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10182 | return S; |
10183 | case 302: |
10184 | tmp = 0x0; |
10185 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10186 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10187 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10188 | tmp = 0x0; |
10189 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10190 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10191 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10192 | return S; |
10193 | case 303: |
10194 | tmp = 0x0; |
10195 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10196 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10197 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10198 | tmp = 0x0; |
10199 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10200 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10201 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10202 | return S; |
10203 | case 304: |
10204 | tmp = 0x0; |
10205 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10206 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10207 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10208 | tmp = 0x0; |
10209 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10210 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10211 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10212 | tmp = fieldFromInstruction(insn, 12, 4); |
10213 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10214 | tmp = fieldFromInstruction(insn, 16, 4); |
10215 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10216 | return S; |
10217 | case 305: |
10218 | tmp = 0x0; |
10219 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10220 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10221 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10222 | tmp = 0x0; |
10223 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10224 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10225 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10226 | tmp = fieldFromInstruction(insn, 20, 4); |
10227 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10228 | return S; |
10229 | case 306: |
10230 | tmp = 0x0; |
10231 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10232 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10233 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10234 | tmp = 0x0; |
10235 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10236 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10237 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10238 | tmp = fieldFromInstruction(insn, 20, 4); |
10239 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10240 | return S; |
10241 | case 307: |
10242 | tmp = 0x0; |
10243 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10244 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10245 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10246 | tmp = 0x0; |
10247 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10248 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10249 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10250 | tmp = 0x0; |
10251 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10252 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10253 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10254 | return S; |
10255 | case 308: |
10256 | tmp = 0x0; |
10257 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10258 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10259 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10260 | tmp = 0x0; |
10261 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10262 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10263 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10264 | tmp = 0x0; |
10265 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10266 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10267 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10268 | return S; |
10269 | case 309: |
10270 | tmp = 0x0; |
10271 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10272 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10273 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10274 | tmp = 0x0; |
10275 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10276 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10277 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10278 | tmp = 0x0; |
10279 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10280 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10281 | if (!Check(S, DecodeVR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10282 | tmp = fieldFromInstruction(insn, 12, 4); |
10283 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10284 | tmp = fieldFromInstruction(insn, 16, 4); |
10285 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10286 | tmp = fieldFromInstruction(insn, 20, 4); |
10287 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10288 | return S; |
10289 | case 310: |
10290 | tmp = 0x0; |
10291 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10292 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10293 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10294 | tmp = 0x0; |
10295 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10296 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10297 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10298 | tmp = 0x0; |
10299 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10300 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10301 | if (!Check(S, DecodeVR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10302 | tmp = fieldFromInstruction(insn, 20, 4); |
10303 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10304 | return S; |
10305 | case 311: |
10306 | tmp = 0x0; |
10307 | insertBits(tmp, fieldFromInstruction(insn, 11, 1), 4, 1); |
10308 | insertBits(tmp, fieldFromInstruction(insn, 36, 4), 0, 4); |
10309 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10310 | tmp = 0x0; |
10311 | insertBits(tmp, fieldFromInstruction(insn, 10, 1), 4, 1); |
10312 | insertBits(tmp, fieldFromInstruction(insn, 32, 4), 0, 4); |
10313 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10314 | tmp = 0x0; |
10315 | insertBits(tmp, fieldFromInstruction(insn, 9, 1), 4, 1); |
10316 | insertBits(tmp, fieldFromInstruction(insn, 28, 4), 0, 4); |
10317 | if (!Check(S, DecodeVR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10318 | tmp = fieldFromInstruction(insn, 20, 4); |
10319 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10320 | return S; |
10321 | case 312: |
10322 | tmp = fieldFromInstruction(insn, 36, 4); |
10323 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10324 | tmp = fieldFromInstruction(insn, 32, 4); |
10325 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10326 | tmp = fieldFromInstruction(insn, 28, 4); |
10327 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10328 | tmp = 0x0; |
10329 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10330 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10331 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10332 | return S; |
10333 | case 313: |
10334 | tmp = fieldFromInstruction(insn, 36, 4); |
10335 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10336 | tmp = fieldFromInstruction(insn, 32, 4); |
10337 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10338 | tmp = fieldFromInstruction(insn, 28, 4); |
10339 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10340 | tmp = 0x0; |
10341 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10342 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10343 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10344 | return S; |
10345 | case 314: |
10346 | tmp = fieldFromInstruction(insn, 36, 4); |
10347 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10348 | tmp = fieldFromInstruction(insn, 36, 4); |
10349 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10350 | tmp = fieldFromInstruction(insn, 32, 4); |
10351 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10352 | tmp = fieldFromInstruction(insn, 28, 4); |
10353 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10354 | tmp = 0x0; |
10355 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10356 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10357 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10358 | return S; |
10359 | case 315: |
10360 | tmp = fieldFromInstruction(insn, 36, 4); |
10361 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10362 | tmp = fieldFromInstruction(insn, 32, 4); |
10363 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10364 | tmp = fieldFromInstruction(insn, 28, 4); |
10365 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10366 | tmp = 0x0; |
10367 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10368 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10369 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10370 | return S; |
10371 | case 316: |
10372 | tmp = fieldFromInstruction(insn, 36, 4); |
10373 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10374 | tmp = fieldFromInstruction(insn, 32, 4); |
10375 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10376 | tmp = fieldFromInstruction(insn, 28, 4); |
10377 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10378 | tmp = 0x0; |
10379 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10380 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10381 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10382 | return S; |
10383 | case 317: |
10384 | tmp = fieldFromInstruction(insn, 36, 4); |
10385 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10386 | tmp = fieldFromInstruction(insn, 32, 4); |
10387 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10388 | tmp = fieldFromInstruction(insn, 28, 4); |
10389 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10390 | tmp = 0x0; |
10391 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10392 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10393 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10394 | return S; |
10395 | case 318: |
10396 | tmp = fieldFromInstruction(insn, 36, 4); |
10397 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10398 | tmp = fieldFromInstruction(insn, 28, 4); |
10399 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10400 | tmp = 0x0; |
10401 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10402 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10403 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10404 | return S; |
10405 | case 319: |
10406 | tmp = fieldFromInstruction(insn, 36, 4); |
10407 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10408 | tmp = fieldFromInstruction(insn, 28, 4); |
10409 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10410 | tmp = 0x0; |
10411 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10412 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10413 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10414 | tmp = fieldFromInstruction(insn, 32, 4); |
10415 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10416 | return S; |
10417 | case 320: |
10418 | tmp = fieldFromInstruction(insn, 36, 4); |
10419 | if (!Check(S, DecodeCR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10420 | tmp = fieldFromInstruction(insn, 32, 4); |
10421 | if (!Check(S, DecodeCR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10422 | tmp = fieldFromInstruction(insn, 28, 4); |
10423 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10424 | tmp = 0x0; |
10425 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10426 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10427 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10428 | return S; |
10429 | case 321: |
10430 | tmp = fieldFromInstruction(insn, 36, 4); |
10431 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10432 | tmp = fieldFromInstruction(insn, 32, 4); |
10433 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10434 | tmp = fieldFromInstruction(insn, 28, 4); |
10435 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10436 | tmp = 0x0; |
10437 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10438 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10439 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10440 | return S; |
10441 | case 322: |
10442 | tmp = fieldFromInstruction(insn, 36, 4); |
10443 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10444 | tmp = fieldFromInstruction(insn, 28, 4); |
10445 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10446 | tmp = 0x0; |
10447 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10448 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10449 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10450 | return S; |
10451 | case 323: |
10452 | tmp = fieldFromInstruction(insn, 36, 4); |
10453 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10454 | tmp = fieldFromInstruction(insn, 28, 4); |
10455 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10456 | tmp = 0x0; |
10457 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10458 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10459 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10460 | tmp = fieldFromInstruction(insn, 32, 4); |
10461 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10462 | return S; |
10463 | case 324: |
10464 | tmp = fieldFromInstruction(insn, 36, 4); |
10465 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10466 | tmp = fieldFromInstruction(insn, 36, 4); |
10467 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10468 | tmp = fieldFromInstruction(insn, 32, 4); |
10469 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10470 | tmp = fieldFromInstruction(insn, 28, 4); |
10471 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10472 | tmp = 0x0; |
10473 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10474 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10475 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10476 | return S; |
10477 | case 325: |
10478 | tmp = fieldFromInstruction(insn, 36, 4); |
10479 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10480 | tmp = fieldFromInstruction(insn, 36, 4); |
10481 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10482 | tmp = fieldFromInstruction(insn, 32, 4); |
10483 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10484 | tmp = fieldFromInstruction(insn, 28, 4); |
10485 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10486 | tmp = 0x0; |
10487 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10488 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10489 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10490 | return S; |
10491 | case 326: |
10492 | tmp = fieldFromInstruction(insn, 28, 4); |
10493 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10494 | tmp = 0x0; |
10495 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10496 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10497 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10498 | tmp = fieldFromInstruction(insn, 32, 8); |
10499 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10500 | return S; |
10501 | case 327: |
10502 | tmp = fieldFromInstruction(insn, 28, 4); |
10503 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10504 | tmp = 0x0; |
10505 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10506 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10507 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10508 | tmp = fieldFromInstruction(insn, 32, 8); |
10509 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10510 | return S; |
10511 | case 328: |
10512 | tmp = fieldFromInstruction(insn, 28, 4); |
10513 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10514 | tmp = 0x0; |
10515 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10516 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10517 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10518 | return S; |
10519 | case 329: |
10520 | tmp = fieldFromInstruction(insn, 36, 4); |
10521 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10522 | tmp = fieldFromInstruction(insn, 36, 4); |
10523 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10524 | tmp = fieldFromInstruction(insn, 32, 4); |
10525 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10526 | tmp = fieldFromInstruction(insn, 28, 4); |
10527 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10528 | tmp = 0x0; |
10529 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10530 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10531 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10532 | return S; |
10533 | case 330: |
10534 | tmp = fieldFromInstruction(insn, 36, 4); |
10535 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10536 | tmp = fieldFromInstruction(insn, 36, 4); |
10537 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10538 | tmp = fieldFromInstruction(insn, 32, 4); |
10539 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10540 | tmp = fieldFromInstruction(insn, 28, 4); |
10541 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10542 | tmp = 0x0; |
10543 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10544 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10545 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10546 | return S; |
10547 | case 331: |
10548 | tmp = fieldFromInstruction(insn, 36, 4); |
10549 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10550 | tmp = fieldFromInstruction(insn, 32, 4); |
10551 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10552 | tmp = fieldFromInstruction(insn, 36, 4); |
10553 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10554 | tmp = fieldFromInstruction(insn, 32, 4); |
10555 | if (!Check(S, DecodeGR128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10556 | tmp = fieldFromInstruction(insn, 28, 4); |
10557 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10558 | tmp = 0x0; |
10559 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10560 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10561 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10562 | return S; |
10563 | case 332: |
10564 | tmp = fieldFromInstruction(insn, 36, 4); |
10565 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10566 | tmp = fieldFromInstruction(insn, 32, 4); |
10567 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10568 | tmp = fieldFromInstruction(insn, 28, 4); |
10569 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10570 | tmp = 0x0; |
10571 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10572 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10573 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10574 | return S; |
10575 | case 333: |
10576 | tmp = fieldFromInstruction(insn, 36, 4); |
10577 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10578 | tmp = fieldFromInstruction(insn, 32, 4); |
10579 | if (!Check(S, DecodeAR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10580 | tmp = fieldFromInstruction(insn, 28, 4); |
10581 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10582 | tmp = 0x0; |
10583 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10584 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10585 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10586 | return S; |
10587 | case 334: |
10588 | tmp = fieldFromInstruction(insn, 28, 4); |
10589 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10590 | tmp = fieldFromInstruction(insn, 16, 12); |
10591 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10592 | tmp = fieldFromInstruction(insn, 36, 4); |
10593 | if (!Check(S, decodeLenOperand<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10594 | return S; |
10595 | case 335: |
10596 | tmp = fieldFromInstruction(insn, 36, 4); |
10597 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10598 | tmp = fieldFromInstruction(insn, 36, 4); |
10599 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10600 | tmp = fieldFromInstruction(insn, 28, 4); |
10601 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10602 | tmp = 0x0; |
10603 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10604 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10605 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10606 | return S; |
10607 | case 336: |
10608 | tmp = fieldFromInstruction(insn, 36, 4); |
10609 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10610 | tmp = fieldFromInstruction(insn, 36, 4); |
10611 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10612 | tmp = fieldFromInstruction(insn, 28, 4); |
10613 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10614 | tmp = 0x0; |
10615 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10616 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10617 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10618 | tmp = fieldFromInstruction(insn, 32, 4); |
10619 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10620 | return S; |
10621 | case 337: |
10622 | tmp = fieldFromInstruction(insn, 36, 4); |
10623 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10624 | tmp = fieldFromInstruction(insn, 28, 4); |
10625 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10626 | tmp = 0x0; |
10627 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10628 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10629 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10630 | return S; |
10631 | case 338: |
10632 | tmp = fieldFromInstruction(insn, 36, 4); |
10633 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10634 | tmp = fieldFromInstruction(insn, 28, 4); |
10635 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10636 | tmp = 0x0; |
10637 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10638 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10639 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10640 | tmp = fieldFromInstruction(insn, 32, 4); |
10641 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10642 | return S; |
10643 | case 339: |
10644 | tmp = fieldFromInstruction(insn, 36, 4); |
10645 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10646 | tmp = fieldFromInstruction(insn, 36, 4); |
10647 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10648 | tmp = fieldFromInstruction(insn, 28, 4); |
10649 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10650 | tmp = 0x0; |
10651 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10652 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10653 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10654 | return S; |
10655 | case 340: |
10656 | tmp = fieldFromInstruction(insn, 36, 4); |
10657 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10658 | tmp = fieldFromInstruction(insn, 36, 4); |
10659 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10660 | tmp = fieldFromInstruction(insn, 28, 4); |
10661 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10662 | tmp = 0x0; |
10663 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10664 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10665 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10666 | tmp = fieldFromInstruction(insn, 32, 4); |
10667 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10668 | return S; |
10669 | case 341: |
10670 | tmp = fieldFromInstruction(insn, 36, 4); |
10671 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10672 | tmp = fieldFromInstruction(insn, 36, 4); |
10673 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10674 | tmp = fieldFromInstruction(insn, 28, 4); |
10675 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10676 | tmp = 0x0; |
10677 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10678 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10679 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10680 | return S; |
10681 | case 342: |
10682 | tmp = fieldFromInstruction(insn, 36, 4); |
10683 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10684 | tmp = fieldFromInstruction(insn, 36, 4); |
10685 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10686 | tmp = fieldFromInstruction(insn, 28, 4); |
10687 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10688 | tmp = 0x0; |
10689 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
10690 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
10691 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10692 | tmp = fieldFromInstruction(insn, 32, 4); |
10693 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10694 | return S; |
10695 | case 343: |
10696 | tmp = fieldFromInstruction(insn, 36, 4); |
10697 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10698 | tmp = fieldFromInstruction(insn, 36, 4); |
10699 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10700 | tmp = fieldFromInstruction(insn, 16, 16); |
10701 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10702 | return S; |
10703 | case 344: |
10704 | tmp = fieldFromInstruction(insn, 36, 4); |
10705 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10706 | tmp = fieldFromInstruction(insn, 36, 4); |
10707 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10708 | tmp = fieldFromInstruction(insn, 16, 16); |
10709 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10710 | tmp = fieldFromInstruction(insn, 32, 4); |
10711 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10712 | return S; |
10713 | case 345: |
10714 | tmp = fieldFromInstruction(insn, 36, 4); |
10715 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10716 | tmp = fieldFromInstruction(insn, 36, 4); |
10717 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10718 | tmp = fieldFromInstruction(insn, 32, 4); |
10719 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10720 | tmp = fieldFromInstruction(insn, 16, 16); |
10721 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10722 | return S; |
10723 | case 346: |
10724 | tmp = fieldFromInstruction(insn, 36, 4); |
10725 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10726 | tmp = fieldFromInstruction(insn, 36, 4); |
10727 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10728 | tmp = fieldFromInstruction(insn, 16, 16); |
10729 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10730 | return S; |
10731 | case 347: |
10732 | tmp = fieldFromInstruction(insn, 36, 4); |
10733 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10734 | tmp = fieldFromInstruction(insn, 36, 4); |
10735 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10736 | tmp = fieldFromInstruction(insn, 16, 16); |
10737 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10738 | tmp = fieldFromInstruction(insn, 32, 4); |
10739 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10740 | return S; |
10741 | case 348: |
10742 | tmp = fieldFromInstruction(insn, 36, 4); |
10743 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10744 | tmp = fieldFromInstruction(insn, 36, 4); |
10745 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10746 | tmp = fieldFromInstruction(insn, 16, 16); |
10747 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10748 | return S; |
10749 | case 349: |
10750 | tmp = fieldFromInstruction(insn, 36, 4); |
10751 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10752 | tmp = fieldFromInstruction(insn, 36, 4); |
10753 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10754 | tmp = fieldFromInstruction(insn, 16, 16); |
10755 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10756 | tmp = fieldFromInstruction(insn, 32, 4); |
10757 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10758 | return S; |
10759 | case 350: |
10760 | tmp = fieldFromInstruction(insn, 36, 4); |
10761 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10762 | tmp = fieldFromInstruction(insn, 36, 4); |
10763 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10764 | tmp = fieldFromInstruction(insn, 32, 4); |
10765 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10766 | tmp = fieldFromInstruction(insn, 24, 8); |
10767 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10768 | tmp = fieldFromInstruction(insn, 16, 8); |
10769 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10770 | tmp = fieldFromInstruction(insn, 8, 8); |
10771 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10772 | return S; |
10773 | case 351: |
10774 | tmp = fieldFromInstruction(insn, 36, 4); |
10775 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10776 | tmp = fieldFromInstruction(insn, 36, 4); |
10777 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10778 | tmp = fieldFromInstruction(insn, 32, 4); |
10779 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10780 | tmp = fieldFromInstruction(insn, 24, 8); |
10781 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10782 | tmp = fieldFromInstruction(insn, 16, 8); |
10783 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10784 | tmp = fieldFromInstruction(insn, 8, 8); |
10785 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10786 | return S; |
10787 | case 352: |
10788 | tmp = fieldFromInstruction(insn, 36, 4); |
10789 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10790 | tmp = fieldFromInstruction(insn, 36, 4); |
10791 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10792 | tmp = fieldFromInstruction(insn, 32, 4); |
10793 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10794 | tmp = fieldFromInstruction(insn, 24, 8); |
10795 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10796 | tmp = fieldFromInstruction(insn, 16, 7); |
10797 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10798 | tmp = fieldFromInstruction(insn, 8, 8); |
10799 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10800 | return S; |
10801 | case 353: |
10802 | tmp = fieldFromInstruction(insn, 36, 4); |
10803 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10804 | tmp = fieldFromInstruction(insn, 36, 4); |
10805 | if (!Check(S, DecodeGRH32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10806 | tmp = fieldFromInstruction(insn, 32, 4); |
10807 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10808 | tmp = fieldFromInstruction(insn, 24, 8); |
10809 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10810 | tmp = fieldFromInstruction(insn, 16, 8); |
10811 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10812 | tmp = fieldFromInstruction(insn, 8, 8); |
10813 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10814 | return S; |
10815 | case 354: |
10816 | tmp = fieldFromInstruction(insn, 36, 4); |
10817 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10818 | tmp = fieldFromInstruction(insn, 32, 4); |
10819 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10820 | tmp = fieldFromInstruction(insn, 16, 16); |
10821 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10822 | return S; |
10823 | case 355: |
10824 | tmp = fieldFromInstruction(insn, 36, 4); |
10825 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10826 | tmp = fieldFromInstruction(insn, 32, 4); |
10827 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10828 | tmp = fieldFromInstruction(insn, 12, 4); |
10829 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10830 | tmp = fieldFromInstruction(insn, 16, 16); |
10831 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10832 | return S; |
10833 | case 356: |
10834 | tmp = fieldFromInstruction(insn, 36, 4); |
10835 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10836 | tmp = fieldFromInstruction(insn, 16, 16); |
10837 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10838 | return S; |
10839 | case 357: |
10840 | tmp = fieldFromInstruction(insn, 36, 4); |
10841 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10842 | tmp = fieldFromInstruction(insn, 16, 16); |
10843 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10844 | tmp = fieldFromInstruction(insn, 12, 4); |
10845 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10846 | return S; |
10847 | case 358: |
10848 | tmp = fieldFromInstruction(insn, 36, 4); |
10849 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10850 | tmp = fieldFromInstruction(insn, 16, 16); |
10851 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10852 | return S; |
10853 | case 359: |
10854 | tmp = fieldFromInstruction(insn, 36, 4); |
10855 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10856 | tmp = fieldFromInstruction(insn, 16, 16); |
10857 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10858 | tmp = fieldFromInstruction(insn, 12, 4); |
10859 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10860 | return S; |
10861 | case 360: |
10862 | tmp = fieldFromInstruction(insn, 36, 4); |
10863 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10864 | tmp = fieldFromInstruction(insn, 16, 16); |
10865 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10866 | return S; |
10867 | case 361: |
10868 | tmp = fieldFromInstruction(insn, 36, 4); |
10869 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10870 | tmp = fieldFromInstruction(insn, 16, 16); |
10871 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10872 | tmp = fieldFromInstruction(insn, 12, 4); |
10873 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10874 | return S; |
10875 | case 362: |
10876 | tmp = fieldFromInstruction(insn, 36, 4); |
10877 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10878 | tmp = fieldFromInstruction(insn, 16, 16); |
10879 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10880 | return S; |
10881 | case 363: |
10882 | tmp = fieldFromInstruction(insn, 36, 4); |
10883 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10884 | tmp = fieldFromInstruction(insn, 16, 16); |
10885 | if (!Check(S, decodeU16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10886 | tmp = fieldFromInstruction(insn, 12, 4); |
10887 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10888 | return S; |
10889 | case 364: |
10890 | tmp = fieldFromInstruction(insn, 36, 4); |
10891 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10892 | tmp = fieldFromInstruction(insn, 32, 4); |
10893 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10894 | tmp = fieldFromInstruction(insn, 16, 16); |
10895 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10896 | return S; |
10897 | case 365: |
10898 | tmp = fieldFromInstruction(insn, 36, 4); |
10899 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10900 | tmp = fieldFromInstruction(insn, 32, 4); |
10901 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10902 | tmp = fieldFromInstruction(insn, 12, 4); |
10903 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10904 | tmp = fieldFromInstruction(insn, 16, 16); |
10905 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10906 | return S; |
10907 | case 366: |
10908 | tmp = fieldFromInstruction(insn, 36, 4); |
10909 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10910 | tmp = fieldFromInstruction(insn, 8, 8); |
10911 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10912 | tmp = fieldFromInstruction(insn, 16, 16); |
10913 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10914 | return S; |
10915 | case 367: |
10916 | tmp = fieldFromInstruction(insn, 36, 4); |
10917 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10918 | tmp = fieldFromInstruction(insn, 8, 8); |
10919 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10920 | tmp = fieldFromInstruction(insn, 32, 4); |
10921 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10922 | tmp = fieldFromInstruction(insn, 16, 16); |
10923 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10924 | return S; |
10925 | case 368: |
10926 | tmp = fieldFromInstruction(insn, 36, 4); |
10927 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10928 | tmp = fieldFromInstruction(insn, 8, 8); |
10929 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10930 | tmp = fieldFromInstruction(insn, 16, 16); |
10931 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10932 | return S; |
10933 | case 369: |
10934 | tmp = fieldFromInstruction(insn, 36, 4); |
10935 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10936 | tmp = fieldFromInstruction(insn, 8, 8); |
10937 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10938 | tmp = fieldFromInstruction(insn, 32, 4); |
10939 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10940 | tmp = fieldFromInstruction(insn, 16, 16); |
10941 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10942 | return S; |
10943 | case 370: |
10944 | tmp = fieldFromInstruction(insn, 36, 4); |
10945 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10946 | tmp = fieldFromInstruction(insn, 8, 8); |
10947 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10948 | tmp = fieldFromInstruction(insn, 16, 16); |
10949 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10950 | return S; |
10951 | case 371: |
10952 | tmp = fieldFromInstruction(insn, 36, 4); |
10953 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10954 | tmp = fieldFromInstruction(insn, 8, 8); |
10955 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10956 | tmp = fieldFromInstruction(insn, 32, 4); |
10957 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10958 | tmp = fieldFromInstruction(insn, 16, 16); |
10959 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10960 | return S; |
10961 | case 372: |
10962 | tmp = fieldFromInstruction(insn, 36, 4); |
10963 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10964 | tmp = fieldFromInstruction(insn, 8, 8); |
10965 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10966 | tmp = fieldFromInstruction(insn, 16, 16); |
10967 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10968 | return S; |
10969 | case 373: |
10970 | tmp = fieldFromInstruction(insn, 36, 4); |
10971 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10972 | tmp = fieldFromInstruction(insn, 8, 8); |
10973 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10974 | tmp = fieldFromInstruction(insn, 32, 4); |
10975 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10976 | tmp = fieldFromInstruction(insn, 16, 16); |
10977 | if (!Check(S, decodePC16DBLBranchOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10978 | return S; |
10979 | case 374: |
10980 | tmp = fieldFromInstruction(insn, 36, 4); |
10981 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10982 | tmp = fieldFromInstruction(insn, 32, 4); |
10983 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10984 | tmp = fieldFromInstruction(insn, 16, 16); |
10985 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10986 | return S; |
10987 | case 375: |
10988 | tmp = fieldFromInstruction(insn, 36, 4); |
10989 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10990 | tmp = fieldFromInstruction(insn, 32, 4); |
10991 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10992 | tmp = fieldFromInstruction(insn, 16, 16); |
10993 | if (!Check(S, decodeS16ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10994 | return S; |
10995 | case 376: |
10996 | tmp = fieldFromInstruction(insn, 36, 4); |
10997 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10998 | tmp = fieldFromInstruction(insn, 32, 4); |
10999 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11000 | tmp = fieldFromInstruction(insn, 28, 4); |
11001 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11002 | tmp = fieldFromInstruction(insn, 16, 12); |
11003 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11004 | return S; |
11005 | case 377: |
11006 | tmp = fieldFromInstruction(insn, 36, 4); |
11007 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11008 | tmp = fieldFromInstruction(insn, 32, 4); |
11009 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11010 | tmp = fieldFromInstruction(insn, 12, 4); |
11011 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11012 | tmp = fieldFromInstruction(insn, 28, 4); |
11013 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11014 | tmp = fieldFromInstruction(insn, 16, 12); |
11015 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11016 | return S; |
11017 | case 378: |
11018 | tmp = fieldFromInstruction(insn, 36, 4); |
11019 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11020 | tmp = fieldFromInstruction(insn, 32, 4); |
11021 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11022 | tmp = fieldFromInstruction(insn, 28, 4); |
11023 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11024 | tmp = fieldFromInstruction(insn, 16, 12); |
11025 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11026 | return S; |
11027 | case 379: |
11028 | tmp = fieldFromInstruction(insn, 36, 4); |
11029 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11030 | tmp = fieldFromInstruction(insn, 32, 4); |
11031 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11032 | tmp = fieldFromInstruction(insn, 12, 4); |
11033 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11034 | tmp = fieldFromInstruction(insn, 28, 4); |
11035 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11036 | tmp = fieldFromInstruction(insn, 16, 12); |
11037 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11038 | return S; |
11039 | case 380: |
11040 | tmp = fieldFromInstruction(insn, 36, 4); |
11041 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11042 | tmp = fieldFromInstruction(insn, 8, 8); |
11043 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11044 | tmp = fieldFromInstruction(insn, 28, 4); |
11045 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11046 | tmp = fieldFromInstruction(insn, 16, 12); |
11047 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11048 | return S; |
11049 | case 381: |
11050 | tmp = fieldFromInstruction(insn, 36, 4); |
11051 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11052 | tmp = fieldFromInstruction(insn, 8, 8); |
11053 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11054 | tmp = fieldFromInstruction(insn, 32, 4); |
11055 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11056 | tmp = fieldFromInstruction(insn, 28, 4); |
11057 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11058 | tmp = fieldFromInstruction(insn, 16, 12); |
11059 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11060 | return S; |
11061 | case 382: |
11062 | tmp = fieldFromInstruction(insn, 36, 4); |
11063 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11064 | tmp = fieldFromInstruction(insn, 8, 8); |
11065 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11066 | tmp = fieldFromInstruction(insn, 28, 4); |
11067 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11068 | tmp = fieldFromInstruction(insn, 16, 12); |
11069 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11070 | return S; |
11071 | case 383: |
11072 | tmp = fieldFromInstruction(insn, 36, 4); |
11073 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11074 | tmp = fieldFromInstruction(insn, 8, 8); |
11075 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11076 | tmp = fieldFromInstruction(insn, 32, 4); |
11077 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11078 | tmp = fieldFromInstruction(insn, 28, 4); |
11079 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11080 | tmp = fieldFromInstruction(insn, 16, 12); |
11081 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11082 | return S; |
11083 | case 384: |
11084 | tmp = fieldFromInstruction(insn, 36, 4); |
11085 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11086 | tmp = fieldFromInstruction(insn, 8, 8); |
11087 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11088 | tmp = fieldFromInstruction(insn, 28, 4); |
11089 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11090 | tmp = fieldFromInstruction(insn, 16, 12); |
11091 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11092 | return S; |
11093 | case 385: |
11094 | tmp = fieldFromInstruction(insn, 36, 4); |
11095 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11096 | tmp = fieldFromInstruction(insn, 8, 8); |
11097 | if (!Check(S, decodeS8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11098 | tmp = fieldFromInstruction(insn, 32, 4); |
11099 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11100 | tmp = fieldFromInstruction(insn, 28, 4); |
11101 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11102 | tmp = fieldFromInstruction(insn, 16, 12); |
11103 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11104 | return S; |
11105 | case 386: |
11106 | tmp = fieldFromInstruction(insn, 36, 4); |
11107 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11108 | tmp = fieldFromInstruction(insn, 8, 8); |
11109 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11110 | tmp = fieldFromInstruction(insn, 28, 4); |
11111 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11112 | tmp = fieldFromInstruction(insn, 16, 12); |
11113 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11114 | return S; |
11115 | case 387: |
11116 | tmp = fieldFromInstruction(insn, 36, 4); |
11117 | if (!Check(S, DecodeGR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11118 | tmp = fieldFromInstruction(insn, 8, 8); |
11119 | if (!Check(S, decodeU8ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11120 | tmp = fieldFromInstruction(insn, 32, 4); |
11121 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11122 | tmp = fieldFromInstruction(insn, 28, 4); |
11123 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11124 | tmp = fieldFromInstruction(insn, 16, 12); |
11125 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11126 | return S; |
11127 | case 388: |
11128 | tmp = fieldFromInstruction(insn, 36, 4); |
11129 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11130 | tmp = fieldFromInstruction(insn, 28, 4); |
11131 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11132 | tmp = fieldFromInstruction(insn, 16, 12); |
11133 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11134 | tmp = fieldFromInstruction(insn, 32, 4); |
11135 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11136 | return S; |
11137 | case 389: |
11138 | tmp = fieldFromInstruction(insn, 36, 4); |
11139 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11140 | tmp = fieldFromInstruction(insn, 28, 4); |
11141 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11142 | tmp = fieldFromInstruction(insn, 16, 12); |
11143 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11144 | tmp = fieldFromInstruction(insn, 32, 4); |
11145 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11146 | return S; |
11147 | case 390: |
11148 | tmp = fieldFromInstruction(insn, 36, 4); |
11149 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11150 | tmp = fieldFromInstruction(insn, 36, 4); |
11151 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11152 | tmp = fieldFromInstruction(insn, 28, 4); |
11153 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11154 | tmp = fieldFromInstruction(insn, 16, 12); |
11155 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11156 | tmp = fieldFromInstruction(insn, 32, 4); |
11157 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11158 | return S; |
11159 | case 391: |
11160 | tmp = fieldFromInstruction(insn, 36, 4); |
11161 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11162 | tmp = fieldFromInstruction(insn, 28, 4); |
11163 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11164 | tmp = fieldFromInstruction(insn, 16, 12); |
11165 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11166 | tmp = fieldFromInstruction(insn, 32, 4); |
11167 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11168 | return S; |
11169 | case 392: |
11170 | tmp = fieldFromInstruction(insn, 36, 4); |
11171 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11172 | tmp = fieldFromInstruction(insn, 36, 4); |
11173 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11174 | tmp = fieldFromInstruction(insn, 28, 4); |
11175 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11176 | tmp = fieldFromInstruction(insn, 16, 12); |
11177 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11178 | tmp = fieldFromInstruction(insn, 32, 4); |
11179 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11180 | return S; |
11181 | case 393: |
11182 | tmp = fieldFromInstruction(insn, 36, 4); |
11183 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11184 | tmp = fieldFromInstruction(insn, 36, 4); |
11185 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11186 | tmp = fieldFromInstruction(insn, 28, 4); |
11187 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11188 | tmp = fieldFromInstruction(insn, 16, 12); |
11189 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11190 | tmp = fieldFromInstruction(insn, 32, 4); |
11191 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11192 | return S; |
11193 | case 394: |
11194 | tmp = fieldFromInstruction(insn, 12, 4); |
11195 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11196 | tmp = fieldFromInstruction(insn, 12, 4); |
11197 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11198 | tmp = fieldFromInstruction(insn, 36, 4); |
11199 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11200 | tmp = fieldFromInstruction(insn, 28, 4); |
11201 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11202 | tmp = fieldFromInstruction(insn, 16, 12); |
11203 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11204 | tmp = fieldFromInstruction(insn, 32, 4); |
11205 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11206 | return S; |
11207 | case 395: |
11208 | tmp = fieldFromInstruction(insn, 12, 4); |
11209 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11210 | tmp = fieldFromInstruction(insn, 12, 4); |
11211 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11212 | tmp = fieldFromInstruction(insn, 36, 4); |
11213 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11214 | tmp = fieldFromInstruction(insn, 28, 4); |
11215 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11216 | tmp = fieldFromInstruction(insn, 16, 12); |
11217 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11218 | tmp = fieldFromInstruction(insn, 32, 4); |
11219 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11220 | return S; |
11221 | case 396: |
11222 | tmp = fieldFromInstruction(insn, 12, 4); |
11223 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11224 | tmp = fieldFromInstruction(insn, 36, 4); |
11225 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11226 | tmp = fieldFromInstruction(insn, 28, 4); |
11227 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11228 | tmp = fieldFromInstruction(insn, 16, 12); |
11229 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11230 | tmp = fieldFromInstruction(insn, 32, 4); |
11231 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11232 | return S; |
11233 | case 397: |
11234 | tmp = fieldFromInstruction(insn, 12, 4); |
11235 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11236 | tmp = fieldFromInstruction(insn, 36, 4); |
11237 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11238 | tmp = fieldFromInstruction(insn, 28, 4); |
11239 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11240 | tmp = fieldFromInstruction(insn, 16, 12); |
11241 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11242 | tmp = fieldFromInstruction(insn, 32, 4); |
11243 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11244 | return S; |
11245 | case 398: |
11246 | tmp = fieldFromInstruction(insn, 12, 4); |
11247 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11248 | tmp = fieldFromInstruction(insn, 36, 4); |
11249 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11250 | tmp = fieldFromInstruction(insn, 28, 4); |
11251 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11252 | tmp = fieldFromInstruction(insn, 16, 12); |
11253 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11254 | tmp = fieldFromInstruction(insn, 32, 4); |
11255 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11256 | return S; |
11257 | case 399: |
11258 | tmp = fieldFromInstruction(insn, 36, 4); |
11259 | if (!Check(S, DecodeFP32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11260 | tmp = fieldFromInstruction(insn, 28, 4); |
11261 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11262 | tmp = 0x0; |
11263 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
11264 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
11265 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11266 | tmp = fieldFromInstruction(insn, 32, 4); |
11267 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11268 | return S; |
11269 | case 400: |
11270 | tmp = fieldFromInstruction(insn, 36, 4); |
11271 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11272 | tmp = fieldFromInstruction(insn, 28, 4); |
11273 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11274 | tmp = 0x0; |
11275 | insertBits(tmp, fieldFromInstruction(insn, 8, 8), 12, 8); |
11276 | insertBits(tmp, fieldFromInstruction(insn, 16, 12), 0, 12); |
11277 | if (!Check(S, decodeS20ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11278 | tmp = fieldFromInstruction(insn, 32, 4); |
11279 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11280 | return S; |
11281 | case 401: |
11282 | tmp = fieldFromInstruction(insn, 12, 4); |
11283 | if (!Check(S, DecodeFP64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11284 | tmp = fieldFromInstruction(insn, 28, 4); |
11285 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11286 | tmp = fieldFromInstruction(insn, 16, 12); |
11287 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11288 | tmp = fieldFromInstruction(insn, 32, 8); |
11289 | if (!Check(S, decodeLenOperand<8>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11290 | tmp = fieldFromInstruction(insn, 8, 4); |
11291 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11292 | return S; |
11293 | case 402: |
11294 | tmp = fieldFromInstruction(insn, 12, 4); |
11295 | if (!Check(S, DecodeFP128BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11296 | tmp = fieldFromInstruction(insn, 28, 4); |
11297 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11298 | tmp = fieldFromInstruction(insn, 16, 12); |
11299 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11300 | tmp = fieldFromInstruction(insn, 32, 8); |
11301 | if (!Check(S, decodeLenOperand<8>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11302 | tmp = fieldFromInstruction(insn, 8, 4); |
11303 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11304 | return S; |
11305 | case 403: |
11306 | tmp = fieldFromInstruction(insn, 36, 4); |
11307 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11308 | tmp = fieldFromInstruction(insn, 28, 4); |
11309 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11310 | tmp = fieldFromInstruction(insn, 16, 12); |
11311 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11312 | tmp = fieldFromInstruction(insn, 32, 4); |
11313 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11314 | tmp = fieldFromInstruction(insn, 12, 4); |
11315 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11316 | tmp = fieldFromInstruction(insn, 0, 12); |
11317 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11318 | return S; |
11319 | case 404: |
11320 | tmp = fieldFromInstruction(insn, 36, 4); |
11321 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11322 | tmp = fieldFromInstruction(insn, 32, 4); |
11323 | if (!Check(S, DecodeGR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11324 | tmp = fieldFromInstruction(insn, 28, 4); |
11325 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11326 | tmp = fieldFromInstruction(insn, 16, 12); |
11327 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11328 | tmp = fieldFromInstruction(insn, 12, 4); |
11329 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11330 | tmp = fieldFromInstruction(insn, 0, 12); |
11331 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11332 | return S; |
11333 | case 405: |
11334 | tmp = fieldFromInstruction(insn, 28, 4); |
11335 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11336 | tmp = fieldFromInstruction(insn, 16, 12); |
11337 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11338 | tmp = fieldFromInstruction(insn, 36, 4); |
11339 | if (!Check(S, decodeLenOperand<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11340 | tmp = fieldFromInstruction(insn, 12, 4); |
11341 | if (!Check(S, DecodeADDR32BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11342 | tmp = fieldFromInstruction(insn, 0, 12); |
11343 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11344 | tmp = fieldFromInstruction(insn, 32, 4); |
11345 | if (!Check(S, decodeU4ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11346 | return S; |
11347 | case 406: |
11348 | tmp = fieldFromInstruction(insn, 28, 4); |
11349 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11350 | tmp = fieldFromInstruction(insn, 16, 12); |
11351 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11352 | tmp = fieldFromInstruction(insn, 36, 4); |
11353 | if (!Check(S, decodeLenOperand<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11354 | tmp = fieldFromInstruction(insn, 12, 4); |
11355 | if (!Check(S, DecodeADDR64BitRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11356 | tmp = fieldFromInstruction(insn, 0, 12); |
11357 | if (!Check(S, decodeU12ImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11358 | tmp = fieldFromInstruction(insn, 32, 4); |
11359 | if (!Check(S, decodeLenOperand<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11360 | return S; |
11361 | } |
11362 | } |
11363 | |
11364 | template <typename InsnType> |
11365 | static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, |
11366 | InsnType insn, uint64_t Address, |
11367 | const MCDisassembler *DisAsm, |
11368 | const MCSubtargetInfo &STI) { |
11369 | const FeatureBitset &Bits = STI.getFeatureBits(); |
11370 | |
11371 | const uint8_t *Ptr = DecodeTable; |
11372 | uint64_t CurFieldValue = 0; |
11373 | DecodeStatus S = MCDisassembler::Success; |
11374 | while (true) { |
11375 | ptrdiff_t Loc = Ptr - DecodeTable; |
11376 | switch (*Ptr) { |
11377 | default: |
11378 | errs() << Loc << ": Unexpected decode table opcode!\n" ; |
11379 | return MCDisassembler::Fail; |
11380 | case MCD::OPC_ExtractField: { |
11381 | // Decode the start value. |
11382 | unsigned Start = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11383 | unsigned Len = *Ptr++; |
11384 | CurFieldValue = fieldFromInstruction(insn, Start, Len); |
11385 | LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " |
11386 | << Len << "): " << CurFieldValue << "\n" ); |
11387 | break; |
11388 | } |
11389 | case MCD::OPC_FilterValue: { |
11390 | // Decode the field value. |
11391 | uint64_t Val = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11392 | // NumToSkip is a plain 24-bit integer. |
11393 | unsigned NumToSkip = *Ptr++; |
11394 | NumToSkip |= (*Ptr++) << 8; |
11395 | NumToSkip |= (*Ptr++) << 16; |
11396 | |
11397 | // Perform the filter operation. |
11398 | if (Val != CurFieldValue) |
11399 | Ptr += NumToSkip; |
11400 | LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip |
11401 | << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:" ) |
11402 | << " continuing at " << (Ptr - DecodeTable) << "\n" ); |
11403 | |
11404 | break; |
11405 | } |
11406 | case MCD::OPC_CheckField: { |
11407 | // Decode the start value. |
11408 | unsigned Start = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11409 | unsigned Len = *Ptr; |
11410 | uint64_t FieldValue = fieldFromInstruction(insn, Start, Len); |
11411 | // Decode the field value. |
11412 | unsigned PtrLen = 0; |
11413 | uint64_t ExpectedValue = decodeULEB128(p: ++Ptr, n: &PtrLen); |
11414 | Ptr += PtrLen; |
11415 | // NumToSkip is a plain 24-bit integer. |
11416 | unsigned NumToSkip = *Ptr++; |
11417 | NumToSkip |= (*Ptr++) << 8; |
11418 | NumToSkip |= (*Ptr++) << 16; |
11419 | |
11420 | // If the actual and expected values don't match, skip. |
11421 | if (ExpectedValue != FieldValue) |
11422 | Ptr += NumToSkip; |
11423 | LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", " |
11424 | << Len << ", " << ExpectedValue << ", " << NumToSkip |
11425 | << "): FieldValue = " << FieldValue << ", ExpectedValue = " |
11426 | << ExpectedValue << ": " |
11427 | << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n" )); |
11428 | break; |
11429 | } |
11430 | case MCD::OPC_CheckPredicate: { |
11431 | // Decode the Predicate Index value. |
11432 | unsigned PIdx = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11433 | // NumToSkip is a plain 24-bit integer. |
11434 | unsigned NumToSkip = *Ptr++; |
11435 | NumToSkip |= (*Ptr++) << 8; |
11436 | NumToSkip |= (*Ptr++) << 16; |
11437 | // Check the predicate. |
11438 | bool Pred; |
11439 | if (!(Pred = checkDecoderPredicate(Idx: PIdx, Bits))) |
11440 | Ptr += NumToSkip; |
11441 | (void)Pred; |
11442 | LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): " |
11443 | << (Pred ? "PASS\n" : "FAIL\n" )); |
11444 | |
11445 | break; |
11446 | } |
11447 | case MCD::OPC_Decode: { |
11448 | // Decode the Opcode value. |
11449 | unsigned Opc = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11450 | unsigned DecodeIdx = decodeULEB128AndIncUnsafe(p&: Ptr); |
11451 | |
11452 | MI.clear(); |
11453 | MI.setOpcode(Opc); |
11454 | bool DecodeComplete; |
11455 | S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, DecodeComplete); |
11456 | assert(DecodeComplete); |
11457 | |
11458 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc |
11459 | << ", using decoder " << DecodeIdx << ": " |
11460 | << (S != MCDisassembler::Fail ? "PASS" : "FAIL" ) << "\n" ); |
11461 | return S; |
11462 | } |
11463 | case MCD::OPC_TryDecode: { |
11464 | // Decode the Opcode value. |
11465 | unsigned Opc = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11466 | unsigned DecodeIdx = decodeULEB128AndIncUnsafe(p&: Ptr); |
11467 | // NumToSkip is a plain 24-bit integer. |
11468 | unsigned NumToSkip = *Ptr++; |
11469 | NumToSkip |= (*Ptr++) << 8; |
11470 | NumToSkip |= (*Ptr++) << 16; |
11471 | |
11472 | // Perform the decode operation. |
11473 | MCInst TmpMI; |
11474 | TmpMI.setOpcode(Opc); |
11475 | bool DecodeComplete; |
11476 | S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete); |
11477 | LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc |
11478 | << ", using decoder " << DecodeIdx << ": " ); |
11479 | |
11480 | if (DecodeComplete) { |
11481 | // Decoding complete. |
11482 | LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL" ) << "\n" ); |
11483 | MI = TmpMI; |
11484 | return S; |
11485 | } else { |
11486 | assert(S == MCDisassembler::Fail); |
11487 | // If the decoding was incomplete, skip. |
11488 | Ptr += NumToSkip; |
11489 | LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n" ); |
11490 | // Reset decode status. This also drops a SoftFail status that could be |
11491 | // set before the decode attempt. |
11492 | S = MCDisassembler::Success; |
11493 | } |
11494 | break; |
11495 | } |
11496 | case MCD::OPC_SoftFail: { |
11497 | // Decode the mask values. |
11498 | uint64_t PositiveMask = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
11499 | uint64_t NegativeMask = decodeULEB128AndIncUnsafe(p&: Ptr); |
11500 | bool Fail = (insn & PositiveMask) != 0 || (~insn & NegativeMask) != 0; |
11501 | if (Fail) |
11502 | S = MCDisassembler::SoftFail; |
11503 | LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n" : "PASS\n" )); |
11504 | break; |
11505 | } |
11506 | case MCD::OPC_Fail: { |
11507 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n" ); |
11508 | return MCDisassembler::Fail; |
11509 | } |
11510 | } |
11511 | } |
11512 | llvm_unreachable("bogosity detected in disassembler state machine!" ); |
11513 | } |
11514 | |
11515 | |
11516 | } // end namespace llvm |
11517 | |