1 | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ |
2 | |* *| |
3 | |* * VE 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 { |
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 void insertBits(InsnType &field, InsnType bits, unsigned startBit, |
59 | unsigned numBits) { |
60 | if constexpr (std::is_integral<InsnType>::value) { |
61 | assert(startBit + numBits <= sizeof field * 8); |
62 | (void)numBits; |
63 | field |= (InsnType)bits << startBit; |
64 | } else { |
65 | field.insertBits(bits, startBit, numBits); |
66 | } |
67 | } |
68 | |
69 | static bool Check(DecodeStatus &Out, DecodeStatus In) { |
70 | Out = static_cast<DecodeStatus>(Out & In); |
71 | return Out != MCDisassembler::Fail; |
72 | } |
73 | |
74 | static const uint8_t DecoderTableVE64[] = { |
75 | /* 0 */ MCD::OPC_ExtractField, 55, 9, // Inst{63-55} ... |
76 | /* 3 */ MCD::OPC_FilterValue, 2, 43, 0, // Skip to: 50 |
77 | /* 7 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
78 | /* 10 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 31 |
79 | /* 14 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
80 | /* 17 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 25 |
81 | /* 21 */ MCD::OPC_Decode, 137, 6, 0, // Opcode: LDzii, DecodeIdx: 0 |
82 | /* 25 */ MCD::OPC_FilterValueOrFail, 1, |
83 | /* 27 */ MCD::OPC_Decode, 138, 6, 0, // Opcode: LDzri, DecodeIdx: 0 |
84 | /* 31 */ MCD::OPC_FilterValueOrFail, 1, |
85 | /* 33 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
86 | /* 36 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 44 |
87 | /* 40 */ MCD::OPC_Decode, 135, 6, 0, // Opcode: LDrii, DecodeIdx: 0 |
88 | /* 44 */ MCD::OPC_FilterValueOrFail, 1, |
89 | /* 46 */ MCD::OPC_Decode, 136, 6, 0, // Opcode: LDrri, DecodeIdx: 0 |
90 | /* 50 */ MCD::OPC_FilterValue, 4, 43, 0, // Skip to: 97 |
91 | /* 54 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
92 | /* 57 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 78 |
93 | /* 61 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
94 | /* 64 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 72 |
95 | /* 68 */ MCD::OPC_Decode, 131, 6, 1, // Opcode: LDUzii, DecodeIdx: 1 |
96 | /* 72 */ MCD::OPC_FilterValueOrFail, 1, |
97 | /* 74 */ MCD::OPC_Decode, 132, 6, 1, // Opcode: LDUzri, DecodeIdx: 1 |
98 | /* 78 */ MCD::OPC_FilterValueOrFail, 1, |
99 | /* 80 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
100 | /* 83 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 91 |
101 | /* 87 */ MCD::OPC_Decode, 129, 6, 1, // Opcode: LDUrii, DecodeIdx: 1 |
102 | /* 91 */ MCD::OPC_FilterValueOrFail, 1, |
103 | /* 93 */ MCD::OPC_Decode, 130, 6, 1, // Opcode: LDUrri, DecodeIdx: 1 |
104 | /* 97 */ MCD::OPC_FilterValue, 6, 43, 0, // Skip to: 144 |
105 | /* 101 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
106 | /* 104 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 125 |
107 | /* 108 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
108 | /* 111 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 119 |
109 | /* 115 */ MCD::OPC_Decode, 251, 5, 2, // Opcode: LDLSXzii, DecodeIdx: 2 |
110 | /* 119 */ MCD::OPC_FilterValueOrFail, 1, |
111 | /* 121 */ MCD::OPC_Decode, 252, 5, 2, // Opcode: LDLSXzri, DecodeIdx: 2 |
112 | /* 125 */ MCD::OPC_FilterValueOrFail, 1, |
113 | /* 127 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
114 | /* 130 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 138 |
115 | /* 134 */ MCD::OPC_Decode, 249, 5, 2, // Opcode: LDLSXrii, DecodeIdx: 2 |
116 | /* 138 */ MCD::OPC_FilterValueOrFail, 1, |
117 | /* 140 */ MCD::OPC_Decode, 250, 5, 2, // Opcode: LDLSXrri, DecodeIdx: 2 |
118 | /* 144 */ MCD::OPC_FilterValue, 7, 43, 0, // Skip to: 191 |
119 | /* 148 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
120 | /* 151 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 172 |
121 | /* 155 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
122 | /* 158 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 166 |
123 | /* 162 */ MCD::OPC_Decode, 255, 5, 2, // Opcode: LDLZXzii, DecodeIdx: 2 |
124 | /* 166 */ MCD::OPC_FilterValueOrFail, 1, |
125 | /* 168 */ MCD::OPC_Decode, 128, 6, 2, // Opcode: LDLZXzri, DecodeIdx: 2 |
126 | /* 172 */ MCD::OPC_FilterValueOrFail, 1, |
127 | /* 174 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
128 | /* 177 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 185 |
129 | /* 181 */ MCD::OPC_Decode, 253, 5, 2, // Opcode: LDLZXrii, DecodeIdx: 2 |
130 | /* 185 */ MCD::OPC_FilterValueOrFail, 1, |
131 | /* 187 */ MCD::OPC_Decode, 254, 5, 2, // Opcode: LDLZXrri, DecodeIdx: 2 |
132 | /* 191 */ MCD::OPC_FilterValue, 8, 43, 0, // Skip to: 238 |
133 | /* 195 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
134 | /* 198 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 219 |
135 | /* 202 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
136 | /* 205 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 213 |
137 | /* 209 */ MCD::OPC_Decode, 243, 5, 2, // Opcode: LD2BSXzii, DecodeIdx: 2 |
138 | /* 213 */ MCD::OPC_FilterValueOrFail, 1, |
139 | /* 215 */ MCD::OPC_Decode, 244, 5, 2, // Opcode: LD2BSXzri, DecodeIdx: 2 |
140 | /* 219 */ MCD::OPC_FilterValueOrFail, 1, |
141 | /* 221 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
142 | /* 224 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 232 |
143 | /* 228 */ MCD::OPC_Decode, 241, 5, 2, // Opcode: LD2BSXrii, DecodeIdx: 2 |
144 | /* 232 */ MCD::OPC_FilterValueOrFail, 1, |
145 | /* 234 */ MCD::OPC_Decode, 242, 5, 2, // Opcode: LD2BSXrri, DecodeIdx: 2 |
146 | /* 238 */ MCD::OPC_FilterValue, 9, 43, 0, // Skip to: 285 |
147 | /* 242 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
148 | /* 245 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 266 |
149 | /* 249 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
150 | /* 252 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 260 |
151 | /* 256 */ MCD::OPC_Decode, 247, 5, 2, // Opcode: LD2BZXzii, DecodeIdx: 2 |
152 | /* 260 */ MCD::OPC_FilterValueOrFail, 1, |
153 | /* 262 */ MCD::OPC_Decode, 248, 5, 2, // Opcode: LD2BZXzri, DecodeIdx: 2 |
154 | /* 266 */ MCD::OPC_FilterValueOrFail, 1, |
155 | /* 268 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
156 | /* 271 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 279 |
157 | /* 275 */ MCD::OPC_Decode, 245, 5, 2, // Opcode: LD2BZXrii, DecodeIdx: 2 |
158 | /* 279 */ MCD::OPC_FilterValueOrFail, 1, |
159 | /* 281 */ MCD::OPC_Decode, 246, 5, 2, // Opcode: LD2BZXrri, DecodeIdx: 2 |
160 | /* 285 */ MCD::OPC_FilterValue, 10, 43, 0, // Skip to: 332 |
161 | /* 289 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
162 | /* 292 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 313 |
163 | /* 296 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
164 | /* 299 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 307 |
165 | /* 303 */ MCD::OPC_Decode, 235, 5, 2, // Opcode: LD1BSXzii, DecodeIdx: 2 |
166 | /* 307 */ MCD::OPC_FilterValueOrFail, 1, |
167 | /* 309 */ MCD::OPC_Decode, 236, 5, 2, // Opcode: LD1BSXzri, DecodeIdx: 2 |
168 | /* 313 */ MCD::OPC_FilterValueOrFail, 1, |
169 | /* 315 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
170 | /* 318 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 326 |
171 | /* 322 */ MCD::OPC_Decode, 233, 5, 2, // Opcode: LD1BSXrii, DecodeIdx: 2 |
172 | /* 326 */ MCD::OPC_FilterValueOrFail, 1, |
173 | /* 328 */ MCD::OPC_Decode, 234, 5, 2, // Opcode: LD1BSXrri, DecodeIdx: 2 |
174 | /* 332 */ MCD::OPC_FilterValue, 11, 43, 0, // Skip to: 379 |
175 | /* 336 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
176 | /* 339 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 360 |
177 | /* 343 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
178 | /* 346 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 354 |
179 | /* 350 */ MCD::OPC_Decode, 239, 5, 2, // Opcode: LD1BZXzii, DecodeIdx: 2 |
180 | /* 354 */ MCD::OPC_FilterValueOrFail, 1, |
181 | /* 356 */ MCD::OPC_Decode, 240, 5, 2, // Opcode: LD1BZXzri, DecodeIdx: 2 |
182 | /* 360 */ MCD::OPC_FilterValueOrFail, 1, |
183 | /* 362 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
184 | /* 365 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 373 |
185 | /* 369 */ MCD::OPC_Decode, 237, 5, 2, // Opcode: LD1BZXrii, DecodeIdx: 2 |
186 | /* 373 */ MCD::OPC_FilterValueOrFail, 1, |
187 | /* 375 */ MCD::OPC_Decode, 238, 5, 2, // Opcode: LD1BZXrri, DecodeIdx: 2 |
188 | /* 379 */ MCD::OPC_FilterValue, 12, 43, 0, // Skip to: 426 |
189 | /* 383 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
190 | /* 386 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 407 |
191 | /* 390 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
192 | /* 393 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 401 |
193 | /* 397 */ MCD::OPC_Decode, 145, 6, 0, // Opcode: LEAzii, DecodeIdx: 0 |
194 | /* 401 */ MCD::OPC_FilterValueOrFail, 1, |
195 | /* 403 */ MCD::OPC_Decode, 146, 6, 0, // Opcode: LEAzri, DecodeIdx: 0 |
196 | /* 407 */ MCD::OPC_FilterValueOrFail, 1, |
197 | /* 409 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
198 | /* 412 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 420 |
199 | /* 416 */ MCD::OPC_Decode, 143, 6, 0, // Opcode: LEArii, DecodeIdx: 0 |
200 | /* 420 */ MCD::OPC_FilterValueOrFail, 1, |
201 | /* 422 */ MCD::OPC_Decode, 144, 6, 0, // Opcode: LEArri, DecodeIdx: 0 |
202 | /* 426 */ MCD::OPC_FilterValue, 13, 43, 0, // Skip to: 473 |
203 | /* 430 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
204 | /* 433 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 454 |
205 | /* 437 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
206 | /* 440 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 448 |
207 | /* 444 */ MCD::OPC_Decode, 141, 6, 0, // Opcode: LEASLzii, DecodeIdx: 0 |
208 | /* 448 */ MCD::OPC_FilterValueOrFail, 1, |
209 | /* 450 */ MCD::OPC_Decode, 142, 6, 0, // Opcode: LEASLzri, DecodeIdx: 0 |
210 | /* 454 */ MCD::OPC_FilterValueOrFail, 1, |
211 | /* 456 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
212 | /* 459 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 467 |
213 | /* 463 */ MCD::OPC_Decode, 139, 6, 0, // Opcode: LEASLrii, DecodeIdx: 0 |
214 | /* 467 */ MCD::OPC_FilterValueOrFail, 1, |
215 | /* 469 */ MCD::OPC_Decode, 140, 6, 0, // Opcode: LEASLrri, DecodeIdx: 0 |
216 | /* 473 */ MCD::OPC_FilterValue, 16, 43, 0, // Skip to: 520 |
217 | /* 477 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
218 | /* 480 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 501 |
219 | /* 484 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
220 | /* 487 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 495 |
221 | /* 491 */ MCD::OPC_Decode, 162, 4, 3, // Opcode: BSICzii, DecodeIdx: 3 |
222 | /* 495 */ MCD::OPC_FilterValueOrFail, 1, |
223 | /* 497 */ MCD::OPC_Decode, 163, 4, 3, // Opcode: BSICzri, DecodeIdx: 3 |
224 | /* 501 */ MCD::OPC_FilterValueOrFail, 1, |
225 | /* 503 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
226 | /* 506 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 514 |
227 | /* 510 */ MCD::OPC_Decode, 160, 4, 3, // Opcode: BSICrii, DecodeIdx: 3 |
228 | /* 514 */ MCD::OPC_FilterValueOrFail, 1, |
229 | /* 516 */ MCD::OPC_Decode, 161, 4, 3, // Opcode: BSICrri, DecodeIdx: 3 |
230 | /* 520 */ MCD::OPC_FilterValue, 18, 43, 0, // Skip to: 567 |
231 | /* 524 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
232 | /* 527 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 548 |
233 | /* 531 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
234 | /* 534 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 542 |
235 | /* 538 */ MCD::OPC_Decode, 145, 5, 0, // Opcode: DLDzii, DecodeIdx: 0 |
236 | /* 542 */ MCD::OPC_FilterValueOrFail, 1, |
237 | /* 544 */ MCD::OPC_Decode, 146, 5, 0, // Opcode: DLDzri, DecodeIdx: 0 |
238 | /* 548 */ MCD::OPC_FilterValueOrFail, 1, |
239 | /* 550 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
240 | /* 553 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 561 |
241 | /* 557 */ MCD::OPC_Decode, 143, 5, 0, // Opcode: DLDrii, DecodeIdx: 0 |
242 | /* 561 */ MCD::OPC_FilterValueOrFail, 1, |
243 | /* 563 */ MCD::OPC_Decode, 144, 5, 0, // Opcode: DLDrri, DecodeIdx: 0 |
244 | /* 567 */ MCD::OPC_FilterValue, 20, 43, 0, // Skip to: 614 |
245 | /* 571 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
246 | /* 574 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 595 |
247 | /* 578 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
248 | /* 581 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 589 |
249 | /* 585 */ MCD::OPC_Decode, 141, 5, 1, // Opcode: DLDUzii, DecodeIdx: 1 |
250 | /* 589 */ MCD::OPC_FilterValueOrFail, 1, |
251 | /* 591 */ MCD::OPC_Decode, 142, 5, 1, // Opcode: DLDUzri, DecodeIdx: 1 |
252 | /* 595 */ MCD::OPC_FilterValueOrFail, 1, |
253 | /* 597 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
254 | /* 600 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 608 |
255 | /* 604 */ MCD::OPC_Decode, 139, 5, 1, // Opcode: DLDUrii, DecodeIdx: 1 |
256 | /* 608 */ MCD::OPC_FilterValueOrFail, 1, |
257 | /* 610 */ MCD::OPC_Decode, 140, 5, 1, // Opcode: DLDUrri, DecodeIdx: 1 |
258 | /* 614 */ MCD::OPC_FilterValue, 22, 43, 0, // Skip to: 661 |
259 | /* 618 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
260 | /* 621 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 642 |
261 | /* 625 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
262 | /* 628 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 636 |
263 | /* 632 */ MCD::OPC_Decode, 133, 5, 2, // Opcode: DLDLSXzii, DecodeIdx: 2 |
264 | /* 636 */ MCD::OPC_FilterValueOrFail, 1, |
265 | /* 638 */ MCD::OPC_Decode, 134, 5, 2, // Opcode: DLDLSXzri, DecodeIdx: 2 |
266 | /* 642 */ MCD::OPC_FilterValueOrFail, 1, |
267 | /* 644 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
268 | /* 647 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 655 |
269 | /* 651 */ MCD::OPC_Decode, 131, 5, 2, // Opcode: DLDLSXrii, DecodeIdx: 2 |
270 | /* 655 */ MCD::OPC_FilterValueOrFail, 1, |
271 | /* 657 */ MCD::OPC_Decode, 132, 5, 2, // Opcode: DLDLSXrri, DecodeIdx: 2 |
272 | /* 661 */ MCD::OPC_FilterValue, 23, 43, 0, // Skip to: 708 |
273 | /* 665 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
274 | /* 668 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 689 |
275 | /* 672 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
276 | /* 675 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 683 |
277 | /* 679 */ MCD::OPC_Decode, 137, 5, 2, // Opcode: DLDLZXzii, DecodeIdx: 2 |
278 | /* 683 */ MCD::OPC_FilterValueOrFail, 1, |
279 | /* 685 */ MCD::OPC_Decode, 138, 5, 2, // Opcode: DLDLZXzri, DecodeIdx: 2 |
280 | /* 689 */ MCD::OPC_FilterValueOrFail, 1, |
281 | /* 691 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
282 | /* 694 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 702 |
283 | /* 698 */ MCD::OPC_Decode, 135, 5, 2, // Opcode: DLDLZXrii, DecodeIdx: 2 |
284 | /* 702 */ MCD::OPC_FilterValueOrFail, 1, |
285 | /* 704 */ MCD::OPC_Decode, 136, 5, 2, // Opcode: DLDLZXrri, DecodeIdx: 2 |
286 | /* 708 */ MCD::OPC_FilterValue, 24, 43, 0, // Skip to: 755 |
287 | /* 712 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
288 | /* 715 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 736 |
289 | /* 719 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
290 | /* 722 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 730 |
291 | /* 726 */ MCD::OPC_Decode, 152, 7, 4, // Opcode: PFCHzii, DecodeIdx: 4 |
292 | /* 730 */ MCD::OPC_FilterValueOrFail, 1, |
293 | /* 732 */ MCD::OPC_Decode, 153, 7, 4, // Opcode: PFCHzri, DecodeIdx: 4 |
294 | /* 736 */ MCD::OPC_FilterValueOrFail, 1, |
295 | /* 738 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
296 | /* 741 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 749 |
297 | /* 745 */ MCD::OPC_Decode, 150, 7, 4, // Opcode: PFCHrii, DecodeIdx: 4 |
298 | /* 749 */ MCD::OPC_FilterValueOrFail, 1, |
299 | /* 751 */ MCD::OPC_Decode, 151, 7, 4, // Opcode: PFCHrri, DecodeIdx: 4 |
300 | /* 755 */ MCD::OPC_FilterValue, 30, 25, 0, // Skip to: 784 |
301 | /* 759 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
302 | /* 762 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 774 |
303 | /* 766 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
304 | /* 770 */ MCD::OPC_Decode, 215, 4, 5, // Opcode: CVTDSi, DecodeIdx: 5 |
305 | /* 774 */ MCD::OPC_FilterValueOrFail, 1, |
306 | /* 776 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
307 | /* 780 */ MCD::OPC_Decode, 216, 4, 6, // Opcode: CVTDSr, DecodeIdx: 6 |
308 | /* 784 */ MCD::OPC_FilterValue, 31, 25, 0, // Skip to: 813 |
309 | /* 788 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
310 | /* 791 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 803 |
311 | /* 795 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
312 | /* 799 */ MCD::OPC_Decode, 213, 4, 5, // Opcode: CVTDQi, DecodeIdx: 5 |
313 | /* 803 */ MCD::OPC_FilterValueOrFail, 1, |
314 | /* 805 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
315 | /* 809 */ MCD::OPC_Decode, 214, 4, 7, // Opcode: CVTDQr, DecodeIdx: 7 |
316 | /* 813 */ MCD::OPC_FilterValue, 34, 43, 0, // Skip to: 860 |
317 | /* 817 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
318 | /* 820 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 841 |
319 | /* 824 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
320 | /* 827 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 835 |
321 | /* 831 */ MCD::OPC_Decode, 162, 35, 8, // Opcode: STzii, DecodeIdx: 8 |
322 | /* 835 */ MCD::OPC_FilterValueOrFail, 1, |
323 | /* 837 */ MCD::OPC_Decode, 163, 35, 8, // Opcode: STzri, DecodeIdx: 8 |
324 | /* 841 */ MCD::OPC_FilterValueOrFail, 1, |
325 | /* 843 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
326 | /* 846 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 854 |
327 | /* 850 */ MCD::OPC_Decode, 160, 35, 8, // Opcode: STrii, DecodeIdx: 8 |
328 | /* 854 */ MCD::OPC_FilterValueOrFail, 1, |
329 | /* 856 */ MCD::OPC_Decode, 161, 35, 8, // Opcode: STrri, DecodeIdx: 8 |
330 | /* 860 */ MCD::OPC_FilterValue, 36, 43, 0, // Skip to: 907 |
331 | /* 864 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
332 | /* 867 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 888 |
333 | /* 871 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
334 | /* 874 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 882 |
335 | /* 878 */ MCD::OPC_Decode, 158, 35, 9, // Opcode: STUzii, DecodeIdx: 9 |
336 | /* 882 */ MCD::OPC_FilterValueOrFail, 1, |
337 | /* 884 */ MCD::OPC_Decode, 159, 35, 9, // Opcode: STUzri, DecodeIdx: 9 |
338 | /* 888 */ MCD::OPC_FilterValueOrFail, 1, |
339 | /* 890 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
340 | /* 893 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 901 |
341 | /* 897 */ MCD::OPC_Decode, 156, 35, 9, // Opcode: STUrii, DecodeIdx: 9 |
342 | /* 901 */ MCD::OPC_FilterValueOrFail, 1, |
343 | /* 903 */ MCD::OPC_Decode, 157, 35, 9, // Opcode: STUrri, DecodeIdx: 9 |
344 | /* 907 */ MCD::OPC_FilterValue, 38, 43, 0, // Skip to: 954 |
345 | /* 911 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
346 | /* 914 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 935 |
347 | /* 918 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
348 | /* 921 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 929 |
349 | /* 925 */ MCD::OPC_Decode, 154, 35, 10, // Opcode: STLzii, DecodeIdx: 10 |
350 | /* 929 */ MCD::OPC_FilterValueOrFail, 1, |
351 | /* 931 */ MCD::OPC_Decode, 155, 35, 10, // Opcode: STLzri, DecodeIdx: 10 |
352 | /* 935 */ MCD::OPC_FilterValueOrFail, 1, |
353 | /* 937 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
354 | /* 940 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 948 |
355 | /* 944 */ MCD::OPC_Decode, 152, 35, 10, // Opcode: STLrii, DecodeIdx: 10 |
356 | /* 948 */ MCD::OPC_FilterValueOrFail, 1, |
357 | /* 950 */ MCD::OPC_Decode, 153, 35, 10, // Opcode: STLrri, DecodeIdx: 10 |
358 | /* 954 */ MCD::OPC_FilterValue, 40, 43, 0, // Skip to: 1001 |
359 | /* 958 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
360 | /* 961 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 982 |
361 | /* 965 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
362 | /* 968 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 976 |
363 | /* 972 */ MCD::OPC_Decode, 150, 35, 10, // Opcode: ST2Bzii, DecodeIdx: 10 |
364 | /* 976 */ MCD::OPC_FilterValueOrFail, 1, |
365 | /* 978 */ MCD::OPC_Decode, 151, 35, 10, // Opcode: ST2Bzri, DecodeIdx: 10 |
366 | /* 982 */ MCD::OPC_FilterValueOrFail, 1, |
367 | /* 984 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
368 | /* 987 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 995 |
369 | /* 991 */ MCD::OPC_Decode, 148, 35, 10, // Opcode: ST2Brii, DecodeIdx: 10 |
370 | /* 995 */ MCD::OPC_FilterValueOrFail, 1, |
371 | /* 997 */ MCD::OPC_Decode, 149, 35, 10, // Opcode: ST2Brri, DecodeIdx: 10 |
372 | /* 1001 */ MCD::OPC_FilterValue, 42, 43, 0, // Skip to: 1048 |
373 | /* 1005 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
374 | /* 1008 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 1029 |
375 | /* 1012 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
376 | /* 1015 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1023 |
377 | /* 1019 */ MCD::OPC_Decode, 146, 35, 10, // Opcode: ST1Bzii, DecodeIdx: 10 |
378 | /* 1023 */ MCD::OPC_FilterValueOrFail, 1, |
379 | /* 1025 */ MCD::OPC_Decode, 147, 35, 10, // Opcode: ST1Bzri, DecodeIdx: 10 |
380 | /* 1029 */ MCD::OPC_FilterValueOrFail, 1, |
381 | /* 1031 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
382 | /* 1034 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1042 |
383 | /* 1038 */ MCD::OPC_Decode, 144, 35, 10, // Opcode: ST1Brii, DecodeIdx: 10 |
384 | /* 1042 */ MCD::OPC_FilterValueOrFail, 1, |
385 | /* 1044 */ MCD::OPC_Decode, 145, 35, 10, // Opcode: ST1Brri, DecodeIdx: 10 |
386 | /* 1048 */ MCD::OPC_FilterValue, 48, 29, 2, // Skip to: 1593 |
387 | /* 1052 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
388 | /* 1055 */ MCD::OPC_FilterValue, 0, 86, 0, // Skip to: 1145 |
389 | /* 1059 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
390 | /* 1062 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1126 |
391 | /* 1066 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
392 | /* 1069 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1120 |
393 | /* 1073 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
394 | /* 1076 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1096 |
395 | /* 1080 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1116 |
396 | /* 1086 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1116 |
397 | /* 1092 */ MCD::OPC_Decode, 241, 3, 11, // Opcode: BRCFLna, DecodeIdx: 11 |
398 | /* 1096 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1116 |
399 | /* 1100 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1116 |
400 | /* 1106 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1116 |
401 | /* 1112 */ MCD::OPC_Decode, 232, 3, 11, // Opcode: BRCFLa, DecodeIdx: 11 |
402 | /* 1116 */ MCD::OPC_Decode, 238, 3, 12, // Opcode: BRCFLiz, DecodeIdx: 12 |
403 | /* 1120 */ MCD::OPC_FilterValueOrFail, 1, |
404 | /* 1122 */ MCD::OPC_Decode, 247, 3, 13, // Opcode: BRCFLrz, DecodeIdx: 13 |
405 | /* 1126 */ MCD::OPC_FilterValueOrFail, 1, |
406 | /* 1128 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
407 | /* 1131 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1139 |
408 | /* 1135 */ MCD::OPC_Decode, 235, 3, 14, // Opcode: BRCFLir, DecodeIdx: 14 |
409 | /* 1139 */ MCD::OPC_FilterValueOrFail, 1, |
410 | /* 1141 */ MCD::OPC_Decode, 244, 3, 15, // Opcode: BRCFLrr, DecodeIdx: 15 |
411 | /* 1145 */ MCD::OPC_FilterValue, 2, 86, 0, // Skip to: 1235 |
412 | /* 1149 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
413 | /* 1152 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1216 |
414 | /* 1156 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
415 | /* 1159 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1210 |
416 | /* 1163 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
417 | /* 1166 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1186 |
418 | /* 1170 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1206 |
419 | /* 1176 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1206 |
420 | /* 1182 */ MCD::OPC_Decode, 242, 3, 11, // Opcode: BRCFLna_nt, DecodeIdx: 11 |
421 | /* 1186 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1206 |
422 | /* 1190 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1206 |
423 | /* 1196 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1206 |
424 | /* 1202 */ MCD::OPC_Decode, 233, 3, 11, // Opcode: BRCFLa_nt, DecodeIdx: 11 |
425 | /* 1206 */ MCD::OPC_Decode, 239, 3, 12, // Opcode: BRCFLiz_nt, DecodeIdx: 12 |
426 | /* 1210 */ MCD::OPC_FilterValueOrFail, 1, |
427 | /* 1212 */ MCD::OPC_Decode, 248, 3, 13, // Opcode: BRCFLrz_nt, DecodeIdx: 13 |
428 | /* 1216 */ MCD::OPC_FilterValueOrFail, 1, |
429 | /* 1218 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
430 | /* 1221 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1229 |
431 | /* 1225 */ MCD::OPC_Decode, 236, 3, 14, // Opcode: BRCFLir_nt, DecodeIdx: 14 |
432 | /* 1229 */ MCD::OPC_FilterValueOrFail, 1, |
433 | /* 1231 */ MCD::OPC_Decode, 245, 3, 15, // Opcode: BRCFLrr_nt, DecodeIdx: 15 |
434 | /* 1235 */ MCD::OPC_FilterValue, 3, 86, 0, // Skip to: 1325 |
435 | /* 1239 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
436 | /* 1242 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1306 |
437 | /* 1246 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
438 | /* 1249 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1300 |
439 | /* 1253 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
440 | /* 1256 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1276 |
441 | /* 1260 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1296 |
442 | /* 1266 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1296 |
443 | /* 1272 */ MCD::OPC_Decode, 243, 3, 11, // Opcode: BRCFLna_t, DecodeIdx: 11 |
444 | /* 1276 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1296 |
445 | /* 1280 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1296 |
446 | /* 1286 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1296 |
447 | /* 1292 */ MCD::OPC_Decode, 234, 3, 11, // Opcode: BRCFLa_t, DecodeIdx: 11 |
448 | /* 1296 */ MCD::OPC_Decode, 240, 3, 12, // Opcode: BRCFLiz_t, DecodeIdx: 12 |
449 | /* 1300 */ MCD::OPC_FilterValueOrFail, 1, |
450 | /* 1302 */ MCD::OPC_Decode, 249, 3, 13, // Opcode: BRCFLrz_t, DecodeIdx: 13 |
451 | /* 1306 */ MCD::OPC_FilterValueOrFail, 1, |
452 | /* 1308 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
453 | /* 1311 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1319 |
454 | /* 1315 */ MCD::OPC_Decode, 237, 3, 14, // Opcode: BRCFLir_t, DecodeIdx: 14 |
455 | /* 1319 */ MCD::OPC_FilterValueOrFail, 1, |
456 | /* 1321 */ MCD::OPC_Decode, 246, 3, 15, // Opcode: BRCFLrr_t, DecodeIdx: 15 |
457 | /* 1325 */ MCD::OPC_FilterValue, 4, 86, 0, // Skip to: 1415 |
458 | /* 1329 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
459 | /* 1332 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1396 |
460 | /* 1336 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
461 | /* 1339 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1390 |
462 | /* 1343 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
463 | /* 1346 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1366 |
464 | /* 1350 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1386 |
465 | /* 1356 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1386 |
466 | /* 1362 */ MCD::OPC_Decode, 223, 3, 11, // Opcode: BRCFDna, DecodeIdx: 11 |
467 | /* 1366 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1386 |
468 | /* 1370 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1386 |
469 | /* 1376 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1386 |
470 | /* 1382 */ MCD::OPC_Decode, 214, 3, 11, // Opcode: BRCFDa, DecodeIdx: 11 |
471 | /* 1386 */ MCD::OPC_Decode, 220, 3, 12, // Opcode: BRCFDiz, DecodeIdx: 12 |
472 | /* 1390 */ MCD::OPC_FilterValueOrFail, 1, |
473 | /* 1392 */ MCD::OPC_Decode, 229, 3, 13, // Opcode: BRCFDrz, DecodeIdx: 13 |
474 | /* 1396 */ MCD::OPC_FilterValueOrFail, 1, |
475 | /* 1398 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
476 | /* 1401 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1409 |
477 | /* 1405 */ MCD::OPC_Decode, 217, 3, 14, // Opcode: BRCFDir, DecodeIdx: 14 |
478 | /* 1409 */ MCD::OPC_FilterValueOrFail, 1, |
479 | /* 1411 */ MCD::OPC_Decode, 226, 3, 15, // Opcode: BRCFDrr, DecodeIdx: 15 |
480 | /* 1415 */ MCD::OPC_FilterValue, 6, 86, 0, // Skip to: 1505 |
481 | /* 1419 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
482 | /* 1422 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1486 |
483 | /* 1426 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
484 | /* 1429 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1480 |
485 | /* 1433 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
486 | /* 1436 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1456 |
487 | /* 1440 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1476 |
488 | /* 1446 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1476 |
489 | /* 1452 */ MCD::OPC_Decode, 224, 3, 11, // Opcode: BRCFDna_nt, DecodeIdx: 11 |
490 | /* 1456 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1476 |
491 | /* 1460 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1476 |
492 | /* 1466 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1476 |
493 | /* 1472 */ MCD::OPC_Decode, 215, 3, 11, // Opcode: BRCFDa_nt, DecodeIdx: 11 |
494 | /* 1476 */ MCD::OPC_Decode, 221, 3, 12, // Opcode: BRCFDiz_nt, DecodeIdx: 12 |
495 | /* 1480 */ MCD::OPC_FilterValueOrFail, 1, |
496 | /* 1482 */ MCD::OPC_Decode, 230, 3, 13, // Opcode: BRCFDrz_nt, DecodeIdx: 13 |
497 | /* 1486 */ MCD::OPC_FilterValueOrFail, 1, |
498 | /* 1488 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
499 | /* 1491 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1499 |
500 | /* 1495 */ MCD::OPC_Decode, 218, 3, 14, // Opcode: BRCFDir_nt, DecodeIdx: 14 |
501 | /* 1499 */ MCD::OPC_FilterValueOrFail, 1, |
502 | /* 1501 */ MCD::OPC_Decode, 227, 3, 15, // Opcode: BRCFDrr_nt, DecodeIdx: 15 |
503 | /* 1505 */ MCD::OPC_FilterValueOrFail, 7, |
504 | /* 1507 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
505 | /* 1510 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1574 |
506 | /* 1514 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
507 | /* 1517 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1568 |
508 | /* 1521 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
509 | /* 1524 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1544 |
510 | /* 1528 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1564 |
511 | /* 1534 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1564 |
512 | /* 1540 */ MCD::OPC_Decode, 225, 3, 11, // Opcode: BRCFDna_t, DecodeIdx: 11 |
513 | /* 1544 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1564 |
514 | /* 1548 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1564 |
515 | /* 1554 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1564 |
516 | /* 1560 */ MCD::OPC_Decode, 216, 3, 11, // Opcode: BRCFDa_t, DecodeIdx: 11 |
517 | /* 1564 */ MCD::OPC_Decode, 222, 3, 12, // Opcode: BRCFDiz_t, DecodeIdx: 12 |
518 | /* 1568 */ MCD::OPC_FilterValueOrFail, 1, |
519 | /* 1570 */ MCD::OPC_Decode, 231, 3, 13, // Opcode: BRCFDrz_t, DecodeIdx: 13 |
520 | /* 1574 */ MCD::OPC_FilterValueOrFail, 1, |
521 | /* 1576 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
522 | /* 1579 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1587 |
523 | /* 1583 */ MCD::OPC_Decode, 219, 3, 14, // Opcode: BRCFDir_t, DecodeIdx: 14 |
524 | /* 1587 */ MCD::OPC_FilterValueOrFail, 1, |
525 | /* 1589 */ MCD::OPC_Decode, 228, 3, 15, // Opcode: BRCFDrr_t, DecodeIdx: 15 |
526 | /* 1593 */ MCD::OPC_FilterValue, 49, 29, 2, // Skip to: 2138 |
527 | /* 1597 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
528 | /* 1600 */ MCD::OPC_FilterValue, 0, 86, 0, // Skip to: 1690 |
529 | /* 1604 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
530 | /* 1607 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1671 |
531 | /* 1611 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
532 | /* 1614 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1665 |
533 | /* 1618 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
534 | /* 1621 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1641 |
535 | /* 1625 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1661 |
536 | /* 1631 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1661 |
537 | /* 1637 */ MCD::OPC_Decode, 149, 4, 11, // Opcode: BRCFWna, DecodeIdx: 11 |
538 | /* 1641 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1661 |
539 | /* 1645 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1661 |
540 | /* 1651 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1661 |
541 | /* 1657 */ MCD::OPC_Decode, 140, 4, 11, // Opcode: BRCFWa, DecodeIdx: 11 |
542 | /* 1661 */ MCD::OPC_Decode, 146, 4, 12, // Opcode: BRCFWiz, DecodeIdx: 12 |
543 | /* 1665 */ MCD::OPC_FilterValueOrFail, 1, |
544 | /* 1667 */ MCD::OPC_Decode, 155, 4, 16, // Opcode: BRCFWrz, DecodeIdx: 16 |
545 | /* 1671 */ MCD::OPC_FilterValueOrFail, 1, |
546 | /* 1673 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
547 | /* 1676 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1684 |
548 | /* 1680 */ MCD::OPC_Decode, 143, 4, 17, // Opcode: BRCFWir, DecodeIdx: 17 |
549 | /* 1684 */ MCD::OPC_FilterValueOrFail, 1, |
550 | /* 1686 */ MCD::OPC_Decode, 152, 4, 18, // Opcode: BRCFWrr, DecodeIdx: 18 |
551 | /* 1690 */ MCD::OPC_FilterValue, 2, 86, 0, // Skip to: 1780 |
552 | /* 1694 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
553 | /* 1697 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1761 |
554 | /* 1701 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
555 | /* 1704 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1755 |
556 | /* 1708 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
557 | /* 1711 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1731 |
558 | /* 1715 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1751 |
559 | /* 1721 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1751 |
560 | /* 1727 */ MCD::OPC_Decode, 150, 4, 11, // Opcode: BRCFWna_nt, DecodeIdx: 11 |
561 | /* 1731 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1751 |
562 | /* 1735 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1751 |
563 | /* 1741 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1751 |
564 | /* 1747 */ MCD::OPC_Decode, 141, 4, 11, // Opcode: BRCFWa_nt, DecodeIdx: 11 |
565 | /* 1751 */ MCD::OPC_Decode, 147, 4, 12, // Opcode: BRCFWiz_nt, DecodeIdx: 12 |
566 | /* 1755 */ MCD::OPC_FilterValueOrFail, 1, |
567 | /* 1757 */ MCD::OPC_Decode, 156, 4, 16, // Opcode: BRCFWrz_nt, DecodeIdx: 16 |
568 | /* 1761 */ MCD::OPC_FilterValueOrFail, 1, |
569 | /* 1763 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
570 | /* 1766 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1774 |
571 | /* 1770 */ MCD::OPC_Decode, 144, 4, 17, // Opcode: BRCFWir_nt, DecodeIdx: 17 |
572 | /* 1774 */ MCD::OPC_FilterValueOrFail, 1, |
573 | /* 1776 */ MCD::OPC_Decode, 153, 4, 18, // Opcode: BRCFWrr_nt, DecodeIdx: 18 |
574 | /* 1780 */ MCD::OPC_FilterValue, 3, 86, 0, // Skip to: 1870 |
575 | /* 1784 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
576 | /* 1787 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1851 |
577 | /* 1791 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
578 | /* 1794 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1845 |
579 | /* 1798 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
580 | /* 1801 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1821 |
581 | /* 1805 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1841 |
582 | /* 1811 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1841 |
583 | /* 1817 */ MCD::OPC_Decode, 151, 4, 11, // Opcode: BRCFWna_t, DecodeIdx: 11 |
584 | /* 1821 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1841 |
585 | /* 1825 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1841 |
586 | /* 1831 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1841 |
587 | /* 1837 */ MCD::OPC_Decode, 142, 4, 11, // Opcode: BRCFWa_t, DecodeIdx: 11 |
588 | /* 1841 */ MCD::OPC_Decode, 148, 4, 12, // Opcode: BRCFWiz_t, DecodeIdx: 12 |
589 | /* 1845 */ MCD::OPC_FilterValueOrFail, 1, |
590 | /* 1847 */ MCD::OPC_Decode, 157, 4, 16, // Opcode: BRCFWrz_t, DecodeIdx: 16 |
591 | /* 1851 */ MCD::OPC_FilterValueOrFail, 1, |
592 | /* 1853 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
593 | /* 1856 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1864 |
594 | /* 1860 */ MCD::OPC_Decode, 145, 4, 17, // Opcode: BRCFWir_t, DecodeIdx: 17 |
595 | /* 1864 */ MCD::OPC_FilterValueOrFail, 1, |
596 | /* 1866 */ MCD::OPC_Decode, 154, 4, 18, // Opcode: BRCFWrr_t, DecodeIdx: 18 |
597 | /* 1870 */ MCD::OPC_FilterValue, 4, 86, 0, // Skip to: 1960 |
598 | /* 1874 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
599 | /* 1877 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 1941 |
600 | /* 1881 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
601 | /* 1884 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 1935 |
602 | /* 1888 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
603 | /* 1891 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 1911 |
604 | /* 1895 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 1931 |
605 | /* 1901 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 1931 |
606 | /* 1907 */ MCD::OPC_Decode, 131, 4, 11, // Opcode: BRCFSna, DecodeIdx: 11 |
607 | /* 1911 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 1931 |
608 | /* 1915 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 1931 |
609 | /* 1921 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 1931 |
610 | /* 1927 */ MCD::OPC_Decode, 250, 3, 11, // Opcode: BRCFSa, DecodeIdx: 11 |
611 | /* 1931 */ MCD::OPC_Decode, 128, 4, 12, // Opcode: BRCFSiz, DecodeIdx: 12 |
612 | /* 1935 */ MCD::OPC_FilterValueOrFail, 1, |
613 | /* 1937 */ MCD::OPC_Decode, 137, 4, 19, // Opcode: BRCFSrz, DecodeIdx: 19 |
614 | /* 1941 */ MCD::OPC_FilterValueOrFail, 1, |
615 | /* 1943 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
616 | /* 1946 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 1954 |
617 | /* 1950 */ MCD::OPC_Decode, 253, 3, 20, // Opcode: BRCFSir, DecodeIdx: 20 |
618 | /* 1954 */ MCD::OPC_FilterValueOrFail, 1, |
619 | /* 1956 */ MCD::OPC_Decode, 134, 4, 21, // Opcode: BRCFSrr, DecodeIdx: 21 |
620 | /* 1960 */ MCD::OPC_FilterValue, 6, 86, 0, // Skip to: 2050 |
621 | /* 1964 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
622 | /* 1967 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 2031 |
623 | /* 1971 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
624 | /* 1974 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 2025 |
625 | /* 1978 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
626 | /* 1981 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 2001 |
627 | /* 1985 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 2021 |
628 | /* 1991 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 2021 |
629 | /* 1997 */ MCD::OPC_Decode, 132, 4, 11, // Opcode: BRCFSna_nt, DecodeIdx: 11 |
630 | /* 2001 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 2021 |
631 | /* 2005 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 2021 |
632 | /* 2011 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 2021 |
633 | /* 2017 */ MCD::OPC_Decode, 251, 3, 11, // Opcode: BRCFSa_nt, DecodeIdx: 11 |
634 | /* 2021 */ MCD::OPC_Decode, 129, 4, 12, // Opcode: BRCFSiz_nt, DecodeIdx: 12 |
635 | /* 2025 */ MCD::OPC_FilterValueOrFail, 1, |
636 | /* 2027 */ MCD::OPC_Decode, 138, 4, 19, // Opcode: BRCFSrz_nt, DecodeIdx: 19 |
637 | /* 2031 */ MCD::OPC_FilterValueOrFail, 1, |
638 | /* 2033 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
639 | /* 2036 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 2044 |
640 | /* 2040 */ MCD::OPC_Decode, 254, 3, 20, // Opcode: BRCFSir_nt, DecodeIdx: 20 |
641 | /* 2044 */ MCD::OPC_FilterValueOrFail, 1, |
642 | /* 2046 */ MCD::OPC_Decode, 135, 4, 21, // Opcode: BRCFSrr_nt, DecodeIdx: 21 |
643 | /* 2050 */ MCD::OPC_FilterValueOrFail, 7, |
644 | /* 2052 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
645 | /* 2055 */ MCD::OPC_FilterValue, 0, 60, 0, // Skip to: 2119 |
646 | /* 2059 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
647 | /* 2062 */ MCD::OPC_FilterValue, 0, 47, 0, // Skip to: 2113 |
648 | /* 2066 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
649 | /* 2069 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 2089 |
650 | /* 2073 */ MCD::OPC_CheckField, 40, 7, 0, 30, 0, // Skip to: 2109 |
651 | /* 2079 */ MCD::OPC_CheckField, 32, 7, 0, 24, 0, // Skip to: 2109 |
652 | /* 2085 */ MCD::OPC_Decode, 133, 4, 11, // Opcode: BRCFSna_t, DecodeIdx: 11 |
653 | /* 2089 */ MCD::OPC_FilterValue, 15, 16, 0, // Skip to: 2109 |
654 | /* 2093 */ MCD::OPC_CheckField, 40, 7, 0, 10, 0, // Skip to: 2109 |
655 | /* 2099 */ MCD::OPC_CheckField, 32, 7, 0, 4, 0, // Skip to: 2109 |
656 | /* 2105 */ MCD::OPC_Decode, 252, 3, 11, // Opcode: BRCFSa_t, DecodeIdx: 11 |
657 | /* 2109 */ MCD::OPC_Decode, 130, 4, 12, // Opcode: BRCFSiz_t, DecodeIdx: 12 |
658 | /* 2113 */ MCD::OPC_FilterValueOrFail, 1, |
659 | /* 2115 */ MCD::OPC_Decode, 139, 4, 19, // Opcode: BRCFSrz_t, DecodeIdx: 19 |
660 | /* 2119 */ MCD::OPC_FilterValueOrFail, 1, |
661 | /* 2121 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
662 | /* 2124 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 2132 |
663 | /* 2128 */ MCD::OPC_Decode, 255, 3, 20, // Opcode: BRCFSir_t, DecodeIdx: 20 |
664 | /* 2132 */ MCD::OPC_FilterValueOrFail, 1, |
665 | /* 2134 */ MCD::OPC_Decode, 136, 4, 21, // Opcode: BRCFSrr_t, DecodeIdx: 21 |
666 | /* 2138 */ MCD::OPC_FilterValue, 50, 72, 1, // Skip to: 2470 |
667 | /* 2142 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
668 | /* 2145 */ MCD::OPC_FilterValue, 0, 105, 0, // Skip to: 2254 |
669 | /* 2149 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
670 | /* 2152 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2204 |
671 | /* 2156 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
672 | /* 2159 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2198 |
673 | /* 2163 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
674 | /* 2166 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2180 |
675 | /* 2170 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2194 |
676 | /* 2176 */ MCD::OPC_Decode, 157, 3, 22, // Opcode: BCFLnazi, DecodeIdx: 22 |
677 | /* 2180 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2194 |
678 | /* 2184 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2194 |
679 | /* 2190 */ MCD::OPC_Decode, 145, 3, 22, // Opcode: BCFLazi, DecodeIdx: 22 |
680 | /* 2194 */ MCD::OPC_Decode, 151, 3, 23, // Opcode: BCFLizi, DecodeIdx: 23 |
681 | /* 2198 */ MCD::OPC_FilterValueOrFail, 1, |
682 | /* 2200 */ MCD::OPC_Decode, 163, 3, 23, // Opcode: BCFLrzi, DecodeIdx: 23 |
683 | /* 2204 */ MCD::OPC_FilterValueOrFail, 1, |
684 | /* 2206 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
685 | /* 2209 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2248 |
686 | /* 2213 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
687 | /* 2216 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2230 |
688 | /* 2220 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2244 |
689 | /* 2226 */ MCD::OPC_Decode, 154, 3, 22, // Opcode: BCFLnari, DecodeIdx: 22 |
690 | /* 2230 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2244 |
691 | /* 2234 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2244 |
692 | /* 2240 */ MCD::OPC_Decode, 142, 3, 22, // Opcode: BCFLari, DecodeIdx: 22 |
693 | /* 2244 */ MCD::OPC_Decode, 148, 3, 23, // Opcode: BCFLiri, DecodeIdx: 23 |
694 | /* 2248 */ MCD::OPC_FilterValueOrFail, 1, |
695 | /* 2250 */ MCD::OPC_Decode, 160, 3, 23, // Opcode: BCFLrri, DecodeIdx: 23 |
696 | /* 2254 */ MCD::OPC_FilterValue, 2, 105, 0, // Skip to: 2363 |
697 | /* 2258 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
698 | /* 2261 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2313 |
699 | /* 2265 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
700 | /* 2268 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2307 |
701 | /* 2272 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
702 | /* 2275 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2289 |
703 | /* 2279 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2303 |
704 | /* 2285 */ MCD::OPC_Decode, 158, 3, 22, // Opcode: BCFLnazi_nt, DecodeIdx: 22 |
705 | /* 2289 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2303 |
706 | /* 2293 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2303 |
707 | /* 2299 */ MCD::OPC_Decode, 146, 3, 22, // Opcode: BCFLazi_nt, DecodeIdx: 22 |
708 | /* 2303 */ MCD::OPC_Decode, 152, 3, 23, // Opcode: BCFLizi_nt, DecodeIdx: 23 |
709 | /* 2307 */ MCD::OPC_FilterValueOrFail, 1, |
710 | /* 2309 */ MCD::OPC_Decode, 164, 3, 23, // Opcode: BCFLrzi_nt, DecodeIdx: 23 |
711 | /* 2313 */ MCD::OPC_FilterValueOrFail, 1, |
712 | /* 2315 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
713 | /* 2318 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2357 |
714 | /* 2322 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
715 | /* 2325 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2339 |
716 | /* 2329 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2353 |
717 | /* 2335 */ MCD::OPC_Decode, 155, 3, 22, // Opcode: BCFLnari_nt, DecodeIdx: 22 |
718 | /* 2339 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2353 |
719 | /* 2343 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2353 |
720 | /* 2349 */ MCD::OPC_Decode, 143, 3, 22, // Opcode: BCFLari_nt, DecodeIdx: 22 |
721 | /* 2353 */ MCD::OPC_Decode, 149, 3, 23, // Opcode: BCFLiri_nt, DecodeIdx: 23 |
722 | /* 2357 */ MCD::OPC_FilterValueOrFail, 1, |
723 | /* 2359 */ MCD::OPC_Decode, 161, 3, 23, // Opcode: BCFLrri_nt, DecodeIdx: 23 |
724 | /* 2363 */ MCD::OPC_FilterValueOrFail, 3, |
725 | /* 2365 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
726 | /* 2368 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2420 |
727 | /* 2372 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
728 | /* 2375 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2414 |
729 | /* 2379 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
730 | /* 2382 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2396 |
731 | /* 2386 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2410 |
732 | /* 2392 */ MCD::OPC_Decode, 159, 3, 22, // Opcode: BCFLnazi_t, DecodeIdx: 22 |
733 | /* 2396 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2410 |
734 | /* 2400 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2410 |
735 | /* 2406 */ MCD::OPC_Decode, 147, 3, 22, // Opcode: BCFLazi_t, DecodeIdx: 22 |
736 | /* 2410 */ MCD::OPC_Decode, 153, 3, 23, // Opcode: BCFLizi_t, DecodeIdx: 23 |
737 | /* 2414 */ MCD::OPC_FilterValueOrFail, 1, |
738 | /* 2416 */ MCD::OPC_Decode, 165, 3, 23, // Opcode: BCFLrzi_t, DecodeIdx: 23 |
739 | /* 2420 */ MCD::OPC_FilterValueOrFail, 1, |
740 | /* 2422 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
741 | /* 2425 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2464 |
742 | /* 2429 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
743 | /* 2432 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2446 |
744 | /* 2436 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2460 |
745 | /* 2442 */ MCD::OPC_Decode, 156, 3, 22, // Opcode: BCFLnari_t, DecodeIdx: 22 |
746 | /* 2446 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2460 |
747 | /* 2450 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2460 |
748 | /* 2456 */ MCD::OPC_Decode, 144, 3, 22, // Opcode: BCFLari_t, DecodeIdx: 22 |
749 | /* 2460 */ MCD::OPC_Decode, 150, 3, 23, // Opcode: BCFLiri_t, DecodeIdx: 23 |
750 | /* 2464 */ MCD::OPC_FilterValueOrFail, 1, |
751 | /* 2466 */ MCD::OPC_Decode, 162, 3, 23, // Opcode: BCFLrri_t, DecodeIdx: 23 |
752 | /* 2470 */ MCD::OPC_FilterValue, 54, 72, 1, // Skip to: 2802 |
753 | /* 2474 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
754 | /* 2477 */ MCD::OPC_FilterValue, 0, 105, 0, // Skip to: 2586 |
755 | /* 2481 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
756 | /* 2484 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2536 |
757 | /* 2488 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
758 | /* 2491 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2530 |
759 | /* 2495 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
760 | /* 2498 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2512 |
761 | /* 2502 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2526 |
762 | /* 2508 */ MCD::OPC_Decode, 205, 3, 22, // Opcode: BCFWnazi, DecodeIdx: 22 |
763 | /* 2512 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2526 |
764 | /* 2516 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2526 |
765 | /* 2522 */ MCD::OPC_Decode, 193, 3, 22, // Opcode: BCFWazi, DecodeIdx: 22 |
766 | /* 2526 */ MCD::OPC_Decode, 199, 3, 23, // Opcode: BCFWizi, DecodeIdx: 23 |
767 | /* 2530 */ MCD::OPC_FilterValueOrFail, 1, |
768 | /* 2532 */ MCD::OPC_Decode, 211, 3, 23, // Opcode: BCFWrzi, DecodeIdx: 23 |
769 | /* 2536 */ MCD::OPC_FilterValueOrFail, 1, |
770 | /* 2538 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
771 | /* 2541 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2580 |
772 | /* 2545 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
773 | /* 2548 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2562 |
774 | /* 2552 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2576 |
775 | /* 2558 */ MCD::OPC_Decode, 202, 3, 22, // Opcode: BCFWnari, DecodeIdx: 22 |
776 | /* 2562 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2576 |
777 | /* 2566 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2576 |
778 | /* 2572 */ MCD::OPC_Decode, 190, 3, 22, // Opcode: BCFWari, DecodeIdx: 22 |
779 | /* 2576 */ MCD::OPC_Decode, 196, 3, 23, // Opcode: BCFWiri, DecodeIdx: 23 |
780 | /* 2580 */ MCD::OPC_FilterValueOrFail, 1, |
781 | /* 2582 */ MCD::OPC_Decode, 208, 3, 23, // Opcode: BCFWrri, DecodeIdx: 23 |
782 | /* 2586 */ MCD::OPC_FilterValue, 2, 105, 0, // Skip to: 2695 |
783 | /* 2590 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
784 | /* 2593 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2645 |
785 | /* 2597 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
786 | /* 2600 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2639 |
787 | /* 2604 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
788 | /* 2607 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2621 |
789 | /* 2611 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2635 |
790 | /* 2617 */ MCD::OPC_Decode, 206, 3, 22, // Opcode: BCFWnazi_nt, DecodeIdx: 22 |
791 | /* 2621 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2635 |
792 | /* 2625 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2635 |
793 | /* 2631 */ MCD::OPC_Decode, 194, 3, 22, // Opcode: BCFWazi_nt, DecodeIdx: 22 |
794 | /* 2635 */ MCD::OPC_Decode, 200, 3, 23, // Opcode: BCFWizi_nt, DecodeIdx: 23 |
795 | /* 2639 */ MCD::OPC_FilterValueOrFail, 1, |
796 | /* 2641 */ MCD::OPC_Decode, 212, 3, 23, // Opcode: BCFWrzi_nt, DecodeIdx: 23 |
797 | /* 2645 */ MCD::OPC_FilterValueOrFail, 1, |
798 | /* 2647 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
799 | /* 2650 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2689 |
800 | /* 2654 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
801 | /* 2657 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2671 |
802 | /* 2661 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2685 |
803 | /* 2667 */ MCD::OPC_Decode, 203, 3, 22, // Opcode: BCFWnari_nt, DecodeIdx: 22 |
804 | /* 2671 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2685 |
805 | /* 2675 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2685 |
806 | /* 2681 */ MCD::OPC_Decode, 191, 3, 22, // Opcode: BCFWari_nt, DecodeIdx: 22 |
807 | /* 2685 */ MCD::OPC_Decode, 197, 3, 23, // Opcode: BCFWiri_nt, DecodeIdx: 23 |
808 | /* 2689 */ MCD::OPC_FilterValueOrFail, 1, |
809 | /* 2691 */ MCD::OPC_Decode, 209, 3, 23, // Opcode: BCFWrri_nt, DecodeIdx: 23 |
810 | /* 2695 */ MCD::OPC_FilterValueOrFail, 3, |
811 | /* 2697 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
812 | /* 2700 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2752 |
813 | /* 2704 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
814 | /* 2707 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2746 |
815 | /* 2711 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
816 | /* 2714 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2728 |
817 | /* 2718 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2742 |
818 | /* 2724 */ MCD::OPC_Decode, 207, 3, 22, // Opcode: BCFWnazi_t, DecodeIdx: 22 |
819 | /* 2728 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2742 |
820 | /* 2732 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2742 |
821 | /* 2738 */ MCD::OPC_Decode, 195, 3, 22, // Opcode: BCFWazi_t, DecodeIdx: 22 |
822 | /* 2742 */ MCD::OPC_Decode, 201, 3, 23, // Opcode: BCFWizi_t, DecodeIdx: 23 |
823 | /* 2746 */ MCD::OPC_FilterValueOrFail, 1, |
824 | /* 2748 */ MCD::OPC_Decode, 213, 3, 23, // Opcode: BCFWrzi_t, DecodeIdx: 23 |
825 | /* 2752 */ MCD::OPC_FilterValueOrFail, 1, |
826 | /* 2754 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
827 | /* 2757 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2796 |
828 | /* 2761 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
829 | /* 2764 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2778 |
830 | /* 2768 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2792 |
831 | /* 2774 */ MCD::OPC_Decode, 204, 3, 22, // Opcode: BCFWnari_t, DecodeIdx: 22 |
832 | /* 2778 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2792 |
833 | /* 2782 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2792 |
834 | /* 2788 */ MCD::OPC_Decode, 192, 3, 22, // Opcode: BCFWari_t, DecodeIdx: 22 |
835 | /* 2792 */ MCD::OPC_Decode, 198, 3, 23, // Opcode: BCFWiri_t, DecodeIdx: 23 |
836 | /* 2796 */ MCD::OPC_FilterValueOrFail, 1, |
837 | /* 2798 */ MCD::OPC_Decode, 210, 3, 23, // Opcode: BCFWrri_t, DecodeIdx: 23 |
838 | /* 2802 */ MCD::OPC_FilterValue, 56, 72, 1, // Skip to: 3134 |
839 | /* 2806 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
840 | /* 2809 */ MCD::OPC_FilterValue, 0, 105, 0, // Skip to: 2918 |
841 | /* 2813 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
842 | /* 2816 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2868 |
843 | /* 2820 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
844 | /* 2823 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2862 |
845 | /* 2827 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
846 | /* 2830 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2844 |
847 | /* 2834 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2858 |
848 | /* 2840 */ MCD::OPC_Decode, 133, 3, 22, // Opcode: BCFDnazi, DecodeIdx: 22 |
849 | /* 2844 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2858 |
850 | /* 2848 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2858 |
851 | /* 2854 */ MCD::OPC_Decode, 249, 2, 22, // Opcode: BCFDazi, DecodeIdx: 22 |
852 | /* 2858 */ MCD::OPC_Decode, 255, 2, 23, // Opcode: BCFDizi, DecodeIdx: 23 |
853 | /* 2862 */ MCD::OPC_FilterValueOrFail, 1, |
854 | /* 2864 */ MCD::OPC_Decode, 139, 3, 23, // Opcode: BCFDrzi, DecodeIdx: 23 |
855 | /* 2868 */ MCD::OPC_FilterValueOrFail, 1, |
856 | /* 2870 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
857 | /* 2873 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2912 |
858 | /* 2877 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
859 | /* 2880 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2894 |
860 | /* 2884 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2908 |
861 | /* 2890 */ MCD::OPC_Decode, 130, 3, 22, // Opcode: BCFDnari, DecodeIdx: 22 |
862 | /* 2894 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2908 |
863 | /* 2898 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2908 |
864 | /* 2904 */ MCD::OPC_Decode, 246, 2, 22, // Opcode: BCFDari, DecodeIdx: 22 |
865 | /* 2908 */ MCD::OPC_Decode, 252, 2, 23, // Opcode: BCFDiri, DecodeIdx: 23 |
866 | /* 2912 */ MCD::OPC_FilterValueOrFail, 1, |
867 | /* 2914 */ MCD::OPC_Decode, 136, 3, 23, // Opcode: BCFDrri, DecodeIdx: 23 |
868 | /* 2918 */ MCD::OPC_FilterValue, 2, 105, 0, // Skip to: 3027 |
869 | /* 2922 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
870 | /* 2925 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 2977 |
871 | /* 2929 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
872 | /* 2932 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 2971 |
873 | /* 2936 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
874 | /* 2939 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 2953 |
875 | /* 2943 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 2967 |
876 | /* 2949 */ MCD::OPC_Decode, 134, 3, 22, // Opcode: BCFDnazi_nt, DecodeIdx: 22 |
877 | /* 2953 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 2967 |
878 | /* 2957 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 2967 |
879 | /* 2963 */ MCD::OPC_Decode, 250, 2, 22, // Opcode: BCFDazi_nt, DecodeIdx: 22 |
880 | /* 2967 */ MCD::OPC_Decode, 128, 3, 23, // Opcode: BCFDizi_nt, DecodeIdx: 23 |
881 | /* 2971 */ MCD::OPC_FilterValueOrFail, 1, |
882 | /* 2973 */ MCD::OPC_Decode, 140, 3, 23, // Opcode: BCFDrzi_nt, DecodeIdx: 23 |
883 | /* 2977 */ MCD::OPC_FilterValueOrFail, 1, |
884 | /* 2979 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
885 | /* 2982 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3021 |
886 | /* 2986 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
887 | /* 2989 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3003 |
888 | /* 2993 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3017 |
889 | /* 2999 */ MCD::OPC_Decode, 131, 3, 22, // Opcode: BCFDnari_nt, DecodeIdx: 22 |
890 | /* 3003 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3017 |
891 | /* 3007 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3017 |
892 | /* 3013 */ MCD::OPC_Decode, 247, 2, 22, // Opcode: BCFDari_nt, DecodeIdx: 22 |
893 | /* 3017 */ MCD::OPC_Decode, 253, 2, 23, // Opcode: BCFDiri_nt, DecodeIdx: 23 |
894 | /* 3021 */ MCD::OPC_FilterValueOrFail, 1, |
895 | /* 3023 */ MCD::OPC_Decode, 137, 3, 23, // Opcode: BCFDrri_nt, DecodeIdx: 23 |
896 | /* 3027 */ MCD::OPC_FilterValueOrFail, 3, |
897 | /* 3029 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
898 | /* 3032 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 3084 |
899 | /* 3036 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
900 | /* 3039 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3078 |
901 | /* 3043 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
902 | /* 3046 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3060 |
903 | /* 3050 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3074 |
904 | /* 3056 */ MCD::OPC_Decode, 135, 3, 22, // Opcode: BCFDnazi_t, DecodeIdx: 22 |
905 | /* 3060 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3074 |
906 | /* 3064 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3074 |
907 | /* 3070 */ MCD::OPC_Decode, 251, 2, 22, // Opcode: BCFDazi_t, DecodeIdx: 22 |
908 | /* 3074 */ MCD::OPC_Decode, 129, 3, 23, // Opcode: BCFDizi_t, DecodeIdx: 23 |
909 | /* 3078 */ MCD::OPC_FilterValueOrFail, 1, |
910 | /* 3080 */ MCD::OPC_Decode, 141, 3, 23, // Opcode: BCFDrzi_t, DecodeIdx: 23 |
911 | /* 3084 */ MCD::OPC_FilterValueOrFail, 1, |
912 | /* 3086 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
913 | /* 3089 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3128 |
914 | /* 3093 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
915 | /* 3096 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3110 |
916 | /* 3100 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3124 |
917 | /* 3106 */ MCD::OPC_Decode, 132, 3, 22, // Opcode: BCFDnari_t, DecodeIdx: 22 |
918 | /* 3110 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3124 |
919 | /* 3114 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3124 |
920 | /* 3120 */ MCD::OPC_Decode, 248, 2, 22, // Opcode: BCFDari_t, DecodeIdx: 22 |
921 | /* 3124 */ MCD::OPC_Decode, 254, 2, 23, // Opcode: BCFDiri_t, DecodeIdx: 23 |
922 | /* 3128 */ MCD::OPC_FilterValueOrFail, 1, |
923 | /* 3130 */ MCD::OPC_Decode, 138, 3, 23, // Opcode: BCFDrri_t, DecodeIdx: 23 |
924 | /* 3134 */ MCD::OPC_FilterValue, 57, 72, 1, // Skip to: 3466 |
925 | /* 3138 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
926 | /* 3141 */ MCD::OPC_FilterValue, 0, 105, 0, // Skip to: 3250 |
927 | /* 3145 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
928 | /* 3148 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 3200 |
929 | /* 3152 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
930 | /* 3155 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3194 |
931 | /* 3159 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
932 | /* 3162 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3176 |
933 | /* 3166 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3190 |
934 | /* 3172 */ MCD::OPC_Decode, 181, 3, 22, // Opcode: BCFSnazi, DecodeIdx: 22 |
935 | /* 3176 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3190 |
936 | /* 3180 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3190 |
937 | /* 3186 */ MCD::OPC_Decode, 169, 3, 22, // Opcode: BCFSazi, DecodeIdx: 22 |
938 | /* 3190 */ MCD::OPC_Decode, 175, 3, 23, // Opcode: BCFSizi, DecodeIdx: 23 |
939 | /* 3194 */ MCD::OPC_FilterValueOrFail, 1, |
940 | /* 3196 */ MCD::OPC_Decode, 187, 3, 23, // Opcode: BCFSrzi, DecodeIdx: 23 |
941 | /* 3200 */ MCD::OPC_FilterValueOrFail, 1, |
942 | /* 3202 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
943 | /* 3205 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3244 |
944 | /* 3209 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
945 | /* 3212 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3226 |
946 | /* 3216 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3240 |
947 | /* 3222 */ MCD::OPC_Decode, 178, 3, 22, // Opcode: BCFSnari, DecodeIdx: 22 |
948 | /* 3226 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3240 |
949 | /* 3230 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3240 |
950 | /* 3236 */ MCD::OPC_Decode, 166, 3, 22, // Opcode: BCFSari, DecodeIdx: 22 |
951 | /* 3240 */ MCD::OPC_Decode, 172, 3, 23, // Opcode: BCFSiri, DecodeIdx: 23 |
952 | /* 3244 */ MCD::OPC_FilterValueOrFail, 1, |
953 | /* 3246 */ MCD::OPC_Decode, 184, 3, 23, // Opcode: BCFSrri, DecodeIdx: 23 |
954 | /* 3250 */ MCD::OPC_FilterValue, 2, 105, 0, // Skip to: 3359 |
955 | /* 3254 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
956 | /* 3257 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 3309 |
957 | /* 3261 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
958 | /* 3264 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3303 |
959 | /* 3268 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
960 | /* 3271 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3285 |
961 | /* 3275 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3299 |
962 | /* 3281 */ MCD::OPC_Decode, 182, 3, 22, // Opcode: BCFSnazi_nt, DecodeIdx: 22 |
963 | /* 3285 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3299 |
964 | /* 3289 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3299 |
965 | /* 3295 */ MCD::OPC_Decode, 170, 3, 22, // Opcode: BCFSazi_nt, DecodeIdx: 22 |
966 | /* 3299 */ MCD::OPC_Decode, 176, 3, 23, // Opcode: BCFSizi_nt, DecodeIdx: 23 |
967 | /* 3303 */ MCD::OPC_FilterValueOrFail, 1, |
968 | /* 3305 */ MCD::OPC_Decode, 188, 3, 23, // Opcode: BCFSrzi_nt, DecodeIdx: 23 |
969 | /* 3309 */ MCD::OPC_FilterValueOrFail, 1, |
970 | /* 3311 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
971 | /* 3314 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3353 |
972 | /* 3318 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
973 | /* 3321 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3335 |
974 | /* 3325 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3349 |
975 | /* 3331 */ MCD::OPC_Decode, 179, 3, 22, // Opcode: BCFSnari_nt, DecodeIdx: 22 |
976 | /* 3335 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3349 |
977 | /* 3339 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3349 |
978 | /* 3345 */ MCD::OPC_Decode, 167, 3, 22, // Opcode: BCFSari_nt, DecodeIdx: 22 |
979 | /* 3349 */ MCD::OPC_Decode, 173, 3, 23, // Opcode: BCFSiri_nt, DecodeIdx: 23 |
980 | /* 3353 */ MCD::OPC_FilterValueOrFail, 1, |
981 | /* 3355 */ MCD::OPC_Decode, 185, 3, 23, // Opcode: BCFSrri_nt, DecodeIdx: 23 |
982 | /* 3359 */ MCD::OPC_FilterValueOrFail, 3, |
983 | /* 3361 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
984 | /* 3364 */ MCD::OPC_FilterValue, 0, 48, 0, // Skip to: 3416 |
985 | /* 3368 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
986 | /* 3371 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3410 |
987 | /* 3375 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
988 | /* 3378 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3392 |
989 | /* 3382 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3406 |
990 | /* 3388 */ MCD::OPC_Decode, 183, 3, 22, // Opcode: BCFSnazi_t, DecodeIdx: 22 |
991 | /* 3392 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3406 |
992 | /* 3396 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3406 |
993 | /* 3402 */ MCD::OPC_Decode, 171, 3, 22, // Opcode: BCFSazi_t, DecodeIdx: 22 |
994 | /* 3406 */ MCD::OPC_Decode, 177, 3, 23, // Opcode: BCFSizi_t, DecodeIdx: 23 |
995 | /* 3410 */ MCD::OPC_FilterValueOrFail, 1, |
996 | /* 3412 */ MCD::OPC_Decode, 189, 3, 23, // Opcode: BCFSrzi_t, DecodeIdx: 23 |
997 | /* 3416 */ MCD::OPC_FilterValueOrFail, 1, |
998 | /* 3418 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
999 | /* 3421 */ MCD::OPC_FilterValue, 0, 35, 0, // Skip to: 3460 |
1000 | /* 3425 */ MCD::OPC_ExtractField, 48, 4, // Inst{51-48} ... |
1001 | /* 3428 */ MCD::OPC_FilterValue, 0, 10, 0, // Skip to: 3442 |
1002 | /* 3432 */ MCD::OPC_CheckField, 40, 7, 0, 18, 0, // Skip to: 3456 |
1003 | /* 3438 */ MCD::OPC_Decode, 180, 3, 22, // Opcode: BCFSnari_t, DecodeIdx: 22 |
1004 | /* 3442 */ MCD::OPC_FilterValue, 15, 10, 0, // Skip to: 3456 |
1005 | /* 3446 */ MCD::OPC_CheckField, 40, 7, 0, 4, 0, // Skip to: 3456 |
1006 | /* 3452 */ MCD::OPC_Decode, 168, 3, 22, // Opcode: BCFSari_t, DecodeIdx: 22 |
1007 | /* 3456 */ MCD::OPC_Decode, 174, 3, 23, // Opcode: BCFSiri_t, DecodeIdx: 23 |
1008 | /* 3460 */ MCD::OPC_FilterValueOrFail, 1, |
1009 | /* 3462 */ MCD::OPC_Decode, 186, 3, 23, // Opcode: BCFSrri_t, DecodeIdx: 23 |
1010 | /* 3466 */ MCD::OPC_FilterValue, 62, 25, 0, // Skip to: 3495 |
1011 | /* 3470 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1012 | /* 3473 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3485 |
1013 | /* 3477 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1014 | /* 3481 */ MCD::OPC_Decode, 225, 4, 24, // Opcode: CVTSDi, DecodeIdx: 24 |
1015 | /* 3485 */ MCD::OPC_FilterValueOrFail, 1, |
1016 | /* 3487 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1017 | /* 3491 */ MCD::OPC_Decode, 226, 4, 25, // Opcode: CVTSDr, DecodeIdx: 25 |
1018 | /* 3495 */ MCD::OPC_FilterValue, 63, 25, 0, // Skip to: 3524 |
1019 | /* 3499 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1020 | /* 3502 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3514 |
1021 | /* 3506 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1022 | /* 3510 */ MCD::OPC_Decode, 227, 4, 24, // Opcode: CVTSQi, DecodeIdx: 24 |
1023 | /* 3514 */ MCD::OPC_FilterValueOrFail, 1, |
1024 | /* 3516 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1025 | /* 3520 */ MCD::OPC_Decode, 228, 4, 26, // Opcode: CVTSQr, DecodeIdx: 26 |
1026 | /* 3524 */ MCD::OPC_FilterValue, 64, 33, 0, // Skip to: 3561 |
1027 | /* 3528 */ MCD::OPC_ExtractField, 0, 40, // Inst{39-0} ... |
1028 | /* 3531 */ MCD::OPC_FilterValueOrFail, 0, |
1029 | /* 3533 */ MCD::OPC_ExtractField, 43, 5, // Inst{47-43} ... |
1030 | /* 3536 */ MCD::OPC_FilterValueOrFail, 0, |
1031 | /* 3538 */ MCD::OPC_ExtractField, 50, 5, // Inst{54-50} ... |
1032 | /* 3541 */ MCD::OPC_FilterValueOrFail, 0, |
1033 | /* 3543 */ MCD::OPC_CheckField, 40, 3, 0, 4, 0, // Skip to: 3553 |
1034 | /* 3549 */ MCD::OPC_Decode, 186, 5, 27, // Opcode: FENCEM, DecodeIdx: 27 |
1035 | /* 3553 */ MCD::OPC_CheckFieldOrFail, 48, 2, 0, |
1036 | /* 3557 */ MCD::OPC_Decode, 184, 5, 28, // Opcode: FENCEC, DecodeIdx: 28 |
1037 | /* 3561 */ MCD::OPC_FilterValue, 65, 8, 0, // Skip to: 3573 |
1038 | /* 3565 */ MCD::OPC_CheckFieldOrFail, 0, 55, 0, |
1039 | /* 3569 */ MCD::OPC_Decode, 185, 5, 29, // Opcode: FENCEI, DecodeIdx: 29 |
1040 | /* 3573 */ MCD::OPC_FilterValue, 66, 65, 0, // Skip to: 3642 |
1041 | /* 3577 */ MCD::OPC_ExtractField, 39, 9, // Inst{47-39} ... |
1042 | /* 3580 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 3588 |
1043 | /* 3584 */ MCD::OPC_Decode, 150, 6, 30, // Opcode: LHMBzi, DecodeIdx: 30 |
1044 | /* 3588 */ MCD::OPC_FilterValue, 1, 4, 0, // Skip to: 3596 |
1045 | /* 3592 */ MCD::OPC_Decode, 149, 6, 30, // Opcode: LHMBri, DecodeIdx: 30 |
1046 | /* 3596 */ MCD::OPC_FilterValue, 2, 4, 0, // Skip to: 3604 |
1047 | /* 3600 */ MCD::OPC_Decode, 152, 6, 30, // Opcode: LHMHzi, DecodeIdx: 30 |
1048 | /* 3604 */ MCD::OPC_FilterValue, 3, 4, 0, // Skip to: 3612 |
1049 | /* 3608 */ MCD::OPC_Decode, 151, 6, 30, // Opcode: LHMHri, DecodeIdx: 30 |
1050 | /* 3612 */ MCD::OPC_FilterValue, 4, 4, 0, // Skip to: 3620 |
1051 | /* 3616 */ MCD::OPC_Decode, 156, 6, 30, // Opcode: LHMWzi, DecodeIdx: 30 |
1052 | /* 3620 */ MCD::OPC_FilterValue, 5, 4, 0, // Skip to: 3628 |
1053 | /* 3624 */ MCD::OPC_Decode, 155, 6, 30, // Opcode: LHMWri, DecodeIdx: 30 |
1054 | /* 3628 */ MCD::OPC_FilterValue, 6, 4, 0, // Skip to: 3636 |
1055 | /* 3632 */ MCD::OPC_Decode, 154, 6, 30, // Opcode: LHMLzi, DecodeIdx: 30 |
1056 | /* 3636 */ MCD::OPC_FilterValueOrFail, 7, |
1057 | /* 3638 */ MCD::OPC_Decode, 153, 6, 30, // Opcode: LHMLri, DecodeIdx: 30 |
1058 | /* 3642 */ MCD::OPC_FilterValue, 68, 12, 0, // Skip to: 3658 |
1059 | /* 3646 */ MCD::OPC_CheckFieldOrFail, 47, 1, 0, |
1060 | /* 3650 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1061 | /* 3654 */ MCD::OPC_Decode, 249, 34, 31, // Opcode: SMIR, DecodeIdx: 31 |
1062 | /* 3658 */ MCD::OPC_FilterValue, 80, 8, 0, // Skip to: 3670 |
1063 | /* 3662 */ MCD::OPC_CheckFieldOrFail, 0, 48, 0, |
1064 | /* 3666 */ MCD::OPC_Decode, 228, 34, 32, // Opcode: SIC, DecodeIdx: 32 |
1065 | /* 3670 */ MCD::OPC_FilterValue, 82, 8, 0, // Skip to: 3682 |
1066 | /* 3674 */ MCD::OPC_CheckFieldOrFail, 0, 48, 0, |
1067 | /* 3678 */ MCD::OPC_Decode, 219, 34, 33, // Opcode: SFR, DecodeIdx: 33 |
1068 | /* 3682 */ MCD::OPC_FilterValue, 84, 8, 0, // Skip to: 3694 |
1069 | /* 3686 */ MCD::OPC_CheckFieldOrFail, 0, 48, 0, |
1070 | /* 3690 */ MCD::OPC_Decode, 251, 34, 33, // Opcode: SPM, DecodeIdx: 33 |
1071 | /* 3694 */ MCD::OPC_FilterValue, 86, 33, 0, // Skip to: 3731 |
1072 | /* 3698 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1073 | /* 3701 */ MCD::OPC_FilterValue, 0, 12, 0, // Skip to: 3717 |
1074 | /* 3705 */ MCD::OPC_CheckFieldOrFail, 47, 1, 0, |
1075 | /* 3709 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1076 | /* 3713 */ MCD::OPC_Decode, 164, 4, 34, // Opcode: BSWPmi, DecodeIdx: 34 |
1077 | /* 3717 */ MCD::OPC_FilterValueOrFail, 1, |
1078 | /* 3719 */ MCD::OPC_CheckFieldOrFail, 47, 1, 0, |
1079 | /* 3723 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1080 | /* 3727 */ MCD::OPC_Decode, 165, 4, 35, // Opcode: BSWPri, DecodeIdx: 35 |
1081 | /* 3731 */ MCD::OPC_FilterValue, 90, 25, 0, // Skip to: 3760 |
1082 | /* 3735 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1083 | /* 3738 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3750 |
1084 | /* 3742 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1085 | /* 3746 */ MCD::OPC_Decode, 221, 4, 36, // Opcode: CVTQDi, DecodeIdx: 36 |
1086 | /* 3750 */ MCD::OPC_FilterValueOrFail, 1, |
1087 | /* 3752 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1088 | /* 3756 */ MCD::OPC_Decode, 222, 4, 37, // Opcode: CVTQDr, DecodeIdx: 37 |
1089 | /* 3760 */ MCD::OPC_FilterValue, 91, 25, 0, // Skip to: 3789 |
1090 | /* 3764 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1091 | /* 3767 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3779 |
1092 | /* 3771 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1093 | /* 3775 */ MCD::OPC_Decode, 223, 4, 36, // Opcode: CVTQSi, DecodeIdx: 36 |
1094 | /* 3779 */ MCD::OPC_FilterValueOrFail, 1, |
1095 | /* 3781 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1096 | /* 3785 */ MCD::OPC_Decode, 224, 4, 38, // Opcode: CVTQSr, DecodeIdx: 38 |
1097 | /* 3789 */ MCD::OPC_FilterValue, 92, 8, 0, // Skip to: 3801 |
1098 | /* 3793 */ MCD::OPC_CheckFieldOrFail, 0, 48, 0, |
1099 | /* 3797 */ MCD::OPC_Decode, 250, 34, 33, // Opcode: SMVL, DecodeIdx: 33 |
1100 | /* 3801 */ MCD::OPC_FilterValue, 94, 8, 0, // Skip to: 3813 |
1101 | /* 3805 */ MCD::OPC_CheckFieldOrFail, 0, 48, 0, |
1102 | /* 3809 */ MCD::OPC_Decode, 184, 35, 33, // Opcode: SVL, DecodeIdx: 33 |
1103 | /* 3813 */ MCD::OPC_FilterValue, 96, 8, 0, // Skip to: 3825 |
1104 | /* 3817 */ MCD::OPC_CheckFieldOrFail, 0, 55, 0, |
1105 | /* 3821 */ MCD::OPC_Decode, 187, 35, 29, // Opcode: SVOB, DecodeIdx: 29 |
1106 | /* 3825 */ MCD::OPC_FilterValue, 98, 65, 0, // Skip to: 3894 |
1107 | /* 3829 */ MCD::OPC_ExtractField, 39, 9, // Inst{47-39} ... |
1108 | /* 3832 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 3840 |
1109 | /* 3836 */ MCD::OPC_Decode, 221, 34, 39, // Opcode: SHMBzi, DecodeIdx: 39 |
1110 | /* 3840 */ MCD::OPC_FilterValue, 1, 4, 0, // Skip to: 3848 |
1111 | /* 3844 */ MCD::OPC_Decode, 220, 34, 39, // Opcode: SHMBri, DecodeIdx: 39 |
1112 | /* 3848 */ MCD::OPC_FilterValue, 2, 4, 0, // Skip to: 3856 |
1113 | /* 3852 */ MCD::OPC_Decode, 223, 34, 39, // Opcode: SHMHzi, DecodeIdx: 39 |
1114 | /* 3856 */ MCD::OPC_FilterValue, 3, 4, 0, // Skip to: 3864 |
1115 | /* 3860 */ MCD::OPC_Decode, 222, 34, 39, // Opcode: SHMHri, DecodeIdx: 39 |
1116 | /* 3864 */ MCD::OPC_FilterValue, 4, 4, 0, // Skip to: 3872 |
1117 | /* 3868 */ MCD::OPC_Decode, 227, 34, 39, // Opcode: SHMWzi, DecodeIdx: 39 |
1118 | /* 3872 */ MCD::OPC_FilterValue, 5, 4, 0, // Skip to: 3880 |
1119 | /* 3876 */ MCD::OPC_Decode, 226, 34, 39, // Opcode: SHMWri, DecodeIdx: 39 |
1120 | /* 3880 */ MCD::OPC_FilterValue, 6, 4, 0, // Skip to: 3888 |
1121 | /* 3884 */ MCD::OPC_Decode, 225, 34, 39, // Opcode: SHMLzi, DecodeIdx: 39 |
1122 | /* 3888 */ MCD::OPC_FilterValueOrFail, 7, |
1123 | /* 3890 */ MCD::OPC_Decode, 224, 34, 39, // Opcode: SHMLri, DecodeIdx: 39 |
1124 | /* 3894 */ MCD::OPC_FilterValue, 112, 25, 0, // Skip to: 3923 |
1125 | /* 3898 */ MCD::OPC_ExtractField, 39, 9, // Inst{47-39} ... |
1126 | /* 3901 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3913 |
1127 | /* 3905 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1128 | /* 3909 */ MCD::OPC_Decode, 249, 6, 40, // Opcode: PCNTm, DecodeIdx: 40 |
1129 | /* 3913 */ MCD::OPC_FilterValueOrFail, 1, |
1130 | /* 3915 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1131 | /* 3919 */ MCD::OPC_Decode, 250, 6, 41, // Opcode: PCNTr, DecodeIdx: 41 |
1132 | /* 3923 */ MCD::OPC_FilterValue, 114, 25, 0, // Skip to: 3952 |
1133 | /* 3927 */ MCD::OPC_ExtractField, 39, 9, // Inst{47-39} ... |
1134 | /* 3930 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 3942 |
1135 | /* 3934 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1136 | /* 3938 */ MCD::OPC_Decode, 158, 4, 40, // Opcode: BRVm, DecodeIdx: 40 |
1137 | /* 3942 */ MCD::OPC_FilterValueOrFail, 1, |
1138 | /* 3944 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1139 | /* 3948 */ MCD::OPC_Decode, 159, 4, 41, // Opcode: BRVr, DecodeIdx: 41 |
1140 | /* 3952 */ MCD::OPC_FilterValue, 116, 12, 0, // Skip to: 3968 |
1141 | /* 3956 */ MCD::OPC_CheckFieldOrFail, 47, 8, 1, |
1142 | /* 3960 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
1143 | /* 3964 */ MCD::OPC_Decode, 157, 6, 42, // Opcode: LPM, DecodeIdx: 42 |
1144 | /* 3968 */ MCD::OPC_FilterValue, 118, 189, 0, // Skip to: 4161 |
1145 | /* 3972 */ MCD::OPC_ExtractField, 4, 28, // Inst{31-4} ... |
1146 | /* 3975 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 4022 |
1147 | /* 3979 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1148 | /* 3982 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4003 |
1149 | /* 3986 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1150 | /* 3989 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 3997 |
1151 | /* 3993 */ MCD::OPC_Decode, 179, 4, 43, // Opcode: CMOVLim, DecodeIdx: 43 |
1152 | /* 3997 */ MCD::OPC_FilterValueOrFail, 1, |
1153 | /* 3999 */ MCD::OPC_Decode, 181, 4, 44, // Opcode: CMOVLrm, DecodeIdx: 44 |
1154 | /* 4003 */ MCD::OPC_FilterValueOrFail, 1, |
1155 | /* 4005 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1156 | /* 4008 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4016 |
1157 | /* 4012 */ MCD::OPC_Decode, 180, 4, 45, // Opcode: CMOVLir, DecodeIdx: 45 |
1158 | /* 4016 */ MCD::OPC_FilterValueOrFail, 1, |
1159 | /* 4018 */ MCD::OPC_Decode, 182, 4, 46, // Opcode: CMOVLrr, DecodeIdx: 46 |
1160 | /* 4022 */ MCD::OPC_FilterValue, 4, 43, 0, // Skip to: 4069 |
1161 | /* 4026 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1162 | /* 4029 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4050 |
1163 | /* 4033 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1164 | /* 4036 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4044 |
1165 | /* 4040 */ MCD::OPC_Decode, 175, 4, 43, // Opcode: CMOVDim, DecodeIdx: 43 |
1166 | /* 4044 */ MCD::OPC_FilterValueOrFail, 1, |
1167 | /* 4046 */ MCD::OPC_Decode, 177, 4, 44, // Opcode: CMOVDrm, DecodeIdx: 44 |
1168 | /* 4050 */ MCD::OPC_FilterValueOrFail, 1, |
1169 | /* 4052 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1170 | /* 4055 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4063 |
1171 | /* 4059 */ MCD::OPC_Decode, 176, 4, 45, // Opcode: CMOVDir, DecodeIdx: 45 |
1172 | /* 4063 */ MCD::OPC_FilterValueOrFail, 1, |
1173 | /* 4065 */ MCD::OPC_Decode, 178, 4, 46, // Opcode: CMOVDrr, DecodeIdx: 46 |
1174 | /* 4069 */ MCD::OPC_FilterValue, 8, 43, 0, // Skip to: 4116 |
1175 | /* 4073 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1176 | /* 4076 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4097 |
1177 | /* 4080 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1178 | /* 4083 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4091 |
1179 | /* 4087 */ MCD::OPC_Decode, 187, 4, 43, // Opcode: CMOVWim, DecodeIdx: 43 |
1180 | /* 4091 */ MCD::OPC_FilterValueOrFail, 1, |
1181 | /* 4093 */ MCD::OPC_Decode, 189, 4, 47, // Opcode: CMOVWrm, DecodeIdx: 47 |
1182 | /* 4097 */ MCD::OPC_FilterValueOrFail, 1, |
1183 | /* 4099 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1184 | /* 4102 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4110 |
1185 | /* 4106 */ MCD::OPC_Decode, 188, 4, 45, // Opcode: CMOVWir, DecodeIdx: 45 |
1186 | /* 4110 */ MCD::OPC_FilterValueOrFail, 1, |
1187 | /* 4112 */ MCD::OPC_Decode, 190, 4, 48, // Opcode: CMOVWrr, DecodeIdx: 48 |
1188 | /* 4116 */ MCD::OPC_FilterValueOrFail, 12, |
1189 | /* 4118 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1190 | /* 4121 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4142 |
1191 | /* 4125 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1192 | /* 4128 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4136 |
1193 | /* 4132 */ MCD::OPC_Decode, 183, 4, 43, // Opcode: CMOVSim, DecodeIdx: 43 |
1194 | /* 4136 */ MCD::OPC_FilterValueOrFail, 1, |
1195 | /* 4138 */ MCD::OPC_Decode, 185, 4, 49, // Opcode: CMOVSrm, DecodeIdx: 49 |
1196 | /* 4142 */ MCD::OPC_FilterValueOrFail, 1, |
1197 | /* 4144 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1198 | /* 4147 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4155 |
1199 | /* 4151 */ MCD::OPC_Decode, 184, 4, 45, // Opcode: CMOVSir, DecodeIdx: 45 |
1200 | /* 4155 */ MCD::OPC_FilterValueOrFail, 1, |
1201 | /* 4157 */ MCD::OPC_Decode, 186, 4, 50, // Opcode: CMOVSrr, DecodeIdx: 50 |
1202 | /* 4161 */ MCD::OPC_FilterValue, 124, 96, 0, // Skip to: 4261 |
1203 | /* 4165 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
1204 | /* 4168 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 4215 |
1205 | /* 4172 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1206 | /* 4175 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4196 |
1207 | /* 4179 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1208 | /* 4182 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4190 |
1209 | /* 4186 */ MCD::OPC_Decode, 189, 5, 51, // Opcode: FMAXDim, DecodeIdx: 51 |
1210 | /* 4190 */ MCD::OPC_FilterValueOrFail, 1, |
1211 | /* 4192 */ MCD::OPC_Decode, 191, 5, 52, // Opcode: FMAXDrm, DecodeIdx: 52 |
1212 | /* 4196 */ MCD::OPC_FilterValueOrFail, 1, |
1213 | /* 4198 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1214 | /* 4201 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4209 |
1215 | /* 4205 */ MCD::OPC_Decode, 190, 5, 53, // Opcode: FMAXDir, DecodeIdx: 53 |
1216 | /* 4209 */ MCD::OPC_FilterValueOrFail, 1, |
1217 | /* 4211 */ MCD::OPC_Decode, 192, 5, 54, // Opcode: FMAXDrr, DecodeIdx: 54 |
1218 | /* 4215 */ MCD::OPC_FilterValueOrFail, 128, 1, |
1219 | /* 4218 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1220 | /* 4221 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4242 |
1221 | /* 4225 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1222 | /* 4228 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4236 |
1223 | /* 4232 */ MCD::OPC_Decode, 197, 5, 51, // Opcode: FMINDim, DecodeIdx: 51 |
1224 | /* 4236 */ MCD::OPC_FilterValueOrFail, 1, |
1225 | /* 4238 */ MCD::OPC_Decode, 199, 5, 52, // Opcode: FMINDrm, DecodeIdx: 52 |
1226 | /* 4242 */ MCD::OPC_FilterValueOrFail, 1, |
1227 | /* 4244 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1228 | /* 4247 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4255 |
1229 | /* 4251 */ MCD::OPC_Decode, 198, 5, 53, // Opcode: FMINDir, DecodeIdx: 53 |
1230 | /* 4255 */ MCD::OPC_FilterValueOrFail, 1, |
1231 | /* 4257 */ MCD::OPC_Decode, 200, 5, 54, // Opcode: FMINDrr, DecodeIdx: 54 |
1232 | /* 4261 */ MCD::OPC_FilterValue, 125, 96, 0, // Skip to: 4361 |
1233 | /* 4265 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
1234 | /* 4268 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 4315 |
1235 | /* 4272 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1236 | /* 4275 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4296 |
1237 | /* 4279 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1238 | /* 4282 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4290 |
1239 | /* 4286 */ MCD::OPC_Decode, 193, 5, 55, // Opcode: FMAXSim, DecodeIdx: 55 |
1240 | /* 4290 */ MCD::OPC_FilterValueOrFail, 1, |
1241 | /* 4292 */ MCD::OPC_Decode, 195, 5, 56, // Opcode: FMAXSrm, DecodeIdx: 56 |
1242 | /* 4296 */ MCD::OPC_FilterValueOrFail, 1, |
1243 | /* 4298 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1244 | /* 4301 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4309 |
1245 | /* 4305 */ MCD::OPC_Decode, 194, 5, 57, // Opcode: FMAXSir, DecodeIdx: 57 |
1246 | /* 4309 */ MCD::OPC_FilterValueOrFail, 1, |
1247 | /* 4311 */ MCD::OPC_Decode, 196, 5, 58, // Opcode: FMAXSrr, DecodeIdx: 58 |
1248 | /* 4315 */ MCD::OPC_FilterValueOrFail, 128, 1, |
1249 | /* 4318 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1250 | /* 4321 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4342 |
1251 | /* 4325 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1252 | /* 4328 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4336 |
1253 | /* 4332 */ MCD::OPC_Decode, 201, 5, 55, // Opcode: FMINSim, DecodeIdx: 55 |
1254 | /* 4336 */ MCD::OPC_FilterValueOrFail, 1, |
1255 | /* 4338 */ MCD::OPC_Decode, 203, 5, 56, // Opcode: FMINSrm, DecodeIdx: 56 |
1256 | /* 4342 */ MCD::OPC_FilterValueOrFail, 1, |
1257 | /* 4344 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1258 | /* 4347 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4355 |
1259 | /* 4351 */ MCD::OPC_Decode, 202, 5, 57, // Opcode: FMINSir, DecodeIdx: 57 |
1260 | /* 4355 */ MCD::OPC_FilterValueOrFail, 1, |
1261 | /* 4357 */ MCD::OPC_Decode, 204, 5, 58, // Opcode: FMINSrr, DecodeIdx: 58 |
1262 | /* 4361 */ MCD::OPC_FilterValue, 126, 8, 0, // Skip to: 4373 |
1263 | /* 4365 */ MCD::OPC_CheckFieldOrFail, 0, 55, 0, |
1264 | /* 4369 */ MCD::OPC_Decode, 207, 6, 29, // Opcode: MONC, DecodeIdx: 29 |
1265 | /* 4373 */ MCD::OPC_FilterValue, 127, 8, 0, // Skip to: 4385 |
1266 | /* 4377 */ MCD::OPC_CheckFieldOrFail, 0, 55, 0, |
1267 | /* 4381 */ MCD::OPC_Decode, 208, 6, 29, // Opcode: MONCHDB, DecodeIdx: 29 |
1268 | /* 4385 */ MCD::OPC_FilterValue, 128, 1, 59, 0, // Skip to: 4449 |
1269 | /* 4390 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1270 | /* 4393 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4422 |
1271 | /* 4397 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1272 | /* 4400 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4412 |
1273 | /* 4404 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1274 | /* 4408 */ MCD::OPC_Decode, 230, 5, 51, // Opcode: LCRiz, DecodeIdx: 51 |
1275 | /* 4412 */ MCD::OPC_FilterValueOrFail, 1, |
1276 | /* 4414 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1277 | /* 4418 */ MCD::OPC_Decode, 232, 5, 52, // Opcode: LCRrz, DecodeIdx: 52 |
1278 | /* 4422 */ MCD::OPC_FilterValueOrFail, 1, |
1279 | /* 4424 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1280 | /* 4427 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4439 |
1281 | /* 4431 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1282 | /* 4435 */ MCD::OPC_Decode, 229, 5, 53, // Opcode: LCRir, DecodeIdx: 53 |
1283 | /* 4439 */ MCD::OPC_FilterValueOrFail, 1, |
1284 | /* 4441 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1285 | /* 4445 */ MCD::OPC_Decode, 231, 5, 54, // Opcode: LCRrr, DecodeIdx: 54 |
1286 | /* 4449 */ MCD::OPC_FilterValue, 130, 1, 59, 0, // Skip to: 4513 |
1287 | /* 4454 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1288 | /* 4457 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4486 |
1289 | /* 4461 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1290 | /* 4464 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4476 |
1291 | /* 4468 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1292 | /* 4472 */ MCD::OPC_Decode, 208, 35, 59, // Opcode: TSCRizr, DecodeIdx: 59 |
1293 | /* 4476 */ MCD::OPC_FilterValueOrFail, 1, |
1294 | /* 4478 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1295 | /* 4482 */ MCD::OPC_Decode, 210, 35, 60, // Opcode: TSCRrzr, DecodeIdx: 60 |
1296 | /* 4486 */ MCD::OPC_FilterValueOrFail, 1, |
1297 | /* 4488 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1298 | /* 4491 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4503 |
1299 | /* 4495 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1300 | /* 4499 */ MCD::OPC_Decode, 207, 35, 61, // Opcode: TSCRirr, DecodeIdx: 61 |
1301 | /* 4503 */ MCD::OPC_FilterValueOrFail, 1, |
1302 | /* 4505 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1303 | /* 4509 */ MCD::OPC_Decode, 209, 35, 62, // Opcode: TSCRrrr, DecodeIdx: 62 |
1304 | /* 4513 */ MCD::OPC_FilterValue, 132, 1, 43, 0, // Skip to: 4561 |
1305 | /* 4518 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1306 | /* 4521 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4542 |
1307 | /* 4525 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1308 | /* 4528 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4536 |
1309 | /* 4532 */ MCD::OPC_Decode, 193, 35, 63, // Opcode: TS1AMLzii, DecodeIdx: 63 |
1310 | /* 4536 */ MCD::OPC_FilterValueOrFail, 1, |
1311 | /* 4538 */ MCD::OPC_Decode, 194, 35, 63, // Opcode: TS1AMLzir, DecodeIdx: 63 |
1312 | /* 4542 */ MCD::OPC_FilterValueOrFail, 1, |
1313 | /* 4544 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1314 | /* 4547 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4555 |
1315 | /* 4551 */ MCD::OPC_Decode, 191, 35, 63, // Opcode: TS1AMLrii, DecodeIdx: 63 |
1316 | /* 4555 */ MCD::OPC_FilterValueOrFail, 1, |
1317 | /* 4557 */ MCD::OPC_Decode, 192, 35, 63, // Opcode: TS1AMLrir, DecodeIdx: 63 |
1318 | /* 4561 */ MCD::OPC_FilterValue, 133, 1, 43, 0, // Skip to: 4609 |
1319 | /* 4566 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1320 | /* 4569 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4590 |
1321 | /* 4573 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1322 | /* 4576 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4584 |
1323 | /* 4580 */ MCD::OPC_Decode, 197, 35, 64, // Opcode: TS1AMWzii, DecodeIdx: 64 |
1324 | /* 4584 */ MCD::OPC_FilterValueOrFail, 1, |
1325 | /* 4586 */ MCD::OPC_Decode, 198, 35, 64, // Opcode: TS1AMWzir, DecodeIdx: 64 |
1326 | /* 4590 */ MCD::OPC_FilterValueOrFail, 1, |
1327 | /* 4592 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1328 | /* 4595 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4603 |
1329 | /* 4599 */ MCD::OPC_Decode, 195, 35, 64, // Opcode: TS1AMWrii, DecodeIdx: 64 |
1330 | /* 4603 */ MCD::OPC_FilterValueOrFail, 1, |
1331 | /* 4605 */ MCD::OPC_Decode, 196, 35, 64, // Opcode: TS1AMWrir, DecodeIdx: 64 |
1332 | /* 4609 */ MCD::OPC_FilterValue, 134, 1, 43, 0, // Skip to: 4657 |
1333 | /* 4614 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1334 | /* 4617 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 4638 |
1335 | /* 4621 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1336 | /* 4624 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4632 |
1337 | /* 4628 */ MCD::OPC_Decode, 201, 35, 63, // Opcode: TS2AMzii, DecodeIdx: 63 |
1338 | /* 4632 */ MCD::OPC_FilterValueOrFail, 1, |
1339 | /* 4634 */ MCD::OPC_Decode, 202, 35, 63, // Opcode: TS2AMzir, DecodeIdx: 63 |
1340 | /* 4638 */ MCD::OPC_FilterValueOrFail, 1, |
1341 | /* 4640 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1342 | /* 4643 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 4651 |
1343 | /* 4647 */ MCD::OPC_Decode, 199, 35, 63, // Opcode: TS2AMrii, DecodeIdx: 63 |
1344 | /* 4651 */ MCD::OPC_FilterValueOrFail, 1, |
1345 | /* 4653 */ MCD::OPC_Decode, 200, 35, 63, // Opcode: TS2AMrir, DecodeIdx: 63 |
1346 | /* 4657 */ MCD::OPC_FilterValue, 136, 1, 59, 0, // Skip to: 4721 |
1347 | /* 4662 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1348 | /* 4665 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4694 |
1349 | /* 4669 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1350 | /* 4672 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4684 |
1351 | /* 4676 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1352 | /* 4680 */ MCD::OPC_Decode, 238, 2, 51, // Opcode: ANDim, DecodeIdx: 51 |
1353 | /* 4684 */ MCD::OPC_FilterValueOrFail, 1, |
1354 | /* 4686 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1355 | /* 4690 */ MCD::OPC_Decode, 240, 2, 52, // Opcode: ANDrm, DecodeIdx: 52 |
1356 | /* 4694 */ MCD::OPC_FilterValueOrFail, 1, |
1357 | /* 4696 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1358 | /* 4699 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4711 |
1359 | /* 4703 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1360 | /* 4707 */ MCD::OPC_Decode, 239, 2, 65, // Opcode: ANDri, DecodeIdx: 65 |
1361 | /* 4711 */ MCD::OPC_FilterValueOrFail, 1, |
1362 | /* 4713 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1363 | /* 4717 */ MCD::OPC_Decode, 241, 2, 54, // Opcode: ANDrr, DecodeIdx: 54 |
1364 | /* 4721 */ MCD::OPC_FilterValue, 138, 1, 59, 0, // Skip to: 4785 |
1365 | /* 4726 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1366 | /* 4729 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4758 |
1367 | /* 4733 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1368 | /* 4736 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4748 |
1369 | /* 4740 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1370 | /* 4744 */ MCD::OPC_Decode, 245, 6, 51, // Opcode: ORim, DecodeIdx: 51 |
1371 | /* 4748 */ MCD::OPC_FilterValueOrFail, 1, |
1372 | /* 4750 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1373 | /* 4754 */ MCD::OPC_Decode, 247, 6, 52, // Opcode: ORrm, DecodeIdx: 52 |
1374 | /* 4758 */ MCD::OPC_FilterValueOrFail, 1, |
1375 | /* 4760 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1376 | /* 4763 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4775 |
1377 | /* 4767 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1378 | /* 4771 */ MCD::OPC_Decode, 246, 6, 65, // Opcode: ORri, DecodeIdx: 65 |
1379 | /* 4775 */ MCD::OPC_FilterValueOrFail, 1, |
1380 | /* 4777 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1381 | /* 4781 */ MCD::OPC_Decode, 248, 6, 54, // Opcode: ORrr, DecodeIdx: 54 |
1382 | /* 4785 */ MCD::OPC_FilterValue, 140, 1, 59, 0, // Skip to: 4849 |
1383 | /* 4790 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1384 | /* 4793 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4822 |
1385 | /* 4797 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1386 | /* 4800 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4812 |
1387 | /* 4804 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1388 | /* 4808 */ MCD::OPC_Decode, 248, 83, 51, // Opcode: XORim, DecodeIdx: 51 |
1389 | /* 4812 */ MCD::OPC_FilterValueOrFail, 1, |
1390 | /* 4814 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1391 | /* 4818 */ MCD::OPC_Decode, 250, 83, 52, // Opcode: XORrm, DecodeIdx: 52 |
1392 | /* 4822 */ MCD::OPC_FilterValueOrFail, 1, |
1393 | /* 4824 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1394 | /* 4827 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4839 |
1395 | /* 4831 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1396 | /* 4835 */ MCD::OPC_Decode, 249, 83, 65, // Opcode: XORri, DecodeIdx: 65 |
1397 | /* 4839 */ MCD::OPC_FilterValueOrFail, 1, |
1398 | /* 4841 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1399 | /* 4845 */ MCD::OPC_Decode, 251, 83, 54, // Opcode: XORrr, DecodeIdx: 54 |
1400 | /* 4849 */ MCD::OPC_FilterValue, 142, 1, 59, 0, // Skip to: 4913 |
1401 | /* 4854 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1402 | /* 4857 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4886 |
1403 | /* 4861 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1404 | /* 4864 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4876 |
1405 | /* 4868 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1406 | /* 4872 */ MCD::OPC_Decode, 148, 5, 51, // Opcode: EQVim, DecodeIdx: 51 |
1407 | /* 4876 */ MCD::OPC_FilterValueOrFail, 1, |
1408 | /* 4878 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1409 | /* 4882 */ MCD::OPC_Decode, 150, 5, 52, // Opcode: EQVrm, DecodeIdx: 52 |
1410 | /* 4886 */ MCD::OPC_FilterValueOrFail, 1, |
1411 | /* 4888 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1412 | /* 4891 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4903 |
1413 | /* 4895 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1414 | /* 4899 */ MCD::OPC_Decode, 149, 5, 65, // Opcode: EQVri, DecodeIdx: 65 |
1415 | /* 4903 */ MCD::OPC_FilterValueOrFail, 1, |
1416 | /* 4905 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1417 | /* 4909 */ MCD::OPC_Decode, 151, 5, 54, // Opcode: EQVrr, DecodeIdx: 54 |
1418 | /* 4913 */ MCD::OPC_FilterValue, 144, 1, 59, 0, // Skip to: 4977 |
1419 | /* 4918 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1420 | /* 4921 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 4950 |
1421 | /* 4925 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1422 | /* 4928 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4940 |
1423 | /* 4932 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1424 | /* 4936 */ MCD::OPC_Decode, 229, 2, 51, // Opcode: ADDULim, DecodeIdx: 51 |
1425 | /* 4940 */ MCD::OPC_FilterValueOrFail, 1, |
1426 | /* 4942 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1427 | /* 4946 */ MCD::OPC_Decode, 231, 2, 52, // Opcode: ADDULrm, DecodeIdx: 52 |
1428 | /* 4950 */ MCD::OPC_FilterValueOrFail, 1, |
1429 | /* 4952 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1430 | /* 4955 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 4967 |
1431 | /* 4959 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1432 | /* 4963 */ MCD::OPC_Decode, 230, 2, 65, // Opcode: ADDULri, DecodeIdx: 65 |
1433 | /* 4967 */ MCD::OPC_FilterValueOrFail, 1, |
1434 | /* 4969 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1435 | /* 4973 */ MCD::OPC_Decode, 232, 2, 54, // Opcode: ADDULrr, DecodeIdx: 54 |
1436 | /* 4977 */ MCD::OPC_FilterValue, 145, 1, 59, 0, // Skip to: 5041 |
1437 | /* 4982 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1438 | /* 4985 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5014 |
1439 | /* 4989 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1440 | /* 4992 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5004 |
1441 | /* 4996 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1442 | /* 5000 */ MCD::OPC_Decode, 233, 2, 66, // Opcode: ADDUWim, DecodeIdx: 66 |
1443 | /* 5004 */ MCD::OPC_FilterValueOrFail, 1, |
1444 | /* 5006 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1445 | /* 5010 */ MCD::OPC_Decode, 235, 2, 67, // Opcode: ADDUWrm, DecodeIdx: 67 |
1446 | /* 5014 */ MCD::OPC_FilterValueOrFail, 1, |
1447 | /* 5016 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1448 | /* 5019 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5031 |
1449 | /* 5023 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1450 | /* 5027 */ MCD::OPC_Decode, 234, 2, 68, // Opcode: ADDUWri, DecodeIdx: 68 |
1451 | /* 5031 */ MCD::OPC_FilterValueOrFail, 1, |
1452 | /* 5033 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1453 | /* 5037 */ MCD::OPC_Decode, 236, 2, 69, // Opcode: ADDUWrr, DecodeIdx: 69 |
1454 | /* 5041 */ MCD::OPC_FilterValue, 146, 1, 59, 0, // Skip to: 5105 |
1455 | /* 5046 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1456 | /* 5049 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5078 |
1457 | /* 5053 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1458 | /* 5056 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5068 |
1459 | /* 5060 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1460 | /* 5064 */ MCD::OPC_Decode, 229, 6, 51, // Opcode: MULULim, DecodeIdx: 51 |
1461 | /* 5068 */ MCD::OPC_FilterValueOrFail, 1, |
1462 | /* 5070 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1463 | /* 5074 */ MCD::OPC_Decode, 231, 6, 52, // Opcode: MULULrm, DecodeIdx: 52 |
1464 | /* 5078 */ MCD::OPC_FilterValueOrFail, 1, |
1465 | /* 5080 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1466 | /* 5083 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5095 |
1467 | /* 5087 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1468 | /* 5091 */ MCD::OPC_Decode, 230, 6, 65, // Opcode: MULULri, DecodeIdx: 65 |
1469 | /* 5095 */ MCD::OPC_FilterValueOrFail, 1, |
1470 | /* 5097 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1471 | /* 5101 */ MCD::OPC_Decode, 232, 6, 54, // Opcode: MULULrr, DecodeIdx: 54 |
1472 | /* 5105 */ MCD::OPC_FilterValue, 147, 1, 59, 0, // Skip to: 5169 |
1473 | /* 5110 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1474 | /* 5113 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5142 |
1475 | /* 5117 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1476 | /* 5120 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5132 |
1477 | /* 5124 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1478 | /* 5128 */ MCD::OPC_Decode, 233, 6, 66, // Opcode: MULUWim, DecodeIdx: 66 |
1479 | /* 5132 */ MCD::OPC_FilterValueOrFail, 1, |
1480 | /* 5134 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1481 | /* 5138 */ MCD::OPC_Decode, 235, 6, 67, // Opcode: MULUWrm, DecodeIdx: 67 |
1482 | /* 5142 */ MCD::OPC_FilterValueOrFail, 1, |
1483 | /* 5144 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1484 | /* 5147 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5159 |
1485 | /* 5151 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1486 | /* 5155 */ MCD::OPC_Decode, 234, 6, 68, // Opcode: MULUWri, DecodeIdx: 68 |
1487 | /* 5159 */ MCD::OPC_FilterValueOrFail, 1, |
1488 | /* 5161 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1489 | /* 5165 */ MCD::OPC_Decode, 236, 6, 69, // Opcode: MULUWrr, DecodeIdx: 69 |
1490 | /* 5169 */ MCD::OPC_FilterValue, 148, 1, 59, 0, // Skip to: 5233 |
1491 | /* 5174 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1492 | /* 5177 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5206 |
1493 | /* 5181 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1494 | /* 5184 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5196 |
1495 | /* 5188 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1496 | /* 5192 */ MCD::OPC_Decode, 221, 2, 66, // Opcode: ADDSWSXim, DecodeIdx: 66 |
1497 | /* 5196 */ MCD::OPC_FilterValueOrFail, 1, |
1498 | /* 5198 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1499 | /* 5202 */ MCD::OPC_Decode, 223, 2, 67, // Opcode: ADDSWSXrm, DecodeIdx: 67 |
1500 | /* 5206 */ MCD::OPC_FilterValueOrFail, 1, |
1501 | /* 5208 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1502 | /* 5211 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5223 |
1503 | /* 5215 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1504 | /* 5219 */ MCD::OPC_Decode, 222, 2, 68, // Opcode: ADDSWSXri, DecodeIdx: 68 |
1505 | /* 5223 */ MCD::OPC_FilterValueOrFail, 1, |
1506 | /* 5225 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1507 | /* 5229 */ MCD::OPC_Decode, 224, 2, 69, // Opcode: ADDSWSXrr, DecodeIdx: 69 |
1508 | /* 5233 */ MCD::OPC_FilterValue, 149, 1, 59, 0, // Skip to: 5297 |
1509 | /* 5238 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1510 | /* 5241 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5270 |
1511 | /* 5245 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1512 | /* 5248 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5260 |
1513 | /* 5252 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1514 | /* 5256 */ MCD::OPC_Decode, 225, 2, 66, // Opcode: ADDSWZXim, DecodeIdx: 66 |
1515 | /* 5260 */ MCD::OPC_FilterValueOrFail, 1, |
1516 | /* 5262 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1517 | /* 5266 */ MCD::OPC_Decode, 227, 2, 67, // Opcode: ADDSWZXrm, DecodeIdx: 67 |
1518 | /* 5270 */ MCD::OPC_FilterValueOrFail, 1, |
1519 | /* 5272 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1520 | /* 5275 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5287 |
1521 | /* 5279 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1522 | /* 5283 */ MCD::OPC_Decode, 226, 2, 68, // Opcode: ADDSWZXri, DecodeIdx: 68 |
1523 | /* 5287 */ MCD::OPC_FilterValueOrFail, 1, |
1524 | /* 5289 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1525 | /* 5293 */ MCD::OPC_Decode, 228, 2, 69, // Opcode: ADDSWZXrr, DecodeIdx: 69 |
1526 | /* 5297 */ MCD::OPC_FilterValue, 150, 1, 59, 0, // Skip to: 5361 |
1527 | /* 5302 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1528 | /* 5305 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5334 |
1529 | /* 5309 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1530 | /* 5312 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5324 |
1531 | /* 5316 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1532 | /* 5320 */ MCD::OPC_Decode, 221, 6, 66, // Opcode: MULSWSXim, DecodeIdx: 66 |
1533 | /* 5324 */ MCD::OPC_FilterValueOrFail, 1, |
1534 | /* 5326 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1535 | /* 5330 */ MCD::OPC_Decode, 223, 6, 67, // Opcode: MULSWSXrm, DecodeIdx: 67 |
1536 | /* 5334 */ MCD::OPC_FilterValueOrFail, 1, |
1537 | /* 5336 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1538 | /* 5339 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5351 |
1539 | /* 5343 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1540 | /* 5347 */ MCD::OPC_Decode, 222, 6, 68, // Opcode: MULSWSXri, DecodeIdx: 68 |
1541 | /* 5351 */ MCD::OPC_FilterValueOrFail, 1, |
1542 | /* 5353 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1543 | /* 5357 */ MCD::OPC_Decode, 224, 6, 69, // Opcode: MULSWSXrr, DecodeIdx: 69 |
1544 | /* 5361 */ MCD::OPC_FilterValue, 151, 1, 59, 0, // Skip to: 5425 |
1545 | /* 5366 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1546 | /* 5369 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5398 |
1547 | /* 5373 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1548 | /* 5376 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5388 |
1549 | /* 5380 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1550 | /* 5384 */ MCD::OPC_Decode, 225, 6, 66, // Opcode: MULSWZXim, DecodeIdx: 66 |
1551 | /* 5388 */ MCD::OPC_FilterValueOrFail, 1, |
1552 | /* 5390 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1553 | /* 5394 */ MCD::OPC_Decode, 227, 6, 67, // Opcode: MULSWZXrm, DecodeIdx: 67 |
1554 | /* 5398 */ MCD::OPC_FilterValueOrFail, 1, |
1555 | /* 5400 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1556 | /* 5403 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5415 |
1557 | /* 5407 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1558 | /* 5411 */ MCD::OPC_Decode, 226, 6, 68, // Opcode: MULSWZXri, DecodeIdx: 68 |
1559 | /* 5415 */ MCD::OPC_FilterValueOrFail, 1, |
1560 | /* 5417 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1561 | /* 5421 */ MCD::OPC_Decode, 228, 6, 69, // Opcode: MULSWZXrr, DecodeIdx: 69 |
1562 | /* 5425 */ MCD::OPC_FilterValue, 152, 1, 59, 0, // Skip to: 5489 |
1563 | /* 5430 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1564 | /* 5433 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5462 |
1565 | /* 5437 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1566 | /* 5440 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5452 |
1567 | /* 5444 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1568 | /* 5448 */ MCD::OPC_Decode, 152, 5, 51, // Opcode: FADDDim, DecodeIdx: 51 |
1569 | /* 5452 */ MCD::OPC_FilterValueOrFail, 1, |
1570 | /* 5454 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1571 | /* 5458 */ MCD::OPC_Decode, 154, 5, 52, // Opcode: FADDDrm, DecodeIdx: 52 |
1572 | /* 5462 */ MCD::OPC_FilterValueOrFail, 1, |
1573 | /* 5464 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1574 | /* 5467 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5479 |
1575 | /* 5471 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1576 | /* 5475 */ MCD::OPC_Decode, 153, 5, 53, // Opcode: FADDDir, DecodeIdx: 53 |
1577 | /* 5479 */ MCD::OPC_FilterValueOrFail, 1, |
1578 | /* 5481 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1579 | /* 5485 */ MCD::OPC_Decode, 155, 5, 54, // Opcode: FADDDrr, DecodeIdx: 54 |
1580 | /* 5489 */ MCD::OPC_FilterValue, 153, 1, 59, 0, // Skip to: 5553 |
1581 | /* 5494 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1582 | /* 5497 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5526 |
1583 | /* 5501 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1584 | /* 5504 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5516 |
1585 | /* 5508 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1586 | /* 5512 */ MCD::OPC_Decode, 160, 5, 55, // Opcode: FADDSim, DecodeIdx: 55 |
1587 | /* 5516 */ MCD::OPC_FilterValueOrFail, 1, |
1588 | /* 5518 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1589 | /* 5522 */ MCD::OPC_Decode, 162, 5, 56, // Opcode: FADDSrm, DecodeIdx: 56 |
1590 | /* 5526 */ MCD::OPC_FilterValueOrFail, 1, |
1591 | /* 5528 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1592 | /* 5531 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5543 |
1593 | /* 5535 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1594 | /* 5539 */ MCD::OPC_Decode, 161, 5, 57, // Opcode: FADDSir, DecodeIdx: 57 |
1595 | /* 5543 */ MCD::OPC_FilterValueOrFail, 1, |
1596 | /* 5545 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1597 | /* 5549 */ MCD::OPC_Decode, 163, 5, 58, // Opcode: FADDSrr, DecodeIdx: 58 |
1598 | /* 5553 */ MCD::OPC_FilterValue, 154, 1, 59, 0, // Skip to: 5617 |
1599 | /* 5558 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1600 | /* 5561 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5590 |
1601 | /* 5565 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1602 | /* 5568 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5580 |
1603 | /* 5572 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1604 | /* 5576 */ MCD::OPC_Decode, 205, 5, 51, // Opcode: FMULDim, DecodeIdx: 51 |
1605 | /* 5580 */ MCD::OPC_FilterValueOrFail, 1, |
1606 | /* 5582 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1607 | /* 5586 */ MCD::OPC_Decode, 207, 5, 52, // Opcode: FMULDrm, DecodeIdx: 52 |
1608 | /* 5590 */ MCD::OPC_FilterValueOrFail, 1, |
1609 | /* 5592 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1610 | /* 5595 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5607 |
1611 | /* 5599 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1612 | /* 5603 */ MCD::OPC_Decode, 206, 5, 53, // Opcode: FMULDir, DecodeIdx: 53 |
1613 | /* 5607 */ MCD::OPC_FilterValueOrFail, 1, |
1614 | /* 5609 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1615 | /* 5613 */ MCD::OPC_Decode, 208, 5, 54, // Opcode: FMULDrr, DecodeIdx: 54 |
1616 | /* 5617 */ MCD::OPC_FilterValue, 155, 1, 59, 0, // Skip to: 5681 |
1617 | /* 5622 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1618 | /* 5625 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5654 |
1619 | /* 5629 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1620 | /* 5632 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5644 |
1621 | /* 5636 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1622 | /* 5640 */ MCD::OPC_Decode, 213, 5, 55, // Opcode: FMULSim, DecodeIdx: 55 |
1623 | /* 5644 */ MCD::OPC_FilterValueOrFail, 1, |
1624 | /* 5646 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1625 | /* 5650 */ MCD::OPC_Decode, 215, 5, 56, // Opcode: FMULSrm, DecodeIdx: 56 |
1626 | /* 5654 */ MCD::OPC_FilterValueOrFail, 1, |
1627 | /* 5656 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1628 | /* 5659 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5671 |
1629 | /* 5663 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1630 | /* 5667 */ MCD::OPC_Decode, 214, 5, 57, // Opcode: FMULSir, DecodeIdx: 57 |
1631 | /* 5671 */ MCD::OPC_FilterValueOrFail, 1, |
1632 | /* 5673 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1633 | /* 5677 */ MCD::OPC_Decode, 216, 5, 58, // Opcode: FMULSrr, DecodeIdx: 58 |
1634 | /* 5681 */ MCD::OPC_FilterValue, 156, 1, 60, 0, // Skip to: 5746 |
1635 | /* 5686 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
1636 | /* 5689 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5718 |
1637 | /* 5693 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1638 | /* 5696 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5708 |
1639 | /* 5700 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1640 | /* 5704 */ MCD::OPC_Decode, 231, 4, 70, // Opcode: CVTWDSXi, DecodeIdx: 70 |
1641 | /* 5708 */ MCD::OPC_FilterValueOrFail, 1, |
1642 | /* 5710 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1643 | /* 5714 */ MCD::OPC_Decode, 232, 4, 71, // Opcode: CVTWDSXr, DecodeIdx: 71 |
1644 | /* 5718 */ MCD::OPC_FilterValueOrFail, 128, 1, |
1645 | /* 5721 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1646 | /* 5724 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5736 |
1647 | /* 5728 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1648 | /* 5732 */ MCD::OPC_Decode, 233, 4, 70, // Opcode: CVTWDZXi, DecodeIdx: 70 |
1649 | /* 5736 */ MCD::OPC_FilterValueOrFail, 1, |
1650 | /* 5738 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1651 | /* 5742 */ MCD::OPC_Decode, 234, 4, 71, // Opcode: CVTWDZXr, DecodeIdx: 71 |
1652 | /* 5746 */ MCD::OPC_FilterValue, 157, 1, 60, 0, // Skip to: 5811 |
1653 | /* 5751 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
1654 | /* 5754 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5783 |
1655 | /* 5758 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1656 | /* 5761 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5773 |
1657 | /* 5765 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1658 | /* 5769 */ MCD::OPC_Decode, 235, 4, 70, // Opcode: CVTWSSXi, DecodeIdx: 70 |
1659 | /* 5773 */ MCD::OPC_FilterValueOrFail, 1, |
1660 | /* 5775 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1661 | /* 5779 */ MCD::OPC_Decode, 236, 4, 72, // Opcode: CVTWSSXr, DecodeIdx: 72 |
1662 | /* 5783 */ MCD::OPC_FilterValueOrFail, 128, 1, |
1663 | /* 5786 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1664 | /* 5789 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5801 |
1665 | /* 5793 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1666 | /* 5797 */ MCD::OPC_Decode, 237, 4, 70, // Opcode: CVTWSZXi, DecodeIdx: 70 |
1667 | /* 5801 */ MCD::OPC_FilterValueOrFail, 1, |
1668 | /* 5803 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1669 | /* 5807 */ MCD::OPC_Decode, 238, 4, 72, // Opcode: CVTWSZXr, DecodeIdx: 72 |
1670 | /* 5811 */ MCD::OPC_FilterValue, 158, 1, 33, 0, // Skip to: 5849 |
1671 | /* 5816 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1672 | /* 5819 */ MCD::OPC_FilterValue, 0, 12, 0, // Skip to: 5835 |
1673 | /* 5823 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1674 | /* 5827 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1675 | /* 5831 */ MCD::OPC_Decode, 219, 4, 73, // Opcode: CVTLDi, DecodeIdx: 73 |
1676 | /* 5835 */ MCD::OPC_FilterValueOrFail, 1, |
1677 | /* 5837 */ MCD::OPC_CheckFieldOrFail, 36, 4, 0, |
1678 | /* 5841 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1679 | /* 5845 */ MCD::OPC_Decode, 220, 4, 74, // Opcode: CVTLDr, DecodeIdx: 74 |
1680 | /* 5849 */ MCD::OPC_FilterValue, 160, 1, 59, 0, // Skip to: 5913 |
1681 | /* 5854 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1682 | /* 5857 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 5886 |
1683 | /* 5861 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1684 | /* 5864 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5876 |
1685 | /* 5868 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1686 | /* 5872 */ MCD::OPC_Decode, 216, 34, 75, // Opcode: SCRizr, DecodeIdx: 75 |
1687 | /* 5876 */ MCD::OPC_FilterValueOrFail, 1, |
1688 | /* 5878 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1689 | /* 5882 */ MCD::OPC_Decode, 218, 34, 76, // Opcode: SCRrzr, DecodeIdx: 76 |
1690 | /* 5886 */ MCD::OPC_FilterValueOrFail, 1, |
1691 | /* 5888 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1692 | /* 5891 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 5903 |
1693 | /* 5895 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1694 | /* 5899 */ MCD::OPC_Decode, 215, 34, 77, // Opcode: SCRirr, DecodeIdx: 77 |
1695 | /* 5903 */ MCD::OPC_FilterValueOrFail, 1, |
1696 | /* 5905 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1697 | /* 5909 */ MCD::OPC_Decode, 217, 34, 78, // Opcode: SCRrrr, DecodeIdx: 78 |
1698 | /* 5913 */ MCD::OPC_FilterValue, 162, 1, 33, 0, // Skip to: 5951 |
1699 | /* 5918 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1700 | /* 5921 */ MCD::OPC_FilterValue, 0, 12, 0, // Skip to: 5937 |
1701 | /* 5925 */ MCD::OPC_CheckFieldOrFail, 39, 1, 0, |
1702 | /* 5929 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1703 | /* 5933 */ MCD::OPC_Decode, 187, 5, 51, // Opcode: FIDCRii, DecodeIdx: 51 |
1704 | /* 5937 */ MCD::OPC_FilterValueOrFail, 1, |
1705 | /* 5939 */ MCD::OPC_CheckFieldOrFail, 39, 1, 0, |
1706 | /* 5943 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1707 | /* 5947 */ MCD::OPC_Decode, 188, 5, 52, // Opcode: FIDCRri, DecodeIdx: 52 |
1708 | /* 5951 */ MCD::OPC_FilterValue, 164, 1, 43, 0, // Skip to: 5999 |
1709 | /* 5956 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1710 | /* 5959 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 5980 |
1711 | /* 5963 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1712 | /* 5966 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 5974 |
1713 | /* 5970 */ MCD::OPC_Decode, 205, 35, 63, // Opcode: TS3AMzii, DecodeIdx: 63 |
1714 | /* 5974 */ MCD::OPC_FilterValueOrFail, 1, |
1715 | /* 5976 */ MCD::OPC_Decode, 206, 35, 63, // Opcode: TS3AMzir, DecodeIdx: 63 |
1716 | /* 5980 */ MCD::OPC_FilterValueOrFail, 1, |
1717 | /* 5982 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1718 | /* 5985 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 5993 |
1719 | /* 5989 */ MCD::OPC_Decode, 203, 35, 63, // Opcode: TS3AMrii, DecodeIdx: 63 |
1720 | /* 5993 */ MCD::OPC_FilterValueOrFail, 1, |
1721 | /* 5995 */ MCD::OPC_Decode, 204, 35, 63, // Opcode: TS3AMrir, DecodeIdx: 63 |
1722 | /* 5999 */ MCD::OPC_FilterValue, 166, 1, 43, 0, // Skip to: 6047 |
1723 | /* 6004 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1724 | /* 6007 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 6028 |
1725 | /* 6011 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1726 | /* 6014 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 6022 |
1727 | /* 6018 */ MCD::OPC_Decode, 244, 2, 63, // Opcode: ATMAMzii, DecodeIdx: 63 |
1728 | /* 6022 */ MCD::OPC_FilterValueOrFail, 1, |
1729 | /* 6024 */ MCD::OPC_Decode, 245, 2, 63, // Opcode: ATMAMzir, DecodeIdx: 63 |
1730 | /* 6028 */ MCD::OPC_FilterValueOrFail, 1, |
1731 | /* 6030 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1732 | /* 6033 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 6041 |
1733 | /* 6037 */ MCD::OPC_Decode, 242, 2, 63, // Opcode: ATMAMrii, DecodeIdx: 63 |
1734 | /* 6041 */ MCD::OPC_FilterValueOrFail, 1, |
1735 | /* 6043 */ MCD::OPC_Decode, 243, 2, 63, // Opcode: ATMAMrir, DecodeIdx: 63 |
1736 | /* 6047 */ MCD::OPC_FilterValue, 168, 1, 59, 0, // Skip to: 6111 |
1737 | /* 6052 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1738 | /* 6055 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6084 |
1739 | /* 6059 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1740 | /* 6062 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6074 |
1741 | /* 6066 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1742 | /* 6070 */ MCD::OPC_Decode, 239, 6, 51, // Opcode: NNDim, DecodeIdx: 51 |
1743 | /* 6074 */ MCD::OPC_FilterValueOrFail, 1, |
1744 | /* 6076 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1745 | /* 6080 */ MCD::OPC_Decode, 241, 6, 52, // Opcode: NNDrm, DecodeIdx: 52 |
1746 | /* 6084 */ MCD::OPC_FilterValueOrFail, 1, |
1747 | /* 6086 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1748 | /* 6089 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6101 |
1749 | /* 6093 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1750 | /* 6097 */ MCD::OPC_Decode, 240, 6, 53, // Opcode: NNDir, DecodeIdx: 53 |
1751 | /* 6101 */ MCD::OPC_FilterValueOrFail, 1, |
1752 | /* 6103 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1753 | /* 6107 */ MCD::OPC_Decode, 242, 6, 54, // Opcode: NNDrr, DecodeIdx: 54 |
1754 | /* 6111 */ MCD::OPC_FilterValue, 170, 1, 59, 0, // Skip to: 6175 |
1755 | /* 6116 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1756 | /* 6119 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6148 |
1757 | /* 6123 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1758 | /* 6126 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6138 |
1759 | /* 6130 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1760 | /* 6134 */ MCD::OPC_Decode, 203, 4, 51, // Opcode: CMPULim, DecodeIdx: 51 |
1761 | /* 6138 */ MCD::OPC_FilterValueOrFail, 1, |
1762 | /* 6140 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1763 | /* 6144 */ MCD::OPC_Decode, 205, 4, 52, // Opcode: CMPULrm, DecodeIdx: 52 |
1764 | /* 6148 */ MCD::OPC_FilterValueOrFail, 1, |
1765 | /* 6150 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1766 | /* 6153 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6165 |
1767 | /* 6157 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1768 | /* 6161 */ MCD::OPC_Decode, 204, 4, 53, // Opcode: CMPULir, DecodeIdx: 53 |
1769 | /* 6165 */ MCD::OPC_FilterValueOrFail, 1, |
1770 | /* 6167 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1771 | /* 6171 */ MCD::OPC_Decode, 206, 4, 54, // Opcode: CMPULrr, DecodeIdx: 54 |
1772 | /* 6175 */ MCD::OPC_FilterValue, 171, 1, 59, 0, // Skip to: 6239 |
1773 | /* 6180 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1774 | /* 6183 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6212 |
1775 | /* 6187 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1776 | /* 6190 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6202 |
1777 | /* 6194 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1778 | /* 6198 */ MCD::OPC_Decode, 207, 4, 66, // Opcode: CMPUWim, DecodeIdx: 66 |
1779 | /* 6202 */ MCD::OPC_FilterValueOrFail, 1, |
1780 | /* 6204 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1781 | /* 6208 */ MCD::OPC_Decode, 209, 4, 67, // Opcode: CMPUWrm, DecodeIdx: 67 |
1782 | /* 6212 */ MCD::OPC_FilterValueOrFail, 1, |
1783 | /* 6214 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1784 | /* 6217 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6229 |
1785 | /* 6221 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1786 | /* 6225 */ MCD::OPC_Decode, 208, 4, 79, // Opcode: CMPUWir, DecodeIdx: 79 |
1787 | /* 6229 */ MCD::OPC_FilterValueOrFail, 1, |
1788 | /* 6231 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1789 | /* 6235 */ MCD::OPC_Decode, 210, 4, 69, // Opcode: CMPUWrr, DecodeIdx: 69 |
1790 | /* 6239 */ MCD::OPC_FilterValue, 172, 1, 59, 0, // Skip to: 6303 |
1791 | /* 6244 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1792 | /* 6247 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6276 |
1793 | /* 6251 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1794 | /* 6254 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6266 |
1795 | /* 6258 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1796 | /* 6262 */ MCD::OPC_Decode, 209, 6, 59, // Opcode: MRGim, DecodeIdx: 59 |
1797 | /* 6266 */ MCD::OPC_FilterValueOrFail, 1, |
1798 | /* 6268 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1799 | /* 6272 */ MCD::OPC_Decode, 211, 6, 60, // Opcode: MRGrm, DecodeIdx: 60 |
1800 | /* 6276 */ MCD::OPC_FilterValueOrFail, 1, |
1801 | /* 6278 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1802 | /* 6281 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6293 |
1803 | /* 6285 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1804 | /* 6289 */ MCD::OPC_Decode, 210, 6, 61, // Opcode: MRGir, DecodeIdx: 61 |
1805 | /* 6293 */ MCD::OPC_FilterValueOrFail, 1, |
1806 | /* 6295 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1807 | /* 6299 */ MCD::OPC_Decode, 212, 6, 62, // Opcode: MRGrr, DecodeIdx: 62 |
1808 | /* 6303 */ MCD::OPC_FilterValue, 174, 1, 59, 0, // Skip to: 6367 |
1809 | /* 6308 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1810 | /* 6311 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6340 |
1811 | /* 6315 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1812 | /* 6318 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6330 |
1813 | /* 6322 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1814 | /* 6326 */ MCD::OPC_Decode, 229, 34, 34, // Opcode: SLALmi, DecodeIdx: 34 |
1815 | /* 6330 */ MCD::OPC_FilterValueOrFail, 1, |
1816 | /* 6332 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1817 | /* 6336 */ MCD::OPC_Decode, 230, 34, 80, // Opcode: SLALmr, DecodeIdx: 80 |
1818 | /* 6340 */ MCD::OPC_FilterValueOrFail, 1, |
1819 | /* 6342 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1820 | /* 6345 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6357 |
1821 | /* 6349 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1822 | /* 6353 */ MCD::OPC_Decode, 231, 34, 35, // Opcode: SLALri, DecodeIdx: 35 |
1823 | /* 6357 */ MCD::OPC_FilterValueOrFail, 1, |
1824 | /* 6359 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1825 | /* 6363 */ MCD::OPC_Decode, 232, 34, 81, // Opcode: SLALrr, DecodeIdx: 81 |
1826 | /* 6367 */ MCD::OPC_FilterValue, 176, 1, 59, 0, // Skip to: 6431 |
1827 | /* 6372 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1828 | /* 6375 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6404 |
1829 | /* 6379 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1830 | /* 6382 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6394 |
1831 | /* 6386 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1832 | /* 6390 */ MCD::OPC_Decode, 176, 35, 51, // Opcode: SUBULim, DecodeIdx: 51 |
1833 | /* 6394 */ MCD::OPC_FilterValueOrFail, 1, |
1834 | /* 6396 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1835 | /* 6400 */ MCD::OPC_Decode, 178, 35, 52, // Opcode: SUBULrm, DecodeIdx: 52 |
1836 | /* 6404 */ MCD::OPC_FilterValueOrFail, 1, |
1837 | /* 6406 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1838 | /* 6409 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6421 |
1839 | /* 6413 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1840 | /* 6417 */ MCD::OPC_Decode, 177, 35, 53, // Opcode: SUBULir, DecodeIdx: 53 |
1841 | /* 6421 */ MCD::OPC_FilterValueOrFail, 1, |
1842 | /* 6423 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1843 | /* 6427 */ MCD::OPC_Decode, 179, 35, 54, // Opcode: SUBULrr, DecodeIdx: 54 |
1844 | /* 6431 */ MCD::OPC_FilterValue, 177, 1, 59, 0, // Skip to: 6495 |
1845 | /* 6436 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1846 | /* 6439 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6468 |
1847 | /* 6443 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1848 | /* 6446 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6458 |
1849 | /* 6450 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1850 | /* 6454 */ MCD::OPC_Decode, 180, 35, 66, // Opcode: SUBUWim, DecodeIdx: 66 |
1851 | /* 6458 */ MCD::OPC_FilterValueOrFail, 1, |
1852 | /* 6460 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1853 | /* 6464 */ MCD::OPC_Decode, 182, 35, 67, // Opcode: SUBUWrm, DecodeIdx: 67 |
1854 | /* 6468 */ MCD::OPC_FilterValueOrFail, 1, |
1855 | /* 6470 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1856 | /* 6473 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6485 |
1857 | /* 6477 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1858 | /* 6481 */ MCD::OPC_Decode, 181, 35, 79, // Opcode: SUBUWir, DecodeIdx: 79 |
1859 | /* 6485 */ MCD::OPC_FilterValueOrFail, 1, |
1860 | /* 6487 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1861 | /* 6491 */ MCD::OPC_Decode, 183, 35, 69, // Opcode: SUBUWrr, DecodeIdx: 69 |
1862 | /* 6495 */ MCD::OPC_FilterValue, 178, 1, 59, 0, // Skip to: 6559 |
1863 | /* 6500 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1864 | /* 6503 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6532 |
1865 | /* 6507 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1866 | /* 6510 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6522 |
1867 | /* 6514 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1868 | /* 6518 */ MCD::OPC_Decode, 217, 2, 51, // Opcode: ADDSLim, DecodeIdx: 51 |
1869 | /* 6522 */ MCD::OPC_FilterValueOrFail, 1, |
1870 | /* 6524 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1871 | /* 6528 */ MCD::OPC_Decode, 219, 2, 52, // Opcode: ADDSLrm, DecodeIdx: 52 |
1872 | /* 6532 */ MCD::OPC_FilterValueOrFail, 1, |
1873 | /* 6534 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1874 | /* 6537 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6549 |
1875 | /* 6541 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1876 | /* 6545 */ MCD::OPC_Decode, 218, 2, 65, // Opcode: ADDSLri, DecodeIdx: 65 |
1877 | /* 6549 */ MCD::OPC_FilterValueOrFail, 1, |
1878 | /* 6551 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1879 | /* 6555 */ MCD::OPC_Decode, 220, 2, 54, // Opcode: ADDSLrr, DecodeIdx: 54 |
1880 | /* 6559 */ MCD::OPC_FilterValue, 180, 1, 59, 0, // Skip to: 6623 |
1881 | /* 6564 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1882 | /* 6567 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6596 |
1883 | /* 6571 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1884 | /* 6574 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6586 |
1885 | /* 6578 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1886 | /* 6582 */ MCD::OPC_Decode, 168, 35, 66, // Opcode: SUBSWSXim, DecodeIdx: 66 |
1887 | /* 6586 */ MCD::OPC_FilterValueOrFail, 1, |
1888 | /* 6588 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1889 | /* 6592 */ MCD::OPC_Decode, 170, 35, 67, // Opcode: SUBSWSXrm, DecodeIdx: 67 |
1890 | /* 6596 */ MCD::OPC_FilterValueOrFail, 1, |
1891 | /* 6598 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1892 | /* 6601 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6613 |
1893 | /* 6605 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1894 | /* 6609 */ MCD::OPC_Decode, 169, 35, 79, // Opcode: SUBSWSXir, DecodeIdx: 79 |
1895 | /* 6613 */ MCD::OPC_FilterValueOrFail, 1, |
1896 | /* 6615 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1897 | /* 6619 */ MCD::OPC_Decode, 171, 35, 69, // Opcode: SUBSWSXrr, DecodeIdx: 69 |
1898 | /* 6623 */ MCD::OPC_FilterValue, 181, 1, 59, 0, // Skip to: 6687 |
1899 | /* 6628 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1900 | /* 6631 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6660 |
1901 | /* 6635 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1902 | /* 6638 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6650 |
1903 | /* 6642 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1904 | /* 6646 */ MCD::OPC_Decode, 172, 35, 66, // Opcode: SUBSWZXim, DecodeIdx: 66 |
1905 | /* 6650 */ MCD::OPC_FilterValueOrFail, 1, |
1906 | /* 6652 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1907 | /* 6656 */ MCD::OPC_Decode, 174, 35, 67, // Opcode: SUBSWZXrm, DecodeIdx: 67 |
1908 | /* 6660 */ MCD::OPC_FilterValueOrFail, 1, |
1909 | /* 6662 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1910 | /* 6665 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6677 |
1911 | /* 6669 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1912 | /* 6673 */ MCD::OPC_Decode, 173, 35, 79, // Opcode: SUBSWZXir, DecodeIdx: 79 |
1913 | /* 6677 */ MCD::OPC_FilterValueOrFail, 1, |
1914 | /* 6679 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1915 | /* 6683 */ MCD::OPC_Decode, 175, 35, 69, // Opcode: SUBSWZXrr, DecodeIdx: 69 |
1916 | /* 6687 */ MCD::OPC_FilterValue, 182, 1, 59, 0, // Skip to: 6751 |
1917 | /* 6692 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1918 | /* 6695 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6724 |
1919 | /* 6699 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1920 | /* 6702 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6714 |
1921 | /* 6706 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1922 | /* 6710 */ MCD::OPC_Decode, 164, 35, 51, // Opcode: SUBSLim, DecodeIdx: 51 |
1923 | /* 6714 */ MCD::OPC_FilterValueOrFail, 1, |
1924 | /* 6716 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1925 | /* 6720 */ MCD::OPC_Decode, 166, 35, 52, // Opcode: SUBSLrm, DecodeIdx: 52 |
1926 | /* 6724 */ MCD::OPC_FilterValueOrFail, 1, |
1927 | /* 6726 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1928 | /* 6729 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6741 |
1929 | /* 6733 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1930 | /* 6737 */ MCD::OPC_Decode, 165, 35, 53, // Opcode: SUBSLir, DecodeIdx: 53 |
1931 | /* 6741 */ MCD::OPC_FilterValueOrFail, 1, |
1932 | /* 6743 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1933 | /* 6747 */ MCD::OPC_Decode, 167, 35, 54, // Opcode: SUBSLrr, DecodeIdx: 54 |
1934 | /* 6751 */ MCD::OPC_FilterValue, 184, 1, 59, 0, // Skip to: 6815 |
1935 | /* 6756 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1936 | /* 6759 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6788 |
1937 | /* 6763 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1938 | /* 6766 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6778 |
1939 | /* 6770 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1940 | /* 6774 */ MCD::OPC_Decode, 217, 5, 51, // Opcode: FSUBDim, DecodeIdx: 51 |
1941 | /* 6778 */ MCD::OPC_FilterValueOrFail, 1, |
1942 | /* 6780 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1943 | /* 6784 */ MCD::OPC_Decode, 219, 5, 52, // Opcode: FSUBDrm, DecodeIdx: 52 |
1944 | /* 6788 */ MCD::OPC_FilterValueOrFail, 1, |
1945 | /* 6790 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1946 | /* 6793 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6805 |
1947 | /* 6797 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1948 | /* 6801 */ MCD::OPC_Decode, 218, 5, 53, // Opcode: FSUBDir, DecodeIdx: 53 |
1949 | /* 6805 */ MCD::OPC_FilterValueOrFail, 1, |
1950 | /* 6807 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1951 | /* 6811 */ MCD::OPC_Decode, 220, 5, 54, // Opcode: FSUBDrr, DecodeIdx: 54 |
1952 | /* 6815 */ MCD::OPC_FilterValue, 185, 1, 59, 0, // Skip to: 6879 |
1953 | /* 6820 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1954 | /* 6823 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6852 |
1955 | /* 6827 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1956 | /* 6830 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6842 |
1957 | /* 6834 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1958 | /* 6838 */ MCD::OPC_Decode, 225, 5, 55, // Opcode: FSUBSim, DecodeIdx: 55 |
1959 | /* 6842 */ MCD::OPC_FilterValueOrFail, 1, |
1960 | /* 6844 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1961 | /* 6848 */ MCD::OPC_Decode, 227, 5, 56, // Opcode: FSUBSrm, DecodeIdx: 56 |
1962 | /* 6852 */ MCD::OPC_FilterValueOrFail, 1, |
1963 | /* 6854 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1964 | /* 6857 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6869 |
1965 | /* 6861 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1966 | /* 6865 */ MCD::OPC_Decode, 226, 5, 57, // Opcode: FSUBSir, DecodeIdx: 57 |
1967 | /* 6869 */ MCD::OPC_FilterValueOrFail, 1, |
1968 | /* 6871 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1969 | /* 6875 */ MCD::OPC_Decode, 228, 5, 58, // Opcode: FSUBSrr, DecodeIdx: 58 |
1970 | /* 6879 */ MCD::OPC_FilterValue, 186, 1, 59, 0, // Skip to: 6943 |
1971 | /* 6884 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1972 | /* 6887 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6916 |
1973 | /* 6891 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1974 | /* 6894 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6906 |
1975 | /* 6898 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1976 | /* 6902 */ MCD::OPC_Decode, 176, 5, 51, // Opcode: FDIVDim, DecodeIdx: 51 |
1977 | /* 6906 */ MCD::OPC_FilterValueOrFail, 1, |
1978 | /* 6908 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1979 | /* 6912 */ MCD::OPC_Decode, 178, 5, 52, // Opcode: FDIVDrm, DecodeIdx: 52 |
1980 | /* 6916 */ MCD::OPC_FilterValueOrFail, 1, |
1981 | /* 6918 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1982 | /* 6921 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6933 |
1983 | /* 6925 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1984 | /* 6929 */ MCD::OPC_Decode, 177, 5, 53, // Opcode: FDIVDir, DecodeIdx: 53 |
1985 | /* 6933 */ MCD::OPC_FilterValueOrFail, 1, |
1986 | /* 6935 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1987 | /* 6939 */ MCD::OPC_Decode, 179, 5, 54, // Opcode: FDIVDrr, DecodeIdx: 54 |
1988 | /* 6943 */ MCD::OPC_FilterValue, 187, 1, 59, 0, // Skip to: 7007 |
1989 | /* 6948 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
1990 | /* 6951 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 6980 |
1991 | /* 6955 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
1992 | /* 6958 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6970 |
1993 | /* 6962 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1994 | /* 6966 */ MCD::OPC_Decode, 180, 5, 55, // Opcode: FDIVSim, DecodeIdx: 55 |
1995 | /* 6970 */ MCD::OPC_FilterValueOrFail, 1, |
1996 | /* 6972 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
1997 | /* 6976 */ MCD::OPC_Decode, 182, 5, 56, // Opcode: FDIVSrm, DecodeIdx: 56 |
1998 | /* 6980 */ MCD::OPC_FilterValueOrFail, 1, |
1999 | /* 6982 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2000 | /* 6985 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 6997 |
2001 | /* 6989 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2002 | /* 6993 */ MCD::OPC_Decode, 181, 5, 57, // Opcode: FDIVSir, DecodeIdx: 57 |
2003 | /* 6997 */ MCD::OPC_FilterValueOrFail, 1, |
2004 | /* 6999 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2005 | /* 7003 */ MCD::OPC_Decode, 183, 5, 58, // Opcode: FDIVSrr, DecodeIdx: 58 |
2006 | /* 7007 */ MCD::OPC_FilterValue, 188, 1, 25, 0, // Skip to: 7037 |
2007 | /* 7012 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2008 | /* 7015 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7027 |
2009 | /* 7019 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2010 | /* 7023 */ MCD::OPC_Decode, 217, 4, 5, // Opcode: CVTDWi, DecodeIdx: 5 |
2011 | /* 7027 */ MCD::OPC_FilterValueOrFail, 1, |
2012 | /* 7029 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2013 | /* 7033 */ MCD::OPC_Decode, 218, 4, 82, // Opcode: CVTDWr, DecodeIdx: 82 |
2014 | /* 7037 */ MCD::OPC_FilterValue, 189, 1, 25, 0, // Skip to: 7067 |
2015 | /* 7042 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2016 | /* 7045 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7057 |
2017 | /* 7049 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2018 | /* 7053 */ MCD::OPC_Decode, 229, 4, 24, // Opcode: CVTSWi, DecodeIdx: 24 |
2019 | /* 7057 */ MCD::OPC_FilterValueOrFail, 1, |
2020 | /* 7059 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2021 | /* 7063 */ MCD::OPC_Decode, 230, 4, 83, // Opcode: CVTSWr, DecodeIdx: 83 |
2022 | /* 7067 */ MCD::OPC_FilterValue, 190, 1, 25, 0, // Skip to: 7097 |
2023 | /* 7072 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2024 | /* 7075 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7087 |
2025 | /* 7079 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2026 | /* 7083 */ MCD::OPC_Decode, 211, 4, 5, // Opcode: CVTDLi, DecodeIdx: 5 |
2027 | /* 7087 */ MCD::OPC_FilterValueOrFail, 1, |
2028 | /* 7089 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2029 | /* 7093 */ MCD::OPC_Decode, 212, 4, 84, // Opcode: CVTDLr, DecodeIdx: 84 |
2030 | /* 7097 */ MCD::OPC_FilterValue, 196, 1, 43, 0, // Skip to: 7145 |
2031 | /* 7102 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2032 | /* 7105 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 7126 |
2033 | /* 7109 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2034 | /* 7112 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7120 |
2035 | /* 7116 */ MCD::OPC_Decode, 169, 4, 85, // Opcode: CASLzii, DecodeIdx: 85 |
2036 | /* 7120 */ MCD::OPC_FilterValueOrFail, 1, |
2037 | /* 7122 */ MCD::OPC_Decode, 170, 4, 85, // Opcode: CASLzir, DecodeIdx: 85 |
2038 | /* 7126 */ MCD::OPC_FilterValueOrFail, 1, |
2039 | /* 7128 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2040 | /* 7131 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7139 |
2041 | /* 7135 */ MCD::OPC_Decode, 167, 4, 85, // Opcode: CASLrii, DecodeIdx: 85 |
2042 | /* 7139 */ MCD::OPC_FilterValueOrFail, 1, |
2043 | /* 7141 */ MCD::OPC_Decode, 168, 4, 85, // Opcode: CASLrir, DecodeIdx: 85 |
2044 | /* 7145 */ MCD::OPC_FilterValue, 197, 1, 43, 0, // Skip to: 7193 |
2045 | /* 7150 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2046 | /* 7153 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 7174 |
2047 | /* 7157 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2048 | /* 7160 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7168 |
2049 | /* 7164 */ MCD::OPC_Decode, 173, 4, 86, // Opcode: CASWzii, DecodeIdx: 86 |
2050 | /* 7168 */ MCD::OPC_FilterValueOrFail, 1, |
2051 | /* 7170 */ MCD::OPC_Decode, 174, 4, 86, // Opcode: CASWzir, DecodeIdx: 86 |
2052 | /* 7174 */ MCD::OPC_FilterValueOrFail, 1, |
2053 | /* 7176 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2054 | /* 7179 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7187 |
2055 | /* 7183 */ MCD::OPC_Decode, 171, 4, 86, // Opcode: CASWrii, DecodeIdx: 86 |
2056 | /* 7187 */ MCD::OPC_FilterValueOrFail, 1, |
2057 | /* 7189 */ MCD::OPC_Decode, 172, 4, 86, // Opcode: CASWrir, DecodeIdx: 86 |
2058 | /* 7193 */ MCD::OPC_FilterValue, 200, 1, 59, 0, // Skip to: 7257 |
2059 | /* 7198 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2060 | /* 7201 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7230 |
2061 | /* 7205 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2062 | /* 7208 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7220 |
2063 | /* 7212 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2064 | /* 7216 */ MCD::OPC_Decode, 241, 34, 87, // Opcode: SLDrmi, DecodeIdx: 87 |
2065 | /* 7220 */ MCD::OPC_FilterValueOrFail, 1, |
2066 | /* 7222 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2067 | /* 7226 */ MCD::OPC_Decode, 242, 34, 88, // Opcode: SLDrmr, DecodeIdx: 88 |
2068 | /* 7230 */ MCD::OPC_FilterValueOrFail, 1, |
2069 | /* 7232 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2070 | /* 7235 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7247 |
2071 | /* 7239 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2072 | /* 7243 */ MCD::OPC_Decode, 243, 34, 89, // Opcode: SLDrri, DecodeIdx: 89 |
2073 | /* 7247 */ MCD::OPC_FilterValueOrFail, 1, |
2074 | /* 7249 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2075 | /* 7253 */ MCD::OPC_Decode, 244, 34, 90, // Opcode: SLDrrr, DecodeIdx: 90 |
2076 | /* 7257 */ MCD::OPC_FilterValue, 202, 1, 59, 0, // Skip to: 7321 |
2077 | /* 7262 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2078 | /* 7265 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7294 |
2079 | /* 7269 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2080 | /* 7272 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7284 |
2081 | /* 7276 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2082 | /* 7280 */ MCD::OPC_Decode, 245, 34, 34, // Opcode: SLLmi, DecodeIdx: 34 |
2083 | /* 7284 */ MCD::OPC_FilterValueOrFail, 1, |
2084 | /* 7286 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2085 | /* 7290 */ MCD::OPC_Decode, 246, 34, 80, // Opcode: SLLmr, DecodeIdx: 80 |
2086 | /* 7294 */ MCD::OPC_FilterValueOrFail, 1, |
2087 | /* 7296 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2088 | /* 7299 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7311 |
2089 | /* 7303 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2090 | /* 7307 */ MCD::OPC_Decode, 247, 34, 35, // Opcode: SLLri, DecodeIdx: 35 |
2091 | /* 7311 */ MCD::OPC_FilterValueOrFail, 1, |
2092 | /* 7313 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2093 | /* 7317 */ MCD::OPC_Decode, 248, 34, 81, // Opcode: SLLrr, DecodeIdx: 81 |
2094 | /* 7321 */ MCD::OPC_FilterValue, 204, 1, 59, 0, // Skip to: 7385 |
2095 | /* 7326 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2096 | /* 7329 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7358 |
2097 | /* 7333 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2098 | /* 7336 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7348 |
2099 | /* 7340 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2100 | /* 7344 */ MCD::OPC_Decode, 233, 34, 91, // Opcode: SLAWSXmi, DecodeIdx: 91 |
2101 | /* 7348 */ MCD::OPC_FilterValueOrFail, 1, |
2102 | /* 7350 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2103 | /* 7354 */ MCD::OPC_Decode, 234, 34, 92, // Opcode: SLAWSXmr, DecodeIdx: 92 |
2104 | /* 7358 */ MCD::OPC_FilterValueOrFail, 1, |
2105 | /* 7360 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2106 | /* 7363 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7375 |
2107 | /* 7367 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2108 | /* 7371 */ MCD::OPC_Decode, 235, 34, 93, // Opcode: SLAWSXri, DecodeIdx: 93 |
2109 | /* 7375 */ MCD::OPC_FilterValueOrFail, 1, |
2110 | /* 7377 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2111 | /* 7381 */ MCD::OPC_Decode, 236, 34, 94, // Opcode: SLAWSXrr, DecodeIdx: 94 |
2112 | /* 7385 */ MCD::OPC_FilterValue, 205, 1, 59, 0, // Skip to: 7449 |
2113 | /* 7390 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2114 | /* 7393 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7422 |
2115 | /* 7397 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2116 | /* 7400 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7412 |
2117 | /* 7404 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2118 | /* 7408 */ MCD::OPC_Decode, 237, 34, 91, // Opcode: SLAWZXmi, DecodeIdx: 91 |
2119 | /* 7412 */ MCD::OPC_FilterValueOrFail, 1, |
2120 | /* 7414 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2121 | /* 7418 */ MCD::OPC_Decode, 238, 34, 92, // Opcode: SLAWZXmr, DecodeIdx: 92 |
2122 | /* 7422 */ MCD::OPC_FilterValueOrFail, 1, |
2123 | /* 7424 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2124 | /* 7427 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7439 |
2125 | /* 7431 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2126 | /* 7435 */ MCD::OPC_Decode, 239, 34, 93, // Opcode: SLAWZXri, DecodeIdx: 93 |
2127 | /* 7439 */ MCD::OPC_FilterValueOrFail, 1, |
2128 | /* 7441 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2129 | /* 7445 */ MCD::OPC_Decode, 240, 34, 94, // Opcode: SLAWZXrr, DecodeIdx: 94 |
2130 | /* 7449 */ MCD::OPC_FilterValue, 206, 1, 25, 0, // Skip to: 7479 |
2131 | /* 7454 */ MCD::OPC_ExtractField, 39, 9, // Inst{47-39} ... |
2132 | /* 7457 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7469 |
2133 | /* 7461 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2134 | /* 7465 */ MCD::OPC_Decode, 133, 6, 40, // Opcode: LDZm, DecodeIdx: 40 |
2135 | /* 7469 */ MCD::OPC_FilterValueOrFail, 1, |
2136 | /* 7471 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2137 | /* 7475 */ MCD::OPC_Decode, 134, 6, 41, // Opcode: LDZr, DecodeIdx: 41 |
2138 | /* 7479 */ MCD::OPC_FilterValue, 208, 1, 96, 0, // Skip to: 7580 |
2139 | /* 7484 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
2140 | /* 7487 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 7534 |
2141 | /* 7491 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2142 | /* 7494 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 7515 |
2143 | /* 7498 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2144 | /* 7501 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7509 |
2145 | /* 7505 */ MCD::OPC_Decode, 183, 6, 51, // Opcode: MAXSLim, DecodeIdx: 51 |
2146 | /* 7509 */ MCD::OPC_FilterValueOrFail, 1, |
2147 | /* 7511 */ MCD::OPC_Decode, 185, 6, 52, // Opcode: MAXSLrm, DecodeIdx: 52 |
2148 | /* 7515 */ MCD::OPC_FilterValueOrFail, 1, |
2149 | /* 7517 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2150 | /* 7520 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7528 |
2151 | /* 7524 */ MCD::OPC_Decode, 184, 6, 65, // Opcode: MAXSLri, DecodeIdx: 65 |
2152 | /* 7528 */ MCD::OPC_FilterValueOrFail, 1, |
2153 | /* 7530 */ MCD::OPC_Decode, 186, 6, 54, // Opcode: MAXSLrr, DecodeIdx: 54 |
2154 | /* 7534 */ MCD::OPC_FilterValueOrFail, 128, 1, |
2155 | /* 7537 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2156 | /* 7540 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 7561 |
2157 | /* 7544 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2158 | /* 7547 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7555 |
2159 | /* 7551 */ MCD::OPC_Decode, 195, 6, 51, // Opcode: MINSLim, DecodeIdx: 51 |
2160 | /* 7555 */ MCD::OPC_FilterValueOrFail, 1, |
2161 | /* 7557 */ MCD::OPC_Decode, 197, 6, 52, // Opcode: MINSLrm, DecodeIdx: 52 |
2162 | /* 7561 */ MCD::OPC_FilterValueOrFail, 1, |
2163 | /* 7563 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2164 | /* 7566 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 7574 |
2165 | /* 7570 */ MCD::OPC_Decode, 196, 6, 65, // Opcode: MINSLri, DecodeIdx: 65 |
2166 | /* 7574 */ MCD::OPC_FilterValueOrFail, 1, |
2167 | /* 7576 */ MCD::OPC_Decode, 198, 6, 54, // Opcode: MINSLrr, DecodeIdx: 54 |
2168 | /* 7580 */ MCD::OPC_FilterValue, 210, 1, 25, 0, // Skip to: 7610 |
2169 | /* 7585 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2170 | /* 7588 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7600 |
2171 | /* 7592 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2172 | /* 7596 */ MCD::OPC_Decode, 147, 6, 95, // Opcode: LFRi, DecodeIdx: 95 |
2173 | /* 7600 */ MCD::OPC_FilterValueOrFail, 1, |
2174 | /* 7602 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
2175 | /* 7606 */ MCD::OPC_Decode, 148, 6, 42, // Opcode: LFRr, DecodeIdx: 42 |
2176 | /* 7610 */ MCD::OPC_FilterValue, 212, 1, 59, 0, // Skip to: 7674 |
2177 | /* 7615 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2178 | /* 7618 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7647 |
2179 | /* 7622 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2180 | /* 7625 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7637 |
2181 | /* 7629 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2182 | /* 7633 */ MCD::OPC_Decode, 191, 4, 51, // Opcode: CMPSLim, DecodeIdx: 51 |
2183 | /* 7637 */ MCD::OPC_FilterValueOrFail, 1, |
2184 | /* 7639 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2185 | /* 7643 */ MCD::OPC_Decode, 193, 4, 52, // Opcode: CMPSLrm, DecodeIdx: 52 |
2186 | /* 7647 */ MCD::OPC_FilterValueOrFail, 1, |
2187 | /* 7649 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2188 | /* 7652 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7664 |
2189 | /* 7656 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2190 | /* 7660 */ MCD::OPC_Decode, 192, 4, 53, // Opcode: CMPSLir, DecodeIdx: 53 |
2191 | /* 7664 */ MCD::OPC_FilterValueOrFail, 1, |
2192 | /* 7666 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2193 | /* 7670 */ MCD::OPC_Decode, 194, 4, 54, // Opcode: CMPSLrr, DecodeIdx: 54 |
2194 | /* 7674 */ MCD::OPC_FilterValue, 214, 1, 59, 0, // Skip to: 7738 |
2195 | /* 7679 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2196 | /* 7682 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7711 |
2197 | /* 7686 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2198 | /* 7689 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7701 |
2199 | /* 7693 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2200 | /* 7697 */ MCD::OPC_Decode, 213, 6, 51, // Opcode: MULSLWim, DecodeIdx: 51 |
2201 | /* 7701 */ MCD::OPC_FilterValueOrFail, 1, |
2202 | /* 7703 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2203 | /* 7707 */ MCD::OPC_Decode, 215, 6, 96, // Opcode: MULSLWrm, DecodeIdx: 96 |
2204 | /* 7711 */ MCD::OPC_FilterValueOrFail, 1, |
2205 | /* 7713 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2206 | /* 7716 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7728 |
2207 | /* 7720 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2208 | /* 7724 */ MCD::OPC_Decode, 214, 6, 97, // Opcode: MULSLWri, DecodeIdx: 97 |
2209 | /* 7728 */ MCD::OPC_FilterValueOrFail, 1, |
2210 | /* 7730 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2211 | /* 7734 */ MCD::OPC_Decode, 216, 6, 98, // Opcode: MULSLWrr, DecodeIdx: 98 |
2212 | /* 7738 */ MCD::OPC_FilterValue, 216, 1, 59, 0, // Skip to: 7802 |
2213 | /* 7743 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2214 | /* 7746 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7775 |
2215 | /* 7750 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2216 | /* 7753 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7765 |
2217 | /* 7757 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2218 | /* 7761 */ MCD::OPC_Decode, 156, 5, 99, // Opcode: FADDQim, DecodeIdx: 99 |
2219 | /* 7765 */ MCD::OPC_FilterValueOrFail, 1, |
2220 | /* 7767 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2221 | /* 7771 */ MCD::OPC_Decode, 158, 5, 100, // Opcode: FADDQrm, DecodeIdx: 100 |
2222 | /* 7775 */ MCD::OPC_FilterValueOrFail, 1, |
2223 | /* 7777 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2224 | /* 7780 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7792 |
2225 | /* 7784 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2226 | /* 7788 */ MCD::OPC_Decode, 157, 5, 101, // Opcode: FADDQir, DecodeIdx: 101 |
2227 | /* 7792 */ MCD::OPC_FilterValueOrFail, 1, |
2228 | /* 7794 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2229 | /* 7798 */ MCD::OPC_Decode, 159, 5, 102, // Opcode: FADDQrr, DecodeIdx: 102 |
2230 | /* 7802 */ MCD::OPC_FilterValue, 218, 1, 59, 0, // Skip to: 7866 |
2231 | /* 7807 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2232 | /* 7810 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7839 |
2233 | /* 7814 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2234 | /* 7817 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7829 |
2235 | /* 7821 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2236 | /* 7825 */ MCD::OPC_Decode, 209, 5, 99, // Opcode: FMULQim, DecodeIdx: 99 |
2237 | /* 7829 */ MCD::OPC_FilterValueOrFail, 1, |
2238 | /* 7831 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2239 | /* 7835 */ MCD::OPC_Decode, 211, 5, 100, // Opcode: FMULQrm, DecodeIdx: 100 |
2240 | /* 7839 */ MCD::OPC_FilterValueOrFail, 1, |
2241 | /* 7841 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2242 | /* 7844 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7856 |
2243 | /* 7848 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2244 | /* 7852 */ MCD::OPC_Decode, 210, 5, 101, // Opcode: FMULQir, DecodeIdx: 101 |
2245 | /* 7856 */ MCD::OPC_FilterValueOrFail, 1, |
2246 | /* 7858 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2247 | /* 7862 */ MCD::OPC_Decode, 212, 5, 102, // Opcode: FMULQrr, DecodeIdx: 102 |
2248 | /* 7866 */ MCD::OPC_FilterValue, 220, 1, 59, 0, // Skip to: 7930 |
2249 | /* 7871 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2250 | /* 7874 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7903 |
2251 | /* 7878 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2252 | /* 7881 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7893 |
2253 | /* 7885 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2254 | /* 7889 */ MCD::OPC_Decode, 217, 6, 51, // Opcode: MULSLim, DecodeIdx: 51 |
2255 | /* 7893 */ MCD::OPC_FilterValueOrFail, 1, |
2256 | /* 7895 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2257 | /* 7899 */ MCD::OPC_Decode, 219, 6, 52, // Opcode: MULSLrm, DecodeIdx: 52 |
2258 | /* 7903 */ MCD::OPC_FilterValueOrFail, 1, |
2259 | /* 7905 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2260 | /* 7908 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7920 |
2261 | /* 7912 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2262 | /* 7916 */ MCD::OPC_Decode, 218, 6, 65, // Opcode: MULSLri, DecodeIdx: 65 |
2263 | /* 7920 */ MCD::OPC_FilterValueOrFail, 1, |
2264 | /* 7922 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2265 | /* 7926 */ MCD::OPC_Decode, 220, 6, 54, // Opcode: MULSLrr, DecodeIdx: 54 |
2266 | /* 7930 */ MCD::OPC_FilterValue, 222, 1, 59, 0, // Skip to: 7994 |
2267 | /* 7935 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2268 | /* 7938 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 7967 |
2269 | /* 7942 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2270 | /* 7945 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7957 |
2271 | /* 7949 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2272 | /* 7953 */ MCD::OPC_Decode, 251, 4, 51, // Opcode: DIVULim, DecodeIdx: 51 |
2273 | /* 7957 */ MCD::OPC_FilterValueOrFail, 1, |
2274 | /* 7959 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2275 | /* 7963 */ MCD::OPC_Decode, 253, 4, 52, // Opcode: DIVULrm, DecodeIdx: 52 |
2276 | /* 7967 */ MCD::OPC_FilterValueOrFail, 1, |
2277 | /* 7969 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2278 | /* 7972 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 7984 |
2279 | /* 7976 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2280 | /* 7980 */ MCD::OPC_Decode, 252, 4, 53, // Opcode: DIVULir, DecodeIdx: 53 |
2281 | /* 7984 */ MCD::OPC_FilterValueOrFail, 1, |
2282 | /* 7986 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2283 | /* 7990 */ MCD::OPC_Decode, 254, 4, 54, // Opcode: DIVULrr, DecodeIdx: 54 |
2284 | /* 7994 */ MCD::OPC_FilterValue, 223, 1, 59, 0, // Skip to: 8058 |
2285 | /* 7999 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2286 | /* 8002 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8031 |
2287 | /* 8006 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2288 | /* 8009 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8021 |
2289 | /* 8013 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2290 | /* 8017 */ MCD::OPC_Decode, 255, 4, 66, // Opcode: DIVUWim, DecodeIdx: 66 |
2291 | /* 8021 */ MCD::OPC_FilterValueOrFail, 1, |
2292 | /* 8023 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2293 | /* 8027 */ MCD::OPC_Decode, 129, 5, 67, // Opcode: DIVUWrm, DecodeIdx: 67 |
2294 | /* 8031 */ MCD::OPC_FilterValueOrFail, 1, |
2295 | /* 8033 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2296 | /* 8036 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8048 |
2297 | /* 8040 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2298 | /* 8044 */ MCD::OPC_Decode, 128, 5, 79, // Opcode: DIVUWir, DecodeIdx: 79 |
2299 | /* 8048 */ MCD::OPC_FilterValueOrFail, 1, |
2300 | /* 8050 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2301 | /* 8054 */ MCD::OPC_Decode, 130, 5, 69, // Opcode: DIVUWrr, DecodeIdx: 69 |
2302 | /* 8058 */ MCD::OPC_FilterValue, 232, 1, 59, 0, // Skip to: 8122 |
2303 | /* 8063 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2304 | /* 8066 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8095 |
2305 | /* 8070 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2306 | /* 8073 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8085 |
2307 | /* 8077 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2308 | /* 8081 */ MCD::OPC_Decode, 136, 35, 103, // Opcode: SRDmri, DecodeIdx: 103 |
2309 | /* 8085 */ MCD::OPC_FilterValueOrFail, 1, |
2310 | /* 8087 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2311 | /* 8091 */ MCD::OPC_Decode, 137, 35, 104, // Opcode: SRDmrr, DecodeIdx: 104 |
2312 | /* 8095 */ MCD::OPC_FilterValueOrFail, 1, |
2313 | /* 8097 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2314 | /* 8100 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8112 |
2315 | /* 8104 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2316 | /* 8108 */ MCD::OPC_Decode, 138, 35, 105, // Opcode: SRDrri, DecodeIdx: 105 |
2317 | /* 8112 */ MCD::OPC_FilterValueOrFail, 1, |
2318 | /* 8114 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2319 | /* 8118 */ MCD::OPC_Decode, 139, 35, 106, // Opcode: SRDrrr, DecodeIdx: 106 |
2320 | /* 8122 */ MCD::OPC_FilterValue, 234, 1, 59, 0, // Skip to: 8186 |
2321 | /* 8127 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2322 | /* 8130 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8159 |
2323 | /* 8134 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2324 | /* 8137 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8149 |
2325 | /* 8141 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2326 | /* 8145 */ MCD::OPC_Decode, 140, 35, 34, // Opcode: SRLmi, DecodeIdx: 34 |
2327 | /* 8149 */ MCD::OPC_FilterValueOrFail, 1, |
2328 | /* 8151 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2329 | /* 8155 */ MCD::OPC_Decode, 141, 35, 80, // Opcode: SRLmr, DecodeIdx: 80 |
2330 | /* 8159 */ MCD::OPC_FilterValueOrFail, 1, |
2331 | /* 8161 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2332 | /* 8164 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8176 |
2333 | /* 8168 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2334 | /* 8172 */ MCD::OPC_Decode, 142, 35, 35, // Opcode: SRLri, DecodeIdx: 35 |
2335 | /* 8176 */ MCD::OPC_FilterValueOrFail, 1, |
2336 | /* 8178 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2337 | /* 8182 */ MCD::OPC_Decode, 143, 35, 81, // Opcode: SRLrr, DecodeIdx: 81 |
2338 | /* 8186 */ MCD::OPC_FilterValue, 236, 1, 59, 0, // Skip to: 8250 |
2339 | /* 8191 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2340 | /* 8194 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8223 |
2341 | /* 8198 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2342 | /* 8201 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8213 |
2343 | /* 8205 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2344 | /* 8209 */ MCD::OPC_Decode, 128, 35, 91, // Opcode: SRAWSXmi, DecodeIdx: 91 |
2345 | /* 8213 */ MCD::OPC_FilterValueOrFail, 1, |
2346 | /* 8215 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2347 | /* 8219 */ MCD::OPC_Decode, 129, 35, 92, // Opcode: SRAWSXmr, DecodeIdx: 92 |
2348 | /* 8223 */ MCD::OPC_FilterValueOrFail, 1, |
2349 | /* 8225 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2350 | /* 8228 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8240 |
2351 | /* 8232 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2352 | /* 8236 */ MCD::OPC_Decode, 130, 35, 93, // Opcode: SRAWSXri, DecodeIdx: 93 |
2353 | /* 8240 */ MCD::OPC_FilterValueOrFail, 1, |
2354 | /* 8242 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2355 | /* 8246 */ MCD::OPC_Decode, 131, 35, 94, // Opcode: SRAWSXrr, DecodeIdx: 94 |
2356 | /* 8250 */ MCD::OPC_FilterValue, 237, 1, 59, 0, // Skip to: 8314 |
2357 | /* 8255 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2358 | /* 8258 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8287 |
2359 | /* 8262 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2360 | /* 8265 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8277 |
2361 | /* 8269 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2362 | /* 8273 */ MCD::OPC_Decode, 132, 35, 91, // Opcode: SRAWZXmi, DecodeIdx: 91 |
2363 | /* 8277 */ MCD::OPC_FilterValueOrFail, 1, |
2364 | /* 8279 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2365 | /* 8283 */ MCD::OPC_Decode, 133, 35, 92, // Opcode: SRAWZXmr, DecodeIdx: 92 |
2366 | /* 8287 */ MCD::OPC_FilterValueOrFail, 1, |
2367 | /* 8289 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2368 | /* 8292 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8304 |
2369 | /* 8296 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2370 | /* 8300 */ MCD::OPC_Decode, 134, 35, 93, // Opcode: SRAWZXri, DecodeIdx: 93 |
2371 | /* 8304 */ MCD::OPC_FilterValueOrFail, 1, |
2372 | /* 8306 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2373 | /* 8310 */ MCD::OPC_Decode, 135, 35, 94, // Opcode: SRAWZXrr, DecodeIdx: 94 |
2374 | /* 8314 */ MCD::OPC_FilterValue, 238, 1, 59, 0, // Skip to: 8378 |
2375 | /* 8319 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2376 | /* 8322 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8351 |
2377 | /* 8326 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2378 | /* 8329 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8341 |
2379 | /* 8333 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2380 | /* 8337 */ MCD::OPC_Decode, 252, 34, 34, // Opcode: SRALmi, DecodeIdx: 34 |
2381 | /* 8341 */ MCD::OPC_FilterValueOrFail, 1, |
2382 | /* 8343 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2383 | /* 8347 */ MCD::OPC_Decode, 253, 34, 80, // Opcode: SRALmr, DecodeIdx: 80 |
2384 | /* 8351 */ MCD::OPC_FilterValueOrFail, 1, |
2385 | /* 8353 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2386 | /* 8356 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8368 |
2387 | /* 8360 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2388 | /* 8364 */ MCD::OPC_Decode, 254, 34, 35, // Opcode: SRALri, DecodeIdx: 35 |
2389 | /* 8368 */ MCD::OPC_FilterValueOrFail, 1, |
2390 | /* 8370 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2391 | /* 8374 */ MCD::OPC_Decode, 255, 34, 81, // Opcode: SRALrr, DecodeIdx: 81 |
2392 | /* 8378 */ MCD::OPC_FilterValue, 240, 1, 96, 0, // Skip to: 8479 |
2393 | /* 8383 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
2394 | /* 8386 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 8433 |
2395 | /* 8390 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2396 | /* 8393 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 8414 |
2397 | /* 8397 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2398 | /* 8400 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8408 |
2399 | /* 8404 */ MCD::OPC_Decode, 187, 6, 66, // Opcode: MAXSWSXim, DecodeIdx: 66 |
2400 | /* 8408 */ MCD::OPC_FilterValueOrFail, 1, |
2401 | /* 8410 */ MCD::OPC_Decode, 189, 6, 67, // Opcode: MAXSWSXrm, DecodeIdx: 67 |
2402 | /* 8414 */ MCD::OPC_FilterValueOrFail, 1, |
2403 | /* 8416 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2404 | /* 8419 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8427 |
2405 | /* 8423 */ MCD::OPC_Decode, 188, 6, 68, // Opcode: MAXSWSXri, DecodeIdx: 68 |
2406 | /* 8427 */ MCD::OPC_FilterValueOrFail, 1, |
2407 | /* 8429 */ MCD::OPC_Decode, 190, 6, 69, // Opcode: MAXSWSXrr, DecodeIdx: 69 |
2408 | /* 8433 */ MCD::OPC_FilterValueOrFail, 128, 1, |
2409 | /* 8436 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2410 | /* 8439 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 8460 |
2411 | /* 8443 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2412 | /* 8446 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8454 |
2413 | /* 8450 */ MCD::OPC_Decode, 199, 6, 66, // Opcode: MINSWSXim, DecodeIdx: 66 |
2414 | /* 8454 */ MCD::OPC_FilterValueOrFail, 1, |
2415 | /* 8456 */ MCD::OPC_Decode, 201, 6, 67, // Opcode: MINSWSXrm, DecodeIdx: 67 |
2416 | /* 8460 */ MCD::OPC_FilterValueOrFail, 1, |
2417 | /* 8462 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2418 | /* 8465 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8473 |
2419 | /* 8469 */ MCD::OPC_Decode, 200, 6, 68, // Opcode: MINSWSXri, DecodeIdx: 68 |
2420 | /* 8473 */ MCD::OPC_FilterValueOrFail, 1, |
2421 | /* 8475 */ MCD::OPC_Decode, 202, 6, 69, // Opcode: MINSWSXrr, DecodeIdx: 69 |
2422 | /* 8479 */ MCD::OPC_FilterValue, 241, 1, 96, 0, // Skip to: 8580 |
2423 | /* 8484 */ MCD::OPC_ExtractField, 0, 32, // Inst{31-0} ... |
2424 | /* 8487 */ MCD::OPC_FilterValue, 0, 43, 0, // Skip to: 8534 |
2425 | /* 8491 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2426 | /* 8494 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 8515 |
2427 | /* 8498 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2428 | /* 8501 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8509 |
2429 | /* 8505 */ MCD::OPC_Decode, 191, 6, 66, // Opcode: MAXSWZXim, DecodeIdx: 66 |
2430 | /* 8509 */ MCD::OPC_FilterValueOrFail, 1, |
2431 | /* 8511 */ MCD::OPC_Decode, 193, 6, 67, // Opcode: MAXSWZXrm, DecodeIdx: 67 |
2432 | /* 8515 */ MCD::OPC_FilterValueOrFail, 1, |
2433 | /* 8517 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2434 | /* 8520 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8528 |
2435 | /* 8524 */ MCD::OPC_Decode, 192, 6, 68, // Opcode: MAXSWZXri, DecodeIdx: 68 |
2436 | /* 8528 */ MCD::OPC_FilterValueOrFail, 1, |
2437 | /* 8530 */ MCD::OPC_Decode, 194, 6, 69, // Opcode: MAXSWZXrr, DecodeIdx: 69 |
2438 | /* 8534 */ MCD::OPC_FilterValueOrFail, 128, 1, |
2439 | /* 8537 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2440 | /* 8540 */ MCD::OPC_FilterValue, 0, 17, 0, // Skip to: 8561 |
2441 | /* 8544 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2442 | /* 8547 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8555 |
2443 | /* 8551 */ MCD::OPC_Decode, 203, 6, 66, // Opcode: MINSWZXim, DecodeIdx: 66 |
2444 | /* 8555 */ MCD::OPC_FilterValueOrFail, 1, |
2445 | /* 8557 */ MCD::OPC_Decode, 205, 6, 67, // Opcode: MINSWZXrm, DecodeIdx: 67 |
2446 | /* 8561 */ MCD::OPC_FilterValueOrFail, 1, |
2447 | /* 8563 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2448 | /* 8566 */ MCD::OPC_FilterValue, 0, 4, 0, // Skip to: 8574 |
2449 | /* 8570 */ MCD::OPC_Decode, 204, 6, 68, // Opcode: MINSWZXri, DecodeIdx: 68 |
2450 | /* 8574 */ MCD::OPC_FilterValueOrFail, 1, |
2451 | /* 8576 */ MCD::OPC_Decode, 206, 6, 69, // Opcode: MINSWZXrr, DecodeIdx: 69 |
2452 | /* 8580 */ MCD::OPC_FilterValue, 242, 1, 8, 0, // Skip to: 8593 |
2453 | /* 8585 */ MCD::OPC_CheckFieldOrFail, 0, 55, 0, |
2454 | /* 8589 */ MCD::OPC_Decode, 243, 6, 29, // Opcode: NOP, DecodeIdx: 29 |
2455 | /* 8593 */ MCD::OPC_FilterValue, 244, 1, 59, 0, // Skip to: 8657 |
2456 | /* 8598 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2457 | /* 8601 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8630 |
2458 | /* 8605 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2459 | /* 8608 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8620 |
2460 | /* 8612 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2461 | /* 8616 */ MCD::OPC_Decode, 195, 4, 66, // Opcode: CMPSWSXim, DecodeIdx: 66 |
2462 | /* 8620 */ MCD::OPC_FilterValueOrFail, 1, |
2463 | /* 8622 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2464 | /* 8626 */ MCD::OPC_Decode, 197, 4, 67, // Opcode: CMPSWSXrm, DecodeIdx: 67 |
2465 | /* 8630 */ MCD::OPC_FilterValueOrFail, 1, |
2466 | /* 8632 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2467 | /* 8635 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8647 |
2468 | /* 8639 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2469 | /* 8643 */ MCD::OPC_Decode, 196, 4, 79, // Opcode: CMPSWSXir, DecodeIdx: 79 |
2470 | /* 8647 */ MCD::OPC_FilterValueOrFail, 1, |
2471 | /* 8649 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2472 | /* 8653 */ MCD::OPC_Decode, 198, 4, 69, // Opcode: CMPSWSXrr, DecodeIdx: 69 |
2473 | /* 8657 */ MCD::OPC_FilterValue, 245, 1, 59, 0, // Skip to: 8721 |
2474 | /* 8662 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2475 | /* 8665 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8694 |
2476 | /* 8669 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2477 | /* 8672 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8684 |
2478 | /* 8676 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2479 | /* 8680 */ MCD::OPC_Decode, 199, 4, 66, // Opcode: CMPSWZXim, DecodeIdx: 66 |
2480 | /* 8684 */ MCD::OPC_FilterValueOrFail, 1, |
2481 | /* 8686 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2482 | /* 8690 */ MCD::OPC_Decode, 201, 4, 67, // Opcode: CMPSWZXrm, DecodeIdx: 67 |
2483 | /* 8694 */ MCD::OPC_FilterValueOrFail, 1, |
2484 | /* 8696 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2485 | /* 8699 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8711 |
2486 | /* 8703 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2487 | /* 8707 */ MCD::OPC_Decode, 200, 4, 79, // Opcode: CMPSWZXir, DecodeIdx: 79 |
2488 | /* 8711 */ MCD::OPC_FilterValueOrFail, 1, |
2489 | /* 8713 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2490 | /* 8717 */ MCD::OPC_Decode, 202, 4, 69, // Opcode: CMPSWZXrr, DecodeIdx: 69 |
2491 | /* 8721 */ MCD::OPC_FilterValue, 246, 1, 59, 0, // Skip to: 8785 |
2492 | /* 8726 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2493 | /* 8729 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8758 |
2494 | /* 8733 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2495 | /* 8736 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8748 |
2496 | /* 8740 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2497 | /* 8744 */ MCD::OPC_Decode, 243, 4, 66, // Opcode: DIVSWSXim, DecodeIdx: 66 |
2498 | /* 8748 */ MCD::OPC_FilterValueOrFail, 1, |
2499 | /* 8750 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2500 | /* 8754 */ MCD::OPC_Decode, 245, 4, 67, // Opcode: DIVSWSXrm, DecodeIdx: 67 |
2501 | /* 8758 */ MCD::OPC_FilterValueOrFail, 1, |
2502 | /* 8760 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2503 | /* 8763 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8775 |
2504 | /* 8767 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2505 | /* 8771 */ MCD::OPC_Decode, 244, 4, 79, // Opcode: DIVSWSXir, DecodeIdx: 79 |
2506 | /* 8775 */ MCD::OPC_FilterValueOrFail, 1, |
2507 | /* 8777 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2508 | /* 8781 */ MCD::OPC_Decode, 246, 4, 69, // Opcode: DIVSWSXrr, DecodeIdx: 69 |
2509 | /* 8785 */ MCD::OPC_FilterValue, 247, 1, 59, 0, // Skip to: 8849 |
2510 | /* 8790 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2511 | /* 8793 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8822 |
2512 | /* 8797 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2513 | /* 8800 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8812 |
2514 | /* 8804 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2515 | /* 8808 */ MCD::OPC_Decode, 247, 4, 66, // Opcode: DIVSWZXim, DecodeIdx: 66 |
2516 | /* 8812 */ MCD::OPC_FilterValueOrFail, 1, |
2517 | /* 8814 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2518 | /* 8818 */ MCD::OPC_Decode, 249, 4, 67, // Opcode: DIVSWZXrm, DecodeIdx: 67 |
2519 | /* 8822 */ MCD::OPC_FilterValueOrFail, 1, |
2520 | /* 8824 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2521 | /* 8827 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8839 |
2522 | /* 8831 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2523 | /* 8835 */ MCD::OPC_Decode, 248, 4, 79, // Opcode: DIVSWZXir, DecodeIdx: 79 |
2524 | /* 8839 */ MCD::OPC_FilterValueOrFail, 1, |
2525 | /* 8841 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2526 | /* 8845 */ MCD::OPC_Decode, 250, 4, 69, // Opcode: DIVSWZXrr, DecodeIdx: 69 |
2527 | /* 8849 */ MCD::OPC_FilterValue, 248, 1, 59, 0, // Skip to: 8913 |
2528 | /* 8854 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2529 | /* 8857 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8886 |
2530 | /* 8861 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2531 | /* 8864 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8876 |
2532 | /* 8868 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2533 | /* 8872 */ MCD::OPC_Decode, 221, 5, 99, // Opcode: FSUBQim, DecodeIdx: 99 |
2534 | /* 8876 */ MCD::OPC_FilterValueOrFail, 1, |
2535 | /* 8878 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2536 | /* 8882 */ MCD::OPC_Decode, 223, 5, 100, // Opcode: FSUBQrm, DecodeIdx: 100 |
2537 | /* 8886 */ MCD::OPC_FilterValueOrFail, 1, |
2538 | /* 8888 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2539 | /* 8891 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8903 |
2540 | /* 8895 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2541 | /* 8899 */ MCD::OPC_Decode, 222, 5, 101, // Opcode: FSUBQir, DecodeIdx: 101 |
2542 | /* 8903 */ MCD::OPC_FilterValueOrFail, 1, |
2543 | /* 8905 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2544 | /* 8909 */ MCD::OPC_Decode, 224, 5, 102, // Opcode: FSUBQrr, DecodeIdx: 102 |
2545 | /* 8913 */ MCD::OPC_FilterValue, 250, 1, 59, 0, // Skip to: 8977 |
2546 | /* 8918 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2547 | /* 8921 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 8950 |
2548 | /* 8925 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2549 | /* 8928 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8940 |
2550 | /* 8932 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2551 | /* 8936 */ MCD::OPC_Decode, 168, 5, 51, // Opcode: FCMPQim, DecodeIdx: 51 |
2552 | /* 8940 */ MCD::OPC_FilterValueOrFail, 1, |
2553 | /* 8942 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2554 | /* 8946 */ MCD::OPC_Decode, 170, 5, 107, // Opcode: FCMPQrm, DecodeIdx: 107 |
2555 | /* 8950 */ MCD::OPC_FilterValueOrFail, 1, |
2556 | /* 8952 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2557 | /* 8955 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 8967 |
2558 | /* 8959 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2559 | /* 8963 */ MCD::OPC_Decode, 169, 5, 108, // Opcode: FCMPQir, DecodeIdx: 108 |
2560 | /* 8967 */ MCD::OPC_FilterValueOrFail, 1, |
2561 | /* 8969 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2562 | /* 8973 */ MCD::OPC_Decode, 171, 5, 109, // Opcode: FCMPQrr, DecodeIdx: 109 |
2563 | /* 8977 */ MCD::OPC_FilterValue, 252, 1, 59, 0, // Skip to: 9041 |
2564 | /* 8982 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2565 | /* 8985 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9014 |
2566 | /* 8989 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2567 | /* 8992 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9004 |
2568 | /* 8996 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2569 | /* 9000 */ MCD::OPC_Decode, 164, 5, 51, // Opcode: FCMPDim, DecodeIdx: 51 |
2570 | /* 9004 */ MCD::OPC_FilterValueOrFail, 1, |
2571 | /* 9006 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2572 | /* 9010 */ MCD::OPC_Decode, 166, 5, 52, // Opcode: FCMPDrm, DecodeIdx: 52 |
2573 | /* 9014 */ MCD::OPC_FilterValueOrFail, 1, |
2574 | /* 9016 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2575 | /* 9019 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9031 |
2576 | /* 9023 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2577 | /* 9027 */ MCD::OPC_Decode, 165, 5, 53, // Opcode: FCMPDir, DecodeIdx: 53 |
2578 | /* 9031 */ MCD::OPC_FilterValueOrFail, 1, |
2579 | /* 9033 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2580 | /* 9037 */ MCD::OPC_Decode, 167, 5, 54, // Opcode: FCMPDrr, DecodeIdx: 54 |
2581 | /* 9041 */ MCD::OPC_FilterValue, 253, 1, 59, 0, // Skip to: 9105 |
2582 | /* 9046 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2583 | /* 9049 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9078 |
2584 | /* 9053 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2585 | /* 9056 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9068 |
2586 | /* 9060 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2587 | /* 9064 */ MCD::OPC_Decode, 172, 5, 55, // Opcode: FCMPSim, DecodeIdx: 55 |
2588 | /* 9068 */ MCD::OPC_FilterValueOrFail, 1, |
2589 | /* 9070 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2590 | /* 9074 */ MCD::OPC_Decode, 174, 5, 56, // Opcode: FCMPSrm, DecodeIdx: 56 |
2591 | /* 9078 */ MCD::OPC_FilterValueOrFail, 1, |
2592 | /* 9080 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2593 | /* 9083 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9095 |
2594 | /* 9087 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2595 | /* 9091 */ MCD::OPC_Decode, 173, 5, 57, // Opcode: FCMPSir, DecodeIdx: 57 |
2596 | /* 9095 */ MCD::OPC_FilterValueOrFail, 1, |
2597 | /* 9097 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2598 | /* 9101 */ MCD::OPC_Decode, 175, 5, 58, // Opcode: FCMPSrr, DecodeIdx: 58 |
2599 | /* 9105 */ MCD::OPC_FilterValue, 254, 1, 59, 0, // Skip to: 9169 |
2600 | /* 9110 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2601 | /* 9113 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9142 |
2602 | /* 9117 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2603 | /* 9120 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9132 |
2604 | /* 9124 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2605 | /* 9128 */ MCD::OPC_Decode, 239, 4, 51, // Opcode: DIVSLim, DecodeIdx: 51 |
2606 | /* 9132 */ MCD::OPC_FilterValueOrFail, 1, |
2607 | /* 9134 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2608 | /* 9138 */ MCD::OPC_Decode, 241, 4, 52, // Opcode: DIVSLrm, DecodeIdx: 52 |
2609 | /* 9142 */ MCD::OPC_FilterValueOrFail, 1, |
2610 | /* 9144 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2611 | /* 9147 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9159 |
2612 | /* 9151 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2613 | /* 9155 */ MCD::OPC_Decode, 240, 4, 53, // Opcode: DIVSLir, DecodeIdx: 53 |
2614 | /* 9159 */ MCD::OPC_FilterValueOrFail, 1, |
2615 | /* 9161 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2616 | /* 9165 */ MCD::OPC_Decode, 242, 4, 54, // Opcode: DIVSLrr, DecodeIdx: 54 |
2617 | /* 9169 */ MCD::OPC_FilterValue, 128, 2, 119, 0, // Skip to: 9293 |
2618 | /* 9174 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2619 | /* 9177 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9206 |
2620 | /* 9181 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2621 | /* 9184 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9196 |
2622 | /* 9188 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2623 | /* 9192 */ MCD::OPC_Decode, 129, 7, 110, // Opcode: PFCHVNCiz, DecodeIdx: 110 |
2624 | /* 9196 */ MCD::OPC_FilterValueOrFail, 1, |
2625 | /* 9198 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2626 | /* 9202 */ MCD::OPC_Decode, 254, 6, 111, // Opcode: PFCHVNCir, DecodeIdx: 111 |
2627 | /* 9206 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 9235 |
2628 | /* 9210 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2629 | /* 9213 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9225 |
2630 | /* 9217 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2631 | /* 9221 */ MCD::OPC_Decode, 135, 7, 112, // Opcode: PFCHVNCrz, DecodeIdx: 112 |
2632 | /* 9225 */ MCD::OPC_FilterValueOrFail, 1, |
2633 | /* 9227 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2634 | /* 9231 */ MCD::OPC_Decode, 132, 7, 113, // Opcode: PFCHVNCrr, DecodeIdx: 113 |
2635 | /* 9235 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 9265 |
2636 | /* 9240 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2637 | /* 9243 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9255 |
2638 | /* 9247 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2639 | /* 9251 */ MCD::OPC_Decode, 141, 7, 110, // Opcode: PFCHViz, DecodeIdx: 110 |
2640 | /* 9255 */ MCD::OPC_FilterValueOrFail, 1, |
2641 | /* 9257 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2642 | /* 9261 */ MCD::OPC_Decode, 138, 7, 111, // Opcode: PFCHVir, DecodeIdx: 111 |
2643 | /* 9265 */ MCD::OPC_FilterValueOrFail, 129, 1, |
2644 | /* 9268 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2645 | /* 9271 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9283 |
2646 | /* 9275 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2647 | /* 9279 */ MCD::OPC_Decode, 147, 7, 112, // Opcode: PFCHVrz, DecodeIdx: 112 |
2648 | /* 9283 */ MCD::OPC_FilterValueOrFail, 1, |
2649 | /* 9285 */ MCD::OPC_CheckFieldOrFail, 0, 32, 0, |
2650 | /* 9289 */ MCD::OPC_Decode, 144, 7, 113, // Opcode: PFCHVrr, DecodeIdx: 113 |
2651 | /* 9293 */ MCD::OPC_FilterValue, 130, 2, 119, 0, // Skip to: 9417 |
2652 | /* 9298 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2653 | /* 9301 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9330 |
2654 | /* 9305 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2655 | /* 9308 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9320 |
2656 | /* 9312 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2657 | /* 9316 */ MCD::OPC_Decode, 145, 62, 114, // Opcode: VLDNCiz, DecodeIdx: 114 |
2658 | /* 9320 */ MCD::OPC_FilterValueOrFail, 1, |
2659 | /* 9322 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2660 | /* 9326 */ MCD::OPC_Decode, 139, 62, 115, // Opcode: VLDNCir, DecodeIdx: 115 |
2661 | /* 9330 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 9359 |
2662 | /* 9334 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2663 | /* 9337 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9349 |
2664 | /* 9341 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2665 | /* 9345 */ MCD::OPC_Decode, 157, 62, 116, // Opcode: VLDNCrz, DecodeIdx: 116 |
2666 | /* 9349 */ MCD::OPC_FilterValueOrFail, 1, |
2667 | /* 9351 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2668 | /* 9355 */ MCD::OPC_Decode, 151, 62, 117, // Opcode: VLDNCrr, DecodeIdx: 117 |
2669 | /* 9359 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 9389 |
2670 | /* 9364 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2671 | /* 9367 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9379 |
2672 | /* 9371 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2673 | /* 9375 */ MCD::OPC_Decode, 149, 63, 114, // Opcode: VLDiz, DecodeIdx: 114 |
2674 | /* 9379 */ MCD::OPC_FilterValueOrFail, 1, |
2675 | /* 9381 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2676 | /* 9385 */ MCD::OPC_Decode, 143, 63, 115, // Opcode: VLDir, DecodeIdx: 115 |
2677 | /* 9389 */ MCD::OPC_FilterValueOrFail, 129, 1, |
2678 | /* 9392 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2679 | /* 9395 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9407 |
2680 | /* 9399 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2681 | /* 9403 */ MCD::OPC_Decode, 161, 63, 116, // Opcode: VLDrz, DecodeIdx: 116 |
2682 | /* 9407 */ MCD::OPC_FilterValueOrFail, 1, |
2683 | /* 9409 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2684 | /* 9413 */ MCD::OPC_Decode, 155, 63, 117, // Opcode: VLDrr, DecodeIdx: 117 |
2685 | /* 9417 */ MCD::OPC_FilterValue, 132, 2, 119, 0, // Skip to: 9541 |
2686 | /* 9422 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2687 | /* 9425 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9454 |
2688 | /* 9429 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2689 | /* 9432 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9444 |
2690 | /* 9436 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2691 | /* 9440 */ MCD::OPC_Decode, 217, 62, 114, // Opcode: VLDUNCiz, DecodeIdx: 114 |
2692 | /* 9444 */ MCD::OPC_FilterValueOrFail, 1, |
2693 | /* 9446 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2694 | /* 9450 */ MCD::OPC_Decode, 211, 62, 115, // Opcode: VLDUNCir, DecodeIdx: 115 |
2695 | /* 9454 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 9483 |
2696 | /* 9458 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2697 | /* 9461 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9473 |
2698 | /* 9465 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2699 | /* 9469 */ MCD::OPC_Decode, 229, 62, 116, // Opcode: VLDUNCrz, DecodeIdx: 116 |
2700 | /* 9473 */ MCD::OPC_FilterValueOrFail, 1, |
2701 | /* 9475 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2702 | /* 9479 */ MCD::OPC_Decode, 223, 62, 117, // Opcode: VLDUNCrr, DecodeIdx: 117 |
2703 | /* 9483 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 9513 |
2704 | /* 9488 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2705 | /* 9491 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9503 |
2706 | /* 9495 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2707 | /* 9499 */ MCD::OPC_Decode, 241, 62, 114, // Opcode: VLDUiz, DecodeIdx: 114 |
2708 | /* 9503 */ MCD::OPC_FilterValueOrFail, 1, |
2709 | /* 9505 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2710 | /* 9509 */ MCD::OPC_Decode, 235, 62, 115, // Opcode: VLDUir, DecodeIdx: 115 |
2711 | /* 9513 */ MCD::OPC_FilterValueOrFail, 129, 1, |
2712 | /* 9516 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2713 | /* 9519 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9531 |
2714 | /* 9523 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2715 | /* 9527 */ MCD::OPC_Decode, 253, 62, 116, // Opcode: VLDUrz, DecodeIdx: 116 |
2716 | /* 9531 */ MCD::OPC_FilterValueOrFail, 1, |
2717 | /* 9533 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2718 | /* 9537 */ MCD::OPC_Decode, 247, 62, 117, // Opcode: VLDUrr, DecodeIdx: 117 |
2719 | /* 9541 */ MCD::OPC_FilterValue, 134, 2, 119, 0, // Skip to: 9665 |
2720 | /* 9546 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2721 | /* 9549 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9578 |
2722 | /* 9553 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2723 | /* 9556 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9568 |
2724 | /* 9560 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2725 | /* 9564 */ MCD::OPC_Decode, 177, 61, 114, // Opcode: VLDLSXNCiz, DecodeIdx: 114 |
2726 | /* 9568 */ MCD::OPC_FilterValueOrFail, 1, |
2727 | /* 9570 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2728 | /* 9574 */ MCD::OPC_Decode, 171, 61, 115, // Opcode: VLDLSXNCir, DecodeIdx: 115 |
2729 | /* 9578 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 9607 |
2730 | /* 9582 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2731 | /* 9585 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9597 |
2732 | /* 9589 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2733 | /* 9593 */ MCD::OPC_Decode, 189, 61, 116, // Opcode: VLDLSXNCrz, DecodeIdx: 116 |
2734 | /* 9597 */ MCD::OPC_FilterValueOrFail, 1, |
2735 | /* 9599 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2736 | /* 9603 */ MCD::OPC_Decode, 183, 61, 117, // Opcode: VLDLSXNCrr, DecodeIdx: 117 |
2737 | /* 9607 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 9637 |
2738 | /* 9612 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2739 | /* 9615 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9627 |
2740 | /* 9619 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2741 | /* 9623 */ MCD::OPC_Decode, 201, 61, 114, // Opcode: VLDLSXiz, DecodeIdx: 114 |
2742 | /* 9627 */ MCD::OPC_FilterValueOrFail, 1, |
2743 | /* 9629 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2744 | /* 9633 */ MCD::OPC_Decode, 195, 61, 115, // Opcode: VLDLSXir, DecodeIdx: 115 |
2745 | /* 9637 */ MCD::OPC_FilterValueOrFail, 129, 1, |
2746 | /* 9640 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2747 | /* 9643 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9655 |
2748 | /* 9647 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2749 | /* 9651 */ MCD::OPC_Decode, 213, 61, 116, // Opcode: VLDLSXrz, DecodeIdx: 116 |
2750 | /* 9655 */ MCD::OPC_FilterValueOrFail, 1, |
2751 | /* 9657 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2752 | /* 9661 */ MCD::OPC_Decode, 207, 61, 117, // Opcode: VLDLSXrr, DecodeIdx: 117 |
2753 | /* 9665 */ MCD::OPC_FilterValue, 135, 2, 119, 0, // Skip to: 9789 |
2754 | /* 9670 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
2755 | /* 9673 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 9702 |
2756 | /* 9677 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2757 | /* 9680 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9692 |
2758 | /* 9684 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2759 | /* 9688 */ MCD::OPC_Decode, 225, 61, 114, // Opcode: VLDLZXNCiz, DecodeIdx: 114 |
2760 | /* 9692 */ MCD::OPC_FilterValueOrFail, 1, |
2761 | /* 9694 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2762 | /* 9698 */ MCD::OPC_Decode, 219, 61, 115, // Opcode: VLDLZXNCir, DecodeIdx: 115 |
2763 | /* 9702 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 9731 |
2764 | /* 9706 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2765 | /* 9709 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9721 |
2766 | /* 9713 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2767 | /* 9717 */ MCD::OPC_Decode, 237, 61, 116, // Opcode: VLDLZXNCrz, DecodeIdx: 116 |
2768 | /* 9721 */ MCD::OPC_FilterValueOrFail, 1, |
2769 | /* 9723 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2770 | /* 9727 */ MCD::OPC_Decode, 231, 61, 117, // Opcode: VLDLZXNCrr, DecodeIdx: 117 |
2771 | /* 9731 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 9761 |
2772 | /* 9736 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2773 | /* 9739 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9751 |
2774 | /* 9743 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2775 | /* 9747 */ MCD::OPC_Decode, 249, 61, 114, // Opcode: VLDLZXiz, DecodeIdx: 114 |
2776 | /* 9751 */ MCD::OPC_FilterValueOrFail, 1, |
2777 | /* 9753 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2778 | /* 9757 */ MCD::OPC_Decode, 243, 61, 115, // Opcode: VLDLZXir, DecodeIdx: 115 |
2779 | /* 9761 */ MCD::OPC_FilterValueOrFail, 129, 1, |
2780 | /* 9764 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
2781 | /* 9767 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 9779 |
2782 | /* 9771 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2783 | /* 9775 */ MCD::OPC_Decode, 133, 62, 116, // Opcode: VLDLZXrz, DecodeIdx: 116 |
2784 | /* 9779 */ MCD::OPC_FilterValueOrFail, 1, |
2785 | /* 9781 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
2786 | /* 9785 */ MCD::OPC_Decode, 255, 61, 117, // Opcode: VLDLZXrr, DecodeIdx: 117 |
2787 | /* 9789 */ MCD::OPC_FilterValue, 136, 2, 12, 0, // Skip to: 9806 |
2788 | /* 9794 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
2789 | /* 9798 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
2790 | /* 9802 */ MCD::OPC_Decode, 237, 2, 118, // Opcode: ANDMmm, DecodeIdx: 118 |
2791 | /* 9806 */ MCD::OPC_FilterValue, 138, 2, 12, 0, // Skip to: 9823 |
2792 | /* 9811 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
2793 | /* 9815 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
2794 | /* 9819 */ MCD::OPC_Decode, 244, 6, 118, // Opcode: ORMmm, DecodeIdx: 118 |
2795 | /* 9823 */ MCD::OPC_FilterValue, 140, 2, 12, 0, // Skip to: 9840 |
2796 | /* 9828 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
2797 | /* 9832 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
2798 | /* 9836 */ MCD::OPC_Decode, 247, 83, 118, // Opcode: XORMmm, DecodeIdx: 118 |
2799 | /* 9840 */ MCD::OPC_FilterValue, 142, 2, 12, 0, // Skip to: 9857 |
2800 | /* 9845 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
2801 | /* 9849 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
2802 | /* 9853 */ MCD::OPC_Decode, 147, 5, 118, // Opcode: EQVMmm, DecodeIdx: 118 |
2803 | /* 9857 */ MCD::OPC_FilterValue, 144, 2, 29, 0, // Skip to: 9891 |
2804 | /* 9862 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
2805 | /* 9865 */ MCD::OPC_FilterValueOrFail, 0, |
2806 | /* 9867 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2807 | /* 9870 */ MCD::OPC_FilterValueOrFail, 0, |
2808 | /* 9872 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
2809 | /* 9875 */ MCD::OPC_FilterValueOrFail, 0, |
2810 | /* 9877 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 9887 |
2811 | /* 9883 */ MCD::OPC_Decode, 231, 67, 119, // Opcode: VRANDv, DecodeIdx: 119 |
2812 | /* 9887 */ MCD::OPC_Decode, 237, 67, 120, // Opcode: VRANDvm, DecodeIdx: 120 |
2813 | /* 9891 */ MCD::OPC_FilterValue, 146, 2, 29, 0, // Skip to: 9925 |
2814 | /* 9896 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
2815 | /* 9899 */ MCD::OPC_FilterValueOrFail, 0, |
2816 | /* 9901 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2817 | /* 9904 */ MCD::OPC_FilterValueOrFail, 0, |
2818 | /* 9906 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
2819 | /* 9909 */ MCD::OPC_FilterValueOrFail, 0, |
2820 | /* 9911 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 9921 |
2821 | /* 9917 */ MCD::OPC_Decode, 215, 69, 119, // Opcode: VRXORv, DecodeIdx: 119 |
2822 | /* 9921 */ MCD::OPC_Decode, 221, 69, 120, // Opcode: VRXORvm, DecodeIdx: 120 |
2823 | /* 9925 */ MCD::OPC_FilterValue, 148, 2, 141, 1, // Skip to: 10327 |
2824 | /* 9930 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
2825 | /* 9933 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 9961 |
2826 | /* 9937 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2827 | /* 9940 */ MCD::OPC_FilterValueOrFail, 0, |
2828 | /* 9942 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2829 | /* 9945 */ MCD::OPC_FilterValueOrFail, 0, |
2830 | /* 9947 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 9957 |
2831 | /* 9953 */ MCD::OPC_Decode, 227, 63, 121, // Opcode: VMAXSWSXvv, DecodeIdx: 121 |
2832 | /* 9957 */ MCD::OPC_Decode, 233, 63, 122, // Opcode: VMAXSWSXvvm, DecodeIdx: 122 |
2833 | /* 9961 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 9989 |
2834 | /* 9965 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2835 | /* 9968 */ MCD::OPC_FilterValueOrFail, 0, |
2836 | /* 9970 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2837 | /* 9973 */ MCD::OPC_FilterValueOrFail, 0, |
2838 | /* 9975 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 9985 |
2839 | /* 9981 */ MCD::OPC_Decode, 207, 64, 121, // Opcode: VMINSWSXvv, DecodeIdx: 121 |
2840 | /* 9985 */ MCD::OPC_Decode, 213, 64, 122, // Opcode: VMINSWSXvvm, DecodeIdx: 122 |
2841 | /* 9989 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 10060 |
2842 | /* 9993 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2843 | /* 9996 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10029 |
2844 | /* 10000 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2845 | /* 10003 */ MCD::OPC_FilterValueOrFail, 0, |
2846 | /* 10005 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2847 | /* 10008 */ MCD::OPC_FilterValueOrFail, 0, |
2848 | /* 10010 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2849 | /* 10013 */ MCD::OPC_FilterValueOrFail, 0, |
2850 | /* 10015 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10025 |
2851 | /* 10021 */ MCD::OPC_Decode, 203, 63, 123, // Opcode: VMAXSWSXiv, DecodeIdx: 123 |
2852 | /* 10025 */ MCD::OPC_Decode, 209, 63, 124, // Opcode: VMAXSWSXivm, DecodeIdx: 124 |
2853 | /* 10029 */ MCD::OPC_FilterValueOrFail, 1, |
2854 | /* 10031 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2855 | /* 10034 */ MCD::OPC_FilterValueOrFail, 0, |
2856 | /* 10036 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2857 | /* 10039 */ MCD::OPC_FilterValueOrFail, 0, |
2858 | /* 10041 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2859 | /* 10044 */ MCD::OPC_FilterValueOrFail, 0, |
2860 | /* 10046 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10056 |
2861 | /* 10052 */ MCD::OPC_Decode, 215, 63, 125, // Opcode: VMAXSWSXrv, DecodeIdx: 125 |
2862 | /* 10056 */ MCD::OPC_Decode, 221, 63, 126, // Opcode: VMAXSWSXrvm, DecodeIdx: 126 |
2863 | /* 10060 */ MCD::OPC_FilterValue, 3, 67, 0, // Skip to: 10131 |
2864 | /* 10064 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2865 | /* 10067 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10100 |
2866 | /* 10071 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2867 | /* 10074 */ MCD::OPC_FilterValueOrFail, 0, |
2868 | /* 10076 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2869 | /* 10079 */ MCD::OPC_FilterValueOrFail, 0, |
2870 | /* 10081 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2871 | /* 10084 */ MCD::OPC_FilterValueOrFail, 0, |
2872 | /* 10086 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10096 |
2873 | /* 10092 */ MCD::OPC_Decode, 183, 64, 123, // Opcode: VMINSWSXiv, DecodeIdx: 123 |
2874 | /* 10096 */ MCD::OPC_Decode, 189, 64, 124, // Opcode: VMINSWSXivm, DecodeIdx: 124 |
2875 | /* 10100 */ MCD::OPC_FilterValueOrFail, 1, |
2876 | /* 10102 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2877 | /* 10105 */ MCD::OPC_FilterValueOrFail, 0, |
2878 | /* 10107 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2879 | /* 10110 */ MCD::OPC_FilterValueOrFail, 0, |
2880 | /* 10112 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2881 | /* 10115 */ MCD::OPC_FilterValueOrFail, 0, |
2882 | /* 10117 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10127 |
2883 | /* 10123 */ MCD::OPC_Decode, 195, 64, 125, // Opcode: VMINSWSXrv, DecodeIdx: 125 |
2884 | /* 10127 */ MCD::OPC_Decode, 201, 64, 126, // Opcode: VMINSWSXrvm, DecodeIdx: 126 |
2885 | /* 10131 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 10159 |
2886 | /* 10135 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2887 | /* 10138 */ MCD::OPC_FilterValueOrFail, 0, |
2888 | /* 10140 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2889 | /* 10143 */ MCD::OPC_FilterValueOrFail, 0, |
2890 | /* 10145 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10155 |
2891 | /* 10151 */ MCD::OPC_Decode, 130, 25, 121, // Opcode: PVMAXSLOvv, DecodeIdx: 121 |
2892 | /* 10155 */ MCD::OPC_Decode, 136, 25, 122, // Opcode: PVMAXSLOvvm, DecodeIdx: 122 |
2893 | /* 10159 */ MCD::OPC_FilterValue, 5, 24, 0, // Skip to: 10187 |
2894 | /* 10163 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2895 | /* 10166 */ MCD::OPC_FilterValueOrFail, 0, |
2896 | /* 10168 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2897 | /* 10171 */ MCD::OPC_FilterValueOrFail, 0, |
2898 | /* 10173 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10183 |
2899 | /* 10179 */ MCD::OPC_Decode, 238, 25, 121, // Opcode: PVMINSLOvv, DecodeIdx: 121 |
2900 | /* 10183 */ MCD::OPC_Decode, 244, 25, 122, // Opcode: PVMINSLOvvm, DecodeIdx: 122 |
2901 | /* 10187 */ MCD::OPC_FilterValue, 6, 67, 0, // Skip to: 10258 |
2902 | /* 10191 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2903 | /* 10194 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10227 |
2904 | /* 10198 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2905 | /* 10201 */ MCD::OPC_FilterValueOrFail, 0, |
2906 | /* 10203 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2907 | /* 10206 */ MCD::OPC_FilterValueOrFail, 0, |
2908 | /* 10208 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2909 | /* 10211 */ MCD::OPC_FilterValueOrFail, 0, |
2910 | /* 10213 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10223 |
2911 | /* 10219 */ MCD::OPC_Decode, 234, 24, 123, // Opcode: PVMAXSLOiv, DecodeIdx: 123 |
2912 | /* 10223 */ MCD::OPC_Decode, 240, 24, 124, // Opcode: PVMAXSLOivm, DecodeIdx: 124 |
2913 | /* 10227 */ MCD::OPC_FilterValueOrFail, 1, |
2914 | /* 10229 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2915 | /* 10232 */ MCD::OPC_FilterValueOrFail, 0, |
2916 | /* 10234 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2917 | /* 10237 */ MCD::OPC_FilterValueOrFail, 0, |
2918 | /* 10239 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2919 | /* 10242 */ MCD::OPC_FilterValueOrFail, 0, |
2920 | /* 10244 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10254 |
2921 | /* 10250 */ MCD::OPC_Decode, 246, 24, 125, // Opcode: PVMAXSLOrv, DecodeIdx: 125 |
2922 | /* 10254 */ MCD::OPC_Decode, 252, 24, 126, // Opcode: PVMAXSLOrvm, DecodeIdx: 126 |
2923 | /* 10258 */ MCD::OPC_FilterValueOrFail, 7, |
2924 | /* 10260 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2925 | /* 10263 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10296 |
2926 | /* 10267 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2927 | /* 10270 */ MCD::OPC_FilterValueOrFail, 0, |
2928 | /* 10272 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2929 | /* 10275 */ MCD::OPC_FilterValueOrFail, 0, |
2930 | /* 10277 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2931 | /* 10280 */ MCD::OPC_FilterValueOrFail, 0, |
2932 | /* 10282 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10292 |
2933 | /* 10288 */ MCD::OPC_Decode, 214, 25, 123, // Opcode: PVMINSLOiv, DecodeIdx: 123 |
2934 | /* 10292 */ MCD::OPC_Decode, 220, 25, 124, // Opcode: PVMINSLOivm, DecodeIdx: 124 |
2935 | /* 10296 */ MCD::OPC_FilterValueOrFail, 1, |
2936 | /* 10298 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2937 | /* 10301 */ MCD::OPC_FilterValueOrFail, 0, |
2938 | /* 10303 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2939 | /* 10306 */ MCD::OPC_FilterValueOrFail, 0, |
2940 | /* 10308 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2941 | /* 10311 */ MCD::OPC_FilterValueOrFail, 0, |
2942 | /* 10313 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10323 |
2943 | /* 10319 */ MCD::OPC_Decode, 226, 25, 125, // Opcode: PVMINSLOrv, DecodeIdx: 125 |
2944 | /* 10323 */ MCD::OPC_Decode, 232, 25, 126, // Opcode: PVMINSLOrvm, DecodeIdx: 126 |
2945 | /* 10327 */ MCD::OPC_FilterValue, 149, 2, 149, 1, // Skip to: 10737 |
2946 | /* 10332 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
2947 | /* 10335 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 10363 |
2948 | /* 10339 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2949 | /* 10342 */ MCD::OPC_FilterValueOrFail, 0, |
2950 | /* 10344 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2951 | /* 10347 */ MCD::OPC_FilterValueOrFail, 0, |
2952 | /* 10349 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10359 |
2953 | /* 10355 */ MCD::OPC_Decode, 166, 25, 121, // Opcode: PVMAXSUPvv, DecodeIdx: 121 |
2954 | /* 10359 */ MCD::OPC_Decode, 172, 25, 122, // Opcode: PVMAXSUPvvm, DecodeIdx: 122 |
2955 | /* 10363 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 10391 |
2956 | /* 10367 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2957 | /* 10370 */ MCD::OPC_FilterValueOrFail, 0, |
2958 | /* 10372 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
2959 | /* 10375 */ MCD::OPC_FilterValueOrFail, 0, |
2960 | /* 10377 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10387 |
2961 | /* 10383 */ MCD::OPC_Decode, 146, 26, 121, // Opcode: PVMINSUPvv, DecodeIdx: 121 |
2962 | /* 10387 */ MCD::OPC_Decode, 152, 26, 122, // Opcode: PVMINSUPvvm, DecodeIdx: 122 |
2963 | /* 10391 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 10463 |
2964 | /* 10395 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2965 | /* 10398 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10431 |
2966 | /* 10402 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2967 | /* 10405 */ MCD::OPC_FilterValueOrFail, 0, |
2968 | /* 10407 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2969 | /* 10410 */ MCD::OPC_FilterValueOrFail, 0, |
2970 | /* 10412 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2971 | /* 10415 */ MCD::OPC_FilterValueOrFail, 0, |
2972 | /* 10417 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10427 |
2973 | /* 10423 */ MCD::OPC_Decode, 142, 25, 123, // Opcode: PVMAXSUPiv, DecodeIdx: 123 |
2974 | /* 10427 */ MCD::OPC_Decode, 148, 25, 124, // Opcode: PVMAXSUPivm, DecodeIdx: 124 |
2975 | /* 10431 */ MCD::OPC_FilterValueOrFail, 1, |
2976 | /* 10433 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2977 | /* 10436 */ MCD::OPC_FilterValueOrFail, 0, |
2978 | /* 10438 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2979 | /* 10441 */ MCD::OPC_FilterValueOrFail, 0, |
2980 | /* 10443 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2981 | /* 10446 */ MCD::OPC_FilterValueOrFail, 0, |
2982 | /* 10448 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10458 |
2983 | /* 10454 */ MCD::OPC_Decode, 154, 25, 127, // Opcode: PVMAXSUPrv, DecodeIdx: 127 |
2984 | /* 10458 */ MCD::OPC_Decode, 160, 25, 128, 1, // Opcode: PVMAXSUPrvm, DecodeIdx: 128 |
2985 | /* 10463 */ MCD::OPC_FilterValue, 3, 68, 0, // Skip to: 10535 |
2986 | /* 10467 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
2987 | /* 10470 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 10503 |
2988 | /* 10474 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2989 | /* 10477 */ MCD::OPC_FilterValueOrFail, 0, |
2990 | /* 10479 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
2991 | /* 10482 */ MCD::OPC_FilterValueOrFail, 0, |
2992 | /* 10484 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
2993 | /* 10487 */ MCD::OPC_FilterValueOrFail, 0, |
2994 | /* 10489 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10499 |
2995 | /* 10495 */ MCD::OPC_Decode, 250, 25, 123, // Opcode: PVMINSUPiv, DecodeIdx: 123 |
2996 | /* 10499 */ MCD::OPC_Decode, 128, 26, 124, // Opcode: PVMINSUPivm, DecodeIdx: 124 |
2997 | /* 10503 */ MCD::OPC_FilterValueOrFail, 1, |
2998 | /* 10505 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
2999 | /* 10508 */ MCD::OPC_FilterValueOrFail, 0, |
3000 | /* 10510 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3001 | /* 10513 */ MCD::OPC_FilterValueOrFail, 0, |
3002 | /* 10515 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3003 | /* 10518 */ MCD::OPC_FilterValueOrFail, 0, |
3004 | /* 10520 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10530 |
3005 | /* 10526 */ MCD::OPC_Decode, 134, 26, 127, // Opcode: PVMINSUPrv, DecodeIdx: 127 |
3006 | /* 10530 */ MCD::OPC_Decode, 140, 26, 128, 1, // Opcode: PVMINSUPrvm, DecodeIdx: 128 |
3007 | /* 10535 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 10564 |
3008 | /* 10539 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3009 | /* 10542 */ MCD::OPC_FilterValueOrFail, 0, |
3010 | /* 10544 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3011 | /* 10547 */ MCD::OPC_FilterValueOrFail, 0, |
3012 | /* 10549 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10559 |
3013 | /* 10555 */ MCD::OPC_Decode, 202, 25, 121, // Opcode: PVMAXSvv, DecodeIdx: 121 |
3014 | /* 10559 */ MCD::OPC_Decode, 208, 25, 129, 1, // Opcode: PVMAXSvvm, DecodeIdx: 129 |
3015 | /* 10564 */ MCD::OPC_FilterValue, 5, 25, 0, // Skip to: 10593 |
3016 | /* 10568 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3017 | /* 10571 */ MCD::OPC_FilterValueOrFail, 0, |
3018 | /* 10573 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3019 | /* 10576 */ MCD::OPC_FilterValueOrFail, 0, |
3020 | /* 10578 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10588 |
3021 | /* 10584 */ MCD::OPC_Decode, 182, 26, 121, // Opcode: PVMINSvv, DecodeIdx: 121 |
3022 | /* 10588 */ MCD::OPC_Decode, 188, 26, 129, 1, // Opcode: PVMINSvvm, DecodeIdx: 129 |
3023 | /* 10593 */ MCD::OPC_FilterValue, 6, 69, 0, // Skip to: 10666 |
3024 | /* 10597 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3025 | /* 10600 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 10634 |
3026 | /* 10604 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3027 | /* 10607 */ MCD::OPC_FilterValueOrFail, 0, |
3028 | /* 10609 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3029 | /* 10612 */ MCD::OPC_FilterValueOrFail, 0, |
3030 | /* 10614 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3031 | /* 10617 */ MCD::OPC_FilterValueOrFail, 0, |
3032 | /* 10619 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10629 |
3033 | /* 10625 */ MCD::OPC_Decode, 178, 25, 123, // Opcode: PVMAXSiv, DecodeIdx: 123 |
3034 | /* 10629 */ MCD::OPC_Decode, 184, 25, 130, 1, // Opcode: PVMAXSivm, DecodeIdx: 130 |
3035 | /* 10634 */ MCD::OPC_FilterValueOrFail, 1, |
3036 | /* 10636 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3037 | /* 10639 */ MCD::OPC_FilterValueOrFail, 0, |
3038 | /* 10641 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3039 | /* 10644 */ MCD::OPC_FilterValueOrFail, 0, |
3040 | /* 10646 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3041 | /* 10649 */ MCD::OPC_FilterValueOrFail, 0, |
3042 | /* 10651 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10661 |
3043 | /* 10657 */ MCD::OPC_Decode, 190, 25, 127, // Opcode: PVMAXSrv, DecodeIdx: 127 |
3044 | /* 10661 */ MCD::OPC_Decode, 196, 25, 131, 1, // Opcode: PVMAXSrvm, DecodeIdx: 131 |
3045 | /* 10666 */ MCD::OPC_FilterValueOrFail, 7, |
3046 | /* 10668 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3047 | /* 10671 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 10705 |
3048 | /* 10675 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3049 | /* 10678 */ MCD::OPC_FilterValueOrFail, 0, |
3050 | /* 10680 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3051 | /* 10683 */ MCD::OPC_FilterValueOrFail, 0, |
3052 | /* 10685 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3053 | /* 10688 */ MCD::OPC_FilterValueOrFail, 0, |
3054 | /* 10690 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10700 |
3055 | /* 10696 */ MCD::OPC_Decode, 158, 26, 123, // Opcode: PVMINSiv, DecodeIdx: 123 |
3056 | /* 10700 */ MCD::OPC_Decode, 164, 26, 130, 1, // Opcode: PVMINSivm, DecodeIdx: 130 |
3057 | /* 10705 */ MCD::OPC_FilterValueOrFail, 1, |
3058 | /* 10707 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3059 | /* 10710 */ MCD::OPC_FilterValueOrFail, 0, |
3060 | /* 10712 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3061 | /* 10715 */ MCD::OPC_FilterValueOrFail, 0, |
3062 | /* 10717 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3063 | /* 10720 */ MCD::OPC_FilterValueOrFail, 0, |
3064 | /* 10722 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10732 |
3065 | /* 10728 */ MCD::OPC_Decode, 170, 26, 127, // Opcode: PVMINSrv, DecodeIdx: 127 |
3066 | /* 10732 */ MCD::OPC_Decode, 176, 26, 131, 1, // Opcode: PVMINSrvm, DecodeIdx: 131 |
3067 | /* 10737 */ MCD::OPC_FilterValue, 150, 2, 106, 0, // Skip to: 10848 |
3068 | /* 10742 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3069 | /* 10745 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 10811 |
3070 | /* 10749 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3071 | /* 10752 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 10780 |
3072 | /* 10756 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3073 | /* 10759 */ MCD::OPC_FilterValueOrFail, 0, |
3074 | /* 10761 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
3075 | /* 10764 */ MCD::OPC_FilterValueOrFail, 0, |
3076 | /* 10766 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10776 |
3077 | /* 10772 */ MCD::OPC_Decode, 235, 35, 121, // Opcode: VADDSLvv, DecodeIdx: 121 |
3078 | /* 10776 */ MCD::OPC_Decode, 241, 35, 122, // Opcode: VADDSLvvm, DecodeIdx: 122 |
3079 | /* 10780 */ MCD::OPC_FilterValueOrFail, 2, |
3080 | /* 10782 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3081 | /* 10785 */ MCD::OPC_FilterValueOrFail, 0, |
3082 | /* 10787 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3083 | /* 10790 */ MCD::OPC_FilterValueOrFail, 0, |
3084 | /* 10792 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3085 | /* 10795 */ MCD::OPC_FilterValueOrFail, 0, |
3086 | /* 10797 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10807 |
3087 | /* 10803 */ MCD::OPC_Decode, 211, 35, 123, // Opcode: VADDSLiv, DecodeIdx: 123 |
3088 | /* 10807 */ MCD::OPC_Decode, 217, 35, 124, // Opcode: VADDSLivm, DecodeIdx: 124 |
3089 | /* 10811 */ MCD::OPC_FilterValueOrFail, 1, |
3090 | /* 10813 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3091 | /* 10816 */ MCD::OPC_FilterValueOrFail, 0, |
3092 | /* 10818 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3093 | /* 10821 */ MCD::OPC_FilterValueOrFail, 0, |
3094 | /* 10823 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3095 | /* 10826 */ MCD::OPC_FilterValueOrFail, 0, |
3096 | /* 10828 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3097 | /* 10831 */ MCD::OPC_FilterValueOrFail, 2, |
3098 | /* 10833 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 10843 |
3099 | /* 10839 */ MCD::OPC_Decode, 223, 35, 127, // Opcode: VADDSLrv, DecodeIdx: 127 |
3100 | /* 10843 */ MCD::OPC_Decode, 229, 35, 128, 1, // Opcode: VADDSLrvm, DecodeIdx: 128 |
3101 | /* 10848 */ MCD::OPC_FilterValue, 152, 2, 131, 0, // Skip to: 10984 |
3102 | /* 10853 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3103 | /* 10856 */ MCD::OPC_FilterValue, 0, 61, 0, // Skip to: 10921 |
3104 | /* 10860 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3105 | /* 10863 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 10893 |
3106 | /* 10867 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3107 | /* 10870 */ MCD::OPC_FilterValueOrFail, 0, |
3108 | /* 10872 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3109 | /* 10875 */ MCD::OPC_FilterValueOrFail, 0, |
3110 | /* 10877 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 10888 |
3111 | /* 10883 */ MCD::OPC_Decode, 219, 37, 132, 1, // Opcode: VBRDi, DecodeIdx: 132 |
3112 | /* 10888 */ MCD::OPC_Decode, 225, 37, 133, 1, // Opcode: VBRDim, DecodeIdx: 133 |
3113 | /* 10893 */ MCD::OPC_FilterValueOrFail, 4, |
3114 | /* 10895 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3115 | /* 10898 */ MCD::OPC_FilterValueOrFail, 0, |
3116 | /* 10900 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3117 | /* 10903 */ MCD::OPC_FilterValueOrFail, 0, |
3118 | /* 10905 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 10916 |
3119 | /* 10911 */ MCD::OPC_Decode, 171, 37, 132, 1, // Opcode: VBRDLi, DecodeIdx: 132 |
3120 | /* 10916 */ MCD::OPC_Decode, 177, 37, 133, 1, // Opcode: VBRDLim, DecodeIdx: 133 |
3121 | /* 10921 */ MCD::OPC_FilterValueOrFail, 1, |
3122 | /* 10923 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3123 | /* 10926 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 10956 |
3124 | /* 10930 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3125 | /* 10933 */ MCD::OPC_FilterValueOrFail, 0, |
3126 | /* 10935 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3127 | /* 10938 */ MCD::OPC_FilterValueOrFail, 0, |
3128 | /* 10940 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 10951 |
3129 | /* 10946 */ MCD::OPC_Decode, 231, 37, 134, 1, // Opcode: VBRDr, DecodeIdx: 134 |
3130 | /* 10951 */ MCD::OPC_Decode, 237, 37, 135, 1, // Opcode: VBRDrm, DecodeIdx: 135 |
3131 | /* 10956 */ MCD::OPC_FilterValueOrFail, 4, |
3132 | /* 10958 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3133 | /* 10961 */ MCD::OPC_FilterValueOrFail, 0, |
3134 | /* 10963 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3135 | /* 10966 */ MCD::OPC_FilterValueOrFail, 0, |
3136 | /* 10968 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 10979 |
3137 | /* 10974 */ MCD::OPC_Decode, 183, 37, 136, 1, // Opcode: VBRDLr, DecodeIdx: 136 |
3138 | /* 10979 */ MCD::OPC_Decode, 189, 37, 137, 1, // Opcode: VBRDLrm, DecodeIdx: 137 |
3139 | /* 10984 */ MCD::OPC_FilterValue, 153, 2, 131, 0, // Skip to: 11120 |
3140 | /* 10989 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3141 | /* 10992 */ MCD::OPC_FilterValue, 0, 61, 0, // Skip to: 11057 |
3142 | /* 10996 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3143 | /* 10999 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 11029 |
3144 | /* 11003 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3145 | /* 11006 */ MCD::OPC_FilterValueOrFail, 0, |
3146 | /* 11008 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3147 | /* 11011 */ MCD::OPC_FilterValueOrFail, 0, |
3148 | /* 11013 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11024 |
3149 | /* 11019 */ MCD::OPC_Decode, 195, 37, 132, 1, // Opcode: VBRDUi, DecodeIdx: 132 |
3150 | /* 11024 */ MCD::OPC_Decode, 201, 37, 133, 1, // Opcode: VBRDUim, DecodeIdx: 133 |
3151 | /* 11029 */ MCD::OPC_FilterValueOrFail, 4, |
3152 | /* 11031 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3153 | /* 11034 */ MCD::OPC_FilterValueOrFail, 0, |
3154 | /* 11036 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3155 | /* 11039 */ MCD::OPC_FilterValueOrFail, 0, |
3156 | /* 11041 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11052 |
3157 | /* 11047 */ MCD::OPC_Decode, 222, 9, 132, 1, // Opcode: PVBRDi, DecodeIdx: 132 |
3158 | /* 11052 */ MCD::OPC_Decode, 228, 9, 138, 1, // Opcode: PVBRDim, DecodeIdx: 138 |
3159 | /* 11057 */ MCD::OPC_FilterValueOrFail, 1, |
3160 | /* 11059 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3161 | /* 11062 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 11092 |
3162 | /* 11066 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3163 | /* 11069 */ MCD::OPC_FilterValueOrFail, 0, |
3164 | /* 11071 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3165 | /* 11074 */ MCD::OPC_FilterValueOrFail, 0, |
3166 | /* 11076 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11087 |
3167 | /* 11082 */ MCD::OPC_Decode, 207, 37, 139, 1, // Opcode: VBRDUr, DecodeIdx: 139 |
3168 | /* 11087 */ MCD::OPC_Decode, 213, 37, 140, 1, // Opcode: VBRDUrm, DecodeIdx: 140 |
3169 | /* 11092 */ MCD::OPC_FilterValueOrFail, 4, |
3170 | /* 11094 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3171 | /* 11097 */ MCD::OPC_FilterValueOrFail, 0, |
3172 | /* 11099 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3173 | /* 11102 */ MCD::OPC_FilterValueOrFail, 0, |
3174 | /* 11104 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11115 |
3175 | /* 11110 */ MCD::OPC_Decode, 234, 9, 134, 1, // Opcode: PVBRDr, DecodeIdx: 134 |
3176 | /* 11115 */ MCD::OPC_Decode, 240, 9, 141, 1, // Opcode: PVBRDrm, DecodeIdx: 141 |
3177 | /* 11120 */ MCD::OPC_FilterValue, 154, 2, 36, 0, // Skip to: 11161 |
3178 | /* 11125 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3179 | /* 11128 */ MCD::OPC_FilterValueOrFail, 0, |
3180 | /* 11130 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3181 | /* 11133 */ MCD::OPC_FilterValueOrFail, 0, |
3182 | /* 11135 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3183 | /* 11138 */ MCD::OPC_FilterValueOrFail, 0, |
3184 | /* 11140 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3185 | /* 11143 */ MCD::OPC_FilterValueOrFail, 0, |
3186 | /* 11145 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11156 |
3187 | /* 11151 */ MCD::OPC_Decode, 179, 39, 142, 1, // Opcode: VCPv, DecodeIdx: 142 |
3188 | /* 11156 */ MCD::OPC_Decode, 185, 39, 143, 1, // Opcode: VCPvm, DecodeIdx: 143 |
3189 | /* 11161 */ MCD::OPC_FilterValue, 156, 2, 61, 0, // Skip to: 11227 |
3190 | /* 11166 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3191 | /* 11169 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 11199 |
3192 | /* 11173 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
3193 | /* 11176 */ MCD::OPC_FilterValue, 0, 9, 0, // Skip to: 11189 |
3194 | /* 11180 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3195 | /* 11184 */ MCD::OPC_Decode, 158, 6, 144, 1, // Opcode: LSVim, DecodeIdx: 144 |
3196 | /* 11189 */ MCD::OPC_FilterValueOrFail, 1, |
3197 | /* 11191 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3198 | /* 11195 */ MCD::OPC_Decode, 162, 6, 116, // Opcode: LSVrm, DecodeIdx: 116 |
3199 | /* 11199 */ MCD::OPC_FilterValueOrFail, 1, |
3200 | /* 11201 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
3201 | /* 11204 */ MCD::OPC_FilterValue, 0, 9, 0, // Skip to: 11217 |
3202 | /* 11208 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3203 | /* 11212 */ MCD::OPC_Decode, 160, 6, 145, 1, // Opcode: LSVir, DecodeIdx: 145 |
3204 | /* 11217 */ MCD::OPC_FilterValueOrFail, 1, |
3205 | /* 11219 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3206 | /* 11223 */ MCD::OPC_Decode, 164, 6, 117, // Opcode: LSVrr, DecodeIdx: 117 |
3207 | /* 11227 */ MCD::OPC_FilterValue, 158, 2, 29, 0, // Skip to: 11261 |
3208 | /* 11232 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3209 | /* 11235 */ MCD::OPC_FilterValueOrFail, 0, |
3210 | /* 11237 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3211 | /* 11240 */ MCD::OPC_FilterValueOrFail, 0, |
3212 | /* 11242 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3213 | /* 11245 */ MCD::OPC_FilterValueOrFail, 0, |
3214 | /* 11247 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 11257 |
3215 | /* 11253 */ MCD::OPC_Decode, 203, 39, 119, // Opcode: VCVTDSv, DecodeIdx: 119 |
3216 | /* 11257 */ MCD::OPC_Decode, 209, 39, 120, // Opcode: VCVTDSvm, DecodeIdx: 120 |
3217 | /* 11261 */ MCD::OPC_FilterValue, 162, 2, 231, 0, // Skip to: 11497 |
3218 | /* 11266 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3219 | /* 11269 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 11384 |
3220 | /* 11273 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3221 | /* 11276 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11331 |
3222 | /* 11280 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3223 | /* 11283 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11308 |
3224 | /* 11287 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3225 | /* 11290 */ MCD::OPC_FilterValueOrFail, 0, |
3226 | /* 11292 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11303 |
3227 | /* 11298 */ MCD::OPC_Decode, 249, 79, 146, 1, // Opcode: VSTNCizv, DecodeIdx: 146 |
3228 | /* 11303 */ MCD::OPC_Decode, 252, 79, 147, 1, // Opcode: VSTNCizvm, DecodeIdx: 147 |
3229 | /* 11308 */ MCD::OPC_FilterValueOrFail, 4, |
3230 | /* 11310 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3231 | /* 11313 */ MCD::OPC_FilterValueOrFail, 0, |
3232 | /* 11315 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11326 |
3233 | /* 11321 */ MCD::OPC_Decode, 233, 81, 146, 1, // Opcode: VSTizv, DecodeIdx: 146 |
3234 | /* 11326 */ MCD::OPC_Decode, 236, 81, 147, 1, // Opcode: VSTizvm, DecodeIdx: 147 |
3235 | /* 11331 */ MCD::OPC_FilterValueOrFail, 1, |
3236 | /* 11333 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3237 | /* 11336 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11361 |
3238 | /* 11340 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3239 | /* 11343 */ MCD::OPC_FilterValueOrFail, 0, |
3240 | /* 11345 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11356 |
3241 | /* 11351 */ MCD::OPC_Decode, 133, 80, 148, 1, // Opcode: VSTNCrzv, DecodeIdx: 148 |
3242 | /* 11356 */ MCD::OPC_Decode, 136, 80, 149, 1, // Opcode: VSTNCrzvm, DecodeIdx: 149 |
3243 | /* 11361 */ MCD::OPC_FilterValueOrFail, 4, |
3244 | /* 11363 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3245 | /* 11366 */ MCD::OPC_FilterValueOrFail, 0, |
3246 | /* 11368 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11379 |
3247 | /* 11374 */ MCD::OPC_Decode, 245, 81, 148, 1, // Opcode: VSTrzv, DecodeIdx: 148 |
3248 | /* 11379 */ MCD::OPC_Decode, 248, 81, 149, 1, // Opcode: VSTrzvm, DecodeIdx: 149 |
3249 | /* 11384 */ MCD::OPC_FilterValueOrFail, 1, |
3250 | /* 11386 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3251 | /* 11389 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11444 |
3252 | /* 11393 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3253 | /* 11396 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11421 |
3254 | /* 11400 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3255 | /* 11403 */ MCD::OPC_FilterValueOrFail, 0, |
3256 | /* 11405 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11416 |
3257 | /* 11411 */ MCD::OPC_Decode, 243, 79, 150, 1, // Opcode: VSTNCirv, DecodeIdx: 150 |
3258 | /* 11416 */ MCD::OPC_Decode, 246, 79, 151, 1, // Opcode: VSTNCirvm, DecodeIdx: 151 |
3259 | /* 11421 */ MCD::OPC_FilterValueOrFail, 4, |
3260 | /* 11423 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3261 | /* 11426 */ MCD::OPC_FilterValueOrFail, 0, |
3262 | /* 11428 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11439 |
3263 | /* 11434 */ MCD::OPC_Decode, 227, 81, 150, 1, // Opcode: VSTirv, DecodeIdx: 150 |
3264 | /* 11439 */ MCD::OPC_Decode, 230, 81, 151, 1, // Opcode: VSTirvm, DecodeIdx: 151 |
3265 | /* 11444 */ MCD::OPC_FilterValueOrFail, 1, |
3266 | /* 11446 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3267 | /* 11449 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11474 |
3268 | /* 11453 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3269 | /* 11456 */ MCD::OPC_FilterValueOrFail, 0, |
3270 | /* 11458 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11469 |
3271 | /* 11464 */ MCD::OPC_Decode, 255, 79, 152, 1, // Opcode: VSTNCrrv, DecodeIdx: 152 |
3272 | /* 11469 */ MCD::OPC_Decode, 130, 80, 153, 1, // Opcode: VSTNCrrvm, DecodeIdx: 153 |
3273 | /* 11474 */ MCD::OPC_FilterValueOrFail, 4, |
3274 | /* 11476 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3275 | /* 11479 */ MCD::OPC_FilterValueOrFail, 0, |
3276 | /* 11481 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11492 |
3277 | /* 11487 */ MCD::OPC_Decode, 239, 81, 152, 1, // Opcode: VSTrrv, DecodeIdx: 152 |
3278 | /* 11492 */ MCD::OPC_Decode, 242, 81, 153, 1, // Opcode: VSTrrvm, DecodeIdx: 153 |
3279 | /* 11497 */ MCD::OPC_FilterValue, 163, 2, 231, 0, // Skip to: 11733 |
3280 | /* 11502 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3281 | /* 11505 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 11620 |
3282 | /* 11509 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3283 | /* 11512 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11567 |
3284 | /* 11516 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3285 | /* 11519 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11544 |
3286 | /* 11523 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3287 | /* 11526 */ MCD::OPC_FilterValueOrFail, 0, |
3288 | /* 11528 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11539 |
3289 | /* 11534 */ MCD::OPC_Decode, 225, 79, 146, 1, // Opcode: VSTNCOTizv, DecodeIdx: 146 |
3290 | /* 11539 */ MCD::OPC_Decode, 228, 79, 147, 1, // Opcode: VSTNCOTizvm, DecodeIdx: 147 |
3291 | /* 11544 */ MCD::OPC_FilterValueOrFail, 4, |
3292 | /* 11546 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3293 | /* 11549 */ MCD::OPC_FilterValueOrFail, 0, |
3294 | /* 11551 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11562 |
3295 | /* 11557 */ MCD::OPC_Decode, 145, 80, 146, 1, // Opcode: VSTOTizv, DecodeIdx: 146 |
3296 | /* 11562 */ MCD::OPC_Decode, 148, 80, 147, 1, // Opcode: VSTOTizvm, DecodeIdx: 147 |
3297 | /* 11567 */ MCD::OPC_FilterValueOrFail, 1, |
3298 | /* 11569 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3299 | /* 11572 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11597 |
3300 | /* 11576 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3301 | /* 11579 */ MCD::OPC_FilterValueOrFail, 0, |
3302 | /* 11581 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11592 |
3303 | /* 11587 */ MCD::OPC_Decode, 237, 79, 148, 1, // Opcode: VSTNCOTrzv, DecodeIdx: 148 |
3304 | /* 11592 */ MCD::OPC_Decode, 240, 79, 149, 1, // Opcode: VSTNCOTrzvm, DecodeIdx: 149 |
3305 | /* 11597 */ MCD::OPC_FilterValueOrFail, 4, |
3306 | /* 11599 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3307 | /* 11602 */ MCD::OPC_FilterValueOrFail, 0, |
3308 | /* 11604 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11615 |
3309 | /* 11610 */ MCD::OPC_Decode, 157, 80, 148, 1, // Opcode: VSTOTrzv, DecodeIdx: 148 |
3310 | /* 11615 */ MCD::OPC_Decode, 160, 80, 149, 1, // Opcode: VSTOTrzvm, DecodeIdx: 149 |
3311 | /* 11620 */ MCD::OPC_FilterValueOrFail, 1, |
3312 | /* 11622 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3313 | /* 11625 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11680 |
3314 | /* 11629 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3315 | /* 11632 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11657 |
3316 | /* 11636 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3317 | /* 11639 */ MCD::OPC_FilterValueOrFail, 0, |
3318 | /* 11641 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11652 |
3319 | /* 11647 */ MCD::OPC_Decode, 219, 79, 150, 1, // Opcode: VSTNCOTirv, DecodeIdx: 150 |
3320 | /* 11652 */ MCD::OPC_Decode, 222, 79, 151, 1, // Opcode: VSTNCOTirvm, DecodeIdx: 151 |
3321 | /* 11657 */ MCD::OPC_FilterValueOrFail, 4, |
3322 | /* 11659 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3323 | /* 11662 */ MCD::OPC_FilterValueOrFail, 0, |
3324 | /* 11664 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11675 |
3325 | /* 11670 */ MCD::OPC_Decode, 139, 80, 150, 1, // Opcode: VSTOTirv, DecodeIdx: 150 |
3326 | /* 11675 */ MCD::OPC_Decode, 142, 80, 151, 1, // Opcode: VSTOTirvm, DecodeIdx: 151 |
3327 | /* 11680 */ MCD::OPC_FilterValueOrFail, 1, |
3328 | /* 11682 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3329 | /* 11685 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11710 |
3330 | /* 11689 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3331 | /* 11692 */ MCD::OPC_FilterValueOrFail, 0, |
3332 | /* 11694 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11705 |
3333 | /* 11700 */ MCD::OPC_Decode, 231, 79, 152, 1, // Opcode: VSTNCOTrrv, DecodeIdx: 152 |
3334 | /* 11705 */ MCD::OPC_Decode, 234, 79, 153, 1, // Opcode: VSTNCOTrrvm, DecodeIdx: 153 |
3335 | /* 11710 */ MCD::OPC_FilterValueOrFail, 4, |
3336 | /* 11712 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3337 | /* 11715 */ MCD::OPC_FilterValueOrFail, 0, |
3338 | /* 11717 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11728 |
3339 | /* 11723 */ MCD::OPC_Decode, 151, 80, 152, 1, // Opcode: VSTOTrrv, DecodeIdx: 152 |
3340 | /* 11728 */ MCD::OPC_Decode, 154, 80, 153, 1, // Opcode: VSTOTrrvm, DecodeIdx: 153 |
3341 | /* 11733 */ MCD::OPC_FilterValue, 164, 2, 231, 0, // Skip to: 11969 |
3342 | /* 11738 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3343 | /* 11741 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 11856 |
3344 | /* 11745 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3345 | /* 11748 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11803 |
3346 | /* 11752 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3347 | /* 11755 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11780 |
3348 | /* 11759 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3349 | /* 11762 */ MCD::OPC_FilterValueOrFail, 0, |
3350 | /* 11764 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11775 |
3351 | /* 11770 */ MCD::OPC_Decode, 161, 81, 146, 1, // Opcode: VSTUNCizv, DecodeIdx: 146 |
3352 | /* 11775 */ MCD::OPC_Decode, 164, 81, 147, 1, // Opcode: VSTUNCizvm, DecodeIdx: 147 |
3353 | /* 11780 */ MCD::OPC_FilterValueOrFail, 4, |
3354 | /* 11782 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3355 | /* 11785 */ MCD::OPC_FilterValueOrFail, 0, |
3356 | /* 11787 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11798 |
3357 | /* 11793 */ MCD::OPC_Decode, 209, 81, 146, 1, // Opcode: VSTUizv, DecodeIdx: 146 |
3358 | /* 11798 */ MCD::OPC_Decode, 212, 81, 147, 1, // Opcode: VSTUizvm, DecodeIdx: 147 |
3359 | /* 11803 */ MCD::OPC_FilterValueOrFail, 1, |
3360 | /* 11805 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3361 | /* 11808 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11833 |
3362 | /* 11812 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3363 | /* 11815 */ MCD::OPC_FilterValueOrFail, 0, |
3364 | /* 11817 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11828 |
3365 | /* 11823 */ MCD::OPC_Decode, 173, 81, 148, 1, // Opcode: VSTUNCrzv, DecodeIdx: 148 |
3366 | /* 11828 */ MCD::OPC_Decode, 176, 81, 149, 1, // Opcode: VSTUNCrzvm, DecodeIdx: 149 |
3367 | /* 11833 */ MCD::OPC_FilterValueOrFail, 4, |
3368 | /* 11835 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3369 | /* 11838 */ MCD::OPC_FilterValueOrFail, 0, |
3370 | /* 11840 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11851 |
3371 | /* 11846 */ MCD::OPC_Decode, 221, 81, 148, 1, // Opcode: VSTUrzv, DecodeIdx: 148 |
3372 | /* 11851 */ MCD::OPC_Decode, 224, 81, 149, 1, // Opcode: VSTUrzvm, DecodeIdx: 149 |
3373 | /* 11856 */ MCD::OPC_FilterValueOrFail, 1, |
3374 | /* 11858 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3375 | /* 11861 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 11916 |
3376 | /* 11865 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3377 | /* 11868 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11893 |
3378 | /* 11872 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3379 | /* 11875 */ MCD::OPC_FilterValueOrFail, 0, |
3380 | /* 11877 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11888 |
3381 | /* 11883 */ MCD::OPC_Decode, 155, 81, 150, 1, // Opcode: VSTUNCirv, DecodeIdx: 150 |
3382 | /* 11888 */ MCD::OPC_Decode, 158, 81, 151, 1, // Opcode: VSTUNCirvm, DecodeIdx: 151 |
3383 | /* 11893 */ MCD::OPC_FilterValueOrFail, 4, |
3384 | /* 11895 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3385 | /* 11898 */ MCD::OPC_FilterValueOrFail, 0, |
3386 | /* 11900 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11911 |
3387 | /* 11906 */ MCD::OPC_Decode, 203, 81, 150, 1, // Opcode: VSTUirv, DecodeIdx: 150 |
3388 | /* 11911 */ MCD::OPC_Decode, 206, 81, 151, 1, // Opcode: VSTUirvm, DecodeIdx: 151 |
3389 | /* 11916 */ MCD::OPC_FilterValueOrFail, 1, |
3390 | /* 11918 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3391 | /* 11921 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 11946 |
3392 | /* 11925 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3393 | /* 11928 */ MCD::OPC_FilterValueOrFail, 0, |
3394 | /* 11930 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11941 |
3395 | /* 11936 */ MCD::OPC_Decode, 167, 81, 152, 1, // Opcode: VSTUNCrrv, DecodeIdx: 152 |
3396 | /* 11941 */ MCD::OPC_Decode, 170, 81, 153, 1, // Opcode: VSTUNCrrvm, DecodeIdx: 153 |
3397 | /* 11946 */ MCD::OPC_FilterValueOrFail, 4, |
3398 | /* 11948 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3399 | /* 11951 */ MCD::OPC_FilterValueOrFail, 0, |
3400 | /* 11953 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 11964 |
3401 | /* 11959 */ MCD::OPC_Decode, 215, 81, 152, 1, // Opcode: VSTUrrv, DecodeIdx: 152 |
3402 | /* 11964 */ MCD::OPC_Decode, 218, 81, 153, 1, // Opcode: VSTUrrvm, DecodeIdx: 153 |
3403 | /* 11969 */ MCD::OPC_FilterValue, 165, 2, 231, 0, // Skip to: 12205 |
3404 | /* 11974 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3405 | /* 11977 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 12092 |
3406 | /* 11981 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3407 | /* 11984 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12039 |
3408 | /* 11988 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3409 | /* 11991 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12016 |
3410 | /* 11995 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3411 | /* 11998 */ MCD::OPC_FilterValueOrFail, 0, |
3412 | /* 12000 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12011 |
3413 | /* 12006 */ MCD::OPC_Decode, 137, 81, 146, 1, // Opcode: VSTUNCOTizv, DecodeIdx: 146 |
3414 | /* 12011 */ MCD::OPC_Decode, 140, 81, 147, 1, // Opcode: VSTUNCOTizvm, DecodeIdx: 147 |
3415 | /* 12016 */ MCD::OPC_FilterValueOrFail, 4, |
3416 | /* 12018 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3417 | /* 12021 */ MCD::OPC_FilterValueOrFail, 0, |
3418 | /* 12023 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12034 |
3419 | /* 12029 */ MCD::OPC_Decode, 185, 81, 146, 1, // Opcode: VSTUOTizv, DecodeIdx: 146 |
3420 | /* 12034 */ MCD::OPC_Decode, 188, 81, 147, 1, // Opcode: VSTUOTizvm, DecodeIdx: 147 |
3421 | /* 12039 */ MCD::OPC_FilterValueOrFail, 1, |
3422 | /* 12041 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3423 | /* 12044 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12069 |
3424 | /* 12048 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3425 | /* 12051 */ MCD::OPC_FilterValueOrFail, 0, |
3426 | /* 12053 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12064 |
3427 | /* 12059 */ MCD::OPC_Decode, 149, 81, 148, 1, // Opcode: VSTUNCOTrzv, DecodeIdx: 148 |
3428 | /* 12064 */ MCD::OPC_Decode, 152, 81, 149, 1, // Opcode: VSTUNCOTrzvm, DecodeIdx: 149 |
3429 | /* 12069 */ MCD::OPC_FilterValueOrFail, 4, |
3430 | /* 12071 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3431 | /* 12074 */ MCD::OPC_FilterValueOrFail, 0, |
3432 | /* 12076 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12087 |
3433 | /* 12082 */ MCD::OPC_Decode, 197, 81, 148, 1, // Opcode: VSTUOTrzv, DecodeIdx: 148 |
3434 | /* 12087 */ MCD::OPC_Decode, 200, 81, 149, 1, // Opcode: VSTUOTrzvm, DecodeIdx: 149 |
3435 | /* 12092 */ MCD::OPC_FilterValueOrFail, 1, |
3436 | /* 12094 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3437 | /* 12097 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12152 |
3438 | /* 12101 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3439 | /* 12104 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12129 |
3440 | /* 12108 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3441 | /* 12111 */ MCD::OPC_FilterValueOrFail, 0, |
3442 | /* 12113 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12124 |
3443 | /* 12119 */ MCD::OPC_Decode, 131, 81, 150, 1, // Opcode: VSTUNCOTirv, DecodeIdx: 150 |
3444 | /* 12124 */ MCD::OPC_Decode, 134, 81, 151, 1, // Opcode: VSTUNCOTirvm, DecodeIdx: 151 |
3445 | /* 12129 */ MCD::OPC_FilterValueOrFail, 4, |
3446 | /* 12131 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3447 | /* 12134 */ MCD::OPC_FilterValueOrFail, 0, |
3448 | /* 12136 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12147 |
3449 | /* 12142 */ MCD::OPC_Decode, 179, 81, 150, 1, // Opcode: VSTUOTirv, DecodeIdx: 150 |
3450 | /* 12147 */ MCD::OPC_Decode, 182, 81, 151, 1, // Opcode: VSTUOTirvm, DecodeIdx: 151 |
3451 | /* 12152 */ MCD::OPC_FilterValueOrFail, 1, |
3452 | /* 12154 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3453 | /* 12157 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12182 |
3454 | /* 12161 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3455 | /* 12164 */ MCD::OPC_FilterValueOrFail, 0, |
3456 | /* 12166 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12177 |
3457 | /* 12172 */ MCD::OPC_Decode, 143, 81, 152, 1, // Opcode: VSTUNCOTrrv, DecodeIdx: 152 |
3458 | /* 12177 */ MCD::OPC_Decode, 146, 81, 153, 1, // Opcode: VSTUNCOTrrvm, DecodeIdx: 153 |
3459 | /* 12182 */ MCD::OPC_FilterValueOrFail, 4, |
3460 | /* 12184 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3461 | /* 12187 */ MCD::OPC_FilterValueOrFail, 0, |
3462 | /* 12189 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12200 |
3463 | /* 12195 */ MCD::OPC_Decode, 191, 81, 152, 1, // Opcode: VSTUOTrrv, DecodeIdx: 152 |
3464 | /* 12200 */ MCD::OPC_Decode, 194, 81, 153, 1, // Opcode: VSTUOTrrvm, DecodeIdx: 153 |
3465 | /* 12205 */ MCD::OPC_FilterValue, 166, 2, 231, 0, // Skip to: 12441 |
3466 | /* 12210 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3467 | /* 12213 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 12328 |
3468 | /* 12217 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3469 | /* 12220 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12275 |
3470 | /* 12224 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3471 | /* 12227 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12252 |
3472 | /* 12231 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3473 | /* 12234 */ MCD::OPC_FilterValueOrFail, 0, |
3474 | /* 12236 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12247 |
3475 | /* 12242 */ MCD::OPC_Decode, 153, 79, 146, 1, // Opcode: VSTLNCizv, DecodeIdx: 146 |
3476 | /* 12247 */ MCD::OPC_Decode, 156, 79, 147, 1, // Opcode: VSTLNCizvm, DecodeIdx: 147 |
3477 | /* 12252 */ MCD::OPC_FilterValueOrFail, 4, |
3478 | /* 12254 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3479 | /* 12257 */ MCD::OPC_FilterValueOrFail, 0, |
3480 | /* 12259 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12270 |
3481 | /* 12265 */ MCD::OPC_Decode, 201, 79, 146, 1, // Opcode: VSTLizv, DecodeIdx: 146 |
3482 | /* 12270 */ MCD::OPC_Decode, 204, 79, 147, 1, // Opcode: VSTLizvm, DecodeIdx: 147 |
3483 | /* 12275 */ MCD::OPC_FilterValueOrFail, 1, |
3484 | /* 12277 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3485 | /* 12280 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12305 |
3486 | /* 12284 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3487 | /* 12287 */ MCD::OPC_FilterValueOrFail, 0, |
3488 | /* 12289 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12300 |
3489 | /* 12295 */ MCD::OPC_Decode, 165, 79, 148, 1, // Opcode: VSTLNCrzv, DecodeIdx: 148 |
3490 | /* 12300 */ MCD::OPC_Decode, 168, 79, 149, 1, // Opcode: VSTLNCrzvm, DecodeIdx: 149 |
3491 | /* 12305 */ MCD::OPC_FilterValueOrFail, 4, |
3492 | /* 12307 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3493 | /* 12310 */ MCD::OPC_FilterValueOrFail, 0, |
3494 | /* 12312 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12323 |
3495 | /* 12318 */ MCD::OPC_Decode, 213, 79, 148, 1, // Opcode: VSTLrzv, DecodeIdx: 148 |
3496 | /* 12323 */ MCD::OPC_Decode, 216, 79, 149, 1, // Opcode: VSTLrzvm, DecodeIdx: 149 |
3497 | /* 12328 */ MCD::OPC_FilterValueOrFail, 1, |
3498 | /* 12330 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3499 | /* 12333 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12388 |
3500 | /* 12337 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3501 | /* 12340 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12365 |
3502 | /* 12344 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3503 | /* 12347 */ MCD::OPC_FilterValueOrFail, 0, |
3504 | /* 12349 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12360 |
3505 | /* 12355 */ MCD::OPC_Decode, 147, 79, 150, 1, // Opcode: VSTLNCirv, DecodeIdx: 150 |
3506 | /* 12360 */ MCD::OPC_Decode, 150, 79, 151, 1, // Opcode: VSTLNCirvm, DecodeIdx: 151 |
3507 | /* 12365 */ MCD::OPC_FilterValueOrFail, 4, |
3508 | /* 12367 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3509 | /* 12370 */ MCD::OPC_FilterValueOrFail, 0, |
3510 | /* 12372 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12383 |
3511 | /* 12378 */ MCD::OPC_Decode, 195, 79, 150, 1, // Opcode: VSTLirv, DecodeIdx: 150 |
3512 | /* 12383 */ MCD::OPC_Decode, 198, 79, 151, 1, // Opcode: VSTLirvm, DecodeIdx: 151 |
3513 | /* 12388 */ MCD::OPC_FilterValueOrFail, 1, |
3514 | /* 12390 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3515 | /* 12393 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12418 |
3516 | /* 12397 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3517 | /* 12400 */ MCD::OPC_FilterValueOrFail, 0, |
3518 | /* 12402 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12413 |
3519 | /* 12408 */ MCD::OPC_Decode, 159, 79, 152, 1, // Opcode: VSTLNCrrv, DecodeIdx: 152 |
3520 | /* 12413 */ MCD::OPC_Decode, 162, 79, 153, 1, // Opcode: VSTLNCrrvm, DecodeIdx: 153 |
3521 | /* 12418 */ MCD::OPC_FilterValueOrFail, 4, |
3522 | /* 12420 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3523 | /* 12423 */ MCD::OPC_FilterValueOrFail, 0, |
3524 | /* 12425 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12436 |
3525 | /* 12431 */ MCD::OPC_Decode, 207, 79, 152, 1, // Opcode: VSTLrrv, DecodeIdx: 152 |
3526 | /* 12436 */ MCD::OPC_Decode, 210, 79, 153, 1, // Opcode: VSTLrrvm, DecodeIdx: 153 |
3527 | /* 12441 */ MCD::OPC_FilterValue, 167, 2, 231, 0, // Skip to: 12677 |
3528 | /* 12446 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3529 | /* 12449 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 12564 |
3530 | /* 12453 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3531 | /* 12456 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12511 |
3532 | /* 12460 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3533 | /* 12463 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12488 |
3534 | /* 12467 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3535 | /* 12470 */ MCD::OPC_FilterValueOrFail, 0, |
3536 | /* 12472 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12483 |
3537 | /* 12478 */ MCD::OPC_Decode, 129, 79, 146, 1, // Opcode: VSTLNCOTizv, DecodeIdx: 146 |
3538 | /* 12483 */ MCD::OPC_Decode, 132, 79, 147, 1, // Opcode: VSTLNCOTizvm, DecodeIdx: 147 |
3539 | /* 12488 */ MCD::OPC_FilterValueOrFail, 4, |
3540 | /* 12490 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3541 | /* 12493 */ MCD::OPC_FilterValueOrFail, 0, |
3542 | /* 12495 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12506 |
3543 | /* 12501 */ MCD::OPC_Decode, 177, 79, 146, 1, // Opcode: VSTLOTizv, DecodeIdx: 146 |
3544 | /* 12506 */ MCD::OPC_Decode, 180, 79, 147, 1, // Opcode: VSTLOTizvm, DecodeIdx: 147 |
3545 | /* 12511 */ MCD::OPC_FilterValueOrFail, 1, |
3546 | /* 12513 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3547 | /* 12516 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12541 |
3548 | /* 12520 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3549 | /* 12523 */ MCD::OPC_FilterValueOrFail, 0, |
3550 | /* 12525 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12536 |
3551 | /* 12531 */ MCD::OPC_Decode, 141, 79, 148, 1, // Opcode: VSTLNCOTrzv, DecodeIdx: 148 |
3552 | /* 12536 */ MCD::OPC_Decode, 144, 79, 149, 1, // Opcode: VSTLNCOTrzvm, DecodeIdx: 149 |
3553 | /* 12541 */ MCD::OPC_FilterValueOrFail, 4, |
3554 | /* 12543 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3555 | /* 12546 */ MCD::OPC_FilterValueOrFail, 0, |
3556 | /* 12548 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12559 |
3557 | /* 12554 */ MCD::OPC_Decode, 189, 79, 148, 1, // Opcode: VSTLOTrzv, DecodeIdx: 148 |
3558 | /* 12559 */ MCD::OPC_Decode, 192, 79, 149, 1, // Opcode: VSTLOTrzvm, DecodeIdx: 149 |
3559 | /* 12564 */ MCD::OPC_FilterValueOrFail, 1, |
3560 | /* 12566 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3561 | /* 12569 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 12624 |
3562 | /* 12573 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3563 | /* 12576 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12601 |
3564 | /* 12580 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3565 | /* 12583 */ MCD::OPC_FilterValueOrFail, 0, |
3566 | /* 12585 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12596 |
3567 | /* 12591 */ MCD::OPC_Decode, 251, 78, 150, 1, // Opcode: VSTLNCOTirv, DecodeIdx: 150 |
3568 | /* 12596 */ MCD::OPC_Decode, 254, 78, 151, 1, // Opcode: VSTLNCOTirvm, DecodeIdx: 151 |
3569 | /* 12601 */ MCD::OPC_FilterValueOrFail, 4, |
3570 | /* 12603 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3571 | /* 12606 */ MCD::OPC_FilterValueOrFail, 0, |
3572 | /* 12608 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12619 |
3573 | /* 12614 */ MCD::OPC_Decode, 171, 79, 150, 1, // Opcode: VSTLOTirv, DecodeIdx: 150 |
3574 | /* 12619 */ MCD::OPC_Decode, 174, 79, 151, 1, // Opcode: VSTLOTirvm, DecodeIdx: 151 |
3575 | /* 12624 */ MCD::OPC_FilterValueOrFail, 1, |
3576 | /* 12626 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3577 | /* 12629 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 12654 |
3578 | /* 12633 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3579 | /* 12636 */ MCD::OPC_FilterValueOrFail, 0, |
3580 | /* 12638 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12649 |
3581 | /* 12644 */ MCD::OPC_Decode, 135, 79, 152, 1, // Opcode: VSTLNCOTrrv, DecodeIdx: 152 |
3582 | /* 12649 */ MCD::OPC_Decode, 138, 79, 153, 1, // Opcode: VSTLNCOTrrvm, DecodeIdx: 153 |
3583 | /* 12654 */ MCD::OPC_FilterValueOrFail, 4, |
3584 | /* 12656 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3585 | /* 12659 */ MCD::OPC_FilterValueOrFail, 0, |
3586 | /* 12661 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12672 |
3587 | /* 12667 */ MCD::OPC_Decode, 183, 79, 152, 1, // Opcode: VSTLOTrrv, DecodeIdx: 152 |
3588 | /* 12672 */ MCD::OPC_Decode, 186, 79, 153, 1, // Opcode: VSTLOTrrvm, DecodeIdx: 153 |
3589 | /* 12677 */ MCD::OPC_FilterValue, 168, 2, 12, 0, // Skip to: 12694 |
3590 | /* 12682 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
3591 | /* 12686 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
3592 | /* 12690 */ MCD::OPC_Decode, 238, 6, 118, // Opcode: NNDMmm, DecodeIdx: 118 |
3593 | /* 12694 */ MCD::OPC_FilterValue, 170, 2, 13, 0, // Skip to: 12712 |
3594 | /* 12699 */ MCD::OPC_CheckFieldOrFail, 32, 23, 0, |
3595 | /* 12703 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
3596 | /* 12707 */ MCD::OPC_Decode, 237, 6, 154, 1, // Opcode: NEGMm, DecodeIdx: 154 |
3597 | /* 12712 */ MCD::OPC_FilterValue, 176, 2, 29, 0, // Skip to: 12746 |
3598 | /* 12717 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3599 | /* 12720 */ MCD::OPC_FilterValueOrFail, 0, |
3600 | /* 12722 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3601 | /* 12725 */ MCD::OPC_FilterValueOrFail, 0, |
3602 | /* 12727 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3603 | /* 12730 */ MCD::OPC_FilterValueOrFail, 0, |
3604 | /* 12732 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 12742 |
3605 | /* 12738 */ MCD::OPC_Decode, 155, 69, 119, // Opcode: VRORv, DecodeIdx: 119 |
3606 | /* 12742 */ MCD::OPC_Decode, 161, 69, 120, // Opcode: VRORvm, DecodeIdx: 120 |
3607 | /* 12746 */ MCD::OPC_FilterValue, 178, 2, 61, 0, // Skip to: 12812 |
3608 | /* 12751 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3609 | /* 12754 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 12784 |
3610 | /* 12758 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3611 | /* 12761 */ MCD::OPC_FilterValueOrFail, 0, |
3612 | /* 12763 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3613 | /* 12766 */ MCD::OPC_FilterValueOrFail, 0, |
3614 | /* 12768 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12779 |
3615 | /* 12774 */ MCD::OPC_Decode, 163, 74, 155, 1, // Opcode: VSEQ, DecodeIdx: 155 |
3616 | /* 12779 */ MCD::OPC_Decode, 169, 74, 156, 1, // Opcode: VSEQm, DecodeIdx: 156 |
3617 | /* 12784 */ MCD::OPC_FilterValueOrFail, 4, |
3618 | /* 12786 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3619 | /* 12789 */ MCD::OPC_FilterValueOrFail, 0, |
3620 | /* 12791 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3621 | /* 12794 */ MCD::OPC_FilterValueOrFail, 0, |
3622 | /* 12796 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12807 |
3623 | /* 12802 */ MCD::OPC_Decode, 192, 28, 155, 1, // Opcode: PVSEQLO, DecodeIdx: 155 |
3624 | /* 12807 */ MCD::OPC_Decode, 198, 28, 156, 1, // Opcode: PVSEQLOm, DecodeIdx: 156 |
3625 | /* 12812 */ MCD::OPC_FilterValue, 179, 2, 61, 0, // Skip to: 12878 |
3626 | /* 12817 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3627 | /* 12820 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 12850 |
3628 | /* 12824 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3629 | /* 12827 */ MCD::OPC_FilterValueOrFail, 0, |
3630 | /* 12829 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3631 | /* 12832 */ MCD::OPC_FilterValueOrFail, 0, |
3632 | /* 12834 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12845 |
3633 | /* 12840 */ MCD::OPC_Decode, 205, 28, 155, 1, // Opcode: PVSEQUP, DecodeIdx: 155 |
3634 | /* 12845 */ MCD::OPC_Decode, 211, 28, 156, 1, // Opcode: PVSEQUPm, DecodeIdx: 156 |
3635 | /* 12850 */ MCD::OPC_FilterValueOrFail, 4, |
3636 | /* 12852 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
3637 | /* 12855 */ MCD::OPC_FilterValueOrFail, 0, |
3638 | /* 12857 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3639 | /* 12860 */ MCD::OPC_FilterValueOrFail, 0, |
3640 | /* 12862 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 12873 |
3641 | /* 12868 */ MCD::OPC_Decode, 190, 28, 155, 1, // Opcode: PVSEQ, DecodeIdx: 155 |
3642 | /* 12873 */ MCD::OPC_Decode, 220, 28, 157, 1, // Opcode: PVSEQm, DecodeIdx: 157 |
3643 | /* 12878 */ MCD::OPC_FilterValue, 180, 2, 201, 0, // Skip to: 13084 |
3644 | /* 12883 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3645 | /* 12886 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 12914 |
3646 | /* 12890 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3647 | /* 12893 */ MCD::OPC_FilterValueOrFail, 0, |
3648 | /* 12895 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3649 | /* 12898 */ MCD::OPC_FilterValueOrFail, 0, |
3650 | /* 12900 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 12910 |
3651 | /* 12906 */ MCD::OPC_Decode, 191, 63, 121, // Opcode: VMAXSLvv, DecodeIdx: 121 |
3652 | /* 12910 */ MCD::OPC_Decode, 197, 63, 122, // Opcode: VMAXSLvvm, DecodeIdx: 122 |
3653 | /* 12914 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 12942 |
3654 | /* 12918 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3655 | /* 12921 */ MCD::OPC_FilterValueOrFail, 0, |
3656 | /* 12923 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3657 | /* 12926 */ MCD::OPC_FilterValueOrFail, 0, |
3658 | /* 12928 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 12938 |
3659 | /* 12934 */ MCD::OPC_Decode, 171, 64, 121, // Opcode: VMINSLvv, DecodeIdx: 121 |
3660 | /* 12938 */ MCD::OPC_Decode, 177, 64, 122, // Opcode: VMINSLvvm, DecodeIdx: 122 |
3661 | /* 12942 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 13014 |
3662 | /* 12946 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3663 | /* 12949 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 12982 |
3664 | /* 12953 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3665 | /* 12956 */ MCD::OPC_FilterValueOrFail, 0, |
3666 | /* 12958 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3667 | /* 12961 */ MCD::OPC_FilterValueOrFail, 0, |
3668 | /* 12963 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3669 | /* 12966 */ MCD::OPC_FilterValueOrFail, 0, |
3670 | /* 12968 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 12978 |
3671 | /* 12974 */ MCD::OPC_Decode, 167, 63, 123, // Opcode: VMAXSLiv, DecodeIdx: 123 |
3672 | /* 12978 */ MCD::OPC_Decode, 173, 63, 124, // Opcode: VMAXSLivm, DecodeIdx: 124 |
3673 | /* 12982 */ MCD::OPC_FilterValueOrFail, 1, |
3674 | /* 12984 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3675 | /* 12987 */ MCD::OPC_FilterValueOrFail, 0, |
3676 | /* 12989 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3677 | /* 12992 */ MCD::OPC_FilterValueOrFail, 0, |
3678 | /* 12994 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3679 | /* 12997 */ MCD::OPC_FilterValueOrFail, 0, |
3680 | /* 12999 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13009 |
3681 | /* 13005 */ MCD::OPC_Decode, 179, 63, 127, // Opcode: VMAXSLrv, DecodeIdx: 127 |
3682 | /* 13009 */ MCD::OPC_Decode, 185, 63, 128, 1, // Opcode: VMAXSLrvm, DecodeIdx: 128 |
3683 | /* 13014 */ MCD::OPC_FilterValueOrFail, 3, |
3684 | /* 13016 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3685 | /* 13019 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 13052 |
3686 | /* 13023 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3687 | /* 13026 */ MCD::OPC_FilterValueOrFail, 0, |
3688 | /* 13028 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3689 | /* 13031 */ MCD::OPC_FilterValueOrFail, 0, |
3690 | /* 13033 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3691 | /* 13036 */ MCD::OPC_FilterValueOrFail, 0, |
3692 | /* 13038 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13048 |
3693 | /* 13044 */ MCD::OPC_Decode, 147, 64, 123, // Opcode: VMINSLiv, DecodeIdx: 123 |
3694 | /* 13048 */ MCD::OPC_Decode, 153, 64, 124, // Opcode: VMINSLivm, DecodeIdx: 124 |
3695 | /* 13052 */ MCD::OPC_FilterValueOrFail, 1, |
3696 | /* 13054 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3697 | /* 13057 */ MCD::OPC_FilterValueOrFail, 0, |
3698 | /* 13059 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3699 | /* 13062 */ MCD::OPC_FilterValueOrFail, 0, |
3700 | /* 13064 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3701 | /* 13067 */ MCD::OPC_FilterValueOrFail, 0, |
3702 | /* 13069 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13079 |
3703 | /* 13075 */ MCD::OPC_Decode, 159, 64, 127, // Opcode: VMINSLrv, DecodeIdx: 127 |
3704 | /* 13079 */ MCD::OPC_Decode, 165, 64, 128, 1, // Opcode: VMINSLrvm, DecodeIdx: 128 |
3705 | /* 13084 */ MCD::OPC_FilterValue, 182, 2, 106, 0, // Skip to: 13195 |
3706 | /* 13089 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3707 | /* 13092 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 13158 |
3708 | /* 13096 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3709 | /* 13099 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 13127 |
3710 | /* 13103 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3711 | /* 13106 */ MCD::OPC_FilterValueOrFail, 0, |
3712 | /* 13108 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
3713 | /* 13111 */ MCD::OPC_FilterValueOrFail, 0, |
3714 | /* 13113 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13123 |
3715 | /* 13119 */ MCD::OPC_Decode, 147, 82, 121, // Opcode: VSUBSLvv, DecodeIdx: 121 |
3716 | /* 13123 */ MCD::OPC_Decode, 153, 82, 122, // Opcode: VSUBSLvvm, DecodeIdx: 122 |
3717 | /* 13127 */ MCD::OPC_FilterValueOrFail, 2, |
3718 | /* 13129 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3719 | /* 13132 */ MCD::OPC_FilterValueOrFail, 0, |
3720 | /* 13134 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3721 | /* 13137 */ MCD::OPC_FilterValueOrFail, 0, |
3722 | /* 13139 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3723 | /* 13142 */ MCD::OPC_FilterValueOrFail, 0, |
3724 | /* 13144 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13154 |
3725 | /* 13150 */ MCD::OPC_Decode, 251, 81, 123, // Opcode: VSUBSLiv, DecodeIdx: 123 |
3726 | /* 13154 */ MCD::OPC_Decode, 129, 82, 124, // Opcode: VSUBSLivm, DecodeIdx: 124 |
3727 | /* 13158 */ MCD::OPC_FilterValueOrFail, 1, |
3728 | /* 13160 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3729 | /* 13163 */ MCD::OPC_FilterValueOrFail, 0, |
3730 | /* 13165 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3731 | /* 13168 */ MCD::OPC_FilterValueOrFail, 0, |
3732 | /* 13170 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3733 | /* 13173 */ MCD::OPC_FilterValueOrFail, 0, |
3734 | /* 13175 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3735 | /* 13178 */ MCD::OPC_FilterValueOrFail, 2, |
3736 | /* 13180 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13190 |
3737 | /* 13186 */ MCD::OPC_Decode, 135, 82, 127, // Opcode: VSUBSLrv, DecodeIdx: 127 |
3738 | /* 13190 */ MCD::OPC_Decode, 141, 82, 128, 1, // Opcode: VSUBSLrvm, DecodeIdx: 128 |
3739 | /* 13195 */ MCD::OPC_FilterValue, 184, 2, 80, 0, // Skip to: 13280 |
3740 | /* 13200 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3741 | /* 13203 */ MCD::OPC_FilterValue, 0, 36, 0, // Skip to: 13243 |
3742 | /* 13207 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3743 | /* 13210 */ MCD::OPC_FilterValueOrFail, 0, |
3744 | /* 13212 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3745 | /* 13215 */ MCD::OPC_FilterValueOrFail, 0, |
3746 | /* 13217 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3747 | /* 13220 */ MCD::OPC_FilterValueOrFail, 0, |
3748 | /* 13222 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3749 | /* 13225 */ MCD::OPC_FilterValueOrFail, 0, |
3750 | /* 13227 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13238 |
3751 | /* 13233 */ MCD::OPC_Decode, 159, 67, 158, 1, // Opcode: VMViv, DecodeIdx: 158 |
3752 | /* 13238 */ MCD::OPC_Decode, 165, 67, 159, 1, // Opcode: VMVivm, DecodeIdx: 159 |
3753 | /* 13243 */ MCD::OPC_FilterValueOrFail, 1, |
3754 | /* 13245 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3755 | /* 13248 */ MCD::OPC_FilterValueOrFail, 0, |
3756 | /* 13250 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3757 | /* 13253 */ MCD::OPC_FilterValueOrFail, 0, |
3758 | /* 13255 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
3759 | /* 13258 */ MCD::OPC_FilterValueOrFail, 0, |
3760 | /* 13260 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3761 | /* 13263 */ MCD::OPC_FilterValueOrFail, 0, |
3762 | /* 13265 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13275 |
3763 | /* 13271 */ MCD::OPC_Decode, 171, 67, 127, // Opcode: VMVrv, DecodeIdx: 127 |
3764 | /* 13275 */ MCD::OPC_Decode, 177, 67, 128, 1, // Opcode: VMVrvm, DecodeIdx: 128 |
3765 | /* 13280 */ MCD::OPC_FilterValue, 186, 2, 36, 0, // Skip to: 13321 |
3766 | /* 13285 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
3767 | /* 13288 */ MCD::OPC_FilterValueOrFail, 0, |
3768 | /* 13290 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
3769 | /* 13293 */ MCD::OPC_FilterValueOrFail, 0, |
3770 | /* 13295 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3771 | /* 13298 */ MCD::OPC_FilterValueOrFail, 0, |
3772 | /* 13300 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3773 | /* 13303 */ MCD::OPC_FilterValueOrFail, 0, |
3774 | /* 13305 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13316 |
3775 | /* 13311 */ MCD::OPC_Decode, 135, 43, 142, 1, // Opcode: VEXv, DecodeIdx: 142 |
3776 | /* 13316 */ MCD::OPC_Decode, 141, 43, 143, 1, // Opcode: VEXvm, DecodeIdx: 143 |
3777 | /* 13321 */ MCD::OPC_FilterValue, 188, 2, 35, 0, // Skip to: 13361 |
3778 | /* 13326 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3779 | /* 13329 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 13346 |
3780 | /* 13333 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
3781 | /* 13337 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3782 | /* 13341 */ MCD::OPC_Decode, 178, 6, 160, 1, // Opcode: LVSvi, DecodeIdx: 160 |
3783 | /* 13346 */ MCD::OPC_FilterValueOrFail, 1, |
3784 | /* 13348 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
3785 | /* 13352 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
3786 | /* 13356 */ MCD::OPC_Decode, 179, 6, 161, 1, // Opcode: LVSvr, DecodeIdx: 161 |
3787 | /* 13361 */ MCD::OPC_FilterValue, 190, 2, 29, 0, // Skip to: 13395 |
3788 | /* 13366 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3789 | /* 13369 */ MCD::OPC_FilterValueOrFail, 0, |
3790 | /* 13371 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
3791 | /* 13374 */ MCD::OPC_FilterValueOrFail, 0, |
3792 | /* 13376 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3793 | /* 13379 */ MCD::OPC_FilterValueOrFail, 0, |
3794 | /* 13381 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 13391 |
3795 | /* 13387 */ MCD::OPC_Decode, 239, 39, 119, // Opcode: VCVTSDv, DecodeIdx: 119 |
3796 | /* 13391 */ MCD::OPC_Decode, 245, 39, 120, // Opcode: VCVTSDvm, DecodeIdx: 120 |
3797 | /* 13395 */ MCD::OPC_FilterValue, 194, 2, 205, 1, // Skip to: 13861 |
3798 | /* 13400 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3799 | /* 13403 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 13518 |
3800 | /* 13407 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3801 | /* 13410 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 13465 |
3802 | /* 13414 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3803 | /* 13417 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13442 |
3804 | /* 13421 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3805 | /* 13424 */ MCD::OPC_FilterValueOrFail, 0, |
3806 | /* 13426 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13437 |
3807 | /* 13432 */ MCD::OPC_Decode, 215, 57, 162, 1, // Opcode: VGTNCviz, DecodeIdx: 162 |
3808 | /* 13437 */ MCD::OPC_Decode, 221, 57, 163, 1, // Opcode: VGTNCvizm, DecodeIdx: 163 |
3809 | /* 13442 */ MCD::OPC_FilterValueOrFail, 1, |
3810 | /* 13444 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3811 | /* 13447 */ MCD::OPC_FilterValueOrFail, 0, |
3812 | /* 13449 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13460 |
3813 | /* 13455 */ MCD::OPC_Decode, 239, 57, 164, 1, // Opcode: VGTNCvrz, DecodeIdx: 164 |
3814 | /* 13460 */ MCD::OPC_Decode, 245, 57, 165, 1, // Opcode: VGTNCvrzm, DecodeIdx: 165 |
3815 | /* 13465 */ MCD::OPC_FilterValueOrFail, 1, |
3816 | /* 13467 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3817 | /* 13470 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13495 |
3818 | /* 13474 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3819 | /* 13477 */ MCD::OPC_FilterValueOrFail, 0, |
3820 | /* 13479 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13490 |
3821 | /* 13485 */ MCD::OPC_Decode, 203, 57, 166, 1, // Opcode: VGTNCvir, DecodeIdx: 166 |
3822 | /* 13490 */ MCD::OPC_Decode, 209, 57, 167, 1, // Opcode: VGTNCvirm, DecodeIdx: 167 |
3823 | /* 13495 */ MCD::OPC_FilterValueOrFail, 1, |
3824 | /* 13497 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3825 | /* 13500 */ MCD::OPC_FilterValueOrFail, 0, |
3826 | /* 13502 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13513 |
3827 | /* 13508 */ MCD::OPC_Decode, 227, 57, 168, 1, // Opcode: VGTNCvrr, DecodeIdx: 168 |
3828 | /* 13513 */ MCD::OPC_Decode, 233, 57, 169, 1, // Opcode: VGTNCvrrm, DecodeIdx: 169 |
3829 | /* 13518 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 13633 |
3830 | /* 13522 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3831 | /* 13525 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 13580 |
3832 | /* 13529 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3833 | /* 13532 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13557 |
3834 | /* 13536 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3835 | /* 13539 */ MCD::OPC_FilterValueOrFail, 0, |
3836 | /* 13541 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13552 |
3837 | /* 13547 */ MCD::OPC_Decode, 167, 57, 170, 1, // Opcode: VGTNCsiz, DecodeIdx: 170 |
3838 | /* 13552 */ MCD::OPC_Decode, 173, 57, 171, 1, // Opcode: VGTNCsizm, DecodeIdx: 171 |
3839 | /* 13557 */ MCD::OPC_FilterValueOrFail, 1, |
3840 | /* 13559 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3841 | /* 13562 */ MCD::OPC_FilterValueOrFail, 0, |
3842 | /* 13564 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13575 |
3843 | /* 13570 */ MCD::OPC_Decode, 191, 57, 172, 1, // Opcode: VGTNCsrz, DecodeIdx: 172 |
3844 | /* 13575 */ MCD::OPC_Decode, 197, 57, 173, 1, // Opcode: VGTNCsrzm, DecodeIdx: 173 |
3845 | /* 13580 */ MCD::OPC_FilterValueOrFail, 1, |
3846 | /* 13582 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3847 | /* 13585 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13610 |
3848 | /* 13589 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3849 | /* 13592 */ MCD::OPC_FilterValueOrFail, 0, |
3850 | /* 13594 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13605 |
3851 | /* 13600 */ MCD::OPC_Decode, 155, 57, 174, 1, // Opcode: VGTNCsir, DecodeIdx: 174 |
3852 | /* 13605 */ MCD::OPC_Decode, 161, 57, 175, 1, // Opcode: VGTNCsirm, DecodeIdx: 175 |
3853 | /* 13610 */ MCD::OPC_FilterValueOrFail, 1, |
3854 | /* 13612 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3855 | /* 13615 */ MCD::OPC_FilterValueOrFail, 0, |
3856 | /* 13617 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13628 |
3857 | /* 13623 */ MCD::OPC_Decode, 179, 57, 176, 1, // Opcode: VGTNCsrr, DecodeIdx: 176 |
3858 | /* 13628 */ MCD::OPC_Decode, 185, 57, 177, 1, // Opcode: VGTNCsrrm, DecodeIdx: 177 |
3859 | /* 13633 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 13748 |
3860 | /* 13637 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3861 | /* 13640 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 13695 |
3862 | /* 13644 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3863 | /* 13647 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13672 |
3864 | /* 13651 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3865 | /* 13654 */ MCD::OPC_FilterValueOrFail, 0, |
3866 | /* 13656 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13667 |
3867 | /* 13662 */ MCD::OPC_Decode, 247, 59, 162, 1, // Opcode: VGTviz, DecodeIdx: 162 |
3868 | /* 13667 */ MCD::OPC_Decode, 253, 59, 163, 1, // Opcode: VGTvizm, DecodeIdx: 163 |
3869 | /* 13672 */ MCD::OPC_FilterValueOrFail, 1, |
3870 | /* 13674 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3871 | /* 13677 */ MCD::OPC_FilterValueOrFail, 0, |
3872 | /* 13679 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13690 |
3873 | /* 13685 */ MCD::OPC_Decode, 143, 60, 164, 1, // Opcode: VGTvrz, DecodeIdx: 164 |
3874 | /* 13690 */ MCD::OPC_Decode, 149, 60, 165, 1, // Opcode: VGTvrzm, DecodeIdx: 165 |
3875 | /* 13695 */ MCD::OPC_FilterValueOrFail, 1, |
3876 | /* 13697 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3877 | /* 13700 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13725 |
3878 | /* 13704 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3879 | /* 13707 */ MCD::OPC_FilterValueOrFail, 0, |
3880 | /* 13709 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13720 |
3881 | /* 13715 */ MCD::OPC_Decode, 235, 59, 166, 1, // Opcode: VGTvir, DecodeIdx: 166 |
3882 | /* 13720 */ MCD::OPC_Decode, 241, 59, 167, 1, // Opcode: VGTvirm, DecodeIdx: 167 |
3883 | /* 13725 */ MCD::OPC_FilterValueOrFail, 1, |
3884 | /* 13727 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3885 | /* 13730 */ MCD::OPC_FilterValueOrFail, 0, |
3886 | /* 13732 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13743 |
3887 | /* 13738 */ MCD::OPC_Decode, 131, 60, 168, 1, // Opcode: VGTvrr, DecodeIdx: 168 |
3888 | /* 13743 */ MCD::OPC_Decode, 137, 60, 169, 1, // Opcode: VGTvrrm, DecodeIdx: 169 |
3889 | /* 13748 */ MCD::OPC_FilterValueOrFail, 6, |
3890 | /* 13750 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3891 | /* 13753 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 13808 |
3892 | /* 13757 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3893 | /* 13760 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13785 |
3894 | /* 13764 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3895 | /* 13767 */ MCD::OPC_FilterValueOrFail, 0, |
3896 | /* 13769 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13780 |
3897 | /* 13775 */ MCD::OPC_Decode, 199, 59, 170, 1, // Opcode: VGTsiz, DecodeIdx: 170 |
3898 | /* 13780 */ MCD::OPC_Decode, 205, 59, 171, 1, // Opcode: VGTsizm, DecodeIdx: 171 |
3899 | /* 13785 */ MCD::OPC_FilterValueOrFail, 1, |
3900 | /* 13787 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3901 | /* 13790 */ MCD::OPC_FilterValueOrFail, 0, |
3902 | /* 13792 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13803 |
3903 | /* 13798 */ MCD::OPC_Decode, 223, 59, 172, 1, // Opcode: VGTsrz, DecodeIdx: 172 |
3904 | /* 13803 */ MCD::OPC_Decode, 229, 59, 173, 1, // Opcode: VGTsrzm, DecodeIdx: 173 |
3905 | /* 13808 */ MCD::OPC_FilterValueOrFail, 1, |
3906 | /* 13810 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3907 | /* 13813 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13838 |
3908 | /* 13817 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3909 | /* 13820 */ MCD::OPC_FilterValueOrFail, 0, |
3910 | /* 13822 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13833 |
3911 | /* 13828 */ MCD::OPC_Decode, 187, 59, 174, 1, // Opcode: VGTsir, DecodeIdx: 174 |
3912 | /* 13833 */ MCD::OPC_Decode, 193, 59, 175, 1, // Opcode: VGTsirm, DecodeIdx: 175 |
3913 | /* 13838 */ MCD::OPC_FilterValueOrFail, 1, |
3914 | /* 13840 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3915 | /* 13843 */ MCD::OPC_FilterValueOrFail, 0, |
3916 | /* 13845 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13856 |
3917 | /* 13851 */ MCD::OPC_Decode, 211, 59, 176, 1, // Opcode: VGTsrr, DecodeIdx: 176 |
3918 | /* 13856 */ MCD::OPC_Decode, 217, 59, 177, 1, // Opcode: VGTsrrm, DecodeIdx: 177 |
3919 | /* 13861 */ MCD::OPC_FilterValue, 196, 2, 205, 1, // Skip to: 14327 |
3920 | /* 13866 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
3921 | /* 13869 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 13984 |
3922 | /* 13873 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3923 | /* 13876 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 13931 |
3924 | /* 13880 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3925 | /* 13883 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13908 |
3926 | /* 13887 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3927 | /* 13890 */ MCD::OPC_FilterValueOrFail, 0, |
3928 | /* 13892 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13903 |
3929 | /* 13898 */ MCD::OPC_Decode, 183, 58, 162, 1, // Opcode: VGTUNCviz, DecodeIdx: 162 |
3930 | /* 13903 */ MCD::OPC_Decode, 189, 58, 163, 1, // Opcode: VGTUNCvizm, DecodeIdx: 163 |
3931 | /* 13908 */ MCD::OPC_FilterValueOrFail, 1, |
3932 | /* 13910 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3933 | /* 13913 */ MCD::OPC_FilterValueOrFail, 0, |
3934 | /* 13915 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13926 |
3935 | /* 13921 */ MCD::OPC_Decode, 207, 58, 164, 1, // Opcode: VGTUNCvrz, DecodeIdx: 164 |
3936 | /* 13926 */ MCD::OPC_Decode, 213, 58, 165, 1, // Opcode: VGTUNCvrzm, DecodeIdx: 165 |
3937 | /* 13931 */ MCD::OPC_FilterValueOrFail, 1, |
3938 | /* 13933 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3939 | /* 13936 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 13961 |
3940 | /* 13940 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3941 | /* 13943 */ MCD::OPC_FilterValueOrFail, 0, |
3942 | /* 13945 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13956 |
3943 | /* 13951 */ MCD::OPC_Decode, 171, 58, 166, 1, // Opcode: VGTUNCvir, DecodeIdx: 166 |
3944 | /* 13956 */ MCD::OPC_Decode, 177, 58, 167, 1, // Opcode: VGTUNCvirm, DecodeIdx: 167 |
3945 | /* 13961 */ MCD::OPC_FilterValueOrFail, 1, |
3946 | /* 13963 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3947 | /* 13966 */ MCD::OPC_FilterValueOrFail, 0, |
3948 | /* 13968 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 13979 |
3949 | /* 13974 */ MCD::OPC_Decode, 195, 58, 168, 1, // Opcode: VGTUNCvrr, DecodeIdx: 168 |
3950 | /* 13979 */ MCD::OPC_Decode, 201, 58, 169, 1, // Opcode: VGTUNCvrrm, DecodeIdx: 169 |
3951 | /* 13984 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 14099 |
3952 | /* 13988 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3953 | /* 13991 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14046 |
3954 | /* 13995 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3955 | /* 13998 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14023 |
3956 | /* 14002 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3957 | /* 14005 */ MCD::OPC_FilterValueOrFail, 0, |
3958 | /* 14007 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14018 |
3959 | /* 14013 */ MCD::OPC_Decode, 135, 58, 170, 1, // Opcode: VGTUNCsiz, DecodeIdx: 170 |
3960 | /* 14018 */ MCD::OPC_Decode, 141, 58, 171, 1, // Opcode: VGTUNCsizm, DecodeIdx: 171 |
3961 | /* 14023 */ MCD::OPC_FilterValueOrFail, 1, |
3962 | /* 14025 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3963 | /* 14028 */ MCD::OPC_FilterValueOrFail, 0, |
3964 | /* 14030 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14041 |
3965 | /* 14036 */ MCD::OPC_Decode, 159, 58, 172, 1, // Opcode: VGTUNCsrz, DecodeIdx: 172 |
3966 | /* 14041 */ MCD::OPC_Decode, 165, 58, 173, 1, // Opcode: VGTUNCsrzm, DecodeIdx: 173 |
3967 | /* 14046 */ MCD::OPC_FilterValueOrFail, 1, |
3968 | /* 14048 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3969 | /* 14051 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14076 |
3970 | /* 14055 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3971 | /* 14058 */ MCD::OPC_FilterValueOrFail, 0, |
3972 | /* 14060 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14071 |
3973 | /* 14066 */ MCD::OPC_Decode, 251, 57, 174, 1, // Opcode: VGTUNCsir, DecodeIdx: 174 |
3974 | /* 14071 */ MCD::OPC_Decode, 129, 58, 175, 1, // Opcode: VGTUNCsirm, DecodeIdx: 175 |
3975 | /* 14076 */ MCD::OPC_FilterValueOrFail, 1, |
3976 | /* 14078 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
3977 | /* 14081 */ MCD::OPC_FilterValueOrFail, 0, |
3978 | /* 14083 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14094 |
3979 | /* 14089 */ MCD::OPC_Decode, 147, 58, 176, 1, // Opcode: VGTUNCsrr, DecodeIdx: 176 |
3980 | /* 14094 */ MCD::OPC_Decode, 153, 58, 177, 1, // Opcode: VGTUNCsrrm, DecodeIdx: 177 |
3981 | /* 14099 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 14214 |
3982 | /* 14103 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
3983 | /* 14106 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14161 |
3984 | /* 14110 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3985 | /* 14113 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14138 |
3986 | /* 14117 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3987 | /* 14120 */ MCD::OPC_FilterValueOrFail, 0, |
3988 | /* 14122 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14133 |
3989 | /* 14128 */ MCD::OPC_Decode, 151, 59, 162, 1, // Opcode: VGTUviz, DecodeIdx: 162 |
3990 | /* 14133 */ MCD::OPC_Decode, 157, 59, 163, 1, // Opcode: VGTUvizm, DecodeIdx: 163 |
3991 | /* 14138 */ MCD::OPC_FilterValueOrFail, 1, |
3992 | /* 14140 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3993 | /* 14143 */ MCD::OPC_FilterValueOrFail, 0, |
3994 | /* 14145 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14156 |
3995 | /* 14151 */ MCD::OPC_Decode, 175, 59, 164, 1, // Opcode: VGTUvrz, DecodeIdx: 164 |
3996 | /* 14156 */ MCD::OPC_Decode, 181, 59, 165, 1, // Opcode: VGTUvrzm, DecodeIdx: 165 |
3997 | /* 14161 */ MCD::OPC_FilterValueOrFail, 1, |
3998 | /* 14163 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
3999 | /* 14166 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14191 |
4000 | /* 14170 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4001 | /* 14173 */ MCD::OPC_FilterValueOrFail, 0, |
4002 | /* 14175 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14186 |
4003 | /* 14181 */ MCD::OPC_Decode, 139, 59, 166, 1, // Opcode: VGTUvir, DecodeIdx: 166 |
4004 | /* 14186 */ MCD::OPC_Decode, 145, 59, 167, 1, // Opcode: VGTUvirm, DecodeIdx: 167 |
4005 | /* 14191 */ MCD::OPC_FilterValueOrFail, 1, |
4006 | /* 14193 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4007 | /* 14196 */ MCD::OPC_FilterValueOrFail, 0, |
4008 | /* 14198 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14209 |
4009 | /* 14204 */ MCD::OPC_Decode, 163, 59, 168, 1, // Opcode: VGTUvrr, DecodeIdx: 168 |
4010 | /* 14209 */ MCD::OPC_Decode, 169, 59, 169, 1, // Opcode: VGTUvrrm, DecodeIdx: 169 |
4011 | /* 14214 */ MCD::OPC_FilterValueOrFail, 6, |
4012 | /* 14216 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4013 | /* 14219 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14274 |
4014 | /* 14223 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4015 | /* 14226 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14251 |
4016 | /* 14230 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4017 | /* 14233 */ MCD::OPC_FilterValueOrFail, 0, |
4018 | /* 14235 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14246 |
4019 | /* 14241 */ MCD::OPC_Decode, 231, 58, 170, 1, // Opcode: VGTUsiz, DecodeIdx: 170 |
4020 | /* 14246 */ MCD::OPC_Decode, 237, 58, 171, 1, // Opcode: VGTUsizm, DecodeIdx: 171 |
4021 | /* 14251 */ MCD::OPC_FilterValueOrFail, 1, |
4022 | /* 14253 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4023 | /* 14256 */ MCD::OPC_FilterValueOrFail, 0, |
4024 | /* 14258 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14269 |
4025 | /* 14264 */ MCD::OPC_Decode, 255, 58, 172, 1, // Opcode: VGTUsrz, DecodeIdx: 172 |
4026 | /* 14269 */ MCD::OPC_Decode, 133, 59, 173, 1, // Opcode: VGTUsrzm, DecodeIdx: 173 |
4027 | /* 14274 */ MCD::OPC_FilterValueOrFail, 1, |
4028 | /* 14276 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4029 | /* 14279 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14304 |
4030 | /* 14283 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4031 | /* 14286 */ MCD::OPC_FilterValueOrFail, 0, |
4032 | /* 14288 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14299 |
4033 | /* 14294 */ MCD::OPC_Decode, 219, 58, 174, 1, // Opcode: VGTUsir, DecodeIdx: 174 |
4034 | /* 14299 */ MCD::OPC_Decode, 225, 58, 175, 1, // Opcode: VGTUsirm, DecodeIdx: 175 |
4035 | /* 14304 */ MCD::OPC_FilterValueOrFail, 1, |
4036 | /* 14306 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4037 | /* 14309 */ MCD::OPC_FilterValueOrFail, 0, |
4038 | /* 14311 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14322 |
4039 | /* 14317 */ MCD::OPC_Decode, 243, 58, 176, 1, // Opcode: VGTUsrr, DecodeIdx: 176 |
4040 | /* 14322 */ MCD::OPC_Decode, 249, 58, 177, 1, // Opcode: VGTUsrrm, DecodeIdx: 177 |
4041 | /* 14327 */ MCD::OPC_FilterValue, 198, 2, 205, 1, // Skip to: 14793 |
4042 | /* 14332 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4043 | /* 14335 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 14450 |
4044 | /* 14339 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4045 | /* 14342 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14397 |
4046 | /* 14346 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4047 | /* 14349 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14374 |
4048 | /* 14353 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4049 | /* 14356 */ MCD::OPC_FilterValueOrFail, 0, |
4050 | /* 14358 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14369 |
4051 | /* 14364 */ MCD::OPC_Decode, 215, 54, 162, 1, // Opcode: VGTLSXNCviz, DecodeIdx: 162 |
4052 | /* 14369 */ MCD::OPC_Decode, 221, 54, 163, 1, // Opcode: VGTLSXNCvizm, DecodeIdx: 163 |
4053 | /* 14374 */ MCD::OPC_FilterValueOrFail, 1, |
4054 | /* 14376 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4055 | /* 14379 */ MCD::OPC_FilterValueOrFail, 0, |
4056 | /* 14381 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14392 |
4057 | /* 14387 */ MCD::OPC_Decode, 239, 54, 164, 1, // Opcode: VGTLSXNCvrz, DecodeIdx: 164 |
4058 | /* 14392 */ MCD::OPC_Decode, 245, 54, 165, 1, // Opcode: VGTLSXNCvrzm, DecodeIdx: 165 |
4059 | /* 14397 */ MCD::OPC_FilterValueOrFail, 1, |
4060 | /* 14399 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4061 | /* 14402 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14427 |
4062 | /* 14406 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4063 | /* 14409 */ MCD::OPC_FilterValueOrFail, 0, |
4064 | /* 14411 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14422 |
4065 | /* 14417 */ MCD::OPC_Decode, 203, 54, 166, 1, // Opcode: VGTLSXNCvir, DecodeIdx: 166 |
4066 | /* 14422 */ MCD::OPC_Decode, 209, 54, 167, 1, // Opcode: VGTLSXNCvirm, DecodeIdx: 167 |
4067 | /* 14427 */ MCD::OPC_FilterValueOrFail, 1, |
4068 | /* 14429 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4069 | /* 14432 */ MCD::OPC_FilterValueOrFail, 0, |
4070 | /* 14434 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14445 |
4071 | /* 14440 */ MCD::OPC_Decode, 227, 54, 168, 1, // Opcode: VGTLSXNCvrr, DecodeIdx: 168 |
4072 | /* 14445 */ MCD::OPC_Decode, 233, 54, 169, 1, // Opcode: VGTLSXNCvrrm, DecodeIdx: 169 |
4073 | /* 14450 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 14565 |
4074 | /* 14454 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4075 | /* 14457 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14512 |
4076 | /* 14461 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4077 | /* 14464 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14489 |
4078 | /* 14468 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4079 | /* 14471 */ MCD::OPC_FilterValueOrFail, 0, |
4080 | /* 14473 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14484 |
4081 | /* 14479 */ MCD::OPC_Decode, 167, 54, 170, 1, // Opcode: VGTLSXNCsiz, DecodeIdx: 170 |
4082 | /* 14484 */ MCD::OPC_Decode, 173, 54, 171, 1, // Opcode: VGTLSXNCsizm, DecodeIdx: 171 |
4083 | /* 14489 */ MCD::OPC_FilterValueOrFail, 1, |
4084 | /* 14491 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4085 | /* 14494 */ MCD::OPC_FilterValueOrFail, 0, |
4086 | /* 14496 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14507 |
4087 | /* 14502 */ MCD::OPC_Decode, 191, 54, 172, 1, // Opcode: VGTLSXNCsrz, DecodeIdx: 172 |
4088 | /* 14507 */ MCD::OPC_Decode, 197, 54, 173, 1, // Opcode: VGTLSXNCsrzm, DecodeIdx: 173 |
4089 | /* 14512 */ MCD::OPC_FilterValueOrFail, 1, |
4090 | /* 14514 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4091 | /* 14517 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14542 |
4092 | /* 14521 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4093 | /* 14524 */ MCD::OPC_FilterValueOrFail, 0, |
4094 | /* 14526 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14537 |
4095 | /* 14532 */ MCD::OPC_Decode, 155, 54, 174, 1, // Opcode: VGTLSXNCsir, DecodeIdx: 174 |
4096 | /* 14537 */ MCD::OPC_Decode, 161, 54, 175, 1, // Opcode: VGTLSXNCsirm, DecodeIdx: 175 |
4097 | /* 14542 */ MCD::OPC_FilterValueOrFail, 1, |
4098 | /* 14544 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4099 | /* 14547 */ MCD::OPC_FilterValueOrFail, 0, |
4100 | /* 14549 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14560 |
4101 | /* 14555 */ MCD::OPC_Decode, 179, 54, 176, 1, // Opcode: VGTLSXNCsrr, DecodeIdx: 176 |
4102 | /* 14560 */ MCD::OPC_Decode, 185, 54, 177, 1, // Opcode: VGTLSXNCsrrm, DecodeIdx: 177 |
4103 | /* 14565 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 14680 |
4104 | /* 14569 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4105 | /* 14572 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14627 |
4106 | /* 14576 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4107 | /* 14579 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14604 |
4108 | /* 14583 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4109 | /* 14586 */ MCD::OPC_FilterValueOrFail, 0, |
4110 | /* 14588 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14599 |
4111 | /* 14594 */ MCD::OPC_Decode, 183, 55, 162, 1, // Opcode: VGTLSXviz, DecodeIdx: 162 |
4112 | /* 14599 */ MCD::OPC_Decode, 189, 55, 163, 1, // Opcode: VGTLSXvizm, DecodeIdx: 163 |
4113 | /* 14604 */ MCD::OPC_FilterValueOrFail, 1, |
4114 | /* 14606 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4115 | /* 14609 */ MCD::OPC_FilterValueOrFail, 0, |
4116 | /* 14611 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14622 |
4117 | /* 14617 */ MCD::OPC_Decode, 207, 55, 164, 1, // Opcode: VGTLSXvrz, DecodeIdx: 164 |
4118 | /* 14622 */ MCD::OPC_Decode, 213, 55, 165, 1, // Opcode: VGTLSXvrzm, DecodeIdx: 165 |
4119 | /* 14627 */ MCD::OPC_FilterValueOrFail, 1, |
4120 | /* 14629 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4121 | /* 14632 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14657 |
4122 | /* 14636 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4123 | /* 14639 */ MCD::OPC_FilterValueOrFail, 0, |
4124 | /* 14641 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14652 |
4125 | /* 14647 */ MCD::OPC_Decode, 171, 55, 166, 1, // Opcode: VGTLSXvir, DecodeIdx: 166 |
4126 | /* 14652 */ MCD::OPC_Decode, 177, 55, 167, 1, // Opcode: VGTLSXvirm, DecodeIdx: 167 |
4127 | /* 14657 */ MCD::OPC_FilterValueOrFail, 1, |
4128 | /* 14659 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4129 | /* 14662 */ MCD::OPC_FilterValueOrFail, 0, |
4130 | /* 14664 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14675 |
4131 | /* 14670 */ MCD::OPC_Decode, 195, 55, 168, 1, // Opcode: VGTLSXvrr, DecodeIdx: 168 |
4132 | /* 14675 */ MCD::OPC_Decode, 201, 55, 169, 1, // Opcode: VGTLSXvrrm, DecodeIdx: 169 |
4133 | /* 14680 */ MCD::OPC_FilterValueOrFail, 6, |
4134 | /* 14682 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4135 | /* 14685 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14740 |
4136 | /* 14689 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4137 | /* 14692 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14717 |
4138 | /* 14696 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4139 | /* 14699 */ MCD::OPC_FilterValueOrFail, 0, |
4140 | /* 14701 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14712 |
4141 | /* 14707 */ MCD::OPC_Decode, 135, 55, 170, 1, // Opcode: VGTLSXsiz, DecodeIdx: 170 |
4142 | /* 14712 */ MCD::OPC_Decode, 141, 55, 171, 1, // Opcode: VGTLSXsizm, DecodeIdx: 171 |
4143 | /* 14717 */ MCD::OPC_FilterValueOrFail, 1, |
4144 | /* 14719 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4145 | /* 14722 */ MCD::OPC_FilterValueOrFail, 0, |
4146 | /* 14724 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14735 |
4147 | /* 14730 */ MCD::OPC_Decode, 159, 55, 172, 1, // Opcode: VGTLSXsrz, DecodeIdx: 172 |
4148 | /* 14735 */ MCD::OPC_Decode, 165, 55, 173, 1, // Opcode: VGTLSXsrzm, DecodeIdx: 173 |
4149 | /* 14740 */ MCD::OPC_FilterValueOrFail, 1, |
4150 | /* 14742 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4151 | /* 14745 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14770 |
4152 | /* 14749 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4153 | /* 14752 */ MCD::OPC_FilterValueOrFail, 0, |
4154 | /* 14754 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14765 |
4155 | /* 14760 */ MCD::OPC_Decode, 251, 54, 174, 1, // Opcode: VGTLSXsir, DecodeIdx: 174 |
4156 | /* 14765 */ MCD::OPC_Decode, 129, 55, 175, 1, // Opcode: VGTLSXsirm, DecodeIdx: 175 |
4157 | /* 14770 */ MCD::OPC_FilterValueOrFail, 1, |
4158 | /* 14772 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4159 | /* 14775 */ MCD::OPC_FilterValueOrFail, 0, |
4160 | /* 14777 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14788 |
4161 | /* 14783 */ MCD::OPC_Decode, 147, 55, 176, 1, // Opcode: VGTLSXsrr, DecodeIdx: 176 |
4162 | /* 14788 */ MCD::OPC_Decode, 153, 55, 177, 1, // Opcode: VGTLSXsrrm, DecodeIdx: 177 |
4163 | /* 14793 */ MCD::OPC_FilterValue, 199, 2, 205, 1, // Skip to: 15259 |
4164 | /* 14798 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4165 | /* 14801 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 14916 |
4166 | /* 14805 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4167 | /* 14808 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14863 |
4168 | /* 14812 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4169 | /* 14815 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14840 |
4170 | /* 14819 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4171 | /* 14822 */ MCD::OPC_FilterValueOrFail, 0, |
4172 | /* 14824 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14835 |
4173 | /* 14830 */ MCD::OPC_Decode, 151, 56, 162, 1, // Opcode: VGTLZXNCviz, DecodeIdx: 162 |
4174 | /* 14835 */ MCD::OPC_Decode, 157, 56, 163, 1, // Opcode: VGTLZXNCvizm, DecodeIdx: 163 |
4175 | /* 14840 */ MCD::OPC_FilterValueOrFail, 1, |
4176 | /* 14842 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4177 | /* 14845 */ MCD::OPC_FilterValueOrFail, 0, |
4178 | /* 14847 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14858 |
4179 | /* 14853 */ MCD::OPC_Decode, 175, 56, 164, 1, // Opcode: VGTLZXNCvrz, DecodeIdx: 164 |
4180 | /* 14858 */ MCD::OPC_Decode, 181, 56, 165, 1, // Opcode: VGTLZXNCvrzm, DecodeIdx: 165 |
4181 | /* 14863 */ MCD::OPC_FilterValueOrFail, 1, |
4182 | /* 14865 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4183 | /* 14868 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14893 |
4184 | /* 14872 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4185 | /* 14875 */ MCD::OPC_FilterValueOrFail, 0, |
4186 | /* 14877 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14888 |
4187 | /* 14883 */ MCD::OPC_Decode, 139, 56, 166, 1, // Opcode: VGTLZXNCvir, DecodeIdx: 166 |
4188 | /* 14888 */ MCD::OPC_Decode, 145, 56, 167, 1, // Opcode: VGTLZXNCvirm, DecodeIdx: 167 |
4189 | /* 14893 */ MCD::OPC_FilterValueOrFail, 1, |
4190 | /* 14895 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4191 | /* 14898 */ MCD::OPC_FilterValueOrFail, 0, |
4192 | /* 14900 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14911 |
4193 | /* 14906 */ MCD::OPC_Decode, 163, 56, 168, 1, // Opcode: VGTLZXNCvrr, DecodeIdx: 168 |
4194 | /* 14911 */ MCD::OPC_Decode, 169, 56, 169, 1, // Opcode: VGTLZXNCvrrm, DecodeIdx: 169 |
4195 | /* 14916 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 15031 |
4196 | /* 14920 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4197 | /* 14923 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 14978 |
4198 | /* 14927 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4199 | /* 14930 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 14955 |
4200 | /* 14934 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4201 | /* 14937 */ MCD::OPC_FilterValueOrFail, 0, |
4202 | /* 14939 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14950 |
4203 | /* 14945 */ MCD::OPC_Decode, 231, 55, 170, 1, // Opcode: VGTLZXNCsiz, DecodeIdx: 170 |
4204 | /* 14950 */ MCD::OPC_Decode, 237, 55, 171, 1, // Opcode: VGTLZXNCsizm, DecodeIdx: 171 |
4205 | /* 14955 */ MCD::OPC_FilterValueOrFail, 1, |
4206 | /* 14957 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4207 | /* 14960 */ MCD::OPC_FilterValueOrFail, 0, |
4208 | /* 14962 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 14973 |
4209 | /* 14968 */ MCD::OPC_Decode, 255, 55, 172, 1, // Opcode: VGTLZXNCsrz, DecodeIdx: 172 |
4210 | /* 14973 */ MCD::OPC_Decode, 133, 56, 173, 1, // Opcode: VGTLZXNCsrzm, DecodeIdx: 173 |
4211 | /* 14978 */ MCD::OPC_FilterValueOrFail, 1, |
4212 | /* 14980 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4213 | /* 14983 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 15008 |
4214 | /* 14987 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4215 | /* 14990 */ MCD::OPC_FilterValueOrFail, 0, |
4216 | /* 14992 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15003 |
4217 | /* 14998 */ MCD::OPC_Decode, 219, 55, 174, 1, // Opcode: VGTLZXNCsir, DecodeIdx: 174 |
4218 | /* 15003 */ MCD::OPC_Decode, 225, 55, 175, 1, // Opcode: VGTLZXNCsirm, DecodeIdx: 175 |
4219 | /* 15008 */ MCD::OPC_FilterValueOrFail, 1, |
4220 | /* 15010 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4221 | /* 15013 */ MCD::OPC_FilterValueOrFail, 0, |
4222 | /* 15015 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15026 |
4223 | /* 15021 */ MCD::OPC_Decode, 243, 55, 176, 1, // Opcode: VGTLZXNCsrr, DecodeIdx: 176 |
4224 | /* 15026 */ MCD::OPC_Decode, 249, 55, 177, 1, // Opcode: VGTLZXNCsrrm, DecodeIdx: 177 |
4225 | /* 15031 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 15146 |
4226 | /* 15035 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4227 | /* 15038 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 15093 |
4228 | /* 15042 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4229 | /* 15045 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 15070 |
4230 | /* 15049 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4231 | /* 15052 */ MCD::OPC_FilterValueOrFail, 0, |
4232 | /* 15054 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15065 |
4233 | /* 15060 */ MCD::OPC_Decode, 247, 56, 162, 1, // Opcode: VGTLZXviz, DecodeIdx: 162 |
4234 | /* 15065 */ MCD::OPC_Decode, 253, 56, 163, 1, // Opcode: VGTLZXvizm, DecodeIdx: 163 |
4235 | /* 15070 */ MCD::OPC_FilterValueOrFail, 1, |
4236 | /* 15072 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4237 | /* 15075 */ MCD::OPC_FilterValueOrFail, 0, |
4238 | /* 15077 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15088 |
4239 | /* 15083 */ MCD::OPC_Decode, 143, 57, 164, 1, // Opcode: VGTLZXvrz, DecodeIdx: 164 |
4240 | /* 15088 */ MCD::OPC_Decode, 149, 57, 165, 1, // Opcode: VGTLZXvrzm, DecodeIdx: 165 |
4241 | /* 15093 */ MCD::OPC_FilterValueOrFail, 1, |
4242 | /* 15095 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4243 | /* 15098 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 15123 |
4244 | /* 15102 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4245 | /* 15105 */ MCD::OPC_FilterValueOrFail, 0, |
4246 | /* 15107 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15118 |
4247 | /* 15113 */ MCD::OPC_Decode, 235, 56, 166, 1, // Opcode: VGTLZXvir, DecodeIdx: 166 |
4248 | /* 15118 */ MCD::OPC_Decode, 241, 56, 167, 1, // Opcode: VGTLZXvirm, DecodeIdx: 167 |
4249 | /* 15123 */ MCD::OPC_FilterValueOrFail, 1, |
4250 | /* 15125 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4251 | /* 15128 */ MCD::OPC_FilterValueOrFail, 0, |
4252 | /* 15130 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15141 |
4253 | /* 15136 */ MCD::OPC_Decode, 131, 57, 168, 1, // Opcode: VGTLZXvrr, DecodeIdx: 168 |
4254 | /* 15141 */ MCD::OPC_Decode, 137, 57, 169, 1, // Opcode: VGTLZXvrrm, DecodeIdx: 169 |
4255 | /* 15146 */ MCD::OPC_FilterValueOrFail, 6, |
4256 | /* 15148 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4257 | /* 15151 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 15206 |
4258 | /* 15155 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4259 | /* 15158 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 15183 |
4260 | /* 15162 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4261 | /* 15165 */ MCD::OPC_FilterValueOrFail, 0, |
4262 | /* 15167 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15178 |
4263 | /* 15173 */ MCD::OPC_Decode, 199, 56, 170, 1, // Opcode: VGTLZXsiz, DecodeIdx: 170 |
4264 | /* 15178 */ MCD::OPC_Decode, 205, 56, 171, 1, // Opcode: VGTLZXsizm, DecodeIdx: 171 |
4265 | /* 15183 */ MCD::OPC_FilterValueOrFail, 1, |
4266 | /* 15185 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4267 | /* 15188 */ MCD::OPC_FilterValueOrFail, 0, |
4268 | /* 15190 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15201 |
4269 | /* 15196 */ MCD::OPC_Decode, 223, 56, 172, 1, // Opcode: VGTLZXsrz, DecodeIdx: 172 |
4270 | /* 15201 */ MCD::OPC_Decode, 229, 56, 173, 1, // Opcode: VGTLZXsrzm, DecodeIdx: 173 |
4271 | /* 15206 */ MCD::OPC_FilterValueOrFail, 1, |
4272 | /* 15208 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4273 | /* 15211 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 15236 |
4274 | /* 15215 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4275 | /* 15218 */ MCD::OPC_FilterValueOrFail, 0, |
4276 | /* 15220 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15231 |
4277 | /* 15226 */ MCD::OPC_Decode, 187, 56, 174, 1, // Opcode: VGTLZXsir, DecodeIdx: 174 |
4278 | /* 15231 */ MCD::OPC_Decode, 193, 56, 175, 1, // Opcode: VGTLZXsirm, DecodeIdx: 175 |
4279 | /* 15236 */ MCD::OPC_FilterValueOrFail, 1, |
4280 | /* 15238 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4281 | /* 15241 */ MCD::OPC_FilterValueOrFail, 0, |
4282 | /* 15243 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15254 |
4283 | /* 15249 */ MCD::OPC_Decode, 211, 56, 176, 1, // Opcode: VGTLZXsrr, DecodeIdx: 176 |
4284 | /* 15254 */ MCD::OPC_Decode, 217, 56, 177, 1, // Opcode: VGTLZXsrrm, DecodeIdx: 177 |
4285 | /* 15259 */ MCD::OPC_FilterValue, 200, 2, 13, 0, // Skip to: 15277 |
4286 | /* 15264 */ MCD::OPC_CheckFieldOrFail, 24, 24, 0, |
4287 | /* 15268 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
4288 | /* 15272 */ MCD::OPC_Decode, 251, 6, 178, 1, // Opcode: PCVMm, DecodeIdx: 178 |
4289 | /* 15277 */ MCD::OPC_FilterValue, 202, 2, 13, 0, // Skip to: 15295 |
4290 | /* 15282 */ MCD::OPC_CheckFieldOrFail, 24, 24, 0, |
4291 | /* 15286 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
4292 | /* 15290 */ MCD::OPC_Decode, 180, 6, 178, 1, // Opcode: LZVMm, DecodeIdx: 178 |
4293 | /* 15295 */ MCD::OPC_FilterValue, 204, 2, 13, 0, // Skip to: 15313 |
4294 | /* 15300 */ MCD::OPC_CheckFieldOrFail, 24, 24, 0, |
4295 | /* 15304 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
4296 | /* 15308 */ MCD::OPC_Decode, 188, 35, 178, 1, // Opcode: TOVMm, DecodeIdx: 178 |
4297 | /* 15313 */ MCD::OPC_FilterValue, 206, 2, 35, 0, // Skip to: 15353 |
4298 | /* 15318 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4299 | /* 15321 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 15338 |
4300 | /* 15325 */ MCD::OPC_CheckFieldOrFail, 16, 24, 0, |
4301 | /* 15329 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
4302 | /* 15333 */ MCD::OPC_Decode, 185, 35, 179, 1, // Opcode: SVMmi, DecodeIdx: 179 |
4303 | /* 15338 */ MCD::OPC_FilterValueOrFail, 1, |
4304 | /* 15340 */ MCD::OPC_CheckFieldOrFail, 16, 24, 0, |
4305 | /* 15344 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
4306 | /* 15348 */ MCD::OPC_Decode, 186, 35, 180, 1, // Opcode: SVMmr, DecodeIdx: 180 |
4307 | /* 15353 */ MCD::OPC_FilterValue, 208, 2, 31, 0, // Skip to: 15389 |
4308 | /* 15358 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
4309 | /* 15361 */ MCD::OPC_FilterValueOrFail, 0, |
4310 | /* 15363 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4311 | /* 15366 */ MCD::OPC_FilterValueOrFail, 0, |
4312 | /* 15368 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4313 | /* 15371 */ MCD::OPC_FilterValueOrFail, 0, |
4314 | /* 15373 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15384 |
4315 | /* 15379 */ MCD::OPC_Decode, 227, 39, 181, 1, // Opcode: VCVTLDv, DecodeIdx: 181 |
4316 | /* 15384 */ MCD::OPC_Decode, 233, 39, 182, 1, // Opcode: VCVTLDvm, DecodeIdx: 182 |
4317 | /* 15389 */ MCD::OPC_FilterValue, 212, 2, 29, 0, // Skip to: 15423 |
4318 | /* 15394 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4319 | /* 15397 */ MCD::OPC_FilterValueOrFail, 0, |
4320 | /* 15399 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4321 | /* 15402 */ MCD::OPC_FilterValueOrFail, 0, |
4322 | /* 15404 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4323 | /* 15407 */ MCD::OPC_FilterValueOrFail, 0, |
4324 | /* 15409 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15419 |
4325 | /* 15415 */ MCD::OPC_Decode, 175, 83, 119, // Opcode: VSUMLv, DecodeIdx: 119 |
4326 | /* 15419 */ MCD::OPC_Decode, 181, 83, 120, // Opcode: VSUMLvm, DecodeIdx: 120 |
4327 | /* 15423 */ MCD::OPC_FilterValue, 214, 2, 113, 0, // Skip to: 15541 |
4328 | /* 15428 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4329 | /* 15431 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 15459 |
4330 | /* 15435 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4331 | /* 15438 */ MCD::OPC_FilterValueOrFail, 0, |
4332 | /* 15440 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4333 | /* 15443 */ MCD::OPC_FilterValueOrFail, 0, |
4334 | /* 15445 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15455 |
4335 | /* 15451 */ MCD::OPC_Decode, 139, 68, 119, // Opcode: VRMAXSLFSTv, DecodeIdx: 119 |
4336 | /* 15455 */ MCD::OPC_Decode, 145, 68, 120, // Opcode: VRMAXSLFSTvm, DecodeIdx: 120 |
4337 | /* 15459 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 15487 |
4338 | /* 15463 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4339 | /* 15466 */ MCD::OPC_FilterValueOrFail, 0, |
4340 | /* 15468 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4341 | /* 15471 */ MCD::OPC_FilterValueOrFail, 0, |
4342 | /* 15473 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15483 |
4343 | /* 15479 */ MCD::OPC_Decode, 211, 68, 119, // Opcode: VRMINSLFSTv, DecodeIdx: 119 |
4344 | /* 15483 */ MCD::OPC_Decode, 217, 68, 120, // Opcode: VRMINSLFSTvm, DecodeIdx: 120 |
4345 | /* 15487 */ MCD::OPC_FilterValue, 2, 24, 0, // Skip to: 15515 |
4346 | /* 15491 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4347 | /* 15494 */ MCD::OPC_FilterValueOrFail, 0, |
4348 | /* 15496 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4349 | /* 15499 */ MCD::OPC_FilterValueOrFail, 0, |
4350 | /* 15501 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15511 |
4351 | /* 15507 */ MCD::OPC_Decode, 151, 68, 119, // Opcode: VRMAXSLLSTv, DecodeIdx: 119 |
4352 | /* 15511 */ MCD::OPC_Decode, 157, 68, 120, // Opcode: VRMAXSLLSTvm, DecodeIdx: 120 |
4353 | /* 15515 */ MCD::OPC_FilterValueOrFail, 3, |
4354 | /* 15517 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4355 | /* 15520 */ MCD::OPC_FilterValueOrFail, 0, |
4356 | /* 15522 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4357 | /* 15525 */ MCD::OPC_FilterValueOrFail, 0, |
4358 | /* 15527 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15537 |
4359 | /* 15533 */ MCD::OPC_Decode, 223, 68, 119, // Opcode: VRMINSLLSTv, DecodeIdx: 119 |
4360 | /* 15537 */ MCD::OPC_Decode, 229, 68, 120, // Opcode: VRMINSLLSTvm, DecodeIdx: 120 |
4361 | /* 15541 */ MCD::OPC_FilterValue, 216, 2, 71, 0, // Skip to: 15617 |
4362 | /* 15546 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4363 | /* 15549 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 15584 |
4364 | /* 15553 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
4365 | /* 15556 */ MCD::OPC_FilterValueOrFail, 0, |
4366 | /* 15558 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4367 | /* 15561 */ MCD::OPC_FilterValueOrFail, 0, |
4368 | /* 15563 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4369 | /* 15566 */ MCD::OPC_FilterValueOrFail, 0, |
4370 | /* 15568 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15579 |
4371 | /* 15574 */ MCD::OPC_Decode, 219, 67, 142, 1, // Opcode: VPCNTv, DecodeIdx: 142 |
4372 | /* 15579 */ MCD::OPC_Decode, 225, 67, 143, 1, // Opcode: VPCNTvm, DecodeIdx: 143 |
4373 | /* 15584 */ MCD::OPC_FilterValueOrFail, 4, |
4374 | /* 15586 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
4375 | /* 15589 */ MCD::OPC_FilterValueOrFail, 0, |
4376 | /* 15591 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4377 | /* 15594 */ MCD::OPC_FilterValueOrFail, 0, |
4378 | /* 15596 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4379 | /* 15599 */ MCD::OPC_FilterValueOrFail, 0, |
4380 | /* 15601 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15612 |
4381 | /* 15607 */ MCD::OPC_Decode, 174, 27, 142, 1, // Opcode: PVPCNTLOv, DecodeIdx: 142 |
4382 | /* 15612 */ MCD::OPC_Decode, 180, 27, 143, 1, // Opcode: PVPCNTLOvm, DecodeIdx: 143 |
4383 | /* 15617 */ MCD::OPC_FilterValue, 217, 2, 71, 0, // Skip to: 15693 |
4384 | /* 15622 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4385 | /* 15625 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 15660 |
4386 | /* 15629 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
4387 | /* 15632 */ MCD::OPC_FilterValueOrFail, 0, |
4388 | /* 15634 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4389 | /* 15637 */ MCD::OPC_FilterValueOrFail, 0, |
4390 | /* 15639 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4391 | /* 15642 */ MCD::OPC_FilterValueOrFail, 0, |
4392 | /* 15644 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15655 |
4393 | /* 15650 */ MCD::OPC_Decode, 186, 27, 142, 1, // Opcode: PVPCNTUPv, DecodeIdx: 142 |
4394 | /* 15655 */ MCD::OPC_Decode, 192, 27, 143, 1, // Opcode: PVPCNTUPvm, DecodeIdx: 143 |
4395 | /* 15660 */ MCD::OPC_FilterValueOrFail, 4, |
4396 | /* 15662 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
4397 | /* 15665 */ MCD::OPC_FilterValueOrFail, 0, |
4398 | /* 15667 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
4399 | /* 15670 */ MCD::OPC_FilterValueOrFail, 0, |
4400 | /* 15672 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4401 | /* 15675 */ MCD::OPC_FilterValueOrFail, 0, |
4402 | /* 15677 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 15688 |
4403 | /* 15683 */ MCD::OPC_Decode, 198, 27, 142, 1, // Opcode: PVPCNTv, DecodeIdx: 142 |
4404 | /* 15688 */ MCD::OPC_Decode, 204, 27, 183, 1, // Opcode: PVPCNTvm, DecodeIdx: 183 |
4405 | /* 15693 */ MCD::OPC_FilterValue, 218, 2, 113, 0, // Skip to: 15811 |
4406 | /* 15698 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4407 | /* 15701 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 15729 |
4408 | /* 15705 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4409 | /* 15708 */ MCD::OPC_FilterValueOrFail, 0, |
4410 | /* 15710 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4411 | /* 15713 */ MCD::OPC_FilterValueOrFail, 0, |
4412 | /* 15715 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15725 |
4413 | /* 15721 */ MCD::OPC_Decode, 195, 52, 119, // Opcode: VFRMAXDFSTv, DecodeIdx: 119 |
4414 | /* 15725 */ MCD::OPC_Decode, 201, 52, 120, // Opcode: VFRMAXDFSTvm, DecodeIdx: 120 |
4415 | /* 15729 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 15757 |
4416 | /* 15733 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4417 | /* 15736 */ MCD::OPC_FilterValueOrFail, 0, |
4418 | /* 15738 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4419 | /* 15741 */ MCD::OPC_FilterValueOrFail, 0, |
4420 | /* 15743 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15753 |
4421 | /* 15749 */ MCD::OPC_Decode, 243, 52, 119, // Opcode: VFRMINDFSTv, DecodeIdx: 119 |
4422 | /* 15753 */ MCD::OPC_Decode, 249, 52, 120, // Opcode: VFRMINDFSTvm, DecodeIdx: 120 |
4423 | /* 15757 */ MCD::OPC_FilterValue, 2, 24, 0, // Skip to: 15785 |
4424 | /* 15761 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4425 | /* 15764 */ MCD::OPC_FilterValueOrFail, 0, |
4426 | /* 15766 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4427 | /* 15769 */ MCD::OPC_FilterValueOrFail, 0, |
4428 | /* 15771 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15781 |
4429 | /* 15777 */ MCD::OPC_Decode, 207, 52, 119, // Opcode: VFRMAXDLSTv, DecodeIdx: 119 |
4430 | /* 15781 */ MCD::OPC_Decode, 213, 52, 120, // Opcode: VFRMAXDLSTvm, DecodeIdx: 120 |
4431 | /* 15785 */ MCD::OPC_FilterValueOrFail, 3, |
4432 | /* 15787 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4433 | /* 15790 */ MCD::OPC_FilterValueOrFail, 0, |
4434 | /* 15792 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4435 | /* 15795 */ MCD::OPC_FilterValueOrFail, 0, |
4436 | /* 15797 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15807 |
4437 | /* 15803 */ MCD::OPC_Decode, 255, 52, 119, // Opcode: VFRMINDLSTv, DecodeIdx: 119 |
4438 | /* 15807 */ MCD::OPC_Decode, 133, 53, 120, // Opcode: VFRMINDLSTvm, DecodeIdx: 120 |
4439 | /* 15811 */ MCD::OPC_FilterValue, 219, 2, 113, 0, // Skip to: 15929 |
4440 | /* 15816 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4441 | /* 15819 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 15847 |
4442 | /* 15823 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4443 | /* 15826 */ MCD::OPC_FilterValueOrFail, 0, |
4444 | /* 15828 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4445 | /* 15831 */ MCD::OPC_FilterValueOrFail, 0, |
4446 | /* 15833 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15843 |
4447 | /* 15839 */ MCD::OPC_Decode, 219, 52, 119, // Opcode: VFRMAXSFSTv, DecodeIdx: 119 |
4448 | /* 15843 */ MCD::OPC_Decode, 225, 52, 120, // Opcode: VFRMAXSFSTvm, DecodeIdx: 120 |
4449 | /* 15847 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 15875 |
4450 | /* 15851 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4451 | /* 15854 */ MCD::OPC_FilterValueOrFail, 0, |
4452 | /* 15856 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4453 | /* 15859 */ MCD::OPC_FilterValueOrFail, 0, |
4454 | /* 15861 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15871 |
4455 | /* 15867 */ MCD::OPC_Decode, 139, 53, 119, // Opcode: VFRMINSFSTv, DecodeIdx: 119 |
4456 | /* 15871 */ MCD::OPC_Decode, 145, 53, 120, // Opcode: VFRMINSFSTvm, DecodeIdx: 120 |
4457 | /* 15875 */ MCD::OPC_FilterValue, 2, 24, 0, // Skip to: 15903 |
4458 | /* 15879 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4459 | /* 15882 */ MCD::OPC_FilterValueOrFail, 0, |
4460 | /* 15884 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4461 | /* 15887 */ MCD::OPC_FilterValueOrFail, 0, |
4462 | /* 15889 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15899 |
4463 | /* 15895 */ MCD::OPC_Decode, 231, 52, 119, // Opcode: VFRMAXSLSTv, DecodeIdx: 119 |
4464 | /* 15899 */ MCD::OPC_Decode, 237, 52, 120, // Opcode: VFRMAXSLSTvm, DecodeIdx: 120 |
4465 | /* 15903 */ MCD::OPC_FilterValueOrFail, 3, |
4466 | /* 15905 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4467 | /* 15908 */ MCD::OPC_FilterValueOrFail, 0, |
4468 | /* 15910 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
4469 | /* 15913 */ MCD::OPC_FilterValueOrFail, 0, |
4470 | /* 15915 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 15925 |
4471 | /* 15921 */ MCD::OPC_Decode, 151, 53, 119, // Opcode: VFRMINSLSTv, DecodeIdx: 119 |
4472 | /* 15925 */ MCD::OPC_Decode, 157, 53, 120, // Opcode: VFRMINSLSTvm, DecodeIdx: 120 |
4473 | /* 15929 */ MCD::OPC_FilterValue, 222, 2, 25, 0, // Skip to: 15959 |
4474 | /* 15934 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
4475 | /* 15937 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 15949 |
4476 | /* 15941 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
4477 | /* 15945 */ MCD::OPC_Decode, 166, 6, 95, // Opcode: LVIXi, DecodeIdx: 95 |
4478 | /* 15949 */ MCD::OPC_FilterValueOrFail, 1, |
4479 | /* 15951 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
4480 | /* 15955 */ MCD::OPC_Decode, 167, 6, 42, // Opcode: LVIXr, DecodeIdx: 42 |
4481 | /* 15959 */ MCD::OPC_FilterValue, 226, 2, 205, 1, // Skip to: 16425 |
4482 | /* 15964 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4483 | /* 15967 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 16082 |
4484 | /* 15971 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4485 | /* 15974 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16029 |
4486 | /* 15978 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4487 | /* 15981 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16006 |
4488 | /* 15985 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4489 | /* 15988 */ MCD::OPC_FilterValueOrFail, 0, |
4490 | /* 15990 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16001 |
4491 | /* 15996 */ MCD::OPC_Decode, 241, 71, 184, 1, // Opcode: VSCNCvizv, DecodeIdx: 184 |
4492 | /* 16001 */ MCD::OPC_Decode, 244, 71, 185, 1, // Opcode: VSCNCvizvm, DecodeIdx: 185 |
4493 | /* 16006 */ MCD::OPC_FilterValueOrFail, 1, |
4494 | /* 16008 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4495 | /* 16011 */ MCD::OPC_FilterValueOrFail, 0, |
4496 | /* 16013 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16024 |
4497 | /* 16019 */ MCD::OPC_Decode, 253, 71, 186, 1, // Opcode: VSCNCvrzv, DecodeIdx: 186 |
4498 | /* 16024 */ MCD::OPC_Decode, 128, 72, 187, 1, // Opcode: VSCNCvrzvm, DecodeIdx: 187 |
4499 | /* 16029 */ MCD::OPC_FilterValueOrFail, 1, |
4500 | /* 16031 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4501 | /* 16034 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16059 |
4502 | /* 16038 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4503 | /* 16041 */ MCD::OPC_FilterValueOrFail, 0, |
4504 | /* 16043 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16054 |
4505 | /* 16049 */ MCD::OPC_Decode, 235, 71, 188, 1, // Opcode: VSCNCvirv, DecodeIdx: 188 |
4506 | /* 16054 */ MCD::OPC_Decode, 238, 71, 189, 1, // Opcode: VSCNCvirvm, DecodeIdx: 189 |
4507 | /* 16059 */ MCD::OPC_FilterValueOrFail, 1, |
4508 | /* 16061 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4509 | /* 16064 */ MCD::OPC_FilterValueOrFail, 0, |
4510 | /* 16066 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16077 |
4511 | /* 16072 */ MCD::OPC_Decode, 247, 71, 190, 1, // Opcode: VSCNCvrrv, DecodeIdx: 190 |
4512 | /* 16077 */ MCD::OPC_Decode, 250, 71, 191, 1, // Opcode: VSCNCvrrvm, DecodeIdx: 191 |
4513 | /* 16082 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 16197 |
4514 | /* 16086 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4515 | /* 16089 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16144 |
4516 | /* 16093 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4517 | /* 16096 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16121 |
4518 | /* 16100 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4519 | /* 16103 */ MCD::OPC_FilterValueOrFail, 0, |
4520 | /* 16105 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16116 |
4521 | /* 16111 */ MCD::OPC_Decode, 217, 71, 192, 1, // Opcode: VSCNCsizv, DecodeIdx: 192 |
4522 | /* 16116 */ MCD::OPC_Decode, 220, 71, 193, 1, // Opcode: VSCNCsizvm, DecodeIdx: 193 |
4523 | /* 16121 */ MCD::OPC_FilterValueOrFail, 1, |
4524 | /* 16123 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4525 | /* 16126 */ MCD::OPC_FilterValueOrFail, 0, |
4526 | /* 16128 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16139 |
4527 | /* 16134 */ MCD::OPC_Decode, 229, 71, 194, 1, // Opcode: VSCNCsrzv, DecodeIdx: 194 |
4528 | /* 16139 */ MCD::OPC_Decode, 232, 71, 195, 1, // Opcode: VSCNCsrzvm, DecodeIdx: 195 |
4529 | /* 16144 */ MCD::OPC_FilterValueOrFail, 1, |
4530 | /* 16146 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4531 | /* 16149 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16174 |
4532 | /* 16153 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4533 | /* 16156 */ MCD::OPC_FilterValueOrFail, 0, |
4534 | /* 16158 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16169 |
4535 | /* 16164 */ MCD::OPC_Decode, 211, 71, 196, 1, // Opcode: VSCNCsirv, DecodeIdx: 196 |
4536 | /* 16169 */ MCD::OPC_Decode, 214, 71, 197, 1, // Opcode: VSCNCsirvm, DecodeIdx: 197 |
4537 | /* 16174 */ MCD::OPC_FilterValueOrFail, 1, |
4538 | /* 16176 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4539 | /* 16179 */ MCD::OPC_FilterValueOrFail, 0, |
4540 | /* 16181 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16192 |
4541 | /* 16187 */ MCD::OPC_Decode, 223, 71, 198, 1, // Opcode: VSCNCsrrv, DecodeIdx: 198 |
4542 | /* 16192 */ MCD::OPC_Decode, 226, 71, 199, 1, // Opcode: VSCNCsrrvm, DecodeIdx: 199 |
4543 | /* 16197 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 16312 |
4544 | /* 16201 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4545 | /* 16204 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16259 |
4546 | /* 16208 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4547 | /* 16211 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16236 |
4548 | /* 16215 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4549 | /* 16218 */ MCD::OPC_FilterValueOrFail, 0, |
4550 | /* 16220 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16231 |
4551 | /* 16226 */ MCD::OPC_Decode, 145, 74, 184, 1, // Opcode: VSCvizv, DecodeIdx: 184 |
4552 | /* 16231 */ MCD::OPC_Decode, 148, 74, 185, 1, // Opcode: VSCvizvm, DecodeIdx: 185 |
4553 | /* 16236 */ MCD::OPC_FilterValueOrFail, 1, |
4554 | /* 16238 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4555 | /* 16241 */ MCD::OPC_FilterValueOrFail, 0, |
4556 | /* 16243 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16254 |
4557 | /* 16249 */ MCD::OPC_Decode, 157, 74, 186, 1, // Opcode: VSCvrzv, DecodeIdx: 186 |
4558 | /* 16254 */ MCD::OPC_Decode, 160, 74, 187, 1, // Opcode: VSCvrzvm, DecodeIdx: 187 |
4559 | /* 16259 */ MCD::OPC_FilterValueOrFail, 1, |
4560 | /* 16261 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4561 | /* 16264 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16289 |
4562 | /* 16268 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4563 | /* 16271 */ MCD::OPC_FilterValueOrFail, 0, |
4564 | /* 16273 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16284 |
4565 | /* 16279 */ MCD::OPC_Decode, 139, 74, 188, 1, // Opcode: VSCvirv, DecodeIdx: 188 |
4566 | /* 16284 */ MCD::OPC_Decode, 142, 74, 189, 1, // Opcode: VSCvirvm, DecodeIdx: 189 |
4567 | /* 16289 */ MCD::OPC_FilterValueOrFail, 1, |
4568 | /* 16291 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4569 | /* 16294 */ MCD::OPC_FilterValueOrFail, 0, |
4570 | /* 16296 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16307 |
4571 | /* 16302 */ MCD::OPC_Decode, 151, 74, 190, 1, // Opcode: VSCvrrv, DecodeIdx: 190 |
4572 | /* 16307 */ MCD::OPC_Decode, 154, 74, 191, 1, // Opcode: VSCvrrvm, DecodeIdx: 191 |
4573 | /* 16312 */ MCD::OPC_FilterValueOrFail, 6, |
4574 | /* 16314 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4575 | /* 16317 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16372 |
4576 | /* 16321 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4577 | /* 16324 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16349 |
4578 | /* 16328 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4579 | /* 16331 */ MCD::OPC_FilterValueOrFail, 0, |
4580 | /* 16333 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16344 |
4581 | /* 16339 */ MCD::OPC_Decode, 249, 73, 192, 1, // Opcode: VSCsizv, DecodeIdx: 192 |
4582 | /* 16344 */ MCD::OPC_Decode, 252, 73, 193, 1, // Opcode: VSCsizvm, DecodeIdx: 193 |
4583 | /* 16349 */ MCD::OPC_FilterValueOrFail, 1, |
4584 | /* 16351 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4585 | /* 16354 */ MCD::OPC_FilterValueOrFail, 0, |
4586 | /* 16356 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16367 |
4587 | /* 16362 */ MCD::OPC_Decode, 133, 74, 194, 1, // Opcode: VSCsrzv, DecodeIdx: 194 |
4588 | /* 16367 */ MCD::OPC_Decode, 136, 74, 195, 1, // Opcode: VSCsrzvm, DecodeIdx: 195 |
4589 | /* 16372 */ MCD::OPC_FilterValueOrFail, 1, |
4590 | /* 16374 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4591 | /* 16377 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16402 |
4592 | /* 16381 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4593 | /* 16384 */ MCD::OPC_FilterValueOrFail, 0, |
4594 | /* 16386 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16397 |
4595 | /* 16392 */ MCD::OPC_Decode, 243, 73, 196, 1, // Opcode: VSCsirv, DecodeIdx: 196 |
4596 | /* 16397 */ MCD::OPC_Decode, 246, 73, 197, 1, // Opcode: VSCsirvm, DecodeIdx: 197 |
4597 | /* 16402 */ MCD::OPC_FilterValueOrFail, 1, |
4598 | /* 16404 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4599 | /* 16407 */ MCD::OPC_FilterValueOrFail, 0, |
4600 | /* 16409 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16420 |
4601 | /* 16415 */ MCD::OPC_Decode, 255, 73, 198, 1, // Opcode: VSCsrrv, DecodeIdx: 198 |
4602 | /* 16420 */ MCD::OPC_Decode, 130, 74, 199, 1, // Opcode: VSCsrrvm, DecodeIdx: 199 |
4603 | /* 16425 */ MCD::OPC_FilterValue, 227, 2, 205, 1, // Skip to: 16891 |
4604 | /* 16430 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4605 | /* 16433 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 16548 |
4606 | /* 16437 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4607 | /* 16440 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16495 |
4608 | /* 16444 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4609 | /* 16447 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16472 |
4610 | /* 16451 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4611 | /* 16454 */ MCD::OPC_FilterValueOrFail, 0, |
4612 | /* 16456 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16467 |
4613 | /* 16462 */ MCD::OPC_Decode, 193, 71, 184, 1, // Opcode: VSCNCOTvizv, DecodeIdx: 184 |
4614 | /* 16467 */ MCD::OPC_Decode, 196, 71, 185, 1, // Opcode: VSCNCOTvizvm, DecodeIdx: 185 |
4615 | /* 16472 */ MCD::OPC_FilterValueOrFail, 1, |
4616 | /* 16474 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4617 | /* 16477 */ MCD::OPC_FilterValueOrFail, 0, |
4618 | /* 16479 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16490 |
4619 | /* 16485 */ MCD::OPC_Decode, 205, 71, 186, 1, // Opcode: VSCNCOTvrzv, DecodeIdx: 186 |
4620 | /* 16490 */ MCD::OPC_Decode, 208, 71, 187, 1, // Opcode: VSCNCOTvrzvm, DecodeIdx: 187 |
4621 | /* 16495 */ MCD::OPC_FilterValueOrFail, 1, |
4622 | /* 16497 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4623 | /* 16500 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16525 |
4624 | /* 16504 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4625 | /* 16507 */ MCD::OPC_FilterValueOrFail, 0, |
4626 | /* 16509 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16520 |
4627 | /* 16515 */ MCD::OPC_Decode, 187, 71, 188, 1, // Opcode: VSCNCOTvirv, DecodeIdx: 188 |
4628 | /* 16520 */ MCD::OPC_Decode, 190, 71, 189, 1, // Opcode: VSCNCOTvirvm, DecodeIdx: 189 |
4629 | /* 16525 */ MCD::OPC_FilterValueOrFail, 1, |
4630 | /* 16527 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4631 | /* 16530 */ MCD::OPC_FilterValueOrFail, 0, |
4632 | /* 16532 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16543 |
4633 | /* 16538 */ MCD::OPC_Decode, 199, 71, 190, 1, // Opcode: VSCNCOTvrrv, DecodeIdx: 190 |
4634 | /* 16543 */ MCD::OPC_Decode, 202, 71, 191, 1, // Opcode: VSCNCOTvrrvm, DecodeIdx: 191 |
4635 | /* 16548 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 16663 |
4636 | /* 16552 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4637 | /* 16555 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16610 |
4638 | /* 16559 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4639 | /* 16562 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16587 |
4640 | /* 16566 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4641 | /* 16569 */ MCD::OPC_FilterValueOrFail, 0, |
4642 | /* 16571 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16582 |
4643 | /* 16577 */ MCD::OPC_Decode, 169, 71, 192, 1, // Opcode: VSCNCOTsizv, DecodeIdx: 192 |
4644 | /* 16582 */ MCD::OPC_Decode, 172, 71, 193, 1, // Opcode: VSCNCOTsizvm, DecodeIdx: 193 |
4645 | /* 16587 */ MCD::OPC_FilterValueOrFail, 1, |
4646 | /* 16589 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4647 | /* 16592 */ MCD::OPC_FilterValueOrFail, 0, |
4648 | /* 16594 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16605 |
4649 | /* 16600 */ MCD::OPC_Decode, 181, 71, 194, 1, // Opcode: VSCNCOTsrzv, DecodeIdx: 194 |
4650 | /* 16605 */ MCD::OPC_Decode, 184, 71, 195, 1, // Opcode: VSCNCOTsrzvm, DecodeIdx: 195 |
4651 | /* 16610 */ MCD::OPC_FilterValueOrFail, 1, |
4652 | /* 16612 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4653 | /* 16615 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16640 |
4654 | /* 16619 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4655 | /* 16622 */ MCD::OPC_FilterValueOrFail, 0, |
4656 | /* 16624 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16635 |
4657 | /* 16630 */ MCD::OPC_Decode, 163, 71, 196, 1, // Opcode: VSCNCOTsirv, DecodeIdx: 196 |
4658 | /* 16635 */ MCD::OPC_Decode, 166, 71, 197, 1, // Opcode: VSCNCOTsirvm, DecodeIdx: 197 |
4659 | /* 16640 */ MCD::OPC_FilterValueOrFail, 1, |
4660 | /* 16642 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4661 | /* 16645 */ MCD::OPC_FilterValueOrFail, 0, |
4662 | /* 16647 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16658 |
4663 | /* 16653 */ MCD::OPC_Decode, 175, 71, 198, 1, // Opcode: VSCNCOTsrrv, DecodeIdx: 198 |
4664 | /* 16658 */ MCD::OPC_Decode, 178, 71, 199, 1, // Opcode: VSCNCOTsrrvm, DecodeIdx: 199 |
4665 | /* 16663 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 16778 |
4666 | /* 16667 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4667 | /* 16670 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16725 |
4668 | /* 16674 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4669 | /* 16677 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16702 |
4670 | /* 16681 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4671 | /* 16684 */ MCD::OPC_FilterValueOrFail, 0, |
4672 | /* 16686 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16697 |
4673 | /* 16692 */ MCD::OPC_Decode, 161, 72, 184, 1, // Opcode: VSCOTvizv, DecodeIdx: 184 |
4674 | /* 16697 */ MCD::OPC_Decode, 164, 72, 185, 1, // Opcode: VSCOTvizvm, DecodeIdx: 185 |
4675 | /* 16702 */ MCD::OPC_FilterValueOrFail, 1, |
4676 | /* 16704 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4677 | /* 16707 */ MCD::OPC_FilterValueOrFail, 0, |
4678 | /* 16709 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16720 |
4679 | /* 16715 */ MCD::OPC_Decode, 173, 72, 186, 1, // Opcode: VSCOTvrzv, DecodeIdx: 186 |
4680 | /* 16720 */ MCD::OPC_Decode, 176, 72, 187, 1, // Opcode: VSCOTvrzvm, DecodeIdx: 187 |
4681 | /* 16725 */ MCD::OPC_FilterValueOrFail, 1, |
4682 | /* 16727 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4683 | /* 16730 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16755 |
4684 | /* 16734 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4685 | /* 16737 */ MCD::OPC_FilterValueOrFail, 0, |
4686 | /* 16739 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16750 |
4687 | /* 16745 */ MCD::OPC_Decode, 155, 72, 188, 1, // Opcode: VSCOTvirv, DecodeIdx: 188 |
4688 | /* 16750 */ MCD::OPC_Decode, 158, 72, 189, 1, // Opcode: VSCOTvirvm, DecodeIdx: 189 |
4689 | /* 16755 */ MCD::OPC_FilterValueOrFail, 1, |
4690 | /* 16757 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4691 | /* 16760 */ MCD::OPC_FilterValueOrFail, 0, |
4692 | /* 16762 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16773 |
4693 | /* 16768 */ MCD::OPC_Decode, 167, 72, 190, 1, // Opcode: VSCOTvrrv, DecodeIdx: 190 |
4694 | /* 16773 */ MCD::OPC_Decode, 170, 72, 191, 1, // Opcode: VSCOTvrrvm, DecodeIdx: 191 |
4695 | /* 16778 */ MCD::OPC_FilterValueOrFail, 6, |
4696 | /* 16780 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4697 | /* 16783 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16838 |
4698 | /* 16787 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4699 | /* 16790 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16815 |
4700 | /* 16794 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4701 | /* 16797 */ MCD::OPC_FilterValueOrFail, 0, |
4702 | /* 16799 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16810 |
4703 | /* 16805 */ MCD::OPC_Decode, 137, 72, 192, 1, // Opcode: VSCOTsizv, DecodeIdx: 192 |
4704 | /* 16810 */ MCD::OPC_Decode, 140, 72, 193, 1, // Opcode: VSCOTsizvm, DecodeIdx: 193 |
4705 | /* 16815 */ MCD::OPC_FilterValueOrFail, 1, |
4706 | /* 16817 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4707 | /* 16820 */ MCD::OPC_FilterValueOrFail, 0, |
4708 | /* 16822 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16833 |
4709 | /* 16828 */ MCD::OPC_Decode, 149, 72, 194, 1, // Opcode: VSCOTsrzv, DecodeIdx: 194 |
4710 | /* 16833 */ MCD::OPC_Decode, 152, 72, 195, 1, // Opcode: VSCOTsrzvm, DecodeIdx: 195 |
4711 | /* 16838 */ MCD::OPC_FilterValueOrFail, 1, |
4712 | /* 16840 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4713 | /* 16843 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16868 |
4714 | /* 16847 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4715 | /* 16850 */ MCD::OPC_FilterValueOrFail, 0, |
4716 | /* 16852 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16863 |
4717 | /* 16858 */ MCD::OPC_Decode, 131, 72, 196, 1, // Opcode: VSCOTsirv, DecodeIdx: 196 |
4718 | /* 16863 */ MCD::OPC_Decode, 134, 72, 197, 1, // Opcode: VSCOTsirvm, DecodeIdx: 197 |
4719 | /* 16868 */ MCD::OPC_FilterValueOrFail, 1, |
4720 | /* 16870 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4721 | /* 16873 */ MCD::OPC_FilterValueOrFail, 0, |
4722 | /* 16875 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16886 |
4723 | /* 16881 */ MCD::OPC_Decode, 143, 72, 198, 1, // Opcode: VSCOTsrrv, DecodeIdx: 198 |
4724 | /* 16886 */ MCD::OPC_Decode, 146, 72, 199, 1, // Opcode: VSCOTsrrvm, DecodeIdx: 199 |
4725 | /* 16891 */ MCD::OPC_FilterValue, 228, 2, 205, 1, // Skip to: 17357 |
4726 | /* 16896 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4727 | /* 16899 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 17014 |
4728 | /* 16903 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4729 | /* 16906 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 16961 |
4730 | /* 16910 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4731 | /* 16913 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16938 |
4732 | /* 16917 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4733 | /* 16920 */ MCD::OPC_FilterValueOrFail, 0, |
4734 | /* 16922 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16933 |
4735 | /* 16928 */ MCD::OPC_Decode, 129, 73, 184, 1, // Opcode: VSCUNCvizv, DecodeIdx: 184 |
4736 | /* 16933 */ MCD::OPC_Decode, 132, 73, 185, 1, // Opcode: VSCUNCvizvm, DecodeIdx: 185 |
4737 | /* 16938 */ MCD::OPC_FilterValueOrFail, 1, |
4738 | /* 16940 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4739 | /* 16943 */ MCD::OPC_FilterValueOrFail, 0, |
4740 | /* 16945 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16956 |
4741 | /* 16951 */ MCD::OPC_Decode, 141, 73, 186, 1, // Opcode: VSCUNCvrzv, DecodeIdx: 186 |
4742 | /* 16956 */ MCD::OPC_Decode, 144, 73, 187, 1, // Opcode: VSCUNCvrzvm, DecodeIdx: 187 |
4743 | /* 16961 */ MCD::OPC_FilterValueOrFail, 1, |
4744 | /* 16963 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4745 | /* 16966 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 16991 |
4746 | /* 16970 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4747 | /* 16973 */ MCD::OPC_FilterValueOrFail, 0, |
4748 | /* 16975 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 16986 |
4749 | /* 16981 */ MCD::OPC_Decode, 251, 72, 188, 1, // Opcode: VSCUNCvirv, DecodeIdx: 188 |
4750 | /* 16986 */ MCD::OPC_Decode, 254, 72, 189, 1, // Opcode: VSCUNCvirvm, DecodeIdx: 189 |
4751 | /* 16991 */ MCD::OPC_FilterValueOrFail, 1, |
4752 | /* 16993 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4753 | /* 16996 */ MCD::OPC_FilterValueOrFail, 0, |
4754 | /* 16998 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17009 |
4755 | /* 17004 */ MCD::OPC_Decode, 135, 73, 190, 1, // Opcode: VSCUNCvrrv, DecodeIdx: 190 |
4756 | /* 17009 */ MCD::OPC_Decode, 138, 73, 191, 1, // Opcode: VSCUNCvrrvm, DecodeIdx: 191 |
4757 | /* 17014 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 17129 |
4758 | /* 17018 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4759 | /* 17021 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17076 |
4760 | /* 17025 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4761 | /* 17028 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17053 |
4762 | /* 17032 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4763 | /* 17035 */ MCD::OPC_FilterValueOrFail, 0, |
4764 | /* 17037 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17048 |
4765 | /* 17043 */ MCD::OPC_Decode, 233, 72, 192, 1, // Opcode: VSCUNCsizv, DecodeIdx: 192 |
4766 | /* 17048 */ MCD::OPC_Decode, 236, 72, 193, 1, // Opcode: VSCUNCsizvm, DecodeIdx: 193 |
4767 | /* 17053 */ MCD::OPC_FilterValueOrFail, 1, |
4768 | /* 17055 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4769 | /* 17058 */ MCD::OPC_FilterValueOrFail, 0, |
4770 | /* 17060 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17071 |
4771 | /* 17066 */ MCD::OPC_Decode, 245, 72, 194, 1, // Opcode: VSCUNCsrzv, DecodeIdx: 194 |
4772 | /* 17071 */ MCD::OPC_Decode, 248, 72, 195, 1, // Opcode: VSCUNCsrzvm, DecodeIdx: 195 |
4773 | /* 17076 */ MCD::OPC_FilterValueOrFail, 1, |
4774 | /* 17078 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4775 | /* 17081 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17106 |
4776 | /* 17085 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4777 | /* 17088 */ MCD::OPC_FilterValueOrFail, 0, |
4778 | /* 17090 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17101 |
4779 | /* 17096 */ MCD::OPC_Decode, 227, 72, 196, 1, // Opcode: VSCUNCsirv, DecodeIdx: 196 |
4780 | /* 17101 */ MCD::OPC_Decode, 230, 72, 197, 1, // Opcode: VSCUNCsirvm, DecodeIdx: 197 |
4781 | /* 17106 */ MCD::OPC_FilterValueOrFail, 1, |
4782 | /* 17108 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4783 | /* 17111 */ MCD::OPC_FilterValueOrFail, 0, |
4784 | /* 17113 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17124 |
4785 | /* 17119 */ MCD::OPC_Decode, 239, 72, 198, 1, // Opcode: VSCUNCsrrv, DecodeIdx: 198 |
4786 | /* 17124 */ MCD::OPC_Decode, 242, 72, 199, 1, // Opcode: VSCUNCsrrvm, DecodeIdx: 199 |
4787 | /* 17129 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 17244 |
4788 | /* 17133 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4789 | /* 17136 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17191 |
4790 | /* 17140 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4791 | /* 17143 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17168 |
4792 | /* 17147 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4793 | /* 17150 */ MCD::OPC_FilterValueOrFail, 0, |
4794 | /* 17152 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17163 |
4795 | /* 17158 */ MCD::OPC_Decode, 225, 73, 184, 1, // Opcode: VSCUvizv, DecodeIdx: 184 |
4796 | /* 17163 */ MCD::OPC_Decode, 228, 73, 185, 1, // Opcode: VSCUvizvm, DecodeIdx: 185 |
4797 | /* 17168 */ MCD::OPC_FilterValueOrFail, 1, |
4798 | /* 17170 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4799 | /* 17173 */ MCD::OPC_FilterValueOrFail, 0, |
4800 | /* 17175 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17186 |
4801 | /* 17181 */ MCD::OPC_Decode, 237, 73, 186, 1, // Opcode: VSCUvrzv, DecodeIdx: 186 |
4802 | /* 17186 */ MCD::OPC_Decode, 240, 73, 187, 1, // Opcode: VSCUvrzvm, DecodeIdx: 187 |
4803 | /* 17191 */ MCD::OPC_FilterValueOrFail, 1, |
4804 | /* 17193 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4805 | /* 17196 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17221 |
4806 | /* 17200 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4807 | /* 17203 */ MCD::OPC_FilterValueOrFail, 0, |
4808 | /* 17205 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17216 |
4809 | /* 17211 */ MCD::OPC_Decode, 219, 73, 188, 1, // Opcode: VSCUvirv, DecodeIdx: 188 |
4810 | /* 17216 */ MCD::OPC_Decode, 222, 73, 189, 1, // Opcode: VSCUvirvm, DecodeIdx: 189 |
4811 | /* 17221 */ MCD::OPC_FilterValueOrFail, 1, |
4812 | /* 17223 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4813 | /* 17226 */ MCD::OPC_FilterValueOrFail, 0, |
4814 | /* 17228 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17239 |
4815 | /* 17234 */ MCD::OPC_Decode, 231, 73, 190, 1, // Opcode: VSCUvrrv, DecodeIdx: 190 |
4816 | /* 17239 */ MCD::OPC_Decode, 234, 73, 191, 1, // Opcode: VSCUvrrvm, DecodeIdx: 191 |
4817 | /* 17244 */ MCD::OPC_FilterValueOrFail, 6, |
4818 | /* 17246 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4819 | /* 17249 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17304 |
4820 | /* 17253 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4821 | /* 17256 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17281 |
4822 | /* 17260 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4823 | /* 17263 */ MCD::OPC_FilterValueOrFail, 0, |
4824 | /* 17265 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17276 |
4825 | /* 17271 */ MCD::OPC_Decode, 201, 73, 192, 1, // Opcode: VSCUsizv, DecodeIdx: 192 |
4826 | /* 17276 */ MCD::OPC_Decode, 204, 73, 193, 1, // Opcode: VSCUsizvm, DecodeIdx: 193 |
4827 | /* 17281 */ MCD::OPC_FilterValueOrFail, 1, |
4828 | /* 17283 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4829 | /* 17286 */ MCD::OPC_FilterValueOrFail, 0, |
4830 | /* 17288 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17299 |
4831 | /* 17294 */ MCD::OPC_Decode, 213, 73, 194, 1, // Opcode: VSCUsrzv, DecodeIdx: 194 |
4832 | /* 17299 */ MCD::OPC_Decode, 216, 73, 195, 1, // Opcode: VSCUsrzvm, DecodeIdx: 195 |
4833 | /* 17304 */ MCD::OPC_FilterValueOrFail, 1, |
4834 | /* 17306 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4835 | /* 17309 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17334 |
4836 | /* 17313 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4837 | /* 17316 */ MCD::OPC_FilterValueOrFail, 0, |
4838 | /* 17318 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17329 |
4839 | /* 17324 */ MCD::OPC_Decode, 195, 73, 196, 1, // Opcode: VSCUsirv, DecodeIdx: 196 |
4840 | /* 17329 */ MCD::OPC_Decode, 198, 73, 197, 1, // Opcode: VSCUsirvm, DecodeIdx: 197 |
4841 | /* 17334 */ MCD::OPC_FilterValueOrFail, 1, |
4842 | /* 17336 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4843 | /* 17339 */ MCD::OPC_FilterValueOrFail, 0, |
4844 | /* 17341 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17352 |
4845 | /* 17347 */ MCD::OPC_Decode, 207, 73, 198, 1, // Opcode: VSCUsrrv, DecodeIdx: 198 |
4846 | /* 17352 */ MCD::OPC_Decode, 210, 73, 199, 1, // Opcode: VSCUsrrvm, DecodeIdx: 199 |
4847 | /* 17357 */ MCD::OPC_FilterValue, 229, 2, 205, 1, // Skip to: 17823 |
4848 | /* 17362 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4849 | /* 17365 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 17480 |
4850 | /* 17369 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4851 | /* 17372 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17427 |
4852 | /* 17376 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4853 | /* 17379 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17404 |
4854 | /* 17383 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4855 | /* 17386 */ MCD::OPC_FilterValueOrFail, 0, |
4856 | /* 17388 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17399 |
4857 | /* 17394 */ MCD::OPC_Decode, 209, 72, 184, 1, // Opcode: VSCUNCOTvizv, DecodeIdx: 184 |
4858 | /* 17399 */ MCD::OPC_Decode, 212, 72, 185, 1, // Opcode: VSCUNCOTvizvm, DecodeIdx: 185 |
4859 | /* 17404 */ MCD::OPC_FilterValueOrFail, 1, |
4860 | /* 17406 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4861 | /* 17409 */ MCD::OPC_FilterValueOrFail, 0, |
4862 | /* 17411 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17422 |
4863 | /* 17417 */ MCD::OPC_Decode, 221, 72, 186, 1, // Opcode: VSCUNCOTvrzv, DecodeIdx: 186 |
4864 | /* 17422 */ MCD::OPC_Decode, 224, 72, 187, 1, // Opcode: VSCUNCOTvrzvm, DecodeIdx: 187 |
4865 | /* 17427 */ MCD::OPC_FilterValueOrFail, 1, |
4866 | /* 17429 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4867 | /* 17432 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17457 |
4868 | /* 17436 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4869 | /* 17439 */ MCD::OPC_FilterValueOrFail, 0, |
4870 | /* 17441 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17452 |
4871 | /* 17447 */ MCD::OPC_Decode, 203, 72, 188, 1, // Opcode: VSCUNCOTvirv, DecodeIdx: 188 |
4872 | /* 17452 */ MCD::OPC_Decode, 206, 72, 189, 1, // Opcode: VSCUNCOTvirvm, DecodeIdx: 189 |
4873 | /* 17457 */ MCD::OPC_FilterValueOrFail, 1, |
4874 | /* 17459 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4875 | /* 17462 */ MCD::OPC_FilterValueOrFail, 0, |
4876 | /* 17464 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17475 |
4877 | /* 17470 */ MCD::OPC_Decode, 215, 72, 190, 1, // Opcode: VSCUNCOTvrrv, DecodeIdx: 190 |
4878 | /* 17475 */ MCD::OPC_Decode, 218, 72, 191, 1, // Opcode: VSCUNCOTvrrvm, DecodeIdx: 191 |
4879 | /* 17480 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 17595 |
4880 | /* 17484 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4881 | /* 17487 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17542 |
4882 | /* 17491 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4883 | /* 17494 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17519 |
4884 | /* 17498 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4885 | /* 17501 */ MCD::OPC_FilterValueOrFail, 0, |
4886 | /* 17503 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17514 |
4887 | /* 17509 */ MCD::OPC_Decode, 185, 72, 192, 1, // Opcode: VSCUNCOTsizv, DecodeIdx: 192 |
4888 | /* 17514 */ MCD::OPC_Decode, 188, 72, 193, 1, // Opcode: VSCUNCOTsizvm, DecodeIdx: 193 |
4889 | /* 17519 */ MCD::OPC_FilterValueOrFail, 1, |
4890 | /* 17521 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4891 | /* 17524 */ MCD::OPC_FilterValueOrFail, 0, |
4892 | /* 17526 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17537 |
4893 | /* 17532 */ MCD::OPC_Decode, 197, 72, 194, 1, // Opcode: VSCUNCOTsrzv, DecodeIdx: 194 |
4894 | /* 17537 */ MCD::OPC_Decode, 200, 72, 195, 1, // Opcode: VSCUNCOTsrzvm, DecodeIdx: 195 |
4895 | /* 17542 */ MCD::OPC_FilterValueOrFail, 1, |
4896 | /* 17544 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4897 | /* 17547 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17572 |
4898 | /* 17551 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4899 | /* 17554 */ MCD::OPC_FilterValueOrFail, 0, |
4900 | /* 17556 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17567 |
4901 | /* 17562 */ MCD::OPC_Decode, 179, 72, 196, 1, // Opcode: VSCUNCOTsirv, DecodeIdx: 196 |
4902 | /* 17567 */ MCD::OPC_Decode, 182, 72, 197, 1, // Opcode: VSCUNCOTsirvm, DecodeIdx: 197 |
4903 | /* 17572 */ MCD::OPC_FilterValueOrFail, 1, |
4904 | /* 17574 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4905 | /* 17577 */ MCD::OPC_FilterValueOrFail, 0, |
4906 | /* 17579 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17590 |
4907 | /* 17585 */ MCD::OPC_Decode, 191, 72, 198, 1, // Opcode: VSCUNCOTsrrv, DecodeIdx: 198 |
4908 | /* 17590 */ MCD::OPC_Decode, 194, 72, 199, 1, // Opcode: VSCUNCOTsrrvm, DecodeIdx: 199 |
4909 | /* 17595 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 17710 |
4910 | /* 17599 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4911 | /* 17602 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17657 |
4912 | /* 17606 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4913 | /* 17609 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17634 |
4914 | /* 17613 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4915 | /* 17616 */ MCD::OPC_FilterValueOrFail, 0, |
4916 | /* 17618 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17629 |
4917 | /* 17624 */ MCD::OPC_Decode, 177, 73, 184, 1, // Opcode: VSCUOTvizv, DecodeIdx: 184 |
4918 | /* 17629 */ MCD::OPC_Decode, 180, 73, 185, 1, // Opcode: VSCUOTvizvm, DecodeIdx: 185 |
4919 | /* 17634 */ MCD::OPC_FilterValueOrFail, 1, |
4920 | /* 17636 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4921 | /* 17639 */ MCD::OPC_FilterValueOrFail, 0, |
4922 | /* 17641 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17652 |
4923 | /* 17647 */ MCD::OPC_Decode, 189, 73, 186, 1, // Opcode: VSCUOTvrzv, DecodeIdx: 186 |
4924 | /* 17652 */ MCD::OPC_Decode, 192, 73, 187, 1, // Opcode: VSCUOTvrzvm, DecodeIdx: 187 |
4925 | /* 17657 */ MCD::OPC_FilterValueOrFail, 1, |
4926 | /* 17659 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4927 | /* 17662 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17687 |
4928 | /* 17666 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4929 | /* 17669 */ MCD::OPC_FilterValueOrFail, 0, |
4930 | /* 17671 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17682 |
4931 | /* 17677 */ MCD::OPC_Decode, 171, 73, 188, 1, // Opcode: VSCUOTvirv, DecodeIdx: 188 |
4932 | /* 17682 */ MCD::OPC_Decode, 174, 73, 189, 1, // Opcode: VSCUOTvirvm, DecodeIdx: 189 |
4933 | /* 17687 */ MCD::OPC_FilterValueOrFail, 1, |
4934 | /* 17689 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4935 | /* 17692 */ MCD::OPC_FilterValueOrFail, 0, |
4936 | /* 17694 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17705 |
4937 | /* 17700 */ MCD::OPC_Decode, 183, 73, 190, 1, // Opcode: VSCUOTvrrv, DecodeIdx: 190 |
4938 | /* 17705 */ MCD::OPC_Decode, 186, 73, 191, 1, // Opcode: VSCUOTvrrvm, DecodeIdx: 191 |
4939 | /* 17710 */ MCD::OPC_FilterValueOrFail, 6, |
4940 | /* 17712 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4941 | /* 17715 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17770 |
4942 | /* 17719 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4943 | /* 17722 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17747 |
4944 | /* 17726 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4945 | /* 17729 */ MCD::OPC_FilterValueOrFail, 0, |
4946 | /* 17731 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17742 |
4947 | /* 17737 */ MCD::OPC_Decode, 153, 73, 192, 1, // Opcode: VSCUOTsizv, DecodeIdx: 192 |
4948 | /* 17742 */ MCD::OPC_Decode, 156, 73, 193, 1, // Opcode: VSCUOTsizvm, DecodeIdx: 193 |
4949 | /* 17747 */ MCD::OPC_FilterValueOrFail, 1, |
4950 | /* 17749 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4951 | /* 17752 */ MCD::OPC_FilterValueOrFail, 0, |
4952 | /* 17754 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17765 |
4953 | /* 17760 */ MCD::OPC_Decode, 165, 73, 194, 1, // Opcode: VSCUOTsrzv, DecodeIdx: 194 |
4954 | /* 17765 */ MCD::OPC_Decode, 168, 73, 195, 1, // Opcode: VSCUOTsrzvm, DecodeIdx: 195 |
4955 | /* 17770 */ MCD::OPC_FilterValueOrFail, 1, |
4956 | /* 17772 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4957 | /* 17775 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17800 |
4958 | /* 17779 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4959 | /* 17782 */ MCD::OPC_FilterValueOrFail, 0, |
4960 | /* 17784 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17795 |
4961 | /* 17790 */ MCD::OPC_Decode, 147, 73, 196, 1, // Opcode: VSCUOTsirv, DecodeIdx: 196 |
4962 | /* 17795 */ MCD::OPC_Decode, 150, 73, 197, 1, // Opcode: VSCUOTsirvm, DecodeIdx: 197 |
4963 | /* 17800 */ MCD::OPC_FilterValueOrFail, 1, |
4964 | /* 17802 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
4965 | /* 17805 */ MCD::OPC_FilterValueOrFail, 0, |
4966 | /* 17807 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17818 |
4967 | /* 17813 */ MCD::OPC_Decode, 159, 73, 198, 1, // Opcode: VSCUOTsrrv, DecodeIdx: 198 |
4968 | /* 17818 */ MCD::OPC_Decode, 162, 73, 199, 1, // Opcode: VSCUOTsrrvm, DecodeIdx: 199 |
4969 | /* 17823 */ MCD::OPC_FilterValue, 230, 2, 205, 1, // Skip to: 18289 |
4970 | /* 17828 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
4971 | /* 17831 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 17946 |
4972 | /* 17835 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
4973 | /* 17838 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 17893 |
4974 | /* 17842 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4975 | /* 17845 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17870 |
4976 | /* 17849 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4977 | /* 17852 */ MCD::OPC_FilterValueOrFail, 0, |
4978 | /* 17854 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17865 |
4979 | /* 17860 */ MCD::OPC_Decode, 177, 70, 184, 1, // Opcode: VSCLNCvizv, DecodeIdx: 184 |
4980 | /* 17865 */ MCD::OPC_Decode, 180, 70, 185, 1, // Opcode: VSCLNCvizvm, DecodeIdx: 185 |
4981 | /* 17870 */ MCD::OPC_FilterValueOrFail, 1, |
4982 | /* 17872 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4983 | /* 17875 */ MCD::OPC_FilterValueOrFail, 0, |
4984 | /* 17877 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17888 |
4985 | /* 17883 */ MCD::OPC_Decode, 189, 70, 186, 1, // Opcode: VSCLNCvrzv, DecodeIdx: 186 |
4986 | /* 17888 */ MCD::OPC_Decode, 192, 70, 187, 1, // Opcode: VSCLNCvrzvm, DecodeIdx: 187 |
4987 | /* 17893 */ MCD::OPC_FilterValueOrFail, 1, |
4988 | /* 17895 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
4989 | /* 17898 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17923 |
4990 | /* 17902 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4991 | /* 17905 */ MCD::OPC_FilterValueOrFail, 0, |
4992 | /* 17907 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17918 |
4993 | /* 17913 */ MCD::OPC_Decode, 171, 70, 188, 1, // Opcode: VSCLNCvirv, DecodeIdx: 188 |
4994 | /* 17918 */ MCD::OPC_Decode, 174, 70, 189, 1, // Opcode: VSCLNCvirvm, DecodeIdx: 189 |
4995 | /* 17923 */ MCD::OPC_FilterValueOrFail, 1, |
4996 | /* 17925 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
4997 | /* 17928 */ MCD::OPC_FilterValueOrFail, 0, |
4998 | /* 17930 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17941 |
4999 | /* 17936 */ MCD::OPC_Decode, 183, 70, 190, 1, // Opcode: VSCLNCvrrv, DecodeIdx: 190 |
5000 | /* 17941 */ MCD::OPC_Decode, 186, 70, 191, 1, // Opcode: VSCLNCvrrvm, DecodeIdx: 191 |
5001 | /* 17946 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 18061 |
5002 | /* 17950 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5003 | /* 17953 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18008 |
5004 | /* 17957 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5005 | /* 17960 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 17985 |
5006 | /* 17964 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5007 | /* 17967 */ MCD::OPC_FilterValueOrFail, 0, |
5008 | /* 17969 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 17980 |
5009 | /* 17975 */ MCD::OPC_Decode, 153, 70, 192, 1, // Opcode: VSCLNCsizv, DecodeIdx: 192 |
5010 | /* 17980 */ MCD::OPC_Decode, 156, 70, 193, 1, // Opcode: VSCLNCsizvm, DecodeIdx: 193 |
5011 | /* 17985 */ MCD::OPC_FilterValueOrFail, 1, |
5012 | /* 17987 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5013 | /* 17990 */ MCD::OPC_FilterValueOrFail, 0, |
5014 | /* 17992 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18003 |
5015 | /* 17998 */ MCD::OPC_Decode, 165, 70, 194, 1, // Opcode: VSCLNCsrzv, DecodeIdx: 194 |
5016 | /* 18003 */ MCD::OPC_Decode, 168, 70, 195, 1, // Opcode: VSCLNCsrzvm, DecodeIdx: 195 |
5017 | /* 18008 */ MCD::OPC_FilterValueOrFail, 1, |
5018 | /* 18010 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5019 | /* 18013 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18038 |
5020 | /* 18017 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5021 | /* 18020 */ MCD::OPC_FilterValueOrFail, 0, |
5022 | /* 18022 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18033 |
5023 | /* 18028 */ MCD::OPC_Decode, 147, 70, 196, 1, // Opcode: VSCLNCsirv, DecodeIdx: 196 |
5024 | /* 18033 */ MCD::OPC_Decode, 150, 70, 197, 1, // Opcode: VSCLNCsirvm, DecodeIdx: 197 |
5025 | /* 18038 */ MCD::OPC_FilterValueOrFail, 1, |
5026 | /* 18040 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5027 | /* 18043 */ MCD::OPC_FilterValueOrFail, 0, |
5028 | /* 18045 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18056 |
5029 | /* 18051 */ MCD::OPC_Decode, 159, 70, 198, 1, // Opcode: VSCLNCsrrv, DecodeIdx: 198 |
5030 | /* 18056 */ MCD::OPC_Decode, 162, 70, 199, 1, // Opcode: VSCLNCsrrvm, DecodeIdx: 199 |
5031 | /* 18061 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 18176 |
5032 | /* 18065 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5033 | /* 18068 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18123 |
5034 | /* 18072 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5035 | /* 18075 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18100 |
5036 | /* 18079 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5037 | /* 18082 */ MCD::OPC_FilterValueOrFail, 0, |
5038 | /* 18084 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18095 |
5039 | /* 18090 */ MCD::OPC_Decode, 145, 71, 184, 1, // Opcode: VSCLvizv, DecodeIdx: 184 |
5040 | /* 18095 */ MCD::OPC_Decode, 148, 71, 185, 1, // Opcode: VSCLvizvm, DecodeIdx: 185 |
5041 | /* 18100 */ MCD::OPC_FilterValueOrFail, 1, |
5042 | /* 18102 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5043 | /* 18105 */ MCD::OPC_FilterValueOrFail, 0, |
5044 | /* 18107 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18118 |
5045 | /* 18113 */ MCD::OPC_Decode, 157, 71, 186, 1, // Opcode: VSCLvrzv, DecodeIdx: 186 |
5046 | /* 18118 */ MCD::OPC_Decode, 160, 71, 187, 1, // Opcode: VSCLvrzvm, DecodeIdx: 187 |
5047 | /* 18123 */ MCD::OPC_FilterValueOrFail, 1, |
5048 | /* 18125 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5049 | /* 18128 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18153 |
5050 | /* 18132 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5051 | /* 18135 */ MCD::OPC_FilterValueOrFail, 0, |
5052 | /* 18137 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18148 |
5053 | /* 18143 */ MCD::OPC_Decode, 139, 71, 188, 1, // Opcode: VSCLvirv, DecodeIdx: 188 |
5054 | /* 18148 */ MCD::OPC_Decode, 142, 71, 189, 1, // Opcode: VSCLvirvm, DecodeIdx: 189 |
5055 | /* 18153 */ MCD::OPC_FilterValueOrFail, 1, |
5056 | /* 18155 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5057 | /* 18158 */ MCD::OPC_FilterValueOrFail, 0, |
5058 | /* 18160 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18171 |
5059 | /* 18166 */ MCD::OPC_Decode, 151, 71, 190, 1, // Opcode: VSCLvrrv, DecodeIdx: 190 |
5060 | /* 18171 */ MCD::OPC_Decode, 154, 71, 191, 1, // Opcode: VSCLvrrvm, DecodeIdx: 191 |
5061 | /* 18176 */ MCD::OPC_FilterValueOrFail, 6, |
5062 | /* 18178 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5063 | /* 18181 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18236 |
5064 | /* 18185 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5065 | /* 18188 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18213 |
5066 | /* 18192 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5067 | /* 18195 */ MCD::OPC_FilterValueOrFail, 0, |
5068 | /* 18197 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18208 |
5069 | /* 18203 */ MCD::OPC_Decode, 249, 70, 192, 1, // Opcode: VSCLsizv, DecodeIdx: 192 |
5070 | /* 18208 */ MCD::OPC_Decode, 252, 70, 193, 1, // Opcode: VSCLsizvm, DecodeIdx: 193 |
5071 | /* 18213 */ MCD::OPC_FilterValueOrFail, 1, |
5072 | /* 18215 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5073 | /* 18218 */ MCD::OPC_FilterValueOrFail, 0, |
5074 | /* 18220 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18231 |
5075 | /* 18226 */ MCD::OPC_Decode, 133, 71, 194, 1, // Opcode: VSCLsrzv, DecodeIdx: 194 |
5076 | /* 18231 */ MCD::OPC_Decode, 136, 71, 195, 1, // Opcode: VSCLsrzvm, DecodeIdx: 195 |
5077 | /* 18236 */ MCD::OPC_FilterValueOrFail, 1, |
5078 | /* 18238 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5079 | /* 18241 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18266 |
5080 | /* 18245 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5081 | /* 18248 */ MCD::OPC_FilterValueOrFail, 0, |
5082 | /* 18250 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18261 |
5083 | /* 18256 */ MCD::OPC_Decode, 243, 70, 196, 1, // Opcode: VSCLsirv, DecodeIdx: 196 |
5084 | /* 18261 */ MCD::OPC_Decode, 246, 70, 197, 1, // Opcode: VSCLsirvm, DecodeIdx: 197 |
5085 | /* 18266 */ MCD::OPC_FilterValueOrFail, 1, |
5086 | /* 18268 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5087 | /* 18271 */ MCD::OPC_FilterValueOrFail, 0, |
5088 | /* 18273 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18284 |
5089 | /* 18279 */ MCD::OPC_Decode, 255, 70, 198, 1, // Opcode: VSCLsrrv, DecodeIdx: 198 |
5090 | /* 18284 */ MCD::OPC_Decode, 130, 71, 199, 1, // Opcode: VSCLsrrvm, DecodeIdx: 199 |
5091 | /* 18289 */ MCD::OPC_FilterValue, 231, 2, 205, 1, // Skip to: 18755 |
5092 | /* 18294 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5093 | /* 18297 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 18412 |
5094 | /* 18301 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5095 | /* 18304 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18359 |
5096 | /* 18308 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5097 | /* 18311 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18336 |
5098 | /* 18315 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5099 | /* 18318 */ MCD::OPC_FilterValueOrFail, 0, |
5100 | /* 18320 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18331 |
5101 | /* 18326 */ MCD::OPC_Decode, 129, 70, 184, 1, // Opcode: VSCLNCOTvizv, DecodeIdx: 184 |
5102 | /* 18331 */ MCD::OPC_Decode, 132, 70, 185, 1, // Opcode: VSCLNCOTvizvm, DecodeIdx: 185 |
5103 | /* 18336 */ MCD::OPC_FilterValueOrFail, 1, |
5104 | /* 18338 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5105 | /* 18341 */ MCD::OPC_FilterValueOrFail, 0, |
5106 | /* 18343 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18354 |
5107 | /* 18349 */ MCD::OPC_Decode, 141, 70, 186, 1, // Opcode: VSCLNCOTvrzv, DecodeIdx: 186 |
5108 | /* 18354 */ MCD::OPC_Decode, 144, 70, 187, 1, // Opcode: VSCLNCOTvrzvm, DecodeIdx: 187 |
5109 | /* 18359 */ MCD::OPC_FilterValueOrFail, 1, |
5110 | /* 18361 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5111 | /* 18364 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18389 |
5112 | /* 18368 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5113 | /* 18371 */ MCD::OPC_FilterValueOrFail, 0, |
5114 | /* 18373 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18384 |
5115 | /* 18379 */ MCD::OPC_Decode, 251, 69, 188, 1, // Opcode: VSCLNCOTvirv, DecodeIdx: 188 |
5116 | /* 18384 */ MCD::OPC_Decode, 254, 69, 189, 1, // Opcode: VSCLNCOTvirvm, DecodeIdx: 189 |
5117 | /* 18389 */ MCD::OPC_FilterValueOrFail, 1, |
5118 | /* 18391 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5119 | /* 18394 */ MCD::OPC_FilterValueOrFail, 0, |
5120 | /* 18396 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18407 |
5121 | /* 18402 */ MCD::OPC_Decode, 135, 70, 190, 1, // Opcode: VSCLNCOTvrrv, DecodeIdx: 190 |
5122 | /* 18407 */ MCD::OPC_Decode, 138, 70, 191, 1, // Opcode: VSCLNCOTvrrvm, DecodeIdx: 191 |
5123 | /* 18412 */ MCD::OPC_FilterValue, 2, 111, 0, // Skip to: 18527 |
5124 | /* 18416 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5125 | /* 18419 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18474 |
5126 | /* 18423 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5127 | /* 18426 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18451 |
5128 | /* 18430 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5129 | /* 18433 */ MCD::OPC_FilterValueOrFail, 0, |
5130 | /* 18435 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18446 |
5131 | /* 18441 */ MCD::OPC_Decode, 233, 69, 192, 1, // Opcode: VSCLNCOTsizv, DecodeIdx: 192 |
5132 | /* 18446 */ MCD::OPC_Decode, 236, 69, 193, 1, // Opcode: VSCLNCOTsizvm, DecodeIdx: 193 |
5133 | /* 18451 */ MCD::OPC_FilterValueOrFail, 1, |
5134 | /* 18453 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5135 | /* 18456 */ MCD::OPC_FilterValueOrFail, 0, |
5136 | /* 18458 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18469 |
5137 | /* 18464 */ MCD::OPC_Decode, 245, 69, 194, 1, // Opcode: VSCLNCOTsrzv, DecodeIdx: 194 |
5138 | /* 18469 */ MCD::OPC_Decode, 248, 69, 195, 1, // Opcode: VSCLNCOTsrzvm, DecodeIdx: 195 |
5139 | /* 18474 */ MCD::OPC_FilterValueOrFail, 1, |
5140 | /* 18476 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5141 | /* 18479 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18504 |
5142 | /* 18483 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5143 | /* 18486 */ MCD::OPC_FilterValueOrFail, 0, |
5144 | /* 18488 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18499 |
5145 | /* 18494 */ MCD::OPC_Decode, 227, 69, 196, 1, // Opcode: VSCLNCOTsirv, DecodeIdx: 196 |
5146 | /* 18499 */ MCD::OPC_Decode, 230, 69, 197, 1, // Opcode: VSCLNCOTsirvm, DecodeIdx: 197 |
5147 | /* 18504 */ MCD::OPC_FilterValueOrFail, 1, |
5148 | /* 18506 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5149 | /* 18509 */ MCD::OPC_FilterValueOrFail, 0, |
5150 | /* 18511 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18522 |
5151 | /* 18517 */ MCD::OPC_Decode, 239, 69, 198, 1, // Opcode: VSCLNCOTsrrv, DecodeIdx: 198 |
5152 | /* 18522 */ MCD::OPC_Decode, 242, 69, 199, 1, // Opcode: VSCLNCOTsrrvm, DecodeIdx: 199 |
5153 | /* 18527 */ MCD::OPC_FilterValue, 4, 111, 0, // Skip to: 18642 |
5154 | /* 18531 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5155 | /* 18534 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18589 |
5156 | /* 18538 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5157 | /* 18541 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18566 |
5158 | /* 18545 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5159 | /* 18548 */ MCD::OPC_FilterValueOrFail, 0, |
5160 | /* 18550 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18561 |
5161 | /* 18556 */ MCD::OPC_Decode, 225, 70, 184, 1, // Opcode: VSCLOTvizv, DecodeIdx: 184 |
5162 | /* 18561 */ MCD::OPC_Decode, 228, 70, 185, 1, // Opcode: VSCLOTvizvm, DecodeIdx: 185 |
5163 | /* 18566 */ MCD::OPC_FilterValueOrFail, 1, |
5164 | /* 18568 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5165 | /* 18571 */ MCD::OPC_FilterValueOrFail, 0, |
5166 | /* 18573 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18584 |
5167 | /* 18579 */ MCD::OPC_Decode, 237, 70, 186, 1, // Opcode: VSCLOTvrzv, DecodeIdx: 186 |
5168 | /* 18584 */ MCD::OPC_Decode, 240, 70, 187, 1, // Opcode: VSCLOTvrzvm, DecodeIdx: 187 |
5169 | /* 18589 */ MCD::OPC_FilterValueOrFail, 1, |
5170 | /* 18591 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5171 | /* 18594 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18619 |
5172 | /* 18598 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5173 | /* 18601 */ MCD::OPC_FilterValueOrFail, 0, |
5174 | /* 18603 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18614 |
5175 | /* 18609 */ MCD::OPC_Decode, 219, 70, 188, 1, // Opcode: VSCLOTvirv, DecodeIdx: 188 |
5176 | /* 18614 */ MCD::OPC_Decode, 222, 70, 189, 1, // Opcode: VSCLOTvirvm, DecodeIdx: 189 |
5177 | /* 18619 */ MCD::OPC_FilterValueOrFail, 1, |
5178 | /* 18621 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5179 | /* 18624 */ MCD::OPC_FilterValueOrFail, 0, |
5180 | /* 18626 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18637 |
5181 | /* 18632 */ MCD::OPC_Decode, 231, 70, 190, 1, // Opcode: VSCLOTvrrv, DecodeIdx: 190 |
5182 | /* 18637 */ MCD::OPC_Decode, 234, 70, 191, 1, // Opcode: VSCLOTvrrvm, DecodeIdx: 191 |
5183 | /* 18642 */ MCD::OPC_FilterValueOrFail, 6, |
5184 | /* 18644 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5185 | /* 18647 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 18702 |
5186 | /* 18651 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5187 | /* 18654 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18679 |
5188 | /* 18658 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5189 | /* 18661 */ MCD::OPC_FilterValueOrFail, 0, |
5190 | /* 18663 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18674 |
5191 | /* 18669 */ MCD::OPC_Decode, 201, 70, 192, 1, // Opcode: VSCLOTsizv, DecodeIdx: 192 |
5192 | /* 18674 */ MCD::OPC_Decode, 204, 70, 193, 1, // Opcode: VSCLOTsizvm, DecodeIdx: 193 |
5193 | /* 18679 */ MCD::OPC_FilterValueOrFail, 1, |
5194 | /* 18681 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5195 | /* 18684 */ MCD::OPC_FilterValueOrFail, 0, |
5196 | /* 18686 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18697 |
5197 | /* 18692 */ MCD::OPC_Decode, 213, 70, 194, 1, // Opcode: VSCLOTsrzv, DecodeIdx: 194 |
5198 | /* 18697 */ MCD::OPC_Decode, 216, 70, 195, 1, // Opcode: VSCLOTsrzvm, DecodeIdx: 195 |
5199 | /* 18702 */ MCD::OPC_FilterValueOrFail, 1, |
5200 | /* 18704 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5201 | /* 18707 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 18732 |
5202 | /* 18711 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5203 | /* 18714 */ MCD::OPC_FilterValueOrFail, 0, |
5204 | /* 18716 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18727 |
5205 | /* 18722 */ MCD::OPC_Decode, 195, 70, 196, 1, // Opcode: VSCLOTsirv, DecodeIdx: 196 |
5206 | /* 18727 */ MCD::OPC_Decode, 198, 70, 197, 1, // Opcode: VSCLOTsirvm, DecodeIdx: 197 |
5207 | /* 18732 */ MCD::OPC_FilterValueOrFail, 1, |
5208 | /* 18734 */ MCD::OPC_ExtractField, 7, 17, // Inst{23-7} ... |
5209 | /* 18737 */ MCD::OPC_FilterValueOrFail, 0, |
5210 | /* 18739 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18750 |
5211 | /* 18745 */ MCD::OPC_Decode, 207, 70, 198, 1, // Opcode: VSCLOTsrrv, DecodeIdx: 198 |
5212 | /* 18750 */ MCD::OPC_Decode, 210, 70, 199, 1, // Opcode: VSCLOTsrrvm, DecodeIdx: 199 |
5213 | /* 18755 */ MCD::OPC_FilterValue, 232, 2, 75, 0, // Skip to: 18835 |
5214 | /* 18760 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5215 | /* 18763 */ MCD::OPC_FilterValueOrFail, 0, |
5216 | /* 18765 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5217 | /* 18768 */ MCD::OPC_FilterValueOrFail, 0, |
5218 | /* 18770 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5219 | /* 18773 */ MCD::OPC_FilterValueOrFail, 0, |
5220 | /* 18775 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5221 | /* 18778 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 18798 |
5222 | /* 18782 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18793 |
5223 | /* 18788 */ MCD::OPC_Decode, 227, 48, 200, 1, // Opcode: VFMKLna, DecodeIdx: 200 |
5224 | /* 18793 */ MCD::OPC_Decode, 230, 48, 201, 1, // Opcode: VFMKLnam, DecodeIdx: 201 |
5225 | /* 18798 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 18819 |
5226 | /* 18803 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18814 |
5227 | /* 18809 */ MCD::OPC_Decode, 221, 48, 200, 1, // Opcode: VFMKLa, DecodeIdx: 200 |
5228 | /* 18814 */ MCD::OPC_Decode, 224, 48, 201, 1, // Opcode: VFMKLam, DecodeIdx: 201 |
5229 | /* 18819 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18830 |
5230 | /* 18825 */ MCD::OPC_Decode, 233, 48, 202, 1, // Opcode: VFMKLv, DecodeIdx: 202 |
5231 | /* 18830 */ MCD::OPC_Decode, 236, 48, 203, 1, // Opcode: VFMKLvm, DecodeIdx: 203 |
5232 | /* 18835 */ MCD::OPC_FilterValue, 234, 2, 75, 0, // Skip to: 18915 |
5233 | /* 18840 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5234 | /* 18843 */ MCD::OPC_FilterValueOrFail, 0, |
5235 | /* 18845 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5236 | /* 18848 */ MCD::OPC_FilterValueOrFail, 0, |
5237 | /* 18850 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5238 | /* 18853 */ MCD::OPC_FilterValueOrFail, 0, |
5239 | /* 18855 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5240 | /* 18858 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 18878 |
5241 | /* 18862 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18873 |
5242 | /* 18868 */ MCD::OPC_Decode, 135, 49, 200, 1, // Opcode: VFMKWna, DecodeIdx: 200 |
5243 | /* 18873 */ MCD::OPC_Decode, 138, 49, 201, 1, // Opcode: VFMKWnam, DecodeIdx: 201 |
5244 | /* 18878 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 18899 |
5245 | /* 18883 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18894 |
5246 | /* 18889 */ MCD::OPC_Decode, 129, 49, 200, 1, // Opcode: VFMKWa, DecodeIdx: 200 |
5247 | /* 18894 */ MCD::OPC_Decode, 132, 49, 201, 1, // Opcode: VFMKWam, DecodeIdx: 201 |
5248 | /* 18899 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18910 |
5249 | /* 18905 */ MCD::OPC_Decode, 141, 49, 202, 1, // Opcode: VFMKWv, DecodeIdx: 202 |
5250 | /* 18910 */ MCD::OPC_Decode, 144, 49, 203, 1, // Opcode: VFMKWvm, DecodeIdx: 203 |
5251 | /* 18915 */ MCD::OPC_FilterValue, 235, 2, 75, 0, // Skip to: 18995 |
5252 | /* 18920 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5253 | /* 18923 */ MCD::OPC_FilterValueOrFail, 0, |
5254 | /* 18925 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5255 | /* 18928 */ MCD::OPC_FilterValueOrFail, 0, |
5256 | /* 18930 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5257 | /* 18933 */ MCD::OPC_FilterValueOrFail, 0, |
5258 | /* 18935 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5259 | /* 18938 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 18958 |
5260 | /* 18942 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18953 |
5261 | /* 18948 */ MCD::OPC_Decode, 198, 18, 200, 1, // Opcode: PVFMKWUPna, DecodeIdx: 200 |
5262 | /* 18953 */ MCD::OPC_Decode, 201, 18, 201, 1, // Opcode: PVFMKWUPnam, DecodeIdx: 201 |
5263 | /* 18958 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 18979 |
5264 | /* 18963 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18974 |
5265 | /* 18969 */ MCD::OPC_Decode, 192, 18, 200, 1, // Opcode: PVFMKWUPa, DecodeIdx: 200 |
5266 | /* 18974 */ MCD::OPC_Decode, 195, 18, 201, 1, // Opcode: PVFMKWUPam, DecodeIdx: 201 |
5267 | /* 18979 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 18990 |
5268 | /* 18985 */ MCD::OPC_Decode, 204, 18, 202, 1, // Opcode: PVFMKWUPv, DecodeIdx: 202 |
5269 | /* 18990 */ MCD::OPC_Decode, 207, 18, 203, 1, // Opcode: PVFMKWUPvm, DecodeIdx: 203 |
5270 | /* 18995 */ MCD::OPC_FilterValue, 236, 2, 149, 0, // Skip to: 19149 |
5271 | /* 19000 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5272 | /* 19003 */ MCD::OPC_FilterValue, 0, 70, 0, // Skip to: 19077 |
5273 | /* 19007 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5274 | /* 19010 */ MCD::OPC_FilterValueOrFail, 0, |
5275 | /* 19012 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5276 | /* 19015 */ MCD::OPC_FilterValueOrFail, 0, |
5277 | /* 19017 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5278 | /* 19020 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 19040 |
5279 | /* 19024 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19035 |
5280 | /* 19030 */ MCD::OPC_Decode, 209, 48, 200, 1, // Opcode: VFMKDna, DecodeIdx: 200 |
5281 | /* 19035 */ MCD::OPC_Decode, 212, 48, 201, 1, // Opcode: VFMKDnam, DecodeIdx: 201 |
5282 | /* 19040 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 19061 |
5283 | /* 19045 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19056 |
5284 | /* 19051 */ MCD::OPC_Decode, 203, 48, 200, 1, // Opcode: VFMKDa, DecodeIdx: 200 |
5285 | /* 19056 */ MCD::OPC_Decode, 206, 48, 201, 1, // Opcode: VFMKDam, DecodeIdx: 201 |
5286 | /* 19061 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19072 |
5287 | /* 19067 */ MCD::OPC_Decode, 215, 48, 202, 1, // Opcode: VFMKDv, DecodeIdx: 202 |
5288 | /* 19072 */ MCD::OPC_Decode, 218, 48, 203, 1, // Opcode: VFMKDvm, DecodeIdx: 203 |
5289 | /* 19077 */ MCD::OPC_FilterValueOrFail, 4, |
5290 | /* 19079 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5291 | /* 19082 */ MCD::OPC_FilterValueOrFail, 0, |
5292 | /* 19084 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5293 | /* 19087 */ MCD::OPC_FilterValueOrFail, 0, |
5294 | /* 19089 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5295 | /* 19092 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 19112 |
5296 | /* 19096 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19107 |
5297 | /* 19102 */ MCD::OPC_Decode, 144, 18, 200, 1, // Opcode: PVFMKSLOna, DecodeIdx: 200 |
5298 | /* 19107 */ MCD::OPC_Decode, 147, 18, 201, 1, // Opcode: PVFMKSLOnam, DecodeIdx: 201 |
5299 | /* 19112 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 19133 |
5300 | /* 19117 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19128 |
5301 | /* 19123 */ MCD::OPC_Decode, 138, 18, 200, 1, // Opcode: PVFMKSLOa, DecodeIdx: 200 |
5302 | /* 19128 */ MCD::OPC_Decode, 141, 18, 201, 1, // Opcode: PVFMKSLOam, DecodeIdx: 201 |
5303 | /* 19133 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19144 |
5304 | /* 19139 */ MCD::OPC_Decode, 150, 18, 202, 1, // Opcode: PVFMKSLOv, DecodeIdx: 202 |
5305 | /* 19144 */ MCD::OPC_Decode, 153, 18, 203, 1, // Opcode: PVFMKSLOvm, DecodeIdx: 203 |
5306 | /* 19149 */ MCD::OPC_FilterValue, 237, 2, 75, 0, // Skip to: 19229 |
5307 | /* 19154 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5308 | /* 19157 */ MCD::OPC_FilterValueOrFail, 0, |
5309 | /* 19159 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5310 | /* 19162 */ MCD::OPC_FilterValueOrFail, 0, |
5311 | /* 19164 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5312 | /* 19167 */ MCD::OPC_FilterValueOrFail, 0, |
5313 | /* 19169 */ MCD::OPC_ExtractField, 8, 16, // Inst{23-8} ... |
5314 | /* 19172 */ MCD::OPC_FilterValue, 0, 16, 0, // Skip to: 19192 |
5315 | /* 19176 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19187 |
5316 | /* 19182 */ MCD::OPC_Decode, 162, 18, 200, 1, // Opcode: PVFMKSUPna, DecodeIdx: 200 |
5317 | /* 19187 */ MCD::OPC_Decode, 165, 18, 201, 1, // Opcode: PVFMKSUPnam, DecodeIdx: 201 |
5318 | /* 19192 */ MCD::OPC_FilterValue, 128, 30, 16, 0, // Skip to: 19213 |
5319 | /* 19197 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19208 |
5320 | /* 19203 */ MCD::OPC_Decode, 156, 18, 200, 1, // Opcode: PVFMKSUPa, DecodeIdx: 200 |
5321 | /* 19208 */ MCD::OPC_Decode, 159, 18, 201, 1, // Opcode: PVFMKSUPam, DecodeIdx: 201 |
5322 | /* 19213 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 19224 |
5323 | /* 19219 */ MCD::OPC_Decode, 168, 18, 202, 1, // Opcode: PVFMKSUPv, DecodeIdx: 202 |
5324 | /* 19224 */ MCD::OPC_Decode, 171, 18, 203, 1, // Opcode: PVFMKSUPvm, DecodeIdx: 203 |
5325 | /* 19229 */ MCD::OPC_FilterValue, 238, 2, 63, 0, // Skip to: 19297 |
5326 | /* 19234 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5327 | /* 19237 */ MCD::OPC_FilterValue, 0, 27, 0, // Skip to: 19268 |
5328 | /* 19241 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5329 | /* 19244 */ MCD::OPC_FilterValue, 0, 9, 0, // Skip to: 19257 |
5330 | /* 19248 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5331 | /* 19252 */ MCD::OPC_Decode, 170, 6, 204, 1, // Opcode: LVMim, DecodeIdx: 204 |
5332 | /* 19257 */ MCD::OPC_FilterValueOrFail, 1, |
5333 | /* 19259 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5334 | /* 19263 */ MCD::OPC_Decode, 174, 6, 205, 1, // Opcode: LVMrm, DecodeIdx: 205 |
5335 | /* 19268 */ MCD::OPC_FilterValueOrFail, 1, |
5336 | /* 19270 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5337 | /* 19273 */ MCD::OPC_FilterValue, 0, 9, 0, // Skip to: 19286 |
5338 | /* 19277 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5339 | /* 19281 */ MCD::OPC_Decode, 172, 6, 206, 1, // Opcode: LVMir, DecodeIdx: 206 |
5340 | /* 19286 */ MCD::OPC_FilterValueOrFail, 1, |
5341 | /* 19288 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5342 | /* 19292 */ MCD::OPC_Decode, 176, 6, 207, 1, // Opcode: LVMrr, DecodeIdx: 207 |
5343 | /* 19297 */ MCD::OPC_FilterValue, 240, 2, 29, 0, // Skip to: 19331 |
5344 | /* 19302 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5345 | /* 19305 */ MCD::OPC_FilterValueOrFail, 0, |
5346 | /* 19307 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5347 | /* 19310 */ MCD::OPC_FilterValueOrFail, 0, |
5348 | /* 19312 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5349 | /* 19315 */ MCD::OPC_FilterValueOrFail, 0, |
5350 | /* 19317 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19327 |
5351 | /* 19323 */ MCD::OPC_Decode, 191, 39, 119, // Opcode: VCVTDLv, DecodeIdx: 119 |
5352 | /* 19327 */ MCD::OPC_Decode, 197, 39, 120, // Opcode: VCVTDLvm, DecodeIdx: 120 |
5353 | /* 19331 */ MCD::OPC_FilterValue, 242, 2, 200, 0, // Skip to: 19536 |
5354 | /* 19336 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5355 | /* 19339 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 19367 |
5356 | /* 19343 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5357 | /* 19346 */ MCD::OPC_FilterValueOrFail, 0, |
5358 | /* 19348 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5359 | /* 19351 */ MCD::OPC_FilterValueOrFail, 0, |
5360 | /* 19353 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19363 |
5361 | /* 19359 */ MCD::OPC_Decode, 131, 39, 121, // Opcode: VCMPULvv, DecodeIdx: 121 |
5362 | /* 19363 */ MCD::OPC_Decode, 137, 39, 122, // Opcode: VCMPULvvm, DecodeIdx: 122 |
5363 | /* 19367 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 19439 |
5364 | /* 19371 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5365 | /* 19374 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 19407 |
5366 | /* 19378 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5367 | /* 19381 */ MCD::OPC_FilterValueOrFail, 0, |
5368 | /* 19383 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5369 | /* 19386 */ MCD::OPC_FilterValueOrFail, 0, |
5370 | /* 19388 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5371 | /* 19391 */ MCD::OPC_FilterValueOrFail, 0, |
5372 | /* 19393 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19403 |
5373 | /* 19399 */ MCD::OPC_Decode, 235, 38, 123, // Opcode: VCMPULiv, DecodeIdx: 123 |
5374 | /* 19403 */ MCD::OPC_Decode, 241, 38, 124, // Opcode: VCMPULivm, DecodeIdx: 124 |
5375 | /* 19407 */ MCD::OPC_FilterValueOrFail, 1, |
5376 | /* 19409 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5377 | /* 19412 */ MCD::OPC_FilterValueOrFail, 0, |
5378 | /* 19414 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5379 | /* 19417 */ MCD::OPC_FilterValueOrFail, 0, |
5380 | /* 19419 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5381 | /* 19422 */ MCD::OPC_FilterValueOrFail, 0, |
5382 | /* 19424 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19434 |
5383 | /* 19430 */ MCD::OPC_Decode, 247, 38, 127, // Opcode: VCMPULrv, DecodeIdx: 127 |
5384 | /* 19434 */ MCD::OPC_Decode, 253, 38, 128, 1, // Opcode: VCMPULrvm, DecodeIdx: 128 |
5385 | /* 19439 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 19467 |
5386 | /* 19443 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5387 | /* 19446 */ MCD::OPC_FilterValueOrFail, 0, |
5388 | /* 19448 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5389 | /* 19451 */ MCD::OPC_FilterValueOrFail, 0, |
5390 | /* 19453 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19463 |
5391 | /* 19459 */ MCD::OPC_Decode, 158, 11, 121, // Opcode: PVCMPULOvv, DecodeIdx: 121 |
5392 | /* 19463 */ MCD::OPC_Decode, 164, 11, 122, // Opcode: PVCMPULOvvm, DecodeIdx: 122 |
5393 | /* 19467 */ MCD::OPC_FilterValueOrFail, 6, |
5394 | /* 19469 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5395 | /* 19472 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 19505 |
5396 | /* 19476 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5397 | /* 19479 */ MCD::OPC_FilterValueOrFail, 0, |
5398 | /* 19481 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5399 | /* 19484 */ MCD::OPC_FilterValueOrFail, 0, |
5400 | /* 19486 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5401 | /* 19489 */ MCD::OPC_FilterValueOrFail, 0, |
5402 | /* 19491 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19501 |
5403 | /* 19497 */ MCD::OPC_Decode, 134, 11, 123, // Opcode: PVCMPULOiv, DecodeIdx: 123 |
5404 | /* 19501 */ MCD::OPC_Decode, 140, 11, 124, // Opcode: PVCMPULOivm, DecodeIdx: 124 |
5405 | /* 19505 */ MCD::OPC_FilterValueOrFail, 1, |
5406 | /* 19507 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5407 | /* 19510 */ MCD::OPC_FilterValueOrFail, 0, |
5408 | /* 19512 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5409 | /* 19515 */ MCD::OPC_FilterValueOrFail, 0, |
5410 | /* 19517 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5411 | /* 19520 */ MCD::OPC_FilterValueOrFail, 0, |
5412 | /* 19522 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19532 |
5413 | /* 19528 */ MCD::OPC_Decode, 146, 11, 125, // Opcode: PVCMPULOrv, DecodeIdx: 125 |
5414 | /* 19532 */ MCD::OPC_Decode, 152, 11, 126, // Opcode: PVCMPULOrvm, DecodeIdx: 126 |
5415 | /* 19536 */ MCD::OPC_FilterValue, 243, 2, 203, 0, // Skip to: 19744 |
5416 | /* 19541 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5417 | /* 19544 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 19572 |
5418 | /* 19548 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5419 | /* 19551 */ MCD::OPC_FilterValueOrFail, 0, |
5420 | /* 19553 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5421 | /* 19556 */ MCD::OPC_FilterValueOrFail, 0, |
5422 | /* 19558 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19568 |
5423 | /* 19564 */ MCD::OPC_Decode, 194, 11, 121, // Opcode: PVCMPUUPvv, DecodeIdx: 121 |
5424 | /* 19568 */ MCD::OPC_Decode, 200, 11, 122, // Opcode: PVCMPUUPvvm, DecodeIdx: 122 |
5425 | /* 19572 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 19644 |
5426 | /* 19576 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5427 | /* 19579 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 19612 |
5428 | /* 19583 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5429 | /* 19586 */ MCD::OPC_FilterValueOrFail, 0, |
5430 | /* 19588 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5431 | /* 19591 */ MCD::OPC_FilterValueOrFail, 0, |
5432 | /* 19593 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5433 | /* 19596 */ MCD::OPC_FilterValueOrFail, 0, |
5434 | /* 19598 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19608 |
5435 | /* 19604 */ MCD::OPC_Decode, 170, 11, 123, // Opcode: PVCMPUUPiv, DecodeIdx: 123 |
5436 | /* 19608 */ MCD::OPC_Decode, 176, 11, 124, // Opcode: PVCMPUUPivm, DecodeIdx: 124 |
5437 | /* 19612 */ MCD::OPC_FilterValueOrFail, 1, |
5438 | /* 19614 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5439 | /* 19617 */ MCD::OPC_FilterValueOrFail, 0, |
5440 | /* 19619 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5441 | /* 19622 */ MCD::OPC_FilterValueOrFail, 0, |
5442 | /* 19624 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5443 | /* 19627 */ MCD::OPC_FilterValueOrFail, 0, |
5444 | /* 19629 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19639 |
5445 | /* 19635 */ MCD::OPC_Decode, 182, 11, 127, // Opcode: PVCMPUUPrv, DecodeIdx: 127 |
5446 | /* 19639 */ MCD::OPC_Decode, 188, 11, 128, 1, // Opcode: PVCMPUUPrvm, DecodeIdx: 128 |
5447 | /* 19644 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 19673 |
5448 | /* 19648 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5449 | /* 19651 */ MCD::OPC_FilterValueOrFail, 0, |
5450 | /* 19653 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5451 | /* 19656 */ MCD::OPC_FilterValueOrFail, 0, |
5452 | /* 19658 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19668 |
5453 | /* 19664 */ MCD::OPC_Decode, 230, 11, 121, // Opcode: PVCMPUvv, DecodeIdx: 121 |
5454 | /* 19668 */ MCD::OPC_Decode, 236, 11, 129, 1, // Opcode: PVCMPUvvm, DecodeIdx: 129 |
5455 | /* 19673 */ MCD::OPC_FilterValueOrFail, 6, |
5456 | /* 19675 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5457 | /* 19678 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 19712 |
5458 | /* 19682 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5459 | /* 19685 */ MCD::OPC_FilterValueOrFail, 0, |
5460 | /* 19687 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5461 | /* 19690 */ MCD::OPC_FilterValueOrFail, 0, |
5462 | /* 19692 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5463 | /* 19695 */ MCD::OPC_FilterValueOrFail, 0, |
5464 | /* 19697 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19707 |
5465 | /* 19703 */ MCD::OPC_Decode, 206, 11, 123, // Opcode: PVCMPUiv, DecodeIdx: 123 |
5466 | /* 19707 */ MCD::OPC_Decode, 212, 11, 130, 1, // Opcode: PVCMPUivm, DecodeIdx: 130 |
5467 | /* 19712 */ MCD::OPC_FilterValueOrFail, 1, |
5468 | /* 19714 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5469 | /* 19717 */ MCD::OPC_FilterValueOrFail, 0, |
5470 | /* 19719 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5471 | /* 19722 */ MCD::OPC_FilterValueOrFail, 0, |
5472 | /* 19724 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5473 | /* 19727 */ MCD::OPC_FilterValueOrFail, 0, |
5474 | /* 19729 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19739 |
5475 | /* 19735 */ MCD::OPC_Decode, 218, 11, 127, // Opcode: PVCMPUrv, DecodeIdx: 127 |
5476 | /* 19739 */ MCD::OPC_Decode, 224, 11, 131, 1, // Opcode: PVCMPUrvm, DecodeIdx: 131 |
5477 | /* 19744 */ MCD::OPC_FilterValue, 244, 2, 106, 0, // Skip to: 19855 |
5478 | /* 19749 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5479 | /* 19752 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 19818 |
5480 | /* 19756 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5481 | /* 19759 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 19787 |
5482 | /* 19763 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5483 | /* 19766 */ MCD::OPC_FilterValueOrFail, 0, |
5484 | /* 19768 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
5485 | /* 19771 */ MCD::OPC_FilterValueOrFail, 0, |
5486 | /* 19773 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19783 |
5487 | /* 19779 */ MCD::OPC_Decode, 151, 38, 121, // Opcode: VCMPSLvv, DecodeIdx: 121 |
5488 | /* 19783 */ MCD::OPC_Decode, 157, 38, 122, // Opcode: VCMPSLvvm, DecodeIdx: 122 |
5489 | /* 19787 */ MCD::OPC_FilterValueOrFail, 2, |
5490 | /* 19789 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5491 | /* 19792 */ MCD::OPC_FilterValueOrFail, 0, |
5492 | /* 19794 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5493 | /* 19797 */ MCD::OPC_FilterValueOrFail, 0, |
5494 | /* 19799 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5495 | /* 19802 */ MCD::OPC_FilterValueOrFail, 0, |
5496 | /* 19804 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19814 |
5497 | /* 19810 */ MCD::OPC_Decode, 255, 37, 123, // Opcode: VCMPSLiv, DecodeIdx: 123 |
5498 | /* 19814 */ MCD::OPC_Decode, 133, 38, 124, // Opcode: VCMPSLivm, DecodeIdx: 124 |
5499 | /* 19818 */ MCD::OPC_FilterValueOrFail, 1, |
5500 | /* 19820 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5501 | /* 19823 */ MCD::OPC_FilterValueOrFail, 0, |
5502 | /* 19825 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5503 | /* 19828 */ MCD::OPC_FilterValueOrFail, 0, |
5504 | /* 19830 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5505 | /* 19833 */ MCD::OPC_FilterValueOrFail, 0, |
5506 | /* 19835 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5507 | /* 19838 */ MCD::OPC_FilterValueOrFail, 2, |
5508 | /* 19840 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19850 |
5509 | /* 19846 */ MCD::OPC_Decode, 139, 38, 127, // Opcode: VCMPSLrv, DecodeIdx: 127 |
5510 | /* 19850 */ MCD::OPC_Decode, 145, 38, 128, 1, // Opcode: VCMPSLrvm, DecodeIdx: 128 |
5511 | /* 19855 */ MCD::OPC_FilterValue, 246, 2, 225, 0, // Skip to: 20085 |
5512 | /* 19860 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5513 | /* 19863 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 19891 |
5514 | /* 19867 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5515 | /* 19870 */ MCD::OPC_FilterValueOrFail, 0, |
5516 | /* 19872 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5517 | /* 19875 */ MCD::OPC_FilterValueOrFail, 0, |
5518 | /* 19877 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19887 |
5519 | /* 19883 */ MCD::OPC_Decode, 163, 68, 119, // Opcode: VRMAXSWFSTSXv, DecodeIdx: 119 |
5520 | /* 19887 */ MCD::OPC_Decode, 169, 68, 120, // Opcode: VRMAXSWFSTSXvm, DecodeIdx: 120 |
5521 | /* 19891 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 19919 |
5522 | /* 19895 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5523 | /* 19898 */ MCD::OPC_FilterValueOrFail, 0, |
5524 | /* 19900 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5525 | /* 19903 */ MCD::OPC_FilterValueOrFail, 0, |
5526 | /* 19905 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19915 |
5527 | /* 19911 */ MCD::OPC_Decode, 235, 68, 119, // Opcode: VRMINSWFSTSXv, DecodeIdx: 119 |
5528 | /* 19915 */ MCD::OPC_Decode, 241, 68, 120, // Opcode: VRMINSWFSTSXvm, DecodeIdx: 120 |
5529 | /* 19919 */ MCD::OPC_FilterValue, 2, 24, 0, // Skip to: 19947 |
5530 | /* 19923 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5531 | /* 19926 */ MCD::OPC_FilterValueOrFail, 0, |
5532 | /* 19928 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5533 | /* 19931 */ MCD::OPC_FilterValueOrFail, 0, |
5534 | /* 19933 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19943 |
5535 | /* 19939 */ MCD::OPC_Decode, 187, 68, 119, // Opcode: VRMAXSWLSTSXv, DecodeIdx: 119 |
5536 | /* 19943 */ MCD::OPC_Decode, 193, 68, 120, // Opcode: VRMAXSWLSTSXvm, DecodeIdx: 120 |
5537 | /* 19947 */ MCD::OPC_FilterValue, 3, 24, 0, // Skip to: 19975 |
5538 | /* 19951 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5539 | /* 19954 */ MCD::OPC_FilterValueOrFail, 0, |
5540 | /* 19956 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5541 | /* 19959 */ MCD::OPC_FilterValueOrFail, 0, |
5542 | /* 19961 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19971 |
5543 | /* 19967 */ MCD::OPC_Decode, 131, 69, 119, // Opcode: VRMINSWLSTSXv, DecodeIdx: 119 |
5544 | /* 19971 */ MCD::OPC_Decode, 137, 69, 120, // Opcode: VRMINSWLSTSXvm, DecodeIdx: 120 |
5545 | /* 19975 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 20003 |
5546 | /* 19979 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5547 | /* 19982 */ MCD::OPC_FilterValueOrFail, 0, |
5548 | /* 19984 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5549 | /* 19987 */ MCD::OPC_FilterValueOrFail, 0, |
5550 | /* 19989 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 19999 |
5551 | /* 19995 */ MCD::OPC_Decode, 175, 68, 119, // Opcode: VRMAXSWFSTZXv, DecodeIdx: 119 |
5552 | /* 19999 */ MCD::OPC_Decode, 181, 68, 120, // Opcode: VRMAXSWFSTZXvm, DecodeIdx: 120 |
5553 | /* 20003 */ MCD::OPC_FilterValue, 5, 24, 0, // Skip to: 20031 |
5554 | /* 20007 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5555 | /* 20010 */ MCD::OPC_FilterValueOrFail, 0, |
5556 | /* 20012 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5557 | /* 20015 */ MCD::OPC_FilterValueOrFail, 0, |
5558 | /* 20017 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20027 |
5559 | /* 20023 */ MCD::OPC_Decode, 247, 68, 119, // Opcode: VRMINSWFSTZXv, DecodeIdx: 119 |
5560 | /* 20027 */ MCD::OPC_Decode, 253, 68, 120, // Opcode: VRMINSWFSTZXvm, DecodeIdx: 120 |
5561 | /* 20031 */ MCD::OPC_FilterValue, 6, 24, 0, // Skip to: 20059 |
5562 | /* 20035 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5563 | /* 20038 */ MCD::OPC_FilterValueOrFail, 0, |
5564 | /* 20040 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5565 | /* 20043 */ MCD::OPC_FilterValueOrFail, 0, |
5566 | /* 20045 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20055 |
5567 | /* 20051 */ MCD::OPC_Decode, 199, 68, 119, // Opcode: VRMAXSWLSTZXv, DecodeIdx: 119 |
5568 | /* 20055 */ MCD::OPC_Decode, 205, 68, 120, // Opcode: VRMAXSWLSTZXvm, DecodeIdx: 120 |
5569 | /* 20059 */ MCD::OPC_FilterValueOrFail, 7, |
5570 | /* 20061 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
5571 | /* 20064 */ MCD::OPC_FilterValueOrFail, 0, |
5572 | /* 20066 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5573 | /* 20069 */ MCD::OPC_FilterValueOrFail, 0, |
5574 | /* 20071 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20081 |
5575 | /* 20077 */ MCD::OPC_Decode, 143, 69, 119, // Opcode: VRMINSWLSTZXv, DecodeIdx: 119 |
5576 | /* 20081 */ MCD::OPC_Decode, 149, 69, 120, // Opcode: VRMINSWLSTZXvm, DecodeIdx: 120 |
5577 | /* 20085 */ MCD::OPC_FilterValue, 248, 2, 35, 0, // Skip to: 20125 |
5578 | /* 20090 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5579 | /* 20093 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 20110 |
5580 | /* 20097 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
5581 | /* 20101 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
5582 | /* 20105 */ MCD::OPC_Decode, 223, 74, 208, 1, // Opcode: VSHFvvi, DecodeIdx: 208 |
5583 | /* 20110 */ MCD::OPC_FilterValueOrFail, 1, |
5584 | /* 20112 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
5585 | /* 20116 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
5586 | /* 20120 */ MCD::OPC_Decode, 229, 74, 209, 1, // Opcode: VSHFvvr, DecodeIdx: 209 |
5587 | /* 20125 */ MCD::OPC_FilterValue, 250, 2, 145, 1, // Skip to: 20531 |
5588 | /* 20130 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5589 | /* 20133 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 20161 |
5590 | /* 20137 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5591 | /* 20140 */ MCD::OPC_FilterValueOrFail, 0, |
5592 | /* 20142 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5593 | /* 20145 */ MCD::OPC_FilterValueOrFail, 0, |
5594 | /* 20147 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20157 |
5595 | /* 20153 */ MCD::OPC_Decode, 211, 47, 121, // Opcode: VFMAXDvv, DecodeIdx: 121 |
5596 | /* 20157 */ MCD::OPC_Decode, 217, 47, 122, // Opcode: VFMAXDvvm, DecodeIdx: 122 |
5597 | /* 20161 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 20189 |
5598 | /* 20165 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5599 | /* 20168 */ MCD::OPC_FilterValueOrFail, 0, |
5600 | /* 20170 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5601 | /* 20173 */ MCD::OPC_FilterValueOrFail, 0, |
5602 | /* 20175 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20185 |
5603 | /* 20181 */ MCD::OPC_Decode, 155, 48, 121, // Opcode: VFMINDvv, DecodeIdx: 121 |
5604 | /* 20185 */ MCD::OPC_Decode, 161, 48, 122, // Opcode: VFMINDvvm, DecodeIdx: 122 |
5605 | /* 20189 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 20261 |
5606 | /* 20193 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5607 | /* 20196 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20229 |
5608 | /* 20200 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5609 | /* 20203 */ MCD::OPC_FilterValueOrFail, 0, |
5610 | /* 20205 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5611 | /* 20208 */ MCD::OPC_FilterValueOrFail, 0, |
5612 | /* 20210 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5613 | /* 20213 */ MCD::OPC_FilterValueOrFail, 0, |
5614 | /* 20215 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20225 |
5615 | /* 20221 */ MCD::OPC_Decode, 187, 47, 123, // Opcode: VFMAXDiv, DecodeIdx: 123 |
5616 | /* 20225 */ MCD::OPC_Decode, 193, 47, 124, // Opcode: VFMAXDivm, DecodeIdx: 124 |
5617 | /* 20229 */ MCD::OPC_FilterValueOrFail, 1, |
5618 | /* 20231 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5619 | /* 20234 */ MCD::OPC_FilterValueOrFail, 0, |
5620 | /* 20236 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5621 | /* 20239 */ MCD::OPC_FilterValueOrFail, 0, |
5622 | /* 20241 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5623 | /* 20244 */ MCD::OPC_FilterValueOrFail, 0, |
5624 | /* 20246 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20256 |
5625 | /* 20252 */ MCD::OPC_Decode, 199, 47, 127, // Opcode: VFMAXDrv, DecodeIdx: 127 |
5626 | /* 20256 */ MCD::OPC_Decode, 205, 47, 128, 1, // Opcode: VFMAXDrvm, DecodeIdx: 128 |
5627 | /* 20261 */ MCD::OPC_FilterValue, 3, 68, 0, // Skip to: 20333 |
5628 | /* 20265 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5629 | /* 20268 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20301 |
5630 | /* 20272 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5631 | /* 20275 */ MCD::OPC_FilterValueOrFail, 0, |
5632 | /* 20277 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5633 | /* 20280 */ MCD::OPC_FilterValueOrFail, 0, |
5634 | /* 20282 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5635 | /* 20285 */ MCD::OPC_FilterValueOrFail, 0, |
5636 | /* 20287 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20297 |
5637 | /* 20293 */ MCD::OPC_Decode, 131, 48, 123, // Opcode: VFMINDiv, DecodeIdx: 123 |
5638 | /* 20297 */ MCD::OPC_Decode, 137, 48, 124, // Opcode: VFMINDivm, DecodeIdx: 124 |
5639 | /* 20301 */ MCD::OPC_FilterValueOrFail, 1, |
5640 | /* 20303 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5641 | /* 20306 */ MCD::OPC_FilterValueOrFail, 0, |
5642 | /* 20308 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5643 | /* 20311 */ MCD::OPC_FilterValueOrFail, 0, |
5644 | /* 20313 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5645 | /* 20316 */ MCD::OPC_FilterValueOrFail, 0, |
5646 | /* 20318 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20328 |
5647 | /* 20324 */ MCD::OPC_Decode, 143, 48, 127, // Opcode: VFMINDrv, DecodeIdx: 127 |
5648 | /* 20328 */ MCD::OPC_Decode, 149, 48, 128, 1, // Opcode: VFMINDrvm, DecodeIdx: 128 |
5649 | /* 20333 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 20361 |
5650 | /* 20337 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5651 | /* 20340 */ MCD::OPC_FilterValueOrFail, 0, |
5652 | /* 20342 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5653 | /* 20345 */ MCD::OPC_FilterValueOrFail, 0, |
5654 | /* 20347 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20357 |
5655 | /* 20353 */ MCD::OPC_Decode, 202, 16, 121, // Opcode: PVFMAXLOvv, DecodeIdx: 121 |
5656 | /* 20357 */ MCD::OPC_Decode, 208, 16, 122, // Opcode: PVFMAXLOvvm, DecodeIdx: 122 |
5657 | /* 20361 */ MCD::OPC_FilterValue, 5, 24, 0, // Skip to: 20389 |
5658 | /* 20365 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5659 | /* 20368 */ MCD::OPC_FilterValueOrFail, 0, |
5660 | /* 20370 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5661 | /* 20373 */ MCD::OPC_FilterValueOrFail, 0, |
5662 | /* 20375 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20385 |
5663 | /* 20381 */ MCD::OPC_Decode, 182, 17, 121, // Opcode: PVFMINLOvv, DecodeIdx: 121 |
5664 | /* 20385 */ MCD::OPC_Decode, 188, 17, 122, // Opcode: PVFMINLOvvm, DecodeIdx: 122 |
5665 | /* 20389 */ MCD::OPC_FilterValue, 6, 68, 0, // Skip to: 20461 |
5666 | /* 20393 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5667 | /* 20396 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20429 |
5668 | /* 20400 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5669 | /* 20403 */ MCD::OPC_FilterValueOrFail, 0, |
5670 | /* 20405 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5671 | /* 20408 */ MCD::OPC_FilterValueOrFail, 0, |
5672 | /* 20410 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5673 | /* 20413 */ MCD::OPC_FilterValueOrFail, 0, |
5674 | /* 20415 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20425 |
5675 | /* 20421 */ MCD::OPC_Decode, 178, 16, 123, // Opcode: PVFMAXLOiv, DecodeIdx: 123 |
5676 | /* 20425 */ MCD::OPC_Decode, 184, 16, 124, // Opcode: PVFMAXLOivm, DecodeIdx: 124 |
5677 | /* 20429 */ MCD::OPC_FilterValueOrFail, 1, |
5678 | /* 20431 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5679 | /* 20434 */ MCD::OPC_FilterValueOrFail, 0, |
5680 | /* 20436 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5681 | /* 20439 */ MCD::OPC_FilterValueOrFail, 0, |
5682 | /* 20441 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5683 | /* 20444 */ MCD::OPC_FilterValueOrFail, 0, |
5684 | /* 20446 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20456 |
5685 | /* 20452 */ MCD::OPC_Decode, 190, 16, 127, // Opcode: PVFMAXLOrv, DecodeIdx: 127 |
5686 | /* 20456 */ MCD::OPC_Decode, 196, 16, 128, 1, // Opcode: PVFMAXLOrvm, DecodeIdx: 128 |
5687 | /* 20461 */ MCD::OPC_FilterValueOrFail, 7, |
5688 | /* 20463 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5689 | /* 20466 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20499 |
5690 | /* 20470 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5691 | /* 20473 */ MCD::OPC_FilterValueOrFail, 0, |
5692 | /* 20475 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5693 | /* 20478 */ MCD::OPC_FilterValueOrFail, 0, |
5694 | /* 20480 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5695 | /* 20483 */ MCD::OPC_FilterValueOrFail, 0, |
5696 | /* 20485 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20495 |
5697 | /* 20491 */ MCD::OPC_Decode, 158, 17, 123, // Opcode: PVFMINLOiv, DecodeIdx: 123 |
5698 | /* 20495 */ MCD::OPC_Decode, 164, 17, 124, // Opcode: PVFMINLOivm, DecodeIdx: 124 |
5699 | /* 20499 */ MCD::OPC_FilterValueOrFail, 1, |
5700 | /* 20501 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5701 | /* 20504 */ MCD::OPC_FilterValueOrFail, 0, |
5702 | /* 20506 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5703 | /* 20509 */ MCD::OPC_FilterValueOrFail, 0, |
5704 | /* 20511 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5705 | /* 20514 */ MCD::OPC_FilterValueOrFail, 0, |
5706 | /* 20516 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20526 |
5707 | /* 20522 */ MCD::OPC_Decode, 170, 17, 127, // Opcode: PVFMINLOrv, DecodeIdx: 127 |
5708 | /* 20526 */ MCD::OPC_Decode, 176, 17, 128, 1, // Opcode: PVFMINLOrvm, DecodeIdx: 128 |
5709 | /* 20531 */ MCD::OPC_FilterValue, 251, 2, 151, 1, // Skip to: 20943 |
5710 | /* 20536 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5711 | /* 20539 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 20567 |
5712 | /* 20543 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5713 | /* 20546 */ MCD::OPC_FilterValueOrFail, 0, |
5714 | /* 20548 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5715 | /* 20551 */ MCD::OPC_FilterValueOrFail, 0, |
5716 | /* 20553 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20563 |
5717 | /* 20559 */ MCD::OPC_Decode, 238, 16, 121, // Opcode: PVFMAXUPvv, DecodeIdx: 121 |
5718 | /* 20563 */ MCD::OPC_Decode, 244, 16, 122, // Opcode: PVFMAXUPvvm, DecodeIdx: 122 |
5719 | /* 20567 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 20595 |
5720 | /* 20571 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5721 | /* 20574 */ MCD::OPC_FilterValueOrFail, 0, |
5722 | /* 20576 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5723 | /* 20579 */ MCD::OPC_FilterValueOrFail, 0, |
5724 | /* 20581 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20591 |
5725 | /* 20587 */ MCD::OPC_Decode, 218, 17, 121, // Opcode: PVFMINUPvv, DecodeIdx: 121 |
5726 | /* 20591 */ MCD::OPC_Decode, 224, 17, 122, // Opcode: PVFMINUPvvm, DecodeIdx: 122 |
5727 | /* 20595 */ MCD::OPC_FilterValue, 2, 69, 0, // Skip to: 20668 |
5728 | /* 20599 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5729 | /* 20602 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20635 |
5730 | /* 20606 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5731 | /* 20609 */ MCD::OPC_FilterValueOrFail, 0, |
5732 | /* 20611 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5733 | /* 20614 */ MCD::OPC_FilterValueOrFail, 0, |
5734 | /* 20616 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5735 | /* 20619 */ MCD::OPC_FilterValueOrFail, 0, |
5736 | /* 20621 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20631 |
5737 | /* 20627 */ MCD::OPC_Decode, 214, 16, 123, // Opcode: PVFMAXUPiv, DecodeIdx: 123 |
5738 | /* 20631 */ MCD::OPC_Decode, 220, 16, 124, // Opcode: PVFMAXUPivm, DecodeIdx: 124 |
5739 | /* 20635 */ MCD::OPC_FilterValueOrFail, 1, |
5740 | /* 20637 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5741 | /* 20640 */ MCD::OPC_FilterValueOrFail, 0, |
5742 | /* 20642 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5743 | /* 20645 */ MCD::OPC_FilterValueOrFail, 0, |
5744 | /* 20647 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5745 | /* 20650 */ MCD::OPC_FilterValueOrFail, 0, |
5746 | /* 20652 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 20663 |
5747 | /* 20658 */ MCD::OPC_Decode, 226, 16, 210, 1, // Opcode: PVFMAXUPrv, DecodeIdx: 210 |
5748 | /* 20663 */ MCD::OPC_Decode, 232, 16, 211, 1, // Opcode: PVFMAXUPrvm, DecodeIdx: 211 |
5749 | /* 20668 */ MCD::OPC_FilterValue, 3, 69, 0, // Skip to: 20741 |
5750 | /* 20672 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5751 | /* 20675 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 20708 |
5752 | /* 20679 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5753 | /* 20682 */ MCD::OPC_FilterValueOrFail, 0, |
5754 | /* 20684 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5755 | /* 20687 */ MCD::OPC_FilterValueOrFail, 0, |
5756 | /* 20689 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5757 | /* 20692 */ MCD::OPC_FilterValueOrFail, 0, |
5758 | /* 20694 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20704 |
5759 | /* 20700 */ MCD::OPC_Decode, 194, 17, 123, // Opcode: PVFMINUPiv, DecodeIdx: 123 |
5760 | /* 20704 */ MCD::OPC_Decode, 200, 17, 124, // Opcode: PVFMINUPivm, DecodeIdx: 124 |
5761 | /* 20708 */ MCD::OPC_FilterValueOrFail, 1, |
5762 | /* 20710 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5763 | /* 20713 */ MCD::OPC_FilterValueOrFail, 0, |
5764 | /* 20715 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5765 | /* 20718 */ MCD::OPC_FilterValueOrFail, 0, |
5766 | /* 20720 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5767 | /* 20723 */ MCD::OPC_FilterValueOrFail, 0, |
5768 | /* 20725 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 20736 |
5769 | /* 20731 */ MCD::OPC_Decode, 206, 17, 210, 1, // Opcode: PVFMINUPrv, DecodeIdx: 210 |
5770 | /* 20736 */ MCD::OPC_Decode, 212, 17, 211, 1, // Opcode: PVFMINUPrvm, DecodeIdx: 211 |
5771 | /* 20741 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 20770 |
5772 | /* 20745 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5773 | /* 20748 */ MCD::OPC_FilterValueOrFail, 0, |
5774 | /* 20750 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5775 | /* 20753 */ MCD::OPC_FilterValueOrFail, 0, |
5776 | /* 20755 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20765 |
5777 | /* 20761 */ MCD::OPC_Decode, 146, 17, 121, // Opcode: PVFMAXvv, DecodeIdx: 121 |
5778 | /* 20765 */ MCD::OPC_Decode, 152, 17, 129, 1, // Opcode: PVFMAXvvm, DecodeIdx: 129 |
5779 | /* 20770 */ MCD::OPC_FilterValue, 5, 25, 0, // Skip to: 20799 |
5780 | /* 20774 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5781 | /* 20777 */ MCD::OPC_FilterValueOrFail, 0, |
5782 | /* 20779 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5783 | /* 20782 */ MCD::OPC_FilterValueOrFail, 0, |
5784 | /* 20784 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20794 |
5785 | /* 20790 */ MCD::OPC_Decode, 254, 17, 121, // Opcode: PVFMINvv, DecodeIdx: 121 |
5786 | /* 20794 */ MCD::OPC_Decode, 132, 18, 129, 1, // Opcode: PVFMINvvm, DecodeIdx: 129 |
5787 | /* 20799 */ MCD::OPC_FilterValue, 6, 69, 0, // Skip to: 20872 |
5788 | /* 20803 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5789 | /* 20806 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 20840 |
5790 | /* 20810 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5791 | /* 20813 */ MCD::OPC_FilterValueOrFail, 0, |
5792 | /* 20815 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5793 | /* 20818 */ MCD::OPC_FilterValueOrFail, 0, |
5794 | /* 20820 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5795 | /* 20823 */ MCD::OPC_FilterValueOrFail, 0, |
5796 | /* 20825 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20835 |
5797 | /* 20831 */ MCD::OPC_Decode, 250, 16, 123, // Opcode: PVFMAXiv, DecodeIdx: 123 |
5798 | /* 20835 */ MCD::OPC_Decode, 128, 17, 130, 1, // Opcode: PVFMAXivm, DecodeIdx: 130 |
5799 | /* 20840 */ MCD::OPC_FilterValueOrFail, 1, |
5800 | /* 20842 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5801 | /* 20845 */ MCD::OPC_FilterValueOrFail, 0, |
5802 | /* 20847 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5803 | /* 20850 */ MCD::OPC_FilterValueOrFail, 0, |
5804 | /* 20852 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5805 | /* 20855 */ MCD::OPC_FilterValueOrFail, 0, |
5806 | /* 20857 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20867 |
5807 | /* 20863 */ MCD::OPC_Decode, 134, 17, 127, // Opcode: PVFMAXrv, DecodeIdx: 127 |
5808 | /* 20867 */ MCD::OPC_Decode, 140, 17, 131, 1, // Opcode: PVFMAXrvm, DecodeIdx: 131 |
5809 | /* 20872 */ MCD::OPC_FilterValueOrFail, 7, |
5810 | /* 20874 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5811 | /* 20877 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 20911 |
5812 | /* 20881 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5813 | /* 20884 */ MCD::OPC_FilterValueOrFail, 0, |
5814 | /* 20886 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5815 | /* 20889 */ MCD::OPC_FilterValueOrFail, 0, |
5816 | /* 20891 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5817 | /* 20894 */ MCD::OPC_FilterValueOrFail, 0, |
5818 | /* 20896 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20906 |
5819 | /* 20902 */ MCD::OPC_Decode, 230, 17, 123, // Opcode: PVFMINiv, DecodeIdx: 123 |
5820 | /* 20906 */ MCD::OPC_Decode, 236, 17, 130, 1, // Opcode: PVFMINivm, DecodeIdx: 130 |
5821 | /* 20911 */ MCD::OPC_FilterValueOrFail, 1, |
5822 | /* 20913 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5823 | /* 20916 */ MCD::OPC_FilterValueOrFail, 0, |
5824 | /* 20918 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5825 | /* 20921 */ MCD::OPC_FilterValueOrFail, 0, |
5826 | /* 20923 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5827 | /* 20926 */ MCD::OPC_FilterValueOrFail, 0, |
5828 | /* 20928 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 20938 |
5829 | /* 20934 */ MCD::OPC_Decode, 242, 17, 127, // Opcode: PVFMINrv, DecodeIdx: 127 |
5830 | /* 20938 */ MCD::OPC_Decode, 248, 17, 131, 1, // Opcode: PVFMINrvm, DecodeIdx: 131 |
5831 | /* 20943 */ MCD::OPC_FilterValue, 254, 2, 26, 0, // Skip to: 20974 |
5832 | /* 20948 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5833 | /* 20951 */ MCD::OPC_FilterValue, 0, 9, 0, // Skip to: 20964 |
5834 | /* 20955 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
5835 | /* 20959 */ MCD::OPC_Decode, 168, 6, 212, 1, // Opcode: LVLi, DecodeIdx: 212 |
5836 | /* 20964 */ MCD::OPC_FilterValueOrFail, 1, |
5837 | /* 20966 */ MCD::OPC_CheckFieldOrFail, 0, 40, 0, |
5838 | /* 20970 */ MCD::OPC_Decode, 169, 6, 42, // Opcode: LVLr, DecodeIdx: 42 |
5839 | /* 20974 */ MCD::OPC_FilterValue, 130, 3, 119, 0, // Skip to: 21098 |
5840 | /* 20979 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5841 | /* 20982 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 21011 |
5842 | /* 20986 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5843 | /* 20989 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21001 |
5844 | /* 20993 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5845 | /* 20997 */ MCD::OPC_Decode, 161, 60, 114, // Opcode: VLD2DNCiz, DecodeIdx: 114 |
5846 | /* 21001 */ MCD::OPC_FilterValueOrFail, 1, |
5847 | /* 21003 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5848 | /* 21007 */ MCD::OPC_Decode, 155, 60, 115, // Opcode: VLD2DNCir, DecodeIdx: 115 |
5849 | /* 21011 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 21040 |
5850 | /* 21015 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5851 | /* 21018 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21030 |
5852 | /* 21022 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5853 | /* 21026 */ MCD::OPC_Decode, 173, 60, 116, // Opcode: VLD2DNCrz, DecodeIdx: 116 |
5854 | /* 21030 */ MCD::OPC_FilterValueOrFail, 1, |
5855 | /* 21032 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5856 | /* 21036 */ MCD::OPC_Decode, 167, 60, 117, // Opcode: VLD2DNCrr, DecodeIdx: 117 |
5857 | /* 21040 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 21070 |
5858 | /* 21045 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5859 | /* 21048 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21060 |
5860 | /* 21052 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5861 | /* 21056 */ MCD::OPC_Decode, 185, 60, 114, // Opcode: VLD2Diz, DecodeIdx: 114 |
5862 | /* 21060 */ MCD::OPC_FilterValueOrFail, 1, |
5863 | /* 21062 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5864 | /* 21066 */ MCD::OPC_Decode, 179, 60, 115, // Opcode: VLD2Dir, DecodeIdx: 115 |
5865 | /* 21070 */ MCD::OPC_FilterValueOrFail, 129, 1, |
5866 | /* 21073 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5867 | /* 21076 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21088 |
5868 | /* 21080 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5869 | /* 21084 */ MCD::OPC_Decode, 197, 60, 116, // Opcode: VLD2Drz, DecodeIdx: 116 |
5870 | /* 21088 */ MCD::OPC_FilterValueOrFail, 1, |
5871 | /* 21090 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5872 | /* 21094 */ MCD::OPC_Decode, 191, 60, 117, // Opcode: VLD2Drr, DecodeIdx: 117 |
5873 | /* 21098 */ MCD::OPC_FilterValue, 132, 3, 119, 0, // Skip to: 21222 |
5874 | /* 21103 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5875 | /* 21106 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 21135 |
5876 | /* 21110 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5877 | /* 21113 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21125 |
5878 | /* 21117 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5879 | /* 21121 */ MCD::OPC_Decode, 169, 62, 114, // Opcode: VLDU2DNCiz, DecodeIdx: 114 |
5880 | /* 21125 */ MCD::OPC_FilterValueOrFail, 1, |
5881 | /* 21127 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5882 | /* 21131 */ MCD::OPC_Decode, 163, 62, 115, // Opcode: VLDU2DNCir, DecodeIdx: 115 |
5883 | /* 21135 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 21164 |
5884 | /* 21139 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5885 | /* 21142 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21154 |
5886 | /* 21146 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5887 | /* 21150 */ MCD::OPC_Decode, 181, 62, 116, // Opcode: VLDU2DNCrz, DecodeIdx: 116 |
5888 | /* 21154 */ MCD::OPC_FilterValueOrFail, 1, |
5889 | /* 21156 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5890 | /* 21160 */ MCD::OPC_Decode, 175, 62, 117, // Opcode: VLDU2DNCrr, DecodeIdx: 117 |
5891 | /* 21164 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 21194 |
5892 | /* 21169 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5893 | /* 21172 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21184 |
5894 | /* 21176 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5895 | /* 21180 */ MCD::OPC_Decode, 193, 62, 114, // Opcode: VLDU2Diz, DecodeIdx: 114 |
5896 | /* 21184 */ MCD::OPC_FilterValueOrFail, 1, |
5897 | /* 21186 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5898 | /* 21190 */ MCD::OPC_Decode, 187, 62, 115, // Opcode: VLDU2Dir, DecodeIdx: 115 |
5899 | /* 21194 */ MCD::OPC_FilterValueOrFail, 129, 1, |
5900 | /* 21197 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5901 | /* 21200 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21212 |
5902 | /* 21204 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5903 | /* 21208 */ MCD::OPC_Decode, 205, 62, 116, // Opcode: VLDU2Drz, DecodeIdx: 116 |
5904 | /* 21212 */ MCD::OPC_FilterValueOrFail, 1, |
5905 | /* 21214 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5906 | /* 21218 */ MCD::OPC_Decode, 199, 62, 117, // Opcode: VLDU2Drr, DecodeIdx: 117 |
5907 | /* 21222 */ MCD::OPC_FilterValue, 134, 3, 119, 0, // Skip to: 21346 |
5908 | /* 21227 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5909 | /* 21230 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 21259 |
5910 | /* 21234 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5911 | /* 21237 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21249 |
5912 | /* 21241 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5913 | /* 21245 */ MCD::OPC_Decode, 209, 60, 114, // Opcode: VLDL2DSXNCiz, DecodeIdx: 114 |
5914 | /* 21249 */ MCD::OPC_FilterValueOrFail, 1, |
5915 | /* 21251 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5916 | /* 21255 */ MCD::OPC_Decode, 203, 60, 115, // Opcode: VLDL2DSXNCir, DecodeIdx: 115 |
5917 | /* 21259 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 21288 |
5918 | /* 21263 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5919 | /* 21266 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21278 |
5920 | /* 21270 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5921 | /* 21274 */ MCD::OPC_Decode, 221, 60, 116, // Opcode: VLDL2DSXNCrz, DecodeIdx: 116 |
5922 | /* 21278 */ MCD::OPC_FilterValueOrFail, 1, |
5923 | /* 21280 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5924 | /* 21284 */ MCD::OPC_Decode, 215, 60, 117, // Opcode: VLDL2DSXNCrr, DecodeIdx: 117 |
5925 | /* 21288 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 21318 |
5926 | /* 21293 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5927 | /* 21296 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21308 |
5928 | /* 21300 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5929 | /* 21304 */ MCD::OPC_Decode, 233, 60, 114, // Opcode: VLDL2DSXiz, DecodeIdx: 114 |
5930 | /* 21308 */ MCD::OPC_FilterValueOrFail, 1, |
5931 | /* 21310 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5932 | /* 21314 */ MCD::OPC_Decode, 227, 60, 115, // Opcode: VLDL2DSXir, DecodeIdx: 115 |
5933 | /* 21318 */ MCD::OPC_FilterValueOrFail, 129, 1, |
5934 | /* 21321 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5935 | /* 21324 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21336 |
5936 | /* 21328 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5937 | /* 21332 */ MCD::OPC_Decode, 245, 60, 116, // Opcode: VLDL2DSXrz, DecodeIdx: 116 |
5938 | /* 21336 */ MCD::OPC_FilterValueOrFail, 1, |
5939 | /* 21338 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5940 | /* 21342 */ MCD::OPC_Decode, 239, 60, 117, // Opcode: VLDL2DSXrr, DecodeIdx: 117 |
5941 | /* 21346 */ MCD::OPC_FilterValue, 135, 3, 119, 0, // Skip to: 21470 |
5942 | /* 21351 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
5943 | /* 21354 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 21383 |
5944 | /* 21358 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5945 | /* 21361 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21373 |
5946 | /* 21365 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5947 | /* 21369 */ MCD::OPC_Decode, 129, 61, 114, // Opcode: VLDL2DZXNCiz, DecodeIdx: 114 |
5948 | /* 21373 */ MCD::OPC_FilterValueOrFail, 1, |
5949 | /* 21375 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5950 | /* 21379 */ MCD::OPC_Decode, 251, 60, 115, // Opcode: VLDL2DZXNCir, DecodeIdx: 115 |
5951 | /* 21383 */ MCD::OPC_FilterValue, 1, 25, 0, // Skip to: 21412 |
5952 | /* 21387 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5953 | /* 21390 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21402 |
5954 | /* 21394 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5955 | /* 21398 */ MCD::OPC_Decode, 141, 61, 116, // Opcode: VLDL2DZXNCrz, DecodeIdx: 116 |
5956 | /* 21402 */ MCD::OPC_FilterValueOrFail, 1, |
5957 | /* 21404 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5958 | /* 21408 */ MCD::OPC_Decode, 135, 61, 117, // Opcode: VLDL2DZXNCrr, DecodeIdx: 117 |
5959 | /* 21412 */ MCD::OPC_FilterValue, 128, 1, 25, 0, // Skip to: 21442 |
5960 | /* 21417 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5961 | /* 21420 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21432 |
5962 | /* 21424 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5963 | /* 21428 */ MCD::OPC_Decode, 153, 61, 114, // Opcode: VLDL2DZXiz, DecodeIdx: 114 |
5964 | /* 21432 */ MCD::OPC_FilterValueOrFail, 1, |
5965 | /* 21434 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5966 | /* 21438 */ MCD::OPC_Decode, 147, 61, 115, // Opcode: VLDL2DZXir, DecodeIdx: 115 |
5967 | /* 21442 */ MCD::OPC_FilterValueOrFail, 129, 1, |
5968 | /* 21445 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
5969 | /* 21448 */ MCD::OPC_FilterValue, 0, 8, 0, // Skip to: 21460 |
5970 | /* 21452 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5971 | /* 21456 */ MCD::OPC_Decode, 165, 61, 116, // Opcode: VLDL2DZXrz, DecodeIdx: 116 |
5972 | /* 21460 */ MCD::OPC_FilterValueOrFail, 1, |
5973 | /* 21462 */ MCD::OPC_CheckFieldOrFail, 0, 24, 0, |
5974 | /* 21466 */ MCD::OPC_Decode, 159, 61, 117, // Opcode: VLDL2DZXrr, DecodeIdx: 117 |
5975 | /* 21470 */ MCD::OPC_FilterValue, 136, 3, 204, 0, // Skip to: 21679 |
5976 | /* 21475 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
5977 | /* 21478 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 21506 |
5978 | /* 21482 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5979 | /* 21485 */ MCD::OPC_FilterValueOrFail, 0, |
5980 | /* 21487 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
5981 | /* 21490 */ MCD::OPC_FilterValueOrFail, 0, |
5982 | /* 21492 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21502 |
5983 | /* 21498 */ MCD::OPC_Decode, 159, 37, 121, // Opcode: VANDvv, DecodeIdx: 121 |
5984 | /* 21502 */ MCD::OPC_Decode, 165, 37, 122, // Opcode: VANDvvm, DecodeIdx: 122 |
5985 | /* 21506 */ MCD::OPC_FilterValue, 2, 70, 0, // Skip to: 21580 |
5986 | /* 21510 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
5987 | /* 21513 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 21548 |
5988 | /* 21517 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5989 | /* 21520 */ MCD::OPC_FilterValueOrFail, 0, |
5990 | /* 21522 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
5991 | /* 21525 */ MCD::OPC_FilterValueOrFail, 0, |
5992 | /* 21527 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
5993 | /* 21530 */ MCD::OPC_FilterValueOrFail, 0, |
5994 | /* 21532 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21543 |
5995 | /* 21538 */ MCD::OPC_Decode, 135, 37, 158, 1, // Opcode: VANDmv, DecodeIdx: 158 |
5996 | /* 21543 */ MCD::OPC_Decode, 141, 37, 159, 1, // Opcode: VANDmvm, DecodeIdx: 159 |
5997 | /* 21548 */ MCD::OPC_FilterValueOrFail, 1, |
5998 | /* 21550 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
5999 | /* 21553 */ MCD::OPC_FilterValueOrFail, 0, |
6000 | /* 21555 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6001 | /* 21558 */ MCD::OPC_FilterValueOrFail, 0, |
6002 | /* 21560 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6003 | /* 21563 */ MCD::OPC_FilterValueOrFail, 0, |
6004 | /* 21565 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21575 |
6005 | /* 21571 */ MCD::OPC_Decode, 147, 37, 127, // Opcode: VANDrv, DecodeIdx: 127 |
6006 | /* 21575 */ MCD::OPC_Decode, 153, 37, 128, 1, // Opcode: VANDrvm, DecodeIdx: 128 |
6007 | /* 21580 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 21608 |
6008 | /* 21584 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6009 | /* 21587 */ MCD::OPC_FilterValueOrFail, 0, |
6010 | /* 21589 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6011 | /* 21592 */ MCD::OPC_FilterValueOrFail, 0, |
6012 | /* 21594 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21604 |
6013 | /* 21600 */ MCD::OPC_Decode, 138, 9, 121, // Opcode: PVANDLOvv, DecodeIdx: 121 |
6014 | /* 21604 */ MCD::OPC_Decode, 144, 9, 122, // Opcode: PVANDLOvvm, DecodeIdx: 122 |
6015 | /* 21608 */ MCD::OPC_FilterValueOrFail, 6, |
6016 | /* 21610 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6017 | /* 21613 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 21648 |
6018 | /* 21617 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6019 | /* 21620 */ MCD::OPC_FilterValueOrFail, 0, |
6020 | /* 21622 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6021 | /* 21625 */ MCD::OPC_FilterValueOrFail, 0, |
6022 | /* 21627 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6023 | /* 21630 */ MCD::OPC_FilterValueOrFail, 0, |
6024 | /* 21632 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21643 |
6025 | /* 21638 */ MCD::OPC_Decode, 242, 8, 158, 1, // Opcode: PVANDLOmv, DecodeIdx: 158 |
6026 | /* 21643 */ MCD::OPC_Decode, 248, 8, 159, 1, // Opcode: PVANDLOmvm, DecodeIdx: 159 |
6027 | /* 21648 */ MCD::OPC_FilterValueOrFail, 1, |
6028 | /* 21650 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6029 | /* 21653 */ MCD::OPC_FilterValueOrFail, 0, |
6030 | /* 21655 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6031 | /* 21658 */ MCD::OPC_FilterValueOrFail, 0, |
6032 | /* 21660 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6033 | /* 21663 */ MCD::OPC_FilterValueOrFail, 0, |
6034 | /* 21665 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21675 |
6035 | /* 21671 */ MCD::OPC_Decode, 254, 8, 125, // Opcode: PVANDLOrv, DecodeIdx: 125 |
6036 | /* 21675 */ MCD::OPC_Decode, 132, 9, 126, // Opcode: PVANDLOrvm, DecodeIdx: 126 |
6037 | /* 21679 */ MCD::OPC_FilterValue, 137, 3, 207, 0, // Skip to: 21891 |
6038 | /* 21684 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6039 | /* 21687 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 21715 |
6040 | /* 21691 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6041 | /* 21694 */ MCD::OPC_FilterValueOrFail, 0, |
6042 | /* 21696 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6043 | /* 21699 */ MCD::OPC_FilterValueOrFail, 0, |
6044 | /* 21701 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21711 |
6045 | /* 21707 */ MCD::OPC_Decode, 174, 9, 121, // Opcode: PVANDUPvv, DecodeIdx: 121 |
6046 | /* 21711 */ MCD::OPC_Decode, 180, 9, 122, // Opcode: PVANDUPvvm, DecodeIdx: 122 |
6047 | /* 21715 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 21790 |
6048 | /* 21719 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6049 | /* 21722 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 21757 |
6050 | /* 21726 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6051 | /* 21729 */ MCD::OPC_FilterValueOrFail, 0, |
6052 | /* 21731 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6053 | /* 21734 */ MCD::OPC_FilterValueOrFail, 0, |
6054 | /* 21736 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6055 | /* 21739 */ MCD::OPC_FilterValueOrFail, 0, |
6056 | /* 21741 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21752 |
6057 | /* 21747 */ MCD::OPC_Decode, 150, 9, 158, 1, // Opcode: PVANDUPmv, DecodeIdx: 158 |
6058 | /* 21752 */ MCD::OPC_Decode, 156, 9, 159, 1, // Opcode: PVANDUPmvm, DecodeIdx: 159 |
6059 | /* 21757 */ MCD::OPC_FilterValueOrFail, 1, |
6060 | /* 21759 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6061 | /* 21762 */ MCD::OPC_FilterValueOrFail, 0, |
6062 | /* 21764 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6063 | /* 21767 */ MCD::OPC_FilterValueOrFail, 0, |
6064 | /* 21769 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6065 | /* 21772 */ MCD::OPC_FilterValueOrFail, 0, |
6066 | /* 21774 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21785 |
6067 | /* 21780 */ MCD::OPC_Decode, 162, 9, 210, 1, // Opcode: PVANDUPrv, DecodeIdx: 210 |
6068 | /* 21785 */ MCD::OPC_Decode, 168, 9, 211, 1, // Opcode: PVANDUPrvm, DecodeIdx: 211 |
6069 | /* 21790 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 21819 |
6070 | /* 21794 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6071 | /* 21797 */ MCD::OPC_FilterValueOrFail, 0, |
6072 | /* 21799 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6073 | /* 21802 */ MCD::OPC_FilterValueOrFail, 0, |
6074 | /* 21804 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21814 |
6075 | /* 21810 */ MCD::OPC_Decode, 210, 9, 121, // Opcode: PVANDvv, DecodeIdx: 121 |
6076 | /* 21814 */ MCD::OPC_Decode, 216, 9, 129, 1, // Opcode: PVANDvvm, DecodeIdx: 129 |
6077 | /* 21819 */ MCD::OPC_FilterValueOrFail, 6, |
6078 | /* 21821 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6079 | /* 21824 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 21859 |
6080 | /* 21828 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6081 | /* 21831 */ MCD::OPC_FilterValueOrFail, 0, |
6082 | /* 21833 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6083 | /* 21836 */ MCD::OPC_FilterValueOrFail, 0, |
6084 | /* 21838 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6085 | /* 21841 */ MCD::OPC_FilterValueOrFail, 0, |
6086 | /* 21843 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21854 |
6087 | /* 21849 */ MCD::OPC_Decode, 186, 9, 158, 1, // Opcode: PVANDmv, DecodeIdx: 158 |
6088 | /* 21854 */ MCD::OPC_Decode, 192, 9, 213, 1, // Opcode: PVANDmvm, DecodeIdx: 213 |
6089 | /* 21859 */ MCD::OPC_FilterValueOrFail, 1, |
6090 | /* 21861 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6091 | /* 21864 */ MCD::OPC_FilterValueOrFail, 0, |
6092 | /* 21866 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6093 | /* 21869 */ MCD::OPC_FilterValueOrFail, 0, |
6094 | /* 21871 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6095 | /* 21874 */ MCD::OPC_FilterValueOrFail, 0, |
6096 | /* 21876 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21886 |
6097 | /* 21882 */ MCD::OPC_Decode, 198, 9, 127, // Opcode: PVANDrv, DecodeIdx: 127 |
6098 | /* 21886 */ MCD::OPC_Decode, 204, 9, 131, 1, // Opcode: PVANDrvm, DecodeIdx: 131 |
6099 | /* 21891 */ MCD::OPC_FilterValue, 138, 3, 204, 0, // Skip to: 22100 |
6100 | /* 21896 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6101 | /* 21899 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 21927 |
6102 | /* 21903 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6103 | /* 21906 */ MCD::OPC_FilterValueOrFail, 0, |
6104 | /* 21908 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6105 | /* 21911 */ MCD::OPC_FilterValueOrFail, 0, |
6106 | /* 21913 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21923 |
6107 | /* 21919 */ MCD::OPC_Decode, 207, 67, 121, // Opcode: VORvv, DecodeIdx: 121 |
6108 | /* 21923 */ MCD::OPC_Decode, 213, 67, 122, // Opcode: VORvvm, DecodeIdx: 122 |
6109 | /* 21927 */ MCD::OPC_FilterValue, 2, 70, 0, // Skip to: 22001 |
6110 | /* 21931 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6111 | /* 21934 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 21969 |
6112 | /* 21938 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6113 | /* 21941 */ MCD::OPC_FilterValueOrFail, 0, |
6114 | /* 21943 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6115 | /* 21946 */ MCD::OPC_FilterValueOrFail, 0, |
6116 | /* 21948 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6117 | /* 21951 */ MCD::OPC_FilterValueOrFail, 0, |
6118 | /* 21953 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 21964 |
6119 | /* 21959 */ MCD::OPC_Decode, 183, 67, 158, 1, // Opcode: VORmv, DecodeIdx: 158 |
6120 | /* 21964 */ MCD::OPC_Decode, 189, 67, 159, 1, // Opcode: VORmvm, DecodeIdx: 159 |
6121 | /* 21969 */ MCD::OPC_FilterValueOrFail, 1, |
6122 | /* 21971 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6123 | /* 21974 */ MCD::OPC_FilterValueOrFail, 0, |
6124 | /* 21976 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6125 | /* 21979 */ MCD::OPC_FilterValueOrFail, 0, |
6126 | /* 21981 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6127 | /* 21984 */ MCD::OPC_FilterValueOrFail, 0, |
6128 | /* 21986 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 21996 |
6129 | /* 21992 */ MCD::OPC_Decode, 195, 67, 127, // Opcode: VORrv, DecodeIdx: 127 |
6130 | /* 21996 */ MCD::OPC_Decode, 201, 67, 128, 1, // Opcode: VORrvm, DecodeIdx: 128 |
6131 | /* 22001 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 22029 |
6132 | /* 22005 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6133 | /* 22008 */ MCD::OPC_FilterValueOrFail, 0, |
6134 | /* 22010 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6135 | /* 22013 */ MCD::OPC_FilterValueOrFail, 0, |
6136 | /* 22015 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22025 |
6137 | /* 22021 */ MCD::OPC_Decode, 218, 26, 121, // Opcode: PVORLOvv, DecodeIdx: 121 |
6138 | /* 22025 */ MCD::OPC_Decode, 224, 26, 122, // Opcode: PVORLOvvm, DecodeIdx: 122 |
6139 | /* 22029 */ MCD::OPC_FilterValueOrFail, 6, |
6140 | /* 22031 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6141 | /* 22034 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22069 |
6142 | /* 22038 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6143 | /* 22041 */ MCD::OPC_FilterValueOrFail, 0, |
6144 | /* 22043 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6145 | /* 22046 */ MCD::OPC_FilterValueOrFail, 0, |
6146 | /* 22048 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6147 | /* 22051 */ MCD::OPC_FilterValueOrFail, 0, |
6148 | /* 22053 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22064 |
6149 | /* 22059 */ MCD::OPC_Decode, 194, 26, 158, 1, // Opcode: PVORLOmv, DecodeIdx: 158 |
6150 | /* 22064 */ MCD::OPC_Decode, 200, 26, 159, 1, // Opcode: PVORLOmvm, DecodeIdx: 159 |
6151 | /* 22069 */ MCD::OPC_FilterValueOrFail, 1, |
6152 | /* 22071 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6153 | /* 22074 */ MCD::OPC_FilterValueOrFail, 0, |
6154 | /* 22076 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6155 | /* 22079 */ MCD::OPC_FilterValueOrFail, 0, |
6156 | /* 22081 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6157 | /* 22084 */ MCD::OPC_FilterValueOrFail, 0, |
6158 | /* 22086 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22096 |
6159 | /* 22092 */ MCD::OPC_Decode, 206, 26, 125, // Opcode: PVORLOrv, DecodeIdx: 125 |
6160 | /* 22096 */ MCD::OPC_Decode, 212, 26, 126, // Opcode: PVORLOrvm, DecodeIdx: 126 |
6161 | /* 22100 */ MCD::OPC_FilterValue, 139, 3, 207, 0, // Skip to: 22312 |
6162 | /* 22105 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6163 | /* 22108 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 22136 |
6164 | /* 22112 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6165 | /* 22115 */ MCD::OPC_FilterValueOrFail, 0, |
6166 | /* 22117 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6167 | /* 22120 */ MCD::OPC_FilterValueOrFail, 0, |
6168 | /* 22122 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22132 |
6169 | /* 22128 */ MCD::OPC_Decode, 254, 26, 121, // Opcode: PVORUPvv, DecodeIdx: 121 |
6170 | /* 22132 */ MCD::OPC_Decode, 132, 27, 122, // Opcode: PVORUPvvm, DecodeIdx: 122 |
6171 | /* 22136 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 22211 |
6172 | /* 22140 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6173 | /* 22143 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22178 |
6174 | /* 22147 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6175 | /* 22150 */ MCD::OPC_FilterValueOrFail, 0, |
6176 | /* 22152 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6177 | /* 22155 */ MCD::OPC_FilterValueOrFail, 0, |
6178 | /* 22157 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6179 | /* 22160 */ MCD::OPC_FilterValueOrFail, 0, |
6180 | /* 22162 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22173 |
6181 | /* 22168 */ MCD::OPC_Decode, 230, 26, 158, 1, // Opcode: PVORUPmv, DecodeIdx: 158 |
6182 | /* 22173 */ MCD::OPC_Decode, 236, 26, 159, 1, // Opcode: PVORUPmvm, DecodeIdx: 159 |
6183 | /* 22178 */ MCD::OPC_FilterValueOrFail, 1, |
6184 | /* 22180 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6185 | /* 22183 */ MCD::OPC_FilterValueOrFail, 0, |
6186 | /* 22185 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6187 | /* 22188 */ MCD::OPC_FilterValueOrFail, 0, |
6188 | /* 22190 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6189 | /* 22193 */ MCD::OPC_FilterValueOrFail, 0, |
6190 | /* 22195 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22206 |
6191 | /* 22201 */ MCD::OPC_Decode, 242, 26, 210, 1, // Opcode: PVORUPrv, DecodeIdx: 210 |
6192 | /* 22206 */ MCD::OPC_Decode, 248, 26, 211, 1, // Opcode: PVORUPrvm, DecodeIdx: 211 |
6193 | /* 22211 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 22240 |
6194 | /* 22215 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6195 | /* 22218 */ MCD::OPC_FilterValueOrFail, 0, |
6196 | /* 22220 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6197 | /* 22223 */ MCD::OPC_FilterValueOrFail, 0, |
6198 | /* 22225 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22235 |
6199 | /* 22231 */ MCD::OPC_Decode, 162, 27, 121, // Opcode: PVORvv, DecodeIdx: 121 |
6200 | /* 22235 */ MCD::OPC_Decode, 168, 27, 129, 1, // Opcode: PVORvvm, DecodeIdx: 129 |
6201 | /* 22240 */ MCD::OPC_FilterValueOrFail, 6, |
6202 | /* 22242 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6203 | /* 22245 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22280 |
6204 | /* 22249 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6205 | /* 22252 */ MCD::OPC_FilterValueOrFail, 0, |
6206 | /* 22254 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6207 | /* 22257 */ MCD::OPC_FilterValueOrFail, 0, |
6208 | /* 22259 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6209 | /* 22262 */ MCD::OPC_FilterValueOrFail, 0, |
6210 | /* 22264 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22275 |
6211 | /* 22270 */ MCD::OPC_Decode, 138, 27, 158, 1, // Opcode: PVORmv, DecodeIdx: 158 |
6212 | /* 22275 */ MCD::OPC_Decode, 144, 27, 213, 1, // Opcode: PVORmvm, DecodeIdx: 213 |
6213 | /* 22280 */ MCD::OPC_FilterValueOrFail, 1, |
6214 | /* 22282 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6215 | /* 22285 */ MCD::OPC_FilterValueOrFail, 0, |
6216 | /* 22287 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6217 | /* 22290 */ MCD::OPC_FilterValueOrFail, 0, |
6218 | /* 22292 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6219 | /* 22295 */ MCD::OPC_FilterValueOrFail, 0, |
6220 | /* 22297 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22307 |
6221 | /* 22303 */ MCD::OPC_Decode, 150, 27, 127, // Opcode: PVORrv, DecodeIdx: 127 |
6222 | /* 22307 */ MCD::OPC_Decode, 156, 27, 131, 1, // Opcode: PVORrvm, DecodeIdx: 131 |
6223 | /* 22312 */ MCD::OPC_FilterValue, 140, 3, 204, 0, // Skip to: 22521 |
6224 | /* 22317 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6225 | /* 22320 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 22348 |
6226 | /* 22324 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6227 | /* 22327 */ MCD::OPC_FilterValueOrFail, 0, |
6228 | /* 22329 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6229 | /* 22332 */ MCD::OPC_FilterValueOrFail, 0, |
6230 | /* 22334 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22344 |
6231 | /* 22340 */ MCD::OPC_Decode, 235, 83, 121, // Opcode: VXORvv, DecodeIdx: 121 |
6232 | /* 22344 */ MCD::OPC_Decode, 241, 83, 122, // Opcode: VXORvvm, DecodeIdx: 122 |
6233 | /* 22348 */ MCD::OPC_FilterValue, 2, 70, 0, // Skip to: 22422 |
6234 | /* 22352 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6235 | /* 22355 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22390 |
6236 | /* 22359 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6237 | /* 22362 */ MCD::OPC_FilterValueOrFail, 0, |
6238 | /* 22364 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6239 | /* 22367 */ MCD::OPC_FilterValueOrFail, 0, |
6240 | /* 22369 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6241 | /* 22372 */ MCD::OPC_FilterValueOrFail, 0, |
6242 | /* 22374 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22385 |
6243 | /* 22380 */ MCD::OPC_Decode, 211, 83, 158, 1, // Opcode: VXORmv, DecodeIdx: 158 |
6244 | /* 22385 */ MCD::OPC_Decode, 217, 83, 159, 1, // Opcode: VXORmvm, DecodeIdx: 159 |
6245 | /* 22390 */ MCD::OPC_FilterValueOrFail, 1, |
6246 | /* 22392 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6247 | /* 22395 */ MCD::OPC_FilterValueOrFail, 0, |
6248 | /* 22397 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6249 | /* 22400 */ MCD::OPC_FilterValueOrFail, 0, |
6250 | /* 22402 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6251 | /* 22405 */ MCD::OPC_FilterValueOrFail, 0, |
6252 | /* 22407 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22417 |
6253 | /* 22413 */ MCD::OPC_Decode, 223, 83, 127, // Opcode: VXORrv, DecodeIdx: 127 |
6254 | /* 22417 */ MCD::OPC_Decode, 229, 83, 128, 1, // Opcode: VXORrvm, DecodeIdx: 128 |
6255 | /* 22422 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 22450 |
6256 | /* 22426 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6257 | /* 22429 */ MCD::OPC_FilterValueOrFail, 0, |
6258 | /* 22431 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6259 | /* 22434 */ MCD::OPC_FilterValueOrFail, 0, |
6260 | /* 22436 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22446 |
6261 | /* 22442 */ MCD::OPC_Decode, 130, 34, 121, // Opcode: PVXORLOvv, DecodeIdx: 121 |
6262 | /* 22446 */ MCD::OPC_Decode, 136, 34, 122, // Opcode: PVXORLOvvm, DecodeIdx: 122 |
6263 | /* 22450 */ MCD::OPC_FilterValueOrFail, 6, |
6264 | /* 22452 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6265 | /* 22455 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22490 |
6266 | /* 22459 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6267 | /* 22462 */ MCD::OPC_FilterValueOrFail, 0, |
6268 | /* 22464 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6269 | /* 22467 */ MCD::OPC_FilterValueOrFail, 0, |
6270 | /* 22469 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6271 | /* 22472 */ MCD::OPC_FilterValueOrFail, 0, |
6272 | /* 22474 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22485 |
6273 | /* 22480 */ MCD::OPC_Decode, 234, 33, 158, 1, // Opcode: PVXORLOmv, DecodeIdx: 158 |
6274 | /* 22485 */ MCD::OPC_Decode, 240, 33, 159, 1, // Opcode: PVXORLOmvm, DecodeIdx: 159 |
6275 | /* 22490 */ MCD::OPC_FilterValueOrFail, 1, |
6276 | /* 22492 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6277 | /* 22495 */ MCD::OPC_FilterValueOrFail, 0, |
6278 | /* 22497 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6279 | /* 22500 */ MCD::OPC_FilterValueOrFail, 0, |
6280 | /* 22502 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6281 | /* 22505 */ MCD::OPC_FilterValueOrFail, 0, |
6282 | /* 22507 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22517 |
6283 | /* 22513 */ MCD::OPC_Decode, 246, 33, 125, // Opcode: PVXORLOrv, DecodeIdx: 125 |
6284 | /* 22517 */ MCD::OPC_Decode, 252, 33, 126, // Opcode: PVXORLOrvm, DecodeIdx: 126 |
6285 | /* 22521 */ MCD::OPC_FilterValue, 141, 3, 207, 0, // Skip to: 22733 |
6286 | /* 22526 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6287 | /* 22529 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 22557 |
6288 | /* 22533 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6289 | /* 22536 */ MCD::OPC_FilterValueOrFail, 0, |
6290 | /* 22538 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6291 | /* 22541 */ MCD::OPC_FilterValueOrFail, 0, |
6292 | /* 22543 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22553 |
6293 | /* 22549 */ MCD::OPC_Decode, 166, 34, 121, // Opcode: PVXORUPvv, DecodeIdx: 121 |
6294 | /* 22553 */ MCD::OPC_Decode, 172, 34, 122, // Opcode: PVXORUPvvm, DecodeIdx: 122 |
6295 | /* 22557 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 22632 |
6296 | /* 22561 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6297 | /* 22564 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22599 |
6298 | /* 22568 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6299 | /* 22571 */ MCD::OPC_FilterValueOrFail, 0, |
6300 | /* 22573 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6301 | /* 22576 */ MCD::OPC_FilterValueOrFail, 0, |
6302 | /* 22578 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6303 | /* 22581 */ MCD::OPC_FilterValueOrFail, 0, |
6304 | /* 22583 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22594 |
6305 | /* 22589 */ MCD::OPC_Decode, 142, 34, 158, 1, // Opcode: PVXORUPmv, DecodeIdx: 158 |
6306 | /* 22594 */ MCD::OPC_Decode, 148, 34, 159, 1, // Opcode: PVXORUPmvm, DecodeIdx: 159 |
6307 | /* 22599 */ MCD::OPC_FilterValueOrFail, 1, |
6308 | /* 22601 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6309 | /* 22604 */ MCD::OPC_FilterValueOrFail, 0, |
6310 | /* 22606 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6311 | /* 22609 */ MCD::OPC_FilterValueOrFail, 0, |
6312 | /* 22611 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6313 | /* 22614 */ MCD::OPC_FilterValueOrFail, 0, |
6314 | /* 22616 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22627 |
6315 | /* 22622 */ MCD::OPC_Decode, 154, 34, 210, 1, // Opcode: PVXORUPrv, DecodeIdx: 210 |
6316 | /* 22627 */ MCD::OPC_Decode, 160, 34, 211, 1, // Opcode: PVXORUPrvm, DecodeIdx: 211 |
6317 | /* 22632 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 22661 |
6318 | /* 22636 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6319 | /* 22639 */ MCD::OPC_FilterValueOrFail, 0, |
6320 | /* 22641 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6321 | /* 22644 */ MCD::OPC_FilterValueOrFail, 0, |
6322 | /* 22646 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22656 |
6323 | /* 22652 */ MCD::OPC_Decode, 202, 34, 121, // Opcode: PVXORvv, DecodeIdx: 121 |
6324 | /* 22656 */ MCD::OPC_Decode, 208, 34, 129, 1, // Opcode: PVXORvvm, DecodeIdx: 129 |
6325 | /* 22661 */ MCD::OPC_FilterValueOrFail, 6, |
6326 | /* 22663 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6327 | /* 22666 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22701 |
6328 | /* 22670 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6329 | /* 22673 */ MCD::OPC_FilterValueOrFail, 0, |
6330 | /* 22675 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6331 | /* 22678 */ MCD::OPC_FilterValueOrFail, 0, |
6332 | /* 22680 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6333 | /* 22683 */ MCD::OPC_FilterValueOrFail, 0, |
6334 | /* 22685 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22696 |
6335 | /* 22691 */ MCD::OPC_Decode, 178, 34, 158, 1, // Opcode: PVXORmv, DecodeIdx: 158 |
6336 | /* 22696 */ MCD::OPC_Decode, 184, 34, 213, 1, // Opcode: PVXORmvm, DecodeIdx: 213 |
6337 | /* 22701 */ MCD::OPC_FilterValueOrFail, 1, |
6338 | /* 22703 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6339 | /* 22706 */ MCD::OPC_FilterValueOrFail, 0, |
6340 | /* 22708 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6341 | /* 22711 */ MCD::OPC_FilterValueOrFail, 0, |
6342 | /* 22713 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6343 | /* 22716 */ MCD::OPC_FilterValueOrFail, 0, |
6344 | /* 22718 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22728 |
6345 | /* 22724 */ MCD::OPC_Decode, 190, 34, 127, // Opcode: PVXORrv, DecodeIdx: 127 |
6346 | /* 22728 */ MCD::OPC_Decode, 196, 34, 131, 1, // Opcode: PVXORrvm, DecodeIdx: 131 |
6347 | /* 22733 */ MCD::OPC_FilterValue, 142, 3, 204, 0, // Skip to: 22942 |
6348 | /* 22738 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6349 | /* 22741 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 22769 |
6350 | /* 22745 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6351 | /* 22748 */ MCD::OPC_FilterValueOrFail, 0, |
6352 | /* 22750 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6353 | /* 22753 */ MCD::OPC_FilterValueOrFail, 0, |
6354 | /* 22755 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22765 |
6355 | /* 22761 */ MCD::OPC_Decode, 251, 42, 121, // Opcode: VEQVvv, DecodeIdx: 121 |
6356 | /* 22765 */ MCD::OPC_Decode, 129, 43, 122, // Opcode: VEQVvvm, DecodeIdx: 122 |
6357 | /* 22769 */ MCD::OPC_FilterValue, 2, 70, 0, // Skip to: 22843 |
6358 | /* 22773 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6359 | /* 22776 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22811 |
6360 | /* 22780 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6361 | /* 22783 */ MCD::OPC_FilterValueOrFail, 0, |
6362 | /* 22785 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6363 | /* 22788 */ MCD::OPC_FilterValueOrFail, 0, |
6364 | /* 22790 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6365 | /* 22793 */ MCD::OPC_FilterValueOrFail, 0, |
6366 | /* 22795 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22806 |
6367 | /* 22801 */ MCD::OPC_Decode, 227, 42, 158, 1, // Opcode: VEQVmv, DecodeIdx: 158 |
6368 | /* 22806 */ MCD::OPC_Decode, 233, 42, 159, 1, // Opcode: VEQVmvm, DecodeIdx: 159 |
6369 | /* 22811 */ MCD::OPC_FilterValueOrFail, 1, |
6370 | /* 22813 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6371 | /* 22816 */ MCD::OPC_FilterValueOrFail, 0, |
6372 | /* 22818 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6373 | /* 22821 */ MCD::OPC_FilterValueOrFail, 0, |
6374 | /* 22823 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6375 | /* 22826 */ MCD::OPC_FilterValueOrFail, 0, |
6376 | /* 22828 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22838 |
6377 | /* 22834 */ MCD::OPC_Decode, 239, 42, 127, // Opcode: VEQVrv, DecodeIdx: 127 |
6378 | /* 22838 */ MCD::OPC_Decode, 245, 42, 128, 1, // Opcode: VEQVrvm, DecodeIdx: 128 |
6379 | /* 22843 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 22871 |
6380 | /* 22847 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6381 | /* 22850 */ MCD::OPC_FilterValueOrFail, 0, |
6382 | /* 22852 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6383 | /* 22855 */ MCD::OPC_FilterValueOrFail, 0, |
6384 | /* 22857 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22867 |
6385 | /* 22863 */ MCD::OPC_Decode, 210, 12, 121, // Opcode: PVEQVLOvv, DecodeIdx: 121 |
6386 | /* 22867 */ MCD::OPC_Decode, 216, 12, 122, // Opcode: PVEQVLOvvm, DecodeIdx: 122 |
6387 | /* 22871 */ MCD::OPC_FilterValueOrFail, 6, |
6388 | /* 22873 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6389 | /* 22876 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 22911 |
6390 | /* 22880 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6391 | /* 22883 */ MCD::OPC_FilterValueOrFail, 0, |
6392 | /* 22885 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6393 | /* 22888 */ MCD::OPC_FilterValueOrFail, 0, |
6394 | /* 22890 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6395 | /* 22893 */ MCD::OPC_FilterValueOrFail, 0, |
6396 | /* 22895 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 22906 |
6397 | /* 22901 */ MCD::OPC_Decode, 186, 12, 158, 1, // Opcode: PVEQVLOmv, DecodeIdx: 158 |
6398 | /* 22906 */ MCD::OPC_Decode, 192, 12, 159, 1, // Opcode: PVEQVLOmvm, DecodeIdx: 159 |
6399 | /* 22911 */ MCD::OPC_FilterValueOrFail, 1, |
6400 | /* 22913 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6401 | /* 22916 */ MCD::OPC_FilterValueOrFail, 0, |
6402 | /* 22918 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6403 | /* 22921 */ MCD::OPC_FilterValueOrFail, 0, |
6404 | /* 22923 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6405 | /* 22926 */ MCD::OPC_FilterValueOrFail, 0, |
6406 | /* 22928 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22938 |
6407 | /* 22934 */ MCD::OPC_Decode, 198, 12, 125, // Opcode: PVEQVLOrv, DecodeIdx: 125 |
6408 | /* 22938 */ MCD::OPC_Decode, 204, 12, 126, // Opcode: PVEQVLOrvm, DecodeIdx: 126 |
6409 | /* 22942 */ MCD::OPC_FilterValue, 143, 3, 207, 0, // Skip to: 23154 |
6410 | /* 22947 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6411 | /* 22950 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 22978 |
6412 | /* 22954 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6413 | /* 22957 */ MCD::OPC_FilterValueOrFail, 0, |
6414 | /* 22959 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6415 | /* 22962 */ MCD::OPC_FilterValueOrFail, 0, |
6416 | /* 22964 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 22974 |
6417 | /* 22970 */ MCD::OPC_Decode, 246, 12, 121, // Opcode: PVEQVUPvv, DecodeIdx: 121 |
6418 | /* 22974 */ MCD::OPC_Decode, 252, 12, 122, // Opcode: PVEQVUPvvm, DecodeIdx: 122 |
6419 | /* 22978 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 23053 |
6420 | /* 22982 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6421 | /* 22985 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 23020 |
6422 | /* 22989 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6423 | /* 22992 */ MCD::OPC_FilterValueOrFail, 0, |
6424 | /* 22994 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6425 | /* 22997 */ MCD::OPC_FilterValueOrFail, 0, |
6426 | /* 22999 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6427 | /* 23002 */ MCD::OPC_FilterValueOrFail, 0, |
6428 | /* 23004 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 23015 |
6429 | /* 23010 */ MCD::OPC_Decode, 222, 12, 158, 1, // Opcode: PVEQVUPmv, DecodeIdx: 158 |
6430 | /* 23015 */ MCD::OPC_Decode, 228, 12, 159, 1, // Opcode: PVEQVUPmvm, DecodeIdx: 159 |
6431 | /* 23020 */ MCD::OPC_FilterValueOrFail, 1, |
6432 | /* 23022 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6433 | /* 23025 */ MCD::OPC_FilterValueOrFail, 0, |
6434 | /* 23027 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6435 | /* 23030 */ MCD::OPC_FilterValueOrFail, 0, |
6436 | /* 23032 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6437 | /* 23035 */ MCD::OPC_FilterValueOrFail, 0, |
6438 | /* 23037 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 23048 |
6439 | /* 23043 */ MCD::OPC_Decode, 234, 12, 210, 1, // Opcode: PVEQVUPrv, DecodeIdx: 210 |
6440 | /* 23048 */ MCD::OPC_Decode, 240, 12, 211, 1, // Opcode: PVEQVUPrvm, DecodeIdx: 211 |
6441 | /* 23053 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 23082 |
6442 | /* 23057 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6443 | /* 23060 */ MCD::OPC_FilterValueOrFail, 0, |
6444 | /* 23062 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6445 | /* 23065 */ MCD::OPC_FilterValueOrFail, 0, |
6446 | /* 23067 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23077 |
6447 | /* 23073 */ MCD::OPC_Decode, 154, 13, 121, // Opcode: PVEQVvv, DecodeIdx: 121 |
6448 | /* 23077 */ MCD::OPC_Decode, 160, 13, 129, 1, // Opcode: PVEQVvvm, DecodeIdx: 129 |
6449 | /* 23082 */ MCD::OPC_FilterValueOrFail, 6, |
6450 | /* 23084 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6451 | /* 23087 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 23122 |
6452 | /* 23091 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6453 | /* 23094 */ MCD::OPC_FilterValueOrFail, 0, |
6454 | /* 23096 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6455 | /* 23099 */ MCD::OPC_FilterValueOrFail, 0, |
6456 | /* 23101 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6457 | /* 23104 */ MCD::OPC_FilterValueOrFail, 0, |
6458 | /* 23106 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 23117 |
6459 | /* 23112 */ MCD::OPC_Decode, 130, 13, 158, 1, // Opcode: PVEQVmv, DecodeIdx: 158 |
6460 | /* 23117 */ MCD::OPC_Decode, 136, 13, 213, 1, // Opcode: PVEQVmvm, DecodeIdx: 213 |
6461 | /* 23122 */ MCD::OPC_FilterValueOrFail, 1, |
6462 | /* 23124 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6463 | /* 23127 */ MCD::OPC_FilterValueOrFail, 0, |
6464 | /* 23129 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6465 | /* 23132 */ MCD::OPC_FilterValueOrFail, 0, |
6466 | /* 23134 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6467 | /* 23137 */ MCD::OPC_FilterValueOrFail, 0, |
6468 | /* 23139 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23149 |
6469 | /* 23145 */ MCD::OPC_Decode, 142, 13, 127, // Opcode: PVEQVrv, DecodeIdx: 127 |
6470 | /* 23149 */ MCD::OPC_Decode, 148, 13, 131, 1, // Opcode: PVEQVrvm, DecodeIdx: 131 |
6471 | /* 23154 */ MCD::OPC_FilterValue, 144, 3, 200, 0, // Skip to: 23359 |
6472 | /* 23159 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6473 | /* 23162 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 23190 |
6474 | /* 23166 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6475 | /* 23169 */ MCD::OPC_FilterValueOrFail, 0, |
6476 | /* 23171 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6477 | /* 23174 */ MCD::OPC_FilterValueOrFail, 0, |
6478 | /* 23176 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23186 |
6479 | /* 23182 */ MCD::OPC_Decode, 215, 36, 121, // Opcode: VADDULvv, DecodeIdx: 121 |
6480 | /* 23186 */ MCD::OPC_Decode, 221, 36, 122, // Opcode: VADDULvvm, DecodeIdx: 122 |
6481 | /* 23190 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 23262 |
6482 | /* 23194 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6483 | /* 23197 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23230 |
6484 | /* 23201 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6485 | /* 23204 */ MCD::OPC_FilterValueOrFail, 0, |
6486 | /* 23206 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6487 | /* 23209 */ MCD::OPC_FilterValueOrFail, 0, |
6488 | /* 23211 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6489 | /* 23214 */ MCD::OPC_FilterValueOrFail, 0, |
6490 | /* 23216 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23226 |
6491 | /* 23222 */ MCD::OPC_Decode, 191, 36, 123, // Opcode: VADDULiv, DecodeIdx: 123 |
6492 | /* 23226 */ MCD::OPC_Decode, 197, 36, 124, // Opcode: VADDULivm, DecodeIdx: 124 |
6493 | /* 23230 */ MCD::OPC_FilterValueOrFail, 1, |
6494 | /* 23232 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6495 | /* 23235 */ MCD::OPC_FilterValueOrFail, 0, |
6496 | /* 23237 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6497 | /* 23240 */ MCD::OPC_FilterValueOrFail, 0, |
6498 | /* 23242 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6499 | /* 23245 */ MCD::OPC_FilterValueOrFail, 0, |
6500 | /* 23247 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23257 |
6501 | /* 23253 */ MCD::OPC_Decode, 203, 36, 127, // Opcode: VADDULrv, DecodeIdx: 127 |
6502 | /* 23257 */ MCD::OPC_Decode, 209, 36, 128, 1, // Opcode: VADDULrvm, DecodeIdx: 128 |
6503 | /* 23262 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 23290 |
6504 | /* 23266 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6505 | /* 23269 */ MCD::OPC_FilterValueOrFail, 0, |
6506 | /* 23271 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6507 | /* 23274 */ MCD::OPC_FilterValueOrFail, 0, |
6508 | /* 23276 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23286 |
6509 | /* 23282 */ MCD::OPC_Decode, 158, 8, 121, // Opcode: PVADDULOvv, DecodeIdx: 121 |
6510 | /* 23286 */ MCD::OPC_Decode, 164, 8, 122, // Opcode: PVADDULOvvm, DecodeIdx: 122 |
6511 | /* 23290 */ MCD::OPC_FilterValueOrFail, 6, |
6512 | /* 23292 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6513 | /* 23295 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23328 |
6514 | /* 23299 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6515 | /* 23302 */ MCD::OPC_FilterValueOrFail, 0, |
6516 | /* 23304 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6517 | /* 23307 */ MCD::OPC_FilterValueOrFail, 0, |
6518 | /* 23309 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6519 | /* 23312 */ MCD::OPC_FilterValueOrFail, 0, |
6520 | /* 23314 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23324 |
6521 | /* 23320 */ MCD::OPC_Decode, 134, 8, 123, // Opcode: PVADDULOiv, DecodeIdx: 123 |
6522 | /* 23324 */ MCD::OPC_Decode, 140, 8, 124, // Opcode: PVADDULOivm, DecodeIdx: 124 |
6523 | /* 23328 */ MCD::OPC_FilterValueOrFail, 1, |
6524 | /* 23330 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6525 | /* 23333 */ MCD::OPC_FilterValueOrFail, 0, |
6526 | /* 23335 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6527 | /* 23338 */ MCD::OPC_FilterValueOrFail, 0, |
6528 | /* 23340 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6529 | /* 23343 */ MCD::OPC_FilterValueOrFail, 0, |
6530 | /* 23345 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23355 |
6531 | /* 23351 */ MCD::OPC_Decode, 146, 8, 125, // Opcode: PVADDULOrv, DecodeIdx: 125 |
6532 | /* 23355 */ MCD::OPC_Decode, 152, 8, 126, // Opcode: PVADDULOrvm, DecodeIdx: 126 |
6533 | /* 23359 */ MCD::OPC_FilterValue, 145, 3, 203, 0, // Skip to: 23567 |
6534 | /* 23364 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6535 | /* 23367 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 23395 |
6536 | /* 23371 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6537 | /* 23374 */ MCD::OPC_FilterValueOrFail, 0, |
6538 | /* 23376 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6539 | /* 23379 */ MCD::OPC_FilterValueOrFail, 0, |
6540 | /* 23381 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23391 |
6541 | /* 23387 */ MCD::OPC_Decode, 194, 8, 121, // Opcode: PVADDUUPvv, DecodeIdx: 121 |
6542 | /* 23391 */ MCD::OPC_Decode, 200, 8, 122, // Opcode: PVADDUUPvvm, DecodeIdx: 122 |
6543 | /* 23395 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 23467 |
6544 | /* 23399 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6545 | /* 23402 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23435 |
6546 | /* 23406 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6547 | /* 23409 */ MCD::OPC_FilterValueOrFail, 0, |
6548 | /* 23411 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6549 | /* 23414 */ MCD::OPC_FilterValueOrFail, 0, |
6550 | /* 23416 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6551 | /* 23419 */ MCD::OPC_FilterValueOrFail, 0, |
6552 | /* 23421 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23431 |
6553 | /* 23427 */ MCD::OPC_Decode, 170, 8, 123, // Opcode: PVADDUUPiv, DecodeIdx: 123 |
6554 | /* 23431 */ MCD::OPC_Decode, 176, 8, 124, // Opcode: PVADDUUPivm, DecodeIdx: 124 |
6555 | /* 23435 */ MCD::OPC_FilterValueOrFail, 1, |
6556 | /* 23437 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6557 | /* 23440 */ MCD::OPC_FilterValueOrFail, 0, |
6558 | /* 23442 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6559 | /* 23445 */ MCD::OPC_FilterValueOrFail, 0, |
6560 | /* 23447 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6561 | /* 23450 */ MCD::OPC_FilterValueOrFail, 0, |
6562 | /* 23452 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23462 |
6563 | /* 23458 */ MCD::OPC_Decode, 182, 8, 127, // Opcode: PVADDUUPrv, DecodeIdx: 127 |
6564 | /* 23462 */ MCD::OPC_Decode, 188, 8, 128, 1, // Opcode: PVADDUUPrvm, DecodeIdx: 128 |
6565 | /* 23467 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 23496 |
6566 | /* 23471 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6567 | /* 23474 */ MCD::OPC_FilterValueOrFail, 0, |
6568 | /* 23476 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6569 | /* 23479 */ MCD::OPC_FilterValueOrFail, 0, |
6570 | /* 23481 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23491 |
6571 | /* 23487 */ MCD::OPC_Decode, 230, 8, 121, // Opcode: PVADDUvv, DecodeIdx: 121 |
6572 | /* 23491 */ MCD::OPC_Decode, 236, 8, 129, 1, // Opcode: PVADDUvvm, DecodeIdx: 129 |
6573 | /* 23496 */ MCD::OPC_FilterValueOrFail, 6, |
6574 | /* 23498 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6575 | /* 23501 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 23535 |
6576 | /* 23505 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6577 | /* 23508 */ MCD::OPC_FilterValueOrFail, 0, |
6578 | /* 23510 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6579 | /* 23513 */ MCD::OPC_FilterValueOrFail, 0, |
6580 | /* 23515 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6581 | /* 23518 */ MCD::OPC_FilterValueOrFail, 0, |
6582 | /* 23520 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23530 |
6583 | /* 23526 */ MCD::OPC_Decode, 206, 8, 123, // Opcode: PVADDUiv, DecodeIdx: 123 |
6584 | /* 23530 */ MCD::OPC_Decode, 212, 8, 130, 1, // Opcode: PVADDUivm, DecodeIdx: 130 |
6585 | /* 23535 */ MCD::OPC_FilterValueOrFail, 1, |
6586 | /* 23537 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6587 | /* 23540 */ MCD::OPC_FilterValueOrFail, 0, |
6588 | /* 23542 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6589 | /* 23545 */ MCD::OPC_FilterValueOrFail, 0, |
6590 | /* 23547 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6591 | /* 23550 */ MCD::OPC_FilterValueOrFail, 0, |
6592 | /* 23552 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23562 |
6593 | /* 23558 */ MCD::OPC_Decode, 218, 8, 127, // Opcode: PVADDUrv, DecodeIdx: 127 |
6594 | /* 23562 */ MCD::OPC_Decode, 224, 8, 131, 1, // Opcode: PVADDUrvm, DecodeIdx: 131 |
6595 | /* 23567 */ MCD::OPC_FilterValue, 146, 3, 200, 0, // Skip to: 23772 |
6596 | /* 23572 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6597 | /* 23575 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 23603 |
6598 | /* 23579 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6599 | /* 23582 */ MCD::OPC_FilterValueOrFail, 0, |
6600 | /* 23584 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6601 | /* 23587 */ MCD::OPC_FilterValueOrFail, 0, |
6602 | /* 23589 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23599 |
6603 | /* 23595 */ MCD::OPC_Decode, 239, 66, 121, // Opcode: VMULULvv, DecodeIdx: 121 |
6604 | /* 23599 */ MCD::OPC_Decode, 245, 66, 122, // Opcode: VMULULvvm, DecodeIdx: 122 |
6605 | /* 23603 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 23675 |
6606 | /* 23607 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6607 | /* 23610 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23643 |
6608 | /* 23614 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6609 | /* 23617 */ MCD::OPC_FilterValueOrFail, 0, |
6610 | /* 23619 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6611 | /* 23622 */ MCD::OPC_FilterValueOrFail, 0, |
6612 | /* 23624 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6613 | /* 23627 */ MCD::OPC_FilterValueOrFail, 0, |
6614 | /* 23629 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23639 |
6615 | /* 23635 */ MCD::OPC_Decode, 215, 66, 123, // Opcode: VMULULiv, DecodeIdx: 123 |
6616 | /* 23639 */ MCD::OPC_Decode, 221, 66, 124, // Opcode: VMULULivm, DecodeIdx: 124 |
6617 | /* 23643 */ MCD::OPC_FilterValueOrFail, 1, |
6618 | /* 23645 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6619 | /* 23648 */ MCD::OPC_FilterValueOrFail, 0, |
6620 | /* 23650 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6621 | /* 23653 */ MCD::OPC_FilterValueOrFail, 0, |
6622 | /* 23655 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6623 | /* 23658 */ MCD::OPC_FilterValueOrFail, 0, |
6624 | /* 23660 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23670 |
6625 | /* 23666 */ MCD::OPC_Decode, 227, 66, 127, // Opcode: VMULULrv, DecodeIdx: 127 |
6626 | /* 23670 */ MCD::OPC_Decode, 233, 66, 128, 1, // Opcode: VMULULrvm, DecodeIdx: 128 |
6627 | /* 23675 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 23703 |
6628 | /* 23679 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6629 | /* 23682 */ MCD::OPC_FilterValueOrFail, 0, |
6630 | /* 23684 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6631 | /* 23687 */ MCD::OPC_FilterValueOrFail, 0, |
6632 | /* 23689 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23699 |
6633 | /* 23695 */ MCD::OPC_Decode, 147, 67, 121, // Opcode: VMULUWvv, DecodeIdx: 121 |
6634 | /* 23699 */ MCD::OPC_Decode, 153, 67, 122, // Opcode: VMULUWvvm, DecodeIdx: 122 |
6635 | /* 23703 */ MCD::OPC_FilterValueOrFail, 6, |
6636 | /* 23705 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6637 | /* 23708 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23741 |
6638 | /* 23712 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6639 | /* 23715 */ MCD::OPC_FilterValueOrFail, 0, |
6640 | /* 23717 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6641 | /* 23720 */ MCD::OPC_FilterValueOrFail, 0, |
6642 | /* 23722 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6643 | /* 23725 */ MCD::OPC_FilterValueOrFail, 0, |
6644 | /* 23727 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23737 |
6645 | /* 23733 */ MCD::OPC_Decode, 251, 66, 123, // Opcode: VMULUWiv, DecodeIdx: 123 |
6646 | /* 23737 */ MCD::OPC_Decode, 129, 67, 124, // Opcode: VMULUWivm, DecodeIdx: 124 |
6647 | /* 23741 */ MCD::OPC_FilterValueOrFail, 1, |
6648 | /* 23743 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6649 | /* 23746 */ MCD::OPC_FilterValueOrFail, 0, |
6650 | /* 23748 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6651 | /* 23751 */ MCD::OPC_FilterValueOrFail, 0, |
6652 | /* 23753 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6653 | /* 23756 */ MCD::OPC_FilterValueOrFail, 0, |
6654 | /* 23758 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23768 |
6655 | /* 23764 */ MCD::OPC_Decode, 135, 67, 125, // Opcode: VMULUWrv, DecodeIdx: 125 |
6656 | /* 23768 */ MCD::OPC_Decode, 141, 67, 126, // Opcode: VMULUWrvm, DecodeIdx: 126 |
6657 | /* 23772 */ MCD::OPC_FilterValue, 148, 3, 199, 0, // Skip to: 23976 |
6658 | /* 23777 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6659 | /* 23780 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 23808 |
6660 | /* 23784 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6661 | /* 23787 */ MCD::OPC_FilterValueOrFail, 0, |
6662 | /* 23789 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6663 | /* 23792 */ MCD::OPC_FilterValueOrFail, 0, |
6664 | /* 23794 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23804 |
6665 | /* 23800 */ MCD::OPC_Decode, 143, 36, 121, // Opcode: VADDSWSXvv, DecodeIdx: 121 |
6666 | /* 23804 */ MCD::OPC_Decode, 149, 36, 122, // Opcode: VADDSWSXvvm, DecodeIdx: 122 |
6667 | /* 23808 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 23879 |
6668 | /* 23812 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6669 | /* 23815 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23848 |
6670 | /* 23819 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6671 | /* 23822 */ MCD::OPC_FilterValueOrFail, 0, |
6672 | /* 23824 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6673 | /* 23827 */ MCD::OPC_FilterValueOrFail, 0, |
6674 | /* 23829 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6675 | /* 23832 */ MCD::OPC_FilterValueOrFail, 0, |
6676 | /* 23834 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23844 |
6677 | /* 23840 */ MCD::OPC_Decode, 247, 35, 123, // Opcode: VADDSWSXiv, DecodeIdx: 123 |
6678 | /* 23844 */ MCD::OPC_Decode, 253, 35, 124, // Opcode: VADDSWSXivm, DecodeIdx: 124 |
6679 | /* 23848 */ MCD::OPC_FilterValueOrFail, 1, |
6680 | /* 23850 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6681 | /* 23853 */ MCD::OPC_FilterValueOrFail, 0, |
6682 | /* 23855 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6683 | /* 23858 */ MCD::OPC_FilterValueOrFail, 0, |
6684 | /* 23860 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6685 | /* 23863 */ MCD::OPC_FilterValueOrFail, 0, |
6686 | /* 23865 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23875 |
6687 | /* 23871 */ MCD::OPC_Decode, 131, 36, 125, // Opcode: VADDSWSXrv, DecodeIdx: 125 |
6688 | /* 23875 */ MCD::OPC_Decode, 137, 36, 126, // Opcode: VADDSWSXrvm, DecodeIdx: 126 |
6689 | /* 23879 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 23907 |
6690 | /* 23883 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6691 | /* 23886 */ MCD::OPC_FilterValueOrFail, 0, |
6692 | /* 23888 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6693 | /* 23891 */ MCD::OPC_FilterValueOrFail, 0, |
6694 | /* 23893 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23903 |
6695 | /* 23899 */ MCD::OPC_Decode, 178, 7, 121, // Opcode: PVADDSLOvv, DecodeIdx: 121 |
6696 | /* 23903 */ MCD::OPC_Decode, 184, 7, 122, // Opcode: PVADDSLOvvm, DecodeIdx: 122 |
6697 | /* 23907 */ MCD::OPC_FilterValueOrFail, 6, |
6698 | /* 23909 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6699 | /* 23912 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 23945 |
6700 | /* 23916 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6701 | /* 23919 */ MCD::OPC_FilterValueOrFail, 0, |
6702 | /* 23921 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6703 | /* 23924 */ MCD::OPC_FilterValueOrFail, 0, |
6704 | /* 23926 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6705 | /* 23929 */ MCD::OPC_FilterValueOrFail, 0, |
6706 | /* 23931 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23941 |
6707 | /* 23937 */ MCD::OPC_Decode, 154, 7, 123, // Opcode: PVADDSLOiv, DecodeIdx: 123 |
6708 | /* 23941 */ MCD::OPC_Decode, 160, 7, 124, // Opcode: PVADDSLOivm, DecodeIdx: 124 |
6709 | /* 23945 */ MCD::OPC_FilterValueOrFail, 1, |
6710 | /* 23947 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6711 | /* 23950 */ MCD::OPC_FilterValueOrFail, 0, |
6712 | /* 23952 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6713 | /* 23955 */ MCD::OPC_FilterValueOrFail, 0, |
6714 | /* 23957 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6715 | /* 23960 */ MCD::OPC_FilterValueOrFail, 0, |
6716 | /* 23962 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 23972 |
6717 | /* 23968 */ MCD::OPC_Decode, 166, 7, 125, // Opcode: PVADDSLOrv, DecodeIdx: 125 |
6718 | /* 23972 */ MCD::OPC_Decode, 172, 7, 126, // Opcode: PVADDSLOrvm, DecodeIdx: 126 |
6719 | /* 23976 */ MCD::OPC_FilterValue, 149, 3, 203, 0, // Skip to: 24184 |
6720 | /* 23981 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6721 | /* 23984 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 24012 |
6722 | /* 23988 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6723 | /* 23991 */ MCD::OPC_FilterValueOrFail, 0, |
6724 | /* 23993 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6725 | /* 23996 */ MCD::OPC_FilterValueOrFail, 0, |
6726 | /* 23998 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24008 |
6727 | /* 24004 */ MCD::OPC_Decode, 214, 7, 121, // Opcode: PVADDSUPvv, DecodeIdx: 121 |
6728 | /* 24008 */ MCD::OPC_Decode, 220, 7, 122, // Opcode: PVADDSUPvvm, DecodeIdx: 122 |
6729 | /* 24012 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 24084 |
6730 | /* 24016 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6731 | /* 24019 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24052 |
6732 | /* 24023 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6733 | /* 24026 */ MCD::OPC_FilterValueOrFail, 0, |
6734 | /* 24028 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6735 | /* 24031 */ MCD::OPC_FilterValueOrFail, 0, |
6736 | /* 24033 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6737 | /* 24036 */ MCD::OPC_FilterValueOrFail, 0, |
6738 | /* 24038 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24048 |
6739 | /* 24044 */ MCD::OPC_Decode, 190, 7, 123, // Opcode: PVADDSUPiv, DecodeIdx: 123 |
6740 | /* 24048 */ MCD::OPC_Decode, 196, 7, 124, // Opcode: PVADDSUPivm, DecodeIdx: 124 |
6741 | /* 24052 */ MCD::OPC_FilterValueOrFail, 1, |
6742 | /* 24054 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6743 | /* 24057 */ MCD::OPC_FilterValueOrFail, 0, |
6744 | /* 24059 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6745 | /* 24062 */ MCD::OPC_FilterValueOrFail, 0, |
6746 | /* 24064 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6747 | /* 24067 */ MCD::OPC_FilterValueOrFail, 0, |
6748 | /* 24069 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24079 |
6749 | /* 24075 */ MCD::OPC_Decode, 202, 7, 127, // Opcode: PVADDSUPrv, DecodeIdx: 127 |
6750 | /* 24079 */ MCD::OPC_Decode, 208, 7, 128, 1, // Opcode: PVADDSUPrvm, DecodeIdx: 128 |
6751 | /* 24084 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 24113 |
6752 | /* 24088 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6753 | /* 24091 */ MCD::OPC_FilterValueOrFail, 0, |
6754 | /* 24093 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6755 | /* 24096 */ MCD::OPC_FilterValueOrFail, 0, |
6756 | /* 24098 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24108 |
6757 | /* 24104 */ MCD::OPC_Decode, 250, 7, 121, // Opcode: PVADDSvv, DecodeIdx: 121 |
6758 | /* 24108 */ MCD::OPC_Decode, 128, 8, 129, 1, // Opcode: PVADDSvvm, DecodeIdx: 129 |
6759 | /* 24113 */ MCD::OPC_FilterValueOrFail, 6, |
6760 | /* 24115 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6761 | /* 24118 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 24152 |
6762 | /* 24122 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6763 | /* 24125 */ MCD::OPC_FilterValueOrFail, 0, |
6764 | /* 24127 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6765 | /* 24130 */ MCD::OPC_FilterValueOrFail, 0, |
6766 | /* 24132 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6767 | /* 24135 */ MCD::OPC_FilterValueOrFail, 0, |
6768 | /* 24137 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24147 |
6769 | /* 24143 */ MCD::OPC_Decode, 226, 7, 123, // Opcode: PVADDSiv, DecodeIdx: 123 |
6770 | /* 24147 */ MCD::OPC_Decode, 232, 7, 130, 1, // Opcode: PVADDSivm, DecodeIdx: 130 |
6771 | /* 24152 */ MCD::OPC_FilterValueOrFail, 1, |
6772 | /* 24154 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6773 | /* 24157 */ MCD::OPC_FilterValueOrFail, 0, |
6774 | /* 24159 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6775 | /* 24162 */ MCD::OPC_FilterValueOrFail, 0, |
6776 | /* 24164 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6777 | /* 24167 */ MCD::OPC_FilterValueOrFail, 0, |
6778 | /* 24169 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24179 |
6779 | /* 24175 */ MCD::OPC_Decode, 238, 7, 127, // Opcode: PVADDSrv, DecodeIdx: 127 |
6780 | /* 24179 */ MCD::OPC_Decode, 244, 7, 131, 1, // Opcode: PVADDSrvm, DecodeIdx: 131 |
6781 | /* 24184 */ MCD::OPC_FilterValue, 150, 3, 199, 0, // Skip to: 24388 |
6782 | /* 24189 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6783 | /* 24192 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 24220 |
6784 | /* 24196 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6785 | /* 24199 */ MCD::OPC_FilterValueOrFail, 0, |
6786 | /* 24201 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6787 | /* 24204 */ MCD::OPC_FilterValueOrFail, 0, |
6788 | /* 24206 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24216 |
6789 | /* 24212 */ MCD::OPC_Decode, 167, 66, 121, // Opcode: VMULSWSXvv, DecodeIdx: 121 |
6790 | /* 24216 */ MCD::OPC_Decode, 173, 66, 122, // Opcode: VMULSWSXvvm, DecodeIdx: 122 |
6791 | /* 24220 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 24291 |
6792 | /* 24224 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6793 | /* 24227 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24260 |
6794 | /* 24231 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6795 | /* 24234 */ MCD::OPC_FilterValueOrFail, 0, |
6796 | /* 24236 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6797 | /* 24239 */ MCD::OPC_FilterValueOrFail, 0, |
6798 | /* 24241 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6799 | /* 24244 */ MCD::OPC_FilterValueOrFail, 0, |
6800 | /* 24246 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24256 |
6801 | /* 24252 */ MCD::OPC_Decode, 143, 66, 123, // Opcode: VMULSWSXiv, DecodeIdx: 123 |
6802 | /* 24256 */ MCD::OPC_Decode, 149, 66, 124, // Opcode: VMULSWSXivm, DecodeIdx: 124 |
6803 | /* 24260 */ MCD::OPC_FilterValueOrFail, 1, |
6804 | /* 24262 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6805 | /* 24265 */ MCD::OPC_FilterValueOrFail, 0, |
6806 | /* 24267 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6807 | /* 24270 */ MCD::OPC_FilterValueOrFail, 0, |
6808 | /* 24272 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6809 | /* 24275 */ MCD::OPC_FilterValueOrFail, 0, |
6810 | /* 24277 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24287 |
6811 | /* 24283 */ MCD::OPC_Decode, 155, 66, 125, // Opcode: VMULSWSXrv, DecodeIdx: 125 |
6812 | /* 24287 */ MCD::OPC_Decode, 161, 66, 126, // Opcode: VMULSWSXrvm, DecodeIdx: 126 |
6813 | /* 24291 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 24319 |
6814 | /* 24295 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6815 | /* 24298 */ MCD::OPC_FilterValueOrFail, 0, |
6816 | /* 24300 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6817 | /* 24303 */ MCD::OPC_FilterValueOrFail, 0, |
6818 | /* 24305 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24315 |
6819 | /* 24311 */ MCD::OPC_Decode, 203, 66, 121, // Opcode: VMULSWZXvv, DecodeIdx: 121 |
6820 | /* 24315 */ MCD::OPC_Decode, 209, 66, 122, // Opcode: VMULSWZXvvm, DecodeIdx: 122 |
6821 | /* 24319 */ MCD::OPC_FilterValueOrFail, 6, |
6822 | /* 24321 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6823 | /* 24324 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24357 |
6824 | /* 24328 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6825 | /* 24331 */ MCD::OPC_FilterValueOrFail, 0, |
6826 | /* 24333 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6827 | /* 24336 */ MCD::OPC_FilterValueOrFail, 0, |
6828 | /* 24338 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6829 | /* 24341 */ MCD::OPC_FilterValueOrFail, 0, |
6830 | /* 24343 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24353 |
6831 | /* 24349 */ MCD::OPC_Decode, 179, 66, 123, // Opcode: VMULSWZXiv, DecodeIdx: 123 |
6832 | /* 24353 */ MCD::OPC_Decode, 185, 66, 124, // Opcode: VMULSWZXivm, DecodeIdx: 124 |
6833 | /* 24357 */ MCD::OPC_FilterValueOrFail, 1, |
6834 | /* 24359 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6835 | /* 24362 */ MCD::OPC_FilterValueOrFail, 0, |
6836 | /* 24364 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6837 | /* 24367 */ MCD::OPC_FilterValueOrFail, 0, |
6838 | /* 24369 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6839 | /* 24372 */ MCD::OPC_FilterValueOrFail, 0, |
6840 | /* 24374 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24384 |
6841 | /* 24380 */ MCD::OPC_Decode, 191, 66, 125, // Opcode: VMULSWZXrv, DecodeIdx: 125 |
6842 | /* 24384 */ MCD::OPC_Decode, 197, 66, 126, // Opcode: VMULSWZXrvm, DecodeIdx: 126 |
6843 | /* 24388 */ MCD::OPC_FilterValue, 152, 3, 201, 0, // Skip to: 24594 |
6844 | /* 24393 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6845 | /* 24396 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 24424 |
6846 | /* 24400 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6847 | /* 24403 */ MCD::OPC_FilterValueOrFail, 0, |
6848 | /* 24405 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6849 | /* 24408 */ MCD::OPC_FilterValueOrFail, 0, |
6850 | /* 24410 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24420 |
6851 | /* 24416 */ MCD::OPC_Decode, 171, 43, 121, // Opcode: VFADDDvv, DecodeIdx: 121 |
6852 | /* 24420 */ MCD::OPC_Decode, 177, 43, 122, // Opcode: VFADDDvvm, DecodeIdx: 122 |
6853 | /* 24424 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 24496 |
6854 | /* 24428 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6855 | /* 24431 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24464 |
6856 | /* 24435 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6857 | /* 24438 */ MCD::OPC_FilterValueOrFail, 0, |
6858 | /* 24440 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6859 | /* 24443 */ MCD::OPC_FilterValueOrFail, 0, |
6860 | /* 24445 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6861 | /* 24448 */ MCD::OPC_FilterValueOrFail, 0, |
6862 | /* 24450 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24460 |
6863 | /* 24456 */ MCD::OPC_Decode, 147, 43, 123, // Opcode: VFADDDiv, DecodeIdx: 123 |
6864 | /* 24460 */ MCD::OPC_Decode, 153, 43, 124, // Opcode: VFADDDivm, DecodeIdx: 124 |
6865 | /* 24464 */ MCD::OPC_FilterValueOrFail, 1, |
6866 | /* 24466 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6867 | /* 24469 */ MCD::OPC_FilterValueOrFail, 0, |
6868 | /* 24471 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6869 | /* 24474 */ MCD::OPC_FilterValueOrFail, 0, |
6870 | /* 24476 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6871 | /* 24479 */ MCD::OPC_FilterValueOrFail, 0, |
6872 | /* 24481 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24491 |
6873 | /* 24487 */ MCD::OPC_Decode, 159, 43, 127, // Opcode: VFADDDrv, DecodeIdx: 127 |
6874 | /* 24491 */ MCD::OPC_Decode, 165, 43, 128, 1, // Opcode: VFADDDrvm, DecodeIdx: 128 |
6875 | /* 24496 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 24524 |
6876 | /* 24500 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6877 | /* 24503 */ MCD::OPC_FilterValueOrFail, 0, |
6878 | /* 24505 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6879 | /* 24508 */ MCD::OPC_FilterValueOrFail, 0, |
6880 | /* 24510 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24520 |
6881 | /* 24516 */ MCD::OPC_Decode, 190, 13, 121, // Opcode: PVFADDLOvv, DecodeIdx: 121 |
6882 | /* 24520 */ MCD::OPC_Decode, 196, 13, 122, // Opcode: PVFADDLOvvm, DecodeIdx: 122 |
6883 | /* 24524 */ MCD::OPC_FilterValueOrFail, 6, |
6884 | /* 24526 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6885 | /* 24529 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24562 |
6886 | /* 24533 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6887 | /* 24536 */ MCD::OPC_FilterValueOrFail, 0, |
6888 | /* 24538 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6889 | /* 24541 */ MCD::OPC_FilterValueOrFail, 0, |
6890 | /* 24543 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6891 | /* 24546 */ MCD::OPC_FilterValueOrFail, 0, |
6892 | /* 24548 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24558 |
6893 | /* 24554 */ MCD::OPC_Decode, 166, 13, 123, // Opcode: PVFADDLOiv, DecodeIdx: 123 |
6894 | /* 24558 */ MCD::OPC_Decode, 172, 13, 124, // Opcode: PVFADDLOivm, DecodeIdx: 124 |
6895 | /* 24562 */ MCD::OPC_FilterValueOrFail, 1, |
6896 | /* 24564 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6897 | /* 24567 */ MCD::OPC_FilterValueOrFail, 0, |
6898 | /* 24569 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6899 | /* 24572 */ MCD::OPC_FilterValueOrFail, 0, |
6900 | /* 24574 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6901 | /* 24577 */ MCD::OPC_FilterValueOrFail, 0, |
6902 | /* 24579 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24589 |
6903 | /* 24585 */ MCD::OPC_Decode, 178, 13, 127, // Opcode: PVFADDLOrv, DecodeIdx: 127 |
6904 | /* 24589 */ MCD::OPC_Decode, 184, 13, 128, 1, // Opcode: PVFADDLOrvm, DecodeIdx: 128 |
6905 | /* 24594 */ MCD::OPC_FilterValue, 153, 3, 204, 0, // Skip to: 24803 |
6906 | /* 24599 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6907 | /* 24602 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 24630 |
6908 | /* 24606 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6909 | /* 24609 */ MCD::OPC_FilterValueOrFail, 0, |
6910 | /* 24611 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6911 | /* 24614 */ MCD::OPC_FilterValueOrFail, 0, |
6912 | /* 24616 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24626 |
6913 | /* 24622 */ MCD::OPC_Decode, 226, 13, 121, // Opcode: PVFADDUPvv, DecodeIdx: 121 |
6914 | /* 24626 */ MCD::OPC_Decode, 232, 13, 122, // Opcode: PVFADDUPvvm, DecodeIdx: 122 |
6915 | /* 24630 */ MCD::OPC_FilterValue, 2, 69, 0, // Skip to: 24703 |
6916 | /* 24634 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6917 | /* 24637 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24670 |
6918 | /* 24641 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6919 | /* 24644 */ MCD::OPC_FilterValueOrFail, 0, |
6920 | /* 24646 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6921 | /* 24649 */ MCD::OPC_FilterValueOrFail, 0, |
6922 | /* 24651 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6923 | /* 24654 */ MCD::OPC_FilterValueOrFail, 0, |
6924 | /* 24656 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24666 |
6925 | /* 24662 */ MCD::OPC_Decode, 202, 13, 123, // Opcode: PVFADDUPiv, DecodeIdx: 123 |
6926 | /* 24666 */ MCD::OPC_Decode, 208, 13, 124, // Opcode: PVFADDUPivm, DecodeIdx: 124 |
6927 | /* 24670 */ MCD::OPC_FilterValueOrFail, 1, |
6928 | /* 24672 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6929 | /* 24675 */ MCD::OPC_FilterValueOrFail, 0, |
6930 | /* 24677 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6931 | /* 24680 */ MCD::OPC_FilterValueOrFail, 0, |
6932 | /* 24682 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6933 | /* 24685 */ MCD::OPC_FilterValueOrFail, 0, |
6934 | /* 24687 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 24698 |
6935 | /* 24693 */ MCD::OPC_Decode, 214, 13, 210, 1, // Opcode: PVFADDUPrv, DecodeIdx: 210 |
6936 | /* 24698 */ MCD::OPC_Decode, 220, 13, 211, 1, // Opcode: PVFADDUPrvm, DecodeIdx: 211 |
6937 | /* 24703 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 24732 |
6938 | /* 24707 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6939 | /* 24710 */ MCD::OPC_FilterValueOrFail, 0, |
6940 | /* 24712 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6941 | /* 24715 */ MCD::OPC_FilterValueOrFail, 0, |
6942 | /* 24717 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24727 |
6943 | /* 24723 */ MCD::OPC_Decode, 134, 14, 121, // Opcode: PVFADDvv, DecodeIdx: 121 |
6944 | /* 24727 */ MCD::OPC_Decode, 140, 14, 129, 1, // Opcode: PVFADDvvm, DecodeIdx: 129 |
6945 | /* 24732 */ MCD::OPC_FilterValueOrFail, 6, |
6946 | /* 24734 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6947 | /* 24737 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 24771 |
6948 | /* 24741 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6949 | /* 24744 */ MCD::OPC_FilterValueOrFail, 0, |
6950 | /* 24746 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6951 | /* 24749 */ MCD::OPC_FilterValueOrFail, 0, |
6952 | /* 24751 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6953 | /* 24754 */ MCD::OPC_FilterValueOrFail, 0, |
6954 | /* 24756 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24766 |
6955 | /* 24762 */ MCD::OPC_Decode, 238, 13, 123, // Opcode: PVFADDiv, DecodeIdx: 123 |
6956 | /* 24766 */ MCD::OPC_Decode, 244, 13, 130, 1, // Opcode: PVFADDivm, DecodeIdx: 130 |
6957 | /* 24771 */ MCD::OPC_FilterValueOrFail, 1, |
6958 | /* 24773 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6959 | /* 24776 */ MCD::OPC_FilterValueOrFail, 0, |
6960 | /* 24778 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6961 | /* 24781 */ MCD::OPC_FilterValueOrFail, 0, |
6962 | /* 24783 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6963 | /* 24786 */ MCD::OPC_FilterValueOrFail, 0, |
6964 | /* 24788 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24798 |
6965 | /* 24794 */ MCD::OPC_Decode, 250, 13, 127, // Opcode: PVFADDrv, DecodeIdx: 127 |
6966 | /* 24798 */ MCD::OPC_Decode, 128, 14, 131, 1, // Opcode: PVFADDrvm, DecodeIdx: 131 |
6967 | /* 24803 */ MCD::OPC_FilterValue, 154, 3, 201, 0, // Skip to: 25009 |
6968 | /* 24808 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
6969 | /* 24811 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 24839 |
6970 | /* 24815 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6971 | /* 24818 */ MCD::OPC_FilterValueOrFail, 0, |
6972 | /* 24820 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
6973 | /* 24823 */ MCD::OPC_FilterValueOrFail, 0, |
6974 | /* 24825 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24835 |
6975 | /* 24831 */ MCD::OPC_Decode, 163, 50, 121, // Opcode: VFMULDvv, DecodeIdx: 121 |
6976 | /* 24835 */ MCD::OPC_Decode, 169, 50, 122, // Opcode: VFMULDvvm, DecodeIdx: 122 |
6977 | /* 24839 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 24911 |
6978 | /* 24843 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
6979 | /* 24846 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24879 |
6980 | /* 24850 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6981 | /* 24853 */ MCD::OPC_FilterValueOrFail, 0, |
6982 | /* 24855 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6983 | /* 24858 */ MCD::OPC_FilterValueOrFail, 0, |
6984 | /* 24860 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6985 | /* 24863 */ MCD::OPC_FilterValueOrFail, 0, |
6986 | /* 24865 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24875 |
6987 | /* 24871 */ MCD::OPC_Decode, 139, 50, 123, // Opcode: VFMULDiv, DecodeIdx: 123 |
6988 | /* 24875 */ MCD::OPC_Decode, 145, 50, 124, // Opcode: VFMULDivm, DecodeIdx: 124 |
6989 | /* 24879 */ MCD::OPC_FilterValueOrFail, 1, |
6990 | /* 24881 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
6991 | /* 24884 */ MCD::OPC_FilterValueOrFail, 0, |
6992 | /* 24886 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
6993 | /* 24889 */ MCD::OPC_FilterValueOrFail, 0, |
6994 | /* 24891 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
6995 | /* 24894 */ MCD::OPC_FilterValueOrFail, 0, |
6996 | /* 24896 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24906 |
6997 | /* 24902 */ MCD::OPC_Decode, 151, 50, 127, // Opcode: VFMULDrv, DecodeIdx: 127 |
6998 | /* 24906 */ MCD::OPC_Decode, 157, 50, 128, 1, // Opcode: VFMULDrvm, DecodeIdx: 128 |
6999 | /* 24911 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 24939 |
7000 | /* 24915 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7001 | /* 24918 */ MCD::OPC_FilterValueOrFail, 0, |
7002 | /* 24920 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7003 | /* 24923 */ MCD::OPC_FilterValueOrFail, 0, |
7004 | /* 24925 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24935 |
7005 | /* 24931 */ MCD::OPC_Decode, 158, 20, 121, // Opcode: PVFMULLOvv, DecodeIdx: 121 |
7006 | /* 24935 */ MCD::OPC_Decode, 164, 20, 122, // Opcode: PVFMULLOvvm, DecodeIdx: 122 |
7007 | /* 24939 */ MCD::OPC_FilterValueOrFail, 6, |
7008 | /* 24941 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7009 | /* 24944 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 24977 |
7010 | /* 24948 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7011 | /* 24951 */ MCD::OPC_FilterValueOrFail, 0, |
7012 | /* 24953 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7013 | /* 24956 */ MCD::OPC_FilterValueOrFail, 0, |
7014 | /* 24958 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7015 | /* 24961 */ MCD::OPC_FilterValueOrFail, 0, |
7016 | /* 24963 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 24973 |
7017 | /* 24969 */ MCD::OPC_Decode, 134, 20, 123, // Opcode: PVFMULLOiv, DecodeIdx: 123 |
7018 | /* 24973 */ MCD::OPC_Decode, 140, 20, 124, // Opcode: PVFMULLOivm, DecodeIdx: 124 |
7019 | /* 24977 */ MCD::OPC_FilterValueOrFail, 1, |
7020 | /* 24979 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7021 | /* 24982 */ MCD::OPC_FilterValueOrFail, 0, |
7022 | /* 24984 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7023 | /* 24987 */ MCD::OPC_FilterValueOrFail, 0, |
7024 | /* 24989 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7025 | /* 24992 */ MCD::OPC_FilterValueOrFail, 0, |
7026 | /* 24994 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25004 |
7027 | /* 25000 */ MCD::OPC_Decode, 146, 20, 127, // Opcode: PVFMULLOrv, DecodeIdx: 127 |
7028 | /* 25004 */ MCD::OPC_Decode, 152, 20, 128, 1, // Opcode: PVFMULLOrvm, DecodeIdx: 128 |
7029 | /* 25009 */ MCD::OPC_FilterValue, 155, 3, 204, 0, // Skip to: 25218 |
7030 | /* 25014 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7031 | /* 25017 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 25045 |
7032 | /* 25021 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7033 | /* 25024 */ MCD::OPC_FilterValueOrFail, 0, |
7034 | /* 25026 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7035 | /* 25029 */ MCD::OPC_FilterValueOrFail, 0, |
7036 | /* 25031 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25041 |
7037 | /* 25037 */ MCD::OPC_Decode, 194, 20, 121, // Opcode: PVFMULUPvv, DecodeIdx: 121 |
7038 | /* 25041 */ MCD::OPC_Decode, 200, 20, 122, // Opcode: PVFMULUPvvm, DecodeIdx: 122 |
7039 | /* 25045 */ MCD::OPC_FilterValue, 2, 69, 0, // Skip to: 25118 |
7040 | /* 25049 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7041 | /* 25052 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 25085 |
7042 | /* 25056 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7043 | /* 25059 */ MCD::OPC_FilterValueOrFail, 0, |
7044 | /* 25061 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7045 | /* 25064 */ MCD::OPC_FilterValueOrFail, 0, |
7046 | /* 25066 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7047 | /* 25069 */ MCD::OPC_FilterValueOrFail, 0, |
7048 | /* 25071 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25081 |
7049 | /* 25077 */ MCD::OPC_Decode, 170, 20, 123, // Opcode: PVFMULUPiv, DecodeIdx: 123 |
7050 | /* 25081 */ MCD::OPC_Decode, 176, 20, 124, // Opcode: PVFMULUPivm, DecodeIdx: 124 |
7051 | /* 25085 */ MCD::OPC_FilterValueOrFail, 1, |
7052 | /* 25087 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7053 | /* 25090 */ MCD::OPC_FilterValueOrFail, 0, |
7054 | /* 25092 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7055 | /* 25095 */ MCD::OPC_FilterValueOrFail, 0, |
7056 | /* 25097 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7057 | /* 25100 */ MCD::OPC_FilterValueOrFail, 0, |
7058 | /* 25102 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25113 |
7059 | /* 25108 */ MCD::OPC_Decode, 182, 20, 210, 1, // Opcode: PVFMULUPrv, DecodeIdx: 210 |
7060 | /* 25113 */ MCD::OPC_Decode, 188, 20, 211, 1, // Opcode: PVFMULUPrvm, DecodeIdx: 211 |
7061 | /* 25118 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 25147 |
7062 | /* 25122 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7063 | /* 25125 */ MCD::OPC_FilterValueOrFail, 0, |
7064 | /* 25127 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7065 | /* 25130 */ MCD::OPC_FilterValueOrFail, 0, |
7066 | /* 25132 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25142 |
7067 | /* 25138 */ MCD::OPC_Decode, 230, 20, 121, // Opcode: PVFMULvv, DecodeIdx: 121 |
7068 | /* 25142 */ MCD::OPC_Decode, 236, 20, 129, 1, // Opcode: PVFMULvvm, DecodeIdx: 129 |
7069 | /* 25147 */ MCD::OPC_FilterValueOrFail, 6, |
7070 | /* 25149 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7071 | /* 25152 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 25186 |
7072 | /* 25156 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7073 | /* 25159 */ MCD::OPC_FilterValueOrFail, 0, |
7074 | /* 25161 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7075 | /* 25164 */ MCD::OPC_FilterValueOrFail, 0, |
7076 | /* 25166 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7077 | /* 25169 */ MCD::OPC_FilterValueOrFail, 0, |
7078 | /* 25171 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25181 |
7079 | /* 25177 */ MCD::OPC_Decode, 206, 20, 123, // Opcode: PVFMULiv, DecodeIdx: 123 |
7080 | /* 25181 */ MCD::OPC_Decode, 212, 20, 130, 1, // Opcode: PVFMULivm, DecodeIdx: 130 |
7081 | /* 25186 */ MCD::OPC_FilterValueOrFail, 1, |
7082 | /* 25188 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7083 | /* 25191 */ MCD::OPC_FilterValueOrFail, 0, |
7084 | /* 25193 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7085 | /* 25196 */ MCD::OPC_FilterValueOrFail, 0, |
7086 | /* 25198 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7087 | /* 25201 */ MCD::OPC_FilterValueOrFail, 0, |
7088 | /* 25203 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 25213 |
7089 | /* 25209 */ MCD::OPC_Decode, 218, 20, 127, // Opcode: PVFMULrv, DecodeIdx: 127 |
7090 | /* 25213 */ MCD::OPC_Decode, 224, 20, 131, 1, // Opcode: PVFMULrvm, DecodeIdx: 131 |
7091 | /* 25218 */ MCD::OPC_FilterValue, 156, 3, 35, 0, // Skip to: 25258 |
7092 | /* 25223 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
7093 | /* 25226 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 25243 |
7094 | /* 25230 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7095 | /* 25234 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7096 | /* 25238 */ MCD::OPC_Decode, 155, 45, 214, 1, // Opcode: VFIADvi, DecodeIdx: 214 |
7097 | /* 25243 */ MCD::OPC_FilterValueOrFail, 1, |
7098 | /* 25245 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7099 | /* 25249 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7100 | /* 25253 */ MCD::OPC_Decode, 161, 45, 215, 1, // Opcode: VFIADvr, DecodeIdx: 215 |
7101 | /* 25258 */ MCD::OPC_FilterValue, 157, 3, 35, 0, // Skip to: 25298 |
7102 | /* 25263 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
7103 | /* 25266 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 25283 |
7104 | /* 25270 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7105 | /* 25274 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7106 | /* 25278 */ MCD::OPC_Decode, 191, 45, 214, 1, // Opcode: VFIASvi, DecodeIdx: 214 |
7107 | /* 25283 */ MCD::OPC_FilterValueOrFail, 1, |
7108 | /* 25285 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7109 | /* 25289 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7110 | /* 25293 */ MCD::OPC_Decode, 197, 45, 216, 1, // Opcode: VFIASvr, DecodeIdx: 216 |
7111 | /* 25298 */ MCD::OPC_FilterValue, 158, 3, 35, 0, // Skip to: 25338 |
7112 | /* 25303 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
7113 | /* 25306 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 25323 |
7114 | /* 25310 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7115 | /* 25314 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7116 | /* 25318 */ MCD::OPC_Decode, 227, 45, 214, 1, // Opcode: VFIMDvi, DecodeIdx: 214 |
7117 | /* 25323 */ MCD::OPC_FilterValueOrFail, 1, |
7118 | /* 25325 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7119 | /* 25329 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7120 | /* 25333 */ MCD::OPC_Decode, 233, 45, 215, 1, // Opcode: VFIMDvr, DecodeIdx: 215 |
7121 | /* 25338 */ MCD::OPC_FilterValue, 159, 3, 35, 0, // Skip to: 25378 |
7122 | /* 25343 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
7123 | /* 25346 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 25363 |
7124 | /* 25350 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7125 | /* 25354 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7126 | /* 25358 */ MCD::OPC_Decode, 135, 46, 214, 1, // Opcode: VFIMSvi, DecodeIdx: 214 |
7127 | /* 25363 */ MCD::OPC_FilterValueOrFail, 1, |
7128 | /* 25365 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
7129 | /* 25369 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
7130 | /* 25373 */ MCD::OPC_Decode, 141, 46, 216, 1, // Opcode: VFIMSvr, DecodeIdx: 216 |
7131 | /* 25378 */ MCD::OPC_FilterValue, 162, 3, 231, 0, // Skip to: 25614 |
7132 | /* 25383 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7133 | /* 25386 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 25501 |
7134 | /* 25390 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7135 | /* 25393 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 25448 |
7136 | /* 25397 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7137 | /* 25400 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25425 |
7138 | /* 25404 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7139 | /* 25407 */ MCD::OPC_FilterValueOrFail, 0, |
7140 | /* 25409 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25420 |
7141 | /* 25415 */ MCD::OPC_Decode, 217, 77, 146, 1, // Opcode: VST2DNCizv, DecodeIdx: 146 |
7142 | /* 25420 */ MCD::OPC_Decode, 220, 77, 147, 1, // Opcode: VST2DNCizvm, DecodeIdx: 147 |
7143 | /* 25425 */ MCD::OPC_FilterValueOrFail, 4, |
7144 | /* 25427 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7145 | /* 25430 */ MCD::OPC_FilterValueOrFail, 0, |
7146 | /* 25432 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25443 |
7147 | /* 25438 */ MCD::OPC_Decode, 137, 78, 146, 1, // Opcode: VST2Dizv, DecodeIdx: 146 |
7148 | /* 25443 */ MCD::OPC_Decode, 140, 78, 147, 1, // Opcode: VST2Dizvm, DecodeIdx: 147 |
7149 | /* 25448 */ MCD::OPC_FilterValueOrFail, 1, |
7150 | /* 25450 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7151 | /* 25453 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25478 |
7152 | /* 25457 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7153 | /* 25460 */ MCD::OPC_FilterValueOrFail, 0, |
7154 | /* 25462 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25473 |
7155 | /* 25468 */ MCD::OPC_Decode, 229, 77, 148, 1, // Opcode: VST2DNCrzv, DecodeIdx: 148 |
7156 | /* 25473 */ MCD::OPC_Decode, 232, 77, 149, 1, // Opcode: VST2DNCrzvm, DecodeIdx: 149 |
7157 | /* 25478 */ MCD::OPC_FilterValueOrFail, 4, |
7158 | /* 25480 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7159 | /* 25483 */ MCD::OPC_FilterValueOrFail, 0, |
7160 | /* 25485 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25496 |
7161 | /* 25491 */ MCD::OPC_Decode, 149, 78, 148, 1, // Opcode: VST2Drzv, DecodeIdx: 148 |
7162 | /* 25496 */ MCD::OPC_Decode, 152, 78, 149, 1, // Opcode: VST2Drzvm, DecodeIdx: 149 |
7163 | /* 25501 */ MCD::OPC_FilterValueOrFail, 1, |
7164 | /* 25503 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7165 | /* 25506 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 25561 |
7166 | /* 25510 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7167 | /* 25513 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25538 |
7168 | /* 25517 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7169 | /* 25520 */ MCD::OPC_FilterValueOrFail, 0, |
7170 | /* 25522 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25533 |
7171 | /* 25528 */ MCD::OPC_Decode, 211, 77, 150, 1, // Opcode: VST2DNCirv, DecodeIdx: 150 |
7172 | /* 25533 */ MCD::OPC_Decode, 214, 77, 151, 1, // Opcode: VST2DNCirvm, DecodeIdx: 151 |
7173 | /* 25538 */ MCD::OPC_FilterValueOrFail, 4, |
7174 | /* 25540 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7175 | /* 25543 */ MCD::OPC_FilterValueOrFail, 0, |
7176 | /* 25545 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25556 |
7177 | /* 25551 */ MCD::OPC_Decode, 131, 78, 150, 1, // Opcode: VST2Dirv, DecodeIdx: 150 |
7178 | /* 25556 */ MCD::OPC_Decode, 134, 78, 151, 1, // Opcode: VST2Dirvm, DecodeIdx: 151 |
7179 | /* 25561 */ MCD::OPC_FilterValueOrFail, 1, |
7180 | /* 25563 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7181 | /* 25566 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25591 |
7182 | /* 25570 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7183 | /* 25573 */ MCD::OPC_FilterValueOrFail, 0, |
7184 | /* 25575 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25586 |
7185 | /* 25581 */ MCD::OPC_Decode, 223, 77, 152, 1, // Opcode: VST2DNCrrv, DecodeIdx: 152 |
7186 | /* 25586 */ MCD::OPC_Decode, 226, 77, 153, 1, // Opcode: VST2DNCrrvm, DecodeIdx: 153 |
7187 | /* 25591 */ MCD::OPC_FilterValueOrFail, 4, |
7188 | /* 25593 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7189 | /* 25596 */ MCD::OPC_FilterValueOrFail, 0, |
7190 | /* 25598 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25609 |
7191 | /* 25604 */ MCD::OPC_Decode, 143, 78, 152, 1, // Opcode: VST2Drrv, DecodeIdx: 152 |
7192 | /* 25609 */ MCD::OPC_Decode, 146, 78, 153, 1, // Opcode: VST2Drrvm, DecodeIdx: 153 |
7193 | /* 25614 */ MCD::OPC_FilterValue, 163, 3, 231, 0, // Skip to: 25850 |
7194 | /* 25619 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7195 | /* 25622 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 25737 |
7196 | /* 25626 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7197 | /* 25629 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 25684 |
7198 | /* 25633 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7199 | /* 25636 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25661 |
7200 | /* 25640 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7201 | /* 25643 */ MCD::OPC_FilterValueOrFail, 0, |
7202 | /* 25645 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25656 |
7203 | /* 25651 */ MCD::OPC_Decode, 193, 77, 146, 1, // Opcode: VST2DNCOTizv, DecodeIdx: 146 |
7204 | /* 25656 */ MCD::OPC_Decode, 196, 77, 147, 1, // Opcode: VST2DNCOTizvm, DecodeIdx: 147 |
7205 | /* 25661 */ MCD::OPC_FilterValueOrFail, 4, |
7206 | /* 25663 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7207 | /* 25666 */ MCD::OPC_FilterValueOrFail, 0, |
7208 | /* 25668 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25679 |
7209 | /* 25674 */ MCD::OPC_Decode, 241, 77, 146, 1, // Opcode: VST2DOTizv, DecodeIdx: 146 |
7210 | /* 25679 */ MCD::OPC_Decode, 244, 77, 147, 1, // Opcode: VST2DOTizvm, DecodeIdx: 147 |
7211 | /* 25684 */ MCD::OPC_FilterValueOrFail, 1, |
7212 | /* 25686 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7213 | /* 25689 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25714 |
7214 | /* 25693 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7215 | /* 25696 */ MCD::OPC_FilterValueOrFail, 0, |
7216 | /* 25698 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25709 |
7217 | /* 25704 */ MCD::OPC_Decode, 205, 77, 148, 1, // Opcode: VST2DNCOTrzv, DecodeIdx: 148 |
7218 | /* 25709 */ MCD::OPC_Decode, 208, 77, 149, 1, // Opcode: VST2DNCOTrzvm, DecodeIdx: 149 |
7219 | /* 25714 */ MCD::OPC_FilterValueOrFail, 4, |
7220 | /* 25716 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7221 | /* 25719 */ MCD::OPC_FilterValueOrFail, 0, |
7222 | /* 25721 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25732 |
7223 | /* 25727 */ MCD::OPC_Decode, 253, 77, 148, 1, // Opcode: VST2DOTrzv, DecodeIdx: 148 |
7224 | /* 25732 */ MCD::OPC_Decode, 128, 78, 149, 1, // Opcode: VST2DOTrzvm, DecodeIdx: 149 |
7225 | /* 25737 */ MCD::OPC_FilterValueOrFail, 1, |
7226 | /* 25739 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7227 | /* 25742 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 25797 |
7228 | /* 25746 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7229 | /* 25749 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25774 |
7230 | /* 25753 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7231 | /* 25756 */ MCD::OPC_FilterValueOrFail, 0, |
7232 | /* 25758 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25769 |
7233 | /* 25764 */ MCD::OPC_Decode, 187, 77, 150, 1, // Opcode: VST2DNCOTirv, DecodeIdx: 150 |
7234 | /* 25769 */ MCD::OPC_Decode, 190, 77, 151, 1, // Opcode: VST2DNCOTirvm, DecodeIdx: 151 |
7235 | /* 25774 */ MCD::OPC_FilterValueOrFail, 4, |
7236 | /* 25776 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7237 | /* 25779 */ MCD::OPC_FilterValueOrFail, 0, |
7238 | /* 25781 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25792 |
7239 | /* 25787 */ MCD::OPC_Decode, 235, 77, 150, 1, // Opcode: VST2DOTirv, DecodeIdx: 150 |
7240 | /* 25792 */ MCD::OPC_Decode, 238, 77, 151, 1, // Opcode: VST2DOTirvm, DecodeIdx: 151 |
7241 | /* 25797 */ MCD::OPC_FilterValueOrFail, 1, |
7242 | /* 25799 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7243 | /* 25802 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25827 |
7244 | /* 25806 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7245 | /* 25809 */ MCD::OPC_FilterValueOrFail, 0, |
7246 | /* 25811 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25822 |
7247 | /* 25817 */ MCD::OPC_Decode, 199, 77, 152, 1, // Opcode: VST2DNCOTrrv, DecodeIdx: 152 |
7248 | /* 25822 */ MCD::OPC_Decode, 202, 77, 153, 1, // Opcode: VST2DNCOTrrvm, DecodeIdx: 153 |
7249 | /* 25827 */ MCD::OPC_FilterValueOrFail, 4, |
7250 | /* 25829 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7251 | /* 25832 */ MCD::OPC_FilterValueOrFail, 0, |
7252 | /* 25834 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25845 |
7253 | /* 25840 */ MCD::OPC_Decode, 247, 77, 152, 1, // Opcode: VST2DOTrrv, DecodeIdx: 152 |
7254 | /* 25845 */ MCD::OPC_Decode, 250, 77, 153, 1, // Opcode: VST2DOTrrvm, DecodeIdx: 153 |
7255 | /* 25850 */ MCD::OPC_FilterValue, 164, 3, 231, 0, // Skip to: 26086 |
7256 | /* 25855 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7257 | /* 25858 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 25973 |
7258 | /* 25862 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7259 | /* 25865 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 25920 |
7260 | /* 25869 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7261 | /* 25872 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25897 |
7262 | /* 25876 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7263 | /* 25879 */ MCD::OPC_FilterValueOrFail, 0, |
7264 | /* 25881 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25892 |
7265 | /* 25887 */ MCD::OPC_Decode, 193, 80, 146, 1, // Opcode: VSTU2DNCizv, DecodeIdx: 146 |
7266 | /* 25892 */ MCD::OPC_Decode, 196, 80, 147, 1, // Opcode: VSTU2DNCizvm, DecodeIdx: 147 |
7267 | /* 25897 */ MCD::OPC_FilterValueOrFail, 4, |
7268 | /* 25899 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7269 | /* 25902 */ MCD::OPC_FilterValueOrFail, 0, |
7270 | /* 25904 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25915 |
7271 | /* 25910 */ MCD::OPC_Decode, 241, 80, 146, 1, // Opcode: VSTU2Dizv, DecodeIdx: 146 |
7272 | /* 25915 */ MCD::OPC_Decode, 244, 80, 147, 1, // Opcode: VSTU2Dizvm, DecodeIdx: 147 |
7273 | /* 25920 */ MCD::OPC_FilterValueOrFail, 1, |
7274 | /* 25922 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7275 | /* 25925 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 25950 |
7276 | /* 25929 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7277 | /* 25932 */ MCD::OPC_FilterValueOrFail, 0, |
7278 | /* 25934 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25945 |
7279 | /* 25940 */ MCD::OPC_Decode, 205, 80, 148, 1, // Opcode: VSTU2DNCrzv, DecodeIdx: 148 |
7280 | /* 25945 */ MCD::OPC_Decode, 208, 80, 149, 1, // Opcode: VSTU2DNCrzvm, DecodeIdx: 149 |
7281 | /* 25950 */ MCD::OPC_FilterValueOrFail, 4, |
7282 | /* 25952 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7283 | /* 25955 */ MCD::OPC_FilterValueOrFail, 0, |
7284 | /* 25957 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 25968 |
7285 | /* 25963 */ MCD::OPC_Decode, 253, 80, 148, 1, // Opcode: VSTU2Drzv, DecodeIdx: 148 |
7286 | /* 25968 */ MCD::OPC_Decode, 128, 81, 149, 1, // Opcode: VSTU2Drzvm, DecodeIdx: 149 |
7287 | /* 25973 */ MCD::OPC_FilterValueOrFail, 1, |
7288 | /* 25975 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7289 | /* 25978 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26033 |
7290 | /* 25982 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7291 | /* 25985 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26010 |
7292 | /* 25989 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7293 | /* 25992 */ MCD::OPC_FilterValueOrFail, 0, |
7294 | /* 25994 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26005 |
7295 | /* 26000 */ MCD::OPC_Decode, 187, 80, 150, 1, // Opcode: VSTU2DNCirv, DecodeIdx: 150 |
7296 | /* 26005 */ MCD::OPC_Decode, 190, 80, 151, 1, // Opcode: VSTU2DNCirvm, DecodeIdx: 151 |
7297 | /* 26010 */ MCD::OPC_FilterValueOrFail, 4, |
7298 | /* 26012 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7299 | /* 26015 */ MCD::OPC_FilterValueOrFail, 0, |
7300 | /* 26017 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26028 |
7301 | /* 26023 */ MCD::OPC_Decode, 235, 80, 150, 1, // Opcode: VSTU2Dirv, DecodeIdx: 150 |
7302 | /* 26028 */ MCD::OPC_Decode, 238, 80, 151, 1, // Opcode: VSTU2Dirvm, DecodeIdx: 151 |
7303 | /* 26033 */ MCD::OPC_FilterValueOrFail, 1, |
7304 | /* 26035 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7305 | /* 26038 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26063 |
7306 | /* 26042 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7307 | /* 26045 */ MCD::OPC_FilterValueOrFail, 0, |
7308 | /* 26047 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26058 |
7309 | /* 26053 */ MCD::OPC_Decode, 199, 80, 152, 1, // Opcode: VSTU2DNCrrv, DecodeIdx: 152 |
7310 | /* 26058 */ MCD::OPC_Decode, 202, 80, 153, 1, // Opcode: VSTU2DNCrrvm, DecodeIdx: 153 |
7311 | /* 26063 */ MCD::OPC_FilterValueOrFail, 4, |
7312 | /* 26065 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7313 | /* 26068 */ MCD::OPC_FilterValueOrFail, 0, |
7314 | /* 26070 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26081 |
7315 | /* 26076 */ MCD::OPC_Decode, 247, 80, 152, 1, // Opcode: VSTU2Drrv, DecodeIdx: 152 |
7316 | /* 26081 */ MCD::OPC_Decode, 250, 80, 153, 1, // Opcode: VSTU2Drrvm, DecodeIdx: 153 |
7317 | /* 26086 */ MCD::OPC_FilterValue, 165, 3, 231, 0, // Skip to: 26322 |
7318 | /* 26091 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7319 | /* 26094 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 26209 |
7320 | /* 26098 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7321 | /* 26101 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26156 |
7322 | /* 26105 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7323 | /* 26108 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26133 |
7324 | /* 26112 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7325 | /* 26115 */ MCD::OPC_FilterValueOrFail, 0, |
7326 | /* 26117 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26128 |
7327 | /* 26123 */ MCD::OPC_Decode, 169, 80, 146, 1, // Opcode: VSTU2DNCOTizv, DecodeIdx: 146 |
7328 | /* 26128 */ MCD::OPC_Decode, 172, 80, 147, 1, // Opcode: VSTU2DNCOTizvm, DecodeIdx: 147 |
7329 | /* 26133 */ MCD::OPC_FilterValueOrFail, 4, |
7330 | /* 26135 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7331 | /* 26138 */ MCD::OPC_FilterValueOrFail, 0, |
7332 | /* 26140 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26151 |
7333 | /* 26146 */ MCD::OPC_Decode, 217, 80, 146, 1, // Opcode: VSTU2DOTizv, DecodeIdx: 146 |
7334 | /* 26151 */ MCD::OPC_Decode, 220, 80, 147, 1, // Opcode: VSTU2DOTizvm, DecodeIdx: 147 |
7335 | /* 26156 */ MCD::OPC_FilterValueOrFail, 1, |
7336 | /* 26158 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7337 | /* 26161 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26186 |
7338 | /* 26165 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7339 | /* 26168 */ MCD::OPC_FilterValueOrFail, 0, |
7340 | /* 26170 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26181 |
7341 | /* 26176 */ MCD::OPC_Decode, 181, 80, 148, 1, // Opcode: VSTU2DNCOTrzv, DecodeIdx: 148 |
7342 | /* 26181 */ MCD::OPC_Decode, 184, 80, 149, 1, // Opcode: VSTU2DNCOTrzvm, DecodeIdx: 149 |
7343 | /* 26186 */ MCD::OPC_FilterValueOrFail, 4, |
7344 | /* 26188 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7345 | /* 26191 */ MCD::OPC_FilterValueOrFail, 0, |
7346 | /* 26193 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26204 |
7347 | /* 26199 */ MCD::OPC_Decode, 229, 80, 148, 1, // Opcode: VSTU2DOTrzv, DecodeIdx: 148 |
7348 | /* 26204 */ MCD::OPC_Decode, 232, 80, 149, 1, // Opcode: VSTU2DOTrzvm, DecodeIdx: 149 |
7349 | /* 26209 */ MCD::OPC_FilterValueOrFail, 1, |
7350 | /* 26211 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7351 | /* 26214 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26269 |
7352 | /* 26218 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7353 | /* 26221 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26246 |
7354 | /* 26225 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7355 | /* 26228 */ MCD::OPC_FilterValueOrFail, 0, |
7356 | /* 26230 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26241 |
7357 | /* 26236 */ MCD::OPC_Decode, 163, 80, 150, 1, // Opcode: VSTU2DNCOTirv, DecodeIdx: 150 |
7358 | /* 26241 */ MCD::OPC_Decode, 166, 80, 151, 1, // Opcode: VSTU2DNCOTirvm, DecodeIdx: 151 |
7359 | /* 26246 */ MCD::OPC_FilterValueOrFail, 4, |
7360 | /* 26248 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7361 | /* 26251 */ MCD::OPC_FilterValueOrFail, 0, |
7362 | /* 26253 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26264 |
7363 | /* 26259 */ MCD::OPC_Decode, 211, 80, 150, 1, // Opcode: VSTU2DOTirv, DecodeIdx: 150 |
7364 | /* 26264 */ MCD::OPC_Decode, 214, 80, 151, 1, // Opcode: VSTU2DOTirvm, DecodeIdx: 151 |
7365 | /* 26269 */ MCD::OPC_FilterValueOrFail, 1, |
7366 | /* 26271 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7367 | /* 26274 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26299 |
7368 | /* 26278 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7369 | /* 26281 */ MCD::OPC_FilterValueOrFail, 0, |
7370 | /* 26283 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26294 |
7371 | /* 26289 */ MCD::OPC_Decode, 175, 80, 152, 1, // Opcode: VSTU2DNCOTrrv, DecodeIdx: 152 |
7372 | /* 26294 */ MCD::OPC_Decode, 178, 80, 153, 1, // Opcode: VSTU2DNCOTrrvm, DecodeIdx: 153 |
7373 | /* 26299 */ MCD::OPC_FilterValueOrFail, 4, |
7374 | /* 26301 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7375 | /* 26304 */ MCD::OPC_FilterValueOrFail, 0, |
7376 | /* 26306 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26317 |
7377 | /* 26312 */ MCD::OPC_Decode, 223, 80, 152, 1, // Opcode: VSTU2DOTrrv, DecodeIdx: 152 |
7378 | /* 26317 */ MCD::OPC_Decode, 226, 80, 153, 1, // Opcode: VSTU2DOTrrvm, DecodeIdx: 153 |
7379 | /* 26322 */ MCD::OPC_FilterValue, 166, 3, 231, 0, // Skip to: 26558 |
7380 | /* 26327 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7381 | /* 26330 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 26445 |
7382 | /* 26334 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7383 | /* 26337 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26392 |
7384 | /* 26341 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7385 | /* 26344 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26369 |
7386 | /* 26348 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7387 | /* 26351 */ MCD::OPC_FilterValueOrFail, 0, |
7388 | /* 26353 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26364 |
7389 | /* 26359 */ MCD::OPC_Decode, 185, 78, 146, 1, // Opcode: VSTL2DNCizv, DecodeIdx: 146 |
7390 | /* 26364 */ MCD::OPC_Decode, 188, 78, 147, 1, // Opcode: VSTL2DNCizvm, DecodeIdx: 147 |
7391 | /* 26369 */ MCD::OPC_FilterValueOrFail, 4, |
7392 | /* 26371 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7393 | /* 26374 */ MCD::OPC_FilterValueOrFail, 0, |
7394 | /* 26376 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26387 |
7395 | /* 26382 */ MCD::OPC_Decode, 233, 78, 146, 1, // Opcode: VSTL2Dizv, DecodeIdx: 146 |
7396 | /* 26387 */ MCD::OPC_Decode, 236, 78, 147, 1, // Opcode: VSTL2Dizvm, DecodeIdx: 147 |
7397 | /* 26392 */ MCD::OPC_FilterValueOrFail, 1, |
7398 | /* 26394 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7399 | /* 26397 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26422 |
7400 | /* 26401 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7401 | /* 26404 */ MCD::OPC_FilterValueOrFail, 0, |
7402 | /* 26406 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26417 |
7403 | /* 26412 */ MCD::OPC_Decode, 197, 78, 148, 1, // Opcode: VSTL2DNCrzv, DecodeIdx: 148 |
7404 | /* 26417 */ MCD::OPC_Decode, 200, 78, 149, 1, // Opcode: VSTL2DNCrzvm, DecodeIdx: 149 |
7405 | /* 26422 */ MCD::OPC_FilterValueOrFail, 4, |
7406 | /* 26424 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7407 | /* 26427 */ MCD::OPC_FilterValueOrFail, 0, |
7408 | /* 26429 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26440 |
7409 | /* 26435 */ MCD::OPC_Decode, 245, 78, 148, 1, // Opcode: VSTL2Drzv, DecodeIdx: 148 |
7410 | /* 26440 */ MCD::OPC_Decode, 248, 78, 149, 1, // Opcode: VSTL2Drzvm, DecodeIdx: 149 |
7411 | /* 26445 */ MCD::OPC_FilterValueOrFail, 1, |
7412 | /* 26447 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7413 | /* 26450 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26505 |
7414 | /* 26454 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7415 | /* 26457 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26482 |
7416 | /* 26461 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7417 | /* 26464 */ MCD::OPC_FilterValueOrFail, 0, |
7418 | /* 26466 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26477 |
7419 | /* 26472 */ MCD::OPC_Decode, 179, 78, 150, 1, // Opcode: VSTL2DNCirv, DecodeIdx: 150 |
7420 | /* 26477 */ MCD::OPC_Decode, 182, 78, 151, 1, // Opcode: VSTL2DNCirvm, DecodeIdx: 151 |
7421 | /* 26482 */ MCD::OPC_FilterValueOrFail, 4, |
7422 | /* 26484 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7423 | /* 26487 */ MCD::OPC_FilterValueOrFail, 0, |
7424 | /* 26489 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26500 |
7425 | /* 26495 */ MCD::OPC_Decode, 227, 78, 150, 1, // Opcode: VSTL2Dirv, DecodeIdx: 150 |
7426 | /* 26500 */ MCD::OPC_Decode, 230, 78, 151, 1, // Opcode: VSTL2Dirvm, DecodeIdx: 151 |
7427 | /* 26505 */ MCD::OPC_FilterValueOrFail, 1, |
7428 | /* 26507 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7429 | /* 26510 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26535 |
7430 | /* 26514 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7431 | /* 26517 */ MCD::OPC_FilterValueOrFail, 0, |
7432 | /* 26519 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26530 |
7433 | /* 26525 */ MCD::OPC_Decode, 191, 78, 152, 1, // Opcode: VSTL2DNCrrv, DecodeIdx: 152 |
7434 | /* 26530 */ MCD::OPC_Decode, 194, 78, 153, 1, // Opcode: VSTL2DNCrrvm, DecodeIdx: 153 |
7435 | /* 26535 */ MCD::OPC_FilterValueOrFail, 4, |
7436 | /* 26537 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7437 | /* 26540 */ MCD::OPC_FilterValueOrFail, 0, |
7438 | /* 26542 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26553 |
7439 | /* 26548 */ MCD::OPC_Decode, 239, 78, 152, 1, // Opcode: VSTL2Drrv, DecodeIdx: 152 |
7440 | /* 26553 */ MCD::OPC_Decode, 242, 78, 153, 1, // Opcode: VSTL2Drrvm, DecodeIdx: 153 |
7441 | /* 26558 */ MCD::OPC_FilterValue, 167, 3, 231, 0, // Skip to: 26794 |
7442 | /* 26563 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7443 | /* 26566 */ MCD::OPC_FilterValue, 0, 111, 0, // Skip to: 26681 |
7444 | /* 26570 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7445 | /* 26573 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26628 |
7446 | /* 26577 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7447 | /* 26580 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26605 |
7448 | /* 26584 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7449 | /* 26587 */ MCD::OPC_FilterValueOrFail, 0, |
7450 | /* 26589 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26600 |
7451 | /* 26595 */ MCD::OPC_Decode, 161, 78, 146, 1, // Opcode: VSTL2DNCOTizv, DecodeIdx: 146 |
7452 | /* 26600 */ MCD::OPC_Decode, 164, 78, 147, 1, // Opcode: VSTL2DNCOTizvm, DecodeIdx: 147 |
7453 | /* 26605 */ MCD::OPC_FilterValueOrFail, 4, |
7454 | /* 26607 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7455 | /* 26610 */ MCD::OPC_FilterValueOrFail, 0, |
7456 | /* 26612 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26623 |
7457 | /* 26618 */ MCD::OPC_Decode, 209, 78, 146, 1, // Opcode: VSTL2DOTizv, DecodeIdx: 146 |
7458 | /* 26623 */ MCD::OPC_Decode, 212, 78, 147, 1, // Opcode: VSTL2DOTizvm, DecodeIdx: 147 |
7459 | /* 26628 */ MCD::OPC_FilterValueOrFail, 1, |
7460 | /* 26630 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7461 | /* 26633 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26658 |
7462 | /* 26637 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7463 | /* 26640 */ MCD::OPC_FilterValueOrFail, 0, |
7464 | /* 26642 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26653 |
7465 | /* 26648 */ MCD::OPC_Decode, 173, 78, 148, 1, // Opcode: VSTL2DNCOTrzv, DecodeIdx: 148 |
7466 | /* 26653 */ MCD::OPC_Decode, 176, 78, 149, 1, // Opcode: VSTL2DNCOTrzvm, DecodeIdx: 149 |
7467 | /* 26658 */ MCD::OPC_FilterValueOrFail, 4, |
7468 | /* 26660 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7469 | /* 26663 */ MCD::OPC_FilterValueOrFail, 0, |
7470 | /* 26665 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26676 |
7471 | /* 26671 */ MCD::OPC_Decode, 221, 78, 148, 1, // Opcode: VSTL2DOTrzv, DecodeIdx: 148 |
7472 | /* 26676 */ MCD::OPC_Decode, 224, 78, 149, 1, // Opcode: VSTL2DOTrzvm, DecodeIdx: 149 |
7473 | /* 26681 */ MCD::OPC_FilterValueOrFail, 1, |
7474 | /* 26683 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7475 | /* 26686 */ MCD::OPC_FilterValue, 0, 51, 0, // Skip to: 26741 |
7476 | /* 26690 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7477 | /* 26693 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26718 |
7478 | /* 26697 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7479 | /* 26700 */ MCD::OPC_FilterValueOrFail, 0, |
7480 | /* 26702 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26713 |
7481 | /* 26708 */ MCD::OPC_Decode, 155, 78, 150, 1, // Opcode: VSTL2DNCOTirv, DecodeIdx: 150 |
7482 | /* 26713 */ MCD::OPC_Decode, 158, 78, 151, 1, // Opcode: VSTL2DNCOTirvm, DecodeIdx: 151 |
7483 | /* 26718 */ MCD::OPC_FilterValueOrFail, 4, |
7484 | /* 26720 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7485 | /* 26723 */ MCD::OPC_FilterValueOrFail, 0, |
7486 | /* 26725 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26736 |
7487 | /* 26731 */ MCD::OPC_Decode, 203, 78, 150, 1, // Opcode: VSTL2DOTirv, DecodeIdx: 150 |
7488 | /* 26736 */ MCD::OPC_Decode, 206, 78, 151, 1, // Opcode: VSTL2DOTirvm, DecodeIdx: 151 |
7489 | /* 26741 */ MCD::OPC_FilterValueOrFail, 1, |
7490 | /* 26743 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7491 | /* 26746 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 26771 |
7492 | /* 26750 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7493 | /* 26753 */ MCD::OPC_FilterValueOrFail, 0, |
7494 | /* 26755 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26766 |
7495 | /* 26761 */ MCD::OPC_Decode, 167, 78, 152, 1, // Opcode: VSTL2DNCOTrrv, DecodeIdx: 152 |
7496 | /* 26766 */ MCD::OPC_Decode, 170, 78, 153, 1, // Opcode: VSTL2DNCOTrrvm, DecodeIdx: 153 |
7497 | /* 26771 */ MCD::OPC_FilterValueOrFail, 4, |
7498 | /* 26773 */ MCD::OPC_ExtractField, 0, 24, // Inst{23-0} ... |
7499 | /* 26776 */ MCD::OPC_FilterValueOrFail, 0, |
7500 | /* 26778 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26789 |
7501 | /* 26784 */ MCD::OPC_Decode, 215, 78, 152, 1, // Opcode: VSTL2DOTrrv, DecodeIdx: 152 |
7502 | /* 26789 */ MCD::OPC_Decode, 218, 78, 153, 1, // Opcode: VSTL2DOTrrvm, DecodeIdx: 153 |
7503 | /* 26794 */ MCD::OPC_FilterValue, 168, 3, 111, 0, // Skip to: 26910 |
7504 | /* 26799 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7505 | /* 26802 */ MCD::OPC_FilterValue, 0, 66, 0, // Skip to: 26872 |
7506 | /* 26806 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7507 | /* 26809 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 26839 |
7508 | /* 26813 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7509 | /* 26816 */ MCD::OPC_FilterValueOrFail, 0, |
7510 | /* 26818 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7511 | /* 26821 */ MCD::OPC_FilterValueOrFail, 0, |
7512 | /* 26823 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26834 |
7513 | /* 26829 */ MCD::OPC_Decode, 131, 75, 217, 1, // Opcode: VSLALvv, DecodeIdx: 217 |
7514 | /* 26834 */ MCD::OPC_Decode, 137, 75, 218, 1, // Opcode: VSLALvvm, DecodeIdx: 218 |
7515 | /* 26839 */ MCD::OPC_FilterValueOrFail, 2, |
7516 | /* 26841 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7517 | /* 26844 */ MCD::OPC_FilterValueOrFail, 0, |
7518 | /* 26846 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7519 | /* 26849 */ MCD::OPC_FilterValueOrFail, 0, |
7520 | /* 26851 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7521 | /* 26854 */ MCD::OPC_FilterValueOrFail, 0, |
7522 | /* 26856 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26867 |
7523 | /* 26862 */ MCD::OPC_Decode, 235, 74, 219, 1, // Opcode: VSLALvi, DecodeIdx: 219 |
7524 | /* 26867 */ MCD::OPC_Decode, 241, 74, 220, 1, // Opcode: VSLALvim, DecodeIdx: 220 |
7525 | /* 26872 */ MCD::OPC_FilterValueOrFail, 1, |
7526 | /* 26874 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7527 | /* 26877 */ MCD::OPC_FilterValueOrFail, 0, |
7528 | /* 26879 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7529 | /* 26882 */ MCD::OPC_FilterValueOrFail, 0, |
7530 | /* 26884 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7531 | /* 26887 */ MCD::OPC_FilterValueOrFail, 0, |
7532 | /* 26889 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7533 | /* 26892 */ MCD::OPC_FilterValueOrFail, 2, |
7534 | /* 26894 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26905 |
7535 | /* 26900 */ MCD::OPC_Decode, 247, 74, 221, 1, // Opcode: VSLALvr, DecodeIdx: 221 |
7536 | /* 26905 */ MCD::OPC_Decode, 253, 74, 222, 1, // Opcode: VSLALvrm, DecodeIdx: 222 |
7537 | /* 26910 */ MCD::OPC_FilterValue, 170, 3, 111, 0, // Skip to: 27026 |
7538 | /* 26915 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7539 | /* 26918 */ MCD::OPC_FilterValue, 0, 66, 0, // Skip to: 26988 |
7540 | /* 26922 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7541 | /* 26925 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 26955 |
7542 | /* 26929 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7543 | /* 26932 */ MCD::OPC_FilterValueOrFail, 0, |
7544 | /* 26934 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7545 | /* 26937 */ MCD::OPC_FilterValueOrFail, 0, |
7546 | /* 26939 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26950 |
7547 | /* 26945 */ MCD::OPC_Decode, 171, 76, 217, 1, // Opcode: VSRALvv, DecodeIdx: 217 |
7548 | /* 26950 */ MCD::OPC_Decode, 177, 76, 218, 1, // Opcode: VSRALvvm, DecodeIdx: 218 |
7549 | /* 26955 */ MCD::OPC_FilterValueOrFail, 2, |
7550 | /* 26957 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7551 | /* 26960 */ MCD::OPC_FilterValueOrFail, 0, |
7552 | /* 26962 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7553 | /* 26965 */ MCD::OPC_FilterValueOrFail, 0, |
7554 | /* 26967 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7555 | /* 26970 */ MCD::OPC_FilterValueOrFail, 0, |
7556 | /* 26972 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 26983 |
7557 | /* 26978 */ MCD::OPC_Decode, 147, 76, 219, 1, // Opcode: VSRALvi, DecodeIdx: 219 |
7558 | /* 26983 */ MCD::OPC_Decode, 153, 76, 220, 1, // Opcode: VSRALvim, DecodeIdx: 220 |
7559 | /* 26988 */ MCD::OPC_FilterValueOrFail, 1, |
7560 | /* 26990 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7561 | /* 26993 */ MCD::OPC_FilterValueOrFail, 0, |
7562 | /* 26995 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7563 | /* 26998 */ MCD::OPC_FilterValueOrFail, 0, |
7564 | /* 27000 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7565 | /* 27003 */ MCD::OPC_FilterValueOrFail, 0, |
7566 | /* 27005 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7567 | /* 27008 */ MCD::OPC_FilterValueOrFail, 2, |
7568 | /* 27010 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 27021 |
7569 | /* 27016 */ MCD::OPC_Decode, 159, 76, 221, 1, // Opcode: VSRALvr, DecodeIdx: 221 |
7570 | /* 27021 */ MCD::OPC_Decode, 165, 76, 222, 1, // Opcode: VSRALvrm, DecodeIdx: 222 |
7571 | /* 27026 */ MCD::OPC_FilterValue, 172, 3, 106, 0, // Skip to: 27137 |
7572 | /* 27031 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7573 | /* 27034 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 27100 |
7574 | /* 27038 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7575 | /* 27041 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 27069 |
7576 | /* 27045 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7577 | /* 27048 */ MCD::OPC_FilterValueOrFail, 0, |
7578 | /* 27050 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7579 | /* 27053 */ MCD::OPC_FilterValueOrFail, 0, |
7580 | /* 27055 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27065 |
7581 | /* 27061 */ MCD::OPC_Decode, 187, 65, 121, // Opcode: VMRGvv, DecodeIdx: 121 |
7582 | /* 27065 */ MCD::OPC_Decode, 193, 65, 122, // Opcode: VMRGvvm, DecodeIdx: 122 |
7583 | /* 27069 */ MCD::OPC_FilterValueOrFail, 2, |
7584 | /* 27071 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7585 | /* 27074 */ MCD::OPC_FilterValueOrFail, 0, |
7586 | /* 27076 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7587 | /* 27079 */ MCD::OPC_FilterValueOrFail, 0, |
7588 | /* 27081 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7589 | /* 27084 */ MCD::OPC_FilterValueOrFail, 0, |
7590 | /* 27086 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27096 |
7591 | /* 27092 */ MCD::OPC_Decode, 163, 65, 123, // Opcode: VMRGiv, DecodeIdx: 123 |
7592 | /* 27096 */ MCD::OPC_Decode, 169, 65, 124, // Opcode: VMRGivm, DecodeIdx: 124 |
7593 | /* 27100 */ MCD::OPC_FilterValueOrFail, 1, |
7594 | /* 27102 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7595 | /* 27105 */ MCD::OPC_FilterValueOrFail, 0, |
7596 | /* 27107 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7597 | /* 27110 */ MCD::OPC_FilterValueOrFail, 0, |
7598 | /* 27112 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7599 | /* 27115 */ MCD::OPC_FilterValueOrFail, 0, |
7600 | /* 27117 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7601 | /* 27120 */ MCD::OPC_FilterValueOrFail, 2, |
7602 | /* 27122 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27132 |
7603 | /* 27128 */ MCD::OPC_Decode, 175, 65, 127, // Opcode: VMRGrv, DecodeIdx: 127 |
7604 | /* 27132 */ MCD::OPC_Decode, 181, 65, 128, 1, // Opcode: VMRGrvm, DecodeIdx: 128 |
7605 | /* 27137 */ MCD::OPC_FilterValue, 173, 3, 108, 0, // Skip to: 27250 |
7606 | /* 27142 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7607 | /* 27145 */ MCD::OPC_FilterValue, 0, 64, 0, // Skip to: 27213 |
7608 | /* 27149 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7609 | /* 27152 */ MCD::OPC_FilterValue, 0, 25, 0, // Skip to: 27181 |
7610 | /* 27156 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7611 | /* 27159 */ MCD::OPC_FilterValueOrFail, 0, |
7612 | /* 27161 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7613 | /* 27164 */ MCD::OPC_FilterValueOrFail, 0, |
7614 | /* 27166 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27176 |
7615 | /* 27172 */ MCD::OPC_Decode, 151, 65, 121, // Opcode: VMRGWvv, DecodeIdx: 121 |
7616 | /* 27176 */ MCD::OPC_Decode, 157, 65, 129, 1, // Opcode: VMRGWvvm, DecodeIdx: 129 |
7617 | /* 27181 */ MCD::OPC_FilterValueOrFail, 2, |
7618 | /* 27183 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7619 | /* 27186 */ MCD::OPC_FilterValueOrFail, 0, |
7620 | /* 27188 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7621 | /* 27191 */ MCD::OPC_FilterValueOrFail, 0, |
7622 | /* 27193 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7623 | /* 27196 */ MCD::OPC_FilterValueOrFail, 0, |
7624 | /* 27198 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27208 |
7625 | /* 27204 */ MCD::OPC_Decode, 255, 64, 123, // Opcode: VMRGWiv, DecodeIdx: 123 |
7626 | /* 27208 */ MCD::OPC_Decode, 133, 65, 130, 1, // Opcode: VMRGWivm, DecodeIdx: 130 |
7627 | /* 27213 */ MCD::OPC_FilterValueOrFail, 1, |
7628 | /* 27215 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7629 | /* 27218 */ MCD::OPC_FilterValueOrFail, 0, |
7630 | /* 27220 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7631 | /* 27223 */ MCD::OPC_FilterValueOrFail, 0, |
7632 | /* 27225 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7633 | /* 27228 */ MCD::OPC_FilterValueOrFail, 0, |
7634 | /* 27230 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7635 | /* 27233 */ MCD::OPC_FilterValueOrFail, 2, |
7636 | /* 27235 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27245 |
7637 | /* 27241 */ MCD::OPC_Decode, 139, 65, 127, // Opcode: VMRGWrv, DecodeIdx: 127 |
7638 | /* 27245 */ MCD::OPC_Decode, 145, 65, 131, 1, // Opcode: VMRGWrvm, DecodeIdx: 131 |
7639 | /* 27250 */ MCD::OPC_FilterValue, 174, 3, 151, 0, // Skip to: 27406 |
7640 | /* 27255 */ MCD::OPC_ExtractField, 39, 1, // Inst{39} ... |
7641 | /* 27258 */ MCD::OPC_FilterValue, 0, 71, 0, // Skip to: 27333 |
7642 | /* 27262 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7643 | /* 27265 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 27300 |
7644 | /* 27269 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7645 | /* 27272 */ MCD::OPC_FilterValueOrFail, 0, |
7646 | /* 27274 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7647 | /* 27277 */ MCD::OPC_FilterValueOrFail, 0, |
7648 | /* 27279 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7649 | /* 27282 */ MCD::OPC_FilterValueOrFail, 0, |
7650 | /* 27284 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 27295 |
7651 | /* 27290 */ MCD::OPC_Decode, 175, 74, 223, 1, // Opcode: VSFAvim, DecodeIdx: 223 |
7652 | /* 27295 */ MCD::OPC_Decode, 181, 74, 224, 1, // Opcode: VSFAvimm, DecodeIdx: 224 |
7653 | /* 27300 */ MCD::OPC_FilterValueOrFail, 1, |
7654 | /* 27302 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7655 | /* 27305 */ MCD::OPC_FilterValueOrFail, 0, |
7656 | /* 27307 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7657 | /* 27310 */ MCD::OPC_FilterValueOrFail, 0, |
7658 | /* 27312 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7659 | /* 27315 */ MCD::OPC_FilterValueOrFail, 0, |
7660 | /* 27317 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 27328 |
7661 | /* 27323 */ MCD::OPC_Decode, 199, 74, 225, 1, // Opcode: VSFAvrm, DecodeIdx: 225 |
7662 | /* 27328 */ MCD::OPC_Decode, 205, 74, 226, 1, // Opcode: VSFAvrmm, DecodeIdx: 226 |
7663 | /* 27333 */ MCD::OPC_FilterValueOrFail, 1, |
7664 | /* 27335 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7665 | /* 27338 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 27373 |
7666 | /* 27342 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7667 | /* 27345 */ MCD::OPC_FilterValueOrFail, 0, |
7668 | /* 27347 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7669 | /* 27350 */ MCD::OPC_FilterValueOrFail, 0, |
7670 | /* 27352 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7671 | /* 27355 */ MCD::OPC_FilterValueOrFail, 0, |
7672 | /* 27357 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 27368 |
7673 | /* 27363 */ MCD::OPC_Decode, 187, 74, 227, 1, // Opcode: VSFAvir, DecodeIdx: 227 |
7674 | /* 27368 */ MCD::OPC_Decode, 193, 74, 228, 1, // Opcode: VSFAvirm, DecodeIdx: 228 |
7675 | /* 27373 */ MCD::OPC_FilterValueOrFail, 1, |
7676 | /* 27375 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7677 | /* 27378 */ MCD::OPC_FilterValueOrFail, 0, |
7678 | /* 27380 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7679 | /* 27383 */ MCD::OPC_FilterValueOrFail, 0, |
7680 | /* 27385 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7681 | /* 27388 */ MCD::OPC_FilterValueOrFail, 0, |
7682 | /* 27390 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 27401 |
7683 | /* 27396 */ MCD::OPC_Decode, 211, 74, 229, 1, // Opcode: VSFAvrr, DecodeIdx: 229 |
7684 | /* 27401 */ MCD::OPC_Decode, 217, 74, 230, 1, // Opcode: VSFAvrrm, DecodeIdx: 230 |
7685 | /* 27406 */ MCD::OPC_FilterValue, 176, 3, 200, 0, // Skip to: 27611 |
7686 | /* 27411 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7687 | /* 27414 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 27442 |
7688 | /* 27418 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7689 | /* 27421 */ MCD::OPC_FilterValueOrFail, 0, |
7690 | /* 27423 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7691 | /* 27426 */ MCD::OPC_FilterValueOrFail, 0, |
7692 | /* 27428 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27438 |
7693 | /* 27434 */ MCD::OPC_Decode, 255, 82, 121, // Opcode: VSUBULvv, DecodeIdx: 121 |
7694 | /* 27438 */ MCD::OPC_Decode, 133, 83, 122, // Opcode: VSUBULvvm, DecodeIdx: 122 |
7695 | /* 27442 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 27514 |
7696 | /* 27446 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7697 | /* 27449 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 27482 |
7698 | /* 27453 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7699 | /* 27456 */ MCD::OPC_FilterValueOrFail, 0, |
7700 | /* 27458 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7701 | /* 27461 */ MCD::OPC_FilterValueOrFail, 0, |
7702 | /* 27463 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7703 | /* 27466 */ MCD::OPC_FilterValueOrFail, 0, |
7704 | /* 27468 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27478 |
7705 | /* 27474 */ MCD::OPC_Decode, 231, 82, 123, // Opcode: VSUBULiv, DecodeIdx: 123 |
7706 | /* 27478 */ MCD::OPC_Decode, 237, 82, 124, // Opcode: VSUBULivm, DecodeIdx: 124 |
7707 | /* 27482 */ MCD::OPC_FilterValueOrFail, 1, |
7708 | /* 27484 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7709 | /* 27487 */ MCD::OPC_FilterValueOrFail, 0, |
7710 | /* 27489 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7711 | /* 27492 */ MCD::OPC_FilterValueOrFail, 0, |
7712 | /* 27494 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7713 | /* 27497 */ MCD::OPC_FilterValueOrFail, 0, |
7714 | /* 27499 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27509 |
7715 | /* 27505 */ MCD::OPC_Decode, 243, 82, 127, // Opcode: VSUBULrv, DecodeIdx: 127 |
7716 | /* 27509 */ MCD::OPC_Decode, 249, 82, 128, 1, // Opcode: VSUBULrvm, DecodeIdx: 128 |
7717 | /* 27514 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 27542 |
7718 | /* 27518 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7719 | /* 27521 */ MCD::OPC_FilterValueOrFail, 0, |
7720 | /* 27523 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7721 | /* 27526 */ MCD::OPC_FilterValueOrFail, 0, |
7722 | /* 27528 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27538 |
7723 | /* 27534 */ MCD::OPC_Decode, 150, 33, 121, // Opcode: PVSUBULOvv, DecodeIdx: 121 |
7724 | /* 27538 */ MCD::OPC_Decode, 156, 33, 122, // Opcode: PVSUBULOvvm, DecodeIdx: 122 |
7725 | /* 27542 */ MCD::OPC_FilterValueOrFail, 6, |
7726 | /* 27544 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7727 | /* 27547 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 27580 |
7728 | /* 27551 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7729 | /* 27554 */ MCD::OPC_FilterValueOrFail, 0, |
7730 | /* 27556 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7731 | /* 27559 */ MCD::OPC_FilterValueOrFail, 0, |
7732 | /* 27561 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7733 | /* 27564 */ MCD::OPC_FilterValueOrFail, 0, |
7734 | /* 27566 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27576 |
7735 | /* 27572 */ MCD::OPC_Decode, 254, 32, 123, // Opcode: PVSUBULOiv, DecodeIdx: 123 |
7736 | /* 27576 */ MCD::OPC_Decode, 132, 33, 124, // Opcode: PVSUBULOivm, DecodeIdx: 124 |
7737 | /* 27580 */ MCD::OPC_FilterValueOrFail, 1, |
7738 | /* 27582 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7739 | /* 27585 */ MCD::OPC_FilterValueOrFail, 0, |
7740 | /* 27587 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7741 | /* 27590 */ MCD::OPC_FilterValueOrFail, 0, |
7742 | /* 27592 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7743 | /* 27595 */ MCD::OPC_FilterValueOrFail, 0, |
7744 | /* 27597 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27607 |
7745 | /* 27603 */ MCD::OPC_Decode, 138, 33, 125, // Opcode: PVSUBULOrv, DecodeIdx: 125 |
7746 | /* 27607 */ MCD::OPC_Decode, 144, 33, 126, // Opcode: PVSUBULOrvm, DecodeIdx: 126 |
7747 | /* 27611 */ MCD::OPC_FilterValue, 177, 3, 203, 0, // Skip to: 27819 |
7748 | /* 27616 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7749 | /* 27619 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 27647 |
7750 | /* 27623 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7751 | /* 27626 */ MCD::OPC_FilterValueOrFail, 0, |
7752 | /* 27628 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7753 | /* 27631 */ MCD::OPC_FilterValueOrFail, 0, |
7754 | /* 27633 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27643 |
7755 | /* 27639 */ MCD::OPC_Decode, 186, 33, 121, // Opcode: PVSUBUUPvv, DecodeIdx: 121 |
7756 | /* 27643 */ MCD::OPC_Decode, 192, 33, 122, // Opcode: PVSUBUUPvvm, DecodeIdx: 122 |
7757 | /* 27647 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 27719 |
7758 | /* 27651 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7759 | /* 27654 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 27687 |
7760 | /* 27658 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7761 | /* 27661 */ MCD::OPC_FilterValueOrFail, 0, |
7762 | /* 27663 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7763 | /* 27666 */ MCD::OPC_FilterValueOrFail, 0, |
7764 | /* 27668 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7765 | /* 27671 */ MCD::OPC_FilterValueOrFail, 0, |
7766 | /* 27673 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27683 |
7767 | /* 27679 */ MCD::OPC_Decode, 162, 33, 123, // Opcode: PVSUBUUPiv, DecodeIdx: 123 |
7768 | /* 27683 */ MCD::OPC_Decode, 168, 33, 124, // Opcode: PVSUBUUPivm, DecodeIdx: 124 |
7769 | /* 27687 */ MCD::OPC_FilterValueOrFail, 1, |
7770 | /* 27689 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7771 | /* 27692 */ MCD::OPC_FilterValueOrFail, 0, |
7772 | /* 27694 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7773 | /* 27697 */ MCD::OPC_FilterValueOrFail, 0, |
7774 | /* 27699 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7775 | /* 27702 */ MCD::OPC_FilterValueOrFail, 0, |
7776 | /* 27704 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27714 |
7777 | /* 27710 */ MCD::OPC_Decode, 174, 33, 127, // Opcode: PVSUBUUPrv, DecodeIdx: 127 |
7778 | /* 27714 */ MCD::OPC_Decode, 180, 33, 128, 1, // Opcode: PVSUBUUPrvm, DecodeIdx: 128 |
7779 | /* 27719 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 27748 |
7780 | /* 27723 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7781 | /* 27726 */ MCD::OPC_FilterValueOrFail, 0, |
7782 | /* 27728 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7783 | /* 27731 */ MCD::OPC_FilterValueOrFail, 0, |
7784 | /* 27733 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27743 |
7785 | /* 27739 */ MCD::OPC_Decode, 222, 33, 121, // Opcode: PVSUBUvv, DecodeIdx: 121 |
7786 | /* 27743 */ MCD::OPC_Decode, 228, 33, 129, 1, // Opcode: PVSUBUvvm, DecodeIdx: 129 |
7787 | /* 27748 */ MCD::OPC_FilterValueOrFail, 6, |
7788 | /* 27750 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7789 | /* 27753 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 27787 |
7790 | /* 27757 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7791 | /* 27760 */ MCD::OPC_FilterValueOrFail, 0, |
7792 | /* 27762 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7793 | /* 27765 */ MCD::OPC_FilterValueOrFail, 0, |
7794 | /* 27767 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7795 | /* 27770 */ MCD::OPC_FilterValueOrFail, 0, |
7796 | /* 27772 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27782 |
7797 | /* 27778 */ MCD::OPC_Decode, 198, 33, 123, // Opcode: PVSUBUiv, DecodeIdx: 123 |
7798 | /* 27782 */ MCD::OPC_Decode, 204, 33, 130, 1, // Opcode: PVSUBUivm, DecodeIdx: 130 |
7799 | /* 27787 */ MCD::OPC_FilterValueOrFail, 1, |
7800 | /* 27789 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7801 | /* 27792 */ MCD::OPC_FilterValueOrFail, 0, |
7802 | /* 27794 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7803 | /* 27797 */ MCD::OPC_FilterValueOrFail, 0, |
7804 | /* 27799 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7805 | /* 27802 */ MCD::OPC_FilterValueOrFail, 0, |
7806 | /* 27804 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27814 |
7807 | /* 27810 */ MCD::OPC_Decode, 210, 33, 127, // Opcode: PVSUBUrv, DecodeIdx: 127 |
7808 | /* 27814 */ MCD::OPC_Decode, 216, 33, 131, 1, // Opcode: PVSUBUrvm, DecodeIdx: 131 |
7809 | /* 27819 */ MCD::OPC_FilterValue, 178, 3, 105, 0, // Skip to: 27929 |
7810 | /* 27824 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7811 | /* 27827 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 27893 |
7812 | /* 27831 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7813 | /* 27834 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 27862 |
7814 | /* 27838 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7815 | /* 27841 */ MCD::OPC_FilterValueOrFail, 0, |
7816 | /* 27843 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7817 | /* 27846 */ MCD::OPC_FilterValueOrFail, 0, |
7818 | /* 27848 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27858 |
7819 | /* 27854 */ MCD::OPC_Decode, 223, 65, 121, // Opcode: VMULSLWvv, DecodeIdx: 121 |
7820 | /* 27858 */ MCD::OPC_Decode, 229, 65, 122, // Opcode: VMULSLWvvm, DecodeIdx: 122 |
7821 | /* 27862 */ MCD::OPC_FilterValueOrFail, 2, |
7822 | /* 27864 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7823 | /* 27867 */ MCD::OPC_FilterValueOrFail, 0, |
7824 | /* 27869 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7825 | /* 27872 */ MCD::OPC_FilterValueOrFail, 0, |
7826 | /* 27874 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7827 | /* 27877 */ MCD::OPC_FilterValueOrFail, 0, |
7828 | /* 27879 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27889 |
7829 | /* 27885 */ MCD::OPC_Decode, 199, 65, 123, // Opcode: VMULSLWiv, DecodeIdx: 123 |
7830 | /* 27889 */ MCD::OPC_Decode, 205, 65, 124, // Opcode: VMULSLWivm, DecodeIdx: 124 |
7831 | /* 27893 */ MCD::OPC_FilterValueOrFail, 1, |
7832 | /* 27895 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7833 | /* 27898 */ MCD::OPC_FilterValueOrFail, 0, |
7834 | /* 27900 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7835 | /* 27903 */ MCD::OPC_FilterValueOrFail, 0, |
7836 | /* 27905 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7837 | /* 27908 */ MCD::OPC_FilterValueOrFail, 0, |
7838 | /* 27910 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7839 | /* 27913 */ MCD::OPC_FilterValueOrFail, 2, |
7840 | /* 27915 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27925 |
7841 | /* 27921 */ MCD::OPC_Decode, 211, 65, 125, // Opcode: VMULSLWrv, DecodeIdx: 125 |
7842 | /* 27925 */ MCD::OPC_Decode, 217, 65, 126, // Opcode: VMULSLWrvm, DecodeIdx: 126 |
7843 | /* 27929 */ MCD::OPC_FilterValue, 180, 3, 199, 0, // Skip to: 28133 |
7844 | /* 27934 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7845 | /* 27937 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 27965 |
7846 | /* 27941 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7847 | /* 27944 */ MCD::OPC_FilterValueOrFail, 0, |
7848 | /* 27946 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7849 | /* 27949 */ MCD::OPC_FilterValueOrFail, 0, |
7850 | /* 27951 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 27961 |
7851 | /* 27957 */ MCD::OPC_Decode, 183, 82, 121, // Opcode: VSUBSWSXvv, DecodeIdx: 121 |
7852 | /* 27961 */ MCD::OPC_Decode, 189, 82, 122, // Opcode: VSUBSWSXvvm, DecodeIdx: 122 |
7853 | /* 27965 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 28036 |
7854 | /* 27969 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7855 | /* 27972 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28005 |
7856 | /* 27976 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7857 | /* 27979 */ MCD::OPC_FilterValueOrFail, 0, |
7858 | /* 27981 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7859 | /* 27984 */ MCD::OPC_FilterValueOrFail, 0, |
7860 | /* 27986 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7861 | /* 27989 */ MCD::OPC_FilterValueOrFail, 0, |
7862 | /* 27991 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28001 |
7863 | /* 27997 */ MCD::OPC_Decode, 159, 82, 123, // Opcode: VSUBSWSXiv, DecodeIdx: 123 |
7864 | /* 28001 */ MCD::OPC_Decode, 165, 82, 124, // Opcode: VSUBSWSXivm, DecodeIdx: 124 |
7865 | /* 28005 */ MCD::OPC_FilterValueOrFail, 1, |
7866 | /* 28007 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7867 | /* 28010 */ MCD::OPC_FilterValueOrFail, 0, |
7868 | /* 28012 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7869 | /* 28015 */ MCD::OPC_FilterValueOrFail, 0, |
7870 | /* 28017 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7871 | /* 28020 */ MCD::OPC_FilterValueOrFail, 0, |
7872 | /* 28022 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28032 |
7873 | /* 28028 */ MCD::OPC_Decode, 171, 82, 125, // Opcode: VSUBSWSXrv, DecodeIdx: 125 |
7874 | /* 28032 */ MCD::OPC_Decode, 177, 82, 126, // Opcode: VSUBSWSXrvm, DecodeIdx: 126 |
7875 | /* 28036 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 28064 |
7876 | /* 28040 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7877 | /* 28043 */ MCD::OPC_FilterValueOrFail, 0, |
7878 | /* 28045 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7879 | /* 28048 */ MCD::OPC_FilterValueOrFail, 0, |
7880 | /* 28050 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28060 |
7881 | /* 28056 */ MCD::OPC_Decode, 170, 32, 121, // Opcode: PVSUBSLOvv, DecodeIdx: 121 |
7882 | /* 28060 */ MCD::OPC_Decode, 176, 32, 122, // Opcode: PVSUBSLOvvm, DecodeIdx: 122 |
7883 | /* 28064 */ MCD::OPC_FilterValueOrFail, 6, |
7884 | /* 28066 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7885 | /* 28069 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28102 |
7886 | /* 28073 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7887 | /* 28076 */ MCD::OPC_FilterValueOrFail, 0, |
7888 | /* 28078 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7889 | /* 28081 */ MCD::OPC_FilterValueOrFail, 0, |
7890 | /* 28083 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7891 | /* 28086 */ MCD::OPC_FilterValueOrFail, 0, |
7892 | /* 28088 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28098 |
7893 | /* 28094 */ MCD::OPC_Decode, 146, 32, 123, // Opcode: PVSUBSLOiv, DecodeIdx: 123 |
7894 | /* 28098 */ MCD::OPC_Decode, 152, 32, 124, // Opcode: PVSUBSLOivm, DecodeIdx: 124 |
7895 | /* 28102 */ MCD::OPC_FilterValueOrFail, 1, |
7896 | /* 28104 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7897 | /* 28107 */ MCD::OPC_FilterValueOrFail, 0, |
7898 | /* 28109 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7899 | /* 28112 */ MCD::OPC_FilterValueOrFail, 0, |
7900 | /* 28114 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7901 | /* 28117 */ MCD::OPC_FilterValueOrFail, 0, |
7902 | /* 28119 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28129 |
7903 | /* 28125 */ MCD::OPC_Decode, 158, 32, 125, // Opcode: PVSUBSLOrv, DecodeIdx: 125 |
7904 | /* 28129 */ MCD::OPC_Decode, 164, 32, 126, // Opcode: PVSUBSLOrvm, DecodeIdx: 126 |
7905 | /* 28133 */ MCD::OPC_FilterValue, 181, 3, 203, 0, // Skip to: 28341 |
7906 | /* 28138 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7907 | /* 28141 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 28169 |
7908 | /* 28145 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7909 | /* 28148 */ MCD::OPC_FilterValueOrFail, 0, |
7910 | /* 28150 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7911 | /* 28153 */ MCD::OPC_FilterValueOrFail, 0, |
7912 | /* 28155 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28165 |
7913 | /* 28161 */ MCD::OPC_Decode, 206, 32, 121, // Opcode: PVSUBSUPvv, DecodeIdx: 121 |
7914 | /* 28165 */ MCD::OPC_Decode, 212, 32, 122, // Opcode: PVSUBSUPvvm, DecodeIdx: 122 |
7915 | /* 28169 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 28241 |
7916 | /* 28173 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7917 | /* 28176 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28209 |
7918 | /* 28180 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7919 | /* 28183 */ MCD::OPC_FilterValueOrFail, 0, |
7920 | /* 28185 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7921 | /* 28188 */ MCD::OPC_FilterValueOrFail, 0, |
7922 | /* 28190 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7923 | /* 28193 */ MCD::OPC_FilterValueOrFail, 0, |
7924 | /* 28195 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28205 |
7925 | /* 28201 */ MCD::OPC_Decode, 182, 32, 123, // Opcode: PVSUBSUPiv, DecodeIdx: 123 |
7926 | /* 28205 */ MCD::OPC_Decode, 188, 32, 124, // Opcode: PVSUBSUPivm, DecodeIdx: 124 |
7927 | /* 28209 */ MCD::OPC_FilterValueOrFail, 1, |
7928 | /* 28211 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7929 | /* 28214 */ MCD::OPC_FilterValueOrFail, 0, |
7930 | /* 28216 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7931 | /* 28219 */ MCD::OPC_FilterValueOrFail, 0, |
7932 | /* 28221 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7933 | /* 28224 */ MCD::OPC_FilterValueOrFail, 0, |
7934 | /* 28226 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28236 |
7935 | /* 28232 */ MCD::OPC_Decode, 194, 32, 127, // Opcode: PVSUBSUPrv, DecodeIdx: 127 |
7936 | /* 28236 */ MCD::OPC_Decode, 200, 32, 128, 1, // Opcode: PVSUBSUPrvm, DecodeIdx: 128 |
7937 | /* 28241 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 28270 |
7938 | /* 28245 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7939 | /* 28248 */ MCD::OPC_FilterValueOrFail, 0, |
7940 | /* 28250 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
7941 | /* 28253 */ MCD::OPC_FilterValueOrFail, 0, |
7942 | /* 28255 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28265 |
7943 | /* 28261 */ MCD::OPC_Decode, 242, 32, 121, // Opcode: PVSUBSvv, DecodeIdx: 121 |
7944 | /* 28265 */ MCD::OPC_Decode, 248, 32, 129, 1, // Opcode: PVSUBSvvm, DecodeIdx: 129 |
7945 | /* 28270 */ MCD::OPC_FilterValueOrFail, 6, |
7946 | /* 28272 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7947 | /* 28275 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 28309 |
7948 | /* 28279 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7949 | /* 28282 */ MCD::OPC_FilterValueOrFail, 0, |
7950 | /* 28284 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7951 | /* 28287 */ MCD::OPC_FilterValueOrFail, 0, |
7952 | /* 28289 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7953 | /* 28292 */ MCD::OPC_FilterValueOrFail, 0, |
7954 | /* 28294 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28304 |
7955 | /* 28300 */ MCD::OPC_Decode, 218, 32, 123, // Opcode: PVSUBSiv, DecodeIdx: 123 |
7956 | /* 28304 */ MCD::OPC_Decode, 224, 32, 130, 1, // Opcode: PVSUBSivm, DecodeIdx: 130 |
7957 | /* 28309 */ MCD::OPC_FilterValueOrFail, 1, |
7958 | /* 28311 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7959 | /* 28314 */ MCD::OPC_FilterValueOrFail, 0, |
7960 | /* 28316 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7961 | /* 28319 */ MCD::OPC_FilterValueOrFail, 0, |
7962 | /* 28321 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7963 | /* 28324 */ MCD::OPC_FilterValueOrFail, 0, |
7964 | /* 28326 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28336 |
7965 | /* 28332 */ MCD::OPC_Decode, 230, 32, 127, // Opcode: PVSUBSrv, DecodeIdx: 127 |
7966 | /* 28336 */ MCD::OPC_Decode, 236, 32, 131, 1, // Opcode: PVSUBSrvm, DecodeIdx: 131 |
7967 | /* 28341 */ MCD::OPC_FilterValue, 182, 3, 106, 0, // Skip to: 28452 |
7968 | /* 28346 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
7969 | /* 28349 */ MCD::OPC_FilterValue, 0, 62, 0, // Skip to: 28415 |
7970 | /* 28353 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7971 | /* 28356 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 28384 |
7972 | /* 28360 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7973 | /* 28363 */ MCD::OPC_FilterValueOrFail, 0, |
7974 | /* 28365 */ MCD::OPC_ExtractField, 32, 15, // Inst{46-32} ... |
7975 | /* 28368 */ MCD::OPC_FilterValueOrFail, 0, |
7976 | /* 28370 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28380 |
7977 | /* 28376 */ MCD::OPC_Decode, 131, 66, 121, // Opcode: VMULSLvv, DecodeIdx: 121 |
7978 | /* 28380 */ MCD::OPC_Decode, 137, 66, 122, // Opcode: VMULSLvvm, DecodeIdx: 122 |
7979 | /* 28384 */ MCD::OPC_FilterValueOrFail, 2, |
7980 | /* 28386 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7981 | /* 28389 */ MCD::OPC_FilterValueOrFail, 0, |
7982 | /* 28391 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7983 | /* 28394 */ MCD::OPC_FilterValueOrFail, 0, |
7984 | /* 28396 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7985 | /* 28399 */ MCD::OPC_FilterValueOrFail, 0, |
7986 | /* 28401 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28411 |
7987 | /* 28407 */ MCD::OPC_Decode, 235, 65, 123, // Opcode: VMULSLiv, DecodeIdx: 123 |
7988 | /* 28411 */ MCD::OPC_Decode, 241, 65, 124, // Opcode: VMULSLivm, DecodeIdx: 124 |
7989 | /* 28415 */ MCD::OPC_FilterValueOrFail, 1, |
7990 | /* 28417 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
7991 | /* 28420 */ MCD::OPC_FilterValueOrFail, 0, |
7992 | /* 28422 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
7993 | /* 28425 */ MCD::OPC_FilterValueOrFail, 0, |
7994 | /* 28427 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
7995 | /* 28430 */ MCD::OPC_FilterValueOrFail, 0, |
7996 | /* 28432 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
7997 | /* 28435 */ MCD::OPC_FilterValueOrFail, 2, |
7998 | /* 28437 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28447 |
7999 | /* 28443 */ MCD::OPC_Decode, 247, 65, 127, // Opcode: VMULSLrv, DecodeIdx: 127 |
8000 | /* 28447 */ MCD::OPC_Decode, 253, 65, 128, 1, // Opcode: VMULSLrvm, DecodeIdx: 128 |
8001 | /* 28452 */ MCD::OPC_FilterValue, 184, 3, 201, 0, // Skip to: 28658 |
8002 | /* 28457 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8003 | /* 28460 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 28488 |
8004 | /* 28464 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8005 | /* 28467 */ MCD::OPC_FilterValueOrFail, 0, |
8006 | /* 28469 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8007 | /* 28472 */ MCD::OPC_FilterValueOrFail, 0, |
8008 | /* 28474 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28484 |
8009 | /* 28480 */ MCD::OPC_Decode, 211, 53, 121, // Opcode: VFSUBDvv, DecodeIdx: 121 |
8010 | /* 28484 */ MCD::OPC_Decode, 217, 53, 122, // Opcode: VFSUBDvvm, DecodeIdx: 122 |
8011 | /* 28488 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 28560 |
8012 | /* 28492 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8013 | /* 28495 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28528 |
8014 | /* 28499 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8015 | /* 28502 */ MCD::OPC_FilterValueOrFail, 0, |
8016 | /* 28504 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8017 | /* 28507 */ MCD::OPC_FilterValueOrFail, 0, |
8018 | /* 28509 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8019 | /* 28512 */ MCD::OPC_FilterValueOrFail, 0, |
8020 | /* 28514 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28524 |
8021 | /* 28520 */ MCD::OPC_Decode, 187, 53, 123, // Opcode: VFSUBDiv, DecodeIdx: 123 |
8022 | /* 28524 */ MCD::OPC_Decode, 193, 53, 124, // Opcode: VFSUBDivm, DecodeIdx: 124 |
8023 | /* 28528 */ MCD::OPC_FilterValueOrFail, 1, |
8024 | /* 28530 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8025 | /* 28533 */ MCD::OPC_FilterValueOrFail, 0, |
8026 | /* 28535 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8027 | /* 28538 */ MCD::OPC_FilterValueOrFail, 0, |
8028 | /* 28540 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8029 | /* 28543 */ MCD::OPC_FilterValueOrFail, 0, |
8030 | /* 28545 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28555 |
8031 | /* 28551 */ MCD::OPC_Decode, 199, 53, 127, // Opcode: VFSUBDrv, DecodeIdx: 127 |
8032 | /* 28555 */ MCD::OPC_Decode, 205, 53, 128, 1, // Opcode: VFSUBDrvm, DecodeIdx: 128 |
8033 | /* 28560 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 28588 |
8034 | /* 28564 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8035 | /* 28567 */ MCD::OPC_FilterValueOrFail, 0, |
8036 | /* 28569 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8037 | /* 28572 */ MCD::OPC_FilterValueOrFail, 0, |
8038 | /* 28574 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28584 |
8039 | /* 28580 */ MCD::OPC_Decode, 242, 23, 121, // Opcode: PVFSUBLOvv, DecodeIdx: 121 |
8040 | /* 28584 */ MCD::OPC_Decode, 248, 23, 122, // Opcode: PVFSUBLOvvm, DecodeIdx: 122 |
8041 | /* 28588 */ MCD::OPC_FilterValueOrFail, 6, |
8042 | /* 28590 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8043 | /* 28593 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28626 |
8044 | /* 28597 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8045 | /* 28600 */ MCD::OPC_FilterValueOrFail, 0, |
8046 | /* 28602 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8047 | /* 28605 */ MCD::OPC_FilterValueOrFail, 0, |
8048 | /* 28607 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8049 | /* 28610 */ MCD::OPC_FilterValueOrFail, 0, |
8050 | /* 28612 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28622 |
8051 | /* 28618 */ MCD::OPC_Decode, 218, 23, 123, // Opcode: PVFSUBLOiv, DecodeIdx: 123 |
8052 | /* 28622 */ MCD::OPC_Decode, 224, 23, 124, // Opcode: PVFSUBLOivm, DecodeIdx: 124 |
8053 | /* 28626 */ MCD::OPC_FilterValueOrFail, 1, |
8054 | /* 28628 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8055 | /* 28631 */ MCD::OPC_FilterValueOrFail, 0, |
8056 | /* 28633 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8057 | /* 28636 */ MCD::OPC_FilterValueOrFail, 0, |
8058 | /* 28638 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8059 | /* 28641 */ MCD::OPC_FilterValueOrFail, 0, |
8060 | /* 28643 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28653 |
8061 | /* 28649 */ MCD::OPC_Decode, 230, 23, 127, // Opcode: PVFSUBLOrv, DecodeIdx: 127 |
8062 | /* 28653 */ MCD::OPC_Decode, 236, 23, 128, 1, // Opcode: PVFSUBLOrvm, DecodeIdx: 128 |
8063 | /* 28658 */ MCD::OPC_FilterValue, 185, 3, 204, 0, // Skip to: 28867 |
8064 | /* 28663 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8065 | /* 28666 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 28694 |
8066 | /* 28670 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8067 | /* 28673 */ MCD::OPC_FilterValueOrFail, 0, |
8068 | /* 28675 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8069 | /* 28678 */ MCD::OPC_FilterValueOrFail, 0, |
8070 | /* 28680 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28690 |
8071 | /* 28686 */ MCD::OPC_Decode, 150, 24, 121, // Opcode: PVFSUBUPvv, DecodeIdx: 121 |
8072 | /* 28690 */ MCD::OPC_Decode, 156, 24, 122, // Opcode: PVFSUBUPvvm, DecodeIdx: 122 |
8073 | /* 28694 */ MCD::OPC_FilterValue, 2, 69, 0, // Skip to: 28767 |
8074 | /* 28698 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8075 | /* 28701 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 28734 |
8076 | /* 28705 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8077 | /* 28708 */ MCD::OPC_FilterValueOrFail, 0, |
8078 | /* 28710 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8079 | /* 28713 */ MCD::OPC_FilterValueOrFail, 0, |
8080 | /* 28715 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8081 | /* 28718 */ MCD::OPC_FilterValueOrFail, 0, |
8082 | /* 28720 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28730 |
8083 | /* 28726 */ MCD::OPC_Decode, 254, 23, 123, // Opcode: PVFSUBUPiv, DecodeIdx: 123 |
8084 | /* 28730 */ MCD::OPC_Decode, 132, 24, 124, // Opcode: PVFSUBUPivm, DecodeIdx: 124 |
8085 | /* 28734 */ MCD::OPC_FilterValueOrFail, 1, |
8086 | /* 28736 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8087 | /* 28739 */ MCD::OPC_FilterValueOrFail, 0, |
8088 | /* 28741 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8089 | /* 28744 */ MCD::OPC_FilterValueOrFail, 0, |
8090 | /* 28746 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8091 | /* 28749 */ MCD::OPC_FilterValueOrFail, 0, |
8092 | /* 28751 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 28762 |
8093 | /* 28757 */ MCD::OPC_Decode, 138, 24, 210, 1, // Opcode: PVFSUBUPrv, DecodeIdx: 210 |
8094 | /* 28762 */ MCD::OPC_Decode, 144, 24, 211, 1, // Opcode: PVFSUBUPrvm, DecodeIdx: 211 |
8095 | /* 28767 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 28796 |
8096 | /* 28771 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8097 | /* 28774 */ MCD::OPC_FilterValueOrFail, 0, |
8098 | /* 28776 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8099 | /* 28779 */ MCD::OPC_FilterValueOrFail, 0, |
8100 | /* 28781 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28791 |
8101 | /* 28787 */ MCD::OPC_Decode, 186, 24, 121, // Opcode: PVFSUBvv, DecodeIdx: 121 |
8102 | /* 28791 */ MCD::OPC_Decode, 192, 24, 129, 1, // Opcode: PVFSUBvvm, DecodeIdx: 129 |
8103 | /* 28796 */ MCD::OPC_FilterValueOrFail, 6, |
8104 | /* 28798 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8105 | /* 28801 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 28835 |
8106 | /* 28805 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8107 | /* 28808 */ MCD::OPC_FilterValueOrFail, 0, |
8108 | /* 28810 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8109 | /* 28813 */ MCD::OPC_FilterValueOrFail, 0, |
8110 | /* 28815 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8111 | /* 28818 */ MCD::OPC_FilterValueOrFail, 0, |
8112 | /* 28820 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28830 |
8113 | /* 28826 */ MCD::OPC_Decode, 162, 24, 123, // Opcode: PVFSUBiv, DecodeIdx: 123 |
8114 | /* 28830 */ MCD::OPC_Decode, 168, 24, 130, 1, // Opcode: PVFSUBivm, DecodeIdx: 130 |
8115 | /* 28835 */ MCD::OPC_FilterValueOrFail, 1, |
8116 | /* 28837 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8117 | /* 28840 */ MCD::OPC_FilterValueOrFail, 0, |
8118 | /* 28842 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8119 | /* 28845 */ MCD::OPC_FilterValueOrFail, 0, |
8120 | /* 28847 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8121 | /* 28850 */ MCD::OPC_FilterValueOrFail, 0, |
8122 | /* 28852 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28862 |
8123 | /* 28858 */ MCD::OPC_Decode, 174, 24, 127, // Opcode: PVFSUBrv, DecodeIdx: 127 |
8124 | /* 28862 */ MCD::OPC_Decode, 180, 24, 131, 1, // Opcode: PVFSUBrvm, DecodeIdx: 131 |
8125 | /* 28867 */ MCD::OPC_FilterValue, 186, 3, 166, 0, // Skip to: 29038 |
8126 | /* 28872 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8127 | /* 28875 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 28903 |
8128 | /* 28879 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8129 | /* 28882 */ MCD::OPC_FilterValueOrFail, 0, |
8130 | /* 28884 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8131 | /* 28887 */ MCD::OPC_FilterValueOrFail, 0, |
8132 | /* 28889 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 28899 |
8133 | /* 28895 */ MCD::OPC_Decode, 211, 44, 121, // Opcode: VFDIVDvv, DecodeIdx: 121 |
8134 | /* 28899 */ MCD::OPC_Decode, 217, 44, 122, // Opcode: VFDIVDvvm, DecodeIdx: 122 |
8135 | /* 28903 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 28968 |
8136 | /* 28907 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8137 | /* 28910 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 28940 |
8138 | /* 28914 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8139 | /* 28917 */ MCD::OPC_FilterValueOrFail, 0, |
8140 | /* 28919 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8141 | /* 28922 */ MCD::OPC_FilterValueOrFail, 0, |
8142 | /* 28924 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 28935 |
8143 | /* 28930 */ MCD::OPC_Decode, 187, 44, 214, 1, // Opcode: VFDIVDvi, DecodeIdx: 214 |
8144 | /* 28935 */ MCD::OPC_Decode, 193, 44, 231, 1, // Opcode: VFDIVDvim, DecodeIdx: 231 |
8145 | /* 28940 */ MCD::OPC_FilterValueOrFail, 1, |
8146 | /* 28942 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8147 | /* 28945 */ MCD::OPC_FilterValueOrFail, 0, |
8148 | /* 28947 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8149 | /* 28950 */ MCD::OPC_FilterValueOrFail, 0, |
8150 | /* 28952 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 28963 |
8151 | /* 28958 */ MCD::OPC_Decode, 199, 44, 215, 1, // Opcode: VFDIVDvr, DecodeIdx: 215 |
8152 | /* 28963 */ MCD::OPC_Decode, 205, 44, 232, 1, // Opcode: VFDIVDvrm, DecodeIdx: 232 |
8153 | /* 28968 */ MCD::OPC_FilterValueOrFail, 2, |
8154 | /* 28970 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8155 | /* 28973 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 29006 |
8156 | /* 28977 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8157 | /* 28980 */ MCD::OPC_FilterValueOrFail, 0, |
8158 | /* 28982 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8159 | /* 28985 */ MCD::OPC_FilterValueOrFail, 0, |
8160 | /* 28987 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8161 | /* 28990 */ MCD::OPC_FilterValueOrFail, 0, |
8162 | /* 28992 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29002 |
8163 | /* 28998 */ MCD::OPC_Decode, 163, 44, 123, // Opcode: VFDIVDiv, DecodeIdx: 123 |
8164 | /* 29002 */ MCD::OPC_Decode, 169, 44, 124, // Opcode: VFDIVDivm, DecodeIdx: 124 |
8165 | /* 29006 */ MCD::OPC_FilterValueOrFail, 1, |
8166 | /* 29008 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8167 | /* 29011 */ MCD::OPC_FilterValueOrFail, 0, |
8168 | /* 29013 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8169 | /* 29016 */ MCD::OPC_FilterValueOrFail, 0, |
8170 | /* 29018 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8171 | /* 29021 */ MCD::OPC_FilterValueOrFail, 0, |
8172 | /* 29023 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29033 |
8173 | /* 29029 */ MCD::OPC_Decode, 175, 44, 127, // Opcode: VFDIVDrv, DecodeIdx: 127 |
8174 | /* 29033 */ MCD::OPC_Decode, 181, 44, 128, 1, // Opcode: VFDIVDrvm, DecodeIdx: 128 |
8175 | /* 29038 */ MCD::OPC_FilterValue, 187, 3, 167, 0, // Skip to: 29210 |
8176 | /* 29043 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8177 | /* 29046 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 29074 |
8178 | /* 29050 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8179 | /* 29053 */ MCD::OPC_FilterValueOrFail, 0, |
8180 | /* 29055 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8181 | /* 29058 */ MCD::OPC_FilterValueOrFail, 0, |
8182 | /* 29060 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29070 |
8183 | /* 29066 */ MCD::OPC_Decode, 143, 45, 121, // Opcode: VFDIVSvv, DecodeIdx: 121 |
8184 | /* 29070 */ MCD::OPC_Decode, 149, 45, 122, // Opcode: VFDIVSvvm, DecodeIdx: 122 |
8185 | /* 29074 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 29139 |
8186 | /* 29078 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8187 | /* 29081 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29111 |
8188 | /* 29085 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8189 | /* 29088 */ MCD::OPC_FilterValueOrFail, 0, |
8190 | /* 29090 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8191 | /* 29093 */ MCD::OPC_FilterValueOrFail, 0, |
8192 | /* 29095 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29106 |
8193 | /* 29101 */ MCD::OPC_Decode, 247, 44, 214, 1, // Opcode: VFDIVSvi, DecodeIdx: 214 |
8194 | /* 29106 */ MCD::OPC_Decode, 253, 44, 231, 1, // Opcode: VFDIVSvim, DecodeIdx: 231 |
8195 | /* 29111 */ MCD::OPC_FilterValueOrFail, 1, |
8196 | /* 29113 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8197 | /* 29116 */ MCD::OPC_FilterValueOrFail, 0, |
8198 | /* 29118 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8199 | /* 29121 */ MCD::OPC_FilterValueOrFail, 0, |
8200 | /* 29123 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29134 |
8201 | /* 29129 */ MCD::OPC_Decode, 131, 45, 216, 1, // Opcode: VFDIVSvr, DecodeIdx: 216 |
8202 | /* 29134 */ MCD::OPC_Decode, 137, 45, 233, 1, // Opcode: VFDIVSvrm, DecodeIdx: 233 |
8203 | /* 29139 */ MCD::OPC_FilterValueOrFail, 2, |
8204 | /* 29141 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8205 | /* 29144 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 29177 |
8206 | /* 29148 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8207 | /* 29151 */ MCD::OPC_FilterValueOrFail, 0, |
8208 | /* 29153 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8209 | /* 29156 */ MCD::OPC_FilterValueOrFail, 0, |
8210 | /* 29158 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8211 | /* 29161 */ MCD::OPC_FilterValueOrFail, 0, |
8212 | /* 29163 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29173 |
8213 | /* 29169 */ MCD::OPC_Decode, 223, 44, 123, // Opcode: VFDIVSiv, DecodeIdx: 123 |
8214 | /* 29173 */ MCD::OPC_Decode, 229, 44, 124, // Opcode: VFDIVSivm, DecodeIdx: 124 |
8215 | /* 29177 */ MCD::OPC_FilterValueOrFail, 1, |
8216 | /* 29179 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8217 | /* 29182 */ MCD::OPC_FilterValueOrFail, 0, |
8218 | /* 29184 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8219 | /* 29187 */ MCD::OPC_FilterValueOrFail, 0, |
8220 | /* 29189 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8221 | /* 29192 */ MCD::OPC_FilterValueOrFail, 0, |
8222 | /* 29194 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29205 |
8223 | /* 29200 */ MCD::OPC_Decode, 235, 44, 210, 1, // Opcode: VFDIVSrv, DecodeIdx: 210 |
8224 | /* 29205 */ MCD::OPC_Decode, 241, 44, 211, 1, // Opcode: VFDIVSrvm, DecodeIdx: 211 |
8225 | /* 29210 */ MCD::OPC_FilterValue, 188, 3, 35, 0, // Skip to: 29250 |
8226 | /* 29215 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
8227 | /* 29218 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 29235 |
8228 | /* 29222 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
8229 | /* 29226 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
8230 | /* 29230 */ MCD::OPC_Decode, 147, 46, 214, 1, // Opcode: VFISDvi, DecodeIdx: 214 |
8231 | /* 29235 */ MCD::OPC_FilterValueOrFail, 1, |
8232 | /* 29237 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
8233 | /* 29241 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
8234 | /* 29245 */ MCD::OPC_Decode, 153, 46, 215, 1, // Opcode: VFISDvr, DecodeIdx: 215 |
8235 | /* 29250 */ MCD::OPC_FilterValue, 189, 3, 35, 0, // Skip to: 29290 |
8236 | /* 29255 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
8237 | /* 29258 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 29275 |
8238 | /* 29262 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
8239 | /* 29266 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
8240 | /* 29270 */ MCD::OPC_Decode, 183, 46, 214, 1, // Opcode: VFISSvi, DecodeIdx: 214 |
8241 | /* 29275 */ MCD::OPC_FilterValueOrFail, 1, |
8242 | /* 29277 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
8243 | /* 29281 */ MCD::OPC_CheckFieldOrFail, 0, 16, 0, |
8244 | /* 29285 */ MCD::OPC_Decode, 189, 46, 216, 1, // Opcode: VFISSvr, DecodeIdx: 216 |
8245 | /* 29290 */ MCD::OPC_FilterValue, 194, 3, 57, 0, // Skip to: 29352 |
8246 | /* 29295 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8247 | /* 29298 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 29326 |
8248 | /* 29302 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8249 | /* 29305 */ MCD::OPC_FilterValueOrFail, 0, |
8250 | /* 29307 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8251 | /* 29310 */ MCD::OPC_FilterValueOrFail, 0, |
8252 | /* 29312 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29322 |
8253 | /* 29318 */ MCD::OPC_Decode, 243, 67, 119, // Opcode: VRCPDv, DecodeIdx: 119 |
8254 | /* 29322 */ MCD::OPC_Decode, 249, 67, 120, // Opcode: VRCPDvm, DecodeIdx: 120 |
8255 | /* 29326 */ MCD::OPC_FilterValueOrFail, 4, |
8256 | /* 29328 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8257 | /* 29331 */ MCD::OPC_FilterValueOrFail, 0, |
8258 | /* 29333 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8259 | /* 29336 */ MCD::OPC_FilterValueOrFail, 0, |
8260 | /* 29338 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29348 |
8261 | /* 29344 */ MCD::OPC_Decode, 210, 27, 119, // Opcode: PVRCPLOv, DecodeIdx: 119 |
8262 | /* 29348 */ MCD::OPC_Decode, 216, 27, 120, // Opcode: PVRCPLOvm, DecodeIdx: 120 |
8263 | /* 29352 */ MCD::OPC_FilterValue, 195, 3, 58, 0, // Skip to: 29415 |
8264 | /* 29357 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8265 | /* 29360 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 29388 |
8266 | /* 29364 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8267 | /* 29367 */ MCD::OPC_FilterValueOrFail, 0, |
8268 | /* 29369 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8269 | /* 29372 */ MCD::OPC_FilterValueOrFail, 0, |
8270 | /* 29374 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29384 |
8271 | /* 29380 */ MCD::OPC_Decode, 222, 27, 119, // Opcode: PVRCPUPv, DecodeIdx: 119 |
8272 | /* 29384 */ MCD::OPC_Decode, 228, 27, 120, // Opcode: PVRCPUPvm, DecodeIdx: 120 |
8273 | /* 29388 */ MCD::OPC_FilterValueOrFail, 4, |
8274 | /* 29390 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
8275 | /* 29393 */ MCD::OPC_FilterValueOrFail, 0, |
8276 | /* 29395 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8277 | /* 29398 */ MCD::OPC_FilterValueOrFail, 0, |
8278 | /* 29400 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 29410 |
8279 | /* 29406 */ MCD::OPC_Decode, 234, 27, 119, // Opcode: PVRCPv, DecodeIdx: 119 |
8280 | /* 29410 */ MCD::OPC_Decode, 240, 27, 234, 1, // Opcode: PVRCPvm, DecodeIdx: 234 |
8281 | /* 29415 */ MCD::OPC_FilterValue, 196, 3, 55, 1, // Skip to: 29731 |
8282 | /* 29420 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8283 | /* 29423 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 29448 |
8284 | /* 29427 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8285 | /* 29430 */ MCD::OPC_FilterValueOrFail, 0, |
8286 | /* 29432 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29443 |
8287 | /* 29438 */ MCD::OPC_Decode, 243, 46, 235, 1, // Opcode: VFMADDvvv, DecodeIdx: 235 |
8288 | /* 29443 */ MCD::OPC_Decode, 249, 46, 236, 1, // Opcode: VFMADDvvvm, DecodeIdx: 236 |
8289 | /* 29448 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 29513 |
8290 | /* 29452 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8291 | /* 29455 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29485 |
8292 | /* 29459 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8293 | /* 29462 */ MCD::OPC_FilterValueOrFail, 0, |
8294 | /* 29464 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8295 | /* 29467 */ MCD::OPC_FilterValueOrFail, 0, |
8296 | /* 29469 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29480 |
8297 | /* 29475 */ MCD::OPC_Decode, 219, 46, 237, 1, // Opcode: VFMADDviv, DecodeIdx: 237 |
8298 | /* 29480 */ MCD::OPC_Decode, 225, 46, 238, 1, // Opcode: VFMADDvivm, DecodeIdx: 238 |
8299 | /* 29485 */ MCD::OPC_FilterValueOrFail, 1, |
8300 | /* 29487 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8301 | /* 29490 */ MCD::OPC_FilterValueOrFail, 0, |
8302 | /* 29492 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8303 | /* 29495 */ MCD::OPC_FilterValueOrFail, 0, |
8304 | /* 29497 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29508 |
8305 | /* 29503 */ MCD::OPC_Decode, 231, 46, 239, 1, // Opcode: VFMADDvrv, DecodeIdx: 239 |
8306 | /* 29508 */ MCD::OPC_Decode, 237, 46, 240, 1, // Opcode: VFMADDvrvm, DecodeIdx: 240 |
8307 | /* 29513 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 29578 |
8308 | /* 29517 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8309 | /* 29520 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29550 |
8310 | /* 29524 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8311 | /* 29527 */ MCD::OPC_FilterValueOrFail, 0, |
8312 | /* 29529 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8313 | /* 29532 */ MCD::OPC_FilterValueOrFail, 0, |
8314 | /* 29534 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29545 |
8315 | /* 29540 */ MCD::OPC_Decode, 195, 46, 241, 1, // Opcode: VFMADDivv, DecodeIdx: 241 |
8316 | /* 29545 */ MCD::OPC_Decode, 201, 46, 242, 1, // Opcode: VFMADDivvm, DecodeIdx: 242 |
8317 | /* 29550 */ MCD::OPC_FilterValueOrFail, 1, |
8318 | /* 29552 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8319 | /* 29555 */ MCD::OPC_FilterValueOrFail, 0, |
8320 | /* 29557 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8321 | /* 29560 */ MCD::OPC_FilterValueOrFail, 0, |
8322 | /* 29562 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29573 |
8323 | /* 29568 */ MCD::OPC_Decode, 207, 46, 243, 1, // Opcode: VFMADDrvv, DecodeIdx: 243 |
8324 | /* 29573 */ MCD::OPC_Decode, 213, 46, 244, 1, // Opcode: VFMADDrvvm, DecodeIdx: 244 |
8325 | /* 29578 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 29603 |
8326 | /* 29582 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8327 | /* 29585 */ MCD::OPC_FilterValueOrFail, 0, |
8328 | /* 29587 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29598 |
8329 | /* 29593 */ MCD::OPC_Decode, 174, 15, 235, 1, // Opcode: PVFMADLOvvv, DecodeIdx: 235 |
8330 | /* 29598 */ MCD::OPC_Decode, 180, 15, 236, 1, // Opcode: PVFMADLOvvvm, DecodeIdx: 236 |
8331 | /* 29603 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 29668 |
8332 | /* 29607 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8333 | /* 29610 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29640 |
8334 | /* 29614 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8335 | /* 29617 */ MCD::OPC_FilterValueOrFail, 0, |
8336 | /* 29619 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8337 | /* 29622 */ MCD::OPC_FilterValueOrFail, 0, |
8338 | /* 29624 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29635 |
8339 | /* 29630 */ MCD::OPC_Decode, 150, 15, 237, 1, // Opcode: PVFMADLOviv, DecodeIdx: 237 |
8340 | /* 29635 */ MCD::OPC_Decode, 156, 15, 238, 1, // Opcode: PVFMADLOvivm, DecodeIdx: 238 |
8341 | /* 29640 */ MCD::OPC_FilterValueOrFail, 1, |
8342 | /* 29642 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8343 | /* 29645 */ MCD::OPC_FilterValueOrFail, 0, |
8344 | /* 29647 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8345 | /* 29650 */ MCD::OPC_FilterValueOrFail, 0, |
8346 | /* 29652 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29663 |
8347 | /* 29658 */ MCD::OPC_Decode, 162, 15, 239, 1, // Opcode: PVFMADLOvrv, DecodeIdx: 239 |
8348 | /* 29663 */ MCD::OPC_Decode, 168, 15, 240, 1, // Opcode: PVFMADLOvrvm, DecodeIdx: 240 |
8349 | /* 29668 */ MCD::OPC_FilterValueOrFail, 6, |
8350 | /* 29670 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8351 | /* 29673 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29703 |
8352 | /* 29677 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8353 | /* 29680 */ MCD::OPC_FilterValueOrFail, 0, |
8354 | /* 29682 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8355 | /* 29685 */ MCD::OPC_FilterValueOrFail, 0, |
8356 | /* 29687 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29698 |
8357 | /* 29693 */ MCD::OPC_Decode, 254, 14, 241, 1, // Opcode: PVFMADLOivv, DecodeIdx: 241 |
8358 | /* 29698 */ MCD::OPC_Decode, 132, 15, 242, 1, // Opcode: PVFMADLOivvm, DecodeIdx: 242 |
8359 | /* 29703 */ MCD::OPC_FilterValueOrFail, 1, |
8360 | /* 29705 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8361 | /* 29708 */ MCD::OPC_FilterValueOrFail, 0, |
8362 | /* 29710 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8363 | /* 29713 */ MCD::OPC_FilterValueOrFail, 0, |
8364 | /* 29715 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29726 |
8365 | /* 29721 */ MCD::OPC_Decode, 138, 15, 243, 1, // Opcode: PVFMADLOrvv, DecodeIdx: 243 |
8366 | /* 29726 */ MCD::OPC_Decode, 144, 15, 244, 1, // Opcode: PVFMADLOrvvm, DecodeIdx: 244 |
8367 | /* 29731 */ MCD::OPC_FilterValue, 197, 3, 55, 1, // Skip to: 30047 |
8368 | /* 29736 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8369 | /* 29739 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 29764 |
8370 | /* 29743 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8371 | /* 29746 */ MCD::OPC_FilterValueOrFail, 0, |
8372 | /* 29748 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29759 |
8373 | /* 29754 */ MCD::OPC_Decode, 234, 15, 235, 1, // Opcode: PVFMADUPvvv, DecodeIdx: 235 |
8374 | /* 29759 */ MCD::OPC_Decode, 240, 15, 236, 1, // Opcode: PVFMADUPvvvm, DecodeIdx: 236 |
8375 | /* 29764 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 29829 |
8376 | /* 29768 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8377 | /* 29771 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29801 |
8378 | /* 29775 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8379 | /* 29778 */ MCD::OPC_FilterValueOrFail, 0, |
8380 | /* 29780 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8381 | /* 29783 */ MCD::OPC_FilterValueOrFail, 0, |
8382 | /* 29785 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29796 |
8383 | /* 29791 */ MCD::OPC_Decode, 210, 15, 237, 1, // Opcode: PVFMADUPviv, DecodeIdx: 237 |
8384 | /* 29796 */ MCD::OPC_Decode, 216, 15, 238, 1, // Opcode: PVFMADUPvivm, DecodeIdx: 238 |
8385 | /* 29801 */ MCD::OPC_FilterValueOrFail, 1, |
8386 | /* 29803 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8387 | /* 29806 */ MCD::OPC_FilterValueOrFail, 0, |
8388 | /* 29808 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8389 | /* 29811 */ MCD::OPC_FilterValueOrFail, 0, |
8390 | /* 29813 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29824 |
8391 | /* 29819 */ MCD::OPC_Decode, 222, 15, 245, 1, // Opcode: PVFMADUPvrv, DecodeIdx: 245 |
8392 | /* 29824 */ MCD::OPC_Decode, 228, 15, 246, 1, // Opcode: PVFMADUPvrvm, DecodeIdx: 246 |
8393 | /* 29829 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 29894 |
8394 | /* 29833 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8395 | /* 29836 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29866 |
8396 | /* 29840 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8397 | /* 29843 */ MCD::OPC_FilterValueOrFail, 0, |
8398 | /* 29845 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8399 | /* 29848 */ MCD::OPC_FilterValueOrFail, 0, |
8400 | /* 29850 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29861 |
8401 | /* 29856 */ MCD::OPC_Decode, 186, 15, 241, 1, // Opcode: PVFMADUPivv, DecodeIdx: 241 |
8402 | /* 29861 */ MCD::OPC_Decode, 192, 15, 242, 1, // Opcode: PVFMADUPivvm, DecodeIdx: 242 |
8403 | /* 29866 */ MCD::OPC_FilterValueOrFail, 1, |
8404 | /* 29868 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8405 | /* 29871 */ MCD::OPC_FilterValueOrFail, 0, |
8406 | /* 29873 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8407 | /* 29876 */ MCD::OPC_FilterValueOrFail, 0, |
8408 | /* 29878 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29889 |
8409 | /* 29884 */ MCD::OPC_Decode, 198, 15, 247, 1, // Opcode: PVFMADUPrvv, DecodeIdx: 247 |
8410 | /* 29889 */ MCD::OPC_Decode, 204, 15, 248, 1, // Opcode: PVFMADUPrvvm, DecodeIdx: 248 |
8411 | /* 29894 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 29919 |
8412 | /* 29898 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8413 | /* 29901 */ MCD::OPC_FilterValueOrFail, 0, |
8414 | /* 29903 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29914 |
8415 | /* 29909 */ MCD::OPC_Decode, 166, 16, 235, 1, // Opcode: PVFMADvvv, DecodeIdx: 235 |
8416 | /* 29914 */ MCD::OPC_Decode, 172, 16, 249, 1, // Opcode: PVFMADvvvm, DecodeIdx: 249 |
8417 | /* 29919 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 29984 |
8418 | /* 29923 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8419 | /* 29926 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 29956 |
8420 | /* 29930 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8421 | /* 29933 */ MCD::OPC_FilterValueOrFail, 0, |
8422 | /* 29935 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8423 | /* 29938 */ MCD::OPC_FilterValueOrFail, 0, |
8424 | /* 29940 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29951 |
8425 | /* 29946 */ MCD::OPC_Decode, 142, 16, 237, 1, // Opcode: PVFMADviv, DecodeIdx: 237 |
8426 | /* 29951 */ MCD::OPC_Decode, 148, 16, 250, 1, // Opcode: PVFMADvivm, DecodeIdx: 250 |
8427 | /* 29956 */ MCD::OPC_FilterValueOrFail, 1, |
8428 | /* 29958 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8429 | /* 29961 */ MCD::OPC_FilterValueOrFail, 0, |
8430 | /* 29963 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8431 | /* 29966 */ MCD::OPC_FilterValueOrFail, 0, |
8432 | /* 29968 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 29979 |
8433 | /* 29974 */ MCD::OPC_Decode, 154, 16, 239, 1, // Opcode: PVFMADvrv, DecodeIdx: 239 |
8434 | /* 29979 */ MCD::OPC_Decode, 160, 16, 251, 1, // Opcode: PVFMADvrvm, DecodeIdx: 251 |
8435 | /* 29984 */ MCD::OPC_FilterValueOrFail, 6, |
8436 | /* 29986 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8437 | /* 29989 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30019 |
8438 | /* 29993 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8439 | /* 29996 */ MCD::OPC_FilterValueOrFail, 0, |
8440 | /* 29998 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8441 | /* 30001 */ MCD::OPC_FilterValueOrFail, 0, |
8442 | /* 30003 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30014 |
8443 | /* 30009 */ MCD::OPC_Decode, 246, 15, 241, 1, // Opcode: PVFMADivv, DecodeIdx: 241 |
8444 | /* 30014 */ MCD::OPC_Decode, 252, 15, 252, 1, // Opcode: PVFMADivvm, DecodeIdx: 252 |
8445 | /* 30019 */ MCD::OPC_FilterValueOrFail, 1, |
8446 | /* 30021 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8447 | /* 30024 */ MCD::OPC_FilterValueOrFail, 0, |
8448 | /* 30026 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8449 | /* 30029 */ MCD::OPC_FilterValueOrFail, 0, |
8450 | /* 30031 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30042 |
8451 | /* 30037 */ MCD::OPC_Decode, 130, 16, 243, 1, // Opcode: PVFMADrvv, DecodeIdx: 243 |
8452 | /* 30042 */ MCD::OPC_Decode, 136, 16, 253, 1, // Opcode: PVFMADrvvm, DecodeIdx: 253 |
8453 | /* 30047 */ MCD::OPC_FilterValue, 198, 3, 55, 1, // Skip to: 30363 |
8454 | /* 30052 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8455 | /* 30055 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 30080 |
8456 | /* 30059 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8457 | /* 30062 */ MCD::OPC_FilterValueOrFail, 0, |
8458 | /* 30064 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30075 |
8459 | /* 30070 */ MCD::OPC_Decode, 131, 51, 235, 1, // Opcode: VFNMADDvvv, DecodeIdx: 235 |
8460 | /* 30075 */ MCD::OPC_Decode, 137, 51, 236, 1, // Opcode: VFNMADDvvvm, DecodeIdx: 236 |
8461 | /* 30080 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 30145 |
8462 | /* 30084 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8463 | /* 30087 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30117 |
8464 | /* 30091 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8465 | /* 30094 */ MCD::OPC_FilterValueOrFail, 0, |
8466 | /* 30096 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8467 | /* 30099 */ MCD::OPC_FilterValueOrFail, 0, |
8468 | /* 30101 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30112 |
8469 | /* 30107 */ MCD::OPC_Decode, 235, 50, 237, 1, // Opcode: VFNMADDviv, DecodeIdx: 237 |
8470 | /* 30112 */ MCD::OPC_Decode, 241, 50, 238, 1, // Opcode: VFNMADDvivm, DecodeIdx: 238 |
8471 | /* 30117 */ MCD::OPC_FilterValueOrFail, 1, |
8472 | /* 30119 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8473 | /* 30122 */ MCD::OPC_FilterValueOrFail, 0, |
8474 | /* 30124 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8475 | /* 30127 */ MCD::OPC_FilterValueOrFail, 0, |
8476 | /* 30129 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30140 |
8477 | /* 30135 */ MCD::OPC_Decode, 247, 50, 239, 1, // Opcode: VFNMADDvrv, DecodeIdx: 239 |
8478 | /* 30140 */ MCD::OPC_Decode, 253, 50, 240, 1, // Opcode: VFNMADDvrvm, DecodeIdx: 240 |
8479 | /* 30145 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 30210 |
8480 | /* 30149 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8481 | /* 30152 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30182 |
8482 | /* 30156 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8483 | /* 30159 */ MCD::OPC_FilterValueOrFail, 0, |
8484 | /* 30161 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8485 | /* 30164 */ MCD::OPC_FilterValueOrFail, 0, |
8486 | /* 30166 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30177 |
8487 | /* 30172 */ MCD::OPC_Decode, 211, 50, 241, 1, // Opcode: VFNMADDivv, DecodeIdx: 241 |
8488 | /* 30177 */ MCD::OPC_Decode, 217, 50, 242, 1, // Opcode: VFNMADDivvm, DecodeIdx: 242 |
8489 | /* 30182 */ MCD::OPC_FilterValueOrFail, 1, |
8490 | /* 30184 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8491 | /* 30187 */ MCD::OPC_FilterValueOrFail, 0, |
8492 | /* 30189 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8493 | /* 30192 */ MCD::OPC_FilterValueOrFail, 0, |
8494 | /* 30194 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30205 |
8495 | /* 30200 */ MCD::OPC_Decode, 223, 50, 243, 1, // Opcode: VFNMADDrvv, DecodeIdx: 243 |
8496 | /* 30205 */ MCD::OPC_Decode, 229, 50, 244, 1, // Opcode: VFNMADDrvvm, DecodeIdx: 244 |
8497 | /* 30210 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 30235 |
8498 | /* 30214 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8499 | /* 30217 */ MCD::OPC_FilterValueOrFail, 0, |
8500 | /* 30219 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30230 |
8501 | /* 30225 */ MCD::OPC_Decode, 162, 21, 235, 1, // Opcode: PVFNMADLOvvv, DecodeIdx: 235 |
8502 | /* 30230 */ MCD::OPC_Decode, 168, 21, 236, 1, // Opcode: PVFNMADLOvvvm, DecodeIdx: 236 |
8503 | /* 30235 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 30300 |
8504 | /* 30239 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8505 | /* 30242 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30272 |
8506 | /* 30246 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8507 | /* 30249 */ MCD::OPC_FilterValueOrFail, 0, |
8508 | /* 30251 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8509 | /* 30254 */ MCD::OPC_FilterValueOrFail, 0, |
8510 | /* 30256 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30267 |
8511 | /* 30262 */ MCD::OPC_Decode, 138, 21, 237, 1, // Opcode: PVFNMADLOviv, DecodeIdx: 237 |
8512 | /* 30267 */ MCD::OPC_Decode, 144, 21, 238, 1, // Opcode: PVFNMADLOvivm, DecodeIdx: 238 |
8513 | /* 30272 */ MCD::OPC_FilterValueOrFail, 1, |
8514 | /* 30274 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8515 | /* 30277 */ MCD::OPC_FilterValueOrFail, 0, |
8516 | /* 30279 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8517 | /* 30282 */ MCD::OPC_FilterValueOrFail, 0, |
8518 | /* 30284 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30295 |
8519 | /* 30290 */ MCD::OPC_Decode, 150, 21, 239, 1, // Opcode: PVFNMADLOvrv, DecodeIdx: 239 |
8520 | /* 30295 */ MCD::OPC_Decode, 156, 21, 240, 1, // Opcode: PVFNMADLOvrvm, DecodeIdx: 240 |
8521 | /* 30300 */ MCD::OPC_FilterValueOrFail, 6, |
8522 | /* 30302 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8523 | /* 30305 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30335 |
8524 | /* 30309 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8525 | /* 30312 */ MCD::OPC_FilterValueOrFail, 0, |
8526 | /* 30314 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8527 | /* 30317 */ MCD::OPC_FilterValueOrFail, 0, |
8528 | /* 30319 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30330 |
8529 | /* 30325 */ MCD::OPC_Decode, 242, 20, 241, 1, // Opcode: PVFNMADLOivv, DecodeIdx: 241 |
8530 | /* 30330 */ MCD::OPC_Decode, 248, 20, 242, 1, // Opcode: PVFNMADLOivvm, DecodeIdx: 242 |
8531 | /* 30335 */ MCD::OPC_FilterValueOrFail, 1, |
8532 | /* 30337 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8533 | /* 30340 */ MCD::OPC_FilterValueOrFail, 0, |
8534 | /* 30342 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8535 | /* 30345 */ MCD::OPC_FilterValueOrFail, 0, |
8536 | /* 30347 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30358 |
8537 | /* 30353 */ MCD::OPC_Decode, 254, 20, 243, 1, // Opcode: PVFNMADLOrvv, DecodeIdx: 243 |
8538 | /* 30358 */ MCD::OPC_Decode, 132, 21, 244, 1, // Opcode: PVFNMADLOrvvm, DecodeIdx: 244 |
8539 | /* 30363 */ MCD::OPC_FilterValue, 199, 3, 55, 1, // Skip to: 30679 |
8540 | /* 30368 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8541 | /* 30371 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 30396 |
8542 | /* 30375 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8543 | /* 30378 */ MCD::OPC_FilterValueOrFail, 0, |
8544 | /* 30380 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30391 |
8545 | /* 30386 */ MCD::OPC_Decode, 222, 21, 235, 1, // Opcode: PVFNMADUPvvv, DecodeIdx: 235 |
8546 | /* 30391 */ MCD::OPC_Decode, 228, 21, 236, 1, // Opcode: PVFNMADUPvvvm, DecodeIdx: 236 |
8547 | /* 30396 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 30461 |
8548 | /* 30400 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8549 | /* 30403 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30433 |
8550 | /* 30407 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8551 | /* 30410 */ MCD::OPC_FilterValueOrFail, 0, |
8552 | /* 30412 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8553 | /* 30415 */ MCD::OPC_FilterValueOrFail, 0, |
8554 | /* 30417 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30428 |
8555 | /* 30423 */ MCD::OPC_Decode, 198, 21, 237, 1, // Opcode: PVFNMADUPviv, DecodeIdx: 237 |
8556 | /* 30428 */ MCD::OPC_Decode, 204, 21, 238, 1, // Opcode: PVFNMADUPvivm, DecodeIdx: 238 |
8557 | /* 30433 */ MCD::OPC_FilterValueOrFail, 1, |
8558 | /* 30435 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8559 | /* 30438 */ MCD::OPC_FilterValueOrFail, 0, |
8560 | /* 30440 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8561 | /* 30443 */ MCD::OPC_FilterValueOrFail, 0, |
8562 | /* 30445 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30456 |
8563 | /* 30451 */ MCD::OPC_Decode, 210, 21, 245, 1, // Opcode: PVFNMADUPvrv, DecodeIdx: 245 |
8564 | /* 30456 */ MCD::OPC_Decode, 216, 21, 246, 1, // Opcode: PVFNMADUPvrvm, DecodeIdx: 246 |
8565 | /* 30461 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 30526 |
8566 | /* 30465 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8567 | /* 30468 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30498 |
8568 | /* 30472 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8569 | /* 30475 */ MCD::OPC_FilterValueOrFail, 0, |
8570 | /* 30477 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8571 | /* 30480 */ MCD::OPC_FilterValueOrFail, 0, |
8572 | /* 30482 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30493 |
8573 | /* 30488 */ MCD::OPC_Decode, 174, 21, 241, 1, // Opcode: PVFNMADUPivv, DecodeIdx: 241 |
8574 | /* 30493 */ MCD::OPC_Decode, 180, 21, 242, 1, // Opcode: PVFNMADUPivvm, DecodeIdx: 242 |
8575 | /* 30498 */ MCD::OPC_FilterValueOrFail, 1, |
8576 | /* 30500 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8577 | /* 30503 */ MCD::OPC_FilterValueOrFail, 0, |
8578 | /* 30505 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8579 | /* 30508 */ MCD::OPC_FilterValueOrFail, 0, |
8580 | /* 30510 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30521 |
8581 | /* 30516 */ MCD::OPC_Decode, 186, 21, 247, 1, // Opcode: PVFNMADUPrvv, DecodeIdx: 247 |
8582 | /* 30521 */ MCD::OPC_Decode, 192, 21, 248, 1, // Opcode: PVFNMADUPrvvm, DecodeIdx: 248 |
8583 | /* 30526 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 30551 |
8584 | /* 30530 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8585 | /* 30533 */ MCD::OPC_FilterValueOrFail, 0, |
8586 | /* 30535 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30546 |
8587 | /* 30541 */ MCD::OPC_Decode, 154, 22, 235, 1, // Opcode: PVFNMADvvv, DecodeIdx: 235 |
8588 | /* 30546 */ MCD::OPC_Decode, 160, 22, 249, 1, // Opcode: PVFNMADvvvm, DecodeIdx: 249 |
8589 | /* 30551 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 30616 |
8590 | /* 30555 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8591 | /* 30558 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30588 |
8592 | /* 30562 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8593 | /* 30565 */ MCD::OPC_FilterValueOrFail, 0, |
8594 | /* 30567 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8595 | /* 30570 */ MCD::OPC_FilterValueOrFail, 0, |
8596 | /* 30572 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30583 |
8597 | /* 30578 */ MCD::OPC_Decode, 130, 22, 237, 1, // Opcode: PVFNMADviv, DecodeIdx: 237 |
8598 | /* 30583 */ MCD::OPC_Decode, 136, 22, 250, 1, // Opcode: PVFNMADvivm, DecodeIdx: 250 |
8599 | /* 30588 */ MCD::OPC_FilterValueOrFail, 1, |
8600 | /* 30590 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
8601 | /* 30593 */ MCD::OPC_FilterValueOrFail, 0, |
8602 | /* 30595 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8603 | /* 30598 */ MCD::OPC_FilterValueOrFail, 0, |
8604 | /* 30600 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30611 |
8605 | /* 30606 */ MCD::OPC_Decode, 142, 22, 239, 1, // Opcode: PVFNMADvrv, DecodeIdx: 239 |
8606 | /* 30611 */ MCD::OPC_Decode, 148, 22, 251, 1, // Opcode: PVFNMADvrvm, DecodeIdx: 251 |
8607 | /* 30616 */ MCD::OPC_FilterValueOrFail, 6, |
8608 | /* 30618 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8609 | /* 30621 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30651 |
8610 | /* 30625 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8611 | /* 30628 */ MCD::OPC_FilterValueOrFail, 0, |
8612 | /* 30630 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8613 | /* 30633 */ MCD::OPC_FilterValueOrFail, 0, |
8614 | /* 30635 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30646 |
8615 | /* 30641 */ MCD::OPC_Decode, 234, 21, 241, 1, // Opcode: PVFNMADivv, DecodeIdx: 241 |
8616 | /* 30646 */ MCD::OPC_Decode, 240, 21, 252, 1, // Opcode: PVFNMADivvm, DecodeIdx: 252 |
8617 | /* 30651 */ MCD::OPC_FilterValueOrFail, 1, |
8618 | /* 30653 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8619 | /* 30656 */ MCD::OPC_FilterValueOrFail, 0, |
8620 | /* 30658 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8621 | /* 30661 */ MCD::OPC_FilterValueOrFail, 0, |
8622 | /* 30663 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30674 |
8623 | /* 30669 */ MCD::OPC_Decode, 246, 21, 243, 1, // Opcode: PVFNMADrvv, DecodeIdx: 243 |
8624 | /* 30674 */ MCD::OPC_Decode, 252, 21, 253, 1, // Opcode: PVFNMADrvvm, DecodeIdx: 253 |
8625 | /* 30679 */ MCD::OPC_FilterValue, 200, 3, 71, 0, // Skip to: 30755 |
8626 | /* 30684 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8627 | /* 30687 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 30722 |
8628 | /* 30691 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8629 | /* 30694 */ MCD::OPC_FilterValueOrFail, 0, |
8630 | /* 30696 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8631 | /* 30699 */ MCD::OPC_FilterValueOrFail, 0, |
8632 | /* 30701 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8633 | /* 30704 */ MCD::OPC_FilterValueOrFail, 0, |
8634 | /* 30706 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30717 |
8635 | /* 30712 */ MCD::OPC_Decode, 215, 75, 208, 1, // Opcode: VSLDvvi, DecodeIdx: 208 |
8636 | /* 30717 */ MCD::OPC_Decode, 221, 75, 254, 1, // Opcode: VSLDvvim, DecodeIdx: 254 |
8637 | /* 30722 */ MCD::OPC_FilterValueOrFail, 1, |
8638 | /* 30724 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8639 | /* 30727 */ MCD::OPC_FilterValueOrFail, 0, |
8640 | /* 30729 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8641 | /* 30732 */ MCD::OPC_FilterValueOrFail, 0, |
8642 | /* 30734 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8643 | /* 30737 */ MCD::OPC_FilterValueOrFail, 0, |
8644 | /* 30739 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30750 |
8645 | /* 30745 */ MCD::OPC_Decode, 227, 75, 209, 1, // Opcode: VSLDvvr, DecodeIdx: 209 |
8646 | /* 30750 */ MCD::OPC_Decode, 233, 75, 255, 1, // Opcode: VSLDvvrm, DecodeIdx: 255 |
8647 | /* 30755 */ MCD::OPC_FilterValue, 202, 3, 211, 0, // Skip to: 30971 |
8648 | /* 30760 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8649 | /* 30763 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 30793 |
8650 | /* 30767 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8651 | /* 30770 */ MCD::OPC_FilterValueOrFail, 0, |
8652 | /* 30772 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8653 | /* 30775 */ MCD::OPC_FilterValueOrFail, 0, |
8654 | /* 30777 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30788 |
8655 | /* 30783 */ MCD::OPC_Decode, 135, 76, 217, 1, // Opcode: VSLLvv, DecodeIdx: 217 |
8656 | /* 30788 */ MCD::OPC_Decode, 141, 76, 218, 1, // Opcode: VSLLvvm, DecodeIdx: 218 |
8657 | /* 30793 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 30868 |
8658 | /* 30797 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8659 | /* 30800 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 30835 |
8660 | /* 30804 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8661 | /* 30807 */ MCD::OPC_FilterValueOrFail, 0, |
8662 | /* 30809 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8663 | /* 30812 */ MCD::OPC_FilterValueOrFail, 0, |
8664 | /* 30814 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8665 | /* 30817 */ MCD::OPC_FilterValueOrFail, 0, |
8666 | /* 30819 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30830 |
8667 | /* 30825 */ MCD::OPC_Decode, 239, 75, 219, 1, // Opcode: VSLLvi, DecodeIdx: 219 |
8668 | /* 30830 */ MCD::OPC_Decode, 245, 75, 220, 1, // Opcode: VSLLvim, DecodeIdx: 220 |
8669 | /* 30835 */ MCD::OPC_FilterValueOrFail, 1, |
8670 | /* 30837 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8671 | /* 30840 */ MCD::OPC_FilterValueOrFail, 0, |
8672 | /* 30842 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8673 | /* 30845 */ MCD::OPC_FilterValueOrFail, 0, |
8674 | /* 30847 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8675 | /* 30850 */ MCD::OPC_FilterValueOrFail, 0, |
8676 | /* 30852 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30863 |
8677 | /* 30858 */ MCD::OPC_Decode, 251, 75, 221, 1, // Opcode: VSLLvr, DecodeIdx: 221 |
8678 | /* 30863 */ MCD::OPC_Decode, 129, 76, 222, 1, // Opcode: VSLLvrm, DecodeIdx: 222 |
8679 | /* 30868 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 30898 |
8680 | /* 30872 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8681 | /* 30875 */ MCD::OPC_FilterValueOrFail, 0, |
8682 | /* 30877 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8683 | /* 30880 */ MCD::OPC_FilterValueOrFail, 0, |
8684 | /* 30882 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30893 |
8685 | /* 30888 */ MCD::OPC_Decode, 230, 29, 217, 1, // Opcode: PVSLLLOvv, DecodeIdx: 217 |
8686 | /* 30893 */ MCD::OPC_Decode, 236, 29, 218, 1, // Opcode: PVSLLLOvvm, DecodeIdx: 218 |
8687 | /* 30898 */ MCD::OPC_FilterValueOrFail, 6, |
8688 | /* 30900 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8689 | /* 30903 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 30938 |
8690 | /* 30907 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8691 | /* 30910 */ MCD::OPC_FilterValueOrFail, 0, |
8692 | /* 30912 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8693 | /* 30915 */ MCD::OPC_FilterValueOrFail, 0, |
8694 | /* 30917 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8695 | /* 30920 */ MCD::OPC_FilterValueOrFail, 0, |
8696 | /* 30922 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30933 |
8697 | /* 30928 */ MCD::OPC_Decode, 206, 29, 219, 1, // Opcode: PVSLLLOvi, DecodeIdx: 219 |
8698 | /* 30933 */ MCD::OPC_Decode, 212, 29, 220, 1, // Opcode: PVSLLLOvim, DecodeIdx: 220 |
8699 | /* 30938 */ MCD::OPC_FilterValueOrFail, 1, |
8700 | /* 30940 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8701 | /* 30943 */ MCD::OPC_FilterValueOrFail, 0, |
8702 | /* 30945 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8703 | /* 30948 */ MCD::OPC_FilterValueOrFail, 0, |
8704 | /* 30950 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8705 | /* 30953 */ MCD::OPC_FilterValueOrFail, 0, |
8706 | /* 30955 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 30966 |
8707 | /* 30961 */ MCD::OPC_Decode, 218, 29, 128, 2, // Opcode: PVSLLLOvr, DecodeIdx: 256 |
8708 | /* 30966 */ MCD::OPC_Decode, 224, 29, 129, 2, // Opcode: PVSLLLOvrm, DecodeIdx: 257 |
8709 | /* 30971 */ MCD::OPC_FilterValue, 203, 3, 211, 0, // Skip to: 31187 |
8710 | /* 30976 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8711 | /* 30979 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 31009 |
8712 | /* 30983 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8713 | /* 30986 */ MCD::OPC_FilterValueOrFail, 0, |
8714 | /* 30988 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8715 | /* 30991 */ MCD::OPC_FilterValueOrFail, 0, |
8716 | /* 30993 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31004 |
8717 | /* 30999 */ MCD::OPC_Decode, 138, 30, 217, 1, // Opcode: PVSLLUPvv, DecodeIdx: 217 |
8718 | /* 31004 */ MCD::OPC_Decode, 144, 30, 218, 1, // Opcode: PVSLLUPvvm, DecodeIdx: 218 |
8719 | /* 31009 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 31084 |
8720 | /* 31013 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8721 | /* 31016 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31051 |
8722 | /* 31020 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8723 | /* 31023 */ MCD::OPC_FilterValueOrFail, 0, |
8724 | /* 31025 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8725 | /* 31028 */ MCD::OPC_FilterValueOrFail, 0, |
8726 | /* 31030 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8727 | /* 31033 */ MCD::OPC_FilterValueOrFail, 0, |
8728 | /* 31035 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31046 |
8729 | /* 31041 */ MCD::OPC_Decode, 242, 29, 219, 1, // Opcode: PVSLLUPvi, DecodeIdx: 219 |
8730 | /* 31046 */ MCD::OPC_Decode, 248, 29, 220, 1, // Opcode: PVSLLUPvim, DecodeIdx: 220 |
8731 | /* 31051 */ MCD::OPC_FilterValueOrFail, 1, |
8732 | /* 31053 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8733 | /* 31056 */ MCD::OPC_FilterValueOrFail, 0, |
8734 | /* 31058 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8735 | /* 31061 */ MCD::OPC_FilterValueOrFail, 0, |
8736 | /* 31063 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8737 | /* 31066 */ MCD::OPC_FilterValueOrFail, 0, |
8738 | /* 31068 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31079 |
8739 | /* 31074 */ MCD::OPC_Decode, 254, 29, 130, 2, // Opcode: PVSLLUPvr, DecodeIdx: 258 |
8740 | /* 31079 */ MCD::OPC_Decode, 132, 30, 131, 2, // Opcode: PVSLLUPvrm, DecodeIdx: 259 |
8741 | /* 31084 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 31114 |
8742 | /* 31088 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8743 | /* 31091 */ MCD::OPC_FilterValueOrFail, 0, |
8744 | /* 31093 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8745 | /* 31096 */ MCD::OPC_FilterValueOrFail, 0, |
8746 | /* 31098 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31109 |
8747 | /* 31104 */ MCD::OPC_Decode, 174, 30, 217, 1, // Opcode: PVSLLvv, DecodeIdx: 217 |
8748 | /* 31109 */ MCD::OPC_Decode, 180, 30, 132, 2, // Opcode: PVSLLvvm, DecodeIdx: 260 |
8749 | /* 31114 */ MCD::OPC_FilterValueOrFail, 6, |
8750 | /* 31116 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8751 | /* 31119 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31154 |
8752 | /* 31123 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8753 | /* 31126 */ MCD::OPC_FilterValueOrFail, 0, |
8754 | /* 31128 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8755 | /* 31131 */ MCD::OPC_FilterValueOrFail, 0, |
8756 | /* 31133 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8757 | /* 31136 */ MCD::OPC_FilterValueOrFail, 0, |
8758 | /* 31138 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31149 |
8759 | /* 31144 */ MCD::OPC_Decode, 150, 30, 219, 1, // Opcode: PVSLLvi, DecodeIdx: 219 |
8760 | /* 31149 */ MCD::OPC_Decode, 156, 30, 133, 2, // Opcode: PVSLLvim, DecodeIdx: 261 |
8761 | /* 31154 */ MCD::OPC_FilterValueOrFail, 1, |
8762 | /* 31156 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8763 | /* 31159 */ MCD::OPC_FilterValueOrFail, 0, |
8764 | /* 31161 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8765 | /* 31164 */ MCD::OPC_FilterValueOrFail, 0, |
8766 | /* 31166 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8767 | /* 31169 */ MCD::OPC_FilterValueOrFail, 0, |
8768 | /* 31171 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31182 |
8769 | /* 31177 */ MCD::OPC_Decode, 162, 30, 221, 1, // Opcode: PVSLLvr, DecodeIdx: 221 |
8770 | /* 31182 */ MCD::OPC_Decode, 168, 30, 134, 2, // Opcode: PVSLLvrm, DecodeIdx: 262 |
8771 | /* 31187 */ MCD::OPC_FilterValue, 204, 3, 211, 0, // Skip to: 31403 |
8772 | /* 31192 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8773 | /* 31195 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 31225 |
8774 | /* 31199 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8775 | /* 31202 */ MCD::OPC_FilterValueOrFail, 0, |
8776 | /* 31204 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8777 | /* 31207 */ MCD::OPC_FilterValueOrFail, 0, |
8778 | /* 31209 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31220 |
8779 | /* 31215 */ MCD::OPC_Decode, 167, 75, 217, 1, // Opcode: VSLAWSXvv, DecodeIdx: 217 |
8780 | /* 31220 */ MCD::OPC_Decode, 173, 75, 218, 1, // Opcode: VSLAWSXvvm, DecodeIdx: 218 |
8781 | /* 31225 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 31300 |
8782 | /* 31229 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8783 | /* 31232 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31267 |
8784 | /* 31236 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8785 | /* 31239 */ MCD::OPC_FilterValueOrFail, 0, |
8786 | /* 31241 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8787 | /* 31244 */ MCD::OPC_FilterValueOrFail, 0, |
8788 | /* 31246 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8789 | /* 31249 */ MCD::OPC_FilterValueOrFail, 0, |
8790 | /* 31251 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31262 |
8791 | /* 31257 */ MCD::OPC_Decode, 143, 75, 219, 1, // Opcode: VSLAWSXvi, DecodeIdx: 219 |
8792 | /* 31262 */ MCD::OPC_Decode, 149, 75, 220, 1, // Opcode: VSLAWSXvim, DecodeIdx: 220 |
8793 | /* 31267 */ MCD::OPC_FilterValueOrFail, 1, |
8794 | /* 31269 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8795 | /* 31272 */ MCD::OPC_FilterValueOrFail, 0, |
8796 | /* 31274 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8797 | /* 31277 */ MCD::OPC_FilterValueOrFail, 0, |
8798 | /* 31279 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8799 | /* 31282 */ MCD::OPC_FilterValueOrFail, 0, |
8800 | /* 31284 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31295 |
8801 | /* 31290 */ MCD::OPC_Decode, 155, 75, 128, 2, // Opcode: VSLAWSXvr, DecodeIdx: 256 |
8802 | /* 31295 */ MCD::OPC_Decode, 161, 75, 129, 2, // Opcode: VSLAWSXvrm, DecodeIdx: 257 |
8803 | /* 31300 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 31330 |
8804 | /* 31304 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8805 | /* 31307 */ MCD::OPC_FilterValueOrFail, 0, |
8806 | /* 31309 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8807 | /* 31312 */ MCD::OPC_FilterValueOrFail, 0, |
8808 | /* 31314 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31325 |
8809 | /* 31320 */ MCD::OPC_Decode, 250, 28, 217, 1, // Opcode: PVSLALOvv, DecodeIdx: 217 |
8810 | /* 31325 */ MCD::OPC_Decode, 128, 29, 218, 1, // Opcode: PVSLALOvvm, DecodeIdx: 218 |
8811 | /* 31330 */ MCD::OPC_FilterValueOrFail, 6, |
8812 | /* 31332 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8813 | /* 31335 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31370 |
8814 | /* 31339 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8815 | /* 31342 */ MCD::OPC_FilterValueOrFail, 0, |
8816 | /* 31344 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8817 | /* 31347 */ MCD::OPC_FilterValueOrFail, 0, |
8818 | /* 31349 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8819 | /* 31352 */ MCD::OPC_FilterValueOrFail, 0, |
8820 | /* 31354 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31365 |
8821 | /* 31360 */ MCD::OPC_Decode, 226, 28, 219, 1, // Opcode: PVSLALOvi, DecodeIdx: 219 |
8822 | /* 31365 */ MCD::OPC_Decode, 232, 28, 220, 1, // Opcode: PVSLALOvim, DecodeIdx: 220 |
8823 | /* 31370 */ MCD::OPC_FilterValueOrFail, 1, |
8824 | /* 31372 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8825 | /* 31375 */ MCD::OPC_FilterValueOrFail, 0, |
8826 | /* 31377 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8827 | /* 31380 */ MCD::OPC_FilterValueOrFail, 0, |
8828 | /* 31382 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8829 | /* 31385 */ MCD::OPC_FilterValueOrFail, 0, |
8830 | /* 31387 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31398 |
8831 | /* 31393 */ MCD::OPC_Decode, 238, 28, 128, 2, // Opcode: PVSLALOvr, DecodeIdx: 256 |
8832 | /* 31398 */ MCD::OPC_Decode, 244, 28, 129, 2, // Opcode: PVSLALOvrm, DecodeIdx: 257 |
8833 | /* 31403 */ MCD::OPC_FilterValue, 205, 3, 211, 0, // Skip to: 31619 |
8834 | /* 31408 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8835 | /* 31411 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 31441 |
8836 | /* 31415 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8837 | /* 31418 */ MCD::OPC_FilterValueOrFail, 0, |
8838 | /* 31420 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8839 | /* 31423 */ MCD::OPC_FilterValueOrFail, 0, |
8840 | /* 31425 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31436 |
8841 | /* 31431 */ MCD::OPC_Decode, 158, 29, 217, 1, // Opcode: PVSLAUPvv, DecodeIdx: 217 |
8842 | /* 31436 */ MCD::OPC_Decode, 164, 29, 218, 1, // Opcode: PVSLAUPvvm, DecodeIdx: 218 |
8843 | /* 31441 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 31516 |
8844 | /* 31445 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8845 | /* 31448 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31483 |
8846 | /* 31452 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8847 | /* 31455 */ MCD::OPC_FilterValueOrFail, 0, |
8848 | /* 31457 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8849 | /* 31460 */ MCD::OPC_FilterValueOrFail, 0, |
8850 | /* 31462 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8851 | /* 31465 */ MCD::OPC_FilterValueOrFail, 0, |
8852 | /* 31467 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31478 |
8853 | /* 31473 */ MCD::OPC_Decode, 134, 29, 219, 1, // Opcode: PVSLAUPvi, DecodeIdx: 219 |
8854 | /* 31478 */ MCD::OPC_Decode, 140, 29, 220, 1, // Opcode: PVSLAUPvim, DecodeIdx: 220 |
8855 | /* 31483 */ MCD::OPC_FilterValueOrFail, 1, |
8856 | /* 31485 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8857 | /* 31488 */ MCD::OPC_FilterValueOrFail, 0, |
8858 | /* 31490 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8859 | /* 31493 */ MCD::OPC_FilterValueOrFail, 0, |
8860 | /* 31495 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8861 | /* 31498 */ MCD::OPC_FilterValueOrFail, 0, |
8862 | /* 31500 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31511 |
8863 | /* 31506 */ MCD::OPC_Decode, 146, 29, 130, 2, // Opcode: PVSLAUPvr, DecodeIdx: 258 |
8864 | /* 31511 */ MCD::OPC_Decode, 152, 29, 131, 2, // Opcode: PVSLAUPvrm, DecodeIdx: 259 |
8865 | /* 31516 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 31546 |
8866 | /* 31520 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8867 | /* 31523 */ MCD::OPC_FilterValueOrFail, 0, |
8868 | /* 31525 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8869 | /* 31528 */ MCD::OPC_FilterValueOrFail, 0, |
8870 | /* 31530 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31541 |
8871 | /* 31536 */ MCD::OPC_Decode, 194, 29, 217, 1, // Opcode: PVSLAvv, DecodeIdx: 217 |
8872 | /* 31541 */ MCD::OPC_Decode, 200, 29, 132, 2, // Opcode: PVSLAvvm, DecodeIdx: 260 |
8873 | /* 31546 */ MCD::OPC_FilterValueOrFail, 6, |
8874 | /* 31548 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
8875 | /* 31551 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31586 |
8876 | /* 31555 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8877 | /* 31558 */ MCD::OPC_FilterValueOrFail, 0, |
8878 | /* 31560 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8879 | /* 31563 */ MCD::OPC_FilterValueOrFail, 0, |
8880 | /* 31565 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8881 | /* 31568 */ MCD::OPC_FilterValueOrFail, 0, |
8882 | /* 31570 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31581 |
8883 | /* 31576 */ MCD::OPC_Decode, 170, 29, 219, 1, // Opcode: PVSLAvi, DecodeIdx: 219 |
8884 | /* 31581 */ MCD::OPC_Decode, 176, 29, 133, 2, // Opcode: PVSLAvim, DecodeIdx: 261 |
8885 | /* 31586 */ MCD::OPC_FilterValueOrFail, 1, |
8886 | /* 31588 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8887 | /* 31591 */ MCD::OPC_FilterValueOrFail, 0, |
8888 | /* 31593 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8889 | /* 31596 */ MCD::OPC_FilterValueOrFail, 0, |
8890 | /* 31598 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
8891 | /* 31601 */ MCD::OPC_FilterValueOrFail, 0, |
8892 | /* 31603 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31614 |
8893 | /* 31609 */ MCD::OPC_Decode, 182, 29, 221, 1, // Opcode: PVSLAvr, DecodeIdx: 221 |
8894 | /* 31614 */ MCD::OPC_Decode, 188, 29, 134, 2, // Opcode: PVSLAvrm, DecodeIdx: 262 |
8895 | /* 31619 */ MCD::OPC_FilterValue, 206, 3, 71, 0, // Skip to: 31695 |
8896 | /* 31624 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8897 | /* 31627 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31662 |
8898 | /* 31631 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8899 | /* 31634 */ MCD::OPC_FilterValueOrFail, 0, |
8900 | /* 31636 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8901 | /* 31639 */ MCD::OPC_FilterValueOrFail, 0, |
8902 | /* 31641 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8903 | /* 31644 */ MCD::OPC_FilterValueOrFail, 0, |
8904 | /* 31646 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31657 |
8905 | /* 31652 */ MCD::OPC_Decode, 131, 63, 142, 1, // Opcode: VLDZv, DecodeIdx: 142 |
8906 | /* 31657 */ MCD::OPC_Decode, 137, 63, 143, 1, // Opcode: VLDZvm, DecodeIdx: 143 |
8907 | /* 31662 */ MCD::OPC_FilterValueOrFail, 4, |
8908 | /* 31664 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8909 | /* 31667 */ MCD::OPC_FilterValueOrFail, 0, |
8910 | /* 31669 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8911 | /* 31672 */ MCD::OPC_FilterValueOrFail, 0, |
8912 | /* 31674 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8913 | /* 31677 */ MCD::OPC_FilterValueOrFail, 0, |
8914 | /* 31679 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31690 |
8915 | /* 31685 */ MCD::OPC_Decode, 198, 24, 142, 1, // Opcode: PVLDZLOv, DecodeIdx: 142 |
8916 | /* 31690 */ MCD::OPC_Decode, 204, 24, 143, 1, // Opcode: PVLDZLOvm, DecodeIdx: 143 |
8917 | /* 31695 */ MCD::OPC_FilterValue, 207, 3, 71, 0, // Skip to: 31771 |
8918 | /* 31700 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8919 | /* 31703 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 31738 |
8920 | /* 31707 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8921 | /* 31710 */ MCD::OPC_FilterValueOrFail, 0, |
8922 | /* 31712 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8923 | /* 31715 */ MCD::OPC_FilterValueOrFail, 0, |
8924 | /* 31717 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8925 | /* 31720 */ MCD::OPC_FilterValueOrFail, 0, |
8926 | /* 31722 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31733 |
8927 | /* 31728 */ MCD::OPC_Decode, 210, 24, 142, 1, // Opcode: PVLDZUPv, DecodeIdx: 142 |
8928 | /* 31733 */ MCD::OPC_Decode, 216, 24, 143, 1, // Opcode: PVLDZUPvm, DecodeIdx: 143 |
8929 | /* 31738 */ MCD::OPC_FilterValueOrFail, 4, |
8930 | /* 31740 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8931 | /* 31743 */ MCD::OPC_FilterValueOrFail, 0, |
8932 | /* 31745 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
8933 | /* 31748 */ MCD::OPC_FilterValueOrFail, 0, |
8934 | /* 31750 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8935 | /* 31753 */ MCD::OPC_FilterValueOrFail, 0, |
8936 | /* 31755 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31766 |
8937 | /* 31761 */ MCD::OPC_Decode, 222, 24, 142, 1, // Opcode: PVLDZv, DecodeIdx: 142 |
8938 | /* 31766 */ MCD::OPC_Decode, 228, 24, 183, 1, // Opcode: PVLDZvm, DecodeIdx: 183 |
8939 | /* 31771 */ MCD::OPC_FilterValue, 208, 3, 91, 0, // Skip to: 31867 |
8940 | /* 31776 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8941 | /* 31779 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 31809 |
8942 | /* 31783 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8943 | /* 31786 */ MCD::OPC_FilterValueOrFail, 0, |
8944 | /* 31788 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8945 | /* 31791 */ MCD::OPC_FilterValueOrFail, 0, |
8946 | /* 31793 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31804 |
8947 | /* 31799 */ MCD::OPC_Decode, 135, 40, 181, 1, // Opcode: VCVTWDSXv, DecodeIdx: 181 |
8948 | /* 31804 */ MCD::OPC_Decode, 141, 40, 182, 1, // Opcode: VCVTWDSXvm, DecodeIdx: 182 |
8949 | /* 31809 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 31839 |
8950 | /* 31813 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8951 | /* 31816 */ MCD::OPC_FilterValueOrFail, 0, |
8952 | /* 31818 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8953 | /* 31821 */ MCD::OPC_FilterValueOrFail, 0, |
8954 | /* 31823 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31834 |
8955 | /* 31829 */ MCD::OPC_Decode, 147, 40, 181, 1, // Opcode: VCVTWDZXv, DecodeIdx: 181 |
8956 | /* 31834 */ MCD::OPC_Decode, 153, 40, 182, 1, // Opcode: VCVTWDZXvm, DecodeIdx: 182 |
8957 | /* 31839 */ MCD::OPC_FilterValueOrFail, 5, |
8958 | /* 31841 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8959 | /* 31844 */ MCD::OPC_FilterValueOrFail, 0, |
8960 | /* 31846 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8961 | /* 31849 */ MCD::OPC_FilterValueOrFail, 0, |
8962 | /* 31851 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31862 |
8963 | /* 31857 */ MCD::OPC_Decode, 150, 12, 181, 1, // Opcode: PVCVTWSLOv, DecodeIdx: 181 |
8964 | /* 31862 */ MCD::OPC_Decode, 156, 12, 182, 1, // Opcode: PVCVTWSLOvm, DecodeIdx: 182 |
8965 | /* 31867 */ MCD::OPC_FilterValue, 209, 3, 121, 0, // Skip to: 31993 |
8966 | /* 31872 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
8967 | /* 31875 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 31905 |
8968 | /* 31879 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8969 | /* 31882 */ MCD::OPC_FilterValueOrFail, 0, |
8970 | /* 31884 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8971 | /* 31887 */ MCD::OPC_FilterValueOrFail, 0, |
8972 | /* 31889 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31900 |
8973 | /* 31895 */ MCD::OPC_Decode, 159, 40, 181, 1, // Opcode: VCVTWSSXv, DecodeIdx: 181 |
8974 | /* 31900 */ MCD::OPC_Decode, 165, 40, 182, 1, // Opcode: VCVTWSSXvm, DecodeIdx: 182 |
8975 | /* 31905 */ MCD::OPC_FilterValue, 1, 26, 0, // Skip to: 31935 |
8976 | /* 31909 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8977 | /* 31912 */ MCD::OPC_FilterValueOrFail, 0, |
8978 | /* 31914 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8979 | /* 31917 */ MCD::OPC_FilterValueOrFail, 0, |
8980 | /* 31919 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31930 |
8981 | /* 31925 */ MCD::OPC_Decode, 162, 12, 181, 1, // Opcode: PVCVTWSUPv, DecodeIdx: 181 |
8982 | /* 31930 */ MCD::OPC_Decode, 168, 12, 182, 1, // Opcode: PVCVTWSUPvm, DecodeIdx: 182 |
8983 | /* 31935 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 31965 |
8984 | /* 31939 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8985 | /* 31942 */ MCD::OPC_FilterValueOrFail, 0, |
8986 | /* 31944 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8987 | /* 31947 */ MCD::OPC_FilterValueOrFail, 0, |
8988 | /* 31949 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31960 |
8989 | /* 31955 */ MCD::OPC_Decode, 171, 40, 181, 1, // Opcode: VCVTWSZXv, DecodeIdx: 181 |
8990 | /* 31960 */ MCD::OPC_Decode, 177, 40, 182, 1, // Opcode: VCVTWSZXvm, DecodeIdx: 182 |
8991 | /* 31965 */ MCD::OPC_FilterValueOrFail, 5, |
8992 | /* 31967 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
8993 | /* 31970 */ MCD::OPC_FilterValueOrFail, 0, |
8994 | /* 31972 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
8995 | /* 31975 */ MCD::OPC_FilterValueOrFail, 0, |
8996 | /* 31977 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 31988 |
8997 | /* 31983 */ MCD::OPC_Decode, 174, 12, 181, 1, // Opcode: PVCVTWSv, DecodeIdx: 181 |
8998 | /* 31988 */ MCD::OPC_Decode, 180, 12, 135, 2, // Opcode: PVCVTWSvm, DecodeIdx: 263 |
8999 | /* 31993 */ MCD::OPC_FilterValue, 210, 3, 74, 1, // Skip to: 32328 |
9000 | /* 31998 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9001 | /* 32001 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 32029 |
9002 | /* 32005 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9003 | /* 32008 */ MCD::OPC_FilterValueOrFail, 0, |
9004 | /* 32010 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9005 | /* 32013 */ MCD::OPC_FilterValueOrFail, 0, |
9006 | /* 32015 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32025 |
9007 | /* 32021 */ MCD::OPC_Decode, 155, 42, 121, // Opcode: VDIVULvv, DecodeIdx: 121 |
9008 | /* 32025 */ MCD::OPC_Decode, 161, 42, 122, // Opcode: VDIVULvvm, DecodeIdx: 122 |
9009 | /* 32029 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 32094 |
9010 | /* 32033 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9011 | /* 32036 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 32066 |
9012 | /* 32040 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9013 | /* 32043 */ MCD::OPC_FilterValueOrFail, 0, |
9014 | /* 32045 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9015 | /* 32048 */ MCD::OPC_FilterValueOrFail, 0, |
9016 | /* 32050 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32061 |
9017 | /* 32056 */ MCD::OPC_Decode, 131, 42, 214, 1, // Opcode: VDIVULvi, DecodeIdx: 214 |
9018 | /* 32061 */ MCD::OPC_Decode, 137, 42, 231, 1, // Opcode: VDIVULvim, DecodeIdx: 231 |
9019 | /* 32066 */ MCD::OPC_FilterValueOrFail, 1, |
9020 | /* 32068 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9021 | /* 32071 */ MCD::OPC_FilterValueOrFail, 0, |
9022 | /* 32073 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9023 | /* 32076 */ MCD::OPC_FilterValueOrFail, 0, |
9024 | /* 32078 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32089 |
9025 | /* 32084 */ MCD::OPC_Decode, 143, 42, 215, 1, // Opcode: VDIVULvr, DecodeIdx: 215 |
9026 | /* 32089 */ MCD::OPC_Decode, 149, 42, 232, 1, // Opcode: VDIVULvrm, DecodeIdx: 232 |
9027 | /* 32094 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 32166 |
9028 | /* 32098 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9029 | /* 32101 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 32134 |
9030 | /* 32105 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9031 | /* 32108 */ MCD::OPC_FilterValueOrFail, 0, |
9032 | /* 32110 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9033 | /* 32113 */ MCD::OPC_FilterValueOrFail, 0, |
9034 | /* 32115 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9035 | /* 32118 */ MCD::OPC_FilterValueOrFail, 0, |
9036 | /* 32120 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32130 |
9037 | /* 32126 */ MCD::OPC_Decode, 235, 41, 123, // Opcode: VDIVULiv, DecodeIdx: 123 |
9038 | /* 32130 */ MCD::OPC_Decode, 241, 41, 124, // Opcode: VDIVULivm, DecodeIdx: 124 |
9039 | /* 32134 */ MCD::OPC_FilterValueOrFail, 1, |
9040 | /* 32136 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9041 | /* 32139 */ MCD::OPC_FilterValueOrFail, 0, |
9042 | /* 32141 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9043 | /* 32144 */ MCD::OPC_FilterValueOrFail, 0, |
9044 | /* 32146 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9045 | /* 32149 */ MCD::OPC_FilterValueOrFail, 0, |
9046 | /* 32151 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32161 |
9047 | /* 32157 */ MCD::OPC_Decode, 247, 41, 127, // Opcode: VDIVULrv, DecodeIdx: 127 |
9048 | /* 32161 */ MCD::OPC_Decode, 253, 41, 128, 1, // Opcode: VDIVULrvm, DecodeIdx: 128 |
9049 | /* 32166 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 32194 |
9050 | /* 32170 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9051 | /* 32173 */ MCD::OPC_FilterValueOrFail, 0, |
9052 | /* 32175 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9053 | /* 32178 */ MCD::OPC_FilterValueOrFail, 0, |
9054 | /* 32180 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32190 |
9055 | /* 32186 */ MCD::OPC_Decode, 215, 42, 121, // Opcode: VDIVUWvv, DecodeIdx: 121 |
9056 | /* 32190 */ MCD::OPC_Decode, 221, 42, 122, // Opcode: VDIVUWvvm, DecodeIdx: 122 |
9057 | /* 32194 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 32259 |
9058 | /* 32198 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9059 | /* 32201 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 32231 |
9060 | /* 32205 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9061 | /* 32208 */ MCD::OPC_FilterValueOrFail, 0, |
9062 | /* 32210 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9063 | /* 32213 */ MCD::OPC_FilterValueOrFail, 0, |
9064 | /* 32215 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32226 |
9065 | /* 32221 */ MCD::OPC_Decode, 191, 42, 214, 1, // Opcode: VDIVUWvi, DecodeIdx: 214 |
9066 | /* 32226 */ MCD::OPC_Decode, 197, 42, 231, 1, // Opcode: VDIVUWvim, DecodeIdx: 231 |
9067 | /* 32231 */ MCD::OPC_FilterValueOrFail, 1, |
9068 | /* 32233 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9069 | /* 32236 */ MCD::OPC_FilterValueOrFail, 0, |
9070 | /* 32238 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9071 | /* 32241 */ MCD::OPC_FilterValueOrFail, 0, |
9072 | /* 32243 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32254 |
9073 | /* 32249 */ MCD::OPC_Decode, 203, 42, 136, 2, // Opcode: VDIVUWvr, DecodeIdx: 264 |
9074 | /* 32254 */ MCD::OPC_Decode, 209, 42, 137, 2, // Opcode: VDIVUWvrm, DecodeIdx: 265 |
9075 | /* 32259 */ MCD::OPC_FilterValueOrFail, 6, |
9076 | /* 32261 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9077 | /* 32264 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 32297 |
9078 | /* 32268 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9079 | /* 32271 */ MCD::OPC_FilterValueOrFail, 0, |
9080 | /* 32273 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9081 | /* 32276 */ MCD::OPC_FilterValueOrFail, 0, |
9082 | /* 32278 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9083 | /* 32281 */ MCD::OPC_FilterValueOrFail, 0, |
9084 | /* 32283 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32293 |
9085 | /* 32289 */ MCD::OPC_Decode, 167, 42, 123, // Opcode: VDIVUWiv, DecodeIdx: 123 |
9086 | /* 32293 */ MCD::OPC_Decode, 173, 42, 124, // Opcode: VDIVUWivm, DecodeIdx: 124 |
9087 | /* 32297 */ MCD::OPC_FilterValueOrFail, 1, |
9088 | /* 32299 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9089 | /* 32302 */ MCD::OPC_FilterValueOrFail, 0, |
9090 | /* 32304 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9091 | /* 32307 */ MCD::OPC_FilterValueOrFail, 0, |
9092 | /* 32309 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9093 | /* 32312 */ MCD::OPC_FilterValueOrFail, 0, |
9094 | /* 32314 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32324 |
9095 | /* 32320 */ MCD::OPC_Decode, 179, 42, 125, // Opcode: VDIVUWrv, DecodeIdx: 125 |
9096 | /* 32324 */ MCD::OPC_Decode, 185, 42, 126, // Opcode: VDIVUWrvm, DecodeIdx: 126 |
9097 | /* 32328 */ MCD::OPC_FilterValue, 212, 3, 57, 0, // Skip to: 32390 |
9098 | /* 32333 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9099 | /* 32336 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 32364 |
9100 | /* 32340 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9101 | /* 32343 */ MCD::OPC_FilterValueOrFail, 0, |
9102 | /* 32345 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9103 | /* 32348 */ MCD::OPC_FilterValueOrFail, 0, |
9104 | /* 32350 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32360 |
9105 | /* 32356 */ MCD::OPC_Decode, 187, 83, 119, // Opcode: VSUMWSXv, DecodeIdx: 119 |
9106 | /* 32360 */ MCD::OPC_Decode, 193, 83, 120, // Opcode: VSUMWSXvm, DecodeIdx: 120 |
9107 | /* 32364 */ MCD::OPC_FilterValueOrFail, 4, |
9108 | /* 32366 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9109 | /* 32369 */ MCD::OPC_FilterValueOrFail, 0, |
9110 | /* 32371 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9111 | /* 32374 */ MCD::OPC_FilterValueOrFail, 0, |
9112 | /* 32376 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32386 |
9113 | /* 32382 */ MCD::OPC_Decode, 199, 83, 119, // Opcode: VSUMWZXv, DecodeIdx: 119 |
9114 | /* 32386 */ MCD::OPC_Decode, 205, 83, 120, // Opcode: VSUMWZXvm, DecodeIdx: 120 |
9115 | /* 32390 */ MCD::OPC_FilterValue, 214, 3, 73, 1, // Skip to: 32724 |
9116 | /* 32395 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9117 | /* 32398 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 32426 |
9118 | /* 32402 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9119 | /* 32405 */ MCD::OPC_FilterValueOrFail, 0, |
9120 | /* 32407 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9121 | /* 32410 */ MCD::OPC_FilterValueOrFail, 0, |
9122 | /* 32412 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32422 |
9123 | /* 32418 */ MCD::OPC_Decode, 163, 41, 121, // Opcode: VDIVSWSXvv, DecodeIdx: 121 |
9124 | /* 32422 */ MCD::OPC_Decode, 169, 41, 122, // Opcode: VDIVSWSXvvm, DecodeIdx: 122 |
9125 | /* 32426 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 32491 |
9126 | /* 32430 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9127 | /* 32433 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 32463 |
9128 | /* 32437 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9129 | /* 32440 */ MCD::OPC_FilterValueOrFail, 0, |
9130 | /* 32442 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9131 | /* 32445 */ MCD::OPC_FilterValueOrFail, 0, |
9132 | /* 32447 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32458 |
9133 | /* 32453 */ MCD::OPC_Decode, 139, 41, 214, 1, // Opcode: VDIVSWSXvi, DecodeIdx: 214 |
9134 | /* 32458 */ MCD::OPC_Decode, 145, 41, 231, 1, // Opcode: VDIVSWSXvim, DecodeIdx: 231 |
9135 | /* 32463 */ MCD::OPC_FilterValueOrFail, 1, |
9136 | /* 32465 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9137 | /* 32468 */ MCD::OPC_FilterValueOrFail, 0, |
9138 | /* 32470 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9139 | /* 32473 */ MCD::OPC_FilterValueOrFail, 0, |
9140 | /* 32475 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32486 |
9141 | /* 32481 */ MCD::OPC_Decode, 151, 41, 136, 2, // Opcode: VDIVSWSXvr, DecodeIdx: 264 |
9142 | /* 32486 */ MCD::OPC_Decode, 157, 41, 137, 2, // Opcode: VDIVSWSXvrm, DecodeIdx: 265 |
9143 | /* 32491 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 32562 |
9144 | /* 32495 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9145 | /* 32498 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 32531 |
9146 | /* 32502 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9147 | /* 32505 */ MCD::OPC_FilterValueOrFail, 0, |
9148 | /* 32507 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9149 | /* 32510 */ MCD::OPC_FilterValueOrFail, 0, |
9150 | /* 32512 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9151 | /* 32515 */ MCD::OPC_FilterValueOrFail, 0, |
9152 | /* 32517 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32527 |
9153 | /* 32523 */ MCD::OPC_Decode, 243, 40, 123, // Opcode: VDIVSWSXiv, DecodeIdx: 123 |
9154 | /* 32527 */ MCD::OPC_Decode, 249, 40, 124, // Opcode: VDIVSWSXivm, DecodeIdx: 124 |
9155 | /* 32531 */ MCD::OPC_FilterValueOrFail, 1, |
9156 | /* 32533 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9157 | /* 32536 */ MCD::OPC_FilterValueOrFail, 0, |
9158 | /* 32538 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9159 | /* 32541 */ MCD::OPC_FilterValueOrFail, 0, |
9160 | /* 32543 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9161 | /* 32546 */ MCD::OPC_FilterValueOrFail, 0, |
9162 | /* 32548 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32558 |
9163 | /* 32554 */ MCD::OPC_Decode, 255, 40, 125, // Opcode: VDIVSWSXrv, DecodeIdx: 125 |
9164 | /* 32558 */ MCD::OPC_Decode, 133, 41, 126, // Opcode: VDIVSWSXrvm, DecodeIdx: 126 |
9165 | /* 32562 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 32590 |
9166 | /* 32566 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9167 | /* 32569 */ MCD::OPC_FilterValueOrFail, 0, |
9168 | /* 32571 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9169 | /* 32574 */ MCD::OPC_FilterValueOrFail, 0, |
9170 | /* 32576 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32586 |
9171 | /* 32582 */ MCD::OPC_Decode, 223, 41, 121, // Opcode: VDIVSWZXvv, DecodeIdx: 121 |
9172 | /* 32586 */ MCD::OPC_Decode, 229, 41, 122, // Opcode: VDIVSWZXvvm, DecodeIdx: 122 |
9173 | /* 32590 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 32655 |
9174 | /* 32594 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9175 | /* 32597 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 32627 |
9176 | /* 32601 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9177 | /* 32604 */ MCD::OPC_FilterValueOrFail, 0, |
9178 | /* 32606 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9179 | /* 32609 */ MCD::OPC_FilterValueOrFail, 0, |
9180 | /* 32611 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32622 |
9181 | /* 32617 */ MCD::OPC_Decode, 199, 41, 214, 1, // Opcode: VDIVSWZXvi, DecodeIdx: 214 |
9182 | /* 32622 */ MCD::OPC_Decode, 205, 41, 231, 1, // Opcode: VDIVSWZXvim, DecodeIdx: 231 |
9183 | /* 32627 */ MCD::OPC_FilterValueOrFail, 1, |
9184 | /* 32629 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9185 | /* 32632 */ MCD::OPC_FilterValueOrFail, 0, |
9186 | /* 32634 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9187 | /* 32637 */ MCD::OPC_FilterValueOrFail, 0, |
9188 | /* 32639 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 32650 |
9189 | /* 32645 */ MCD::OPC_Decode, 211, 41, 136, 2, // Opcode: VDIVSWZXvr, DecodeIdx: 264 |
9190 | /* 32650 */ MCD::OPC_Decode, 217, 41, 137, 2, // Opcode: VDIVSWZXvrm, DecodeIdx: 265 |
9191 | /* 32655 */ MCD::OPC_FilterValueOrFail, 6, |
9192 | /* 32657 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9193 | /* 32660 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 32693 |
9194 | /* 32664 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9195 | /* 32667 */ MCD::OPC_FilterValueOrFail, 0, |
9196 | /* 32669 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9197 | /* 32672 */ MCD::OPC_FilterValueOrFail, 0, |
9198 | /* 32674 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9199 | /* 32677 */ MCD::OPC_FilterValueOrFail, 0, |
9200 | /* 32679 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32689 |
9201 | /* 32685 */ MCD::OPC_Decode, 175, 41, 123, // Opcode: VDIVSWZXiv, DecodeIdx: 123 |
9202 | /* 32689 */ MCD::OPC_Decode, 181, 41, 124, // Opcode: VDIVSWZXivm, DecodeIdx: 124 |
9203 | /* 32693 */ MCD::OPC_FilterValueOrFail, 1, |
9204 | /* 32695 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9205 | /* 32698 */ MCD::OPC_FilterValueOrFail, 0, |
9206 | /* 32700 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9207 | /* 32703 */ MCD::OPC_FilterValueOrFail, 0, |
9208 | /* 32705 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9209 | /* 32708 */ MCD::OPC_FilterValueOrFail, 0, |
9210 | /* 32710 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32720 |
9211 | /* 32716 */ MCD::OPC_Decode, 187, 41, 125, // Opcode: VDIVSWZXrv, DecodeIdx: 125 |
9212 | /* 32720 */ MCD::OPC_Decode, 193, 41, 126, // Opcode: VDIVSWZXrvm, DecodeIdx: 126 |
9213 | /* 32724 */ MCD::OPC_FilterValue, 216, 3, 29, 0, // Skip to: 32758 |
9214 | /* 32729 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9215 | /* 32732 */ MCD::OPC_FilterValueOrFail, 0, |
9216 | /* 32734 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9217 | /* 32737 */ MCD::OPC_FilterValueOrFail, 0, |
9218 | /* 32739 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9219 | /* 32742 */ MCD::OPC_FilterValueOrFail, 0, |
9220 | /* 32744 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32754 |
9221 | /* 32750 */ MCD::OPC_Decode, 131, 54, 119, // Opcode: VFSUMDv, DecodeIdx: 119 |
9222 | /* 32754 */ MCD::OPC_Decode, 137, 54, 120, // Opcode: VFSUMDvm, DecodeIdx: 120 |
9223 | /* 32758 */ MCD::OPC_FilterValue, 217, 3, 29, 0, // Skip to: 32792 |
9224 | /* 32763 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9225 | /* 32766 */ MCD::OPC_FilterValueOrFail, 0, |
9226 | /* 32768 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9227 | /* 32771 */ MCD::OPC_FilterValueOrFail, 0, |
9228 | /* 32773 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9229 | /* 32776 */ MCD::OPC_FilterValueOrFail, 0, |
9230 | /* 32778 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32788 |
9231 | /* 32784 */ MCD::OPC_Decode, 143, 54, 119, // Opcode: VFSUMSv, DecodeIdx: 119 |
9232 | /* 32788 */ MCD::OPC_Decode, 149, 54, 120, // Opcode: VFSUMSvm, DecodeIdx: 120 |
9233 | /* 32792 */ MCD::OPC_FilterValue, 218, 3, 29, 0, // Skip to: 32826 |
9234 | /* 32797 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9235 | /* 32800 */ MCD::OPC_FilterValueOrFail, 0, |
9236 | /* 32802 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9237 | /* 32805 */ MCD::OPC_FilterValueOrFail, 0, |
9238 | /* 32807 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9239 | /* 32810 */ MCD::OPC_FilterValueOrFail, 0, |
9240 | /* 32812 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32822 |
9241 | /* 32818 */ MCD::OPC_Decode, 163, 53, 119, // Opcode: VFSQRTDv, DecodeIdx: 119 |
9242 | /* 32822 */ MCD::OPC_Decode, 169, 53, 120, // Opcode: VFSQRTDvm, DecodeIdx: 120 |
9243 | /* 32826 */ MCD::OPC_FilterValue, 219, 3, 29, 0, // Skip to: 32860 |
9244 | /* 32831 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9245 | /* 32834 */ MCD::OPC_FilterValueOrFail, 0, |
9246 | /* 32836 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9247 | /* 32839 */ MCD::OPC_FilterValueOrFail, 0, |
9248 | /* 32841 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9249 | /* 32844 */ MCD::OPC_FilterValueOrFail, 0, |
9250 | /* 32846 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 32856 |
9251 | /* 32852 */ MCD::OPC_Decode, 175, 53, 119, // Opcode: VFSQRTSv, DecodeIdx: 119 |
9252 | /* 32856 */ MCD::OPC_Decode, 181, 53, 120, // Opcode: VFSQRTSvm, DecodeIdx: 120 |
9253 | /* 32860 */ MCD::OPC_FilterValue, 220, 3, 35, 0, // Skip to: 32900 |
9254 | /* 32865 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
9255 | /* 32868 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 32885 |
9256 | /* 32872 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9257 | /* 32876 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9258 | /* 32880 */ MCD::OPC_Decode, 167, 45, 138, 2, // Opcode: VFIAMDvvi, DecodeIdx: 266 |
9259 | /* 32885 */ MCD::OPC_FilterValueOrFail, 1, |
9260 | /* 32887 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9261 | /* 32891 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9262 | /* 32895 */ MCD::OPC_Decode, 173, 45, 209, 1, // Opcode: VFIAMDvvr, DecodeIdx: 209 |
9263 | /* 32900 */ MCD::OPC_FilterValue, 221, 3, 35, 0, // Skip to: 32940 |
9264 | /* 32905 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
9265 | /* 32908 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 32925 |
9266 | /* 32912 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9267 | /* 32916 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9268 | /* 32920 */ MCD::OPC_Decode, 179, 45, 138, 2, // Opcode: VFIAMSvvi, DecodeIdx: 266 |
9269 | /* 32925 */ MCD::OPC_FilterValueOrFail, 1, |
9270 | /* 32927 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9271 | /* 32931 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9272 | /* 32935 */ MCD::OPC_Decode, 185, 45, 139, 2, // Opcode: VFIAMSvvr, DecodeIdx: 267 |
9273 | /* 32940 */ MCD::OPC_FilterValue, 222, 3, 35, 0, // Skip to: 32980 |
9274 | /* 32945 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
9275 | /* 32948 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 32965 |
9276 | /* 32952 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9277 | /* 32956 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9278 | /* 32960 */ MCD::OPC_Decode, 203, 45, 138, 2, // Opcode: VFIMADvvi, DecodeIdx: 266 |
9279 | /* 32965 */ MCD::OPC_FilterValueOrFail, 1, |
9280 | /* 32967 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9281 | /* 32971 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9282 | /* 32975 */ MCD::OPC_Decode, 209, 45, 209, 1, // Opcode: VFIMADvvr, DecodeIdx: 209 |
9283 | /* 32980 */ MCD::OPC_FilterValue, 223, 3, 35, 0, // Skip to: 33020 |
9284 | /* 32985 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
9285 | /* 32988 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 33005 |
9286 | /* 32992 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9287 | /* 32996 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9288 | /* 33000 */ MCD::OPC_Decode, 215, 45, 138, 2, // Opcode: VFIMASvvi, DecodeIdx: 266 |
9289 | /* 33005 */ MCD::OPC_FilterValueOrFail, 1, |
9290 | /* 33007 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
9291 | /* 33011 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
9292 | /* 33015 */ MCD::OPC_Decode, 221, 45, 139, 2, // Opcode: VFIMASvvr, DecodeIdx: 267 |
9293 | /* 33020 */ MCD::OPC_FilterValue, 226, 3, 113, 0, // Skip to: 33138 |
9294 | /* 33025 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9295 | /* 33028 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 33056 |
9296 | /* 33032 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9297 | /* 33035 */ MCD::OPC_FilterValueOrFail, 0, |
9298 | /* 33037 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9299 | /* 33040 */ MCD::OPC_FilterValueOrFail, 0, |
9300 | /* 33042 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33052 |
9301 | /* 33048 */ MCD::OPC_Decode, 179, 69, 119, // Opcode: VRSQRTDv, DecodeIdx: 119 |
9302 | /* 33052 */ MCD::OPC_Decode, 185, 69, 120, // Opcode: VRSQRTDvm, DecodeIdx: 120 |
9303 | /* 33056 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 33084 |
9304 | /* 33060 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9305 | /* 33063 */ MCD::OPC_FilterValueOrFail, 0, |
9306 | /* 33065 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9307 | /* 33068 */ MCD::OPC_FilterValueOrFail, 0, |
9308 | /* 33070 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33080 |
9309 | /* 33076 */ MCD::OPC_Decode, 167, 69, 119, // Opcode: VRSQRTDNEXv, DecodeIdx: 119 |
9310 | /* 33080 */ MCD::OPC_Decode, 173, 69, 120, // Opcode: VRSQRTDNEXvm, DecodeIdx: 120 |
9311 | /* 33084 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 33112 |
9312 | /* 33088 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9313 | /* 33091 */ MCD::OPC_FilterValueOrFail, 0, |
9314 | /* 33093 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9315 | /* 33096 */ MCD::OPC_FilterValueOrFail, 0, |
9316 | /* 33098 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33108 |
9317 | /* 33104 */ MCD::OPC_Decode, 130, 28, 119, // Opcode: PVRSQRTLOv, DecodeIdx: 119 |
9318 | /* 33108 */ MCD::OPC_Decode, 136, 28, 120, // Opcode: PVRSQRTLOvm, DecodeIdx: 120 |
9319 | /* 33112 */ MCD::OPC_FilterValueOrFail, 5, |
9320 | /* 33114 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9321 | /* 33117 */ MCD::OPC_FilterValueOrFail, 0, |
9322 | /* 33119 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9323 | /* 33122 */ MCD::OPC_FilterValueOrFail, 0, |
9324 | /* 33124 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33134 |
9325 | /* 33130 */ MCD::OPC_Decode, 246, 27, 119, // Opcode: PVRSQRTLONEXv, DecodeIdx: 119 |
9326 | /* 33134 */ MCD::OPC_Decode, 252, 27, 120, // Opcode: PVRSQRTLONEXvm, DecodeIdx: 120 |
9327 | /* 33138 */ MCD::OPC_FilterValue, 227, 3, 115, 0, // Skip to: 33258 |
9328 | /* 33143 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9329 | /* 33146 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 33174 |
9330 | /* 33150 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9331 | /* 33153 */ MCD::OPC_FilterValueOrFail, 0, |
9332 | /* 33155 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9333 | /* 33158 */ MCD::OPC_FilterValueOrFail, 0, |
9334 | /* 33160 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33170 |
9335 | /* 33166 */ MCD::OPC_Decode, 166, 28, 119, // Opcode: PVRSQRTUPv, DecodeIdx: 119 |
9336 | /* 33170 */ MCD::OPC_Decode, 172, 28, 120, // Opcode: PVRSQRTUPvm, DecodeIdx: 120 |
9337 | /* 33174 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 33202 |
9338 | /* 33178 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9339 | /* 33181 */ MCD::OPC_FilterValueOrFail, 0, |
9340 | /* 33183 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9341 | /* 33186 */ MCD::OPC_FilterValueOrFail, 0, |
9342 | /* 33188 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33198 |
9343 | /* 33194 */ MCD::OPC_Decode, 154, 28, 119, // Opcode: PVRSQRTUPNEXv, DecodeIdx: 119 |
9344 | /* 33198 */ MCD::OPC_Decode, 160, 28, 120, // Opcode: PVRSQRTUPNEXvm, DecodeIdx: 120 |
9345 | /* 33202 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 33231 |
9346 | /* 33206 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9347 | /* 33209 */ MCD::OPC_FilterValueOrFail, 0, |
9348 | /* 33211 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9349 | /* 33214 */ MCD::OPC_FilterValueOrFail, 0, |
9350 | /* 33216 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33226 |
9351 | /* 33222 */ MCD::OPC_Decode, 178, 28, 119, // Opcode: PVRSQRTv, DecodeIdx: 119 |
9352 | /* 33226 */ MCD::OPC_Decode, 184, 28, 234, 1, // Opcode: PVRSQRTvm, DecodeIdx: 234 |
9353 | /* 33231 */ MCD::OPC_FilterValueOrFail, 5, |
9354 | /* 33233 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
9355 | /* 33236 */ MCD::OPC_FilterValueOrFail, 0, |
9356 | /* 33238 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9357 | /* 33241 */ MCD::OPC_FilterValueOrFail, 0, |
9358 | /* 33243 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 33253 |
9359 | /* 33249 */ MCD::OPC_Decode, 142, 28, 119, // Opcode: PVRSQRTNEXv, DecodeIdx: 119 |
9360 | /* 33253 */ MCD::OPC_Decode, 148, 28, 234, 1, // Opcode: PVRSQRTNEXvm, DecodeIdx: 234 |
9361 | /* 33258 */ MCD::OPC_FilterValue, 228, 3, 55, 1, // Skip to: 33574 |
9362 | /* 33263 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9363 | /* 33266 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 33291 |
9364 | /* 33270 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9365 | /* 33273 */ MCD::OPC_FilterValueOrFail, 0, |
9366 | /* 33275 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33286 |
9367 | /* 33281 */ MCD::OPC_Decode, 195, 49, 235, 1, // Opcode: VFMSBDvvv, DecodeIdx: 235 |
9368 | /* 33286 */ MCD::OPC_Decode, 201, 49, 236, 1, // Opcode: VFMSBDvvvm, DecodeIdx: 236 |
9369 | /* 33291 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 33356 |
9370 | /* 33295 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9371 | /* 33298 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33328 |
9372 | /* 33302 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9373 | /* 33305 */ MCD::OPC_FilterValueOrFail, 0, |
9374 | /* 33307 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9375 | /* 33310 */ MCD::OPC_FilterValueOrFail, 0, |
9376 | /* 33312 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33323 |
9377 | /* 33318 */ MCD::OPC_Decode, 171, 49, 237, 1, // Opcode: VFMSBDviv, DecodeIdx: 237 |
9378 | /* 33323 */ MCD::OPC_Decode, 177, 49, 238, 1, // Opcode: VFMSBDvivm, DecodeIdx: 238 |
9379 | /* 33328 */ MCD::OPC_FilterValueOrFail, 1, |
9380 | /* 33330 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9381 | /* 33333 */ MCD::OPC_FilterValueOrFail, 0, |
9382 | /* 33335 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9383 | /* 33338 */ MCD::OPC_FilterValueOrFail, 0, |
9384 | /* 33340 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33351 |
9385 | /* 33346 */ MCD::OPC_Decode, 183, 49, 239, 1, // Opcode: VFMSBDvrv, DecodeIdx: 239 |
9386 | /* 33351 */ MCD::OPC_Decode, 189, 49, 240, 1, // Opcode: VFMSBDvrvm, DecodeIdx: 240 |
9387 | /* 33356 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 33421 |
9388 | /* 33360 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9389 | /* 33363 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33393 |
9390 | /* 33367 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9391 | /* 33370 */ MCD::OPC_FilterValueOrFail, 0, |
9392 | /* 33372 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9393 | /* 33375 */ MCD::OPC_FilterValueOrFail, 0, |
9394 | /* 33377 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33388 |
9395 | /* 33383 */ MCD::OPC_Decode, 147, 49, 241, 1, // Opcode: VFMSBDivv, DecodeIdx: 241 |
9396 | /* 33388 */ MCD::OPC_Decode, 153, 49, 242, 1, // Opcode: VFMSBDivvm, DecodeIdx: 242 |
9397 | /* 33393 */ MCD::OPC_FilterValueOrFail, 1, |
9398 | /* 33395 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9399 | /* 33398 */ MCD::OPC_FilterValueOrFail, 0, |
9400 | /* 33400 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9401 | /* 33403 */ MCD::OPC_FilterValueOrFail, 0, |
9402 | /* 33405 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33416 |
9403 | /* 33411 */ MCD::OPC_Decode, 159, 49, 243, 1, // Opcode: VFMSBDrvv, DecodeIdx: 243 |
9404 | /* 33416 */ MCD::OPC_Decode, 165, 49, 244, 1, // Opcode: VFMSBDrvvm, DecodeIdx: 244 |
9405 | /* 33421 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 33446 |
9406 | /* 33425 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9407 | /* 33428 */ MCD::OPC_FilterValueOrFail, 0, |
9408 | /* 33430 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33441 |
9409 | /* 33436 */ MCD::OPC_Decode, 130, 19, 235, 1, // Opcode: PVFMSBLOvvv, DecodeIdx: 235 |
9410 | /* 33441 */ MCD::OPC_Decode, 136, 19, 236, 1, // Opcode: PVFMSBLOvvvm, DecodeIdx: 236 |
9411 | /* 33446 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 33511 |
9412 | /* 33450 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9413 | /* 33453 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33483 |
9414 | /* 33457 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9415 | /* 33460 */ MCD::OPC_FilterValueOrFail, 0, |
9416 | /* 33462 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9417 | /* 33465 */ MCD::OPC_FilterValueOrFail, 0, |
9418 | /* 33467 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33478 |
9419 | /* 33473 */ MCD::OPC_Decode, 234, 18, 237, 1, // Opcode: PVFMSBLOviv, DecodeIdx: 237 |
9420 | /* 33478 */ MCD::OPC_Decode, 240, 18, 238, 1, // Opcode: PVFMSBLOvivm, DecodeIdx: 238 |
9421 | /* 33483 */ MCD::OPC_FilterValueOrFail, 1, |
9422 | /* 33485 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9423 | /* 33488 */ MCD::OPC_FilterValueOrFail, 0, |
9424 | /* 33490 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9425 | /* 33493 */ MCD::OPC_FilterValueOrFail, 0, |
9426 | /* 33495 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33506 |
9427 | /* 33501 */ MCD::OPC_Decode, 246, 18, 239, 1, // Opcode: PVFMSBLOvrv, DecodeIdx: 239 |
9428 | /* 33506 */ MCD::OPC_Decode, 252, 18, 240, 1, // Opcode: PVFMSBLOvrvm, DecodeIdx: 240 |
9429 | /* 33511 */ MCD::OPC_FilterValueOrFail, 6, |
9430 | /* 33513 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9431 | /* 33516 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33546 |
9432 | /* 33520 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9433 | /* 33523 */ MCD::OPC_FilterValueOrFail, 0, |
9434 | /* 33525 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9435 | /* 33528 */ MCD::OPC_FilterValueOrFail, 0, |
9436 | /* 33530 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33541 |
9437 | /* 33536 */ MCD::OPC_Decode, 210, 18, 241, 1, // Opcode: PVFMSBLOivv, DecodeIdx: 241 |
9438 | /* 33541 */ MCD::OPC_Decode, 216, 18, 242, 1, // Opcode: PVFMSBLOivvm, DecodeIdx: 242 |
9439 | /* 33546 */ MCD::OPC_FilterValueOrFail, 1, |
9440 | /* 33548 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9441 | /* 33551 */ MCD::OPC_FilterValueOrFail, 0, |
9442 | /* 33553 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9443 | /* 33556 */ MCD::OPC_FilterValueOrFail, 0, |
9444 | /* 33558 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33569 |
9445 | /* 33564 */ MCD::OPC_Decode, 222, 18, 243, 1, // Opcode: PVFMSBLOrvv, DecodeIdx: 243 |
9446 | /* 33569 */ MCD::OPC_Decode, 228, 18, 244, 1, // Opcode: PVFMSBLOrvvm, DecodeIdx: 244 |
9447 | /* 33574 */ MCD::OPC_FilterValue, 229, 3, 55, 1, // Skip to: 33890 |
9448 | /* 33579 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9449 | /* 33582 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 33607 |
9450 | /* 33586 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9451 | /* 33589 */ MCD::OPC_FilterValueOrFail, 0, |
9452 | /* 33591 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33602 |
9453 | /* 33597 */ MCD::OPC_Decode, 190, 19, 235, 1, // Opcode: PVFMSBUPvvv, DecodeIdx: 235 |
9454 | /* 33602 */ MCD::OPC_Decode, 196, 19, 236, 1, // Opcode: PVFMSBUPvvvm, DecodeIdx: 236 |
9455 | /* 33607 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 33672 |
9456 | /* 33611 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9457 | /* 33614 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33644 |
9458 | /* 33618 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9459 | /* 33621 */ MCD::OPC_FilterValueOrFail, 0, |
9460 | /* 33623 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9461 | /* 33626 */ MCD::OPC_FilterValueOrFail, 0, |
9462 | /* 33628 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33639 |
9463 | /* 33634 */ MCD::OPC_Decode, 166, 19, 237, 1, // Opcode: PVFMSBUPviv, DecodeIdx: 237 |
9464 | /* 33639 */ MCD::OPC_Decode, 172, 19, 238, 1, // Opcode: PVFMSBUPvivm, DecodeIdx: 238 |
9465 | /* 33644 */ MCD::OPC_FilterValueOrFail, 1, |
9466 | /* 33646 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9467 | /* 33649 */ MCD::OPC_FilterValueOrFail, 0, |
9468 | /* 33651 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9469 | /* 33654 */ MCD::OPC_FilterValueOrFail, 0, |
9470 | /* 33656 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33667 |
9471 | /* 33662 */ MCD::OPC_Decode, 178, 19, 245, 1, // Opcode: PVFMSBUPvrv, DecodeIdx: 245 |
9472 | /* 33667 */ MCD::OPC_Decode, 184, 19, 246, 1, // Opcode: PVFMSBUPvrvm, DecodeIdx: 246 |
9473 | /* 33672 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 33737 |
9474 | /* 33676 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9475 | /* 33679 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33709 |
9476 | /* 33683 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9477 | /* 33686 */ MCD::OPC_FilterValueOrFail, 0, |
9478 | /* 33688 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9479 | /* 33691 */ MCD::OPC_FilterValueOrFail, 0, |
9480 | /* 33693 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33704 |
9481 | /* 33699 */ MCD::OPC_Decode, 142, 19, 241, 1, // Opcode: PVFMSBUPivv, DecodeIdx: 241 |
9482 | /* 33704 */ MCD::OPC_Decode, 148, 19, 242, 1, // Opcode: PVFMSBUPivvm, DecodeIdx: 242 |
9483 | /* 33709 */ MCD::OPC_FilterValueOrFail, 1, |
9484 | /* 33711 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9485 | /* 33714 */ MCD::OPC_FilterValueOrFail, 0, |
9486 | /* 33716 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9487 | /* 33719 */ MCD::OPC_FilterValueOrFail, 0, |
9488 | /* 33721 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33732 |
9489 | /* 33727 */ MCD::OPC_Decode, 154, 19, 247, 1, // Opcode: PVFMSBUPrvv, DecodeIdx: 247 |
9490 | /* 33732 */ MCD::OPC_Decode, 160, 19, 248, 1, // Opcode: PVFMSBUPrvvm, DecodeIdx: 248 |
9491 | /* 33737 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 33762 |
9492 | /* 33741 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9493 | /* 33744 */ MCD::OPC_FilterValueOrFail, 0, |
9494 | /* 33746 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33757 |
9495 | /* 33752 */ MCD::OPC_Decode, 250, 19, 235, 1, // Opcode: PVFMSBvvv, DecodeIdx: 235 |
9496 | /* 33757 */ MCD::OPC_Decode, 128, 20, 249, 1, // Opcode: PVFMSBvvvm, DecodeIdx: 249 |
9497 | /* 33762 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 33827 |
9498 | /* 33766 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9499 | /* 33769 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33799 |
9500 | /* 33773 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9501 | /* 33776 */ MCD::OPC_FilterValueOrFail, 0, |
9502 | /* 33778 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9503 | /* 33781 */ MCD::OPC_FilterValueOrFail, 0, |
9504 | /* 33783 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33794 |
9505 | /* 33789 */ MCD::OPC_Decode, 226, 19, 237, 1, // Opcode: PVFMSBviv, DecodeIdx: 237 |
9506 | /* 33794 */ MCD::OPC_Decode, 232, 19, 250, 1, // Opcode: PVFMSBvivm, DecodeIdx: 250 |
9507 | /* 33799 */ MCD::OPC_FilterValueOrFail, 1, |
9508 | /* 33801 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9509 | /* 33804 */ MCD::OPC_FilterValueOrFail, 0, |
9510 | /* 33806 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9511 | /* 33809 */ MCD::OPC_FilterValueOrFail, 0, |
9512 | /* 33811 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33822 |
9513 | /* 33817 */ MCD::OPC_Decode, 238, 19, 239, 1, // Opcode: PVFMSBvrv, DecodeIdx: 239 |
9514 | /* 33822 */ MCD::OPC_Decode, 244, 19, 251, 1, // Opcode: PVFMSBvrvm, DecodeIdx: 251 |
9515 | /* 33827 */ MCD::OPC_FilterValueOrFail, 6, |
9516 | /* 33829 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9517 | /* 33832 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33862 |
9518 | /* 33836 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9519 | /* 33839 */ MCD::OPC_FilterValueOrFail, 0, |
9520 | /* 33841 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9521 | /* 33844 */ MCD::OPC_FilterValueOrFail, 0, |
9522 | /* 33846 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33857 |
9523 | /* 33852 */ MCD::OPC_Decode, 202, 19, 241, 1, // Opcode: PVFMSBivv, DecodeIdx: 241 |
9524 | /* 33857 */ MCD::OPC_Decode, 208, 19, 252, 1, // Opcode: PVFMSBivvm, DecodeIdx: 252 |
9525 | /* 33862 */ MCD::OPC_FilterValueOrFail, 1, |
9526 | /* 33864 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9527 | /* 33867 */ MCD::OPC_FilterValueOrFail, 0, |
9528 | /* 33869 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9529 | /* 33872 */ MCD::OPC_FilterValueOrFail, 0, |
9530 | /* 33874 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33885 |
9531 | /* 33880 */ MCD::OPC_Decode, 214, 19, 243, 1, // Opcode: PVFMSBrvv, DecodeIdx: 243 |
9532 | /* 33885 */ MCD::OPC_Decode, 220, 19, 253, 1, // Opcode: PVFMSBrvvm, DecodeIdx: 253 |
9533 | /* 33890 */ MCD::OPC_FilterValue, 230, 3, 55, 1, // Skip to: 34206 |
9534 | /* 33895 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9535 | /* 33898 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 33923 |
9536 | /* 33902 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9537 | /* 33905 */ MCD::OPC_FilterValueOrFail, 0, |
9538 | /* 33907 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33918 |
9539 | /* 33913 */ MCD::OPC_Decode, 251, 51, 235, 1, // Opcode: VFNMSBDvvv, DecodeIdx: 235 |
9540 | /* 33918 */ MCD::OPC_Decode, 129, 52, 236, 1, // Opcode: VFNMSBDvvvm, DecodeIdx: 236 |
9541 | /* 33923 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 33988 |
9542 | /* 33927 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9543 | /* 33930 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 33960 |
9544 | /* 33934 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9545 | /* 33937 */ MCD::OPC_FilterValueOrFail, 0, |
9546 | /* 33939 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9547 | /* 33942 */ MCD::OPC_FilterValueOrFail, 0, |
9548 | /* 33944 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33955 |
9549 | /* 33950 */ MCD::OPC_Decode, 227, 51, 237, 1, // Opcode: VFNMSBDviv, DecodeIdx: 237 |
9550 | /* 33955 */ MCD::OPC_Decode, 233, 51, 238, 1, // Opcode: VFNMSBDvivm, DecodeIdx: 238 |
9551 | /* 33960 */ MCD::OPC_FilterValueOrFail, 1, |
9552 | /* 33962 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9553 | /* 33965 */ MCD::OPC_FilterValueOrFail, 0, |
9554 | /* 33967 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9555 | /* 33970 */ MCD::OPC_FilterValueOrFail, 0, |
9556 | /* 33972 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 33983 |
9557 | /* 33978 */ MCD::OPC_Decode, 239, 51, 239, 1, // Opcode: VFNMSBDvrv, DecodeIdx: 239 |
9558 | /* 33983 */ MCD::OPC_Decode, 245, 51, 240, 1, // Opcode: VFNMSBDvrvm, DecodeIdx: 240 |
9559 | /* 33988 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 34053 |
9560 | /* 33992 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9561 | /* 33995 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34025 |
9562 | /* 33999 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9563 | /* 34002 */ MCD::OPC_FilterValueOrFail, 0, |
9564 | /* 34004 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9565 | /* 34007 */ MCD::OPC_FilterValueOrFail, 0, |
9566 | /* 34009 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34020 |
9567 | /* 34015 */ MCD::OPC_Decode, 203, 51, 241, 1, // Opcode: VFNMSBDivv, DecodeIdx: 241 |
9568 | /* 34020 */ MCD::OPC_Decode, 209, 51, 242, 1, // Opcode: VFNMSBDivvm, DecodeIdx: 242 |
9569 | /* 34025 */ MCD::OPC_FilterValueOrFail, 1, |
9570 | /* 34027 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9571 | /* 34030 */ MCD::OPC_FilterValueOrFail, 0, |
9572 | /* 34032 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9573 | /* 34035 */ MCD::OPC_FilterValueOrFail, 0, |
9574 | /* 34037 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34048 |
9575 | /* 34043 */ MCD::OPC_Decode, 215, 51, 243, 1, // Opcode: VFNMSBDrvv, DecodeIdx: 243 |
9576 | /* 34048 */ MCD::OPC_Decode, 221, 51, 244, 1, // Opcode: VFNMSBDrvvm, DecodeIdx: 244 |
9577 | /* 34053 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 34078 |
9578 | /* 34057 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9579 | /* 34060 */ MCD::OPC_FilterValueOrFail, 0, |
9580 | /* 34062 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34073 |
9581 | /* 34068 */ MCD::OPC_Decode, 214, 22, 235, 1, // Opcode: PVFNMSBLOvvv, DecodeIdx: 235 |
9582 | /* 34073 */ MCD::OPC_Decode, 220, 22, 236, 1, // Opcode: PVFNMSBLOvvvm, DecodeIdx: 236 |
9583 | /* 34078 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 34143 |
9584 | /* 34082 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9585 | /* 34085 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34115 |
9586 | /* 34089 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9587 | /* 34092 */ MCD::OPC_FilterValueOrFail, 0, |
9588 | /* 34094 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9589 | /* 34097 */ MCD::OPC_FilterValueOrFail, 0, |
9590 | /* 34099 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34110 |
9591 | /* 34105 */ MCD::OPC_Decode, 190, 22, 237, 1, // Opcode: PVFNMSBLOviv, DecodeIdx: 237 |
9592 | /* 34110 */ MCD::OPC_Decode, 196, 22, 238, 1, // Opcode: PVFNMSBLOvivm, DecodeIdx: 238 |
9593 | /* 34115 */ MCD::OPC_FilterValueOrFail, 1, |
9594 | /* 34117 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9595 | /* 34120 */ MCD::OPC_FilterValueOrFail, 0, |
9596 | /* 34122 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9597 | /* 34125 */ MCD::OPC_FilterValueOrFail, 0, |
9598 | /* 34127 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34138 |
9599 | /* 34133 */ MCD::OPC_Decode, 202, 22, 239, 1, // Opcode: PVFNMSBLOvrv, DecodeIdx: 239 |
9600 | /* 34138 */ MCD::OPC_Decode, 208, 22, 240, 1, // Opcode: PVFNMSBLOvrvm, DecodeIdx: 240 |
9601 | /* 34143 */ MCD::OPC_FilterValueOrFail, 6, |
9602 | /* 34145 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9603 | /* 34148 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34178 |
9604 | /* 34152 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9605 | /* 34155 */ MCD::OPC_FilterValueOrFail, 0, |
9606 | /* 34157 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9607 | /* 34160 */ MCD::OPC_FilterValueOrFail, 0, |
9608 | /* 34162 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34173 |
9609 | /* 34168 */ MCD::OPC_Decode, 166, 22, 241, 1, // Opcode: PVFNMSBLOivv, DecodeIdx: 241 |
9610 | /* 34173 */ MCD::OPC_Decode, 172, 22, 242, 1, // Opcode: PVFNMSBLOivvm, DecodeIdx: 242 |
9611 | /* 34178 */ MCD::OPC_FilterValueOrFail, 1, |
9612 | /* 34180 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9613 | /* 34183 */ MCD::OPC_FilterValueOrFail, 0, |
9614 | /* 34185 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9615 | /* 34188 */ MCD::OPC_FilterValueOrFail, 0, |
9616 | /* 34190 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34201 |
9617 | /* 34196 */ MCD::OPC_Decode, 178, 22, 243, 1, // Opcode: PVFNMSBLOrvv, DecodeIdx: 243 |
9618 | /* 34201 */ MCD::OPC_Decode, 184, 22, 244, 1, // Opcode: PVFNMSBLOrvvm, DecodeIdx: 244 |
9619 | /* 34206 */ MCD::OPC_FilterValue, 231, 3, 55, 1, // Skip to: 34522 |
9620 | /* 34211 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9621 | /* 34214 */ MCD::OPC_FilterValue, 0, 21, 0, // Skip to: 34239 |
9622 | /* 34218 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9623 | /* 34221 */ MCD::OPC_FilterValueOrFail, 0, |
9624 | /* 34223 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34234 |
9625 | /* 34229 */ MCD::OPC_Decode, 146, 23, 235, 1, // Opcode: PVFNMSBUPvvv, DecodeIdx: 235 |
9626 | /* 34234 */ MCD::OPC_Decode, 152, 23, 236, 1, // Opcode: PVFNMSBUPvvvm, DecodeIdx: 236 |
9627 | /* 34239 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 34304 |
9628 | /* 34243 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9629 | /* 34246 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34276 |
9630 | /* 34250 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9631 | /* 34253 */ MCD::OPC_FilterValueOrFail, 0, |
9632 | /* 34255 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9633 | /* 34258 */ MCD::OPC_FilterValueOrFail, 0, |
9634 | /* 34260 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34271 |
9635 | /* 34266 */ MCD::OPC_Decode, 250, 22, 237, 1, // Opcode: PVFNMSBUPviv, DecodeIdx: 237 |
9636 | /* 34271 */ MCD::OPC_Decode, 128, 23, 238, 1, // Opcode: PVFNMSBUPvivm, DecodeIdx: 238 |
9637 | /* 34276 */ MCD::OPC_FilterValueOrFail, 1, |
9638 | /* 34278 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9639 | /* 34281 */ MCD::OPC_FilterValueOrFail, 0, |
9640 | /* 34283 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9641 | /* 34286 */ MCD::OPC_FilterValueOrFail, 0, |
9642 | /* 34288 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34299 |
9643 | /* 34294 */ MCD::OPC_Decode, 134, 23, 245, 1, // Opcode: PVFNMSBUPvrv, DecodeIdx: 245 |
9644 | /* 34299 */ MCD::OPC_Decode, 140, 23, 246, 1, // Opcode: PVFNMSBUPvrvm, DecodeIdx: 246 |
9645 | /* 34304 */ MCD::OPC_FilterValue, 2, 61, 0, // Skip to: 34369 |
9646 | /* 34308 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9647 | /* 34311 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34341 |
9648 | /* 34315 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9649 | /* 34318 */ MCD::OPC_FilterValueOrFail, 0, |
9650 | /* 34320 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9651 | /* 34323 */ MCD::OPC_FilterValueOrFail, 0, |
9652 | /* 34325 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34336 |
9653 | /* 34331 */ MCD::OPC_Decode, 226, 22, 241, 1, // Opcode: PVFNMSBUPivv, DecodeIdx: 241 |
9654 | /* 34336 */ MCD::OPC_Decode, 232, 22, 242, 1, // Opcode: PVFNMSBUPivvm, DecodeIdx: 242 |
9655 | /* 34341 */ MCD::OPC_FilterValueOrFail, 1, |
9656 | /* 34343 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9657 | /* 34346 */ MCD::OPC_FilterValueOrFail, 0, |
9658 | /* 34348 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9659 | /* 34351 */ MCD::OPC_FilterValueOrFail, 0, |
9660 | /* 34353 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34364 |
9661 | /* 34359 */ MCD::OPC_Decode, 238, 22, 247, 1, // Opcode: PVFNMSBUPrvv, DecodeIdx: 247 |
9662 | /* 34364 */ MCD::OPC_Decode, 244, 22, 248, 1, // Opcode: PVFNMSBUPrvvm, DecodeIdx: 248 |
9663 | /* 34369 */ MCD::OPC_FilterValue, 4, 21, 0, // Skip to: 34394 |
9664 | /* 34373 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9665 | /* 34376 */ MCD::OPC_FilterValueOrFail, 0, |
9666 | /* 34378 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34389 |
9667 | /* 34384 */ MCD::OPC_Decode, 206, 23, 235, 1, // Opcode: PVFNMSBvvv, DecodeIdx: 235 |
9668 | /* 34389 */ MCD::OPC_Decode, 212, 23, 249, 1, // Opcode: PVFNMSBvvvm, DecodeIdx: 249 |
9669 | /* 34394 */ MCD::OPC_FilterValue, 5, 61, 0, // Skip to: 34459 |
9670 | /* 34398 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9671 | /* 34401 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34431 |
9672 | /* 34405 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9673 | /* 34408 */ MCD::OPC_FilterValueOrFail, 0, |
9674 | /* 34410 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9675 | /* 34413 */ MCD::OPC_FilterValueOrFail, 0, |
9676 | /* 34415 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34426 |
9677 | /* 34421 */ MCD::OPC_Decode, 182, 23, 237, 1, // Opcode: PVFNMSBviv, DecodeIdx: 237 |
9678 | /* 34426 */ MCD::OPC_Decode, 188, 23, 250, 1, // Opcode: PVFNMSBvivm, DecodeIdx: 250 |
9679 | /* 34431 */ MCD::OPC_FilterValueOrFail, 1, |
9680 | /* 34433 */ MCD::OPC_ExtractField, 8, 8, // Inst{15-8} ... |
9681 | /* 34436 */ MCD::OPC_FilterValueOrFail, 0, |
9682 | /* 34438 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9683 | /* 34441 */ MCD::OPC_FilterValueOrFail, 0, |
9684 | /* 34443 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34454 |
9685 | /* 34449 */ MCD::OPC_Decode, 194, 23, 239, 1, // Opcode: PVFNMSBvrv, DecodeIdx: 239 |
9686 | /* 34454 */ MCD::OPC_Decode, 200, 23, 251, 1, // Opcode: PVFNMSBvrvm, DecodeIdx: 251 |
9687 | /* 34459 */ MCD::OPC_FilterValueOrFail, 6, |
9688 | /* 34461 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9689 | /* 34464 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34494 |
9690 | /* 34468 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9691 | /* 34471 */ MCD::OPC_FilterValueOrFail, 0, |
9692 | /* 34473 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9693 | /* 34476 */ MCD::OPC_FilterValueOrFail, 0, |
9694 | /* 34478 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34489 |
9695 | /* 34484 */ MCD::OPC_Decode, 158, 23, 241, 1, // Opcode: PVFNMSBivv, DecodeIdx: 241 |
9696 | /* 34489 */ MCD::OPC_Decode, 164, 23, 252, 1, // Opcode: PVFNMSBivvm, DecodeIdx: 252 |
9697 | /* 34494 */ MCD::OPC_FilterValueOrFail, 1, |
9698 | /* 34496 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9699 | /* 34499 */ MCD::OPC_FilterValueOrFail, 0, |
9700 | /* 34501 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9701 | /* 34504 */ MCD::OPC_FilterValueOrFail, 0, |
9702 | /* 34506 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34517 |
9703 | /* 34512 */ MCD::OPC_Decode, 170, 23, 243, 1, // Opcode: PVFNMSBrvv, DecodeIdx: 243 |
9704 | /* 34517 */ MCD::OPC_Decode, 176, 23, 253, 1, // Opcode: PVFNMSBrvvm, DecodeIdx: 253 |
9705 | /* 34522 */ MCD::OPC_FilterValue, 232, 3, 71, 0, // Skip to: 34598 |
9706 | /* 34527 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9707 | /* 34530 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 34565 |
9708 | /* 34534 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9709 | /* 34537 */ MCD::OPC_FilterValueOrFail, 0, |
9710 | /* 34539 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9711 | /* 34542 */ MCD::OPC_FilterValueOrFail, 0, |
9712 | /* 34544 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9713 | /* 34547 */ MCD::OPC_FilterValueOrFail, 0, |
9714 | /* 34549 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34560 |
9715 | /* 34555 */ MCD::OPC_Decode, 255, 76, 208, 1, // Opcode: VSRDvvi, DecodeIdx: 208 |
9716 | /* 34560 */ MCD::OPC_Decode, 133, 77, 254, 1, // Opcode: VSRDvvim, DecodeIdx: 254 |
9717 | /* 34565 */ MCD::OPC_FilterValueOrFail, 1, |
9718 | /* 34567 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9719 | /* 34570 */ MCD::OPC_FilterValueOrFail, 0, |
9720 | /* 34572 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9721 | /* 34575 */ MCD::OPC_FilterValueOrFail, 0, |
9722 | /* 34577 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9723 | /* 34580 */ MCD::OPC_FilterValueOrFail, 0, |
9724 | /* 34582 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34593 |
9725 | /* 34588 */ MCD::OPC_Decode, 139, 77, 209, 1, // Opcode: VSRDvvr, DecodeIdx: 209 |
9726 | /* 34593 */ MCD::OPC_Decode, 145, 77, 255, 1, // Opcode: VSRDvvrm, DecodeIdx: 255 |
9727 | /* 34598 */ MCD::OPC_FilterValue, 234, 3, 211, 0, // Skip to: 34814 |
9728 | /* 34603 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9729 | /* 34606 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34636 |
9730 | /* 34610 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9731 | /* 34613 */ MCD::OPC_FilterValueOrFail, 0, |
9732 | /* 34615 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9733 | /* 34618 */ MCD::OPC_FilterValueOrFail, 0, |
9734 | /* 34620 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34631 |
9735 | /* 34626 */ MCD::OPC_Decode, 175, 77, 217, 1, // Opcode: VSRLvv, DecodeIdx: 217 |
9736 | /* 34631 */ MCD::OPC_Decode, 181, 77, 218, 1, // Opcode: VSRLvvm, DecodeIdx: 218 |
9737 | /* 34636 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 34711 |
9738 | /* 34640 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9739 | /* 34643 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 34678 |
9740 | /* 34647 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9741 | /* 34650 */ MCD::OPC_FilterValueOrFail, 0, |
9742 | /* 34652 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9743 | /* 34655 */ MCD::OPC_FilterValueOrFail, 0, |
9744 | /* 34657 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9745 | /* 34660 */ MCD::OPC_FilterValueOrFail, 0, |
9746 | /* 34662 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34673 |
9747 | /* 34668 */ MCD::OPC_Decode, 151, 77, 219, 1, // Opcode: VSRLvi, DecodeIdx: 219 |
9748 | /* 34673 */ MCD::OPC_Decode, 157, 77, 220, 1, // Opcode: VSRLvim, DecodeIdx: 220 |
9749 | /* 34678 */ MCD::OPC_FilterValueOrFail, 1, |
9750 | /* 34680 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9751 | /* 34683 */ MCD::OPC_FilterValueOrFail, 0, |
9752 | /* 34685 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9753 | /* 34688 */ MCD::OPC_FilterValueOrFail, 0, |
9754 | /* 34690 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9755 | /* 34693 */ MCD::OPC_FilterValueOrFail, 0, |
9756 | /* 34695 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34706 |
9757 | /* 34701 */ MCD::OPC_Decode, 163, 77, 221, 1, // Opcode: VSRLvr, DecodeIdx: 221 |
9758 | /* 34706 */ MCD::OPC_Decode, 169, 77, 222, 1, // Opcode: VSRLvrm, DecodeIdx: 222 |
9759 | /* 34711 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 34741 |
9760 | /* 34715 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9761 | /* 34718 */ MCD::OPC_FilterValueOrFail, 0, |
9762 | /* 34720 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9763 | /* 34723 */ MCD::OPC_FilterValueOrFail, 0, |
9764 | /* 34725 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34736 |
9765 | /* 34731 */ MCD::OPC_Decode, 190, 31, 217, 1, // Opcode: PVSRLLOvv, DecodeIdx: 217 |
9766 | /* 34736 */ MCD::OPC_Decode, 196, 31, 218, 1, // Opcode: PVSRLLOvvm, DecodeIdx: 218 |
9767 | /* 34741 */ MCD::OPC_FilterValueOrFail, 6, |
9768 | /* 34743 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9769 | /* 34746 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 34781 |
9770 | /* 34750 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9771 | /* 34753 */ MCD::OPC_FilterValueOrFail, 0, |
9772 | /* 34755 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9773 | /* 34758 */ MCD::OPC_FilterValueOrFail, 0, |
9774 | /* 34760 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9775 | /* 34763 */ MCD::OPC_FilterValueOrFail, 0, |
9776 | /* 34765 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34776 |
9777 | /* 34771 */ MCD::OPC_Decode, 166, 31, 219, 1, // Opcode: PVSRLLOvi, DecodeIdx: 219 |
9778 | /* 34776 */ MCD::OPC_Decode, 172, 31, 220, 1, // Opcode: PVSRLLOvim, DecodeIdx: 220 |
9779 | /* 34781 */ MCD::OPC_FilterValueOrFail, 1, |
9780 | /* 34783 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9781 | /* 34786 */ MCD::OPC_FilterValueOrFail, 0, |
9782 | /* 34788 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9783 | /* 34791 */ MCD::OPC_FilterValueOrFail, 0, |
9784 | /* 34793 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9785 | /* 34796 */ MCD::OPC_FilterValueOrFail, 0, |
9786 | /* 34798 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34809 |
9787 | /* 34804 */ MCD::OPC_Decode, 178, 31, 128, 2, // Opcode: PVSRLLOvr, DecodeIdx: 256 |
9788 | /* 34809 */ MCD::OPC_Decode, 184, 31, 129, 2, // Opcode: PVSRLLOvrm, DecodeIdx: 257 |
9789 | /* 34814 */ MCD::OPC_FilterValue, 235, 3, 211, 0, // Skip to: 35030 |
9790 | /* 34819 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9791 | /* 34822 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 34852 |
9792 | /* 34826 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9793 | /* 34829 */ MCD::OPC_FilterValueOrFail, 0, |
9794 | /* 34831 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9795 | /* 34834 */ MCD::OPC_FilterValueOrFail, 0, |
9796 | /* 34836 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34847 |
9797 | /* 34842 */ MCD::OPC_Decode, 226, 31, 217, 1, // Opcode: PVSRLUPvv, DecodeIdx: 217 |
9798 | /* 34847 */ MCD::OPC_Decode, 232, 31, 218, 1, // Opcode: PVSRLUPvvm, DecodeIdx: 218 |
9799 | /* 34852 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 34927 |
9800 | /* 34856 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9801 | /* 34859 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 34894 |
9802 | /* 34863 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9803 | /* 34866 */ MCD::OPC_FilterValueOrFail, 0, |
9804 | /* 34868 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9805 | /* 34871 */ MCD::OPC_FilterValueOrFail, 0, |
9806 | /* 34873 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9807 | /* 34876 */ MCD::OPC_FilterValueOrFail, 0, |
9808 | /* 34878 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34889 |
9809 | /* 34884 */ MCD::OPC_Decode, 202, 31, 219, 1, // Opcode: PVSRLUPvi, DecodeIdx: 219 |
9810 | /* 34889 */ MCD::OPC_Decode, 208, 31, 220, 1, // Opcode: PVSRLUPvim, DecodeIdx: 220 |
9811 | /* 34894 */ MCD::OPC_FilterValueOrFail, 1, |
9812 | /* 34896 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9813 | /* 34899 */ MCD::OPC_FilterValueOrFail, 0, |
9814 | /* 34901 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9815 | /* 34904 */ MCD::OPC_FilterValueOrFail, 0, |
9816 | /* 34906 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9817 | /* 34909 */ MCD::OPC_FilterValueOrFail, 0, |
9818 | /* 34911 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34922 |
9819 | /* 34917 */ MCD::OPC_Decode, 214, 31, 130, 2, // Opcode: PVSRLUPvr, DecodeIdx: 258 |
9820 | /* 34922 */ MCD::OPC_Decode, 220, 31, 131, 2, // Opcode: PVSRLUPvrm, DecodeIdx: 259 |
9821 | /* 34927 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 34957 |
9822 | /* 34931 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9823 | /* 34934 */ MCD::OPC_FilterValueOrFail, 0, |
9824 | /* 34936 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9825 | /* 34939 */ MCD::OPC_FilterValueOrFail, 0, |
9826 | /* 34941 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34952 |
9827 | /* 34947 */ MCD::OPC_Decode, 134, 32, 217, 1, // Opcode: PVSRLvv, DecodeIdx: 217 |
9828 | /* 34952 */ MCD::OPC_Decode, 140, 32, 132, 2, // Opcode: PVSRLvvm, DecodeIdx: 260 |
9829 | /* 34957 */ MCD::OPC_FilterValueOrFail, 6, |
9830 | /* 34959 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9831 | /* 34962 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 34997 |
9832 | /* 34966 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9833 | /* 34969 */ MCD::OPC_FilterValueOrFail, 0, |
9834 | /* 34971 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9835 | /* 34974 */ MCD::OPC_FilterValueOrFail, 0, |
9836 | /* 34976 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9837 | /* 34979 */ MCD::OPC_FilterValueOrFail, 0, |
9838 | /* 34981 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 34992 |
9839 | /* 34987 */ MCD::OPC_Decode, 238, 31, 219, 1, // Opcode: PVSRLvi, DecodeIdx: 219 |
9840 | /* 34992 */ MCD::OPC_Decode, 244, 31, 133, 2, // Opcode: PVSRLvim, DecodeIdx: 261 |
9841 | /* 34997 */ MCD::OPC_FilterValueOrFail, 1, |
9842 | /* 34999 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9843 | /* 35002 */ MCD::OPC_FilterValueOrFail, 0, |
9844 | /* 35004 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9845 | /* 35007 */ MCD::OPC_FilterValueOrFail, 0, |
9846 | /* 35009 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9847 | /* 35012 */ MCD::OPC_FilterValueOrFail, 0, |
9848 | /* 35014 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35025 |
9849 | /* 35020 */ MCD::OPC_Decode, 250, 31, 221, 1, // Opcode: PVSRLvr, DecodeIdx: 221 |
9850 | /* 35025 */ MCD::OPC_Decode, 128, 32, 134, 2, // Opcode: PVSRLvrm, DecodeIdx: 262 |
9851 | /* 35030 */ MCD::OPC_FilterValue, 236, 3, 211, 0, // Skip to: 35246 |
9852 | /* 35035 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9853 | /* 35038 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 35068 |
9854 | /* 35042 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9855 | /* 35045 */ MCD::OPC_FilterValueOrFail, 0, |
9856 | /* 35047 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9857 | /* 35050 */ MCD::OPC_FilterValueOrFail, 0, |
9858 | /* 35052 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35063 |
9859 | /* 35058 */ MCD::OPC_Decode, 207, 76, 217, 1, // Opcode: VSRAWSXvv, DecodeIdx: 217 |
9860 | /* 35063 */ MCD::OPC_Decode, 213, 76, 218, 1, // Opcode: VSRAWSXvvm, DecodeIdx: 218 |
9861 | /* 35068 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 35143 |
9862 | /* 35072 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9863 | /* 35075 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35110 |
9864 | /* 35079 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9865 | /* 35082 */ MCD::OPC_FilterValueOrFail, 0, |
9866 | /* 35084 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9867 | /* 35087 */ MCD::OPC_FilterValueOrFail, 0, |
9868 | /* 35089 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9869 | /* 35092 */ MCD::OPC_FilterValueOrFail, 0, |
9870 | /* 35094 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35105 |
9871 | /* 35100 */ MCD::OPC_Decode, 183, 76, 219, 1, // Opcode: VSRAWSXvi, DecodeIdx: 219 |
9872 | /* 35105 */ MCD::OPC_Decode, 189, 76, 220, 1, // Opcode: VSRAWSXvim, DecodeIdx: 220 |
9873 | /* 35110 */ MCD::OPC_FilterValueOrFail, 1, |
9874 | /* 35112 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9875 | /* 35115 */ MCD::OPC_FilterValueOrFail, 0, |
9876 | /* 35117 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9877 | /* 35120 */ MCD::OPC_FilterValueOrFail, 0, |
9878 | /* 35122 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9879 | /* 35125 */ MCD::OPC_FilterValueOrFail, 0, |
9880 | /* 35127 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35138 |
9881 | /* 35133 */ MCD::OPC_Decode, 195, 76, 128, 2, // Opcode: VSRAWSXvr, DecodeIdx: 256 |
9882 | /* 35138 */ MCD::OPC_Decode, 201, 76, 129, 2, // Opcode: VSRAWSXvrm, DecodeIdx: 257 |
9883 | /* 35143 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 35173 |
9884 | /* 35147 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9885 | /* 35150 */ MCD::OPC_FilterValueOrFail, 0, |
9886 | /* 35152 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9887 | /* 35155 */ MCD::OPC_FilterValueOrFail, 0, |
9888 | /* 35157 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35168 |
9889 | /* 35163 */ MCD::OPC_Decode, 210, 30, 217, 1, // Opcode: PVSRALOvv, DecodeIdx: 217 |
9890 | /* 35168 */ MCD::OPC_Decode, 216, 30, 218, 1, // Opcode: PVSRALOvvm, DecodeIdx: 218 |
9891 | /* 35173 */ MCD::OPC_FilterValueOrFail, 6, |
9892 | /* 35175 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9893 | /* 35178 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35213 |
9894 | /* 35182 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9895 | /* 35185 */ MCD::OPC_FilterValueOrFail, 0, |
9896 | /* 35187 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9897 | /* 35190 */ MCD::OPC_FilterValueOrFail, 0, |
9898 | /* 35192 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9899 | /* 35195 */ MCD::OPC_FilterValueOrFail, 0, |
9900 | /* 35197 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35208 |
9901 | /* 35203 */ MCD::OPC_Decode, 186, 30, 219, 1, // Opcode: PVSRALOvi, DecodeIdx: 219 |
9902 | /* 35208 */ MCD::OPC_Decode, 192, 30, 220, 1, // Opcode: PVSRALOvim, DecodeIdx: 220 |
9903 | /* 35213 */ MCD::OPC_FilterValueOrFail, 1, |
9904 | /* 35215 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9905 | /* 35218 */ MCD::OPC_FilterValueOrFail, 0, |
9906 | /* 35220 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9907 | /* 35223 */ MCD::OPC_FilterValueOrFail, 0, |
9908 | /* 35225 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9909 | /* 35228 */ MCD::OPC_FilterValueOrFail, 0, |
9910 | /* 35230 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35241 |
9911 | /* 35236 */ MCD::OPC_Decode, 198, 30, 128, 2, // Opcode: PVSRALOvr, DecodeIdx: 256 |
9912 | /* 35241 */ MCD::OPC_Decode, 204, 30, 129, 2, // Opcode: PVSRALOvrm, DecodeIdx: 257 |
9913 | /* 35246 */ MCD::OPC_FilterValue, 237, 3, 211, 0, // Skip to: 35462 |
9914 | /* 35251 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9915 | /* 35254 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 35284 |
9916 | /* 35258 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9917 | /* 35261 */ MCD::OPC_FilterValueOrFail, 0, |
9918 | /* 35263 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9919 | /* 35266 */ MCD::OPC_FilterValueOrFail, 0, |
9920 | /* 35268 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35279 |
9921 | /* 35274 */ MCD::OPC_Decode, 246, 30, 217, 1, // Opcode: PVSRAUPvv, DecodeIdx: 217 |
9922 | /* 35279 */ MCD::OPC_Decode, 252, 30, 218, 1, // Opcode: PVSRAUPvvm, DecodeIdx: 218 |
9923 | /* 35284 */ MCD::OPC_FilterValue, 2, 71, 0, // Skip to: 35359 |
9924 | /* 35288 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9925 | /* 35291 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35326 |
9926 | /* 35295 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9927 | /* 35298 */ MCD::OPC_FilterValueOrFail, 0, |
9928 | /* 35300 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9929 | /* 35303 */ MCD::OPC_FilterValueOrFail, 0, |
9930 | /* 35305 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9931 | /* 35308 */ MCD::OPC_FilterValueOrFail, 0, |
9932 | /* 35310 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35321 |
9933 | /* 35316 */ MCD::OPC_Decode, 222, 30, 219, 1, // Opcode: PVSRAUPvi, DecodeIdx: 219 |
9934 | /* 35321 */ MCD::OPC_Decode, 228, 30, 220, 1, // Opcode: PVSRAUPvim, DecodeIdx: 220 |
9935 | /* 35326 */ MCD::OPC_FilterValueOrFail, 1, |
9936 | /* 35328 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9937 | /* 35331 */ MCD::OPC_FilterValueOrFail, 0, |
9938 | /* 35333 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9939 | /* 35336 */ MCD::OPC_FilterValueOrFail, 0, |
9940 | /* 35338 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9941 | /* 35341 */ MCD::OPC_FilterValueOrFail, 0, |
9942 | /* 35343 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35354 |
9943 | /* 35349 */ MCD::OPC_Decode, 234, 30, 130, 2, // Opcode: PVSRAUPvr, DecodeIdx: 258 |
9944 | /* 35354 */ MCD::OPC_Decode, 240, 30, 131, 2, // Opcode: PVSRAUPvrm, DecodeIdx: 259 |
9945 | /* 35359 */ MCD::OPC_FilterValue, 4, 26, 0, // Skip to: 35389 |
9946 | /* 35363 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9947 | /* 35366 */ MCD::OPC_FilterValueOrFail, 0, |
9948 | /* 35368 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9949 | /* 35371 */ MCD::OPC_FilterValueOrFail, 0, |
9950 | /* 35373 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35384 |
9951 | /* 35379 */ MCD::OPC_Decode, 154, 31, 217, 1, // Opcode: PVSRAvv, DecodeIdx: 217 |
9952 | /* 35384 */ MCD::OPC_Decode, 160, 31, 132, 2, // Opcode: PVSRAvvm, DecodeIdx: 260 |
9953 | /* 35389 */ MCD::OPC_FilterValueOrFail, 6, |
9954 | /* 35391 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
9955 | /* 35394 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35429 |
9956 | /* 35398 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9957 | /* 35401 */ MCD::OPC_FilterValueOrFail, 0, |
9958 | /* 35403 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9959 | /* 35406 */ MCD::OPC_FilterValueOrFail, 0, |
9960 | /* 35408 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9961 | /* 35411 */ MCD::OPC_FilterValueOrFail, 0, |
9962 | /* 35413 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35424 |
9963 | /* 35419 */ MCD::OPC_Decode, 130, 31, 219, 1, // Opcode: PVSRAvi, DecodeIdx: 219 |
9964 | /* 35424 */ MCD::OPC_Decode, 136, 31, 133, 2, // Opcode: PVSRAvim, DecodeIdx: 261 |
9965 | /* 35429 */ MCD::OPC_FilterValueOrFail, 1, |
9966 | /* 35431 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9967 | /* 35434 */ MCD::OPC_FilterValueOrFail, 0, |
9968 | /* 35436 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9969 | /* 35439 */ MCD::OPC_FilterValueOrFail, 0, |
9970 | /* 35441 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
9971 | /* 35444 */ MCD::OPC_FilterValueOrFail, 0, |
9972 | /* 35446 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35457 |
9973 | /* 35452 */ MCD::OPC_Decode, 142, 31, 221, 1, // Opcode: PVSRAvr, DecodeIdx: 221 |
9974 | /* 35457 */ MCD::OPC_Decode, 148, 31, 134, 2, // Opcode: PVSRAvrm, DecodeIdx: 262 |
9975 | /* 35462 */ MCD::OPC_FilterValue, 238, 3, 71, 0, // Skip to: 35538 |
9976 | /* 35467 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9977 | /* 35470 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35505 |
9978 | /* 35474 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9979 | /* 35477 */ MCD::OPC_FilterValueOrFail, 0, |
9980 | /* 35479 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9981 | /* 35482 */ MCD::OPC_FilterValueOrFail, 0, |
9982 | /* 35484 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9983 | /* 35487 */ MCD::OPC_FilterValueOrFail, 0, |
9984 | /* 35489 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35500 |
9985 | /* 35495 */ MCD::OPC_Decode, 243, 37, 142, 1, // Opcode: VBRVv, DecodeIdx: 142 |
9986 | /* 35500 */ MCD::OPC_Decode, 249, 37, 143, 1, // Opcode: VBRVvm, DecodeIdx: 143 |
9987 | /* 35505 */ MCD::OPC_FilterValueOrFail, 4, |
9988 | /* 35507 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
9989 | /* 35510 */ MCD::OPC_FilterValueOrFail, 0, |
9990 | /* 35512 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
9991 | /* 35515 */ MCD::OPC_FilterValueOrFail, 0, |
9992 | /* 35517 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
9993 | /* 35520 */ MCD::OPC_FilterValueOrFail, 0, |
9994 | /* 35522 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35533 |
9995 | /* 35528 */ MCD::OPC_Decode, 246, 9, 142, 1, // Opcode: PVBRVLOv, DecodeIdx: 142 |
9996 | /* 35533 */ MCD::OPC_Decode, 252, 9, 143, 1, // Opcode: PVBRVLOvm, DecodeIdx: 143 |
9997 | /* 35538 */ MCD::OPC_FilterValue, 239, 3, 71, 0, // Skip to: 35614 |
9998 | /* 35543 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
9999 | /* 35546 */ MCD::OPC_FilterValue, 0, 31, 0, // Skip to: 35581 |
10000 | /* 35550 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10001 | /* 35553 */ MCD::OPC_FilterValueOrFail, 0, |
10002 | /* 35555 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10003 | /* 35558 */ MCD::OPC_FilterValueOrFail, 0, |
10004 | /* 35560 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10005 | /* 35563 */ MCD::OPC_FilterValueOrFail, 0, |
10006 | /* 35565 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35576 |
10007 | /* 35571 */ MCD::OPC_Decode, 130, 10, 142, 1, // Opcode: PVBRVUPv, DecodeIdx: 142 |
10008 | /* 35576 */ MCD::OPC_Decode, 136, 10, 143, 1, // Opcode: PVBRVUPvm, DecodeIdx: 143 |
10009 | /* 35581 */ MCD::OPC_FilterValueOrFail, 4, |
10010 | /* 35583 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10011 | /* 35586 */ MCD::OPC_FilterValueOrFail, 0, |
10012 | /* 35588 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10013 | /* 35591 */ MCD::OPC_FilterValueOrFail, 0, |
10014 | /* 35593 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10015 | /* 35596 */ MCD::OPC_FilterValueOrFail, 0, |
10016 | /* 35598 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 35609 |
10017 | /* 35604 */ MCD::OPC_Decode, 142, 10, 142, 1, // Opcode: PVBRVv, DecodeIdx: 142 |
10018 | /* 35609 */ MCD::OPC_Decode, 148, 10, 183, 1, // Opcode: PVBRVvm, DecodeIdx: 183 |
10019 | /* 35614 */ MCD::OPC_FilterValue, 240, 3, 57, 0, // Skip to: 35676 |
10020 | /* 35619 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10021 | /* 35622 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 35650 |
10022 | /* 35626 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10023 | /* 35629 */ MCD::OPC_FilterValueOrFail, 0, |
10024 | /* 35631 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10025 | /* 35634 */ MCD::OPC_FilterValueOrFail, 0, |
10026 | /* 35636 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35646 |
10027 | /* 35642 */ MCD::OPC_Decode, 215, 39, 119, // Opcode: VCVTDWv, DecodeIdx: 119 |
10028 | /* 35646 */ MCD::OPC_Decode, 221, 39, 120, // Opcode: VCVTDWvm, DecodeIdx: 120 |
10029 | /* 35650 */ MCD::OPC_FilterValueOrFail, 5, |
10030 | /* 35652 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10031 | /* 35655 */ MCD::OPC_FilterValueOrFail, 0, |
10032 | /* 35657 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10033 | /* 35660 */ MCD::OPC_FilterValueOrFail, 0, |
10034 | /* 35662 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35672 |
10035 | /* 35668 */ MCD::OPC_Decode, 242, 11, 119, // Opcode: PVCVTSWLOv, DecodeIdx: 119 |
10036 | /* 35672 */ MCD::OPC_Decode, 248, 11, 120, // Opcode: PVCVTSWLOvm, DecodeIdx: 120 |
10037 | /* 35676 */ MCD::OPC_FilterValue, 241, 3, 86, 0, // Skip to: 35767 |
10038 | /* 35681 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10039 | /* 35684 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 35712 |
10040 | /* 35688 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10041 | /* 35691 */ MCD::OPC_FilterValueOrFail, 0, |
10042 | /* 35693 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10043 | /* 35696 */ MCD::OPC_FilterValueOrFail, 0, |
10044 | /* 35698 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35708 |
10045 | /* 35704 */ MCD::OPC_Decode, 251, 39, 119, // Opcode: VCVTSWv, DecodeIdx: 119 |
10046 | /* 35708 */ MCD::OPC_Decode, 129, 40, 120, // Opcode: VCVTSWvm, DecodeIdx: 120 |
10047 | /* 35712 */ MCD::OPC_FilterValue, 1, 24, 0, // Skip to: 35740 |
10048 | /* 35716 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10049 | /* 35719 */ MCD::OPC_FilterValueOrFail, 0, |
10050 | /* 35721 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10051 | /* 35724 */ MCD::OPC_FilterValueOrFail, 0, |
10052 | /* 35726 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35736 |
10053 | /* 35732 */ MCD::OPC_Decode, 254, 11, 119, // Opcode: PVCVTSWUPv, DecodeIdx: 119 |
10054 | /* 35736 */ MCD::OPC_Decode, 132, 12, 120, // Opcode: PVCVTSWUPvm, DecodeIdx: 120 |
10055 | /* 35740 */ MCD::OPC_FilterValueOrFail, 5, |
10056 | /* 35742 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10057 | /* 35745 */ MCD::OPC_FilterValueOrFail, 0, |
10058 | /* 35747 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10059 | /* 35750 */ MCD::OPC_FilterValueOrFail, 0, |
10060 | /* 35752 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35762 |
10061 | /* 35758 */ MCD::OPC_Decode, 138, 12, 119, // Opcode: PVCVTSWv, DecodeIdx: 119 |
10062 | /* 35762 */ MCD::OPC_Decode, 144, 12, 234, 1, // Opcode: PVCVTSWvm, DecodeIdx: 234 |
10063 | /* 35767 */ MCD::OPC_FilterValue, 244, 3, 199, 0, // Skip to: 35971 |
10064 | /* 35772 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10065 | /* 35775 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 35803 |
10066 | /* 35779 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10067 | /* 35782 */ MCD::OPC_FilterValueOrFail, 0, |
10068 | /* 35784 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10069 | /* 35787 */ MCD::OPC_FilterValueOrFail, 0, |
10070 | /* 35789 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35799 |
10071 | /* 35795 */ MCD::OPC_Decode, 187, 38, 121, // Opcode: VCMPSWSXvv, DecodeIdx: 121 |
10072 | /* 35799 */ MCD::OPC_Decode, 193, 38, 122, // Opcode: VCMPSWSXvvm, DecodeIdx: 122 |
10073 | /* 35803 */ MCD::OPC_FilterValue, 2, 67, 0, // Skip to: 35874 |
10074 | /* 35807 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10075 | /* 35810 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 35843 |
10076 | /* 35814 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10077 | /* 35817 */ MCD::OPC_FilterValueOrFail, 0, |
10078 | /* 35819 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10079 | /* 35822 */ MCD::OPC_FilterValueOrFail, 0, |
10080 | /* 35824 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10081 | /* 35827 */ MCD::OPC_FilterValueOrFail, 0, |
10082 | /* 35829 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35839 |
10083 | /* 35835 */ MCD::OPC_Decode, 163, 38, 123, // Opcode: VCMPSWSXiv, DecodeIdx: 123 |
10084 | /* 35839 */ MCD::OPC_Decode, 169, 38, 124, // Opcode: VCMPSWSXivm, DecodeIdx: 124 |
10085 | /* 35843 */ MCD::OPC_FilterValueOrFail, 1, |
10086 | /* 35845 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10087 | /* 35848 */ MCD::OPC_FilterValueOrFail, 0, |
10088 | /* 35850 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10089 | /* 35853 */ MCD::OPC_FilterValueOrFail, 0, |
10090 | /* 35855 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10091 | /* 35858 */ MCD::OPC_FilterValueOrFail, 0, |
10092 | /* 35860 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35870 |
10093 | /* 35866 */ MCD::OPC_Decode, 175, 38, 125, // Opcode: VCMPSWSXrv, DecodeIdx: 125 |
10094 | /* 35870 */ MCD::OPC_Decode, 181, 38, 126, // Opcode: VCMPSWSXrvm, DecodeIdx: 126 |
10095 | /* 35874 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 35902 |
10096 | /* 35878 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10097 | /* 35881 */ MCD::OPC_FilterValueOrFail, 0, |
10098 | /* 35883 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10099 | /* 35886 */ MCD::OPC_FilterValueOrFail, 0, |
10100 | /* 35888 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35898 |
10101 | /* 35894 */ MCD::OPC_Decode, 178, 10, 121, // Opcode: PVCMPSLOvv, DecodeIdx: 121 |
10102 | /* 35898 */ MCD::OPC_Decode, 184, 10, 122, // Opcode: PVCMPSLOvvm, DecodeIdx: 122 |
10103 | /* 35902 */ MCD::OPC_FilterValueOrFail, 6, |
10104 | /* 35904 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10105 | /* 35907 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 35940 |
10106 | /* 35911 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10107 | /* 35914 */ MCD::OPC_FilterValueOrFail, 0, |
10108 | /* 35916 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10109 | /* 35919 */ MCD::OPC_FilterValueOrFail, 0, |
10110 | /* 35921 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10111 | /* 35924 */ MCD::OPC_FilterValueOrFail, 0, |
10112 | /* 35926 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35936 |
10113 | /* 35932 */ MCD::OPC_Decode, 154, 10, 123, // Opcode: PVCMPSLOiv, DecodeIdx: 123 |
10114 | /* 35936 */ MCD::OPC_Decode, 160, 10, 124, // Opcode: PVCMPSLOivm, DecodeIdx: 124 |
10115 | /* 35940 */ MCD::OPC_FilterValueOrFail, 1, |
10116 | /* 35942 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10117 | /* 35945 */ MCD::OPC_FilterValueOrFail, 0, |
10118 | /* 35947 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10119 | /* 35950 */ MCD::OPC_FilterValueOrFail, 0, |
10120 | /* 35952 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10121 | /* 35955 */ MCD::OPC_FilterValueOrFail, 0, |
10122 | /* 35957 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 35967 |
10123 | /* 35963 */ MCD::OPC_Decode, 166, 10, 125, // Opcode: PVCMPSLOrv, DecodeIdx: 125 |
10124 | /* 35967 */ MCD::OPC_Decode, 172, 10, 126, // Opcode: PVCMPSLOrvm, DecodeIdx: 126 |
10125 | /* 35971 */ MCD::OPC_FilterValue, 245, 3, 203, 0, // Skip to: 36179 |
10126 | /* 35976 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10127 | /* 35979 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 36007 |
10128 | /* 35983 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10129 | /* 35986 */ MCD::OPC_FilterValueOrFail, 0, |
10130 | /* 35988 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10131 | /* 35991 */ MCD::OPC_FilterValueOrFail, 0, |
10132 | /* 35993 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36003 |
10133 | /* 35999 */ MCD::OPC_Decode, 214, 10, 121, // Opcode: PVCMPSUPvv, DecodeIdx: 121 |
10134 | /* 36003 */ MCD::OPC_Decode, 220, 10, 122, // Opcode: PVCMPSUPvvm, DecodeIdx: 122 |
10135 | /* 36007 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 36079 |
10136 | /* 36011 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10137 | /* 36014 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 36047 |
10138 | /* 36018 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10139 | /* 36021 */ MCD::OPC_FilterValueOrFail, 0, |
10140 | /* 36023 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10141 | /* 36026 */ MCD::OPC_FilterValueOrFail, 0, |
10142 | /* 36028 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10143 | /* 36031 */ MCD::OPC_FilterValueOrFail, 0, |
10144 | /* 36033 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36043 |
10145 | /* 36039 */ MCD::OPC_Decode, 190, 10, 123, // Opcode: PVCMPSUPiv, DecodeIdx: 123 |
10146 | /* 36043 */ MCD::OPC_Decode, 196, 10, 124, // Opcode: PVCMPSUPivm, DecodeIdx: 124 |
10147 | /* 36047 */ MCD::OPC_FilterValueOrFail, 1, |
10148 | /* 36049 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10149 | /* 36052 */ MCD::OPC_FilterValueOrFail, 0, |
10150 | /* 36054 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10151 | /* 36057 */ MCD::OPC_FilterValueOrFail, 0, |
10152 | /* 36059 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10153 | /* 36062 */ MCD::OPC_FilterValueOrFail, 0, |
10154 | /* 36064 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36074 |
10155 | /* 36070 */ MCD::OPC_Decode, 202, 10, 127, // Opcode: PVCMPSUPrv, DecodeIdx: 127 |
10156 | /* 36074 */ MCD::OPC_Decode, 208, 10, 128, 1, // Opcode: PVCMPSUPrvm, DecodeIdx: 128 |
10157 | /* 36079 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 36108 |
10158 | /* 36083 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10159 | /* 36086 */ MCD::OPC_FilterValueOrFail, 0, |
10160 | /* 36088 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10161 | /* 36091 */ MCD::OPC_FilterValueOrFail, 0, |
10162 | /* 36093 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36103 |
10163 | /* 36099 */ MCD::OPC_Decode, 250, 10, 121, // Opcode: PVCMPSvv, DecodeIdx: 121 |
10164 | /* 36103 */ MCD::OPC_Decode, 128, 11, 129, 1, // Opcode: PVCMPSvvm, DecodeIdx: 129 |
10165 | /* 36108 */ MCD::OPC_FilterValueOrFail, 6, |
10166 | /* 36110 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10167 | /* 36113 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 36147 |
10168 | /* 36117 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10169 | /* 36120 */ MCD::OPC_FilterValueOrFail, 0, |
10170 | /* 36122 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10171 | /* 36125 */ MCD::OPC_FilterValueOrFail, 0, |
10172 | /* 36127 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10173 | /* 36130 */ MCD::OPC_FilterValueOrFail, 0, |
10174 | /* 36132 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36142 |
10175 | /* 36138 */ MCD::OPC_Decode, 226, 10, 123, // Opcode: PVCMPSiv, DecodeIdx: 123 |
10176 | /* 36142 */ MCD::OPC_Decode, 232, 10, 130, 1, // Opcode: PVCMPSivm, DecodeIdx: 130 |
10177 | /* 36147 */ MCD::OPC_FilterValueOrFail, 1, |
10178 | /* 36149 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10179 | /* 36152 */ MCD::OPC_FilterValueOrFail, 0, |
10180 | /* 36154 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10181 | /* 36157 */ MCD::OPC_FilterValueOrFail, 0, |
10182 | /* 36159 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10183 | /* 36162 */ MCD::OPC_FilterValueOrFail, 0, |
10184 | /* 36164 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36174 |
10185 | /* 36170 */ MCD::OPC_Decode, 238, 10, 127, // Opcode: PVCMPSrv, DecodeIdx: 127 |
10186 | /* 36174 */ MCD::OPC_Decode, 244, 10, 131, 1, // Opcode: PVCMPSrvm, DecodeIdx: 131 |
10187 | /* 36179 */ MCD::OPC_FilterValue, 246, 3, 166, 0, // Skip to: 36350 |
10188 | /* 36184 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10189 | /* 36187 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 36215 |
10190 | /* 36191 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10191 | /* 36194 */ MCD::OPC_FilterValueOrFail, 0, |
10192 | /* 36196 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10193 | /* 36199 */ MCD::OPC_FilterValueOrFail, 0, |
10194 | /* 36201 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36211 |
10195 | /* 36207 */ MCD::OPC_Decode, 231, 40, 121, // Opcode: VDIVSLvv, DecodeIdx: 121 |
10196 | /* 36211 */ MCD::OPC_Decode, 237, 40, 122, // Opcode: VDIVSLvvm, DecodeIdx: 122 |
10197 | /* 36215 */ MCD::OPC_FilterValue, 1, 61, 0, // Skip to: 36280 |
10198 | /* 36219 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10199 | /* 36222 */ MCD::OPC_FilterValue, 0, 26, 0, // Skip to: 36252 |
10200 | /* 36226 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10201 | /* 36229 */ MCD::OPC_FilterValueOrFail, 0, |
10202 | /* 36231 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10203 | /* 36234 */ MCD::OPC_FilterValueOrFail, 0, |
10204 | /* 36236 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 36247 |
10205 | /* 36242 */ MCD::OPC_Decode, 207, 40, 214, 1, // Opcode: VDIVSLvi, DecodeIdx: 214 |
10206 | /* 36247 */ MCD::OPC_Decode, 213, 40, 231, 1, // Opcode: VDIVSLvim, DecodeIdx: 231 |
10207 | /* 36252 */ MCD::OPC_FilterValueOrFail, 1, |
10208 | /* 36254 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
10209 | /* 36257 */ MCD::OPC_FilterValueOrFail, 0, |
10210 | /* 36259 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10211 | /* 36262 */ MCD::OPC_FilterValueOrFail, 0, |
10212 | /* 36264 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 36275 |
10213 | /* 36270 */ MCD::OPC_Decode, 219, 40, 215, 1, // Opcode: VDIVSLvr, DecodeIdx: 215 |
10214 | /* 36275 */ MCD::OPC_Decode, 225, 40, 232, 1, // Opcode: VDIVSLvrm, DecodeIdx: 232 |
10215 | /* 36280 */ MCD::OPC_FilterValueOrFail, 2, |
10216 | /* 36282 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10217 | /* 36285 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 36318 |
10218 | /* 36289 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10219 | /* 36292 */ MCD::OPC_FilterValueOrFail, 0, |
10220 | /* 36294 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10221 | /* 36297 */ MCD::OPC_FilterValueOrFail, 0, |
10222 | /* 36299 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10223 | /* 36302 */ MCD::OPC_FilterValueOrFail, 0, |
10224 | /* 36304 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36314 |
10225 | /* 36310 */ MCD::OPC_Decode, 183, 40, 123, // Opcode: VDIVSLiv, DecodeIdx: 123 |
10226 | /* 36314 */ MCD::OPC_Decode, 189, 40, 124, // Opcode: VDIVSLivm, DecodeIdx: 124 |
10227 | /* 36318 */ MCD::OPC_FilterValueOrFail, 1, |
10228 | /* 36320 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10229 | /* 36323 */ MCD::OPC_FilterValueOrFail, 0, |
10230 | /* 36325 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10231 | /* 36328 */ MCD::OPC_FilterValueOrFail, 0, |
10232 | /* 36330 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10233 | /* 36333 */ MCD::OPC_FilterValueOrFail, 0, |
10234 | /* 36335 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36345 |
10235 | /* 36341 */ MCD::OPC_Decode, 195, 40, 127, // Opcode: VDIVSLrv, DecodeIdx: 127 |
10236 | /* 36345 */ MCD::OPC_Decode, 201, 40, 128, 1, // Opcode: VDIVSLrvm, DecodeIdx: 128 |
10237 | /* 36350 */ MCD::OPC_FilterValue, 248, 3, 201, 0, // Skip to: 36556 |
10238 | /* 36355 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10239 | /* 36358 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 36386 |
10240 | /* 36362 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10241 | /* 36365 */ MCD::OPC_FilterValueOrFail, 0, |
10242 | /* 36367 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10243 | /* 36370 */ MCD::OPC_FilterValueOrFail, 0, |
10244 | /* 36372 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36382 |
10245 | /* 36378 */ MCD::OPC_Decode, 243, 43, 121, // Opcode: VFCMPDvv, DecodeIdx: 121 |
10246 | /* 36382 */ MCD::OPC_Decode, 249, 43, 122, // Opcode: VFCMPDvvm, DecodeIdx: 122 |
10247 | /* 36386 */ MCD::OPC_FilterValue, 2, 68, 0, // Skip to: 36458 |
10248 | /* 36390 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10249 | /* 36393 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 36426 |
10250 | /* 36397 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10251 | /* 36400 */ MCD::OPC_FilterValueOrFail, 0, |
10252 | /* 36402 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10253 | /* 36405 */ MCD::OPC_FilterValueOrFail, 0, |
10254 | /* 36407 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10255 | /* 36410 */ MCD::OPC_FilterValueOrFail, 0, |
10256 | /* 36412 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36422 |
10257 | /* 36418 */ MCD::OPC_Decode, 219, 43, 123, // Opcode: VFCMPDiv, DecodeIdx: 123 |
10258 | /* 36422 */ MCD::OPC_Decode, 225, 43, 124, // Opcode: VFCMPDivm, DecodeIdx: 124 |
10259 | /* 36426 */ MCD::OPC_FilterValueOrFail, 1, |
10260 | /* 36428 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10261 | /* 36431 */ MCD::OPC_FilterValueOrFail, 0, |
10262 | /* 36433 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10263 | /* 36436 */ MCD::OPC_FilterValueOrFail, 0, |
10264 | /* 36438 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10265 | /* 36441 */ MCD::OPC_FilterValueOrFail, 0, |
10266 | /* 36443 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36453 |
10267 | /* 36449 */ MCD::OPC_Decode, 231, 43, 127, // Opcode: VFCMPDrv, DecodeIdx: 127 |
10268 | /* 36453 */ MCD::OPC_Decode, 237, 43, 128, 1, // Opcode: VFCMPDrvm, DecodeIdx: 128 |
10269 | /* 36458 */ MCD::OPC_FilterValue, 4, 24, 0, // Skip to: 36486 |
10270 | /* 36462 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10271 | /* 36465 */ MCD::OPC_FilterValueOrFail, 0, |
10272 | /* 36467 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10273 | /* 36470 */ MCD::OPC_FilterValueOrFail, 0, |
10274 | /* 36472 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36482 |
10275 | /* 36478 */ MCD::OPC_Decode, 170, 14, 121, // Opcode: PVFCMPLOvv, DecodeIdx: 121 |
10276 | /* 36482 */ MCD::OPC_Decode, 176, 14, 122, // Opcode: PVFCMPLOvvm, DecodeIdx: 122 |
10277 | /* 36486 */ MCD::OPC_FilterValueOrFail, 6, |
10278 | /* 36488 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10279 | /* 36491 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 36524 |
10280 | /* 36495 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10281 | /* 36498 */ MCD::OPC_FilterValueOrFail, 0, |
10282 | /* 36500 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10283 | /* 36503 */ MCD::OPC_FilterValueOrFail, 0, |
10284 | /* 36505 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10285 | /* 36508 */ MCD::OPC_FilterValueOrFail, 0, |
10286 | /* 36510 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36520 |
10287 | /* 36516 */ MCD::OPC_Decode, 146, 14, 123, // Opcode: PVFCMPLOiv, DecodeIdx: 123 |
10288 | /* 36520 */ MCD::OPC_Decode, 152, 14, 124, // Opcode: PVFCMPLOivm, DecodeIdx: 124 |
10289 | /* 36524 */ MCD::OPC_FilterValueOrFail, 1, |
10290 | /* 36526 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10291 | /* 36529 */ MCD::OPC_FilterValueOrFail, 0, |
10292 | /* 36531 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10293 | /* 36534 */ MCD::OPC_FilterValueOrFail, 0, |
10294 | /* 36536 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10295 | /* 36539 */ MCD::OPC_FilterValueOrFail, 0, |
10296 | /* 36541 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36551 |
10297 | /* 36547 */ MCD::OPC_Decode, 158, 14, 127, // Opcode: PVFCMPLOrv, DecodeIdx: 127 |
10298 | /* 36551 */ MCD::OPC_Decode, 164, 14, 128, 1, // Opcode: PVFCMPLOrvm, DecodeIdx: 128 |
10299 | /* 36556 */ MCD::OPC_FilterValue, 249, 3, 204, 0, // Skip to: 36765 |
10300 | /* 36561 */ MCD::OPC_ExtractField, 52, 3, // Inst{54-52} ... |
10301 | /* 36564 */ MCD::OPC_FilterValue, 0, 24, 0, // Skip to: 36592 |
10302 | /* 36568 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10303 | /* 36571 */ MCD::OPC_FilterValueOrFail, 0, |
10304 | /* 36573 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10305 | /* 36576 */ MCD::OPC_FilterValueOrFail, 0, |
10306 | /* 36578 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36588 |
10307 | /* 36584 */ MCD::OPC_Decode, 206, 14, 121, // Opcode: PVFCMPUPvv, DecodeIdx: 121 |
10308 | /* 36588 */ MCD::OPC_Decode, 212, 14, 122, // Opcode: PVFCMPUPvvm, DecodeIdx: 122 |
10309 | /* 36592 */ MCD::OPC_FilterValue, 2, 69, 0, // Skip to: 36665 |
10310 | /* 36596 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10311 | /* 36599 */ MCD::OPC_FilterValue, 0, 29, 0, // Skip to: 36632 |
10312 | /* 36603 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10313 | /* 36606 */ MCD::OPC_FilterValueOrFail, 0, |
10314 | /* 36608 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10315 | /* 36611 */ MCD::OPC_FilterValueOrFail, 0, |
10316 | /* 36613 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10317 | /* 36616 */ MCD::OPC_FilterValueOrFail, 0, |
10318 | /* 36618 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36628 |
10319 | /* 36624 */ MCD::OPC_Decode, 182, 14, 123, // Opcode: PVFCMPUPiv, DecodeIdx: 123 |
10320 | /* 36628 */ MCD::OPC_Decode, 188, 14, 124, // Opcode: PVFCMPUPivm, DecodeIdx: 124 |
10321 | /* 36632 */ MCD::OPC_FilterValueOrFail, 1, |
10322 | /* 36634 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10323 | /* 36637 */ MCD::OPC_FilterValueOrFail, 0, |
10324 | /* 36639 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10325 | /* 36642 */ MCD::OPC_FilterValueOrFail, 0, |
10326 | /* 36644 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10327 | /* 36647 */ MCD::OPC_FilterValueOrFail, 0, |
10328 | /* 36649 */ MCD::OPC_CheckField, 48, 4, 0, 5, 0, // Skip to: 36660 |
10329 | /* 36655 */ MCD::OPC_Decode, 194, 14, 210, 1, // Opcode: PVFCMPUPrv, DecodeIdx: 210 |
10330 | /* 36660 */ MCD::OPC_Decode, 200, 14, 211, 1, // Opcode: PVFCMPUPrvm, DecodeIdx: 211 |
10331 | /* 36665 */ MCD::OPC_FilterValue, 4, 25, 0, // Skip to: 36694 |
10332 | /* 36669 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10333 | /* 36672 */ MCD::OPC_FilterValueOrFail, 0, |
10334 | /* 36674 */ MCD::OPC_ExtractField, 32, 16, // Inst{47-32} ... |
10335 | /* 36677 */ MCD::OPC_FilterValueOrFail, 0, |
10336 | /* 36679 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36689 |
10337 | /* 36685 */ MCD::OPC_Decode, 242, 14, 121, // Opcode: PVFCMPvv, DecodeIdx: 121 |
10338 | /* 36689 */ MCD::OPC_Decode, 248, 14, 129, 1, // Opcode: PVFCMPvvm, DecodeIdx: 129 |
10339 | /* 36694 */ MCD::OPC_FilterValueOrFail, 6, |
10340 | /* 36696 */ MCD::OPC_ExtractField, 47, 1, // Inst{47} ... |
10341 | /* 36699 */ MCD::OPC_FilterValue, 0, 30, 0, // Skip to: 36733 |
10342 | /* 36703 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10343 | /* 36706 */ MCD::OPC_FilterValueOrFail, 0, |
10344 | /* 36708 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10345 | /* 36711 */ MCD::OPC_FilterValueOrFail, 0, |
10346 | /* 36713 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10347 | /* 36716 */ MCD::OPC_FilterValueOrFail, 0, |
10348 | /* 36718 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36728 |
10349 | /* 36724 */ MCD::OPC_Decode, 218, 14, 123, // Opcode: PVFCMPiv, DecodeIdx: 123 |
10350 | /* 36728 */ MCD::OPC_Decode, 224, 14, 130, 1, // Opcode: PVFCMPivm, DecodeIdx: 130 |
10351 | /* 36733 */ MCD::OPC_FilterValueOrFail, 1, |
10352 | /* 36735 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... |
10353 | /* 36738 */ MCD::OPC_FilterValueOrFail, 0, |
10354 | /* 36740 */ MCD::OPC_ExtractField, 16, 8, // Inst{23-16} ... |
10355 | /* 36743 */ MCD::OPC_FilterValueOrFail, 0, |
10356 | /* 36745 */ MCD::OPC_ExtractField, 32, 8, // Inst{39-32} ... |
10357 | /* 36748 */ MCD::OPC_FilterValueOrFail, 0, |
10358 | /* 36750 */ MCD::OPC_CheckField, 48, 4, 0, 4, 0, // Skip to: 36760 |
10359 | /* 36756 */ MCD::OPC_Decode, 230, 14, 127, // Opcode: PVFCMPrv, DecodeIdx: 127 |
10360 | /* 36760 */ MCD::OPC_Decode, 236, 14, 131, 1, // Opcode: PVFCMPrvm, DecodeIdx: 131 |
10361 | /* 36765 */ MCD::OPC_FilterValue, 252, 3, 35, 0, // Skip to: 36805 |
10362 | /* 36770 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
10363 | /* 36773 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 36790 |
10364 | /* 36777 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10365 | /* 36781 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10366 | /* 36785 */ MCD::OPC_Decode, 159, 46, 138, 2, // Opcode: VFISMDvvi, DecodeIdx: 266 |
10367 | /* 36790 */ MCD::OPC_FilterValueOrFail, 1, |
10368 | /* 36792 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10369 | /* 36796 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10370 | /* 36800 */ MCD::OPC_Decode, 165, 46, 209, 1, // Opcode: VFISMDvvr, DecodeIdx: 209 |
10371 | /* 36805 */ MCD::OPC_FilterValue, 253, 3, 35, 0, // Skip to: 36845 |
10372 | /* 36810 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
10373 | /* 36813 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 36830 |
10374 | /* 36817 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10375 | /* 36821 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10376 | /* 36825 */ MCD::OPC_Decode, 171, 46, 138, 2, // Opcode: VFISMSvvi, DecodeIdx: 266 |
10377 | /* 36830 */ MCD::OPC_FilterValueOrFail, 1, |
10378 | /* 36832 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10379 | /* 36836 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10380 | /* 36840 */ MCD::OPC_Decode, 177, 46, 139, 2, // Opcode: VFISMSvvr, DecodeIdx: 267 |
10381 | /* 36845 */ MCD::OPC_FilterValue, 254, 3, 35, 0, // Skip to: 36885 |
10382 | /* 36850 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
10383 | /* 36853 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 36870 |
10384 | /* 36857 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10385 | /* 36861 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10386 | /* 36865 */ MCD::OPC_Decode, 239, 45, 138, 2, // Opcode: VFIMSDvvi, DecodeIdx: 266 |
10387 | /* 36870 */ MCD::OPC_FilterValueOrFail, 1, |
10388 | /* 36872 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10389 | /* 36876 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10390 | /* 36880 */ MCD::OPC_Decode, 245, 45, 209, 1, // Opcode: VFIMSDvvr, DecodeIdx: 209 |
10391 | /* 36885 */ MCD::OPC_FilterValueOrFail, 255, 3, |
10392 | /* 36888 */ MCD::OPC_ExtractField, 47, 8, // Inst{54-47} ... |
10393 | /* 36891 */ MCD::OPC_FilterValue, 0, 13, 0, // Skip to: 36908 |
10394 | /* 36895 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10395 | /* 36899 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10396 | /* 36903 */ MCD::OPC_Decode, 251, 45, 138, 2, // Opcode: VFIMSSvvi, DecodeIdx: 266 |
10397 | /* 36908 */ MCD::OPC_FilterValueOrFail, 1, |
10398 | /* 36910 */ MCD::OPC_CheckFieldOrFail, 32, 8, 0, |
10399 | /* 36914 */ MCD::OPC_CheckFieldOrFail, 0, 8, 0, |
10400 | /* 36918 */ MCD::OPC_Decode, 129, 46, 139, 2, // Opcode: VFIMSSvvr, DecodeIdx: 267 |
10401 | /* 36923 */ MCD::OPC_Fail, |
10402 | 0 |
10403 | }; |
10404 | |
10405 | // Handling 268 cases. |
10406 | template <typename InsnType> |
10407 | static DecodeStatus decodeToMCInst(unsigned Idx, DecodeStatus S, InsnType insn, MCInst &MI, uint64_t Address, const MCDisassembler *Decoder, bool &DecodeComplete) { |
10408 | DecodeComplete = true; |
10409 | using TmpType = std::conditional_t<std::is_integral<InsnType>::value, InsnType, uint64_t>; |
10410 | TmpType tmp; |
10411 | switch (Idx) { |
10412 | default: llvm_unreachable("Invalid index!" ); |
10413 | case 0: |
10414 | if (!Check(S, DecodeLoadI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10415 | return S; |
10416 | case 1: |
10417 | if (!Check(S, DecodeLoadF32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10418 | return S; |
10419 | case 2: |
10420 | if (!Check(S, DecodeLoadI32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10421 | return S; |
10422 | case 3: |
10423 | if (!Check(S, DecodeCall(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10424 | return S; |
10425 | case 4: |
10426 | if (!Check(S, DecodeASX(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10427 | return S; |
10428 | case 5: |
10429 | tmp = fieldFromInstruction(insn, 48, 7); |
10430 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10431 | tmp = fieldFromInstruction(insn, 40, 7); |
10432 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10433 | return S; |
10434 | case 6: |
10435 | tmp = fieldFromInstruction(insn, 48, 7); |
10436 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10437 | tmp = fieldFromInstruction(insn, 40, 7); |
10438 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10439 | return S; |
10440 | case 7: |
10441 | tmp = fieldFromInstruction(insn, 48, 7); |
10442 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10443 | tmp = fieldFromInstruction(insn, 40, 7); |
10444 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10445 | return S; |
10446 | case 8: |
10447 | if (!Check(S, DecodeStoreI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10448 | return S; |
10449 | case 9: |
10450 | if (!Check(S, DecodeStoreF32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10451 | return S; |
10452 | case 10: |
10453 | if (!Check(S, DecodeStoreI32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10454 | return S; |
10455 | case 11: |
10456 | tmp = fieldFromInstruction(insn, 0, 32); |
10457 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10458 | return S; |
10459 | case 12: |
10460 | tmp = fieldFromInstruction(insn, 48, 4); |
10461 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10462 | tmp = fieldFromInstruction(insn, 40, 7); |
10463 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10464 | tmp = fieldFromInstruction(insn, 32, 7); |
10465 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10466 | tmp = fieldFromInstruction(insn, 0, 32); |
10467 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10468 | return S; |
10469 | case 13: |
10470 | tmp = fieldFromInstruction(insn, 48, 4); |
10471 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10472 | tmp = fieldFromInstruction(insn, 40, 7); |
10473 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10474 | tmp = fieldFromInstruction(insn, 32, 7); |
10475 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10476 | tmp = fieldFromInstruction(insn, 0, 32); |
10477 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10478 | return S; |
10479 | case 14: |
10480 | tmp = fieldFromInstruction(insn, 48, 4); |
10481 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10482 | tmp = fieldFromInstruction(insn, 40, 7); |
10483 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10484 | tmp = fieldFromInstruction(insn, 32, 7); |
10485 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10486 | tmp = fieldFromInstruction(insn, 0, 32); |
10487 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10488 | return S; |
10489 | case 15: |
10490 | tmp = fieldFromInstruction(insn, 48, 4); |
10491 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10492 | tmp = fieldFromInstruction(insn, 40, 7); |
10493 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10494 | tmp = fieldFromInstruction(insn, 32, 7); |
10495 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10496 | tmp = fieldFromInstruction(insn, 0, 32); |
10497 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10498 | return S; |
10499 | case 16: |
10500 | tmp = fieldFromInstruction(insn, 48, 4); |
10501 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10502 | tmp = fieldFromInstruction(insn, 40, 7); |
10503 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10504 | tmp = fieldFromInstruction(insn, 32, 7); |
10505 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10506 | tmp = fieldFromInstruction(insn, 0, 32); |
10507 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10508 | return S; |
10509 | case 17: |
10510 | tmp = fieldFromInstruction(insn, 48, 4); |
10511 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10512 | tmp = fieldFromInstruction(insn, 40, 7); |
10513 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10514 | tmp = fieldFromInstruction(insn, 32, 7); |
10515 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10516 | tmp = fieldFromInstruction(insn, 0, 32); |
10517 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10518 | return S; |
10519 | case 18: |
10520 | tmp = fieldFromInstruction(insn, 48, 4); |
10521 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10522 | tmp = fieldFromInstruction(insn, 40, 7); |
10523 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10524 | tmp = fieldFromInstruction(insn, 32, 7); |
10525 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10526 | tmp = fieldFromInstruction(insn, 0, 32); |
10527 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10528 | return S; |
10529 | case 19: |
10530 | tmp = fieldFromInstruction(insn, 48, 4); |
10531 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10532 | tmp = fieldFromInstruction(insn, 40, 7); |
10533 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10534 | tmp = fieldFromInstruction(insn, 32, 7); |
10535 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10536 | tmp = fieldFromInstruction(insn, 0, 32); |
10537 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10538 | return S; |
10539 | case 20: |
10540 | tmp = fieldFromInstruction(insn, 48, 4); |
10541 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10542 | tmp = fieldFromInstruction(insn, 40, 7); |
10543 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10544 | tmp = fieldFromInstruction(insn, 32, 7); |
10545 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10546 | tmp = fieldFromInstruction(insn, 0, 32); |
10547 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10548 | return S; |
10549 | case 21: |
10550 | tmp = fieldFromInstruction(insn, 48, 4); |
10551 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10552 | tmp = fieldFromInstruction(insn, 40, 7); |
10553 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10554 | tmp = fieldFromInstruction(insn, 32, 7); |
10555 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10556 | tmp = fieldFromInstruction(insn, 0, 32); |
10557 | if (!Check(S, DecodeSIMM32(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10558 | return S; |
10559 | case 22: |
10560 | if (!Check(S, DecodeBranchConditionAlways(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10561 | return S; |
10562 | case 23: |
10563 | if (!Check(S, DecodeBranchCondition(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10564 | return S; |
10565 | case 24: |
10566 | tmp = fieldFromInstruction(insn, 48, 7); |
10567 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10568 | tmp = fieldFromInstruction(insn, 40, 7); |
10569 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10570 | return S; |
10571 | case 25: |
10572 | tmp = fieldFromInstruction(insn, 48, 7); |
10573 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10574 | tmp = fieldFromInstruction(insn, 40, 7); |
10575 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10576 | return S; |
10577 | case 26: |
10578 | tmp = fieldFromInstruction(insn, 48, 7); |
10579 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10580 | tmp = fieldFromInstruction(insn, 40, 7); |
10581 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10582 | return S; |
10583 | case 27: |
10584 | tmp = fieldFromInstruction(insn, 48, 2); |
10585 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10586 | return S; |
10587 | case 28: |
10588 | tmp = fieldFromInstruction(insn, 40, 3); |
10589 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10590 | return S; |
10591 | case 29: |
10592 | return S; |
10593 | case 30: |
10594 | if (!Check(S, DecodeLoadASI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10595 | return S; |
10596 | case 31: |
10597 | tmp = fieldFromInstruction(insn, 48, 7); |
10598 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10599 | tmp = fieldFromInstruction(insn, 40, 7); |
10600 | if (!Check(S, DecodeMISCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10601 | return S; |
10602 | case 32: |
10603 | tmp = fieldFromInstruction(insn, 48, 7); |
10604 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10605 | return S; |
10606 | case 33: |
10607 | tmp = fieldFromInstruction(insn, 48, 7); |
10608 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10609 | return S; |
10610 | case 34: |
10611 | tmp = fieldFromInstruction(insn, 48, 7); |
10612 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10613 | tmp = fieldFromInstruction(insn, 32, 7); |
10614 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10615 | tmp = fieldFromInstruction(insn, 40, 7); |
10616 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10617 | return S; |
10618 | case 35: |
10619 | tmp = fieldFromInstruction(insn, 48, 7); |
10620 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10621 | tmp = fieldFromInstruction(insn, 32, 7); |
10622 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10623 | tmp = fieldFromInstruction(insn, 40, 7); |
10624 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10625 | return S; |
10626 | case 36: |
10627 | tmp = fieldFromInstruction(insn, 48, 7); |
10628 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10629 | tmp = fieldFromInstruction(insn, 40, 7); |
10630 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10631 | return S; |
10632 | case 37: |
10633 | tmp = fieldFromInstruction(insn, 48, 7); |
10634 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10635 | tmp = fieldFromInstruction(insn, 40, 7); |
10636 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10637 | return S; |
10638 | case 38: |
10639 | tmp = fieldFromInstruction(insn, 48, 7); |
10640 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10641 | tmp = fieldFromInstruction(insn, 40, 7); |
10642 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10643 | return S; |
10644 | case 39: |
10645 | if (!Check(S, DecodeStoreASI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10646 | return S; |
10647 | case 40: |
10648 | tmp = fieldFromInstruction(insn, 48, 7); |
10649 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10650 | tmp = fieldFromInstruction(insn, 32, 7); |
10651 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10652 | return S; |
10653 | case 41: |
10654 | tmp = fieldFromInstruction(insn, 48, 7); |
10655 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10656 | tmp = fieldFromInstruction(insn, 32, 7); |
10657 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10658 | return S; |
10659 | case 42: |
10660 | tmp = fieldFromInstruction(insn, 40, 7); |
10661 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10662 | return S; |
10663 | case 43: |
10664 | tmp = fieldFromInstruction(insn, 48, 7); |
10665 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10666 | tmp = fieldFromInstruction(insn, 0, 4); |
10667 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10668 | tmp = fieldFromInstruction(insn, 40, 7); |
10669 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10670 | tmp = fieldFromInstruction(insn, 32, 7); |
10671 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10672 | tmp = fieldFromInstruction(insn, 48, 7); |
10673 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10674 | return S; |
10675 | case 44: |
10676 | tmp = fieldFromInstruction(insn, 48, 7); |
10677 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10678 | tmp = fieldFromInstruction(insn, 0, 4); |
10679 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10680 | tmp = fieldFromInstruction(insn, 40, 7); |
10681 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10682 | tmp = fieldFromInstruction(insn, 32, 7); |
10683 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10684 | tmp = fieldFromInstruction(insn, 48, 7); |
10685 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10686 | return S; |
10687 | case 45: |
10688 | tmp = fieldFromInstruction(insn, 48, 7); |
10689 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10690 | tmp = fieldFromInstruction(insn, 0, 4); |
10691 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10692 | tmp = fieldFromInstruction(insn, 40, 7); |
10693 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10694 | tmp = fieldFromInstruction(insn, 32, 7); |
10695 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10696 | tmp = fieldFromInstruction(insn, 48, 7); |
10697 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10698 | return S; |
10699 | case 46: |
10700 | tmp = fieldFromInstruction(insn, 48, 7); |
10701 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10702 | tmp = fieldFromInstruction(insn, 0, 4); |
10703 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10704 | tmp = fieldFromInstruction(insn, 40, 7); |
10705 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10706 | tmp = fieldFromInstruction(insn, 32, 7); |
10707 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10708 | tmp = fieldFromInstruction(insn, 48, 7); |
10709 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10710 | return S; |
10711 | case 47: |
10712 | tmp = fieldFromInstruction(insn, 48, 7); |
10713 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10714 | tmp = fieldFromInstruction(insn, 0, 4); |
10715 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10716 | tmp = fieldFromInstruction(insn, 40, 7); |
10717 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10718 | tmp = fieldFromInstruction(insn, 32, 7); |
10719 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10720 | tmp = fieldFromInstruction(insn, 48, 7); |
10721 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10722 | return S; |
10723 | case 48: |
10724 | tmp = fieldFromInstruction(insn, 48, 7); |
10725 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10726 | tmp = fieldFromInstruction(insn, 0, 4); |
10727 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10728 | tmp = fieldFromInstruction(insn, 40, 7); |
10729 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10730 | tmp = fieldFromInstruction(insn, 32, 7); |
10731 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10732 | tmp = fieldFromInstruction(insn, 48, 7); |
10733 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10734 | return S; |
10735 | case 49: |
10736 | tmp = fieldFromInstruction(insn, 48, 7); |
10737 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10738 | tmp = fieldFromInstruction(insn, 0, 4); |
10739 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10740 | tmp = fieldFromInstruction(insn, 40, 7); |
10741 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10742 | tmp = fieldFromInstruction(insn, 32, 7); |
10743 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10744 | tmp = fieldFromInstruction(insn, 48, 7); |
10745 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10746 | return S; |
10747 | case 50: |
10748 | tmp = fieldFromInstruction(insn, 48, 7); |
10749 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10750 | tmp = fieldFromInstruction(insn, 0, 4); |
10751 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10752 | tmp = fieldFromInstruction(insn, 40, 7); |
10753 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10754 | tmp = fieldFromInstruction(insn, 32, 7); |
10755 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10756 | tmp = fieldFromInstruction(insn, 48, 7); |
10757 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10758 | return S; |
10759 | case 51: |
10760 | tmp = fieldFromInstruction(insn, 48, 7); |
10761 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10762 | tmp = fieldFromInstruction(insn, 40, 7); |
10763 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10764 | tmp = fieldFromInstruction(insn, 32, 7); |
10765 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10766 | return S; |
10767 | case 52: |
10768 | tmp = fieldFromInstruction(insn, 48, 7); |
10769 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10770 | tmp = fieldFromInstruction(insn, 40, 7); |
10771 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10772 | tmp = fieldFromInstruction(insn, 32, 7); |
10773 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10774 | return S; |
10775 | case 53: |
10776 | tmp = fieldFromInstruction(insn, 48, 7); |
10777 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10778 | tmp = fieldFromInstruction(insn, 40, 7); |
10779 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10780 | tmp = fieldFromInstruction(insn, 32, 7); |
10781 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10782 | return S; |
10783 | case 54: |
10784 | tmp = fieldFromInstruction(insn, 48, 7); |
10785 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10786 | tmp = fieldFromInstruction(insn, 40, 7); |
10787 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10788 | tmp = fieldFromInstruction(insn, 32, 7); |
10789 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10790 | return S; |
10791 | case 55: |
10792 | tmp = fieldFromInstruction(insn, 48, 7); |
10793 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10794 | tmp = fieldFromInstruction(insn, 40, 7); |
10795 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10796 | tmp = fieldFromInstruction(insn, 32, 7); |
10797 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10798 | return S; |
10799 | case 56: |
10800 | tmp = fieldFromInstruction(insn, 48, 7); |
10801 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10802 | tmp = fieldFromInstruction(insn, 40, 7); |
10803 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10804 | tmp = fieldFromInstruction(insn, 32, 7); |
10805 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10806 | return S; |
10807 | case 57: |
10808 | tmp = fieldFromInstruction(insn, 48, 7); |
10809 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10810 | tmp = fieldFromInstruction(insn, 40, 7); |
10811 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10812 | tmp = fieldFromInstruction(insn, 32, 7); |
10813 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10814 | return S; |
10815 | case 58: |
10816 | tmp = fieldFromInstruction(insn, 48, 7); |
10817 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10818 | tmp = fieldFromInstruction(insn, 40, 7); |
10819 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10820 | tmp = fieldFromInstruction(insn, 32, 7); |
10821 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10822 | return S; |
10823 | case 59: |
10824 | tmp = fieldFromInstruction(insn, 48, 7); |
10825 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10826 | tmp = fieldFromInstruction(insn, 40, 7); |
10827 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10828 | tmp = fieldFromInstruction(insn, 32, 7); |
10829 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10830 | tmp = fieldFromInstruction(insn, 48, 7); |
10831 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10832 | return S; |
10833 | case 60: |
10834 | tmp = fieldFromInstruction(insn, 48, 7); |
10835 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10836 | tmp = fieldFromInstruction(insn, 40, 7); |
10837 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10838 | tmp = fieldFromInstruction(insn, 32, 7); |
10839 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10840 | tmp = fieldFromInstruction(insn, 48, 7); |
10841 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10842 | return S; |
10843 | case 61: |
10844 | tmp = fieldFromInstruction(insn, 48, 7); |
10845 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10846 | tmp = fieldFromInstruction(insn, 40, 7); |
10847 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10848 | tmp = fieldFromInstruction(insn, 32, 7); |
10849 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10850 | tmp = fieldFromInstruction(insn, 48, 7); |
10851 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10852 | return S; |
10853 | case 62: |
10854 | tmp = fieldFromInstruction(insn, 48, 7); |
10855 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10856 | tmp = fieldFromInstruction(insn, 40, 7); |
10857 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10858 | tmp = fieldFromInstruction(insn, 32, 7); |
10859 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10860 | tmp = fieldFromInstruction(insn, 48, 7); |
10861 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10862 | return S; |
10863 | case 63: |
10864 | if (!Check(S, DecodeTS1AMI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10865 | return S; |
10866 | case 64: |
10867 | if (!Check(S, DecodeTS1AMI32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10868 | return S; |
10869 | case 65: |
10870 | tmp = fieldFromInstruction(insn, 48, 7); |
10871 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10872 | tmp = fieldFromInstruction(insn, 32, 7); |
10873 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10874 | tmp = fieldFromInstruction(insn, 40, 7); |
10875 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10876 | return S; |
10877 | case 66: |
10878 | tmp = fieldFromInstruction(insn, 48, 7); |
10879 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10880 | tmp = fieldFromInstruction(insn, 40, 7); |
10881 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10882 | tmp = fieldFromInstruction(insn, 32, 7); |
10883 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10884 | return S; |
10885 | case 67: |
10886 | tmp = fieldFromInstruction(insn, 48, 7); |
10887 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10888 | tmp = fieldFromInstruction(insn, 40, 7); |
10889 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10890 | tmp = fieldFromInstruction(insn, 32, 7); |
10891 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10892 | return S; |
10893 | case 68: |
10894 | tmp = fieldFromInstruction(insn, 48, 7); |
10895 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10896 | tmp = fieldFromInstruction(insn, 32, 7); |
10897 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10898 | tmp = fieldFromInstruction(insn, 40, 7); |
10899 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10900 | return S; |
10901 | case 69: |
10902 | tmp = fieldFromInstruction(insn, 48, 7); |
10903 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10904 | tmp = fieldFromInstruction(insn, 40, 7); |
10905 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10906 | tmp = fieldFromInstruction(insn, 32, 7); |
10907 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10908 | return S; |
10909 | case 70: |
10910 | tmp = fieldFromInstruction(insn, 48, 7); |
10911 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10912 | tmp = fieldFromInstruction(insn, 32, 4); |
10913 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10914 | tmp = fieldFromInstruction(insn, 40, 7); |
10915 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10916 | return S; |
10917 | case 71: |
10918 | tmp = fieldFromInstruction(insn, 48, 7); |
10919 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10920 | tmp = fieldFromInstruction(insn, 32, 4); |
10921 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10922 | tmp = fieldFromInstruction(insn, 40, 7); |
10923 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10924 | return S; |
10925 | case 72: |
10926 | tmp = fieldFromInstruction(insn, 48, 7); |
10927 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10928 | tmp = fieldFromInstruction(insn, 32, 4); |
10929 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10930 | tmp = fieldFromInstruction(insn, 40, 7); |
10931 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10932 | return S; |
10933 | case 73: |
10934 | tmp = fieldFromInstruction(insn, 48, 7); |
10935 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10936 | tmp = fieldFromInstruction(insn, 32, 4); |
10937 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10938 | tmp = fieldFromInstruction(insn, 40, 7); |
10939 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10940 | return S; |
10941 | case 74: |
10942 | tmp = fieldFromInstruction(insn, 48, 7); |
10943 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10944 | tmp = fieldFromInstruction(insn, 32, 4); |
10945 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10946 | tmp = fieldFromInstruction(insn, 40, 7); |
10947 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10948 | return S; |
10949 | case 75: |
10950 | tmp = fieldFromInstruction(insn, 40, 7); |
10951 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10952 | tmp = fieldFromInstruction(insn, 32, 7); |
10953 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10954 | tmp = fieldFromInstruction(insn, 48, 7); |
10955 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10956 | return S; |
10957 | case 76: |
10958 | tmp = fieldFromInstruction(insn, 40, 7); |
10959 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10960 | tmp = fieldFromInstruction(insn, 32, 7); |
10961 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10962 | tmp = fieldFromInstruction(insn, 48, 7); |
10963 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10964 | return S; |
10965 | case 77: |
10966 | tmp = fieldFromInstruction(insn, 40, 7); |
10967 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10968 | tmp = fieldFromInstruction(insn, 32, 7); |
10969 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10970 | tmp = fieldFromInstruction(insn, 48, 7); |
10971 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10972 | return S; |
10973 | case 78: |
10974 | tmp = fieldFromInstruction(insn, 40, 7); |
10975 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10976 | tmp = fieldFromInstruction(insn, 32, 7); |
10977 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10978 | tmp = fieldFromInstruction(insn, 48, 7); |
10979 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10980 | return S; |
10981 | case 79: |
10982 | tmp = fieldFromInstruction(insn, 48, 7); |
10983 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10984 | tmp = fieldFromInstruction(insn, 40, 7); |
10985 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10986 | tmp = fieldFromInstruction(insn, 32, 7); |
10987 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10988 | return S; |
10989 | case 80: |
10990 | tmp = fieldFromInstruction(insn, 48, 7); |
10991 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10992 | tmp = fieldFromInstruction(insn, 32, 7); |
10993 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10994 | tmp = fieldFromInstruction(insn, 40, 7); |
10995 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10996 | return S; |
10997 | case 81: |
10998 | tmp = fieldFromInstruction(insn, 48, 7); |
10999 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11000 | tmp = fieldFromInstruction(insn, 32, 7); |
11001 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11002 | tmp = fieldFromInstruction(insn, 40, 7); |
11003 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11004 | return S; |
11005 | case 82: |
11006 | tmp = fieldFromInstruction(insn, 48, 7); |
11007 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11008 | tmp = fieldFromInstruction(insn, 40, 7); |
11009 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11010 | return S; |
11011 | case 83: |
11012 | tmp = fieldFromInstruction(insn, 48, 7); |
11013 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11014 | tmp = fieldFromInstruction(insn, 40, 7); |
11015 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11016 | return S; |
11017 | case 84: |
11018 | tmp = fieldFromInstruction(insn, 48, 7); |
11019 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11020 | tmp = fieldFromInstruction(insn, 40, 7); |
11021 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11022 | return S; |
11023 | case 85: |
11024 | if (!Check(S, DecodeCASI64(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
11025 | return S; |
11026 | case 86: |
11027 | if (!Check(S, DecodeCASI32(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
11028 | return S; |
11029 | case 87: |
11030 | tmp = fieldFromInstruction(insn, 48, 7); |
11031 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11032 | tmp = fieldFromInstruction(insn, 48, 7); |
11033 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11034 | tmp = fieldFromInstruction(insn, 32, 7); |
11035 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11036 | tmp = fieldFromInstruction(insn, 40, 7); |
11037 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11038 | return S; |
11039 | case 88: |
11040 | tmp = fieldFromInstruction(insn, 48, 7); |
11041 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11042 | tmp = fieldFromInstruction(insn, 48, 7); |
11043 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11044 | tmp = fieldFromInstruction(insn, 32, 7); |
11045 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11046 | tmp = fieldFromInstruction(insn, 40, 7); |
11047 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11048 | return S; |
11049 | case 89: |
11050 | tmp = fieldFromInstruction(insn, 48, 7); |
11051 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11052 | tmp = fieldFromInstruction(insn, 48, 7); |
11053 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11054 | tmp = fieldFromInstruction(insn, 32, 7); |
11055 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11056 | tmp = fieldFromInstruction(insn, 40, 7); |
11057 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11058 | return S; |
11059 | case 90: |
11060 | tmp = fieldFromInstruction(insn, 48, 7); |
11061 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11062 | tmp = fieldFromInstruction(insn, 48, 7); |
11063 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11064 | tmp = fieldFromInstruction(insn, 32, 7); |
11065 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11066 | tmp = fieldFromInstruction(insn, 40, 7); |
11067 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11068 | return S; |
11069 | case 91: |
11070 | tmp = fieldFromInstruction(insn, 48, 7); |
11071 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11072 | tmp = fieldFromInstruction(insn, 32, 7); |
11073 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11074 | tmp = fieldFromInstruction(insn, 40, 7); |
11075 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11076 | return S; |
11077 | case 92: |
11078 | tmp = fieldFromInstruction(insn, 48, 7); |
11079 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11080 | tmp = fieldFromInstruction(insn, 32, 7); |
11081 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11082 | tmp = fieldFromInstruction(insn, 40, 7); |
11083 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11084 | return S; |
11085 | case 93: |
11086 | tmp = fieldFromInstruction(insn, 48, 7); |
11087 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11088 | tmp = fieldFromInstruction(insn, 32, 7); |
11089 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11090 | tmp = fieldFromInstruction(insn, 40, 7); |
11091 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11092 | return S; |
11093 | case 94: |
11094 | tmp = fieldFromInstruction(insn, 48, 7); |
11095 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11096 | tmp = fieldFromInstruction(insn, 32, 7); |
11097 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11098 | tmp = fieldFromInstruction(insn, 40, 7); |
11099 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11100 | return S; |
11101 | case 95: |
11102 | tmp = fieldFromInstruction(insn, 40, 7); |
11103 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11104 | return S; |
11105 | case 96: |
11106 | tmp = fieldFromInstruction(insn, 48, 7); |
11107 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11108 | tmp = fieldFromInstruction(insn, 40, 7); |
11109 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11110 | tmp = fieldFromInstruction(insn, 32, 7); |
11111 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11112 | return S; |
11113 | case 97: |
11114 | tmp = fieldFromInstruction(insn, 48, 7); |
11115 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11116 | tmp = fieldFromInstruction(insn, 32, 7); |
11117 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11118 | tmp = fieldFromInstruction(insn, 40, 7); |
11119 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11120 | return S; |
11121 | case 98: |
11122 | tmp = fieldFromInstruction(insn, 48, 7); |
11123 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11124 | tmp = fieldFromInstruction(insn, 40, 7); |
11125 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11126 | tmp = fieldFromInstruction(insn, 32, 7); |
11127 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11128 | return S; |
11129 | case 99: |
11130 | tmp = fieldFromInstruction(insn, 48, 7); |
11131 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11132 | tmp = fieldFromInstruction(insn, 40, 7); |
11133 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11134 | tmp = fieldFromInstruction(insn, 32, 7); |
11135 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11136 | return S; |
11137 | case 100: |
11138 | tmp = fieldFromInstruction(insn, 48, 7); |
11139 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11140 | tmp = fieldFromInstruction(insn, 40, 7); |
11141 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11142 | tmp = fieldFromInstruction(insn, 32, 7); |
11143 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11144 | return S; |
11145 | case 101: |
11146 | tmp = fieldFromInstruction(insn, 48, 7); |
11147 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11148 | tmp = fieldFromInstruction(insn, 40, 7); |
11149 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11150 | tmp = fieldFromInstruction(insn, 32, 7); |
11151 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11152 | return S; |
11153 | case 102: |
11154 | tmp = fieldFromInstruction(insn, 48, 7); |
11155 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11156 | tmp = fieldFromInstruction(insn, 40, 7); |
11157 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11158 | tmp = fieldFromInstruction(insn, 32, 7); |
11159 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11160 | return S; |
11161 | case 103: |
11162 | tmp = fieldFromInstruction(insn, 48, 7); |
11163 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11164 | tmp = fieldFromInstruction(insn, 32, 7); |
11165 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11166 | tmp = fieldFromInstruction(insn, 48, 7); |
11167 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11168 | tmp = fieldFromInstruction(insn, 40, 7); |
11169 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11170 | return S; |
11171 | case 104: |
11172 | tmp = fieldFromInstruction(insn, 48, 7); |
11173 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11174 | tmp = fieldFromInstruction(insn, 32, 7); |
11175 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11176 | tmp = fieldFromInstruction(insn, 48, 7); |
11177 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11178 | tmp = fieldFromInstruction(insn, 40, 7); |
11179 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11180 | return S; |
11181 | case 105: |
11182 | tmp = fieldFromInstruction(insn, 48, 7); |
11183 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11184 | tmp = fieldFromInstruction(insn, 32, 7); |
11185 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11186 | tmp = fieldFromInstruction(insn, 48, 7); |
11187 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11188 | tmp = fieldFromInstruction(insn, 40, 7); |
11189 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11190 | return S; |
11191 | case 106: |
11192 | tmp = fieldFromInstruction(insn, 48, 7); |
11193 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11194 | tmp = fieldFromInstruction(insn, 32, 7); |
11195 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11196 | tmp = fieldFromInstruction(insn, 48, 7); |
11197 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11198 | tmp = fieldFromInstruction(insn, 40, 7); |
11199 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11200 | return S; |
11201 | case 107: |
11202 | tmp = fieldFromInstruction(insn, 48, 7); |
11203 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11204 | tmp = fieldFromInstruction(insn, 40, 7); |
11205 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11206 | tmp = fieldFromInstruction(insn, 32, 7); |
11207 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11208 | return S; |
11209 | case 108: |
11210 | tmp = fieldFromInstruction(insn, 48, 7); |
11211 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11212 | tmp = fieldFromInstruction(insn, 40, 7); |
11213 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11214 | tmp = fieldFromInstruction(insn, 32, 7); |
11215 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11216 | return S; |
11217 | case 109: |
11218 | tmp = fieldFromInstruction(insn, 48, 7); |
11219 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11220 | tmp = fieldFromInstruction(insn, 40, 7); |
11221 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11222 | tmp = fieldFromInstruction(insn, 32, 7); |
11223 | if (!Check(S, DecodeF128RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11224 | return S; |
11225 | case 110: |
11226 | tmp = fieldFromInstruction(insn, 40, 7); |
11227 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11228 | tmp = fieldFromInstruction(insn, 32, 7); |
11229 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11230 | return S; |
11231 | case 111: |
11232 | tmp = fieldFromInstruction(insn, 40, 7); |
11233 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11234 | tmp = fieldFromInstruction(insn, 32, 7); |
11235 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11236 | return S; |
11237 | case 112: |
11238 | tmp = fieldFromInstruction(insn, 40, 7); |
11239 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11240 | tmp = fieldFromInstruction(insn, 32, 7); |
11241 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11242 | return S; |
11243 | case 113: |
11244 | tmp = fieldFromInstruction(insn, 40, 7); |
11245 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11246 | tmp = fieldFromInstruction(insn, 32, 7); |
11247 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11248 | return S; |
11249 | case 114: |
11250 | tmp = fieldFromInstruction(insn, 24, 8); |
11251 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11252 | tmp = fieldFromInstruction(insn, 40, 7); |
11253 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11254 | tmp = fieldFromInstruction(insn, 32, 7); |
11255 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11256 | return S; |
11257 | case 115: |
11258 | tmp = fieldFromInstruction(insn, 24, 8); |
11259 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11260 | tmp = fieldFromInstruction(insn, 40, 7); |
11261 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11262 | tmp = fieldFromInstruction(insn, 32, 7); |
11263 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11264 | return S; |
11265 | case 116: |
11266 | tmp = fieldFromInstruction(insn, 24, 8); |
11267 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11268 | tmp = fieldFromInstruction(insn, 40, 7); |
11269 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11270 | tmp = fieldFromInstruction(insn, 32, 7); |
11271 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11272 | return S; |
11273 | case 117: |
11274 | tmp = fieldFromInstruction(insn, 24, 8); |
11275 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11276 | tmp = fieldFromInstruction(insn, 40, 7); |
11277 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11278 | tmp = fieldFromInstruction(insn, 32, 7); |
11279 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11280 | return S; |
11281 | case 118: |
11282 | tmp = fieldFromInstruction(insn, 24, 8); |
11283 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11284 | tmp = fieldFromInstruction(insn, 16, 8); |
11285 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11286 | tmp = fieldFromInstruction(insn, 8, 8); |
11287 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11288 | return S; |
11289 | case 119: |
11290 | tmp = fieldFromInstruction(insn, 24, 8); |
11291 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11292 | tmp = fieldFromInstruction(insn, 16, 8); |
11293 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11294 | return S; |
11295 | case 120: |
11296 | tmp = fieldFromInstruction(insn, 24, 8); |
11297 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11298 | tmp = fieldFromInstruction(insn, 16, 8); |
11299 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11300 | tmp = fieldFromInstruction(insn, 48, 4); |
11301 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11302 | return S; |
11303 | case 121: |
11304 | tmp = fieldFromInstruction(insn, 24, 8); |
11305 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11306 | tmp = fieldFromInstruction(insn, 16, 8); |
11307 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11308 | tmp = fieldFromInstruction(insn, 8, 8); |
11309 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11310 | return S; |
11311 | case 122: |
11312 | tmp = fieldFromInstruction(insn, 24, 8); |
11313 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11314 | tmp = fieldFromInstruction(insn, 16, 8); |
11315 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11316 | tmp = fieldFromInstruction(insn, 8, 8); |
11317 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11318 | tmp = fieldFromInstruction(insn, 48, 4); |
11319 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11320 | return S; |
11321 | case 123: |
11322 | tmp = fieldFromInstruction(insn, 24, 8); |
11323 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11324 | tmp = fieldFromInstruction(insn, 40, 7); |
11325 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11326 | tmp = fieldFromInstruction(insn, 8, 8); |
11327 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11328 | return S; |
11329 | case 124: |
11330 | tmp = fieldFromInstruction(insn, 24, 8); |
11331 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11332 | tmp = fieldFromInstruction(insn, 40, 7); |
11333 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11334 | tmp = fieldFromInstruction(insn, 8, 8); |
11335 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11336 | tmp = fieldFromInstruction(insn, 48, 4); |
11337 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11338 | return S; |
11339 | case 125: |
11340 | tmp = fieldFromInstruction(insn, 24, 8); |
11341 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11342 | tmp = fieldFromInstruction(insn, 40, 7); |
11343 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11344 | tmp = fieldFromInstruction(insn, 8, 8); |
11345 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11346 | return S; |
11347 | case 126: |
11348 | tmp = fieldFromInstruction(insn, 24, 8); |
11349 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11350 | tmp = fieldFromInstruction(insn, 40, 7); |
11351 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11352 | tmp = fieldFromInstruction(insn, 8, 8); |
11353 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11354 | tmp = fieldFromInstruction(insn, 48, 4); |
11355 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11356 | return S; |
11357 | case 127: |
11358 | tmp = fieldFromInstruction(insn, 24, 8); |
11359 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11360 | tmp = fieldFromInstruction(insn, 40, 7); |
11361 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11362 | tmp = fieldFromInstruction(insn, 8, 8); |
11363 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11364 | return S; |
11365 | case 128: |
11366 | tmp = fieldFromInstruction(insn, 24, 8); |
11367 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11368 | tmp = fieldFromInstruction(insn, 40, 7); |
11369 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11370 | tmp = fieldFromInstruction(insn, 8, 8); |
11371 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11372 | tmp = fieldFromInstruction(insn, 48, 4); |
11373 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11374 | return S; |
11375 | case 129: |
11376 | tmp = fieldFromInstruction(insn, 24, 8); |
11377 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11378 | tmp = fieldFromInstruction(insn, 16, 8); |
11379 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11380 | tmp = fieldFromInstruction(insn, 8, 8); |
11381 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11382 | tmp = fieldFromInstruction(insn, 48, 4); |
11383 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11384 | return S; |
11385 | case 130: |
11386 | tmp = fieldFromInstruction(insn, 24, 8); |
11387 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11388 | tmp = fieldFromInstruction(insn, 40, 7); |
11389 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11390 | tmp = fieldFromInstruction(insn, 8, 8); |
11391 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11392 | tmp = fieldFromInstruction(insn, 48, 4); |
11393 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11394 | return S; |
11395 | case 131: |
11396 | tmp = fieldFromInstruction(insn, 24, 8); |
11397 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11398 | tmp = fieldFromInstruction(insn, 40, 7); |
11399 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11400 | tmp = fieldFromInstruction(insn, 8, 8); |
11401 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11402 | tmp = fieldFromInstruction(insn, 48, 4); |
11403 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11404 | return S; |
11405 | case 132: |
11406 | tmp = fieldFromInstruction(insn, 24, 8); |
11407 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11408 | tmp = fieldFromInstruction(insn, 40, 7); |
11409 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11410 | return S; |
11411 | case 133: |
11412 | tmp = fieldFromInstruction(insn, 24, 8); |
11413 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11414 | tmp = fieldFromInstruction(insn, 40, 7); |
11415 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11416 | tmp = fieldFromInstruction(insn, 48, 4); |
11417 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11418 | return S; |
11419 | case 134: |
11420 | tmp = fieldFromInstruction(insn, 24, 8); |
11421 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11422 | tmp = fieldFromInstruction(insn, 40, 7); |
11423 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11424 | return S; |
11425 | case 135: |
11426 | tmp = fieldFromInstruction(insn, 24, 8); |
11427 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11428 | tmp = fieldFromInstruction(insn, 40, 7); |
11429 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11430 | tmp = fieldFromInstruction(insn, 48, 4); |
11431 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11432 | return S; |
11433 | case 136: |
11434 | tmp = fieldFromInstruction(insn, 24, 8); |
11435 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11436 | tmp = fieldFromInstruction(insn, 40, 7); |
11437 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11438 | return S; |
11439 | case 137: |
11440 | tmp = fieldFromInstruction(insn, 24, 8); |
11441 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11442 | tmp = fieldFromInstruction(insn, 40, 7); |
11443 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11444 | tmp = fieldFromInstruction(insn, 48, 4); |
11445 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11446 | return S; |
11447 | case 138: |
11448 | tmp = fieldFromInstruction(insn, 24, 8); |
11449 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11450 | tmp = fieldFromInstruction(insn, 40, 7); |
11451 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11452 | tmp = fieldFromInstruction(insn, 48, 4); |
11453 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11454 | return S; |
11455 | case 139: |
11456 | tmp = fieldFromInstruction(insn, 24, 8); |
11457 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11458 | tmp = fieldFromInstruction(insn, 40, 7); |
11459 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11460 | return S; |
11461 | case 140: |
11462 | tmp = fieldFromInstruction(insn, 24, 8); |
11463 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11464 | tmp = fieldFromInstruction(insn, 40, 7); |
11465 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11466 | tmp = fieldFromInstruction(insn, 48, 4); |
11467 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11468 | return S; |
11469 | case 141: |
11470 | tmp = fieldFromInstruction(insn, 24, 8); |
11471 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11472 | tmp = fieldFromInstruction(insn, 40, 7); |
11473 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11474 | tmp = fieldFromInstruction(insn, 48, 4); |
11475 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11476 | return S; |
11477 | case 142: |
11478 | tmp = fieldFromInstruction(insn, 24, 8); |
11479 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11480 | tmp = fieldFromInstruction(insn, 8, 8); |
11481 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11482 | return S; |
11483 | case 143: |
11484 | tmp = fieldFromInstruction(insn, 24, 8); |
11485 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11486 | tmp = fieldFromInstruction(insn, 8, 8); |
11487 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11488 | tmp = fieldFromInstruction(insn, 48, 4); |
11489 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11490 | return S; |
11491 | case 144: |
11492 | tmp = fieldFromInstruction(insn, 24, 8); |
11493 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11494 | tmp = fieldFromInstruction(insn, 40, 7); |
11495 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11496 | tmp = fieldFromInstruction(insn, 32, 7); |
11497 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11498 | return S; |
11499 | case 145: |
11500 | tmp = fieldFromInstruction(insn, 24, 8); |
11501 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11502 | tmp = fieldFromInstruction(insn, 40, 7); |
11503 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11504 | tmp = fieldFromInstruction(insn, 32, 7); |
11505 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11506 | return S; |
11507 | case 146: |
11508 | tmp = fieldFromInstruction(insn, 40, 7); |
11509 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11510 | tmp = fieldFromInstruction(insn, 32, 7); |
11511 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11512 | tmp = fieldFromInstruction(insn, 24, 8); |
11513 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11514 | return S; |
11515 | case 147: |
11516 | tmp = fieldFromInstruction(insn, 40, 7); |
11517 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11518 | tmp = fieldFromInstruction(insn, 32, 7); |
11519 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11520 | tmp = fieldFromInstruction(insn, 24, 8); |
11521 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11522 | tmp = fieldFromInstruction(insn, 48, 4); |
11523 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11524 | return S; |
11525 | case 148: |
11526 | tmp = fieldFromInstruction(insn, 40, 7); |
11527 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11528 | tmp = fieldFromInstruction(insn, 32, 7); |
11529 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11530 | tmp = fieldFromInstruction(insn, 24, 8); |
11531 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11532 | return S; |
11533 | case 149: |
11534 | tmp = fieldFromInstruction(insn, 40, 7); |
11535 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11536 | tmp = fieldFromInstruction(insn, 32, 7); |
11537 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11538 | tmp = fieldFromInstruction(insn, 24, 8); |
11539 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11540 | tmp = fieldFromInstruction(insn, 48, 4); |
11541 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11542 | return S; |
11543 | case 150: |
11544 | tmp = fieldFromInstruction(insn, 40, 7); |
11545 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11546 | tmp = fieldFromInstruction(insn, 32, 7); |
11547 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11548 | tmp = fieldFromInstruction(insn, 24, 8); |
11549 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11550 | return S; |
11551 | case 151: |
11552 | tmp = fieldFromInstruction(insn, 40, 7); |
11553 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11554 | tmp = fieldFromInstruction(insn, 32, 7); |
11555 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11556 | tmp = fieldFromInstruction(insn, 24, 8); |
11557 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11558 | tmp = fieldFromInstruction(insn, 48, 4); |
11559 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11560 | return S; |
11561 | case 152: |
11562 | tmp = fieldFromInstruction(insn, 40, 7); |
11563 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11564 | tmp = fieldFromInstruction(insn, 32, 7); |
11565 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11566 | tmp = fieldFromInstruction(insn, 24, 8); |
11567 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11568 | return S; |
11569 | case 153: |
11570 | tmp = fieldFromInstruction(insn, 40, 7); |
11571 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11572 | tmp = fieldFromInstruction(insn, 32, 7); |
11573 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11574 | tmp = fieldFromInstruction(insn, 24, 8); |
11575 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11576 | tmp = fieldFromInstruction(insn, 48, 4); |
11577 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11578 | return S; |
11579 | case 154: |
11580 | tmp = fieldFromInstruction(insn, 24, 8); |
11581 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11582 | tmp = fieldFromInstruction(insn, 16, 8); |
11583 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11584 | return S; |
11585 | case 155: |
11586 | tmp = fieldFromInstruction(insn, 24, 8); |
11587 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11588 | return S; |
11589 | case 156: |
11590 | tmp = fieldFromInstruction(insn, 24, 8); |
11591 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11592 | tmp = fieldFromInstruction(insn, 48, 4); |
11593 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11594 | return S; |
11595 | case 157: |
11596 | tmp = fieldFromInstruction(insn, 24, 8); |
11597 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11598 | tmp = fieldFromInstruction(insn, 48, 4); |
11599 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11600 | return S; |
11601 | case 158: |
11602 | tmp = fieldFromInstruction(insn, 24, 8); |
11603 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11604 | tmp = fieldFromInstruction(insn, 40, 7); |
11605 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11606 | tmp = fieldFromInstruction(insn, 8, 8); |
11607 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11608 | return S; |
11609 | case 159: |
11610 | tmp = fieldFromInstruction(insn, 24, 8); |
11611 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11612 | tmp = fieldFromInstruction(insn, 40, 7); |
11613 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11614 | tmp = fieldFromInstruction(insn, 8, 8); |
11615 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11616 | tmp = fieldFromInstruction(insn, 48, 4); |
11617 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11618 | return S; |
11619 | case 160: |
11620 | tmp = fieldFromInstruction(insn, 48, 7); |
11621 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11622 | tmp = fieldFromInstruction(insn, 24, 8); |
11623 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11624 | tmp = fieldFromInstruction(insn, 40, 7); |
11625 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11626 | return S; |
11627 | case 161: |
11628 | tmp = fieldFromInstruction(insn, 48, 7); |
11629 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11630 | tmp = fieldFromInstruction(insn, 24, 8); |
11631 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11632 | tmp = fieldFromInstruction(insn, 40, 7); |
11633 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11634 | return S; |
11635 | case 162: |
11636 | tmp = fieldFromInstruction(insn, 24, 8); |
11637 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11638 | tmp = fieldFromInstruction(insn, 16, 8); |
11639 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11640 | tmp = fieldFromInstruction(insn, 40, 7); |
11641 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11642 | tmp = fieldFromInstruction(insn, 32, 7); |
11643 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11644 | return S; |
11645 | case 163: |
11646 | tmp = fieldFromInstruction(insn, 24, 8); |
11647 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11648 | tmp = fieldFromInstruction(insn, 16, 8); |
11649 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11650 | tmp = fieldFromInstruction(insn, 40, 7); |
11651 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11652 | tmp = fieldFromInstruction(insn, 32, 7); |
11653 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11654 | tmp = fieldFromInstruction(insn, 48, 4); |
11655 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11656 | return S; |
11657 | case 164: |
11658 | tmp = fieldFromInstruction(insn, 24, 8); |
11659 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11660 | tmp = fieldFromInstruction(insn, 16, 8); |
11661 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11662 | tmp = fieldFromInstruction(insn, 40, 7); |
11663 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11664 | tmp = fieldFromInstruction(insn, 32, 7); |
11665 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11666 | return S; |
11667 | case 165: |
11668 | tmp = fieldFromInstruction(insn, 24, 8); |
11669 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11670 | tmp = fieldFromInstruction(insn, 16, 8); |
11671 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11672 | tmp = fieldFromInstruction(insn, 40, 7); |
11673 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11674 | tmp = fieldFromInstruction(insn, 32, 7); |
11675 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11676 | tmp = fieldFromInstruction(insn, 48, 4); |
11677 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11678 | return S; |
11679 | case 166: |
11680 | tmp = fieldFromInstruction(insn, 24, 8); |
11681 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11682 | tmp = fieldFromInstruction(insn, 16, 8); |
11683 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11684 | tmp = fieldFromInstruction(insn, 40, 7); |
11685 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11686 | tmp = fieldFromInstruction(insn, 32, 7); |
11687 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11688 | return S; |
11689 | case 167: |
11690 | tmp = fieldFromInstruction(insn, 24, 8); |
11691 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11692 | tmp = fieldFromInstruction(insn, 16, 8); |
11693 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11694 | tmp = fieldFromInstruction(insn, 40, 7); |
11695 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11696 | tmp = fieldFromInstruction(insn, 32, 7); |
11697 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11698 | tmp = fieldFromInstruction(insn, 48, 4); |
11699 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11700 | return S; |
11701 | case 168: |
11702 | tmp = fieldFromInstruction(insn, 24, 8); |
11703 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11704 | tmp = fieldFromInstruction(insn, 16, 8); |
11705 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11706 | tmp = fieldFromInstruction(insn, 40, 7); |
11707 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11708 | tmp = fieldFromInstruction(insn, 32, 7); |
11709 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11710 | return S; |
11711 | case 169: |
11712 | tmp = fieldFromInstruction(insn, 24, 8); |
11713 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11714 | tmp = fieldFromInstruction(insn, 16, 8); |
11715 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11716 | tmp = fieldFromInstruction(insn, 40, 7); |
11717 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11718 | tmp = fieldFromInstruction(insn, 32, 7); |
11719 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11720 | tmp = fieldFromInstruction(insn, 48, 4); |
11721 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11722 | return S; |
11723 | case 170: |
11724 | tmp = fieldFromInstruction(insn, 24, 8); |
11725 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11726 | tmp = fieldFromInstruction(insn, 0, 7); |
11727 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11728 | tmp = fieldFromInstruction(insn, 40, 7); |
11729 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11730 | tmp = fieldFromInstruction(insn, 32, 7); |
11731 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11732 | return S; |
11733 | case 171: |
11734 | tmp = fieldFromInstruction(insn, 24, 8); |
11735 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11736 | tmp = fieldFromInstruction(insn, 0, 7); |
11737 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11738 | tmp = fieldFromInstruction(insn, 40, 7); |
11739 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11740 | tmp = fieldFromInstruction(insn, 32, 7); |
11741 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11742 | tmp = fieldFromInstruction(insn, 48, 4); |
11743 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11744 | return S; |
11745 | case 172: |
11746 | tmp = fieldFromInstruction(insn, 24, 8); |
11747 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11748 | tmp = fieldFromInstruction(insn, 0, 7); |
11749 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11750 | tmp = fieldFromInstruction(insn, 40, 7); |
11751 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11752 | tmp = fieldFromInstruction(insn, 32, 7); |
11753 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11754 | return S; |
11755 | case 173: |
11756 | tmp = fieldFromInstruction(insn, 24, 8); |
11757 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11758 | tmp = fieldFromInstruction(insn, 0, 7); |
11759 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11760 | tmp = fieldFromInstruction(insn, 40, 7); |
11761 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11762 | tmp = fieldFromInstruction(insn, 32, 7); |
11763 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11764 | tmp = fieldFromInstruction(insn, 48, 4); |
11765 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11766 | return S; |
11767 | case 174: |
11768 | tmp = fieldFromInstruction(insn, 24, 8); |
11769 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11770 | tmp = fieldFromInstruction(insn, 0, 7); |
11771 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11772 | tmp = fieldFromInstruction(insn, 40, 7); |
11773 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11774 | tmp = fieldFromInstruction(insn, 32, 7); |
11775 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11776 | return S; |
11777 | case 175: |
11778 | tmp = fieldFromInstruction(insn, 24, 8); |
11779 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11780 | tmp = fieldFromInstruction(insn, 0, 7); |
11781 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11782 | tmp = fieldFromInstruction(insn, 40, 7); |
11783 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11784 | tmp = fieldFromInstruction(insn, 32, 7); |
11785 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11786 | tmp = fieldFromInstruction(insn, 48, 4); |
11787 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11788 | return S; |
11789 | case 176: |
11790 | tmp = fieldFromInstruction(insn, 24, 8); |
11791 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11792 | tmp = fieldFromInstruction(insn, 0, 7); |
11793 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11794 | tmp = fieldFromInstruction(insn, 40, 7); |
11795 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11796 | tmp = fieldFromInstruction(insn, 32, 7); |
11797 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11798 | return S; |
11799 | case 177: |
11800 | tmp = fieldFromInstruction(insn, 24, 8); |
11801 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11802 | tmp = fieldFromInstruction(insn, 0, 7); |
11803 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11804 | tmp = fieldFromInstruction(insn, 40, 7); |
11805 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11806 | tmp = fieldFromInstruction(insn, 32, 7); |
11807 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11808 | tmp = fieldFromInstruction(insn, 48, 4); |
11809 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11810 | return S; |
11811 | case 178: |
11812 | tmp = fieldFromInstruction(insn, 48, 7); |
11813 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11814 | tmp = fieldFromInstruction(insn, 16, 8); |
11815 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11816 | return S; |
11817 | case 179: |
11818 | tmp = fieldFromInstruction(insn, 48, 7); |
11819 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11820 | tmp = fieldFromInstruction(insn, 8, 8); |
11821 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11822 | tmp = fieldFromInstruction(insn, 40, 7); |
11823 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11824 | return S; |
11825 | case 180: |
11826 | tmp = fieldFromInstruction(insn, 48, 7); |
11827 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11828 | tmp = fieldFromInstruction(insn, 8, 8); |
11829 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11830 | tmp = fieldFromInstruction(insn, 40, 7); |
11831 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11832 | return S; |
11833 | case 181: |
11834 | tmp = fieldFromInstruction(insn, 24, 8); |
11835 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11836 | tmp = fieldFromInstruction(insn, 8, 8); |
11837 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11838 | tmp = fieldFromInstruction(insn, 16, 8); |
11839 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11840 | return S; |
11841 | case 182: |
11842 | tmp = fieldFromInstruction(insn, 24, 8); |
11843 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11844 | tmp = fieldFromInstruction(insn, 8, 8); |
11845 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11846 | tmp = fieldFromInstruction(insn, 16, 8); |
11847 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11848 | tmp = fieldFromInstruction(insn, 48, 4); |
11849 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11850 | return S; |
11851 | case 183: |
11852 | tmp = fieldFromInstruction(insn, 24, 8); |
11853 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11854 | tmp = fieldFromInstruction(insn, 8, 8); |
11855 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11856 | tmp = fieldFromInstruction(insn, 48, 4); |
11857 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11858 | return S; |
11859 | case 184: |
11860 | tmp = fieldFromInstruction(insn, 16, 8); |
11861 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11862 | tmp = fieldFromInstruction(insn, 40, 7); |
11863 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11864 | tmp = fieldFromInstruction(insn, 32, 7); |
11865 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11866 | tmp = fieldFromInstruction(insn, 24, 8); |
11867 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11868 | return S; |
11869 | case 185: |
11870 | tmp = fieldFromInstruction(insn, 16, 8); |
11871 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11872 | tmp = fieldFromInstruction(insn, 40, 7); |
11873 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11874 | tmp = fieldFromInstruction(insn, 32, 7); |
11875 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11876 | tmp = fieldFromInstruction(insn, 24, 8); |
11877 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11878 | tmp = fieldFromInstruction(insn, 48, 4); |
11879 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11880 | return S; |
11881 | case 186: |
11882 | tmp = fieldFromInstruction(insn, 16, 8); |
11883 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11884 | tmp = fieldFromInstruction(insn, 40, 7); |
11885 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11886 | tmp = fieldFromInstruction(insn, 32, 7); |
11887 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11888 | tmp = fieldFromInstruction(insn, 24, 8); |
11889 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11890 | return S; |
11891 | case 187: |
11892 | tmp = fieldFromInstruction(insn, 16, 8); |
11893 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11894 | tmp = fieldFromInstruction(insn, 40, 7); |
11895 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11896 | tmp = fieldFromInstruction(insn, 32, 7); |
11897 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11898 | tmp = fieldFromInstruction(insn, 24, 8); |
11899 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11900 | tmp = fieldFromInstruction(insn, 48, 4); |
11901 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11902 | return S; |
11903 | case 188: |
11904 | tmp = fieldFromInstruction(insn, 16, 8); |
11905 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11906 | tmp = fieldFromInstruction(insn, 40, 7); |
11907 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11908 | tmp = fieldFromInstruction(insn, 32, 7); |
11909 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11910 | tmp = fieldFromInstruction(insn, 24, 8); |
11911 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11912 | return S; |
11913 | case 189: |
11914 | tmp = fieldFromInstruction(insn, 16, 8); |
11915 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11916 | tmp = fieldFromInstruction(insn, 40, 7); |
11917 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11918 | tmp = fieldFromInstruction(insn, 32, 7); |
11919 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11920 | tmp = fieldFromInstruction(insn, 24, 8); |
11921 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11922 | tmp = fieldFromInstruction(insn, 48, 4); |
11923 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11924 | return S; |
11925 | case 190: |
11926 | tmp = fieldFromInstruction(insn, 16, 8); |
11927 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11928 | tmp = fieldFromInstruction(insn, 40, 7); |
11929 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11930 | tmp = fieldFromInstruction(insn, 32, 7); |
11931 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11932 | tmp = fieldFromInstruction(insn, 24, 8); |
11933 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11934 | return S; |
11935 | case 191: |
11936 | tmp = fieldFromInstruction(insn, 16, 8); |
11937 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11938 | tmp = fieldFromInstruction(insn, 40, 7); |
11939 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11940 | tmp = fieldFromInstruction(insn, 32, 7); |
11941 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11942 | tmp = fieldFromInstruction(insn, 24, 8); |
11943 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11944 | tmp = fieldFromInstruction(insn, 48, 4); |
11945 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11946 | return S; |
11947 | case 192: |
11948 | tmp = fieldFromInstruction(insn, 0, 7); |
11949 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11950 | tmp = fieldFromInstruction(insn, 40, 7); |
11951 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11952 | tmp = fieldFromInstruction(insn, 32, 7); |
11953 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11954 | tmp = fieldFromInstruction(insn, 24, 8); |
11955 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11956 | return S; |
11957 | case 193: |
11958 | tmp = fieldFromInstruction(insn, 0, 7); |
11959 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11960 | tmp = fieldFromInstruction(insn, 40, 7); |
11961 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11962 | tmp = fieldFromInstruction(insn, 32, 7); |
11963 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11964 | tmp = fieldFromInstruction(insn, 24, 8); |
11965 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11966 | tmp = fieldFromInstruction(insn, 48, 4); |
11967 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11968 | return S; |
11969 | case 194: |
11970 | tmp = fieldFromInstruction(insn, 0, 7); |
11971 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11972 | tmp = fieldFromInstruction(insn, 40, 7); |
11973 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11974 | tmp = fieldFromInstruction(insn, 32, 7); |
11975 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11976 | tmp = fieldFromInstruction(insn, 24, 8); |
11977 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11978 | return S; |
11979 | case 195: |
11980 | tmp = fieldFromInstruction(insn, 0, 7); |
11981 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11982 | tmp = fieldFromInstruction(insn, 40, 7); |
11983 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11984 | tmp = fieldFromInstruction(insn, 32, 7); |
11985 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
11986 | tmp = fieldFromInstruction(insn, 24, 8); |
11987 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11988 | tmp = fieldFromInstruction(insn, 48, 4); |
11989 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11990 | return S; |
11991 | case 196: |
11992 | tmp = fieldFromInstruction(insn, 0, 7); |
11993 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11994 | tmp = fieldFromInstruction(insn, 40, 7); |
11995 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11996 | tmp = fieldFromInstruction(insn, 32, 7); |
11997 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
11998 | tmp = fieldFromInstruction(insn, 24, 8); |
11999 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12000 | return S; |
12001 | case 197: |
12002 | tmp = fieldFromInstruction(insn, 0, 7); |
12003 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12004 | tmp = fieldFromInstruction(insn, 40, 7); |
12005 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12006 | tmp = fieldFromInstruction(insn, 32, 7); |
12007 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12008 | tmp = fieldFromInstruction(insn, 24, 8); |
12009 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12010 | tmp = fieldFromInstruction(insn, 48, 4); |
12011 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12012 | return S; |
12013 | case 198: |
12014 | tmp = fieldFromInstruction(insn, 0, 7); |
12015 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12016 | tmp = fieldFromInstruction(insn, 40, 7); |
12017 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12018 | tmp = fieldFromInstruction(insn, 32, 7); |
12019 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12020 | tmp = fieldFromInstruction(insn, 24, 8); |
12021 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12022 | return S; |
12023 | case 199: |
12024 | tmp = fieldFromInstruction(insn, 0, 7); |
12025 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12026 | tmp = fieldFromInstruction(insn, 40, 7); |
12027 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12028 | tmp = fieldFromInstruction(insn, 32, 7); |
12029 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12030 | tmp = fieldFromInstruction(insn, 24, 8); |
12031 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12032 | tmp = fieldFromInstruction(insn, 48, 4); |
12033 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12034 | return S; |
12035 | case 200: |
12036 | tmp = fieldFromInstruction(insn, 24, 8); |
12037 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12038 | return S; |
12039 | case 201: |
12040 | tmp = fieldFromInstruction(insn, 24, 8); |
12041 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12042 | tmp = fieldFromInstruction(insn, 48, 4); |
12043 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12044 | return S; |
12045 | case 202: |
12046 | tmp = fieldFromInstruction(insn, 24, 8); |
12047 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12048 | tmp = fieldFromInstruction(insn, 16, 8); |
12049 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12050 | tmp = fieldFromInstruction(insn, 8, 8); |
12051 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12052 | return S; |
12053 | case 203: |
12054 | tmp = fieldFromInstruction(insn, 24, 8); |
12055 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12056 | tmp = fieldFromInstruction(insn, 16, 8); |
12057 | if (!Check(S, DecodeCCOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12058 | tmp = fieldFromInstruction(insn, 8, 8); |
12059 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12060 | tmp = fieldFromInstruction(insn, 48, 4); |
12061 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12062 | return S; |
12063 | case 204: |
12064 | tmp = fieldFromInstruction(insn, 24, 8); |
12065 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12066 | tmp = fieldFromInstruction(insn, 40, 7); |
12067 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12068 | tmp = fieldFromInstruction(insn, 32, 7); |
12069 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12070 | return S; |
12071 | case 205: |
12072 | tmp = fieldFromInstruction(insn, 24, 8); |
12073 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12074 | tmp = fieldFromInstruction(insn, 40, 7); |
12075 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12076 | tmp = fieldFromInstruction(insn, 32, 7); |
12077 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12078 | return S; |
12079 | case 206: |
12080 | tmp = fieldFromInstruction(insn, 24, 8); |
12081 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12082 | tmp = fieldFromInstruction(insn, 40, 7); |
12083 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12084 | tmp = fieldFromInstruction(insn, 32, 7); |
12085 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12086 | return S; |
12087 | case 207: |
12088 | tmp = fieldFromInstruction(insn, 24, 8); |
12089 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12090 | tmp = fieldFromInstruction(insn, 40, 7); |
12091 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12092 | tmp = fieldFromInstruction(insn, 32, 7); |
12093 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12094 | return S; |
12095 | case 208: |
12096 | tmp = fieldFromInstruction(insn, 24, 8); |
12097 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12098 | tmp = fieldFromInstruction(insn, 16, 8); |
12099 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12100 | tmp = fieldFromInstruction(insn, 8, 8); |
12101 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12102 | tmp = fieldFromInstruction(insn, 40, 7); |
12103 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12104 | return S; |
12105 | case 209: |
12106 | tmp = fieldFromInstruction(insn, 24, 8); |
12107 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12108 | tmp = fieldFromInstruction(insn, 16, 8); |
12109 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12110 | tmp = fieldFromInstruction(insn, 8, 8); |
12111 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12112 | tmp = fieldFromInstruction(insn, 40, 7); |
12113 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12114 | return S; |
12115 | case 210: |
12116 | tmp = fieldFromInstruction(insn, 24, 8); |
12117 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12118 | tmp = fieldFromInstruction(insn, 40, 7); |
12119 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12120 | tmp = fieldFromInstruction(insn, 8, 8); |
12121 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12122 | return S; |
12123 | case 211: |
12124 | tmp = fieldFromInstruction(insn, 24, 8); |
12125 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12126 | tmp = fieldFromInstruction(insn, 40, 7); |
12127 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12128 | tmp = fieldFromInstruction(insn, 8, 8); |
12129 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12130 | tmp = fieldFromInstruction(insn, 48, 4); |
12131 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12132 | return S; |
12133 | case 212: |
12134 | tmp = fieldFromInstruction(insn, 40, 7); |
12135 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12136 | return S; |
12137 | case 213: |
12138 | tmp = fieldFromInstruction(insn, 24, 8); |
12139 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12140 | tmp = fieldFromInstruction(insn, 40, 7); |
12141 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12142 | tmp = fieldFromInstruction(insn, 8, 8); |
12143 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12144 | tmp = fieldFromInstruction(insn, 48, 4); |
12145 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12146 | return S; |
12147 | case 214: |
12148 | tmp = fieldFromInstruction(insn, 24, 8); |
12149 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12150 | tmp = fieldFromInstruction(insn, 16, 8); |
12151 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12152 | tmp = fieldFromInstruction(insn, 40, 7); |
12153 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12154 | return S; |
12155 | case 215: |
12156 | tmp = fieldFromInstruction(insn, 24, 8); |
12157 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12158 | tmp = fieldFromInstruction(insn, 16, 8); |
12159 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12160 | tmp = fieldFromInstruction(insn, 40, 7); |
12161 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12162 | return S; |
12163 | case 216: |
12164 | tmp = fieldFromInstruction(insn, 24, 8); |
12165 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12166 | tmp = fieldFromInstruction(insn, 16, 8); |
12167 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12168 | tmp = fieldFromInstruction(insn, 40, 7); |
12169 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12170 | return S; |
12171 | case 217: |
12172 | tmp = fieldFromInstruction(insn, 24, 8); |
12173 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12174 | tmp = fieldFromInstruction(insn, 8, 8); |
12175 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12176 | tmp = fieldFromInstruction(insn, 16, 8); |
12177 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12178 | return S; |
12179 | case 218: |
12180 | tmp = fieldFromInstruction(insn, 24, 8); |
12181 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12182 | tmp = fieldFromInstruction(insn, 8, 8); |
12183 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12184 | tmp = fieldFromInstruction(insn, 16, 8); |
12185 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12186 | tmp = fieldFromInstruction(insn, 48, 4); |
12187 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12188 | return S; |
12189 | case 219: |
12190 | tmp = fieldFromInstruction(insn, 24, 8); |
12191 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12192 | tmp = fieldFromInstruction(insn, 8, 8); |
12193 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12194 | tmp = fieldFromInstruction(insn, 40, 7); |
12195 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12196 | return S; |
12197 | case 220: |
12198 | tmp = fieldFromInstruction(insn, 24, 8); |
12199 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12200 | tmp = fieldFromInstruction(insn, 8, 8); |
12201 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12202 | tmp = fieldFromInstruction(insn, 40, 7); |
12203 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12204 | tmp = fieldFromInstruction(insn, 48, 4); |
12205 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12206 | return S; |
12207 | case 221: |
12208 | tmp = fieldFromInstruction(insn, 24, 8); |
12209 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12210 | tmp = fieldFromInstruction(insn, 8, 8); |
12211 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12212 | tmp = fieldFromInstruction(insn, 40, 7); |
12213 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12214 | return S; |
12215 | case 222: |
12216 | tmp = fieldFromInstruction(insn, 24, 8); |
12217 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12218 | tmp = fieldFromInstruction(insn, 8, 8); |
12219 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12220 | tmp = fieldFromInstruction(insn, 40, 7); |
12221 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12222 | tmp = fieldFromInstruction(insn, 48, 4); |
12223 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12224 | return S; |
12225 | case 223: |
12226 | tmp = fieldFromInstruction(insn, 24, 8); |
12227 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12228 | tmp = fieldFromInstruction(insn, 8, 8); |
12229 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12230 | tmp = fieldFromInstruction(insn, 40, 7); |
12231 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12232 | tmp = fieldFromInstruction(insn, 32, 7); |
12233 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12234 | return S; |
12235 | case 224: |
12236 | tmp = fieldFromInstruction(insn, 24, 8); |
12237 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12238 | tmp = fieldFromInstruction(insn, 8, 8); |
12239 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12240 | tmp = fieldFromInstruction(insn, 40, 7); |
12241 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12242 | tmp = fieldFromInstruction(insn, 32, 7); |
12243 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12244 | tmp = fieldFromInstruction(insn, 48, 4); |
12245 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12246 | return S; |
12247 | case 225: |
12248 | tmp = fieldFromInstruction(insn, 24, 8); |
12249 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12250 | tmp = fieldFromInstruction(insn, 8, 8); |
12251 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12252 | tmp = fieldFromInstruction(insn, 40, 7); |
12253 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12254 | tmp = fieldFromInstruction(insn, 32, 7); |
12255 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12256 | return S; |
12257 | case 226: |
12258 | tmp = fieldFromInstruction(insn, 24, 8); |
12259 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12260 | tmp = fieldFromInstruction(insn, 8, 8); |
12261 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12262 | tmp = fieldFromInstruction(insn, 40, 7); |
12263 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12264 | tmp = fieldFromInstruction(insn, 32, 7); |
12265 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12266 | tmp = fieldFromInstruction(insn, 48, 4); |
12267 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12268 | return S; |
12269 | case 227: |
12270 | tmp = fieldFromInstruction(insn, 24, 8); |
12271 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12272 | tmp = fieldFromInstruction(insn, 8, 8); |
12273 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12274 | tmp = fieldFromInstruction(insn, 40, 7); |
12275 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12276 | tmp = fieldFromInstruction(insn, 32, 7); |
12277 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12278 | return S; |
12279 | case 228: |
12280 | tmp = fieldFromInstruction(insn, 24, 8); |
12281 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12282 | tmp = fieldFromInstruction(insn, 8, 8); |
12283 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12284 | tmp = fieldFromInstruction(insn, 40, 7); |
12285 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12286 | tmp = fieldFromInstruction(insn, 32, 7); |
12287 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12288 | tmp = fieldFromInstruction(insn, 48, 4); |
12289 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12290 | return S; |
12291 | case 229: |
12292 | tmp = fieldFromInstruction(insn, 24, 8); |
12293 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12294 | tmp = fieldFromInstruction(insn, 8, 8); |
12295 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12296 | tmp = fieldFromInstruction(insn, 40, 7); |
12297 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12298 | tmp = fieldFromInstruction(insn, 32, 7); |
12299 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12300 | return S; |
12301 | case 230: |
12302 | tmp = fieldFromInstruction(insn, 24, 8); |
12303 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12304 | tmp = fieldFromInstruction(insn, 8, 8); |
12305 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12306 | tmp = fieldFromInstruction(insn, 40, 7); |
12307 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12308 | tmp = fieldFromInstruction(insn, 32, 7); |
12309 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12310 | tmp = fieldFromInstruction(insn, 48, 4); |
12311 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12312 | return S; |
12313 | case 231: |
12314 | tmp = fieldFromInstruction(insn, 24, 8); |
12315 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12316 | tmp = fieldFromInstruction(insn, 16, 8); |
12317 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12318 | tmp = fieldFromInstruction(insn, 40, 7); |
12319 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12320 | tmp = fieldFromInstruction(insn, 48, 4); |
12321 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12322 | return S; |
12323 | case 232: |
12324 | tmp = fieldFromInstruction(insn, 24, 8); |
12325 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12326 | tmp = fieldFromInstruction(insn, 16, 8); |
12327 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12328 | tmp = fieldFromInstruction(insn, 40, 7); |
12329 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12330 | tmp = fieldFromInstruction(insn, 48, 4); |
12331 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12332 | return S; |
12333 | case 233: |
12334 | tmp = fieldFromInstruction(insn, 24, 8); |
12335 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12336 | tmp = fieldFromInstruction(insn, 16, 8); |
12337 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12338 | tmp = fieldFromInstruction(insn, 40, 7); |
12339 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12340 | tmp = fieldFromInstruction(insn, 48, 4); |
12341 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12342 | return S; |
12343 | case 234: |
12344 | tmp = fieldFromInstruction(insn, 24, 8); |
12345 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12346 | tmp = fieldFromInstruction(insn, 16, 8); |
12347 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12348 | tmp = fieldFromInstruction(insn, 48, 4); |
12349 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12350 | return S; |
12351 | case 235: |
12352 | tmp = fieldFromInstruction(insn, 24, 8); |
12353 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12354 | tmp = fieldFromInstruction(insn, 16, 8); |
12355 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12356 | tmp = fieldFromInstruction(insn, 8, 8); |
12357 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12358 | tmp = fieldFromInstruction(insn, 0, 8); |
12359 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12360 | return S; |
12361 | case 236: |
12362 | tmp = fieldFromInstruction(insn, 24, 8); |
12363 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12364 | tmp = fieldFromInstruction(insn, 16, 8); |
12365 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12366 | tmp = fieldFromInstruction(insn, 8, 8); |
12367 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12368 | tmp = fieldFromInstruction(insn, 0, 8); |
12369 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12370 | tmp = fieldFromInstruction(insn, 48, 4); |
12371 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12372 | return S; |
12373 | case 237: |
12374 | tmp = fieldFromInstruction(insn, 24, 8); |
12375 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12376 | tmp = fieldFromInstruction(insn, 16, 8); |
12377 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12378 | tmp = fieldFromInstruction(insn, 40, 7); |
12379 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12380 | tmp = fieldFromInstruction(insn, 0, 8); |
12381 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12382 | return S; |
12383 | case 238: |
12384 | tmp = fieldFromInstruction(insn, 24, 8); |
12385 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12386 | tmp = fieldFromInstruction(insn, 16, 8); |
12387 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12388 | tmp = fieldFromInstruction(insn, 40, 7); |
12389 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12390 | tmp = fieldFromInstruction(insn, 0, 8); |
12391 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12392 | tmp = fieldFromInstruction(insn, 48, 4); |
12393 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12394 | return S; |
12395 | case 239: |
12396 | tmp = fieldFromInstruction(insn, 24, 8); |
12397 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12398 | tmp = fieldFromInstruction(insn, 16, 8); |
12399 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12400 | tmp = fieldFromInstruction(insn, 40, 7); |
12401 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12402 | tmp = fieldFromInstruction(insn, 0, 8); |
12403 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12404 | return S; |
12405 | case 240: |
12406 | tmp = fieldFromInstruction(insn, 24, 8); |
12407 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12408 | tmp = fieldFromInstruction(insn, 16, 8); |
12409 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12410 | tmp = fieldFromInstruction(insn, 40, 7); |
12411 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12412 | tmp = fieldFromInstruction(insn, 0, 8); |
12413 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12414 | tmp = fieldFromInstruction(insn, 48, 4); |
12415 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12416 | return S; |
12417 | case 241: |
12418 | tmp = fieldFromInstruction(insn, 24, 8); |
12419 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12420 | tmp = fieldFromInstruction(insn, 40, 7); |
12421 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12422 | tmp = fieldFromInstruction(insn, 8, 8); |
12423 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12424 | tmp = fieldFromInstruction(insn, 0, 8); |
12425 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12426 | return S; |
12427 | case 242: |
12428 | tmp = fieldFromInstruction(insn, 24, 8); |
12429 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12430 | tmp = fieldFromInstruction(insn, 40, 7); |
12431 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12432 | tmp = fieldFromInstruction(insn, 8, 8); |
12433 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12434 | tmp = fieldFromInstruction(insn, 0, 8); |
12435 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12436 | tmp = fieldFromInstruction(insn, 48, 4); |
12437 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12438 | return S; |
12439 | case 243: |
12440 | tmp = fieldFromInstruction(insn, 24, 8); |
12441 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12442 | tmp = fieldFromInstruction(insn, 40, 7); |
12443 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12444 | tmp = fieldFromInstruction(insn, 8, 8); |
12445 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12446 | tmp = fieldFromInstruction(insn, 0, 8); |
12447 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12448 | return S; |
12449 | case 244: |
12450 | tmp = fieldFromInstruction(insn, 24, 8); |
12451 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12452 | tmp = fieldFromInstruction(insn, 40, 7); |
12453 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12454 | tmp = fieldFromInstruction(insn, 8, 8); |
12455 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12456 | tmp = fieldFromInstruction(insn, 0, 8); |
12457 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12458 | tmp = fieldFromInstruction(insn, 48, 4); |
12459 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12460 | return S; |
12461 | case 245: |
12462 | tmp = fieldFromInstruction(insn, 24, 8); |
12463 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12464 | tmp = fieldFromInstruction(insn, 16, 8); |
12465 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12466 | tmp = fieldFromInstruction(insn, 40, 7); |
12467 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12468 | tmp = fieldFromInstruction(insn, 0, 8); |
12469 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12470 | return S; |
12471 | case 246: |
12472 | tmp = fieldFromInstruction(insn, 24, 8); |
12473 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12474 | tmp = fieldFromInstruction(insn, 16, 8); |
12475 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12476 | tmp = fieldFromInstruction(insn, 40, 7); |
12477 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12478 | tmp = fieldFromInstruction(insn, 0, 8); |
12479 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12480 | tmp = fieldFromInstruction(insn, 48, 4); |
12481 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12482 | return S; |
12483 | case 247: |
12484 | tmp = fieldFromInstruction(insn, 24, 8); |
12485 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12486 | tmp = fieldFromInstruction(insn, 40, 7); |
12487 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12488 | tmp = fieldFromInstruction(insn, 8, 8); |
12489 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12490 | tmp = fieldFromInstruction(insn, 0, 8); |
12491 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12492 | return S; |
12493 | case 248: |
12494 | tmp = fieldFromInstruction(insn, 24, 8); |
12495 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12496 | tmp = fieldFromInstruction(insn, 40, 7); |
12497 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12498 | tmp = fieldFromInstruction(insn, 8, 8); |
12499 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12500 | tmp = fieldFromInstruction(insn, 0, 8); |
12501 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12502 | tmp = fieldFromInstruction(insn, 48, 4); |
12503 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12504 | return S; |
12505 | case 249: |
12506 | tmp = fieldFromInstruction(insn, 24, 8); |
12507 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12508 | tmp = fieldFromInstruction(insn, 16, 8); |
12509 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12510 | tmp = fieldFromInstruction(insn, 8, 8); |
12511 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12512 | tmp = fieldFromInstruction(insn, 0, 8); |
12513 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12514 | tmp = fieldFromInstruction(insn, 48, 4); |
12515 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12516 | return S; |
12517 | case 250: |
12518 | tmp = fieldFromInstruction(insn, 24, 8); |
12519 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12520 | tmp = fieldFromInstruction(insn, 16, 8); |
12521 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12522 | tmp = fieldFromInstruction(insn, 40, 7); |
12523 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12524 | tmp = fieldFromInstruction(insn, 0, 8); |
12525 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12526 | tmp = fieldFromInstruction(insn, 48, 4); |
12527 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12528 | return S; |
12529 | case 251: |
12530 | tmp = fieldFromInstruction(insn, 24, 8); |
12531 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12532 | tmp = fieldFromInstruction(insn, 16, 8); |
12533 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12534 | tmp = fieldFromInstruction(insn, 40, 7); |
12535 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12536 | tmp = fieldFromInstruction(insn, 0, 8); |
12537 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12538 | tmp = fieldFromInstruction(insn, 48, 4); |
12539 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12540 | return S; |
12541 | case 252: |
12542 | tmp = fieldFromInstruction(insn, 24, 8); |
12543 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12544 | tmp = fieldFromInstruction(insn, 40, 7); |
12545 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12546 | tmp = fieldFromInstruction(insn, 8, 8); |
12547 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12548 | tmp = fieldFromInstruction(insn, 0, 8); |
12549 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12550 | tmp = fieldFromInstruction(insn, 48, 4); |
12551 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12552 | return S; |
12553 | case 253: |
12554 | tmp = fieldFromInstruction(insn, 24, 8); |
12555 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12556 | tmp = fieldFromInstruction(insn, 40, 7); |
12557 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12558 | tmp = fieldFromInstruction(insn, 8, 8); |
12559 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12560 | tmp = fieldFromInstruction(insn, 0, 8); |
12561 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12562 | tmp = fieldFromInstruction(insn, 48, 4); |
12563 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12564 | return S; |
12565 | case 254: |
12566 | tmp = fieldFromInstruction(insn, 24, 8); |
12567 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12568 | tmp = fieldFromInstruction(insn, 16, 8); |
12569 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12570 | tmp = fieldFromInstruction(insn, 8, 8); |
12571 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12572 | tmp = fieldFromInstruction(insn, 40, 7); |
12573 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12574 | tmp = fieldFromInstruction(insn, 48, 4); |
12575 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12576 | return S; |
12577 | case 255: |
12578 | tmp = fieldFromInstruction(insn, 24, 8); |
12579 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12580 | tmp = fieldFromInstruction(insn, 16, 8); |
12581 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12582 | tmp = fieldFromInstruction(insn, 8, 8); |
12583 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12584 | tmp = fieldFromInstruction(insn, 40, 7); |
12585 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12586 | tmp = fieldFromInstruction(insn, 48, 4); |
12587 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12588 | return S; |
12589 | case 256: |
12590 | tmp = fieldFromInstruction(insn, 24, 8); |
12591 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12592 | tmp = fieldFromInstruction(insn, 8, 8); |
12593 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12594 | tmp = fieldFromInstruction(insn, 40, 7); |
12595 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12596 | return S; |
12597 | case 257: |
12598 | tmp = fieldFromInstruction(insn, 24, 8); |
12599 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12600 | tmp = fieldFromInstruction(insn, 8, 8); |
12601 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12602 | tmp = fieldFromInstruction(insn, 40, 7); |
12603 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12604 | tmp = fieldFromInstruction(insn, 48, 4); |
12605 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12606 | return S; |
12607 | case 258: |
12608 | tmp = fieldFromInstruction(insn, 24, 8); |
12609 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12610 | tmp = fieldFromInstruction(insn, 8, 8); |
12611 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12612 | tmp = fieldFromInstruction(insn, 40, 7); |
12613 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12614 | return S; |
12615 | case 259: |
12616 | tmp = fieldFromInstruction(insn, 24, 8); |
12617 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12618 | tmp = fieldFromInstruction(insn, 8, 8); |
12619 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12620 | tmp = fieldFromInstruction(insn, 40, 7); |
12621 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12622 | tmp = fieldFromInstruction(insn, 48, 4); |
12623 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12624 | return S; |
12625 | case 260: |
12626 | tmp = fieldFromInstruction(insn, 24, 8); |
12627 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12628 | tmp = fieldFromInstruction(insn, 8, 8); |
12629 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12630 | tmp = fieldFromInstruction(insn, 16, 8); |
12631 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12632 | tmp = fieldFromInstruction(insn, 48, 4); |
12633 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12634 | return S; |
12635 | case 261: |
12636 | tmp = fieldFromInstruction(insn, 24, 8); |
12637 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12638 | tmp = fieldFromInstruction(insn, 8, 8); |
12639 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12640 | tmp = fieldFromInstruction(insn, 40, 7); |
12641 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
12642 | tmp = fieldFromInstruction(insn, 48, 4); |
12643 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12644 | return S; |
12645 | case 262: |
12646 | tmp = fieldFromInstruction(insn, 24, 8); |
12647 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12648 | tmp = fieldFromInstruction(insn, 8, 8); |
12649 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12650 | tmp = fieldFromInstruction(insn, 40, 7); |
12651 | if (!Check(S, DecodeI64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12652 | tmp = fieldFromInstruction(insn, 48, 4); |
12653 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12654 | return S; |
12655 | case 263: |
12656 | tmp = fieldFromInstruction(insn, 24, 8); |
12657 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12658 | tmp = fieldFromInstruction(insn, 8, 8); |
12659 | if (!Check(S, DecodeRDOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12660 | tmp = fieldFromInstruction(insn, 16, 8); |
12661 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12662 | tmp = fieldFromInstruction(insn, 48, 4); |
12663 | if (!Check(S, DecodeVM512RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12664 | return S; |
12665 | case 264: |
12666 | tmp = fieldFromInstruction(insn, 24, 8); |
12667 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12668 | tmp = fieldFromInstruction(insn, 16, 8); |
12669 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12670 | tmp = fieldFromInstruction(insn, 40, 7); |
12671 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12672 | return S; |
12673 | case 265: |
12674 | tmp = fieldFromInstruction(insn, 24, 8); |
12675 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12676 | tmp = fieldFromInstruction(insn, 16, 8); |
12677 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12678 | tmp = fieldFromInstruction(insn, 40, 7); |
12679 | if (!Check(S, DecodeI32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12680 | tmp = fieldFromInstruction(insn, 48, 4); |
12681 | if (!Check(S, DecodeVMRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12682 | return S; |
12683 | case 266: |
12684 | tmp = fieldFromInstruction(insn, 24, 8); |
12685 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12686 | tmp = fieldFromInstruction(insn, 16, 8); |
12687 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12688 | tmp = fieldFromInstruction(insn, 8, 8); |
12689 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12690 | tmp = fieldFromInstruction(insn, 40, 7); |
12691 | if (!Check(S, DecodeSIMM7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12692 | return S; |
12693 | case 267: |
12694 | tmp = fieldFromInstruction(insn, 24, 8); |
12695 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12696 | tmp = fieldFromInstruction(insn, 16, 8); |
12697 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12698 | tmp = fieldFromInstruction(insn, 8, 8); |
12699 | if (!Check(S, DecodeV64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12700 | tmp = fieldFromInstruction(insn, 40, 7); |
12701 | if (!Check(S, DecodeF32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
12702 | return S; |
12703 | } |
12704 | } |
12705 | |
12706 | static unsigned decodeNumToSkip(const uint8_t *&Ptr) { |
12707 | unsigned NumToSkip = *Ptr++; |
12708 | NumToSkip |= (*Ptr++) << 8; |
12709 | return NumToSkip; |
12710 | } |
12711 | |
12712 | template <typename InsnType> |
12713 | static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, |
12714 | InsnType insn, uint64_t Address, |
12715 | const MCDisassembler *DisAsm, |
12716 | const MCSubtargetInfo &STI) { |
12717 | |
12718 | const uint8_t *Ptr = DecodeTable; |
12719 | uint64_t CurFieldValue = 0; |
12720 | DecodeStatus S = MCDisassembler::Success; |
12721 | while (true) { |
12722 | ptrdiff_t Loc = Ptr - DecodeTable; |
12723 | const uint8_t DecoderOp = *Ptr++; |
12724 | switch (DecoderOp) { |
12725 | default: |
12726 | errs() << Loc << ": Unexpected decode table opcode: " |
12727 | << (int)DecoderOp << '\n'; |
12728 | return MCDisassembler::Fail; |
12729 | case MCD::OPC_ExtractField: { |
12730 | // Decode the start value. |
12731 | unsigned Start = decodeULEB128AndIncUnsafe(p&: Ptr); |
12732 | unsigned Len = *Ptr++; |
12733 | CurFieldValue = fieldFromInstruction(insn, Start, Len); |
12734 | LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " |
12735 | << Len << "): " << CurFieldValue << "\n" ); |
12736 | break; |
12737 | } |
12738 | case MCD::OPC_FilterValue: |
12739 | case MCD::OPC_FilterValueOrFail: { |
12740 | bool IsFail = DecoderOp == MCD::OPC_FilterValueOrFail; |
12741 | // Decode the field value. |
12742 | uint64_t Val = decodeULEB128AndIncUnsafe(p&: Ptr); |
12743 | bool Failed = Val != CurFieldValue; |
12744 | unsigned NumToSkip = IsFail ? 0 : decodeNumToSkip(Ptr); |
12745 | |
12746 | // Note: Print NumToSkip even for OPC_FilterValueOrFail to simplify debug |
12747 | // prints. |
12748 | LLVM_DEBUG({ |
12749 | StringRef OpName = IsFail ? "OPC_FilterValueOrFail" : "OPC_FilterValue" ; |
12750 | dbgs() << Loc << ": " << OpName << '(' << Val << ", " << NumToSkip |
12751 | << ") " << (Failed ? "FAIL:" : "PASS:" ) |
12752 | << " continuing at " << (Ptr - DecodeTable) << '\n'; |
12753 | }); |
12754 | |
12755 | // Perform the filter operation. |
12756 | if (Failed) { |
12757 | if (IsFail) |
12758 | return MCDisassembler::Fail; |
12759 | Ptr += NumToSkip; |
12760 | } |
12761 | break; |
12762 | } |
12763 | case MCD::OPC_CheckField: |
12764 | case MCD::OPC_CheckFieldOrFail: { |
12765 | bool IsFail = DecoderOp == MCD::OPC_CheckFieldOrFail; |
12766 | // Decode the start value. |
12767 | unsigned Start = decodeULEB128AndIncUnsafe(p&: Ptr); |
12768 | unsigned Len = *Ptr; |
12769 | uint64_t FieldValue = fieldFromInstruction(insn, Start, Len); |
12770 | // Decode the field value. |
12771 | unsigned PtrLen = 0; |
12772 | uint64_t ExpectedValue = decodeULEB128(p: ++Ptr, n: &PtrLen); |
12773 | Ptr += PtrLen; |
12774 | bool Failed = ExpectedValue != FieldValue; |
12775 | unsigned NumToSkip = IsFail ? 0 : decodeNumToSkip(Ptr); |
12776 | |
12777 | LLVM_DEBUG({ |
12778 | StringRef OpName = IsFail ? "OPC_CheckFieldOrFail" : "OPC_CheckField" ; |
12779 | dbgs() << Loc << ": " << OpName << '(' << Start << ", " << Len << ", " |
12780 | << ExpectedValue << ", " << NumToSkip << "): FieldValue = " |
12781 | << FieldValue << ", ExpectedValue = " << ExpectedValue << ": " |
12782 | << (Failed ? "FAIL\n" : "PASS\n" ); |
12783 | }); |
12784 | |
12785 | // If the actual and expected values don't match, skip or fail. |
12786 | if (Failed) { |
12787 | if (IsFail) |
12788 | return MCDisassembler::Fail; |
12789 | Ptr += NumToSkip; |
12790 | } |
12791 | break; |
12792 | } |
12793 | case MCD::OPC_Decode: { |
12794 | // Decode the Opcode value. |
12795 | unsigned Opc = decodeULEB128AndIncUnsafe(p&: Ptr); |
12796 | unsigned DecodeIdx = decodeULEB128AndIncUnsafe(p&: Ptr); |
12797 | |
12798 | MI.clear(); |
12799 | MI.setOpcode(Opc); |
12800 | bool DecodeComplete; |
12801 | S = decodeToMCInst(DecodeIdx, S, insn, MI, Address, DisAsm, DecodeComplete); |
12802 | assert(DecodeComplete); |
12803 | |
12804 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc |
12805 | << ", using decoder " << DecodeIdx << ": " |
12806 | << (S != MCDisassembler::Fail ? "PASS\n" : "FAIL\n" )); |
12807 | return S; |
12808 | } |
12809 | case MCD::OPC_Fail: { |
12810 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n" ); |
12811 | return MCDisassembler::Fail; |
12812 | } |
12813 | } |
12814 | } |
12815 | llvm_unreachable("bogosity detected in disassembler state machine!" ); |
12816 | } |
12817 | |
12818 | |
12819 | } // namespace |
12820 | |