1 | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ |
2 | |* *| |
3 | |* * Mips Disassembler *| |
4 | |* *| |
5 | |* Automatically generated file, do not edit! *| |
6 | |* *| |
7 | \*===----------------------------------------------------------------------===*/ |
8 | |
9 | |
10 | #include "llvm/MC/MCInst.h" |
11 | #include "llvm/MC/MCSubtargetInfo.h" |
12 | #include "llvm/Support/DataTypes.h" |
13 | #include "llvm/Support/Debug.h" |
14 | #include "llvm/Support/LEB128.h" |
15 | #include "llvm/Support/raw_ostream.h" |
16 | #include "llvm/TargetParser/SubtargetFeature.h" |
17 | #include <assert.h> |
18 | |
19 | namespace llvm { |
20 | |
21 | // Helper functions for extracting fields from encoded instructions. |
22 | // InsnType must either be integral or an APInt-like object that must: |
23 | // * be default-constructible and copy-constructible |
24 | // * be constructible from an APInt (this can be private) |
25 | // * Support insertBits(bits, startBit, numBits) |
26 | // * Support extractBitsAsZExtValue(numBits, startBit) |
27 | // * Support the ~, &, ==, and != operators with other objects of the same type |
28 | // * Support the != and bitwise & with uint64_t |
29 | // * Support put (<<) to raw_ostream& |
30 | template <typename InsnType> |
31 | #if defined(_MSC_VER) && !defined(__clang__) |
32 | __declspec(noinline) |
33 | #endif |
34 | static std::enable_if_t<std::is_integral<InsnType>::value, InsnType> |
35 | fieldFromInstruction(const InsnType &insn, unsigned startBit, |
36 | unsigned numBits) { |
37 | assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!" ); |
38 | assert(startBit + numBits <= (sizeof(InsnType) * 8) && |
39 | "Instruction field out of bounds!" ); |
40 | InsnType fieldMask; |
41 | if (numBits == sizeof(InsnType) * 8) |
42 | fieldMask = (InsnType)(-1LL); |
43 | else |
44 | fieldMask = (((InsnType)1 << numBits) - 1) << startBit; |
45 | return (insn & fieldMask) >> startBit; |
46 | } |
47 | |
48 | template <typename InsnType> |
49 | static std::enable_if_t<!std::is_integral<InsnType>::value, uint64_t> |
50 | fieldFromInstruction(const InsnType &insn, unsigned startBit, |
51 | unsigned numBits) { |
52 | return insn.extractBitsAsZExtValue(numBits, startBit); |
53 | } |
54 | |
55 | // Helper function for inserting bits extracted from an encoded instruction into |
56 | // a field. |
57 | template <typename InsnType> |
58 | static std::enable_if_t<std::is_integral<InsnType>::value> |
59 | insertBits(InsnType &field, InsnType bits, unsigned startBit, unsigned numBits) { |
60 | assert(startBit + numBits <= sizeof field * 8); |
61 | field |= (InsnType)bits << startBit; |
62 | } |
63 | |
64 | template <typename InsnType> |
65 | static std::enable_if_t<!std::is_integral<InsnType>::value> |
66 | insertBits(InsnType &field, uint64_t bits, unsigned startBit, unsigned numBits) { |
67 | field.insertBits(bits, startBit, numBits); |
68 | } |
69 | |
70 | static bool Check(DecodeStatus &Out, DecodeStatus In) { |
71 | Out = static_cast<DecodeStatus>(Out & In); |
72 | return Out != MCDisassembler::Fail; |
73 | } |
74 | |
75 | static const uint8_t DecoderTable16[] = { |
76 | /* 0 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
77 | /* 3 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 17 |
78 | /* 8 */ MCD::OPC_CheckPredicate, 0, 92, 2, 0, // Skip to: 617 |
79 | /* 13 */ MCD::OPC_Decode, 183, 8, 0, // Opcode: Bimm16 |
80 | /* 17 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 31 |
81 | /* 22 */ MCD::OPC_CheckPredicate, 0, 78, 2, 0, // Skip to: 617 |
82 | /* 27 */ MCD::OPC_Decode, 181, 8, 1, // Opcode: BeqzRxImm16 |
83 | /* 31 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 45 |
84 | /* 36 */ MCD::OPC_CheckPredicate, 0, 64, 2, 0, // Skip to: 617 |
85 | /* 41 */ MCD::OPC_Decode, 185, 8, 1, // Opcode: BnezRxImm16 |
86 | /* 45 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 59 |
87 | /* 50 */ MCD::OPC_CheckPredicate, 0, 50, 2, 0, // Skip to: 617 |
88 | /* 55 */ MCD::OPC_Decode, 244, 6, 2, // Opcode: AddiuRxRxImm16 |
89 | /* 59 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 73 |
90 | /* 64 */ MCD::OPC_CheckPredicate, 0, 36, 2, 0, // Skip to: 617 |
91 | /* 69 */ MCD::OPC_Decode, 230, 21, 3, // Opcode: SltiRxImm16 |
92 | /* 73 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 87 |
93 | /* 78 */ MCD::OPC_CheckPredicate, 0, 22, 2, 0, // Skip to: 617 |
94 | /* 83 */ MCD::OPC_Decode, 232, 21, 3, // Opcode: SltiuRxImm16 |
95 | /* 87 */ MCD::OPC_FilterValue, 12, 73, 0, 0, // Skip to: 165 |
96 | /* 92 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
97 | /* 95 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 109 |
98 | /* 100 */ MCD::OPC_CheckPredicate, 0, 0, 2, 0, // Skip to: 617 |
99 | /* 105 */ MCD::OPC_Decode, 188, 8, 4, // Opcode: Bteqz16 |
100 | /* 109 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 123 |
101 | /* 114 */ MCD::OPC_CheckPredicate, 0, 242, 1, 0, // Skip to: 617 |
102 | /* 119 */ MCD::OPC_Decode, 190, 8, 4, // Opcode: Btnez16 |
103 | /* 123 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 137 |
104 | /* 128 */ MCD::OPC_CheckPredicate, 0, 228, 1, 0, // Skip to: 617 |
105 | /* 133 */ MCD::OPC_Decode, 247, 6, 4, // Opcode: AddiuSpImm16 |
106 | /* 137 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 151 |
107 | /* 142 */ MCD::OPC_CheckPredicate, 0, 214, 1, 0, // Skip to: 617 |
108 | /* 147 */ MCD::OPC_Decode, 234, 17, 5, // Opcode: Move32R16 |
109 | /* 151 */ MCD::OPC_FilterValue, 7, 205, 1, 0, // Skip to: 617 |
110 | /* 156 */ MCD::OPC_CheckPredicate, 0, 200, 1, 0, // Skip to: 617 |
111 | /* 161 */ MCD::OPC_Decode, 235, 17, 6, // Opcode: MoveR3216 |
112 | /* 165 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 179 |
113 | /* 170 */ MCD::OPC_CheckPredicate, 0, 186, 1, 0, // Skip to: 617 |
114 | /* 175 */ MCD::OPC_Decode, 188, 15, 3, // Opcode: LiRxImm16 |
115 | /* 179 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 193 |
116 | /* 184 */ MCD::OPC_CheckPredicate, 0, 172, 1, 0, // Skip to: 617 |
117 | /* 189 */ MCD::OPC_Decode, 254, 10, 3, // Opcode: CmpiRxImm16 |
118 | /* 193 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 207 |
119 | /* 198 */ MCD::OPC_CheckPredicate, 0, 158, 1, 0, // Skip to: 617 |
120 | /* 203 */ MCD::OPC_Decode, 191, 15, 7, // Opcode: LwRxPcTcp16 |
121 | /* 207 */ MCD::OPC_FilterValue, 28, 31, 0, 0, // Skip to: 243 |
122 | /* 212 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... |
123 | /* 215 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 229 |
124 | /* 220 */ MCD::OPC_CheckPredicate, 0, 136, 1, 0, // Skip to: 617 |
125 | /* 225 */ MCD::OPC_Decode, 249, 6, 8, // Opcode: AdduRxRyRz16 |
126 | /* 229 */ MCD::OPC_FilterValue, 3, 127, 1, 0, // Skip to: 617 |
127 | /* 234 */ MCD::OPC_CheckPredicate, 0, 122, 1, 0, // Skip to: 617 |
128 | /* 239 */ MCD::OPC_Decode, 239, 21, 8, // Opcode: SubuRxRyRz16 |
129 | /* 243 */ MCD::OPC_FilterValue, 29, 113, 1, 0, // Skip to: 617 |
130 | /* 248 */ MCD::OPC_ExtractField, 0, 5, // Inst{4-0} ... |
131 | /* 251 */ MCD::OPC_FilterValue, 0, 80, 0, 0, // Skip to: 336 |
132 | /* 256 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... |
133 | /* 259 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 273 |
134 | /* 264 */ MCD::OPC_CheckPredicate, 0, 92, 1, 0, // Skip to: 617 |
135 | /* 269 */ MCD::OPC_Decode, 194, 14, 9, // Opcode: JumpLinkReg16 |
136 | /* 273 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 294 |
137 | /* 278 */ MCD::OPC_CheckPredicate, 0, 78, 1, 0, // Skip to: 617 |
138 | /* 283 */ MCD::OPC_CheckField, 8, 3, 0, 71, 1, 0, // Skip to: 617 |
139 | /* 290 */ MCD::OPC_Decode, 191, 14, 10, // Opcode: JrRa16 |
140 | /* 294 */ MCD::OPC_FilterValue, 6, 16, 0, 0, // Skip to: 315 |
141 | /* 299 */ MCD::OPC_CheckPredicate, 0, 57, 1, 0, // Skip to: 617 |
142 | /* 304 */ MCD::OPC_CheckField, 8, 3, 0, 50, 1, 0, // Skip to: 617 |
143 | /* 311 */ MCD::OPC_Decode, 193, 14, 10, // Opcode: JrcRx16 |
144 | /* 315 */ MCD::OPC_FilterValue, 7, 41, 1, 0, // Skip to: 617 |
145 | /* 320 */ MCD::OPC_CheckPredicate, 0, 36, 1, 0, // Skip to: 617 |
146 | /* 325 */ MCD::OPC_CheckField, 8, 3, 0, 29, 1, 0, // Skip to: 617 |
147 | /* 332 */ MCD::OPC_Decode, 192, 14, 10, // Opcode: JrcRa16 |
148 | /* 336 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 350 |
149 | /* 341 */ MCD::OPC_CheckPredicate, 0, 15, 1, 0, // Skip to: 617 |
150 | /* 346 */ MCD::OPC_Decode, 229, 21, 11, // Opcode: SltRxRy16 |
151 | /* 350 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 364 |
152 | /* 355 */ MCD::OPC_CheckPredicate, 0, 1, 1, 0, // Skip to: 617 |
153 | /* 360 */ MCD::OPC_Decode, 234, 21, 11, // Opcode: SltuRxRy16 |
154 | /* 364 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 378 |
155 | /* 369 */ MCD::OPC_CheckPredicate, 0, 243, 0, 0, // Skip to: 617 |
156 | /* 374 */ MCD::OPC_Decode, 228, 21, 12, // Opcode: SllvRxRy16 |
157 | /* 378 */ MCD::OPC_FilterValue, 5, 16, 0, 0, // Skip to: 399 |
158 | /* 383 */ MCD::OPC_CheckPredicate, 0, 229, 0, 0, // Skip to: 617 |
159 | /* 388 */ MCD::OPC_CheckField, 5, 6, 0, 222, 0, 0, // Skip to: 617 |
160 | /* 395 */ MCD::OPC_Decode, 187, 8, 10, // Opcode: Break16 |
161 | /* 399 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 413 |
162 | /* 404 */ MCD::OPC_CheckPredicate, 0, 208, 0, 0, // Skip to: 617 |
163 | /* 409 */ MCD::OPC_Decode, 238, 21, 12, // Opcode: SrlvRxRy16 |
164 | /* 413 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 427 |
165 | /* 418 */ MCD::OPC_CheckPredicate, 0, 194, 0, 0, // Skip to: 617 |
166 | /* 423 */ MCD::OPC_Decode, 236, 21, 12, // Opcode: SravRxRy16 |
167 | /* 427 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 441 |
168 | /* 432 */ MCD::OPC_CheckPredicate, 0, 180, 0, 0, // Skip to: 617 |
169 | /* 437 */ MCD::OPC_Decode, 253, 10, 11, // Opcode: CmpRxRy16 |
170 | /* 441 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 455 |
171 | /* 446 */ MCD::OPC_CheckPredicate, 0, 166, 0, 0, // Skip to: 617 |
172 | /* 451 */ MCD::OPC_Decode, 250, 6, 12, // Opcode: AndRxRxRy16 |
173 | /* 455 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 469 |
174 | /* 460 */ MCD::OPC_CheckPredicate, 0, 152, 0, 0, // Skip to: 617 |
175 | /* 465 */ MCD::OPC_Decode, 149, 18, 12, // Opcode: OrRxRxRy16 |
176 | /* 469 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 483 |
177 | /* 474 */ MCD::OPC_CheckPredicate, 0, 138, 0, 0, // Skip to: 617 |
178 | /* 479 */ MCD::OPC_Decode, 203, 22, 12, // Opcode: XorRxRxRy16 |
179 | /* 483 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 497 |
180 | /* 488 */ MCD::OPC_CheckPredicate, 0, 124, 0, 0, // Skip to: 617 |
181 | /* 493 */ MCD::OPC_Decode, 136, 18, 11, // Opcode: NotRxRy16 |
182 | /* 497 */ MCD::OPC_FilterValue, 16, 16, 0, 0, // Skip to: 518 |
183 | /* 502 */ MCD::OPC_CheckPredicate, 0, 110, 0, 0, // Skip to: 617 |
184 | /* 507 */ MCD::OPC_CheckField, 5, 3, 0, 103, 0, 0, // Skip to: 617 |
185 | /* 514 */ MCD::OPC_Decode, 232, 17, 9, // Opcode: Mfhi16 |
186 | /* 518 */ MCD::OPC_FilterValue, 17, 31, 0, 0, // Skip to: 554 |
187 | /* 523 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... |
188 | /* 526 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 540 |
189 | /* 531 */ MCD::OPC_CheckPredicate, 0, 81, 0, 0, // Skip to: 617 |
190 | /* 536 */ MCD::OPC_Decode, 224, 21, 13, // Opcode: SebRx16 |
191 | /* 540 */ MCD::OPC_FilterValue, 5, 72, 0, 0, // Skip to: 617 |
192 | /* 545 */ MCD::OPC_CheckPredicate, 0, 67, 0, 0, // Skip to: 617 |
193 | /* 550 */ MCD::OPC_Decode, 225, 21, 13, // Opcode: SehRx16 |
194 | /* 554 */ MCD::OPC_FilterValue, 18, 16, 0, 0, // Skip to: 575 |
195 | /* 559 */ MCD::OPC_CheckPredicate, 0, 53, 0, 0, // Skip to: 617 |
196 | /* 564 */ MCD::OPC_CheckField, 5, 3, 0, 46, 0, 0, // Skip to: 617 |
197 | /* 571 */ MCD::OPC_Decode, 233, 17, 9, // Opcode: Mflo16 |
198 | /* 575 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 589 |
199 | /* 580 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 617 |
200 | /* 585 */ MCD::OPC_Decode, 135, 12, 11, // Opcode: DivRxRy16 |
201 | /* 589 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 603 |
202 | /* 594 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 617 |
203 | /* 599 */ MCD::OPC_Decode, 136, 12, 11, // Opcode: DivuRxRy16 |
204 | /* 603 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 617 |
205 | /* 608 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 617 |
206 | /* 613 */ MCD::OPC_Decode, 135, 18, 11, // Opcode: NegRxRy16 |
207 | /* 617 */ MCD::OPC_Fail, |
208 | 0 |
209 | }; |
210 | |
211 | static const uint8_t DecoderTable32[] = { |
212 | /* 0 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
213 | /* 3 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 31 |
214 | /* 8 */ MCD::OPC_CheckPredicate, 0, 2, 2, 0, // Skip to: 527 |
215 | /* 13 */ MCD::OPC_CheckField, 27, 5, 30, 251, 1, 0, // Skip to: 527 |
216 | /* 20 */ MCD::OPC_CheckField, 5, 3, 0, 244, 1, 0, // Skip to: 527 |
217 | /* 27 */ MCD::OPC_Decode, 243, 6, 14, // Opcode: AddiuRxPcImmX16 |
218 | /* 31 */ MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 59 |
219 | /* 36 */ MCD::OPC_CheckPredicate, 0, 230, 1, 0, // Skip to: 527 |
220 | /* 41 */ MCD::OPC_CheckField, 27, 5, 30, 223, 1, 0, // Skip to: 527 |
221 | /* 48 */ MCD::OPC_CheckField, 5, 6, 0, 216, 1, 0, // Skip to: 527 |
222 | /* 55 */ MCD::OPC_Decode, 184, 8, 15, // Opcode: BimmX16 |
223 | /* 59 */ MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 87 |
224 | /* 64 */ MCD::OPC_CheckPredicate, 0, 202, 1, 0, // Skip to: 527 |
225 | /* 69 */ MCD::OPC_CheckField, 27, 5, 30, 195, 1, 0, // Skip to: 527 |
226 | /* 76 */ MCD::OPC_CheckField, 5, 3, 0, 188, 1, 0, // Skip to: 527 |
227 | /* 83 */ MCD::OPC_Decode, 182, 8, 16, // Opcode: BeqzRxImmX16 |
228 | /* 87 */ MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 115 |
229 | /* 92 */ MCD::OPC_CheckPredicate, 0, 174, 1, 0, // Skip to: 527 |
230 | /* 97 */ MCD::OPC_CheckField, 27, 5, 30, 167, 1, 0, // Skip to: 527 |
231 | /* 104 */ MCD::OPC_CheckField, 5, 3, 0, 160, 1, 0, // Skip to: 527 |
232 | /* 111 */ MCD::OPC_Decode, 186, 8, 16, // Opcode: BnezRxImmX16 |
233 | /* 115 */ MCD::OPC_FilterValue, 6, 106, 0, 0, // Skip to: 226 |
234 | /* 120 */ MCD::OPC_ExtractField, 27, 5, // Inst{31-27} ... |
235 | /* 123 */ MCD::OPC_FilterValue, 30, 143, 1, 0, // Skip to: 527 |
236 | /* 128 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
237 | /* 131 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 181 |
238 | /* 136 */ MCD::OPC_ExtractField, 0, 5, // Inst{4-0} ... |
239 | /* 139 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 153 |
240 | /* 144 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 181 |
241 | /* 149 */ MCD::OPC_Decode, 227, 21, 17, // Opcode: SllX16 |
242 | /* 153 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 167 |
243 | /* 158 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 181 |
244 | /* 163 */ MCD::OPC_Decode, 237, 21, 17, // Opcode: SrlX16 |
245 | /* 167 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 181 |
246 | /* 172 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 181 |
247 | /* 177 */ MCD::OPC_Decode, 235, 21, 17, // Opcode: SraX16 |
248 | /* 181 */ MCD::OPC_ExtractField, 5, 6, // Inst{10-5} ... |
249 | /* 184 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 198 |
250 | /* 189 */ MCD::OPC_CheckPredicate, 0, 77, 1, 0, // Skip to: 527 |
251 | /* 194 */ MCD::OPC_Decode, 189, 8, 18, // Opcode: BteqzX16 |
252 | /* 198 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 212 |
253 | /* 203 */ MCD::OPC_CheckPredicate, 0, 63, 1, 0, // Skip to: 527 |
254 | /* 208 */ MCD::OPC_Decode, 191, 8, 18, // Opcode: BtnezX16 |
255 | /* 212 */ MCD::OPC_FilterValue, 24, 54, 1, 0, // Skip to: 527 |
256 | /* 217 */ MCD::OPC_CheckPredicate, 0, 49, 1, 0, // Skip to: 527 |
257 | /* 222 */ MCD::OPC_Decode, 248, 6, 18, // Opcode: AddiuSpImmX16 |
258 | /* 226 */ MCD::OPC_FilterValue, 8, 23, 0, 0, // Skip to: 254 |
259 | /* 231 */ MCD::OPC_CheckPredicate, 0, 35, 1, 0, // Skip to: 527 |
260 | /* 236 */ MCD::OPC_CheckField, 27, 5, 30, 28, 1, 0, // Skip to: 527 |
261 | /* 243 */ MCD::OPC_CheckField, 4, 1, 0, 21, 1, 0, // Skip to: 527 |
262 | /* 250 */ MCD::OPC_Decode, 246, 6, 19, // Opcode: AddiuRxRyOffMemX16 |
263 | /* 254 */ MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 282 |
264 | /* 259 */ MCD::OPC_CheckPredicate, 0, 7, 1, 0, // Skip to: 527 |
265 | /* 264 */ MCD::OPC_CheckField, 27, 5, 30, 0, 1, 0, // Skip to: 527 |
266 | /* 271 */ MCD::OPC_CheckField, 5, 3, 0, 249, 0, 0, // Skip to: 527 |
267 | /* 278 */ MCD::OPC_Decode, 242, 6, 14, // Opcode: AddiuRxImmX16 |
268 | /* 282 */ MCD::OPC_FilterValue, 10, 23, 0, 0, // Skip to: 310 |
269 | /* 287 */ MCD::OPC_CheckPredicate, 0, 235, 0, 0, // Skip to: 527 |
270 | /* 292 */ MCD::OPC_CheckField, 27, 5, 30, 228, 0, 0, // Skip to: 527 |
271 | /* 299 */ MCD::OPC_CheckField, 5, 3, 0, 221, 0, 0, // Skip to: 527 |
272 | /* 306 */ MCD::OPC_Decode, 231, 21, 14, // Opcode: SltiRxImmX16 |
273 | /* 310 */ MCD::OPC_FilterValue, 11, 23, 0, 0, // Skip to: 338 |
274 | /* 315 */ MCD::OPC_CheckPredicate, 0, 207, 0, 0, // Skip to: 527 |
275 | /* 320 */ MCD::OPC_CheckField, 27, 5, 30, 200, 0, 0, // Skip to: 527 |
276 | /* 327 */ MCD::OPC_CheckField, 5, 3, 0, 193, 0, 0, // Skip to: 527 |
277 | /* 334 */ MCD::OPC_Decode, 233, 21, 14, // Opcode: SltiuRxImmX16 |
278 | /* 338 */ MCD::OPC_FilterValue, 13, 23, 0, 0, // Skip to: 366 |
279 | /* 343 */ MCD::OPC_CheckPredicate, 0, 179, 0, 0, // Skip to: 527 |
280 | /* 348 */ MCD::OPC_CheckField, 27, 5, 30, 172, 0, 0, // Skip to: 527 |
281 | /* 355 */ MCD::OPC_CheckField, 5, 3, 0, 165, 0, 0, // Skip to: 527 |
282 | /* 362 */ MCD::OPC_Decode, 190, 15, 14, // Opcode: LiRxImmX16 |
283 | /* 366 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 394 |
284 | /* 371 */ MCD::OPC_CheckPredicate, 0, 151, 0, 0, // Skip to: 527 |
285 | /* 376 */ MCD::OPC_CheckField, 27, 5, 30, 144, 0, 0, // Skip to: 527 |
286 | /* 383 */ MCD::OPC_CheckField, 5, 3, 0, 137, 0, 0, // Skip to: 527 |
287 | /* 390 */ MCD::OPC_Decode, 255, 10, 14, // Opcode: CmpiRxImmX16 |
288 | /* 394 */ MCD::OPC_FilterValue, 18, 16, 0, 0, // Skip to: 415 |
289 | /* 399 */ MCD::OPC_CheckPredicate, 0, 123, 0, 0, // Skip to: 527 |
290 | /* 404 */ MCD::OPC_CheckField, 27, 5, 30, 116, 0, 0, // Skip to: 527 |
291 | /* 411 */ MCD::OPC_Decode, 194, 15, 19, // Opcode: LwRxSpImmX16 |
292 | /* 415 */ MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 443 |
293 | /* 420 */ MCD::OPC_CheckPredicate, 0, 102, 0, 0, // Skip to: 527 |
294 | /* 425 */ MCD::OPC_CheckField, 27, 5, 30, 95, 0, 0, // Skip to: 527 |
295 | /* 432 */ MCD::OPC_CheckField, 5, 3, 0, 88, 0, 0, // Skip to: 527 |
296 | /* 439 */ MCD::OPC_Decode, 192, 15, 20, // Opcode: LwRxPcTcpX16 |
297 | /* 443 */ MCD::OPC_FilterValue, 24, 16, 0, 0, // Skip to: 464 |
298 | /* 448 */ MCD::OPC_CheckPredicate, 0, 74, 0, 0, // Skip to: 527 |
299 | /* 453 */ MCD::OPC_CheckField, 27, 5, 30, 67, 0, 0, // Skip to: 527 |
300 | /* 460 */ MCD::OPC_Decode, 223, 21, 19, // Opcode: SbRxRyOffMemX16 |
301 | /* 464 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 485 |
302 | /* 469 */ MCD::OPC_CheckPredicate, 0, 53, 0, 0, // Skip to: 527 |
303 | /* 474 */ MCD::OPC_CheckField, 27, 5, 30, 46, 0, 0, // Skip to: 527 |
304 | /* 481 */ MCD::OPC_Decode, 226, 21, 19, // Opcode: ShRxRyOffMemX16 |
305 | /* 485 */ MCD::OPC_FilterValue, 26, 16, 0, 0, // Skip to: 506 |
306 | /* 490 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 527 |
307 | /* 495 */ MCD::OPC_CheckField, 27, 5, 30, 25, 0, 0, // Skip to: 527 |
308 | /* 502 */ MCD::OPC_Decode, 241, 21, 19, // Opcode: SwRxSpImmX16 |
309 | /* 506 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 527 |
310 | /* 511 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 527 |
311 | /* 516 */ MCD::OPC_CheckField, 27, 5, 30, 4, 0, 0, // Skip to: 527 |
312 | /* 523 */ MCD::OPC_Decode, 240, 21, 19, // Opcode: SwRxRyOffMemX16 |
313 | /* 527 */ MCD::OPC_Fail, |
314 | 0 |
315 | }; |
316 | |
317 | static const uint8_t DecoderTableCOP3_32[] = { |
318 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
319 | /* 3 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 17 |
320 | /* 8 */ MCD::OPC_CheckPredicate, 1, 46, 0, 0, // Skip to: 59 |
321 | /* 13 */ MCD::OPC_Decode, 151, 15, 21, // Opcode: LWC3 |
322 | /* 17 */ MCD::OPC_FilterValue, 55, 9, 0, 0, // Skip to: 31 |
323 | /* 22 */ MCD::OPC_CheckPredicate, 2, 32, 0, 0, // Skip to: 59 |
324 | /* 27 */ MCD::OPC_Decode, 219, 14, 21, // Opcode: LDC3 |
325 | /* 31 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 45 |
326 | /* 36 */ MCD::OPC_CheckPredicate, 1, 18, 0, 0, // Skip to: 59 |
327 | /* 41 */ MCD::OPC_Decode, 188, 21, 21, // Opcode: SWC3 |
328 | /* 45 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 59 |
329 | /* 50 */ MCD::OPC_CheckPredicate, 2, 4, 0, 0, // Skip to: 59 |
330 | /* 55 */ MCD::OPC_Decode, 184, 19, 21, // Opcode: SDC3 |
331 | /* 59 */ MCD::OPC_Fail, |
332 | 0 |
333 | }; |
334 | |
335 | static const uint8_t DecoderTableCnMips32[] = { |
336 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
337 | /* 3 */ MCD::OPC_FilterValue, 18, 31, 0, 0, // Skip to: 39 |
338 | /* 8 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
339 | /* 11 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 25 |
340 | /* 16 */ MCD::OPC_CheckPredicate, 3, 239, 1, 0, // Skip to: 516 |
341 | /* 21 */ MCD::OPC_Decode, 173, 11, 22, // Opcode: DMFC2_OCTEON |
342 | /* 25 */ MCD::OPC_FilterValue, 5, 230, 1, 0, // Skip to: 516 |
343 | /* 30 */ MCD::OPC_CheckPredicate, 3, 225, 1, 0, // Skip to: 516 |
344 | /* 35 */ MCD::OPC_Decode, 181, 11, 22, // Opcode: DMTC2_OCTEON |
345 | /* 39 */ MCD::OPC_FilterValue, 28, 160, 1, 0, // Skip to: 460 |
346 | /* 44 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
347 | /* 47 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 68 |
348 | /* 52 */ MCD::OPC_CheckPredicate, 3, 203, 1, 0, // Skip to: 516 |
349 | /* 57 */ MCD::OPC_CheckField, 6, 5, 0, 196, 1, 0, // Skip to: 516 |
350 | /* 64 */ MCD::OPC_Decode, 185, 11, 23, // Opcode: DMUL |
351 | /* 68 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 89 |
352 | /* 73 */ MCD::OPC_CheckPredicate, 3, 182, 1, 0, // Skip to: 516 |
353 | /* 78 */ MCD::OPC_CheckField, 6, 15, 0, 175, 1, 0, // Skip to: 516 |
354 | /* 85 */ MCD::OPC_Decode, 174, 17, 24, // Opcode: MTM0 |
355 | /* 89 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 110 |
356 | /* 94 */ MCD::OPC_CheckPredicate, 3, 161, 1, 0, // Skip to: 516 |
357 | /* 99 */ MCD::OPC_CheckField, 6, 15, 0, 154, 1, 0, // Skip to: 516 |
358 | /* 106 */ MCD::OPC_Decode, 177, 17, 24, // Opcode: MTP0 |
359 | /* 110 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 131 |
360 | /* 115 */ MCD::OPC_CheckPredicate, 3, 140, 1, 0, // Skip to: 516 |
361 | /* 120 */ MCD::OPC_CheckField, 6, 15, 0, 133, 1, 0, // Skip to: 516 |
362 | /* 127 */ MCD::OPC_Decode, 178, 17, 24, // Opcode: MTP1 |
363 | /* 131 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 152 |
364 | /* 136 */ MCD::OPC_CheckPredicate, 3, 119, 1, 0, // Skip to: 516 |
365 | /* 141 */ MCD::OPC_CheckField, 6, 15, 0, 112, 1, 0, // Skip to: 516 |
366 | /* 148 */ MCD::OPC_Decode, 179, 17, 24, // Opcode: MTP2 |
367 | /* 152 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 173 |
368 | /* 157 */ MCD::OPC_CheckPredicate, 3, 98, 1, 0, // Skip to: 516 |
369 | /* 162 */ MCD::OPC_CheckField, 6, 15, 0, 91, 1, 0, // Skip to: 516 |
370 | /* 169 */ MCD::OPC_Decode, 175, 17, 24, // Opcode: MTM1 |
371 | /* 173 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 194 |
372 | /* 178 */ MCD::OPC_CheckPredicate, 3, 77, 1, 0, // Skip to: 516 |
373 | /* 183 */ MCD::OPC_CheckField, 6, 15, 0, 70, 1, 0, // Skip to: 516 |
374 | /* 190 */ MCD::OPC_Decode, 176, 17, 24, // Opcode: MTM2 |
375 | /* 194 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 215 |
376 | /* 199 */ MCD::OPC_CheckPredicate, 3, 56, 1, 0, // Skip to: 516 |
377 | /* 204 */ MCD::OPC_CheckField, 6, 5, 0, 49, 1, 0, // Skip to: 516 |
378 | /* 211 */ MCD::OPC_Decode, 177, 22, 23, // Opcode: VMULU |
379 | /* 215 */ MCD::OPC_FilterValue, 16, 16, 0, 0, // Skip to: 236 |
380 | /* 220 */ MCD::OPC_CheckPredicate, 3, 35, 1, 0, // Skip to: 516 |
381 | /* 225 */ MCD::OPC_CheckField, 6, 5, 0, 28, 1, 0, // Skip to: 516 |
382 | /* 232 */ MCD::OPC_Decode, 176, 22, 23, // Opcode: VMM0 |
383 | /* 236 */ MCD::OPC_FilterValue, 17, 16, 0, 0, // Skip to: 257 |
384 | /* 241 */ MCD::OPC_CheckPredicate, 3, 14, 1, 0, // Skip to: 516 |
385 | /* 246 */ MCD::OPC_CheckField, 6, 5, 0, 7, 1, 0, // Skip to: 516 |
386 | /* 253 */ MCD::OPC_Decode, 175, 22, 23, // Opcode: V3MULU |
387 | /* 257 */ MCD::OPC_FilterValue, 40, 16, 0, 0, // Skip to: 278 |
388 | /* 262 */ MCD::OPC_CheckPredicate, 3, 249, 0, 0, // Skip to: 516 |
389 | /* 267 */ MCD::OPC_CheckField, 6, 5, 0, 242, 0, 0, // Skip to: 516 |
390 | /* 274 */ MCD::OPC_Decode, 252, 6, 23, // Opcode: BADDu |
391 | /* 278 */ MCD::OPC_FilterValue, 42, 16, 0, 0, // Skip to: 299 |
392 | /* 283 */ MCD::OPC_CheckPredicate, 3, 228, 0, 0, // Skip to: 516 |
393 | /* 288 */ MCD::OPC_CheckField, 6, 5, 0, 221, 0, 0, // Skip to: 516 |
394 | /* 295 */ MCD::OPC_Decode, 215, 19, 23, // Opcode: SEQ |
395 | /* 299 */ MCD::OPC_FilterValue, 43, 16, 0, 0, // Skip to: 320 |
396 | /* 304 */ MCD::OPC_CheckPredicate, 3, 207, 0, 0, // Skip to: 516 |
397 | /* 309 */ MCD::OPC_CheckField, 6, 5, 0, 200, 0, 0, // Skip to: 516 |
398 | /* 316 */ MCD::OPC_Decode, 187, 20, 23, // Opcode: SNE |
399 | /* 320 */ MCD::OPC_FilterValue, 44, 23, 0, 0, // Skip to: 348 |
400 | /* 325 */ MCD::OPC_CheckPredicate, 3, 186, 0, 0, // Skip to: 516 |
401 | /* 330 */ MCD::OPC_CheckField, 16, 5, 0, 179, 0, 0, // Skip to: 516 |
402 | /* 337 */ MCD::OPC_CheckField, 6, 5, 0, 172, 0, 0, // Skip to: 516 |
403 | /* 344 */ MCD::OPC_Decode, 173, 18, 25, // Opcode: POP |
404 | /* 348 */ MCD::OPC_FilterValue, 45, 23, 0, 0, // Skip to: 376 |
405 | /* 353 */ MCD::OPC_CheckPredicate, 3, 158, 0, 0, // Skip to: 516 |
406 | /* 358 */ MCD::OPC_CheckField, 16, 5, 0, 151, 0, 0, // Skip to: 516 |
407 | /* 365 */ MCD::OPC_CheckField, 6, 5, 0, 144, 0, 0, // Skip to: 516 |
408 | /* 372 */ MCD::OPC_Decode, 218, 11, 26, // Opcode: DPOP |
409 | /* 376 */ MCD::OPC_FilterValue, 46, 9, 0, 0, // Skip to: 390 |
410 | /* 381 */ MCD::OPC_CheckPredicate, 3, 130, 0, 0, // Skip to: 516 |
411 | /* 386 */ MCD::OPC_Decode, 216, 19, 27, // Opcode: SEQi |
412 | /* 390 */ MCD::OPC_FilterValue, 47, 9, 0, 0, // Skip to: 404 |
413 | /* 395 */ MCD::OPC_CheckPredicate, 3, 116, 0, 0, // Skip to: 516 |
414 | /* 400 */ MCD::OPC_Decode, 188, 20, 27, // Opcode: SNEi |
415 | /* 404 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 418 |
416 | /* 409 */ MCD::OPC_CheckPredicate, 4, 102, 0, 0, // Skip to: 516 |
417 | /* 414 */ MCD::OPC_Decode, 221, 8, 28, // Opcode: CINS |
418 | /* 418 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 432 |
419 | /* 423 */ MCD::OPC_CheckPredicate, 4, 88, 0, 0, // Skip to: 516 |
420 | /* 428 */ MCD::OPC_Decode, 222, 8, 28, // Opcode: CINS32 |
421 | /* 432 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 446 |
422 | /* 437 */ MCD::OPC_CheckPredicate, 4, 74, 0, 0, // Skip to: 516 |
423 | /* 442 */ MCD::OPC_Decode, 177, 12, 28, // Opcode: EXTS |
424 | /* 446 */ MCD::OPC_FilterValue, 59, 65, 0, 0, // Skip to: 516 |
425 | /* 451 */ MCD::OPC_CheckPredicate, 4, 60, 0, 0, // Skip to: 516 |
426 | /* 456 */ MCD::OPC_Decode, 178, 12, 28, // Opcode: EXTS32 |
427 | /* 460 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 474 |
428 | /* 465 */ MCD::OPC_CheckPredicate, 3, 46, 0, 0, // Skip to: 516 |
429 | /* 470 */ MCD::OPC_Decode, 130, 7, 29, // Opcode: BBIT0 |
430 | /* 474 */ MCD::OPC_FilterValue, 54, 9, 0, 0, // Skip to: 488 |
431 | /* 479 */ MCD::OPC_CheckPredicate, 3, 32, 0, 0, // Skip to: 516 |
432 | /* 484 */ MCD::OPC_Decode, 131, 7, 29, // Opcode: BBIT032 |
433 | /* 488 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 502 |
434 | /* 493 */ MCD::OPC_CheckPredicate, 3, 18, 0, 0, // Skip to: 516 |
435 | /* 498 */ MCD::OPC_Decode, 132, 7, 29, // Opcode: BBIT1 |
436 | /* 502 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 516 |
437 | /* 507 */ MCD::OPC_CheckPredicate, 3, 4, 0, 0, // Skip to: 516 |
438 | /* 512 */ MCD::OPC_Decode, 133, 7, 29, // Opcode: BBIT132 |
439 | /* 516 */ MCD::OPC_Fail, |
440 | 0 |
441 | }; |
442 | |
443 | static const uint8_t DecoderTableCnMipsP32[] = { |
444 | /* 0 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
445 | /* 3 */ MCD::OPC_FilterValue, 24, 16, 0, 0, // Skip to: 24 |
446 | /* 8 */ MCD::OPC_CheckPredicate, 5, 32, 0, 0, // Skip to: 45 |
447 | /* 13 */ MCD::OPC_CheckField, 26, 6, 28, 25, 0, 0, // Skip to: 45 |
448 | /* 20 */ MCD::OPC_Decode, 141, 19, 30, // Opcode: SAA |
449 | /* 24 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 45 |
450 | /* 29 */ MCD::OPC_CheckPredicate, 5, 11, 0, 0, // Skip to: 45 |
451 | /* 34 */ MCD::OPC_CheckField, 26, 6, 28, 4, 0, 0, // Skip to: 45 |
452 | /* 41 */ MCD::OPC_Decode, 142, 19, 30, // Opcode: SAAD |
453 | /* 45 */ MCD::OPC_Fail, |
454 | 0 |
455 | }; |
456 | |
457 | static const uint8_t DecoderTableMicroMips16[] = { |
458 | /* 0 */ MCD::OPC_ExtractField, 10, 6, // Inst{15-10} ... |
459 | /* 3 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 39 |
460 | /* 8 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
461 | /* 11 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 25 |
462 | /* 16 */ MCD::OPC_CheckPredicate, 6, 114, 2, 0, // Skip to: 647 |
463 | /* 21 */ MCD::OPC_Decode, 157, 6, 31, // Opcode: ADDU16_MM |
464 | /* 25 */ MCD::OPC_FilterValue, 1, 105, 2, 0, // Skip to: 647 |
465 | /* 30 */ MCD::OPC_CheckPredicate, 6, 100, 2, 0, // Skip to: 647 |
466 | /* 35 */ MCD::OPC_Decode, 149, 21, 31, // Opcode: SUBU16_MM |
467 | /* 39 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 53 |
468 | /* 44 */ MCD::OPC_CheckPredicate, 7, 86, 2, 0, // Skip to: 647 |
469 | /* 49 */ MCD::OPC_Decode, 199, 14, 32, // Opcode: LBU16_MM |
470 | /* 53 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 67 |
471 | /* 58 */ MCD::OPC_CheckPredicate, 6, 72, 2, 0, // Skip to: 647 |
472 | /* 63 */ MCD::OPC_Decode, 201, 16, 33, // Opcode: MOVE16_MM |
473 | /* 67 */ MCD::OPC_FilterValue, 9, 31, 0, 0, // Skip to: 103 |
474 | /* 72 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
475 | /* 75 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 89 |
476 | /* 80 */ MCD::OPC_CheckPredicate, 6, 50, 2, 0, // Skip to: 647 |
477 | /* 85 */ MCD::OPC_Decode, 159, 20, 34, // Opcode: SLL16_MM |
478 | /* 89 */ MCD::OPC_FilterValue, 1, 41, 2, 0, // Skip to: 647 |
479 | /* 94 */ MCD::OPC_CheckPredicate, 6, 36, 2, 0, // Skip to: 647 |
480 | /* 99 */ MCD::OPC_Decode, 218, 20, 34, // Opcode: SRL16_MM |
481 | /* 103 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 117 |
482 | /* 108 */ MCD::OPC_CheckPredicate, 7, 22, 2, 0, // Skip to: 647 |
483 | /* 113 */ MCD::OPC_Decode, 240, 14, 32, // Opcode: LHU16_MM |
484 | /* 117 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 131 |
485 | /* 122 */ MCD::OPC_CheckPredicate, 6, 8, 2, 0, // Skip to: 647 |
486 | /* 127 */ MCD::OPC_Decode, 202, 6, 35, // Opcode: ANDI16_MM |
487 | /* 131 */ MCD::OPC_FilterValue, 17, 8, 1, 0, // Skip to: 400 |
488 | /* 136 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... |
489 | /* 139 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 153 |
490 | /* 144 */ MCD::OPC_CheckPredicate, 6, 242, 1, 0, // Skip to: 647 |
491 | /* 149 */ MCD::OPC_Decode, 133, 18, 36, // Opcode: NOT16_MM |
492 | /* 153 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 167 |
493 | /* 158 */ MCD::OPC_CheckPredicate, 6, 228, 1, 0, // Skip to: 647 |
494 | /* 163 */ MCD::OPC_Decode, 192, 22, 37, // Opcode: XOR16_MM |
495 | /* 167 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 181 |
496 | /* 172 */ MCD::OPC_CheckPredicate, 6, 214, 1, 0, // Skip to: 647 |
497 | /* 177 */ MCD::OPC_Decode, 199, 6, 37, // Opcode: AND16_MM |
498 | /* 181 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 195 |
499 | /* 186 */ MCD::OPC_CheckPredicate, 6, 200, 1, 0, // Skip to: 647 |
500 | /* 191 */ MCD::OPC_Decode, 138, 18, 37, // Opcode: OR16_MM |
501 | /* 195 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 209 |
502 | /* 200 */ MCD::OPC_CheckPredicate, 6, 186, 1, 0, // Skip to: 647 |
503 | /* 205 */ MCD::OPC_Decode, 162, 15, 38, // Opcode: LWM16_MM |
504 | /* 209 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 223 |
505 | /* 214 */ MCD::OPC_CheckPredicate, 6, 172, 1, 0, // Skip to: 647 |
506 | /* 219 */ MCD::OPC_Decode, 198, 21, 38, // Opcode: SWM16_MM |
507 | /* 223 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 259 |
508 | /* 228 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... |
509 | /* 231 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 245 |
510 | /* 236 */ MCD::OPC_CheckPredicate, 6, 150, 1, 0, // Skip to: 647 |
511 | /* 241 */ MCD::OPC_Decode, 177, 14, 39, // Opcode: JR16_MM |
512 | /* 245 */ MCD::OPC_FilterValue, 1, 141, 1, 0, // Skip to: 647 |
513 | /* 250 */ MCD::OPC_CheckPredicate, 6, 136, 1, 0, // Skip to: 647 |
514 | /* 255 */ MCD::OPC_Decode, 180, 14, 39, // Opcode: JRC16_MM |
515 | /* 259 */ MCD::OPC_FilterValue, 7, 31, 0, 0, // Skip to: 295 |
516 | /* 264 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... |
517 | /* 267 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 281 |
518 | /* 272 */ MCD::OPC_CheckPredicate, 6, 114, 1, 0, // Skip to: 647 |
519 | /* 277 */ MCD::OPC_Decode, 156, 14, 39, // Opcode: JALR16_MM |
520 | /* 281 */ MCD::OPC_FilterValue, 1, 105, 1, 0, // Skip to: 647 |
521 | /* 286 */ MCD::OPC_CheckPredicate, 6, 100, 1, 0, // Skip to: 647 |
522 | /* 291 */ MCD::OPC_Decode, 161, 14, 39, // Opcode: JALRS16_MM |
523 | /* 295 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 316 |
524 | /* 300 */ MCD::OPC_CheckPredicate, 6, 86, 1, 0, // Skip to: 647 |
525 | /* 305 */ MCD::OPC_CheckField, 5, 1, 0, 79, 1, 0, // Skip to: 647 |
526 | /* 312 */ MCD::OPC_Decode, 147, 16, 39, // Opcode: MFHI16_MM |
527 | /* 316 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 337 |
528 | /* 321 */ MCD::OPC_CheckPredicate, 6, 65, 1, 0, // Skip to: 647 |
529 | /* 326 */ MCD::OPC_CheckField, 5, 1, 0, 58, 1, 0, // Skip to: 647 |
530 | /* 333 */ MCD::OPC_Decode, 153, 16, 39, // Opcode: MFLO16_MM |
531 | /* 337 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 358 |
532 | /* 342 */ MCD::OPC_CheckPredicate, 6, 44, 1, 0, // Skip to: 647 |
533 | /* 347 */ MCD::OPC_CheckField, 4, 2, 0, 37, 1, 0, // Skip to: 647 |
534 | /* 354 */ MCD::OPC_Decode, 162, 8, 40, // Opcode: BREAK16_MM |
535 | /* 358 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 379 |
536 | /* 363 */ MCD::OPC_CheckPredicate, 6, 23, 1, 0, // Skip to: 647 |
537 | /* 368 */ MCD::OPC_CheckField, 4, 2, 0, 16, 1, 0, // Skip to: 647 |
538 | /* 375 */ MCD::OPC_Decode, 171, 19, 40, // Opcode: SDBBP16_MM |
539 | /* 379 */ MCD::OPC_FilterValue, 12, 7, 1, 0, // Skip to: 647 |
540 | /* 384 */ MCD::OPC_CheckPredicate, 6, 2, 1, 0, // Skip to: 647 |
541 | /* 389 */ MCD::OPC_CheckField, 5, 1, 0, 251, 0, 0, // Skip to: 647 |
542 | /* 396 */ MCD::OPC_Decode, 179, 14, 41, // Opcode: JRADDIUSP |
543 | /* 400 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 414 |
544 | /* 405 */ MCD::OPC_CheckPredicate, 7, 237, 0, 0, // Skip to: 647 |
545 | /* 410 */ MCD::OPC_Decode, 173, 15, 42, // Opcode: LWSP_MM |
546 | /* 414 */ MCD::OPC_FilterValue, 19, 31, 0, 0, // Skip to: 450 |
547 | /* 419 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
548 | /* 422 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 436 |
549 | /* 427 */ MCD::OPC_CheckPredicate, 7, 215, 0, 0, // Skip to: 647 |
550 | /* 432 */ MCD::OPC_Decode, 253, 5, 43, // Opcode: ADDIUS5_MM |
551 | /* 436 */ MCD::OPC_FilterValue, 1, 206, 0, 0, // Skip to: 647 |
552 | /* 441 */ MCD::OPC_CheckPredicate, 7, 201, 0, 0, // Skip to: 647 |
553 | /* 446 */ MCD::OPC_Decode, 254, 5, 44, // Opcode: ADDIUSP_MM |
554 | /* 450 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 464 |
555 | /* 455 */ MCD::OPC_CheckPredicate, 7, 187, 0, 0, // Skip to: 647 |
556 | /* 460 */ MCD::OPC_Decode, 156, 15, 45, // Opcode: LWGP_MM |
557 | /* 464 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 478 |
558 | /* 469 */ MCD::OPC_CheckPredicate, 7, 173, 0, 0, // Skip to: 647 |
559 | /* 474 */ MCD::OPC_Decode, 144, 15, 32, // Opcode: LW16_MM |
560 | /* 478 */ MCD::OPC_FilterValue, 27, 31, 0, 0, // Skip to: 514 |
561 | /* 483 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
562 | /* 486 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 500 |
563 | /* 491 */ MCD::OPC_CheckPredicate, 7, 151, 0, 0, // Skip to: 647 |
564 | /* 496 */ MCD::OPC_Decode, 252, 5, 46, // Opcode: ADDIUR2_MM |
565 | /* 500 */ MCD::OPC_FilterValue, 1, 142, 0, 0, // Skip to: 647 |
566 | /* 505 */ MCD::OPC_CheckPredicate, 7, 137, 0, 0, // Skip to: 647 |
567 | /* 510 */ MCD::OPC_Decode, 251, 5, 47, // Opcode: ADDIUR1SP_MM |
568 | /* 514 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 535 |
569 | /* 519 */ MCD::OPC_CheckPredicate, 6, 123, 0, 0, // Skip to: 647 |
570 | /* 524 */ MCD::OPC_CheckField, 0, 1, 0, 116, 0, 0, // Skip to: 647 |
571 | /* 531 */ MCD::OPC_Decode, 203, 16, 48, // Opcode: MOVEP_MM |
572 | /* 535 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 549 |
573 | /* 540 */ MCD::OPC_CheckPredicate, 6, 102, 0, 0, // Skip to: 647 |
574 | /* 545 */ MCD::OPC_Decode, 152, 19, 32, // Opcode: SB16_MM |
575 | /* 549 */ MCD::OPC_FilterValue, 35, 9, 0, 0, // Skip to: 563 |
576 | /* 554 */ MCD::OPC_CheckPredicate, 6, 88, 0, 0, // Skip to: 647 |
577 | /* 559 */ MCD::OPC_Decode, 165, 7, 49, // Opcode: BEQZ16_MM |
578 | /* 563 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 577 |
579 | /* 568 */ MCD::OPC_CheckPredicate, 6, 74, 0, 0, // Skip to: 647 |
580 | /* 573 */ MCD::OPC_Decode, 218, 19, 32, // Opcode: SH16_MM |
581 | /* 577 */ MCD::OPC_FilterValue, 43, 9, 0, 0, // Skip to: 591 |
582 | /* 582 */ MCD::OPC_CheckPredicate, 6, 60, 0, 0, // Skip to: 647 |
583 | /* 587 */ MCD::OPC_Decode, 140, 8, 49, // Opcode: BNEZ16_MM |
584 | /* 591 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 605 |
585 | /* 596 */ MCD::OPC_CheckPredicate, 6, 46, 0, 0, // Skip to: 647 |
586 | /* 601 */ MCD::OPC_Decode, 207, 21, 42, // Opcode: SWSP_MM |
587 | /* 605 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 619 |
588 | /* 610 */ MCD::OPC_CheckPredicate, 7, 32, 0, 0, // Skip to: 647 |
589 | /* 615 */ MCD::OPC_Decode, 251, 6, 50, // Opcode: B16_MM |
590 | /* 619 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 633 |
591 | /* 624 */ MCD::OPC_CheckPredicate, 6, 18, 0, 0, // Skip to: 647 |
592 | /* 629 */ MCD::OPC_Decode, 180, 21, 32, // Opcode: SW16_MM |
593 | /* 633 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 647 |
594 | /* 638 */ MCD::OPC_CheckPredicate, 6, 4, 0, 0, // Skip to: 647 |
595 | /* 643 */ MCD::OPC_Decode, 249, 14, 51, // Opcode: LI16_MM |
596 | /* 647 */ MCD::OPC_Fail, |
597 | 0 |
598 | }; |
599 | |
600 | static const uint8_t DecoderTableMicroMips32[] = { |
601 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
602 | /* 3 */ MCD::OPC_FilterValue, 0, 238, 14, 0, // Skip to: 3830 |
603 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
604 | /* 11 */ MCD::OPC_FilterValue, 0, 104, 0, 0, // Skip to: 120 |
605 | /* 16 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
606 | /* 19 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 78 |
607 | /* 24 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... |
608 | /* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 |
609 | /* 32 */ MCD::OPC_CheckPredicate, 7, 32, 0, 0, // Skip to: 69 |
610 | /* 37 */ MCD::OPC_Decode, 240, 20, 10, // Opcode: SSNOP_MM |
611 | /* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 |
612 | /* 46 */ MCD::OPC_CheckPredicate, 7, 18, 0, 0, // Skip to: 69 |
613 | /* 51 */ MCD::OPC_Decode, 138, 12, 10, // Opcode: EHB_MM |
614 | /* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 |
615 | /* 60 */ MCD::OPC_CheckPredicate, 7, 4, 0, 0, // Skip to: 69 |
616 | /* 65 */ MCD::OPC_Decode, 153, 18, 10, // Opcode: PAUSE_MM |
617 | /* 69 */ MCD::OPC_CheckPredicate, 7, 101, 25, 0, // Skip to: 6575 |
618 | /* 74 */ MCD::OPC_Decode, 172, 20, 52, // Opcode: SLL_MM |
619 | /* 78 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 92 |
620 | /* 83 */ MCD::OPC_CheckPredicate, 7, 87, 25, 0, // Skip to: 6575 |
621 | /* 88 */ MCD::OPC_Decode, 237, 20, 52, // Opcode: SRL_MM |
622 | /* 92 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 106 |
623 | /* 97 */ MCD::OPC_CheckPredicate, 7, 73, 25, 0, // Skip to: 6575 |
624 | /* 102 */ MCD::OPC_Decode, 215, 20, 52, // Opcode: SRA_MM |
625 | /* 106 */ MCD::OPC_FilterValue, 3, 64, 25, 0, // Skip to: 6575 |
626 | /* 111 */ MCD::OPC_CheckPredicate, 7, 59, 25, 0, // Skip to: 6575 |
627 | /* 116 */ MCD::OPC_Decode, 249, 18, 52, // Opcode: ROTR_MM |
628 | /* 120 */ MCD::OPC_FilterValue, 5, 227, 0, 0, // Skip to: 352 |
629 | /* 125 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
630 | /* 128 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 149 |
631 | /* 133 */ MCD::OPC_CheckPredicate, 8, 37, 25, 0, // Skip to: 6575 |
632 | /* 138 */ MCD::OPC_CheckField, 11, 5, 0, 30, 25, 0, // Skip to: 6575 |
633 | /* 145 */ MCD::OPC_Decode, 164, 9, 53, // Opcode: CMP_EQ_PH_MM |
634 | /* 149 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 170 |
635 | /* 154 */ MCD::OPC_CheckPredicate, 8, 16, 25, 0, // Skip to: 6575 |
636 | /* 159 */ MCD::OPC_CheckField, 11, 5, 0, 9, 25, 0, // Skip to: 6575 |
637 | /* 166 */ MCD::OPC_Decode, 178, 9, 53, // Opcode: CMP_LT_PH_MM |
638 | /* 170 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 191 |
639 | /* 175 */ MCD::OPC_CheckPredicate, 8, 251, 24, 0, // Skip to: 6575 |
640 | /* 180 */ MCD::OPC_CheckField, 11, 5, 0, 244, 24, 0, // Skip to: 6575 |
641 | /* 187 */ MCD::OPC_Decode, 172, 9, 53, // Opcode: CMP_LE_PH_MM |
642 | /* 191 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 205 |
643 | /* 196 */ MCD::OPC_CheckPredicate, 9, 230, 24, 0, // Skip to: 6575 |
644 | /* 201 */ MCD::OPC_Decode, 142, 9, 54, // Opcode: CMPGDU_EQ_QB_MMR2 |
645 | /* 205 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 219 |
646 | /* 210 */ MCD::OPC_CheckPredicate, 9, 216, 24, 0, // Skip to: 6575 |
647 | /* 215 */ MCD::OPC_Decode, 146, 9, 54, // Opcode: CMPGDU_LT_QB_MMR2 |
648 | /* 219 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 233 |
649 | /* 224 */ MCD::OPC_CheckPredicate, 9, 202, 24, 0, // Skip to: 6575 |
650 | /* 229 */ MCD::OPC_Decode, 144, 9, 54, // Opcode: CMPGDU_LE_QB_MMR2 |
651 | /* 233 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 254 |
652 | /* 238 */ MCD::OPC_CheckPredicate, 8, 188, 24, 0, // Skip to: 6575 |
653 | /* 243 */ MCD::OPC_CheckField, 11, 5, 0, 181, 24, 0, // Skip to: 6575 |
654 | /* 250 */ MCD::OPC_Decode, 154, 9, 53, // Opcode: CMPU_EQ_QB_MM |
655 | /* 254 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 275 |
656 | /* 259 */ MCD::OPC_CheckPredicate, 8, 167, 24, 0, // Skip to: 6575 |
657 | /* 264 */ MCD::OPC_CheckField, 11, 5, 0, 160, 24, 0, // Skip to: 6575 |
658 | /* 271 */ MCD::OPC_Decode, 158, 9, 53, // Opcode: CMPU_LT_QB_MM |
659 | /* 275 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 296 |
660 | /* 280 */ MCD::OPC_CheckPredicate, 8, 146, 24, 0, // Skip to: 6575 |
661 | /* 285 */ MCD::OPC_CheckField, 11, 5, 0, 139, 24, 0, // Skip to: 6575 |
662 | /* 292 */ MCD::OPC_Decode, 156, 9, 53, // Opcode: CMPU_LE_QB_MM |
663 | /* 296 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 310 |
664 | /* 301 */ MCD::OPC_CheckPredicate, 8, 125, 24, 0, // Skip to: 6575 |
665 | /* 306 */ MCD::OPC_Decode, 141, 6, 55, // Opcode: ADDQ_S_W_MM |
666 | /* 310 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 324 |
667 | /* 315 */ MCD::OPC_CheckPredicate, 8, 111, 24, 0, // Skip to: 6575 |
668 | /* 320 */ MCD::OPC_Decode, 132, 21, 55, // Opcode: SUBQ_S_W_MM |
669 | /* 324 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 338 |
670 | /* 329 */ MCD::OPC_CheckPredicate, 8, 97, 24, 0, // Skip to: 6575 |
671 | /* 334 */ MCD::OPC_Decode, 144, 6, 55, // Opcode: ADDSC_MM |
672 | /* 338 */ MCD::OPC_FilterValue, 15, 88, 24, 0, // Skip to: 6575 |
673 | /* 343 */ MCD::OPC_CheckPredicate, 8, 83, 24, 0, // Skip to: 6575 |
674 | /* 348 */ MCD::OPC_Decode, 181, 6, 55, // Opcode: ADDWC_MM |
675 | /* 352 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 366 |
676 | /* 357 */ MCD::OPC_CheckPredicate, 7, 69, 24, 0, // Skip to: 6575 |
677 | /* 362 */ MCD::OPC_Decode, 164, 8, 56, // Opcode: BREAK_MM |
678 | /* 366 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 380 |
679 | /* 371 */ MCD::OPC_CheckPredicate, 6, 55, 24, 0, // Skip to: 6575 |
680 | /* 376 */ MCD::OPC_Decode, 151, 14, 57, // Opcode: INS_MM |
681 | /* 380 */ MCD::OPC_FilterValue, 13, 167, 1, 0, // Skip to: 808 |
682 | /* 385 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
683 | /* 388 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 402 |
684 | /* 393 */ MCD::OPC_CheckPredicate, 8, 33, 24, 0, // Skip to: 6575 |
685 | /* 398 */ MCD::OPC_Decode, 137, 6, 58, // Opcode: ADDQ_PH_MM |
686 | /* 402 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 416 |
687 | /* 407 */ MCD::OPC_CheckPredicate, 9, 19, 24, 0, // Skip to: 6575 |
688 | /* 412 */ MCD::OPC_Decode, 129, 6, 58, // Opcode: ADDQH_PH_MMR2 |
689 | /* 416 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 430 |
690 | /* 421 */ MCD::OPC_CheckPredicate, 9, 5, 24, 0, // Skip to: 6575 |
691 | /* 426 */ MCD::OPC_Decode, 135, 6, 55, // Opcode: ADDQH_W_MMR2 |
692 | /* 430 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 444 |
693 | /* 435 */ MCD::OPC_CheckPredicate, 8, 247, 23, 0, // Skip to: 6575 |
694 | /* 440 */ MCD::OPC_Decode, 167, 6, 58, // Opcode: ADDU_QB_MM |
695 | /* 444 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 458 |
696 | /* 449 */ MCD::OPC_CheckPredicate, 9, 233, 23, 0, // Skip to: 6575 |
697 | /* 454 */ MCD::OPC_Decode, 165, 6, 58, // Opcode: ADDU_PH_MMR2 |
698 | /* 458 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 472 |
699 | /* 463 */ MCD::OPC_CheckPredicate, 9, 219, 23, 0, // Skip to: 6575 |
700 | /* 468 */ MCD::OPC_Decode, 160, 6, 58, // Opcode: ADDUH_QB_MMR2 |
701 | /* 472 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 486 |
702 | /* 477 */ MCD::OPC_CheckPredicate, 8, 205, 23, 0, // Skip to: 6575 |
703 | /* 482 */ MCD::OPC_Decode, 247, 19, 59, // Opcode: SHRAV_PH_MM |
704 | /* 486 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 500 |
705 | /* 491 */ MCD::OPC_CheckPredicate, 9, 191, 23, 0, // Skip to: 6575 |
706 | /* 496 */ MCD::OPC_Decode, 249, 19, 59, // Opcode: SHRAV_QB_MMR2 |
707 | /* 500 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 514 |
708 | /* 505 */ MCD::OPC_CheckPredicate, 8, 177, 23, 0, // Skip to: 6575 |
709 | /* 510 */ MCD::OPC_Decode, 128, 21, 58, // Opcode: SUBQ_PH_MM |
710 | /* 514 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 528 |
711 | /* 519 */ MCD::OPC_CheckPredicate, 9, 163, 23, 0, // Skip to: 6575 |
712 | /* 524 */ MCD::OPC_Decode, 248, 20, 58, // Opcode: SUBQH_PH_MMR2 |
713 | /* 528 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 542 |
714 | /* 533 */ MCD::OPC_CheckPredicate, 9, 149, 23, 0, // Skip to: 6575 |
715 | /* 538 */ MCD::OPC_Decode, 254, 20, 55, // Opcode: SUBQH_W_MMR2 |
716 | /* 542 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 556 |
717 | /* 547 */ MCD::OPC_CheckPredicate, 8, 135, 23, 0, // Skip to: 6575 |
718 | /* 552 */ MCD::OPC_Decode, 159, 21, 58, // Opcode: SUBU_QB_MM |
719 | /* 556 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 570 |
720 | /* 561 */ MCD::OPC_CheckPredicate, 9, 121, 23, 0, // Skip to: 6575 |
721 | /* 566 */ MCD::OPC_Decode, 157, 21, 58, // Opcode: SUBU_PH_MMR2 |
722 | /* 570 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 584 |
723 | /* 575 */ MCD::OPC_CheckPredicate, 9, 107, 23, 0, // Skip to: 6575 |
724 | /* 580 */ MCD::OPC_Decode, 152, 21, 58, // Opcode: SUBUH_QB_MMR2 |
725 | /* 584 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 598 |
726 | /* 589 */ MCD::OPC_CheckPredicate, 9, 93, 23, 0, // Skip to: 6575 |
727 | /* 594 */ MCD::OPC_Decode, 205, 18, 60, // Opcode: PRECR_SRA_PH_W_MMR2 |
728 | /* 598 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 612 |
729 | /* 603 */ MCD::OPC_CheckPredicate, 8, 79, 23, 0, // Skip to: 6575 |
730 | /* 608 */ MCD::OPC_Decode, 139, 6, 58, // Opcode: ADDQ_S_PH_MM |
731 | /* 612 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 626 |
732 | /* 617 */ MCD::OPC_CheckPredicate, 9, 65, 23, 0, // Skip to: 6575 |
733 | /* 622 */ MCD::OPC_Decode, 131, 6, 58, // Opcode: ADDQH_R_PH_MMR2 |
734 | /* 626 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 640 |
735 | /* 631 */ MCD::OPC_CheckPredicate, 9, 51, 23, 0, // Skip to: 6575 |
736 | /* 636 */ MCD::OPC_Decode, 133, 6, 55, // Opcode: ADDQH_R_W_MMR2 |
737 | /* 640 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 654 |
738 | /* 645 */ MCD::OPC_CheckPredicate, 8, 37, 23, 0, // Skip to: 6575 |
739 | /* 650 */ MCD::OPC_Decode, 171, 6, 58, // Opcode: ADDU_S_QB_MM |
740 | /* 654 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 668 |
741 | /* 659 */ MCD::OPC_CheckPredicate, 9, 23, 23, 0, // Skip to: 6575 |
742 | /* 664 */ MCD::OPC_Decode, 169, 6, 58, // Opcode: ADDU_S_PH_MMR2 |
743 | /* 668 */ MCD::OPC_FilterValue, 21, 9, 0, 0, // Skip to: 682 |
744 | /* 673 */ MCD::OPC_CheckPredicate, 9, 9, 23, 0, // Skip to: 6575 |
745 | /* 678 */ MCD::OPC_Decode, 162, 6, 58, // Opcode: ADDUH_R_QB_MMR2 |
746 | /* 682 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 696 |
747 | /* 687 */ MCD::OPC_CheckPredicate, 8, 251, 22, 0, // Skip to: 6575 |
748 | /* 692 */ MCD::OPC_Decode, 251, 19, 59, // Opcode: SHRAV_R_PH_MM |
749 | /* 696 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 710 |
750 | /* 701 */ MCD::OPC_CheckPredicate, 9, 237, 22, 0, // Skip to: 6575 |
751 | /* 706 */ MCD::OPC_Decode, 253, 19, 59, // Opcode: SHRAV_R_QB_MMR2 |
752 | /* 710 */ MCD::OPC_FilterValue, 24, 9, 0, 0, // Skip to: 724 |
753 | /* 715 */ MCD::OPC_CheckPredicate, 8, 223, 22, 0, // Skip to: 6575 |
754 | /* 720 */ MCD::OPC_Decode, 130, 21, 58, // Opcode: SUBQ_S_PH_MM |
755 | /* 724 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 738 |
756 | /* 729 */ MCD::OPC_CheckPredicate, 9, 209, 22, 0, // Skip to: 6575 |
757 | /* 734 */ MCD::OPC_Decode, 250, 20, 58, // Opcode: SUBQH_R_PH_MMR2 |
758 | /* 738 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 752 |
759 | /* 743 */ MCD::OPC_CheckPredicate, 9, 195, 22, 0, // Skip to: 6575 |
760 | /* 748 */ MCD::OPC_Decode, 252, 20, 55, // Opcode: SUBQH_R_W_MMR2 |
761 | /* 752 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 766 |
762 | /* 757 */ MCD::OPC_CheckPredicate, 8, 181, 22, 0, // Skip to: 6575 |
763 | /* 762 */ MCD::OPC_Decode, 163, 21, 58, // Opcode: SUBU_S_QB_MM |
764 | /* 766 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 780 |
765 | /* 771 */ MCD::OPC_CheckPredicate, 9, 167, 22, 0, // Skip to: 6575 |
766 | /* 776 */ MCD::OPC_Decode, 161, 21, 58, // Opcode: SUBU_S_PH_MMR2 |
767 | /* 780 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 794 |
768 | /* 785 */ MCD::OPC_CheckPredicate, 9, 153, 22, 0, // Skip to: 6575 |
769 | /* 790 */ MCD::OPC_Decode, 154, 21, 58, // Opcode: SUBUH_R_QB_MMR2 |
770 | /* 794 */ MCD::OPC_FilterValue, 31, 144, 22, 0, // Skip to: 6575 |
771 | /* 799 */ MCD::OPC_CheckPredicate, 9, 139, 22, 0, // Skip to: 6575 |
772 | /* 804 */ MCD::OPC_Decode, 207, 18, 60, // Opcode: PRECR_SRA_R_PH_W_MMR2 |
773 | /* 808 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 844 |
774 | /* 813 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
775 | /* 816 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 830 |
776 | /* 821 */ MCD::OPC_CheckPredicate, 8, 117, 22, 0, // Skip to: 6575 |
777 | /* 826 */ MCD::OPC_Decode, 231, 19, 59, // Opcode: SHLLV_PH_MM |
778 | /* 830 */ MCD::OPC_FilterValue, 16, 108, 22, 0, // Skip to: 6575 |
779 | /* 835 */ MCD::OPC_CheckPredicate, 8, 103, 22, 0, // Skip to: 6575 |
780 | /* 840 */ MCD::OPC_Decode, 235, 19, 59, // Opcode: SHLLV_S_PH_MM |
781 | /* 844 */ MCD::OPC_FilterValue, 16, 213, 0, 0, // Skip to: 1062 |
782 | /* 849 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
783 | /* 852 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 866 |
784 | /* 857 */ MCD::OPC_CheckPredicate, 7, 81, 22, 0, // Skip to: 6575 |
785 | /* 862 */ MCD::OPC_Decode, 168, 20, 61, // Opcode: SLLV_MM |
786 | /* 866 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 880 |
787 | /* 871 */ MCD::OPC_CheckPredicate, 7, 67, 22, 0, // Skip to: 6575 |
788 | /* 876 */ MCD::OPC_Decode, 233, 20, 61, // Opcode: SRLV_MM |
789 | /* 880 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 894 |
790 | /* 885 */ MCD::OPC_CheckPredicate, 7, 53, 22, 0, // Skip to: 6575 |
791 | /* 890 */ MCD::OPC_Decode, 211, 20, 61, // Opcode: SRAV_MM |
792 | /* 894 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 908 |
793 | /* 899 */ MCD::OPC_CheckPredicate, 7, 39, 22, 0, // Skip to: 6575 |
794 | /* 904 */ MCD::OPC_Decode, 248, 18, 61, // Opcode: ROTRV_MM |
795 | /* 908 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 922 |
796 | /* 913 */ MCD::OPC_CheckPredicate, 6, 25, 22, 0, // Skip to: 6575 |
797 | /* 918 */ MCD::OPC_Decode, 186, 6, 55, // Opcode: ADD_MM |
798 | /* 922 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 936 |
799 | /* 927 */ MCD::OPC_CheckPredicate, 6, 11, 22, 0, // Skip to: 6575 |
800 | /* 932 */ MCD::OPC_Decode, 193, 6, 55, // Opcode: ADDu_MM |
801 | /* 936 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 950 |
802 | /* 941 */ MCD::OPC_CheckPredicate, 6, 253, 21, 0, // Skip to: 6575 |
803 | /* 946 */ MCD::OPC_Decode, 172, 21, 55, // Opcode: SUB_MM |
804 | /* 950 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 964 |
805 | /* 955 */ MCD::OPC_CheckPredicate, 6, 239, 21, 0, // Skip to: 6575 |
806 | /* 960 */ MCD::OPC_Decode, 175, 21, 55, // Opcode: SUBu_MM |
807 | /* 964 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 978 |
808 | /* 969 */ MCD::OPC_CheckPredicate, 6, 225, 21, 0, // Skip to: 6575 |
809 | /* 974 */ MCD::OPC_Decode, 223, 17, 55, // Opcode: MUL_MM |
810 | /* 978 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 992 |
811 | /* 983 */ MCD::OPC_CheckPredicate, 6, 211, 21, 0, // Skip to: 6575 |
812 | /* 988 */ MCD::OPC_Decode, 206, 6, 55, // Opcode: AND_MM |
813 | /* 992 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 1006 |
814 | /* 997 */ MCD::OPC_CheckPredicate, 6, 197, 21, 0, // Skip to: 6575 |
815 | /* 1002 */ MCD::OPC_Decode, 143, 18, 55, // Opcode: OR_MM |
816 | /* 1006 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1020 |
817 | /* 1011 */ MCD::OPC_CheckPredicate, 6, 183, 21, 0, // Skip to: 6575 |
818 | /* 1016 */ MCD::OPC_Decode, 130, 18, 55, // Opcode: NOR_MM |
819 | /* 1020 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1034 |
820 | /* 1025 */ MCD::OPC_CheckPredicate, 6, 169, 21, 0, // Skip to: 6575 |
821 | /* 1030 */ MCD::OPC_Decode, 197, 22, 55, // Opcode: XOR_MM |
822 | /* 1034 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 1048 |
823 | /* 1039 */ MCD::OPC_CheckPredicate, 7, 155, 21, 0, // Skip to: 6575 |
824 | /* 1044 */ MCD::OPC_Decode, 177, 20, 55, // Opcode: SLT_MM |
825 | /* 1048 */ MCD::OPC_FilterValue, 14, 146, 21, 0, // Skip to: 6575 |
826 | /* 1053 */ MCD::OPC_CheckPredicate, 7, 141, 21, 0, // Skip to: 6575 |
827 | /* 1058 */ MCD::OPC_Decode, 186, 20, 55, // Opcode: SLTu_MM |
828 | /* 1062 */ MCD::OPC_FilterValue, 21, 199, 0, 0, // Skip to: 1266 |
829 | /* 1067 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
830 | /* 1070 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1084 |
831 | /* 1075 */ MCD::OPC_CheckPredicate, 8, 119, 21, 0, // Skip to: 6575 |
832 | /* 1080 */ MCD::OPC_Decode, 191, 17, 58, // Opcode: MULEU_S_PH_QBL_MM |
833 | /* 1084 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 1098 |
834 | /* 1089 */ MCD::OPC_CheckPredicate, 8, 105, 21, 0, // Skip to: 6575 |
835 | /* 1094 */ MCD::OPC_Decode, 193, 17, 58, // Opcode: MULEU_S_PH_QBR_MM |
836 | /* 1098 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1112 |
837 | /* 1103 */ MCD::OPC_CheckPredicate, 8, 91, 21, 0, // Skip to: 6575 |
838 | /* 1108 */ MCD::OPC_Decode, 195, 17, 58, // Opcode: MULQ_RS_PH_MM |
839 | /* 1112 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1126 |
840 | /* 1117 */ MCD::OPC_CheckPredicate, 9, 77, 21, 0, // Skip to: 6575 |
841 | /* 1122 */ MCD::OPC_Decode, 199, 17, 58, // Opcode: MULQ_S_PH_MMR2 |
842 | /* 1126 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1140 |
843 | /* 1131 */ MCD::OPC_CheckPredicate, 9, 63, 21, 0, // Skip to: 6575 |
844 | /* 1136 */ MCD::OPC_Decode, 197, 17, 55, // Opcode: MULQ_RS_W_MMR2 |
845 | /* 1140 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 1154 |
846 | /* 1145 */ MCD::OPC_CheckPredicate, 9, 49, 21, 0, // Skip to: 6575 |
847 | /* 1150 */ MCD::OPC_Decode, 201, 17, 55, // Opcode: MULQ_S_W_MMR2 |
848 | /* 1154 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 1168 |
849 | /* 1159 */ MCD::OPC_CheckPredicate, 9, 35, 21, 0, // Skip to: 6575 |
850 | /* 1164 */ MCD::OPC_Decode, 213, 6, 62, // Opcode: APPEND_MMR2 |
851 | /* 1168 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 1182 |
852 | /* 1173 */ MCD::OPC_CheckPredicate, 9, 21, 21, 0, // Skip to: 6575 |
853 | /* 1178 */ MCD::OPC_Decode, 216, 18, 62, // Opcode: PREPEND_MMR2 |
854 | /* 1182 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 1196 |
855 | /* 1187 */ MCD::OPC_CheckPredicate, 8, 7, 21, 0, // Skip to: 6575 |
856 | /* 1192 */ MCD::OPC_Decode, 189, 16, 55, // Opcode: MODSUB_MM |
857 | /* 1196 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1210 |
858 | /* 1201 */ MCD::OPC_CheckPredicate, 8, 249, 20, 0, // Skip to: 6575 |
859 | /* 1206 */ MCD::OPC_Decode, 255, 19, 61, // Opcode: SHRAV_R_W_MM |
860 | /* 1210 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1224 |
861 | /* 1215 */ MCD::OPC_CheckPredicate, 9, 235, 20, 0, // Skip to: 6575 |
862 | /* 1220 */ MCD::OPC_Decode, 139, 20, 59, // Opcode: SHRLV_PH_MMR2 |
863 | /* 1224 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 1238 |
864 | /* 1229 */ MCD::OPC_CheckPredicate, 8, 221, 20, 0, // Skip to: 6575 |
865 | /* 1234 */ MCD::OPC_Decode, 141, 20, 59, // Opcode: SHRLV_QB_MM |
866 | /* 1238 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 1252 |
867 | /* 1243 */ MCD::OPC_CheckPredicate, 8, 207, 20, 0, // Skip to: 6575 |
868 | /* 1248 */ MCD::OPC_Decode, 233, 19, 59, // Opcode: SHLLV_QB_MM |
869 | /* 1252 */ MCD::OPC_FilterValue, 15, 198, 20, 0, // Skip to: 6575 |
870 | /* 1257 */ MCD::OPC_CheckPredicate, 8, 193, 20, 0, // Skip to: 6575 |
871 | /* 1262 */ MCD::OPC_Decode, 237, 19, 61, // Opcode: SHLLV_S_W_MM |
872 | /* 1266 */ MCD::OPC_FilterValue, 24, 45, 0, 0, // Skip to: 1316 |
873 | /* 1271 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
874 | /* 1274 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1288 |
875 | /* 1279 */ MCD::OPC_CheckPredicate, 6, 171, 20, 0, // Skip to: 6575 |
876 | /* 1284 */ MCD::OPC_Decode, 223, 16, 63, // Opcode: MOVN_I_MM |
877 | /* 1288 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1302 |
878 | /* 1293 */ MCD::OPC_CheckPredicate, 6, 157, 20, 0, // Skip to: 6575 |
879 | /* 1298 */ MCD::OPC_Decode, 243, 16, 63, // Opcode: MOVZ_I_MM |
880 | /* 1302 */ MCD::OPC_FilterValue, 4, 148, 20, 0, // Skip to: 6575 |
881 | /* 1307 */ MCD::OPC_CheckPredicate, 7, 143, 20, 0, // Skip to: 6575 |
882 | /* 1312 */ MCD::OPC_Decode, 179, 15, 64, // Opcode: LWXS_MM |
883 | /* 1316 */ MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 1344 |
884 | /* 1321 */ MCD::OPC_CheckPredicate, 8, 129, 20, 0, // Skip to: 6575 |
885 | /* 1326 */ MCD::OPC_CheckField, 22, 4, 0, 122, 20, 0, // Skip to: 6575 |
886 | /* 1333 */ MCD::OPC_CheckField, 6, 8, 0, 115, 20, 0, // Skip to: 6575 |
887 | /* 1340 */ MCD::OPC_Decode, 229, 19, 65, // Opcode: SHILO_MM |
888 | /* 1344 */ MCD::OPC_FilterValue, 37, 73, 0, 0, // Skip to: 1422 |
889 | /* 1349 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
890 | /* 1352 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1366 |
891 | /* 1357 */ MCD::OPC_CheckPredicate, 8, 93, 20, 0, // Skip to: 6575 |
892 | /* 1362 */ MCD::OPC_Decode, 187, 17, 54, // Opcode: MULEQ_S_W_PHL_MM |
893 | /* 1366 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1380 |
894 | /* 1371 */ MCD::OPC_CheckPredicate, 8, 79, 20, 0, // Skip to: 6575 |
895 | /* 1376 */ MCD::OPC_Decode, 189, 17, 54, // Opcode: MULEQ_S_W_PHR_MM |
896 | /* 1380 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1394 |
897 | /* 1385 */ MCD::OPC_CheckPredicate, 8, 65, 20, 0, // Skip to: 6575 |
898 | /* 1390 */ MCD::OPC_Decode, 242, 14, 64, // Opcode: LHX_MM |
899 | /* 1394 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1408 |
900 | /* 1399 */ MCD::OPC_CheckPredicate, 8, 51, 20, 0, // Skip to: 6575 |
901 | /* 1404 */ MCD::OPC_Decode, 180, 15, 64, // Opcode: LWX_MM |
902 | /* 1408 */ MCD::OPC_FilterValue, 8, 42, 20, 0, // Skip to: 6575 |
903 | /* 1413 */ MCD::OPC_CheckPredicate, 8, 37, 20, 0, // Skip to: 6575 |
904 | /* 1418 */ MCD::OPC_Decode, 201, 14, 64, // Opcode: LBUX_MM |
905 | /* 1422 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 1436 |
906 | /* 1427 */ MCD::OPC_CheckPredicate, 6, 23, 20, 0, // Skip to: 6575 |
907 | /* 1432 */ MCD::OPC_Decode, 179, 12, 66, // Opcode: EXT_MM |
908 | /* 1436 */ MCD::OPC_FilterValue, 45, 143, 0, 0, // Skip to: 1584 |
909 | /* 1441 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
910 | /* 1444 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1458 |
911 | /* 1449 */ MCD::OPC_CheckPredicate, 9, 1, 20, 0, // Skip to: 6575 |
912 | /* 1454 */ MCD::OPC_Decode, 226, 17, 58, // Opcode: MUL_PH_MMR2 |
913 | /* 1458 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1472 |
914 | /* 1463 */ MCD::OPC_CheckPredicate, 9, 243, 19, 0, // Skip to: 6575 |
915 | /* 1468 */ MCD::OPC_Decode, 203, 18, 58, // Opcode: PRECR_QB_PH_MMR2 |
916 | /* 1472 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1486 |
917 | /* 1477 */ MCD::OPC_CheckPredicate, 8, 229, 19, 0, // Skip to: 6575 |
918 | /* 1482 */ MCD::OPC_Decode, 199, 18, 58, // Opcode: PRECRQ_QB_PH_MM |
919 | /* 1486 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 1500 |
920 | /* 1491 */ MCD::OPC_CheckPredicate, 8, 215, 19, 0, // Skip to: 6575 |
921 | /* 1496 */ MCD::OPC_Decode, 197, 18, 67, // Opcode: PRECRQ_PH_W_MM |
922 | /* 1500 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1514 |
923 | /* 1505 */ MCD::OPC_CheckPredicate, 8, 201, 19, 0, // Skip to: 6575 |
924 | /* 1510 */ MCD::OPC_Decode, 201, 18, 67, // Opcode: PRECRQ_RS_PH_W_MM |
925 | /* 1514 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1528 |
926 | /* 1519 */ MCD::OPC_CheckPredicate, 8, 187, 19, 0, // Skip to: 6575 |
927 | /* 1524 */ MCD::OPC_Decode, 195, 18, 58, // Opcode: PRECRQU_S_QB_PH_MM |
928 | /* 1528 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1542 |
929 | /* 1533 */ MCD::OPC_CheckPredicate, 8, 173, 19, 0, // Skip to: 6575 |
930 | /* 1538 */ MCD::OPC_Decode, 151, 18, 58, // Opcode: PACKRL_PH_MM |
931 | /* 1542 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 1556 |
932 | /* 1547 */ MCD::OPC_CheckPredicate, 8, 159, 19, 0, // Skip to: 6575 |
933 | /* 1552 */ MCD::OPC_Decode, 170, 18, 58, // Opcode: PICK_QB_MM |
934 | /* 1556 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 1570 |
935 | /* 1561 */ MCD::OPC_CheckPredicate, 8, 145, 19, 0, // Skip to: 6575 |
936 | /* 1566 */ MCD::OPC_Decode, 168, 18, 58, // Opcode: PICK_PH_MM |
937 | /* 1570 */ MCD::OPC_FilterValue, 16, 136, 19, 0, // Skip to: 6575 |
938 | /* 1575 */ MCD::OPC_CheckPredicate, 9, 131, 19, 0, // Skip to: 6575 |
939 | /* 1580 */ MCD::OPC_Decode, 231, 17, 58, // Opcode: MUL_S_PH_MMR2 |
940 | /* 1584 */ MCD::OPC_FilterValue, 52, 45, 0, 0, // Skip to: 1634 |
941 | /* 1589 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
942 | /* 1592 */ MCD::OPC_FilterValue, 19, 16, 0, 0, // Skip to: 1613 |
943 | /* 1597 */ MCD::OPC_CheckPredicate, 10, 109, 19, 0, // Skip to: 6575 |
944 | /* 1602 */ MCD::OPC_CheckField, 14, 2, 0, 102, 19, 0, // Skip to: 6575 |
945 | /* 1609 */ MCD::OPC_Decode, 145, 16, 68, // Opcode: MFHGC0_MM |
946 | /* 1613 */ MCD::OPC_FilterValue, 27, 93, 19, 0, // Skip to: 6575 |
947 | /* 1618 */ MCD::OPC_CheckPredicate, 10, 88, 19, 0, // Skip to: 6575 |
948 | /* 1623 */ MCD::OPC_CheckField, 14, 2, 0, 81, 19, 0, // Skip to: 6575 |
949 | /* 1630 */ MCD::OPC_Decode, 161, 17, 69, // Opcode: MTHGC0_MM |
950 | /* 1634 */ MCD::OPC_FilterValue, 53, 109, 0, 0, // Skip to: 1748 |
951 | /* 1639 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
952 | /* 1642 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1656 |
953 | /* 1647 */ MCD::OPC_CheckPredicate, 8, 59, 19, 0, // Skip to: 6575 |
954 | /* 1652 */ MCD::OPC_Decode, 137, 20, 52, // Opcode: SHRA_R_W_MM |
955 | /* 1656 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 1677 |
956 | /* 1661 */ MCD::OPC_CheckPredicate, 8, 45, 19, 0, // Skip to: 6575 |
957 | /* 1666 */ MCD::OPC_CheckField, 11, 1, 0, 38, 19, 0, // Skip to: 6575 |
958 | /* 1673 */ MCD::OPC_Decode, 129, 20, 70, // Opcode: SHRA_PH_MM |
959 | /* 1677 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 1713 |
960 | /* 1682 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... |
961 | /* 1685 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1699 |
962 | /* 1690 */ MCD::OPC_CheckPredicate, 8, 16, 19, 0, // Skip to: 6575 |
963 | /* 1695 */ MCD::OPC_Decode, 239, 19, 70, // Opcode: SHLL_PH_MM |
964 | /* 1699 */ MCD::OPC_FilterValue, 1, 7, 19, 0, // Skip to: 6575 |
965 | /* 1704 */ MCD::OPC_CheckPredicate, 8, 2, 19, 0, // Skip to: 6575 |
966 | /* 1709 */ MCD::OPC_Decode, 243, 19, 70, // Opcode: SHLL_S_PH_MM |
967 | /* 1713 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 1727 |
968 | /* 1718 */ MCD::OPC_CheckPredicate, 8, 244, 18, 0, // Skip to: 6575 |
969 | /* 1723 */ MCD::OPC_Decode, 245, 19, 52, // Opcode: SHLL_S_W_MM |
970 | /* 1727 */ MCD::OPC_FilterValue, 28, 235, 18, 0, // Skip to: 6575 |
971 | /* 1732 */ MCD::OPC_CheckPredicate, 8, 230, 18, 0, // Skip to: 6575 |
972 | /* 1737 */ MCD::OPC_CheckField, 11, 1, 0, 223, 18, 0, // Skip to: 6575 |
973 | /* 1744 */ MCD::OPC_Decode, 133, 20, 70, // Opcode: SHRA_R_PH_MM |
974 | /* 1748 */ MCD::OPC_FilterValue, 60, 8, 8, 0, // Skip to: 3809 |
975 | /* 1753 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
976 | /* 1756 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1792 |
977 | /* 1761 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... |
978 | /* 1764 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1778 |
979 | /* 1769 */ MCD::OPC_CheckPredicate, 7, 193, 18, 0, // Skip to: 6575 |
980 | /* 1774 */ MCD::OPC_Decode, 245, 21, 71, // Opcode: TEQ_MM |
981 | /* 1778 */ MCD::OPC_FilterValue, 1, 184, 18, 0, // Skip to: 6575 |
982 | /* 1783 */ MCD::OPC_CheckPredicate, 7, 179, 18, 0, // Skip to: 6575 |
983 | /* 1788 */ MCD::OPC_Decode, 156, 22, 71, // Opcode: TLT_MM |
984 | /* 1792 */ MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 1928 |
985 | /* 1797 */ MCD::OPC_ExtractField, 11, 2, // Inst{12-11} ... |
986 | /* 1800 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 1850 |
987 | /* 1805 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... |
988 | /* 1808 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1829 |
989 | /* 1813 */ MCD::OPC_CheckPredicate, 8, 149, 18, 0, // Skip to: 6575 |
990 | /* 1818 */ MCD::OPC_CheckField, 21, 5, 0, 142, 18, 0, // Skip to: 6575 |
991 | /* 1825 */ MCD::OPC_Decode, 150, 16, 72, // Opcode: MFHI_DSP_MM |
992 | /* 1829 */ MCD::OPC_FilterValue, 1, 133, 18, 0, // Skip to: 6575 |
993 | /* 1834 */ MCD::OPC_CheckPredicate, 8, 128, 18, 0, // Skip to: 6575 |
994 | /* 1839 */ MCD::OPC_CheckField, 21, 5, 0, 121, 18, 0, // Skip to: 6575 |
995 | /* 1846 */ MCD::OPC_Decode, 165, 17, 73, // Opcode: MTHI_DSP_MM |
996 | /* 1850 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1864 |
997 | /* 1855 */ MCD::OPC_CheckPredicate, 8, 107, 18, 0, // Skip to: 6575 |
998 | /* 1860 */ MCD::OPC_Decode, 241, 19, 74, // Opcode: SHLL_QB_MM |
999 | /* 1864 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 1914 |
1000 | /* 1869 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... |
1001 | /* 1872 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1893 |
1002 | /* 1877 */ MCD::OPC_CheckPredicate, 8, 85, 18, 0, // Skip to: 6575 |
1003 | /* 1882 */ MCD::OPC_CheckField, 21, 5, 0, 78, 18, 0, // Skip to: 6575 |
1004 | /* 1889 */ MCD::OPC_Decode, 156, 16, 72, // Opcode: MFLO_DSP_MM |
1005 | /* 1893 */ MCD::OPC_FilterValue, 1, 69, 18, 0, // Skip to: 6575 |
1006 | /* 1898 */ MCD::OPC_CheckPredicate, 8, 64, 18, 0, // Skip to: 6575 |
1007 | /* 1903 */ MCD::OPC_CheckField, 21, 5, 0, 57, 18, 0, // Skip to: 6575 |
1008 | /* 1910 */ MCD::OPC_Decode, 172, 17, 75, // Opcode: MTLO_DSP_MM |
1009 | /* 1914 */ MCD::OPC_FilterValue, 3, 48, 18, 0, // Skip to: 6575 |
1010 | /* 1919 */ MCD::OPC_CheckPredicate, 8, 43, 18, 0, // Skip to: 6575 |
1011 | /* 1924 */ MCD::OPC_Decode, 145, 20, 74, // Opcode: SHRL_QB_MM |
1012 | /* 1928 */ MCD::OPC_FilterValue, 2, 101, 0, 0, // Skip to: 2034 |
1013 | /* 1933 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1014 | /* 1936 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1950 |
1015 | /* 1941 */ MCD::OPC_CheckPredicate, 9, 21, 18, 0, // Skip to: 6575 |
1016 | /* 1946 */ MCD::OPC_Decode, 217, 11, 76, // Opcode: DPA_W_PH_MMR2 |
1017 | /* 1950 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1964 |
1018 | /* 1955 */ MCD::OPC_CheckPredicate, 9, 7, 18, 0, // Skip to: 6575 |
1019 | /* 1960 */ MCD::OPC_Decode, 129, 7, 77, // Opcode: BALIGN_MMR2 |
1020 | /* 1964 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1978 |
1021 | /* 1969 */ MCD::OPC_CheckPredicate, 9, 249, 17, 0, // Skip to: 6575 |
1022 | /* 1974 */ MCD::OPC_Decode, 215, 11, 76, // Opcode: DPAX_W_PH_MMR2 |
1023 | /* 1978 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1992 |
1024 | /* 1983 */ MCD::OPC_CheckPredicate, 8, 235, 17, 0, // Skip to: 6575 |
1025 | /* 1988 */ MCD::OPC_Decode, 211, 11, 76, // Opcode: DPAU_H_QBL_MM |
1026 | /* 1992 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2006 |
1027 | /* 1997 */ MCD::OPC_CheckPredicate, 8, 221, 17, 0, // Skip to: 6575 |
1028 | /* 2002 */ MCD::OPC_Decode, 159, 12, 78, // Opcode: EXTPV_MM |
1029 | /* 2006 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2020 |
1030 | /* 2011 */ MCD::OPC_CheckPredicate, 8, 207, 17, 0, // Skip to: 6575 |
1031 | /* 2016 */ MCD::OPC_Decode, 213, 11, 76, // Opcode: DPAU_H_QBR_MM |
1032 | /* 2020 */ MCD::OPC_FilterValue, 7, 198, 17, 0, // Skip to: 6575 |
1033 | /* 2025 */ MCD::OPC_CheckPredicate, 8, 193, 17, 0, // Skip to: 6575 |
1034 | /* 2030 */ MCD::OPC_Decode, 156, 12, 78, // Opcode: EXTPDPV_MM |
1035 | /* 2034 */ MCD::OPC_FilterValue, 4, 171, 0, 0, // Skip to: 2210 |
1036 | /* 2039 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1037 | /* 2042 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2056 |
1038 | /* 2047 */ MCD::OPC_CheckPredicate, 9, 171, 17, 0, // Skip to: 6575 |
1039 | /* 2052 */ MCD::OPC_Decode, 244, 5, 79, // Opcode: ABSQ_S_QB_MMR2 |
1040 | /* 2056 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2070 |
1041 | /* 2061 */ MCD::OPC_CheckPredicate, 8, 157, 17, 0, // Skip to: 6575 |
1042 | /* 2066 */ MCD::OPC_Decode, 242, 5, 79, // Opcode: ABSQ_S_PH_MM |
1043 | /* 2070 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2084 |
1044 | /* 2075 */ MCD::OPC_CheckPredicate, 8, 143, 17, 0, // Skip to: 6575 |
1045 | /* 2080 */ MCD::OPC_Decode, 246, 5, 80, // Opcode: ABSQ_S_W_MM |
1046 | /* 2084 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2098 |
1047 | /* 2089 */ MCD::OPC_CheckPredicate, 8, 129, 17, 0, // Skip to: 6575 |
1048 | /* 2094 */ MCD::OPC_Decode, 219, 7, 80, // Opcode: BITREV_MM |
1049 | /* 2098 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2112 |
1050 | /* 2103 */ MCD::OPC_CheckPredicate, 8, 115, 17, 0, // Skip to: 6575 |
1051 | /* 2108 */ MCD::OPC_Decode, 150, 14, 81, // Opcode: INSV_MM |
1052 | /* 2112 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2126 |
1053 | /* 2117 */ MCD::OPC_CheckPredicate, 8, 101, 17, 0, // Skip to: 6575 |
1054 | /* 2122 */ MCD::OPC_Decode, 183, 18, 82, // Opcode: PRECEQ_W_PHL_MM |
1055 | /* 2126 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 2140 |
1056 | /* 2131 */ MCD::OPC_CheckPredicate, 8, 87, 17, 0, // Skip to: 6575 |
1057 | /* 2136 */ MCD::OPC_Decode, 185, 18, 82, // Opcode: PRECEQ_W_PHR_MM |
1058 | /* 2140 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2154 |
1059 | /* 2145 */ MCD::OPC_CheckPredicate, 8, 73, 17, 0, // Skip to: 6575 |
1060 | /* 2150 */ MCD::OPC_Decode, 177, 18, 79, // Opcode: PRECEQU_PH_QBL_MM |
1061 | /* 2154 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 2168 |
1062 | /* 2159 */ MCD::OPC_CheckPredicate, 8, 59, 17, 0, // Skip to: 6575 |
1063 | /* 2164 */ MCD::OPC_Decode, 181, 18, 79, // Opcode: PRECEQU_PH_QBR_MM |
1064 | /* 2168 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 2182 |
1065 | /* 2173 */ MCD::OPC_CheckPredicate, 8, 45, 17, 0, // Skip to: 6575 |
1066 | /* 2178 */ MCD::OPC_Decode, 189, 18, 79, // Opcode: PRECEU_PH_QBL_MM |
1067 | /* 2182 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 2196 |
1068 | /* 2187 */ MCD::OPC_CheckPredicate, 8, 31, 17, 0, // Skip to: 6575 |
1069 | /* 2192 */ MCD::OPC_Decode, 193, 18, 79, // Opcode: PRECEU_PH_QBR_MM |
1070 | /* 2196 */ MCD::OPC_FilterValue, 30, 22, 17, 0, // Skip to: 6575 |
1071 | /* 2201 */ MCD::OPC_CheckPredicate, 8, 17, 17, 0, // Skip to: 6575 |
1072 | /* 2206 */ MCD::OPC_Decode, 220, 18, 82, // Opcode: RADDU_W_QB_MM |
1073 | /* 2210 */ MCD::OPC_FilterValue, 5, 87, 0, 0, // Skip to: 2302 |
1074 | /* 2215 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... |
1075 | /* 2218 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2232 |
1076 | /* 2223 */ MCD::OPC_CheckPredicate, 10, 251, 16, 0, // Skip to: 6575 |
1077 | /* 2228 */ MCD::OPC_Decode, 131, 22, 10, // Opcode: TLBGP_MM |
1078 | /* 2232 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2246 |
1079 | /* 2237 */ MCD::OPC_CheckPredicate, 10, 237, 16, 0, // Skip to: 6575 |
1080 | /* 2242 */ MCD::OPC_Decode, 133, 22, 10, // Opcode: TLBGR_MM |
1081 | /* 2246 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2260 |
1082 | /* 2251 */ MCD::OPC_CheckPredicate, 10, 223, 16, 0, // Skip to: 6575 |
1083 | /* 2256 */ MCD::OPC_Decode, 135, 22, 10, // Opcode: TLBGWI_MM |
1084 | /* 2260 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2274 |
1085 | /* 2265 */ MCD::OPC_CheckPredicate, 10, 209, 16, 0, // Skip to: 6575 |
1086 | /* 2270 */ MCD::OPC_Decode, 137, 22, 10, // Opcode: TLBGWR_MM |
1087 | /* 2274 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2288 |
1088 | /* 2279 */ MCD::OPC_CheckPredicate, 10, 195, 16, 0, // Skip to: 6575 |
1089 | /* 2284 */ MCD::OPC_Decode, 129, 22, 10, // Opcode: TLBGINV_MM |
1090 | /* 2288 */ MCD::OPC_FilterValue, 10, 186, 16, 0, // Skip to: 6575 |
1091 | /* 2293 */ MCD::OPC_CheckPredicate, 10, 181, 16, 0, // Skip to: 6575 |
1092 | /* 2298 */ MCD::OPC_Decode, 128, 22, 10, // Opcode: TLBGINVF_MM |
1093 | /* 2302 */ MCD::OPC_FilterValue, 7, 31, 0, 0, // Skip to: 2338 |
1094 | /* 2307 */ MCD::OPC_ExtractField, 11, 2, // Inst{12-11} ... |
1095 | /* 2310 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2324 |
1096 | /* 2315 */ MCD::OPC_CheckPredicate, 9, 159, 16, 0, // Skip to: 6575 |
1097 | /* 2320 */ MCD::OPC_Decode, 131, 20, 74, // Opcode: SHRA_QB_MMR2 |
1098 | /* 2324 */ MCD::OPC_FilterValue, 2, 150, 16, 0, // Skip to: 6575 |
1099 | /* 2329 */ MCD::OPC_CheckPredicate, 9, 145, 16, 0, // Skip to: 6575 |
1100 | /* 2334 */ MCD::OPC_Decode, 135, 20, 74, // Opcode: SHRA_R_QB_MMR2 |
1101 | /* 2338 */ MCD::OPC_FilterValue, 8, 31, 0, 0, // Skip to: 2374 |
1102 | /* 2343 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... |
1103 | /* 2346 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2360 |
1104 | /* 2351 */ MCD::OPC_CheckPredicate, 7, 123, 16, 0, // Skip to: 6575 |
1105 | /* 2356 */ MCD::OPC_Decode, 253, 21, 71, // Opcode: TGE_MM |
1106 | /* 2360 */ MCD::OPC_FilterValue, 1, 114, 16, 0, // Skip to: 6575 |
1107 | /* 2365 */ MCD::OPC_CheckPredicate, 7, 109, 16, 0, // Skip to: 6575 |
1108 | /* 2370 */ MCD::OPC_Decode, 155, 22, 71, // Opcode: TLTU_MM |
1109 | /* 2374 */ MCD::OPC_FilterValue, 9, 101, 0, 0, // Skip to: 2480 |
1110 | /* 2379 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1111 | /* 2382 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 2403 |
1112 | /* 2387 */ MCD::OPC_CheckPredicate, 8, 87, 16, 0, // Skip to: 6575 |
1113 | /* 2392 */ MCD::OPC_CheckField, 21, 5, 0, 80, 16, 0, // Skip to: 6575 |
1114 | /* 2399 */ MCD::OPC_Decode, 168, 17, 83, // Opcode: MTHLIP_MM |
1115 | /* 2403 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2417 |
1116 | /* 2408 */ MCD::OPC_CheckPredicate, 8, 66, 16, 0, // Skip to: 6575 |
1117 | /* 2413 */ MCD::OPC_Decode, 227, 15, 76, // Opcode: MAQ_S_W_PHR_MM |
1118 | /* 2417 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2438 |
1119 | /* 2422 */ MCD::OPC_CheckPredicate, 8, 52, 16, 0, // Skip to: 6575 |
1120 | /* 2427 */ MCD::OPC_CheckField, 21, 5, 0, 45, 16, 0, // Skip to: 6575 |
1121 | /* 2434 */ MCD::OPC_Decode, 228, 19, 83, // Opcode: SHILOV_MM |
1122 | /* 2438 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2452 |
1123 | /* 2443 */ MCD::OPC_CheckPredicate, 8, 31, 16, 0, // Skip to: 6575 |
1124 | /* 2448 */ MCD::OPC_Decode, 225, 15, 76, // Opcode: MAQ_S_W_PHL_MM |
1125 | /* 2452 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2466 |
1126 | /* 2457 */ MCD::OPC_CheckPredicate, 8, 17, 16, 0, // Skip to: 6575 |
1127 | /* 2462 */ MCD::OPC_Decode, 223, 15, 76, // Opcode: MAQ_SA_W_PHR_MM |
1128 | /* 2466 */ MCD::OPC_FilterValue, 7, 8, 16, 0, // Skip to: 6575 |
1129 | /* 2471 */ MCD::OPC_CheckPredicate, 8, 3, 16, 0, // Skip to: 6575 |
1130 | /* 2476 */ MCD::OPC_Decode, 221, 15, 76, // Opcode: MAQ_SA_W_PHL_MM |
1131 | /* 2480 */ MCD::OPC_FilterValue, 10, 115, 0, 0, // Skip to: 2600 |
1132 | /* 2485 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1133 | /* 2488 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2502 |
1134 | /* 2493 */ MCD::OPC_CheckPredicate, 8, 237, 15, 0, // Skip to: 6575 |
1135 | /* 2498 */ MCD::OPC_Decode, 209, 11, 76, // Opcode: DPAQ_S_W_PH_MM |
1136 | /* 2502 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2516 |
1137 | /* 2507 */ MCD::OPC_CheckPredicate, 8, 223, 15, 0, // Skip to: 6575 |
1138 | /* 2512 */ MCD::OPC_Decode, 214, 15, 76, // Opcode: MADD_DSP_MM |
1139 | /* 2516 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2530 |
1140 | /* 2521 */ MCD::OPC_CheckPredicate, 8, 209, 15, 0, // Skip to: 6575 |
1141 | /* 2526 */ MCD::OPC_Decode, 207, 11, 76, // Opcode: DPAQ_SA_L_W_MM |
1142 | /* 2530 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2544 |
1143 | /* 2535 */ MCD::OPC_CheckPredicate, 8, 195, 15, 0, // Skip to: 6575 |
1144 | /* 2540 */ MCD::OPC_Decode, 204, 15, 76, // Opcode: MADDU_DSP_MM |
1145 | /* 2544 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2558 |
1146 | /* 2549 */ MCD::OPC_CheckPredicate, 9, 181, 15, 0, // Skip to: 6575 |
1147 | /* 2554 */ MCD::OPC_Decode, 205, 11, 76, // Opcode: DPAQX_S_W_PH_MMR2 |
1148 | /* 2558 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2572 |
1149 | /* 2563 */ MCD::OPC_CheckPredicate, 8, 167, 15, 0, // Skip to: 6575 |
1150 | /* 2568 */ MCD::OPC_Decode, 137, 17, 76, // Opcode: MSUB_DSP_MM |
1151 | /* 2572 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2586 |
1152 | /* 2577 */ MCD::OPC_CheckPredicate, 9, 153, 15, 0, // Skip to: 6575 |
1153 | /* 2582 */ MCD::OPC_Decode, 203, 11, 76, // Opcode: DPAQX_SA_W_PH_MMR2 |
1154 | /* 2586 */ MCD::OPC_FilterValue, 7, 144, 15, 0, // Skip to: 6575 |
1155 | /* 2591 */ MCD::OPC_CheckPredicate, 8, 139, 15, 0, // Skip to: 6575 |
1156 | /* 2596 */ MCD::OPC_Decode, 255, 16, 76, // Opcode: MSUBU_DSP_MM |
1157 | /* 2600 */ MCD::OPC_FilterValue, 12, 27, 1, 0, // Skip to: 2888 |
1158 | /* 2605 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1159 | /* 2608 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2622 |
1160 | /* 2613 */ MCD::OPC_CheckPredicate, 8, 117, 15, 0, // Skip to: 6575 |
1161 | /* 2618 */ MCD::OPC_Decode, 235, 18, 84, // Opcode: REPLV_PH_MM |
1162 | /* 2622 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2636 |
1163 | /* 2627 */ MCD::OPC_CheckPredicate, 8, 103, 15, 0, // Skip to: 6575 |
1164 | /* 2632 */ MCD::OPC_Decode, 237, 18, 84, // Opcode: REPLV_QB_MM |
1165 | /* 2636 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2650 |
1166 | /* 2641 */ MCD::OPC_CheckPredicate, 7, 89, 15, 0, // Skip to: 6575 |
1167 | /* 2646 */ MCD::OPC_Decode, 193, 19, 80, // Opcode: SEB_MM |
1168 | /* 2650 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2664 |
1169 | /* 2655 */ MCD::OPC_CheckPredicate, 7, 75, 15, 0, // Skip to: 6575 |
1170 | /* 2660 */ MCD::OPC_Decode, 196, 19, 80, // Opcode: SEH_MM |
1171 | /* 2664 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 2678 |
1172 | /* 2669 */ MCD::OPC_CheckPredicate, 7, 61, 15, 0, // Skip to: 6575 |
1173 | /* 2674 */ MCD::OPC_Decode, 246, 8, 80, // Opcode: CLO_MM |
1174 | /* 2678 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 2692 |
1175 | /* 2683 */ MCD::OPC_CheckPredicate, 7, 47, 15, 0, // Skip to: 6575 |
1176 | /* 2688 */ MCD::OPC_Decode, 138, 9, 80, // Opcode: CLZ_MM |
1177 | /* 2692 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 2706 |
1178 | /* 2697 */ MCD::OPC_CheckPredicate, 6, 33, 15, 0, // Skip to: 6575 |
1179 | /* 2702 */ MCD::OPC_Decode, 225, 18, 85, // Opcode: RDHWR_MM |
1180 | /* 2706 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2720 |
1181 | /* 2711 */ MCD::OPC_CheckPredicate, 8, 19, 15, 0, // Skip to: 6575 |
1182 | /* 2716 */ MCD::OPC_Decode, 176, 18, 79, // Opcode: PRECEQU_PH_QBLA_MM |
1183 | /* 2720 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 2734 |
1184 | /* 2725 */ MCD::OPC_CheckPredicate, 7, 5, 15, 0, // Skip to: 6575 |
1185 | /* 2730 */ MCD::OPC_Decode, 189, 22, 80, // Opcode: WSBH_MM |
1186 | /* 2734 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 2748 |
1187 | /* 2739 */ MCD::OPC_CheckPredicate, 6, 247, 14, 0, // Skip to: 6575 |
1188 | /* 2744 */ MCD::OPC_Decode, 214, 17, 86, // Opcode: MULT_MM |
1189 | /* 2748 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 2762 |
1190 | /* 2753 */ MCD::OPC_CheckPredicate, 8, 233, 14, 0, // Skip to: 6575 |
1191 | /* 2758 */ MCD::OPC_Decode, 180, 18, 79, // Opcode: PRECEQU_PH_QBRA_MM |
1192 | /* 2762 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 2776 |
1193 | /* 2767 */ MCD::OPC_CheckPredicate, 6, 219, 14, 0, // Skip to: 6575 |
1194 | /* 2772 */ MCD::OPC_Decode, 216, 17, 86, // Opcode: MULTu_MM |
1195 | /* 2776 */ MCD::OPC_FilterValue, 21, 9, 0, 0, // Skip to: 2790 |
1196 | /* 2781 */ MCD::OPC_CheckPredicate, 6, 205, 14, 0, // Skip to: 6575 |
1197 | /* 2786 */ MCD::OPC_Decode, 186, 19, 86, // Opcode: SDIV_MM |
1198 | /* 2790 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 2804 |
1199 | /* 2795 */ MCD::OPC_CheckPredicate, 8, 191, 14, 0, // Skip to: 6575 |
1200 | /* 2800 */ MCD::OPC_Decode, 188, 18, 79, // Opcode: PRECEU_PH_QBLA_MM |
1201 | /* 2804 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 2818 |
1202 | /* 2809 */ MCD::OPC_CheckPredicate, 6, 177, 14, 0, // Skip to: 6575 |
1203 | /* 2814 */ MCD::OPC_Decode, 174, 22, 86, // Opcode: UDIV_MM |
1204 | /* 2818 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 2832 |
1205 | /* 2823 */ MCD::OPC_CheckPredicate, 6, 163, 14, 0, // Skip to: 6575 |
1206 | /* 2828 */ MCD::OPC_Decode, 215, 15, 86, // Opcode: MADD_MM |
1207 | /* 2832 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 2846 |
1208 | /* 2837 */ MCD::OPC_CheckPredicate, 8, 149, 14, 0, // Skip to: 6575 |
1209 | /* 2842 */ MCD::OPC_Decode, 192, 18, 79, // Opcode: PRECEU_PH_QBRA_MM |
1210 | /* 2846 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 2860 |
1211 | /* 2851 */ MCD::OPC_CheckPredicate, 6, 135, 14, 0, // Skip to: 6575 |
1212 | /* 2856 */ MCD::OPC_Decode, 205, 15, 86, // Opcode: MADDU_MM |
1213 | /* 2860 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 2874 |
1214 | /* 2865 */ MCD::OPC_CheckPredicate, 6, 121, 14, 0, // Skip to: 6575 |
1215 | /* 2870 */ MCD::OPC_Decode, 138, 17, 86, // Opcode: MSUB_MM |
1216 | /* 2874 */ MCD::OPC_FilterValue, 31, 112, 14, 0, // Skip to: 6575 |
1217 | /* 2879 */ MCD::OPC_CheckPredicate, 6, 107, 14, 0, // Skip to: 6575 |
1218 | /* 2884 */ MCD::OPC_Decode, 128, 17, 86, // Opcode: MSUBU_MM |
1219 | /* 2888 */ MCD::OPC_FilterValue, 13, 206, 0, 0, // Skip to: 3099 |
1220 | /* 2893 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1221 | /* 2896 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 2917 |
1222 | /* 2901 */ MCD::OPC_CheckPredicate, 7, 85, 14, 0, // Skip to: 6575 |
1223 | /* 2906 */ MCD::OPC_CheckField, 16, 10, 0, 78, 14, 0, // Skip to: 6575 |
1224 | /* 2913 */ MCD::OPC_Decode, 143, 22, 10, // Opcode: TLBP_MM |
1225 | /* 2917 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2938 |
1226 | /* 2922 */ MCD::OPC_CheckPredicate, 7, 64, 14, 0, // Skip to: 6575 |
1227 | /* 2927 */ MCD::OPC_CheckField, 16, 10, 0, 57, 14, 0, // Skip to: 6575 |
1228 | /* 2934 */ MCD::OPC_Decode, 145, 22, 10, // Opcode: TLBR_MM |
1229 | /* 2938 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 2959 |
1230 | /* 2943 */ MCD::OPC_CheckPredicate, 7, 43, 14, 0, // Skip to: 6575 |
1231 | /* 2948 */ MCD::OPC_CheckField, 16, 10, 0, 36, 14, 0, // Skip to: 6575 |
1232 | /* 2955 */ MCD::OPC_Decode, 147, 22, 10, // Opcode: TLBWI_MM |
1233 | /* 2959 */ MCD::OPC_FilterValue, 6, 16, 0, 0, // Skip to: 2980 |
1234 | /* 2964 */ MCD::OPC_CheckPredicate, 7, 22, 14, 0, // Skip to: 6575 |
1235 | /* 2969 */ MCD::OPC_CheckField, 16, 10, 0, 15, 14, 0, // Skip to: 6575 |
1236 | /* 2976 */ MCD::OPC_Decode, 149, 22, 10, // Opcode: TLBWR_MM |
1237 | /* 2980 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 3001 |
1238 | /* 2985 */ MCD::OPC_CheckPredicate, 7, 1, 14, 0, // Skip to: 6575 |
1239 | /* 2990 */ MCD::OPC_CheckField, 21, 5, 0, 250, 13, 0, // Skip to: 6575 |
1240 | /* 2997 */ MCD::OPC_Decode, 217, 21, 87, // Opcode: SYNC_MM |
1241 | /* 3001 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 3015 |
1242 | /* 3006 */ MCD::OPC_CheckPredicate, 7, 236, 13, 0, // Skip to: 6575 |
1243 | /* 3011 */ MCD::OPC_Decode, 220, 21, 88, // Opcode: SYSCALL_MM |
1244 | /* 3015 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 3029 |
1245 | /* 3020 */ MCD::OPC_CheckPredicate, 7, 222, 13, 0, // Skip to: 6575 |
1246 | /* 3025 */ MCD::OPC_Decode, 183, 22, 88, // Opcode: WAIT_MM |
1247 | /* 3029 */ MCD::OPC_FilterValue, 24, 9, 0, 0, // Skip to: 3043 |
1248 | /* 3034 */ MCD::OPC_CheckPredicate, 10, 208, 13, 0, // Skip to: 6575 |
1249 | /* 3039 */ MCD::OPC_Decode, 251, 13, 88, // Opcode: HYPCALL_MM |
1250 | /* 3043 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 3057 |
1251 | /* 3048 */ MCD::OPC_CheckPredicate, 7, 194, 13, 0, // Skip to: 6575 |
1252 | /* 3053 */ MCD::OPC_Decode, 173, 19, 88, // Opcode: SDBBP_MM |
1253 | /* 3057 */ MCD::OPC_FilterValue, 28, 16, 0, 0, // Skip to: 3078 |
1254 | /* 3062 */ MCD::OPC_CheckPredicate, 7, 180, 13, 0, // Skip to: 6575 |
1255 | /* 3067 */ MCD::OPC_CheckField, 16, 10, 0, 173, 13, 0, // Skip to: 6575 |
1256 | /* 3074 */ MCD::OPC_Decode, 144, 11, 10, // Opcode: DERET_MM |
1257 | /* 3078 */ MCD::OPC_FilterValue, 30, 164, 13, 0, // Skip to: 6575 |
1258 | /* 3083 */ MCD::OPC_CheckPredicate, 7, 159, 13, 0, // Skip to: 6575 |
1259 | /* 3088 */ MCD::OPC_CheckField, 16, 10, 0, 152, 13, 0, // Skip to: 6575 |
1260 | /* 3095 */ MCD::OPC_Decode, 147, 12, 10, // Opcode: ERET_MM |
1261 | /* 3099 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 3120 |
1262 | /* 3104 */ MCD::OPC_CheckPredicate, 9, 138, 13, 0, // Skip to: 6575 |
1263 | /* 3109 */ MCD::OPC_CheckField, 11, 1, 0, 131, 13, 0, // Skip to: 6575 |
1264 | /* 3116 */ MCD::OPC_Decode, 143, 20, 70, // Opcode: SHRL_PH_MMR2 |
1265 | /* 3120 */ MCD::OPC_FilterValue, 16, 31, 0, 0, // Skip to: 3156 |
1266 | /* 3125 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... |
1267 | /* 3128 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3142 |
1268 | /* 3133 */ MCD::OPC_CheckPredicate, 7, 109, 13, 0, // Skip to: 6575 |
1269 | /* 3138 */ MCD::OPC_Decode, 252, 21, 71, // Opcode: TGEU_MM |
1270 | /* 3142 */ MCD::OPC_FilterValue, 1, 100, 13, 0, // Skip to: 6575 |
1271 | /* 3147 */ MCD::OPC_CheckPredicate, 7, 95, 13, 0, // Skip to: 6575 |
1272 | /* 3152 */ MCD::OPC_Decode, 160, 22, 71, // Opcode: TNE_MM |
1273 | /* 3156 */ MCD::OPC_FilterValue, 18, 115, 0, 0, // Skip to: 3276 |
1274 | /* 3161 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1275 | /* 3164 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3178 |
1276 | /* 3169 */ MCD::OPC_CheckPredicate, 9, 73, 13, 0, // Skip to: 6575 |
1277 | /* 3174 */ MCD::OPC_Decode, 240, 11, 76, // Opcode: DPS_W_PH_MMR2 |
1278 | /* 3178 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3192 |
1279 | /* 3183 */ MCD::OPC_CheckPredicate, 8, 59, 13, 0, // Skip to: 6575 |
1280 | /* 3188 */ MCD::OPC_Decode, 213, 17, 89, // Opcode: MULT_DSP_MM |
1281 | /* 3192 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3206 |
1282 | /* 3197 */ MCD::OPC_CheckPredicate, 9, 45, 13, 0, // Skip to: 6575 |
1283 | /* 3202 */ MCD::OPC_Decode, 238, 11, 76, // Opcode: DPSX_W_PH_MMR2 |
1284 | /* 3206 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3220 |
1285 | /* 3211 */ MCD::OPC_CheckPredicate, 8, 31, 13, 0, // Skip to: 6575 |
1286 | /* 3216 */ MCD::OPC_Decode, 211, 17, 89, // Opcode: MULTU_DSP_MM |
1287 | /* 3220 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3234 |
1288 | /* 3225 */ MCD::OPC_CheckPredicate, 8, 17, 13, 0, // Skip to: 6575 |
1289 | /* 3230 */ MCD::OPC_Decode, 234, 11, 76, // Opcode: DPSU_H_QBL_MM |
1290 | /* 3234 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3248 |
1291 | /* 3239 */ MCD::OPC_CheckPredicate, 9, 3, 13, 0, // Skip to: 6575 |
1292 | /* 3244 */ MCD::OPC_Decode, 208, 17, 76, // Opcode: MULSA_W_PH_MMR2 |
1293 | /* 3248 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3262 |
1294 | /* 3253 */ MCD::OPC_CheckPredicate, 8, 245, 12, 0, // Skip to: 6575 |
1295 | /* 3258 */ MCD::OPC_Decode, 236, 11, 76, // Opcode: DPSU_H_QBR_MM |
1296 | /* 3262 */ MCD::OPC_FilterValue, 7, 236, 12, 0, // Skip to: 6575 |
1297 | /* 3267 */ MCD::OPC_CheckPredicate, 8, 231, 12, 0, // Skip to: 6575 |
1298 | /* 3272 */ MCD::OPC_Decode, 206, 17, 76, // Opcode: MULSAQ_S_W_PH_MM |
1299 | /* 3276 */ MCD::OPC_FilterValue, 19, 16, 0, 0, // Skip to: 3297 |
1300 | /* 3281 */ MCD::OPC_CheckPredicate, 10, 217, 12, 0, // Skip to: 6575 |
1301 | /* 3286 */ MCD::OPC_CheckField, 14, 2, 0, 210, 12, 0, // Skip to: 6575 |
1302 | /* 3293 */ MCD::OPC_Decode, 137, 16, 68, // Opcode: MFGC0_MM |
1303 | /* 3297 */ MCD::OPC_FilterValue, 20, 31, 0, 0, // Skip to: 3333 |
1304 | /* 3302 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1305 | /* 3305 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 3319 |
1306 | /* 3310 */ MCD::OPC_CheckPredicate, 7, 188, 12, 0, // Skip to: 6575 |
1307 | /* 3315 */ MCD::OPC_Decode, 219, 8, 90, // Opcode: CFC2_MM |
1308 | /* 3319 */ MCD::OPC_FilterValue, 27, 179, 12, 0, // Skip to: 6575 |
1309 | /* 3324 */ MCD::OPC_CheckPredicate, 7, 174, 12, 0, // Skip to: 6575 |
1310 | /* 3329 */ MCD::OPC_Decode, 246, 9, 91, // Opcode: CTC2_MM |
1311 | /* 3333 */ MCD::OPC_FilterValue, 21, 87, 0, 0, // Skip to: 3425 |
1312 | /* 3338 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1313 | /* 3341 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 3362 |
1314 | /* 3346 */ MCD::OPC_CheckPredicate, 6, 152, 12, 0, // Skip to: 6575 |
1315 | /* 3351 */ MCD::OPC_CheckField, 21, 5, 0, 145, 12, 0, // Skip to: 6575 |
1316 | /* 3358 */ MCD::OPC_Decode, 151, 16, 92, // Opcode: MFHI_MM |
1317 | /* 3362 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 3383 |
1318 | /* 3367 */ MCD::OPC_CheckPredicate, 6, 131, 12, 0, // Skip to: 6575 |
1319 | /* 3372 */ MCD::OPC_CheckField, 21, 5, 0, 124, 12, 0, // Skip to: 6575 |
1320 | /* 3379 */ MCD::OPC_Decode, 157, 16, 92, // Opcode: MFLO_MM |
1321 | /* 3383 */ MCD::OPC_FilterValue, 5, 16, 0, 0, // Skip to: 3404 |
1322 | /* 3388 */ MCD::OPC_CheckPredicate, 6, 110, 12, 0, // Skip to: 6575 |
1323 | /* 3393 */ MCD::OPC_CheckField, 21, 5, 0, 103, 12, 0, // Skip to: 6575 |
1324 | /* 3400 */ MCD::OPC_Decode, 166, 17, 92, // Opcode: MTHI_MM |
1325 | /* 3404 */ MCD::OPC_FilterValue, 7, 94, 12, 0, // Skip to: 6575 |
1326 | /* 3409 */ MCD::OPC_CheckPredicate, 6, 89, 12, 0, // Skip to: 6575 |
1327 | /* 3414 */ MCD::OPC_CheckField, 21, 5, 0, 82, 12, 0, // Skip to: 6575 |
1328 | /* 3421 */ MCD::OPC_Decode, 173, 17, 92, // Opcode: MTLO_MM |
1329 | /* 3425 */ MCD::OPC_FilterValue, 23, 16, 0, 0, // Skip to: 3446 |
1330 | /* 3430 */ MCD::OPC_CheckPredicate, 8, 68, 12, 0, // Skip to: 6575 |
1331 | /* 3435 */ MCD::OPC_CheckField, 11, 2, 0, 61, 12, 0, // Skip to: 6575 |
1332 | /* 3442 */ MCD::OPC_Decode, 241, 18, 93, // Opcode: REPL_QB_MM |
1333 | /* 3446 */ MCD::OPC_FilterValue, 25, 115, 0, 0, // Skip to: 3566 |
1334 | /* 3451 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1335 | /* 3454 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3468 |
1336 | /* 3459 */ MCD::OPC_CheckPredicate, 8, 39, 12, 0, // Skip to: 6575 |
1337 | /* 3464 */ MCD::OPC_Decode, 222, 18, 94, // Opcode: RDDSP_MM |
1338 | /* 3468 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3482 |
1339 | /* 3473 */ MCD::OPC_CheckPredicate, 8, 25, 12, 0, // Skip to: 6575 |
1340 | /* 3478 */ MCD::OPC_Decode, 176, 12, 95, // Opcode: EXTR_W_MM |
1341 | /* 3482 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3496 |
1342 | /* 3487 */ MCD::OPC_CheckPredicate, 8, 11, 12, 0, // Skip to: 6575 |
1343 | /* 3492 */ MCD::OPC_Decode, 186, 22, 94, // Opcode: WRDSP_MM |
1344 | /* 3496 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3510 |
1345 | /* 3501 */ MCD::OPC_CheckPredicate, 8, 253, 11, 0, // Skip to: 6575 |
1346 | /* 3506 */ MCD::OPC_Decode, 172, 12, 95, // Opcode: EXTR_R_W_MM |
1347 | /* 3510 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3524 |
1348 | /* 3515 */ MCD::OPC_CheckPredicate, 8, 239, 11, 0, // Skip to: 6575 |
1349 | /* 3520 */ MCD::OPC_Decode, 160, 12, 95, // Opcode: EXTP_MM |
1350 | /* 3524 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3538 |
1351 | /* 3529 */ MCD::OPC_CheckPredicate, 8, 225, 11, 0, // Skip to: 6575 |
1352 | /* 3534 */ MCD::OPC_Decode, 170, 12, 95, // Opcode: EXTR_RS_W_MM |
1353 | /* 3538 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3552 |
1354 | /* 3543 */ MCD::OPC_CheckPredicate, 8, 211, 11, 0, // Skip to: 6575 |
1355 | /* 3548 */ MCD::OPC_Decode, 157, 12, 95, // Opcode: EXTPDP_MM |
1356 | /* 3552 */ MCD::OPC_FilterValue, 7, 202, 11, 0, // Skip to: 6575 |
1357 | /* 3557 */ MCD::OPC_CheckPredicate, 8, 197, 11, 0, // Skip to: 6575 |
1358 | /* 3562 */ MCD::OPC_Decode, 174, 12, 95, // Opcode: EXTR_S_H_MM |
1359 | /* 3566 */ MCD::OPC_FilterValue, 26, 115, 0, 0, // Skip to: 3686 |
1360 | /* 3571 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
1361 | /* 3574 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3588 |
1362 | /* 3579 */ MCD::OPC_CheckPredicate, 8, 175, 11, 0, // Skip to: 6575 |
1363 | /* 3584 */ MCD::OPC_Decode, 226, 11, 76, // Opcode: DPSQ_S_W_PH_MM |
1364 | /* 3588 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3602 |
1365 | /* 3593 */ MCD::OPC_CheckPredicate, 8, 161, 11, 0, // Skip to: 6575 |
1366 | /* 3598 */ MCD::OPC_Decode, 168, 12, 78, // Opcode: EXTRV_W_MM |
1367 | /* 3602 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3616 |
1368 | /* 3607 */ MCD::OPC_CheckPredicate, 8, 147, 11, 0, // Skip to: 6575 |
1369 | /* 3612 */ MCD::OPC_Decode, 224, 11, 76, // Opcode: DPSQ_SA_L_W_MM |
1370 | /* 3616 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3630 |
1371 | /* 3621 */ MCD::OPC_CheckPredicate, 8, 133, 11, 0, // Skip to: 6575 |
1372 | /* 3626 */ MCD::OPC_Decode, 164, 12, 78, // Opcode: EXTRV_R_W_MM |
1373 | /* 3630 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3644 |
1374 | /* 3635 */ MCD::OPC_CheckPredicate, 9, 119, 11, 0, // Skip to: 6575 |
1375 | /* 3640 */ MCD::OPC_Decode, 222, 11, 76, // Opcode: DPSQX_S_W_PH_MMR2 |
1376 | /* 3644 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3658 |
1377 | /* 3649 */ MCD::OPC_CheckPredicate, 8, 105, 11, 0, // Skip to: 6575 |
1378 | /* 3654 */ MCD::OPC_Decode, 162, 12, 78, // Opcode: EXTRV_RS_W_MM |
1379 | /* 3658 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3672 |
1380 | /* 3663 */ MCD::OPC_CheckPredicate, 9, 91, 11, 0, // Skip to: 6575 |
1381 | /* 3668 */ MCD::OPC_Decode, 220, 11, 76, // Opcode: DPSQX_SA_W_PH_MMR2 |
1382 | /* 3672 */ MCD::OPC_FilterValue, 7, 82, 11, 0, // Skip to: 6575 |
1383 | /* 3677 */ MCD::OPC_CheckPredicate, 8, 77, 11, 0, // Skip to: 6575 |
1384 | /* 3682 */ MCD::OPC_Decode, 166, 12, 78, // Opcode: EXTRV_S_H_MM |
1385 | /* 3686 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 3707 |
1386 | /* 3691 */ MCD::OPC_CheckPredicate, 10, 63, 11, 0, // Skip to: 6575 |
1387 | /* 3696 */ MCD::OPC_CheckField, 14, 2, 0, 56, 11, 0, // Skip to: 6575 |
1388 | /* 3703 */ MCD::OPC_Decode, 153, 17, 69, // Opcode: MTGC0_MM |
1389 | /* 3707 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 3759 |
1390 | /* 3712 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1391 | /* 3715 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 3745 |
1392 | /* 3720 */ MCD::OPC_CheckPredicate, 6, 11, 0, 0, // Skip to: 3736 |
1393 | /* 3725 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3736 |
1394 | /* 3732 */ MCD::OPC_Decode, 187, 14, 92, // Opcode: JR_MM |
1395 | /* 3736 */ MCD::OPC_CheckPredicate, 6, 18, 11, 0, // Skip to: 6575 |
1396 | /* 3741 */ MCD::OPC_Decode, 165, 14, 80, // Opcode: JALR_MM |
1397 | /* 3745 */ MCD::OPC_FilterValue, 9, 9, 11, 0, // Skip to: 6575 |
1398 | /* 3750 */ MCD::OPC_CheckPredicate, 6, 4, 11, 0, // Skip to: 6575 |
1399 | /* 3755 */ MCD::OPC_Decode, 162, 14, 80, // Opcode: JALRS_MM |
1400 | /* 3759 */ MCD::OPC_FilterValue, 29, 251, 10, 0, // Skip to: 6575 |
1401 | /* 3764 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
1402 | /* 3767 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 3788 |
1403 | /* 3772 */ MCD::OPC_CheckPredicate, 7, 238, 10, 0, // Skip to: 6575 |
1404 | /* 3777 */ MCD::OPC_CheckField, 21, 5, 0, 231, 10, 0, // Skip to: 6575 |
1405 | /* 3784 */ MCD::OPC_Decode, 166, 11, 92, // Opcode: DI_MM |
1406 | /* 3788 */ MCD::OPC_FilterValue, 10, 222, 10, 0, // Skip to: 6575 |
1407 | /* 3793 */ MCD::OPC_CheckPredicate, 7, 217, 10, 0, // Skip to: 6575 |
1408 | /* 3798 */ MCD::OPC_CheckField, 21, 5, 0, 210, 10, 0, // Skip to: 6575 |
1409 | /* 3805 */ MCD::OPC_Decode, 141, 12, 92, // Opcode: EI_MM |
1410 | /* 3809 */ MCD::OPC_FilterValue, 61, 201, 10, 0, // Skip to: 6575 |
1411 | /* 3814 */ MCD::OPC_CheckPredicate, 8, 196, 10, 0, // Skip to: 6575 |
1412 | /* 3819 */ MCD::OPC_CheckField, 6, 5, 0, 189, 10, 0, // Skip to: 6575 |
1413 | /* 3826 */ MCD::OPC_Decode, 239, 18, 96, // Opcode: REPL_PH_MM |
1414 | /* 3830 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3844 |
1415 | /* 3835 */ MCD::OPC_CheckPredicate, 6, 175, 10, 0, // Skip to: 6575 |
1416 | /* 3840 */ MCD::OPC_Decode, 189, 6, 97, // Opcode: ADDi_MM |
1417 | /* 3844 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3858 |
1418 | /* 3849 */ MCD::OPC_CheckPredicate, 7, 161, 10, 0, // Skip to: 6575 |
1419 | /* 3854 */ MCD::OPC_Decode, 209, 14, 98, // Opcode: LBu_MM |
1420 | /* 3858 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3872 |
1421 | /* 3863 */ MCD::OPC_CheckPredicate, 7, 147, 10, 0, // Skip to: 6575 |
1422 | /* 3868 */ MCD::OPC_Decode, 157, 19, 98, // Opcode: SB_MM |
1423 | /* 3872 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 3886 |
1424 | /* 3877 */ MCD::OPC_CheckPredicate, 7, 133, 10, 0, // Skip to: 6575 |
1425 | /* 3882 */ MCD::OPC_Decode, 203, 14, 98, // Opcode: LB_MM |
1426 | /* 3886 */ MCD::OPC_FilterValue, 8, 73, 0, 0, // Skip to: 3964 |
1427 | /* 3891 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1428 | /* 3894 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3908 |
1429 | /* 3899 */ MCD::OPC_CheckPredicate, 7, 111, 10, 0, // Skip to: 6575 |
1430 | /* 3904 */ MCD::OPC_Decode, 167, 15, 99, // Opcode: LWP_MM |
1431 | /* 3908 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3922 |
1432 | /* 3913 */ MCD::OPC_CheckPredicate, 7, 97, 10, 0, // Skip to: 6575 |
1433 | /* 3918 */ MCD::OPC_Decode, 164, 15, 99, // Opcode: LWM32_MM |
1434 | /* 3922 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3936 |
1435 | /* 3927 */ MCD::OPC_CheckPredicate, 6, 83, 10, 0, // Skip to: 6575 |
1436 | /* 3932 */ MCD::OPC_Decode, 195, 8, 100, // Opcode: CACHE_MM |
1437 | /* 3936 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 3950 |
1438 | /* 3941 */ MCD::OPC_CheckPredicate, 7, 69, 10, 0, // Skip to: 6575 |
1439 | /* 3946 */ MCD::OPC_Decode, 201, 21, 99, // Opcode: SWP_MM |
1440 | /* 3950 */ MCD::OPC_FilterValue, 13, 60, 10, 0, // Skip to: 6575 |
1441 | /* 3955 */ MCD::OPC_CheckPredicate, 7, 55, 10, 0, // Skip to: 6575 |
1442 | /* 3960 */ MCD::OPC_Decode, 200, 21, 99, // Opcode: SWM32_MM |
1443 | /* 3964 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 3978 |
1444 | /* 3969 */ MCD::OPC_CheckPredicate, 6, 41, 10, 0, // Skip to: 6575 |
1445 | /* 3974 */ MCD::OPC_Decode, 191, 6, 97, // Opcode: ADDiu_MM |
1446 | /* 3978 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 3992 |
1447 | /* 3983 */ MCD::OPC_CheckPredicate, 7, 27, 10, 0, // Skip to: 6575 |
1448 | /* 3988 */ MCD::OPC_Decode, 248, 14, 98, // Opcode: LHu_MM |
1449 | /* 3992 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4006 |
1450 | /* 3997 */ MCD::OPC_CheckPredicate, 7, 13, 10, 0, // Skip to: 6575 |
1451 | /* 4002 */ MCD::OPC_Decode, 146, 20, 98, // Opcode: SH_MM |
1452 | /* 4006 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 4020 |
1453 | /* 4011 */ MCD::OPC_CheckPredicate, 7, 255, 9, 0, // Skip to: 6575 |
1454 | /* 4016 */ MCD::OPC_Decode, 243, 14, 98, // Opcode: LH_MM |
1455 | /* 4020 */ MCD::OPC_FilterValue, 16, 83, 1, 0, // Skip to: 4364 |
1456 | /* 4025 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
1457 | /* 4028 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4042 |
1458 | /* 4033 */ MCD::OPC_CheckPredicate, 6, 233, 9, 0, // Skip to: 6575 |
1459 | /* 4038 */ MCD::OPC_Decode, 249, 7, 101, // Opcode: BLTZ_MM |
1460 | /* 4042 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4056 |
1461 | /* 4047 */ MCD::OPC_CheckPredicate, 6, 219, 9, 0, // Skip to: 6575 |
1462 | /* 4052 */ MCD::OPC_Decode, 244, 7, 101, // Opcode: BLTZAL_MM |
1463 | /* 4056 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4070 |
1464 | /* 4061 */ MCD::OPC_CheckPredicate, 6, 205, 9, 0, // Skip to: 6575 |
1465 | /* 4066 */ MCD::OPC_Decode, 192, 7, 101, // Opcode: BGEZ_MM |
1466 | /* 4070 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 4084 |
1467 | /* 4075 */ MCD::OPC_CheckPredicate, 6, 191, 9, 0, // Skip to: 6575 |
1468 | /* 4080 */ MCD::OPC_Decode, 187, 7, 101, // Opcode: BGEZAL_MM |
1469 | /* 4084 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4098 |
1470 | /* 4089 */ MCD::OPC_CheckPredicate, 6, 177, 9, 0, // Skip to: 6575 |
1471 | /* 4094 */ MCD::OPC_Decode, 230, 7, 101, // Opcode: BLEZ_MM |
1472 | /* 4098 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4112 |
1473 | /* 4103 */ MCD::OPC_CheckPredicate, 6, 163, 9, 0, // Skip to: 6575 |
1474 | /* 4108 */ MCD::OPC_Decode, 146, 8, 101, // Opcode: BNEZC_MM |
1475 | /* 4112 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4126 |
1476 | /* 4117 */ MCD::OPC_CheckPredicate, 6, 149, 9, 0, // Skip to: 6575 |
1477 | /* 4122 */ MCD::OPC_Decode, 201, 7, 101, // Opcode: BGTZ_MM |
1478 | /* 4126 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 4140 |
1479 | /* 4131 */ MCD::OPC_CheckPredicate, 6, 135, 9, 0, // Skip to: 6575 |
1480 | /* 4136 */ MCD::OPC_Decode, 171, 7, 101, // Opcode: BEQZC_MM |
1481 | /* 4140 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 4154 |
1482 | /* 4145 */ MCD::OPC_CheckPredicate, 6, 121, 9, 0, // Skip to: 6575 |
1483 | /* 4150 */ MCD::OPC_Decode, 153, 22, 102, // Opcode: TLTI_MM |
1484 | /* 4154 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 4168 |
1485 | /* 4159 */ MCD::OPC_CheckPredicate, 6, 107, 9, 0, // Skip to: 6575 |
1486 | /* 4164 */ MCD::OPC_Decode, 250, 21, 102, // Opcode: TGEI_MM |
1487 | /* 4168 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 4182 |
1488 | /* 4173 */ MCD::OPC_CheckPredicate, 6, 93, 9, 0, // Skip to: 6575 |
1489 | /* 4178 */ MCD::OPC_Decode, 152, 22, 102, // Opcode: TLTIU_MM |
1490 | /* 4182 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 4196 |
1491 | /* 4187 */ MCD::OPC_CheckPredicate, 6, 79, 9, 0, // Skip to: 6575 |
1492 | /* 4192 */ MCD::OPC_Decode, 249, 21, 102, // Opcode: TGEIU_MM |
1493 | /* 4196 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 4210 |
1494 | /* 4201 */ MCD::OPC_CheckPredicate, 6, 65, 9, 0, // Skip to: 6575 |
1495 | /* 4206 */ MCD::OPC_Decode, 159, 22, 102, // Opcode: TNEI_MM |
1496 | /* 4210 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 4224 |
1497 | /* 4215 */ MCD::OPC_CheckPredicate, 6, 51, 9, 0, // Skip to: 6575 |
1498 | /* 4220 */ MCD::OPC_Decode, 142, 15, 103, // Opcode: LUi_MM |
1499 | /* 4224 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4238 |
1500 | /* 4229 */ MCD::OPC_CheckPredicate, 6, 37, 9, 0, // Skip to: 6575 |
1501 | /* 4234 */ MCD::OPC_Decode, 244, 21, 102, // Opcode: TEQI_MM |
1502 | /* 4238 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 4252 |
1503 | /* 4243 */ MCD::OPC_CheckPredicate, 6, 23, 9, 0, // Skip to: 6575 |
1504 | /* 4248 */ MCD::OPC_Decode, 215, 21, 104, // Opcode: SYNCI_MM |
1505 | /* 4252 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 4266 |
1506 | /* 4257 */ MCD::OPC_CheckPredicate, 6, 9, 9, 0, // Skip to: 6575 |
1507 | /* 4262 */ MCD::OPC_Decode, 243, 7, 101, // Opcode: BLTZALS_MM |
1508 | /* 4266 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 4280 |
1509 | /* 4271 */ MCD::OPC_CheckPredicate, 6, 251, 8, 0, // Skip to: 6575 |
1510 | /* 4276 */ MCD::OPC_Decode, 186, 7, 101, // Opcode: BGEZALS_MM |
1511 | /* 4280 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 4301 |
1512 | /* 4285 */ MCD::OPC_CheckPredicate, 11, 237, 8, 0, // Skip to: 6575 |
1513 | /* 4290 */ MCD::OPC_CheckField, 16, 5, 0, 230, 8, 0, // Skip to: 6575 |
1514 | /* 4297 */ MCD::OPC_Decode, 159, 8, 105, // Opcode: BPOSGE32C_MMR3 |
1515 | /* 4301 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 4322 |
1516 | /* 4306 */ MCD::OPC_CheckPredicate, 12, 216, 8, 0, // Skip to: 6575 |
1517 | /* 4311 */ MCD::OPC_CheckField, 16, 5, 0, 209, 8, 0, // Skip to: 6575 |
1518 | /* 4318 */ MCD::OPC_Decode, 160, 8, 106, // Opcode: BPOSGE32_MM |
1519 | /* 4322 */ MCD::OPC_FilterValue, 28, 16, 0, 0, // Skip to: 4343 |
1520 | /* 4327 */ MCD::OPC_CheckPredicate, 13, 195, 8, 0, // Skip to: 6575 |
1521 | /* 4332 */ MCD::OPC_CheckField, 16, 2, 0, 188, 8, 0, // Skip to: 6575 |
1522 | /* 4339 */ MCD::OPC_Decode, 140, 7, 107, // Opcode: BC1F_MM |
1523 | /* 4343 */ MCD::OPC_FilterValue, 29, 179, 8, 0, // Skip to: 6575 |
1524 | /* 4348 */ MCD::OPC_CheckPredicate, 13, 174, 8, 0, // Skip to: 6575 |
1525 | /* 4353 */ MCD::OPC_CheckField, 16, 2, 0, 167, 8, 0, // Skip to: 6575 |
1526 | /* 4360 */ MCD::OPC_Decode, 145, 7, 107, // Opcode: BC1T_MM |
1527 | /* 4364 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 4378 |
1528 | /* 4369 */ MCD::OPC_CheckPredicate, 6, 153, 8, 0, // Skip to: 6575 |
1529 | /* 4374 */ MCD::OPC_Decode, 148, 18, 108, // Opcode: ORi_MM |
1530 | /* 4378 */ MCD::OPC_FilterValue, 21, 234, 5, 0, // Skip to: 5897 |
1531 | /* 4383 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
1532 | /* 4386 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4400 |
1533 | /* 4391 */ MCD::OPC_CheckPredicate, 14, 131, 8, 0, // Skip to: 6575 |
1534 | /* 4396 */ MCD::OPC_Decode, 219, 15, 109, // Opcode: MADD_S_MM |
1535 | /* 4400 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4414 |
1536 | /* 4405 */ MCD::OPC_CheckPredicate, 14, 117, 8, 0, // Skip to: 6575 |
1537 | /* 4410 */ MCD::OPC_Decode, 249, 17, 109, // Opcode: NMADD_S_MM |
1538 | /* 4414 */ MCD::OPC_FilterValue, 8, 59, 0, 0, // Skip to: 4478 |
1539 | /* 4419 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
1540 | /* 4422 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4436 |
1541 | /* 4427 */ MCD::OPC_CheckPredicate, 13, 95, 8, 0, // Skip to: 6575 |
1542 | /* 4432 */ MCD::OPC_Decode, 178, 15, 110, // Opcode: LWXC1_MM |
1543 | /* 4436 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4450 |
1544 | /* 4441 */ MCD::OPC_CheckPredicate, 13, 81, 8, 0, // Skip to: 6575 |
1545 | /* 4446 */ MCD::OPC_Decode, 210, 21, 110, // Opcode: SWXC1_MM |
1546 | /* 4450 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4464 |
1547 | /* 4455 */ MCD::OPC_CheckPredicate, 15, 67, 8, 0, // Skip to: 6575 |
1548 | /* 4460 */ MCD::OPC_Decode, 139, 15, 111, // Opcode: LUXC1_MM |
1549 | /* 4464 */ MCD::OPC_FilterValue, 6, 58, 8, 0, // Skip to: 6575 |
1550 | /* 4469 */ MCD::OPC_CheckPredicate, 15, 53, 8, 0, // Skip to: 6575 |
1551 | /* 4474 */ MCD::OPC_Decode, 178, 21, 111, // Opcode: SUXC1_MM |
1552 | /* 4478 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 4492 |
1553 | /* 4483 */ MCD::OPC_CheckPredicate, 16, 39, 8, 0, // Skip to: 6575 |
1554 | /* 4488 */ MCD::OPC_Decode, 211, 15, 112, // Opcode: MADD_D32_MM |
1555 | /* 4492 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 4506 |
1556 | /* 4497 */ MCD::OPC_CheckPredicate, 16, 25, 8, 0, // Skip to: 6575 |
1557 | /* 4502 */ MCD::OPC_Decode, 246, 17, 112, // Opcode: NMADD_D32_MM |
1558 | /* 4506 */ MCD::OPC_FilterValue, 32, 101, 0, 0, // Skip to: 4612 |
1559 | /* 4511 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
1560 | /* 4514 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4535 |
1561 | /* 4519 */ MCD::OPC_CheckPredicate, 13, 3, 8, 0, // Skip to: 6575 |
1562 | /* 4524 */ MCD::OPC_CheckField, 11, 2, 0, 252, 7, 0, // Skip to: 6575 |
1563 | /* 4531 */ MCD::OPC_Decode, 213, 16, 113, // Opcode: MOVF_S_MM |
1564 | /* 4535 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4556 |
1565 | /* 4540 */ MCD::OPC_CheckPredicate, 13, 238, 7, 0, // Skip to: 6575 |
1566 | /* 4545 */ MCD::OPC_CheckField, 11, 2, 0, 231, 7, 0, // Skip to: 6575 |
1567 | /* 4552 */ MCD::OPC_Decode, 233, 16, 113, // Opcode: MOVT_S_MM |
1568 | /* 4556 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4570 |
1569 | /* 4561 */ MCD::OPC_CheckPredicate, 6, 217, 7, 0, // Skip to: 6575 |
1570 | /* 4566 */ MCD::OPC_Decode, 211, 18, 114, // Opcode: PREFX_MM |
1571 | /* 4570 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 4591 |
1572 | /* 4575 */ MCD::OPC_CheckPredicate, 17, 203, 7, 0, // Skip to: 6575 |
1573 | /* 4580 */ MCD::OPC_CheckField, 11, 2, 0, 196, 7, 0, // Skip to: 6575 |
1574 | /* 4587 */ MCD::OPC_Decode, 207, 16, 115, // Opcode: MOVF_D32_MM |
1575 | /* 4591 */ MCD::OPC_FilterValue, 9, 187, 7, 0, // Skip to: 6575 |
1576 | /* 4596 */ MCD::OPC_CheckPredicate, 17, 182, 7, 0, // Skip to: 6575 |
1577 | /* 4601 */ MCD::OPC_CheckField, 11, 2, 0, 175, 7, 0, // Skip to: 6575 |
1578 | /* 4608 */ MCD::OPC_Decode, 227, 16, 115, // Opcode: MOVT_D32_MM |
1579 | /* 4612 */ MCD::OPC_FilterValue, 33, 9, 0, 0, // Skip to: 4626 |
1580 | /* 4617 */ MCD::OPC_CheckPredicate, 14, 161, 7, 0, // Skip to: 6575 |
1581 | /* 4622 */ MCD::OPC_Decode, 142, 17, 109, // Opcode: MSUB_S_MM |
1582 | /* 4626 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 4640 |
1583 | /* 4631 */ MCD::OPC_CheckPredicate, 14, 147, 7, 0, // Skip to: 6575 |
1584 | /* 4636 */ MCD::OPC_Decode, 254, 17, 109, // Opcode: NMSUB_S_MM |
1585 | /* 4640 */ MCD::OPC_FilterValue, 41, 9, 0, 0, // Skip to: 4654 |
1586 | /* 4645 */ MCD::OPC_CheckPredicate, 16, 133, 7, 0, // Skip to: 6575 |
1587 | /* 4650 */ MCD::OPC_Decode, 134, 17, 112, // Opcode: MSUB_D32_MM |
1588 | /* 4654 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 4668 |
1589 | /* 4659 */ MCD::OPC_CheckPredicate, 16, 119, 7, 0, // Skip to: 6575 |
1590 | /* 4664 */ MCD::OPC_Decode, 251, 17, 112, // Opcode: NMSUB_D32_MM |
1591 | /* 4668 */ MCD::OPC_FilterValue, 48, 59, 0, 0, // Skip to: 4732 |
1592 | /* 4673 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
1593 | /* 4676 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4690 |
1594 | /* 4681 */ MCD::OPC_CheckPredicate, 18, 97, 7, 0, // Skip to: 6575 |
1595 | /* 4686 */ MCD::OPC_Decode, 189, 12, 116, // Opcode: FADD_D32_MM |
1596 | /* 4690 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4704 |
1597 | /* 4695 */ MCD::OPC_CheckPredicate, 18, 83, 7, 0, // Skip to: 6575 |
1598 | /* 4700 */ MCD::OPC_Decode, 206, 13, 116, // Opcode: FSUB_D32_MM |
1599 | /* 4704 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4718 |
1600 | /* 4709 */ MCD::OPC_CheckPredicate, 18, 69, 7, 0, // Skip to: 6575 |
1601 | /* 4714 */ MCD::OPC_Decode, 162, 13, 116, // Opcode: FMUL_D32_MM |
1602 | /* 4718 */ MCD::OPC_FilterValue, 7, 60, 7, 0, // Skip to: 6575 |
1603 | /* 4723 */ MCD::OPC_CheckPredicate, 18, 55, 7, 0, // Skip to: 6575 |
1604 | /* 4728 */ MCD::OPC_Decode, 228, 12, 116, // Opcode: FDIV_D32_MM |
1605 | /* 4732 */ MCD::OPC_FilterValue, 56, 59, 0, 0, // Skip to: 4796 |
1606 | /* 4737 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... |
1607 | /* 4740 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4754 |
1608 | /* 4745 */ MCD::OPC_CheckPredicate, 13, 33, 7, 0, // Skip to: 6575 |
1609 | /* 4750 */ MCD::OPC_Decode, 225, 16, 117, // Opcode: MOVN_I_S_MM |
1610 | /* 4754 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4768 |
1611 | /* 4759 */ MCD::OPC_CheckPredicate, 13, 19, 7, 0, // Skip to: 6575 |
1612 | /* 4764 */ MCD::OPC_Decode, 245, 16, 117, // Opcode: MOVZ_I_S_MM |
1613 | /* 4768 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4782 |
1614 | /* 4773 */ MCD::OPC_CheckPredicate, 17, 5, 7, 0, // Skip to: 6575 |
1615 | /* 4778 */ MCD::OPC_Decode, 219, 16, 118, // Opcode: MOVN_I_D32_MM |
1616 | /* 4782 */ MCD::OPC_FilterValue, 5, 252, 6, 0, // Skip to: 6575 |
1617 | /* 4787 */ MCD::OPC_CheckPredicate, 17, 247, 6, 0, // Skip to: 6575 |
1618 | /* 4792 */ MCD::OPC_Decode, 239, 16, 118, // Opcode: MOVZ_I_D32_MM |
1619 | /* 4796 */ MCD::OPC_FilterValue, 59, 96, 2, 0, // Skip to: 5409 |
1620 | /* 4801 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... |
1621 | /* 4804 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4825 |
1622 | /* 4809 */ MCD::OPC_CheckPredicate, 19, 225, 6, 0, // Skip to: 6575 |
1623 | /* 4814 */ MCD::OPC_CheckField, 13, 3, 1, 218, 6, 0, // Skip to: 6575 |
1624 | /* 4821 */ MCD::OPC_Decode, 132, 16, 119, // Opcode: MFC1_MM |
1625 | /* 4825 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4846 |
1626 | /* 4830 */ MCD::OPC_CheckPredicate, 18, 204, 6, 0, // Skip to: 6575 |
1627 | /* 4835 */ MCD::OPC_CheckField, 13, 3, 1, 197, 6, 0, // Skip to: 6575 |
1628 | /* 4842 */ MCD::OPC_Decode, 151, 13, 120, // Opcode: FMOV_D32_MM |
1629 | /* 4846 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 4882 |
1630 | /* 4851 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1631 | /* 4854 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4868 |
1632 | /* 4859 */ MCD::OPC_CheckPredicate, 20, 175, 6, 0, // Skip to: 6575 |
1633 | /* 4864 */ MCD::OPC_Decode, 134, 10, 121, // Opcode: CVT_L_S_MM |
1634 | /* 4868 */ MCD::OPC_FilterValue, 2, 166, 6, 0, // Skip to: 6575 |
1635 | /* 4873 */ MCD::OPC_CheckPredicate, 20, 161, 6, 0, // Skip to: 6575 |
1636 | /* 4878 */ MCD::OPC_Decode, 131, 10, 122, // Opcode: CVT_L_D64_MM |
1637 | /* 4882 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4896 |
1638 | /* 4887 */ MCD::OPC_CheckPredicate, 13, 147, 6, 0, // Skip to: 6575 |
1639 | /* 4892 */ MCD::OPC_Decode, 211, 16, 123, // Opcode: MOVF_I_MM |
1640 | /* 4896 */ MCD::OPC_FilterValue, 8, 31, 0, 0, // Skip to: 4932 |
1641 | /* 4901 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1642 | /* 4904 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4918 |
1643 | /* 4909 */ MCD::OPC_CheckPredicate, 19, 125, 6, 0, // Skip to: 6575 |
1644 | /* 4914 */ MCD::OPC_Decode, 138, 19, 124, // Opcode: RSQRT_S_MM |
1645 | /* 4918 */ MCD::OPC_FilterValue, 2, 116, 6, 0, // Skip to: 6575 |
1646 | /* 4923 */ MCD::OPC_CheckPredicate, 18, 111, 6, 0, // Skip to: 6575 |
1647 | /* 4928 */ MCD::OPC_Decode, 134, 19, 120, // Opcode: RSQRT_D32_MM |
1648 | /* 4932 */ MCD::OPC_FilterValue, 13, 31, 0, 0, // Skip to: 4968 |
1649 | /* 4937 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1650 | /* 4940 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4954 |
1651 | /* 4945 */ MCD::OPC_CheckPredicate, 19, 89, 6, 0, // Skip to: 6575 |
1652 | /* 4950 */ MCD::OPC_Decode, 186, 12, 124, // Opcode: FABS_S_MM |
1653 | /* 4954 */ MCD::OPC_FilterValue, 1, 80, 6, 0, // Skip to: 6575 |
1654 | /* 4959 */ MCD::OPC_CheckPredicate, 18, 75, 6, 0, // Skip to: 6575 |
1655 | /* 4964 */ MCD::OPC_Decode, 182, 12, 120, // Opcode: FABS_D32_MM |
1656 | /* 4968 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 4989 |
1657 | /* 4973 */ MCD::OPC_CheckPredicate, 19, 61, 6, 0, // Skip to: 6575 |
1658 | /* 4978 */ MCD::OPC_CheckField, 13, 3, 1, 54, 6, 0, // Skip to: 6575 |
1659 | /* 4985 */ MCD::OPC_Decode, 148, 17, 125, // Opcode: MTC1_MM |
1660 | /* 4989 */ MCD::OPC_FilterValue, 36, 31, 0, 0, // Skip to: 5025 |
1661 | /* 4994 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1662 | /* 4997 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5011 |
1663 | /* 5002 */ MCD::OPC_CheckPredicate, 19, 32, 6, 0, // Skip to: 6575 |
1664 | /* 5007 */ MCD::OPC_Decode, 155, 10, 124, // Opcode: CVT_W_S_MM |
1665 | /* 5011 */ MCD::OPC_FilterValue, 2, 23, 6, 0, // Skip to: 6575 |
1666 | /* 5016 */ MCD::OPC_CheckPredicate, 18, 18, 6, 0, // Skip to: 6575 |
1667 | /* 5021 */ MCD::OPC_Decode, 151, 10, 126, // Opcode: CVT_W_D32_MM |
1668 | /* 5025 */ MCD::OPC_FilterValue, 37, 9, 0, 0, // Skip to: 5039 |
1669 | /* 5030 */ MCD::OPC_CheckPredicate, 13, 4, 6, 0, // Skip to: 6575 |
1670 | /* 5035 */ MCD::OPC_Decode, 231, 16, 123, // Opcode: MOVT_I_MM |
1671 | /* 5039 */ MCD::OPC_FilterValue, 40, 31, 0, 0, // Skip to: 5075 |
1672 | /* 5044 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1673 | /* 5047 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5061 |
1674 | /* 5052 */ MCD::OPC_CheckPredicate, 19, 238, 5, 0, // Skip to: 6575 |
1675 | /* 5057 */ MCD::OPC_Decode, 202, 13, 124, // Opcode: FSQRT_S_MM |
1676 | /* 5061 */ MCD::OPC_FilterValue, 2, 229, 5, 0, // Skip to: 6575 |
1677 | /* 5066 */ MCD::OPC_CheckPredicate, 18, 224, 5, 0, // Skip to: 6575 |
1678 | /* 5071 */ MCD::OPC_Decode, 198, 13, 120, // Opcode: FSQRT_D32_MM |
1679 | /* 5075 */ MCD::OPC_FilterValue, 44, 59, 0, 0, // Skip to: 5139 |
1680 | /* 5080 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1681 | /* 5083 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5097 |
1682 | /* 5088 */ MCD::OPC_CheckPredicate, 19, 202, 5, 0, // Skip to: 6575 |
1683 | /* 5093 */ MCD::OPC_Decode, 138, 13, 124, // Opcode: FLOOR_W_S_MM |
1684 | /* 5097 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5111 |
1685 | /* 5102 */ MCD::OPC_CheckPredicate, 19, 188, 5, 0, // Skip to: 6575 |
1686 | /* 5107 */ MCD::OPC_Decode, 170, 22, 124, // Opcode: TRUNC_W_S_MM |
1687 | /* 5111 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 5125 |
1688 | /* 5116 */ MCD::OPC_CheckPredicate, 18, 174, 5, 0, // Skip to: 6575 |
1689 | /* 5121 */ MCD::OPC_Decode, 136, 13, 126, // Opcode: FLOOR_W_MM |
1690 | /* 5125 */ MCD::OPC_FilterValue, 3, 165, 5, 0, // Skip to: 6575 |
1691 | /* 5130 */ MCD::OPC_CheckPredicate, 18, 160, 5, 0, // Skip to: 6575 |
1692 | /* 5135 */ MCD::OPC_Decode, 168, 22, 126, // Opcode: TRUNC_W_MM |
1693 | /* 5139 */ MCD::OPC_FilterValue, 45, 16, 0, 0, // Skip to: 5160 |
1694 | /* 5144 */ MCD::OPC_CheckPredicate, 18, 146, 5, 0, // Skip to: 6575 |
1695 | /* 5149 */ MCD::OPC_CheckField, 13, 3, 1, 139, 5, 0, // Skip to: 6575 |
1696 | /* 5156 */ MCD::OPC_Decode, 171, 13, 120, // Opcode: FNEG_D32_MM |
1697 | /* 5160 */ MCD::OPC_FilterValue, 64, 32, 0, 0, // Skip to: 5197 |
1698 | /* 5165 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1699 | /* 5168 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5182 |
1700 | /* 5173 */ MCD::OPC_CheckPredicate, 19, 117, 5, 0, // Skip to: 6575 |
1701 | /* 5178 */ MCD::OPC_Decode, 218, 8, 127, // Opcode: CFC1_MM |
1702 | /* 5182 */ MCD::OPC_FilterValue, 1, 108, 5, 0, // Skip to: 6575 |
1703 | /* 5187 */ MCD::OPC_CheckPredicate, 18, 103, 5, 0, // Skip to: 6575 |
1704 | /* 5192 */ MCD::OPC_Decode, 140, 16, 128, 1, // Opcode: MFHC1_D32_MM |
1705 | /* 5197 */ MCD::OPC_FilterValue, 72, 31, 0, 0, // Skip to: 5233 |
1706 | /* 5202 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1707 | /* 5205 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5219 |
1708 | /* 5210 */ MCD::OPC_CheckPredicate, 19, 80, 5, 0, // Skip to: 6575 |
1709 | /* 5215 */ MCD::OPC_Decode, 233, 18, 124, // Opcode: RECIP_S_MM |
1710 | /* 5219 */ MCD::OPC_FilterValue, 2, 71, 5, 0, // Skip to: 6575 |
1711 | /* 5224 */ MCD::OPC_CheckPredicate, 18, 66, 5, 0, // Skip to: 6575 |
1712 | /* 5229 */ MCD::OPC_Decode, 229, 18, 120, // Opcode: RECIP_D32_MM |
1713 | /* 5233 */ MCD::OPC_FilterValue, 77, 33, 0, 0, // Skip to: 5271 |
1714 | /* 5238 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1715 | /* 5241 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5256 |
1716 | /* 5246 */ MCD::OPC_CheckPredicate, 18, 44, 5, 0, // Skip to: 6575 |
1717 | /* 5251 */ MCD::OPC_Decode, 249, 9, 129, 1, // Opcode: CVT_D32_S_MM |
1718 | /* 5256 */ MCD::OPC_FilterValue, 1, 34, 5, 0, // Skip to: 6575 |
1719 | /* 5261 */ MCD::OPC_CheckPredicate, 18, 29, 5, 0, // Skip to: 6575 |
1720 | /* 5266 */ MCD::OPC_Decode, 251, 9, 129, 1, // Opcode: CVT_D32_W_MM |
1721 | /* 5271 */ MCD::OPC_FilterValue, 96, 33, 0, 0, // Skip to: 5309 |
1722 | /* 5276 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1723 | /* 5279 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5294 |
1724 | /* 5284 */ MCD::OPC_CheckPredicate, 19, 6, 5, 0, // Skip to: 6575 |
1725 | /* 5289 */ MCD::OPC_Decode, 245, 9, 130, 1, // Opcode: CTC1_MM |
1726 | /* 5294 */ MCD::OPC_FilterValue, 1, 252, 4, 0, // Skip to: 6575 |
1727 | /* 5299 */ MCD::OPC_CheckPredicate, 18, 247, 4, 0, // Skip to: 6575 |
1728 | /* 5304 */ MCD::OPC_Decode, 156, 17, 131, 1, // Opcode: MTHC1_D32_MM |
1729 | /* 5309 */ MCD::OPC_FilterValue, 108, 59, 0, 0, // Skip to: 5373 |
1730 | /* 5314 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1731 | /* 5317 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5331 |
1732 | /* 5322 */ MCD::OPC_CheckPredicate, 19, 224, 4, 0, // Skip to: 6575 |
1733 | /* 5327 */ MCD::OPC_Decode, 207, 8, 124, // Opcode: CEIL_W_S_MM |
1734 | /* 5331 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5345 |
1735 | /* 5336 */ MCD::OPC_CheckPredicate, 19, 210, 4, 0, // Skip to: 6575 |
1736 | /* 5341 */ MCD::OPC_Decode, 131, 19, 124, // Opcode: ROUND_W_S_MM |
1737 | /* 5345 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 5359 |
1738 | /* 5350 */ MCD::OPC_CheckPredicate, 18, 196, 4, 0, // Skip to: 6575 |
1739 | /* 5355 */ MCD::OPC_Decode, 205, 8, 126, // Opcode: CEIL_W_MM |
1740 | /* 5359 */ MCD::OPC_FilterValue, 3, 187, 4, 0, // Skip to: 6575 |
1741 | /* 5364 */ MCD::OPC_CheckPredicate, 18, 182, 4, 0, // Skip to: 6575 |
1742 | /* 5369 */ MCD::OPC_Decode, 129, 19, 126, // Opcode: ROUND_W_MM |
1743 | /* 5373 */ MCD::OPC_FilterValue, 109, 173, 4, 0, // Skip to: 6575 |
1744 | /* 5378 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
1745 | /* 5381 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5395 |
1746 | /* 5386 */ MCD::OPC_CheckPredicate, 18, 160, 4, 0, // Skip to: 6575 |
1747 | /* 5391 */ MCD::OPC_Decode, 140, 10, 126, // Opcode: CVT_S_D32_MM |
1748 | /* 5395 */ MCD::OPC_FilterValue, 1, 151, 4, 0, // Skip to: 6575 |
1749 | /* 5400 */ MCD::OPC_CheckPredicate, 19, 146, 4, 0, // Skip to: 6575 |
1750 | /* 5405 */ MCD::OPC_Decode, 148, 10, 124, // Opcode: CVT_S_W_MM |
1751 | /* 5409 */ MCD::OPC_FilterValue, 60, 137, 4, 0, // Skip to: 6575 |
1752 | /* 5414 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... |
1753 | /* 5417 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5432 |
1754 | /* 5422 */ MCD::OPC_CheckPredicate, 13, 124, 4, 0, // Skip to: 6575 |
1755 | /* 5427 */ MCD::OPC_Decode, 168, 10, 132, 1, // Opcode: C_F_S_MM |
1756 | /* 5432 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5447 |
1757 | /* 5437 */ MCD::OPC_CheckPredicate, 13, 109, 4, 0, // Skip to: 6575 |
1758 | /* 5442 */ MCD::OPC_Decode, 252, 10, 132, 1, // Opcode: C_UN_S_MM |
1759 | /* 5447 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5462 |
1760 | /* 5452 */ MCD::OPC_CheckPredicate, 13, 94, 4, 0, // Skip to: 6575 |
1761 | /* 5457 */ MCD::OPC_Decode, 162, 10, 132, 1, // Opcode: C_EQ_S_MM |
1762 | /* 5462 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5477 |
1763 | /* 5467 */ MCD::OPC_CheckPredicate, 13, 79, 4, 0, // Skip to: 6575 |
1764 | /* 5472 */ MCD::OPC_Decode, 234, 10, 132, 1, // Opcode: C_UEQ_S_MM |
1765 | /* 5477 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 5492 |
1766 | /* 5482 */ MCD::OPC_CheckPredicate, 13, 64, 4, 0, // Skip to: 6575 |
1767 | /* 5487 */ MCD::OPC_Decode, 216, 10, 132, 1, // Opcode: C_OLT_S_MM |
1768 | /* 5492 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 5507 |
1769 | /* 5497 */ MCD::OPC_CheckPredicate, 13, 49, 4, 0, // Skip to: 6575 |
1770 | /* 5502 */ MCD::OPC_Decode, 246, 10, 132, 1, // Opcode: C_ULT_S_MM |
1771 | /* 5507 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 5522 |
1772 | /* 5512 */ MCD::OPC_CheckPredicate, 13, 34, 4, 0, // Skip to: 6575 |
1773 | /* 5517 */ MCD::OPC_Decode, 210, 10, 132, 1, // Opcode: C_OLE_S_MM |
1774 | /* 5522 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 5537 |
1775 | /* 5527 */ MCD::OPC_CheckPredicate, 13, 19, 4, 0, // Skip to: 6575 |
1776 | /* 5532 */ MCD::OPC_Decode, 240, 10, 132, 1, // Opcode: C_ULE_S_MM |
1777 | /* 5537 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5552 |
1778 | /* 5542 */ MCD::OPC_CheckPredicate, 13, 4, 4, 0, // Skip to: 6575 |
1779 | /* 5547 */ MCD::OPC_Decode, 228, 10, 132, 1, // Opcode: C_SF_S_MM |
1780 | /* 5552 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5567 |
1781 | /* 5557 */ MCD::OPC_CheckPredicate, 13, 245, 3, 0, // Skip to: 6575 |
1782 | /* 5562 */ MCD::OPC_Decode, 192, 10, 132, 1, // Opcode: C_NGLE_S_MM |
1783 | /* 5567 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5582 |
1784 | /* 5572 */ MCD::OPC_CheckPredicate, 13, 230, 3, 0, // Skip to: 6575 |
1785 | /* 5577 */ MCD::OPC_Decode, 222, 10, 132, 1, // Opcode: C_SEQ_S_MM |
1786 | /* 5582 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5597 |
1787 | /* 5587 */ MCD::OPC_CheckPredicate, 13, 215, 3, 0, // Skip to: 6575 |
1788 | /* 5592 */ MCD::OPC_Decode, 198, 10, 132, 1, // Opcode: C_NGL_S_MM |
1789 | /* 5597 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5612 |
1790 | /* 5602 */ MCD::OPC_CheckPredicate, 13, 200, 3, 0, // Skip to: 6575 |
1791 | /* 5607 */ MCD::OPC_Decode, 180, 10, 132, 1, // Opcode: C_LT_S_MM |
1792 | /* 5612 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5627 |
1793 | /* 5617 */ MCD::OPC_CheckPredicate, 13, 185, 3, 0, // Skip to: 6575 |
1794 | /* 5622 */ MCD::OPC_Decode, 186, 10, 132, 1, // Opcode: C_NGE_S_MM |
1795 | /* 5627 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5642 |
1796 | /* 5632 */ MCD::OPC_CheckPredicate, 13, 170, 3, 0, // Skip to: 6575 |
1797 | /* 5637 */ MCD::OPC_Decode, 174, 10, 132, 1, // Opcode: C_LE_S_MM |
1798 | /* 5642 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5657 |
1799 | /* 5647 */ MCD::OPC_CheckPredicate, 13, 155, 3, 0, // Skip to: 6575 |
1800 | /* 5652 */ MCD::OPC_Decode, 204, 10, 132, 1, // Opcode: C_NGT_S_MM |
1801 | /* 5657 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5672 |
1802 | /* 5662 */ MCD::OPC_CheckPredicate, 17, 140, 3, 0, // Skip to: 6575 |
1803 | /* 5667 */ MCD::OPC_Decode, 164, 10, 133, 1, // Opcode: C_F_D32_MM |
1804 | /* 5672 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5687 |
1805 | /* 5677 */ MCD::OPC_CheckPredicate, 17, 125, 3, 0, // Skip to: 6575 |
1806 | /* 5682 */ MCD::OPC_Decode, 248, 10, 133, 1, // Opcode: C_UN_D32_MM |
1807 | /* 5687 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5702 |
1808 | /* 5692 */ MCD::OPC_CheckPredicate, 17, 110, 3, 0, // Skip to: 6575 |
1809 | /* 5697 */ MCD::OPC_Decode, 158, 10, 133, 1, // Opcode: C_EQ_D32_MM |
1810 | /* 5702 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5717 |
1811 | /* 5707 */ MCD::OPC_CheckPredicate, 17, 95, 3, 0, // Skip to: 6575 |
1812 | /* 5712 */ MCD::OPC_Decode, 230, 10, 133, 1, // Opcode: C_UEQ_D32_MM |
1813 | /* 5717 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5732 |
1814 | /* 5722 */ MCD::OPC_CheckPredicate, 17, 80, 3, 0, // Skip to: 6575 |
1815 | /* 5727 */ MCD::OPC_Decode, 212, 10, 133, 1, // Opcode: C_OLT_D32_MM |
1816 | /* 5732 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5747 |
1817 | /* 5737 */ MCD::OPC_CheckPredicate, 17, 65, 3, 0, // Skip to: 6575 |
1818 | /* 5742 */ MCD::OPC_Decode, 242, 10, 133, 1, // Opcode: C_ULT_D32_MM |
1819 | /* 5747 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5762 |
1820 | /* 5752 */ MCD::OPC_CheckPredicate, 17, 50, 3, 0, // Skip to: 6575 |
1821 | /* 5757 */ MCD::OPC_Decode, 206, 10, 133, 1, // Opcode: C_OLE_D32_MM |
1822 | /* 5762 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 5777 |
1823 | /* 5767 */ MCD::OPC_CheckPredicate, 17, 35, 3, 0, // Skip to: 6575 |
1824 | /* 5772 */ MCD::OPC_Decode, 236, 10, 133, 1, // Opcode: C_ULE_D32_MM |
1825 | /* 5777 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 5792 |
1826 | /* 5782 */ MCD::OPC_CheckPredicate, 17, 20, 3, 0, // Skip to: 6575 |
1827 | /* 5787 */ MCD::OPC_Decode, 224, 10, 133, 1, // Opcode: C_SF_D32_MM |
1828 | /* 5792 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 5807 |
1829 | /* 5797 */ MCD::OPC_CheckPredicate, 17, 5, 3, 0, // Skip to: 6575 |
1830 | /* 5802 */ MCD::OPC_Decode, 188, 10, 133, 1, // Opcode: C_NGLE_D32_MM |
1831 | /* 5807 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 5822 |
1832 | /* 5812 */ MCD::OPC_CheckPredicate, 17, 246, 2, 0, // Skip to: 6575 |
1833 | /* 5817 */ MCD::OPC_Decode, 218, 10, 133, 1, // Opcode: C_SEQ_D32_MM |
1834 | /* 5822 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 5837 |
1835 | /* 5827 */ MCD::OPC_CheckPredicate, 17, 231, 2, 0, // Skip to: 6575 |
1836 | /* 5832 */ MCD::OPC_Decode, 194, 10, 133, 1, // Opcode: C_NGL_D32_MM |
1837 | /* 5837 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 5852 |
1838 | /* 5842 */ MCD::OPC_CheckPredicate, 17, 216, 2, 0, // Skip to: 6575 |
1839 | /* 5847 */ MCD::OPC_Decode, 176, 10, 133, 1, // Opcode: C_LT_D32_MM |
1840 | /* 5852 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 5867 |
1841 | /* 5857 */ MCD::OPC_CheckPredicate, 17, 201, 2, 0, // Skip to: 6575 |
1842 | /* 5862 */ MCD::OPC_Decode, 182, 10, 133, 1, // Opcode: C_NGE_D32_MM |
1843 | /* 5867 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 5882 |
1844 | /* 5872 */ MCD::OPC_CheckPredicate, 17, 186, 2, 0, // Skip to: 6575 |
1845 | /* 5877 */ MCD::OPC_Decode, 170, 10, 133, 1, // Opcode: C_LE_D32_MM |
1846 | /* 5882 */ MCD::OPC_FilterValue, 31, 176, 2, 0, // Skip to: 6575 |
1847 | /* 5887 */ MCD::OPC_CheckPredicate, 17, 171, 2, 0, // Skip to: 6575 |
1848 | /* 5892 */ MCD::OPC_Decode, 200, 10, 133, 1, // Opcode: C_NGT_D32_MM |
1849 | /* 5897 */ MCD::OPC_FilterValue, 22, 48, 0, 0, // Skip to: 5950 |
1850 | /* 5902 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
1851 | /* 5905 */ MCD::OPC_FilterValue, 197, 1, 9, 0, 0, // Skip to: 5920 |
1852 | /* 5911 */ MCD::OPC_CheckPredicate, 8, 147, 2, 0, // Skip to: 6575 |
1853 | /* 5916 */ MCD::OPC_Decode, 148, 9, 54, // Opcode: CMPGU_EQ_QB_MM |
1854 | /* 5920 */ MCD::OPC_FilterValue, 133, 2, 9, 0, 0, // Skip to: 5935 |
1855 | /* 5926 */ MCD::OPC_CheckPredicate, 8, 132, 2, 0, // Skip to: 6575 |
1856 | /* 5931 */ MCD::OPC_Decode, 152, 9, 54, // Opcode: CMPGU_LT_QB_MM |
1857 | /* 5935 */ MCD::OPC_FilterValue, 197, 2, 122, 2, 0, // Skip to: 6575 |
1858 | /* 5941 */ MCD::OPC_CheckPredicate, 8, 117, 2, 0, // Skip to: 6575 |
1859 | /* 5946 */ MCD::OPC_Decode, 150, 9, 54, // Opcode: CMPGU_LE_QB_MM |
1860 | /* 5950 */ MCD::OPC_FilterValue, 24, 115, 1, 0, // Skip to: 6326 |
1861 | /* 5955 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
1862 | /* 5958 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5972 |
1863 | /* 5963 */ MCD::OPC_CheckPredicate, 6, 95, 2, 0, // Skip to: 6575 |
1864 | /* 5968 */ MCD::OPC_Decode, 161, 15, 99, // Opcode: LWL_MM |
1865 | /* 5972 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5986 |
1866 | /* 5977 */ MCD::OPC_CheckPredicate, 6, 81, 2, 0, // Skip to: 6575 |
1867 | /* 5982 */ MCD::OPC_Decode, 172, 15, 99, // Opcode: LWR_MM |
1868 | /* 5986 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 6000 |
1869 | /* 5991 */ MCD::OPC_CheckPredicate, 6, 67, 2, 0, // Skip to: 6575 |
1870 | /* 5996 */ MCD::OPC_Decode, 212, 18, 100, // Opcode: PREF_MM |
1871 | /* 6000 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 6014 |
1872 | /* 6005 */ MCD::OPC_CheckPredicate, 6, 53, 2, 0, // Skip to: 6575 |
1873 | /* 6010 */ MCD::OPC_Decode, 130, 15, 99, // Opcode: LL_MM |
1874 | /* 6014 */ MCD::OPC_FilterValue, 6, 123, 0, 0, // Skip to: 6142 |
1875 | /* 6019 */ MCD::OPC_ExtractField, 9, 3, // Inst{11-9} ... |
1876 | /* 6022 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6037 |
1877 | /* 6027 */ MCD::OPC_CheckPredicate, 21, 31, 2, 0, // Skip to: 6575 |
1878 | /* 6032 */ MCD::OPC_Decode, 208, 14, 134, 1, // Opcode: LBuE_MM |
1879 | /* 6037 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6052 |
1880 | /* 6042 */ MCD::OPC_CheckPredicate, 21, 16, 2, 0, // Skip to: 6575 |
1881 | /* 6047 */ MCD::OPC_Decode, 247, 14, 134, 1, // Opcode: LHuE_MM |
1882 | /* 6052 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6067 |
1883 | /* 6057 */ MCD::OPC_CheckPredicate, 22, 1, 2, 0, // Skip to: 6575 |
1884 | /* 6062 */ MCD::OPC_Decode, 160, 15, 134, 1, // Opcode: LWLE_MM |
1885 | /* 6067 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6082 |
1886 | /* 6072 */ MCD::OPC_CheckPredicate, 22, 242, 1, 0, // Skip to: 6575 |
1887 | /* 6077 */ MCD::OPC_Decode, 171, 15, 134, 1, // Opcode: LWRE_MM |
1888 | /* 6082 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6097 |
1889 | /* 6087 */ MCD::OPC_CheckPredicate, 21, 227, 1, 0, // Skip to: 6575 |
1890 | /* 6092 */ MCD::OPC_Decode, 198, 14, 134, 1, // Opcode: LBE_MM |
1891 | /* 6097 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 6112 |
1892 | /* 6102 */ MCD::OPC_CheckPredicate, 21, 212, 1, 0, // Skip to: 6575 |
1893 | /* 6107 */ MCD::OPC_Decode, 239, 14, 134, 1, // Opcode: LHE_MM |
1894 | /* 6112 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6127 |
1895 | /* 6117 */ MCD::OPC_CheckPredicate, 21, 197, 1, 0, // Skip to: 6575 |
1896 | /* 6122 */ MCD::OPC_Decode, 129, 15, 134, 1, // Opcode: LLE_MM |
1897 | /* 6127 */ MCD::OPC_FilterValue, 7, 187, 1, 0, // Skip to: 6575 |
1898 | /* 6132 */ MCD::OPC_CheckPredicate, 21, 182, 1, 0, // Skip to: 6575 |
1899 | /* 6137 */ MCD::OPC_Decode, 155, 15, 134, 1, // Opcode: LWE_MM |
1900 | /* 6142 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 6156 |
1901 | /* 6147 */ MCD::OPC_CheckPredicate, 6, 167, 1, 0, // Skip to: 6575 |
1902 | /* 6152 */ MCD::OPC_Decode, 197, 21, 99, // Opcode: SWL_MM |
1903 | /* 6156 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 6170 |
1904 | /* 6161 */ MCD::OPC_CheckPredicate, 6, 153, 1, 0, // Skip to: 6575 |
1905 | /* 6166 */ MCD::OPC_Decode, 206, 21, 99, // Opcode: SWR_MM |
1906 | /* 6170 */ MCD::OPC_FilterValue, 10, 123, 0, 0, // Skip to: 6298 |
1907 | /* 6175 */ MCD::OPC_ExtractField, 9, 3, // Inst{11-9} ... |
1908 | /* 6178 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6193 |
1909 | /* 6183 */ MCD::OPC_CheckPredicate, 22, 131, 1, 0, // Skip to: 6575 |
1910 | /* 6188 */ MCD::OPC_Decode, 196, 21, 134, 1, // Opcode: SWLE_MM |
1911 | /* 6193 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6208 |
1912 | /* 6198 */ MCD::OPC_CheckPredicate, 22, 116, 1, 0, // Skip to: 6575 |
1913 | /* 6203 */ MCD::OPC_Decode, 205, 21, 134, 1, // Opcode: SWRE_MM |
1914 | /* 6208 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6223 |
1915 | /* 6213 */ MCD::OPC_CheckPredicate, 21, 101, 1, 0, // Skip to: 6575 |
1916 | /* 6218 */ MCD::OPC_Decode, 210, 18, 135, 1, // Opcode: PREFE_MM |
1917 | /* 6223 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6238 |
1918 | /* 6228 */ MCD::OPC_CheckPredicate, 21, 86, 1, 0, // Skip to: 6575 |
1919 | /* 6233 */ MCD::OPC_Decode, 194, 8, 135, 1, // Opcode: CACHEE_MM |
1920 | /* 6238 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6253 |
1921 | /* 6243 */ MCD::OPC_CheckPredicate, 21, 71, 1, 0, // Skip to: 6575 |
1922 | /* 6248 */ MCD::OPC_Decode, 156, 19, 134, 1, // Opcode: SBE_MM |
1923 | /* 6253 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 6268 |
1924 | /* 6258 */ MCD::OPC_CheckPredicate, 21, 56, 1, 0, // Skip to: 6575 |
1925 | /* 6263 */ MCD::OPC_Decode, 222, 19, 134, 1, // Opcode: SHE_MM |
1926 | /* 6268 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6283 |
1927 | /* 6273 */ MCD::OPC_CheckPredicate, 21, 41, 1, 0, // Skip to: 6575 |
1928 | /* 6278 */ MCD::OPC_Decode, 165, 19, 134, 1, // Opcode: SCE_MM |
1929 | /* 6283 */ MCD::OPC_FilterValue, 7, 31, 1, 0, // Skip to: 6575 |
1930 | /* 6288 */ MCD::OPC_CheckPredicate, 21, 26, 1, 0, // Skip to: 6575 |
1931 | /* 6293 */ MCD::OPC_Decode, 192, 21, 134, 1, // Opcode: SWE_MM |
1932 | /* 6298 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 6312 |
1933 | /* 6303 */ MCD::OPC_CheckPredicate, 6, 11, 1, 0, // Skip to: 6575 |
1934 | /* 6308 */ MCD::OPC_Decode, 166, 19, 99, // Opcode: SC_MM |
1935 | /* 6312 */ MCD::OPC_FilterValue, 14, 2, 1, 0, // Skip to: 6575 |
1936 | /* 6317 */ MCD::OPC_CheckPredicate, 6, 253, 0, 0, // Skip to: 6575 |
1937 | /* 6322 */ MCD::OPC_Decode, 175, 15, 99, // Opcode: LWU_MM |
1938 | /* 6326 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 6340 |
1939 | /* 6331 */ MCD::OPC_CheckPredicate, 6, 239, 0, 0, // Skip to: 6575 |
1940 | /* 6336 */ MCD::OPC_Decode, 202, 22, 108, // Opcode: XORi_MM |
1941 | /* 6340 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 6355 |
1942 | /* 6345 */ MCD::OPC_CheckPredicate, 6, 225, 0, 0, // Skip to: 6575 |
1943 | /* 6350 */ MCD::OPC_Decode, 166, 14, 136, 1, // Opcode: JALS_MM |
1944 | /* 6355 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 6370 |
1945 | /* 6360 */ MCD::OPC_CheckPredicate, 6, 210, 0, 0, // Skip to: 6575 |
1946 | /* 6365 */ MCD::OPC_Decode, 249, 5, 137, 1, // Opcode: ADDIUPC_MM |
1947 | /* 6370 */ MCD::OPC_FilterValue, 36, 9, 0, 0, // Skip to: 6384 |
1948 | /* 6375 */ MCD::OPC_CheckPredicate, 7, 195, 0, 0, // Skip to: 6575 |
1949 | /* 6380 */ MCD::OPC_Decode, 180, 20, 97, // Opcode: SLTi_MM |
1950 | /* 6384 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 6399 |
1951 | /* 6389 */ MCD::OPC_CheckPredicate, 6, 181, 0, 0, // Skip to: 6575 |
1952 | /* 6394 */ MCD::OPC_Decode, 173, 7, 138, 1, // Opcode: BEQ_MM |
1953 | /* 6399 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 6414 |
1954 | /* 6404 */ MCD::OPC_CheckPredicate, 19, 166, 0, 0, // Skip to: 6575 |
1955 | /* 6409 */ MCD::OPC_Decode, 184, 21, 139, 1, // Opcode: SWC1_MM |
1956 | /* 6414 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 6429 |
1957 | /* 6419 */ MCD::OPC_CheckPredicate, 19, 151, 0, 0, // Skip to: 6575 |
1958 | /* 6424 */ MCD::OPC_Decode, 147, 15, 139, 1, // Opcode: LWC1_MM |
1959 | /* 6429 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 6443 |
1960 | /* 6434 */ MCD::OPC_CheckPredicate, 7, 136, 0, 0, // Skip to: 6575 |
1961 | /* 6439 */ MCD::OPC_Decode, 183, 20, 97, // Opcode: SLTiu_MM |
1962 | /* 6443 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 6458 |
1963 | /* 6448 */ MCD::OPC_CheckPredicate, 6, 122, 0, 0, // Skip to: 6575 |
1964 | /* 6453 */ MCD::OPC_Decode, 148, 8, 138, 1, // Opcode: BNE_MM |
1965 | /* 6458 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 6473 |
1966 | /* 6463 */ MCD::OPC_CheckPredicate, 18, 107, 0, 0, // Skip to: 6575 |
1967 | /* 6468 */ MCD::OPC_Decode, 179, 19, 139, 1, // Opcode: SDC1_MM_D32 |
1968 | /* 6473 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 6488 |
1969 | /* 6478 */ MCD::OPC_CheckPredicate, 18, 92, 0, 0, // Skip to: 6575 |
1970 | /* 6483 */ MCD::OPC_Decode, 214, 14, 139, 1, // Opcode: LDC1_MM_D32 |
1971 | /* 6488 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 6502 |
1972 | /* 6493 */ MCD::OPC_CheckPredicate, 6, 77, 0, 0, // Skip to: 6575 |
1973 | /* 6498 */ MCD::OPC_Decode, 211, 6, 108, // Opcode: ANDi_MM |
1974 | /* 6502 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 6517 |
1975 | /* 6507 */ MCD::OPC_CheckPredicate, 6, 63, 0, 0, // Skip to: 6575 |
1976 | /* 6512 */ MCD::OPC_Decode, 188, 14, 136, 1, // Opcode: J_MM |
1977 | /* 6517 */ MCD::OPC_FilterValue, 60, 10, 0, 0, // Skip to: 6532 |
1978 | /* 6522 */ MCD::OPC_CheckPredicate, 6, 48, 0, 0, // Skip to: 6575 |
1979 | /* 6527 */ MCD::OPC_Decode, 168, 14, 140, 1, // Opcode: JALX_MM |
1980 | /* 6532 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 6547 |
1981 | /* 6537 */ MCD::OPC_CheckPredicate, 6, 33, 0, 0, // Skip to: 6575 |
1982 | /* 6542 */ MCD::OPC_Decode, 169, 14, 136, 1, // Opcode: JAL_MM |
1983 | /* 6547 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 6561 |
1984 | /* 6552 */ MCD::OPC_CheckPredicate, 7, 18, 0, 0, // Skip to: 6575 |
1985 | /* 6557 */ MCD::OPC_Decode, 211, 21, 98, // Opcode: SW_MM |
1986 | /* 6561 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 6575 |
1987 | /* 6566 */ MCD::OPC_CheckPredicate, 7, 4, 0, 0, // Skip to: 6575 |
1988 | /* 6571 */ MCD::OPC_Decode, 181, 15, 98, // Opcode: LW_MM |
1989 | /* 6575 */ MCD::OPC_Fail, |
1990 | 0 |
1991 | }; |
1992 | |
1993 | static const uint8_t DecoderTableMicroMipsDSP32[] = { |
1994 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
1995 | /* 3 */ MCD::OPC_FilterValue, 62, 10, 0, 0, // Skip to: 18 |
1996 | /* 8 */ MCD::OPC_CheckPredicate, 8, 20, 0, 0, // Skip to: 33 |
1997 | /* 13 */ MCD::OPC_Decode, 190, 21, 141, 1, // Opcode: SWDSP_MM |
1998 | /* 18 */ MCD::OPC_FilterValue, 63, 10, 0, 0, // Skip to: 33 |
1999 | /* 23 */ MCD::OPC_CheckPredicate, 8, 5, 0, 0, // Skip to: 33 |
2000 | /* 28 */ MCD::OPC_Decode, 153, 15, 141, 1, // Opcode: LWDSP_MM |
2001 | /* 33 */ MCD::OPC_Fail, |
2002 | 0 |
2003 | }; |
2004 | |
2005 | static const uint8_t DecoderTableMicroMipsFP6432[] = { |
2006 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
2007 | /* 3 */ MCD::OPC_FilterValue, 21, 39, 1, 0, // Skip to: 303 |
2008 | /* 8 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
2009 | /* 11 */ MCD::OPC_FilterValue, 59, 48, 0, 0, // Skip to: 64 |
2010 | /* 16 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2011 | /* 19 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 34 |
2012 | /* 24 */ MCD::OPC_CheckPredicate, 20, 48, 1, 0, // Skip to: 333 |
2013 | /* 29 */ MCD::OPC_Decode, 147, 17, 142, 1, // Opcode: MTC1_D64_MM |
2014 | /* 34 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 49 |
2015 | /* 39 */ MCD::OPC_CheckPredicate, 20, 33, 1, 0, // Skip to: 333 |
2016 | /* 44 */ MCD::OPC_Decode, 142, 16, 143, 1, // Opcode: MFHC1_D64_MM |
2017 | /* 49 */ MCD::OPC_FilterValue, 7, 23, 1, 0, // Skip to: 333 |
2018 | /* 54 */ MCD::OPC_CheckPredicate, 20, 18, 1, 0, // Skip to: 333 |
2019 | /* 59 */ MCD::OPC_Decode, 158, 17, 144, 1, // Opcode: MTHC1_D64_MM |
2020 | /* 64 */ MCD::OPC_FilterValue, 123, 16, 0, 0, // Skip to: 85 |
2021 | /* 69 */ MCD::OPC_CheckPredicate, 20, 3, 1, 0, // Skip to: 333 |
2022 | /* 74 */ MCD::OPC_CheckField, 11, 5, 4, 252, 0, 0, // Skip to: 333 |
2023 | /* 81 */ MCD::OPC_Decode, 153, 13, 122, // Opcode: FMOV_D64_MM |
2024 | /* 85 */ MCD::OPC_FilterValue, 176, 2, 10, 0, 0, // Skip to: 101 |
2025 | /* 91 */ MCD::OPC_CheckPredicate, 20, 237, 0, 0, // Skip to: 333 |
2026 | /* 96 */ MCD::OPC_Decode, 191, 12, 145, 1, // Opcode: FADD_D64_MM |
2027 | /* 101 */ MCD::OPC_FilterValue, 187, 2, 17, 0, 0, // Skip to: 124 |
2028 | /* 107 */ MCD::OPC_CheckPredicate, 20, 221, 0, 0, // Skip to: 333 |
2029 | /* 112 */ MCD::OPC_CheckField, 11, 5, 9, 214, 0, 0, // Skip to: 333 |
2030 | /* 119 */ MCD::OPC_Decode, 153, 10, 146, 1, // Opcode: CVT_W_D64_MM |
2031 | /* 124 */ MCD::OPC_FilterValue, 240, 2, 10, 0, 0, // Skip to: 140 |
2032 | /* 130 */ MCD::OPC_CheckPredicate, 20, 198, 0, 0, // Skip to: 333 |
2033 | /* 135 */ MCD::OPC_Decode, 208, 13, 145, 1, // Opcode: FSUB_D64_MM |
2034 | /* 140 */ MCD::OPC_FilterValue, 176, 3, 10, 0, 0, // Skip to: 156 |
2035 | /* 146 */ MCD::OPC_CheckPredicate, 20, 182, 0, 0, // Skip to: 333 |
2036 | /* 151 */ MCD::OPC_Decode, 164, 13, 145, 1, // Opcode: FMUL_D64_MM |
2037 | /* 156 */ MCD::OPC_FilterValue, 240, 3, 10, 0, 0, // Skip to: 172 |
2038 | /* 162 */ MCD::OPC_CheckPredicate, 20, 166, 0, 0, // Skip to: 333 |
2039 | /* 167 */ MCD::OPC_Decode, 230, 12, 145, 1, // Opcode: FDIV_D64_MM |
2040 | /* 172 */ MCD::OPC_FilterValue, 187, 4, 45, 0, 0, // Skip to: 223 |
2041 | /* 178 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2042 | /* 181 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 195 |
2043 | /* 186 */ MCD::OPC_CheckPredicate, 20, 142, 0, 0, // Skip to: 333 |
2044 | /* 191 */ MCD::OPC_Decode, 136, 19, 122, // Opcode: RSQRT_D64_MM |
2045 | /* 195 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 209 |
2046 | /* 200 */ MCD::OPC_CheckPredicate, 20, 128, 0, 0, // Skip to: 333 |
2047 | /* 205 */ MCD::OPC_Decode, 200, 13, 122, // Opcode: FSQRT_D64_MM |
2048 | /* 209 */ MCD::OPC_FilterValue, 10, 119, 0, 0, // Skip to: 333 |
2049 | /* 214 */ MCD::OPC_CheckPredicate, 20, 114, 0, 0, // Skip to: 333 |
2050 | /* 219 */ MCD::OPC_Decode, 231, 18, 122, // Opcode: RECIP_D64_MM |
2051 | /* 223 */ MCD::OPC_FilterValue, 251, 6, 104, 0, 0, // Skip to: 333 |
2052 | /* 229 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2053 | /* 232 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 246 |
2054 | /* 237 */ MCD::OPC_CheckPredicate, 20, 91, 0, 0, // Skip to: 333 |
2055 | /* 242 */ MCD::OPC_Decode, 254, 9, 121, // Opcode: CVT_D64_S_MM |
2056 | /* 246 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 261 |
2057 | /* 251 */ MCD::OPC_CheckPredicate, 20, 77, 0, 0, // Skip to: 333 |
2058 | /* 256 */ MCD::OPC_Decode, 142, 10, 146, 1, // Opcode: CVT_S_D64_MM |
2059 | /* 261 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 275 |
2060 | /* 266 */ MCD::OPC_CheckPredicate, 20, 62, 0, 0, // Skip to: 333 |
2061 | /* 271 */ MCD::OPC_Decode, 184, 12, 122, // Opcode: FABS_D64_MM |
2062 | /* 275 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 289 |
2063 | /* 280 */ MCD::OPC_CheckPredicate, 20, 48, 0, 0, // Skip to: 333 |
2064 | /* 285 */ MCD::OPC_Decode, 173, 13, 122, // Opcode: FNEG_D64_MM |
2065 | /* 289 */ MCD::OPC_FilterValue, 6, 39, 0, 0, // Skip to: 333 |
2066 | /* 294 */ MCD::OPC_CheckPredicate, 20, 34, 0, 0, // Skip to: 333 |
2067 | /* 299 */ MCD::OPC_Decode, 128, 10, 121, // Opcode: CVT_D64_W_MM |
2068 | /* 303 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 318 |
2069 | /* 308 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 333 |
2070 | /* 313 */ MCD::OPC_Decode, 178, 19, 139, 1, // Opcode: SDC1_D64_MMR6 |
2071 | /* 318 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 333 |
2072 | /* 323 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 333 |
2073 | /* 328 */ MCD::OPC_Decode, 213, 14, 139, 1, // Opcode: LDC1_D64_MMR6 |
2074 | /* 333 */ MCD::OPC_Fail, |
2075 | 0 |
2076 | }; |
2077 | |
2078 | static const uint8_t DecoderTableMicroMipsR616[] = { |
2079 | /* 0 */ MCD::OPC_ExtractField, 10, 6, // Inst{15-10} ... |
2080 | /* 3 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 41 |
2081 | /* 8 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
2082 | /* 11 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 26 |
2083 | /* 16 */ MCD::OPC_CheckPredicate, 24, 173, 1, 0, // Skip to: 450 |
2084 | /* 21 */ MCD::OPC_Decode, 158, 6, 147, 1, // Opcode: ADDU16_MMR6 |
2085 | /* 26 */ MCD::OPC_FilterValue, 1, 163, 1, 0, // Skip to: 450 |
2086 | /* 31 */ MCD::OPC_CheckPredicate, 24, 158, 1, 0, // Skip to: 450 |
2087 | /* 36 */ MCD::OPC_Decode, 150, 21, 147, 1, // Opcode: SUBU16_MMR6 |
2088 | /* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 |
2089 | /* 46 */ MCD::OPC_CheckPredicate, 24, 143, 1, 0, // Skip to: 450 |
2090 | /* 51 */ MCD::OPC_Decode, 202, 16, 33, // Opcode: MOVE16_MMR6 |
2091 | /* 55 */ MCD::OPC_FilterValue, 9, 31, 0, 0, // Skip to: 91 |
2092 | /* 60 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... |
2093 | /* 63 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 77 |
2094 | /* 68 */ MCD::OPC_CheckPredicate, 24, 121, 1, 0, // Skip to: 450 |
2095 | /* 73 */ MCD::OPC_Decode, 160, 20, 34, // Opcode: SLL16_MMR6 |
2096 | /* 77 */ MCD::OPC_FilterValue, 1, 112, 1, 0, // Skip to: 450 |
2097 | /* 82 */ MCD::OPC_CheckPredicate, 24, 107, 1, 0, // Skip to: 450 |
2098 | /* 87 */ MCD::OPC_Decode, 219, 20, 34, // Opcode: SRL16_MMR6 |
2099 | /* 91 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 105 |
2100 | /* 96 */ MCD::OPC_CheckPredicate, 24, 93, 1, 0, // Skip to: 450 |
2101 | /* 101 */ MCD::OPC_Decode, 203, 6, 35, // Opcode: ANDI16_MMR6 |
2102 | /* 105 */ MCD::OPC_FilterValue, 17, 228, 0, 0, // Skip to: 338 |
2103 | /* 110 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... |
2104 | /* 113 */ MCD::OPC_FilterValue, 0, 206, 0, 0, // Skip to: 324 |
2105 | /* 118 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... |
2106 | /* 121 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 159 |
2107 | /* 126 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... |
2108 | /* 129 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 144 |
2109 | /* 134 */ MCD::OPC_CheckPredicate, 24, 55, 1, 0, // Skip to: 450 |
2110 | /* 139 */ MCD::OPC_Decode, 134, 18, 148, 1, // Opcode: NOT16_MMR6 |
2111 | /* 144 */ MCD::OPC_FilterValue, 1, 45, 1, 0, // Skip to: 450 |
2112 | /* 149 */ MCD::OPC_CheckPredicate, 24, 40, 1, 0, // Skip to: 450 |
2113 | /* 154 */ MCD::OPC_Decode, 193, 22, 149, 1, // Opcode: XOR16_MMR6 |
2114 | /* 159 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 197 |
2115 | /* 164 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... |
2116 | /* 167 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 182 |
2117 | /* 172 */ MCD::OPC_CheckPredicate, 24, 17, 1, 0, // Skip to: 450 |
2118 | /* 177 */ MCD::OPC_Decode, 200, 6, 149, 1, // Opcode: AND16_MMR6 |
2119 | /* 182 */ MCD::OPC_FilterValue, 1, 7, 1, 0, // Skip to: 450 |
2120 | /* 187 */ MCD::OPC_CheckPredicate, 24, 2, 1, 0, // Skip to: 450 |
2121 | /* 192 */ MCD::OPC_Decode, 139, 18, 149, 1, // Opcode: OR16_MMR6 |
2122 | /* 197 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 233 |
2123 | /* 202 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... |
2124 | /* 205 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 219 |
2125 | /* 210 */ MCD::OPC_CheckPredicate, 24, 235, 0, 0, // Skip to: 450 |
2126 | /* 215 */ MCD::OPC_Decode, 163, 15, 38, // Opcode: LWM16_MMR6 |
2127 | /* 219 */ MCD::OPC_FilterValue, 1, 226, 0, 0, // Skip to: 450 |
2128 | /* 224 */ MCD::OPC_CheckPredicate, 24, 221, 0, 0, // Skip to: 450 |
2129 | /* 229 */ MCD::OPC_Decode, 199, 21, 38, // Opcode: SWM16_MMR6 |
2130 | /* 233 */ MCD::OPC_FilterValue, 3, 212, 0, 0, // Skip to: 450 |
2131 | /* 238 */ MCD::OPC_ExtractField, 3, 2, // Inst{4-3} ... |
2132 | /* 241 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 256 |
2133 | /* 246 */ MCD::OPC_CheckPredicate, 24, 199, 0, 0, // Skip to: 450 |
2134 | /* 251 */ MCD::OPC_Decode, 181, 14, 150, 1, // Opcode: JRC16_MMR6 |
2135 | /* 256 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 271 |
2136 | /* 261 */ MCD::OPC_CheckPredicate, 24, 184, 0, 0, // Skip to: 450 |
2137 | /* 266 */ MCD::OPC_Decode, 158, 14, 150, 1, // Opcode: JALRC16_MMR6 |
2138 | /* 271 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 286 |
2139 | /* 276 */ MCD::OPC_CheckPredicate, 24, 169, 0, 0, // Skip to: 450 |
2140 | /* 281 */ MCD::OPC_Decode, 182, 14, 151, 1, // Opcode: JRCADDIUSP_MMR6 |
2141 | /* 286 */ MCD::OPC_FilterValue, 3, 159, 0, 0, // Skip to: 450 |
2142 | /* 291 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... |
2143 | /* 294 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 309 |
2144 | /* 299 */ MCD::OPC_CheckPredicate, 24, 146, 0, 0, // Skip to: 450 |
2145 | /* 304 */ MCD::OPC_Decode, 163, 8, 152, 1, // Opcode: BREAK16_MMR6 |
2146 | /* 309 */ MCD::OPC_FilterValue, 1, 136, 0, 0, // Skip to: 450 |
2147 | /* 314 */ MCD::OPC_CheckPredicate, 24, 131, 0, 0, // Skip to: 450 |
2148 | /* 319 */ MCD::OPC_Decode, 172, 19, 152, 1, // Opcode: SDBBP16_MMR6 |
2149 | /* 324 */ MCD::OPC_FilterValue, 1, 121, 0, 0, // Skip to: 450 |
2150 | /* 329 */ MCD::OPC_CheckPredicate, 24, 116, 0, 0, // Skip to: 450 |
2151 | /* 334 */ MCD::OPC_Decode, 204, 16, 48, // Opcode: MOVEP_MMR6 |
2152 | /* 338 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 352 |
2153 | /* 343 */ MCD::OPC_CheckPredicate, 24, 102, 0, 0, // Skip to: 450 |
2154 | /* 348 */ MCD::OPC_Decode, 153, 19, 32, // Opcode: SB16_MMR6 |
2155 | /* 352 */ MCD::OPC_FilterValue, 35, 9, 0, 0, // Skip to: 366 |
2156 | /* 357 */ MCD::OPC_CheckPredicate, 24, 88, 0, 0, // Skip to: 450 |
2157 | /* 362 */ MCD::OPC_Decode, 169, 7, 49, // Opcode: BEQZC16_MMR6 |
2158 | /* 366 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 380 |
2159 | /* 371 */ MCD::OPC_CheckPredicate, 24, 74, 0, 0, // Skip to: 450 |
2160 | /* 376 */ MCD::OPC_Decode, 219, 19, 32, // Opcode: SH16_MMR6 |
2161 | /* 380 */ MCD::OPC_FilterValue, 43, 9, 0, 0, // Skip to: 394 |
2162 | /* 385 */ MCD::OPC_CheckPredicate, 24, 60, 0, 0, // Skip to: 450 |
2163 | /* 390 */ MCD::OPC_Decode, 144, 8, 49, // Opcode: BNEZC16_MMR6 |
2164 | /* 394 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 408 |
2165 | /* 399 */ MCD::OPC_CheckPredicate, 24, 46, 0, 0, // Skip to: 450 |
2166 | /* 404 */ MCD::OPC_Decode, 208, 21, 42, // Opcode: SWSP_MMR6 |
2167 | /* 408 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 422 |
2168 | /* 413 */ MCD::OPC_CheckPredicate, 24, 32, 0, 0, // Skip to: 450 |
2169 | /* 418 */ MCD::OPC_Decode, 135, 7, 50, // Opcode: BC16_MMR6 |
2170 | /* 422 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 436 |
2171 | /* 427 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 450 |
2172 | /* 432 */ MCD::OPC_Decode, 181, 21, 32, // Opcode: SW16_MMR6 |
2173 | /* 436 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 450 |
2174 | /* 441 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 450 |
2175 | /* 446 */ MCD::OPC_Decode, 250, 14, 51, // Opcode: LI16_MMR6 |
2176 | /* 450 */ MCD::OPC_Fail, |
2177 | 0 |
2178 | }; |
2179 | |
2180 | static const uint8_t DecoderTableMicroMipsR632[] = { |
2181 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
2182 | /* 3 */ MCD::OPC_FilterValue, 0, 98, 4, 0, // Skip to: 1130 |
2183 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
2184 | /* 11 */ MCD::OPC_FilterValue, 0, 112, 0, 0, // Skip to: 128 |
2185 | /* 16 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2186 | /* 19 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 78 |
2187 | /* 24 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... |
2188 | /* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 |
2189 | /* 32 */ MCD::OPC_CheckPredicate, 24, 32, 0, 0, // Skip to: 69 |
2190 | /* 37 */ MCD::OPC_Decode, 241, 20, 10, // Opcode: SSNOP_MMR6 |
2191 | /* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 |
2192 | /* 46 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 69 |
2193 | /* 51 */ MCD::OPC_Decode, 139, 12, 10, // Opcode: EHB_MMR6 |
2194 | /* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 |
2195 | /* 60 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 69 |
2196 | /* 65 */ MCD::OPC_Decode, 154, 18, 10, // Opcode: PAUSE_MMR6 |
2197 | /* 69 */ MCD::OPC_CheckPredicate, 24, 80, 12, 0, // Skip to: 3226 |
2198 | /* 74 */ MCD::OPC_Decode, 173, 20, 52, // Opcode: SLL_MMR6 |
2199 | /* 78 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 92 |
2200 | /* 83 */ MCD::OPC_CheckPredicate, 24, 66, 12, 0, // Skip to: 3226 |
2201 | /* 88 */ MCD::OPC_Decode, 201, 19, 55, // Opcode: SELEQZ_MMR6 |
2202 | /* 92 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 106 |
2203 | /* 97 */ MCD::OPC_CheckPredicate, 24, 52, 12, 0, // Skip to: 3226 |
2204 | /* 102 */ MCD::OPC_Decode, 208, 19, 55, // Opcode: SELNEZ_MMR6 |
2205 | /* 106 */ MCD::OPC_FilterValue, 7, 43, 12, 0, // Skip to: 3226 |
2206 | /* 111 */ MCD::OPC_CheckPredicate, 24, 38, 12, 0, // Skip to: 3226 |
2207 | /* 116 */ MCD::OPC_CheckField, 14, 2, 0, 31, 12, 0, // Skip to: 3226 |
2208 | /* 123 */ MCD::OPC_Decode, 226, 18, 153, 1, // Opcode: RDHWR_MMR6 |
2209 | /* 128 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 142 |
2210 | /* 133 */ MCD::OPC_CheckPredicate, 24, 16, 12, 0, // Skip to: 3226 |
2211 | /* 138 */ MCD::OPC_Decode, 165, 8, 56, // Opcode: BREAK_MMR6 |
2212 | /* 142 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 156 |
2213 | /* 147 */ MCD::OPC_CheckPredicate, 24, 2, 12, 0, // Skip to: 3226 |
2214 | /* 152 */ MCD::OPC_Decode, 152, 14, 57, // Opcode: INS_MMR6 |
2215 | /* 156 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 178 |
2216 | /* 161 */ MCD::OPC_CheckPredicate, 24, 244, 11, 0, // Skip to: 3226 |
2217 | /* 166 */ MCD::OPC_CheckField, 6, 3, 0, 237, 11, 0, // Skip to: 3226 |
2218 | /* 173 */ MCD::OPC_Decode, 134, 15, 154, 1, // Opcode: LSA_MMR6 |
2219 | /* 178 */ MCD::OPC_FilterValue, 16, 136, 0, 0, // Skip to: 319 |
2220 | /* 183 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2221 | /* 186 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 207 |
2222 | /* 191 */ MCD::OPC_CheckPredicate, 24, 214, 11, 0, // Skip to: 3226 |
2223 | /* 196 */ MCD::OPC_CheckField, 16, 5, 0, 207, 11, 0, // Skip to: 3226 |
2224 | /* 203 */ MCD::OPC_Decode, 139, 9, 25, // Opcode: CLZ_MMR6 |
2225 | /* 207 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 221 |
2226 | /* 212 */ MCD::OPC_CheckPredicate, 24, 193, 11, 0, // Skip to: 3226 |
2227 | /* 217 */ MCD::OPC_Decode, 187, 6, 55, // Opcode: ADD_MMR6 |
2228 | /* 221 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 235 |
2229 | /* 226 */ MCD::OPC_CheckPredicate, 24, 179, 11, 0, // Skip to: 3226 |
2230 | /* 231 */ MCD::OPC_Decode, 163, 6, 55, // Opcode: ADDU_MMR6 |
2231 | /* 235 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 249 |
2232 | /* 240 */ MCD::OPC_CheckPredicate, 24, 165, 11, 0, // Skip to: 3226 |
2233 | /* 245 */ MCD::OPC_Decode, 173, 21, 55, // Opcode: SUB_MMR6 |
2234 | /* 249 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 263 |
2235 | /* 254 */ MCD::OPC_CheckPredicate, 24, 151, 11, 0, // Skip to: 3226 |
2236 | /* 259 */ MCD::OPC_Decode, 155, 21, 55, // Opcode: SUBU_MMR6 |
2237 | /* 263 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 277 |
2238 | /* 268 */ MCD::OPC_CheckPredicate, 24, 137, 11, 0, // Skip to: 3226 |
2239 | /* 273 */ MCD::OPC_Decode, 207, 6, 55, // Opcode: AND_MMR6 |
2240 | /* 277 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 291 |
2241 | /* 282 */ MCD::OPC_CheckPredicate, 24, 123, 11, 0, // Skip to: 3226 |
2242 | /* 287 */ MCD::OPC_Decode, 144, 18, 55, // Opcode: OR_MMR6 |
2243 | /* 291 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 305 |
2244 | /* 296 */ MCD::OPC_CheckPredicate, 24, 109, 11, 0, // Skip to: 3226 |
2245 | /* 301 */ MCD::OPC_Decode, 131, 18, 55, // Opcode: NOR_MMR6 |
2246 | /* 305 */ MCD::OPC_FilterValue, 12, 100, 11, 0, // Skip to: 3226 |
2247 | /* 310 */ MCD::OPC_CheckPredicate, 24, 95, 11, 0, // Skip to: 3226 |
2248 | /* 315 */ MCD::OPC_Decode, 198, 22, 55, // Opcode: XOR_MMR6 |
2249 | /* 319 */ MCD::OPC_FilterValue, 24, 115, 0, 0, // Skip to: 439 |
2250 | /* 324 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2251 | /* 327 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 341 |
2252 | /* 332 */ MCD::OPC_CheckPredicate, 24, 73, 11, 0, // Skip to: 3226 |
2253 | /* 337 */ MCD::OPC_Decode, 224, 17, 55, // Opcode: MUL_MMR6 |
2254 | /* 341 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 355 |
2255 | /* 346 */ MCD::OPC_CheckPredicate, 24, 59, 11, 0, // Skip to: 3226 |
2256 | /* 351 */ MCD::OPC_Decode, 184, 17, 55, // Opcode: MUH_MMR6 |
2257 | /* 355 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 369 |
2258 | /* 360 */ MCD::OPC_CheckPredicate, 24, 45, 11, 0, // Skip to: 3226 |
2259 | /* 365 */ MCD::OPC_Decode, 218, 17, 55, // Opcode: MULU_MMR6 |
2260 | /* 369 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 383 |
2261 | /* 374 */ MCD::OPC_CheckPredicate, 24, 31, 11, 0, // Skip to: 3226 |
2262 | /* 379 */ MCD::OPC_Decode, 183, 17, 55, // Opcode: MUHU_MMR6 |
2263 | /* 383 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 397 |
2264 | /* 388 */ MCD::OPC_CheckPredicate, 24, 17, 11, 0, // Skip to: 3226 |
2265 | /* 393 */ MCD::OPC_Decode, 157, 11, 55, // Opcode: DIV_MMR6 |
2266 | /* 397 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 411 |
2267 | /* 402 */ MCD::OPC_CheckPredicate, 24, 3, 11, 0, // Skip to: 3226 |
2268 | /* 407 */ MCD::OPC_Decode, 192, 16, 55, // Opcode: MOD_MMR6 |
2269 | /* 411 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 425 |
2270 | /* 416 */ MCD::OPC_CheckPredicate, 24, 245, 10, 0, // Skip to: 3226 |
2271 | /* 421 */ MCD::OPC_Decode, 156, 11, 55, // Opcode: DIVU_MMR6 |
2272 | /* 425 */ MCD::OPC_FilterValue, 7, 236, 10, 0, // Skip to: 3226 |
2273 | /* 430 */ MCD::OPC_CheckPredicate, 24, 231, 10, 0, // Skip to: 3226 |
2274 | /* 435 */ MCD::OPC_Decode, 191, 16, 55, // Opcode: MODU_MMR6 |
2275 | /* 439 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 461 |
2276 | /* 444 */ MCD::OPC_CheckPredicate, 24, 217, 10, 0, // Skip to: 3226 |
2277 | /* 449 */ MCD::OPC_CheckField, 6, 3, 0, 210, 10, 0, // Skip to: 3226 |
2278 | /* 456 */ MCD::OPC_Decode, 195, 6, 155, 1, // Opcode: ALIGN_MMR6 |
2279 | /* 461 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 475 |
2280 | /* 466 */ MCD::OPC_CheckPredicate, 24, 195, 10, 0, // Skip to: 3226 |
2281 | /* 471 */ MCD::OPC_Decode, 180, 12, 66, // Opcode: EXT_MMR6 |
2282 | /* 475 */ MCD::OPC_FilterValue, 52, 45, 0, 0, // Skip to: 525 |
2283 | /* 480 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2284 | /* 483 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 504 |
2285 | /* 488 */ MCD::OPC_CheckPredicate, 24, 173, 10, 0, // Skip to: 3226 |
2286 | /* 493 */ MCD::OPC_CheckField, 14, 2, 0, 166, 10, 0, // Skip to: 3226 |
2287 | /* 500 */ MCD::OPC_Decode, 138, 16, 68, // Opcode: MFHC0_MMR6 |
2288 | /* 504 */ MCD::OPC_FilterValue, 11, 157, 10, 0, // Skip to: 3226 |
2289 | /* 509 */ MCD::OPC_CheckPredicate, 24, 152, 10, 0, // Skip to: 3226 |
2290 | /* 514 */ MCD::OPC_CheckField, 14, 2, 0, 145, 10, 0, // Skip to: 3226 |
2291 | /* 521 */ MCD::OPC_Decode, 154, 17, 69, // Opcode: MTHC0_MMR6 |
2292 | /* 525 */ MCD::OPC_FilterValue, 60, 66, 2, 0, // Skip to: 1108 |
2293 | /* 530 */ MCD::OPC_ExtractField, 14, 2, // Inst{15-14} ... |
2294 | /* 533 */ MCD::OPC_FilterValue, 0, 138, 0, 0, // Skip to: 676 |
2295 | /* 538 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2296 | /* 541 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 555 |
2297 | /* 546 */ MCD::OPC_CheckPredicate, 24, 115, 10, 0, // Skip to: 3226 |
2298 | /* 551 */ MCD::OPC_Decode, 129, 16, 68, // Opcode: MFC0_MMR6 |
2299 | /* 555 */ MCD::OPC_FilterValue, 5, 45, 0, 0, // Skip to: 605 |
2300 | /* 560 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
2301 | /* 563 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 584 |
2302 | /* 568 */ MCD::OPC_CheckPredicate, 24, 93, 10, 0, // Skip to: 3226 |
2303 | /* 573 */ MCD::OPC_CheckField, 21, 5, 0, 86, 10, 0, // Skip to: 3226 |
2304 | /* 580 */ MCD::OPC_Decode, 134, 12, 92, // Opcode: DVP_MMR6 |
2305 | /* 584 */ MCD::OPC_FilterValue, 7, 77, 10, 0, // Skip to: 3226 |
2306 | /* 589 */ MCD::OPC_CheckPredicate, 24, 72, 10, 0, // Skip to: 3226 |
2307 | /* 594 */ MCD::OPC_CheckField, 21, 5, 0, 65, 10, 0, // Skip to: 3226 |
2308 | /* 601 */ MCD::OPC_Decode, 151, 12, 92, // Opcode: EVP_MMR6 |
2309 | /* 605 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 619 |
2310 | /* 610 */ MCD::OPC_CheckPredicate, 24, 51, 10, 0, // Skip to: 3226 |
2311 | /* 615 */ MCD::OPC_Decode, 144, 17, 69, // Opcode: MTC0_MMR6 |
2312 | /* 619 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 640 |
2313 | /* 624 */ MCD::OPC_CheckPredicate, 24, 37, 10, 0, // Skip to: 3226 |
2314 | /* 629 */ MCD::OPC_CheckField, 11, 3, 1, 30, 10, 0, // Skip to: 3226 |
2315 | /* 636 */ MCD::OPC_Decode, 221, 7, 86, // Opcode: BITSWAP_MMR6 |
2316 | /* 640 */ MCD::OPC_FilterValue, 28, 21, 10, 0, // Skip to: 3226 |
2317 | /* 645 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
2318 | /* 648 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 662 |
2319 | /* 653 */ MCD::OPC_CheckPredicate, 24, 8, 10, 0, // Skip to: 3226 |
2320 | /* 658 */ MCD::OPC_Decode, 160, 14, 80, // Opcode: JALRC_MMR6 |
2321 | /* 662 */ MCD::OPC_FilterValue, 3, 255, 9, 0, // Skip to: 3226 |
2322 | /* 667 */ MCD::OPC_CheckPredicate, 24, 250, 9, 0, // Skip to: 3226 |
2323 | /* 672 */ MCD::OPC_Decode, 159, 14, 80, // Opcode: JALRC_HB_MMR6 |
2324 | /* 676 */ MCD::OPC_FilterValue, 1, 10, 1, 0, // Skip to: 947 |
2325 | /* 681 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... |
2326 | /* 684 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 734 |
2327 | /* 689 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2328 | /* 692 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 713 |
2329 | /* 697 */ MCD::OPC_CheckPredicate, 24, 220, 9, 0, // Skip to: 3226 |
2330 | /* 702 */ MCD::OPC_CheckField, 16, 10, 0, 213, 9, 0, // Skip to: 3226 |
2331 | /* 709 */ MCD::OPC_Decode, 141, 22, 10, // Opcode: TLBINV_MMR6 |
2332 | /* 713 */ MCD::OPC_FilterValue, 29, 204, 9, 0, // Skip to: 3226 |
2333 | /* 718 */ MCD::OPC_CheckPredicate, 24, 199, 9, 0, // Skip to: 3226 |
2334 | /* 723 */ MCD::OPC_CheckField, 21, 5, 0, 192, 9, 0, // Skip to: 3226 |
2335 | /* 730 */ MCD::OPC_Decode, 167, 11, 92, // Opcode: DI_MMR6 |
2336 | /* 734 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 770 |
2337 | /* 739 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2338 | /* 742 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 756 |
2339 | /* 747 */ MCD::OPC_CheckPredicate, 24, 170, 9, 0, // Skip to: 3226 |
2340 | /* 752 */ MCD::OPC_Decode, 247, 8, 80, // Opcode: CLO_MMR6 |
2341 | /* 756 */ MCD::OPC_FilterValue, 20, 161, 9, 0, // Skip to: 3226 |
2342 | /* 761 */ MCD::OPC_CheckPredicate, 24, 156, 9, 0, // Skip to: 3226 |
2343 | /* 766 */ MCD::OPC_Decode, 135, 16, 90, // Opcode: MFC2_MMR6 |
2344 | /* 770 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 820 |
2345 | /* 775 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2346 | /* 778 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 799 |
2347 | /* 783 */ MCD::OPC_CheckPredicate, 24, 134, 9, 0, // Skip to: 3226 |
2348 | /* 788 */ MCD::OPC_CheckField, 16, 10, 0, 127, 9, 0, // Skip to: 3226 |
2349 | /* 795 */ MCD::OPC_Decode, 140, 22, 10, // Opcode: TLBINVF_MMR6 |
2350 | /* 799 */ MCD::OPC_FilterValue, 29, 118, 9, 0, // Skip to: 3226 |
2351 | /* 804 */ MCD::OPC_CheckPredicate, 24, 113, 9, 0, // Skip to: 3226 |
2352 | /* 809 */ MCD::OPC_CheckField, 21, 5, 0, 106, 9, 0, // Skip to: 3226 |
2353 | /* 816 */ MCD::OPC_Decode, 142, 12, 92, // Opcode: EI_MMR6 |
2354 | /* 820 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 841 |
2355 | /* 825 */ MCD::OPC_CheckPredicate, 24, 92, 9, 0, // Skip to: 3226 |
2356 | /* 830 */ MCD::OPC_CheckField, 6, 5, 20, 85, 9, 0, // Skip to: 3226 |
2357 | /* 837 */ MCD::OPC_Decode, 151, 17, 91, // Opcode: MTC2_MMR6 |
2358 | /* 841 */ MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 869 |
2359 | /* 846 */ MCD::OPC_CheckPredicate, 25, 71, 9, 0, // Skip to: 3226 |
2360 | /* 851 */ MCD::OPC_CheckField, 21, 5, 0, 64, 9, 0, // Skip to: 3226 |
2361 | /* 858 */ MCD::OPC_CheckField, 6, 5, 5, 57, 9, 0, // Skip to: 3226 |
2362 | /* 865 */ MCD::OPC_Decode, 235, 13, 92, // Opcode: GINVI_MMR6 |
2363 | /* 869 */ MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 897 |
2364 | /* 874 */ MCD::OPC_CheckPredicate, 24, 43, 9, 0, // Skip to: 3226 |
2365 | /* 879 */ MCD::OPC_CheckField, 21, 5, 0, 36, 9, 0, // Skip to: 3226 |
2366 | /* 886 */ MCD::OPC_CheckField, 6, 5, 13, 29, 9, 0, // Skip to: 3226 |
2367 | /* 893 */ MCD::OPC_Decode, 218, 21, 87, // Opcode: SYNC_MMR6 |
2368 | /* 897 */ MCD::OPC_FilterValue, 6, 24, 0, 0, // Skip to: 926 |
2369 | /* 902 */ MCD::OPC_CheckPredicate, 25, 15, 9, 0, // Skip to: 3226 |
2370 | /* 907 */ MCD::OPC_CheckField, 21, 5, 0, 8, 9, 0, // Skip to: 3226 |
2371 | /* 914 */ MCD::OPC_CheckField, 6, 3, 5, 1, 9, 0, // Skip to: 3226 |
2372 | /* 921 */ MCD::OPC_Decode, 237, 13, 156, 1, // Opcode: GINVT_MMR6 |
2373 | /* 926 */ MCD::OPC_FilterValue, 7, 247, 8, 0, // Skip to: 3226 |
2374 | /* 931 */ MCD::OPC_CheckPredicate, 24, 242, 8, 0, // Skip to: 3226 |
2375 | /* 936 */ MCD::OPC_CheckField, 6, 5, 12, 235, 8, 0, // Skip to: 3226 |
2376 | /* 943 */ MCD::OPC_Decode, 190, 22, 80, // Opcode: WSBH_MMR6 |
2377 | /* 947 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 997 |
2378 | /* 952 */ MCD::OPC_ExtractField, 6, 8, // Inst{13-6} ... |
2379 | /* 955 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 969 |
2380 | /* 960 */ MCD::OPC_CheckPredicate, 24, 213, 8, 0, // Skip to: 3226 |
2381 | /* 965 */ MCD::OPC_Decode, 143, 16, 90, // Opcode: MFHC2_MMR6 |
2382 | /* 969 */ MCD::OPC_FilterValue, 77, 9, 0, 0, // Skip to: 983 |
2383 | /* 974 */ MCD::OPC_CheckPredicate, 24, 199, 8, 0, // Skip to: 3226 |
2384 | /* 979 */ MCD::OPC_Decode, 184, 22, 88, // Opcode: WAIT_MMR6 |
2385 | /* 983 */ MCD::OPC_FilterValue, 116, 190, 8, 0, // Skip to: 3226 |
2386 | /* 988 */ MCD::OPC_CheckPredicate, 24, 185, 8, 0, // Skip to: 3226 |
2387 | /* 993 */ MCD::OPC_Decode, 159, 17, 91, // Opcode: MTHC2_MMR6 |
2388 | /* 997 */ MCD::OPC_FilterValue, 3, 176, 8, 0, // Skip to: 3226 |
2389 | /* 1002 */ MCD::OPC_ExtractField, 6, 8, // Inst{13-6} ... |
2390 | /* 1005 */ MCD::OPC_FilterValue, 109, 9, 0, 0, // Skip to: 1019 |
2391 | /* 1010 */ MCD::OPC_CheckPredicate, 24, 163, 8, 0, // Skip to: 3226 |
2392 | /* 1015 */ MCD::OPC_Decode, 174, 19, 88, // Opcode: SDBBP_MMR6 |
2393 | /* 1019 */ MCD::OPC_FilterValue, 133, 1, 9, 0, 0, // Skip to: 1034 |
2394 | /* 1025 */ MCD::OPC_CheckPredicate, 24, 148, 8, 0, // Skip to: 3226 |
2395 | /* 1030 */ MCD::OPC_Decode, 227, 18, 80, // Opcode: RDPGPR_MMR6 |
2396 | /* 1034 */ MCD::OPC_FilterValue, 141, 1, 16, 0, 0, // Skip to: 1056 |
2397 | /* 1040 */ MCD::OPC_CheckPredicate, 24, 133, 8, 0, // Skip to: 3226 |
2398 | /* 1045 */ MCD::OPC_CheckField, 16, 10, 0, 126, 8, 0, // Skip to: 3226 |
2399 | /* 1052 */ MCD::OPC_Decode, 145, 11, 10, // Opcode: DERET_MMR6 |
2400 | /* 1056 */ MCD::OPC_FilterValue, 197, 1, 9, 0, 0, // Skip to: 1071 |
2401 | /* 1062 */ MCD::OPC_CheckPredicate, 24, 111, 8, 0, // Skip to: 3226 |
2402 | /* 1067 */ MCD::OPC_Decode, 187, 22, 80, // Opcode: WRPGPR_MMR6 |
2403 | /* 1071 */ MCD::OPC_FilterValue, 205, 1, 101, 8, 0, // Skip to: 3226 |
2404 | /* 1077 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
2405 | /* 1080 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1094 |
2406 | /* 1085 */ MCD::OPC_CheckPredicate, 24, 88, 8, 0, // Skip to: 3226 |
2407 | /* 1090 */ MCD::OPC_Decode, 148, 12, 10, // Opcode: ERET_MMR6 |
2408 | /* 1094 */ MCD::OPC_FilterValue, 1, 79, 8, 0, // Skip to: 3226 |
2409 | /* 1099 */ MCD::OPC_CheckPredicate, 24, 74, 8, 0, // Skip to: 3226 |
2410 | /* 1104 */ MCD::OPC_Decode, 146, 12, 10, // Opcode: ERETNC_MMR6 |
2411 | /* 1108 */ MCD::OPC_FilterValue, 63, 65, 8, 0, // Skip to: 3226 |
2412 | /* 1113 */ MCD::OPC_CheckPredicate, 24, 60, 8, 0, // Skip to: 3226 |
2413 | /* 1118 */ MCD::OPC_CheckField, 22, 4, 0, 53, 8, 0, // Skip to: 3226 |
2414 | /* 1125 */ MCD::OPC_Decode, 149, 20, 157, 1, // Opcode: SIGRIE_MMR6 |
2415 | /* 1130 */ MCD::OPC_FilterValue, 4, 26, 0, 0, // Skip to: 1161 |
2416 | /* 1135 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 1152 |
2417 | /* 1140 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 1152 |
2418 | /* 1147 */ MCD::OPC_Decode, 136, 15, 158, 1, // Opcode: LUI_MMR6 |
2419 | /* 1152 */ MCD::OPC_CheckPredicate, 24, 21, 8, 0, // Skip to: 3226 |
2420 | /* 1157 */ MCD::OPC_Decode, 225, 6, 108, // Opcode: AUI_MMR6 |
2421 | /* 1161 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1176 |
2422 | /* 1166 */ MCD::OPC_CheckPredicate, 24, 7, 8, 0, // Skip to: 3226 |
2423 | /* 1171 */ MCD::OPC_Decode, 202, 14, 159, 1, // Opcode: LBU_MMR6 |
2424 | /* 1176 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1190 |
2425 | /* 1181 */ MCD::OPC_CheckPredicate, 24, 248, 7, 0, // Skip to: 3226 |
2426 | /* 1186 */ MCD::OPC_Decode, 158, 19, 98, // Opcode: SB_MMR6 |
2427 | /* 1190 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1205 |
2428 | /* 1195 */ MCD::OPC_CheckPredicate, 24, 234, 7, 0, // Skip to: 3226 |
2429 | /* 1200 */ MCD::OPC_Decode, 204, 14, 159, 1, // Opcode: LB_MMR6 |
2430 | /* 1205 */ MCD::OPC_FilterValue, 8, 105, 0, 0, // Skip to: 1315 |
2431 | /* 1210 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2432 | /* 1213 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1235 |
2433 | /* 1218 */ MCD::OPC_CheckPredicate, 24, 211, 7, 0, // Skip to: 3226 |
2434 | /* 1223 */ MCD::OPC_CheckField, 11, 1, 0, 204, 7, 0, // Skip to: 3226 |
2435 | /* 1230 */ MCD::OPC_Decode, 149, 15, 160, 1, // Opcode: LWC2_MMR6 |
2436 | /* 1235 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1257 |
2437 | /* 1240 */ MCD::OPC_CheckPredicate, 24, 189, 7, 0, // Skip to: 3226 |
2438 | /* 1245 */ MCD::OPC_CheckField, 11, 1, 0, 182, 7, 0, // Skip to: 3226 |
2439 | /* 1252 */ MCD::OPC_Decode, 217, 14, 160, 1, // Opcode: LDC2_MMR6 |
2440 | /* 1257 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1271 |
2441 | /* 1262 */ MCD::OPC_CheckPredicate, 24, 167, 7, 0, // Skip to: 3226 |
2442 | /* 1267 */ MCD::OPC_Decode, 196, 8, 100, // Opcode: CACHE_MMR6 |
2443 | /* 1271 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 1293 |
2444 | /* 1276 */ MCD::OPC_CheckPredicate, 24, 153, 7, 0, // Skip to: 3226 |
2445 | /* 1281 */ MCD::OPC_CheckField, 11, 1, 0, 146, 7, 0, // Skip to: 3226 |
2446 | /* 1288 */ MCD::OPC_Decode, 186, 21, 160, 1, // Opcode: SWC2_MMR6 |
2447 | /* 1293 */ MCD::OPC_FilterValue, 10, 136, 7, 0, // Skip to: 3226 |
2448 | /* 1298 */ MCD::OPC_CheckPredicate, 24, 131, 7, 0, // Skip to: 3226 |
2449 | /* 1303 */ MCD::OPC_CheckField, 11, 1, 0, 124, 7, 0, // Skip to: 3226 |
2450 | /* 1310 */ MCD::OPC_Decode, 182, 19, 160, 1, // Opcode: SDC2_MMR6 |
2451 | /* 1315 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1329 |
2452 | /* 1320 */ MCD::OPC_CheckPredicate, 24, 109, 7, 0, // Skip to: 3226 |
2453 | /* 1325 */ MCD::OPC_Decode, 255, 5, 97, // Opcode: ADDIU_MMR6 |
2454 | /* 1329 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 1343 |
2455 | /* 1334 */ MCD::OPC_CheckPredicate, 24, 95, 7, 0, // Skip to: 3226 |
2456 | /* 1339 */ MCD::OPC_Decode, 147, 20, 98, // Opcode: SH_MMR6 |
2457 | /* 1343 */ MCD::OPC_FilterValue, 16, 78, 0, 0, // Skip to: 1426 |
2458 | /* 1348 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
2459 | /* 1351 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1366 |
2460 | /* 1356 */ MCD::OPC_CheckPredicate, 26, 73, 7, 0, // Skip to: 3226 |
2461 | /* 1361 */ MCD::OPC_Decode, 137, 7, 161, 1, // Opcode: BC1EQZC_MMR6 |
2462 | /* 1366 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1381 |
2463 | /* 1371 */ MCD::OPC_CheckPredicate, 26, 58, 7, 0, // Skip to: 3226 |
2464 | /* 1376 */ MCD::OPC_Decode, 142, 7, 161, 1, // Opcode: BC1NEZC_MMR6 |
2465 | /* 1381 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1396 |
2466 | /* 1386 */ MCD::OPC_CheckPredicate, 24, 43, 7, 0, // Skip to: 3226 |
2467 | /* 1391 */ MCD::OPC_Decode, 147, 7, 162, 1, // Opcode: BC2EQZC_MMR6 |
2468 | /* 1396 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1411 |
2469 | /* 1401 */ MCD::OPC_CheckPredicate, 24, 28, 7, 0, // Skip to: 3226 |
2470 | /* 1406 */ MCD::OPC_Decode, 149, 7, 162, 1, // Opcode: BC2NEZC_MMR6 |
2471 | /* 1411 */ MCD::OPC_FilterValue, 12, 18, 7, 0, // Skip to: 3226 |
2472 | /* 1416 */ MCD::OPC_CheckPredicate, 24, 13, 7, 0, // Skip to: 3226 |
2473 | /* 1421 */ MCD::OPC_Decode, 216, 21, 163, 1, // Opcode: SYNCI_MMR6 |
2474 | /* 1426 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 1440 |
2475 | /* 1431 */ MCD::OPC_CheckPredicate, 24, 254, 6, 0, // Skip to: 3226 |
2476 | /* 1436 */ MCD::OPC_Decode, 142, 18, 108, // Opcode: ORI_MMR6 |
2477 | /* 1440 */ MCD::OPC_FilterValue, 21, 87, 5, 0, // Skip to: 2812 |
2478 | /* 1445 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
2479 | /* 1448 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1463 |
2480 | /* 1453 */ MCD::OPC_CheckPredicate, 26, 232, 6, 0, // Skip to: 3226 |
2481 | /* 1458 */ MCD::OPC_Decode, 181, 16, 164, 1, // Opcode: MIN_S_MMR6 |
2482 | /* 1463 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1478 |
2483 | /* 1468 */ MCD::OPC_CheckPredicate, 26, 217, 6, 0, // Skip to: 3226 |
2484 | /* 1473 */ MCD::OPC_Decode, 160, 9, 165, 1, // Opcode: CMP_AF_S_MMR6 |
2485 | /* 1478 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1493 |
2486 | /* 1483 */ MCD::OPC_CheckPredicate, 26, 202, 6, 0, // Skip to: 3226 |
2487 | /* 1488 */ MCD::OPC_Decode, 250, 15, 164, 1, // Opcode: MAX_S_MMR6 |
2488 | /* 1493 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 1508 |
2489 | /* 1498 */ MCD::OPC_CheckPredicate, 26, 187, 6, 0, // Skip to: 3226 |
2490 | /* 1503 */ MCD::OPC_Decode, 159, 9, 166, 1, // Opcode: CMP_AF_D_MMR6 |
2491 | /* 1508 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 1530 |
2492 | /* 1513 */ MCD::OPC_CheckPredicate, 24, 172, 6, 0, // Skip to: 3226 |
2493 | /* 1518 */ MCD::OPC_CheckField, 11, 5, 0, 165, 6, 0, // Skip to: 3226 |
2494 | /* 1525 */ MCD::OPC_Decode, 245, 18, 167, 1, // Opcode: RINT_S_MMR6 |
2495 | /* 1530 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 1545 |
2496 | /* 1535 */ MCD::OPC_CheckPredicate, 26, 150, 6, 0, // Skip to: 3226 |
2497 | /* 1540 */ MCD::OPC_Decode, 162, 16, 164, 1, // Opcode: MINA_S_MMR6 |
2498 | /* 1545 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 1560 |
2499 | /* 1550 */ MCD::OPC_CheckPredicate, 26, 135, 6, 0, // Skip to: 3226 |
2500 | /* 1555 */ MCD::OPC_Decode, 231, 15, 164, 1, // Opcode: MAXA_S_MMR6 |
2501 | /* 1560 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 1575 |
2502 | /* 1565 */ MCD::OPC_CheckPredicate, 26, 120, 6, 0, // Skip to: 3226 |
2503 | /* 1570 */ MCD::OPC_Decode, 195, 12, 168, 1, // Opcode: FADD_S_MMR6 |
2504 | /* 1575 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 1590 |
2505 | /* 1580 */ MCD::OPC_CheckPredicate, 24, 105, 6, 0, // Skip to: 3226 |
2506 | /* 1585 */ MCD::OPC_Decode, 203, 19, 164, 1, // Opcode: SELEQZ_S_MMR6 |
2507 | /* 1590 */ MCD::OPC_FilterValue, 59, 31, 0, 0, // Skip to: 1626 |
2508 | /* 1595 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2509 | /* 1598 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1612 |
2510 | /* 1603 */ MCD::OPC_CheckPredicate, 26, 82, 6, 0, // Skip to: 3226 |
2511 | /* 1608 */ MCD::OPC_Decode, 133, 16, 119, // Opcode: MFC1_MMR6 |
2512 | /* 1612 */ MCD::OPC_FilterValue, 5, 73, 6, 0, // Skip to: 3226 |
2513 | /* 1617 */ MCD::OPC_CheckPredicate, 26, 68, 6, 0, // Skip to: 3226 |
2514 | /* 1622 */ MCD::OPC_Decode, 149, 17, 125, // Opcode: MTC1_MMR6 |
2515 | /* 1626 */ MCD::OPC_FilterValue, 69, 10, 0, 0, // Skip to: 1641 |
2516 | /* 1631 */ MCD::OPC_CheckPredicate, 26, 54, 6, 0, // Skip to: 3226 |
2517 | /* 1636 */ MCD::OPC_Decode, 228, 9, 165, 1, // Opcode: CMP_UN_S_MMR6 |
2518 | /* 1641 */ MCD::OPC_FilterValue, 85, 10, 0, 0, // Skip to: 1656 |
2519 | /* 1646 */ MCD::OPC_CheckPredicate, 26, 39, 6, 0, // Skip to: 3226 |
2520 | /* 1651 */ MCD::OPC_Decode, 226, 9, 166, 1, // Opcode: CMP_UN_D_MMR6 |
2521 | /* 1656 */ MCD::OPC_FilterValue, 96, 17, 0, 0, // Skip to: 1678 |
2522 | /* 1661 */ MCD::OPC_CheckPredicate, 24, 24, 6, 0, // Skip to: 3226 |
2523 | /* 1666 */ MCD::OPC_CheckField, 11, 5, 0, 17, 6, 0, // Skip to: 3226 |
2524 | /* 1673 */ MCD::OPC_Decode, 228, 8, 167, 1, // Opcode: CLASS_S_MMR6 |
2525 | /* 1678 */ MCD::OPC_FilterValue, 112, 10, 0, 0, // Skip to: 1693 |
2526 | /* 1683 */ MCD::OPC_CheckPredicate, 26, 2, 6, 0, // Skip to: 3226 |
2527 | /* 1688 */ MCD::OPC_Decode, 212, 13, 168, 1, // Opcode: FSUB_S_MMR6 |
2528 | /* 1693 */ MCD::OPC_FilterValue, 120, 10, 0, 0, // Skip to: 1708 |
2529 | /* 1698 */ MCD::OPC_CheckPredicate, 24, 243, 5, 0, // Skip to: 3226 |
2530 | /* 1703 */ MCD::OPC_Decode, 210, 19, 164, 1, // Opcode: SELNEZ_S_MMR6 |
2531 | /* 1708 */ MCD::OPC_FilterValue, 123, 31, 0, 0, // Skip to: 1744 |
2532 | /* 1713 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2533 | /* 1716 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1730 |
2534 | /* 1721 */ MCD::OPC_CheckPredicate, 26, 220, 5, 0, // Skip to: 3226 |
2535 | /* 1726 */ MCD::OPC_Decode, 157, 13, 124, // Opcode: FMOV_S_MMR6 |
2536 | /* 1730 */ MCD::OPC_FilterValue, 4, 211, 5, 0, // Skip to: 3226 |
2537 | /* 1735 */ MCD::OPC_CheckPredicate, 26, 206, 5, 0, // Skip to: 3226 |
2538 | /* 1740 */ MCD::OPC_Decode, 154, 13, 122, // Opcode: FMOV_D_MMR6 |
2539 | /* 1744 */ MCD::OPC_FilterValue, 133, 1, 10, 0, 0, // Skip to: 1760 |
2540 | /* 1750 */ MCD::OPC_CheckPredicate, 26, 191, 5, 0, // Skip to: 3226 |
2541 | /* 1755 */ MCD::OPC_Decode, 166, 9, 165, 1, // Opcode: CMP_EQ_S_MMR6 |
2542 | /* 1760 */ MCD::OPC_FilterValue, 149, 1, 10, 0, 0, // Skip to: 1776 |
2543 | /* 1766 */ MCD::OPC_CheckPredicate, 26, 175, 5, 0, // Skip to: 3226 |
2544 | /* 1771 */ MCD::OPC_Decode, 162, 9, 166, 1, // Opcode: CMP_EQ_D_MMR6 |
2545 | /* 1776 */ MCD::OPC_FilterValue, 176, 1, 10, 0, 0, // Skip to: 1792 |
2546 | /* 1782 */ MCD::OPC_CheckPredicate, 26, 159, 5, 0, // Skip to: 3226 |
2547 | /* 1787 */ MCD::OPC_Decode, 168, 13, 168, 1, // Opcode: FMUL_S_MMR6 |
2548 | /* 1792 */ MCD::OPC_FilterValue, 184, 1, 10, 0, 0, // Skip to: 1808 |
2549 | /* 1798 */ MCD::OPC_CheckPredicate, 24, 143, 5, 0, // Skip to: 3226 |
2550 | /* 1803 */ MCD::OPC_Decode, 214, 19, 169, 1, // Opcode: SEL_S_MMR6 |
2551 | /* 1808 */ MCD::OPC_FilterValue, 197, 1, 10, 0, 0, // Skip to: 1824 |
2552 | /* 1814 */ MCD::OPC_CheckPredicate, 26, 127, 5, 0, // Skip to: 3226 |
2553 | /* 1819 */ MCD::OPC_Decode, 216, 9, 165, 1, // Opcode: CMP_UEQ_S_MMR6 |
2554 | /* 1824 */ MCD::OPC_FilterValue, 213, 1, 10, 0, 0, // Skip to: 1840 |
2555 | /* 1830 */ MCD::OPC_CheckPredicate, 26, 111, 5, 0, // Skip to: 3226 |
2556 | /* 1835 */ MCD::OPC_Decode, 214, 9, 166, 1, // Opcode: CMP_UEQ_D_MMR6 |
2557 | /* 1840 */ MCD::OPC_FilterValue, 240, 1, 10, 0, 0, // Skip to: 1856 |
2558 | /* 1846 */ MCD::OPC_CheckPredicate, 26, 95, 5, 0, // Skip to: 3226 |
2559 | /* 1851 */ MCD::OPC_Decode, 233, 12, 168, 1, // Opcode: FDIV_S_MMR6 |
2560 | /* 1856 */ MCD::OPC_FilterValue, 133, 2, 10, 0, 0, // Skip to: 1872 |
2561 | /* 1862 */ MCD::OPC_CheckPredicate, 26, 79, 5, 0, // Skip to: 3226 |
2562 | /* 1867 */ MCD::OPC_Decode, 180, 9, 165, 1, // Opcode: CMP_LT_S_MMR6 |
2563 | /* 1872 */ MCD::OPC_FilterValue, 149, 2, 10, 0, 0, // Skip to: 1888 |
2564 | /* 1878 */ MCD::OPC_CheckPredicate, 26, 63, 5, 0, // Skip to: 3226 |
2565 | /* 1883 */ MCD::OPC_Decode, 176, 9, 166, 1, // Opcode: CMP_LT_D_MMR6 |
2566 | /* 1888 */ MCD::OPC_FilterValue, 187, 2, 45, 0, 0, // Skip to: 1939 |
2567 | /* 1894 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2568 | /* 1897 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1911 |
2569 | /* 1902 */ MCD::OPC_CheckPredicate, 26, 39, 5, 0, // Skip to: 3226 |
2570 | /* 1907 */ MCD::OPC_Decode, 135, 10, 121, // Opcode: CVT_L_S_MMR6 |
2571 | /* 1911 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1925 |
2572 | /* 1916 */ MCD::OPC_CheckPredicate, 26, 25, 5, 0, // Skip to: 3226 |
2573 | /* 1921 */ MCD::OPC_Decode, 156, 10, 124, // Opcode: CVT_W_S_MMR6 |
2574 | /* 1925 */ MCD::OPC_FilterValue, 8, 16, 5, 0, // Skip to: 3226 |
2575 | /* 1930 */ MCD::OPC_CheckPredicate, 26, 11, 5, 0, // Skip to: 3226 |
2576 | /* 1935 */ MCD::OPC_Decode, 132, 10, 122, // Opcode: CVT_L_D_MMR6 |
2577 | /* 1939 */ MCD::OPC_FilterValue, 197, 2, 10, 0, 0, // Skip to: 1955 |
2578 | /* 1945 */ MCD::OPC_CheckPredicate, 26, 252, 4, 0, // Skip to: 3226 |
2579 | /* 1950 */ MCD::OPC_Decode, 224, 9, 165, 1, // Opcode: CMP_ULT_S_MMR6 |
2580 | /* 1955 */ MCD::OPC_FilterValue, 213, 2, 10, 0, 0, // Skip to: 1971 |
2581 | /* 1961 */ MCD::OPC_CheckPredicate, 26, 236, 4, 0, // Skip to: 3226 |
2582 | /* 1966 */ MCD::OPC_Decode, 222, 9, 166, 1, // Opcode: CMP_ULT_D_MMR6 |
2583 | /* 1971 */ MCD::OPC_FilterValue, 133, 3, 10, 0, 0, // Skip to: 1987 |
2584 | /* 1977 */ MCD::OPC_CheckPredicate, 26, 220, 4, 0, // Skip to: 3226 |
2585 | /* 1982 */ MCD::OPC_Decode, 174, 9, 165, 1, // Opcode: CMP_LE_S_MMR6 |
2586 | /* 1987 */ MCD::OPC_FilterValue, 149, 3, 10, 0, 0, // Skip to: 2003 |
2587 | /* 1993 */ MCD::OPC_CheckPredicate, 26, 204, 4, 0, // Skip to: 3226 |
2588 | /* 1998 */ MCD::OPC_Decode, 170, 9, 166, 1, // Opcode: CMP_LE_D_MMR6 |
2589 | /* 2003 */ MCD::OPC_FilterValue, 184, 3, 10, 0, 0, // Skip to: 2019 |
2590 | /* 2009 */ MCD::OPC_CheckPredicate, 26, 188, 4, 0, // Skip to: 3226 |
2591 | /* 2014 */ MCD::OPC_Decode, 199, 15, 170, 1, // Opcode: MADDF_S_MMR6 |
2592 | /* 2019 */ MCD::OPC_FilterValue, 197, 3, 10, 0, 0, // Skip to: 2035 |
2593 | /* 2025 */ MCD::OPC_CheckPredicate, 26, 172, 4, 0, // Skip to: 3226 |
2594 | /* 2030 */ MCD::OPC_Decode, 220, 9, 165, 1, // Opcode: CMP_ULE_S_MMR6 |
2595 | /* 2035 */ MCD::OPC_FilterValue, 213, 3, 10, 0, 0, // Skip to: 2051 |
2596 | /* 2041 */ MCD::OPC_CheckPredicate, 26, 156, 4, 0, // Skip to: 3226 |
2597 | /* 2046 */ MCD::OPC_Decode, 218, 9, 166, 1, // Opcode: CMP_ULE_D_MMR6 |
2598 | /* 2051 */ MCD::OPC_FilterValue, 248, 3, 10, 0, 0, // Skip to: 2067 |
2599 | /* 2057 */ MCD::OPC_CheckPredicate, 26, 140, 4, 0, // Skip to: 3226 |
2600 | /* 2062 */ MCD::OPC_Decode, 250, 16, 170, 1, // Opcode: MSUBF_S_MMR6 |
2601 | /* 2067 */ MCD::OPC_FilterValue, 131, 4, 10, 0, 0, // Skip to: 2083 |
2602 | /* 2073 */ MCD::OPC_CheckPredicate, 26, 124, 4, 0, // Skip to: 3226 |
2603 | /* 2078 */ MCD::OPC_Decode, 176, 16, 145, 1, // Opcode: MIN_D_MMR6 |
2604 | /* 2083 */ MCD::OPC_FilterValue, 133, 4, 10, 0, 0, // Skip to: 2099 |
2605 | /* 2089 */ MCD::OPC_CheckPredicate, 26, 108, 4, 0, // Skip to: 3226 |
2606 | /* 2094 */ MCD::OPC_Decode, 184, 9, 165, 1, // Opcode: CMP_SAF_S_MMR6 |
2607 | /* 2099 */ MCD::OPC_FilterValue, 139, 4, 10, 0, 0, // Skip to: 2115 |
2608 | /* 2105 */ MCD::OPC_CheckPredicate, 26, 92, 4, 0, // Skip to: 3226 |
2609 | /* 2110 */ MCD::OPC_Decode, 245, 15, 145, 1, // Opcode: MAX_D_MMR6 |
2610 | /* 2115 */ MCD::OPC_FilterValue, 149, 4, 10, 0, 0, // Skip to: 2131 |
2611 | /* 2121 */ MCD::OPC_CheckPredicate, 26, 76, 4, 0, // Skip to: 3226 |
2612 | /* 2126 */ MCD::OPC_Decode, 182, 9, 166, 1, // Opcode: CMP_SAF_D_MMR6 |
2613 | /* 2131 */ MCD::OPC_FilterValue, 160, 4, 17, 0, 0, // Skip to: 2154 |
2614 | /* 2137 */ MCD::OPC_CheckPredicate, 24, 60, 4, 0, // Skip to: 3226 |
2615 | /* 2142 */ MCD::OPC_CheckField, 11, 5, 0, 53, 4, 0, // Skip to: 3226 |
2616 | /* 2149 */ MCD::OPC_Decode, 243, 18, 171, 1, // Opcode: RINT_D_MMR6 |
2617 | /* 2154 */ MCD::OPC_FilterValue, 163, 4, 10, 0, 0, // Skip to: 2170 |
2618 | /* 2160 */ MCD::OPC_CheckPredicate, 26, 37, 4, 0, // Skip to: 3226 |
2619 | /* 2165 */ MCD::OPC_Decode, 160, 16, 145, 1, // Opcode: MINA_D_MMR6 |
2620 | /* 2170 */ MCD::OPC_FilterValue, 171, 4, 10, 0, 0, // Skip to: 2186 |
2621 | /* 2176 */ MCD::OPC_CheckPredicate, 26, 21, 4, 0, // Skip to: 3226 |
2622 | /* 2181 */ MCD::OPC_Decode, 229, 15, 145, 1, // Opcode: MAXA_D_MMR6 |
2623 | /* 2186 */ MCD::OPC_FilterValue, 184, 4, 10, 0, 0, // Skip to: 2202 |
2624 | /* 2192 */ MCD::OPC_CheckPredicate, 24, 5, 4, 0, // Skip to: 3226 |
2625 | /* 2197 */ MCD::OPC_Decode, 200, 19, 145, 1, // Opcode: SELEQZ_D_MMR6 |
2626 | /* 2202 */ MCD::OPC_FilterValue, 197, 4, 10, 0, 0, // Skip to: 2218 |
2627 | /* 2208 */ MCD::OPC_CheckPredicate, 26, 245, 3, 0, // Skip to: 3226 |
2628 | /* 2213 */ MCD::OPC_Decode, 212, 9, 165, 1, // Opcode: CMP_SUN_S_MMR6 |
2629 | /* 2218 */ MCD::OPC_FilterValue, 213, 4, 10, 0, 0, // Skip to: 2234 |
2630 | /* 2224 */ MCD::OPC_CheckPredicate, 26, 229, 3, 0, // Skip to: 3226 |
2631 | /* 2229 */ MCD::OPC_Decode, 210, 9, 166, 1, // Opcode: CMP_SUN_D_MMR6 |
2632 | /* 2234 */ MCD::OPC_FilterValue, 224, 4, 17, 0, 0, // Skip to: 2257 |
2633 | /* 2240 */ MCD::OPC_CheckPredicate, 24, 213, 3, 0, // Skip to: 3226 |
2634 | /* 2245 */ MCD::OPC_CheckField, 11, 5, 0, 206, 3, 0, // Skip to: 3226 |
2635 | /* 2252 */ MCD::OPC_Decode, 226, 8, 171, 1, // Opcode: CLASS_D_MMR6 |
2636 | /* 2257 */ MCD::OPC_FilterValue, 248, 4, 10, 0, 0, // Skip to: 2273 |
2637 | /* 2263 */ MCD::OPC_CheckPredicate, 24, 190, 3, 0, // Skip to: 3226 |
2638 | /* 2268 */ MCD::OPC_Decode, 207, 19, 145, 1, // Opcode: SELNEZ_D_MMR6 |
2639 | /* 2273 */ MCD::OPC_FilterValue, 133, 5, 10, 0, 0, // Skip to: 2289 |
2640 | /* 2279 */ MCD::OPC_CheckPredicate, 26, 174, 3, 0, // Skip to: 3226 |
2641 | /* 2284 */ MCD::OPC_Decode, 188, 9, 165, 1, // Opcode: CMP_SEQ_S_MMR6 |
2642 | /* 2289 */ MCD::OPC_FilterValue, 149, 5, 10, 0, 0, // Skip to: 2305 |
2643 | /* 2295 */ MCD::OPC_CheckPredicate, 26, 158, 3, 0, // Skip to: 3226 |
2644 | /* 2300 */ MCD::OPC_Decode, 186, 9, 166, 1, // Opcode: CMP_SEQ_D_MMR6 |
2645 | /* 2305 */ MCD::OPC_FilterValue, 184, 5, 10, 0, 0, // Skip to: 2321 |
2646 | /* 2311 */ MCD::OPC_CheckPredicate, 24, 142, 3, 0, // Skip to: 3226 |
2647 | /* 2316 */ MCD::OPC_Decode, 212, 19, 172, 1, // Opcode: SEL_D_MMR6 |
2648 | /* 2321 */ MCD::OPC_FilterValue, 197, 5, 10, 0, 0, // Skip to: 2337 |
2649 | /* 2327 */ MCD::OPC_CheckPredicate, 26, 126, 3, 0, // Skip to: 3226 |
2650 | /* 2332 */ MCD::OPC_Decode, 200, 9, 165, 1, // Opcode: CMP_SUEQ_S_MMR6 |
2651 | /* 2337 */ MCD::OPC_FilterValue, 213, 5, 10, 0, 0, // Skip to: 2353 |
2652 | /* 2343 */ MCD::OPC_CheckPredicate, 26, 110, 3, 0, // Skip to: 3226 |
2653 | /* 2348 */ MCD::OPC_Decode, 198, 9, 166, 1, // Opcode: CMP_SUEQ_D_MMR6 |
2654 | /* 2353 */ MCD::OPC_FilterValue, 133, 6, 10, 0, 0, // Skip to: 2369 |
2655 | /* 2359 */ MCD::OPC_CheckPredicate, 26, 94, 3, 0, // Skip to: 3226 |
2656 | /* 2364 */ MCD::OPC_Decode, 196, 9, 165, 1, // Opcode: CMP_SLT_S_MMR6 |
2657 | /* 2369 */ MCD::OPC_FilterValue, 149, 6, 10, 0, 0, // Skip to: 2385 |
2658 | /* 2375 */ MCD::OPC_CheckPredicate, 26, 78, 3, 0, // Skip to: 3226 |
2659 | /* 2380 */ MCD::OPC_Decode, 194, 9, 166, 1, // Opcode: CMP_SLT_D_MMR6 |
2660 | /* 2385 */ MCD::OPC_FilterValue, 187, 6, 228, 0, 0, // Skip to: 2619 |
2661 | /* 2391 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2662 | /* 2394 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2408 |
2663 | /* 2399 */ MCD::OPC_CheckPredicate, 26, 54, 3, 0, // Skip to: 3226 |
2664 | /* 2404 */ MCD::OPC_Decode, 132, 13, 121, // Opcode: FLOOR_L_S_MMR6 |
2665 | /* 2408 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2422 |
2666 | /* 2413 */ MCD::OPC_CheckPredicate, 26, 40, 3, 0, // Skip to: 3226 |
2667 | /* 2418 */ MCD::OPC_Decode, 139, 13, 124, // Opcode: FLOOR_W_S_MMR6 |
2668 | /* 2422 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2436 |
2669 | /* 2427 */ MCD::OPC_CheckPredicate, 26, 26, 3, 0, // Skip to: 3226 |
2670 | /* 2432 */ MCD::OPC_Decode, 201, 8, 121, // Opcode: CEIL_L_S_MMR6 |
2671 | /* 2436 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2450 |
2672 | /* 2441 */ MCD::OPC_CheckPredicate, 26, 12, 3, 0, // Skip to: 3226 |
2673 | /* 2446 */ MCD::OPC_Decode, 208, 8, 124, // Opcode: CEIL_W_S_MMR6 |
2674 | /* 2450 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2464 |
2675 | /* 2455 */ MCD::OPC_CheckPredicate, 26, 254, 2, 0, // Skip to: 3226 |
2676 | /* 2460 */ MCD::OPC_Decode, 164, 22, 121, // Opcode: TRUNC_L_S_MMR6 |
2677 | /* 2464 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2478 |
2678 | /* 2469 */ MCD::OPC_CheckPredicate, 26, 240, 2, 0, // Skip to: 3226 |
2679 | /* 2474 */ MCD::OPC_Decode, 171, 22, 124, // Opcode: TRUNC_W_S_MMR6 |
2680 | /* 2478 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2492 |
2681 | /* 2483 */ MCD::OPC_CheckPredicate, 26, 226, 2, 0, // Skip to: 3226 |
2682 | /* 2488 */ MCD::OPC_Decode, 253, 18, 121, // Opcode: ROUND_L_S_MMR6 |
2683 | /* 2492 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2506 |
2684 | /* 2497 */ MCD::OPC_CheckPredicate, 26, 212, 2, 0, // Skip to: 3226 |
2685 | /* 2502 */ MCD::OPC_Decode, 132, 19, 124, // Opcode: ROUND_W_S_MMR6 |
2686 | /* 2506 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2520 |
2687 | /* 2511 */ MCD::OPC_CheckPredicate, 26, 198, 2, 0, // Skip to: 3226 |
2688 | /* 2516 */ MCD::OPC_Decode, 130, 13, 122, // Opcode: FLOOR_L_D_MMR6 |
2689 | /* 2520 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 2534 |
2690 | /* 2525 */ MCD::OPC_CheckPredicate, 26, 184, 2, 0, // Skip to: 3226 |
2691 | /* 2530 */ MCD::OPC_Decode, 135, 13, 126, // Opcode: FLOOR_W_D_MMR6 |
2692 | /* 2534 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2548 |
2693 | /* 2539 */ MCD::OPC_CheckPredicate, 26, 170, 2, 0, // Skip to: 3226 |
2694 | /* 2544 */ MCD::OPC_Decode, 199, 8, 122, // Opcode: CEIL_L_D_MMR6 |
2695 | /* 2548 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 2562 |
2696 | /* 2553 */ MCD::OPC_CheckPredicate, 26, 156, 2, 0, // Skip to: 3226 |
2697 | /* 2558 */ MCD::OPC_Decode, 204, 8, 126, // Opcode: CEIL_W_D_MMR6 |
2698 | /* 2562 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 2576 |
2699 | /* 2567 */ MCD::OPC_CheckPredicate, 26, 142, 2, 0, // Skip to: 3226 |
2700 | /* 2572 */ MCD::OPC_Decode, 162, 22, 122, // Opcode: TRUNC_L_D_MMR6 |
2701 | /* 2576 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2591 |
2702 | /* 2581 */ MCD::OPC_CheckPredicate, 26, 128, 2, 0, // Skip to: 3226 |
2703 | /* 2586 */ MCD::OPC_Decode, 167, 22, 146, 1, // Opcode: TRUNC_W_D_MMR6 |
2704 | /* 2591 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2605 |
2705 | /* 2596 */ MCD::OPC_CheckPredicate, 26, 113, 2, 0, // Skip to: 3226 |
2706 | /* 2601 */ MCD::OPC_Decode, 251, 18, 122, // Opcode: ROUND_L_D_MMR6 |
2707 | /* 2605 */ MCD::OPC_FilterValue, 15, 104, 2, 0, // Skip to: 3226 |
2708 | /* 2610 */ MCD::OPC_CheckPredicate, 26, 99, 2, 0, // Skip to: 3226 |
2709 | /* 2615 */ MCD::OPC_Decode, 128, 19, 122, // Opcode: ROUND_W_D_MMR6 |
2710 | /* 2619 */ MCD::OPC_FilterValue, 197, 6, 10, 0, 0, // Skip to: 2635 |
2711 | /* 2625 */ MCD::OPC_CheckPredicate, 26, 84, 2, 0, // Skip to: 3226 |
2712 | /* 2630 */ MCD::OPC_Decode, 208, 9, 165, 1, // Opcode: CMP_SULT_S_MMR6 |
2713 | /* 2635 */ MCD::OPC_FilterValue, 213, 6, 10, 0, 0, // Skip to: 2651 |
2714 | /* 2641 */ MCD::OPC_CheckPredicate, 26, 68, 2, 0, // Skip to: 3226 |
2715 | /* 2646 */ MCD::OPC_Decode, 206, 9, 166, 1, // Opcode: CMP_SULT_D_MMR6 |
2716 | /* 2651 */ MCD::OPC_FilterValue, 251, 6, 59, 0, 0, // Skip to: 2716 |
2717 | /* 2657 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... |
2718 | /* 2660 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2674 |
2719 | /* 2665 */ MCD::OPC_CheckPredicate, 26, 44, 2, 0, // Skip to: 3226 |
2720 | /* 2670 */ MCD::OPC_Decode, 176, 13, 124, // Opcode: FNEG_S_MMR6 |
2721 | /* 2674 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2688 |
2722 | /* 2679 */ MCD::OPC_CheckPredicate, 26, 30, 2, 0, // Skip to: 3226 |
2723 | /* 2684 */ MCD::OPC_Decode, 149, 10, 124, // Opcode: CVT_S_W_MMR6 |
2724 | /* 2688 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2702 |
2725 | /* 2693 */ MCD::OPC_CheckPredicate, 23, 16, 2, 0, // Skip to: 3226 |
2726 | /* 2698 */ MCD::OPC_Decode, 129, 10, 122, // Opcode: CVT_D_L_MMR6 |
2727 | /* 2702 */ MCD::OPC_FilterValue, 11, 7, 2, 0, // Skip to: 3226 |
2728 | /* 2707 */ MCD::OPC_CheckPredicate, 23, 2, 2, 0, // Skip to: 3226 |
2729 | /* 2712 */ MCD::OPC_Decode, 144, 10, 121, // Opcode: CVT_S_L_MMR6 |
2730 | /* 2716 */ MCD::OPC_FilterValue, 133, 7, 10, 0, 0, // Skip to: 2732 |
2731 | /* 2722 */ MCD::OPC_CheckPredicate, 26, 243, 1, 0, // Skip to: 3226 |
2732 | /* 2727 */ MCD::OPC_Decode, 192, 9, 165, 1, // Opcode: CMP_SLE_S_MMR6 |
2733 | /* 2732 */ MCD::OPC_FilterValue, 149, 7, 10, 0, 0, // Skip to: 2748 |
2734 | /* 2738 */ MCD::OPC_CheckPredicate, 26, 227, 1, 0, // Skip to: 3226 |
2735 | /* 2743 */ MCD::OPC_Decode, 190, 9, 166, 1, // Opcode: CMP_SLE_D_MMR6 |
2736 | /* 2748 */ MCD::OPC_FilterValue, 184, 7, 10, 0, 0, // Skip to: 2764 |
2737 | /* 2754 */ MCD::OPC_CheckPredicate, 26, 211, 1, 0, // Skip to: 3226 |
2738 | /* 2759 */ MCD::OPC_Decode, 197, 15, 172, 1, // Opcode: MADDF_D_MMR6 |
2739 | /* 2764 */ MCD::OPC_FilterValue, 197, 7, 10, 0, 0, // Skip to: 2780 |
2740 | /* 2770 */ MCD::OPC_CheckPredicate, 26, 195, 1, 0, // Skip to: 3226 |
2741 | /* 2775 */ MCD::OPC_Decode, 204, 9, 165, 1, // Opcode: CMP_SULE_S_MMR6 |
2742 | /* 2780 */ MCD::OPC_FilterValue, 213, 7, 10, 0, 0, // Skip to: 2796 |
2743 | /* 2786 */ MCD::OPC_CheckPredicate, 26, 179, 1, 0, // Skip to: 3226 |
2744 | /* 2791 */ MCD::OPC_Decode, 202, 9, 166, 1, // Opcode: CMP_SULE_D_MMR6 |
2745 | /* 2796 */ MCD::OPC_FilterValue, 248, 7, 168, 1, 0, // Skip to: 3226 |
2746 | /* 2802 */ MCD::OPC_CheckPredicate, 26, 163, 1, 0, // Skip to: 3226 |
2747 | /* 2807 */ MCD::OPC_Decode, 248, 16, 172, 1, // Opcode: MSUBF_D_MMR6 |
2748 | /* 2812 */ MCD::OPC_FilterValue, 24, 61, 0, 0, // Skip to: 2878 |
2749 | /* 2817 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... |
2750 | /* 2820 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2834 |
2751 | /* 2825 */ MCD::OPC_CheckPredicate, 24, 140, 1, 0, // Skip to: 3226 |
2752 | /* 2830 */ MCD::OPC_Decode, 213, 18, 100, // Opcode: PREF_MMR6 |
2753 | /* 2834 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 2856 |
2754 | /* 2839 */ MCD::OPC_CheckPredicate, 24, 126, 1, 0, // Skip to: 3226 |
2755 | /* 2844 */ MCD::OPC_CheckField, 9, 3, 0, 119, 1, 0, // Skip to: 3226 |
2756 | /* 2851 */ MCD::OPC_Decode, 131, 15, 134, 1, // Opcode: LL_MMR6 |
2757 | /* 2856 */ MCD::OPC_FilterValue, 11, 109, 1, 0, // Skip to: 3226 |
2758 | /* 2861 */ MCD::OPC_CheckPredicate, 24, 104, 1, 0, // Skip to: 3226 |
2759 | /* 2866 */ MCD::OPC_CheckField, 9, 3, 0, 97, 1, 0, // Skip to: 3226 |
2760 | /* 2873 */ MCD::OPC_Decode, 167, 19, 134, 1, // Opcode: SC_MMR6 |
2761 | /* 2878 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 2892 |
2762 | /* 2883 */ MCD::OPC_CheckPredicate, 24, 82, 1, 0, // Skip to: 3226 |
2763 | /* 2888 */ MCD::OPC_Decode, 196, 22, 108, // Opcode: XORI_MMR6 |
2764 | /* 2892 */ MCD::OPC_FilterValue, 29, 27, 0, 0, // Skip to: 2924 |
2765 | /* 2897 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2914 |
2766 | /* 2902 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2914 |
2767 | /* 2909 */ MCD::OPC_Decode, 167, 7, 173, 1, // Opcode: BEQZALC_MMR6 |
2768 | /* 2914 */ MCD::OPC_CheckPredicate, 24, 51, 1, 0, // Skip to: 3226 |
2769 | /* 2919 */ MCD::OPC_Decode, 163, 7, 173, 1, // Opcode: BEQC_MMR6 |
2770 | /* 2924 */ MCD::OPC_FilterValue, 30, 71, 0, 0, // Skip to: 3000 |
2771 | /* 2929 */ MCD::OPC_ExtractField, 19, 2, // Inst{20-19} ... |
2772 | /* 2932 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2947 |
2773 | /* 2937 */ MCD::OPC_CheckPredicate, 24, 28, 1, 0, // Skip to: 3226 |
2774 | /* 2942 */ MCD::OPC_Decode, 250, 5, 174, 1, // Opcode: ADDIUPC_MMR6 |
2775 | /* 2947 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2962 |
2776 | /* 2952 */ MCD::OPC_CheckPredicate, 24, 13, 1, 0, // Skip to: 3226 |
2777 | /* 2957 */ MCD::OPC_Decode, 166, 15, 174, 1, // Opcode: LWPC_MMR6 |
2778 | /* 2962 */ MCD::OPC_FilterValue, 3, 3, 1, 0, // Skip to: 3226 |
2779 | /* 2967 */ MCD::OPC_ExtractField, 16, 3, // Inst{18-16} ... |
2780 | /* 2970 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 2985 |
2781 | /* 2975 */ MCD::OPC_CheckPredicate, 24, 246, 0, 0, // Skip to: 3226 |
2782 | /* 2980 */ MCD::OPC_Decode, 224, 6, 175, 1, // Opcode: AUIPC_MMR6 |
2783 | /* 2985 */ MCD::OPC_FilterValue, 7, 236, 0, 0, // Skip to: 3226 |
2784 | /* 2990 */ MCD::OPC_CheckPredicate, 24, 231, 0, 0, // Skip to: 3226 |
2785 | /* 2995 */ MCD::OPC_Decode, 197, 6, 175, 1, // Opcode: ALUIPC_MMR6 |
2786 | /* 3000 */ MCD::OPC_FilterValue, 31, 27, 0, 0, // Skip to: 3032 |
2787 | /* 3005 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 3022 |
2788 | /* 3010 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 3022 |
2789 | /* 3017 */ MCD::OPC_Decode, 142, 8, 176, 1, // Opcode: BNEZALC_MMR6 |
2790 | /* 3022 */ MCD::OPC_CheckPredicate, 24, 199, 0, 0, // Skip to: 3226 |
2791 | /* 3027 */ MCD::OPC_Decode, 130, 8, 176, 1, // Opcode: BNEC_MMR6 |
2792 | /* 3032 */ MCD::OPC_FilterValue, 32, 26, 0, 0, // Skip to: 3063 |
2793 | /* 3037 */ MCD::OPC_CheckPredicate, 24, 11, 0, 0, // Skip to: 3053 |
2794 | /* 3042 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3053 |
2795 | /* 3049 */ MCD::OPC_Decode, 172, 14, 103, // Opcode: JIALC_MMR6 |
2796 | /* 3053 */ MCD::OPC_CheckPredicate, 24, 168, 0, 0, // Skip to: 3226 |
2797 | /* 3058 */ MCD::OPC_Decode, 172, 7, 177, 1, // Opcode: BEQZC_MMR6 |
2798 | /* 3063 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 3078 |
2799 | /* 3068 */ MCD::OPC_CheckPredicate, 24, 153, 0, 0, // Skip to: 3226 |
2800 | /* 3073 */ MCD::OPC_Decode, 158, 7, 178, 1, // Opcode: BC_MMR6 |
2801 | /* 3078 */ MCD::OPC_FilterValue, 40, 26, 0, 0, // Skip to: 3109 |
2802 | /* 3083 */ MCD::OPC_CheckPredicate, 24, 11, 0, 0, // Skip to: 3099 |
2803 | /* 3088 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3099 |
2804 | /* 3095 */ MCD::OPC_Decode, 175, 14, 103, // Opcode: JIC_MMR6 |
2805 | /* 3099 */ MCD::OPC_CheckPredicate, 24, 122, 0, 0, // Skip to: 3226 |
2806 | /* 3104 */ MCD::OPC_Decode, 147, 8, 177, 1, // Opcode: BNEZC_MMR6 |
2807 | /* 3109 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 3124 |
2808 | /* 3114 */ MCD::OPC_CheckPredicate, 24, 107, 0, 0, // Skip to: 3226 |
2809 | /* 3119 */ MCD::OPC_Decode, 255, 6, 178, 1, // Opcode: BALC_MMR6 |
2810 | /* 3124 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 3139 |
2811 | /* 3129 */ MCD::OPC_CheckPredicate, 24, 92, 0, 0, // Skip to: 3226 |
2812 | /* 3134 */ MCD::OPC_Decode, 179, 7, 179, 1, // Opcode: BGEUC_MMR6 |
2813 | /* 3139 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 3153 |
2814 | /* 3144 */ MCD::OPC_CheckPredicate, 24, 77, 0, 0, // Skip to: 3226 |
2815 | /* 3149 */ MCD::OPC_Decode, 205, 6, 108, // Opcode: ANDI_MMR6 |
2816 | /* 3153 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 3168 |
2817 | /* 3158 */ MCD::OPC_CheckPredicate, 24, 63, 0, 0, // Skip to: 3226 |
2818 | /* 3163 */ MCD::OPC_Decode, 233, 7, 180, 1, // Opcode: BLTC_MMR6 |
2819 | /* 3168 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 3183 |
2820 | /* 3173 */ MCD::OPC_CheckPredicate, 24, 48, 0, 0, // Skip to: 3226 |
2821 | /* 3178 */ MCD::OPC_Decode, 236, 7, 181, 1, // Opcode: BLTUC_MMR6 |
2822 | /* 3183 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 3198 |
2823 | /* 3188 */ MCD::OPC_CheckPredicate, 24, 33, 0, 0, // Skip to: 3226 |
2824 | /* 3193 */ MCD::OPC_Decode, 176, 7, 182, 1, // Opcode: BGEC_MMR6 |
2825 | /* 3198 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 3212 |
2826 | /* 3203 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 3226 |
2827 | /* 3208 */ MCD::OPC_Decode, 212, 21, 98, // Opcode: SW_MMR6 |
2828 | /* 3212 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 3226 |
2829 | /* 3217 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 3226 |
2830 | /* 3222 */ MCD::OPC_Decode, 182, 15, 98, // Opcode: LW_MMR6 |
2831 | /* 3226 */ MCD::OPC_Fail, |
2832 | 0 |
2833 | }; |
2834 | |
2835 | static const uint8_t DecoderTableMicroMipsR6_Ambiguous32[] = { |
2836 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
2837 | /* 3 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 18 |
2838 | /* 8 */ MCD::OPC_CheckPredicate, 24, 84, 0, 0, // Skip to: 97 |
2839 | /* 13 */ MCD::OPC_Decode, 157, 8, 173, 1, // Opcode: BOVC_MMR6 |
2840 | /* 18 */ MCD::OPC_FilterValue, 31, 10, 0, 0, // Skip to: 33 |
2841 | /* 23 */ MCD::OPC_CheckPredicate, 24, 69, 0, 0, // Skip to: 97 |
2842 | /* 28 */ MCD::OPC_Decode, 150, 8, 176, 1, // Opcode: BNVC_MMR6 |
2843 | /* 33 */ MCD::OPC_FilterValue, 48, 27, 0, 0, // Skip to: 65 |
2844 | /* 38 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 55 |
2845 | /* 43 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 55 |
2846 | /* 50 */ MCD::OPC_Decode, 225, 7, 179, 1, // Opcode: BLEZALC_MMR6 |
2847 | /* 55 */ MCD::OPC_CheckPredicate, 24, 37, 0, 0, // Skip to: 97 |
2848 | /* 60 */ MCD::OPC_Decode, 184, 7, 179, 1, // Opcode: BGEZALC_MMR6 |
2849 | /* 65 */ MCD::OPC_FilterValue, 56, 27, 0, 0, // Skip to: 97 |
2850 | /* 70 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 87 |
2851 | /* 75 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 87 |
2852 | /* 82 */ MCD::OPC_Decode, 196, 7, 181, 1, // Opcode: BGTZALC_MMR6 |
2853 | /* 87 */ MCD::OPC_CheckPredicate, 24, 5, 0, 0, // Skip to: 97 |
2854 | /* 92 */ MCD::OPC_Decode, 241, 7, 181, 1, // Opcode: BLTZALC_MMR6 |
2855 | /* 97 */ MCD::OPC_Fail, |
2856 | 0 |
2857 | }; |
2858 | |
2859 | static const uint8_t DecoderTableMips32[] = { |
2860 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
2861 | /* 3 */ MCD::OPC_FilterValue, 0, 101, 4, 0, // Skip to: 1133 |
2862 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
2863 | /* 11 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 79 |
2864 | /* 16 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
2865 | /* 19 */ MCD::OPC_FilterValue, 0, 178, 66, 0, // Skip to: 17098 |
2866 | /* 24 */ MCD::OPC_ExtractField, 6, 15, // Inst{20-6} ... |
2867 | /* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 |
2868 | /* 32 */ MCD::OPC_CheckPredicate, 27, 32, 0, 0, // Skip to: 69 |
2869 | /* 37 */ MCD::OPC_Decode, 239, 20, 10, // Opcode: SSNOP |
2870 | /* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 |
2871 | /* 46 */ MCD::OPC_CheckPredicate, 27, 18, 0, 0, // Skip to: 69 |
2872 | /* 51 */ MCD::OPC_Decode, 137, 12, 10, // Opcode: EHB |
2873 | /* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 |
2874 | /* 60 */ MCD::OPC_CheckPredicate, 28, 4, 0, 0, // Skip to: 69 |
2875 | /* 65 */ MCD::OPC_Decode, 152, 18, 10, // Opcode: PAUSE |
2876 | /* 69 */ MCD::OPC_CheckPredicate, 27, 128, 66, 0, // Skip to: 17098 |
2877 | /* 74 */ MCD::OPC_Decode, 158, 20, 183, 1, // Opcode: SLL |
2878 | /* 79 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 131 |
2879 | /* 84 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
2880 | /* 87 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 109 |
2881 | /* 92 */ MCD::OPC_CheckPredicate, 29, 105, 66, 0, // Skip to: 17098 |
2882 | /* 97 */ MCD::OPC_CheckField, 6, 5, 0, 98, 66, 0, // Skip to: 17098 |
2883 | /* 104 */ MCD::OPC_Decode, 209, 16, 184, 1, // Opcode: MOVF_I |
2884 | /* 109 */ MCD::OPC_FilterValue, 1, 88, 66, 0, // Skip to: 17098 |
2885 | /* 114 */ MCD::OPC_CheckPredicate, 29, 83, 66, 0, // Skip to: 17098 |
2886 | /* 119 */ MCD::OPC_CheckField, 6, 5, 0, 76, 66, 0, // Skip to: 17098 |
2887 | /* 126 */ MCD::OPC_Decode, 229, 16, 184, 1, // Opcode: MOVT_I |
2888 | /* 131 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 169 |
2889 | /* 136 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
2890 | /* 139 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 154 |
2891 | /* 144 */ MCD::OPC_CheckPredicate, 27, 53, 66, 0, // Skip to: 17098 |
2892 | /* 149 */ MCD::OPC_Decode, 217, 20, 183, 1, // Opcode: SRL |
2893 | /* 154 */ MCD::OPC_FilterValue, 1, 43, 66, 0, // Skip to: 17098 |
2894 | /* 159 */ MCD::OPC_CheckPredicate, 28, 38, 66, 0, // Skip to: 17098 |
2895 | /* 164 */ MCD::OPC_Decode, 246, 18, 183, 1, // Opcode: ROTR |
2896 | /* 169 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 191 |
2897 | /* 174 */ MCD::OPC_CheckPredicate, 27, 23, 66, 0, // Skip to: 17098 |
2898 | /* 179 */ MCD::OPC_CheckField, 21, 5, 0, 16, 66, 0, // Skip to: 17098 |
2899 | /* 186 */ MCD::OPC_Decode, 197, 20, 183, 1, // Opcode: SRA |
2900 | /* 191 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 212 |
2901 | /* 196 */ MCD::OPC_CheckPredicate, 27, 1, 66, 0, // Skip to: 17098 |
2902 | /* 201 */ MCD::OPC_CheckField, 6, 5, 0, 250, 65, 0, // Skip to: 17098 |
2903 | /* 208 */ MCD::OPC_Decode, 167, 20, 55, // Opcode: SLLV |
2904 | /* 212 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 234 |
2905 | /* 217 */ MCD::OPC_CheckPredicate, 30, 236, 65, 0, // Skip to: 17098 |
2906 | /* 222 */ MCD::OPC_CheckField, 8, 3, 0, 229, 65, 0, // Skip to: 17098 |
2907 | /* 229 */ MCD::OPC_Decode, 133, 15, 185, 1, // Opcode: LSA |
2908 | /* 234 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 270 |
2909 | /* 239 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2910 | /* 242 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 256 |
2911 | /* 247 */ MCD::OPC_CheckPredicate, 27, 206, 65, 0, // Skip to: 17098 |
2912 | /* 252 */ MCD::OPC_Decode, 232, 20, 55, // Opcode: SRLV |
2913 | /* 256 */ MCD::OPC_FilterValue, 1, 197, 65, 0, // Skip to: 17098 |
2914 | /* 261 */ MCD::OPC_CheckPredicate, 28, 192, 65, 0, // Skip to: 17098 |
2915 | /* 266 */ MCD::OPC_Decode, 247, 18, 55, // Opcode: ROTRV |
2916 | /* 270 */ MCD::OPC_FilterValue, 7, 16, 0, 0, // Skip to: 291 |
2917 | /* 275 */ MCD::OPC_CheckPredicate, 27, 178, 65, 0, // Skip to: 17098 |
2918 | /* 280 */ MCD::OPC_CheckField, 6, 5, 0, 171, 65, 0, // Skip to: 17098 |
2919 | /* 287 */ MCD::OPC_Decode, 210, 20, 55, // Opcode: SRAV |
2920 | /* 291 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 329 |
2921 | /* 296 */ MCD::OPC_ExtractField, 6, 15, // Inst{20-6} ... |
2922 | /* 299 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 314 |
2923 | /* 304 */ MCD::OPC_CheckPredicate, 31, 149, 65, 0, // Skip to: 17098 |
2924 | /* 309 */ MCD::OPC_Decode, 176, 14, 186, 1, // Opcode: JR |
2925 | /* 314 */ MCD::OPC_FilterValue, 16, 139, 65, 0, // Skip to: 17098 |
2926 | /* 319 */ MCD::OPC_CheckPredicate, 32, 134, 65, 0, // Skip to: 17098 |
2927 | /* 324 */ MCD::OPC_Decode, 183, 14, 186, 1, // Opcode: JR_HB |
2928 | /* 329 */ MCD::OPC_FilterValue, 9, 45, 0, 0, // Skip to: 379 |
2929 | /* 334 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2930 | /* 337 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 358 |
2931 | /* 342 */ MCD::OPC_CheckPredicate, 33, 111, 65, 0, // Skip to: 17098 |
2932 | /* 347 */ MCD::OPC_CheckField, 16, 5, 0, 104, 65, 0, // Skip to: 17098 |
2933 | /* 354 */ MCD::OPC_Decode, 155, 14, 25, // Opcode: JALR |
2934 | /* 358 */ MCD::OPC_FilterValue, 16, 95, 65, 0, // Skip to: 17098 |
2935 | /* 363 */ MCD::OPC_CheckPredicate, 34, 90, 65, 0, // Skip to: 17098 |
2936 | /* 368 */ MCD::OPC_CheckField, 16, 5, 0, 83, 65, 0, // Skip to: 17098 |
2937 | /* 375 */ MCD::OPC_Decode, 163, 14, 25, // Opcode: JALR_HB |
2938 | /* 379 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 401 |
2939 | /* 384 */ MCD::OPC_CheckPredicate, 35, 69, 65, 0, // Skip to: 17098 |
2940 | /* 389 */ MCD::OPC_CheckField, 6, 5, 0, 62, 65, 0, // Skip to: 17098 |
2941 | /* 396 */ MCD::OPC_Decode, 241, 16, 187, 1, // Opcode: MOVZ_I_I |
2942 | /* 401 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 423 |
2943 | /* 406 */ MCD::OPC_CheckPredicate, 35, 47, 65, 0, // Skip to: 17098 |
2944 | /* 411 */ MCD::OPC_CheckField, 6, 5, 0, 40, 65, 0, // Skip to: 17098 |
2945 | /* 418 */ MCD::OPC_Decode, 221, 16, 187, 1, // Opcode: MOVN_I_I |
2946 | /* 423 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 438 |
2947 | /* 428 */ MCD::OPC_CheckPredicate, 27, 25, 65, 0, // Skip to: 17098 |
2948 | /* 433 */ MCD::OPC_Decode, 219, 21, 188, 1, // Opcode: SYSCALL |
2949 | /* 438 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 452 |
2950 | /* 443 */ MCD::OPC_CheckPredicate, 27, 10, 65, 0, // Skip to: 17098 |
2951 | /* 448 */ MCD::OPC_Decode, 161, 8, 56, // Opcode: BREAK |
2952 | /* 452 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 467 |
2953 | /* 457 */ MCD::OPC_CheckPredicate, 36, 252, 64, 0, // Skip to: 17098 |
2954 | /* 462 */ MCD::OPC_Decode, 213, 21, 189, 1, // Opcode: SYNC |
2955 | /* 467 */ MCD::OPC_FilterValue, 16, 51, 0, 0, // Skip to: 523 |
2956 | /* 472 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2957 | /* 475 */ MCD::OPC_FilterValue, 0, 234, 64, 0, // Skip to: 17098 |
2958 | /* 480 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
2959 | /* 483 */ MCD::OPC_FilterValue, 0, 226, 64, 0, // Skip to: 17098 |
2960 | /* 488 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... |
2961 | /* 491 */ MCD::OPC_FilterValue, 0, 218, 64, 0, // Skip to: 17098 |
2962 | /* 496 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 513 |
2963 | /* 501 */ MCD::OPC_CheckField, 21, 2, 0, 5, 0, 0, // Skip to: 513 |
2964 | /* 508 */ MCD::OPC_Decode, 146, 16, 190, 1, // Opcode: MFHI |
2965 | /* 513 */ MCD::OPC_CheckPredicate, 37, 196, 64, 0, // Skip to: 17098 |
2966 | /* 518 */ MCD::OPC_Decode, 149, 16, 191, 1, // Opcode: MFHI_DSP |
2967 | /* 523 */ MCD::OPC_FilterValue, 17, 43, 0, 0, // Skip to: 571 |
2968 | /* 528 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2969 | /* 531 */ MCD::OPC_FilterValue, 0, 178, 64, 0, // Skip to: 17098 |
2970 | /* 536 */ MCD::OPC_ExtractField, 13, 8, // Inst{20-13} ... |
2971 | /* 539 */ MCD::OPC_FilterValue, 0, 170, 64, 0, // Skip to: 17098 |
2972 | /* 544 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 561 |
2973 | /* 549 */ MCD::OPC_CheckField, 11, 2, 0, 5, 0, 0, // Skip to: 561 |
2974 | /* 556 */ MCD::OPC_Decode, 162, 17, 186, 1, // Opcode: MTHI |
2975 | /* 561 */ MCD::OPC_CheckPredicate, 37, 148, 64, 0, // Skip to: 17098 |
2976 | /* 566 */ MCD::OPC_Decode, 164, 17, 192, 1, // Opcode: MTHI_DSP |
2977 | /* 571 */ MCD::OPC_FilterValue, 18, 51, 0, 0, // Skip to: 627 |
2978 | /* 576 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2979 | /* 579 */ MCD::OPC_FilterValue, 0, 130, 64, 0, // Skip to: 17098 |
2980 | /* 584 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
2981 | /* 587 */ MCD::OPC_FilterValue, 0, 122, 64, 0, // Skip to: 17098 |
2982 | /* 592 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... |
2983 | /* 595 */ MCD::OPC_FilterValue, 0, 114, 64, 0, // Skip to: 17098 |
2984 | /* 600 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 617 |
2985 | /* 605 */ MCD::OPC_CheckField, 21, 2, 0, 5, 0, 0, // Skip to: 617 |
2986 | /* 612 */ MCD::OPC_Decode, 152, 16, 190, 1, // Opcode: MFLO |
2987 | /* 617 */ MCD::OPC_CheckPredicate, 37, 92, 64, 0, // Skip to: 17098 |
2988 | /* 622 */ MCD::OPC_Decode, 155, 16, 191, 1, // Opcode: MFLO_DSP |
2989 | /* 627 */ MCD::OPC_FilterValue, 19, 43, 0, 0, // Skip to: 675 |
2990 | /* 632 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
2991 | /* 635 */ MCD::OPC_FilterValue, 0, 74, 64, 0, // Skip to: 17098 |
2992 | /* 640 */ MCD::OPC_ExtractField, 13, 8, // Inst{20-13} ... |
2993 | /* 643 */ MCD::OPC_FilterValue, 0, 66, 64, 0, // Skip to: 17098 |
2994 | /* 648 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 665 |
2995 | /* 653 */ MCD::OPC_CheckField, 11, 2, 0, 5, 0, 0, // Skip to: 665 |
2996 | /* 660 */ MCD::OPC_Decode, 169, 17, 186, 1, // Opcode: MTLO |
2997 | /* 665 */ MCD::OPC_CheckPredicate, 37, 44, 64, 0, // Skip to: 17098 |
2998 | /* 670 */ MCD::OPC_Decode, 171, 17, 193, 1, // Opcode: MTLO_DSP |
2999 | /* 675 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 697 |
3000 | /* 680 */ MCD::OPC_CheckPredicate, 38, 29, 64, 0, // Skip to: 17098 |
3001 | /* 685 */ MCD::OPC_CheckField, 8, 3, 0, 22, 64, 0, // Skip to: 17098 |
3002 | /* 692 */ MCD::OPC_Decode, 168, 11, 194, 1, // Opcode: DLSA |
3003 | /* 697 */ MCD::OPC_FilterValue, 24, 42, 0, 0, // Skip to: 744 |
3004 | /* 702 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3005 | /* 705 */ MCD::OPC_FilterValue, 0, 4, 64, 0, // Skip to: 17098 |
3006 | /* 710 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3007 | /* 713 */ MCD::OPC_FilterValue, 0, 252, 63, 0, // Skip to: 17098 |
3008 | /* 718 */ MCD::OPC_CheckPredicate, 31, 11, 0, 0, // Skip to: 734 |
3009 | /* 723 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 734 |
3010 | /* 730 */ MCD::OPC_Decode, 209, 17, 80, // Opcode: MULT |
3011 | /* 734 */ MCD::OPC_CheckPredicate, 37, 231, 63, 0, // Skip to: 17098 |
3012 | /* 739 */ MCD::OPC_Decode, 212, 17, 195, 1, // Opcode: MULT_DSP |
3013 | /* 744 */ MCD::OPC_FilterValue, 25, 42, 0, 0, // Skip to: 791 |
3014 | /* 749 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3015 | /* 752 */ MCD::OPC_FilterValue, 0, 213, 63, 0, // Skip to: 17098 |
3016 | /* 757 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3017 | /* 760 */ MCD::OPC_FilterValue, 0, 205, 63, 0, // Skip to: 17098 |
3018 | /* 765 */ MCD::OPC_CheckPredicate, 31, 11, 0, 0, // Skip to: 781 |
3019 | /* 770 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 781 |
3020 | /* 777 */ MCD::OPC_Decode, 215, 17, 80, // Opcode: MULTu |
3021 | /* 781 */ MCD::OPC_CheckPredicate, 37, 184, 63, 0, // Skip to: 17098 |
3022 | /* 786 */ MCD::OPC_Decode, 210, 17, 195, 1, // Opcode: MULTU_DSP |
3023 | /* 791 */ MCD::OPC_FilterValue, 26, 16, 0, 0, // Skip to: 812 |
3024 | /* 796 */ MCD::OPC_CheckPredicate, 31, 169, 63, 0, // Skip to: 17098 |
3025 | /* 801 */ MCD::OPC_CheckField, 6, 10, 0, 162, 63, 0, // Skip to: 17098 |
3026 | /* 808 */ MCD::OPC_Decode, 185, 19, 80, // Opcode: SDIV |
3027 | /* 812 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 833 |
3028 | /* 817 */ MCD::OPC_CheckPredicate, 31, 148, 63, 0, // Skip to: 17098 |
3029 | /* 822 */ MCD::OPC_CheckField, 6, 10, 0, 141, 63, 0, // Skip to: 17098 |
3030 | /* 829 */ MCD::OPC_Decode, 173, 22, 80, // Opcode: UDIV |
3031 | /* 833 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 854 |
3032 | /* 838 */ MCD::OPC_CheckPredicate, 27, 127, 63, 0, // Skip to: 17098 |
3033 | /* 843 */ MCD::OPC_CheckField, 6, 5, 0, 120, 63, 0, // Skip to: 17098 |
3034 | /* 850 */ MCD::OPC_Decode, 247, 5, 61, // Opcode: ADD |
3035 | /* 854 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 875 |
3036 | /* 859 */ MCD::OPC_CheckPredicate, 27, 106, 63, 0, // Skip to: 17098 |
3037 | /* 864 */ MCD::OPC_CheckField, 6, 5, 0, 99, 63, 0, // Skip to: 17098 |
3038 | /* 871 */ MCD::OPC_Decode, 192, 6, 61, // Opcode: ADDu |
3039 | /* 875 */ MCD::OPC_FilterValue, 34, 16, 0, 0, // Skip to: 896 |
3040 | /* 880 */ MCD::OPC_CheckPredicate, 27, 85, 63, 0, // Skip to: 17098 |
3041 | /* 885 */ MCD::OPC_CheckField, 6, 5, 0, 78, 63, 0, // Skip to: 17098 |
3042 | /* 892 */ MCD::OPC_Decode, 246, 20, 61, // Opcode: SUB |
3043 | /* 896 */ MCD::OPC_FilterValue, 35, 16, 0, 0, // Skip to: 917 |
3044 | /* 901 */ MCD::OPC_CheckPredicate, 27, 64, 63, 0, // Skip to: 17098 |
3045 | /* 906 */ MCD::OPC_CheckField, 6, 5, 0, 57, 63, 0, // Skip to: 17098 |
3046 | /* 913 */ MCD::OPC_Decode, 174, 21, 61, // Opcode: SUBu |
3047 | /* 917 */ MCD::OPC_FilterValue, 36, 16, 0, 0, // Skip to: 938 |
3048 | /* 922 */ MCD::OPC_CheckPredicate, 27, 43, 63, 0, // Skip to: 17098 |
3049 | /* 927 */ MCD::OPC_CheckField, 6, 5, 0, 36, 63, 0, // Skip to: 17098 |
3050 | /* 934 */ MCD::OPC_Decode, 198, 6, 61, // Opcode: AND |
3051 | /* 938 */ MCD::OPC_FilterValue, 37, 16, 0, 0, // Skip to: 959 |
3052 | /* 943 */ MCD::OPC_CheckPredicate, 27, 22, 63, 0, // Skip to: 17098 |
3053 | /* 948 */ MCD::OPC_CheckField, 6, 5, 0, 15, 63, 0, // Skip to: 17098 |
3054 | /* 955 */ MCD::OPC_Decode, 137, 18, 61, // Opcode: OR |
3055 | /* 959 */ MCD::OPC_FilterValue, 38, 16, 0, 0, // Skip to: 980 |
3056 | /* 964 */ MCD::OPC_CheckPredicate, 27, 1, 63, 0, // Skip to: 17098 |
3057 | /* 969 */ MCD::OPC_CheckField, 6, 5, 0, 250, 62, 0, // Skip to: 17098 |
3058 | /* 976 */ MCD::OPC_Decode, 191, 22, 61, // Opcode: XOR |
3059 | /* 980 */ MCD::OPC_FilterValue, 39, 16, 0, 0, // Skip to: 1001 |
3060 | /* 985 */ MCD::OPC_CheckPredicate, 27, 236, 62, 0, // Skip to: 17098 |
3061 | /* 990 */ MCD::OPC_CheckField, 6, 5, 0, 229, 62, 0, // Skip to: 17098 |
3062 | /* 997 */ MCD::OPC_Decode, 255, 17, 61, // Opcode: NOR |
3063 | /* 1001 */ MCD::OPC_FilterValue, 42, 16, 0, 0, // Skip to: 1022 |
3064 | /* 1006 */ MCD::OPC_CheckPredicate, 27, 215, 62, 0, // Skip to: 17098 |
3065 | /* 1011 */ MCD::OPC_CheckField, 6, 5, 0, 208, 62, 0, // Skip to: 17098 |
3066 | /* 1018 */ MCD::OPC_Decode, 175, 20, 61, // Opcode: SLT |
3067 | /* 1022 */ MCD::OPC_FilterValue, 43, 16, 0, 0, // Skip to: 1043 |
3068 | /* 1027 */ MCD::OPC_CheckPredicate, 27, 194, 62, 0, // Skip to: 17098 |
3069 | /* 1032 */ MCD::OPC_CheckField, 6, 5, 0, 187, 62, 0, // Skip to: 17098 |
3070 | /* 1039 */ MCD::OPC_Decode, 184, 20, 61, // Opcode: SLTu |
3071 | /* 1043 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 1058 |
3072 | /* 1048 */ MCD::OPC_CheckPredicate, 36, 173, 62, 0, // Skip to: 17098 |
3073 | /* 1053 */ MCD::OPC_Decode, 246, 21, 196, 1, // Opcode: TGE |
3074 | /* 1058 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 1073 |
3075 | /* 1063 */ MCD::OPC_CheckPredicate, 36, 158, 62, 0, // Skip to: 17098 |
3076 | /* 1068 */ MCD::OPC_Decode, 251, 21, 196, 1, // Opcode: TGEU |
3077 | /* 1073 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 1088 |
3078 | /* 1078 */ MCD::OPC_CheckPredicate, 36, 143, 62, 0, // Skip to: 17098 |
3079 | /* 1083 */ MCD::OPC_Decode, 150, 22, 196, 1, // Opcode: TLT |
3080 | /* 1088 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 1103 |
3081 | /* 1093 */ MCD::OPC_CheckPredicate, 36, 128, 62, 0, // Skip to: 17098 |
3082 | /* 1098 */ MCD::OPC_Decode, 154, 22, 196, 1, // Opcode: TLTU |
3083 | /* 1103 */ MCD::OPC_FilterValue, 52, 10, 0, 0, // Skip to: 1118 |
3084 | /* 1108 */ MCD::OPC_CheckPredicate, 36, 113, 62, 0, // Skip to: 17098 |
3085 | /* 1113 */ MCD::OPC_Decode, 242, 21, 196, 1, // Opcode: TEQ |
3086 | /* 1118 */ MCD::OPC_FilterValue, 54, 103, 62, 0, // Skip to: 17098 |
3087 | /* 1123 */ MCD::OPC_CheckPredicate, 36, 98, 62, 0, // Skip to: 17098 |
3088 | /* 1128 */ MCD::OPC_Decode, 157, 22, 196, 1, // Opcode: TNE |
3089 | /* 1133 */ MCD::OPC_FilterValue, 1, 250, 0, 0, // Skip to: 1388 |
3090 | /* 1138 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
3091 | /* 1141 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1156 |
3092 | /* 1146 */ MCD::OPC_CheckPredicate, 27, 75, 62, 0, // Skip to: 17098 |
3093 | /* 1151 */ MCD::OPC_Decode, 237, 7, 197, 1, // Opcode: BLTZ |
3094 | /* 1156 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1171 |
3095 | /* 1161 */ MCD::OPC_CheckPredicate, 27, 60, 62, 0, // Skip to: 17098 |
3096 | /* 1166 */ MCD::OPC_Decode, 180, 7, 197, 1, // Opcode: BGEZ |
3097 | /* 1171 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1186 |
3098 | /* 1176 */ MCD::OPC_CheckPredicate, 39, 45, 62, 0, // Skip to: 17098 |
3099 | /* 1181 */ MCD::OPC_Decode, 248, 7, 197, 1, // Opcode: BLTZL |
3100 | /* 1186 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1201 |
3101 | /* 1191 */ MCD::OPC_CheckPredicate, 39, 30, 62, 0, // Skip to: 17098 |
3102 | /* 1196 */ MCD::OPC_Decode, 191, 7, 197, 1, // Opcode: BGEZL |
3103 | /* 1201 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1216 |
3104 | /* 1206 */ MCD::OPC_CheckPredicate, 39, 15, 62, 0, // Skip to: 17098 |
3105 | /* 1211 */ MCD::OPC_Decode, 247, 21, 175, 1, // Opcode: TGEI |
3106 | /* 1216 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1231 |
3107 | /* 1221 */ MCD::OPC_CheckPredicate, 39, 0, 62, 0, // Skip to: 17098 |
3108 | /* 1226 */ MCD::OPC_Decode, 248, 21, 175, 1, // Opcode: TGEIU |
3109 | /* 1231 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1246 |
3110 | /* 1236 */ MCD::OPC_CheckPredicate, 39, 241, 61, 0, // Skip to: 17098 |
3111 | /* 1241 */ MCD::OPC_Decode, 151, 22, 175, 1, // Opcode: TLTI |
3112 | /* 1246 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1261 |
3113 | /* 1251 */ MCD::OPC_CheckPredicate, 39, 226, 61, 0, // Skip to: 17098 |
3114 | /* 1256 */ MCD::OPC_Decode, 172, 22, 175, 1, // Opcode: TTLTIU |
3115 | /* 1261 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1276 |
3116 | /* 1266 */ MCD::OPC_CheckPredicate, 39, 211, 61, 0, // Skip to: 17098 |
3117 | /* 1271 */ MCD::OPC_Decode, 243, 21, 175, 1, // Opcode: TEQI |
3118 | /* 1276 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1291 |
3119 | /* 1281 */ MCD::OPC_CheckPredicate, 39, 196, 61, 0, // Skip to: 17098 |
3120 | /* 1286 */ MCD::OPC_Decode, 158, 22, 175, 1, // Opcode: TNEI |
3121 | /* 1291 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 1306 |
3122 | /* 1296 */ MCD::OPC_CheckPredicate, 31, 181, 61, 0, // Skip to: 17098 |
3123 | /* 1301 */ MCD::OPC_Decode, 239, 7, 197, 1, // Opcode: BLTZAL |
3124 | /* 1306 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 1321 |
3125 | /* 1311 */ MCD::OPC_CheckPredicate, 31, 166, 61, 0, // Skip to: 17098 |
3126 | /* 1316 */ MCD::OPC_Decode, 182, 7, 197, 1, // Opcode: BGEZAL |
3127 | /* 1321 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 1336 |
3128 | /* 1326 */ MCD::OPC_CheckPredicate, 39, 151, 61, 0, // Skip to: 17098 |
3129 | /* 1331 */ MCD::OPC_Decode, 242, 7, 197, 1, // Opcode: BLTZALL |
3130 | /* 1336 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 1351 |
3131 | /* 1341 */ MCD::OPC_CheckPredicate, 39, 136, 61, 0, // Skip to: 17098 |
3132 | /* 1346 */ MCD::OPC_Decode, 185, 7, 197, 1, // Opcode: BGEZALL |
3133 | /* 1351 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 1373 |
3134 | /* 1356 */ MCD::OPC_CheckPredicate, 40, 121, 61, 0, // Skip to: 17098 |
3135 | /* 1361 */ MCD::OPC_CheckField, 21, 5, 0, 114, 61, 0, // Skip to: 17098 |
3136 | /* 1368 */ MCD::OPC_Decode, 158, 8, 198, 1, // Opcode: BPOSGE32 |
3137 | /* 1373 */ MCD::OPC_FilterValue, 31, 104, 61, 0, // Skip to: 17098 |
3138 | /* 1378 */ MCD::OPC_CheckPredicate, 28, 99, 61, 0, // Skip to: 17098 |
3139 | /* 1383 */ MCD::OPC_Decode, 214, 21, 199, 1, // Opcode: SYNCI |
3140 | /* 1388 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1403 |
3141 | /* 1393 */ MCD::OPC_CheckPredicate, 27, 84, 61, 0, // Skip to: 17098 |
3142 | /* 1398 */ MCD::OPC_Decode, 153, 14, 200, 1, // Opcode: J |
3143 | /* 1403 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1418 |
3144 | /* 1408 */ MCD::OPC_CheckPredicate, 27, 69, 61, 0, // Skip to: 17098 |
3145 | /* 1413 */ MCD::OPC_Decode, 154, 14, 200, 1, // Opcode: JAL |
3146 | /* 1418 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1433 |
3147 | /* 1423 */ MCD::OPC_CheckPredicate, 27, 54, 61, 0, // Skip to: 17098 |
3148 | /* 1428 */ MCD::OPC_Decode, 159, 7, 201, 1, // Opcode: BEQ |
3149 | /* 1433 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1448 |
3150 | /* 1438 */ MCD::OPC_CheckPredicate, 27, 39, 61, 0, // Skip to: 17098 |
3151 | /* 1443 */ MCD::OPC_Decode, 254, 7, 201, 1, // Opcode: BNE |
3152 | /* 1448 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 1470 |
3153 | /* 1453 */ MCD::OPC_CheckPredicate, 27, 24, 61, 0, // Skip to: 17098 |
3154 | /* 1458 */ MCD::OPC_CheckField, 16, 5, 0, 17, 61, 0, // Skip to: 17098 |
3155 | /* 1465 */ MCD::OPC_Decode, 222, 7, 197, 1, // Opcode: BLEZ |
3156 | /* 1470 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 1492 |
3157 | /* 1475 */ MCD::OPC_CheckPredicate, 27, 2, 61, 0, // Skip to: 17098 |
3158 | /* 1480 */ MCD::OPC_CheckField, 16, 5, 0, 251, 60, 0, // Skip to: 17098 |
3159 | /* 1487 */ MCD::OPC_Decode, 193, 7, 197, 1, // Opcode: BGTZ |
3160 | /* 1492 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1507 |
3161 | /* 1497 */ MCD::OPC_CheckPredicate, 31, 236, 60, 0, // Skip to: 17098 |
3162 | /* 1502 */ MCD::OPC_Decode, 188, 6, 202, 1, // Opcode: ADDi |
3163 | /* 1507 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1522 |
3164 | /* 1512 */ MCD::OPC_CheckPredicate, 27, 221, 60, 0, // Skip to: 17098 |
3165 | /* 1517 */ MCD::OPC_Decode, 190, 6, 202, 1, // Opcode: ADDiu |
3166 | /* 1522 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1537 |
3167 | /* 1527 */ MCD::OPC_CheckPredicate, 27, 206, 60, 0, // Skip to: 17098 |
3168 | /* 1532 */ MCD::OPC_Decode, 178, 20, 202, 1, // Opcode: SLTi |
3169 | /* 1537 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1552 |
3170 | /* 1542 */ MCD::OPC_CheckPredicate, 27, 191, 60, 0, // Skip to: 17098 |
3171 | /* 1547 */ MCD::OPC_Decode, 181, 20, 202, 1, // Opcode: SLTiu |
3172 | /* 1552 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1567 |
3173 | /* 1557 */ MCD::OPC_CheckPredicate, 27, 176, 60, 0, // Skip to: 17098 |
3174 | /* 1562 */ MCD::OPC_Decode, 209, 6, 203, 1, // Opcode: ANDi |
3175 | /* 1567 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1582 |
3176 | /* 1572 */ MCD::OPC_CheckPredicate, 27, 161, 60, 0, // Skip to: 17098 |
3177 | /* 1577 */ MCD::OPC_Decode, 146, 18, 203, 1, // Opcode: ORi |
3178 | /* 1582 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1597 |
3179 | /* 1587 */ MCD::OPC_CheckPredicate, 27, 146, 60, 0, // Skip to: 17098 |
3180 | /* 1592 */ MCD::OPC_Decode, 200, 22, 203, 1, // Opcode: XORi |
3181 | /* 1597 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 1618 |
3182 | /* 1602 */ MCD::OPC_CheckPredicate, 27, 131, 60, 0, // Skip to: 17098 |
3183 | /* 1607 */ MCD::OPC_CheckField, 21, 5, 0, 124, 60, 0, // Skip to: 17098 |
3184 | /* 1614 */ MCD::OPC_Decode, 140, 15, 103, // Opcode: LUi |
3185 | /* 1618 */ MCD::OPC_FilterValue, 16, 187, 2, 0, // Skip to: 2322 |
3186 | /* 1623 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... |
3187 | /* 1626 */ MCD::OPC_FilterValue, 0, 190, 1, 0, // Skip to: 2077 |
3188 | /* 1631 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
3189 | /* 1634 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1656 |
3190 | /* 1639 */ MCD::OPC_CheckPredicate, 27, 94, 60, 0, // Skip to: 17098 |
3191 | /* 1644 */ MCD::OPC_CheckField, 4, 7, 0, 87, 60, 0, // Skip to: 17098 |
3192 | /* 1651 */ MCD::OPC_Decode, 128, 16, 204, 1, // Opcode: MFC0 |
3193 | /* 1656 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 1724 |
3194 | /* 1661 */ MCD::OPC_ExtractField, 4, 7, // Inst{10-4} ... |
3195 | /* 1664 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1679 |
3196 | /* 1669 */ MCD::OPC_CheckPredicate, 41, 64, 60, 0, // Skip to: 17098 |
3197 | /* 1674 */ MCD::OPC_Decode, 136, 16, 204, 1, // Opcode: MFGC0 |
3198 | /* 1679 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 1694 |
3199 | /* 1684 */ MCD::OPC_CheckPredicate, 41, 49, 60, 0, // Skip to: 17098 |
3200 | /* 1689 */ MCD::OPC_Decode, 152, 17, 205, 1, // Opcode: MTGC0 |
3201 | /* 1694 */ MCD::OPC_FilterValue, 64, 10, 0, 0, // Skip to: 1709 |
3202 | /* 1699 */ MCD::OPC_CheckPredicate, 41, 34, 60, 0, // Skip to: 17098 |
3203 | /* 1704 */ MCD::OPC_Decode, 144, 16, 204, 1, // Opcode: MFHGC0 |
3204 | /* 1709 */ MCD::OPC_FilterValue, 96, 24, 60, 0, // Skip to: 17098 |
3205 | /* 1714 */ MCD::OPC_CheckPredicate, 41, 19, 60, 0, // Skip to: 17098 |
3206 | /* 1719 */ MCD::OPC_Decode, 160, 17, 205, 1, // Opcode: MTHGC0 |
3207 | /* 1724 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 1746 |
3208 | /* 1729 */ MCD::OPC_CheckPredicate, 27, 4, 60, 0, // Skip to: 17098 |
3209 | /* 1734 */ MCD::OPC_CheckField, 4, 7, 0, 253, 59, 0, // Skip to: 17098 |
3210 | /* 1741 */ MCD::OPC_Decode, 143, 17, 205, 1, // Opcode: MTC0 |
3211 | /* 1746 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 1768 |
3212 | /* 1751 */ MCD::OPC_CheckPredicate, 42, 238, 59, 0, // Skip to: 17098 |
3213 | /* 1756 */ MCD::OPC_CheckField, 6, 5, 0, 231, 59, 0, // Skip to: 17098 |
3214 | /* 1763 */ MCD::OPC_Decode, 158, 16, 206, 1, // Opcode: MFTR |
3215 | /* 1768 */ MCD::OPC_FilterValue, 11, 133, 0, 0, // Skip to: 1906 |
3216 | /* 1773 */ MCD::OPC_ExtractField, 4, 12, // Inst{15-4} ... |
3217 | /* 1776 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1797 |
3218 | /* 1781 */ MCD::OPC_CheckPredicate, 42, 208, 59, 0, // Skip to: 17098 |
3219 | /* 1786 */ MCD::OPC_CheckField, 0, 3, 1, 201, 59, 0, // Skip to: 17098 |
3220 | /* 1793 */ MCD::OPC_Decode, 133, 12, 92, // Opcode: DVPE |
3221 | /* 1797 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 1818 |
3222 | /* 1802 */ MCD::OPC_CheckPredicate, 42, 187, 59, 0, // Skip to: 17098 |
3223 | /* 1807 */ MCD::OPC_CheckField, 0, 3, 1, 180, 59, 0, // Skip to: 17098 |
3224 | /* 1814 */ MCD::OPC_Decode, 150, 12, 92, // Opcode: EVPE |
3225 | /* 1818 */ MCD::OPC_FilterValue, 188, 1, 16, 0, 0, // Skip to: 1840 |
3226 | /* 1824 */ MCD::OPC_CheckPredicate, 42, 165, 59, 0, // Skip to: 17098 |
3227 | /* 1829 */ MCD::OPC_CheckField, 0, 3, 1, 158, 59, 0, // Skip to: 17098 |
3228 | /* 1836 */ MCD::OPC_Decode, 177, 11, 92, // Opcode: DMT |
3229 | /* 1840 */ MCD::OPC_FilterValue, 190, 1, 16, 0, 0, // Skip to: 1862 |
3230 | /* 1846 */ MCD::OPC_CheckPredicate, 42, 143, 59, 0, // Skip to: 17098 |
3231 | /* 1851 */ MCD::OPC_CheckField, 0, 3, 1, 136, 59, 0, // Skip to: 17098 |
3232 | /* 1858 */ MCD::OPC_Decode, 143, 12, 92, // Opcode: EMT |
3233 | /* 1862 */ MCD::OPC_FilterValue, 128, 12, 16, 0, 0, // Skip to: 1884 |
3234 | /* 1868 */ MCD::OPC_CheckPredicate, 28, 121, 59, 0, // Skip to: 17098 |
3235 | /* 1873 */ MCD::OPC_CheckField, 0, 3, 0, 114, 59, 0, // Skip to: 17098 |
3236 | /* 1880 */ MCD::OPC_Decode, 150, 11, 92, // Opcode: DI |
3237 | /* 1884 */ MCD::OPC_FilterValue, 130, 12, 104, 59, 0, // Skip to: 17098 |
3238 | /* 1890 */ MCD::OPC_CheckPredicate, 28, 99, 59, 0, // Skip to: 17098 |
3239 | /* 1895 */ MCD::OPC_CheckField, 0, 3, 0, 92, 59, 0, // Skip to: 17098 |
3240 | /* 1902 */ MCD::OPC_Decode, 140, 12, 92, // Opcode: EI |
3241 | /* 1906 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 1928 |
3242 | /* 1911 */ MCD::OPC_CheckPredicate, 42, 78, 59, 0, // Skip to: 17098 |
3243 | /* 1916 */ MCD::OPC_CheckField, 6, 5, 0, 71, 59, 0, // Skip to: 17098 |
3244 | /* 1923 */ MCD::OPC_Decode, 180, 17, 206, 1, // Opcode: MTTR |
3245 | /* 1928 */ MCD::OPC_FilterValue, 16, 61, 59, 0, // Skip to: 17098 |
3246 | /* 1933 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... |
3247 | /* 1936 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1972 |
3248 | /* 1941 */ MCD::OPC_ExtractField, 4, 17, // Inst{20-4} ... |
3249 | /* 1944 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1958 |
3250 | /* 1949 */ MCD::OPC_CheckPredicate, 41, 40, 59, 0, // Skip to: 17098 |
3251 | /* 1954 */ MCD::OPC_Decode, 130, 22, 10, // Opcode: TLBGP |
3252 | /* 1958 */ MCD::OPC_FilterValue, 2, 31, 59, 0, // Skip to: 17098 |
3253 | /* 1963 */ MCD::OPC_CheckPredicate, 43, 26, 59, 0, // Skip to: 17098 |
3254 | /* 1968 */ MCD::OPC_Decode, 182, 22, 10, // Opcode: WAIT |
3255 | /* 1972 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 1993 |
3256 | /* 1977 */ MCD::OPC_CheckPredicate, 27, 12, 59, 0, // Skip to: 17098 |
3257 | /* 1982 */ MCD::OPC_CheckField, 4, 17, 0, 5, 59, 0, // Skip to: 17098 |
3258 | /* 1989 */ MCD::OPC_Decode, 144, 22, 10, // Opcode: TLBR |
3259 | /* 1993 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2014 |
3260 | /* 1998 */ MCD::OPC_CheckPredicate, 27, 247, 58, 0, // Skip to: 17098 |
3261 | /* 2003 */ MCD::OPC_CheckField, 4, 17, 0, 240, 58, 0, // Skip to: 17098 |
3262 | /* 2010 */ MCD::OPC_Decode, 146, 22, 10, // Opcode: TLBWI |
3263 | /* 2014 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 2035 |
3264 | /* 2019 */ MCD::OPC_CheckPredicate, 44, 226, 58, 0, // Skip to: 17098 |
3265 | /* 2024 */ MCD::OPC_CheckField, 4, 17, 0, 219, 58, 0, // Skip to: 17098 |
3266 | /* 2031 */ MCD::OPC_Decode, 138, 22, 10, // Opcode: TLBINV |
3267 | /* 2035 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 2056 |
3268 | /* 2040 */ MCD::OPC_CheckPredicate, 44, 205, 58, 0, // Skip to: 17098 |
3269 | /* 2045 */ MCD::OPC_CheckField, 4, 17, 0, 198, 58, 0, // Skip to: 17098 |
3270 | /* 2052 */ MCD::OPC_Decode, 139, 22, 10, // Opcode: TLBINVF |
3271 | /* 2056 */ MCD::OPC_FilterValue, 6, 189, 58, 0, // Skip to: 17098 |
3272 | /* 2061 */ MCD::OPC_CheckPredicate, 27, 184, 58, 0, // Skip to: 17098 |
3273 | /* 2066 */ MCD::OPC_CheckField, 4, 17, 0, 177, 58, 0, // Skip to: 17098 |
3274 | /* 2073 */ MCD::OPC_Decode, 148, 22, 10, // Opcode: TLBWR |
3275 | /* 2077 */ MCD::OPC_FilterValue, 1, 168, 58, 0, // Skip to: 17098 |
3276 | /* 2082 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... |
3277 | /* 2085 */ MCD::OPC_FilterValue, 0, 88, 0, 0, // Skip to: 2178 |
3278 | /* 2090 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... |
3279 | /* 2093 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 2116 |
3280 | /* 2098 */ MCD::OPC_CheckPredicate, 27, 147, 58, 0, // Skip to: 17098 |
3281 | /* 2103 */ MCD::OPC_CheckField, 6, 20, 128, 128, 32, 138, 58, 0, // Skip to: 17098 |
3282 | /* 2112 */ MCD::OPC_Decode, 142, 22, 10, // Opcode: TLBP |
3283 | /* 2116 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 2156 |
3284 | /* 2121 */ MCD::OPC_ExtractField, 6, 20, // Inst{25-6} ... |
3285 | /* 2124 */ MCD::OPC_FilterValue, 128, 128, 32, 9, 0, 0, // Skip to: 2140 |
3286 | /* 2131 */ MCD::OPC_CheckPredicate, 43, 114, 58, 0, // Skip to: 17098 |
3287 | /* 2136 */ MCD::OPC_Decode, 144, 12, 10, // Opcode: ERET |
3288 | /* 2140 */ MCD::OPC_FilterValue, 129, 128, 32, 103, 58, 0, // Skip to: 17098 |
3289 | /* 2147 */ MCD::OPC_CheckPredicate, 45, 98, 58, 0, // Skip to: 17098 |
3290 | /* 2152 */ MCD::OPC_Decode, 145, 12, 10, // Opcode: ERETNC |
3291 | /* 2156 */ MCD::OPC_FilterValue, 2, 89, 58, 0, // Skip to: 17098 |
3292 | /* 2161 */ MCD::OPC_CheckPredicate, 41, 84, 58, 0, // Skip to: 17098 |
3293 | /* 2166 */ MCD::OPC_CheckField, 25, 1, 1, 77, 58, 0, // Skip to: 17098 |
3294 | /* 2173 */ MCD::OPC_Decode, 250, 13, 207, 1, // Opcode: HYPCALL |
3295 | /* 2178 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 2202 |
3296 | /* 2183 */ MCD::OPC_CheckPredicate, 41, 62, 58, 0, // Skip to: 17098 |
3297 | /* 2188 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 52, 58, 0, // Skip to: 17098 |
3298 | /* 2198 */ MCD::OPC_Decode, 132, 22, 10, // Opcode: TLBGR |
3299 | /* 2202 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2226 |
3300 | /* 2207 */ MCD::OPC_CheckPredicate, 41, 38, 58, 0, // Skip to: 17098 |
3301 | /* 2212 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 28, 58, 0, // Skip to: 17098 |
3302 | /* 2222 */ MCD::OPC_Decode, 134, 22, 10, // Opcode: TLBGWI |
3303 | /* 2226 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2250 |
3304 | /* 2231 */ MCD::OPC_CheckPredicate, 41, 14, 58, 0, // Skip to: 17098 |
3305 | /* 2236 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 4, 58, 0, // Skip to: 17098 |
3306 | /* 2246 */ MCD::OPC_Decode, 254, 21, 10, // Opcode: TLBGINV |
3307 | /* 2250 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2274 |
3308 | /* 2255 */ MCD::OPC_CheckPredicate, 41, 246, 57, 0, // Skip to: 17098 |
3309 | /* 2260 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 236, 57, 0, // Skip to: 17098 |
3310 | /* 2270 */ MCD::OPC_Decode, 255, 21, 10, // Opcode: TLBGINVF |
3311 | /* 2274 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2298 |
3312 | /* 2279 */ MCD::OPC_CheckPredicate, 41, 222, 57, 0, // Skip to: 17098 |
3313 | /* 2284 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 212, 57, 0, // Skip to: 17098 |
3314 | /* 2294 */ MCD::OPC_Decode, 136, 22, 10, // Opcode: TLBGWR |
3315 | /* 2298 */ MCD::OPC_FilterValue, 7, 203, 57, 0, // Skip to: 17098 |
3316 | /* 2303 */ MCD::OPC_CheckPredicate, 46, 198, 57, 0, // Skip to: 17098 |
3317 | /* 2308 */ MCD::OPC_CheckField, 4, 22, 129, 128, 128, 1, 188, 57, 0, // Skip to: 17098 |
3318 | /* 2318 */ MCD::OPC_Decode, 143, 11, 10, // Opcode: DERET |
3319 | /* 2322 */ MCD::OPC_FilterValue, 17, 205, 7, 0, // Skip to: 4324 |
3320 | /* 2327 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
3321 | /* 2330 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2352 |
3322 | /* 2335 */ MCD::OPC_CheckPredicate, 47, 166, 57, 0, // Skip to: 17098 |
3323 | /* 2340 */ MCD::OPC_CheckField, 0, 11, 0, 159, 57, 0, // Skip to: 17098 |
3324 | /* 2347 */ MCD::OPC_Decode, 130, 16, 208, 1, // Opcode: MFC1 |
3325 | /* 2352 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 2374 |
3326 | /* 2357 */ MCD::OPC_CheckPredicate, 48, 144, 57, 0, // Skip to: 17098 |
3327 | /* 2362 */ MCD::OPC_CheckField, 0, 11, 0, 137, 57, 0, // Skip to: 17098 |
3328 | /* 2369 */ MCD::OPC_Decode, 171, 11, 209, 1, // Opcode: DMFC1 |
3329 | /* 2374 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 2396 |
3330 | /* 2379 */ MCD::OPC_CheckPredicate, 47, 122, 57, 0, // Skip to: 17098 |
3331 | /* 2384 */ MCD::OPC_CheckField, 0, 11, 0, 115, 57, 0, // Skip to: 17098 |
3332 | /* 2391 */ MCD::OPC_Decode, 217, 8, 210, 1, // Opcode: CFC1 |
3333 | /* 2396 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 2418 |
3334 | /* 2401 */ MCD::OPC_CheckPredicate, 49, 100, 57, 0, // Skip to: 17098 |
3335 | /* 2406 */ MCD::OPC_CheckField, 0, 11, 0, 93, 57, 0, // Skip to: 17098 |
3336 | /* 2413 */ MCD::OPC_Decode, 139, 16, 211, 1, // Opcode: MFHC1_D32 |
3337 | /* 2418 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 2440 |
3338 | /* 2423 */ MCD::OPC_CheckPredicate, 47, 78, 57, 0, // Skip to: 17098 |
3339 | /* 2428 */ MCD::OPC_CheckField, 0, 11, 0, 71, 57, 0, // Skip to: 17098 |
3340 | /* 2435 */ MCD::OPC_Decode, 145, 17, 212, 1, // Opcode: MTC1 |
3341 | /* 2440 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 2462 |
3342 | /* 2445 */ MCD::OPC_CheckPredicate, 48, 56, 57, 0, // Skip to: 17098 |
3343 | /* 2450 */ MCD::OPC_CheckField, 0, 11, 0, 49, 57, 0, // Skip to: 17098 |
3344 | /* 2457 */ MCD::OPC_Decode, 179, 11, 213, 1, // Opcode: DMTC1 |
3345 | /* 2462 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 2484 |
3346 | /* 2467 */ MCD::OPC_CheckPredicate, 47, 34, 57, 0, // Skip to: 17098 |
3347 | /* 2472 */ MCD::OPC_CheckField, 0, 11, 0, 27, 57, 0, // Skip to: 17098 |
3348 | /* 2479 */ MCD::OPC_Decode, 244, 9, 214, 1, // Opcode: CTC1 |
3349 | /* 2484 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 2506 |
3350 | /* 2489 */ MCD::OPC_CheckPredicate, 49, 12, 57, 0, // Skip to: 17098 |
3351 | /* 2494 */ MCD::OPC_CheckField, 0, 11, 0, 5, 57, 0, // Skip to: 17098 |
3352 | /* 2501 */ MCD::OPC_Decode, 155, 17, 215, 1, // Opcode: MTHC1_D32 |
3353 | /* 2506 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 2574 |
3354 | /* 2511 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
3355 | /* 2514 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2529 |
3356 | /* 2519 */ MCD::OPC_CheckPredicate, 50, 238, 56, 0, // Skip to: 17098 |
3357 | /* 2524 */ MCD::OPC_Decode, 138, 7, 216, 1, // Opcode: BC1F |
3358 | /* 2529 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2544 |
3359 | /* 2534 */ MCD::OPC_CheckPredicate, 50, 223, 56, 0, // Skip to: 17098 |
3360 | /* 2539 */ MCD::OPC_Decode, 143, 7, 216, 1, // Opcode: BC1T |
3361 | /* 2544 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2559 |
3362 | /* 2549 */ MCD::OPC_CheckPredicate, 51, 208, 56, 0, // Skip to: 17098 |
3363 | /* 2554 */ MCD::OPC_Decode, 139, 7, 216, 1, // Opcode: BC1FL |
3364 | /* 2559 */ MCD::OPC_FilterValue, 3, 198, 56, 0, // Skip to: 17098 |
3365 | /* 2564 */ MCD::OPC_CheckPredicate, 51, 193, 56, 0, // Skip to: 17098 |
3366 | /* 2569 */ MCD::OPC_Decode, 144, 7, 216, 1, // Opcode: BC1TL |
3367 | /* 2574 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 2589 |
3368 | /* 2579 */ MCD::OPC_CheckPredicate, 30, 178, 56, 0, // Skip to: 17098 |
3369 | /* 2584 */ MCD::OPC_Decode, 179, 8, 217, 1, // Opcode: BZ_V |
3370 | /* 2589 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2604 |
3371 | /* 2594 */ MCD::OPC_CheckPredicate, 30, 163, 56, 0, // Skip to: 17098 |
3372 | /* 2599 */ MCD::OPC_Decode, 154, 8, 217, 1, // Opcode: BNZ_V |
3373 | /* 2604 */ MCD::OPC_FilterValue, 16, 1, 3, 0, // Skip to: 3378 |
3374 | /* 2609 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3375 | /* 2612 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2627 |
3376 | /* 2617 */ MCD::OPC_CheckPredicate, 47, 140, 56, 0, // Skip to: 17098 |
3377 | /* 2622 */ MCD::OPC_Decode, 193, 12, 218, 1, // Opcode: FADD_S |
3378 | /* 2627 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2642 |
3379 | /* 2632 */ MCD::OPC_CheckPredicate, 47, 125, 56, 0, // Skip to: 17098 |
3380 | /* 2637 */ MCD::OPC_Decode, 210, 13, 218, 1, // Opcode: FSUB_S |
3381 | /* 2642 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2657 |
3382 | /* 2647 */ MCD::OPC_CheckPredicate, 47, 110, 56, 0, // Skip to: 17098 |
3383 | /* 2652 */ MCD::OPC_Decode, 166, 13, 218, 1, // Opcode: FMUL_S |
3384 | /* 2657 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2672 |
3385 | /* 2662 */ MCD::OPC_CheckPredicate, 47, 95, 56, 0, // Skip to: 17098 |
3386 | /* 2667 */ MCD::OPC_Decode, 231, 12, 218, 1, // Opcode: FDIV_S |
3387 | /* 2672 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 2694 |
3388 | /* 2677 */ MCD::OPC_CheckPredicate, 52, 80, 56, 0, // Skip to: 17098 |
3389 | /* 2682 */ MCD::OPC_CheckField, 16, 5, 0, 73, 56, 0, // Skip to: 17098 |
3390 | /* 2689 */ MCD::OPC_Decode, 201, 13, 219, 1, // Opcode: FSQRT_S |
3391 | /* 2694 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 2716 |
3392 | /* 2699 */ MCD::OPC_CheckPredicate, 47, 58, 56, 0, // Skip to: 17098 |
3393 | /* 2704 */ MCD::OPC_CheckField, 16, 5, 0, 51, 56, 0, // Skip to: 17098 |
3394 | /* 2711 */ MCD::OPC_Decode, 185, 12, 219, 1, // Opcode: FABS_S |
3395 | /* 2716 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 2738 |
3396 | /* 2721 */ MCD::OPC_CheckPredicate, 47, 36, 56, 0, // Skip to: 17098 |
3397 | /* 2726 */ MCD::OPC_CheckField, 16, 5, 0, 29, 56, 0, // Skip to: 17098 |
3398 | /* 2733 */ MCD::OPC_Decode, 155, 13, 219, 1, // Opcode: FMOV_S |
3399 | /* 2738 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 2760 |
3400 | /* 2743 */ MCD::OPC_CheckPredicate, 53, 14, 56, 0, // Skip to: 17098 |
3401 | /* 2748 */ MCD::OPC_CheckField, 16, 5, 0, 7, 56, 0, // Skip to: 17098 |
3402 | /* 2755 */ MCD::OPC_Decode, 174, 13, 219, 1, // Opcode: FNEG_S |
3403 | /* 2760 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 2782 |
3404 | /* 2765 */ MCD::OPC_CheckPredicate, 52, 248, 55, 0, // Skip to: 17098 |
3405 | /* 2770 */ MCD::OPC_CheckField, 16, 5, 0, 241, 55, 0, // Skip to: 17098 |
3406 | /* 2777 */ MCD::OPC_Decode, 130, 19, 219, 1, // Opcode: ROUND_W_S |
3407 | /* 2782 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 2804 |
3408 | /* 2787 */ MCD::OPC_CheckPredicate, 52, 226, 55, 0, // Skip to: 17098 |
3409 | /* 2792 */ MCD::OPC_CheckField, 16, 5, 0, 219, 55, 0, // Skip to: 17098 |
3410 | /* 2799 */ MCD::OPC_Decode, 169, 22, 219, 1, // Opcode: TRUNC_W_S |
3411 | /* 2804 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 2826 |
3412 | /* 2809 */ MCD::OPC_CheckPredicate, 52, 204, 55, 0, // Skip to: 17098 |
3413 | /* 2814 */ MCD::OPC_CheckField, 16, 5, 0, 197, 55, 0, // Skip to: 17098 |
3414 | /* 2821 */ MCD::OPC_Decode, 206, 8, 219, 1, // Opcode: CEIL_W_S |
3415 | /* 2826 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2848 |
3416 | /* 2831 */ MCD::OPC_CheckPredicate, 52, 182, 55, 0, // Skip to: 17098 |
3417 | /* 2836 */ MCD::OPC_CheckField, 16, 5, 0, 175, 55, 0, // Skip to: 17098 |
3418 | /* 2843 */ MCD::OPC_Decode, 137, 13, 219, 1, // Opcode: FLOOR_W_S |
3419 | /* 2848 */ MCD::OPC_FilterValue, 17, 33, 0, 0, // Skip to: 2886 |
3420 | /* 2853 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
3421 | /* 2856 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2871 |
3422 | /* 2861 */ MCD::OPC_CheckPredicate, 29, 152, 55, 0, // Skip to: 17098 |
3423 | /* 2866 */ MCD::OPC_Decode, 212, 16, 220, 1, // Opcode: MOVF_S |
3424 | /* 2871 */ MCD::OPC_FilterValue, 1, 142, 55, 0, // Skip to: 17098 |
3425 | /* 2876 */ MCD::OPC_CheckPredicate, 29, 137, 55, 0, // Skip to: 17098 |
3426 | /* 2881 */ MCD::OPC_Decode, 232, 16, 220, 1, // Opcode: MOVT_S |
3427 | /* 2886 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 2901 |
3428 | /* 2891 */ MCD::OPC_CheckPredicate, 29, 122, 55, 0, // Skip to: 17098 |
3429 | /* 2896 */ MCD::OPC_Decode, 244, 16, 221, 1, // Opcode: MOVZ_I_S |
3430 | /* 2901 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 2916 |
3431 | /* 2906 */ MCD::OPC_CheckPredicate, 29, 107, 55, 0, // Skip to: 17098 |
3432 | /* 2911 */ MCD::OPC_Decode, 224, 16, 221, 1, // Opcode: MOVN_I_S |
3433 | /* 2916 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 2938 |
3434 | /* 2921 */ MCD::OPC_CheckPredicate, 54, 92, 55, 0, // Skip to: 17098 |
3435 | /* 2926 */ MCD::OPC_CheckField, 16, 5, 0, 85, 55, 0, // Skip to: 17098 |
3436 | /* 2933 */ MCD::OPC_Decode, 232, 18, 219, 1, // Opcode: RECIP_S |
3437 | /* 2938 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 2960 |
3438 | /* 2943 */ MCD::OPC_CheckPredicate, 54, 70, 55, 0, // Skip to: 17098 |
3439 | /* 2948 */ MCD::OPC_CheckField, 16, 5, 0, 63, 55, 0, // Skip to: 17098 |
3440 | /* 2955 */ MCD::OPC_Decode, 137, 19, 219, 1, // Opcode: RSQRT_S |
3441 | /* 2960 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 2982 |
3442 | /* 2965 */ MCD::OPC_CheckPredicate, 55, 48, 55, 0, // Skip to: 17098 |
3443 | /* 2970 */ MCD::OPC_CheckField, 16, 5, 0, 41, 55, 0, // Skip to: 17098 |
3444 | /* 2977 */ MCD::OPC_Decode, 248, 9, 222, 1, // Opcode: CVT_D32_S |
3445 | /* 2982 */ MCD::OPC_FilterValue, 36, 17, 0, 0, // Skip to: 3004 |
3446 | /* 2987 */ MCD::OPC_CheckPredicate, 47, 26, 55, 0, // Skip to: 17098 |
3447 | /* 2992 */ MCD::OPC_CheckField, 16, 5, 0, 19, 55, 0, // Skip to: 17098 |
3448 | /* 2999 */ MCD::OPC_Decode, 154, 10, 219, 1, // Opcode: CVT_W_S |
3449 | /* 3004 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 3026 |
3450 | /* 3009 */ MCD::OPC_CheckPredicate, 56, 4, 55, 0, // Skip to: 17098 |
3451 | /* 3014 */ MCD::OPC_CheckField, 16, 5, 0, 253, 54, 0, // Skip to: 17098 |
3452 | /* 3021 */ MCD::OPC_Decode, 133, 10, 223, 1, // Opcode: CVT_L_S |
3453 | /* 3026 */ MCD::OPC_FilterValue, 48, 17, 0, 0, // Skip to: 3048 |
3454 | /* 3031 */ MCD::OPC_CheckPredicate, 50, 238, 54, 0, // Skip to: 17098 |
3455 | /* 3036 */ MCD::OPC_CheckField, 6, 2, 0, 231, 54, 0, // Skip to: 17098 |
3456 | /* 3043 */ MCD::OPC_Decode, 167, 10, 224, 1, // Opcode: C_F_S |
3457 | /* 3048 */ MCD::OPC_FilterValue, 49, 17, 0, 0, // Skip to: 3070 |
3458 | /* 3053 */ MCD::OPC_CheckPredicate, 50, 216, 54, 0, // Skip to: 17098 |
3459 | /* 3058 */ MCD::OPC_CheckField, 6, 2, 0, 209, 54, 0, // Skip to: 17098 |
3460 | /* 3065 */ MCD::OPC_Decode, 251, 10, 224, 1, // Opcode: C_UN_S |
3461 | /* 3070 */ MCD::OPC_FilterValue, 50, 17, 0, 0, // Skip to: 3092 |
3462 | /* 3075 */ MCD::OPC_CheckPredicate, 50, 194, 54, 0, // Skip to: 17098 |
3463 | /* 3080 */ MCD::OPC_CheckField, 6, 2, 0, 187, 54, 0, // Skip to: 17098 |
3464 | /* 3087 */ MCD::OPC_Decode, 161, 10, 224, 1, // Opcode: C_EQ_S |
3465 | /* 3092 */ MCD::OPC_FilterValue, 51, 17, 0, 0, // Skip to: 3114 |
3466 | /* 3097 */ MCD::OPC_CheckPredicate, 50, 172, 54, 0, // Skip to: 17098 |
3467 | /* 3102 */ MCD::OPC_CheckField, 6, 2, 0, 165, 54, 0, // Skip to: 17098 |
3468 | /* 3109 */ MCD::OPC_Decode, 233, 10, 224, 1, // Opcode: C_UEQ_S |
3469 | /* 3114 */ MCD::OPC_FilterValue, 52, 17, 0, 0, // Skip to: 3136 |
3470 | /* 3119 */ MCD::OPC_CheckPredicate, 50, 150, 54, 0, // Skip to: 17098 |
3471 | /* 3124 */ MCD::OPC_CheckField, 6, 2, 0, 143, 54, 0, // Skip to: 17098 |
3472 | /* 3131 */ MCD::OPC_Decode, 215, 10, 224, 1, // Opcode: C_OLT_S |
3473 | /* 3136 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 3158 |
3474 | /* 3141 */ MCD::OPC_CheckPredicate, 50, 128, 54, 0, // Skip to: 17098 |
3475 | /* 3146 */ MCD::OPC_CheckField, 6, 2, 0, 121, 54, 0, // Skip to: 17098 |
3476 | /* 3153 */ MCD::OPC_Decode, 245, 10, 224, 1, // Opcode: C_ULT_S |
3477 | /* 3158 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 3180 |
3478 | /* 3163 */ MCD::OPC_CheckPredicate, 50, 106, 54, 0, // Skip to: 17098 |
3479 | /* 3168 */ MCD::OPC_CheckField, 6, 2, 0, 99, 54, 0, // Skip to: 17098 |
3480 | /* 3175 */ MCD::OPC_Decode, 209, 10, 224, 1, // Opcode: C_OLE_S |
3481 | /* 3180 */ MCD::OPC_FilterValue, 55, 17, 0, 0, // Skip to: 3202 |
3482 | /* 3185 */ MCD::OPC_CheckPredicate, 50, 84, 54, 0, // Skip to: 17098 |
3483 | /* 3190 */ MCD::OPC_CheckField, 6, 2, 0, 77, 54, 0, // Skip to: 17098 |
3484 | /* 3197 */ MCD::OPC_Decode, 239, 10, 224, 1, // Opcode: C_ULE_S |
3485 | /* 3202 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 3224 |
3486 | /* 3207 */ MCD::OPC_CheckPredicate, 50, 62, 54, 0, // Skip to: 17098 |
3487 | /* 3212 */ MCD::OPC_CheckField, 6, 2, 0, 55, 54, 0, // Skip to: 17098 |
3488 | /* 3219 */ MCD::OPC_Decode, 227, 10, 224, 1, // Opcode: C_SF_S |
3489 | /* 3224 */ MCD::OPC_FilterValue, 57, 17, 0, 0, // Skip to: 3246 |
3490 | /* 3229 */ MCD::OPC_CheckPredicate, 50, 40, 54, 0, // Skip to: 17098 |
3491 | /* 3234 */ MCD::OPC_CheckField, 6, 2, 0, 33, 54, 0, // Skip to: 17098 |
3492 | /* 3241 */ MCD::OPC_Decode, 191, 10, 224, 1, // Opcode: C_NGLE_S |
3493 | /* 3246 */ MCD::OPC_FilterValue, 58, 17, 0, 0, // Skip to: 3268 |
3494 | /* 3251 */ MCD::OPC_CheckPredicate, 50, 18, 54, 0, // Skip to: 17098 |
3495 | /* 3256 */ MCD::OPC_CheckField, 6, 2, 0, 11, 54, 0, // Skip to: 17098 |
3496 | /* 3263 */ MCD::OPC_Decode, 221, 10, 224, 1, // Opcode: C_SEQ_S |
3497 | /* 3268 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 3290 |
3498 | /* 3273 */ MCD::OPC_CheckPredicate, 50, 252, 53, 0, // Skip to: 17098 |
3499 | /* 3278 */ MCD::OPC_CheckField, 6, 2, 0, 245, 53, 0, // Skip to: 17098 |
3500 | /* 3285 */ MCD::OPC_Decode, 197, 10, 224, 1, // Opcode: C_NGL_S |
3501 | /* 3290 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 3312 |
3502 | /* 3295 */ MCD::OPC_CheckPredicate, 50, 230, 53, 0, // Skip to: 17098 |
3503 | /* 3300 */ MCD::OPC_CheckField, 6, 2, 0, 223, 53, 0, // Skip to: 17098 |
3504 | /* 3307 */ MCD::OPC_Decode, 179, 10, 224, 1, // Opcode: C_LT_S |
3505 | /* 3312 */ MCD::OPC_FilterValue, 61, 17, 0, 0, // Skip to: 3334 |
3506 | /* 3317 */ MCD::OPC_CheckPredicate, 50, 208, 53, 0, // Skip to: 17098 |
3507 | /* 3322 */ MCD::OPC_CheckField, 6, 2, 0, 201, 53, 0, // Skip to: 17098 |
3508 | /* 3329 */ MCD::OPC_Decode, 185, 10, 224, 1, // Opcode: C_NGE_S |
3509 | /* 3334 */ MCD::OPC_FilterValue, 62, 17, 0, 0, // Skip to: 3356 |
3510 | /* 3339 */ MCD::OPC_CheckPredicate, 50, 186, 53, 0, // Skip to: 17098 |
3511 | /* 3344 */ MCD::OPC_CheckField, 6, 2, 0, 179, 53, 0, // Skip to: 17098 |
3512 | /* 3351 */ MCD::OPC_Decode, 173, 10, 224, 1, // Opcode: C_LE_S |
3513 | /* 3356 */ MCD::OPC_FilterValue, 63, 169, 53, 0, // Skip to: 17098 |
3514 | /* 3361 */ MCD::OPC_CheckPredicate, 50, 164, 53, 0, // Skip to: 17098 |
3515 | /* 3366 */ MCD::OPC_CheckField, 6, 2, 0, 157, 53, 0, // Skip to: 17098 |
3516 | /* 3373 */ MCD::OPC_Decode, 203, 10, 224, 1, // Opcode: C_NGT_S |
3517 | /* 3378 */ MCD::OPC_FilterValue, 17, 1, 3, 0, // Skip to: 4152 |
3518 | /* 3383 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3519 | /* 3386 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3401 |
3520 | /* 3391 */ MCD::OPC_CheckPredicate, 55, 134, 53, 0, // Skip to: 17098 |
3521 | /* 3396 */ MCD::OPC_Decode, 188, 12, 225, 1, // Opcode: FADD_D32 |
3522 | /* 3401 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3416 |
3523 | /* 3406 */ MCD::OPC_CheckPredicate, 55, 119, 53, 0, // Skip to: 17098 |
3524 | /* 3411 */ MCD::OPC_Decode, 205, 13, 225, 1, // Opcode: FSUB_D32 |
3525 | /* 3416 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3431 |
3526 | /* 3421 */ MCD::OPC_CheckPredicate, 55, 104, 53, 0, // Skip to: 17098 |
3527 | /* 3426 */ MCD::OPC_Decode, 161, 13, 225, 1, // Opcode: FMUL_D32 |
3528 | /* 3431 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3446 |
3529 | /* 3436 */ MCD::OPC_CheckPredicate, 55, 89, 53, 0, // Skip to: 17098 |
3530 | /* 3441 */ MCD::OPC_Decode, 227, 12, 225, 1, // Opcode: FDIV_D32 |
3531 | /* 3446 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 3468 |
3532 | /* 3451 */ MCD::OPC_CheckPredicate, 57, 74, 53, 0, // Skip to: 17098 |
3533 | /* 3456 */ MCD::OPC_CheckField, 16, 5, 0, 67, 53, 0, // Skip to: 17098 |
3534 | /* 3463 */ MCD::OPC_Decode, 197, 13, 226, 1, // Opcode: FSQRT_D32 |
3535 | /* 3468 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 3490 |
3536 | /* 3473 */ MCD::OPC_CheckPredicate, 55, 52, 53, 0, // Skip to: 17098 |
3537 | /* 3478 */ MCD::OPC_CheckField, 16, 5, 0, 45, 53, 0, // Skip to: 17098 |
3538 | /* 3485 */ MCD::OPC_Decode, 181, 12, 226, 1, // Opcode: FABS_D32 |
3539 | /* 3490 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 3512 |
3540 | /* 3495 */ MCD::OPC_CheckPredicate, 55, 30, 53, 0, // Skip to: 17098 |
3541 | /* 3500 */ MCD::OPC_CheckField, 16, 5, 0, 23, 53, 0, // Skip to: 17098 |
3542 | /* 3507 */ MCD::OPC_Decode, 150, 13, 226, 1, // Opcode: FMOV_D32 |
3543 | /* 3512 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 3534 |
3544 | /* 3517 */ MCD::OPC_CheckPredicate, 55, 8, 53, 0, // Skip to: 17098 |
3545 | /* 3522 */ MCD::OPC_CheckField, 16, 5, 0, 1, 53, 0, // Skip to: 17098 |
3546 | /* 3529 */ MCD::OPC_Decode, 170, 13, 226, 1, // Opcode: FNEG_D32 |
3547 | /* 3534 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 3556 |
3548 | /* 3539 */ MCD::OPC_CheckPredicate, 57, 242, 52, 0, // Skip to: 17098 |
3549 | /* 3544 */ MCD::OPC_CheckField, 16, 5, 0, 235, 52, 0, // Skip to: 17098 |
3550 | /* 3551 */ MCD::OPC_Decode, 254, 18, 227, 1, // Opcode: ROUND_W_D32 |
3551 | /* 3556 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 3578 |
3552 | /* 3561 */ MCD::OPC_CheckPredicate, 57, 220, 52, 0, // Skip to: 17098 |
3553 | /* 3566 */ MCD::OPC_CheckField, 16, 5, 0, 213, 52, 0, // Skip to: 17098 |
3554 | /* 3573 */ MCD::OPC_Decode, 165, 22, 227, 1, // Opcode: TRUNC_W_D32 |
3555 | /* 3578 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 3600 |
3556 | /* 3583 */ MCD::OPC_CheckPredicate, 57, 198, 52, 0, // Skip to: 17098 |
3557 | /* 3588 */ MCD::OPC_CheckField, 16, 5, 0, 191, 52, 0, // Skip to: 17098 |
3558 | /* 3595 */ MCD::OPC_Decode, 202, 8, 227, 1, // Opcode: CEIL_W_D32 |
3559 | /* 3600 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 3622 |
3560 | /* 3605 */ MCD::OPC_CheckPredicate, 57, 176, 52, 0, // Skip to: 17098 |
3561 | /* 3610 */ MCD::OPC_CheckField, 16, 5, 0, 169, 52, 0, // Skip to: 17098 |
3562 | /* 3617 */ MCD::OPC_Decode, 133, 13, 227, 1, // Opcode: FLOOR_W_D32 |
3563 | /* 3622 */ MCD::OPC_FilterValue, 17, 33, 0, 0, // Skip to: 3660 |
3564 | /* 3627 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
3565 | /* 3630 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3645 |
3566 | /* 3635 */ MCD::OPC_CheckPredicate, 58, 146, 52, 0, // Skip to: 17098 |
3567 | /* 3640 */ MCD::OPC_Decode, 206, 16, 228, 1, // Opcode: MOVF_D32 |
3568 | /* 3645 */ MCD::OPC_FilterValue, 1, 136, 52, 0, // Skip to: 17098 |
3569 | /* 3650 */ MCD::OPC_CheckPredicate, 58, 131, 52, 0, // Skip to: 17098 |
3570 | /* 3655 */ MCD::OPC_Decode, 226, 16, 228, 1, // Opcode: MOVT_D32 |
3571 | /* 3660 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 3675 |
3572 | /* 3665 */ MCD::OPC_CheckPredicate, 58, 116, 52, 0, // Skip to: 17098 |
3573 | /* 3670 */ MCD::OPC_Decode, 238, 16, 229, 1, // Opcode: MOVZ_I_D32 |
3574 | /* 3675 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 3690 |
3575 | /* 3680 */ MCD::OPC_CheckPredicate, 58, 101, 52, 0, // Skip to: 17098 |
3576 | /* 3685 */ MCD::OPC_Decode, 218, 16, 229, 1, // Opcode: MOVN_I_D32 |
3577 | /* 3690 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 3712 |
3578 | /* 3695 */ MCD::OPC_CheckPredicate, 59, 86, 52, 0, // Skip to: 17098 |
3579 | /* 3700 */ MCD::OPC_CheckField, 16, 5, 0, 79, 52, 0, // Skip to: 17098 |
3580 | /* 3707 */ MCD::OPC_Decode, 228, 18, 226, 1, // Opcode: RECIP_D32 |
3581 | /* 3712 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 3734 |
3582 | /* 3717 */ MCD::OPC_CheckPredicate, 59, 64, 52, 0, // Skip to: 17098 |
3583 | /* 3722 */ MCD::OPC_CheckField, 16, 5, 0, 57, 52, 0, // Skip to: 17098 |
3584 | /* 3729 */ MCD::OPC_Decode, 133, 19, 226, 1, // Opcode: RSQRT_D32 |
3585 | /* 3734 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 3756 |
3586 | /* 3739 */ MCD::OPC_CheckPredicate, 55, 42, 52, 0, // Skip to: 17098 |
3587 | /* 3744 */ MCD::OPC_CheckField, 16, 5, 0, 35, 52, 0, // Skip to: 17098 |
3588 | /* 3751 */ MCD::OPC_Decode, 139, 10, 227, 1, // Opcode: CVT_S_D32 |
3589 | /* 3756 */ MCD::OPC_FilterValue, 36, 17, 0, 0, // Skip to: 3778 |
3590 | /* 3761 */ MCD::OPC_CheckPredicate, 55, 20, 52, 0, // Skip to: 17098 |
3591 | /* 3766 */ MCD::OPC_CheckField, 16, 5, 0, 13, 52, 0, // Skip to: 17098 |
3592 | /* 3773 */ MCD::OPC_Decode, 150, 10, 227, 1, // Opcode: CVT_W_D32 |
3593 | /* 3778 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 3800 |
3594 | /* 3783 */ MCD::OPC_CheckPredicate, 56, 254, 51, 0, // Skip to: 17098 |
3595 | /* 3788 */ MCD::OPC_CheckField, 16, 5, 0, 247, 51, 0, // Skip to: 17098 |
3596 | /* 3795 */ MCD::OPC_Decode, 130, 10, 230, 1, // Opcode: CVT_L_D64 |
3597 | /* 3800 */ MCD::OPC_FilterValue, 48, 17, 0, 0, // Skip to: 3822 |
3598 | /* 3805 */ MCD::OPC_CheckPredicate, 60, 232, 51, 0, // Skip to: 17098 |
3599 | /* 3810 */ MCD::OPC_CheckField, 6, 2, 0, 225, 51, 0, // Skip to: 17098 |
3600 | /* 3817 */ MCD::OPC_Decode, 163, 10, 231, 1, // Opcode: C_F_D32 |
3601 | /* 3822 */ MCD::OPC_FilterValue, 49, 17, 0, 0, // Skip to: 3844 |
3602 | /* 3827 */ MCD::OPC_CheckPredicate, 60, 210, 51, 0, // Skip to: 17098 |
3603 | /* 3832 */ MCD::OPC_CheckField, 6, 2, 0, 203, 51, 0, // Skip to: 17098 |
3604 | /* 3839 */ MCD::OPC_Decode, 247, 10, 231, 1, // Opcode: C_UN_D32 |
3605 | /* 3844 */ MCD::OPC_FilterValue, 50, 17, 0, 0, // Skip to: 3866 |
3606 | /* 3849 */ MCD::OPC_CheckPredicate, 60, 188, 51, 0, // Skip to: 17098 |
3607 | /* 3854 */ MCD::OPC_CheckField, 6, 2, 0, 181, 51, 0, // Skip to: 17098 |
3608 | /* 3861 */ MCD::OPC_Decode, 157, 10, 231, 1, // Opcode: C_EQ_D32 |
3609 | /* 3866 */ MCD::OPC_FilterValue, 51, 17, 0, 0, // Skip to: 3888 |
3610 | /* 3871 */ MCD::OPC_CheckPredicate, 60, 166, 51, 0, // Skip to: 17098 |
3611 | /* 3876 */ MCD::OPC_CheckField, 6, 2, 0, 159, 51, 0, // Skip to: 17098 |
3612 | /* 3883 */ MCD::OPC_Decode, 229, 10, 231, 1, // Opcode: C_UEQ_D32 |
3613 | /* 3888 */ MCD::OPC_FilterValue, 52, 17, 0, 0, // Skip to: 3910 |
3614 | /* 3893 */ MCD::OPC_CheckPredicate, 60, 144, 51, 0, // Skip to: 17098 |
3615 | /* 3898 */ MCD::OPC_CheckField, 6, 2, 0, 137, 51, 0, // Skip to: 17098 |
3616 | /* 3905 */ MCD::OPC_Decode, 211, 10, 231, 1, // Opcode: C_OLT_D32 |
3617 | /* 3910 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 3932 |
3618 | /* 3915 */ MCD::OPC_CheckPredicate, 60, 122, 51, 0, // Skip to: 17098 |
3619 | /* 3920 */ MCD::OPC_CheckField, 6, 2, 0, 115, 51, 0, // Skip to: 17098 |
3620 | /* 3927 */ MCD::OPC_Decode, 241, 10, 231, 1, // Opcode: C_ULT_D32 |
3621 | /* 3932 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 3954 |
3622 | /* 3937 */ MCD::OPC_CheckPredicate, 60, 100, 51, 0, // Skip to: 17098 |
3623 | /* 3942 */ MCD::OPC_CheckField, 6, 2, 0, 93, 51, 0, // Skip to: 17098 |
3624 | /* 3949 */ MCD::OPC_Decode, 205, 10, 231, 1, // Opcode: C_OLE_D32 |
3625 | /* 3954 */ MCD::OPC_FilterValue, 55, 17, 0, 0, // Skip to: 3976 |
3626 | /* 3959 */ MCD::OPC_CheckPredicate, 60, 78, 51, 0, // Skip to: 17098 |
3627 | /* 3964 */ MCD::OPC_CheckField, 6, 2, 0, 71, 51, 0, // Skip to: 17098 |
3628 | /* 3971 */ MCD::OPC_Decode, 235, 10, 231, 1, // Opcode: C_ULE_D32 |
3629 | /* 3976 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 3998 |
3630 | /* 3981 */ MCD::OPC_CheckPredicate, 60, 56, 51, 0, // Skip to: 17098 |
3631 | /* 3986 */ MCD::OPC_CheckField, 6, 2, 0, 49, 51, 0, // Skip to: 17098 |
3632 | /* 3993 */ MCD::OPC_Decode, 223, 10, 231, 1, // Opcode: C_SF_D32 |
3633 | /* 3998 */ MCD::OPC_FilterValue, 57, 17, 0, 0, // Skip to: 4020 |
3634 | /* 4003 */ MCD::OPC_CheckPredicate, 60, 34, 51, 0, // Skip to: 17098 |
3635 | /* 4008 */ MCD::OPC_CheckField, 6, 2, 0, 27, 51, 0, // Skip to: 17098 |
3636 | /* 4015 */ MCD::OPC_Decode, 187, 10, 231, 1, // Opcode: C_NGLE_D32 |
3637 | /* 4020 */ MCD::OPC_FilterValue, 58, 17, 0, 0, // Skip to: 4042 |
3638 | /* 4025 */ MCD::OPC_CheckPredicate, 60, 12, 51, 0, // Skip to: 17098 |
3639 | /* 4030 */ MCD::OPC_CheckField, 6, 2, 0, 5, 51, 0, // Skip to: 17098 |
3640 | /* 4037 */ MCD::OPC_Decode, 217, 10, 231, 1, // Opcode: C_SEQ_D32 |
3641 | /* 4042 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 4064 |
3642 | /* 4047 */ MCD::OPC_CheckPredicate, 60, 246, 50, 0, // Skip to: 17098 |
3643 | /* 4052 */ MCD::OPC_CheckField, 6, 2, 0, 239, 50, 0, // Skip to: 17098 |
3644 | /* 4059 */ MCD::OPC_Decode, 193, 10, 231, 1, // Opcode: C_NGL_D32 |
3645 | /* 4064 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 4086 |
3646 | /* 4069 */ MCD::OPC_CheckPredicate, 60, 224, 50, 0, // Skip to: 17098 |
3647 | /* 4074 */ MCD::OPC_CheckField, 6, 2, 0, 217, 50, 0, // Skip to: 17098 |
3648 | /* 4081 */ MCD::OPC_Decode, 175, 10, 231, 1, // Opcode: C_LT_D32 |
3649 | /* 4086 */ MCD::OPC_FilterValue, 61, 17, 0, 0, // Skip to: 4108 |
3650 | /* 4091 */ MCD::OPC_CheckPredicate, 60, 202, 50, 0, // Skip to: 17098 |
3651 | /* 4096 */ MCD::OPC_CheckField, 6, 2, 0, 195, 50, 0, // Skip to: 17098 |
3652 | /* 4103 */ MCD::OPC_Decode, 181, 10, 231, 1, // Opcode: C_NGE_D32 |
3653 | /* 4108 */ MCD::OPC_FilterValue, 62, 17, 0, 0, // Skip to: 4130 |
3654 | /* 4113 */ MCD::OPC_CheckPredicate, 60, 180, 50, 0, // Skip to: 17098 |
3655 | /* 4118 */ MCD::OPC_CheckField, 6, 2, 0, 173, 50, 0, // Skip to: 17098 |
3656 | /* 4125 */ MCD::OPC_Decode, 169, 10, 231, 1, // Opcode: C_LE_D32 |
3657 | /* 4130 */ MCD::OPC_FilterValue, 63, 163, 50, 0, // Skip to: 17098 |
3658 | /* 4135 */ MCD::OPC_CheckPredicate, 60, 158, 50, 0, // Skip to: 17098 |
3659 | /* 4140 */ MCD::OPC_CheckField, 6, 2, 0, 151, 50, 0, // Skip to: 17098 |
3660 | /* 4147 */ MCD::OPC_Decode, 199, 10, 231, 1, // Opcode: C_NGT_D32 |
3661 | /* 4152 */ MCD::OPC_FilterValue, 20, 47, 0, 0, // Skip to: 4204 |
3662 | /* 4157 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3663 | /* 4160 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 4182 |
3664 | /* 4165 */ MCD::OPC_CheckPredicate, 47, 128, 50, 0, // Skip to: 17098 |
3665 | /* 4170 */ MCD::OPC_CheckField, 16, 5, 0, 121, 50, 0, // Skip to: 17098 |
3666 | /* 4177 */ MCD::OPC_Decode, 147, 10, 219, 1, // Opcode: CVT_S_W |
3667 | /* 4182 */ MCD::OPC_FilterValue, 33, 111, 50, 0, // Skip to: 17098 |
3668 | /* 4187 */ MCD::OPC_CheckPredicate, 55, 106, 50, 0, // Skip to: 17098 |
3669 | /* 4192 */ MCD::OPC_CheckField, 16, 5, 0, 99, 50, 0, // Skip to: 17098 |
3670 | /* 4199 */ MCD::OPC_Decode, 250, 9, 222, 1, // Opcode: CVT_D32_W |
3671 | /* 4204 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 4219 |
3672 | /* 4209 */ MCD::OPC_CheckPredicate, 30, 84, 50, 0, // Skip to: 17098 |
3673 | /* 4214 */ MCD::OPC_Decode, 176, 8, 217, 1, // Opcode: BZ_B |
3674 | /* 4219 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 4234 |
3675 | /* 4224 */ MCD::OPC_CheckPredicate, 30, 69, 50, 0, // Skip to: 17098 |
3676 | /* 4229 */ MCD::OPC_Decode, 178, 8, 232, 1, // Opcode: BZ_H |
3677 | /* 4234 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 4249 |
3678 | /* 4239 */ MCD::OPC_CheckPredicate, 30, 54, 50, 0, // Skip to: 17098 |
3679 | /* 4244 */ MCD::OPC_Decode, 180, 8, 233, 1, // Opcode: BZ_W |
3680 | /* 4249 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 4264 |
3681 | /* 4254 */ MCD::OPC_CheckPredicate, 30, 39, 50, 0, // Skip to: 17098 |
3682 | /* 4259 */ MCD::OPC_Decode, 177, 8, 234, 1, // Opcode: BZ_D |
3683 | /* 4264 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 4279 |
3684 | /* 4269 */ MCD::OPC_CheckPredicate, 30, 24, 50, 0, // Skip to: 17098 |
3685 | /* 4274 */ MCD::OPC_Decode, 151, 8, 217, 1, // Opcode: BNZ_B |
3686 | /* 4279 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 4294 |
3687 | /* 4284 */ MCD::OPC_CheckPredicate, 30, 9, 50, 0, // Skip to: 17098 |
3688 | /* 4289 */ MCD::OPC_Decode, 153, 8, 232, 1, // Opcode: BNZ_H |
3689 | /* 4294 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 4309 |
3690 | /* 4299 */ MCD::OPC_CheckPredicate, 30, 250, 49, 0, // Skip to: 17098 |
3691 | /* 4304 */ MCD::OPC_Decode, 155, 8, 233, 1, // Opcode: BNZ_W |
3692 | /* 4309 */ MCD::OPC_FilterValue, 31, 240, 49, 0, // Skip to: 17098 |
3693 | /* 4314 */ MCD::OPC_CheckPredicate, 30, 235, 49, 0, // Skip to: 17098 |
3694 | /* 4319 */ MCD::OPC_Decode, 152, 8, 234, 1, // Opcode: BNZ_D |
3695 | /* 4324 */ MCD::OPC_FilterValue, 18, 47, 0, 0, // Skip to: 4376 |
3696 | /* 4329 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
3697 | /* 4332 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4354 |
3698 | /* 4337 */ MCD::OPC_CheckPredicate, 27, 212, 49, 0, // Skip to: 17098 |
3699 | /* 4342 */ MCD::OPC_CheckField, 3, 8, 0, 205, 49, 0, // Skip to: 17098 |
3700 | /* 4349 */ MCD::OPC_Decode, 134, 16, 235, 1, // Opcode: MFC2 |
3701 | /* 4354 */ MCD::OPC_FilterValue, 4, 195, 49, 0, // Skip to: 17098 |
3702 | /* 4359 */ MCD::OPC_CheckPredicate, 27, 190, 49, 0, // Skip to: 17098 |
3703 | /* 4364 */ MCD::OPC_CheckField, 3, 8, 0, 183, 49, 0, // Skip to: 17098 |
3704 | /* 4371 */ MCD::OPC_Decode, 150, 17, 236, 1, // Opcode: MTC2 |
3705 | /* 4376 */ MCD::OPC_FilterValue, 19, 255, 0, 0, // Skip to: 4636 |
3706 | /* 4381 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3707 | /* 4384 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4406 |
3708 | /* 4389 */ MCD::OPC_CheckPredicate, 61, 160, 49, 0, // Skip to: 17098 |
3709 | /* 4394 */ MCD::OPC_CheckField, 11, 5, 0, 153, 49, 0, // Skip to: 17098 |
3710 | /* 4401 */ MCD::OPC_Decode, 177, 15, 237, 1, // Opcode: LWXC1 |
3711 | /* 4406 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4428 |
3712 | /* 4411 */ MCD::OPC_CheckPredicate, 62, 138, 49, 0, // Skip to: 17098 |
3713 | /* 4416 */ MCD::OPC_CheckField, 11, 5, 0, 131, 49, 0, // Skip to: 17098 |
3714 | /* 4423 */ MCD::OPC_Decode, 227, 14, 238, 1, // Opcode: LDXC1 |
3715 | /* 4428 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 4450 |
3716 | /* 4433 */ MCD::OPC_CheckPredicate, 63, 116, 49, 0, // Skip to: 17098 |
3717 | /* 4438 */ MCD::OPC_CheckField, 11, 5, 0, 109, 49, 0, // Skip to: 17098 |
3718 | /* 4445 */ MCD::OPC_Decode, 137, 15, 238, 1, // Opcode: LUXC1 |
3719 | /* 4450 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 4472 |
3720 | /* 4455 */ MCD::OPC_CheckPredicate, 61, 94, 49, 0, // Skip to: 17098 |
3721 | /* 4460 */ MCD::OPC_CheckField, 6, 5, 0, 87, 49, 0, // Skip to: 17098 |
3722 | /* 4467 */ MCD::OPC_Decode, 209, 21, 239, 1, // Opcode: SWXC1 |
3723 | /* 4472 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 4494 |
3724 | /* 4477 */ MCD::OPC_CheckPredicate, 62, 72, 49, 0, // Skip to: 17098 |
3725 | /* 4482 */ MCD::OPC_CheckField, 6, 5, 0, 65, 49, 0, // Skip to: 17098 |
3726 | /* 4489 */ MCD::OPC_Decode, 189, 19, 240, 1, // Opcode: SDXC1 |
3727 | /* 4494 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 4516 |
3728 | /* 4499 */ MCD::OPC_CheckPredicate, 63, 50, 49, 0, // Skip to: 17098 |
3729 | /* 4504 */ MCD::OPC_CheckField, 6, 5, 0, 43, 49, 0, // Skip to: 17098 |
3730 | /* 4511 */ MCD::OPC_Decode, 176, 21, 240, 1, // Opcode: SUXC1 |
3731 | /* 4516 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 4531 |
3732 | /* 4521 */ MCD::OPC_CheckPredicate, 64, 28, 49, 0, // Skip to: 17098 |
3733 | /* 4526 */ MCD::OPC_Decode, 218, 15, 241, 1, // Opcode: MADD_S |
3734 | /* 4531 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 4546 |
3735 | /* 4536 */ MCD::OPC_CheckPredicate, 65, 13, 49, 0, // Skip to: 17098 |
3736 | /* 4541 */ MCD::OPC_Decode, 210, 15, 242, 1, // Opcode: MADD_D32 |
3737 | /* 4546 */ MCD::OPC_FilterValue, 40, 10, 0, 0, // Skip to: 4561 |
3738 | /* 4551 */ MCD::OPC_CheckPredicate, 64, 254, 48, 0, // Skip to: 17098 |
3739 | /* 4556 */ MCD::OPC_Decode, 141, 17, 241, 1, // Opcode: MSUB_S |
3740 | /* 4561 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 4576 |
3741 | /* 4566 */ MCD::OPC_CheckPredicate, 65, 239, 48, 0, // Skip to: 17098 |
3742 | /* 4571 */ MCD::OPC_Decode, 133, 17, 242, 1, // Opcode: MSUB_D32 |
3743 | /* 4576 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 4591 |
3744 | /* 4581 */ MCD::OPC_CheckPredicate, 66, 224, 48, 0, // Skip to: 17098 |
3745 | /* 4586 */ MCD::OPC_Decode, 248, 17, 241, 1, // Opcode: NMADD_S |
3746 | /* 4591 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 4606 |
3747 | /* 4596 */ MCD::OPC_CheckPredicate, 67, 209, 48, 0, // Skip to: 17098 |
3748 | /* 4601 */ MCD::OPC_Decode, 245, 17, 242, 1, // Opcode: NMADD_D32 |
3749 | /* 4606 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 4621 |
3750 | /* 4611 */ MCD::OPC_CheckPredicate, 66, 194, 48, 0, // Skip to: 17098 |
3751 | /* 4616 */ MCD::OPC_Decode, 253, 17, 241, 1, // Opcode: NMSUB_S |
3752 | /* 4621 */ MCD::OPC_FilterValue, 57, 184, 48, 0, // Skip to: 17098 |
3753 | /* 4626 */ MCD::OPC_CheckPredicate, 67, 179, 48, 0, // Skip to: 17098 |
3754 | /* 4631 */ MCD::OPC_Decode, 250, 17, 242, 1, // Opcode: NMSUB_D32 |
3755 | /* 4636 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 4651 |
3756 | /* 4641 */ MCD::OPC_CheckPredicate, 39, 164, 48, 0, // Skip to: 17098 |
3757 | /* 4646 */ MCD::OPC_Decode, 164, 7, 201, 1, // Opcode: BEQL |
3758 | /* 4651 */ MCD::OPC_FilterValue, 21, 107, 0, 0, // Skip to: 4763 |
3759 | /* 4656 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
3760 | /* 4659 */ MCD::OPC_FilterValue, 123, 9, 0, 0, // Skip to: 4673 |
3761 | /* 4664 */ MCD::OPC_CheckPredicate, 19, 19, 0, 0, // Skip to: 4688 |
3762 | /* 4669 */ MCD::OPC_Decode, 156, 13, 124, // Opcode: FMOV_S_MM |
3763 | /* 4673 */ MCD::OPC_FilterValue, 251, 22, 9, 0, 0, // Skip to: 4688 |
3764 | /* 4679 */ MCD::OPC_CheckPredicate, 19, 4, 0, 0, // Skip to: 4688 |
3765 | /* 4684 */ MCD::OPC_Decode, 175, 13, 124, // Opcode: FNEG_S_MM |
3766 | /* 4688 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
3767 | /* 4691 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 4706 |
3768 | /* 4696 */ MCD::OPC_CheckPredicate, 19, 52, 0, 0, // Skip to: 4753 |
3769 | /* 4701 */ MCD::OPC_Decode, 194, 12, 164, 1, // Opcode: FADD_S_MM |
3770 | /* 4706 */ MCD::OPC_FilterValue, 112, 10, 0, 0, // Skip to: 4721 |
3771 | /* 4711 */ MCD::OPC_CheckPredicate, 19, 37, 0, 0, // Skip to: 4753 |
3772 | /* 4716 */ MCD::OPC_Decode, 211, 13, 164, 1, // Opcode: FSUB_S_MM |
3773 | /* 4721 */ MCD::OPC_FilterValue, 176, 1, 10, 0, 0, // Skip to: 4737 |
3774 | /* 4727 */ MCD::OPC_CheckPredicate, 19, 21, 0, 0, // Skip to: 4753 |
3775 | /* 4732 */ MCD::OPC_Decode, 167, 13, 164, 1, // Opcode: FMUL_S_MM |
3776 | /* 4737 */ MCD::OPC_FilterValue, 240, 1, 10, 0, 0, // Skip to: 4753 |
3777 | /* 4743 */ MCD::OPC_CheckPredicate, 19, 5, 0, 0, // Skip to: 4753 |
3778 | /* 4748 */ MCD::OPC_Decode, 232, 12, 164, 1, // Opcode: FDIV_S_MM |
3779 | /* 4753 */ MCD::OPC_CheckPredicate, 39, 52, 48, 0, // Skip to: 17098 |
3780 | /* 4758 */ MCD::OPC_Decode, 139, 8, 201, 1, // Opcode: BNEL |
3781 | /* 4763 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 4785 |
3782 | /* 4768 */ MCD::OPC_CheckPredicate, 39, 37, 48, 0, // Skip to: 17098 |
3783 | /* 4773 */ MCD::OPC_CheckField, 16, 5, 0, 30, 48, 0, // Skip to: 17098 |
3784 | /* 4780 */ MCD::OPC_Decode, 229, 7, 197, 1, // Opcode: BLEZL |
3785 | /* 4785 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 4807 |
3786 | /* 4790 */ MCD::OPC_CheckPredicate, 39, 15, 48, 0, // Skip to: 17098 |
3787 | /* 4795 */ MCD::OPC_CheckField, 16, 5, 0, 8, 48, 0, // Skip to: 17098 |
3788 | /* 4802 */ MCD::OPC_Decode, 200, 7, 197, 1, // Opcode: BGTZL |
3789 | /* 4807 */ MCD::OPC_FilterValue, 28, 15, 1, 0, // Skip to: 5083 |
3790 | /* 4812 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3791 | /* 4815 */ MCD::OPC_FilterValue, 0, 42, 0, 0, // Skip to: 4862 |
3792 | /* 4820 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3793 | /* 4823 */ MCD::OPC_FilterValue, 0, 238, 47, 0, // Skip to: 17098 |
3794 | /* 4828 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3795 | /* 4831 */ MCD::OPC_FilterValue, 0, 230, 47, 0, // Skip to: 17098 |
3796 | /* 4836 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4852 |
3797 | /* 4841 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4852 |
3798 | /* 4848 */ MCD::OPC_Decode, 195, 15, 80, // Opcode: MADD |
3799 | /* 4852 */ MCD::OPC_CheckPredicate, 37, 209, 47, 0, // Skip to: 17098 |
3800 | /* 4857 */ MCD::OPC_Decode, 213, 15, 243, 1, // Opcode: MADD_DSP |
3801 | /* 4862 */ MCD::OPC_FilterValue, 1, 42, 0, 0, // Skip to: 4909 |
3802 | /* 4867 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3803 | /* 4870 */ MCD::OPC_FilterValue, 0, 191, 47, 0, // Skip to: 17098 |
3804 | /* 4875 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3805 | /* 4878 */ MCD::OPC_FilterValue, 0, 183, 47, 0, // Skip to: 17098 |
3806 | /* 4883 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4899 |
3807 | /* 4888 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4899 |
3808 | /* 4895 */ MCD::OPC_Decode, 202, 15, 80, // Opcode: MADDU |
3809 | /* 4899 */ MCD::OPC_CheckPredicate, 37, 162, 47, 0, // Skip to: 17098 |
3810 | /* 4904 */ MCD::OPC_Decode, 203, 15, 243, 1, // Opcode: MADDU_DSP |
3811 | /* 4909 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 4930 |
3812 | /* 4914 */ MCD::OPC_CheckPredicate, 68, 147, 47, 0, // Skip to: 17098 |
3813 | /* 4919 */ MCD::OPC_CheckField, 6, 5, 0, 140, 47, 0, // Skip to: 17098 |
3814 | /* 4926 */ MCD::OPC_Decode, 185, 17, 61, // Opcode: MUL |
3815 | /* 4930 */ MCD::OPC_FilterValue, 4, 42, 0, 0, // Skip to: 4977 |
3816 | /* 4935 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3817 | /* 4938 */ MCD::OPC_FilterValue, 0, 123, 47, 0, // Skip to: 17098 |
3818 | /* 4943 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3819 | /* 4946 */ MCD::OPC_FilterValue, 0, 115, 47, 0, // Skip to: 17098 |
3820 | /* 4951 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4967 |
3821 | /* 4956 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4967 |
3822 | /* 4963 */ MCD::OPC_Decode, 246, 16, 80, // Opcode: MSUB |
3823 | /* 4967 */ MCD::OPC_CheckPredicate, 37, 94, 47, 0, // Skip to: 17098 |
3824 | /* 4972 */ MCD::OPC_Decode, 136, 17, 243, 1, // Opcode: MSUB_DSP |
3825 | /* 4977 */ MCD::OPC_FilterValue, 5, 42, 0, 0, // Skip to: 5024 |
3826 | /* 4982 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
3827 | /* 4985 */ MCD::OPC_FilterValue, 0, 76, 47, 0, // Skip to: 17098 |
3828 | /* 4990 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... |
3829 | /* 4993 */ MCD::OPC_FilterValue, 0, 68, 47, 0, // Skip to: 17098 |
3830 | /* 4998 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 5014 |
3831 | /* 5003 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 5014 |
3832 | /* 5010 */ MCD::OPC_Decode, 253, 16, 80, // Opcode: MSUBU |
3833 | /* 5014 */ MCD::OPC_CheckPredicate, 37, 47, 47, 0, // Skip to: 17098 |
3834 | /* 5019 */ MCD::OPC_Decode, 254, 16, 243, 1, // Opcode: MSUBU_DSP |
3835 | /* 5024 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 5046 |
3836 | /* 5029 */ MCD::OPC_CheckPredicate, 68, 32, 47, 0, // Skip to: 17098 |
3837 | /* 5034 */ MCD::OPC_CheckField, 6, 5, 0, 25, 47, 0, // Skip to: 17098 |
3838 | /* 5041 */ MCD::OPC_Decode, 137, 9, 244, 1, // Opcode: CLZ |
3839 | /* 5046 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 5068 |
3840 | /* 5051 */ MCD::OPC_CheckPredicate, 68, 10, 47, 0, // Skip to: 17098 |
3841 | /* 5056 */ MCD::OPC_CheckField, 6, 5, 0, 3, 47, 0, // Skip to: 17098 |
3842 | /* 5063 */ MCD::OPC_Decode, 245, 8, 244, 1, // Opcode: CLO |
3843 | /* 5068 */ MCD::OPC_FilterValue, 63, 249, 46, 0, // Skip to: 17098 |
3844 | /* 5073 */ MCD::OPC_CheckPredicate, 68, 244, 46, 0, // Skip to: 17098 |
3845 | /* 5078 */ MCD::OPC_Decode, 170, 19, 188, 1, // Opcode: SDBBP |
3846 | /* 5083 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 5098 |
3847 | /* 5088 */ MCD::OPC_CheckPredicate, 68, 229, 46, 0, // Skip to: 17098 |
3848 | /* 5093 */ MCD::OPC_Decode, 167, 14, 200, 1, // Opcode: JALX |
3849 | /* 5098 */ MCD::OPC_FilterValue, 30, 201, 32, 0, // Skip to: 13496 |
3850 | /* 5103 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
3851 | /* 5106 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 5174 |
3852 | /* 5111 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... |
3853 | /* 5114 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5129 |
3854 | /* 5119 */ MCD::OPC_CheckPredicate, 30, 198, 46, 0, // Skip to: 17098 |
3855 | /* 5124 */ MCD::OPC_Decode, 204, 6, 245, 1, // Opcode: ANDI_B |
3856 | /* 5129 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5144 |
3857 | /* 5134 */ MCD::OPC_CheckPredicate, 30, 183, 46, 0, // Skip to: 17098 |
3858 | /* 5139 */ MCD::OPC_Decode, 141, 18, 245, 1, // Opcode: ORI_B |
3859 | /* 5144 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5159 |
3860 | /* 5149 */ MCD::OPC_CheckPredicate, 30, 168, 46, 0, // Skip to: 17098 |
3861 | /* 5154 */ MCD::OPC_Decode, 129, 18, 245, 1, // Opcode: NORI_B |
3862 | /* 5159 */ MCD::OPC_FilterValue, 3, 158, 46, 0, // Skip to: 17098 |
3863 | /* 5164 */ MCD::OPC_CheckPredicate, 30, 153, 46, 0, // Skip to: 17098 |
3864 | /* 5169 */ MCD::OPC_Decode, 195, 22, 245, 1, // Opcode: XORI_B |
3865 | /* 5174 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 5227 |
3866 | /* 5179 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... |
3867 | /* 5182 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5197 |
3868 | /* 5187 */ MCD::OPC_CheckPredicate, 30, 130, 46, 0, // Skip to: 17098 |
3869 | /* 5192 */ MCD::OPC_Decode, 250, 7, 246, 1, // Opcode: BMNZI_B |
3870 | /* 5197 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5212 |
3871 | /* 5202 */ MCD::OPC_CheckPredicate, 30, 115, 46, 0, // Skip to: 17098 |
3872 | /* 5207 */ MCD::OPC_Decode, 252, 7, 246, 1, // Opcode: BMZI_B |
3873 | /* 5212 */ MCD::OPC_FilterValue, 2, 105, 46, 0, // Skip to: 17098 |
3874 | /* 5217 */ MCD::OPC_CheckPredicate, 30, 100, 46, 0, // Skip to: 17098 |
3875 | /* 5222 */ MCD::OPC_Decode, 166, 8, 246, 1, // Opcode: BSELI_B |
3876 | /* 5227 */ MCD::OPC_FilterValue, 2, 48, 0, 0, // Skip to: 5280 |
3877 | /* 5232 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... |
3878 | /* 5235 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5250 |
3879 | /* 5240 */ MCD::OPC_CheckPredicate, 30, 77, 46, 0, // Skip to: 17098 |
3880 | /* 5245 */ MCD::OPC_Decode, 223, 19, 245, 1, // Opcode: SHF_B |
3881 | /* 5250 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5265 |
3882 | /* 5255 */ MCD::OPC_CheckPredicate, 30, 62, 46, 0, // Skip to: 17098 |
3883 | /* 5260 */ MCD::OPC_Decode, 224, 19, 247, 1, // Opcode: SHF_H |
3884 | /* 5265 */ MCD::OPC_FilterValue, 2, 52, 46, 0, // Skip to: 17098 |
3885 | /* 5270 */ MCD::OPC_CheckPredicate, 30, 47, 46, 0, // Skip to: 17098 |
3886 | /* 5275 */ MCD::OPC_Decode, 225, 19, 248, 1, // Opcode: SHF_W |
3887 | /* 5280 */ MCD::OPC_FilterValue, 6, 107, 1, 0, // Skip to: 5648 |
3888 | /* 5285 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
3889 | /* 5288 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5303 |
3890 | /* 5293 */ MCD::OPC_CheckPredicate, 30, 24, 46, 0, // Skip to: 17098 |
3891 | /* 5298 */ MCD::OPC_Decode, 172, 6, 249, 1, // Opcode: ADDVI_B |
3892 | /* 5303 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5318 |
3893 | /* 5308 */ MCD::OPC_CheckPredicate, 30, 9, 46, 0, // Skip to: 17098 |
3894 | /* 5313 */ MCD::OPC_Decode, 174, 6, 250, 1, // Opcode: ADDVI_H |
3895 | /* 5318 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5333 |
3896 | /* 5323 */ MCD::OPC_CheckPredicate, 30, 250, 45, 0, // Skip to: 17098 |
3897 | /* 5328 */ MCD::OPC_Decode, 175, 6, 251, 1, // Opcode: ADDVI_W |
3898 | /* 5333 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5348 |
3899 | /* 5338 */ MCD::OPC_CheckPredicate, 30, 235, 45, 0, // Skip to: 17098 |
3900 | /* 5343 */ MCD::OPC_Decode, 173, 6, 252, 1, // Opcode: ADDVI_D |
3901 | /* 5348 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 5363 |
3902 | /* 5353 */ MCD::OPC_CheckPredicate, 30, 220, 45, 0, // Skip to: 17098 |
3903 | /* 5358 */ MCD::OPC_Decode, 164, 21, 249, 1, // Opcode: SUBVI_B |
3904 | /* 5363 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 5378 |
3905 | /* 5368 */ MCD::OPC_CheckPredicate, 30, 205, 45, 0, // Skip to: 17098 |
3906 | /* 5373 */ MCD::OPC_Decode, 166, 21, 250, 1, // Opcode: SUBVI_H |
3907 | /* 5378 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 5393 |
3908 | /* 5383 */ MCD::OPC_CheckPredicate, 30, 190, 45, 0, // Skip to: 17098 |
3909 | /* 5388 */ MCD::OPC_Decode, 167, 21, 251, 1, // Opcode: SUBVI_W |
3910 | /* 5393 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 5408 |
3911 | /* 5398 */ MCD::OPC_CheckPredicate, 30, 175, 45, 0, // Skip to: 17098 |
3912 | /* 5403 */ MCD::OPC_Decode, 165, 21, 252, 1, // Opcode: SUBVI_D |
3913 | /* 5408 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5423 |
3914 | /* 5413 */ MCD::OPC_CheckPredicate, 30, 160, 45, 0, // Skip to: 17098 |
3915 | /* 5418 */ MCD::OPC_Decode, 232, 15, 249, 1, // Opcode: MAXI_S_B |
3916 | /* 5423 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5438 |
3917 | /* 5428 */ MCD::OPC_CheckPredicate, 30, 145, 45, 0, // Skip to: 17098 |
3918 | /* 5433 */ MCD::OPC_Decode, 234, 15, 250, 1, // Opcode: MAXI_S_H |
3919 | /* 5438 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5453 |
3920 | /* 5443 */ MCD::OPC_CheckPredicate, 30, 130, 45, 0, // Skip to: 17098 |
3921 | /* 5448 */ MCD::OPC_Decode, 235, 15, 251, 1, // Opcode: MAXI_S_W |
3922 | /* 5453 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5468 |
3923 | /* 5458 */ MCD::OPC_CheckPredicate, 30, 115, 45, 0, // Skip to: 17098 |
3924 | /* 5463 */ MCD::OPC_Decode, 233, 15, 252, 1, // Opcode: MAXI_S_D |
3925 | /* 5468 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5483 |
3926 | /* 5473 */ MCD::OPC_CheckPredicate, 30, 100, 45, 0, // Skip to: 17098 |
3927 | /* 5478 */ MCD::OPC_Decode, 236, 15, 249, 1, // Opcode: MAXI_U_B |
3928 | /* 5483 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5498 |
3929 | /* 5488 */ MCD::OPC_CheckPredicate, 30, 85, 45, 0, // Skip to: 17098 |
3930 | /* 5493 */ MCD::OPC_Decode, 238, 15, 250, 1, // Opcode: MAXI_U_H |
3931 | /* 5498 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5513 |
3932 | /* 5503 */ MCD::OPC_CheckPredicate, 30, 70, 45, 0, // Skip to: 17098 |
3933 | /* 5508 */ MCD::OPC_Decode, 239, 15, 251, 1, // Opcode: MAXI_U_W |
3934 | /* 5513 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5528 |
3935 | /* 5518 */ MCD::OPC_CheckPredicate, 30, 55, 45, 0, // Skip to: 17098 |
3936 | /* 5523 */ MCD::OPC_Decode, 237, 15, 252, 1, // Opcode: MAXI_U_D |
3937 | /* 5528 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5543 |
3938 | /* 5533 */ MCD::OPC_CheckPredicate, 30, 40, 45, 0, // Skip to: 17098 |
3939 | /* 5538 */ MCD::OPC_Decode, 163, 16, 249, 1, // Opcode: MINI_S_B |
3940 | /* 5543 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5558 |
3941 | /* 5548 */ MCD::OPC_CheckPredicate, 30, 25, 45, 0, // Skip to: 17098 |
3942 | /* 5553 */ MCD::OPC_Decode, 165, 16, 250, 1, // Opcode: MINI_S_H |
3943 | /* 5558 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5573 |
3944 | /* 5563 */ MCD::OPC_CheckPredicate, 30, 10, 45, 0, // Skip to: 17098 |
3945 | /* 5568 */ MCD::OPC_Decode, 166, 16, 251, 1, // Opcode: MINI_S_W |
3946 | /* 5573 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5588 |
3947 | /* 5578 */ MCD::OPC_CheckPredicate, 30, 251, 44, 0, // Skip to: 17098 |
3948 | /* 5583 */ MCD::OPC_Decode, 164, 16, 252, 1, // Opcode: MINI_S_D |
3949 | /* 5588 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5603 |
3950 | /* 5593 */ MCD::OPC_CheckPredicate, 30, 236, 44, 0, // Skip to: 17098 |
3951 | /* 5598 */ MCD::OPC_Decode, 167, 16, 249, 1, // Opcode: MINI_U_B |
3952 | /* 5603 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5618 |
3953 | /* 5608 */ MCD::OPC_CheckPredicate, 30, 221, 44, 0, // Skip to: 17098 |
3954 | /* 5613 */ MCD::OPC_Decode, 169, 16, 250, 1, // Opcode: MINI_U_H |
3955 | /* 5618 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5633 |
3956 | /* 5623 */ MCD::OPC_CheckPredicate, 30, 206, 44, 0, // Skip to: 17098 |
3957 | /* 5628 */ MCD::OPC_Decode, 170, 16, 251, 1, // Opcode: MINI_U_W |
3958 | /* 5633 */ MCD::OPC_FilterValue, 23, 196, 44, 0, // Skip to: 17098 |
3959 | /* 5638 */ MCD::OPC_CheckPredicate, 30, 191, 44, 0, // Skip to: 17098 |
3960 | /* 5643 */ MCD::OPC_Decode, 168, 16, 252, 1, // Opcode: MINI_U_D |
3961 | /* 5648 */ MCD::OPC_FilterValue, 7, 107, 1, 0, // Skip to: 6016 |
3962 | /* 5653 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
3963 | /* 5656 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5671 |
3964 | /* 5661 */ MCD::OPC_CheckPredicate, 30, 168, 44, 0, // Skip to: 17098 |
3965 | /* 5666 */ MCD::OPC_Decode, 209, 8, 249, 1, // Opcode: CEQI_B |
3966 | /* 5671 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5686 |
3967 | /* 5676 */ MCD::OPC_CheckPredicate, 30, 153, 44, 0, // Skip to: 17098 |
3968 | /* 5681 */ MCD::OPC_Decode, 211, 8, 250, 1, // Opcode: CEQI_H |
3969 | /* 5686 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5701 |
3970 | /* 5691 */ MCD::OPC_CheckPredicate, 30, 138, 44, 0, // Skip to: 17098 |
3971 | /* 5696 */ MCD::OPC_Decode, 212, 8, 251, 1, // Opcode: CEQI_W |
3972 | /* 5701 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5716 |
3973 | /* 5706 */ MCD::OPC_CheckPredicate, 30, 123, 44, 0, // Skip to: 17098 |
3974 | /* 5711 */ MCD::OPC_Decode, 210, 8, 252, 1, // Opcode: CEQI_D |
3975 | /* 5716 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5731 |
3976 | /* 5721 */ MCD::OPC_CheckPredicate, 30, 108, 44, 0, // Skip to: 17098 |
3977 | /* 5726 */ MCD::OPC_Decode, 249, 8, 249, 1, // Opcode: CLTI_S_B |
3978 | /* 5731 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5746 |
3979 | /* 5736 */ MCD::OPC_CheckPredicate, 30, 93, 44, 0, // Skip to: 17098 |
3980 | /* 5741 */ MCD::OPC_Decode, 251, 8, 250, 1, // Opcode: CLTI_S_H |
3981 | /* 5746 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5761 |
3982 | /* 5751 */ MCD::OPC_CheckPredicate, 30, 78, 44, 0, // Skip to: 17098 |
3983 | /* 5756 */ MCD::OPC_Decode, 252, 8, 251, 1, // Opcode: CLTI_S_W |
3984 | /* 5761 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5776 |
3985 | /* 5766 */ MCD::OPC_CheckPredicate, 30, 63, 44, 0, // Skip to: 17098 |
3986 | /* 5771 */ MCD::OPC_Decode, 250, 8, 252, 1, // Opcode: CLTI_S_D |
3987 | /* 5776 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5791 |
3988 | /* 5781 */ MCD::OPC_CheckPredicate, 30, 48, 44, 0, // Skip to: 17098 |
3989 | /* 5786 */ MCD::OPC_Decode, 253, 8, 249, 1, // Opcode: CLTI_U_B |
3990 | /* 5791 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5806 |
3991 | /* 5796 */ MCD::OPC_CheckPredicate, 30, 33, 44, 0, // Skip to: 17098 |
3992 | /* 5801 */ MCD::OPC_Decode, 255, 8, 250, 1, // Opcode: CLTI_U_H |
3993 | /* 5806 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5821 |
3994 | /* 5811 */ MCD::OPC_CheckPredicate, 30, 18, 44, 0, // Skip to: 17098 |
3995 | /* 5816 */ MCD::OPC_Decode, 128, 9, 251, 1, // Opcode: CLTI_U_W |
3996 | /* 5821 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5836 |
3997 | /* 5826 */ MCD::OPC_CheckPredicate, 30, 3, 44, 0, // Skip to: 17098 |
3998 | /* 5831 */ MCD::OPC_Decode, 254, 8, 252, 1, // Opcode: CLTI_U_D |
3999 | /* 5836 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5851 |
4000 | /* 5841 */ MCD::OPC_CheckPredicate, 30, 244, 43, 0, // Skip to: 17098 |
4001 | /* 5846 */ MCD::OPC_Decode, 229, 8, 249, 1, // Opcode: CLEI_S_B |
4002 | /* 5851 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5866 |
4003 | /* 5856 */ MCD::OPC_CheckPredicate, 30, 229, 43, 0, // Skip to: 17098 |
4004 | /* 5861 */ MCD::OPC_Decode, 231, 8, 250, 1, // Opcode: CLEI_S_H |
4005 | /* 5866 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5881 |
4006 | /* 5871 */ MCD::OPC_CheckPredicate, 30, 214, 43, 0, // Skip to: 17098 |
4007 | /* 5876 */ MCD::OPC_Decode, 232, 8, 251, 1, // Opcode: CLEI_S_W |
4008 | /* 5881 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5896 |
4009 | /* 5886 */ MCD::OPC_CheckPredicate, 30, 199, 43, 0, // Skip to: 17098 |
4010 | /* 5891 */ MCD::OPC_Decode, 230, 8, 252, 1, // Opcode: CLEI_S_D |
4011 | /* 5896 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5911 |
4012 | /* 5901 */ MCD::OPC_CheckPredicate, 30, 184, 43, 0, // Skip to: 17098 |
4013 | /* 5906 */ MCD::OPC_Decode, 233, 8, 249, 1, // Opcode: CLEI_U_B |
4014 | /* 5911 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5926 |
4015 | /* 5916 */ MCD::OPC_CheckPredicate, 30, 169, 43, 0, // Skip to: 17098 |
4016 | /* 5921 */ MCD::OPC_Decode, 235, 8, 250, 1, // Opcode: CLEI_U_H |
4017 | /* 5926 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5941 |
4018 | /* 5931 */ MCD::OPC_CheckPredicate, 30, 154, 43, 0, // Skip to: 17098 |
4019 | /* 5936 */ MCD::OPC_Decode, 236, 8, 251, 1, // Opcode: CLEI_U_W |
4020 | /* 5941 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 5956 |
4021 | /* 5946 */ MCD::OPC_CheckPredicate, 30, 139, 43, 0, // Skip to: 17098 |
4022 | /* 5951 */ MCD::OPC_Decode, 234, 8, 252, 1, // Opcode: CLEI_U_D |
4023 | /* 5956 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 5971 |
4024 | /* 5961 */ MCD::OPC_CheckPredicate, 30, 124, 43, 0, // Skip to: 17098 |
4025 | /* 5966 */ MCD::OPC_Decode, 220, 14, 253, 1, // Opcode: LDI_B |
4026 | /* 5971 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 5986 |
4027 | /* 5976 */ MCD::OPC_CheckPredicate, 30, 109, 43, 0, // Skip to: 17098 |
4028 | /* 5981 */ MCD::OPC_Decode, 222, 14, 254, 1, // Opcode: LDI_H |
4029 | /* 5986 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 6001 |
4030 | /* 5991 */ MCD::OPC_CheckPredicate, 30, 94, 43, 0, // Skip to: 17098 |
4031 | /* 5996 */ MCD::OPC_Decode, 223, 14, 255, 1, // Opcode: LDI_W |
4032 | /* 6001 */ MCD::OPC_FilterValue, 27, 84, 43, 0, // Skip to: 17098 |
4033 | /* 6006 */ MCD::OPC_CheckPredicate, 30, 79, 43, 0, // Skip to: 17098 |
4034 | /* 6011 */ MCD::OPC_Decode, 221, 14, 128, 2, // Opcode: LDI_D |
4035 | /* 6016 */ MCD::OPC_FilterValue, 9, 155, 2, 0, // Skip to: 6688 |
4036 | /* 6021 */ MCD::OPC_ExtractField, 22, 4, // Inst{25-22} ... |
4037 | /* 6024 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6039 |
4038 | /* 6029 */ MCD::OPC_CheckPredicate, 30, 56, 43, 0, // Skip to: 17098 |
4039 | /* 6034 */ MCD::OPC_Decode, 164, 20, 129, 2, // Opcode: SLLI_D |
4040 | /* 6039 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 6107 |
4041 | /* 6044 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4042 | /* 6047 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6062 |
4043 | /* 6052 */ MCD::OPC_CheckPredicate, 30, 33, 43, 0, // Skip to: 17098 |
4044 | /* 6057 */ MCD::OPC_Decode, 166, 20, 251, 1, // Opcode: SLLI_W |
4045 | /* 6062 */ MCD::OPC_FilterValue, 1, 23, 43, 0, // Skip to: 17098 |
4046 | /* 6067 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4047 | /* 6070 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6085 |
4048 | /* 6075 */ MCD::OPC_CheckPredicate, 30, 10, 43, 0, // Skip to: 17098 |
4049 | /* 6080 */ MCD::OPC_Decode, 165, 20, 130, 2, // Opcode: SLLI_H |
4050 | /* 6085 */ MCD::OPC_FilterValue, 1, 0, 43, 0, // Skip to: 17098 |
4051 | /* 6090 */ MCD::OPC_CheckPredicate, 30, 251, 42, 0, // Skip to: 17098 |
4052 | /* 6095 */ MCD::OPC_CheckField, 19, 1, 0, 244, 42, 0, // Skip to: 17098 |
4053 | /* 6102 */ MCD::OPC_Decode, 163, 20, 131, 2, // Opcode: SLLI_B |
4054 | /* 6107 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6122 |
4055 | /* 6112 */ MCD::OPC_CheckPredicate, 30, 229, 42, 0, // Skip to: 17098 |
4056 | /* 6117 */ MCD::OPC_Decode, 199, 20, 129, 2, // Opcode: SRAI_D |
4057 | /* 6122 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 6190 |
4058 | /* 6127 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4059 | /* 6130 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6145 |
4060 | /* 6135 */ MCD::OPC_CheckPredicate, 30, 206, 42, 0, // Skip to: 17098 |
4061 | /* 6140 */ MCD::OPC_Decode, 201, 20, 251, 1, // Opcode: SRAI_W |
4062 | /* 6145 */ MCD::OPC_FilterValue, 1, 196, 42, 0, // Skip to: 17098 |
4063 | /* 6150 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4064 | /* 6153 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6168 |
4065 | /* 6158 */ MCD::OPC_CheckPredicate, 30, 183, 42, 0, // Skip to: 17098 |
4066 | /* 6163 */ MCD::OPC_Decode, 200, 20, 130, 2, // Opcode: SRAI_H |
4067 | /* 6168 */ MCD::OPC_FilterValue, 1, 173, 42, 0, // Skip to: 17098 |
4068 | /* 6173 */ MCD::OPC_CheckPredicate, 30, 168, 42, 0, // Skip to: 17098 |
4069 | /* 6178 */ MCD::OPC_CheckField, 19, 1, 0, 161, 42, 0, // Skip to: 17098 |
4070 | /* 6185 */ MCD::OPC_Decode, 198, 20, 131, 2, // Opcode: SRAI_B |
4071 | /* 6190 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6205 |
4072 | /* 6195 */ MCD::OPC_CheckPredicate, 30, 146, 42, 0, // Skip to: 17098 |
4073 | /* 6200 */ MCD::OPC_Decode, 221, 20, 129, 2, // Opcode: SRLI_D |
4074 | /* 6205 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 6273 |
4075 | /* 6210 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4076 | /* 6213 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6228 |
4077 | /* 6218 */ MCD::OPC_CheckPredicate, 30, 123, 42, 0, // Skip to: 17098 |
4078 | /* 6223 */ MCD::OPC_Decode, 223, 20, 251, 1, // Opcode: SRLI_W |
4079 | /* 6228 */ MCD::OPC_FilterValue, 1, 113, 42, 0, // Skip to: 17098 |
4080 | /* 6233 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4081 | /* 6236 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6251 |
4082 | /* 6241 */ MCD::OPC_CheckPredicate, 30, 100, 42, 0, // Skip to: 17098 |
4083 | /* 6246 */ MCD::OPC_Decode, 222, 20, 130, 2, // Opcode: SRLI_H |
4084 | /* 6251 */ MCD::OPC_FilterValue, 1, 90, 42, 0, // Skip to: 17098 |
4085 | /* 6256 */ MCD::OPC_CheckPredicate, 30, 85, 42, 0, // Skip to: 17098 |
4086 | /* 6261 */ MCD::OPC_CheckField, 19, 1, 0, 78, 42, 0, // Skip to: 17098 |
4087 | /* 6268 */ MCD::OPC_Decode, 220, 20, 131, 2, // Opcode: SRLI_B |
4088 | /* 6273 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6288 |
4089 | /* 6278 */ MCD::OPC_CheckPredicate, 30, 63, 42, 0, // Skip to: 17098 |
4090 | /* 6283 */ MCD::OPC_Decode, 151, 7, 129, 2, // Opcode: BCLRI_D |
4091 | /* 6288 */ MCD::OPC_FilterValue, 7, 63, 0, 0, // Skip to: 6356 |
4092 | /* 6293 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4093 | /* 6296 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6311 |
4094 | /* 6301 */ MCD::OPC_CheckPredicate, 30, 40, 42, 0, // Skip to: 17098 |
4095 | /* 6306 */ MCD::OPC_Decode, 153, 7, 251, 1, // Opcode: BCLRI_W |
4096 | /* 6311 */ MCD::OPC_FilterValue, 1, 30, 42, 0, // Skip to: 17098 |
4097 | /* 6316 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4098 | /* 6319 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6334 |
4099 | /* 6324 */ MCD::OPC_CheckPredicate, 30, 17, 42, 0, // Skip to: 17098 |
4100 | /* 6329 */ MCD::OPC_Decode, 152, 7, 130, 2, // Opcode: BCLRI_H |
4101 | /* 6334 */ MCD::OPC_FilterValue, 1, 7, 42, 0, // Skip to: 17098 |
4102 | /* 6339 */ MCD::OPC_CheckPredicate, 30, 2, 42, 0, // Skip to: 17098 |
4103 | /* 6344 */ MCD::OPC_CheckField, 19, 1, 0, 251, 41, 0, // Skip to: 17098 |
4104 | /* 6351 */ MCD::OPC_Decode, 150, 7, 131, 2, // Opcode: BCLRI_B |
4105 | /* 6356 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 6371 |
4106 | /* 6361 */ MCD::OPC_CheckPredicate, 30, 236, 41, 0, // Skip to: 17098 |
4107 | /* 6366 */ MCD::OPC_Decode, 169, 8, 129, 2, // Opcode: BSETI_D |
4108 | /* 6371 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 6439 |
4109 | /* 6376 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4110 | /* 6379 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6394 |
4111 | /* 6384 */ MCD::OPC_CheckPredicate, 30, 213, 41, 0, // Skip to: 17098 |
4112 | /* 6389 */ MCD::OPC_Decode, 171, 8, 251, 1, // Opcode: BSETI_W |
4113 | /* 6394 */ MCD::OPC_FilterValue, 1, 203, 41, 0, // Skip to: 17098 |
4114 | /* 6399 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4115 | /* 6402 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6417 |
4116 | /* 6407 */ MCD::OPC_CheckPredicate, 30, 190, 41, 0, // Skip to: 17098 |
4117 | /* 6412 */ MCD::OPC_Decode, 170, 8, 130, 2, // Opcode: BSETI_H |
4118 | /* 6417 */ MCD::OPC_FilterValue, 1, 180, 41, 0, // Skip to: 17098 |
4119 | /* 6422 */ MCD::OPC_CheckPredicate, 30, 175, 41, 0, // Skip to: 17098 |
4120 | /* 6427 */ MCD::OPC_CheckField, 19, 1, 0, 168, 41, 0, // Skip to: 17098 |
4121 | /* 6434 */ MCD::OPC_Decode, 168, 8, 131, 2, // Opcode: BSETI_B |
4122 | /* 6439 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 6454 |
4123 | /* 6444 */ MCD::OPC_CheckPredicate, 30, 153, 41, 0, // Skip to: 17098 |
4124 | /* 6449 */ MCD::OPC_Decode, 132, 8, 129, 2, // Opcode: BNEGI_D |
4125 | /* 6454 */ MCD::OPC_FilterValue, 11, 63, 0, 0, // Skip to: 6522 |
4126 | /* 6459 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4127 | /* 6462 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6477 |
4128 | /* 6467 */ MCD::OPC_CheckPredicate, 30, 130, 41, 0, // Skip to: 17098 |
4129 | /* 6472 */ MCD::OPC_Decode, 134, 8, 251, 1, // Opcode: BNEGI_W |
4130 | /* 6477 */ MCD::OPC_FilterValue, 1, 120, 41, 0, // Skip to: 17098 |
4131 | /* 6482 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4132 | /* 6485 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6500 |
4133 | /* 6490 */ MCD::OPC_CheckPredicate, 30, 107, 41, 0, // Skip to: 17098 |
4134 | /* 6495 */ MCD::OPC_Decode, 133, 8, 130, 2, // Opcode: BNEGI_H |
4135 | /* 6500 */ MCD::OPC_FilterValue, 1, 97, 41, 0, // Skip to: 17098 |
4136 | /* 6505 */ MCD::OPC_CheckPredicate, 30, 92, 41, 0, // Skip to: 17098 |
4137 | /* 6510 */ MCD::OPC_CheckField, 19, 1, 0, 85, 41, 0, // Skip to: 17098 |
4138 | /* 6517 */ MCD::OPC_Decode, 131, 8, 131, 2, // Opcode: BNEGI_B |
4139 | /* 6522 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 6537 |
4140 | /* 6527 */ MCD::OPC_CheckPredicate, 30, 70, 41, 0, // Skip to: 17098 |
4141 | /* 6532 */ MCD::OPC_Decode, 203, 7, 132, 2, // Opcode: BINSLI_D |
4142 | /* 6537 */ MCD::OPC_FilterValue, 13, 63, 0, 0, // Skip to: 6605 |
4143 | /* 6542 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4144 | /* 6545 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6560 |
4145 | /* 6550 */ MCD::OPC_CheckPredicate, 30, 47, 41, 0, // Skip to: 17098 |
4146 | /* 6555 */ MCD::OPC_Decode, 205, 7, 133, 2, // Opcode: BINSLI_W |
4147 | /* 6560 */ MCD::OPC_FilterValue, 1, 37, 41, 0, // Skip to: 17098 |
4148 | /* 6565 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4149 | /* 6568 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6583 |
4150 | /* 6573 */ MCD::OPC_CheckPredicate, 30, 24, 41, 0, // Skip to: 17098 |
4151 | /* 6578 */ MCD::OPC_Decode, 204, 7, 134, 2, // Opcode: BINSLI_H |
4152 | /* 6583 */ MCD::OPC_FilterValue, 1, 14, 41, 0, // Skip to: 17098 |
4153 | /* 6588 */ MCD::OPC_CheckPredicate, 30, 9, 41, 0, // Skip to: 17098 |
4154 | /* 6593 */ MCD::OPC_CheckField, 19, 1, 0, 2, 41, 0, // Skip to: 17098 |
4155 | /* 6600 */ MCD::OPC_Decode, 202, 7, 135, 2, // Opcode: BINSLI_B |
4156 | /* 6605 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6620 |
4157 | /* 6610 */ MCD::OPC_CheckPredicate, 30, 243, 40, 0, // Skip to: 17098 |
4158 | /* 6615 */ MCD::OPC_Decode, 211, 7, 132, 2, // Opcode: BINSRI_D |
4159 | /* 6620 */ MCD::OPC_FilterValue, 15, 233, 40, 0, // Skip to: 17098 |
4160 | /* 6625 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4161 | /* 6628 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6643 |
4162 | /* 6633 */ MCD::OPC_CheckPredicate, 30, 220, 40, 0, // Skip to: 17098 |
4163 | /* 6638 */ MCD::OPC_Decode, 213, 7, 133, 2, // Opcode: BINSRI_W |
4164 | /* 6643 */ MCD::OPC_FilterValue, 1, 210, 40, 0, // Skip to: 17098 |
4165 | /* 6648 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4166 | /* 6651 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6666 |
4167 | /* 6656 */ MCD::OPC_CheckPredicate, 30, 197, 40, 0, // Skip to: 17098 |
4168 | /* 6661 */ MCD::OPC_Decode, 212, 7, 134, 2, // Opcode: BINSRI_H |
4169 | /* 6666 */ MCD::OPC_FilterValue, 1, 187, 40, 0, // Skip to: 17098 |
4170 | /* 6671 */ MCD::OPC_CheckPredicate, 30, 182, 40, 0, // Skip to: 17098 |
4171 | /* 6676 */ MCD::OPC_CheckField, 19, 1, 0, 175, 40, 0, // Skip to: 17098 |
4172 | /* 6683 */ MCD::OPC_Decode, 210, 7, 135, 2, // Opcode: BINSRI_B |
4173 | /* 6688 */ MCD::OPC_FilterValue, 10, 79, 1, 0, // Skip to: 7028 |
4174 | /* 6693 */ MCD::OPC_ExtractField, 22, 4, // Inst{25-22} ... |
4175 | /* 6696 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6711 |
4176 | /* 6701 */ MCD::OPC_CheckPredicate, 30, 152, 40, 0, // Skip to: 17098 |
4177 | /* 6706 */ MCD::OPC_Decode, 144, 19, 129, 2, // Opcode: SAT_S_D |
4178 | /* 6711 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 6779 |
4179 | /* 6716 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4180 | /* 6719 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6734 |
4181 | /* 6724 */ MCD::OPC_CheckPredicate, 30, 129, 40, 0, // Skip to: 17098 |
4182 | /* 6729 */ MCD::OPC_Decode, 146, 19, 251, 1, // Opcode: SAT_S_W |
4183 | /* 6734 */ MCD::OPC_FilterValue, 1, 119, 40, 0, // Skip to: 17098 |
4184 | /* 6739 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4185 | /* 6742 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6757 |
4186 | /* 6747 */ MCD::OPC_CheckPredicate, 30, 106, 40, 0, // Skip to: 17098 |
4187 | /* 6752 */ MCD::OPC_Decode, 145, 19, 130, 2, // Opcode: SAT_S_H |
4188 | /* 6757 */ MCD::OPC_FilterValue, 1, 96, 40, 0, // Skip to: 17098 |
4189 | /* 6762 */ MCD::OPC_CheckPredicate, 30, 91, 40, 0, // Skip to: 17098 |
4190 | /* 6767 */ MCD::OPC_CheckField, 19, 1, 0, 84, 40, 0, // Skip to: 17098 |
4191 | /* 6774 */ MCD::OPC_Decode, 143, 19, 131, 2, // Opcode: SAT_S_B |
4192 | /* 6779 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6794 |
4193 | /* 6784 */ MCD::OPC_CheckPredicate, 30, 69, 40, 0, // Skip to: 17098 |
4194 | /* 6789 */ MCD::OPC_Decode, 148, 19, 129, 2, // Opcode: SAT_U_D |
4195 | /* 6794 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 6862 |
4196 | /* 6799 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4197 | /* 6802 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6817 |
4198 | /* 6807 */ MCD::OPC_CheckPredicate, 30, 46, 40, 0, // Skip to: 17098 |
4199 | /* 6812 */ MCD::OPC_Decode, 150, 19, 251, 1, // Opcode: SAT_U_W |
4200 | /* 6817 */ MCD::OPC_FilterValue, 1, 36, 40, 0, // Skip to: 17098 |
4201 | /* 6822 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4202 | /* 6825 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6840 |
4203 | /* 6830 */ MCD::OPC_CheckPredicate, 30, 23, 40, 0, // Skip to: 17098 |
4204 | /* 6835 */ MCD::OPC_Decode, 149, 19, 130, 2, // Opcode: SAT_U_H |
4205 | /* 6840 */ MCD::OPC_FilterValue, 1, 13, 40, 0, // Skip to: 17098 |
4206 | /* 6845 */ MCD::OPC_CheckPredicate, 30, 8, 40, 0, // Skip to: 17098 |
4207 | /* 6850 */ MCD::OPC_CheckField, 19, 1, 0, 1, 40, 0, // Skip to: 17098 |
4208 | /* 6857 */ MCD::OPC_Decode, 147, 19, 131, 2, // Opcode: SAT_U_B |
4209 | /* 6862 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6877 |
4210 | /* 6867 */ MCD::OPC_CheckPredicate, 30, 242, 39, 0, // Skip to: 17098 |
4211 | /* 6872 */ MCD::OPC_Decode, 203, 20, 129, 2, // Opcode: SRARI_D |
4212 | /* 6877 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 6945 |
4213 | /* 6882 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4214 | /* 6885 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6900 |
4215 | /* 6890 */ MCD::OPC_CheckPredicate, 30, 219, 39, 0, // Skip to: 17098 |
4216 | /* 6895 */ MCD::OPC_Decode, 205, 20, 251, 1, // Opcode: SRARI_W |
4217 | /* 6900 */ MCD::OPC_FilterValue, 1, 209, 39, 0, // Skip to: 17098 |
4218 | /* 6905 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4219 | /* 6908 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6923 |
4220 | /* 6913 */ MCD::OPC_CheckPredicate, 30, 196, 39, 0, // Skip to: 17098 |
4221 | /* 6918 */ MCD::OPC_Decode, 204, 20, 130, 2, // Opcode: SRARI_H |
4222 | /* 6923 */ MCD::OPC_FilterValue, 1, 186, 39, 0, // Skip to: 17098 |
4223 | /* 6928 */ MCD::OPC_CheckPredicate, 30, 181, 39, 0, // Skip to: 17098 |
4224 | /* 6933 */ MCD::OPC_CheckField, 19, 1, 0, 174, 39, 0, // Skip to: 17098 |
4225 | /* 6940 */ MCD::OPC_Decode, 202, 20, 131, 2, // Opcode: SRARI_B |
4226 | /* 6945 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6960 |
4227 | /* 6950 */ MCD::OPC_CheckPredicate, 30, 159, 39, 0, // Skip to: 17098 |
4228 | /* 6955 */ MCD::OPC_Decode, 225, 20, 129, 2, // Opcode: SRLRI_D |
4229 | /* 6960 */ MCD::OPC_FilterValue, 7, 149, 39, 0, // Skip to: 17098 |
4230 | /* 6965 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... |
4231 | /* 6968 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6983 |
4232 | /* 6973 */ MCD::OPC_CheckPredicate, 30, 136, 39, 0, // Skip to: 17098 |
4233 | /* 6978 */ MCD::OPC_Decode, 227, 20, 251, 1, // Opcode: SRLRI_W |
4234 | /* 6983 */ MCD::OPC_FilterValue, 1, 126, 39, 0, // Skip to: 17098 |
4235 | /* 6988 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... |
4236 | /* 6991 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7006 |
4237 | /* 6996 */ MCD::OPC_CheckPredicate, 30, 113, 39, 0, // Skip to: 17098 |
4238 | /* 7001 */ MCD::OPC_Decode, 226, 20, 130, 2, // Opcode: SRLRI_H |
4239 | /* 7006 */ MCD::OPC_FilterValue, 1, 103, 39, 0, // Skip to: 17098 |
4240 | /* 7011 */ MCD::OPC_CheckPredicate, 30, 98, 39, 0, // Skip to: 17098 |
4241 | /* 7016 */ MCD::OPC_CheckField, 19, 1, 0, 91, 39, 0, // Skip to: 17098 |
4242 | /* 7023 */ MCD::OPC_Decode, 224, 20, 131, 2, // Opcode: SRLRI_B |
4243 | /* 7028 */ MCD::OPC_FilterValue, 13, 227, 1, 0, // Skip to: 7516 |
4244 | /* 7033 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4245 | /* 7036 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7051 |
4246 | /* 7041 */ MCD::OPC_CheckPredicate, 30, 68, 39, 0, // Skip to: 17098 |
4247 | /* 7046 */ MCD::OPC_Decode, 169, 20, 136, 2, // Opcode: SLL_B |
4248 | /* 7051 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7066 |
4249 | /* 7056 */ MCD::OPC_CheckPredicate, 30, 53, 39, 0, // Skip to: 17098 |
4250 | /* 7061 */ MCD::OPC_Decode, 171, 20, 137, 2, // Opcode: SLL_H |
4251 | /* 7066 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7081 |
4252 | /* 7071 */ MCD::OPC_CheckPredicate, 30, 38, 39, 0, // Skip to: 17098 |
4253 | /* 7076 */ MCD::OPC_Decode, 174, 20, 138, 2, // Opcode: SLL_W |
4254 | /* 7081 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7096 |
4255 | /* 7086 */ MCD::OPC_CheckPredicate, 30, 23, 39, 0, // Skip to: 17098 |
4256 | /* 7091 */ MCD::OPC_Decode, 170, 20, 139, 2, // Opcode: SLL_D |
4257 | /* 7096 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 7111 |
4258 | /* 7101 */ MCD::OPC_CheckPredicate, 30, 8, 39, 0, // Skip to: 17098 |
4259 | /* 7106 */ MCD::OPC_Decode, 212, 20, 136, 2, // Opcode: SRA_B |
4260 | /* 7111 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 7126 |
4261 | /* 7116 */ MCD::OPC_CheckPredicate, 30, 249, 38, 0, // Skip to: 17098 |
4262 | /* 7121 */ MCD::OPC_Decode, 214, 20, 137, 2, // Opcode: SRA_H |
4263 | /* 7126 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 7141 |
4264 | /* 7131 */ MCD::OPC_CheckPredicate, 30, 234, 38, 0, // Skip to: 17098 |
4265 | /* 7136 */ MCD::OPC_Decode, 216, 20, 138, 2, // Opcode: SRA_W |
4266 | /* 7141 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 7156 |
4267 | /* 7146 */ MCD::OPC_CheckPredicate, 30, 219, 38, 0, // Skip to: 17098 |
4268 | /* 7151 */ MCD::OPC_Decode, 213, 20, 139, 2, // Opcode: SRA_D |
4269 | /* 7156 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 7171 |
4270 | /* 7161 */ MCD::OPC_CheckPredicate, 30, 204, 38, 0, // Skip to: 17098 |
4271 | /* 7166 */ MCD::OPC_Decode, 234, 20, 136, 2, // Opcode: SRL_B |
4272 | /* 7171 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 7186 |
4273 | /* 7176 */ MCD::OPC_CheckPredicate, 30, 189, 38, 0, // Skip to: 17098 |
4274 | /* 7181 */ MCD::OPC_Decode, 236, 20, 137, 2, // Opcode: SRL_H |
4275 | /* 7186 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 7201 |
4276 | /* 7191 */ MCD::OPC_CheckPredicate, 30, 174, 38, 0, // Skip to: 17098 |
4277 | /* 7196 */ MCD::OPC_Decode, 238, 20, 138, 2, // Opcode: SRL_W |
4278 | /* 7201 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 7216 |
4279 | /* 7206 */ MCD::OPC_CheckPredicate, 30, 159, 38, 0, // Skip to: 17098 |
4280 | /* 7211 */ MCD::OPC_Decode, 235, 20, 139, 2, // Opcode: SRL_D |
4281 | /* 7216 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 7231 |
4282 | /* 7221 */ MCD::OPC_CheckPredicate, 30, 144, 38, 0, // Skip to: 17098 |
4283 | /* 7226 */ MCD::OPC_Decode, 154, 7, 136, 2, // Opcode: BCLR_B |
4284 | /* 7231 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 7246 |
4285 | /* 7236 */ MCD::OPC_CheckPredicate, 30, 129, 38, 0, // Skip to: 17098 |
4286 | /* 7241 */ MCD::OPC_Decode, 156, 7, 137, 2, // Opcode: BCLR_H |
4287 | /* 7246 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7261 |
4288 | /* 7251 */ MCD::OPC_CheckPredicate, 30, 114, 38, 0, // Skip to: 17098 |
4289 | /* 7256 */ MCD::OPC_Decode, 157, 7, 138, 2, // Opcode: BCLR_W |
4290 | /* 7261 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 7276 |
4291 | /* 7266 */ MCD::OPC_CheckPredicate, 30, 99, 38, 0, // Skip to: 17098 |
4292 | /* 7271 */ MCD::OPC_Decode, 155, 7, 139, 2, // Opcode: BCLR_D |
4293 | /* 7276 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 7291 |
4294 | /* 7281 */ MCD::OPC_CheckPredicate, 30, 84, 38, 0, // Skip to: 17098 |
4295 | /* 7286 */ MCD::OPC_Decode, 172, 8, 136, 2, // Opcode: BSET_B |
4296 | /* 7291 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 7306 |
4297 | /* 7296 */ MCD::OPC_CheckPredicate, 30, 69, 38, 0, // Skip to: 17098 |
4298 | /* 7301 */ MCD::OPC_Decode, 174, 8, 137, 2, // Opcode: BSET_H |
4299 | /* 7306 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 7321 |
4300 | /* 7311 */ MCD::OPC_CheckPredicate, 30, 54, 38, 0, // Skip to: 17098 |
4301 | /* 7316 */ MCD::OPC_Decode, 175, 8, 138, 2, // Opcode: BSET_W |
4302 | /* 7321 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 7336 |
4303 | /* 7326 */ MCD::OPC_CheckPredicate, 30, 39, 38, 0, // Skip to: 17098 |
4304 | /* 7331 */ MCD::OPC_Decode, 173, 8, 139, 2, // Opcode: BSET_D |
4305 | /* 7336 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 7351 |
4306 | /* 7341 */ MCD::OPC_CheckPredicate, 30, 24, 38, 0, // Skip to: 17098 |
4307 | /* 7346 */ MCD::OPC_Decode, 135, 8, 136, 2, // Opcode: BNEG_B |
4308 | /* 7351 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 7366 |
4309 | /* 7356 */ MCD::OPC_CheckPredicate, 30, 9, 38, 0, // Skip to: 17098 |
4310 | /* 7361 */ MCD::OPC_Decode, 137, 8, 137, 2, // Opcode: BNEG_H |
4311 | /* 7366 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 7381 |
4312 | /* 7371 */ MCD::OPC_CheckPredicate, 30, 250, 37, 0, // Skip to: 17098 |
4313 | /* 7376 */ MCD::OPC_Decode, 138, 8, 138, 2, // Opcode: BNEG_W |
4314 | /* 7381 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 7396 |
4315 | /* 7386 */ MCD::OPC_CheckPredicate, 30, 235, 37, 0, // Skip to: 17098 |
4316 | /* 7391 */ MCD::OPC_Decode, 136, 8, 139, 2, // Opcode: BNEG_D |
4317 | /* 7396 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 7411 |
4318 | /* 7401 */ MCD::OPC_CheckPredicate, 30, 220, 37, 0, // Skip to: 17098 |
4319 | /* 7406 */ MCD::OPC_Decode, 206, 7, 140, 2, // Opcode: BINSL_B |
4320 | /* 7411 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 7426 |
4321 | /* 7416 */ MCD::OPC_CheckPredicate, 30, 205, 37, 0, // Skip to: 17098 |
4322 | /* 7421 */ MCD::OPC_Decode, 208, 7, 141, 2, // Opcode: BINSL_H |
4323 | /* 7426 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 7441 |
4324 | /* 7431 */ MCD::OPC_CheckPredicate, 30, 190, 37, 0, // Skip to: 17098 |
4325 | /* 7436 */ MCD::OPC_Decode, 209, 7, 142, 2, // Opcode: BINSL_W |
4326 | /* 7441 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 7456 |
4327 | /* 7446 */ MCD::OPC_CheckPredicate, 30, 175, 37, 0, // Skip to: 17098 |
4328 | /* 7451 */ MCD::OPC_Decode, 207, 7, 143, 2, // Opcode: BINSL_D |
4329 | /* 7456 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 7471 |
4330 | /* 7461 */ MCD::OPC_CheckPredicate, 30, 160, 37, 0, // Skip to: 17098 |
4331 | /* 7466 */ MCD::OPC_Decode, 214, 7, 140, 2, // Opcode: BINSR_B |
4332 | /* 7471 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 7486 |
4333 | /* 7476 */ MCD::OPC_CheckPredicate, 30, 145, 37, 0, // Skip to: 17098 |
4334 | /* 7481 */ MCD::OPC_Decode, 216, 7, 141, 2, // Opcode: BINSR_H |
4335 | /* 7486 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 7501 |
4336 | /* 7491 */ MCD::OPC_CheckPredicate, 30, 130, 37, 0, // Skip to: 17098 |
4337 | /* 7496 */ MCD::OPC_Decode, 217, 7, 142, 2, // Opcode: BINSR_W |
4338 | /* 7501 */ MCD::OPC_FilterValue, 31, 120, 37, 0, // Skip to: 17098 |
4339 | /* 7506 */ MCD::OPC_CheckPredicate, 30, 115, 37, 0, // Skip to: 17098 |
4340 | /* 7511 */ MCD::OPC_Decode, 215, 7, 143, 2, // Opcode: BINSR_D |
4341 | /* 7516 */ MCD::OPC_FilterValue, 14, 227, 1, 0, // Skip to: 8004 |
4342 | /* 7521 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4343 | /* 7524 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7539 |
4344 | /* 7529 */ MCD::OPC_CheckPredicate, 30, 92, 37, 0, // Skip to: 17098 |
4345 | /* 7534 */ MCD::OPC_Decode, 176, 6, 136, 2, // Opcode: ADDV_B |
4346 | /* 7539 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7554 |
4347 | /* 7544 */ MCD::OPC_CheckPredicate, 30, 77, 37, 0, // Skip to: 17098 |
4348 | /* 7549 */ MCD::OPC_Decode, 178, 6, 137, 2, // Opcode: ADDV_H |
4349 | /* 7554 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7569 |
4350 | /* 7559 */ MCD::OPC_CheckPredicate, 30, 62, 37, 0, // Skip to: 17098 |
4351 | /* 7564 */ MCD::OPC_Decode, 179, 6, 138, 2, // Opcode: ADDV_W |
4352 | /* 7569 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7584 |
4353 | /* 7574 */ MCD::OPC_CheckPredicate, 30, 47, 37, 0, // Skip to: 17098 |
4354 | /* 7579 */ MCD::OPC_Decode, 177, 6, 139, 2, // Opcode: ADDV_D |
4355 | /* 7584 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 7599 |
4356 | /* 7589 */ MCD::OPC_CheckPredicate, 30, 32, 37, 0, // Skip to: 17098 |
4357 | /* 7594 */ MCD::OPC_Decode, 168, 21, 136, 2, // Opcode: SUBV_B |
4358 | /* 7599 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 7614 |
4359 | /* 7604 */ MCD::OPC_CheckPredicate, 30, 17, 37, 0, // Skip to: 17098 |
4360 | /* 7609 */ MCD::OPC_Decode, 170, 21, 137, 2, // Opcode: SUBV_H |
4361 | /* 7614 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 7629 |
4362 | /* 7619 */ MCD::OPC_CheckPredicate, 30, 2, 37, 0, // Skip to: 17098 |
4363 | /* 7624 */ MCD::OPC_Decode, 171, 21, 138, 2, // Opcode: SUBV_W |
4364 | /* 7629 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 7644 |
4365 | /* 7634 */ MCD::OPC_CheckPredicate, 30, 243, 36, 0, // Skip to: 17098 |
4366 | /* 7639 */ MCD::OPC_Decode, 169, 21, 139, 2, // Opcode: SUBV_D |
4367 | /* 7644 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 7659 |
4368 | /* 7649 */ MCD::OPC_CheckPredicate, 30, 228, 36, 0, // Skip to: 17098 |
4369 | /* 7654 */ MCD::OPC_Decode, 247, 15, 136, 2, // Opcode: MAX_S_B |
4370 | /* 7659 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 7674 |
4371 | /* 7664 */ MCD::OPC_CheckPredicate, 30, 213, 36, 0, // Skip to: 17098 |
4372 | /* 7669 */ MCD::OPC_Decode, 249, 15, 137, 2, // Opcode: MAX_S_H |
4373 | /* 7674 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 7689 |
4374 | /* 7679 */ MCD::OPC_CheckPredicate, 30, 198, 36, 0, // Skip to: 17098 |
4375 | /* 7684 */ MCD::OPC_Decode, 251, 15, 138, 2, // Opcode: MAX_S_W |
4376 | /* 7689 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 7704 |
4377 | /* 7694 */ MCD::OPC_CheckPredicate, 30, 183, 36, 0, // Skip to: 17098 |
4378 | /* 7699 */ MCD::OPC_Decode, 248, 15, 139, 2, // Opcode: MAX_S_D |
4379 | /* 7704 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 7719 |
4380 | /* 7709 */ MCD::OPC_CheckPredicate, 30, 168, 36, 0, // Skip to: 17098 |
4381 | /* 7714 */ MCD::OPC_Decode, 252, 15, 136, 2, // Opcode: MAX_U_B |
4382 | /* 7719 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 7734 |
4383 | /* 7724 */ MCD::OPC_CheckPredicate, 30, 153, 36, 0, // Skip to: 17098 |
4384 | /* 7729 */ MCD::OPC_Decode, 254, 15, 137, 2, // Opcode: MAX_U_H |
4385 | /* 7734 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7749 |
4386 | /* 7739 */ MCD::OPC_CheckPredicate, 30, 138, 36, 0, // Skip to: 17098 |
4387 | /* 7744 */ MCD::OPC_Decode, 255, 15, 138, 2, // Opcode: MAX_U_W |
4388 | /* 7749 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 7764 |
4389 | /* 7754 */ MCD::OPC_CheckPredicate, 30, 123, 36, 0, // Skip to: 17098 |
4390 | /* 7759 */ MCD::OPC_Decode, 253, 15, 139, 2, // Opcode: MAX_U_D |
4391 | /* 7764 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 7779 |
4392 | /* 7769 */ MCD::OPC_CheckPredicate, 30, 108, 36, 0, // Skip to: 17098 |
4393 | /* 7774 */ MCD::OPC_Decode, 178, 16, 136, 2, // Opcode: MIN_S_B |
4394 | /* 7779 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 7794 |
4395 | /* 7784 */ MCD::OPC_CheckPredicate, 30, 93, 36, 0, // Skip to: 17098 |
4396 | /* 7789 */ MCD::OPC_Decode, 180, 16, 137, 2, // Opcode: MIN_S_H |
4397 | /* 7794 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 7809 |
4398 | /* 7799 */ MCD::OPC_CheckPredicate, 30, 78, 36, 0, // Skip to: 17098 |
4399 | /* 7804 */ MCD::OPC_Decode, 182, 16, 138, 2, // Opcode: MIN_S_W |
4400 | /* 7809 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 7824 |
4401 | /* 7814 */ MCD::OPC_CheckPredicate, 30, 63, 36, 0, // Skip to: 17098 |
4402 | /* 7819 */ MCD::OPC_Decode, 179, 16, 139, 2, // Opcode: MIN_S_D |
4403 | /* 7824 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 7839 |
4404 | /* 7829 */ MCD::OPC_CheckPredicate, 30, 48, 36, 0, // Skip to: 17098 |
4405 | /* 7834 */ MCD::OPC_Decode, 183, 16, 136, 2, // Opcode: MIN_U_B |
4406 | /* 7839 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 7854 |
4407 | /* 7844 */ MCD::OPC_CheckPredicate, 30, 33, 36, 0, // Skip to: 17098 |
4408 | /* 7849 */ MCD::OPC_Decode, 185, 16, 137, 2, // Opcode: MIN_U_H |
4409 | /* 7854 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 7869 |
4410 | /* 7859 */ MCD::OPC_CheckPredicate, 30, 18, 36, 0, // Skip to: 17098 |
4411 | /* 7864 */ MCD::OPC_Decode, 186, 16, 138, 2, // Opcode: MIN_U_W |
4412 | /* 7869 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 7884 |
4413 | /* 7874 */ MCD::OPC_CheckPredicate, 30, 3, 36, 0, // Skip to: 17098 |
4414 | /* 7879 */ MCD::OPC_Decode, 184, 16, 139, 2, // Opcode: MIN_U_D |
4415 | /* 7884 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 7899 |
4416 | /* 7889 */ MCD::OPC_CheckPredicate, 30, 244, 35, 0, // Skip to: 17098 |
4417 | /* 7894 */ MCD::OPC_Decode, 240, 15, 136, 2, // Opcode: MAX_A_B |
4418 | /* 7899 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 7914 |
4419 | /* 7904 */ MCD::OPC_CheckPredicate, 30, 229, 35, 0, // Skip to: 17098 |
4420 | /* 7909 */ MCD::OPC_Decode, 242, 15, 137, 2, // Opcode: MAX_A_H |
4421 | /* 7914 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 7929 |
4422 | /* 7919 */ MCD::OPC_CheckPredicate, 30, 214, 35, 0, // Skip to: 17098 |
4423 | /* 7924 */ MCD::OPC_Decode, 243, 15, 138, 2, // Opcode: MAX_A_W |
4424 | /* 7929 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 7944 |
4425 | /* 7934 */ MCD::OPC_CheckPredicate, 30, 199, 35, 0, // Skip to: 17098 |
4426 | /* 7939 */ MCD::OPC_Decode, 241, 15, 139, 2, // Opcode: MAX_A_D |
4427 | /* 7944 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 7959 |
4428 | /* 7949 */ MCD::OPC_CheckPredicate, 30, 184, 35, 0, // Skip to: 17098 |
4429 | /* 7954 */ MCD::OPC_Decode, 171, 16, 136, 2, // Opcode: MIN_A_B |
4430 | /* 7959 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 7974 |
4431 | /* 7964 */ MCD::OPC_CheckPredicate, 30, 169, 35, 0, // Skip to: 17098 |
4432 | /* 7969 */ MCD::OPC_Decode, 173, 16, 137, 2, // Opcode: MIN_A_H |
4433 | /* 7974 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 7989 |
4434 | /* 7979 */ MCD::OPC_CheckPredicate, 30, 154, 35, 0, // Skip to: 17098 |
4435 | /* 7984 */ MCD::OPC_Decode, 174, 16, 138, 2, // Opcode: MIN_A_W |
4436 | /* 7989 */ MCD::OPC_FilterValue, 31, 144, 35, 0, // Skip to: 17098 |
4437 | /* 7994 */ MCD::OPC_CheckPredicate, 30, 139, 35, 0, // Skip to: 17098 |
4438 | /* 7999 */ MCD::OPC_Decode, 172, 16, 139, 2, // Opcode: MIN_A_D |
4439 | /* 8004 */ MCD::OPC_FilterValue, 15, 47, 1, 0, // Skip to: 8312 |
4440 | /* 8009 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4441 | /* 8012 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8027 |
4442 | /* 8017 */ MCD::OPC_CheckPredicate, 30, 116, 35, 0, // Skip to: 17098 |
4443 | /* 8022 */ MCD::OPC_Decode, 213, 8, 136, 2, // Opcode: CEQ_B |
4444 | /* 8027 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8042 |
4445 | /* 8032 */ MCD::OPC_CheckPredicate, 30, 101, 35, 0, // Skip to: 17098 |
4446 | /* 8037 */ MCD::OPC_Decode, 215, 8, 137, 2, // Opcode: CEQ_H |
4447 | /* 8042 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8057 |
4448 | /* 8047 */ MCD::OPC_CheckPredicate, 30, 86, 35, 0, // Skip to: 17098 |
4449 | /* 8052 */ MCD::OPC_Decode, 216, 8, 138, 2, // Opcode: CEQ_W |
4450 | /* 8057 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8072 |
4451 | /* 8062 */ MCD::OPC_CheckPredicate, 30, 71, 35, 0, // Skip to: 17098 |
4452 | /* 8067 */ MCD::OPC_Decode, 214, 8, 139, 2, // Opcode: CEQ_D |
4453 | /* 8072 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8087 |
4454 | /* 8077 */ MCD::OPC_CheckPredicate, 30, 56, 35, 0, // Skip to: 17098 |
4455 | /* 8082 */ MCD::OPC_Decode, 129, 9, 136, 2, // Opcode: CLT_S_B |
4456 | /* 8087 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8102 |
4457 | /* 8092 */ MCD::OPC_CheckPredicate, 30, 41, 35, 0, // Skip to: 17098 |
4458 | /* 8097 */ MCD::OPC_Decode, 131, 9, 137, 2, // Opcode: CLT_S_H |
4459 | /* 8102 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8117 |
4460 | /* 8107 */ MCD::OPC_CheckPredicate, 30, 26, 35, 0, // Skip to: 17098 |
4461 | /* 8112 */ MCD::OPC_Decode, 132, 9, 138, 2, // Opcode: CLT_S_W |
4462 | /* 8117 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8132 |
4463 | /* 8122 */ MCD::OPC_CheckPredicate, 30, 11, 35, 0, // Skip to: 17098 |
4464 | /* 8127 */ MCD::OPC_Decode, 130, 9, 139, 2, // Opcode: CLT_S_D |
4465 | /* 8132 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 8147 |
4466 | /* 8137 */ MCD::OPC_CheckPredicate, 30, 252, 34, 0, // Skip to: 17098 |
4467 | /* 8142 */ MCD::OPC_Decode, 133, 9, 136, 2, // Opcode: CLT_U_B |
4468 | /* 8147 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 8162 |
4469 | /* 8152 */ MCD::OPC_CheckPredicate, 30, 237, 34, 0, // Skip to: 17098 |
4470 | /* 8157 */ MCD::OPC_Decode, 135, 9, 137, 2, // Opcode: CLT_U_H |
4471 | /* 8162 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8177 |
4472 | /* 8167 */ MCD::OPC_CheckPredicate, 30, 222, 34, 0, // Skip to: 17098 |
4473 | /* 8172 */ MCD::OPC_Decode, 136, 9, 138, 2, // Opcode: CLT_U_W |
4474 | /* 8177 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 8192 |
4475 | /* 8182 */ MCD::OPC_CheckPredicate, 30, 207, 34, 0, // Skip to: 17098 |
4476 | /* 8187 */ MCD::OPC_Decode, 134, 9, 139, 2, // Opcode: CLT_U_D |
4477 | /* 8192 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 8207 |
4478 | /* 8197 */ MCD::OPC_CheckPredicate, 30, 192, 34, 0, // Skip to: 17098 |
4479 | /* 8202 */ MCD::OPC_Decode, 237, 8, 136, 2, // Opcode: CLE_S_B |
4480 | /* 8207 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 8222 |
4481 | /* 8212 */ MCD::OPC_CheckPredicate, 30, 177, 34, 0, // Skip to: 17098 |
4482 | /* 8217 */ MCD::OPC_Decode, 239, 8, 137, 2, // Opcode: CLE_S_H |
4483 | /* 8222 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 8237 |
4484 | /* 8227 */ MCD::OPC_CheckPredicate, 30, 162, 34, 0, // Skip to: 17098 |
4485 | /* 8232 */ MCD::OPC_Decode, 240, 8, 138, 2, // Opcode: CLE_S_W |
4486 | /* 8237 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 8252 |
4487 | /* 8242 */ MCD::OPC_CheckPredicate, 30, 147, 34, 0, // Skip to: 17098 |
4488 | /* 8247 */ MCD::OPC_Decode, 238, 8, 139, 2, // Opcode: CLE_S_D |
4489 | /* 8252 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 8267 |
4490 | /* 8257 */ MCD::OPC_CheckPredicate, 30, 132, 34, 0, // Skip to: 17098 |
4491 | /* 8262 */ MCD::OPC_Decode, 241, 8, 136, 2, // Opcode: CLE_U_B |
4492 | /* 8267 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 8282 |
4493 | /* 8272 */ MCD::OPC_CheckPredicate, 30, 117, 34, 0, // Skip to: 17098 |
4494 | /* 8277 */ MCD::OPC_Decode, 243, 8, 137, 2, // Opcode: CLE_U_H |
4495 | /* 8282 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 8297 |
4496 | /* 8287 */ MCD::OPC_CheckPredicate, 30, 102, 34, 0, // Skip to: 17098 |
4497 | /* 8292 */ MCD::OPC_Decode, 244, 8, 138, 2, // Opcode: CLE_U_W |
4498 | /* 8297 */ MCD::OPC_FilterValue, 23, 92, 34, 0, // Skip to: 17098 |
4499 | /* 8302 */ MCD::OPC_CheckPredicate, 30, 87, 34, 0, // Skip to: 17098 |
4500 | /* 8307 */ MCD::OPC_Decode, 242, 8, 139, 2, // Opcode: CLE_U_D |
4501 | /* 8312 */ MCD::OPC_FilterValue, 16, 227, 1, 0, // Skip to: 8800 |
4502 | /* 8317 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4503 | /* 8320 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8335 |
4504 | /* 8325 */ MCD::OPC_CheckPredicate, 30, 64, 34, 0, // Skip to: 17098 |
4505 | /* 8330 */ MCD::OPC_Decode, 182, 6, 136, 2, // Opcode: ADD_A_B |
4506 | /* 8335 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8350 |
4507 | /* 8340 */ MCD::OPC_CheckPredicate, 30, 49, 34, 0, // Skip to: 17098 |
4508 | /* 8345 */ MCD::OPC_Decode, 184, 6, 137, 2, // Opcode: ADD_A_H |
4509 | /* 8350 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8365 |
4510 | /* 8355 */ MCD::OPC_CheckPredicate, 30, 34, 34, 0, // Skip to: 17098 |
4511 | /* 8360 */ MCD::OPC_Decode, 185, 6, 138, 2, // Opcode: ADD_A_W |
4512 | /* 8365 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8380 |
4513 | /* 8370 */ MCD::OPC_CheckPredicate, 30, 19, 34, 0, // Skip to: 17098 |
4514 | /* 8375 */ MCD::OPC_Decode, 183, 6, 139, 2, // Opcode: ADD_A_D |
4515 | /* 8380 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 8395 |
4516 | /* 8385 */ MCD::OPC_CheckPredicate, 30, 4, 34, 0, // Skip to: 17098 |
4517 | /* 8390 */ MCD::OPC_Decode, 145, 6, 136, 2, // Opcode: ADDS_A_B |
4518 | /* 8395 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 8410 |
4519 | /* 8400 */ MCD::OPC_CheckPredicate, 30, 245, 33, 0, // Skip to: 17098 |
4520 | /* 8405 */ MCD::OPC_Decode, 147, 6, 137, 2, // Opcode: ADDS_A_H |
4521 | /* 8410 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 8425 |
4522 | /* 8415 */ MCD::OPC_CheckPredicate, 30, 230, 33, 0, // Skip to: 17098 |
4523 | /* 8420 */ MCD::OPC_Decode, 148, 6, 138, 2, // Opcode: ADDS_A_W |
4524 | /* 8425 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 8440 |
4525 | /* 8430 */ MCD::OPC_CheckPredicate, 30, 215, 33, 0, // Skip to: 17098 |
4526 | /* 8435 */ MCD::OPC_Decode, 146, 6, 139, 2, // Opcode: ADDS_A_D |
4527 | /* 8440 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8455 |
4528 | /* 8445 */ MCD::OPC_CheckPredicate, 30, 200, 33, 0, // Skip to: 17098 |
4529 | /* 8450 */ MCD::OPC_Decode, 149, 6, 136, 2, // Opcode: ADDS_S_B |
4530 | /* 8455 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8470 |
4531 | /* 8460 */ MCD::OPC_CheckPredicate, 30, 185, 33, 0, // Skip to: 17098 |
4532 | /* 8465 */ MCD::OPC_Decode, 151, 6, 137, 2, // Opcode: ADDS_S_H |
4533 | /* 8470 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8485 |
4534 | /* 8475 */ MCD::OPC_CheckPredicate, 30, 170, 33, 0, // Skip to: 17098 |
4535 | /* 8480 */ MCD::OPC_Decode, 152, 6, 138, 2, // Opcode: ADDS_S_W |
4536 | /* 8485 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8500 |
4537 | /* 8490 */ MCD::OPC_CheckPredicate, 30, 155, 33, 0, // Skip to: 17098 |
4538 | /* 8495 */ MCD::OPC_Decode, 150, 6, 139, 2, // Opcode: ADDS_S_D |
4539 | /* 8500 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 8515 |
4540 | /* 8505 */ MCD::OPC_CheckPredicate, 30, 140, 33, 0, // Skip to: 17098 |
4541 | /* 8510 */ MCD::OPC_Decode, 153, 6, 136, 2, // Opcode: ADDS_U_B |
4542 | /* 8515 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 8530 |
4543 | /* 8520 */ MCD::OPC_CheckPredicate, 30, 125, 33, 0, // Skip to: 17098 |
4544 | /* 8525 */ MCD::OPC_Decode, 155, 6, 137, 2, // Opcode: ADDS_U_H |
4545 | /* 8530 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8545 |
4546 | /* 8535 */ MCD::OPC_CheckPredicate, 30, 110, 33, 0, // Skip to: 17098 |
4547 | /* 8540 */ MCD::OPC_Decode, 156, 6, 138, 2, // Opcode: ADDS_U_W |
4548 | /* 8545 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 8560 |
4549 | /* 8550 */ MCD::OPC_CheckPredicate, 30, 95, 33, 0, // Skip to: 17098 |
4550 | /* 8555 */ MCD::OPC_Decode, 154, 6, 139, 2, // Opcode: ADDS_U_D |
4551 | /* 8560 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 8575 |
4552 | /* 8565 */ MCD::OPC_CheckPredicate, 30, 80, 33, 0, // Skip to: 17098 |
4553 | /* 8570 */ MCD::OPC_Decode, 234, 6, 136, 2, // Opcode: AVE_S_B |
4554 | /* 8575 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 8590 |
4555 | /* 8580 */ MCD::OPC_CheckPredicate, 30, 65, 33, 0, // Skip to: 17098 |
4556 | /* 8585 */ MCD::OPC_Decode, 236, 6, 137, 2, // Opcode: AVE_S_H |
4557 | /* 8590 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 8605 |
4558 | /* 8595 */ MCD::OPC_CheckPredicate, 30, 50, 33, 0, // Skip to: 17098 |
4559 | /* 8600 */ MCD::OPC_Decode, 237, 6, 138, 2, // Opcode: AVE_S_W |
4560 | /* 8605 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 8620 |
4561 | /* 8610 */ MCD::OPC_CheckPredicate, 30, 35, 33, 0, // Skip to: 17098 |
4562 | /* 8615 */ MCD::OPC_Decode, 235, 6, 139, 2, // Opcode: AVE_S_D |
4563 | /* 8620 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 8635 |
4564 | /* 8625 */ MCD::OPC_CheckPredicate, 30, 20, 33, 0, // Skip to: 17098 |
4565 | /* 8630 */ MCD::OPC_Decode, 238, 6, 136, 2, // Opcode: AVE_U_B |
4566 | /* 8635 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 8650 |
4567 | /* 8640 */ MCD::OPC_CheckPredicate, 30, 5, 33, 0, // Skip to: 17098 |
4568 | /* 8645 */ MCD::OPC_Decode, 240, 6, 137, 2, // Opcode: AVE_U_H |
4569 | /* 8650 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 8665 |
4570 | /* 8655 */ MCD::OPC_CheckPredicate, 30, 246, 32, 0, // Skip to: 17098 |
4571 | /* 8660 */ MCD::OPC_Decode, 241, 6, 138, 2, // Opcode: AVE_U_W |
4572 | /* 8665 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 8680 |
4573 | /* 8670 */ MCD::OPC_CheckPredicate, 30, 231, 32, 0, // Skip to: 17098 |
4574 | /* 8675 */ MCD::OPC_Decode, 239, 6, 139, 2, // Opcode: AVE_U_D |
4575 | /* 8680 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 8695 |
4576 | /* 8685 */ MCD::OPC_CheckPredicate, 30, 216, 32, 0, // Skip to: 17098 |
4577 | /* 8690 */ MCD::OPC_Decode, 226, 6, 136, 2, // Opcode: AVER_S_B |
4578 | /* 8695 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 8710 |
4579 | /* 8700 */ MCD::OPC_CheckPredicate, 30, 201, 32, 0, // Skip to: 17098 |
4580 | /* 8705 */ MCD::OPC_Decode, 228, 6, 137, 2, // Opcode: AVER_S_H |
4581 | /* 8710 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 8725 |
4582 | /* 8715 */ MCD::OPC_CheckPredicate, 30, 186, 32, 0, // Skip to: 17098 |
4583 | /* 8720 */ MCD::OPC_Decode, 229, 6, 138, 2, // Opcode: AVER_S_W |
4584 | /* 8725 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 8740 |
4585 | /* 8730 */ MCD::OPC_CheckPredicate, 30, 171, 32, 0, // Skip to: 17098 |
4586 | /* 8735 */ MCD::OPC_Decode, 227, 6, 139, 2, // Opcode: AVER_S_D |
4587 | /* 8740 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 8755 |
4588 | /* 8745 */ MCD::OPC_CheckPredicate, 30, 156, 32, 0, // Skip to: 17098 |
4589 | /* 8750 */ MCD::OPC_Decode, 230, 6, 136, 2, // Opcode: AVER_U_B |
4590 | /* 8755 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 8770 |
4591 | /* 8760 */ MCD::OPC_CheckPredicate, 30, 141, 32, 0, // Skip to: 17098 |
4592 | /* 8765 */ MCD::OPC_Decode, 232, 6, 137, 2, // Opcode: AVER_U_H |
4593 | /* 8770 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 8785 |
4594 | /* 8775 */ MCD::OPC_CheckPredicate, 30, 126, 32, 0, // Skip to: 17098 |
4595 | /* 8780 */ MCD::OPC_Decode, 233, 6, 138, 2, // Opcode: AVER_U_W |
4596 | /* 8785 */ MCD::OPC_FilterValue, 31, 116, 32, 0, // Skip to: 17098 |
4597 | /* 8790 */ MCD::OPC_CheckPredicate, 30, 111, 32, 0, // Skip to: 17098 |
4598 | /* 8795 */ MCD::OPC_Decode, 231, 6, 139, 2, // Opcode: AVER_U_D |
4599 | /* 8800 */ MCD::OPC_FilterValue, 17, 107, 1, 0, // Skip to: 9168 |
4600 | /* 8805 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4601 | /* 8808 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8823 |
4602 | /* 8813 */ MCD::OPC_CheckPredicate, 30, 88, 32, 0, // Skip to: 17098 |
4603 | /* 8818 */ MCD::OPC_Decode, 141, 21, 136, 2, // Opcode: SUBS_S_B |
4604 | /* 8823 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8838 |
4605 | /* 8828 */ MCD::OPC_CheckPredicate, 30, 73, 32, 0, // Skip to: 17098 |
4606 | /* 8833 */ MCD::OPC_Decode, 143, 21, 137, 2, // Opcode: SUBS_S_H |
4607 | /* 8838 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8853 |
4608 | /* 8843 */ MCD::OPC_CheckPredicate, 30, 58, 32, 0, // Skip to: 17098 |
4609 | /* 8848 */ MCD::OPC_Decode, 144, 21, 138, 2, // Opcode: SUBS_S_W |
4610 | /* 8853 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8868 |
4611 | /* 8858 */ MCD::OPC_CheckPredicate, 30, 43, 32, 0, // Skip to: 17098 |
4612 | /* 8863 */ MCD::OPC_Decode, 142, 21, 139, 2, // Opcode: SUBS_S_D |
4613 | /* 8868 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 8883 |
4614 | /* 8873 */ MCD::OPC_CheckPredicate, 30, 28, 32, 0, // Skip to: 17098 |
4615 | /* 8878 */ MCD::OPC_Decode, 145, 21, 136, 2, // Opcode: SUBS_U_B |
4616 | /* 8883 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 8898 |
4617 | /* 8888 */ MCD::OPC_CheckPredicate, 30, 13, 32, 0, // Skip to: 17098 |
4618 | /* 8893 */ MCD::OPC_Decode, 147, 21, 137, 2, // Opcode: SUBS_U_H |
4619 | /* 8898 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 8913 |
4620 | /* 8903 */ MCD::OPC_CheckPredicate, 30, 254, 31, 0, // Skip to: 17098 |
4621 | /* 8908 */ MCD::OPC_Decode, 148, 21, 138, 2, // Opcode: SUBS_U_W |
4622 | /* 8913 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 8928 |
4623 | /* 8918 */ MCD::OPC_CheckPredicate, 30, 239, 31, 0, // Skip to: 17098 |
4624 | /* 8923 */ MCD::OPC_Decode, 146, 21, 139, 2, // Opcode: SUBS_U_D |
4625 | /* 8928 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8943 |
4626 | /* 8933 */ MCD::OPC_CheckPredicate, 30, 224, 31, 0, // Skip to: 17098 |
4627 | /* 8938 */ MCD::OPC_Decode, 133, 21, 136, 2, // Opcode: SUBSUS_U_B |
4628 | /* 8943 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8958 |
4629 | /* 8948 */ MCD::OPC_CheckPredicate, 30, 209, 31, 0, // Skip to: 17098 |
4630 | /* 8953 */ MCD::OPC_Decode, 135, 21, 137, 2, // Opcode: SUBSUS_U_H |
4631 | /* 8958 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8973 |
4632 | /* 8963 */ MCD::OPC_CheckPredicate, 30, 194, 31, 0, // Skip to: 17098 |
4633 | /* 8968 */ MCD::OPC_Decode, 136, 21, 138, 2, // Opcode: SUBSUS_U_W |
4634 | /* 8973 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8988 |
4635 | /* 8978 */ MCD::OPC_CheckPredicate, 30, 179, 31, 0, // Skip to: 17098 |
4636 | /* 8983 */ MCD::OPC_Decode, 134, 21, 139, 2, // Opcode: SUBSUS_U_D |
4637 | /* 8988 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 9003 |
4638 | /* 8993 */ MCD::OPC_CheckPredicate, 30, 164, 31, 0, // Skip to: 17098 |
4639 | /* 8998 */ MCD::OPC_Decode, 137, 21, 136, 2, // Opcode: SUBSUU_S_B |
4640 | /* 9003 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9018 |
4641 | /* 9008 */ MCD::OPC_CheckPredicate, 30, 149, 31, 0, // Skip to: 17098 |
4642 | /* 9013 */ MCD::OPC_Decode, 139, 21, 137, 2, // Opcode: SUBSUU_S_H |
4643 | /* 9018 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9033 |
4644 | /* 9023 */ MCD::OPC_CheckPredicate, 30, 134, 31, 0, // Skip to: 17098 |
4645 | /* 9028 */ MCD::OPC_Decode, 140, 21, 138, 2, // Opcode: SUBSUU_S_W |
4646 | /* 9033 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 9048 |
4647 | /* 9038 */ MCD::OPC_CheckPredicate, 30, 119, 31, 0, // Skip to: 17098 |
4648 | /* 9043 */ MCD::OPC_Decode, 138, 21, 139, 2, // Opcode: SUBSUU_S_D |
4649 | /* 9048 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 9063 |
4650 | /* 9053 */ MCD::OPC_CheckPredicate, 30, 104, 31, 0, // Skip to: 17098 |
4651 | /* 9058 */ MCD::OPC_Decode, 214, 6, 136, 2, // Opcode: ASUB_S_B |
4652 | /* 9063 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9078 |
4653 | /* 9068 */ MCD::OPC_CheckPredicate, 30, 89, 31, 0, // Skip to: 17098 |
4654 | /* 9073 */ MCD::OPC_Decode, 216, 6, 137, 2, // Opcode: ASUB_S_H |
4655 | /* 9078 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9093 |
4656 | /* 9083 */ MCD::OPC_CheckPredicate, 30, 74, 31, 0, // Skip to: 17098 |
4657 | /* 9088 */ MCD::OPC_Decode, 217, 6, 138, 2, // Opcode: ASUB_S_W |
4658 | /* 9093 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9108 |
4659 | /* 9098 */ MCD::OPC_CheckPredicate, 30, 59, 31, 0, // Skip to: 17098 |
4660 | /* 9103 */ MCD::OPC_Decode, 215, 6, 139, 2, // Opcode: ASUB_S_D |
4661 | /* 9108 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 9123 |
4662 | /* 9113 */ MCD::OPC_CheckPredicate, 30, 44, 31, 0, // Skip to: 17098 |
4663 | /* 9118 */ MCD::OPC_Decode, 218, 6, 136, 2, // Opcode: ASUB_U_B |
4664 | /* 9123 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9138 |
4665 | /* 9128 */ MCD::OPC_CheckPredicate, 30, 29, 31, 0, // Skip to: 17098 |
4666 | /* 9133 */ MCD::OPC_Decode, 220, 6, 137, 2, // Opcode: ASUB_U_H |
4667 | /* 9138 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9153 |
4668 | /* 9143 */ MCD::OPC_CheckPredicate, 30, 14, 31, 0, // Skip to: 17098 |
4669 | /* 9148 */ MCD::OPC_Decode, 221, 6, 138, 2, // Opcode: ASUB_U_W |
4670 | /* 9153 */ MCD::OPC_FilterValue, 23, 4, 31, 0, // Skip to: 17098 |
4671 | /* 9158 */ MCD::OPC_CheckPredicate, 30, 255, 30, 0, // Skip to: 17098 |
4672 | /* 9163 */ MCD::OPC_Decode, 219, 6, 139, 2, // Opcode: ASUB_U_D |
4673 | /* 9168 */ MCD::OPC_FilterValue, 18, 167, 1, 0, // Skip to: 9596 |
4674 | /* 9173 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4675 | /* 9176 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9191 |
4676 | /* 9181 */ MCD::OPC_CheckPredicate, 30, 232, 30, 0, // Skip to: 17098 |
4677 | /* 9186 */ MCD::OPC_Decode, 219, 17, 136, 2, // Opcode: MULV_B |
4678 | /* 9191 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9206 |
4679 | /* 9196 */ MCD::OPC_CheckPredicate, 30, 217, 30, 0, // Skip to: 17098 |
4680 | /* 9201 */ MCD::OPC_Decode, 221, 17, 137, 2, // Opcode: MULV_H |
4681 | /* 9206 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9221 |
4682 | /* 9211 */ MCD::OPC_CheckPredicate, 30, 202, 30, 0, // Skip to: 17098 |
4683 | /* 9216 */ MCD::OPC_Decode, 222, 17, 138, 2, // Opcode: MULV_W |
4684 | /* 9221 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9236 |
4685 | /* 9226 */ MCD::OPC_CheckPredicate, 30, 187, 30, 0, // Skip to: 17098 |
4686 | /* 9231 */ MCD::OPC_Decode, 220, 17, 139, 2, // Opcode: MULV_D |
4687 | /* 9236 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9251 |
4688 | /* 9241 */ MCD::OPC_CheckPredicate, 30, 172, 30, 0, // Skip to: 17098 |
4689 | /* 9246 */ MCD::OPC_Decode, 206, 15, 140, 2, // Opcode: MADDV_B |
4690 | /* 9251 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9266 |
4691 | /* 9256 */ MCD::OPC_CheckPredicate, 30, 157, 30, 0, // Skip to: 17098 |
4692 | /* 9261 */ MCD::OPC_Decode, 208, 15, 141, 2, // Opcode: MADDV_H |
4693 | /* 9266 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9281 |
4694 | /* 9271 */ MCD::OPC_CheckPredicate, 30, 142, 30, 0, // Skip to: 17098 |
4695 | /* 9276 */ MCD::OPC_Decode, 209, 15, 142, 2, // Opcode: MADDV_W |
4696 | /* 9281 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9296 |
4697 | /* 9286 */ MCD::OPC_CheckPredicate, 30, 127, 30, 0, // Skip to: 17098 |
4698 | /* 9291 */ MCD::OPC_Decode, 207, 15, 143, 2, // Opcode: MADDV_D |
4699 | /* 9296 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 9311 |
4700 | /* 9301 */ MCD::OPC_CheckPredicate, 30, 112, 30, 0, // Skip to: 17098 |
4701 | /* 9306 */ MCD::OPC_Decode, 129, 17, 140, 2, // Opcode: MSUBV_B |
4702 | /* 9311 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9326 |
4703 | /* 9316 */ MCD::OPC_CheckPredicate, 30, 97, 30, 0, // Skip to: 17098 |
4704 | /* 9321 */ MCD::OPC_Decode, 131, 17, 141, 2, // Opcode: MSUBV_H |
4705 | /* 9326 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9341 |
4706 | /* 9331 */ MCD::OPC_CheckPredicate, 30, 82, 30, 0, // Skip to: 17098 |
4707 | /* 9336 */ MCD::OPC_Decode, 132, 17, 142, 2, // Opcode: MSUBV_W |
4708 | /* 9341 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9356 |
4709 | /* 9346 */ MCD::OPC_CheckPredicate, 30, 67, 30, 0, // Skip to: 17098 |
4710 | /* 9351 */ MCD::OPC_Decode, 130, 17, 143, 2, // Opcode: MSUBV_D |
4711 | /* 9356 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 9371 |
4712 | /* 9361 */ MCD::OPC_CheckPredicate, 30, 52, 30, 0, // Skip to: 17098 |
4713 | /* 9366 */ MCD::OPC_Decode, 158, 11, 136, 2, // Opcode: DIV_S_B |
4714 | /* 9371 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9386 |
4715 | /* 9376 */ MCD::OPC_CheckPredicate, 30, 37, 30, 0, // Skip to: 17098 |
4716 | /* 9381 */ MCD::OPC_Decode, 160, 11, 137, 2, // Opcode: DIV_S_H |
4717 | /* 9386 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9401 |
4718 | /* 9391 */ MCD::OPC_CheckPredicate, 30, 22, 30, 0, // Skip to: 17098 |
4719 | /* 9396 */ MCD::OPC_Decode, 161, 11, 138, 2, // Opcode: DIV_S_W |
4720 | /* 9401 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9416 |
4721 | /* 9406 */ MCD::OPC_CheckPredicate, 30, 7, 30, 0, // Skip to: 17098 |
4722 | /* 9411 */ MCD::OPC_Decode, 159, 11, 139, 2, // Opcode: DIV_S_D |
4723 | /* 9416 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 9431 |
4724 | /* 9421 */ MCD::OPC_CheckPredicate, 30, 248, 29, 0, // Skip to: 17098 |
4725 | /* 9426 */ MCD::OPC_Decode, 162, 11, 136, 2, // Opcode: DIV_U_B |
4726 | /* 9431 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9446 |
4727 | /* 9436 */ MCD::OPC_CheckPredicate, 30, 233, 29, 0, // Skip to: 17098 |
4728 | /* 9441 */ MCD::OPC_Decode, 164, 11, 137, 2, // Opcode: DIV_U_H |
4729 | /* 9446 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9461 |
4730 | /* 9451 */ MCD::OPC_CheckPredicate, 30, 218, 29, 0, // Skip to: 17098 |
4731 | /* 9456 */ MCD::OPC_Decode, 165, 11, 138, 2, // Opcode: DIV_U_W |
4732 | /* 9461 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 9476 |
4733 | /* 9466 */ MCD::OPC_CheckPredicate, 30, 203, 29, 0, // Skip to: 17098 |
4734 | /* 9471 */ MCD::OPC_Decode, 163, 11, 139, 2, // Opcode: DIV_U_D |
4735 | /* 9476 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 9491 |
4736 | /* 9481 */ MCD::OPC_CheckPredicate, 30, 188, 29, 0, // Skip to: 17098 |
4737 | /* 9486 */ MCD::OPC_Decode, 193, 16, 136, 2, // Opcode: MOD_S_B |
4738 | /* 9491 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 9506 |
4739 | /* 9496 */ MCD::OPC_CheckPredicate, 30, 173, 29, 0, // Skip to: 17098 |
4740 | /* 9501 */ MCD::OPC_Decode, 195, 16, 137, 2, // Opcode: MOD_S_H |
4741 | /* 9506 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 9521 |
4742 | /* 9511 */ MCD::OPC_CheckPredicate, 30, 158, 29, 0, // Skip to: 17098 |
4743 | /* 9516 */ MCD::OPC_Decode, 196, 16, 138, 2, // Opcode: MOD_S_W |
4744 | /* 9521 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 9536 |
4745 | /* 9526 */ MCD::OPC_CheckPredicate, 30, 143, 29, 0, // Skip to: 17098 |
4746 | /* 9531 */ MCD::OPC_Decode, 194, 16, 139, 2, // Opcode: MOD_S_D |
4747 | /* 9536 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 9551 |
4748 | /* 9541 */ MCD::OPC_CheckPredicate, 30, 128, 29, 0, // Skip to: 17098 |
4749 | /* 9546 */ MCD::OPC_Decode, 197, 16, 136, 2, // Opcode: MOD_U_B |
4750 | /* 9551 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 9566 |
4751 | /* 9556 */ MCD::OPC_CheckPredicate, 30, 113, 29, 0, // Skip to: 17098 |
4752 | /* 9561 */ MCD::OPC_Decode, 199, 16, 137, 2, // Opcode: MOD_U_H |
4753 | /* 9566 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 9581 |
4754 | /* 9571 */ MCD::OPC_CheckPredicate, 30, 98, 29, 0, // Skip to: 17098 |
4755 | /* 9576 */ MCD::OPC_Decode, 200, 16, 138, 2, // Opcode: MOD_U_W |
4756 | /* 9581 */ MCD::OPC_FilterValue, 31, 88, 29, 0, // Skip to: 17098 |
4757 | /* 9586 */ MCD::OPC_CheckPredicate, 30, 83, 29, 0, // Skip to: 17098 |
4758 | /* 9591 */ MCD::OPC_Decode, 198, 16, 139, 2, // Opcode: MOD_U_D |
4759 | /* 9596 */ MCD::OPC_FilterValue, 19, 17, 1, 0, // Skip to: 9874 |
4760 | /* 9601 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4761 | /* 9604 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9619 |
4762 | /* 9609 */ MCD::OPC_CheckPredicate, 30, 60, 29, 0, // Skip to: 17098 |
4763 | /* 9614 */ MCD::OPC_Decode, 191, 11, 144, 2, // Opcode: DOTP_S_H |
4764 | /* 9619 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9634 |
4765 | /* 9624 */ MCD::OPC_CheckPredicate, 30, 45, 29, 0, // Skip to: 17098 |
4766 | /* 9629 */ MCD::OPC_Decode, 192, 11, 145, 2, // Opcode: DOTP_S_W |
4767 | /* 9634 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9649 |
4768 | /* 9639 */ MCD::OPC_CheckPredicate, 30, 30, 29, 0, // Skip to: 17098 |
4769 | /* 9644 */ MCD::OPC_Decode, 190, 11, 146, 2, // Opcode: DOTP_S_D |
4770 | /* 9649 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9664 |
4771 | /* 9654 */ MCD::OPC_CheckPredicate, 30, 15, 29, 0, // Skip to: 17098 |
4772 | /* 9659 */ MCD::OPC_Decode, 194, 11, 144, 2, // Opcode: DOTP_U_H |
4773 | /* 9664 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9679 |
4774 | /* 9669 */ MCD::OPC_CheckPredicate, 30, 0, 29, 0, // Skip to: 17098 |
4775 | /* 9674 */ MCD::OPC_Decode, 195, 11, 145, 2, // Opcode: DOTP_U_W |
4776 | /* 9679 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9694 |
4777 | /* 9684 */ MCD::OPC_CheckPredicate, 30, 241, 28, 0, // Skip to: 17098 |
4778 | /* 9689 */ MCD::OPC_Decode, 193, 11, 146, 2, // Opcode: DOTP_U_D |
4779 | /* 9694 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9709 |
4780 | /* 9699 */ MCD::OPC_CheckPredicate, 30, 226, 28, 0, // Skip to: 17098 |
4781 | /* 9704 */ MCD::OPC_Decode, 197, 11, 147, 2, // Opcode: DPADD_S_H |
4782 | /* 9709 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9724 |
4783 | /* 9714 */ MCD::OPC_CheckPredicate, 30, 211, 28, 0, // Skip to: 17098 |
4784 | /* 9719 */ MCD::OPC_Decode, 198, 11, 148, 2, // Opcode: DPADD_S_W |
4785 | /* 9724 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9739 |
4786 | /* 9729 */ MCD::OPC_CheckPredicate, 30, 196, 28, 0, // Skip to: 17098 |
4787 | /* 9734 */ MCD::OPC_Decode, 196, 11, 149, 2, // Opcode: DPADD_S_D |
4788 | /* 9739 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9754 |
4789 | /* 9744 */ MCD::OPC_CheckPredicate, 30, 181, 28, 0, // Skip to: 17098 |
4790 | /* 9749 */ MCD::OPC_Decode, 200, 11, 147, 2, // Opcode: DPADD_U_H |
4791 | /* 9754 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9769 |
4792 | /* 9759 */ MCD::OPC_CheckPredicate, 30, 166, 28, 0, // Skip to: 17098 |
4793 | /* 9764 */ MCD::OPC_Decode, 201, 11, 148, 2, // Opcode: DPADD_U_W |
4794 | /* 9769 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 9784 |
4795 | /* 9774 */ MCD::OPC_CheckPredicate, 30, 151, 28, 0, // Skip to: 17098 |
4796 | /* 9779 */ MCD::OPC_Decode, 199, 11, 149, 2, // Opcode: DPADD_U_D |
4797 | /* 9784 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9799 |
4798 | /* 9789 */ MCD::OPC_CheckPredicate, 30, 136, 28, 0, // Skip to: 17098 |
4799 | /* 9794 */ MCD::OPC_Decode, 228, 11, 147, 2, // Opcode: DPSUB_S_H |
4800 | /* 9799 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9814 |
4801 | /* 9804 */ MCD::OPC_CheckPredicate, 30, 121, 28, 0, // Skip to: 17098 |
4802 | /* 9809 */ MCD::OPC_Decode, 229, 11, 148, 2, // Opcode: DPSUB_S_W |
4803 | /* 9814 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9829 |
4804 | /* 9819 */ MCD::OPC_CheckPredicate, 30, 106, 28, 0, // Skip to: 17098 |
4805 | /* 9824 */ MCD::OPC_Decode, 227, 11, 149, 2, // Opcode: DPSUB_S_D |
4806 | /* 9829 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9844 |
4807 | /* 9834 */ MCD::OPC_CheckPredicate, 30, 91, 28, 0, // Skip to: 17098 |
4808 | /* 9839 */ MCD::OPC_Decode, 231, 11, 147, 2, // Opcode: DPSUB_U_H |
4809 | /* 9844 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9859 |
4810 | /* 9849 */ MCD::OPC_CheckPredicate, 30, 76, 28, 0, // Skip to: 17098 |
4811 | /* 9854 */ MCD::OPC_Decode, 232, 11, 148, 2, // Opcode: DPSUB_U_W |
4812 | /* 9859 */ MCD::OPC_FilterValue, 23, 66, 28, 0, // Skip to: 17098 |
4813 | /* 9864 */ MCD::OPC_CheckPredicate, 30, 61, 28, 0, // Skip to: 17098 |
4814 | /* 9869 */ MCD::OPC_Decode, 230, 11, 149, 2, // Opcode: DPSUB_U_D |
4815 | /* 9874 */ MCD::OPC_FilterValue, 20, 227, 1, 0, // Skip to: 10362 |
4816 | /* 9879 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4817 | /* 9882 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9897 |
4818 | /* 9887 */ MCD::OPC_CheckPredicate, 30, 38, 28, 0, // Skip to: 17098 |
4819 | /* 9892 */ MCD::OPC_Decode, 154, 20, 150, 2, // Opcode: SLD_B |
4820 | /* 9897 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9912 |
4821 | /* 9902 */ MCD::OPC_CheckPredicate, 30, 23, 28, 0, // Skip to: 17098 |
4822 | /* 9907 */ MCD::OPC_Decode, 156, 20, 151, 2, // Opcode: SLD_H |
4823 | /* 9912 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9927 |
4824 | /* 9917 */ MCD::OPC_CheckPredicate, 30, 8, 28, 0, // Skip to: 17098 |
4825 | /* 9922 */ MCD::OPC_Decode, 157, 20, 152, 2, // Opcode: SLD_W |
4826 | /* 9927 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9942 |
4827 | /* 9932 */ MCD::OPC_CheckPredicate, 30, 249, 27, 0, // Skip to: 17098 |
4828 | /* 9937 */ MCD::OPC_Decode, 155, 20, 153, 2, // Opcode: SLD_D |
4829 | /* 9942 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9957 |
4830 | /* 9947 */ MCD::OPC_CheckPredicate, 30, 234, 27, 0, // Skip to: 17098 |
4831 | /* 9952 */ MCD::OPC_Decode, 193, 20, 154, 2, // Opcode: SPLAT_B |
4832 | /* 9957 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9972 |
4833 | /* 9962 */ MCD::OPC_CheckPredicate, 30, 219, 27, 0, // Skip to: 17098 |
4834 | /* 9967 */ MCD::OPC_Decode, 195, 20, 155, 2, // Opcode: SPLAT_H |
4835 | /* 9972 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9987 |
4836 | /* 9977 */ MCD::OPC_CheckPredicate, 30, 204, 27, 0, // Skip to: 17098 |
4837 | /* 9982 */ MCD::OPC_Decode, 196, 20, 156, 2, // Opcode: SPLAT_W |
4838 | /* 9987 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 10002 |
4839 | /* 9992 */ MCD::OPC_CheckPredicate, 30, 189, 27, 0, // Skip to: 17098 |
4840 | /* 9997 */ MCD::OPC_Decode, 194, 20, 157, 2, // Opcode: SPLAT_D |
4841 | /* 10002 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10017 |
4842 | /* 10007 */ MCD::OPC_CheckPredicate, 30, 174, 27, 0, // Skip to: 17098 |
4843 | /* 10012 */ MCD::OPC_Decode, 155, 18, 136, 2, // Opcode: PCKEV_B |
4844 | /* 10017 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 10032 |
4845 | /* 10022 */ MCD::OPC_CheckPredicate, 30, 159, 27, 0, // Skip to: 17098 |
4846 | /* 10027 */ MCD::OPC_Decode, 157, 18, 137, 2, // Opcode: PCKEV_H |
4847 | /* 10032 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 10047 |
4848 | /* 10037 */ MCD::OPC_CheckPredicate, 30, 144, 27, 0, // Skip to: 17098 |
4849 | /* 10042 */ MCD::OPC_Decode, 158, 18, 138, 2, // Opcode: PCKEV_W |
4850 | /* 10047 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 10062 |
4851 | /* 10052 */ MCD::OPC_CheckPredicate, 30, 129, 27, 0, // Skip to: 17098 |
4852 | /* 10057 */ MCD::OPC_Decode, 156, 18, 139, 2, // Opcode: PCKEV_D |
4853 | /* 10062 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 10077 |
4854 | /* 10067 */ MCD::OPC_CheckPredicate, 30, 114, 27, 0, // Skip to: 17098 |
4855 | /* 10072 */ MCD::OPC_Decode, 159, 18, 136, 2, // Opcode: PCKOD_B |
4856 | /* 10077 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 10092 |
4857 | /* 10082 */ MCD::OPC_CheckPredicate, 30, 99, 27, 0, // Skip to: 17098 |
4858 | /* 10087 */ MCD::OPC_Decode, 161, 18, 137, 2, // Opcode: PCKOD_H |
4859 | /* 10092 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10107 |
4860 | /* 10097 */ MCD::OPC_CheckPredicate, 30, 84, 27, 0, // Skip to: 17098 |
4861 | /* 10102 */ MCD::OPC_Decode, 162, 18, 138, 2, // Opcode: PCKOD_W |
4862 | /* 10107 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 10122 |
4863 | /* 10112 */ MCD::OPC_CheckPredicate, 30, 69, 27, 0, // Skip to: 17098 |
4864 | /* 10117 */ MCD::OPC_Decode, 160, 18, 139, 2, // Opcode: PCKOD_D |
4865 | /* 10122 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 10137 |
4866 | /* 10127 */ MCD::OPC_CheckPredicate, 30, 54, 27, 0, // Skip to: 17098 |
4867 | /* 10132 */ MCD::OPC_Decode, 128, 14, 136, 2, // Opcode: ILVL_B |
4868 | /* 10137 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 10152 |
4869 | /* 10142 */ MCD::OPC_CheckPredicate, 30, 39, 27, 0, // Skip to: 17098 |
4870 | /* 10147 */ MCD::OPC_Decode, 130, 14, 137, 2, // Opcode: ILVL_H |
4871 | /* 10152 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 10167 |
4872 | /* 10157 */ MCD::OPC_CheckPredicate, 30, 24, 27, 0, // Skip to: 17098 |
4873 | /* 10162 */ MCD::OPC_Decode, 131, 14, 138, 2, // Opcode: ILVL_W |
4874 | /* 10167 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 10182 |
4875 | /* 10172 */ MCD::OPC_CheckPredicate, 30, 9, 27, 0, // Skip to: 17098 |
4876 | /* 10177 */ MCD::OPC_Decode, 129, 14, 139, 2, // Opcode: ILVL_D |
4877 | /* 10182 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 10197 |
4878 | /* 10187 */ MCD::OPC_CheckPredicate, 30, 250, 26, 0, // Skip to: 17098 |
4879 | /* 10192 */ MCD::OPC_Decode, 136, 14, 136, 2, // Opcode: ILVR_B |
4880 | /* 10197 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 10212 |
4881 | /* 10202 */ MCD::OPC_CheckPredicate, 30, 235, 26, 0, // Skip to: 17098 |
4882 | /* 10207 */ MCD::OPC_Decode, 138, 14, 137, 2, // Opcode: ILVR_H |
4883 | /* 10212 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 10227 |
4884 | /* 10217 */ MCD::OPC_CheckPredicate, 30, 220, 26, 0, // Skip to: 17098 |
4885 | /* 10222 */ MCD::OPC_Decode, 139, 14, 138, 2, // Opcode: ILVR_W |
4886 | /* 10227 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 10242 |
4887 | /* 10232 */ MCD::OPC_CheckPredicate, 30, 205, 26, 0, // Skip to: 17098 |
4888 | /* 10237 */ MCD::OPC_Decode, 137, 14, 139, 2, // Opcode: ILVR_D |
4889 | /* 10242 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 10257 |
4890 | /* 10247 */ MCD::OPC_CheckPredicate, 30, 190, 26, 0, // Skip to: 17098 |
4891 | /* 10252 */ MCD::OPC_Decode, 252, 13, 136, 2, // Opcode: ILVEV_B |
4892 | /* 10257 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 10272 |
4893 | /* 10262 */ MCD::OPC_CheckPredicate, 30, 175, 26, 0, // Skip to: 17098 |
4894 | /* 10267 */ MCD::OPC_Decode, 254, 13, 137, 2, // Opcode: ILVEV_H |
4895 | /* 10272 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 10287 |
4896 | /* 10277 */ MCD::OPC_CheckPredicate, 30, 160, 26, 0, // Skip to: 17098 |
4897 | /* 10282 */ MCD::OPC_Decode, 255, 13, 138, 2, // Opcode: ILVEV_W |
4898 | /* 10287 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 10302 |
4899 | /* 10292 */ MCD::OPC_CheckPredicate, 30, 145, 26, 0, // Skip to: 17098 |
4900 | /* 10297 */ MCD::OPC_Decode, 253, 13, 139, 2, // Opcode: ILVEV_D |
4901 | /* 10302 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 10317 |
4902 | /* 10307 */ MCD::OPC_CheckPredicate, 30, 130, 26, 0, // Skip to: 17098 |
4903 | /* 10312 */ MCD::OPC_Decode, 132, 14, 136, 2, // Opcode: ILVOD_B |
4904 | /* 10317 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 10332 |
4905 | /* 10322 */ MCD::OPC_CheckPredicate, 30, 115, 26, 0, // Skip to: 17098 |
4906 | /* 10327 */ MCD::OPC_Decode, 134, 14, 137, 2, // Opcode: ILVOD_H |
4907 | /* 10332 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 10347 |
4908 | /* 10337 */ MCD::OPC_CheckPredicate, 30, 100, 26, 0, // Skip to: 17098 |
4909 | /* 10342 */ MCD::OPC_Decode, 135, 14, 138, 2, // Opcode: ILVOD_W |
4910 | /* 10347 */ MCD::OPC_FilterValue, 31, 90, 26, 0, // Skip to: 17098 |
4911 | /* 10352 */ MCD::OPC_CheckPredicate, 30, 85, 26, 0, // Skip to: 17098 |
4912 | /* 10357 */ MCD::OPC_Decode, 133, 14, 139, 2, // Opcode: ILVOD_D |
4913 | /* 10362 */ MCD::OPC_FilterValue, 21, 107, 1, 0, // Skip to: 10730 |
4914 | /* 10367 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
4915 | /* 10370 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10385 |
4916 | /* 10375 */ MCD::OPC_CheckPredicate, 30, 62, 26, 0, // Skip to: 17098 |
4917 | /* 10380 */ MCD::OPC_Decode, 178, 22, 140, 2, // Opcode: VSHF_B |
4918 | /* 10385 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10400 |
4919 | /* 10390 */ MCD::OPC_CheckPredicate, 30, 47, 26, 0, // Skip to: 17098 |
4920 | /* 10395 */ MCD::OPC_Decode, 180, 22, 141, 2, // Opcode: VSHF_H |
4921 | /* 10400 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10415 |
4922 | /* 10405 */ MCD::OPC_CheckPredicate, 30, 32, 26, 0, // Skip to: 17098 |
4923 | /* 10410 */ MCD::OPC_Decode, 181, 22, 142, 2, // Opcode: VSHF_W |
4924 | /* 10415 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 10430 |
4925 | /* 10420 */ MCD::OPC_CheckPredicate, 30, 17, 26, 0, // Skip to: 17098 |
4926 | /* 10425 */ MCD::OPC_Decode, 179, 22, 143, 2, // Opcode: VSHF_D |
4927 | /* 10430 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 10445 |
4928 | /* 10435 */ MCD::OPC_CheckPredicate, 30, 2, 26, 0, // Skip to: 17098 |
4929 | /* 10440 */ MCD::OPC_Decode, 206, 20, 136, 2, // Opcode: SRAR_B |
4930 | /* 10445 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 10460 |
4931 | /* 10450 */ MCD::OPC_CheckPredicate, 30, 243, 25, 0, // Skip to: 17098 |
4932 | /* 10455 */ MCD::OPC_Decode, 208, 20, 137, 2, // Opcode: SRAR_H |
4933 | /* 10460 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 10475 |
4934 | /* 10465 */ MCD::OPC_CheckPredicate, 30, 228, 25, 0, // Skip to: 17098 |
4935 | /* 10470 */ MCD::OPC_Decode, 209, 20, 138, 2, // Opcode: SRAR_W |
4936 | /* 10475 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 10490 |
4937 | /* 10480 */ MCD::OPC_CheckPredicate, 30, 213, 25, 0, // Skip to: 17098 |
4938 | /* 10485 */ MCD::OPC_Decode, 207, 20, 139, 2, // Opcode: SRAR_D |
4939 | /* 10490 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10505 |
4940 | /* 10495 */ MCD::OPC_CheckPredicate, 30, 198, 25, 0, // Skip to: 17098 |
4941 | /* 10500 */ MCD::OPC_Decode, 228, 20, 136, 2, // Opcode: SRLR_B |
4942 | /* 10505 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 10520 |
4943 | /* 10510 */ MCD::OPC_CheckPredicate, 30, 183, 25, 0, // Skip to: 17098 |
4944 | /* 10515 */ MCD::OPC_Decode, 230, 20, 137, 2, // Opcode: SRLR_H |
4945 | /* 10520 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 10535 |
4946 | /* 10525 */ MCD::OPC_CheckPredicate, 30, 168, 25, 0, // Skip to: 17098 |
4947 | /* 10530 */ MCD::OPC_Decode, 231, 20, 138, 2, // Opcode: SRLR_W |
4948 | /* 10535 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 10550 |
4949 | /* 10540 */ MCD::OPC_CheckPredicate, 30, 153, 25, 0, // Skip to: 17098 |
4950 | /* 10545 */ MCD::OPC_Decode, 229, 20, 139, 2, // Opcode: SRLR_D |
4951 | /* 10550 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 10565 |
4952 | /* 10555 */ MCD::OPC_CheckPredicate, 30, 138, 25, 0, // Skip to: 17098 |
4953 | /* 10560 */ MCD::OPC_Decode, 239, 13, 144, 2, // Opcode: HADD_S_H |
4954 | /* 10565 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 10580 |
4955 | /* 10570 */ MCD::OPC_CheckPredicate, 30, 123, 25, 0, // Skip to: 17098 |
4956 | /* 10575 */ MCD::OPC_Decode, 240, 13, 145, 2, // Opcode: HADD_S_W |
4957 | /* 10580 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 10595 |
4958 | /* 10585 */ MCD::OPC_CheckPredicate, 30, 108, 25, 0, // Skip to: 17098 |
4959 | /* 10590 */ MCD::OPC_Decode, 238, 13, 146, 2, // Opcode: HADD_S_D |
4960 | /* 10595 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 10610 |
4961 | /* 10600 */ MCD::OPC_CheckPredicate, 30, 93, 25, 0, // Skip to: 17098 |
4962 | /* 10605 */ MCD::OPC_Decode, 242, 13, 144, 2, // Opcode: HADD_U_H |
4963 | /* 10610 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 10625 |
4964 | /* 10615 */ MCD::OPC_CheckPredicate, 30, 78, 25, 0, // Skip to: 17098 |
4965 | /* 10620 */ MCD::OPC_Decode, 243, 13, 145, 2, // Opcode: HADD_U_W |
4966 | /* 10625 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 10640 |
4967 | /* 10630 */ MCD::OPC_CheckPredicate, 30, 63, 25, 0, // Skip to: 17098 |
4968 | /* 10635 */ MCD::OPC_Decode, 241, 13, 146, 2, // Opcode: HADD_U_D |
4969 | /* 10640 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 10655 |
4970 | /* 10645 */ MCD::OPC_CheckPredicate, 30, 48, 25, 0, // Skip to: 17098 |
4971 | /* 10650 */ MCD::OPC_Decode, 245, 13, 144, 2, // Opcode: HSUB_S_H |
4972 | /* 10655 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 10670 |
4973 | /* 10660 */ MCD::OPC_CheckPredicate, 30, 33, 25, 0, // Skip to: 17098 |
4974 | /* 10665 */ MCD::OPC_Decode, 246, 13, 145, 2, // Opcode: HSUB_S_W |
4975 | /* 10670 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 10685 |
4976 | /* 10675 */ MCD::OPC_CheckPredicate, 30, 18, 25, 0, // Skip to: 17098 |
4977 | /* 10680 */ MCD::OPC_Decode, 244, 13, 146, 2, // Opcode: HSUB_S_D |
4978 | /* 10685 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 10700 |
4979 | /* 10690 */ MCD::OPC_CheckPredicate, 30, 3, 25, 0, // Skip to: 17098 |
4980 | /* 10695 */ MCD::OPC_Decode, 248, 13, 144, 2, // Opcode: HSUB_U_H |
4981 | /* 10700 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 10715 |
4982 | /* 10705 */ MCD::OPC_CheckPredicate, 30, 244, 24, 0, // Skip to: 17098 |
4983 | /* 10710 */ MCD::OPC_Decode, 249, 13, 145, 2, // Opcode: HSUB_U_W |
4984 | /* 10715 */ MCD::OPC_FilterValue, 31, 234, 24, 0, // Skip to: 17098 |
4985 | /* 10720 */ MCD::OPC_CheckPredicate, 30, 229, 24, 0, // Skip to: 17098 |
4986 | /* 10725 */ MCD::OPC_Decode, 247, 13, 146, 2, // Opcode: HSUB_U_D |
4987 | /* 10730 */ MCD::OPC_FilterValue, 25, 26, 2, 0, // Skip to: 11273 |
4988 | /* 10735 */ MCD::OPC_ExtractField, 20, 6, // Inst{25-20} ... |
4989 | /* 10738 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10753 |
4990 | /* 10743 */ MCD::OPC_CheckPredicate, 30, 206, 24, 0, // Skip to: 17098 |
4991 | /* 10748 */ MCD::OPC_Decode, 150, 20, 158, 2, // Opcode: SLDI_B |
4992 | /* 10753 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10775 |
4993 | /* 10758 */ MCD::OPC_CheckPredicate, 30, 191, 24, 0, // Skip to: 17098 |
4994 | /* 10763 */ MCD::OPC_CheckField, 19, 1, 0, 184, 24, 0, // Skip to: 17098 |
4995 | /* 10770 */ MCD::OPC_Decode, 152, 20, 159, 2, // Opcode: SLDI_H |
4996 | /* 10775 */ MCD::OPC_FilterValue, 3, 62, 0, 0, // Skip to: 10842 |
4997 | /* 10780 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... |
4998 | /* 10783 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10798 |
4999 | /* 10788 */ MCD::OPC_CheckPredicate, 30, 161, 24, 0, // Skip to: 17098 |
5000 | /* 10793 */ MCD::OPC_Decode, 153, 20, 160, 2, // Opcode: SLDI_W |
5001 | /* 10798 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10820 |
5002 | /* 10803 */ MCD::OPC_CheckPredicate, 30, 146, 24, 0, // Skip to: 17098 |
5003 | /* 10808 */ MCD::OPC_CheckField, 17, 1, 0, 139, 24, 0, // Skip to: 17098 |
5004 | /* 10815 */ MCD::OPC_Decode, 151, 20, 161, 2, // Opcode: SLDI_D |
5005 | /* 10820 */ MCD::OPC_FilterValue, 3, 129, 24, 0, // Skip to: 17098 |
5006 | /* 10825 */ MCD::OPC_CheckPredicate, 30, 124, 24, 0, // Skip to: 17098 |
5007 | /* 10830 */ MCD::OPC_CheckField, 16, 2, 2, 117, 24, 0, // Skip to: 17098 |
5008 | /* 10837 */ MCD::OPC_Decode, 247, 9, 162, 2, // Opcode: CTCMSA |
5009 | /* 10842 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 10857 |
5010 | /* 10847 */ MCD::OPC_CheckPredicate, 30, 102, 24, 0, // Skip to: 17098 |
5011 | /* 10852 */ MCD::OPC_Decode, 189, 20, 163, 2, // Opcode: SPLATI_B |
5012 | /* 10857 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 10879 |
5013 | /* 10862 */ MCD::OPC_CheckPredicate, 30, 87, 24, 0, // Skip to: 17098 |
5014 | /* 10867 */ MCD::OPC_CheckField, 19, 1, 0, 80, 24, 0, // Skip to: 17098 |
5015 | /* 10874 */ MCD::OPC_Decode, 191, 20, 164, 2, // Opcode: SPLATI_H |
5016 | /* 10879 */ MCD::OPC_FilterValue, 7, 62, 0, 0, // Skip to: 10946 |
5017 | /* 10884 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... |
5018 | /* 10887 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10902 |
5019 | /* 10892 */ MCD::OPC_CheckPredicate, 30, 57, 24, 0, // Skip to: 17098 |
5020 | /* 10897 */ MCD::OPC_Decode, 192, 20, 165, 2, // Opcode: SPLATI_W |
5021 | /* 10902 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10924 |
5022 | /* 10907 */ MCD::OPC_CheckPredicate, 30, 42, 24, 0, // Skip to: 17098 |
5023 | /* 10912 */ MCD::OPC_CheckField, 17, 1, 0, 35, 24, 0, // Skip to: 17098 |
5024 | /* 10919 */ MCD::OPC_Decode, 190, 20, 166, 2, // Opcode: SPLATI_D |
5025 | /* 10924 */ MCD::OPC_FilterValue, 3, 25, 24, 0, // Skip to: 17098 |
5026 | /* 10929 */ MCD::OPC_CheckPredicate, 30, 20, 24, 0, // Skip to: 17098 |
5027 | /* 10934 */ MCD::OPC_CheckField, 16, 2, 2, 13, 24, 0, // Skip to: 17098 |
5028 | /* 10941 */ MCD::OPC_Decode, 220, 8, 167, 2, // Opcode: CFCMSA |
5029 | /* 10946 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10961 |
5030 | /* 10951 */ MCD::OPC_CheckPredicate, 30, 254, 23, 0, // Skip to: 17098 |
5031 | /* 10956 */ MCD::OPC_Decode, 229, 9, 168, 2, // Opcode: COPY_S_B |
5032 | /* 10961 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 10983 |
5033 | /* 10966 */ MCD::OPC_CheckPredicate, 30, 239, 23, 0, // Skip to: 17098 |
5034 | /* 10971 */ MCD::OPC_CheckField, 19, 1, 0, 232, 23, 0, // Skip to: 17098 |
5035 | /* 10978 */ MCD::OPC_Decode, 231, 9, 169, 2, // Opcode: COPY_S_H |
5036 | /* 10983 */ MCD::OPC_FilterValue, 11, 62, 0, 0, // Skip to: 11050 |
5037 | /* 10988 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... |
5038 | /* 10991 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11006 |
5039 | /* 10996 */ MCD::OPC_CheckPredicate, 30, 209, 23, 0, // Skip to: 17098 |
5040 | /* 11001 */ MCD::OPC_Decode, 232, 9, 170, 2, // Opcode: COPY_S_W |
5041 | /* 11006 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 11028 |
5042 | /* 11011 */ MCD::OPC_CheckPredicate, 38, 194, 23, 0, // Skip to: 17098 |
5043 | /* 11016 */ MCD::OPC_CheckField, 17, 1, 0, 187, 23, 0, // Skip to: 17098 |
5044 | /* 11023 */ MCD::OPC_Decode, 230, 9, 171, 2, // Opcode: COPY_S_D |
5045 | /* 11028 */ MCD::OPC_FilterValue, 3, 177, 23, 0, // Skip to: 17098 |
5046 | /* 11033 */ MCD::OPC_CheckPredicate, 30, 172, 23, 0, // Skip to: 17098 |
5047 | /* 11038 */ MCD::OPC_CheckField, 16, 2, 2, 165, 23, 0, // Skip to: 17098 |
5048 | /* 11045 */ MCD::OPC_Decode, 205, 16, 172, 2, // Opcode: MOVE_V |
5049 | /* 11050 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 11065 |
5050 | /* 11055 */ MCD::OPC_CheckPredicate, 30, 150, 23, 0, // Skip to: 17098 |
5051 | /* 11060 */ MCD::OPC_Decode, 233, 9, 168, 2, // Opcode: COPY_U_B |
5052 | /* 11065 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 11087 |
5053 | /* 11070 */ MCD::OPC_CheckPredicate, 30, 135, 23, 0, // Skip to: 17098 |
5054 | /* 11075 */ MCD::OPC_CheckField, 19, 1, 0, 128, 23, 0, // Skip to: 17098 |
5055 | /* 11082 */ MCD::OPC_Decode, 234, 9, 169, 2, // Opcode: COPY_U_H |
5056 | /* 11087 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 11109 |
5057 | /* 11092 */ MCD::OPC_CheckPredicate, 38, 113, 23, 0, // Skip to: 17098 |
5058 | /* 11097 */ MCD::OPC_CheckField, 18, 2, 0, 106, 23, 0, // Skip to: 17098 |
5059 | /* 11104 */ MCD::OPC_Decode, 235, 9, 170, 2, // Opcode: COPY_U_W |
5060 | /* 11109 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11124 |
5061 | /* 11114 */ MCD::OPC_CheckPredicate, 30, 91, 23, 0, // Skip to: 17098 |
5062 | /* 11119 */ MCD::OPC_Decode, 141, 14, 173, 2, // Opcode: INSERT_B |
5063 | /* 11124 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 11146 |
5064 | /* 11129 */ MCD::OPC_CheckPredicate, 30, 76, 23, 0, // Skip to: 17098 |
5065 | /* 11134 */ MCD::OPC_CheckField, 19, 1, 0, 69, 23, 0, // Skip to: 17098 |
5066 | /* 11141 */ MCD::OPC_Decode, 143, 14, 174, 2, // Opcode: INSERT_H |
5067 | /* 11146 */ MCD::OPC_FilterValue, 19, 40, 0, 0, // Skip to: 11191 |
5068 | /* 11151 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... |
5069 | /* 11154 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11169 |
5070 | /* 11159 */ MCD::OPC_CheckPredicate, 30, 46, 23, 0, // Skip to: 17098 |
5071 | /* 11164 */ MCD::OPC_Decode, 144, 14, 175, 2, // Opcode: INSERT_W |
5072 | /* 11169 */ MCD::OPC_FilterValue, 2, 36, 23, 0, // Skip to: 17098 |
5073 | /* 11174 */ MCD::OPC_CheckPredicate, 38, 31, 23, 0, // Skip to: 17098 |
5074 | /* 11179 */ MCD::OPC_CheckField, 17, 1, 0, 24, 23, 0, // Skip to: 17098 |
5075 | /* 11186 */ MCD::OPC_Decode, 142, 14, 176, 2, // Opcode: INSERT_D |
5076 | /* 11191 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 11206 |
5077 | /* 11196 */ MCD::OPC_CheckPredicate, 30, 9, 23, 0, // Skip to: 17098 |
5078 | /* 11201 */ MCD::OPC_Decode, 146, 14, 177, 2, // Opcode: INSVE_B |
5079 | /* 11206 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 11228 |
5080 | /* 11211 */ MCD::OPC_CheckPredicate, 30, 250, 22, 0, // Skip to: 17098 |
5081 | /* 11216 */ MCD::OPC_CheckField, 19, 1, 0, 243, 22, 0, // Skip to: 17098 |
5082 | /* 11223 */ MCD::OPC_Decode, 148, 14, 177, 2, // Opcode: INSVE_H |
5083 | /* 11228 */ MCD::OPC_FilterValue, 23, 233, 22, 0, // Skip to: 17098 |
5084 | /* 11233 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... |
5085 | /* 11236 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11251 |
5086 | /* 11241 */ MCD::OPC_CheckPredicate, 30, 220, 22, 0, // Skip to: 17098 |
5087 | /* 11246 */ MCD::OPC_Decode, 149, 14, 177, 2, // Opcode: INSVE_W |
5088 | /* 11251 */ MCD::OPC_FilterValue, 2, 210, 22, 0, // Skip to: 17098 |
5089 | /* 11256 */ MCD::OPC_CheckPredicate, 30, 205, 22, 0, // Skip to: 17098 |
5090 | /* 11261 */ MCD::OPC_CheckField, 17, 1, 0, 198, 22, 0, // Skip to: 17098 |
5091 | /* 11268 */ MCD::OPC_Decode, 147, 14, 177, 2, // Opcode: INSVE_D |
5092 | /* 11273 */ MCD::OPC_FilterValue, 26, 227, 1, 0, // Skip to: 11761 |
5093 | /* 11278 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
5094 | /* 11281 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11296 |
5095 | /* 11286 */ MCD::OPC_CheckPredicate, 30, 175, 22, 0, // Skip to: 17098 |
5096 | /* 11291 */ MCD::OPC_Decode, 198, 12, 138, 2, // Opcode: FCAF_W |
5097 | /* 11296 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11311 |
5098 | /* 11301 */ MCD::OPC_CheckPredicate, 30, 160, 22, 0, // Skip to: 17098 |
5099 | /* 11306 */ MCD::OPC_Decode, 197, 12, 139, 2, // Opcode: FCAF_D |
5100 | /* 11311 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11326 |
5101 | /* 11316 */ MCD::OPC_CheckPredicate, 30, 145, 22, 0, // Skip to: 17098 |
5102 | /* 11321 */ MCD::OPC_Decode, 225, 12, 138, 2, // Opcode: FCUN_W |
5103 | /* 11326 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11341 |
5104 | /* 11331 */ MCD::OPC_CheckPredicate, 30, 130, 22, 0, // Skip to: 17098 |
5105 | /* 11336 */ MCD::OPC_Decode, 224, 12, 139, 2, // Opcode: FCUN_D |
5106 | /* 11341 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 11356 |
5107 | /* 11346 */ MCD::OPC_CheckPredicate, 30, 115, 22, 0, // Skip to: 17098 |
5108 | /* 11351 */ MCD::OPC_Decode, 200, 12, 138, 2, // Opcode: FCEQ_W |
5109 | /* 11356 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 11371 |
5110 | /* 11361 */ MCD::OPC_CheckPredicate, 30, 100, 22, 0, // Skip to: 17098 |
5111 | /* 11366 */ MCD::OPC_Decode, 199, 12, 139, 2, // Opcode: FCEQ_D |
5112 | /* 11371 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 11386 |
5113 | /* 11376 */ MCD::OPC_CheckPredicate, 30, 85, 22, 0, // Skip to: 17098 |
5114 | /* 11381 */ MCD::OPC_Decode, 217, 12, 138, 2, // Opcode: FCUEQ_W |
5115 | /* 11386 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 11401 |
5116 | /* 11391 */ MCD::OPC_CheckPredicate, 30, 70, 22, 0, // Skip to: 17098 |
5117 | /* 11396 */ MCD::OPC_Decode, 216, 12, 139, 2, // Opcode: FCUEQ_D |
5118 | /* 11401 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 11416 |
5119 | /* 11406 */ MCD::OPC_CheckPredicate, 30, 55, 22, 0, // Skip to: 17098 |
5120 | /* 11411 */ MCD::OPC_Decode, 206, 12, 138, 2, // Opcode: FCLT_W |
5121 | /* 11416 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 11431 |
5122 | /* 11421 */ MCD::OPC_CheckPredicate, 30, 40, 22, 0, // Skip to: 17098 |
5123 | /* 11426 */ MCD::OPC_Decode, 205, 12, 139, 2, // Opcode: FCLT_D |
5124 | /* 11431 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 11446 |
5125 | /* 11436 */ MCD::OPC_CheckPredicate, 30, 25, 22, 0, // Skip to: 17098 |
5126 | /* 11441 */ MCD::OPC_Decode, 221, 12, 138, 2, // Opcode: FCULT_W |
5127 | /* 11446 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 11461 |
5128 | /* 11451 */ MCD::OPC_CheckPredicate, 30, 10, 22, 0, // Skip to: 17098 |
5129 | /* 11456 */ MCD::OPC_Decode, 220, 12, 139, 2, // Opcode: FCULT_D |
5130 | /* 11461 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 11476 |
5131 | /* 11466 */ MCD::OPC_CheckPredicate, 30, 251, 21, 0, // Skip to: 17098 |
5132 | /* 11471 */ MCD::OPC_Decode, 204, 12, 138, 2, // Opcode: FCLE_W |
5133 | /* 11476 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 11491 |
5134 | /* 11481 */ MCD::OPC_CheckPredicate, 30, 236, 21, 0, // Skip to: 17098 |
5135 | /* 11486 */ MCD::OPC_Decode, 203, 12, 139, 2, // Opcode: FCLE_D |
5136 | /* 11491 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11506 |
5137 | /* 11496 */ MCD::OPC_CheckPredicate, 30, 221, 21, 0, // Skip to: 17098 |
5138 | /* 11501 */ MCD::OPC_Decode, 219, 12, 138, 2, // Opcode: FCULE_W |
5139 | /* 11506 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 11521 |
5140 | /* 11511 */ MCD::OPC_CheckPredicate, 30, 206, 21, 0, // Skip to: 17098 |
5141 | /* 11516 */ MCD::OPC_Decode, 218, 12, 139, 2, // Opcode: FCULE_D |
5142 | /* 11521 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11536 |
5143 | /* 11526 */ MCD::OPC_CheckPredicate, 30, 191, 21, 0, // Skip to: 17098 |
5144 | /* 11531 */ MCD::OPC_Decode, 185, 13, 138, 2, // Opcode: FSAF_W |
5145 | /* 11536 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 11551 |
5146 | /* 11541 */ MCD::OPC_CheckPredicate, 30, 176, 21, 0, // Skip to: 17098 |
5147 | /* 11546 */ MCD::OPC_Decode, 184, 13, 139, 2, // Opcode: FSAF_D |
5148 | /* 11551 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 11566 |
5149 | /* 11556 */ MCD::OPC_CheckPredicate, 30, 161, 21, 0, // Skip to: 17098 |
5150 | /* 11561 */ MCD::OPC_Decode, 223, 13, 138, 2, // Opcode: FSUN_W |
5151 | /* 11566 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 11581 |
5152 | /* 11571 */ MCD::OPC_CheckPredicate, 30, 146, 21, 0, // Skip to: 17098 |
5153 | /* 11576 */ MCD::OPC_Decode, 222, 13, 139, 2, // Opcode: FSUN_D |
5154 | /* 11581 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 11596 |
5155 | /* 11586 */ MCD::OPC_CheckPredicate, 30, 131, 21, 0, // Skip to: 17098 |
5156 | /* 11591 */ MCD::OPC_Decode, 187, 13, 138, 2, // Opcode: FSEQ_W |
5157 | /* 11596 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 11611 |
5158 | /* 11601 */ MCD::OPC_CheckPredicate, 30, 116, 21, 0, // Skip to: 17098 |
5159 | /* 11606 */ MCD::OPC_Decode, 186, 13, 139, 2, // Opcode: FSEQ_D |
5160 | /* 11611 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 11626 |
5161 | /* 11616 */ MCD::OPC_CheckPredicate, 30, 101, 21, 0, // Skip to: 17098 |
5162 | /* 11621 */ MCD::OPC_Decode, 215, 13, 138, 2, // Opcode: FSUEQ_W |
5163 | /* 11626 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 11641 |
5164 | /* 11631 */ MCD::OPC_CheckPredicate, 30, 86, 21, 0, // Skip to: 17098 |
5165 | /* 11636 */ MCD::OPC_Decode, 214, 13, 139, 2, // Opcode: FSUEQ_D |
5166 | /* 11641 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 11656 |
5167 | /* 11646 */ MCD::OPC_CheckPredicate, 30, 71, 21, 0, // Skip to: 17098 |
5168 | /* 11651 */ MCD::OPC_Decode, 191, 13, 138, 2, // Opcode: FSLT_W |
5169 | /* 11656 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 11671 |
5170 | /* 11661 */ MCD::OPC_CheckPredicate, 30, 56, 21, 0, // Skip to: 17098 |
5171 | /* 11666 */ MCD::OPC_Decode, 190, 13, 139, 2, // Opcode: FSLT_D |
5172 | /* 11671 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 11686 |
5173 | /* 11676 */ MCD::OPC_CheckPredicate, 30, 41, 21, 0, // Skip to: 17098 |
5174 | /* 11681 */ MCD::OPC_Decode, 219, 13, 138, 2, // Opcode: FSULT_W |
5175 | /* 11686 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 11701 |
5176 | /* 11691 */ MCD::OPC_CheckPredicate, 30, 26, 21, 0, // Skip to: 17098 |
5177 | /* 11696 */ MCD::OPC_Decode, 218, 13, 139, 2, // Opcode: FSULT_D |
5178 | /* 11701 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 11716 |
5179 | /* 11706 */ MCD::OPC_CheckPredicate, 30, 11, 21, 0, // Skip to: 17098 |
5180 | /* 11711 */ MCD::OPC_Decode, 189, 13, 138, 2, // Opcode: FSLE_W |
5181 | /* 11716 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 11731 |
5182 | /* 11721 */ MCD::OPC_CheckPredicate, 30, 252, 20, 0, // Skip to: 17098 |
5183 | /* 11726 */ MCD::OPC_Decode, 188, 13, 139, 2, // Opcode: FSLE_D |
5184 | /* 11731 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 11746 |
5185 | /* 11736 */ MCD::OPC_CheckPredicate, 30, 237, 20, 0, // Skip to: 17098 |
5186 | /* 11741 */ MCD::OPC_Decode, 217, 13, 138, 2, // Opcode: FSULE_W |
5187 | /* 11746 */ MCD::OPC_FilterValue, 31, 227, 20, 0, // Skip to: 17098 |
5188 | /* 11751 */ MCD::OPC_CheckPredicate, 30, 222, 20, 0, // Skip to: 17098 |
5189 | /* 11756 */ MCD::OPC_Decode, 216, 13, 139, 2, // Opcode: FSULE_D |
5190 | /* 11761 */ MCD::OPC_FilterValue, 27, 137, 1, 0, // Skip to: 12159 |
5191 | /* 11766 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
5192 | /* 11769 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11784 |
5193 | /* 11774 */ MCD::OPC_CheckPredicate, 30, 199, 20, 0, // Skip to: 17098 |
5194 | /* 11779 */ MCD::OPC_Decode, 196, 12, 138, 2, // Opcode: FADD_W |
5195 | /* 11784 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11799 |
5196 | /* 11789 */ MCD::OPC_CheckPredicate, 30, 184, 20, 0, // Skip to: 17098 |
5197 | /* 11794 */ MCD::OPC_Decode, 187, 12, 139, 2, // Opcode: FADD_D |
5198 | /* 11799 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11814 |
5199 | /* 11804 */ MCD::OPC_CheckPredicate, 30, 169, 20, 0, // Skip to: 17098 |
5200 | /* 11809 */ MCD::OPC_Decode, 213, 13, 138, 2, // Opcode: FSUB_W |
5201 | /* 11814 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11829 |
5202 | /* 11819 */ MCD::OPC_CheckPredicate, 30, 154, 20, 0, // Skip to: 17098 |
5203 | /* 11824 */ MCD::OPC_Decode, 204, 13, 139, 2, // Opcode: FSUB_D |
5204 | /* 11829 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 11844 |
5205 | /* 11834 */ MCD::OPC_CheckPredicate, 30, 139, 20, 0, // Skip to: 17098 |
5206 | /* 11839 */ MCD::OPC_Decode, 169, 13, 138, 2, // Opcode: FMUL_W |
5207 | /* 11844 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 11859 |
5208 | /* 11849 */ MCD::OPC_CheckPredicate, 30, 124, 20, 0, // Skip to: 17098 |
5209 | /* 11854 */ MCD::OPC_Decode, 160, 13, 139, 2, // Opcode: FMUL_D |
5210 | /* 11859 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 11874 |
5211 | /* 11864 */ MCD::OPC_CheckPredicate, 30, 109, 20, 0, // Skip to: 17098 |
5212 | /* 11869 */ MCD::OPC_Decode, 234, 12, 138, 2, // Opcode: FDIV_W |
5213 | /* 11874 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 11889 |
5214 | /* 11879 */ MCD::OPC_CheckPredicate, 30, 94, 20, 0, // Skip to: 17098 |
5215 | /* 11884 */ MCD::OPC_Decode, 226, 12, 139, 2, // Opcode: FDIV_D |
5216 | /* 11889 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 11904 |
5217 | /* 11894 */ MCD::OPC_CheckPredicate, 30, 79, 20, 0, // Skip to: 17098 |
5218 | /* 11899 */ MCD::OPC_Decode, 141, 13, 142, 2, // Opcode: FMADD_W |
5219 | /* 11904 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 11919 |
5220 | /* 11909 */ MCD::OPC_CheckPredicate, 30, 64, 20, 0, // Skip to: 17098 |
5221 | /* 11914 */ MCD::OPC_Decode, 140, 13, 143, 2, // Opcode: FMADD_D |
5222 | /* 11919 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 11934 |
5223 | /* 11924 */ MCD::OPC_CheckPredicate, 30, 49, 20, 0, // Skip to: 17098 |
5224 | /* 11929 */ MCD::OPC_Decode, 159, 13, 142, 2, // Opcode: FMSUB_W |
5225 | /* 11934 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 11949 |
5226 | /* 11939 */ MCD::OPC_CheckPredicate, 30, 34, 20, 0, // Skip to: 17098 |
5227 | /* 11944 */ MCD::OPC_Decode, 158, 13, 143, 2, // Opcode: FMSUB_D |
5228 | /* 11949 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11964 |
5229 | /* 11954 */ MCD::OPC_CheckPredicate, 30, 19, 20, 0, // Skip to: 17098 |
5230 | /* 11959 */ MCD::OPC_Decode, 238, 12, 138, 2, // Opcode: FEXP2_W |
5231 | /* 11964 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 11979 |
5232 | /* 11969 */ MCD::OPC_CheckPredicate, 30, 4, 20, 0, // Skip to: 17098 |
5233 | /* 11974 */ MCD::OPC_Decode, 237, 12, 139, 2, // Opcode: FEXP2_D |
5234 | /* 11979 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11994 |
5235 | /* 11984 */ MCD::OPC_CheckPredicate, 30, 245, 19, 0, // Skip to: 17098 |
5236 | /* 11989 */ MCD::OPC_Decode, 235, 12, 178, 2, // Opcode: FEXDO_H |
5237 | /* 11994 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 12009 |
5238 | /* 11999 */ MCD::OPC_CheckPredicate, 30, 230, 19, 0, // Skip to: 17098 |
5239 | /* 12004 */ MCD::OPC_Decode, 236, 12, 179, 2, // Opcode: FEXDO_W |
5240 | /* 12009 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 12024 |
5241 | /* 12014 */ MCD::OPC_CheckPredicate, 30, 215, 19, 0, // Skip to: 17098 |
5242 | /* 12019 */ MCD::OPC_Decode, 228, 13, 178, 2, // Opcode: FTQ_H |
5243 | /* 12024 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 12039 |
5244 | /* 12029 */ MCD::OPC_CheckPredicate, 30, 200, 19, 0, // Skip to: 17098 |
5245 | /* 12034 */ MCD::OPC_Decode, 229, 13, 179, 2, // Opcode: FTQ_W |
5246 | /* 12039 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 12054 |
5247 | /* 12044 */ MCD::OPC_CheckPredicate, 30, 185, 19, 0, // Skip to: 17098 |
5248 | /* 12049 */ MCD::OPC_Decode, 149, 13, 138, 2, // Opcode: FMIN_W |
5249 | /* 12054 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 12069 |
5250 | /* 12059 */ MCD::OPC_CheckPredicate, 30, 170, 19, 0, // Skip to: 17098 |
5251 | /* 12064 */ MCD::OPC_Decode, 148, 13, 139, 2, // Opcode: FMIN_D |
5252 | /* 12069 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 12084 |
5253 | /* 12074 */ MCD::OPC_CheckPredicate, 30, 155, 19, 0, // Skip to: 17098 |
5254 | /* 12079 */ MCD::OPC_Decode, 147, 13, 138, 2, // Opcode: FMIN_A_W |
5255 | /* 12084 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 12099 |
5256 | /* 12089 */ MCD::OPC_CheckPredicate, 30, 140, 19, 0, // Skip to: 17098 |
5257 | /* 12094 */ MCD::OPC_Decode, 146, 13, 139, 2, // Opcode: FMIN_A_D |
5258 | /* 12099 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 12114 |
5259 | /* 12104 */ MCD::OPC_CheckPredicate, 30, 125, 19, 0, // Skip to: 17098 |
5260 | /* 12109 */ MCD::OPC_Decode, 145, 13, 138, 2, // Opcode: FMAX_W |
5261 | /* 12114 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 12129 |
5262 | /* 12119 */ MCD::OPC_CheckPredicate, 30, 110, 19, 0, // Skip to: 17098 |
5263 | /* 12124 */ MCD::OPC_Decode, 144, 13, 139, 2, // Opcode: FMAX_D |
5264 | /* 12129 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 12144 |
5265 | /* 12134 */ MCD::OPC_CheckPredicate, 30, 95, 19, 0, // Skip to: 17098 |
5266 | /* 12139 */ MCD::OPC_Decode, 143, 13, 138, 2, // Opcode: FMAX_A_W |
5267 | /* 12144 */ MCD::OPC_FilterValue, 31, 85, 19, 0, // Skip to: 17098 |
5268 | /* 12149 */ MCD::OPC_CheckPredicate, 30, 80, 19, 0, // Skip to: 17098 |
5269 | /* 12154 */ MCD::OPC_Decode, 142, 13, 139, 2, // Opcode: FMAX_A_D |
5270 | /* 12159 */ MCD::OPC_FilterValue, 28, 107, 1, 0, // Skip to: 12527 |
5271 | /* 12164 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
5272 | /* 12167 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12182 |
5273 | /* 12172 */ MCD::OPC_CheckPredicate, 30, 57, 19, 0, // Skip to: 17098 |
5274 | /* 12177 */ MCD::OPC_Decode, 215, 12, 138, 2, // Opcode: FCOR_W |
5275 | /* 12182 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12197 |
5276 | /* 12187 */ MCD::OPC_CheckPredicate, 30, 42, 19, 0, // Skip to: 17098 |
5277 | /* 12192 */ MCD::OPC_Decode, 214, 12, 139, 2, // Opcode: FCOR_D |
5278 | /* 12197 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12212 |
5279 | /* 12202 */ MCD::OPC_CheckPredicate, 30, 27, 19, 0, // Skip to: 17098 |
5280 | /* 12207 */ MCD::OPC_Decode, 223, 12, 138, 2, // Opcode: FCUNE_W |
5281 | /* 12212 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12227 |
5282 | /* 12217 */ MCD::OPC_CheckPredicate, 30, 12, 19, 0, // Skip to: 17098 |
5283 | /* 12222 */ MCD::OPC_Decode, 222, 12, 139, 2, // Opcode: FCUNE_D |
5284 | /* 12227 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12242 |
5285 | /* 12232 */ MCD::OPC_CheckPredicate, 30, 253, 18, 0, // Skip to: 17098 |
5286 | /* 12237 */ MCD::OPC_Decode, 213, 12, 138, 2, // Opcode: FCNE_W |
5287 | /* 12242 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 12257 |
5288 | /* 12247 */ MCD::OPC_CheckPredicate, 30, 238, 18, 0, // Skip to: 17098 |
5289 | /* 12252 */ MCD::OPC_Decode, 212, 12, 139, 2, // Opcode: FCNE_D |
5290 | /* 12257 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 12272 |
5291 | /* 12262 */ MCD::OPC_CheckPredicate, 30, 223, 18, 0, // Skip to: 17098 |
5292 | /* 12267 */ MCD::OPC_Decode, 227, 17, 137, 2, // Opcode: MUL_Q_H |
5293 | /* 12272 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 12287 |
5294 | /* 12277 */ MCD::OPC_CheckPredicate, 30, 208, 18, 0, // Skip to: 17098 |
5295 | /* 12282 */ MCD::OPC_Decode, 228, 17, 138, 2, // Opcode: MUL_Q_W |
5296 | /* 12287 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 12302 |
5297 | /* 12292 */ MCD::OPC_CheckPredicate, 30, 193, 18, 0, // Skip to: 17098 |
5298 | /* 12297 */ MCD::OPC_Decode, 216, 15, 141, 2, // Opcode: MADD_Q_H |
5299 | /* 12302 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 12317 |
5300 | /* 12307 */ MCD::OPC_CheckPredicate, 30, 178, 18, 0, // Skip to: 17098 |
5301 | /* 12312 */ MCD::OPC_Decode, 217, 15, 142, 2, // Opcode: MADD_Q_W |
5302 | /* 12317 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 12332 |
5303 | /* 12322 */ MCD::OPC_CheckPredicate, 30, 163, 18, 0, // Skip to: 17098 |
5304 | /* 12327 */ MCD::OPC_Decode, 139, 17, 141, 2, // Opcode: MSUB_Q_H |
5305 | /* 12332 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 12347 |
5306 | /* 12337 */ MCD::OPC_CheckPredicate, 30, 148, 18, 0, // Skip to: 17098 |
5307 | /* 12342 */ MCD::OPC_Decode, 140, 17, 142, 2, // Opcode: MSUB_Q_W |
5308 | /* 12347 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 12362 |
5309 | /* 12352 */ MCD::OPC_CheckPredicate, 30, 133, 18, 0, // Skip to: 17098 |
5310 | /* 12357 */ MCD::OPC_Decode, 195, 13, 138, 2, // Opcode: FSOR_W |
5311 | /* 12362 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 12377 |
5312 | /* 12367 */ MCD::OPC_CheckPredicate, 30, 118, 18, 0, // Skip to: 17098 |
5313 | /* 12372 */ MCD::OPC_Decode, 194, 13, 139, 2, // Opcode: FSOR_D |
5314 | /* 12377 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 12392 |
5315 | /* 12382 */ MCD::OPC_CheckPredicate, 30, 103, 18, 0, // Skip to: 17098 |
5316 | /* 12387 */ MCD::OPC_Decode, 221, 13, 138, 2, // Opcode: FSUNE_W |
5317 | /* 12392 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 12407 |
5318 | /* 12397 */ MCD::OPC_CheckPredicate, 30, 88, 18, 0, // Skip to: 17098 |
5319 | /* 12402 */ MCD::OPC_Decode, 220, 13, 139, 2, // Opcode: FSUNE_D |
5320 | /* 12407 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 12422 |
5321 | /* 12412 */ MCD::OPC_CheckPredicate, 30, 73, 18, 0, // Skip to: 17098 |
5322 | /* 12417 */ MCD::OPC_Decode, 193, 13, 138, 2, // Opcode: FSNE_W |
5323 | /* 12422 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 12437 |
5324 | /* 12427 */ MCD::OPC_CheckPredicate, 30, 58, 18, 0, // Skip to: 17098 |
5325 | /* 12432 */ MCD::OPC_Decode, 192, 13, 139, 2, // Opcode: FSNE_D |
5326 | /* 12437 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 12452 |
5327 | /* 12442 */ MCD::OPC_CheckPredicate, 30, 43, 18, 0, // Skip to: 17098 |
5328 | /* 12447 */ MCD::OPC_Decode, 203, 17, 137, 2, // Opcode: MULR_Q_H |
5329 | /* 12452 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 12467 |
5330 | /* 12457 */ MCD::OPC_CheckPredicate, 30, 28, 18, 0, // Skip to: 17098 |
5331 | /* 12462 */ MCD::OPC_Decode, 204, 17, 138, 2, // Opcode: MULR_Q_W |
5332 | /* 12467 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 12482 |
5333 | /* 12472 */ MCD::OPC_CheckPredicate, 30, 13, 18, 0, // Skip to: 17098 |
5334 | /* 12477 */ MCD::OPC_Decode, 200, 15, 141, 2, // Opcode: MADDR_Q_H |
5335 | /* 12482 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 12497 |
5336 | /* 12487 */ MCD::OPC_CheckPredicate, 30, 254, 17, 0, // Skip to: 17098 |
5337 | /* 12492 */ MCD::OPC_Decode, 201, 15, 142, 2, // Opcode: MADDR_Q_W |
5338 | /* 12497 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 12512 |
5339 | /* 12502 */ MCD::OPC_CheckPredicate, 30, 239, 17, 0, // Skip to: 17098 |
5340 | /* 12507 */ MCD::OPC_Decode, 251, 16, 141, 2, // Opcode: MSUBR_Q_H |
5341 | /* 12512 */ MCD::OPC_FilterValue, 29, 229, 17, 0, // Skip to: 17098 |
5342 | /* 12517 */ MCD::OPC_CheckPredicate, 30, 224, 17, 0, // Skip to: 17098 |
5343 | /* 12522 */ MCD::OPC_Decode, 252, 16, 142, 2, // Opcode: MSUBR_Q_W |
5344 | /* 12527 */ MCD::OPC_FilterValue, 30, 76, 3, 0, // Skip to: 13376 |
5345 | /* 12532 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
5346 | /* 12535 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12550 |
5347 | /* 12540 */ MCD::OPC_CheckPredicate, 30, 201, 17, 0, // Skip to: 17098 |
5348 | /* 12545 */ MCD::OPC_Decode, 208, 6, 136, 2, // Opcode: AND_V |
5349 | /* 12550 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12565 |
5350 | /* 12555 */ MCD::OPC_CheckPredicate, 30, 186, 17, 0, // Skip to: 17098 |
5351 | /* 12560 */ MCD::OPC_Decode, 145, 18, 136, 2, // Opcode: OR_V |
5352 | /* 12565 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12580 |
5353 | /* 12570 */ MCD::OPC_CheckPredicate, 30, 171, 17, 0, // Skip to: 17098 |
5354 | /* 12575 */ MCD::OPC_Decode, 132, 18, 136, 2, // Opcode: NOR_V |
5355 | /* 12580 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12595 |
5356 | /* 12585 */ MCD::OPC_CheckPredicate, 30, 156, 17, 0, // Skip to: 17098 |
5357 | /* 12590 */ MCD::OPC_Decode, 199, 22, 136, 2, // Opcode: XOR_V |
5358 | /* 12595 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12610 |
5359 | /* 12600 */ MCD::OPC_CheckPredicate, 30, 141, 17, 0, // Skip to: 17098 |
5360 | /* 12605 */ MCD::OPC_Decode, 251, 7, 140, 2, // Opcode: BMNZ_V |
5361 | /* 12610 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12625 |
5362 | /* 12615 */ MCD::OPC_CheckPredicate, 30, 126, 17, 0, // Skip to: 17098 |
5363 | /* 12620 */ MCD::OPC_Decode, 253, 7, 140, 2, // Opcode: BMZ_V |
5364 | /* 12625 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12640 |
5365 | /* 12630 */ MCD::OPC_CheckPredicate, 30, 111, 17, 0, // Skip to: 17098 |
5366 | /* 12635 */ MCD::OPC_Decode, 167, 8, 140, 2, // Opcode: BSEL_V |
5367 | /* 12640 */ MCD::OPC_FilterValue, 24, 243, 0, 0, // Skip to: 12888 |
5368 | /* 12645 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
5369 | /* 12648 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12663 |
5370 | /* 12653 */ MCD::OPC_CheckPredicate, 30, 88, 17, 0, // Skip to: 17098 |
5371 | /* 12658 */ MCD::OPC_Decode, 251, 12, 180, 2, // Opcode: FILL_B |
5372 | /* 12663 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12678 |
5373 | /* 12668 */ MCD::OPC_CheckPredicate, 30, 73, 17, 0, // Skip to: 17098 |
5374 | /* 12673 */ MCD::OPC_Decode, 253, 12, 181, 2, // Opcode: FILL_H |
5375 | /* 12678 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12693 |
5376 | /* 12683 */ MCD::OPC_CheckPredicate, 30, 58, 17, 0, // Skip to: 17098 |
5377 | /* 12688 */ MCD::OPC_Decode, 254, 12, 182, 2, // Opcode: FILL_W |
5378 | /* 12693 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12708 |
5379 | /* 12698 */ MCD::OPC_CheckPredicate, 38, 43, 17, 0, // Skip to: 17098 |
5380 | /* 12703 */ MCD::OPC_Decode, 252, 12, 183, 2, // Opcode: FILL_D |
5381 | /* 12708 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12723 |
5382 | /* 12713 */ MCD::OPC_CheckPredicate, 30, 28, 17, 0, // Skip to: 17098 |
5383 | /* 12718 */ MCD::OPC_Decode, 163, 18, 172, 2, // Opcode: PCNT_B |
5384 | /* 12723 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12738 |
5385 | /* 12728 */ MCD::OPC_CheckPredicate, 30, 13, 17, 0, // Skip to: 17098 |
5386 | /* 12733 */ MCD::OPC_Decode, 165, 18, 184, 2, // Opcode: PCNT_H |
5387 | /* 12738 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12753 |
5388 | /* 12743 */ MCD::OPC_CheckPredicate, 30, 254, 16, 0, // Skip to: 17098 |
5389 | /* 12748 */ MCD::OPC_Decode, 166, 18, 185, 2, // Opcode: PCNT_W |
5390 | /* 12753 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 12768 |
5391 | /* 12758 */ MCD::OPC_CheckPredicate, 30, 239, 16, 0, // Skip to: 17098 |
5392 | /* 12763 */ MCD::OPC_Decode, 164, 18, 186, 2, // Opcode: PCNT_D |
5393 | /* 12768 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 12783 |
5394 | /* 12773 */ MCD::OPC_CheckPredicate, 30, 224, 16, 0, // Skip to: 17098 |
5395 | /* 12778 */ MCD::OPC_Decode, 237, 17, 172, 2, // Opcode: NLOC_B |
5396 | /* 12783 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 12798 |
5397 | /* 12788 */ MCD::OPC_CheckPredicate, 30, 209, 16, 0, // Skip to: 17098 |
5398 | /* 12793 */ MCD::OPC_Decode, 239, 17, 184, 2, // Opcode: NLOC_H |
5399 | /* 12798 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 12813 |
5400 | /* 12803 */ MCD::OPC_CheckPredicate, 30, 194, 16, 0, // Skip to: 17098 |
5401 | /* 12808 */ MCD::OPC_Decode, 240, 17, 185, 2, // Opcode: NLOC_W |
5402 | /* 12813 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 12828 |
5403 | /* 12818 */ MCD::OPC_CheckPredicate, 30, 179, 16, 0, // Skip to: 17098 |
5404 | /* 12823 */ MCD::OPC_Decode, 238, 17, 186, 2, // Opcode: NLOC_D |
5405 | /* 12828 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 12843 |
5406 | /* 12833 */ MCD::OPC_CheckPredicate, 30, 164, 16, 0, // Skip to: 17098 |
5407 | /* 12838 */ MCD::OPC_Decode, 241, 17, 172, 2, // Opcode: NLZC_B |
5408 | /* 12843 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 12858 |
5409 | /* 12848 */ MCD::OPC_CheckPredicate, 30, 149, 16, 0, // Skip to: 17098 |
5410 | /* 12853 */ MCD::OPC_Decode, 243, 17, 184, 2, // Opcode: NLZC_H |
5411 | /* 12858 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12873 |
5412 | /* 12863 */ MCD::OPC_CheckPredicate, 30, 134, 16, 0, // Skip to: 17098 |
5413 | /* 12868 */ MCD::OPC_Decode, 244, 17, 185, 2, // Opcode: NLZC_W |
5414 | /* 12873 */ MCD::OPC_FilterValue, 15, 124, 16, 0, // Skip to: 17098 |
5415 | /* 12878 */ MCD::OPC_CheckPredicate, 30, 119, 16, 0, // Skip to: 17098 |
5416 | /* 12883 */ MCD::OPC_Decode, 242, 17, 186, 2, // Opcode: NLZC_D |
5417 | /* 12888 */ MCD::OPC_FilterValue, 25, 109, 16, 0, // Skip to: 17098 |
5418 | /* 12893 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
5419 | /* 12896 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12911 |
5420 | /* 12901 */ MCD::OPC_CheckPredicate, 30, 96, 16, 0, // Skip to: 17098 |
5421 | /* 12906 */ MCD::OPC_Decode, 202, 12, 185, 2, // Opcode: FCLASS_W |
5422 | /* 12911 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12926 |
5423 | /* 12916 */ MCD::OPC_CheckPredicate, 30, 81, 16, 0, // Skip to: 17098 |
5424 | /* 12921 */ MCD::OPC_Decode, 201, 12, 186, 2, // Opcode: FCLASS_D |
5425 | /* 12926 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12941 |
5426 | /* 12931 */ MCD::OPC_CheckPredicate, 30, 66, 16, 0, // Skip to: 17098 |
5427 | /* 12936 */ MCD::OPC_Decode, 231, 13, 185, 2, // Opcode: FTRUNC_S_W |
5428 | /* 12941 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12956 |
5429 | /* 12946 */ MCD::OPC_CheckPredicate, 30, 51, 16, 0, // Skip to: 17098 |
5430 | /* 12951 */ MCD::OPC_Decode, 230, 13, 186, 2, // Opcode: FTRUNC_S_D |
5431 | /* 12956 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12971 |
5432 | /* 12961 */ MCD::OPC_CheckPredicate, 30, 36, 16, 0, // Skip to: 17098 |
5433 | /* 12966 */ MCD::OPC_Decode, 233, 13, 185, 2, // Opcode: FTRUNC_U_W |
5434 | /* 12971 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12986 |
5435 | /* 12976 */ MCD::OPC_CheckPredicate, 30, 21, 16, 0, // Skip to: 17098 |
5436 | /* 12981 */ MCD::OPC_Decode, 232, 13, 186, 2, // Opcode: FTRUNC_U_D |
5437 | /* 12986 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 13001 |
5438 | /* 12991 */ MCD::OPC_CheckPredicate, 30, 6, 16, 0, // Skip to: 17098 |
5439 | /* 12996 */ MCD::OPC_Decode, 203, 13, 185, 2, // Opcode: FSQRT_W |
5440 | /* 13001 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 13016 |
5441 | /* 13006 */ MCD::OPC_CheckPredicate, 30, 247, 15, 0, // Skip to: 17098 |
5442 | /* 13011 */ MCD::OPC_Decode, 196, 13, 186, 2, // Opcode: FSQRT_D |
5443 | /* 13016 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 13031 |
5444 | /* 13021 */ MCD::OPC_CheckPredicate, 30, 232, 15, 0, // Skip to: 17098 |
5445 | /* 13026 */ MCD::OPC_Decode, 183, 13, 185, 2, // Opcode: FRSQRT_W |
5446 | /* 13031 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 13046 |
5447 | /* 13036 */ MCD::OPC_CheckPredicate, 30, 217, 15, 0, // Skip to: 17098 |
5448 | /* 13041 */ MCD::OPC_Decode, 182, 13, 186, 2, // Opcode: FRSQRT_D |
5449 | /* 13046 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 13061 |
5450 | /* 13051 */ MCD::OPC_CheckPredicate, 30, 202, 15, 0, // Skip to: 17098 |
5451 | /* 13056 */ MCD::OPC_Decode, 179, 13, 185, 2, // Opcode: FRCP_W |
5452 | /* 13061 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 13076 |
5453 | /* 13066 */ MCD::OPC_CheckPredicate, 30, 187, 15, 0, // Skip to: 17098 |
5454 | /* 13071 */ MCD::OPC_Decode, 178, 13, 186, 2, // Opcode: FRCP_D |
5455 | /* 13076 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 13091 |
5456 | /* 13081 */ MCD::OPC_CheckPredicate, 30, 172, 15, 0, // Skip to: 17098 |
5457 | /* 13086 */ MCD::OPC_Decode, 181, 13, 185, 2, // Opcode: FRINT_W |
5458 | /* 13091 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 13106 |
5459 | /* 13096 */ MCD::OPC_CheckPredicate, 30, 157, 15, 0, // Skip to: 17098 |
5460 | /* 13101 */ MCD::OPC_Decode, 180, 13, 186, 2, // Opcode: FRINT_D |
5461 | /* 13106 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 13121 |
5462 | /* 13111 */ MCD::OPC_CheckPredicate, 30, 142, 15, 0, // Skip to: 17098 |
5463 | /* 13116 */ MCD::OPC_Decode, 128, 13, 185, 2, // Opcode: FLOG2_W |
5464 | /* 13121 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 13136 |
5465 | /* 13126 */ MCD::OPC_CheckPredicate, 30, 127, 15, 0, // Skip to: 17098 |
5466 | /* 13131 */ MCD::OPC_Decode, 255, 12, 186, 2, // Opcode: FLOG2_D |
5467 | /* 13136 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 13151 |
5468 | /* 13141 */ MCD::OPC_CheckPredicate, 30, 112, 15, 0, // Skip to: 17098 |
5469 | /* 13146 */ MCD::OPC_Decode, 240, 12, 187, 2, // Opcode: FEXUPL_W |
5470 | /* 13151 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 13166 |
5471 | /* 13156 */ MCD::OPC_CheckPredicate, 30, 97, 15, 0, // Skip to: 17098 |
5472 | /* 13161 */ MCD::OPC_Decode, 239, 12, 188, 2, // Opcode: FEXUPL_D |
5473 | /* 13166 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 13181 |
5474 | /* 13171 */ MCD::OPC_CheckPredicate, 30, 82, 15, 0, // Skip to: 17098 |
5475 | /* 13176 */ MCD::OPC_Decode, 242, 12, 187, 2, // Opcode: FEXUPR_W |
5476 | /* 13181 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 13196 |
5477 | /* 13186 */ MCD::OPC_CheckPredicate, 30, 67, 15, 0, // Skip to: 17098 |
5478 | /* 13191 */ MCD::OPC_Decode, 241, 12, 188, 2, // Opcode: FEXUPR_D |
5479 | /* 13196 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 13211 |
5480 | /* 13201 */ MCD::OPC_CheckPredicate, 30, 52, 15, 0, // Skip to: 17098 |
5481 | /* 13206 */ MCD::OPC_Decode, 248, 12, 187, 2, // Opcode: FFQL_W |
5482 | /* 13211 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 13226 |
5483 | /* 13216 */ MCD::OPC_CheckPredicate, 30, 37, 15, 0, // Skip to: 17098 |
5484 | /* 13221 */ MCD::OPC_Decode, 247, 12, 188, 2, // Opcode: FFQL_D |
5485 | /* 13226 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 13241 |
5486 | /* 13231 */ MCD::OPC_CheckPredicate, 30, 22, 15, 0, // Skip to: 17098 |
5487 | /* 13236 */ MCD::OPC_Decode, 250, 12, 187, 2, // Opcode: FFQR_W |
5488 | /* 13241 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 13256 |
5489 | /* 13246 */ MCD::OPC_CheckPredicate, 30, 7, 15, 0, // Skip to: 17098 |
5490 | /* 13251 */ MCD::OPC_Decode, 249, 12, 188, 2, // Opcode: FFQR_D |
5491 | /* 13256 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 13271 |
5492 | /* 13261 */ MCD::OPC_CheckPredicate, 30, 248, 14, 0, // Skip to: 17098 |
5493 | /* 13266 */ MCD::OPC_Decode, 225, 13, 185, 2, // Opcode: FTINT_S_W |
5494 | /* 13271 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 13286 |
5495 | /* 13276 */ MCD::OPC_CheckPredicate, 30, 233, 14, 0, // Skip to: 17098 |
5496 | /* 13281 */ MCD::OPC_Decode, 224, 13, 186, 2, // Opcode: FTINT_S_D |
5497 | /* 13286 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 13301 |
5498 | /* 13291 */ MCD::OPC_CheckPredicate, 30, 218, 14, 0, // Skip to: 17098 |
5499 | /* 13296 */ MCD::OPC_Decode, 227, 13, 185, 2, // Opcode: FTINT_U_W |
5500 | /* 13301 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 13316 |
5501 | /* 13306 */ MCD::OPC_CheckPredicate, 30, 203, 14, 0, // Skip to: 17098 |
5502 | /* 13311 */ MCD::OPC_Decode, 226, 13, 186, 2, // Opcode: FTINT_U_D |
5503 | /* 13316 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 13331 |
5504 | /* 13321 */ MCD::OPC_CheckPredicate, 30, 188, 14, 0, // Skip to: 17098 |
5505 | /* 13326 */ MCD::OPC_Decode, 244, 12, 185, 2, // Opcode: FFINT_S_W |
5506 | /* 13331 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 13346 |
5507 | /* 13336 */ MCD::OPC_CheckPredicate, 30, 173, 14, 0, // Skip to: 17098 |
5508 | /* 13341 */ MCD::OPC_Decode, 243, 12, 186, 2, // Opcode: FFINT_S_D |
5509 | /* 13346 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 13361 |
5510 | /* 13351 */ MCD::OPC_CheckPredicate, 30, 158, 14, 0, // Skip to: 17098 |
5511 | /* 13356 */ MCD::OPC_Decode, 246, 12, 185, 2, // Opcode: FFINT_U_W |
5512 | /* 13361 */ MCD::OPC_FilterValue, 31, 148, 14, 0, // Skip to: 17098 |
5513 | /* 13366 */ MCD::OPC_CheckPredicate, 30, 143, 14, 0, // Skip to: 17098 |
5514 | /* 13371 */ MCD::OPC_Decode, 245, 12, 186, 2, // Opcode: FFINT_U_D |
5515 | /* 13376 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 13391 |
5516 | /* 13381 */ MCD::OPC_CheckPredicate, 30, 128, 14, 0, // Skip to: 17098 |
5517 | /* 13386 */ MCD::OPC_Decode, 229, 14, 189, 2, // Opcode: LD_B |
5518 | /* 13391 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 13406 |
5519 | /* 13396 */ MCD::OPC_CheckPredicate, 30, 113, 14, 0, // Skip to: 17098 |
5520 | /* 13401 */ MCD::OPC_Decode, 231, 14, 189, 2, // Opcode: LD_H |
5521 | /* 13406 */ MCD::OPC_FilterValue, 34, 10, 0, 0, // Skip to: 13421 |
5522 | /* 13411 */ MCD::OPC_CheckPredicate, 30, 98, 14, 0, // Skip to: 17098 |
5523 | /* 13416 */ MCD::OPC_Decode, 232, 14, 189, 2, // Opcode: LD_W |
5524 | /* 13421 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 13436 |
5525 | /* 13426 */ MCD::OPC_CheckPredicate, 30, 83, 14, 0, // Skip to: 17098 |
5526 | /* 13431 */ MCD::OPC_Decode, 230, 14, 189, 2, // Opcode: LD_D |
5527 | /* 13436 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 13451 |
5528 | /* 13441 */ MCD::OPC_CheckPredicate, 30, 68, 14, 0, // Skip to: 17098 |
5529 | /* 13446 */ MCD::OPC_Decode, 242, 20, 189, 2, // Opcode: ST_B |
5530 | /* 13451 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 13466 |
5531 | /* 13456 */ MCD::OPC_CheckPredicate, 30, 53, 14, 0, // Skip to: 17098 |
5532 | /* 13461 */ MCD::OPC_Decode, 244, 20, 189, 2, // Opcode: ST_H |
5533 | /* 13466 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 13481 |
5534 | /* 13471 */ MCD::OPC_CheckPredicate, 30, 38, 14, 0, // Skip to: 17098 |
5535 | /* 13476 */ MCD::OPC_Decode, 245, 20, 189, 2, // Opcode: ST_W |
5536 | /* 13481 */ MCD::OPC_FilterValue, 39, 28, 14, 0, // Skip to: 17098 |
5537 | /* 13486 */ MCD::OPC_CheckPredicate, 30, 23, 14, 0, // Skip to: 17098 |
5538 | /* 13491 */ MCD::OPC_Decode, 243, 20, 189, 2, // Opcode: ST_D |
5539 | /* 13496 */ MCD::OPC_FilterValue, 31, 165, 12, 0, // Skip to: 16738 |
5540 | /* 13501 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
5541 | /* 13504 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13519 |
5542 | /* 13509 */ MCD::OPC_CheckPredicate, 28, 0, 14, 0, // Skip to: 17098 |
5543 | /* 13514 */ MCD::OPC_Decode, 152, 12, 190, 2, // Opcode: EXT |
5544 | /* 13519 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13534 |
5545 | /* 13524 */ MCD::OPC_CheckPredicate, 28, 241, 13, 0, // Skip to: 17098 |
5546 | /* 13529 */ MCD::OPC_Decode, 140, 14, 191, 2, // Opcode: INS |
5547 | /* 13534 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 13556 |
5548 | /* 13539 */ MCD::OPC_CheckPredicate, 42, 226, 13, 0, // Skip to: 17098 |
5549 | /* 13544 */ MCD::OPC_CheckField, 6, 5, 0, 219, 13, 0, // Skip to: 17098 |
5550 | /* 13551 */ MCD::OPC_Decode, 177, 13, 192, 2, // Opcode: FORK |
5551 | /* 13556 */ MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 13584 |
5552 | /* 13561 */ MCD::OPC_CheckPredicate, 42, 204, 13, 0, // Skip to: 17098 |
5553 | /* 13566 */ MCD::OPC_CheckField, 16, 5, 0, 197, 13, 0, // Skip to: 17098 |
5554 | /* 13573 */ MCD::OPC_CheckField, 6, 5, 0, 190, 13, 0, // Skip to: 17098 |
5555 | /* 13580 */ MCD::OPC_Decode, 204, 22, 25, // Opcode: YIELD |
5556 | /* 13584 */ MCD::OPC_FilterValue, 10, 48, 0, 0, // Skip to: 13637 |
5557 | /* 13589 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5558 | /* 13592 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13607 |
5559 | /* 13597 */ MCD::OPC_CheckPredicate, 37, 168, 13, 0, // Skip to: 17098 |
5560 | /* 13602 */ MCD::OPC_Decode, 176, 15, 193, 2, // Opcode: LWX |
5561 | /* 13607 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13622 |
5562 | /* 13612 */ MCD::OPC_CheckPredicate, 37, 153, 13, 0, // Skip to: 17098 |
5563 | /* 13617 */ MCD::OPC_Decode, 241, 14, 193, 2, // Opcode: LHX |
5564 | /* 13622 */ MCD::OPC_FilterValue, 6, 143, 13, 0, // Skip to: 17098 |
5565 | /* 13627 */ MCD::OPC_CheckPredicate, 37, 138, 13, 0, // Skip to: 17098 |
5566 | /* 13632 */ MCD::OPC_Decode, 200, 14, 193, 2, // Opcode: LBUX |
5567 | /* 13637 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 13659 |
5568 | /* 13642 */ MCD::OPC_CheckPredicate, 37, 123, 13, 0, // Skip to: 17098 |
5569 | /* 13647 */ MCD::OPC_CheckField, 6, 10, 0, 116, 13, 0, // Skip to: 17098 |
5570 | /* 13654 */ MCD::OPC_Decode, 145, 14, 194, 2, // Opcode: INSV |
5571 | /* 13659 */ MCD::OPC_FilterValue, 16, 109, 1, 0, // Skip to: 14029 |
5572 | /* 13664 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5573 | /* 13667 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13682 |
5574 | /* 13672 */ MCD::OPC_CheckPredicate, 37, 93, 13, 0, // Skip to: 17098 |
5575 | /* 13677 */ MCD::OPC_Decode, 166, 6, 195, 2, // Opcode: ADDU_QB |
5576 | /* 13682 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13697 |
5577 | /* 13687 */ MCD::OPC_CheckPredicate, 37, 78, 13, 0, // Skip to: 17098 |
5578 | /* 13692 */ MCD::OPC_Decode, 158, 21, 195, 2, // Opcode: SUBU_QB |
5579 | /* 13697 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13712 |
5580 | /* 13702 */ MCD::OPC_CheckPredicate, 37, 63, 13, 0, // Skip to: 17098 |
5581 | /* 13707 */ MCD::OPC_Decode, 170, 6, 195, 2, // Opcode: ADDU_S_QB |
5582 | /* 13712 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 13727 |
5583 | /* 13717 */ MCD::OPC_CheckPredicate, 37, 48, 13, 0, // Skip to: 17098 |
5584 | /* 13722 */ MCD::OPC_Decode, 162, 21, 195, 2, // Opcode: SUBU_S_QB |
5585 | /* 13727 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 13742 |
5586 | /* 13732 */ MCD::OPC_CheckPredicate, 37, 33, 13, 0, // Skip to: 17098 |
5587 | /* 13737 */ MCD::OPC_Decode, 190, 17, 195, 2, // Opcode: MULEU_S_PH_QBL |
5588 | /* 13742 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 13757 |
5589 | /* 13747 */ MCD::OPC_CheckPredicate, 37, 18, 13, 0, // Skip to: 17098 |
5590 | /* 13752 */ MCD::OPC_Decode, 192, 17, 195, 2, // Opcode: MULEU_S_PH_QBR |
5591 | /* 13757 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 13772 |
5592 | /* 13762 */ MCD::OPC_CheckPredicate, 69, 3, 13, 0, // Skip to: 17098 |
5593 | /* 13767 */ MCD::OPC_Decode, 164, 6, 195, 2, // Opcode: ADDU_PH |
5594 | /* 13772 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 13787 |
5595 | /* 13777 */ MCD::OPC_CheckPredicate, 69, 244, 12, 0, // Skip to: 17098 |
5596 | /* 13782 */ MCD::OPC_Decode, 156, 21, 195, 2, // Opcode: SUBU_PH |
5597 | /* 13787 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 13802 |
5598 | /* 13792 */ MCD::OPC_CheckPredicate, 37, 229, 12, 0, // Skip to: 17098 |
5599 | /* 13797 */ MCD::OPC_Decode, 136, 6, 195, 2, // Opcode: ADDQ_PH |
5600 | /* 13802 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 13817 |
5601 | /* 13807 */ MCD::OPC_CheckPredicate, 37, 214, 12, 0, // Skip to: 17098 |
5602 | /* 13812 */ MCD::OPC_Decode, 255, 20, 195, 2, // Opcode: SUBQ_PH |
5603 | /* 13817 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 13832 |
5604 | /* 13822 */ MCD::OPC_CheckPredicate, 69, 199, 12, 0, // Skip to: 17098 |
5605 | /* 13827 */ MCD::OPC_Decode, 168, 6, 195, 2, // Opcode: ADDU_S_PH |
5606 | /* 13832 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 13847 |
5607 | /* 13837 */ MCD::OPC_CheckPredicate, 69, 184, 12, 0, // Skip to: 17098 |
5608 | /* 13842 */ MCD::OPC_Decode, 160, 21, 195, 2, // Opcode: SUBU_S_PH |
5609 | /* 13847 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 13862 |
5610 | /* 13852 */ MCD::OPC_CheckPredicate, 37, 169, 12, 0, // Skip to: 17098 |
5611 | /* 13857 */ MCD::OPC_Decode, 138, 6, 195, 2, // Opcode: ADDQ_S_PH |
5612 | /* 13862 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 13877 |
5613 | /* 13867 */ MCD::OPC_CheckPredicate, 37, 154, 12, 0, // Skip to: 17098 |
5614 | /* 13872 */ MCD::OPC_Decode, 129, 21, 195, 2, // Opcode: SUBQ_S_PH |
5615 | /* 13877 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 13891 |
5616 | /* 13882 */ MCD::OPC_CheckPredicate, 37, 139, 12, 0, // Skip to: 17098 |
5617 | /* 13887 */ MCD::OPC_Decode, 143, 6, 61, // Opcode: ADDSC |
5618 | /* 13891 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 13905 |
5619 | /* 13896 */ MCD::OPC_CheckPredicate, 37, 125, 12, 0, // Skip to: 17098 |
5620 | /* 13901 */ MCD::OPC_Decode, 180, 6, 61, // Opcode: ADDWC |
5621 | /* 13905 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 13919 |
5622 | /* 13910 */ MCD::OPC_CheckPredicate, 37, 111, 12, 0, // Skip to: 17098 |
5623 | /* 13915 */ MCD::OPC_Decode, 188, 16, 61, // Opcode: MODSUB |
5624 | /* 13919 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 13941 |
5625 | /* 13924 */ MCD::OPC_CheckPredicate, 37, 97, 12, 0, // Skip to: 17098 |
5626 | /* 13929 */ MCD::OPC_CheckField, 16, 5, 0, 90, 12, 0, // Skip to: 17098 |
5627 | /* 13936 */ MCD::OPC_Decode, 219, 18, 196, 2, // Opcode: RADDU_W_QB |
5628 | /* 13941 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 13955 |
5629 | /* 13946 */ MCD::OPC_CheckPredicate, 37, 75, 12, 0, // Skip to: 17098 |
5630 | /* 13951 */ MCD::OPC_Decode, 140, 6, 61, // Opcode: ADDQ_S_W |
5631 | /* 13955 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 13969 |
5632 | /* 13960 */ MCD::OPC_CheckPredicate, 37, 61, 12, 0, // Skip to: 17098 |
5633 | /* 13965 */ MCD::OPC_Decode, 131, 21, 61, // Opcode: SUBQ_S_W |
5634 | /* 13969 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 13984 |
5635 | /* 13974 */ MCD::OPC_CheckPredicate, 37, 47, 12, 0, // Skip to: 17098 |
5636 | /* 13979 */ MCD::OPC_Decode, 186, 17, 197, 2, // Opcode: MULEQ_S_W_PHL |
5637 | /* 13984 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 13999 |
5638 | /* 13989 */ MCD::OPC_CheckPredicate, 37, 32, 12, 0, // Skip to: 17098 |
5639 | /* 13994 */ MCD::OPC_Decode, 188, 17, 197, 2, // Opcode: MULEQ_S_W_PHR |
5640 | /* 13999 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 14014 |
5641 | /* 14004 */ MCD::OPC_CheckPredicate, 69, 17, 12, 0, // Skip to: 17098 |
5642 | /* 14009 */ MCD::OPC_Decode, 198, 17, 195, 2, // Opcode: MULQ_S_PH |
5643 | /* 14014 */ MCD::OPC_FilterValue, 31, 7, 12, 0, // Skip to: 17098 |
5644 | /* 14019 */ MCD::OPC_CheckPredicate, 37, 2, 12, 0, // Skip to: 17098 |
5645 | /* 14024 */ MCD::OPC_Decode, 194, 17, 195, 2, // Opcode: MULQ_RS_PH |
5646 | /* 14029 */ MCD::OPC_FilterValue, 17, 113, 1, 0, // Skip to: 14403 |
5647 | /* 14034 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5648 | /* 14037 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 14058 |
5649 | /* 14042 */ MCD::OPC_CheckPredicate, 37, 235, 11, 0, // Skip to: 17098 |
5650 | /* 14047 */ MCD::OPC_CheckField, 11, 5, 0, 228, 11, 0, // Skip to: 17098 |
5651 | /* 14054 */ MCD::OPC_Decode, 153, 9, 79, // Opcode: CMPU_EQ_QB |
5652 | /* 14058 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 14079 |
5653 | /* 14063 */ MCD::OPC_CheckPredicate, 37, 214, 11, 0, // Skip to: 17098 |
5654 | /* 14068 */ MCD::OPC_CheckField, 11, 5, 0, 207, 11, 0, // Skip to: 17098 |
5655 | /* 14075 */ MCD::OPC_Decode, 157, 9, 79, // Opcode: CMPU_LT_QB |
5656 | /* 14079 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 14100 |
5657 | /* 14084 */ MCD::OPC_CheckPredicate, 37, 193, 11, 0, // Skip to: 17098 |
5658 | /* 14089 */ MCD::OPC_CheckField, 11, 5, 0, 186, 11, 0, // Skip to: 17098 |
5659 | /* 14096 */ MCD::OPC_Decode, 155, 9, 79, // Opcode: CMPU_LE_QB |
5660 | /* 14100 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14115 |
5661 | /* 14105 */ MCD::OPC_CheckPredicate, 37, 172, 11, 0, // Skip to: 17098 |
5662 | /* 14110 */ MCD::OPC_Decode, 169, 18, 195, 2, // Opcode: PICK_QB |
5663 | /* 14115 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 14130 |
5664 | /* 14120 */ MCD::OPC_CheckPredicate, 37, 157, 11, 0, // Skip to: 17098 |
5665 | /* 14125 */ MCD::OPC_Decode, 147, 9, 197, 2, // Opcode: CMPGU_EQ_QB |
5666 | /* 14130 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 14145 |
5667 | /* 14135 */ MCD::OPC_CheckPredicate, 37, 142, 11, 0, // Skip to: 17098 |
5668 | /* 14140 */ MCD::OPC_Decode, 151, 9, 197, 2, // Opcode: CMPGU_LT_QB |
5669 | /* 14145 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 14160 |
5670 | /* 14150 */ MCD::OPC_CheckPredicate, 37, 127, 11, 0, // Skip to: 17098 |
5671 | /* 14155 */ MCD::OPC_Decode, 149, 9, 197, 2, // Opcode: CMPGU_LE_QB |
5672 | /* 14160 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 14181 |
5673 | /* 14165 */ MCD::OPC_CheckPredicate, 37, 112, 11, 0, // Skip to: 17098 |
5674 | /* 14170 */ MCD::OPC_CheckField, 11, 5, 0, 105, 11, 0, // Skip to: 17098 |
5675 | /* 14177 */ MCD::OPC_Decode, 163, 9, 79, // Opcode: CMP_EQ_PH |
5676 | /* 14181 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 14202 |
5677 | /* 14186 */ MCD::OPC_CheckPredicate, 37, 91, 11, 0, // Skip to: 17098 |
5678 | /* 14191 */ MCD::OPC_CheckField, 11, 5, 0, 84, 11, 0, // Skip to: 17098 |
5679 | /* 14198 */ MCD::OPC_Decode, 177, 9, 79, // Opcode: CMP_LT_PH |
5680 | /* 14202 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 14223 |
5681 | /* 14207 */ MCD::OPC_CheckPredicate, 37, 70, 11, 0, // Skip to: 17098 |
5682 | /* 14212 */ MCD::OPC_CheckField, 11, 5, 0, 63, 11, 0, // Skip to: 17098 |
5683 | /* 14219 */ MCD::OPC_Decode, 171, 9, 79, // Opcode: CMP_LE_PH |
5684 | /* 14223 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 14238 |
5685 | /* 14228 */ MCD::OPC_CheckPredicate, 37, 49, 11, 0, // Skip to: 17098 |
5686 | /* 14233 */ MCD::OPC_Decode, 167, 18, 195, 2, // Opcode: PICK_PH |
5687 | /* 14238 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 14253 |
5688 | /* 14243 */ MCD::OPC_CheckPredicate, 37, 34, 11, 0, // Skip to: 17098 |
5689 | /* 14248 */ MCD::OPC_Decode, 198, 18, 195, 2, // Opcode: PRECRQ_QB_PH |
5690 | /* 14253 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 14268 |
5691 | /* 14258 */ MCD::OPC_CheckPredicate, 69, 19, 11, 0, // Skip to: 17098 |
5692 | /* 14263 */ MCD::OPC_Decode, 202, 18, 195, 2, // Opcode: PRECR_QB_PH |
5693 | /* 14268 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14283 |
5694 | /* 14273 */ MCD::OPC_CheckPredicate, 37, 4, 11, 0, // Skip to: 17098 |
5695 | /* 14278 */ MCD::OPC_Decode, 150, 18, 195, 2, // Opcode: PACKRL_PH |
5696 | /* 14283 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 14298 |
5697 | /* 14288 */ MCD::OPC_CheckPredicate, 37, 245, 10, 0, // Skip to: 17098 |
5698 | /* 14293 */ MCD::OPC_Decode, 194, 18, 195, 2, // Opcode: PRECRQU_S_QB_PH |
5699 | /* 14298 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 14313 |
5700 | /* 14303 */ MCD::OPC_CheckPredicate, 37, 230, 10, 0, // Skip to: 17098 |
5701 | /* 14308 */ MCD::OPC_Decode, 196, 18, 198, 2, // Opcode: PRECRQ_PH_W |
5702 | /* 14313 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 14328 |
5703 | /* 14318 */ MCD::OPC_CheckPredicate, 37, 215, 10, 0, // Skip to: 17098 |
5704 | /* 14323 */ MCD::OPC_Decode, 200, 18, 198, 2, // Opcode: PRECRQ_RS_PH_W |
5705 | /* 14328 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 14343 |
5706 | /* 14333 */ MCD::OPC_CheckPredicate, 69, 200, 10, 0, // Skip to: 17098 |
5707 | /* 14338 */ MCD::OPC_Decode, 141, 9, 197, 2, // Opcode: CMPGDU_EQ_QB |
5708 | /* 14343 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 14358 |
5709 | /* 14348 */ MCD::OPC_CheckPredicate, 69, 185, 10, 0, // Skip to: 17098 |
5710 | /* 14353 */ MCD::OPC_Decode, 145, 9, 197, 2, // Opcode: CMPGDU_LT_QB |
5711 | /* 14358 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 14373 |
5712 | /* 14363 */ MCD::OPC_CheckPredicate, 69, 170, 10, 0, // Skip to: 17098 |
5713 | /* 14368 */ MCD::OPC_Decode, 143, 9, 197, 2, // Opcode: CMPGDU_LE_QB |
5714 | /* 14373 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 14388 |
5715 | /* 14378 */ MCD::OPC_CheckPredicate, 69, 155, 10, 0, // Skip to: 17098 |
5716 | /* 14383 */ MCD::OPC_Decode, 204, 18, 199, 2, // Opcode: PRECR_SRA_PH_W |
5717 | /* 14388 */ MCD::OPC_FilterValue, 31, 145, 10, 0, // Skip to: 17098 |
5718 | /* 14393 */ MCD::OPC_CheckPredicate, 69, 140, 10, 0, // Skip to: 17098 |
5719 | /* 14398 */ MCD::OPC_Decode, 206, 18, 199, 2, // Opcode: PRECR_SRA_R_PH_W |
5720 | /* 14403 */ MCD::OPC_FilterValue, 18, 128, 1, 0, // Skip to: 14792 |
5721 | /* 14408 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5722 | /* 14411 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 14433 |
5723 | /* 14416 */ MCD::OPC_CheckPredicate, 69, 117, 10, 0, // Skip to: 17098 |
5724 | /* 14421 */ MCD::OPC_CheckField, 21, 5, 0, 110, 10, 0, // Skip to: 17098 |
5725 | /* 14428 */ MCD::OPC_Decode, 243, 5, 200, 2, // Opcode: ABSQ_S_QB |
5726 | /* 14433 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14448 |
5727 | /* 14438 */ MCD::OPC_CheckPredicate, 37, 95, 10, 0, // Skip to: 17098 |
5728 | /* 14443 */ MCD::OPC_Decode, 240, 18, 201, 2, // Opcode: REPL_QB |
5729 | /* 14448 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 14470 |
5730 | /* 14453 */ MCD::OPC_CheckPredicate, 37, 80, 10, 0, // Skip to: 17098 |
5731 | /* 14458 */ MCD::OPC_CheckField, 21, 5, 0, 73, 10, 0, // Skip to: 17098 |
5732 | /* 14465 */ MCD::OPC_Decode, 236, 18, 202, 2, // Opcode: REPLV_QB |
5733 | /* 14470 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 14492 |
5734 | /* 14475 */ MCD::OPC_CheckPredicate, 37, 58, 10, 0, // Skip to: 17098 |
5735 | /* 14480 */ MCD::OPC_CheckField, 21, 5, 0, 51, 10, 0, // Skip to: 17098 |
5736 | /* 14487 */ MCD::OPC_Decode, 174, 18, 200, 2, // Opcode: PRECEQU_PH_QBL |
5737 | /* 14492 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 14514 |
5738 | /* 14497 */ MCD::OPC_CheckPredicate, 37, 36, 10, 0, // Skip to: 17098 |
5739 | /* 14502 */ MCD::OPC_CheckField, 21, 5, 0, 29, 10, 0, // Skip to: 17098 |
5740 | /* 14509 */ MCD::OPC_Decode, 178, 18, 200, 2, // Opcode: PRECEQU_PH_QBR |
5741 | /* 14514 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 14536 |
5742 | /* 14519 */ MCD::OPC_CheckPredicate, 37, 14, 10, 0, // Skip to: 17098 |
5743 | /* 14524 */ MCD::OPC_CheckField, 21, 5, 0, 7, 10, 0, // Skip to: 17098 |
5744 | /* 14531 */ MCD::OPC_Decode, 175, 18, 200, 2, // Opcode: PRECEQU_PH_QBLA |
5745 | /* 14536 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 14558 |
5746 | /* 14541 */ MCD::OPC_CheckPredicate, 37, 248, 9, 0, // Skip to: 17098 |
5747 | /* 14546 */ MCD::OPC_CheckField, 21, 5, 0, 241, 9, 0, // Skip to: 17098 |
5748 | /* 14553 */ MCD::OPC_Decode, 179, 18, 200, 2, // Opcode: PRECEQU_PH_QBRA |
5749 | /* 14558 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 14580 |
5750 | /* 14563 */ MCD::OPC_CheckPredicate, 37, 226, 9, 0, // Skip to: 17098 |
5751 | /* 14568 */ MCD::OPC_CheckField, 21, 5, 0, 219, 9, 0, // Skip to: 17098 |
5752 | /* 14575 */ MCD::OPC_Decode, 241, 5, 200, 2, // Opcode: ABSQ_S_PH |
5753 | /* 14580 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 14594 |
5754 | /* 14585 */ MCD::OPC_CheckPredicate, 37, 204, 9, 0, // Skip to: 17098 |
5755 | /* 14590 */ MCD::OPC_Decode, 238, 18, 96, // Opcode: REPL_PH |
5756 | /* 14594 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 14616 |
5757 | /* 14599 */ MCD::OPC_CheckPredicate, 37, 190, 9, 0, // Skip to: 17098 |
5758 | /* 14604 */ MCD::OPC_CheckField, 21, 5, 0, 183, 9, 0, // Skip to: 17098 |
5759 | /* 14611 */ MCD::OPC_Decode, 234, 18, 202, 2, // Opcode: REPLV_PH |
5760 | /* 14616 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 14638 |
5761 | /* 14621 */ MCD::OPC_CheckPredicate, 37, 168, 9, 0, // Skip to: 17098 |
5762 | /* 14626 */ MCD::OPC_CheckField, 21, 5, 0, 161, 9, 0, // Skip to: 17098 |
5763 | /* 14633 */ MCD::OPC_Decode, 182, 18, 203, 2, // Opcode: PRECEQ_W_PHL |
5764 | /* 14638 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 14660 |
5765 | /* 14643 */ MCD::OPC_CheckPredicate, 37, 146, 9, 0, // Skip to: 17098 |
5766 | /* 14648 */ MCD::OPC_CheckField, 21, 5, 0, 139, 9, 0, // Skip to: 17098 |
5767 | /* 14655 */ MCD::OPC_Decode, 184, 18, 203, 2, // Opcode: PRECEQ_W_PHR |
5768 | /* 14660 */ MCD::OPC_FilterValue, 17, 17, 0, 0, // Skip to: 14682 |
5769 | /* 14665 */ MCD::OPC_CheckPredicate, 37, 124, 9, 0, // Skip to: 17098 |
5770 | /* 14670 */ MCD::OPC_CheckField, 21, 5, 0, 117, 9, 0, // Skip to: 17098 |
5771 | /* 14677 */ MCD::OPC_Decode, 245, 5, 204, 2, // Opcode: ABSQ_S_W |
5772 | /* 14682 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 14704 |
5773 | /* 14687 */ MCD::OPC_CheckPredicate, 37, 102, 9, 0, // Skip to: 17098 |
5774 | /* 14692 */ MCD::OPC_CheckField, 21, 5, 0, 95, 9, 0, // Skip to: 17098 |
5775 | /* 14699 */ MCD::OPC_Decode, 218, 7, 204, 2, // Opcode: BITREV |
5776 | /* 14704 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 14726 |
5777 | /* 14709 */ MCD::OPC_CheckPredicate, 37, 80, 9, 0, // Skip to: 17098 |
5778 | /* 14714 */ MCD::OPC_CheckField, 21, 5, 0, 73, 9, 0, // Skip to: 17098 |
5779 | /* 14721 */ MCD::OPC_Decode, 186, 18, 200, 2, // Opcode: PRECEU_PH_QBL |
5780 | /* 14726 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 14748 |
5781 | /* 14731 */ MCD::OPC_CheckPredicate, 37, 58, 9, 0, // Skip to: 17098 |
5782 | /* 14736 */ MCD::OPC_CheckField, 21, 5, 0, 51, 9, 0, // Skip to: 17098 |
5783 | /* 14743 */ MCD::OPC_Decode, 190, 18, 200, 2, // Opcode: PRECEU_PH_QBR |
5784 | /* 14748 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 14770 |
5785 | /* 14753 */ MCD::OPC_CheckPredicate, 37, 36, 9, 0, // Skip to: 17098 |
5786 | /* 14758 */ MCD::OPC_CheckField, 21, 5, 0, 29, 9, 0, // Skip to: 17098 |
5787 | /* 14765 */ MCD::OPC_Decode, 187, 18, 200, 2, // Opcode: PRECEU_PH_QBLA |
5788 | /* 14770 */ MCD::OPC_FilterValue, 31, 19, 9, 0, // Skip to: 17098 |
5789 | /* 14775 */ MCD::OPC_CheckPredicate, 37, 14, 9, 0, // Skip to: 17098 |
5790 | /* 14780 */ MCD::OPC_CheckField, 21, 5, 0, 7, 9, 0, // Skip to: 17098 |
5791 | /* 14787 */ MCD::OPC_Decode, 191, 18, 200, 2, // Opcode: PRECEU_PH_QBRA |
5792 | /* 14792 */ MCD::OPC_FilterValue, 19, 75, 1, 0, // Skip to: 15128 |
5793 | /* 14797 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5794 | /* 14800 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14815 |
5795 | /* 14805 */ MCD::OPC_CheckPredicate, 37, 240, 8, 0, // Skip to: 17098 |
5796 | /* 14810 */ MCD::OPC_Decode, 240, 19, 205, 2, // Opcode: SHLL_QB |
5797 | /* 14815 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 14830 |
5798 | /* 14820 */ MCD::OPC_CheckPredicate, 37, 225, 8, 0, // Skip to: 17098 |
5799 | /* 14825 */ MCD::OPC_Decode, 144, 20, 205, 2, // Opcode: SHRL_QB |
5800 | /* 14830 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14845 |
5801 | /* 14835 */ MCD::OPC_CheckPredicate, 37, 210, 8, 0, // Skip to: 17098 |
5802 | /* 14840 */ MCD::OPC_Decode, 232, 19, 206, 2, // Opcode: SHLLV_QB |
5803 | /* 14845 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14860 |
5804 | /* 14850 */ MCD::OPC_CheckPredicate, 37, 195, 8, 0, // Skip to: 17098 |
5805 | /* 14855 */ MCD::OPC_Decode, 140, 20, 206, 2, // Opcode: SHRLV_QB |
5806 | /* 14860 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 14875 |
5807 | /* 14865 */ MCD::OPC_CheckPredicate, 69, 180, 8, 0, // Skip to: 17098 |
5808 | /* 14870 */ MCD::OPC_Decode, 130, 20, 205, 2, // Opcode: SHRA_QB |
5809 | /* 14875 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 14890 |
5810 | /* 14880 */ MCD::OPC_CheckPredicate, 69, 165, 8, 0, // Skip to: 17098 |
5811 | /* 14885 */ MCD::OPC_Decode, 134, 20, 205, 2, // Opcode: SHRA_R_QB |
5812 | /* 14890 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 14905 |
5813 | /* 14895 */ MCD::OPC_CheckPredicate, 69, 150, 8, 0, // Skip to: 17098 |
5814 | /* 14900 */ MCD::OPC_Decode, 248, 19, 206, 2, // Opcode: SHRAV_QB |
5815 | /* 14905 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 14920 |
5816 | /* 14910 */ MCD::OPC_CheckPredicate, 69, 135, 8, 0, // Skip to: 17098 |
5817 | /* 14915 */ MCD::OPC_Decode, 252, 19, 206, 2, // Opcode: SHRAV_R_QB |
5818 | /* 14920 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 14935 |
5819 | /* 14925 */ MCD::OPC_CheckPredicate, 37, 120, 8, 0, // Skip to: 17098 |
5820 | /* 14930 */ MCD::OPC_Decode, 238, 19, 205, 2, // Opcode: SHLL_PH |
5821 | /* 14935 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 14950 |
5822 | /* 14940 */ MCD::OPC_CheckPredicate, 37, 105, 8, 0, // Skip to: 17098 |
5823 | /* 14945 */ MCD::OPC_Decode, 128, 20, 205, 2, // Opcode: SHRA_PH |
5824 | /* 14950 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 14965 |
5825 | /* 14955 */ MCD::OPC_CheckPredicate, 37, 90, 8, 0, // Skip to: 17098 |
5826 | /* 14960 */ MCD::OPC_Decode, 230, 19, 206, 2, // Opcode: SHLLV_PH |
5827 | /* 14965 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 14980 |
5828 | /* 14970 */ MCD::OPC_CheckPredicate, 37, 75, 8, 0, // Skip to: 17098 |
5829 | /* 14975 */ MCD::OPC_Decode, 246, 19, 206, 2, // Opcode: SHRAV_PH |
5830 | /* 14980 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 14995 |
5831 | /* 14985 */ MCD::OPC_CheckPredicate, 37, 60, 8, 0, // Skip to: 17098 |
5832 | /* 14990 */ MCD::OPC_Decode, 242, 19, 205, 2, // Opcode: SHLL_S_PH |
5833 | /* 14995 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 15010 |
5834 | /* 15000 */ MCD::OPC_CheckPredicate, 37, 45, 8, 0, // Skip to: 17098 |
5835 | /* 15005 */ MCD::OPC_Decode, 132, 20, 205, 2, // Opcode: SHRA_R_PH |
5836 | /* 15010 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 15025 |
5837 | /* 15015 */ MCD::OPC_CheckPredicate, 37, 30, 8, 0, // Skip to: 17098 |
5838 | /* 15020 */ MCD::OPC_Decode, 234, 19, 206, 2, // Opcode: SHLLV_S_PH |
5839 | /* 15025 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 15040 |
5840 | /* 15030 */ MCD::OPC_CheckPredicate, 37, 15, 8, 0, // Skip to: 17098 |
5841 | /* 15035 */ MCD::OPC_Decode, 250, 19, 206, 2, // Opcode: SHRAV_R_PH |
5842 | /* 15040 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 15055 |
5843 | /* 15045 */ MCD::OPC_CheckPredicate, 37, 0, 8, 0, // Skip to: 17098 |
5844 | /* 15050 */ MCD::OPC_Decode, 244, 19, 207, 2, // Opcode: SHLL_S_W |
5845 | /* 15055 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 15070 |
5846 | /* 15060 */ MCD::OPC_CheckPredicate, 37, 241, 7, 0, // Skip to: 17098 |
5847 | /* 15065 */ MCD::OPC_Decode, 136, 20, 207, 2, // Opcode: SHRA_R_W |
5848 | /* 15070 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 15084 |
5849 | /* 15075 */ MCD::OPC_CheckPredicate, 37, 226, 7, 0, // Skip to: 17098 |
5850 | /* 15080 */ MCD::OPC_Decode, 236, 19, 55, // Opcode: SHLLV_S_W |
5851 | /* 15084 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 15098 |
5852 | /* 15089 */ MCD::OPC_CheckPredicate, 37, 212, 7, 0, // Skip to: 17098 |
5853 | /* 15094 */ MCD::OPC_Decode, 254, 19, 55, // Opcode: SHRAV_R_W |
5854 | /* 15098 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 15113 |
5855 | /* 15103 */ MCD::OPC_CheckPredicate, 69, 198, 7, 0, // Skip to: 17098 |
5856 | /* 15108 */ MCD::OPC_Decode, 142, 20, 205, 2, // Opcode: SHRL_PH |
5857 | /* 15113 */ MCD::OPC_FilterValue, 27, 188, 7, 0, // Skip to: 17098 |
5858 | /* 15118 */ MCD::OPC_CheckPredicate, 69, 183, 7, 0, // Skip to: 17098 |
5859 | /* 15123 */ MCD::OPC_Decode, 138, 20, 206, 2, // Opcode: SHRLV_PH |
5860 | /* 15128 */ MCD::OPC_FilterValue, 24, 237, 0, 0, // Skip to: 15370 |
5861 | /* 15133 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5862 | /* 15136 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15151 |
5863 | /* 15141 */ MCD::OPC_CheckPredicate, 69, 160, 7, 0, // Skip to: 17098 |
5864 | /* 15146 */ MCD::OPC_Decode, 159, 6, 195, 2, // Opcode: ADDUH_QB |
5865 | /* 15151 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15166 |
5866 | /* 15156 */ MCD::OPC_CheckPredicate, 69, 145, 7, 0, // Skip to: 17098 |
5867 | /* 15161 */ MCD::OPC_Decode, 151, 21, 195, 2, // Opcode: SUBUH_QB |
5868 | /* 15166 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15181 |
5869 | /* 15171 */ MCD::OPC_CheckPredicate, 69, 130, 7, 0, // Skip to: 17098 |
5870 | /* 15176 */ MCD::OPC_Decode, 161, 6, 195, 2, // Opcode: ADDUH_R_QB |
5871 | /* 15181 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15196 |
5872 | /* 15186 */ MCD::OPC_CheckPredicate, 69, 115, 7, 0, // Skip to: 17098 |
5873 | /* 15191 */ MCD::OPC_Decode, 153, 21, 195, 2, // Opcode: SUBUH_R_QB |
5874 | /* 15196 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 15211 |
5875 | /* 15201 */ MCD::OPC_CheckPredicate, 69, 100, 7, 0, // Skip to: 17098 |
5876 | /* 15206 */ MCD::OPC_Decode, 128, 6, 195, 2, // Opcode: ADDQH_PH |
5877 | /* 15211 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 15226 |
5878 | /* 15216 */ MCD::OPC_CheckPredicate, 69, 85, 7, 0, // Skip to: 17098 |
5879 | /* 15221 */ MCD::OPC_Decode, 247, 20, 195, 2, // Opcode: SUBQH_PH |
5880 | /* 15226 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 15241 |
5881 | /* 15231 */ MCD::OPC_CheckPredicate, 69, 70, 7, 0, // Skip to: 17098 |
5882 | /* 15236 */ MCD::OPC_Decode, 130, 6, 195, 2, // Opcode: ADDQH_R_PH |
5883 | /* 15241 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 15256 |
5884 | /* 15246 */ MCD::OPC_CheckPredicate, 69, 55, 7, 0, // Skip to: 17098 |
5885 | /* 15251 */ MCD::OPC_Decode, 249, 20, 195, 2, // Opcode: SUBQH_R_PH |
5886 | /* 15256 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 15271 |
5887 | /* 15261 */ MCD::OPC_CheckPredicate, 69, 40, 7, 0, // Skip to: 17098 |
5888 | /* 15266 */ MCD::OPC_Decode, 225, 17, 195, 2, // Opcode: MUL_PH |
5889 | /* 15271 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 15286 |
5890 | /* 15276 */ MCD::OPC_CheckPredicate, 69, 25, 7, 0, // Skip to: 17098 |
5891 | /* 15281 */ MCD::OPC_Decode, 230, 17, 195, 2, // Opcode: MUL_S_PH |
5892 | /* 15286 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 15300 |
5893 | /* 15291 */ MCD::OPC_CheckPredicate, 69, 10, 7, 0, // Skip to: 17098 |
5894 | /* 15296 */ MCD::OPC_Decode, 134, 6, 61, // Opcode: ADDQH_W |
5895 | /* 15300 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 15314 |
5896 | /* 15305 */ MCD::OPC_CheckPredicate, 69, 252, 6, 0, // Skip to: 17098 |
5897 | /* 15310 */ MCD::OPC_Decode, 253, 20, 61, // Opcode: SUBQH_W |
5898 | /* 15314 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 15328 |
5899 | /* 15319 */ MCD::OPC_CheckPredicate, 69, 238, 6, 0, // Skip to: 17098 |
5900 | /* 15324 */ MCD::OPC_Decode, 132, 6, 61, // Opcode: ADDQH_R_W |
5901 | /* 15328 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 15342 |
5902 | /* 15333 */ MCD::OPC_CheckPredicate, 69, 224, 6, 0, // Skip to: 17098 |
5903 | /* 15338 */ MCD::OPC_Decode, 251, 20, 61, // Opcode: SUBQH_R_W |
5904 | /* 15342 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 15356 |
5905 | /* 15347 */ MCD::OPC_CheckPredicate, 69, 210, 6, 0, // Skip to: 17098 |
5906 | /* 15352 */ MCD::OPC_Decode, 200, 17, 61, // Opcode: MULQ_S_W |
5907 | /* 15356 */ MCD::OPC_FilterValue, 23, 201, 6, 0, // Skip to: 17098 |
5908 | /* 15361 */ MCD::OPC_CheckPredicate, 69, 196, 6, 0, // Skip to: 17098 |
5909 | /* 15366 */ MCD::OPC_Decode, 196, 17, 61, // Opcode: MULQ_RS_W |
5910 | /* 15370 */ MCD::OPC_FilterValue, 25, 17, 0, 0, // Skip to: 15392 |
5911 | /* 15375 */ MCD::OPC_CheckPredicate, 70, 182, 6, 0, // Skip to: 17098 |
5912 | /* 15380 */ MCD::OPC_CheckField, 6, 1, 0, 175, 6, 0, // Skip to: 17098 |
5913 | /* 15387 */ MCD::OPC_Decode, 159, 15, 208, 2, // Opcode: LWLE |
5914 | /* 15392 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 15414 |
5915 | /* 15397 */ MCD::OPC_CheckPredicate, 70, 160, 6, 0, // Skip to: 17098 |
5916 | /* 15402 */ MCD::OPC_CheckField, 6, 1, 0, 153, 6, 0, // Skip to: 17098 |
5917 | /* 15409 */ MCD::OPC_Decode, 170, 15, 208, 2, // Opcode: LWRE |
5918 | /* 15414 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 15436 |
5919 | /* 15419 */ MCD::OPC_CheckPredicate, 44, 138, 6, 0, // Skip to: 17098 |
5920 | /* 15424 */ MCD::OPC_CheckField, 6, 1, 0, 131, 6, 0, // Skip to: 17098 |
5921 | /* 15431 */ MCD::OPC_Decode, 193, 8, 209, 2, // Opcode: CACHEE |
5922 | /* 15436 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 15458 |
5923 | /* 15441 */ MCD::OPC_CheckPredicate, 44, 116, 6, 0, // Skip to: 17098 |
5924 | /* 15446 */ MCD::OPC_CheckField, 6, 1, 0, 109, 6, 0, // Skip to: 17098 |
5925 | /* 15453 */ MCD::OPC_Decode, 155, 19, 208, 2, // Opcode: SBE |
5926 | /* 15458 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 15480 |
5927 | /* 15463 */ MCD::OPC_CheckPredicate, 44, 94, 6, 0, // Skip to: 17098 |
5928 | /* 15468 */ MCD::OPC_CheckField, 6, 1, 0, 87, 6, 0, // Skip to: 17098 |
5929 | /* 15475 */ MCD::OPC_Decode, 221, 19, 208, 2, // Opcode: SHE |
5930 | /* 15480 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 15502 |
5931 | /* 15485 */ MCD::OPC_CheckPredicate, 44, 72, 6, 0, // Skip to: 17098 |
5932 | /* 15490 */ MCD::OPC_CheckField, 6, 1, 0, 65, 6, 0, // Skip to: 17098 |
5933 | /* 15497 */ MCD::OPC_Decode, 164, 19, 208, 2, // Opcode: SCE |
5934 | /* 15502 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 15524 |
5935 | /* 15507 */ MCD::OPC_CheckPredicate, 44, 50, 6, 0, // Skip to: 17098 |
5936 | /* 15512 */ MCD::OPC_CheckField, 6, 1, 0, 43, 6, 0, // Skip to: 17098 |
5937 | /* 15519 */ MCD::OPC_Decode, 191, 21, 208, 2, // Opcode: SWE |
5938 | /* 15524 */ MCD::OPC_FilterValue, 32, 69, 0, 0, // Skip to: 15598 |
5939 | /* 15529 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5940 | /* 15532 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 15554 |
5941 | /* 15537 */ MCD::OPC_CheckPredicate, 28, 20, 6, 0, // Skip to: 17098 |
5942 | /* 15542 */ MCD::OPC_CheckField, 21, 5, 0, 13, 6, 0, // Skip to: 17098 |
5943 | /* 15549 */ MCD::OPC_Decode, 188, 22, 204, 2, // Opcode: WSBH |
5944 | /* 15554 */ MCD::OPC_FilterValue, 16, 17, 0, 0, // Skip to: 15576 |
5945 | /* 15559 */ MCD::OPC_CheckPredicate, 28, 254, 5, 0, // Skip to: 17098 |
5946 | /* 15564 */ MCD::OPC_CheckField, 21, 5, 0, 247, 5, 0, // Skip to: 17098 |
5947 | /* 15571 */ MCD::OPC_Decode, 191, 19, 204, 2, // Opcode: SEB |
5948 | /* 15576 */ MCD::OPC_FilterValue, 24, 237, 5, 0, // Skip to: 17098 |
5949 | /* 15581 */ MCD::OPC_CheckPredicate, 28, 232, 5, 0, // Skip to: 17098 |
5950 | /* 15586 */ MCD::OPC_CheckField, 21, 5, 0, 225, 5, 0, // Skip to: 17098 |
5951 | /* 15593 */ MCD::OPC_Decode, 194, 19, 204, 2, // Opcode: SEH |
5952 | /* 15598 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 15620 |
5953 | /* 15603 */ MCD::OPC_CheckPredicate, 70, 210, 5, 0, // Skip to: 17098 |
5954 | /* 15608 */ MCD::OPC_CheckField, 6, 1, 0, 203, 5, 0, // Skip to: 17098 |
5955 | /* 15615 */ MCD::OPC_Decode, 195, 21, 208, 2, // Opcode: SWLE |
5956 | /* 15620 */ MCD::OPC_FilterValue, 34, 17, 0, 0, // Skip to: 15642 |
5957 | /* 15625 */ MCD::OPC_CheckPredicate, 70, 188, 5, 0, // Skip to: 17098 |
5958 | /* 15630 */ MCD::OPC_CheckField, 6, 1, 0, 181, 5, 0, // Skip to: 17098 |
5959 | /* 15637 */ MCD::OPC_Decode, 204, 21, 208, 2, // Opcode: SWRE |
5960 | /* 15642 */ MCD::OPC_FilterValue, 35, 17, 0, 0, // Skip to: 15664 |
5961 | /* 15647 */ MCD::OPC_CheckPredicate, 44, 166, 5, 0, // Skip to: 17098 |
5962 | /* 15652 */ MCD::OPC_CheckField, 6, 1, 0, 159, 5, 0, // Skip to: 17098 |
5963 | /* 15659 */ MCD::OPC_Decode, 209, 18, 209, 2, // Opcode: PREFE |
5964 | /* 15664 */ MCD::OPC_FilterValue, 40, 17, 0, 0, // Skip to: 15686 |
5965 | /* 15669 */ MCD::OPC_CheckPredicate, 44, 144, 5, 0, // Skip to: 17098 |
5966 | /* 15674 */ MCD::OPC_CheckField, 6, 1, 0, 137, 5, 0, // Skip to: 17098 |
5967 | /* 15681 */ MCD::OPC_Decode, 207, 14, 208, 2, // Opcode: LBuE |
5968 | /* 15686 */ MCD::OPC_FilterValue, 41, 17, 0, 0, // Skip to: 15708 |
5969 | /* 15691 */ MCD::OPC_CheckPredicate, 44, 122, 5, 0, // Skip to: 17098 |
5970 | /* 15696 */ MCD::OPC_CheckField, 6, 1, 0, 115, 5, 0, // Skip to: 17098 |
5971 | /* 15703 */ MCD::OPC_Decode, 246, 14, 208, 2, // Opcode: LHuE |
5972 | /* 15708 */ MCD::OPC_FilterValue, 44, 17, 0, 0, // Skip to: 15730 |
5973 | /* 15713 */ MCD::OPC_CheckPredicate, 44, 100, 5, 0, // Skip to: 17098 |
5974 | /* 15718 */ MCD::OPC_CheckField, 6, 1, 0, 93, 5, 0, // Skip to: 17098 |
5975 | /* 15725 */ MCD::OPC_Decode, 197, 14, 208, 2, // Opcode: LBE |
5976 | /* 15730 */ MCD::OPC_FilterValue, 45, 17, 0, 0, // Skip to: 15752 |
5977 | /* 15735 */ MCD::OPC_CheckPredicate, 44, 78, 5, 0, // Skip to: 17098 |
5978 | /* 15740 */ MCD::OPC_CheckField, 6, 1, 0, 71, 5, 0, // Skip to: 17098 |
5979 | /* 15747 */ MCD::OPC_Decode, 238, 14, 208, 2, // Opcode: LHE |
5980 | /* 15752 */ MCD::OPC_FilterValue, 46, 17, 0, 0, // Skip to: 15774 |
5981 | /* 15757 */ MCD::OPC_CheckPredicate, 44, 56, 5, 0, // Skip to: 17098 |
5982 | /* 15762 */ MCD::OPC_CheckField, 6, 1, 0, 49, 5, 0, // Skip to: 17098 |
5983 | /* 15769 */ MCD::OPC_Decode, 128, 15, 208, 2, // Opcode: LLE |
5984 | /* 15774 */ MCD::OPC_FilterValue, 47, 17, 0, 0, // Skip to: 15796 |
5985 | /* 15779 */ MCD::OPC_CheckPredicate, 44, 34, 5, 0, // Skip to: 17098 |
5986 | /* 15784 */ MCD::OPC_CheckField, 6, 1, 0, 27, 5, 0, // Skip to: 17098 |
5987 | /* 15791 */ MCD::OPC_Decode, 154, 15, 208, 2, // Opcode: LWE |
5988 | /* 15796 */ MCD::OPC_FilterValue, 48, 231, 1, 0, // Skip to: 16288 |
5989 | /* 15801 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
5990 | /* 15804 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 15826 |
5991 | /* 15809 */ MCD::OPC_CheckPredicate, 69, 4, 5, 0, // Skip to: 17098 |
5992 | /* 15814 */ MCD::OPC_CheckField, 13, 3, 0, 253, 4, 0, // Skip to: 17098 |
5993 | /* 15821 */ MCD::OPC_Decode, 216, 11, 243, 1, // Opcode: DPA_W_PH |
5994 | /* 15826 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 15848 |
5995 | /* 15831 */ MCD::OPC_CheckPredicate, 69, 238, 4, 0, // Skip to: 17098 |
5996 | /* 15836 */ MCD::OPC_CheckField, 13, 3, 0, 231, 4, 0, // Skip to: 17098 |
5997 | /* 15843 */ MCD::OPC_Decode, 239, 11, 243, 1, // Opcode: DPS_W_PH |
5998 | /* 15848 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 15870 |
5999 | /* 15853 */ MCD::OPC_CheckPredicate, 69, 216, 4, 0, // Skip to: 17098 |
6000 | /* 15858 */ MCD::OPC_CheckField, 13, 3, 0, 209, 4, 0, // Skip to: 17098 |
6001 | /* 15865 */ MCD::OPC_Decode, 207, 17, 243, 1, // Opcode: MULSA_W_PH |
6002 | /* 15870 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 15892 |
6003 | /* 15875 */ MCD::OPC_CheckPredicate, 37, 194, 4, 0, // Skip to: 17098 |
6004 | /* 15880 */ MCD::OPC_CheckField, 13, 3, 0, 187, 4, 0, // Skip to: 17098 |
6005 | /* 15887 */ MCD::OPC_Decode, 210, 11, 243, 1, // Opcode: DPAU_H_QBL |
6006 | /* 15892 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 15914 |
6007 | /* 15897 */ MCD::OPC_CheckPredicate, 37, 172, 4, 0, // Skip to: 17098 |
6008 | /* 15902 */ MCD::OPC_CheckField, 13, 3, 0, 165, 4, 0, // Skip to: 17098 |
6009 | /* 15909 */ MCD::OPC_Decode, 208, 11, 243, 1, // Opcode: DPAQ_S_W_PH |
6010 | /* 15914 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 15936 |
6011 | /* 15919 */ MCD::OPC_CheckPredicate, 37, 150, 4, 0, // Skip to: 17098 |
6012 | /* 15924 */ MCD::OPC_CheckField, 13, 3, 0, 143, 4, 0, // Skip to: 17098 |
6013 | /* 15931 */ MCD::OPC_Decode, 225, 11, 243, 1, // Opcode: DPSQ_S_W_PH |
6014 | /* 15936 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 15958 |
6015 | /* 15941 */ MCD::OPC_CheckPredicate, 37, 128, 4, 0, // Skip to: 17098 |
6016 | /* 15946 */ MCD::OPC_CheckField, 13, 3, 0, 121, 4, 0, // Skip to: 17098 |
6017 | /* 15953 */ MCD::OPC_Decode, 205, 17, 243, 1, // Opcode: MULSAQ_S_W_PH |
6018 | /* 15958 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 15980 |
6019 | /* 15963 */ MCD::OPC_CheckPredicate, 37, 106, 4, 0, // Skip to: 17098 |
6020 | /* 15968 */ MCD::OPC_CheckField, 13, 3, 0, 99, 4, 0, // Skip to: 17098 |
6021 | /* 15975 */ MCD::OPC_Decode, 212, 11, 243, 1, // Opcode: DPAU_H_QBR |
6022 | /* 15980 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 16002 |
6023 | /* 15985 */ MCD::OPC_CheckPredicate, 69, 84, 4, 0, // Skip to: 17098 |
6024 | /* 15990 */ MCD::OPC_CheckField, 13, 3, 0, 77, 4, 0, // Skip to: 17098 |
6025 | /* 15997 */ MCD::OPC_Decode, 214, 11, 243, 1, // Opcode: DPAX_W_PH |
6026 | /* 16002 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 16024 |
6027 | /* 16007 */ MCD::OPC_CheckPredicate, 69, 62, 4, 0, // Skip to: 17098 |
6028 | /* 16012 */ MCD::OPC_CheckField, 13, 3, 0, 55, 4, 0, // Skip to: 17098 |
6029 | /* 16019 */ MCD::OPC_Decode, 237, 11, 243, 1, // Opcode: DPSX_W_PH |
6030 | /* 16024 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 16046 |
6031 | /* 16029 */ MCD::OPC_CheckPredicate, 37, 40, 4, 0, // Skip to: 17098 |
6032 | /* 16034 */ MCD::OPC_CheckField, 13, 3, 0, 33, 4, 0, // Skip to: 17098 |
6033 | /* 16041 */ MCD::OPC_Decode, 233, 11, 243, 1, // Opcode: DPSU_H_QBL |
6034 | /* 16046 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 16068 |
6035 | /* 16051 */ MCD::OPC_CheckPredicate, 37, 18, 4, 0, // Skip to: 17098 |
6036 | /* 16056 */ MCD::OPC_CheckField, 13, 3, 0, 11, 4, 0, // Skip to: 17098 |
6037 | /* 16063 */ MCD::OPC_Decode, 206, 11, 243, 1, // Opcode: DPAQ_SA_L_W |
6038 | /* 16068 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 16090 |
6039 | /* 16073 */ MCD::OPC_CheckPredicate, 37, 252, 3, 0, // Skip to: 17098 |
6040 | /* 16078 */ MCD::OPC_CheckField, 13, 3, 0, 245, 3, 0, // Skip to: 17098 |
6041 | /* 16085 */ MCD::OPC_Decode, 223, 11, 243, 1, // Opcode: DPSQ_SA_L_W |
6042 | /* 16090 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 16112 |
6043 | /* 16095 */ MCD::OPC_CheckPredicate, 37, 230, 3, 0, // Skip to: 17098 |
6044 | /* 16100 */ MCD::OPC_CheckField, 13, 3, 0, 223, 3, 0, // Skip to: 17098 |
6045 | /* 16107 */ MCD::OPC_Decode, 235, 11, 243, 1, // Opcode: DPSU_H_QBR |
6046 | /* 16112 */ MCD::OPC_FilterValue, 16, 17, 0, 0, // Skip to: 16134 |
6047 | /* 16117 */ MCD::OPC_CheckPredicate, 37, 208, 3, 0, // Skip to: 17098 |
6048 | /* 16122 */ MCD::OPC_CheckField, 13, 3, 0, 201, 3, 0, // Skip to: 17098 |
6049 | /* 16129 */ MCD::OPC_Decode, 220, 15, 243, 1, // Opcode: MAQ_SA_W_PHL |
6050 | /* 16134 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 16156 |
6051 | /* 16139 */ MCD::OPC_CheckPredicate, 37, 186, 3, 0, // Skip to: 17098 |
6052 | /* 16144 */ MCD::OPC_CheckField, 13, 3, 0, 179, 3, 0, // Skip to: 17098 |
6053 | /* 16151 */ MCD::OPC_Decode, 222, 15, 243, 1, // Opcode: MAQ_SA_W_PHR |
6054 | /* 16156 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 16178 |
6055 | /* 16161 */ MCD::OPC_CheckPredicate, 37, 164, 3, 0, // Skip to: 17098 |
6056 | /* 16166 */ MCD::OPC_CheckField, 13, 3, 0, 157, 3, 0, // Skip to: 17098 |
6057 | /* 16173 */ MCD::OPC_Decode, 224, 15, 243, 1, // Opcode: MAQ_S_W_PHL |
6058 | /* 16178 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 16200 |
6059 | /* 16183 */ MCD::OPC_CheckPredicate, 37, 142, 3, 0, // Skip to: 17098 |
6060 | /* 16188 */ MCD::OPC_CheckField, 13, 3, 0, 135, 3, 0, // Skip to: 17098 |
6061 | /* 16195 */ MCD::OPC_Decode, 226, 15, 243, 1, // Opcode: MAQ_S_W_PHR |
6062 | /* 16200 */ MCD::OPC_FilterValue, 24, 17, 0, 0, // Skip to: 16222 |
6063 | /* 16205 */ MCD::OPC_CheckPredicate, 69, 120, 3, 0, // Skip to: 17098 |
6064 | /* 16210 */ MCD::OPC_CheckField, 13, 3, 0, 113, 3, 0, // Skip to: 17098 |
6065 | /* 16217 */ MCD::OPC_Decode, 204, 11, 243, 1, // Opcode: DPAQX_S_W_PH |
6066 | /* 16222 */ MCD::OPC_FilterValue, 25, 17, 0, 0, // Skip to: 16244 |
6067 | /* 16227 */ MCD::OPC_CheckPredicate, 69, 98, 3, 0, // Skip to: 17098 |
6068 | /* 16232 */ MCD::OPC_CheckField, 13, 3, 0, 91, 3, 0, // Skip to: 17098 |
6069 | /* 16239 */ MCD::OPC_Decode, 221, 11, 243, 1, // Opcode: DPSQX_S_W_PH |
6070 | /* 16244 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 16266 |
6071 | /* 16249 */ MCD::OPC_CheckPredicate, 69, 76, 3, 0, // Skip to: 17098 |
6072 | /* 16254 */ MCD::OPC_CheckField, 13, 3, 0, 69, 3, 0, // Skip to: 17098 |
6073 | /* 16261 */ MCD::OPC_Decode, 202, 11, 243, 1, // Opcode: DPAQX_SA_W_PH |
6074 | /* 16266 */ MCD::OPC_FilterValue, 27, 59, 3, 0, // Skip to: 17098 |
6075 | /* 16271 */ MCD::OPC_CheckPredicate, 69, 54, 3, 0, // Skip to: 17098 |
6076 | /* 16276 */ MCD::OPC_CheckField, 13, 3, 0, 47, 3, 0, // Skip to: 17098 |
6077 | /* 16283 */ MCD::OPC_Decode, 219, 11, 243, 1, // Opcode: DPSQX_SA_W_PH |
6078 | /* 16288 */ MCD::OPC_FilterValue, 49, 48, 0, 0, // Skip to: 16341 |
6079 | /* 16293 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6080 | /* 16296 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16311 |
6081 | /* 16301 */ MCD::OPC_CheckPredicate, 69, 24, 3, 0, // Skip to: 17098 |
6082 | /* 16306 */ MCD::OPC_Decode, 212, 6, 210, 2, // Opcode: APPEND |
6083 | /* 16311 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16326 |
6084 | /* 16316 */ MCD::OPC_CheckPredicate, 69, 9, 3, 0, // Skip to: 17098 |
6085 | /* 16321 */ MCD::OPC_Decode, 215, 18, 210, 2, // Opcode: PREPEND |
6086 | /* 16326 */ MCD::OPC_FilterValue, 16, 255, 2, 0, // Skip to: 17098 |
6087 | /* 16331 */ MCD::OPC_CheckPredicate, 69, 250, 2, 0, // Skip to: 17098 |
6088 | /* 16336 */ MCD::OPC_Decode, 128, 7, 210, 2, // Opcode: BALIGN |
6089 | /* 16341 */ MCD::OPC_FilterValue, 56, 107, 1, 0, // Skip to: 16709 |
6090 | /* 16346 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6091 | /* 16349 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 16371 |
6092 | /* 16354 */ MCD::OPC_CheckPredicate, 37, 227, 2, 0, // Skip to: 17098 |
6093 | /* 16359 */ MCD::OPC_CheckField, 13, 3, 0, 220, 2, 0, // Skip to: 17098 |
6094 | /* 16366 */ MCD::OPC_Decode, 175, 12, 211, 2, // Opcode: EXTR_W |
6095 | /* 16371 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 16393 |
6096 | /* 16376 */ MCD::OPC_CheckPredicate, 37, 205, 2, 0, // Skip to: 17098 |
6097 | /* 16381 */ MCD::OPC_CheckField, 13, 3, 0, 198, 2, 0, // Skip to: 17098 |
6098 | /* 16388 */ MCD::OPC_Decode, 167, 12, 212, 2, // Opcode: EXTRV_W |
6099 | /* 16393 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 16415 |
6100 | /* 16398 */ MCD::OPC_CheckPredicate, 37, 183, 2, 0, // Skip to: 17098 |
6101 | /* 16403 */ MCD::OPC_CheckField, 13, 3, 0, 176, 2, 0, // Skip to: 17098 |
6102 | /* 16410 */ MCD::OPC_Decode, 153, 12, 211, 2, // Opcode: EXTP |
6103 | /* 16415 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 16437 |
6104 | /* 16420 */ MCD::OPC_CheckPredicate, 37, 161, 2, 0, // Skip to: 17098 |
6105 | /* 16425 */ MCD::OPC_CheckField, 13, 3, 0, 154, 2, 0, // Skip to: 17098 |
6106 | /* 16432 */ MCD::OPC_Decode, 158, 12, 212, 2, // Opcode: EXTPV |
6107 | /* 16437 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 16459 |
6108 | /* 16442 */ MCD::OPC_CheckPredicate, 37, 139, 2, 0, // Skip to: 17098 |
6109 | /* 16447 */ MCD::OPC_CheckField, 13, 3, 0, 132, 2, 0, // Skip to: 17098 |
6110 | /* 16454 */ MCD::OPC_Decode, 171, 12, 211, 2, // Opcode: EXTR_R_W |
6111 | /* 16459 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 16481 |
6112 | /* 16464 */ MCD::OPC_CheckPredicate, 37, 117, 2, 0, // Skip to: 17098 |
6113 | /* 16469 */ MCD::OPC_CheckField, 13, 3, 0, 110, 2, 0, // Skip to: 17098 |
6114 | /* 16476 */ MCD::OPC_Decode, 163, 12, 212, 2, // Opcode: EXTRV_R_W |
6115 | /* 16481 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 16503 |
6116 | /* 16486 */ MCD::OPC_CheckPredicate, 37, 95, 2, 0, // Skip to: 17098 |
6117 | /* 16491 */ MCD::OPC_CheckField, 13, 3, 0, 88, 2, 0, // Skip to: 17098 |
6118 | /* 16498 */ MCD::OPC_Decode, 169, 12, 211, 2, // Opcode: EXTR_RS_W |
6119 | /* 16503 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 16525 |
6120 | /* 16508 */ MCD::OPC_CheckPredicate, 37, 73, 2, 0, // Skip to: 17098 |
6121 | /* 16513 */ MCD::OPC_CheckField, 13, 3, 0, 66, 2, 0, // Skip to: 17098 |
6122 | /* 16520 */ MCD::OPC_Decode, 161, 12, 212, 2, // Opcode: EXTRV_RS_W |
6123 | /* 16525 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 16547 |
6124 | /* 16530 */ MCD::OPC_CheckPredicate, 37, 51, 2, 0, // Skip to: 17098 |
6125 | /* 16535 */ MCD::OPC_CheckField, 13, 3, 0, 44, 2, 0, // Skip to: 17098 |
6126 | /* 16542 */ MCD::OPC_Decode, 154, 12, 211, 2, // Opcode: EXTPDP |
6127 | /* 16547 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 16569 |
6128 | /* 16552 */ MCD::OPC_CheckPredicate, 37, 29, 2, 0, // Skip to: 17098 |
6129 | /* 16557 */ MCD::OPC_CheckField, 13, 3, 0, 22, 2, 0, // Skip to: 17098 |
6130 | /* 16564 */ MCD::OPC_Decode, 155, 12, 212, 2, // Opcode: EXTPDPV |
6131 | /* 16569 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16591 |
6132 | /* 16574 */ MCD::OPC_CheckPredicate, 37, 7, 2, 0, // Skip to: 17098 |
6133 | /* 16579 */ MCD::OPC_CheckField, 13, 3, 0, 0, 2, 0, // Skip to: 17098 |
6134 | /* 16586 */ MCD::OPC_Decode, 173, 12, 211, 2, // Opcode: EXTR_S_H |
6135 | /* 16591 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 16613 |
6136 | /* 16596 */ MCD::OPC_CheckPredicate, 37, 241, 1, 0, // Skip to: 17098 |
6137 | /* 16601 */ MCD::OPC_CheckField, 13, 3, 0, 234, 1, 0, // Skip to: 17098 |
6138 | /* 16608 */ MCD::OPC_Decode, 165, 12, 212, 2, // Opcode: EXTRV_S_H |
6139 | /* 16613 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 16628 |
6140 | /* 16618 */ MCD::OPC_CheckPredicate, 37, 219, 1, 0, // Skip to: 17098 |
6141 | /* 16623 */ MCD::OPC_Decode, 221, 18, 213, 2, // Opcode: RDDSP |
6142 | /* 16628 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 16643 |
6143 | /* 16633 */ MCD::OPC_CheckPredicate, 40, 204, 1, 0, // Skip to: 17098 |
6144 | /* 16638 */ MCD::OPC_Decode, 185, 22, 214, 2, // Opcode: WRDSP |
6145 | /* 16643 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 16665 |
6146 | /* 16648 */ MCD::OPC_CheckPredicate, 37, 189, 1, 0, // Skip to: 17098 |
6147 | /* 16653 */ MCD::OPC_CheckField, 13, 7, 0, 182, 1, 0, // Skip to: 17098 |
6148 | /* 16660 */ MCD::OPC_Decode, 226, 19, 215, 2, // Opcode: SHILO |
6149 | /* 16665 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 16687 |
6150 | /* 16670 */ MCD::OPC_CheckPredicate, 37, 167, 1, 0, // Skip to: 17098 |
6151 | /* 16675 */ MCD::OPC_CheckField, 13, 8, 0, 160, 1, 0, // Skip to: 17098 |
6152 | /* 16682 */ MCD::OPC_Decode, 227, 19, 216, 2, // Opcode: SHILOV |
6153 | /* 16687 */ MCD::OPC_FilterValue, 31, 150, 1, 0, // Skip to: 17098 |
6154 | /* 16692 */ MCD::OPC_CheckPredicate, 37, 145, 1, 0, // Skip to: 17098 |
6155 | /* 16697 */ MCD::OPC_CheckField, 13, 8, 0, 138, 1, 0, // Skip to: 17098 |
6156 | /* 16704 */ MCD::OPC_Decode, 167, 17, 216, 2, // Opcode: MTHLIP |
6157 | /* 16709 */ MCD::OPC_FilterValue, 59, 128, 1, 0, // Skip to: 17098 |
6158 | /* 16714 */ MCD::OPC_CheckPredicate, 27, 123, 1, 0, // Skip to: 17098 |
6159 | /* 16719 */ MCD::OPC_CheckField, 21, 5, 0, 116, 1, 0, // Skip to: 17098 |
6160 | /* 16726 */ MCD::OPC_CheckField, 9, 2, 0, 109, 1, 0, // Skip to: 17098 |
6161 | /* 16733 */ MCD::OPC_Decode, 223, 18, 217, 2, // Opcode: RDHWR |
6162 | /* 16738 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 16753 |
6163 | /* 16743 */ MCD::OPC_CheckPredicate, 27, 94, 1, 0, // Skip to: 17098 |
6164 | /* 16748 */ MCD::OPC_Decode, 195, 14, 141, 1, // Opcode: LB |
6165 | /* 16753 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 16768 |
6166 | /* 16758 */ MCD::OPC_CheckPredicate, 27, 79, 1, 0, // Skip to: 17098 |
6167 | /* 16763 */ MCD::OPC_Decode, 236, 14, 141, 1, // Opcode: LH |
6168 | /* 16768 */ MCD::OPC_FilterValue, 34, 10, 0, 0, // Skip to: 16783 |
6169 | /* 16773 */ MCD::OPC_CheckPredicate, 31, 64, 1, 0, // Skip to: 17098 |
6170 | /* 16778 */ MCD::OPC_Decode, 157, 15, 141, 1, // Opcode: LWL |
6171 | /* 16783 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 16798 |
6172 | /* 16788 */ MCD::OPC_CheckPredicate, 27, 49, 1, 0, // Skip to: 17098 |
6173 | /* 16793 */ MCD::OPC_Decode, 143, 15, 141, 1, // Opcode: LW |
6174 | /* 16798 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 16813 |
6175 | /* 16803 */ MCD::OPC_CheckPredicate, 27, 34, 1, 0, // Skip to: 17098 |
6176 | /* 16808 */ MCD::OPC_Decode, 205, 14, 141, 1, // Opcode: LBu |
6177 | /* 16813 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 16828 |
6178 | /* 16818 */ MCD::OPC_CheckPredicate, 27, 19, 1, 0, // Skip to: 17098 |
6179 | /* 16823 */ MCD::OPC_Decode, 244, 14, 141, 1, // Opcode: LHu |
6180 | /* 16828 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 16843 |
6181 | /* 16833 */ MCD::OPC_CheckPredicate, 31, 4, 1, 0, // Skip to: 17098 |
6182 | /* 16838 */ MCD::OPC_Decode, 168, 15, 141, 1, // Opcode: LWR |
6183 | /* 16843 */ MCD::OPC_FilterValue, 40, 10, 0, 0, // Skip to: 16858 |
6184 | /* 16848 */ MCD::OPC_CheckPredicate, 27, 245, 0, 0, // Skip to: 17098 |
6185 | /* 16853 */ MCD::OPC_Decode, 151, 19, 141, 1, // Opcode: SB |
6186 | /* 16858 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 16873 |
6187 | /* 16863 */ MCD::OPC_CheckPredicate, 27, 230, 0, 0, // Skip to: 17098 |
6188 | /* 16868 */ MCD::OPC_Decode, 217, 19, 141, 1, // Opcode: SH |
6189 | /* 16873 */ MCD::OPC_FilterValue, 42, 10, 0, 0, // Skip to: 16888 |
6190 | /* 16878 */ MCD::OPC_CheckPredicate, 31, 215, 0, 0, // Skip to: 17098 |
6191 | /* 16883 */ MCD::OPC_Decode, 193, 21, 141, 1, // Opcode: SWL |
6192 | /* 16888 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 16903 |
6193 | /* 16893 */ MCD::OPC_CheckPredicate, 27, 200, 0, 0, // Skip to: 17098 |
6194 | /* 16898 */ MCD::OPC_Decode, 179, 21, 141, 1, // Opcode: SW |
6195 | /* 16903 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 16918 |
6196 | /* 16908 */ MCD::OPC_CheckPredicate, 31, 185, 0, 0, // Skip to: 17098 |
6197 | /* 16913 */ MCD::OPC_Decode, 202, 21, 141, 1, // Opcode: SWR |
6198 | /* 16918 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 16933 |
6199 | /* 16923 */ MCD::OPC_CheckPredicate, 71, 170, 0, 0, // Skip to: 17098 |
6200 | /* 16928 */ MCD::OPC_Decode, 192, 8, 218, 2, // Opcode: CACHE |
6201 | /* 16933 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 16948 |
6202 | /* 16938 */ MCD::OPC_CheckPredicate, 72, 155, 0, 0, // Skip to: 17098 |
6203 | /* 16943 */ MCD::OPC_Decode, 251, 14, 141, 1, // Opcode: LL |
6204 | /* 16948 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 16963 |
6205 | /* 16953 */ MCD::OPC_CheckPredicate, 47, 140, 0, 0, // Skip to: 17098 |
6206 | /* 16958 */ MCD::OPC_Decode, 146, 15, 219, 2, // Opcode: LWC1 |
6207 | /* 16963 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 16978 |
6208 | /* 16968 */ MCD::OPC_CheckPredicate, 31, 125, 0, 0, // Skip to: 17098 |
6209 | /* 16973 */ MCD::OPC_Decode, 148, 15, 220, 2, // Opcode: LWC2 |
6210 | /* 16978 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 16993 |
6211 | /* 16983 */ MCD::OPC_CheckPredicate, 71, 110, 0, 0, // Skip to: 17098 |
6212 | /* 16988 */ MCD::OPC_Decode, 208, 18, 218, 2, // Opcode: PREF |
6213 | /* 16993 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 17008 |
6214 | /* 16998 */ MCD::OPC_CheckPredicate, 57, 95, 0, 0, // Skip to: 17098 |
6215 | /* 17003 */ MCD::OPC_Decode, 211, 14, 219, 2, // Opcode: LDC1 |
6216 | /* 17008 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 17023 |
6217 | /* 17013 */ MCD::OPC_CheckPredicate, 39, 80, 0, 0, // Skip to: 17098 |
6218 | /* 17018 */ MCD::OPC_Decode, 216, 14, 220, 2, // Opcode: LDC2 |
6219 | /* 17023 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 17038 |
6220 | /* 17028 */ MCD::OPC_CheckPredicate, 72, 65, 0, 0, // Skip to: 17098 |
6221 | /* 17033 */ MCD::OPC_Decode, 159, 19, 141, 1, // Opcode: SC |
6222 | /* 17038 */ MCD::OPC_FilterValue, 57, 10, 0, 0, // Skip to: 17053 |
6223 | /* 17043 */ MCD::OPC_CheckPredicate, 47, 50, 0, 0, // Skip to: 17098 |
6224 | /* 17048 */ MCD::OPC_Decode, 183, 21, 219, 2, // Opcode: SWC1 |
6225 | /* 17053 */ MCD::OPC_FilterValue, 58, 10, 0, 0, // Skip to: 17068 |
6226 | /* 17058 */ MCD::OPC_CheckPredicate, 31, 35, 0, 0, // Skip to: 17098 |
6227 | /* 17063 */ MCD::OPC_Decode, 185, 21, 220, 2, // Opcode: SWC2 |
6228 | /* 17068 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 17083 |
6229 | /* 17073 */ MCD::OPC_CheckPredicate, 57, 20, 0, 0, // Skip to: 17098 |
6230 | /* 17078 */ MCD::OPC_Decode, 176, 19, 219, 2, // Opcode: SDC1 |
6231 | /* 17083 */ MCD::OPC_FilterValue, 62, 10, 0, 0, // Skip to: 17098 |
6232 | /* 17088 */ MCD::OPC_CheckPredicate, 39, 5, 0, 0, // Skip to: 17098 |
6233 | /* 17093 */ MCD::OPC_Decode, 181, 19, 220, 2, // Opcode: SDC2 |
6234 | /* 17098 */ MCD::OPC_Fail, |
6235 | 0 |
6236 | }; |
6237 | |
6238 | static const uint8_t DecoderTableMips32_64_PTR6432[] = { |
6239 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6240 | /* 3 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 24 |
6241 | /* 8 */ MCD::OPC_CheckPredicate, 73, 41, 0, 0, // Skip to: 54 |
6242 | /* 13 */ MCD::OPC_CheckField, 0, 21, 8, 34, 0, 0, // Skip to: 54 |
6243 | /* 20 */ MCD::OPC_Decode, 178, 14, 24, // Opcode: JR64 |
6244 | /* 24 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 39 |
6245 | /* 29 */ MCD::OPC_CheckPredicate, 74, 20, 0, 0, // Skip to: 54 |
6246 | /* 34 */ MCD::OPC_Decode, 252, 14, 141, 1, // Opcode: LL64 |
6247 | /* 39 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 54 |
6248 | /* 44 */ MCD::OPC_CheckPredicate, 74, 5, 0, 0, // Skip to: 54 |
6249 | /* 49 */ MCD::OPC_Decode, 160, 19, 141, 1, // Opcode: SC64 |
6250 | /* 54 */ MCD::OPC_Fail, |
6251 | 0 |
6252 | }; |
6253 | |
6254 | static const uint8_t DecoderTableMips32r6_64r632[] = { |
6255 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6256 | /* 3 */ MCD::OPC_FilterValue, 0, 14, 2, 0, // Skip to: 534 |
6257 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6258 | /* 11 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 33 |
6259 | /* 16 */ MCD::OPC_CheckPredicate, 75, 161, 9, 0, // Skip to: 2486 |
6260 | /* 21 */ MCD::OPC_CheckField, 8, 3, 0, 154, 9, 0, // Skip to: 2486 |
6261 | /* 28 */ MCD::OPC_Decode, 135, 15, 185, 1, // Opcode: LSA_R6 |
6262 | /* 33 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 55 |
6263 | /* 38 */ MCD::OPC_CheckPredicate, 75, 139, 9, 0, // Skip to: 2486 |
6264 | /* 43 */ MCD::OPC_CheckField, 6, 15, 16, 132, 9, 0, // Skip to: 2486 |
6265 | /* 50 */ MCD::OPC_Decode, 186, 14, 186, 1, // Opcode: JR_HB_R6 |
6266 | /* 55 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 70 |
6267 | /* 60 */ MCD::OPC_CheckPredicate, 76, 117, 9, 0, // Skip to: 2486 |
6268 | /* 65 */ MCD::OPC_Decode, 175, 19, 188, 1, // Opcode: SDBBP_R6 |
6269 | /* 70 */ MCD::OPC_FilterValue, 16, 23, 0, 0, // Skip to: 98 |
6270 | /* 75 */ MCD::OPC_CheckPredicate, 75, 102, 9, 0, // Skip to: 2486 |
6271 | /* 80 */ MCD::OPC_CheckField, 16, 5, 0, 95, 9, 0, // Skip to: 2486 |
6272 | /* 87 */ MCD::OPC_CheckField, 6, 5, 1, 88, 9, 0, // Skip to: 2486 |
6273 | /* 94 */ MCD::OPC_Decode, 140, 9, 25, // Opcode: CLZ_R6 |
6274 | /* 98 */ MCD::OPC_FilterValue, 17, 23, 0, 0, // Skip to: 126 |
6275 | /* 103 */ MCD::OPC_CheckPredicate, 75, 74, 9, 0, // Skip to: 2486 |
6276 | /* 108 */ MCD::OPC_CheckField, 16, 5, 0, 67, 9, 0, // Skip to: 2486 |
6277 | /* 115 */ MCD::OPC_CheckField, 6, 5, 1, 60, 9, 0, // Skip to: 2486 |
6278 | /* 122 */ MCD::OPC_Decode, 248, 8, 25, // Opcode: CLO_R6 |
6279 | /* 126 */ MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 154 |
6280 | /* 131 */ MCD::OPC_CheckPredicate, 77, 46, 9, 0, // Skip to: 2486 |
6281 | /* 136 */ MCD::OPC_CheckField, 16, 5, 0, 39, 9, 0, // Skip to: 2486 |
6282 | /* 143 */ MCD::OPC_CheckField, 6, 5, 1, 32, 9, 0, // Skip to: 2486 |
6283 | /* 150 */ MCD::OPC_Decode, 140, 11, 26, // Opcode: DCLZ_R6 |
6284 | /* 154 */ MCD::OPC_FilterValue, 19, 23, 0, 0, // Skip to: 182 |
6285 | /* 159 */ MCD::OPC_CheckPredicate, 77, 18, 9, 0, // Skip to: 2486 |
6286 | /* 164 */ MCD::OPC_CheckField, 16, 5, 0, 11, 9, 0, // Skip to: 2486 |
6287 | /* 171 */ MCD::OPC_CheckField, 6, 5, 1, 4, 9, 0, // Skip to: 2486 |
6288 | /* 178 */ MCD::OPC_Decode, 138, 11, 26, // Opcode: DCLO_R6 |
6289 | /* 182 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 204 |
6290 | /* 187 */ MCD::OPC_CheckPredicate, 77, 246, 8, 0, // Skip to: 2486 |
6291 | /* 192 */ MCD::OPC_CheckField, 8, 3, 0, 239, 8, 0, // Skip to: 2486 |
6292 | /* 199 */ MCD::OPC_Decode, 169, 11, 194, 1, // Opcode: DLSA_R6 |
6293 | /* 204 */ MCD::OPC_FilterValue, 24, 31, 0, 0, // Skip to: 240 |
6294 | /* 209 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6295 | /* 212 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 226 |
6296 | /* 217 */ MCD::OPC_CheckPredicate, 76, 216, 8, 0, // Skip to: 2486 |
6297 | /* 222 */ MCD::OPC_Decode, 229, 17, 61, // Opcode: MUL_R6 |
6298 | /* 226 */ MCD::OPC_FilterValue, 3, 207, 8, 0, // Skip to: 2486 |
6299 | /* 231 */ MCD::OPC_CheckPredicate, 76, 202, 8, 0, // Skip to: 2486 |
6300 | /* 236 */ MCD::OPC_Decode, 181, 17, 61, // Opcode: MUH |
6301 | /* 240 */ MCD::OPC_FilterValue, 25, 31, 0, 0, // Skip to: 276 |
6302 | /* 245 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6303 | /* 248 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 262 |
6304 | /* 253 */ MCD::OPC_CheckPredicate, 76, 180, 8, 0, // Skip to: 2486 |
6305 | /* 258 */ MCD::OPC_Decode, 217, 17, 61, // Opcode: MULU |
6306 | /* 262 */ MCD::OPC_FilterValue, 3, 171, 8, 0, // Skip to: 2486 |
6307 | /* 267 */ MCD::OPC_CheckPredicate, 76, 166, 8, 0, // Skip to: 2486 |
6308 | /* 272 */ MCD::OPC_Decode, 182, 17, 61, // Opcode: MUHU |
6309 | /* 276 */ MCD::OPC_FilterValue, 26, 31, 0, 0, // Skip to: 312 |
6310 | /* 281 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6311 | /* 284 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 298 |
6312 | /* 289 */ MCD::OPC_CheckPredicate, 76, 144, 8, 0, // Skip to: 2486 |
6313 | /* 294 */ MCD::OPC_Decode, 154, 11, 61, // Opcode: DIV |
6314 | /* 298 */ MCD::OPC_FilterValue, 3, 135, 8, 0, // Skip to: 2486 |
6315 | /* 303 */ MCD::OPC_CheckPredicate, 76, 130, 8, 0, // Skip to: 2486 |
6316 | /* 308 */ MCD::OPC_Decode, 187, 16, 61, // Opcode: MOD |
6317 | /* 312 */ MCD::OPC_FilterValue, 27, 31, 0, 0, // Skip to: 348 |
6318 | /* 317 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6319 | /* 320 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 334 |
6320 | /* 325 */ MCD::OPC_CheckPredicate, 76, 108, 8, 0, // Skip to: 2486 |
6321 | /* 330 */ MCD::OPC_Decode, 155, 11, 61, // Opcode: DIVU |
6322 | /* 334 */ MCD::OPC_FilterValue, 3, 99, 8, 0, // Skip to: 2486 |
6323 | /* 339 */ MCD::OPC_CheckPredicate, 76, 94, 8, 0, // Skip to: 2486 |
6324 | /* 344 */ MCD::OPC_Decode, 190, 16, 61, // Opcode: MODU |
6325 | /* 348 */ MCD::OPC_FilterValue, 28, 31, 0, 0, // Skip to: 384 |
6326 | /* 353 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6327 | /* 356 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 370 |
6328 | /* 361 */ MCD::OPC_CheckPredicate, 77, 72, 8, 0, // Skip to: 2486 |
6329 | /* 366 */ MCD::OPC_Decode, 189, 11, 23, // Opcode: DMUL_R6 |
6330 | /* 370 */ MCD::OPC_FilterValue, 3, 63, 8, 0, // Skip to: 2486 |
6331 | /* 375 */ MCD::OPC_CheckPredicate, 77, 58, 8, 0, // Skip to: 2486 |
6332 | /* 380 */ MCD::OPC_Decode, 183, 11, 23, // Opcode: DMUH |
6333 | /* 384 */ MCD::OPC_FilterValue, 29, 31, 0, 0, // Skip to: 420 |
6334 | /* 389 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6335 | /* 392 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 406 |
6336 | /* 397 */ MCD::OPC_CheckPredicate, 77, 36, 8, 0, // Skip to: 2486 |
6337 | /* 402 */ MCD::OPC_Decode, 188, 11, 23, // Opcode: DMULU |
6338 | /* 406 */ MCD::OPC_FilterValue, 3, 27, 8, 0, // Skip to: 2486 |
6339 | /* 411 */ MCD::OPC_CheckPredicate, 77, 22, 8, 0, // Skip to: 2486 |
6340 | /* 416 */ MCD::OPC_Decode, 184, 11, 23, // Opcode: DMUHU |
6341 | /* 420 */ MCD::OPC_FilterValue, 30, 31, 0, 0, // Skip to: 456 |
6342 | /* 425 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6343 | /* 428 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 442 |
6344 | /* 433 */ MCD::OPC_CheckPredicate, 77, 0, 8, 0, // Skip to: 2486 |
6345 | /* 438 */ MCD::OPC_Decode, 141, 11, 23, // Opcode: DDIV |
6346 | /* 442 */ MCD::OPC_FilterValue, 3, 247, 7, 0, // Skip to: 2486 |
6347 | /* 447 */ MCD::OPC_CheckPredicate, 77, 242, 7, 0, // Skip to: 2486 |
6348 | /* 452 */ MCD::OPC_Decode, 175, 11, 23, // Opcode: DMOD |
6349 | /* 456 */ MCD::OPC_FilterValue, 31, 31, 0, 0, // Skip to: 492 |
6350 | /* 461 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6351 | /* 464 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 478 |
6352 | /* 469 */ MCD::OPC_CheckPredicate, 77, 220, 7, 0, // Skip to: 2486 |
6353 | /* 474 */ MCD::OPC_Decode, 142, 11, 23, // Opcode: DDIVU |
6354 | /* 478 */ MCD::OPC_FilterValue, 3, 211, 7, 0, // Skip to: 2486 |
6355 | /* 483 */ MCD::OPC_CheckPredicate, 77, 206, 7, 0, // Skip to: 2486 |
6356 | /* 488 */ MCD::OPC_Decode, 176, 11, 23, // Opcode: DMODU |
6357 | /* 492 */ MCD::OPC_FilterValue, 53, 16, 0, 0, // Skip to: 513 |
6358 | /* 497 */ MCD::OPC_CheckPredicate, 78, 192, 7, 0, // Skip to: 2486 |
6359 | /* 502 */ MCD::OPC_CheckField, 6, 5, 0, 185, 7, 0, // Skip to: 2486 |
6360 | /* 509 */ MCD::OPC_Decode, 197, 19, 61, // Opcode: SELEQZ |
6361 | /* 513 */ MCD::OPC_FilterValue, 55, 176, 7, 0, // Skip to: 2486 |
6362 | /* 518 */ MCD::OPC_CheckPredicate, 78, 171, 7, 0, // Skip to: 2486 |
6363 | /* 523 */ MCD::OPC_CheckField, 6, 5, 0, 164, 7, 0, // Skip to: 2486 |
6364 | /* 530 */ MCD::OPC_Decode, 204, 19, 61, // Opcode: SELNEZ |
6365 | /* 534 */ MCD::OPC_FilterValue, 1, 105, 0, 0, // Skip to: 644 |
6366 | /* 539 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... |
6367 | /* 542 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 557 |
6368 | /* 547 */ MCD::OPC_CheckPredicate, 77, 142, 7, 0, // Skip to: 2486 |
6369 | /* 552 */ MCD::OPC_Decode, 132, 11, 221, 2, // Opcode: DAHI |
6370 | /* 557 */ MCD::OPC_FilterValue, 16, 23, 0, 0, // Skip to: 585 |
6371 | /* 562 */ MCD::OPC_CheckPredicate, 75, 127, 7, 0, // Skip to: 2486 |
6372 | /* 567 */ MCD::OPC_CheckField, 21, 5, 0, 120, 7, 0, // Skip to: 2486 |
6373 | /* 574 */ MCD::OPC_CheckField, 0, 16, 0, 113, 7, 0, // Skip to: 2486 |
6374 | /* 581 */ MCD::OPC_Decode, 236, 17, 10, // Opcode: NAL |
6375 | /* 585 */ MCD::OPC_FilterValue, 17, 17, 0, 0, // Skip to: 607 |
6376 | /* 590 */ MCD::OPC_CheckPredicate, 75, 99, 7, 0, // Skip to: 2486 |
6377 | /* 595 */ MCD::OPC_CheckField, 21, 5, 0, 92, 7, 0, // Skip to: 2486 |
6378 | /* 602 */ MCD::OPC_Decode, 253, 6, 198, 1, // Opcode: BAL |
6379 | /* 607 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 629 |
6380 | /* 612 */ MCD::OPC_CheckPredicate, 76, 77, 7, 0, // Skip to: 2486 |
6381 | /* 617 */ MCD::OPC_CheckField, 21, 5, 0, 70, 7, 0, // Skip to: 2486 |
6382 | /* 624 */ MCD::OPC_Decode, 148, 20, 222, 2, // Opcode: SIGRIE |
6383 | /* 629 */ MCD::OPC_FilterValue, 30, 60, 7, 0, // Skip to: 2486 |
6384 | /* 634 */ MCD::OPC_CheckPredicate, 77, 55, 7, 0, // Skip to: 2486 |
6385 | /* 639 */ MCD::OPC_Decode, 134, 11, 221, 2, // Opcode: DATI |
6386 | /* 644 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 659 |
6387 | /* 649 */ MCD::OPC_CheckPredicate, 76, 40, 7, 0, // Skip to: 2486 |
6388 | /* 654 */ MCD::OPC_Decode, 183, 7, 223, 2, // Opcode: BGEZALC |
6389 | /* 659 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 674 |
6390 | /* 664 */ MCD::OPC_CheckPredicate, 76, 25, 7, 0, // Skip to: 2486 |
6391 | /* 669 */ MCD::OPC_Decode, 240, 7, 224, 2, // Opcode: BLTZALC |
6392 | /* 674 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 689 |
6393 | /* 679 */ MCD::OPC_CheckPredicate, 76, 10, 7, 0, // Skip to: 2486 |
6394 | /* 684 */ MCD::OPC_Decode, 161, 7, 225, 2, // Opcode: BEQC |
6395 | /* 689 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 704 |
6396 | /* 694 */ MCD::OPC_CheckPredicate, 75, 251, 6, 0, // Skip to: 2486 |
6397 | /* 699 */ MCD::OPC_Decode, 222, 6, 203, 1, // Opcode: AUI |
6398 | /* 704 */ MCD::OPC_FilterValue, 16, 45, 0, 0, // Skip to: 754 |
6399 | /* 709 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... |
6400 | /* 712 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 733 |
6401 | /* 717 */ MCD::OPC_CheckPredicate, 75, 228, 6, 0, // Skip to: 2486 |
6402 | /* 722 */ MCD::OPC_CheckField, 21, 5, 11, 221, 6, 0, // Skip to: 2486 |
6403 | /* 729 */ MCD::OPC_Decode, 149, 12, 92, // Opcode: EVP |
6404 | /* 733 */ MCD::OPC_FilterValue, 36, 212, 6, 0, // Skip to: 2486 |
6405 | /* 738 */ MCD::OPC_CheckPredicate, 75, 207, 6, 0, // Skip to: 2486 |
6406 | /* 743 */ MCD::OPC_CheckField, 21, 5, 11, 200, 6, 0, // Skip to: 2486 |
6407 | /* 750 */ MCD::OPC_Decode, 132, 12, 92, // Opcode: DVP |
6408 | /* 754 */ MCD::OPC_FilterValue, 17, 135, 3, 0, // Skip to: 1662 |
6409 | /* 759 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6410 | /* 762 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 777 |
6411 | /* 767 */ MCD::OPC_CheckPredicate, 79, 178, 6, 0, // Skip to: 2486 |
6412 | /* 772 */ MCD::OPC_Decode, 136, 7, 226, 2, // Opcode: BC1EQZ |
6413 | /* 777 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 792 |
6414 | /* 782 */ MCD::OPC_CheckPredicate, 79, 163, 6, 0, // Skip to: 2486 |
6415 | /* 787 */ MCD::OPC_Decode, 141, 7, 226, 2, // Opcode: BC1NEZ |
6416 | /* 792 */ MCD::OPC_FilterValue, 16, 182, 0, 0, // Skip to: 979 |
6417 | /* 797 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6418 | /* 800 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 815 |
6419 | /* 805 */ MCD::OPC_CheckPredicate, 79, 140, 6, 0, // Skip to: 2486 |
6420 | /* 810 */ MCD::OPC_Decode, 213, 19, 227, 2, // Opcode: SEL_S |
6421 | /* 815 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 830 |
6422 | /* 820 */ MCD::OPC_CheckPredicate, 79, 125, 6, 0, // Skip to: 2486 |
6423 | /* 825 */ MCD::OPC_Decode, 202, 19, 218, 1, // Opcode: SELEQZ_S |
6424 | /* 830 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 845 |
6425 | /* 835 */ MCD::OPC_CheckPredicate, 79, 110, 6, 0, // Skip to: 2486 |
6426 | /* 840 */ MCD::OPC_Decode, 209, 19, 218, 1, // Opcode: SELNEZ_S |
6427 | /* 845 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 860 |
6428 | /* 850 */ MCD::OPC_CheckPredicate, 79, 95, 6, 0, // Skip to: 2486 |
6429 | /* 855 */ MCD::OPC_Decode, 198, 15, 228, 2, // Opcode: MADDF_S |
6430 | /* 860 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 875 |
6431 | /* 865 */ MCD::OPC_CheckPredicate, 79, 80, 6, 0, // Skip to: 2486 |
6432 | /* 870 */ MCD::OPC_Decode, 249, 16, 228, 2, // Opcode: MSUBF_S |
6433 | /* 875 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 897 |
6434 | /* 880 */ MCD::OPC_CheckPredicate, 79, 65, 6, 0, // Skip to: 2486 |
6435 | /* 885 */ MCD::OPC_CheckField, 16, 5, 0, 58, 6, 0, // Skip to: 2486 |
6436 | /* 892 */ MCD::OPC_Decode, 244, 18, 219, 1, // Opcode: RINT_S |
6437 | /* 897 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 919 |
6438 | /* 902 */ MCD::OPC_CheckPredicate, 79, 43, 6, 0, // Skip to: 2486 |
6439 | /* 907 */ MCD::OPC_CheckField, 16, 5, 0, 36, 6, 0, // Skip to: 2486 |
6440 | /* 914 */ MCD::OPC_Decode, 227, 8, 219, 1, // Opcode: CLASS_S |
6441 | /* 919 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 934 |
6442 | /* 924 */ MCD::OPC_CheckPredicate, 79, 21, 6, 0, // Skip to: 2486 |
6443 | /* 929 */ MCD::OPC_Decode, 177, 16, 218, 1, // Opcode: MIN_S |
6444 | /* 934 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 949 |
6445 | /* 939 */ MCD::OPC_CheckPredicate, 79, 6, 6, 0, // Skip to: 2486 |
6446 | /* 944 */ MCD::OPC_Decode, 161, 16, 218, 1, // Opcode: MINA_S |
6447 | /* 949 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 964 |
6448 | /* 954 */ MCD::OPC_CheckPredicate, 79, 247, 5, 0, // Skip to: 2486 |
6449 | /* 959 */ MCD::OPC_Decode, 246, 15, 218, 1, // Opcode: MAX_S |
6450 | /* 964 */ MCD::OPC_FilterValue, 31, 237, 5, 0, // Skip to: 2486 |
6451 | /* 969 */ MCD::OPC_CheckPredicate, 79, 232, 5, 0, // Skip to: 2486 |
6452 | /* 974 */ MCD::OPC_Decode, 230, 15, 218, 1, // Opcode: MAXA_S |
6453 | /* 979 */ MCD::OPC_FilterValue, 17, 182, 0, 0, // Skip to: 1166 |
6454 | /* 984 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6455 | /* 987 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 1002 |
6456 | /* 992 */ MCD::OPC_CheckPredicate, 79, 209, 5, 0, // Skip to: 2486 |
6457 | /* 997 */ MCD::OPC_Decode, 211, 19, 229, 2, // Opcode: SEL_D |
6458 | /* 1002 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 1017 |
6459 | /* 1007 */ MCD::OPC_CheckPredicate, 79, 194, 5, 0, // Skip to: 2486 |
6460 | /* 1012 */ MCD::OPC_Decode, 199, 19, 230, 2, // Opcode: SELEQZ_D |
6461 | /* 1017 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 1032 |
6462 | /* 1022 */ MCD::OPC_CheckPredicate, 79, 179, 5, 0, // Skip to: 2486 |
6463 | /* 1027 */ MCD::OPC_Decode, 206, 19, 230, 2, // Opcode: SELNEZ_D |
6464 | /* 1032 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 1047 |
6465 | /* 1037 */ MCD::OPC_CheckPredicate, 79, 164, 5, 0, // Skip to: 2486 |
6466 | /* 1042 */ MCD::OPC_Decode, 196, 15, 229, 2, // Opcode: MADDF_D |
6467 | /* 1047 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 1062 |
6468 | /* 1052 */ MCD::OPC_CheckPredicate, 79, 149, 5, 0, // Skip to: 2486 |
6469 | /* 1057 */ MCD::OPC_Decode, 247, 16, 229, 2, // Opcode: MSUBF_D |
6470 | /* 1062 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 1084 |
6471 | /* 1067 */ MCD::OPC_CheckPredicate, 79, 134, 5, 0, // Skip to: 2486 |
6472 | /* 1072 */ MCD::OPC_CheckField, 16, 5, 0, 127, 5, 0, // Skip to: 2486 |
6473 | /* 1079 */ MCD::OPC_Decode, 242, 18, 230, 1, // Opcode: RINT_D |
6474 | /* 1084 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 1106 |
6475 | /* 1089 */ MCD::OPC_CheckPredicate, 79, 112, 5, 0, // Skip to: 2486 |
6476 | /* 1094 */ MCD::OPC_CheckField, 16, 5, 0, 105, 5, 0, // Skip to: 2486 |
6477 | /* 1101 */ MCD::OPC_Decode, 225, 8, 230, 1, // Opcode: CLASS_D |
6478 | /* 1106 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 1121 |
6479 | /* 1111 */ MCD::OPC_CheckPredicate, 79, 90, 5, 0, // Skip to: 2486 |
6480 | /* 1116 */ MCD::OPC_Decode, 175, 16, 230, 2, // Opcode: MIN_D |
6481 | /* 1121 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 1136 |
6482 | /* 1126 */ MCD::OPC_CheckPredicate, 79, 75, 5, 0, // Skip to: 2486 |
6483 | /* 1131 */ MCD::OPC_Decode, 159, 16, 230, 2, // Opcode: MINA_D |
6484 | /* 1136 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 1151 |
6485 | /* 1141 */ MCD::OPC_CheckPredicate, 79, 60, 5, 0, // Skip to: 2486 |
6486 | /* 1146 */ MCD::OPC_Decode, 244, 15, 230, 2, // Opcode: MAX_D |
6487 | /* 1151 */ MCD::OPC_FilterValue, 31, 50, 5, 0, // Skip to: 2486 |
6488 | /* 1156 */ MCD::OPC_CheckPredicate, 79, 45, 5, 0, // Skip to: 2486 |
6489 | /* 1161 */ MCD::OPC_Decode, 228, 15, 230, 2, // Opcode: MAXA_D |
6490 | /* 1166 */ MCD::OPC_FilterValue, 20, 243, 0, 0, // Skip to: 1414 |
6491 | /* 1171 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6492 | /* 1174 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1189 |
6493 | /* 1179 */ MCD::OPC_CheckPredicate, 79, 22, 5, 0, // Skip to: 2486 |
6494 | /* 1184 */ MCD::OPC_Decode, 168, 9, 231, 2, // Opcode: CMP_F_S |
6495 | /* 1189 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1204 |
6496 | /* 1194 */ MCD::OPC_CheckPredicate, 79, 7, 5, 0, // Skip to: 2486 |
6497 | /* 1199 */ MCD::OPC_Decode, 227, 9, 231, 2, // Opcode: CMP_UN_S |
6498 | /* 1204 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1219 |
6499 | /* 1209 */ MCD::OPC_CheckPredicate, 79, 248, 4, 0, // Skip to: 2486 |
6500 | /* 1214 */ MCD::OPC_Decode, 165, 9, 231, 2, // Opcode: CMP_EQ_S |
6501 | /* 1219 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1234 |
6502 | /* 1224 */ MCD::OPC_CheckPredicate, 79, 233, 4, 0, // Skip to: 2486 |
6503 | /* 1229 */ MCD::OPC_Decode, 215, 9, 231, 2, // Opcode: CMP_UEQ_S |
6504 | /* 1234 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1249 |
6505 | /* 1239 */ MCD::OPC_CheckPredicate, 79, 218, 4, 0, // Skip to: 2486 |
6506 | /* 1244 */ MCD::OPC_Decode, 179, 9, 231, 2, // Opcode: CMP_LT_S |
6507 | /* 1249 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1264 |
6508 | /* 1254 */ MCD::OPC_CheckPredicate, 79, 203, 4, 0, // Skip to: 2486 |
6509 | /* 1259 */ MCD::OPC_Decode, 223, 9, 231, 2, // Opcode: CMP_ULT_S |
6510 | /* 1264 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1279 |
6511 | /* 1269 */ MCD::OPC_CheckPredicate, 79, 188, 4, 0, // Skip to: 2486 |
6512 | /* 1274 */ MCD::OPC_Decode, 173, 9, 231, 2, // Opcode: CMP_LE_S |
6513 | /* 1279 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1294 |
6514 | /* 1284 */ MCD::OPC_CheckPredicate, 79, 173, 4, 0, // Skip to: 2486 |
6515 | /* 1289 */ MCD::OPC_Decode, 219, 9, 231, 2, // Opcode: CMP_ULE_S |
6516 | /* 1294 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1309 |
6517 | /* 1299 */ MCD::OPC_CheckPredicate, 79, 158, 4, 0, // Skip to: 2486 |
6518 | /* 1304 */ MCD::OPC_Decode, 183, 9, 231, 2, // Opcode: CMP_SAF_S |
6519 | /* 1309 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1324 |
6520 | /* 1314 */ MCD::OPC_CheckPredicate, 79, 143, 4, 0, // Skip to: 2486 |
6521 | /* 1319 */ MCD::OPC_Decode, 211, 9, 231, 2, // Opcode: CMP_SUN_S |
6522 | /* 1324 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1339 |
6523 | /* 1329 */ MCD::OPC_CheckPredicate, 79, 128, 4, 0, // Skip to: 2486 |
6524 | /* 1334 */ MCD::OPC_Decode, 187, 9, 231, 2, // Opcode: CMP_SEQ_S |
6525 | /* 1339 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1354 |
6526 | /* 1344 */ MCD::OPC_CheckPredicate, 79, 113, 4, 0, // Skip to: 2486 |
6527 | /* 1349 */ MCD::OPC_Decode, 199, 9, 231, 2, // Opcode: CMP_SUEQ_S |
6528 | /* 1354 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1369 |
6529 | /* 1359 */ MCD::OPC_CheckPredicate, 79, 98, 4, 0, // Skip to: 2486 |
6530 | /* 1364 */ MCD::OPC_Decode, 195, 9, 231, 2, // Opcode: CMP_SLT_S |
6531 | /* 1369 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1384 |
6532 | /* 1374 */ MCD::OPC_CheckPredicate, 79, 83, 4, 0, // Skip to: 2486 |
6533 | /* 1379 */ MCD::OPC_Decode, 207, 9, 231, 2, // Opcode: CMP_SULT_S |
6534 | /* 1384 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1399 |
6535 | /* 1389 */ MCD::OPC_CheckPredicate, 79, 68, 4, 0, // Skip to: 2486 |
6536 | /* 1394 */ MCD::OPC_Decode, 191, 9, 231, 2, // Opcode: CMP_SLE_S |
6537 | /* 1399 */ MCD::OPC_FilterValue, 15, 58, 4, 0, // Skip to: 2486 |
6538 | /* 1404 */ MCD::OPC_CheckPredicate, 79, 53, 4, 0, // Skip to: 2486 |
6539 | /* 1409 */ MCD::OPC_Decode, 203, 9, 231, 2, // Opcode: CMP_SULE_S |
6540 | /* 1414 */ MCD::OPC_FilterValue, 21, 43, 4, 0, // Skip to: 2486 |
6541 | /* 1419 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6542 | /* 1422 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1437 |
6543 | /* 1427 */ MCD::OPC_CheckPredicate, 79, 30, 4, 0, // Skip to: 2486 |
6544 | /* 1432 */ MCD::OPC_Decode, 167, 9, 232, 2, // Opcode: CMP_F_D |
6545 | /* 1437 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1452 |
6546 | /* 1442 */ MCD::OPC_CheckPredicate, 79, 15, 4, 0, // Skip to: 2486 |
6547 | /* 1447 */ MCD::OPC_Decode, 225, 9, 232, 2, // Opcode: CMP_UN_D |
6548 | /* 1452 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1467 |
6549 | /* 1457 */ MCD::OPC_CheckPredicate, 79, 0, 4, 0, // Skip to: 2486 |
6550 | /* 1462 */ MCD::OPC_Decode, 161, 9, 232, 2, // Opcode: CMP_EQ_D |
6551 | /* 1467 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1482 |
6552 | /* 1472 */ MCD::OPC_CheckPredicate, 79, 241, 3, 0, // Skip to: 2486 |
6553 | /* 1477 */ MCD::OPC_Decode, 213, 9, 232, 2, // Opcode: CMP_UEQ_D |
6554 | /* 1482 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1497 |
6555 | /* 1487 */ MCD::OPC_CheckPredicate, 79, 226, 3, 0, // Skip to: 2486 |
6556 | /* 1492 */ MCD::OPC_Decode, 175, 9, 232, 2, // Opcode: CMP_LT_D |
6557 | /* 1497 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1512 |
6558 | /* 1502 */ MCD::OPC_CheckPredicate, 79, 211, 3, 0, // Skip to: 2486 |
6559 | /* 1507 */ MCD::OPC_Decode, 221, 9, 232, 2, // Opcode: CMP_ULT_D |
6560 | /* 1512 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1527 |
6561 | /* 1517 */ MCD::OPC_CheckPredicate, 79, 196, 3, 0, // Skip to: 2486 |
6562 | /* 1522 */ MCD::OPC_Decode, 169, 9, 232, 2, // Opcode: CMP_LE_D |
6563 | /* 1527 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1542 |
6564 | /* 1532 */ MCD::OPC_CheckPredicate, 79, 181, 3, 0, // Skip to: 2486 |
6565 | /* 1537 */ MCD::OPC_Decode, 217, 9, 232, 2, // Opcode: CMP_ULE_D |
6566 | /* 1542 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1557 |
6567 | /* 1547 */ MCD::OPC_CheckPredicate, 79, 166, 3, 0, // Skip to: 2486 |
6568 | /* 1552 */ MCD::OPC_Decode, 181, 9, 232, 2, // Opcode: CMP_SAF_D |
6569 | /* 1557 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1572 |
6570 | /* 1562 */ MCD::OPC_CheckPredicate, 79, 151, 3, 0, // Skip to: 2486 |
6571 | /* 1567 */ MCD::OPC_Decode, 209, 9, 232, 2, // Opcode: CMP_SUN_D |
6572 | /* 1572 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1587 |
6573 | /* 1577 */ MCD::OPC_CheckPredicate, 79, 136, 3, 0, // Skip to: 2486 |
6574 | /* 1582 */ MCD::OPC_Decode, 185, 9, 232, 2, // Opcode: CMP_SEQ_D |
6575 | /* 1587 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1602 |
6576 | /* 1592 */ MCD::OPC_CheckPredicate, 79, 121, 3, 0, // Skip to: 2486 |
6577 | /* 1597 */ MCD::OPC_Decode, 197, 9, 232, 2, // Opcode: CMP_SUEQ_D |
6578 | /* 1602 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1617 |
6579 | /* 1607 */ MCD::OPC_CheckPredicate, 79, 106, 3, 0, // Skip to: 2486 |
6580 | /* 1612 */ MCD::OPC_Decode, 193, 9, 232, 2, // Opcode: CMP_SLT_D |
6581 | /* 1617 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1632 |
6582 | /* 1622 */ MCD::OPC_CheckPredicate, 79, 91, 3, 0, // Skip to: 2486 |
6583 | /* 1627 */ MCD::OPC_Decode, 205, 9, 232, 2, // Opcode: CMP_SULT_D |
6584 | /* 1632 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1647 |
6585 | /* 1637 */ MCD::OPC_CheckPredicate, 79, 76, 3, 0, // Skip to: 2486 |
6586 | /* 1642 */ MCD::OPC_Decode, 189, 9, 232, 2, // Opcode: CMP_SLE_D |
6587 | /* 1647 */ MCD::OPC_FilterValue, 15, 66, 3, 0, // Skip to: 2486 |
6588 | /* 1652 */ MCD::OPC_CheckPredicate, 79, 61, 3, 0, // Skip to: 2486 |
6589 | /* 1657 */ MCD::OPC_Decode, 201, 9, 232, 2, // Opcode: CMP_SULE_D |
6590 | /* 1662 */ MCD::OPC_FilterValue, 18, 93, 0, 0, // Skip to: 1760 |
6591 | /* 1667 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6592 | /* 1670 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1685 |
6593 | /* 1675 */ MCD::OPC_CheckPredicate, 76, 38, 3, 0, // Skip to: 2486 |
6594 | /* 1680 */ MCD::OPC_Decode, 146, 7, 233, 2, // Opcode: BC2EQZ |
6595 | /* 1685 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1700 |
6596 | /* 1690 */ MCD::OPC_CheckPredicate, 76, 23, 3, 0, // Skip to: 2486 |
6597 | /* 1695 */ MCD::OPC_Decode, 150, 15, 234, 2, // Opcode: LWC2_R6 |
6598 | /* 1700 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1715 |
6599 | /* 1705 */ MCD::OPC_CheckPredicate, 76, 8, 3, 0, // Skip to: 2486 |
6600 | /* 1710 */ MCD::OPC_Decode, 187, 21, 234, 2, // Opcode: SWC2_R6 |
6601 | /* 1715 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1730 |
6602 | /* 1720 */ MCD::OPC_CheckPredicate, 76, 249, 2, 0, // Skip to: 2486 |
6603 | /* 1725 */ MCD::OPC_Decode, 148, 7, 233, 2, // Opcode: BC2NEZ |
6604 | /* 1730 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1745 |
6605 | /* 1735 */ MCD::OPC_CheckPredicate, 76, 234, 2, 0, // Skip to: 2486 |
6606 | /* 1740 */ MCD::OPC_Decode, 218, 14, 234, 2, // Opcode: LDC2_R6 |
6607 | /* 1745 */ MCD::OPC_FilterValue, 15, 224, 2, 0, // Skip to: 2486 |
6608 | /* 1750 */ MCD::OPC_CheckPredicate, 76, 219, 2, 0, // Skip to: 2486 |
6609 | /* 1755 */ MCD::OPC_Decode, 183, 19, 234, 2, // Opcode: SDC2_R6 |
6610 | /* 1760 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 1775 |
6611 | /* 1765 */ MCD::OPC_CheckPredicate, 76, 204, 2, 0, // Skip to: 2486 |
6612 | /* 1770 */ MCD::OPC_Decode, 188, 7, 235, 2, // Opcode: BGEZC |
6613 | /* 1775 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 1790 |
6614 | /* 1780 */ MCD::OPC_CheckPredicate, 76, 189, 2, 0, // Skip to: 2486 |
6615 | /* 1785 */ MCD::OPC_Decode, 245, 7, 236, 2, // Opcode: BLTZC |
6616 | /* 1790 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 1805 |
6617 | /* 1795 */ MCD::OPC_CheckPredicate, 76, 174, 2, 0, // Skip to: 2486 |
6618 | /* 1800 */ MCD::OPC_Decode, 128, 8, 237, 2, // Opcode: BNEC |
6619 | /* 1805 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 1820 |
6620 | /* 1810 */ MCD::OPC_CheckPredicate, 77, 159, 2, 0, // Skip to: 2486 |
6621 | /* 1815 */ MCD::OPC_Decode, 135, 11, 238, 2, // Opcode: DAUI |
6622 | /* 1820 */ MCD::OPC_FilterValue, 31, 135, 1, 0, // Skip to: 2216 |
6623 | /* 1825 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6624 | /* 1828 */ MCD::OPC_FilterValue, 15, 123, 0, 0, // Skip to: 1956 |
6625 | /* 1833 */ MCD::OPC_ExtractField, 6, 10, // Inst{15-6} ... |
6626 | /* 1836 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1851 |
6627 | /* 1841 */ MCD::OPC_CheckPredicate, 80, 128, 2, 0, // Skip to: 2486 |
6628 | /* 1846 */ MCD::OPC_Decode, 236, 9, 239, 2, // Opcode: CRC32B |
6629 | /* 1851 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1866 |
6630 | /* 1856 */ MCD::OPC_CheckPredicate, 80, 113, 2, 0, // Skip to: 2486 |
6631 | /* 1861 */ MCD::OPC_Decode, 242, 9, 239, 2, // Opcode: CRC32H |
6632 | /* 1866 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1881 |
6633 | /* 1871 */ MCD::OPC_CheckPredicate, 80, 98, 2, 0, // Skip to: 2486 |
6634 | /* 1876 */ MCD::OPC_Decode, 243, 9, 239, 2, // Opcode: CRC32W |
6635 | /* 1881 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1896 |
6636 | /* 1886 */ MCD::OPC_CheckPredicate, 81, 83, 2, 0, // Skip to: 2486 |
6637 | /* 1891 */ MCD::OPC_Decode, 241, 9, 239, 2, // Opcode: CRC32D |
6638 | /* 1896 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1911 |
6639 | /* 1901 */ MCD::OPC_CheckPredicate, 80, 68, 2, 0, // Skip to: 2486 |
6640 | /* 1906 */ MCD::OPC_Decode, 237, 9, 239, 2, // Opcode: CRC32CB |
6641 | /* 1911 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1926 |
6642 | /* 1916 */ MCD::OPC_CheckPredicate, 80, 53, 2, 0, // Skip to: 2486 |
6643 | /* 1921 */ MCD::OPC_Decode, 239, 9, 239, 2, // Opcode: CRC32CH |
6644 | /* 1926 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1941 |
6645 | /* 1931 */ MCD::OPC_CheckPredicate, 80, 38, 2, 0, // Skip to: 2486 |
6646 | /* 1936 */ MCD::OPC_Decode, 240, 9, 239, 2, // Opcode: CRC32CW |
6647 | /* 1941 */ MCD::OPC_FilterValue, 7, 28, 2, 0, // Skip to: 2486 |
6648 | /* 1946 */ MCD::OPC_CheckPredicate, 81, 23, 2, 0, // Skip to: 2486 |
6649 | /* 1951 */ MCD::OPC_Decode, 238, 9, 239, 2, // Opcode: CRC32CD |
6650 | /* 1956 */ MCD::OPC_FilterValue, 32, 47, 0, 0, // Skip to: 2008 |
6651 | /* 1961 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... |
6652 | /* 1964 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 1993 |
6653 | /* 1969 */ MCD::OPC_CheckPredicate, 75, 0, 2, 0, // Skip to: 2486 |
6654 | /* 1974 */ MCD::OPC_CheckField, 21, 5, 0, 249, 1, 0, // Skip to: 2486 |
6655 | /* 1981 */ MCD::OPC_CheckField, 6, 2, 0, 242, 1, 0, // Skip to: 2486 |
6656 | /* 1988 */ MCD::OPC_Decode, 220, 7, 204, 2, // Opcode: BITSWAP |
6657 | /* 1993 */ MCD::OPC_FilterValue, 2, 232, 1, 0, // Skip to: 2486 |
6658 | /* 1998 */ MCD::OPC_CheckPredicate, 75, 227, 1, 0, // Skip to: 2486 |
6659 | /* 2003 */ MCD::OPC_Decode, 194, 6, 240, 2, // Opcode: ALIGN |
6660 | /* 2008 */ MCD::OPC_FilterValue, 36, 47, 0, 0, // Skip to: 2060 |
6661 | /* 2013 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... |
6662 | /* 2016 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 2045 |
6663 | /* 2021 */ MCD::OPC_CheckPredicate, 77, 204, 1, 0, // Skip to: 2486 |
6664 | /* 2026 */ MCD::OPC_CheckField, 21, 5, 0, 197, 1, 0, // Skip to: 2486 |
6665 | /* 2033 */ MCD::OPC_CheckField, 6, 3, 0, 190, 1, 0, // Skip to: 2486 |
6666 | /* 2040 */ MCD::OPC_Decode, 136, 11, 241, 2, // Opcode: DBITSWAP |
6667 | /* 2045 */ MCD::OPC_FilterValue, 1, 180, 1, 0, // Skip to: 2486 |
6668 | /* 2050 */ MCD::OPC_CheckPredicate, 77, 175, 1, 0, // Skip to: 2486 |
6669 | /* 2055 */ MCD::OPC_Decode, 133, 11, 242, 2, // Opcode: DALIGN |
6670 | /* 2060 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 2082 |
6671 | /* 2065 */ MCD::OPC_CheckPredicate, 76, 160, 1, 0, // Skip to: 2486 |
6672 | /* 2070 */ MCD::OPC_CheckField, 6, 1, 0, 153, 1, 0, // Skip to: 2486 |
6673 | /* 2077 */ MCD::OPC_Decode, 197, 8, 209, 2, // Opcode: CACHE_R6 |
6674 | /* 2082 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 2097 |
6675 | /* 2087 */ MCD::OPC_CheckPredicate, 82, 138, 1, 0, // Skip to: 2486 |
6676 | /* 2092 */ MCD::OPC_Decode, 168, 19, 243, 2, // Opcode: SC_R6 |
6677 | /* 2097 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 2112 |
6678 | /* 2102 */ MCD::OPC_CheckPredicate, 75, 123, 1, 0, // Skip to: 2486 |
6679 | /* 2107 */ MCD::OPC_Decode, 163, 19, 243, 2, // Opcode: SCD_R6 |
6680 | /* 2112 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 2134 |
6681 | /* 2117 */ MCD::OPC_CheckPredicate, 76, 108, 1, 0, // Skip to: 2486 |
6682 | /* 2122 */ MCD::OPC_CheckField, 6, 1, 0, 101, 1, 0, // Skip to: 2486 |
6683 | /* 2129 */ MCD::OPC_Decode, 214, 18, 209, 2, // Opcode: PREF_R6 |
6684 | /* 2134 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 2149 |
6685 | /* 2139 */ MCD::OPC_CheckPredicate, 82, 86, 1, 0, // Skip to: 2486 |
6686 | /* 2144 */ MCD::OPC_Decode, 132, 15, 243, 2, // Opcode: LL_R6 |
6687 | /* 2149 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 2164 |
6688 | /* 2154 */ MCD::OPC_CheckPredicate, 77, 71, 1, 0, // Skip to: 2486 |
6689 | /* 2159 */ MCD::OPC_Decode, 255, 14, 243, 2, // Opcode: LLD_R6 |
6690 | /* 2164 */ MCD::OPC_FilterValue, 61, 61, 1, 0, // Skip to: 2486 |
6691 | /* 2169 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... |
6692 | /* 2172 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2194 |
6693 | /* 2177 */ MCD::OPC_CheckPredicate, 83, 48, 1, 0, // Skip to: 2486 |
6694 | /* 2182 */ MCD::OPC_CheckField, 8, 13, 0, 41, 1, 0, // Skip to: 2486 |
6695 | /* 2189 */ MCD::OPC_Decode, 234, 13, 186, 1, // Opcode: GINVI |
6696 | /* 2194 */ MCD::OPC_FilterValue, 2, 31, 1, 0, // Skip to: 2486 |
6697 | /* 2199 */ MCD::OPC_CheckPredicate, 83, 26, 1, 0, // Skip to: 2486 |
6698 | /* 2204 */ MCD::OPC_CheckField, 10, 11, 0, 19, 1, 0, // Skip to: 2486 |
6699 | /* 2211 */ MCD::OPC_Decode, 236, 13, 244, 2, // Opcode: GINVT |
6700 | /* 2216 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 2231 |
6701 | /* 2221 */ MCD::OPC_CheckPredicate, 76, 4, 1, 0, // Skip to: 2486 |
6702 | /* 2226 */ MCD::OPC_Decode, 134, 7, 245, 2, // Opcode: BC |
6703 | /* 2231 */ MCD::OPC_FilterValue, 53, 27, 0, 0, // Skip to: 2263 |
6704 | /* 2236 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2253 |
6705 | /* 2241 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2253 |
6706 | /* 2248 */ MCD::OPC_Decode, 199, 7, 180, 1, // Opcode: BGTZC_MMR6 |
6707 | /* 2253 */ MCD::OPC_CheckPredicate, 24, 228, 0, 0, // Skip to: 2486 |
6708 | /* 2258 */ MCD::OPC_Decode, 247, 7, 180, 1, // Opcode: BLTZC_MMR6 |
6709 | /* 2263 */ MCD::OPC_FilterValue, 54, 26, 0, 0, // Skip to: 2294 |
6710 | /* 2268 */ MCD::OPC_CheckPredicate, 75, 11, 0, 0, // Skip to: 2284 |
6711 | /* 2273 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 2284 |
6712 | /* 2280 */ MCD::OPC_Decode, 173, 14, 103, // Opcode: JIC |
6713 | /* 2284 */ MCD::OPC_CheckPredicate, 76, 197, 0, 0, // Skip to: 2486 |
6714 | /* 2289 */ MCD::OPC_Decode, 168, 7, 246, 2, // Opcode: BEQZC |
6715 | /* 2294 */ MCD::OPC_FilterValue, 58, 10, 0, 0, // Skip to: 2309 |
6716 | /* 2299 */ MCD::OPC_CheckPredicate, 75, 182, 0, 0, // Skip to: 2486 |
6717 | /* 2304 */ MCD::OPC_Decode, 254, 6, 245, 2, // Opcode: BALC |
6718 | /* 2309 */ MCD::OPC_FilterValue, 59, 109, 0, 0, // Skip to: 2423 |
6719 | /* 2314 */ MCD::OPC_ExtractField, 19, 2, // Inst{20-19} ... |
6720 | /* 2317 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2332 |
6721 | /* 2322 */ MCD::OPC_CheckPredicate, 75, 159, 0, 0, // Skip to: 2486 |
6722 | /* 2327 */ MCD::OPC_Decode, 248, 5, 174, 1, // Opcode: ADDIUPC |
6723 | /* 2332 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2347 |
6724 | /* 2337 */ MCD::OPC_CheckPredicate, 75, 144, 0, 0, // Skip to: 2486 |
6725 | /* 2342 */ MCD::OPC_Decode, 165, 15, 174, 1, // Opcode: LWPC |
6726 | /* 2347 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2362 |
6727 | /* 2352 */ MCD::OPC_CheckPredicate, 84, 129, 0, 0, // Skip to: 2486 |
6728 | /* 2357 */ MCD::OPC_Decode, 174, 15, 174, 1, // Opcode: LWUPC |
6729 | /* 2362 */ MCD::OPC_FilterValue, 3, 119, 0, 0, // Skip to: 2486 |
6730 | /* 2367 */ MCD::OPC_ExtractField, 18, 1, // Inst{18} ... |
6731 | /* 2370 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2385 |
6732 | /* 2375 */ MCD::OPC_CheckPredicate, 84, 106, 0, 0, // Skip to: 2486 |
6733 | /* 2380 */ MCD::OPC_Decode, 225, 14, 247, 2, // Opcode: LDPC |
6734 | /* 2385 */ MCD::OPC_FilterValue, 1, 96, 0, 0, // Skip to: 2486 |
6735 | /* 2390 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
6736 | /* 2393 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2408 |
6737 | /* 2398 */ MCD::OPC_CheckPredicate, 75, 83, 0, 0, // Skip to: 2486 |
6738 | /* 2403 */ MCD::OPC_Decode, 223, 6, 175, 1, // Opcode: AUIPC |
6739 | /* 2408 */ MCD::OPC_FilterValue, 3, 73, 0, 0, // Skip to: 2486 |
6740 | /* 2413 */ MCD::OPC_CheckPredicate, 75, 68, 0, 0, // Skip to: 2486 |
6741 | /* 2418 */ MCD::OPC_Decode, 196, 6, 175, 1, // Opcode: ALUIPC |
6742 | /* 2423 */ MCD::OPC_FilterValue, 61, 27, 0, 0, // Skip to: 2455 |
6743 | /* 2428 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2445 |
6744 | /* 2433 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2445 |
6745 | /* 2440 */ MCD::OPC_Decode, 228, 7, 182, 1, // Opcode: BLEZC_MMR6 |
6746 | /* 2445 */ MCD::OPC_CheckPredicate, 24, 36, 0, 0, // Skip to: 2486 |
6747 | /* 2450 */ MCD::OPC_Decode, 190, 7, 182, 1, // Opcode: BGEZC_MMR6 |
6748 | /* 2455 */ MCD::OPC_FilterValue, 62, 26, 0, 0, // Skip to: 2486 |
6749 | /* 2460 */ MCD::OPC_CheckPredicate, 75, 11, 0, 0, // Skip to: 2476 |
6750 | /* 2465 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 2476 |
6751 | /* 2472 */ MCD::OPC_Decode, 170, 14, 103, // Opcode: JIALC |
6752 | /* 2476 */ MCD::OPC_CheckPredicate, 76, 5, 0, 0, // Skip to: 2486 |
6753 | /* 2481 */ MCD::OPC_Decode, 143, 8, 246, 2, // Opcode: BNEZC |
6754 | /* 2486 */ MCD::OPC_Fail, |
6755 | 0 |
6756 | }; |
6757 | |
6758 | static const uint8_t DecoderTableMips32r6_64r6_Ambiguous32[] = { |
6759 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6760 | /* 3 */ MCD::OPC_FilterValue, 6, 27, 0, 0, // Skip to: 35 |
6761 | /* 8 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 25 |
6762 | /* 13 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 25 |
6763 | /* 20 */ MCD::OPC_Decode, 224, 7, 223, 2, // Opcode: BLEZALC |
6764 | /* 25 */ MCD::OPC_CheckPredicate, 76, 165, 0, 0, // Skip to: 195 |
6765 | /* 30 */ MCD::OPC_Decode, 177, 7, 223, 2, // Opcode: BGEUC |
6766 | /* 35 */ MCD::OPC_FilterValue, 7, 27, 0, 0, // Skip to: 67 |
6767 | /* 40 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 57 |
6768 | /* 45 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 57 |
6769 | /* 52 */ MCD::OPC_Decode, 195, 7, 224, 2, // Opcode: BGTZALC |
6770 | /* 57 */ MCD::OPC_CheckPredicate, 76, 133, 0, 0, // Skip to: 195 |
6771 | /* 62 */ MCD::OPC_Decode, 234, 7, 224, 2, // Opcode: BLTUC |
6772 | /* 67 */ MCD::OPC_FilterValue, 8, 27, 0, 0, // Skip to: 99 |
6773 | /* 72 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 89 |
6774 | /* 77 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 89 |
6775 | /* 84 */ MCD::OPC_Decode, 166, 7, 237, 2, // Opcode: BEQZALC |
6776 | /* 89 */ MCD::OPC_CheckPredicate, 76, 101, 0, 0, // Skip to: 195 |
6777 | /* 94 */ MCD::OPC_Decode, 156, 8, 225, 2, // Opcode: BOVC |
6778 | /* 99 */ MCD::OPC_FilterValue, 22, 27, 0, 0, // Skip to: 131 |
6779 | /* 104 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 121 |
6780 | /* 109 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 121 |
6781 | /* 116 */ MCD::OPC_Decode, 226, 7, 235, 2, // Opcode: BLEZC |
6782 | /* 121 */ MCD::OPC_CheckPredicate, 76, 69, 0, 0, // Skip to: 195 |
6783 | /* 126 */ MCD::OPC_Decode, 174, 7, 235, 2, // Opcode: BGEC |
6784 | /* 131 */ MCD::OPC_FilterValue, 23, 27, 0, 0, // Skip to: 163 |
6785 | /* 136 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 153 |
6786 | /* 141 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 153 |
6787 | /* 148 */ MCD::OPC_Decode, 197, 7, 236, 2, // Opcode: BGTZC |
6788 | /* 153 */ MCD::OPC_CheckPredicate, 76, 37, 0, 0, // Skip to: 195 |
6789 | /* 158 */ MCD::OPC_Decode, 231, 7, 236, 2, // Opcode: BLTC |
6790 | /* 163 */ MCD::OPC_FilterValue, 24, 27, 0, 0, // Skip to: 195 |
6791 | /* 168 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 185 |
6792 | /* 173 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 185 |
6793 | /* 180 */ MCD::OPC_Decode, 141, 8, 237, 2, // Opcode: BNEZALC |
6794 | /* 185 */ MCD::OPC_CheckPredicate, 76, 5, 0, 0, // Skip to: 195 |
6795 | /* 190 */ MCD::OPC_Decode, 149, 8, 237, 2, // Opcode: BNVC |
6796 | /* 195 */ MCD::OPC_Fail, |
6797 | 0 |
6798 | }; |
6799 | |
6800 | static const uint8_t DecoderTableMips32r6_64r6_BranchZero32[] = { |
6801 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6802 | /* 3 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 18 |
6803 | /* 8 */ MCD::OPC_CheckPredicate, 85, 20, 0, 0, // Skip to: 33 |
6804 | /* 13 */ MCD::OPC_Decode, 189, 7, 235, 2, // Opcode: BGEZC64 |
6805 | /* 18 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 33 |
6806 | /* 23 */ MCD::OPC_CheckPredicate, 85, 5, 0, 0, // Skip to: 33 |
6807 | /* 28 */ MCD::OPC_Decode, 246, 7, 236, 2, // Opcode: BLTZC64 |
6808 | /* 33 */ MCD::OPC_Fail, |
6809 | 0 |
6810 | }; |
6811 | |
6812 | static const uint8_t DecoderTableMips32r6_64r6_GP6432[] = { |
6813 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6814 | /* 3 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 61 |
6815 | /* 8 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
6816 | /* 11 */ MCD::OPC_FilterValue, 53, 9, 0, 0, // Skip to: 25 |
6817 | /* 16 */ MCD::OPC_CheckPredicate, 86, 226, 0, 0, // Skip to: 247 |
6818 | /* 21 */ MCD::OPC_Decode, 198, 19, 23, // Opcode: SELEQZ64 |
6819 | /* 25 */ MCD::OPC_FilterValue, 55, 9, 0, 0, // Skip to: 39 |
6820 | /* 30 */ MCD::OPC_CheckPredicate, 86, 212, 0, 0, // Skip to: 247 |
6821 | /* 35 */ MCD::OPC_Decode, 205, 19, 23, // Opcode: SELNEZ64 |
6822 | /* 39 */ MCD::OPC_FilterValue, 137, 8, 202, 0, 0, // Skip to: 247 |
6823 | /* 45 */ MCD::OPC_CheckPredicate, 75, 197, 0, 0, // Skip to: 247 |
6824 | /* 50 */ MCD::OPC_CheckField, 11, 10, 0, 190, 0, 0, // Skip to: 247 |
6825 | /* 57 */ MCD::OPC_Decode, 185, 14, 24, // Opcode: JR_HB64_R6 |
6826 | /* 61 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 76 |
6827 | /* 66 */ MCD::OPC_CheckPredicate, 85, 176, 0, 0, // Skip to: 247 |
6828 | /* 71 */ MCD::OPC_Decode, 178, 7, 223, 2, // Opcode: BGEUC64 |
6829 | /* 76 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 91 |
6830 | /* 81 */ MCD::OPC_CheckPredicate, 85, 161, 0, 0, // Skip to: 247 |
6831 | /* 86 */ MCD::OPC_Decode, 235, 7, 224, 2, // Opcode: BLTUC64 |
6832 | /* 91 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 106 |
6833 | /* 96 */ MCD::OPC_CheckPredicate, 85, 146, 0, 0, // Skip to: 247 |
6834 | /* 101 */ MCD::OPC_Decode, 162, 7, 225, 2, // Opcode: BEQC64 |
6835 | /* 106 */ MCD::OPC_FilterValue, 22, 27, 0, 0, // Skip to: 138 |
6836 | /* 111 */ MCD::OPC_CheckPredicate, 85, 12, 0, 0, // Skip to: 128 |
6837 | /* 116 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 128 |
6838 | /* 123 */ MCD::OPC_Decode, 227, 7, 235, 2, // Opcode: BLEZC64 |
6839 | /* 128 */ MCD::OPC_CheckPredicate, 85, 114, 0, 0, // Skip to: 247 |
6840 | /* 133 */ MCD::OPC_Decode, 175, 7, 235, 2, // Opcode: BGEC64 |
6841 | /* 138 */ MCD::OPC_FilterValue, 23, 27, 0, 0, // Skip to: 170 |
6842 | /* 143 */ MCD::OPC_CheckPredicate, 85, 12, 0, 0, // Skip to: 160 |
6843 | /* 148 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 160 |
6844 | /* 155 */ MCD::OPC_Decode, 198, 7, 236, 2, // Opcode: BGTZC64 |
6845 | /* 160 */ MCD::OPC_CheckPredicate, 85, 82, 0, 0, // Skip to: 247 |
6846 | /* 165 */ MCD::OPC_Decode, 232, 7, 236, 2, // Opcode: BLTC64 |
6847 | /* 170 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 185 |
6848 | /* 175 */ MCD::OPC_CheckPredicate, 85, 67, 0, 0, // Skip to: 247 |
6849 | /* 180 */ MCD::OPC_Decode, 129, 8, 237, 2, // Opcode: BNEC64 |
6850 | /* 185 */ MCD::OPC_FilterValue, 54, 26, 0, 0, // Skip to: 216 |
6851 | /* 190 */ MCD::OPC_CheckPredicate, 85, 11, 0, 0, // Skip to: 206 |
6852 | /* 195 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 206 |
6853 | /* 202 */ MCD::OPC_Decode, 174, 14, 22, // Opcode: JIC64 |
6854 | /* 206 */ MCD::OPC_CheckPredicate, 85, 36, 0, 0, // Skip to: 247 |
6855 | /* 211 */ MCD::OPC_Decode, 170, 7, 248, 2, // Opcode: BEQZC64 |
6856 | /* 216 */ MCD::OPC_FilterValue, 62, 26, 0, 0, // Skip to: 247 |
6857 | /* 221 */ MCD::OPC_CheckPredicate, 85, 11, 0, 0, // Skip to: 237 |
6858 | /* 226 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 237 |
6859 | /* 233 */ MCD::OPC_Decode, 171, 14, 22, // Opcode: JIALC64 |
6860 | /* 237 */ MCD::OPC_CheckPredicate, 85, 5, 0, 0, // Skip to: 247 |
6861 | /* 242 */ MCD::OPC_Decode, 145, 8, 248, 2, // Opcode: BNEZC64 |
6862 | /* 247 */ MCD::OPC_Fail, |
6863 | 0 |
6864 | }; |
6865 | |
6866 | static const uint8_t DecoderTableMips32r6_64r6_PTR6432[] = { |
6867 | /* 0 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6868 | /* 3 */ MCD::OPC_FilterValue, 38, 17, 0, 0, // Skip to: 25 |
6869 | /* 8 */ MCD::OPC_CheckPredicate, 87, 34, 0, 0, // Skip to: 47 |
6870 | /* 13 */ MCD::OPC_CheckField, 26, 6, 31, 27, 0, 0, // Skip to: 47 |
6871 | /* 20 */ MCD::OPC_Decode, 161, 19, 243, 2, // Opcode: SC64_R6 |
6872 | /* 25 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 47 |
6873 | /* 30 */ MCD::OPC_CheckPredicate, 87, 12, 0, 0, // Skip to: 47 |
6874 | /* 35 */ MCD::OPC_CheckField, 26, 6, 31, 5, 0, 0, // Skip to: 47 |
6875 | /* 42 */ MCD::OPC_Decode, 253, 14, 243, 2, // Opcode: LL64_R6 |
6876 | /* 47 */ MCD::OPC_Fail, |
6877 | 0 |
6878 | }; |
6879 | |
6880 | static const uint8_t DecoderTableMips6432[] = { |
6881 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
6882 | /* 3 */ MCD::OPC_FilterValue, 0, 236, 1, 0, // Skip to: 500 |
6883 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
6884 | /* 11 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 32 |
6885 | /* 16 */ MCD::OPC_CheckPredicate, 88, 244, 4, 0, // Skip to: 1289 |
6886 | /* 21 */ MCD::OPC_CheckField, 6, 15, 16, 237, 4, 0, // Skip to: 1289 |
6887 | /* 28 */ MCD::OPC_Decode, 184, 14, 24, // Opcode: JR_HB64 |
6888 | /* 32 */ MCD::OPC_FilterValue, 9, 45, 0, 0, // Skip to: 82 |
6889 | /* 37 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6890 | /* 40 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 61 |
6891 | /* 45 */ MCD::OPC_CheckPredicate, 89, 215, 4, 0, // Skip to: 1289 |
6892 | /* 50 */ MCD::OPC_CheckField, 16, 5, 0, 208, 4, 0, // Skip to: 1289 |
6893 | /* 57 */ MCD::OPC_Decode, 157, 14, 26, // Opcode: JALR64 |
6894 | /* 61 */ MCD::OPC_FilterValue, 16, 199, 4, 0, // Skip to: 1289 |
6895 | /* 66 */ MCD::OPC_CheckPredicate, 90, 194, 4, 0, // Skip to: 1289 |
6896 | /* 71 */ MCD::OPC_CheckField, 16, 5, 0, 187, 4, 0, // Skip to: 1289 |
6897 | /* 78 */ MCD::OPC_Decode, 164, 14, 26, // Opcode: JALR_HB64 |
6898 | /* 82 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 104 |
6899 | /* 87 */ MCD::OPC_CheckPredicate, 91, 173, 4, 0, // Skip to: 1289 |
6900 | /* 92 */ MCD::OPC_CheckField, 6, 5, 0, 166, 4, 0, // Skip to: 1289 |
6901 | /* 99 */ MCD::OPC_Decode, 250, 11, 249, 2, // Opcode: DSLLV |
6902 | /* 104 */ MCD::OPC_FilterValue, 22, 33, 0, 0, // Skip to: 142 |
6903 | /* 109 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
6904 | /* 112 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 127 |
6905 | /* 117 */ MCD::OPC_CheckPredicate, 91, 143, 4, 0, // Skip to: 1289 |
6906 | /* 122 */ MCD::OPC_Decode, 128, 12, 249, 2, // Opcode: DSRLV |
6907 | /* 127 */ MCD::OPC_FilterValue, 1, 133, 4, 0, // Skip to: 1289 |
6908 | /* 132 */ MCD::OPC_CheckPredicate, 90, 128, 4, 0, // Skip to: 1289 |
6909 | /* 137 */ MCD::OPC_Decode, 243, 11, 249, 2, // Opcode: DROTRV |
6910 | /* 142 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 164 |
6911 | /* 147 */ MCD::OPC_CheckPredicate, 91, 113, 4, 0, // Skip to: 1289 |
6912 | /* 152 */ MCD::OPC_CheckField, 6, 5, 0, 106, 4, 0, // Skip to: 1289 |
6913 | /* 159 */ MCD::OPC_Decode, 253, 11, 249, 2, // Opcode: DSRAV |
6914 | /* 164 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 186 |
6915 | /* 169 */ MCD::OPC_CheckPredicate, 92, 91, 4, 0, // Skip to: 1289 |
6916 | /* 174 */ MCD::OPC_CheckField, 6, 10, 0, 84, 4, 0, // Skip to: 1289 |
6917 | /* 181 */ MCD::OPC_Decode, 186, 11, 250, 2, // Opcode: DMULT |
6918 | /* 186 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 208 |
6919 | /* 191 */ MCD::OPC_CheckPredicate, 92, 69, 4, 0, // Skip to: 1289 |
6920 | /* 196 */ MCD::OPC_CheckField, 6, 10, 0, 62, 4, 0, // Skip to: 1289 |
6921 | /* 203 */ MCD::OPC_Decode, 187, 11, 250, 2, // Opcode: DMULTu |
6922 | /* 208 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 230 |
6923 | /* 213 */ MCD::OPC_CheckPredicate, 92, 47, 4, 0, // Skip to: 1289 |
6924 | /* 218 */ MCD::OPC_CheckField, 6, 10, 0, 40, 4, 0, // Skip to: 1289 |
6925 | /* 225 */ MCD::OPC_Decode, 245, 11, 250, 2, // Opcode: DSDIV |
6926 | /* 230 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 252 |
6927 | /* 235 */ MCD::OPC_CheckPredicate, 92, 25, 4, 0, // Skip to: 1289 |
6928 | /* 240 */ MCD::OPC_CheckField, 6, 10, 0, 18, 4, 0, // Skip to: 1289 |
6929 | /* 247 */ MCD::OPC_Decode, 131, 12, 250, 2, // Opcode: DUDIV |
6930 | /* 252 */ MCD::OPC_FilterValue, 44, 16, 0, 0, // Skip to: 273 |
6931 | /* 257 */ MCD::OPC_CheckPredicate, 91, 3, 4, 0, // Skip to: 1289 |
6932 | /* 262 */ MCD::OPC_CheckField, 6, 5, 0, 252, 3, 0, // Skip to: 1289 |
6933 | /* 269 */ MCD::OPC_Decode, 128, 11, 23, // Opcode: DADD |
6934 | /* 273 */ MCD::OPC_FilterValue, 45, 16, 0, 0, // Skip to: 294 |
6935 | /* 278 */ MCD::OPC_CheckPredicate, 91, 238, 3, 0, // Skip to: 1289 |
6936 | /* 283 */ MCD::OPC_CheckField, 6, 5, 0, 231, 3, 0, // Skip to: 1289 |
6937 | /* 290 */ MCD::OPC_Decode, 131, 11, 23, // Opcode: DADDu |
6938 | /* 294 */ MCD::OPC_FilterValue, 46, 16, 0, 0, // Skip to: 315 |
6939 | /* 299 */ MCD::OPC_CheckPredicate, 91, 217, 3, 0, // Skip to: 1289 |
6940 | /* 304 */ MCD::OPC_CheckField, 6, 5, 0, 210, 3, 0, // Skip to: 1289 |
6941 | /* 311 */ MCD::OPC_Decode, 129, 12, 23, // Opcode: DSUB |
6942 | /* 315 */ MCD::OPC_FilterValue, 47, 16, 0, 0, // Skip to: 336 |
6943 | /* 320 */ MCD::OPC_CheckPredicate, 91, 196, 3, 0, // Skip to: 1289 |
6944 | /* 325 */ MCD::OPC_CheckField, 6, 5, 0, 189, 3, 0, // Skip to: 1289 |
6945 | /* 332 */ MCD::OPC_Decode, 130, 12, 23, // Opcode: DSUBu |
6946 | /* 336 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 358 |
6947 | /* 341 */ MCD::OPC_CheckPredicate, 91, 175, 3, 0, // Skip to: 1289 |
6948 | /* 346 */ MCD::OPC_CheckField, 21, 5, 0, 168, 3, 0, // Skip to: 1289 |
6949 | /* 353 */ MCD::OPC_Decode, 247, 11, 251, 2, // Opcode: DSLL |
6950 | /* 358 */ MCD::OPC_FilterValue, 58, 33, 0, 0, // Skip to: 396 |
6951 | /* 363 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6952 | /* 366 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 381 |
6953 | /* 371 */ MCD::OPC_CheckPredicate, 91, 145, 3, 0, // Skip to: 1289 |
6954 | /* 376 */ MCD::OPC_Decode, 254, 11, 251, 2, // Opcode: DSRL |
6955 | /* 381 */ MCD::OPC_FilterValue, 1, 135, 3, 0, // Skip to: 1289 |
6956 | /* 386 */ MCD::OPC_CheckPredicate, 90, 130, 3, 0, // Skip to: 1289 |
6957 | /* 391 */ MCD::OPC_Decode, 241, 11, 251, 2, // Opcode: DROTR |
6958 | /* 396 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 418 |
6959 | /* 401 */ MCD::OPC_CheckPredicate, 91, 115, 3, 0, // Skip to: 1289 |
6960 | /* 406 */ MCD::OPC_CheckField, 21, 5, 0, 108, 3, 0, // Skip to: 1289 |
6961 | /* 413 */ MCD::OPC_Decode, 251, 11, 251, 2, // Opcode: DSRA |
6962 | /* 418 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 440 |
6963 | /* 423 */ MCD::OPC_CheckPredicate, 91, 93, 3, 0, // Skip to: 1289 |
6964 | /* 428 */ MCD::OPC_CheckField, 21, 5, 0, 86, 3, 0, // Skip to: 1289 |
6965 | /* 435 */ MCD::OPC_Decode, 248, 11, 251, 2, // Opcode: DSLL32 |
6966 | /* 440 */ MCD::OPC_FilterValue, 62, 33, 0, 0, // Skip to: 478 |
6967 | /* 445 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6968 | /* 448 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 463 |
6969 | /* 453 */ MCD::OPC_CheckPredicate, 91, 63, 3, 0, // Skip to: 1289 |
6970 | /* 458 */ MCD::OPC_Decode, 255, 11, 251, 2, // Opcode: DSRL32 |
6971 | /* 463 */ MCD::OPC_FilterValue, 1, 53, 3, 0, // Skip to: 1289 |
6972 | /* 468 */ MCD::OPC_CheckPredicate, 90, 48, 3, 0, // Skip to: 1289 |
6973 | /* 473 */ MCD::OPC_Decode, 242, 11, 251, 2, // Opcode: DROTR32 |
6974 | /* 478 */ MCD::OPC_FilterValue, 63, 38, 3, 0, // Skip to: 1289 |
6975 | /* 483 */ MCD::OPC_CheckPredicate, 91, 33, 3, 0, // Skip to: 1289 |
6976 | /* 488 */ MCD::OPC_CheckField, 21, 5, 0, 26, 3, 0, // Skip to: 1289 |
6977 | /* 495 */ MCD::OPC_Decode, 252, 11, 251, 2, // Opcode: DSRA32 |
6978 | /* 500 */ MCD::OPC_FilterValue, 16, 85, 0, 0, // Skip to: 590 |
6979 | /* 505 */ MCD::OPC_ExtractField, 3, 8, // Inst{10-3} ... |
6980 | /* 508 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 546 |
6981 | /* 513 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6982 | /* 516 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 531 |
6983 | /* 521 */ MCD::OPC_CheckPredicate, 93, 251, 2, 0, // Skip to: 1289 |
6984 | /* 526 */ MCD::OPC_Decode, 170, 11, 252, 2, // Opcode: DMFC0 |
6985 | /* 531 */ MCD::OPC_FilterValue, 5, 241, 2, 0, // Skip to: 1289 |
6986 | /* 536 */ MCD::OPC_CheckPredicate, 93, 236, 2, 0, // Skip to: 1289 |
6987 | /* 541 */ MCD::OPC_Decode, 178, 11, 253, 2, // Opcode: DMTC0 |
6988 | /* 546 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 568 |
6989 | /* 551 */ MCD::OPC_CheckPredicate, 94, 221, 2, 0, // Skip to: 1289 |
6990 | /* 556 */ MCD::OPC_CheckField, 21, 5, 3, 214, 2, 0, // Skip to: 1289 |
6991 | /* 563 */ MCD::OPC_Decode, 174, 11, 252, 2, // Opcode: DMFGC0 |
6992 | /* 568 */ MCD::OPC_FilterValue, 96, 204, 2, 0, // Skip to: 1289 |
6993 | /* 573 */ MCD::OPC_CheckPredicate, 94, 199, 2, 0, // Skip to: 1289 |
6994 | /* 578 */ MCD::OPC_CheckField, 21, 5, 3, 192, 2, 0, // Skip to: 1289 |
6995 | /* 585 */ MCD::OPC_Decode, 182, 11, 253, 2, // Opcode: DMTGC0 |
6996 | /* 590 */ MCD::OPC_FilterValue, 18, 47, 0, 0, // Skip to: 642 |
6997 | /* 595 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
6998 | /* 598 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 620 |
6999 | /* 603 */ MCD::OPC_CheckPredicate, 93, 169, 2, 0, // Skip to: 1289 |
7000 | /* 608 */ MCD::OPC_CheckField, 3, 8, 0, 162, 2, 0, // Skip to: 1289 |
7001 | /* 615 */ MCD::OPC_Decode, 172, 11, 254, 2, // Opcode: DMFC2 |
7002 | /* 620 */ MCD::OPC_FilterValue, 5, 152, 2, 0, // Skip to: 1289 |
7003 | /* 625 */ MCD::OPC_CheckPredicate, 93, 147, 2, 0, // Skip to: 1289 |
7004 | /* 630 */ MCD::OPC_CheckField, 3, 8, 0, 140, 2, 0, // Skip to: 1289 |
7005 | /* 637 */ MCD::OPC_Decode, 180, 11, 255, 2, // Opcode: DMTC2 |
7006 | /* 642 */ MCD::OPC_FilterValue, 21, 3, 1, 0, // Skip to: 906 |
7007 | /* 647 */ MCD::OPC_ExtractField, 0, 13, // Inst{12-0} ... |
7008 | /* 650 */ MCD::OPC_FilterValue, 188, 8, 10, 0, 0, // Skip to: 666 |
7009 | /* 656 */ MCD::OPC_CheckPredicate, 15, 116, 2, 0, // Skip to: 1289 |
7010 | /* 661 */ MCD::OPC_Decode, 166, 10, 128, 3, // Opcode: C_F_D64_MM |
7011 | /* 666 */ MCD::OPC_FilterValue, 252, 8, 10, 0, 0, // Skip to: 682 |
7012 | /* 672 */ MCD::OPC_CheckPredicate, 15, 100, 2, 0, // Skip to: 1289 |
7013 | /* 677 */ MCD::OPC_Decode, 250, 10, 128, 3, // Opcode: C_UN_D64_MM |
7014 | /* 682 */ MCD::OPC_FilterValue, 188, 9, 10, 0, 0, // Skip to: 698 |
7015 | /* 688 */ MCD::OPC_CheckPredicate, 15, 84, 2, 0, // Skip to: 1289 |
7016 | /* 693 */ MCD::OPC_Decode, 160, 10, 128, 3, // Opcode: C_EQ_D64_MM |
7017 | /* 698 */ MCD::OPC_FilterValue, 252, 9, 10, 0, 0, // Skip to: 714 |
7018 | /* 704 */ MCD::OPC_CheckPredicate, 15, 68, 2, 0, // Skip to: 1289 |
7019 | /* 709 */ MCD::OPC_Decode, 232, 10, 128, 3, // Opcode: C_UEQ_D64_MM |
7020 | /* 714 */ MCD::OPC_FilterValue, 188, 10, 10, 0, 0, // Skip to: 730 |
7021 | /* 720 */ MCD::OPC_CheckPredicate, 15, 52, 2, 0, // Skip to: 1289 |
7022 | /* 725 */ MCD::OPC_Decode, 214, 10, 128, 3, // Opcode: C_OLT_D64_MM |
7023 | /* 730 */ MCD::OPC_FilterValue, 252, 10, 10, 0, 0, // Skip to: 746 |
7024 | /* 736 */ MCD::OPC_CheckPredicate, 15, 36, 2, 0, // Skip to: 1289 |
7025 | /* 741 */ MCD::OPC_Decode, 244, 10, 128, 3, // Opcode: C_ULT_D64_MM |
7026 | /* 746 */ MCD::OPC_FilterValue, 188, 11, 10, 0, 0, // Skip to: 762 |
7027 | /* 752 */ MCD::OPC_CheckPredicate, 15, 20, 2, 0, // Skip to: 1289 |
7028 | /* 757 */ MCD::OPC_Decode, 208, 10, 128, 3, // Opcode: C_OLE_D64_MM |
7029 | /* 762 */ MCD::OPC_FilterValue, 252, 11, 10, 0, 0, // Skip to: 778 |
7030 | /* 768 */ MCD::OPC_CheckPredicate, 15, 4, 2, 0, // Skip to: 1289 |
7031 | /* 773 */ MCD::OPC_Decode, 238, 10, 128, 3, // Opcode: C_ULE_D64_MM |
7032 | /* 778 */ MCD::OPC_FilterValue, 188, 12, 10, 0, 0, // Skip to: 794 |
7033 | /* 784 */ MCD::OPC_CheckPredicate, 15, 244, 1, 0, // Skip to: 1289 |
7034 | /* 789 */ MCD::OPC_Decode, 226, 10, 128, 3, // Opcode: C_SF_D64_MM |
7035 | /* 794 */ MCD::OPC_FilterValue, 252, 12, 10, 0, 0, // Skip to: 810 |
7036 | /* 800 */ MCD::OPC_CheckPredicate, 15, 228, 1, 0, // Skip to: 1289 |
7037 | /* 805 */ MCD::OPC_Decode, 190, 10, 128, 3, // Opcode: C_NGLE_D64_MM |
7038 | /* 810 */ MCD::OPC_FilterValue, 188, 13, 10, 0, 0, // Skip to: 826 |
7039 | /* 816 */ MCD::OPC_CheckPredicate, 15, 212, 1, 0, // Skip to: 1289 |
7040 | /* 821 */ MCD::OPC_Decode, 220, 10, 128, 3, // Opcode: C_SEQ_D64_MM |
7041 | /* 826 */ MCD::OPC_FilterValue, 252, 13, 10, 0, 0, // Skip to: 842 |
7042 | /* 832 */ MCD::OPC_CheckPredicate, 15, 196, 1, 0, // Skip to: 1289 |
7043 | /* 837 */ MCD::OPC_Decode, 196, 10, 128, 3, // Opcode: C_NGL_D64_MM |
7044 | /* 842 */ MCD::OPC_FilterValue, 188, 14, 10, 0, 0, // Skip to: 858 |
7045 | /* 848 */ MCD::OPC_CheckPredicate, 15, 180, 1, 0, // Skip to: 1289 |
7046 | /* 853 */ MCD::OPC_Decode, 178, 10, 128, 3, // Opcode: C_LT_D64_MM |
7047 | /* 858 */ MCD::OPC_FilterValue, 252, 14, 10, 0, 0, // Skip to: 874 |
7048 | /* 864 */ MCD::OPC_CheckPredicate, 15, 164, 1, 0, // Skip to: 1289 |
7049 | /* 869 */ MCD::OPC_Decode, 184, 10, 128, 3, // Opcode: C_NGE_D64_MM |
7050 | /* 874 */ MCD::OPC_FilterValue, 188, 15, 10, 0, 0, // Skip to: 890 |
7051 | /* 880 */ MCD::OPC_CheckPredicate, 15, 148, 1, 0, // Skip to: 1289 |
7052 | /* 885 */ MCD::OPC_Decode, 172, 10, 128, 3, // Opcode: C_LE_D64_MM |
7053 | /* 890 */ MCD::OPC_FilterValue, 252, 15, 137, 1, 0, // Skip to: 1289 |
7054 | /* 896 */ MCD::OPC_CheckPredicate, 15, 132, 1, 0, // Skip to: 1289 |
7055 | /* 901 */ MCD::OPC_Decode, 202, 10, 128, 3, // Opcode: C_NGT_D64_MM |
7056 | /* 906 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 921 |
7057 | /* 911 */ MCD::OPC_CheckPredicate, 95, 117, 1, 0, // Skip to: 1289 |
7058 | /* 916 */ MCD::OPC_Decode, 129, 11, 129, 3, // Opcode: DADDi |
7059 | /* 921 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 936 |
7060 | /* 926 */ MCD::OPC_CheckPredicate, 91, 102, 1, 0, // Skip to: 1289 |
7061 | /* 931 */ MCD::OPC_Decode, 130, 11, 129, 3, // Opcode: DADDiu |
7062 | /* 936 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 951 |
7063 | /* 941 */ MCD::OPC_CheckPredicate, 95, 87, 1, 0, // Skip to: 1289 |
7064 | /* 946 */ MCD::OPC_Decode, 224, 14, 141, 1, // Opcode: LDL |
7065 | /* 951 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 966 |
7066 | /* 956 */ MCD::OPC_CheckPredicate, 95, 72, 1, 0, // Skip to: 1289 |
7067 | /* 961 */ MCD::OPC_Decode, 226, 14, 141, 1, // Opcode: LDR |
7068 | /* 966 */ MCD::OPC_FilterValue, 28, 33, 0, 0, // Skip to: 1004 |
7069 | /* 971 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... |
7070 | /* 974 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 989 |
7071 | /* 979 */ MCD::OPC_CheckPredicate, 96, 49, 1, 0, // Skip to: 1289 |
7072 | /* 984 */ MCD::OPC_Decode, 139, 11, 130, 3, // Opcode: DCLZ |
7073 | /* 989 */ MCD::OPC_FilterValue, 37, 39, 1, 0, // Skip to: 1289 |
7074 | /* 994 */ MCD::OPC_CheckPredicate, 96, 34, 1, 0, // Skip to: 1289 |
7075 | /* 999 */ MCD::OPC_Decode, 137, 11, 130, 3, // Opcode: DCLO |
7076 | /* 1004 */ MCD::OPC_FilterValue, 31, 145, 0, 0, // Skip to: 1154 |
7077 | /* 1009 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
7078 | /* 1012 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1027 |
7079 | /* 1017 */ MCD::OPC_CheckPredicate, 90, 11, 1, 0, // Skip to: 1289 |
7080 | /* 1022 */ MCD::OPC_Decode, 148, 11, 131, 3, // Opcode: DEXTM |
7081 | /* 1027 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1042 |
7082 | /* 1032 */ MCD::OPC_CheckPredicate, 90, 252, 0, 0, // Skip to: 1289 |
7083 | /* 1037 */ MCD::OPC_Decode, 149, 11, 131, 3, // Opcode: DEXTU |
7084 | /* 1042 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1057 |
7085 | /* 1047 */ MCD::OPC_CheckPredicate, 90, 237, 0, 0, // Skip to: 1289 |
7086 | /* 1052 */ MCD::OPC_Decode, 146, 11, 131, 3, // Opcode: DEXT |
7087 | /* 1057 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1072 |
7088 | /* 1062 */ MCD::OPC_CheckPredicate, 90, 222, 0, 0, // Skip to: 1289 |
7089 | /* 1067 */ MCD::OPC_Decode, 152, 11, 132, 3, // Opcode: DINSM |
7090 | /* 1072 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1087 |
7091 | /* 1077 */ MCD::OPC_CheckPredicate, 90, 207, 0, 0, // Skip to: 1289 |
7092 | /* 1082 */ MCD::OPC_Decode, 153, 11, 132, 3, // Opcode: DINSU |
7093 | /* 1087 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1102 |
7094 | /* 1092 */ MCD::OPC_CheckPredicate, 90, 192, 0, 0, // Skip to: 1289 |
7095 | /* 1097 */ MCD::OPC_Decode, 151, 11, 132, 3, // Opcode: DINS |
7096 | /* 1102 */ MCD::OPC_FilterValue, 36, 182, 0, 0, // Skip to: 1289 |
7097 | /* 1107 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... |
7098 | /* 1110 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1132 |
7099 | /* 1115 */ MCD::OPC_CheckPredicate, 90, 169, 0, 0, // Skip to: 1289 |
7100 | /* 1120 */ MCD::OPC_CheckField, 21, 5, 0, 162, 0, 0, // Skip to: 1289 |
7101 | /* 1127 */ MCD::OPC_Decode, 244, 11, 241, 2, // Opcode: DSBH |
7102 | /* 1132 */ MCD::OPC_FilterValue, 5, 152, 0, 0, // Skip to: 1289 |
7103 | /* 1137 */ MCD::OPC_CheckPredicate, 90, 147, 0, 0, // Skip to: 1289 |
7104 | /* 1142 */ MCD::OPC_CheckField, 21, 5, 0, 140, 0, 0, // Skip to: 1289 |
7105 | /* 1149 */ MCD::OPC_Decode, 246, 11, 241, 2, // Opcode: DSHD |
7106 | /* 1154 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 1169 |
7107 | /* 1159 */ MCD::OPC_CheckPredicate, 91, 125, 0, 0, // Skip to: 1289 |
7108 | /* 1164 */ MCD::OPC_Decode, 183, 15, 141, 1, // Opcode: LWu |
7109 | /* 1169 */ MCD::OPC_FilterValue, 44, 10, 0, 0, // Skip to: 1184 |
7110 | /* 1174 */ MCD::OPC_CheckPredicate, 95, 110, 0, 0, // Skip to: 1289 |
7111 | /* 1179 */ MCD::OPC_Decode, 187, 19, 141, 1, // Opcode: SDL |
7112 | /* 1184 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 1199 |
7113 | /* 1189 */ MCD::OPC_CheckPredicate, 95, 95, 0, 0, // Skip to: 1289 |
7114 | /* 1194 */ MCD::OPC_Decode, 188, 19, 141, 1, // Opcode: SDR |
7115 | /* 1199 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 1214 |
7116 | /* 1204 */ MCD::OPC_CheckPredicate, 20, 80, 0, 0, // Skip to: 1289 |
7117 | /* 1209 */ MCD::OPC_Decode, 180, 19, 139, 1, // Opcode: SDC1_MM_D64 |
7118 | /* 1214 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 1229 |
7119 | /* 1219 */ MCD::OPC_CheckPredicate, 20, 65, 0, 0, // Skip to: 1289 |
7120 | /* 1224 */ MCD::OPC_Decode, 215, 14, 139, 1, // Opcode: LDC1_MM_D64 |
7121 | /* 1229 */ MCD::OPC_FilterValue, 52, 10, 0, 0, // Skip to: 1244 |
7122 | /* 1234 */ MCD::OPC_CheckPredicate, 92, 50, 0, 0, // Skip to: 1289 |
7123 | /* 1239 */ MCD::OPC_Decode, 254, 14, 141, 1, // Opcode: LLD |
7124 | /* 1244 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 1259 |
7125 | /* 1249 */ MCD::OPC_CheckPredicate, 91, 35, 0, 0, // Skip to: 1289 |
7126 | /* 1254 */ MCD::OPC_Decode, 210, 14, 141, 1, // Opcode: LD |
7127 | /* 1259 */ MCD::OPC_FilterValue, 60, 10, 0, 0, // Skip to: 1274 |
7128 | /* 1264 */ MCD::OPC_CheckPredicate, 95, 20, 0, 0, // Skip to: 1289 |
7129 | /* 1269 */ MCD::OPC_Decode, 162, 19, 141, 1, // Opcode: SCD |
7130 | /* 1274 */ MCD::OPC_FilterValue, 63, 10, 0, 0, // Skip to: 1289 |
7131 | /* 1279 */ MCD::OPC_CheckPredicate, 91, 5, 0, 0, // Skip to: 1289 |
7132 | /* 1284 */ MCD::OPC_Decode, 169, 19, 141, 1, // Opcode: SD |
7133 | /* 1289 */ MCD::OPC_Fail, |
7134 | 0 |
7135 | }; |
7136 | |
7137 | static const uint8_t DecoderTableMipsDSP32[] = { |
7138 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
7139 | /* 3 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 18 |
7140 | /* 8 */ MCD::OPC_CheckPredicate, 97, 20, 0, 0, // Skip to: 33 |
7141 | /* 13 */ MCD::OPC_Decode, 152, 15, 141, 1, // Opcode: LWDSP |
7142 | /* 18 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 33 |
7143 | /* 23 */ MCD::OPC_CheckPredicate, 97, 5, 0, 0, // Skip to: 33 |
7144 | /* 28 */ MCD::OPC_Decode, 189, 21, 141, 1, // Opcode: SWDSP |
7145 | /* 33 */ MCD::OPC_Fail, |
7146 | 0 |
7147 | }; |
7148 | |
7149 | static const uint8_t DecoderTableMipsFP6432[] = { |
7150 | /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... |
7151 | /* 3 */ MCD::OPC_FilterValue, 17, 249, 5, 0, // Skip to: 1537 |
7152 | /* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
7153 | /* 11 */ MCD::OPC_FilterValue, 0, 121, 0, 0, // Skip to: 137 |
7154 | /* 16 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
7155 | /* 19 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 41 |
7156 | /* 24 */ MCD::OPC_CheckPredicate, 98, 158, 6, 0, // Skip to: 1723 |
7157 | /* 29 */ MCD::OPC_CheckField, 6, 5, 0, 151, 6, 0, // Skip to: 1723 |
7158 | /* 36 */ MCD::OPC_Decode, 131, 16, 133, 3, // Opcode: MFC1_D64 |
7159 | /* 41 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 63 |
7160 | /* 46 */ MCD::OPC_CheckPredicate, 99, 136, 6, 0, // Skip to: 1723 |
7161 | /* 51 */ MCD::OPC_CheckField, 6, 5, 0, 129, 6, 0, // Skip to: 1723 |
7162 | /* 58 */ MCD::OPC_Decode, 141, 16, 133, 3, // Opcode: MFHC1_D64 |
7163 | /* 63 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 85 |
7164 | /* 68 */ MCD::OPC_CheckPredicate, 98, 114, 6, 0, // Skip to: 1723 |
7165 | /* 73 */ MCD::OPC_CheckField, 6, 5, 0, 107, 6, 0, // Skip to: 1723 |
7166 | /* 80 */ MCD::OPC_Decode, 146, 17, 134, 3, // Opcode: MTC1_D64 |
7167 | /* 85 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 107 |
7168 | /* 90 */ MCD::OPC_CheckPredicate, 99, 92, 6, 0, // Skip to: 1723 |
7169 | /* 95 */ MCD::OPC_CheckField, 6, 5, 0, 85, 6, 0, // Skip to: 1723 |
7170 | /* 102 */ MCD::OPC_Decode, 157, 17, 135, 3, // Opcode: MTHC1_D64 |
7171 | /* 107 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 122 |
7172 | /* 112 */ MCD::OPC_CheckPredicate, 98, 70, 6, 0, // Skip to: 1723 |
7173 | /* 117 */ MCD::OPC_Decode, 190, 12, 230, 2, // Opcode: FADD_D64 |
7174 | /* 122 */ MCD::OPC_FilterValue, 22, 60, 6, 0, // Skip to: 1723 |
7175 | /* 127 */ MCD::OPC_CheckPredicate, 100, 55, 6, 0, // Skip to: 1723 |
7176 | /* 132 */ MCD::OPC_Decode, 192, 12, 230, 2, // Opcode: FADD_PS64 |
7177 | /* 137 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 175 |
7178 | /* 142 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
7179 | /* 145 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 160 |
7180 | /* 150 */ MCD::OPC_CheckPredicate, 98, 32, 6, 0, // Skip to: 1723 |
7181 | /* 155 */ MCD::OPC_Decode, 207, 13, 230, 2, // Opcode: FSUB_D64 |
7182 | /* 160 */ MCD::OPC_FilterValue, 22, 22, 6, 0, // Skip to: 1723 |
7183 | /* 165 */ MCD::OPC_CheckPredicate, 100, 17, 6, 0, // Skip to: 1723 |
7184 | /* 170 */ MCD::OPC_Decode, 209, 13, 230, 2, // Opcode: FSUB_PS64 |
7185 | /* 175 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 213 |
7186 | /* 180 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
7187 | /* 183 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 198 |
7188 | /* 188 */ MCD::OPC_CheckPredicate, 98, 250, 5, 0, // Skip to: 1723 |
7189 | /* 193 */ MCD::OPC_Decode, 163, 13, 230, 2, // Opcode: FMUL_D64 |
7190 | /* 198 */ MCD::OPC_FilterValue, 22, 240, 5, 0, // Skip to: 1723 |
7191 | /* 203 */ MCD::OPC_CheckPredicate, 100, 235, 5, 0, // Skip to: 1723 |
7192 | /* 208 */ MCD::OPC_Decode, 165, 13, 230, 2, // Opcode: FMUL_PS64 |
7193 | /* 213 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 235 |
7194 | /* 218 */ MCD::OPC_CheckPredicate, 98, 220, 5, 0, // Skip to: 1723 |
7195 | /* 223 */ MCD::OPC_CheckField, 21, 5, 17, 213, 5, 0, // Skip to: 1723 |
7196 | /* 230 */ MCD::OPC_Decode, 229, 12, 230, 2, // Opcode: FDIV_D64 |
7197 | /* 235 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 258 |
7198 | /* 240 */ MCD::OPC_CheckPredicate, 101, 198, 5, 0, // Skip to: 1723 |
7199 | /* 245 */ MCD::OPC_CheckField, 16, 10, 160, 4, 190, 5, 0, // Skip to: 1723 |
7200 | /* 253 */ MCD::OPC_Decode, 199, 13, 230, 1, // Opcode: FSQRT_D64 |
7201 | /* 258 */ MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 281 |
7202 | /* 263 */ MCD::OPC_CheckPredicate, 98, 175, 5, 0, // Skip to: 1723 |
7203 | /* 268 */ MCD::OPC_CheckField, 16, 10, 160, 4, 167, 5, 0, // Skip to: 1723 |
7204 | /* 276 */ MCD::OPC_Decode, 183, 12, 230, 1, // Opcode: FABS_D64 |
7205 | /* 281 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 304 |
7206 | /* 286 */ MCD::OPC_CheckPredicate, 98, 152, 5, 0, // Skip to: 1723 |
7207 | /* 291 */ MCD::OPC_CheckField, 16, 10, 160, 4, 144, 5, 0, // Skip to: 1723 |
7208 | /* 299 */ MCD::OPC_Decode, 152, 13, 230, 1, // Opcode: FMOV_D64 |
7209 | /* 304 */ MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 327 |
7210 | /* 309 */ MCD::OPC_CheckPredicate, 98, 129, 5, 0, // Skip to: 1723 |
7211 | /* 314 */ MCD::OPC_CheckField, 16, 10, 160, 4, 121, 5, 0, // Skip to: 1723 |
7212 | /* 322 */ MCD::OPC_Decode, 172, 13, 230, 1, // Opcode: FNEG_D64 |
7213 | /* 327 */ MCD::OPC_FilterValue, 8, 35, 0, 0, // Skip to: 367 |
7214 | /* 332 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7215 | /* 335 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 351 |
7216 | /* 341 */ MCD::OPC_CheckPredicate, 101, 97, 5, 0, // Skip to: 1723 |
7217 | /* 346 */ MCD::OPC_Decode, 252, 18, 223, 1, // Opcode: ROUND_L_S |
7218 | /* 351 */ MCD::OPC_FilterValue, 160, 4, 86, 5, 0, // Skip to: 1723 |
7219 | /* 357 */ MCD::OPC_CheckPredicate, 102, 81, 5, 0, // Skip to: 1723 |
7220 | /* 362 */ MCD::OPC_Decode, 250, 18, 230, 1, // Opcode: ROUND_L_D64 |
7221 | /* 367 */ MCD::OPC_FilterValue, 9, 35, 0, 0, // Skip to: 407 |
7222 | /* 372 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7223 | /* 375 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 391 |
7224 | /* 381 */ MCD::OPC_CheckPredicate, 101, 57, 5, 0, // Skip to: 1723 |
7225 | /* 386 */ MCD::OPC_Decode, 163, 22, 223, 1, // Opcode: TRUNC_L_S |
7226 | /* 391 */ MCD::OPC_FilterValue, 160, 4, 46, 5, 0, // Skip to: 1723 |
7227 | /* 397 */ MCD::OPC_CheckPredicate, 102, 41, 5, 0, // Skip to: 1723 |
7228 | /* 402 */ MCD::OPC_Decode, 161, 22, 230, 1, // Opcode: TRUNC_L_D64 |
7229 | /* 407 */ MCD::OPC_FilterValue, 10, 35, 0, 0, // Skip to: 447 |
7230 | /* 412 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7231 | /* 415 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 431 |
7232 | /* 421 */ MCD::OPC_CheckPredicate, 101, 17, 5, 0, // Skip to: 1723 |
7233 | /* 426 */ MCD::OPC_Decode, 200, 8, 223, 1, // Opcode: CEIL_L_S |
7234 | /* 431 */ MCD::OPC_FilterValue, 160, 4, 6, 5, 0, // Skip to: 1723 |
7235 | /* 437 */ MCD::OPC_CheckPredicate, 102, 1, 5, 0, // Skip to: 1723 |
7236 | /* 442 */ MCD::OPC_Decode, 198, 8, 230, 1, // Opcode: CEIL_L_D64 |
7237 | /* 447 */ MCD::OPC_FilterValue, 11, 35, 0, 0, // Skip to: 487 |
7238 | /* 452 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7239 | /* 455 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 471 |
7240 | /* 461 */ MCD::OPC_CheckPredicate, 101, 233, 4, 0, // Skip to: 1723 |
7241 | /* 466 */ MCD::OPC_Decode, 131, 13, 223, 1, // Opcode: FLOOR_L_S |
7242 | /* 471 */ MCD::OPC_FilterValue, 160, 4, 222, 4, 0, // Skip to: 1723 |
7243 | /* 477 */ MCD::OPC_CheckPredicate, 102, 217, 4, 0, // Skip to: 1723 |
7244 | /* 482 */ MCD::OPC_Decode, 129, 13, 230, 1, // Opcode: FLOOR_L_D64 |
7245 | /* 487 */ MCD::OPC_FilterValue, 12, 18, 0, 0, // Skip to: 510 |
7246 | /* 492 */ MCD::OPC_CheckPredicate, 101, 202, 4, 0, // Skip to: 1723 |
7247 | /* 497 */ MCD::OPC_CheckField, 16, 10, 160, 4, 194, 4, 0, // Skip to: 1723 |
7248 | /* 505 */ MCD::OPC_Decode, 255, 18, 136, 3, // Opcode: ROUND_W_D64 |
7249 | /* 510 */ MCD::OPC_FilterValue, 13, 18, 0, 0, // Skip to: 533 |
7250 | /* 515 */ MCD::OPC_CheckPredicate, 101, 179, 4, 0, // Skip to: 1723 |
7251 | /* 520 */ MCD::OPC_CheckField, 16, 10, 160, 4, 171, 4, 0, // Skip to: 1723 |
7252 | /* 528 */ MCD::OPC_Decode, 166, 22, 136, 3, // Opcode: TRUNC_W_D64 |
7253 | /* 533 */ MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 556 |
7254 | /* 538 */ MCD::OPC_CheckPredicate, 101, 156, 4, 0, // Skip to: 1723 |
7255 | /* 543 */ MCD::OPC_CheckField, 16, 10, 160, 4, 148, 4, 0, // Skip to: 1723 |
7256 | /* 551 */ MCD::OPC_Decode, 203, 8, 136, 3, // Opcode: CEIL_W_D64 |
7257 | /* 556 */ MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 579 |
7258 | /* 561 */ MCD::OPC_CheckPredicate, 101, 133, 4, 0, // Skip to: 1723 |
7259 | /* 566 */ MCD::OPC_CheckField, 16, 10, 160, 4, 125, 4, 0, // Skip to: 1723 |
7260 | /* 574 */ MCD::OPC_Decode, 134, 13, 136, 3, // Opcode: FLOOR_W_D64 |
7261 | /* 579 */ MCD::OPC_FilterValue, 17, 47, 0, 0, // Skip to: 631 |
7262 | /* 584 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... |
7263 | /* 587 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 609 |
7264 | /* 592 */ MCD::OPC_CheckPredicate, 103, 102, 4, 0, // Skip to: 1723 |
7265 | /* 597 */ MCD::OPC_CheckField, 21, 5, 17, 95, 4, 0, // Skip to: 1723 |
7266 | /* 604 */ MCD::OPC_Decode, 208, 16, 137, 3, // Opcode: MOVF_D64 |
7267 | /* 609 */ MCD::OPC_FilterValue, 1, 85, 4, 0, // Skip to: 1723 |
7268 | /* 614 */ MCD::OPC_CheckPredicate, 103, 80, 4, 0, // Skip to: 1723 |
7269 | /* 619 */ MCD::OPC_CheckField, 21, 5, 17, 73, 4, 0, // Skip to: 1723 |
7270 | /* 626 */ MCD::OPC_Decode, 228, 16, 137, 3, // Opcode: MOVT_D64 |
7271 | /* 631 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 653 |
7272 | /* 636 */ MCD::OPC_CheckPredicate, 103, 58, 4, 0, // Skip to: 1723 |
7273 | /* 641 */ MCD::OPC_CheckField, 21, 5, 17, 51, 4, 0, // Skip to: 1723 |
7274 | /* 648 */ MCD::OPC_Decode, 240, 16, 138, 3, // Opcode: MOVZ_I_D64 |
7275 | /* 653 */ MCD::OPC_FilterValue, 19, 17, 0, 0, // Skip to: 675 |
7276 | /* 658 */ MCD::OPC_CheckPredicate, 103, 36, 4, 0, // Skip to: 1723 |
7277 | /* 663 */ MCD::OPC_CheckField, 21, 5, 17, 29, 4, 0, // Skip to: 1723 |
7278 | /* 670 */ MCD::OPC_Decode, 220, 16, 138, 3, // Opcode: MOVN_I_D64 |
7279 | /* 675 */ MCD::OPC_FilterValue, 21, 18, 0, 0, // Skip to: 698 |
7280 | /* 680 */ MCD::OPC_CheckPredicate, 104, 14, 4, 0, // Skip to: 1723 |
7281 | /* 685 */ MCD::OPC_CheckField, 16, 10, 160, 4, 6, 4, 0, // Skip to: 1723 |
7282 | /* 693 */ MCD::OPC_Decode, 230, 18, 230, 1, // Opcode: RECIP_D64 |
7283 | /* 698 */ MCD::OPC_FilterValue, 22, 18, 0, 0, // Skip to: 721 |
7284 | /* 703 */ MCD::OPC_CheckPredicate, 104, 247, 3, 0, // Skip to: 1723 |
7285 | /* 708 */ MCD::OPC_CheckField, 16, 10, 160, 4, 239, 3, 0, // Skip to: 1723 |
7286 | /* 716 */ MCD::OPC_Decode, 135, 19, 230, 1, // Opcode: RSQRT_D64 |
7287 | /* 721 */ MCD::OPC_FilterValue, 24, 17, 0, 0, // Skip to: 743 |
7288 | /* 726 */ MCD::OPC_CheckPredicate, 105, 224, 3, 0, // Skip to: 1723 |
7289 | /* 731 */ MCD::OPC_CheckField, 21, 5, 22, 217, 3, 0, // Skip to: 1723 |
7290 | /* 738 */ MCD::OPC_Decode, 142, 6, 230, 2, // Opcode: ADDR_PS64 |
7291 | /* 743 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 765 |
7292 | /* 748 */ MCD::OPC_CheckPredicate, 105, 202, 3, 0, // Skip to: 1723 |
7293 | /* 753 */ MCD::OPC_CheckField, 21, 5, 22, 195, 3, 0, // Skip to: 1723 |
7294 | /* 760 */ MCD::OPC_Decode, 202, 17, 230, 2, // Opcode: MULR_PS64 |
7295 | /* 765 */ MCD::OPC_FilterValue, 32, 51, 0, 0, // Skip to: 821 |
7296 | /* 770 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7297 | /* 773 */ MCD::OPC_FilterValue, 160, 4, 10, 0, 0, // Skip to: 789 |
7298 | /* 779 */ MCD::OPC_CheckPredicate, 98, 171, 3, 0, // Skip to: 1723 |
7299 | /* 784 */ MCD::OPC_Decode, 141, 10, 136, 3, // Opcode: CVT_S_D64 |
7300 | /* 789 */ MCD::OPC_FilterValue, 160, 5, 10, 0, 0, // Skip to: 805 |
7301 | /* 795 */ MCD::OPC_CheckPredicate, 106, 155, 3, 0, // Skip to: 1723 |
7302 | /* 800 */ MCD::OPC_Decode, 143, 10, 136, 3, // Opcode: CVT_S_L |
7303 | /* 805 */ MCD::OPC_FilterValue, 192, 5, 144, 3, 0, // Skip to: 1723 |
7304 | /* 811 */ MCD::OPC_CheckPredicate, 100, 139, 3, 0, // Skip to: 1723 |
7305 | /* 816 */ MCD::OPC_Decode, 146, 10, 136, 3, // Opcode: CVT_S_PU64 |
7306 | /* 821 */ MCD::OPC_FilterValue, 33, 51, 0, 0, // Skip to: 877 |
7307 | /* 826 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7308 | /* 829 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 845 |
7309 | /* 835 */ MCD::OPC_CheckPredicate, 98, 115, 3, 0, // Skip to: 1723 |
7310 | /* 840 */ MCD::OPC_Decode, 253, 9, 223, 1, // Opcode: CVT_D64_S |
7311 | /* 845 */ MCD::OPC_FilterValue, 128, 5, 10, 0, 0, // Skip to: 861 |
7312 | /* 851 */ MCD::OPC_CheckPredicate, 98, 99, 3, 0, // Skip to: 1723 |
7313 | /* 856 */ MCD::OPC_Decode, 255, 9, 223, 1, // Opcode: CVT_D64_W |
7314 | /* 861 */ MCD::OPC_FilterValue, 160, 5, 88, 3, 0, // Skip to: 1723 |
7315 | /* 867 */ MCD::OPC_CheckPredicate, 106, 83, 3, 0, // Skip to: 1723 |
7316 | /* 872 */ MCD::OPC_Decode, 252, 9, 230, 1, // Opcode: CVT_D64_L |
7317 | /* 877 */ MCD::OPC_FilterValue, 36, 35, 0, 0, // Skip to: 917 |
7318 | /* 882 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... |
7319 | /* 885 */ MCD::OPC_FilterValue, 160, 4, 10, 0, 0, // Skip to: 901 |
7320 | /* 891 */ MCD::OPC_CheckPredicate, 98, 59, 3, 0, // Skip to: 1723 |
7321 | /* 896 */ MCD::OPC_Decode, 152, 10, 136, 3, // Opcode: CVT_W_D64 |
7322 | /* 901 */ MCD::OPC_FilterValue, 192, 5, 48, 3, 0, // Skip to: 1723 |
7323 | /* 907 */ MCD::OPC_CheckPredicate, 105, 43, 3, 0, // Skip to: 1723 |
7324 | /* 912 */ MCD::OPC_Decode, 138, 10, 230, 1, // Opcode: CVT_PW_PS64 |
7325 | /* 917 */ MCD::OPC_FilterValue, 38, 40, 0, 0, // Skip to: 962 |
7326 | /* 922 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... |
7327 | /* 925 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 940 |
7328 | /* 930 */ MCD::OPC_CheckPredicate, 100, 20, 3, 0, // Skip to: 1723 |
7329 | /* 935 */ MCD::OPC_Decode, 137, 10, 139, 3, // Opcode: CVT_PS_S64 |
7330 | /* 940 */ MCD::OPC_FilterValue, 20, 10, 3, 0, // Skip to: 1723 |
7331 | /* 945 */ MCD::OPC_CheckPredicate, 105, 5, 3, 0, // Skip to: 1723 |
7332 | /* 950 */ MCD::OPC_CheckField, 16, 5, 0, 254, 2, 0, // Skip to: 1723 |
7333 | /* 957 */ MCD::OPC_Decode, 136, 10, 230, 1, // Opcode: CVT_PS_PW64 |
7334 | /* 962 */ MCD::OPC_FilterValue, 40, 18, 0, 0, // Skip to: 985 |
7335 | /* 967 */ MCD::OPC_CheckPredicate, 100, 239, 2, 0, // Skip to: 1723 |
7336 | /* 972 */ MCD::OPC_CheckField, 16, 10, 192, 5, 231, 2, 0, // Skip to: 1723 |
7337 | /* 980 */ MCD::OPC_Decode, 145, 10, 136, 3, // Opcode: CVT_S_PL64 |
7338 | /* 985 */ MCD::OPC_FilterValue, 44, 17, 0, 0, // Skip to: 1007 |
7339 | /* 990 */ MCD::OPC_CheckPredicate, 100, 216, 2, 0, // Skip to: 1723 |
7340 | /* 995 */ MCD::OPC_CheckField, 21, 5, 22, 209, 2, 0, // Skip to: 1723 |
7341 | /* 1002 */ MCD::OPC_Decode, 171, 18, 230, 2, // Opcode: PLL_PS64 |
7342 | /* 1007 */ MCD::OPC_FilterValue, 45, 17, 0, 0, // Skip to: 1029 |
7343 | /* 1012 */ MCD::OPC_CheckPredicate, 100, 194, 2, 0, // Skip to: 1723 |
7344 | /* 1017 */ MCD::OPC_CheckField, 21, 5, 22, 187, 2, 0, // Skip to: 1723 |
7345 | /* 1024 */ MCD::OPC_Decode, 172, 18, 230, 2, // Opcode: PLU_PS64 |
7346 | /* 1029 */ MCD::OPC_FilterValue, 46, 17, 0, 0, // Skip to: 1051 |
7347 | /* 1034 */ MCD::OPC_CheckPredicate, 100, 172, 2, 0, // Skip to: 1723 |
7348 | /* 1039 */ MCD::OPC_CheckField, 21, 5, 22, 165, 2, 0, // Skip to: 1723 |
7349 | /* 1046 */ MCD::OPC_Decode, 217, 18, 230, 2, // Opcode: PUL_PS64 |
7350 | /* 1051 */ MCD::OPC_FilterValue, 47, 17, 0, 0, // Skip to: 1073 |
7351 | /* 1056 */ MCD::OPC_CheckPredicate, 100, 150, 2, 0, // Skip to: 1723 |
7352 | /* 1061 */ MCD::OPC_CheckField, 21, 5, 22, 143, 2, 0, // Skip to: 1723 |
7353 | /* 1068 */ MCD::OPC_Decode, 218, 18, 230, 2, // Opcode: PUU_PS64 |
7354 | /* 1073 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 1102 |
7355 | /* 1078 */ MCD::OPC_CheckPredicate, 107, 128, 2, 0, // Skip to: 1723 |
7356 | /* 1083 */ MCD::OPC_CheckField, 21, 5, 17, 121, 2, 0, // Skip to: 1723 |
7357 | /* 1090 */ MCD::OPC_CheckField, 6, 2, 0, 114, 2, 0, // Skip to: 1723 |
7358 | /* 1097 */ MCD::OPC_Decode, 165, 10, 140, 3, // Opcode: C_F_D64 |
7359 | /* 1102 */ MCD::OPC_FilterValue, 49, 24, 0, 0, // Skip to: 1131 |
7360 | /* 1107 */ MCD::OPC_CheckPredicate, 107, 99, 2, 0, // Skip to: 1723 |
7361 | /* 1112 */ MCD::OPC_CheckField, 21, 5, 17, 92, 2, 0, // Skip to: 1723 |
7362 | /* 1119 */ MCD::OPC_CheckField, 6, 2, 0, 85, 2, 0, // Skip to: 1723 |
7363 | /* 1126 */ MCD::OPC_Decode, 249, 10, 140, 3, // Opcode: C_UN_D64 |
7364 | /* 1131 */ MCD::OPC_FilterValue, 50, 24, 0, 0, // Skip to: 1160 |
7365 | /* 1136 */ MCD::OPC_CheckPredicate, 107, 70, 2, 0, // Skip to: 1723 |
7366 | /* 1141 */ MCD::OPC_CheckField, 21, 5, 17, 63, 2, 0, // Skip to: 1723 |
7367 | /* 1148 */ MCD::OPC_CheckField, 6, 2, 0, 56, 2, 0, // Skip to: 1723 |
7368 | /* 1155 */ MCD::OPC_Decode, 159, 10, 140, 3, // Opcode: C_EQ_D64 |
7369 | /* 1160 */ MCD::OPC_FilterValue, 51, 24, 0, 0, // Skip to: 1189 |
7370 | /* 1165 */ MCD::OPC_CheckPredicate, 107, 41, 2, 0, // Skip to: 1723 |
7371 | /* 1170 */ MCD::OPC_CheckField, 21, 5, 17, 34, 2, 0, // Skip to: 1723 |
7372 | /* 1177 */ MCD::OPC_CheckField, 6, 2, 0, 27, 2, 0, // Skip to: 1723 |
7373 | /* 1184 */ MCD::OPC_Decode, 231, 10, 140, 3, // Opcode: C_UEQ_D64 |
7374 | /* 1189 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 1218 |
7375 | /* 1194 */ MCD::OPC_CheckPredicate, 107, 12, 2, 0, // Skip to: 1723 |
7376 | /* 1199 */ MCD::OPC_CheckField, 21, 5, 17, 5, 2, 0, // Skip to: 1723 |
7377 | /* 1206 */ MCD::OPC_CheckField, 6, 2, 0, 254, 1, 0, // Skip to: 1723 |
7378 | /* 1213 */ MCD::OPC_Decode, 213, 10, 140, 3, // Opcode: C_OLT_D64 |
7379 | /* 1218 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 1247 |
7380 | /* 1223 */ MCD::OPC_CheckPredicate, 107, 239, 1, 0, // Skip to: 1723 |
7381 | /* 1228 */ MCD::OPC_CheckField, 21, 5, 17, 232, 1, 0, // Skip to: 1723 |
7382 | /* 1235 */ MCD::OPC_CheckField, 6, 2, 0, 225, 1, 0, // Skip to: 1723 |
7383 | /* 1242 */ MCD::OPC_Decode, 243, 10, 140, 3, // Opcode: C_ULT_D64 |
7384 | /* 1247 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 1276 |
7385 | /* 1252 */ MCD::OPC_CheckPredicate, 107, 210, 1, 0, // Skip to: 1723 |
7386 | /* 1257 */ MCD::OPC_CheckField, 21, 5, 17, 203, 1, 0, // Skip to: 1723 |
7387 | /* 1264 */ MCD::OPC_CheckField, 6, 2, 0, 196, 1, 0, // Skip to: 1723 |
7388 | /* 1271 */ MCD::OPC_Decode, 207, 10, 140, 3, // Opcode: C_OLE_D64 |
7389 | /* 1276 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 1305 |
7390 | /* 1281 */ MCD::OPC_CheckPredicate, 107, 181, 1, 0, // Skip to: 1723 |
7391 | /* 1286 */ MCD::OPC_CheckField, 21, 5, 17, 174, 1, 0, // Skip to: 1723 |
7392 | /* 1293 */ MCD::OPC_CheckField, 6, 2, 0, 167, 1, 0, // Skip to: 1723 |
7393 | /* 1300 */ MCD::OPC_Decode, 237, 10, 140, 3, // Opcode: C_ULE_D64 |
7394 | /* 1305 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 1334 |
7395 | /* 1310 */ MCD::OPC_CheckPredicate, 107, 152, 1, 0, // Skip to: 1723 |
7396 | /* 1315 */ MCD::OPC_CheckField, 21, 5, 17, 145, 1, 0, // Skip to: 1723 |
7397 | /* 1322 */ MCD::OPC_CheckField, 6, 2, 0, 138, 1, 0, // Skip to: 1723 |
7398 | /* 1329 */ MCD::OPC_Decode, 225, 10, 140, 3, // Opcode: C_SF_D64 |
7399 | /* 1334 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 1363 |
7400 | /* 1339 */ MCD::OPC_CheckPredicate, 107, 123, 1, 0, // Skip to: 1723 |
7401 | /* 1344 */ MCD::OPC_CheckField, 21, 5, 17, 116, 1, 0, // Skip to: 1723 |
7402 | /* 1351 */ MCD::OPC_CheckField, 6, 2, 0, 109, 1, 0, // Skip to: 1723 |
7403 | /* 1358 */ MCD::OPC_Decode, 189, 10, 140, 3, // Opcode: C_NGLE_D64 |
7404 | /* 1363 */ MCD::OPC_FilterValue, 58, 24, 0, 0, // Skip to: 1392 |
7405 | /* 1368 */ MCD::OPC_CheckPredicate, 107, 94, 1, 0, // Skip to: 1723 |
7406 | /* 1373 */ MCD::OPC_CheckField, 21, 5, 17, 87, 1, 0, // Skip to: 1723 |
7407 | /* 1380 */ MCD::OPC_CheckField, 6, 2, 0, 80, 1, 0, // Skip to: 1723 |
7408 | /* 1387 */ MCD::OPC_Decode, 219, 10, 140, 3, // Opcode: C_SEQ_D64 |
7409 | /* 1392 */ MCD::OPC_FilterValue, 59, 24, 0, 0, // Skip to: 1421 |
7410 | /* 1397 */ MCD::OPC_CheckPredicate, 107, 65, 1, 0, // Skip to: 1723 |
7411 | /* 1402 */ MCD::OPC_CheckField, 21, 5, 17, 58, 1, 0, // Skip to: 1723 |
7412 | /* 1409 */ MCD::OPC_CheckField, 6, 2, 0, 51, 1, 0, // Skip to: 1723 |
7413 | /* 1416 */ MCD::OPC_Decode, 195, 10, 140, 3, // Opcode: C_NGL_D64 |
7414 | /* 1421 */ MCD::OPC_FilterValue, 60, 24, 0, 0, // Skip to: 1450 |
7415 | /* 1426 */ MCD::OPC_CheckPredicate, 107, 36, 1, 0, // Skip to: 1723 |
7416 | /* 1431 */ MCD::OPC_CheckField, 21, 5, 17, 29, 1, 0, // Skip to: 1723 |
7417 | /* 1438 */ MCD::OPC_CheckField, 6, 2, 0, 22, 1, 0, // Skip to: 1723 |
7418 | /* 1445 */ MCD::OPC_Decode, 177, 10, 140, 3, // Opcode: C_LT_D64 |
7419 | /* 1450 */ MCD::OPC_FilterValue, 61, 24, 0, 0, // Skip to: 1479 |
7420 | /* 1455 */ MCD::OPC_CheckPredicate, 107, 7, 1, 0, // Skip to: 1723 |
7421 | /* 1460 */ MCD::OPC_CheckField, 21, 5, 17, 0, 1, 0, // Skip to: 1723 |
7422 | /* 1467 */ MCD::OPC_CheckField, 6, 2, 0, 249, 0, 0, // Skip to: 1723 |
7423 | /* 1474 */ MCD::OPC_Decode, 183, 10, 140, 3, // Opcode: C_NGE_D64 |
7424 | /* 1479 */ MCD::OPC_FilterValue, 62, 24, 0, 0, // Skip to: 1508 |
7425 | /* 1484 */ MCD::OPC_CheckPredicate, 107, 234, 0, 0, // Skip to: 1723 |
7426 | /* 1489 */ MCD::OPC_CheckField, 21, 5, 17, 227, 0, 0, // Skip to: 1723 |
7427 | /* 1496 */ MCD::OPC_CheckField, 6, 2, 0, 220, 0, 0, // Skip to: 1723 |
7428 | /* 1503 */ MCD::OPC_Decode, 171, 10, 140, 3, // Opcode: C_LE_D64 |
7429 | /* 1508 */ MCD::OPC_FilterValue, 63, 210, 0, 0, // Skip to: 1723 |
7430 | /* 1513 */ MCD::OPC_CheckPredicate, 107, 205, 0, 0, // Skip to: 1723 |
7431 | /* 1518 */ MCD::OPC_CheckField, 21, 5, 17, 198, 0, 0, // Skip to: 1723 |
7432 | /* 1525 */ MCD::OPC_CheckField, 6, 2, 0, 191, 0, 0, // Skip to: 1723 |
7433 | /* 1532 */ MCD::OPC_Decode, 201, 10, 140, 3, // Opcode: C_NGT_D64 |
7434 | /* 1537 */ MCD::OPC_FilterValue, 19, 151, 0, 0, // Skip to: 1693 |
7435 | /* 1542 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... |
7436 | /* 1545 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 1567 |
7437 | /* 1550 */ MCD::OPC_CheckPredicate, 108, 168, 0, 0, // Skip to: 1723 |
7438 | /* 1555 */ MCD::OPC_CheckField, 11, 5, 0, 161, 0, 0, // Skip to: 1723 |
7439 | /* 1562 */ MCD::OPC_Decode, 228, 14, 141, 3, // Opcode: LDXC164 |
7440 | /* 1567 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 1589 |
7441 | /* 1572 */ MCD::OPC_CheckPredicate, 109, 146, 0, 0, // Skip to: 1723 |
7442 | /* 1577 */ MCD::OPC_CheckField, 11, 5, 0, 139, 0, 0, // Skip to: 1723 |
7443 | /* 1584 */ MCD::OPC_Decode, 138, 15, 141, 3, // Opcode: LUXC164 |
7444 | /* 1589 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 1611 |
7445 | /* 1594 */ MCD::OPC_CheckPredicate, 108, 124, 0, 0, // Skip to: 1723 |
7446 | /* 1599 */ MCD::OPC_CheckField, 6, 5, 0, 117, 0, 0, // Skip to: 1723 |
7447 | /* 1606 */ MCD::OPC_Decode, 190, 19, 142, 3, // Opcode: SDXC164 |
7448 | /* 1611 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 1633 |
7449 | /* 1616 */ MCD::OPC_CheckPredicate, 109, 102, 0, 0, // Skip to: 1723 |
7450 | /* 1621 */ MCD::OPC_CheckField, 6, 5, 0, 95, 0, 0, // Skip to: 1723 |
7451 | /* 1628 */ MCD::OPC_Decode, 177, 21, 142, 3, // Opcode: SUXC164 |
7452 | /* 1633 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 1648 |
7453 | /* 1638 */ MCD::OPC_CheckPredicate, 110, 80, 0, 0, // Skip to: 1723 |
7454 | /* 1643 */ MCD::OPC_Decode, 212, 15, 143, 3, // Opcode: MADD_D64 |
7455 | /* 1648 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 1663 |
7456 | /* 1653 */ MCD::OPC_CheckPredicate, 110, 65, 0, 0, // Skip to: 1723 |
7457 | /* 1658 */ MCD::OPC_Decode, 135, 17, 143, 3, // Opcode: MSUB_D64 |
7458 | /* 1663 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 1678 |
7459 | /* 1668 */ MCD::OPC_CheckPredicate, 111, 50, 0, 0, // Skip to: 1723 |
7460 | /* 1673 */ MCD::OPC_Decode, 247, 17, 143, 3, // Opcode: NMADD_D64 |
7461 | /* 1678 */ MCD::OPC_FilterValue, 57, 40, 0, 0, // Skip to: 1723 |
7462 | /* 1683 */ MCD::OPC_CheckPredicate, 111, 35, 0, 0, // Skip to: 1723 |
7463 | /* 1688 */ MCD::OPC_Decode, 252, 17, 143, 3, // Opcode: NMSUB_D64 |
7464 | /* 1693 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 1708 |
7465 | /* 1698 */ MCD::OPC_CheckPredicate, 101, 20, 0, 0, // Skip to: 1723 |
7466 | /* 1703 */ MCD::OPC_Decode, 212, 14, 219, 2, // Opcode: LDC164 |
7467 | /* 1708 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 1723 |
7468 | /* 1713 */ MCD::OPC_CheckPredicate, 101, 5, 0, 0, // Skip to: 1723 |
7469 | /* 1718 */ MCD::OPC_Decode, 177, 19, 219, 2, // Opcode: SDC164 |
7470 | /* 1723 */ MCD::OPC_Fail, |
7471 | 0 |
7472 | }; |
7473 | |
7474 | static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset &Bits) { |
7475 | switch (Idx) { |
7476 | default: llvm_unreachable("Invalid index!" ); |
7477 | case 0: |
7478 | return (Bits[Mips::FeatureMips16]); |
7479 | case 1: |
7480 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); |
7481 | case 2: |
7482 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); |
7483 | case 3: |
7484 | return (Bits[Mips::FeatureCnMips]); |
7485 | case 4: |
7486 | return (Bits[Mips::FeatureMips64] && Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); |
7487 | case 5: |
7488 | return (Bits[Mips::FeatureCnMipsP]); |
7489 | case 6: |
7490 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6]); |
7491 | case 7: |
7492 | return (Bits[Mips::FeatureMicroMips]); |
7493 | case 8: |
7494 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSP]); |
7495 | case 9: |
7496 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSPR2]); |
7497 | case 10: |
7498 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r5] && Bits[Mips::FeatureVirt]); |
7499 | case 11: |
7500 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSPR3]); |
7501 | case 12: |
7502 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureDSP]); |
7503 | case 13: |
7504 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); |
7505 | case 14: |
7506 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4]); |
7507 | case 15: |
7508 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); |
7509 | case 16: |
7510 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4]); |
7511 | case 17: |
7512 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); |
7513 | case 18: |
7514 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat]); |
7515 | case 19: |
7516 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureSoftFloat]); |
7517 | case 20: |
7518 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat]); |
7519 | case 21: |
7520 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureEVA]); |
7521 | case 22: |
7522 | return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureEVA]); |
7523 | case 23: |
7524 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); |
7525 | case 24: |
7526 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6]); |
7527 | case 25: |
7528 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureGINV]); |
7529 | case 26: |
7530 | return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); |
7531 | case 27: |
7532 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMicroMips]); |
7533 | case 28: |
7534 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMicroMips]); |
7535 | case 29: |
7536 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7537 | case 30: |
7538 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMSA]); |
7539 | case 31: |
7540 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7541 | case 32: |
7542 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6]); |
7543 | case 33: |
7544 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureUseIndirectJumpsHazard]); |
7545 | case 34: |
7546 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32]); |
7547 | case 35: |
7548 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7549 | case 36: |
7550 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMicroMips]); |
7551 | case 37: |
7552 | return (Bits[Mips::FeatureDSP]); |
7553 | case 38: |
7554 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMSA] && Bits[Mips::FeatureMips64]); |
7555 | case 39: |
7556 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7557 | case 40: |
7558 | return (Bits[Mips::FeatureDSP] && !Bits[Mips::FeatureMicroMips]); |
7559 | case 41: |
7560 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r5] && Bits[Mips::FeatureVirt] && !Bits[Mips::FeatureMicroMips]); |
7561 | case 42: |
7562 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMT] && !Bits[Mips::FeatureMicroMips]); |
7563 | case 43: |
7564 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureMicroMips]); |
7565 | case 44: |
7566 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && Bits[Mips::FeatureEVA] && !Bits[Mips::FeatureMicroMips]); |
7567 | case 45: |
7568 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r5] && !Bits[Mips::FeatureMicroMips]); |
7569 | case 46: |
7570 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32] && !Bits[Mips::FeatureMicroMips]); |
7571 | case 47: |
7572 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7573 | case 48: |
7574 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7575 | case 49: |
7576 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7577 | case 50: |
7578 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7579 | case 51: |
7580 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7581 | case 52: |
7582 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7583 | case 53: |
7584 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureSoftFloat]); |
7585 | case 54: |
7586 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7587 | case 55: |
7588 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7589 | case 56: |
7590 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7591 | case 57: |
7592 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7593 | case 58: |
7594 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7595 | case 59: |
7596 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7597 | case 60: |
7598 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7599 | case 61: |
7600 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat]); |
7601 | case 62: |
7602 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7603 | case 63: |
7604 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips5_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7605 | case 64: |
7606 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureNoMadd4]); |
7607 | case 65: |
7608 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureNoMadd4]); |
7609 | case 66: |
7610 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4] && !Bits[Mips::FeatureMicroMips]); |
7611 | case 67: |
7612 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4] && !Bits[Mips::FeatureMicroMips]); |
7613 | case 68: |
7614 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7615 | case 69: |
7616 | return (Bits[Mips::FeatureDSPR2]); |
7617 | case 70: |
7618 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && Bits[Mips::FeatureEVA] && !Bits[Mips::FeatureMicroMips]); |
7619 | case 71: |
7620 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7621 | case 72: |
7622 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7623 | case 73: |
7624 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && !Bits[Mips::FeatureMicroMips]); |
7625 | case 74: |
7626 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7627 | case 75: |
7628 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6]); |
7629 | case 76: |
7630 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); |
7631 | case 77: |
7632 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7633 | case 78: |
7634 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); |
7635 | case 79: |
7636 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7637 | case 80: |
7638 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureCRC] && !Bits[Mips::FeatureMicroMips]); |
7639 | case 81: |
7640 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6] && Bits[Mips::FeatureCRC] && !Bits[Mips::FeatureMicroMips]); |
7641 | case 82: |
7642 | return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); |
7643 | case 83: |
7644 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureGINV] && !Bits[Mips::FeatureMicroMips]); |
7645 | case 84: |
7646 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6]); |
7647 | case 85: |
7648 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips64r6]); |
7649 | case 86: |
7650 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips32r6]); |
7651 | case 87: |
7652 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7653 | case 88: |
7654 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7655 | case 89: |
7656 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit]); |
7657 | case 90: |
7658 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r2] && !Bits[Mips::FeatureMicroMips]); |
7659 | case 91: |
7660 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMicroMips]); |
7661 | case 92: |
7662 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7663 | case 93: |
7664 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips3]); |
7665 | case 94: |
7666 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r5] && Bits[Mips::FeatureVirt]); |
7667 | case 95: |
7668 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6]); |
7669 | case 96: |
7670 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips64] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); |
7671 | case 97: |
7672 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureDSP]); |
7673 | case 98: |
7674 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7675 | case 99: |
7676 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7677 | case 100: |
7678 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7679 | case 101: |
7680 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7681 | case 102: |
7682 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7683 | case 103: |
7684 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7685 | case 104: |
7686 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7687 | case 105: |
7688 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && Bits[Mips::FeatureMips3D]); |
7689 | case 106: |
7690 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips3_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7691 | case 107: |
7692 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7693 | case 108: |
7694 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat]); |
7695 | case 109: |
7696 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips5_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); |
7697 | case 110: |
7698 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureNoMadd4]); |
7699 | case 111: |
7700 | return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4] && !Bits[Mips::FeatureMicroMips]); |
7701 | } |
7702 | } |
7703 | |
7704 | template <typename InsnType> |
7705 | static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI, |
7706 | uint64_t Address, const MCDisassembler *Decoder, bool &DecodeComplete) { |
7707 | DecodeComplete = true; |
7708 | using TmpType = std::conditional_t<std::is_integral<InsnType>::value, InsnType, uint64_t>; |
7709 | TmpType tmp; |
7710 | switch (Idx) { |
7711 | default: llvm_unreachable("Invalid index!" ); |
7712 | case 0: |
7713 | tmp = fieldFromInstruction(insn, 0, 11); |
7714 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7715 | return S; |
7716 | case 1: |
7717 | tmp = fieldFromInstruction(insn, 8, 3); |
7718 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7719 | tmp = fieldFromInstruction(insn, 0, 8); |
7720 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7721 | return S; |
7722 | case 2: |
7723 | tmp = fieldFromInstruction(insn, 8, 3); |
7724 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7725 | tmp = fieldFromInstruction(insn, 8, 3); |
7726 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7727 | tmp = fieldFromInstruction(insn, 0, 8); |
7728 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7729 | return S; |
7730 | case 3: |
7731 | tmp = fieldFromInstruction(insn, 8, 3); |
7732 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7733 | tmp = fieldFromInstruction(insn, 0, 8); |
7734 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7735 | return S; |
7736 | case 4: |
7737 | tmp = fieldFromInstruction(insn, 0, 8); |
7738 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7739 | return S; |
7740 | case 5: |
7741 | tmp = 0x0; |
7742 | insertBits(tmp, fieldFromInstruction(insn, 3, 2), 3, 2); |
7743 | insertBits(tmp, fieldFromInstruction(insn, 5, 3), 0, 3); |
7744 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7745 | tmp = fieldFromInstruction(insn, 0, 3); |
7746 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7747 | return S; |
7748 | case 6: |
7749 | tmp = fieldFromInstruction(insn, 4, 4); |
7750 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7751 | tmp = fieldFromInstruction(insn, 0, 4); |
7752 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7753 | return S; |
7754 | case 7: |
7755 | tmp = fieldFromInstruction(insn, 8, 3); |
7756 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7757 | tmp = fieldFromInstruction(insn, 0, 8); |
7758 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7759 | return S; |
7760 | case 8: |
7761 | tmp = fieldFromInstruction(insn, 2, 3); |
7762 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7763 | tmp = fieldFromInstruction(insn, 8, 3); |
7764 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7765 | tmp = fieldFromInstruction(insn, 5, 3); |
7766 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7767 | return S; |
7768 | case 9: |
7769 | tmp = fieldFromInstruction(insn, 8, 3); |
7770 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7771 | return S; |
7772 | case 10: |
7773 | return S; |
7774 | case 11: |
7775 | tmp = fieldFromInstruction(insn, 8, 3); |
7776 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7777 | tmp = fieldFromInstruction(insn, 5, 3); |
7778 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7779 | return S; |
7780 | case 12: |
7781 | tmp = fieldFromInstruction(insn, 8, 3); |
7782 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7783 | tmp = fieldFromInstruction(insn, 8, 3); |
7784 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7785 | tmp = fieldFromInstruction(insn, 5, 3); |
7786 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7787 | return S; |
7788 | case 13: |
7789 | tmp = fieldFromInstruction(insn, 8, 3); |
7790 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7791 | tmp = fieldFromInstruction(insn, 8, 3); |
7792 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7793 | return S; |
7794 | case 14: |
7795 | tmp = fieldFromInstruction(insn, 8, 3); |
7796 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7797 | tmp = 0x0; |
7798 | insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); |
7799 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); |
7800 | insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); |
7801 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7802 | return S; |
7803 | case 15: |
7804 | tmp = 0x0; |
7805 | insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); |
7806 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); |
7807 | insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); |
7808 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7809 | return S; |
7810 | case 16: |
7811 | tmp = fieldFromInstruction(insn, 8, 3); |
7812 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7813 | tmp = 0x0; |
7814 | insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); |
7815 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); |
7816 | insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); |
7817 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7818 | return S; |
7819 | case 17: |
7820 | tmp = fieldFromInstruction(insn, 8, 3); |
7821 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7822 | tmp = fieldFromInstruction(insn, 5, 3); |
7823 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7824 | tmp = 0x0; |
7825 | insertBits(tmp, fieldFromInstruction(insn, 21, 1), 5, 1); |
7826 | insertBits(tmp, fieldFromInstruction(insn, 22, 5), 0, 5); |
7827 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7828 | return S; |
7829 | case 18: |
7830 | tmp = 0x0; |
7831 | insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); |
7832 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); |
7833 | insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); |
7834 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7835 | return S; |
7836 | case 19: |
7837 | if (!Check(S, DecodeFIXMEInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7838 | return S; |
7839 | case 20: |
7840 | tmp = fieldFromInstruction(insn, 8, 3); |
7841 | if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7842 | tmp = 0x0; |
7843 | insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); |
7844 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); |
7845 | insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); |
7846 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7847 | return S; |
7848 | case 21: |
7849 | if (!Check(S, DecodeFMem3(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7850 | return S; |
7851 | case 22: |
7852 | tmp = fieldFromInstruction(insn, 16, 5); |
7853 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7854 | tmp = fieldFromInstruction(insn, 0, 16); |
7855 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7856 | return S; |
7857 | case 23: |
7858 | tmp = fieldFromInstruction(insn, 11, 5); |
7859 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7860 | tmp = fieldFromInstruction(insn, 21, 5); |
7861 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7862 | tmp = fieldFromInstruction(insn, 16, 5); |
7863 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7864 | return S; |
7865 | case 24: |
7866 | tmp = fieldFromInstruction(insn, 21, 5); |
7867 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7868 | return S; |
7869 | case 25: |
7870 | tmp = fieldFromInstruction(insn, 11, 5); |
7871 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7872 | tmp = fieldFromInstruction(insn, 21, 5); |
7873 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7874 | return S; |
7875 | case 26: |
7876 | tmp = fieldFromInstruction(insn, 11, 5); |
7877 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7878 | tmp = fieldFromInstruction(insn, 21, 5); |
7879 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7880 | return S; |
7881 | case 27: |
7882 | tmp = fieldFromInstruction(insn, 16, 5); |
7883 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7884 | tmp = fieldFromInstruction(insn, 21, 5); |
7885 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7886 | tmp = fieldFromInstruction(insn, 6, 10); |
7887 | if (!Check(S, DecodeSImmWithOffsetAndScale<10>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7888 | return S; |
7889 | case 28: |
7890 | tmp = fieldFromInstruction(insn, 16, 5); |
7891 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7892 | tmp = fieldFromInstruction(insn, 21, 5); |
7893 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7894 | tmp = fieldFromInstruction(insn, 6, 5); |
7895 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7896 | tmp = fieldFromInstruction(insn, 11, 5); |
7897 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7898 | return S; |
7899 | case 29: |
7900 | tmp = fieldFromInstruction(insn, 21, 5); |
7901 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7902 | tmp = fieldFromInstruction(insn, 16, 5); |
7903 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7904 | tmp = fieldFromInstruction(insn, 0, 16); |
7905 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7906 | return S; |
7907 | case 30: |
7908 | tmp = fieldFromInstruction(insn, 16, 5); |
7909 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7910 | tmp = fieldFromInstruction(insn, 21, 5); |
7911 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7912 | return S; |
7913 | case 31: |
7914 | tmp = fieldFromInstruction(insn, 7, 3); |
7915 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7916 | tmp = fieldFromInstruction(insn, 1, 3); |
7917 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7918 | tmp = fieldFromInstruction(insn, 4, 3); |
7919 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7920 | return S; |
7921 | case 32: |
7922 | if (!Check(S, DecodeMemMMImm4(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7923 | return S; |
7924 | case 33: |
7925 | tmp = fieldFromInstruction(insn, 5, 5); |
7926 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7927 | tmp = fieldFromInstruction(insn, 0, 5); |
7928 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7929 | return S; |
7930 | case 34: |
7931 | tmp = fieldFromInstruction(insn, 7, 3); |
7932 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7933 | tmp = fieldFromInstruction(insn, 4, 3); |
7934 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7935 | tmp = fieldFromInstruction(insn, 1, 3); |
7936 | if (!Check(S, DecodePOOL16BEncodedField(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7937 | return S; |
7938 | case 35: |
7939 | tmp = fieldFromInstruction(insn, 7, 3); |
7940 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7941 | tmp = fieldFromInstruction(insn, 4, 3); |
7942 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7943 | tmp = fieldFromInstruction(insn, 0, 4); |
7944 | if (!Check(S, DecodeANDI16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7945 | return S; |
7946 | case 36: |
7947 | tmp = fieldFromInstruction(insn, 3, 3); |
7948 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7949 | tmp = fieldFromInstruction(insn, 0, 3); |
7950 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7951 | return S; |
7952 | case 37: |
7953 | tmp = fieldFromInstruction(insn, 3, 3); |
7954 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7955 | tmp = fieldFromInstruction(insn, 0, 3); |
7956 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7957 | tmp = fieldFromInstruction(insn, 3, 3); |
7958 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7959 | return S; |
7960 | case 38: |
7961 | if (!Check(S, DecodeMemMMReglistImm4Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7962 | return S; |
7963 | case 39: |
7964 | tmp = fieldFromInstruction(insn, 0, 5); |
7965 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7966 | return S; |
7967 | case 40: |
7968 | tmp = fieldFromInstruction(insn, 0, 4); |
7969 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
7970 | return S; |
7971 | case 41: |
7972 | tmp = fieldFromInstruction(insn, 0, 5); |
7973 | if (!Check(S, DecodeUImmWithOffsetAndScale<5, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7974 | return S; |
7975 | case 42: |
7976 | if (!Check(S, DecodeMemMMSPImm5Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7977 | return S; |
7978 | case 43: |
7979 | tmp = fieldFromInstruction(insn, 5, 5); |
7980 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7981 | tmp = fieldFromInstruction(insn, 5, 5); |
7982 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7983 | tmp = fieldFromInstruction(insn, 1, 4); |
7984 | if (!Check(S, DecodeSImmWithOffsetAndScale<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7985 | return S; |
7986 | case 44: |
7987 | tmp = fieldFromInstruction(insn, 1, 9); |
7988 | if (!Check(S, DecodeSimm9SP(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7989 | return S; |
7990 | case 45: |
7991 | if (!Check(S, DecodeMemMMGPImm7Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
7992 | return S; |
7993 | case 46: |
7994 | tmp = fieldFromInstruction(insn, 7, 3); |
7995 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7996 | tmp = fieldFromInstruction(insn, 4, 3); |
7997 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
7998 | tmp = fieldFromInstruction(insn, 1, 3); |
7999 | if (!Check(S, DecodeAddiur2Simm7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8000 | return S; |
8001 | case 47: |
8002 | tmp = fieldFromInstruction(insn, 7, 3); |
8003 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8004 | tmp = fieldFromInstruction(insn, 1, 6); |
8005 | if (!Check(S, DecodeUImmWithOffsetAndScale<6, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8006 | return S; |
8007 | case 48: |
8008 | if (!Check(S, DecodeMovePOperands(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8009 | return S; |
8010 | case 49: |
8011 | tmp = fieldFromInstruction(insn, 7, 3); |
8012 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8013 | tmp = fieldFromInstruction(insn, 0, 7); |
8014 | if (!Check(S, DecodeBranchTarget7MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8015 | return S; |
8016 | case 50: |
8017 | tmp = fieldFromInstruction(insn, 0, 10); |
8018 | if (!Check(S, DecodeBranchTarget10MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8019 | return S; |
8020 | case 51: |
8021 | tmp = fieldFromInstruction(insn, 7, 3); |
8022 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8023 | tmp = fieldFromInstruction(insn, 0, 7); |
8024 | if (!Check(S, DecodeLi16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8025 | return S; |
8026 | case 52: |
8027 | tmp = fieldFromInstruction(insn, 21, 5); |
8028 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8029 | tmp = fieldFromInstruction(insn, 16, 5); |
8030 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8031 | tmp = fieldFromInstruction(insn, 11, 5); |
8032 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8033 | return S; |
8034 | case 53: |
8035 | tmp = fieldFromInstruction(insn, 16, 5); |
8036 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8037 | tmp = fieldFromInstruction(insn, 21, 5); |
8038 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8039 | return S; |
8040 | case 54: |
8041 | tmp = fieldFromInstruction(insn, 11, 5); |
8042 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8043 | tmp = fieldFromInstruction(insn, 16, 5); |
8044 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8045 | tmp = fieldFromInstruction(insn, 21, 5); |
8046 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8047 | return S; |
8048 | case 55: |
8049 | tmp = fieldFromInstruction(insn, 11, 5); |
8050 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8051 | tmp = fieldFromInstruction(insn, 16, 5); |
8052 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8053 | tmp = fieldFromInstruction(insn, 21, 5); |
8054 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8055 | return S; |
8056 | case 56: |
8057 | tmp = fieldFromInstruction(insn, 16, 10); |
8058 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8059 | tmp = fieldFromInstruction(insn, 6, 10); |
8060 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8061 | return S; |
8062 | case 57: |
8063 | tmp = fieldFromInstruction(insn, 21, 5); |
8064 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8065 | tmp = fieldFromInstruction(insn, 16, 5); |
8066 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8067 | tmp = fieldFromInstruction(insn, 6, 5); |
8068 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8069 | tmp = fieldFromInstruction(insn, 11, 5); |
8070 | if (!Check(S, DecodeInsSize(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8071 | tmp = fieldFromInstruction(insn, 21, 5); |
8072 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8073 | return S; |
8074 | case 58: |
8075 | tmp = fieldFromInstruction(insn, 11, 5); |
8076 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8077 | tmp = fieldFromInstruction(insn, 16, 5); |
8078 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8079 | tmp = fieldFromInstruction(insn, 21, 5); |
8080 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8081 | return S; |
8082 | case 59: |
8083 | tmp = fieldFromInstruction(insn, 11, 5); |
8084 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8085 | tmp = fieldFromInstruction(insn, 21, 5); |
8086 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8087 | tmp = fieldFromInstruction(insn, 16, 5); |
8088 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8089 | return S; |
8090 | case 60: |
8091 | tmp = fieldFromInstruction(insn, 21, 5); |
8092 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8093 | tmp = fieldFromInstruction(insn, 16, 5); |
8094 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8095 | tmp = fieldFromInstruction(insn, 11, 5); |
8096 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8097 | tmp = fieldFromInstruction(insn, 21, 5); |
8098 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8099 | return S; |
8100 | case 61: |
8101 | tmp = fieldFromInstruction(insn, 11, 5); |
8102 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8103 | tmp = fieldFromInstruction(insn, 21, 5); |
8104 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8105 | tmp = fieldFromInstruction(insn, 16, 5); |
8106 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8107 | return S; |
8108 | case 62: |
8109 | tmp = fieldFromInstruction(insn, 21, 5); |
8110 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8111 | tmp = fieldFromInstruction(insn, 16, 5); |
8112 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8113 | tmp = fieldFromInstruction(insn, 11, 5); |
8114 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8115 | tmp = fieldFromInstruction(insn, 21, 5); |
8116 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8117 | return S; |
8118 | case 63: |
8119 | tmp = fieldFromInstruction(insn, 11, 5); |
8120 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8121 | tmp = fieldFromInstruction(insn, 16, 5); |
8122 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8123 | tmp = fieldFromInstruction(insn, 21, 5); |
8124 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8125 | tmp = fieldFromInstruction(insn, 11, 5); |
8126 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8127 | return S; |
8128 | case 64: |
8129 | tmp = fieldFromInstruction(insn, 11, 5); |
8130 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8131 | tmp = fieldFromInstruction(insn, 16, 5); |
8132 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8133 | tmp = fieldFromInstruction(insn, 21, 5); |
8134 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8135 | return S; |
8136 | case 65: |
8137 | tmp = fieldFromInstruction(insn, 14, 2); |
8138 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8139 | tmp = fieldFromInstruction(insn, 16, 6); |
8140 | if (!Check(S, DecodeSImmWithOffsetAndScale<6>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8141 | tmp = fieldFromInstruction(insn, 14, 2); |
8142 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8143 | return S; |
8144 | case 66: |
8145 | tmp = fieldFromInstruction(insn, 21, 5); |
8146 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8147 | tmp = fieldFromInstruction(insn, 16, 5); |
8148 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8149 | tmp = fieldFromInstruction(insn, 6, 5); |
8150 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8151 | tmp = fieldFromInstruction(insn, 11, 5); |
8152 | if (!Check(S, DecodeUImmWithOffset<5, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8153 | return S; |
8154 | case 67: |
8155 | tmp = fieldFromInstruction(insn, 11, 5); |
8156 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8157 | tmp = fieldFromInstruction(insn, 16, 5); |
8158 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8159 | tmp = fieldFromInstruction(insn, 21, 5); |
8160 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8161 | return S; |
8162 | case 68: |
8163 | tmp = fieldFromInstruction(insn, 21, 5); |
8164 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8165 | tmp = fieldFromInstruction(insn, 16, 5); |
8166 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8167 | tmp = fieldFromInstruction(insn, 11, 3); |
8168 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8169 | return S; |
8170 | case 69: |
8171 | tmp = fieldFromInstruction(insn, 16, 5); |
8172 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8173 | tmp = fieldFromInstruction(insn, 21, 5); |
8174 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8175 | tmp = fieldFromInstruction(insn, 11, 3); |
8176 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8177 | return S; |
8178 | case 70: |
8179 | tmp = fieldFromInstruction(insn, 21, 5); |
8180 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8181 | tmp = fieldFromInstruction(insn, 16, 5); |
8182 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8183 | tmp = fieldFromInstruction(insn, 12, 4); |
8184 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8185 | return S; |
8186 | case 71: |
8187 | tmp = fieldFromInstruction(insn, 16, 5); |
8188 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8189 | tmp = fieldFromInstruction(insn, 21, 5); |
8190 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8191 | tmp = fieldFromInstruction(insn, 12, 4); |
8192 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8193 | return S; |
8194 | case 72: |
8195 | tmp = fieldFromInstruction(insn, 16, 5); |
8196 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8197 | tmp = fieldFromInstruction(insn, 14, 2); |
8198 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8199 | return S; |
8200 | case 73: |
8201 | tmp = fieldFromInstruction(insn, 14, 2); |
8202 | if (!Check(S, DecodeHI32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8203 | tmp = fieldFromInstruction(insn, 16, 5); |
8204 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8205 | return S; |
8206 | case 74: |
8207 | tmp = fieldFromInstruction(insn, 21, 5); |
8208 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8209 | tmp = fieldFromInstruction(insn, 16, 5); |
8210 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8211 | tmp = fieldFromInstruction(insn, 13, 3); |
8212 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8213 | return S; |
8214 | case 75: |
8215 | tmp = fieldFromInstruction(insn, 14, 2); |
8216 | if (!Check(S, DecodeLO32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8217 | tmp = fieldFromInstruction(insn, 16, 5); |
8218 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8219 | return S; |
8220 | case 76: |
8221 | tmp = fieldFromInstruction(insn, 14, 2); |
8222 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8223 | tmp = fieldFromInstruction(insn, 16, 5); |
8224 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8225 | tmp = fieldFromInstruction(insn, 21, 5); |
8226 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8227 | tmp = fieldFromInstruction(insn, 14, 2); |
8228 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8229 | return S; |
8230 | case 77: |
8231 | tmp = fieldFromInstruction(insn, 21, 5); |
8232 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8233 | tmp = fieldFromInstruction(insn, 16, 5); |
8234 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8235 | tmp = fieldFromInstruction(insn, 14, 2); |
8236 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8237 | tmp = fieldFromInstruction(insn, 21, 5); |
8238 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8239 | return S; |
8240 | case 78: |
8241 | tmp = fieldFromInstruction(insn, 21, 5); |
8242 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8243 | tmp = fieldFromInstruction(insn, 14, 2); |
8244 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8245 | tmp = fieldFromInstruction(insn, 16, 5); |
8246 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8247 | return S; |
8248 | case 79: |
8249 | tmp = fieldFromInstruction(insn, 21, 5); |
8250 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8251 | tmp = fieldFromInstruction(insn, 16, 5); |
8252 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8253 | return S; |
8254 | case 80: |
8255 | tmp = fieldFromInstruction(insn, 21, 5); |
8256 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8257 | tmp = fieldFromInstruction(insn, 16, 5); |
8258 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8259 | return S; |
8260 | case 81: |
8261 | tmp = fieldFromInstruction(insn, 21, 5); |
8262 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8263 | tmp = fieldFromInstruction(insn, 21, 5); |
8264 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8265 | tmp = fieldFromInstruction(insn, 16, 5); |
8266 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8267 | return S; |
8268 | case 82: |
8269 | tmp = fieldFromInstruction(insn, 21, 5); |
8270 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8271 | tmp = fieldFromInstruction(insn, 16, 5); |
8272 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8273 | return S; |
8274 | case 83: |
8275 | tmp = fieldFromInstruction(insn, 14, 2); |
8276 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8277 | tmp = fieldFromInstruction(insn, 16, 5); |
8278 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8279 | tmp = fieldFromInstruction(insn, 14, 2); |
8280 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8281 | return S; |
8282 | case 84: |
8283 | tmp = fieldFromInstruction(insn, 21, 5); |
8284 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8285 | tmp = fieldFromInstruction(insn, 16, 5); |
8286 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8287 | return S; |
8288 | case 85: |
8289 | tmp = fieldFromInstruction(insn, 21, 5); |
8290 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8291 | tmp = fieldFromInstruction(insn, 16, 5); |
8292 | if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8293 | return S; |
8294 | case 86: |
8295 | tmp = fieldFromInstruction(insn, 16, 5); |
8296 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8297 | tmp = fieldFromInstruction(insn, 21, 5); |
8298 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8299 | return S; |
8300 | case 87: |
8301 | tmp = fieldFromInstruction(insn, 16, 5); |
8302 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8303 | return S; |
8304 | case 88: |
8305 | tmp = fieldFromInstruction(insn, 16, 10); |
8306 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8307 | return S; |
8308 | case 89: |
8309 | tmp = fieldFromInstruction(insn, 14, 2); |
8310 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8311 | tmp = fieldFromInstruction(insn, 16, 5); |
8312 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8313 | tmp = fieldFromInstruction(insn, 21, 5); |
8314 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8315 | return S; |
8316 | case 90: |
8317 | tmp = fieldFromInstruction(insn, 21, 5); |
8318 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8319 | tmp = fieldFromInstruction(insn, 16, 5); |
8320 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8321 | return S; |
8322 | case 91: |
8323 | tmp = fieldFromInstruction(insn, 16, 5); |
8324 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8325 | tmp = fieldFromInstruction(insn, 21, 5); |
8326 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8327 | return S; |
8328 | case 92: |
8329 | tmp = fieldFromInstruction(insn, 16, 5); |
8330 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8331 | return S; |
8332 | case 93: |
8333 | tmp = fieldFromInstruction(insn, 21, 5); |
8334 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8335 | tmp = fieldFromInstruction(insn, 13, 8); |
8336 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8337 | return S; |
8338 | case 94: |
8339 | tmp = fieldFromInstruction(insn, 21, 5); |
8340 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8341 | tmp = fieldFromInstruction(insn, 14, 7); |
8342 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8343 | return S; |
8344 | case 95: |
8345 | tmp = fieldFromInstruction(insn, 21, 5); |
8346 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8347 | tmp = fieldFromInstruction(insn, 14, 2); |
8348 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8349 | tmp = fieldFromInstruction(insn, 16, 5); |
8350 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8351 | return S; |
8352 | case 96: |
8353 | tmp = fieldFromInstruction(insn, 11, 5); |
8354 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8355 | tmp = fieldFromInstruction(insn, 16, 10); |
8356 | if (!Check(S, DecodeSImmWithOffsetAndScale<10>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8357 | return S; |
8358 | case 97: |
8359 | tmp = fieldFromInstruction(insn, 21, 5); |
8360 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8361 | tmp = fieldFromInstruction(insn, 16, 5); |
8362 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8363 | tmp = fieldFromInstruction(insn, 0, 16); |
8364 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8365 | return S; |
8366 | case 98: |
8367 | if (!Check(S, DecodeMemMMImm16(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8368 | return S; |
8369 | case 99: |
8370 | if (!Check(S, DecodeMemMMImm12(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8371 | return S; |
8372 | case 100: |
8373 | if (!Check(S, DecodeCacheOpMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8374 | return S; |
8375 | case 101: |
8376 | tmp = fieldFromInstruction(insn, 16, 5); |
8377 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8378 | tmp = fieldFromInstruction(insn, 0, 16); |
8379 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8380 | return S; |
8381 | case 102: |
8382 | tmp = fieldFromInstruction(insn, 16, 5); |
8383 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8384 | tmp = fieldFromInstruction(insn, 0, 16); |
8385 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8386 | return S; |
8387 | case 103: |
8388 | tmp = fieldFromInstruction(insn, 16, 5); |
8389 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8390 | tmp = fieldFromInstruction(insn, 0, 16); |
8391 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8392 | return S; |
8393 | case 104: |
8394 | if (!Check(S, DecodeSyncI_MM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8395 | return S; |
8396 | case 105: |
8397 | tmp = fieldFromInstruction(insn, 0, 16); |
8398 | if (!Check(S, DecodeBranchTarget1SImm16(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8399 | return S; |
8400 | case 106: |
8401 | tmp = fieldFromInstruction(insn, 0, 16); |
8402 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8403 | return S; |
8404 | case 107: |
8405 | tmp = fieldFromInstruction(insn, 18, 3); |
8406 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8407 | tmp = fieldFromInstruction(insn, 0, 16); |
8408 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8409 | return S; |
8410 | case 108: |
8411 | tmp = fieldFromInstruction(insn, 21, 5); |
8412 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8413 | tmp = fieldFromInstruction(insn, 16, 5); |
8414 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8415 | tmp = fieldFromInstruction(insn, 0, 16); |
8416 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8417 | return S; |
8418 | case 109: |
8419 | tmp = fieldFromInstruction(insn, 11, 5); |
8420 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8421 | tmp = fieldFromInstruction(insn, 6, 5); |
8422 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8423 | tmp = fieldFromInstruction(insn, 16, 5); |
8424 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8425 | tmp = fieldFromInstruction(insn, 21, 5); |
8426 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8427 | return S; |
8428 | case 110: |
8429 | tmp = fieldFromInstruction(insn, 11, 5); |
8430 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8431 | tmp = fieldFromInstruction(insn, 16, 5); |
8432 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8433 | tmp = fieldFromInstruction(insn, 21, 5); |
8434 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8435 | return S; |
8436 | case 111: |
8437 | tmp = fieldFromInstruction(insn, 11, 5); |
8438 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8439 | tmp = fieldFromInstruction(insn, 16, 5); |
8440 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8441 | tmp = fieldFromInstruction(insn, 21, 5); |
8442 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8443 | return S; |
8444 | case 112: |
8445 | tmp = fieldFromInstruction(insn, 11, 5); |
8446 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8447 | tmp = fieldFromInstruction(insn, 6, 5); |
8448 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8449 | tmp = fieldFromInstruction(insn, 16, 5); |
8450 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8451 | tmp = fieldFromInstruction(insn, 21, 5); |
8452 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8453 | return S; |
8454 | case 113: |
8455 | tmp = fieldFromInstruction(insn, 21, 5); |
8456 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8457 | tmp = fieldFromInstruction(insn, 16, 5); |
8458 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8459 | tmp = fieldFromInstruction(insn, 13, 3); |
8460 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8461 | tmp = fieldFromInstruction(insn, 21, 5); |
8462 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8463 | return S; |
8464 | case 114: |
8465 | tmp = fieldFromInstruction(insn, 16, 5); |
8466 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8467 | tmp = fieldFromInstruction(insn, 21, 5); |
8468 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8469 | tmp = fieldFromInstruction(insn, 11, 5); |
8470 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8471 | return S; |
8472 | case 115: |
8473 | tmp = fieldFromInstruction(insn, 21, 5); |
8474 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8475 | tmp = fieldFromInstruction(insn, 16, 5); |
8476 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8477 | tmp = fieldFromInstruction(insn, 13, 3); |
8478 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8479 | tmp = fieldFromInstruction(insn, 21, 5); |
8480 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8481 | return S; |
8482 | case 116: |
8483 | tmp = fieldFromInstruction(insn, 11, 5); |
8484 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8485 | tmp = fieldFromInstruction(insn, 16, 5); |
8486 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8487 | tmp = fieldFromInstruction(insn, 21, 5); |
8488 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8489 | return S; |
8490 | case 117: |
8491 | tmp = fieldFromInstruction(insn, 11, 5); |
8492 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8493 | tmp = fieldFromInstruction(insn, 16, 5); |
8494 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8495 | tmp = fieldFromInstruction(insn, 21, 5); |
8496 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8497 | tmp = fieldFromInstruction(insn, 11, 5); |
8498 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8499 | return S; |
8500 | case 118: |
8501 | tmp = fieldFromInstruction(insn, 11, 5); |
8502 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8503 | tmp = fieldFromInstruction(insn, 16, 5); |
8504 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8505 | tmp = fieldFromInstruction(insn, 21, 5); |
8506 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8507 | tmp = fieldFromInstruction(insn, 11, 5); |
8508 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8509 | return S; |
8510 | case 119: |
8511 | tmp = fieldFromInstruction(insn, 21, 5); |
8512 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8513 | tmp = fieldFromInstruction(insn, 16, 5); |
8514 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8515 | return S; |
8516 | case 120: |
8517 | tmp = fieldFromInstruction(insn, 21, 5); |
8518 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8519 | tmp = fieldFromInstruction(insn, 16, 5); |
8520 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8521 | return S; |
8522 | case 121: |
8523 | tmp = fieldFromInstruction(insn, 21, 5); |
8524 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8525 | tmp = fieldFromInstruction(insn, 16, 5); |
8526 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8527 | return S; |
8528 | case 122: |
8529 | tmp = fieldFromInstruction(insn, 21, 5); |
8530 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8531 | tmp = fieldFromInstruction(insn, 16, 5); |
8532 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8533 | return S; |
8534 | case 123: |
8535 | tmp = fieldFromInstruction(insn, 21, 5); |
8536 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8537 | tmp = fieldFromInstruction(insn, 16, 5); |
8538 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8539 | tmp = fieldFromInstruction(insn, 13, 3); |
8540 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8541 | tmp = fieldFromInstruction(insn, 21, 5); |
8542 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8543 | return S; |
8544 | case 124: |
8545 | tmp = fieldFromInstruction(insn, 21, 5); |
8546 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8547 | tmp = fieldFromInstruction(insn, 16, 5); |
8548 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8549 | return S; |
8550 | case 125: |
8551 | tmp = fieldFromInstruction(insn, 16, 5); |
8552 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8553 | tmp = fieldFromInstruction(insn, 21, 5); |
8554 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8555 | return S; |
8556 | case 126: |
8557 | tmp = fieldFromInstruction(insn, 21, 5); |
8558 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8559 | tmp = fieldFromInstruction(insn, 16, 5); |
8560 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8561 | return S; |
8562 | case 127: |
8563 | tmp = fieldFromInstruction(insn, 21, 5); |
8564 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8565 | tmp = fieldFromInstruction(insn, 16, 5); |
8566 | if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8567 | return S; |
8568 | case 128: |
8569 | tmp = fieldFromInstruction(insn, 21, 5); |
8570 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8571 | tmp = fieldFromInstruction(insn, 16, 5); |
8572 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8573 | return S; |
8574 | case 129: |
8575 | tmp = fieldFromInstruction(insn, 21, 5); |
8576 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8577 | tmp = fieldFromInstruction(insn, 16, 5); |
8578 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8579 | return S; |
8580 | case 130: |
8581 | tmp = fieldFromInstruction(insn, 16, 5); |
8582 | if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8583 | tmp = fieldFromInstruction(insn, 21, 5); |
8584 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8585 | return S; |
8586 | case 131: |
8587 | tmp = fieldFromInstruction(insn, 16, 5); |
8588 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8589 | tmp = fieldFromInstruction(insn, 16, 5); |
8590 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8591 | tmp = fieldFromInstruction(insn, 21, 5); |
8592 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8593 | return S; |
8594 | case 132: |
8595 | tmp = fieldFromInstruction(insn, 13, 3); |
8596 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8597 | tmp = fieldFromInstruction(insn, 16, 5); |
8598 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8599 | tmp = fieldFromInstruction(insn, 21, 5); |
8600 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8601 | return S; |
8602 | case 133: |
8603 | tmp = fieldFromInstruction(insn, 13, 3); |
8604 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8605 | tmp = fieldFromInstruction(insn, 16, 5); |
8606 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8607 | tmp = fieldFromInstruction(insn, 21, 5); |
8608 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8609 | return S; |
8610 | case 134: |
8611 | if (!Check(S, DecodeMemMMImm9(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8612 | return S; |
8613 | case 135: |
8614 | if (!Check(S, DecodePrefeOpMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8615 | return S; |
8616 | case 136: |
8617 | if (!Check(S, DecodeJumpTargetMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8618 | return S; |
8619 | case 137: |
8620 | tmp = fieldFromInstruction(insn, 23, 3); |
8621 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8622 | tmp = fieldFromInstruction(insn, 0, 23); |
8623 | if (!Check(S, DecodeSimm23Lsl2(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8624 | return S; |
8625 | case 138: |
8626 | tmp = fieldFromInstruction(insn, 16, 5); |
8627 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8628 | tmp = fieldFromInstruction(insn, 21, 5); |
8629 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8630 | tmp = fieldFromInstruction(insn, 0, 16); |
8631 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8632 | return S; |
8633 | case 139: |
8634 | if (!Check(S, DecodeFMemMMR2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8635 | return S; |
8636 | case 140: |
8637 | if (!Check(S, DecodeJumpTargetXMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8638 | return S; |
8639 | case 141: |
8640 | if (!Check(S, DecodeMem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8641 | return S; |
8642 | case 142: |
8643 | tmp = fieldFromInstruction(insn, 16, 5); |
8644 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8645 | tmp = fieldFromInstruction(insn, 21, 5); |
8646 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8647 | return S; |
8648 | case 143: |
8649 | tmp = fieldFromInstruction(insn, 21, 5); |
8650 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8651 | tmp = fieldFromInstruction(insn, 16, 5); |
8652 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8653 | return S; |
8654 | case 144: |
8655 | tmp = fieldFromInstruction(insn, 16, 5); |
8656 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8657 | tmp = fieldFromInstruction(insn, 16, 5); |
8658 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8659 | tmp = fieldFromInstruction(insn, 21, 5); |
8660 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8661 | return S; |
8662 | case 145: |
8663 | tmp = fieldFromInstruction(insn, 11, 5); |
8664 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8665 | tmp = fieldFromInstruction(insn, 16, 5); |
8666 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8667 | tmp = fieldFromInstruction(insn, 21, 5); |
8668 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8669 | return S; |
8670 | case 146: |
8671 | tmp = fieldFromInstruction(insn, 21, 5); |
8672 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8673 | tmp = fieldFromInstruction(insn, 16, 5); |
8674 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8675 | return S; |
8676 | case 147: |
8677 | tmp = fieldFromInstruction(insn, 1, 3); |
8678 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8679 | tmp = fieldFromInstruction(insn, 7, 3); |
8680 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8681 | tmp = fieldFromInstruction(insn, 4, 3); |
8682 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8683 | return S; |
8684 | case 148: |
8685 | tmp = fieldFromInstruction(insn, 7, 3); |
8686 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8687 | tmp = fieldFromInstruction(insn, 4, 3); |
8688 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8689 | return S; |
8690 | case 149: |
8691 | tmp = fieldFromInstruction(insn, 7, 3); |
8692 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8693 | tmp = fieldFromInstruction(insn, 4, 3); |
8694 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8695 | tmp = fieldFromInstruction(insn, 7, 3); |
8696 | if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8697 | return S; |
8698 | case 150: |
8699 | tmp = fieldFromInstruction(insn, 5, 5); |
8700 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8701 | return S; |
8702 | case 151: |
8703 | tmp = fieldFromInstruction(insn, 5, 5); |
8704 | if (!Check(S, DecodeUImmWithOffsetAndScale<5, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8705 | return S; |
8706 | case 152: |
8707 | tmp = fieldFromInstruction(insn, 6, 4); |
8708 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8709 | return S; |
8710 | case 153: |
8711 | tmp = fieldFromInstruction(insn, 21, 5); |
8712 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8713 | tmp = fieldFromInstruction(insn, 16, 5); |
8714 | if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8715 | tmp = fieldFromInstruction(insn, 11, 3); |
8716 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8717 | return S; |
8718 | case 154: |
8719 | tmp = fieldFromInstruction(insn, 11, 5); |
8720 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8721 | tmp = fieldFromInstruction(insn, 16, 5); |
8722 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8723 | tmp = fieldFromInstruction(insn, 21, 5); |
8724 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8725 | tmp = fieldFromInstruction(insn, 9, 2); |
8726 | if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8727 | return S; |
8728 | case 155: |
8729 | tmp = fieldFromInstruction(insn, 11, 5); |
8730 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8731 | tmp = fieldFromInstruction(insn, 21, 5); |
8732 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8733 | tmp = fieldFromInstruction(insn, 16, 5); |
8734 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8735 | tmp = fieldFromInstruction(insn, 9, 2); |
8736 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8737 | return S; |
8738 | case 156: |
8739 | tmp = fieldFromInstruction(insn, 16, 5); |
8740 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8741 | tmp = fieldFromInstruction(insn, 9, 2); |
8742 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8743 | return S; |
8744 | case 157: |
8745 | tmp = fieldFromInstruction(insn, 6, 16); |
8746 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8747 | return S; |
8748 | case 158: |
8749 | tmp = fieldFromInstruction(insn, 21, 5); |
8750 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8751 | tmp = fieldFromInstruction(insn, 0, 16); |
8752 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8753 | return S; |
8754 | case 159: |
8755 | if (!Check(S, DecodeLoadByte15(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8756 | return S; |
8757 | case 160: |
8758 | if (!Check(S, DecodeFMemCop2MMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8759 | return S; |
8760 | case 161: |
8761 | tmp = fieldFromInstruction(insn, 16, 5); |
8762 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8763 | tmp = fieldFromInstruction(insn, 0, 16); |
8764 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8765 | return S; |
8766 | case 162: |
8767 | tmp = fieldFromInstruction(insn, 16, 5); |
8768 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8769 | tmp = fieldFromInstruction(insn, 0, 16); |
8770 | if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8771 | return S; |
8772 | case 163: |
8773 | if (!Check(S, DecodeSynciR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8774 | return S; |
8775 | case 164: |
8776 | tmp = fieldFromInstruction(insn, 11, 5); |
8777 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8778 | tmp = fieldFromInstruction(insn, 16, 5); |
8779 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8780 | tmp = fieldFromInstruction(insn, 21, 5); |
8781 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8782 | return S; |
8783 | case 165: |
8784 | tmp = fieldFromInstruction(insn, 11, 5); |
8785 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8786 | tmp = fieldFromInstruction(insn, 16, 5); |
8787 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8788 | tmp = fieldFromInstruction(insn, 21, 5); |
8789 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8790 | return S; |
8791 | case 166: |
8792 | tmp = fieldFromInstruction(insn, 11, 5); |
8793 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8794 | tmp = fieldFromInstruction(insn, 16, 5); |
8795 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8796 | tmp = fieldFromInstruction(insn, 21, 5); |
8797 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8798 | return S; |
8799 | case 167: |
8800 | tmp = fieldFromInstruction(insn, 16, 5); |
8801 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8802 | tmp = fieldFromInstruction(insn, 21, 5); |
8803 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8804 | return S; |
8805 | case 168: |
8806 | tmp = fieldFromInstruction(insn, 11, 5); |
8807 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8808 | tmp = fieldFromInstruction(insn, 21, 5); |
8809 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8810 | tmp = fieldFromInstruction(insn, 16, 5); |
8811 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8812 | return S; |
8813 | case 169: |
8814 | tmp = fieldFromInstruction(insn, 11, 5); |
8815 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8816 | tmp = fieldFromInstruction(insn, 11, 5); |
8817 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8818 | tmp = fieldFromInstruction(insn, 16, 5); |
8819 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8820 | tmp = fieldFromInstruction(insn, 21, 5); |
8821 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8822 | return S; |
8823 | case 170: |
8824 | tmp = fieldFromInstruction(insn, 11, 5); |
8825 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8826 | tmp = fieldFromInstruction(insn, 11, 5); |
8827 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8828 | tmp = fieldFromInstruction(insn, 16, 5); |
8829 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8830 | tmp = fieldFromInstruction(insn, 21, 5); |
8831 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8832 | return S; |
8833 | case 171: |
8834 | tmp = fieldFromInstruction(insn, 16, 5); |
8835 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8836 | tmp = fieldFromInstruction(insn, 21, 5); |
8837 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8838 | return S; |
8839 | case 172: |
8840 | tmp = fieldFromInstruction(insn, 11, 5); |
8841 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8842 | tmp = fieldFromInstruction(insn, 11, 5); |
8843 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8844 | tmp = fieldFromInstruction(insn, 16, 5); |
8845 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8846 | tmp = fieldFromInstruction(insn, 21, 5); |
8847 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8848 | return S; |
8849 | case 173: |
8850 | if (!Check(S, DecodePOP35GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8851 | return S; |
8852 | case 174: |
8853 | tmp = fieldFromInstruction(insn, 21, 5); |
8854 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8855 | tmp = fieldFromInstruction(insn, 0, 19); |
8856 | if (!Check(S, DecodeSimm19Lsl2(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8857 | return S; |
8858 | case 175: |
8859 | tmp = fieldFromInstruction(insn, 21, 5); |
8860 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8861 | tmp = fieldFromInstruction(insn, 0, 16); |
8862 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8863 | return S; |
8864 | case 176: |
8865 | if (!Check(S, DecodePOP37GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8866 | return S; |
8867 | case 177: |
8868 | tmp = fieldFromInstruction(insn, 21, 5); |
8869 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8870 | tmp = fieldFromInstruction(insn, 0, 21); |
8871 | if (!Check(S, DecodeBranchTarget21MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8872 | return S; |
8873 | case 178: |
8874 | tmp = fieldFromInstruction(insn, 0, 26); |
8875 | if (!Check(S, DecodeBranchTarget26MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8876 | return S; |
8877 | case 179: |
8878 | if (!Check(S, DecodeBlezGroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8879 | return S; |
8880 | case 180: |
8881 | if (!Check(S, DecodePOP65GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8882 | return S; |
8883 | case 181: |
8884 | if (!Check(S, DecodeBgtzGroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8885 | return S; |
8886 | case 182: |
8887 | if (!Check(S, DecodePOP75GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8888 | return S; |
8889 | case 183: |
8890 | tmp = fieldFromInstruction(insn, 11, 5); |
8891 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8892 | tmp = fieldFromInstruction(insn, 16, 5); |
8893 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8894 | tmp = fieldFromInstruction(insn, 6, 5); |
8895 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8896 | return S; |
8897 | case 184: |
8898 | tmp = fieldFromInstruction(insn, 11, 5); |
8899 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8900 | tmp = fieldFromInstruction(insn, 21, 5); |
8901 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8902 | tmp = fieldFromInstruction(insn, 18, 3); |
8903 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8904 | tmp = fieldFromInstruction(insn, 11, 5); |
8905 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8906 | return S; |
8907 | case 185: |
8908 | tmp = fieldFromInstruction(insn, 11, 5); |
8909 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8910 | tmp = fieldFromInstruction(insn, 21, 5); |
8911 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8912 | tmp = fieldFromInstruction(insn, 16, 5); |
8913 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8914 | tmp = fieldFromInstruction(insn, 6, 2); |
8915 | if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8916 | return S; |
8917 | case 186: |
8918 | tmp = fieldFromInstruction(insn, 21, 5); |
8919 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8920 | return S; |
8921 | case 187: |
8922 | tmp = fieldFromInstruction(insn, 11, 5); |
8923 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8924 | tmp = fieldFromInstruction(insn, 21, 5); |
8925 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8926 | tmp = fieldFromInstruction(insn, 16, 5); |
8927 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8928 | tmp = fieldFromInstruction(insn, 11, 5); |
8929 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8930 | return S; |
8931 | case 188: |
8932 | tmp = fieldFromInstruction(insn, 6, 20); |
8933 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8934 | return S; |
8935 | case 189: |
8936 | tmp = fieldFromInstruction(insn, 6, 5); |
8937 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8938 | return S; |
8939 | case 190: |
8940 | tmp = fieldFromInstruction(insn, 11, 5); |
8941 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8942 | return S; |
8943 | case 191: |
8944 | tmp = fieldFromInstruction(insn, 11, 5); |
8945 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8946 | tmp = fieldFromInstruction(insn, 21, 2); |
8947 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8948 | return S; |
8949 | case 192: |
8950 | tmp = fieldFromInstruction(insn, 11, 2); |
8951 | if (!Check(S, DecodeHI32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8952 | tmp = fieldFromInstruction(insn, 21, 5); |
8953 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8954 | return S; |
8955 | case 193: |
8956 | tmp = fieldFromInstruction(insn, 11, 2); |
8957 | if (!Check(S, DecodeLO32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8958 | tmp = fieldFromInstruction(insn, 21, 5); |
8959 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8960 | return S; |
8961 | case 194: |
8962 | tmp = fieldFromInstruction(insn, 11, 5); |
8963 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8964 | tmp = fieldFromInstruction(insn, 21, 5); |
8965 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8966 | tmp = fieldFromInstruction(insn, 16, 5); |
8967 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8968 | tmp = fieldFromInstruction(insn, 6, 2); |
8969 | if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8970 | return S; |
8971 | case 195: |
8972 | tmp = fieldFromInstruction(insn, 11, 2); |
8973 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8974 | tmp = fieldFromInstruction(insn, 21, 5); |
8975 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8976 | tmp = fieldFromInstruction(insn, 16, 5); |
8977 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8978 | return S; |
8979 | case 196: |
8980 | tmp = fieldFromInstruction(insn, 21, 5); |
8981 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8982 | tmp = fieldFromInstruction(insn, 16, 5); |
8983 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8984 | tmp = fieldFromInstruction(insn, 6, 10); |
8985 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
8986 | return S; |
8987 | case 197: |
8988 | tmp = fieldFromInstruction(insn, 21, 5); |
8989 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8990 | tmp = fieldFromInstruction(insn, 0, 16); |
8991 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8992 | return S; |
8993 | case 198: |
8994 | tmp = fieldFromInstruction(insn, 0, 16); |
8995 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
8996 | return S; |
8997 | case 199: |
8998 | if (!Check(S, DecodeSyncI(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
8999 | return S; |
9000 | case 200: |
9001 | if (!Check(S, DecodeJumpTarget(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
9002 | return S; |
9003 | case 201: |
9004 | tmp = fieldFromInstruction(insn, 21, 5); |
9005 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9006 | tmp = fieldFromInstruction(insn, 16, 5); |
9007 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9008 | tmp = fieldFromInstruction(insn, 0, 16); |
9009 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9010 | return S; |
9011 | case 202: |
9012 | tmp = fieldFromInstruction(insn, 16, 5); |
9013 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9014 | tmp = fieldFromInstruction(insn, 21, 5); |
9015 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9016 | tmp = fieldFromInstruction(insn, 0, 16); |
9017 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9018 | return S; |
9019 | case 203: |
9020 | tmp = fieldFromInstruction(insn, 16, 5); |
9021 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9022 | tmp = fieldFromInstruction(insn, 21, 5); |
9023 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9024 | tmp = fieldFromInstruction(insn, 0, 16); |
9025 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9026 | return S; |
9027 | case 204: |
9028 | tmp = fieldFromInstruction(insn, 16, 5); |
9029 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9030 | tmp = fieldFromInstruction(insn, 11, 5); |
9031 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9032 | tmp = fieldFromInstruction(insn, 0, 3); |
9033 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9034 | return S; |
9035 | case 205: |
9036 | tmp = fieldFromInstruction(insn, 11, 5); |
9037 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9038 | tmp = fieldFromInstruction(insn, 16, 5); |
9039 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9040 | tmp = fieldFromInstruction(insn, 0, 3); |
9041 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9042 | return S; |
9043 | case 206: |
9044 | tmp = fieldFromInstruction(insn, 11, 5); |
9045 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9046 | tmp = fieldFromInstruction(insn, 16, 5); |
9047 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9048 | tmp = fieldFromInstruction(insn, 5, 1); |
9049 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9050 | tmp = fieldFromInstruction(insn, 0, 3); |
9051 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9052 | tmp = fieldFromInstruction(insn, 4, 1); |
9053 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9054 | return S; |
9055 | case 207: |
9056 | tmp = fieldFromInstruction(insn, 11, 10); |
9057 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9058 | return S; |
9059 | case 208: |
9060 | tmp = fieldFromInstruction(insn, 16, 5); |
9061 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9062 | tmp = fieldFromInstruction(insn, 11, 5); |
9063 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9064 | return S; |
9065 | case 209: |
9066 | tmp = fieldFromInstruction(insn, 16, 5); |
9067 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9068 | tmp = fieldFromInstruction(insn, 11, 5); |
9069 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9070 | return S; |
9071 | case 210: |
9072 | tmp = fieldFromInstruction(insn, 16, 5); |
9073 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9074 | tmp = fieldFromInstruction(insn, 11, 5); |
9075 | if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9076 | return S; |
9077 | case 211: |
9078 | tmp = fieldFromInstruction(insn, 16, 5); |
9079 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9080 | tmp = fieldFromInstruction(insn, 11, 5); |
9081 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9082 | return S; |
9083 | case 212: |
9084 | tmp = fieldFromInstruction(insn, 11, 5); |
9085 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9086 | tmp = fieldFromInstruction(insn, 16, 5); |
9087 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9088 | return S; |
9089 | case 213: |
9090 | tmp = fieldFromInstruction(insn, 11, 5); |
9091 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9092 | tmp = fieldFromInstruction(insn, 16, 5); |
9093 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9094 | return S; |
9095 | case 214: |
9096 | tmp = fieldFromInstruction(insn, 11, 5); |
9097 | if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9098 | tmp = fieldFromInstruction(insn, 16, 5); |
9099 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9100 | return S; |
9101 | case 215: |
9102 | tmp = fieldFromInstruction(insn, 11, 5); |
9103 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9104 | tmp = fieldFromInstruction(insn, 11, 5); |
9105 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9106 | tmp = fieldFromInstruction(insn, 16, 5); |
9107 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9108 | return S; |
9109 | case 216: |
9110 | tmp = fieldFromInstruction(insn, 18, 3); |
9111 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9112 | tmp = fieldFromInstruction(insn, 0, 16); |
9113 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9114 | return S; |
9115 | case 217: |
9116 | tmp = fieldFromInstruction(insn, 16, 5); |
9117 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9118 | tmp = fieldFromInstruction(insn, 0, 16); |
9119 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9120 | return S; |
9121 | case 218: |
9122 | tmp = fieldFromInstruction(insn, 6, 5); |
9123 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9124 | tmp = fieldFromInstruction(insn, 11, 5); |
9125 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9126 | tmp = fieldFromInstruction(insn, 16, 5); |
9127 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9128 | return S; |
9129 | case 219: |
9130 | tmp = fieldFromInstruction(insn, 6, 5); |
9131 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9132 | tmp = fieldFromInstruction(insn, 11, 5); |
9133 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9134 | return S; |
9135 | case 220: |
9136 | tmp = fieldFromInstruction(insn, 6, 5); |
9137 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9138 | tmp = fieldFromInstruction(insn, 11, 5); |
9139 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9140 | tmp = fieldFromInstruction(insn, 18, 3); |
9141 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9142 | tmp = fieldFromInstruction(insn, 6, 5); |
9143 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9144 | return S; |
9145 | case 221: |
9146 | tmp = fieldFromInstruction(insn, 6, 5); |
9147 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9148 | tmp = fieldFromInstruction(insn, 11, 5); |
9149 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9150 | tmp = fieldFromInstruction(insn, 16, 5); |
9151 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9152 | tmp = fieldFromInstruction(insn, 6, 5); |
9153 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9154 | return S; |
9155 | case 222: |
9156 | tmp = fieldFromInstruction(insn, 6, 5); |
9157 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9158 | tmp = fieldFromInstruction(insn, 11, 5); |
9159 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9160 | return S; |
9161 | case 223: |
9162 | tmp = fieldFromInstruction(insn, 6, 5); |
9163 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9164 | tmp = fieldFromInstruction(insn, 11, 5); |
9165 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9166 | return S; |
9167 | case 224: |
9168 | tmp = fieldFromInstruction(insn, 8, 3); |
9169 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9170 | tmp = fieldFromInstruction(insn, 11, 5); |
9171 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9172 | tmp = fieldFromInstruction(insn, 16, 5); |
9173 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9174 | return S; |
9175 | case 225: |
9176 | tmp = fieldFromInstruction(insn, 6, 5); |
9177 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9178 | tmp = fieldFromInstruction(insn, 11, 5); |
9179 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9180 | tmp = fieldFromInstruction(insn, 16, 5); |
9181 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9182 | return S; |
9183 | case 226: |
9184 | tmp = fieldFromInstruction(insn, 6, 5); |
9185 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9186 | tmp = fieldFromInstruction(insn, 11, 5); |
9187 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9188 | return S; |
9189 | case 227: |
9190 | tmp = fieldFromInstruction(insn, 6, 5); |
9191 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9192 | tmp = fieldFromInstruction(insn, 11, 5); |
9193 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9194 | return S; |
9195 | case 228: |
9196 | tmp = fieldFromInstruction(insn, 6, 5); |
9197 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9198 | tmp = fieldFromInstruction(insn, 11, 5); |
9199 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9200 | tmp = fieldFromInstruction(insn, 18, 3); |
9201 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9202 | tmp = fieldFromInstruction(insn, 6, 5); |
9203 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9204 | return S; |
9205 | case 229: |
9206 | tmp = fieldFromInstruction(insn, 6, 5); |
9207 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9208 | tmp = fieldFromInstruction(insn, 11, 5); |
9209 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9210 | tmp = fieldFromInstruction(insn, 16, 5); |
9211 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9212 | tmp = fieldFromInstruction(insn, 6, 5); |
9213 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9214 | return S; |
9215 | case 230: |
9216 | tmp = fieldFromInstruction(insn, 6, 5); |
9217 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9218 | tmp = fieldFromInstruction(insn, 11, 5); |
9219 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9220 | return S; |
9221 | case 231: |
9222 | tmp = fieldFromInstruction(insn, 8, 3); |
9223 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9224 | tmp = fieldFromInstruction(insn, 11, 5); |
9225 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9226 | tmp = fieldFromInstruction(insn, 16, 5); |
9227 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9228 | return S; |
9229 | case 232: |
9230 | tmp = fieldFromInstruction(insn, 16, 5); |
9231 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9232 | tmp = fieldFromInstruction(insn, 0, 16); |
9233 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9234 | return S; |
9235 | case 233: |
9236 | tmp = fieldFromInstruction(insn, 16, 5); |
9237 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9238 | tmp = fieldFromInstruction(insn, 0, 16); |
9239 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9240 | return S; |
9241 | case 234: |
9242 | tmp = fieldFromInstruction(insn, 16, 5); |
9243 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9244 | tmp = fieldFromInstruction(insn, 0, 16); |
9245 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9246 | return S; |
9247 | case 235: |
9248 | tmp = fieldFromInstruction(insn, 16, 5); |
9249 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9250 | tmp = fieldFromInstruction(insn, 11, 5); |
9251 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9252 | tmp = fieldFromInstruction(insn, 0, 3); |
9253 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9254 | return S; |
9255 | case 236: |
9256 | tmp = fieldFromInstruction(insn, 11, 5); |
9257 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9258 | tmp = fieldFromInstruction(insn, 16, 5); |
9259 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9260 | tmp = fieldFromInstruction(insn, 0, 3); |
9261 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9262 | return S; |
9263 | case 237: |
9264 | tmp = fieldFromInstruction(insn, 6, 5); |
9265 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9266 | tmp = fieldFromInstruction(insn, 21, 5); |
9267 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9268 | tmp = fieldFromInstruction(insn, 16, 5); |
9269 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9270 | return S; |
9271 | case 238: |
9272 | tmp = fieldFromInstruction(insn, 6, 5); |
9273 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9274 | tmp = fieldFromInstruction(insn, 21, 5); |
9275 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9276 | tmp = fieldFromInstruction(insn, 16, 5); |
9277 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9278 | return S; |
9279 | case 239: |
9280 | tmp = fieldFromInstruction(insn, 11, 5); |
9281 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9282 | tmp = fieldFromInstruction(insn, 21, 5); |
9283 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9284 | tmp = fieldFromInstruction(insn, 16, 5); |
9285 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9286 | return S; |
9287 | case 240: |
9288 | tmp = fieldFromInstruction(insn, 11, 5); |
9289 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9290 | tmp = fieldFromInstruction(insn, 21, 5); |
9291 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9292 | tmp = fieldFromInstruction(insn, 16, 5); |
9293 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9294 | return S; |
9295 | case 241: |
9296 | tmp = fieldFromInstruction(insn, 6, 5); |
9297 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9298 | tmp = fieldFromInstruction(insn, 21, 5); |
9299 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9300 | tmp = fieldFromInstruction(insn, 11, 5); |
9301 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9302 | tmp = fieldFromInstruction(insn, 16, 5); |
9303 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9304 | return S; |
9305 | case 242: |
9306 | tmp = fieldFromInstruction(insn, 6, 5); |
9307 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9308 | tmp = fieldFromInstruction(insn, 21, 5); |
9309 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9310 | tmp = fieldFromInstruction(insn, 11, 5); |
9311 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9312 | tmp = fieldFromInstruction(insn, 16, 5); |
9313 | if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9314 | return S; |
9315 | case 243: |
9316 | tmp = fieldFromInstruction(insn, 11, 2); |
9317 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9318 | tmp = fieldFromInstruction(insn, 21, 5); |
9319 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9320 | tmp = fieldFromInstruction(insn, 16, 5); |
9321 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9322 | tmp = fieldFromInstruction(insn, 11, 2); |
9323 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9324 | return S; |
9325 | case 244: |
9326 | tmp = 0x0; |
9327 | insertBits(tmp, fieldFromInstruction(insn, 11, 5), 0, 5); |
9328 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 0, 5); |
9329 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9330 | tmp = fieldFromInstruction(insn, 21, 5); |
9331 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9332 | return S; |
9333 | case 245: |
9334 | tmp = fieldFromInstruction(insn, 6, 5); |
9335 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9336 | tmp = fieldFromInstruction(insn, 11, 5); |
9337 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9338 | tmp = fieldFromInstruction(insn, 16, 8); |
9339 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9340 | return S; |
9341 | case 246: |
9342 | tmp = fieldFromInstruction(insn, 6, 5); |
9343 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9344 | tmp = fieldFromInstruction(insn, 6, 5); |
9345 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9346 | tmp = fieldFromInstruction(insn, 11, 5); |
9347 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9348 | tmp = fieldFromInstruction(insn, 16, 8); |
9349 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9350 | return S; |
9351 | case 247: |
9352 | tmp = fieldFromInstruction(insn, 6, 5); |
9353 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9354 | tmp = fieldFromInstruction(insn, 11, 5); |
9355 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9356 | tmp = fieldFromInstruction(insn, 16, 8); |
9357 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9358 | return S; |
9359 | case 248: |
9360 | tmp = fieldFromInstruction(insn, 6, 5); |
9361 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9362 | tmp = fieldFromInstruction(insn, 11, 5); |
9363 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9364 | tmp = fieldFromInstruction(insn, 16, 8); |
9365 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9366 | return S; |
9367 | case 249: |
9368 | tmp = fieldFromInstruction(insn, 6, 5); |
9369 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9370 | tmp = fieldFromInstruction(insn, 11, 5); |
9371 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9372 | tmp = fieldFromInstruction(insn, 16, 5); |
9373 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9374 | return S; |
9375 | case 250: |
9376 | tmp = fieldFromInstruction(insn, 6, 5); |
9377 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9378 | tmp = fieldFromInstruction(insn, 11, 5); |
9379 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9380 | tmp = fieldFromInstruction(insn, 16, 5); |
9381 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9382 | return S; |
9383 | case 251: |
9384 | tmp = fieldFromInstruction(insn, 6, 5); |
9385 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9386 | tmp = fieldFromInstruction(insn, 11, 5); |
9387 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9388 | tmp = fieldFromInstruction(insn, 16, 5); |
9389 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9390 | return S; |
9391 | case 252: |
9392 | tmp = fieldFromInstruction(insn, 6, 5); |
9393 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9394 | tmp = fieldFromInstruction(insn, 11, 5); |
9395 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9396 | tmp = fieldFromInstruction(insn, 16, 5); |
9397 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9398 | return S; |
9399 | case 253: |
9400 | tmp = fieldFromInstruction(insn, 6, 5); |
9401 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9402 | tmp = fieldFromInstruction(insn, 11, 10); |
9403 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9404 | return S; |
9405 | case 254: |
9406 | tmp = fieldFromInstruction(insn, 6, 5); |
9407 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9408 | tmp = fieldFromInstruction(insn, 11, 10); |
9409 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9410 | return S; |
9411 | case 255: |
9412 | tmp = fieldFromInstruction(insn, 6, 5); |
9413 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9414 | tmp = fieldFromInstruction(insn, 11, 10); |
9415 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9416 | return S; |
9417 | case 256: |
9418 | tmp = fieldFromInstruction(insn, 6, 5); |
9419 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9420 | tmp = fieldFromInstruction(insn, 11, 10); |
9421 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9422 | return S; |
9423 | case 257: |
9424 | tmp = fieldFromInstruction(insn, 6, 5); |
9425 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9426 | tmp = fieldFromInstruction(insn, 11, 5); |
9427 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9428 | tmp = fieldFromInstruction(insn, 16, 6); |
9429 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9430 | return S; |
9431 | case 258: |
9432 | tmp = fieldFromInstruction(insn, 6, 5); |
9433 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9434 | tmp = fieldFromInstruction(insn, 11, 5); |
9435 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9436 | tmp = fieldFromInstruction(insn, 16, 4); |
9437 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9438 | return S; |
9439 | case 259: |
9440 | tmp = fieldFromInstruction(insn, 6, 5); |
9441 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9442 | tmp = fieldFromInstruction(insn, 11, 5); |
9443 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9444 | tmp = fieldFromInstruction(insn, 16, 3); |
9445 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9446 | return S; |
9447 | case 260: |
9448 | tmp = fieldFromInstruction(insn, 6, 5); |
9449 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9450 | tmp = fieldFromInstruction(insn, 6, 5); |
9451 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9452 | tmp = fieldFromInstruction(insn, 11, 5); |
9453 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9454 | tmp = fieldFromInstruction(insn, 16, 6); |
9455 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9456 | return S; |
9457 | case 261: |
9458 | tmp = fieldFromInstruction(insn, 6, 5); |
9459 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9460 | tmp = fieldFromInstruction(insn, 6, 5); |
9461 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9462 | tmp = fieldFromInstruction(insn, 11, 5); |
9463 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9464 | tmp = fieldFromInstruction(insn, 16, 5); |
9465 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9466 | return S; |
9467 | case 262: |
9468 | tmp = fieldFromInstruction(insn, 6, 5); |
9469 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9470 | tmp = fieldFromInstruction(insn, 6, 5); |
9471 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9472 | tmp = fieldFromInstruction(insn, 11, 5); |
9473 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9474 | tmp = fieldFromInstruction(insn, 16, 4); |
9475 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9476 | return S; |
9477 | case 263: |
9478 | tmp = fieldFromInstruction(insn, 6, 5); |
9479 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9480 | tmp = fieldFromInstruction(insn, 6, 5); |
9481 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9482 | tmp = fieldFromInstruction(insn, 11, 5); |
9483 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9484 | tmp = fieldFromInstruction(insn, 16, 3); |
9485 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9486 | return S; |
9487 | case 264: |
9488 | tmp = fieldFromInstruction(insn, 6, 5); |
9489 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9490 | tmp = fieldFromInstruction(insn, 11, 5); |
9491 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9492 | tmp = fieldFromInstruction(insn, 16, 5); |
9493 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9494 | return S; |
9495 | case 265: |
9496 | tmp = fieldFromInstruction(insn, 6, 5); |
9497 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9498 | tmp = fieldFromInstruction(insn, 11, 5); |
9499 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9500 | tmp = fieldFromInstruction(insn, 16, 5); |
9501 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9502 | return S; |
9503 | case 266: |
9504 | tmp = fieldFromInstruction(insn, 6, 5); |
9505 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9506 | tmp = fieldFromInstruction(insn, 11, 5); |
9507 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9508 | tmp = fieldFromInstruction(insn, 16, 5); |
9509 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9510 | return S; |
9511 | case 267: |
9512 | tmp = fieldFromInstruction(insn, 6, 5); |
9513 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9514 | tmp = fieldFromInstruction(insn, 11, 5); |
9515 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9516 | tmp = fieldFromInstruction(insn, 16, 5); |
9517 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9518 | return S; |
9519 | case 268: |
9520 | tmp = fieldFromInstruction(insn, 6, 5); |
9521 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9522 | tmp = fieldFromInstruction(insn, 6, 5); |
9523 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9524 | tmp = fieldFromInstruction(insn, 11, 5); |
9525 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9526 | tmp = fieldFromInstruction(insn, 16, 5); |
9527 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9528 | return S; |
9529 | case 269: |
9530 | tmp = fieldFromInstruction(insn, 6, 5); |
9531 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9532 | tmp = fieldFromInstruction(insn, 6, 5); |
9533 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9534 | tmp = fieldFromInstruction(insn, 11, 5); |
9535 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9536 | tmp = fieldFromInstruction(insn, 16, 5); |
9537 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9538 | return S; |
9539 | case 270: |
9540 | tmp = fieldFromInstruction(insn, 6, 5); |
9541 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9542 | tmp = fieldFromInstruction(insn, 6, 5); |
9543 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9544 | tmp = fieldFromInstruction(insn, 11, 5); |
9545 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9546 | tmp = fieldFromInstruction(insn, 16, 5); |
9547 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9548 | return S; |
9549 | case 271: |
9550 | tmp = fieldFromInstruction(insn, 6, 5); |
9551 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9552 | tmp = fieldFromInstruction(insn, 6, 5); |
9553 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9554 | tmp = fieldFromInstruction(insn, 11, 5); |
9555 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9556 | tmp = fieldFromInstruction(insn, 16, 5); |
9557 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9558 | return S; |
9559 | case 272: |
9560 | tmp = fieldFromInstruction(insn, 6, 5); |
9561 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9562 | tmp = fieldFromInstruction(insn, 11, 5); |
9563 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9564 | tmp = fieldFromInstruction(insn, 16, 5); |
9565 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9566 | return S; |
9567 | case 273: |
9568 | tmp = fieldFromInstruction(insn, 6, 5); |
9569 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9570 | tmp = fieldFromInstruction(insn, 11, 5); |
9571 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9572 | tmp = fieldFromInstruction(insn, 16, 5); |
9573 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9574 | return S; |
9575 | case 274: |
9576 | tmp = fieldFromInstruction(insn, 6, 5); |
9577 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9578 | tmp = fieldFromInstruction(insn, 11, 5); |
9579 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9580 | tmp = fieldFromInstruction(insn, 16, 5); |
9581 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9582 | return S; |
9583 | case 275: |
9584 | tmp = fieldFromInstruction(insn, 6, 5); |
9585 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9586 | tmp = fieldFromInstruction(insn, 6, 5); |
9587 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9588 | tmp = fieldFromInstruction(insn, 11, 5); |
9589 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9590 | tmp = fieldFromInstruction(insn, 16, 5); |
9591 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9592 | return S; |
9593 | case 276: |
9594 | tmp = fieldFromInstruction(insn, 6, 5); |
9595 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9596 | tmp = fieldFromInstruction(insn, 6, 5); |
9597 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9598 | tmp = fieldFromInstruction(insn, 11, 5); |
9599 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9600 | tmp = fieldFromInstruction(insn, 16, 5); |
9601 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9602 | return S; |
9603 | case 277: |
9604 | tmp = fieldFromInstruction(insn, 6, 5); |
9605 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9606 | tmp = fieldFromInstruction(insn, 6, 5); |
9607 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9608 | tmp = fieldFromInstruction(insn, 11, 5); |
9609 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9610 | tmp = fieldFromInstruction(insn, 16, 5); |
9611 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9612 | return S; |
9613 | case 278: |
9614 | tmp = fieldFromInstruction(insn, 6, 5); |
9615 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9616 | tmp = fieldFromInstruction(insn, 6, 5); |
9617 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9618 | tmp = fieldFromInstruction(insn, 11, 5); |
9619 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9620 | tmp = fieldFromInstruction(insn, 16, 5); |
9621 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9622 | return S; |
9623 | case 279: |
9624 | tmp = fieldFromInstruction(insn, 6, 5); |
9625 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9626 | tmp = fieldFromInstruction(insn, 6, 5); |
9627 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9628 | tmp = fieldFromInstruction(insn, 11, 5); |
9629 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9630 | tmp = fieldFromInstruction(insn, 16, 5); |
9631 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9632 | return S; |
9633 | case 280: |
9634 | tmp = fieldFromInstruction(insn, 6, 5); |
9635 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9636 | tmp = fieldFromInstruction(insn, 6, 5); |
9637 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9638 | tmp = fieldFromInstruction(insn, 11, 5); |
9639 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9640 | tmp = fieldFromInstruction(insn, 16, 5); |
9641 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9642 | return S; |
9643 | case 281: |
9644 | tmp = fieldFromInstruction(insn, 6, 5); |
9645 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9646 | tmp = fieldFromInstruction(insn, 6, 5); |
9647 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9648 | tmp = fieldFromInstruction(insn, 11, 5); |
9649 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9650 | tmp = fieldFromInstruction(insn, 16, 5); |
9651 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9652 | return S; |
9653 | case 282: |
9654 | tmp = fieldFromInstruction(insn, 6, 5); |
9655 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9656 | tmp = fieldFromInstruction(insn, 11, 5); |
9657 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9658 | tmp = fieldFromInstruction(insn, 16, 5); |
9659 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9660 | return S; |
9661 | case 283: |
9662 | tmp = fieldFromInstruction(insn, 6, 5); |
9663 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9664 | tmp = fieldFromInstruction(insn, 11, 5); |
9665 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9666 | tmp = fieldFromInstruction(insn, 16, 5); |
9667 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9668 | return S; |
9669 | case 284: |
9670 | tmp = fieldFromInstruction(insn, 6, 5); |
9671 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9672 | tmp = fieldFromInstruction(insn, 11, 5); |
9673 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9674 | tmp = fieldFromInstruction(insn, 16, 5); |
9675 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9676 | return S; |
9677 | case 285: |
9678 | tmp = fieldFromInstruction(insn, 6, 5); |
9679 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9680 | tmp = fieldFromInstruction(insn, 11, 5); |
9681 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9682 | tmp = fieldFromInstruction(insn, 16, 5); |
9683 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9684 | return S; |
9685 | case 286: |
9686 | tmp = fieldFromInstruction(insn, 6, 5); |
9687 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9688 | tmp = fieldFromInstruction(insn, 6, 5); |
9689 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9690 | tmp = fieldFromInstruction(insn, 11, 5); |
9691 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9692 | tmp = fieldFromInstruction(insn, 16, 4); |
9693 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9694 | return S; |
9695 | case 287: |
9696 | tmp = fieldFromInstruction(insn, 6, 5); |
9697 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9698 | tmp = fieldFromInstruction(insn, 6, 5); |
9699 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9700 | tmp = fieldFromInstruction(insn, 11, 5); |
9701 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9702 | tmp = fieldFromInstruction(insn, 16, 3); |
9703 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9704 | return S; |
9705 | case 288: |
9706 | tmp = fieldFromInstruction(insn, 6, 5); |
9707 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9708 | tmp = fieldFromInstruction(insn, 6, 5); |
9709 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9710 | tmp = fieldFromInstruction(insn, 11, 5); |
9711 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9712 | tmp = fieldFromInstruction(insn, 16, 2); |
9713 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9714 | return S; |
9715 | case 289: |
9716 | tmp = fieldFromInstruction(insn, 6, 5); |
9717 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9718 | tmp = fieldFromInstruction(insn, 6, 5); |
9719 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9720 | tmp = fieldFromInstruction(insn, 11, 5); |
9721 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9722 | tmp = fieldFromInstruction(insn, 16, 1); |
9723 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9724 | return S; |
9725 | case 290: |
9726 | tmp = fieldFromInstruction(insn, 6, 5); |
9727 | if (!Check(S, DecodeMSACtrlRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9728 | tmp = fieldFromInstruction(insn, 11, 5); |
9729 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9730 | return S; |
9731 | case 291: |
9732 | tmp = fieldFromInstruction(insn, 6, 5); |
9733 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9734 | tmp = fieldFromInstruction(insn, 11, 5); |
9735 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9736 | tmp = fieldFromInstruction(insn, 16, 4); |
9737 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9738 | return S; |
9739 | case 292: |
9740 | tmp = fieldFromInstruction(insn, 6, 5); |
9741 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9742 | tmp = fieldFromInstruction(insn, 11, 5); |
9743 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9744 | tmp = fieldFromInstruction(insn, 16, 3); |
9745 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9746 | return S; |
9747 | case 293: |
9748 | tmp = fieldFromInstruction(insn, 6, 5); |
9749 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9750 | tmp = fieldFromInstruction(insn, 11, 5); |
9751 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9752 | tmp = fieldFromInstruction(insn, 16, 2); |
9753 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9754 | return S; |
9755 | case 294: |
9756 | tmp = fieldFromInstruction(insn, 6, 5); |
9757 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9758 | tmp = fieldFromInstruction(insn, 11, 5); |
9759 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9760 | tmp = fieldFromInstruction(insn, 16, 1); |
9761 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9762 | return S; |
9763 | case 295: |
9764 | tmp = fieldFromInstruction(insn, 6, 5); |
9765 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9766 | tmp = fieldFromInstruction(insn, 11, 5); |
9767 | if (!Check(S, DecodeMSACtrlRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9768 | return S; |
9769 | case 296: |
9770 | tmp = fieldFromInstruction(insn, 6, 5); |
9771 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9772 | tmp = fieldFromInstruction(insn, 11, 5); |
9773 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9774 | tmp = fieldFromInstruction(insn, 16, 4); |
9775 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9776 | return S; |
9777 | case 297: |
9778 | tmp = fieldFromInstruction(insn, 6, 5); |
9779 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9780 | tmp = fieldFromInstruction(insn, 11, 5); |
9781 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9782 | tmp = fieldFromInstruction(insn, 16, 3); |
9783 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9784 | return S; |
9785 | case 298: |
9786 | tmp = fieldFromInstruction(insn, 6, 5); |
9787 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9788 | tmp = fieldFromInstruction(insn, 11, 5); |
9789 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9790 | tmp = fieldFromInstruction(insn, 16, 2); |
9791 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9792 | return S; |
9793 | case 299: |
9794 | tmp = fieldFromInstruction(insn, 6, 5); |
9795 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9796 | tmp = fieldFromInstruction(insn, 11, 5); |
9797 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9798 | tmp = fieldFromInstruction(insn, 16, 1); |
9799 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9800 | return S; |
9801 | case 300: |
9802 | tmp = fieldFromInstruction(insn, 6, 5); |
9803 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9804 | tmp = fieldFromInstruction(insn, 11, 5); |
9805 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9806 | return S; |
9807 | case 301: |
9808 | tmp = fieldFromInstruction(insn, 6, 5); |
9809 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9810 | tmp = fieldFromInstruction(insn, 6, 5); |
9811 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9812 | tmp = fieldFromInstruction(insn, 11, 5); |
9813 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9814 | tmp = fieldFromInstruction(insn, 16, 4); |
9815 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9816 | return S; |
9817 | case 302: |
9818 | tmp = fieldFromInstruction(insn, 6, 5); |
9819 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9820 | tmp = fieldFromInstruction(insn, 6, 5); |
9821 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9822 | tmp = fieldFromInstruction(insn, 11, 5); |
9823 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9824 | tmp = fieldFromInstruction(insn, 16, 3); |
9825 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9826 | return S; |
9827 | case 303: |
9828 | tmp = fieldFromInstruction(insn, 6, 5); |
9829 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9830 | tmp = fieldFromInstruction(insn, 6, 5); |
9831 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9832 | tmp = fieldFromInstruction(insn, 11, 5); |
9833 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9834 | tmp = fieldFromInstruction(insn, 16, 2); |
9835 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9836 | return S; |
9837 | case 304: |
9838 | tmp = fieldFromInstruction(insn, 6, 5); |
9839 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9840 | tmp = fieldFromInstruction(insn, 6, 5); |
9841 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9842 | tmp = fieldFromInstruction(insn, 11, 5); |
9843 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9844 | tmp = fieldFromInstruction(insn, 16, 1); |
9845 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9846 | return S; |
9847 | case 305: |
9848 | if (!Check(S, DecodeINSVE_DF(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
9849 | return S; |
9850 | case 306: |
9851 | tmp = fieldFromInstruction(insn, 6, 5); |
9852 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9853 | tmp = fieldFromInstruction(insn, 11, 5); |
9854 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9855 | tmp = fieldFromInstruction(insn, 16, 5); |
9856 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9857 | return S; |
9858 | case 307: |
9859 | tmp = fieldFromInstruction(insn, 6, 5); |
9860 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9861 | tmp = fieldFromInstruction(insn, 11, 5); |
9862 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9863 | tmp = fieldFromInstruction(insn, 16, 5); |
9864 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9865 | return S; |
9866 | case 308: |
9867 | tmp = fieldFromInstruction(insn, 6, 5); |
9868 | if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9869 | tmp = fieldFromInstruction(insn, 11, 5); |
9870 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9871 | return S; |
9872 | case 309: |
9873 | tmp = fieldFromInstruction(insn, 6, 5); |
9874 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9875 | tmp = fieldFromInstruction(insn, 11, 5); |
9876 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9877 | return S; |
9878 | case 310: |
9879 | tmp = fieldFromInstruction(insn, 6, 5); |
9880 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9881 | tmp = fieldFromInstruction(insn, 11, 5); |
9882 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9883 | return S; |
9884 | case 311: |
9885 | tmp = fieldFromInstruction(insn, 6, 5); |
9886 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9887 | tmp = fieldFromInstruction(insn, 11, 5); |
9888 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9889 | return S; |
9890 | case 312: |
9891 | tmp = fieldFromInstruction(insn, 6, 5); |
9892 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9893 | tmp = fieldFromInstruction(insn, 11, 5); |
9894 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9895 | return S; |
9896 | case 313: |
9897 | tmp = fieldFromInstruction(insn, 6, 5); |
9898 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9899 | tmp = fieldFromInstruction(insn, 11, 5); |
9900 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9901 | return S; |
9902 | case 314: |
9903 | tmp = fieldFromInstruction(insn, 6, 5); |
9904 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9905 | tmp = fieldFromInstruction(insn, 11, 5); |
9906 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9907 | return S; |
9908 | case 315: |
9909 | tmp = fieldFromInstruction(insn, 6, 5); |
9910 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9911 | tmp = fieldFromInstruction(insn, 11, 5); |
9912 | if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9913 | return S; |
9914 | case 316: |
9915 | tmp = fieldFromInstruction(insn, 6, 5); |
9916 | if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9917 | tmp = fieldFromInstruction(insn, 11, 5); |
9918 | if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9919 | return S; |
9920 | case 317: |
9921 | if (!Check(S, DecodeMSA128Mem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
9922 | return S; |
9923 | case 318: |
9924 | tmp = fieldFromInstruction(insn, 16, 5); |
9925 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9926 | tmp = fieldFromInstruction(insn, 21, 5); |
9927 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9928 | tmp = fieldFromInstruction(insn, 6, 5); |
9929 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9930 | tmp = fieldFromInstruction(insn, 11, 5); |
9931 | if (!Check(S, DecodeUImmWithOffset<5, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9932 | return S; |
9933 | case 319: |
9934 | tmp = fieldFromInstruction(insn, 16, 5); |
9935 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9936 | tmp = fieldFromInstruction(insn, 21, 5); |
9937 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9938 | tmp = fieldFromInstruction(insn, 6, 5); |
9939 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
9940 | tmp = fieldFromInstruction(insn, 11, 5); |
9941 | if (!Check(S, DecodeInsSize(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9942 | tmp = fieldFromInstruction(insn, 16, 5); |
9943 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9944 | return S; |
9945 | case 320: |
9946 | tmp = fieldFromInstruction(insn, 21, 5); |
9947 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9948 | tmp = fieldFromInstruction(insn, 11, 5); |
9949 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9950 | tmp = fieldFromInstruction(insn, 16, 5); |
9951 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9952 | return S; |
9953 | case 321: |
9954 | tmp = fieldFromInstruction(insn, 11, 5); |
9955 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9956 | tmp = fieldFromInstruction(insn, 21, 5); |
9957 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9958 | tmp = fieldFromInstruction(insn, 16, 5); |
9959 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9960 | return S; |
9961 | case 322: |
9962 | tmp = fieldFromInstruction(insn, 16, 5); |
9963 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9964 | tmp = fieldFromInstruction(insn, 16, 5); |
9965 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9966 | tmp = fieldFromInstruction(insn, 21, 5); |
9967 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9968 | return S; |
9969 | case 323: |
9970 | tmp = fieldFromInstruction(insn, 11, 5); |
9971 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9972 | tmp = fieldFromInstruction(insn, 21, 5); |
9973 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9974 | tmp = fieldFromInstruction(insn, 16, 5); |
9975 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9976 | return S; |
9977 | case 324: |
9978 | tmp = fieldFromInstruction(insn, 11, 5); |
9979 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9980 | tmp = fieldFromInstruction(insn, 21, 5); |
9981 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9982 | return S; |
9983 | case 325: |
9984 | tmp = fieldFromInstruction(insn, 11, 5); |
9985 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9986 | tmp = fieldFromInstruction(insn, 21, 5); |
9987 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9988 | tmp = fieldFromInstruction(insn, 16, 5); |
9989 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9990 | return S; |
9991 | case 326: |
9992 | tmp = fieldFromInstruction(insn, 11, 5); |
9993 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9994 | tmp = fieldFromInstruction(insn, 21, 5); |
9995 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9996 | tmp = fieldFromInstruction(insn, 16, 5); |
9997 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
9998 | return S; |
9999 | case 327: |
10000 | tmp = fieldFromInstruction(insn, 16, 5); |
10001 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10002 | tmp = fieldFromInstruction(insn, 21, 5); |
10003 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10004 | tmp = fieldFromInstruction(insn, 11, 5); |
10005 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10006 | tmp = fieldFromInstruction(insn, 16, 5); |
10007 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10008 | return S; |
10009 | case 328: |
10010 | tmp = fieldFromInstruction(insn, 11, 5); |
10011 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10012 | tmp = fieldFromInstruction(insn, 16, 5); |
10013 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10014 | return S; |
10015 | case 329: |
10016 | tmp = fieldFromInstruction(insn, 11, 5); |
10017 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10018 | tmp = fieldFromInstruction(insn, 16, 10); |
10019 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10020 | return S; |
10021 | case 330: |
10022 | tmp = fieldFromInstruction(insn, 11, 5); |
10023 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10024 | tmp = fieldFromInstruction(insn, 16, 5); |
10025 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10026 | return S; |
10027 | case 331: |
10028 | tmp = fieldFromInstruction(insn, 11, 5); |
10029 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10030 | tmp = fieldFromInstruction(insn, 16, 5); |
10031 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10032 | return S; |
10033 | case 332: |
10034 | tmp = fieldFromInstruction(insn, 11, 5); |
10035 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10036 | tmp = fieldFromInstruction(insn, 16, 5); |
10037 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10038 | return S; |
10039 | case 333: |
10040 | tmp = fieldFromInstruction(insn, 11, 5); |
10041 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10042 | tmp = fieldFromInstruction(insn, 16, 5); |
10043 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10044 | tmp = fieldFromInstruction(insn, 21, 5); |
10045 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10046 | return S; |
10047 | case 334: |
10048 | tmp = fieldFromInstruction(insn, 11, 5); |
10049 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10050 | tmp = fieldFromInstruction(insn, 16, 5); |
10051 | if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10052 | tmp = fieldFromInstruction(insn, 21, 5); |
10053 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10054 | return S; |
10055 | case 335: |
10056 | tmp = fieldFromInstruction(insn, 11, 5); |
10057 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10058 | tmp = fieldFromInstruction(insn, 16, 5); |
10059 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10060 | tmp = fieldFromInstruction(insn, 21, 5); |
10061 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10062 | return S; |
10063 | case 336: |
10064 | if (!Check(S, DecodeMemEVA(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10065 | return S; |
10066 | case 337: |
10067 | if (!Check(S, DecodeCacheeOp_CacheOpR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10068 | return S; |
10069 | case 338: |
10070 | tmp = fieldFromInstruction(insn, 16, 5); |
10071 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10072 | tmp = fieldFromInstruction(insn, 21, 5); |
10073 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10074 | tmp = fieldFromInstruction(insn, 11, 5); |
10075 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10076 | tmp = fieldFromInstruction(insn, 16, 5); |
10077 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10078 | return S; |
10079 | case 339: |
10080 | tmp = fieldFromInstruction(insn, 16, 5); |
10081 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10082 | tmp = fieldFromInstruction(insn, 11, 2); |
10083 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10084 | tmp = fieldFromInstruction(insn, 21, 5); |
10085 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10086 | return S; |
10087 | case 340: |
10088 | tmp = fieldFromInstruction(insn, 16, 5); |
10089 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10090 | tmp = fieldFromInstruction(insn, 11, 2); |
10091 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10092 | tmp = fieldFromInstruction(insn, 21, 5); |
10093 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10094 | return S; |
10095 | case 341: |
10096 | tmp = fieldFromInstruction(insn, 11, 5); |
10097 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10098 | tmp = fieldFromInstruction(insn, 16, 10); |
10099 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10100 | return S; |
10101 | case 342: |
10102 | tmp = fieldFromInstruction(insn, 21, 5); |
10103 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10104 | tmp = fieldFromInstruction(insn, 11, 10); |
10105 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10106 | return S; |
10107 | case 343: |
10108 | tmp = fieldFromInstruction(insn, 11, 2); |
10109 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10110 | tmp = fieldFromInstruction(insn, 20, 6); |
10111 | if (!Check(S, DecodeSImmWithOffsetAndScale<6>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10112 | tmp = fieldFromInstruction(insn, 11, 2); |
10113 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10114 | return S; |
10115 | case 344: |
10116 | tmp = fieldFromInstruction(insn, 11, 2); |
10117 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10118 | tmp = fieldFromInstruction(insn, 21, 5); |
10119 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10120 | tmp = fieldFromInstruction(insn, 11, 2); |
10121 | if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10122 | return S; |
10123 | case 345: |
10124 | tmp = fieldFromInstruction(insn, 16, 5); |
10125 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10126 | tmp = fieldFromInstruction(insn, 11, 5); |
10127 | if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10128 | tmp = fieldFromInstruction(insn, 6, 3); |
10129 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10130 | return S; |
10131 | case 346: |
10132 | if (!Check(S, DecodeCacheOp(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10133 | return S; |
10134 | case 347: |
10135 | if (!Check(S, DecodeFMem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10136 | return S; |
10137 | case 348: |
10138 | if (!Check(S, DecodeFMem2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10139 | return S; |
10140 | case 349: |
10141 | if (!Check(S, DecodeDAHIDATI(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10142 | return S; |
10143 | case 350: |
10144 | tmp = fieldFromInstruction(insn, 0, 16); |
10145 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10146 | return S; |
10147 | case 351: |
10148 | if (!Check(S, DecodeBlezGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10149 | return S; |
10150 | case 352: |
10151 | if (!Check(S, DecodeBgtzGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10152 | return S; |
10153 | case 353: |
10154 | if (!Check(S, DecodeAddiGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10155 | return S; |
10156 | case 354: |
10157 | tmp = fieldFromInstruction(insn, 16, 5); |
10158 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10159 | tmp = fieldFromInstruction(insn, 0, 16); |
10160 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10161 | return S; |
10162 | case 355: |
10163 | tmp = fieldFromInstruction(insn, 6, 5); |
10164 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10165 | tmp = fieldFromInstruction(insn, 6, 5); |
10166 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10167 | tmp = fieldFromInstruction(insn, 11, 5); |
10168 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10169 | tmp = fieldFromInstruction(insn, 16, 5); |
10170 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10171 | return S; |
10172 | case 356: |
10173 | tmp = fieldFromInstruction(insn, 6, 5); |
10174 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10175 | tmp = fieldFromInstruction(insn, 6, 5); |
10176 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10177 | tmp = fieldFromInstruction(insn, 11, 5); |
10178 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10179 | tmp = fieldFromInstruction(insn, 16, 5); |
10180 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10181 | return S; |
10182 | case 357: |
10183 | tmp = fieldFromInstruction(insn, 6, 5); |
10184 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10185 | tmp = fieldFromInstruction(insn, 6, 5); |
10186 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10187 | tmp = fieldFromInstruction(insn, 11, 5); |
10188 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10189 | tmp = fieldFromInstruction(insn, 16, 5); |
10190 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10191 | return S; |
10192 | case 358: |
10193 | tmp = fieldFromInstruction(insn, 6, 5); |
10194 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10195 | tmp = fieldFromInstruction(insn, 11, 5); |
10196 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10197 | tmp = fieldFromInstruction(insn, 16, 5); |
10198 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10199 | return S; |
10200 | case 359: |
10201 | tmp = fieldFromInstruction(insn, 6, 5); |
10202 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10203 | tmp = fieldFromInstruction(insn, 11, 5); |
10204 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10205 | tmp = fieldFromInstruction(insn, 16, 5); |
10206 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10207 | return S; |
10208 | case 360: |
10209 | tmp = fieldFromInstruction(insn, 6, 5); |
10210 | if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10211 | tmp = fieldFromInstruction(insn, 11, 5); |
10212 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10213 | tmp = fieldFromInstruction(insn, 16, 5); |
10214 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10215 | return S; |
10216 | case 361: |
10217 | tmp = fieldFromInstruction(insn, 16, 5); |
10218 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10219 | tmp = fieldFromInstruction(insn, 0, 16); |
10220 | if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10221 | return S; |
10222 | case 362: |
10223 | if (!Check(S, DecodeFMemCop2R6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10224 | return S; |
10225 | case 363: |
10226 | if (!Check(S, DecodeBlezlGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10227 | return S; |
10228 | case 364: |
10229 | if (!Check(S, DecodeBgtzlGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10230 | return S; |
10231 | case 365: |
10232 | if (!Check(S, DecodeDaddiGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10233 | return S; |
10234 | case 366: |
10235 | tmp = fieldFromInstruction(insn, 16, 5); |
10236 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10237 | tmp = fieldFromInstruction(insn, 21, 5); |
10238 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10239 | tmp = fieldFromInstruction(insn, 0, 16); |
10240 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10241 | return S; |
10242 | case 367: |
10243 | if (!Check(S, DecodeCRC(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10244 | return S; |
10245 | case 368: |
10246 | tmp = fieldFromInstruction(insn, 11, 5); |
10247 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10248 | tmp = fieldFromInstruction(insn, 21, 5); |
10249 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10250 | tmp = fieldFromInstruction(insn, 16, 5); |
10251 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10252 | tmp = fieldFromInstruction(insn, 6, 2); |
10253 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10254 | return S; |
10255 | case 369: |
10256 | tmp = fieldFromInstruction(insn, 11, 5); |
10257 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10258 | tmp = fieldFromInstruction(insn, 16, 5); |
10259 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10260 | return S; |
10261 | case 370: |
10262 | tmp = fieldFromInstruction(insn, 11, 5); |
10263 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10264 | tmp = fieldFromInstruction(insn, 21, 5); |
10265 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10266 | tmp = fieldFromInstruction(insn, 16, 5); |
10267 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10268 | tmp = fieldFromInstruction(insn, 6, 3); |
10269 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10270 | return S; |
10271 | case 371: |
10272 | if (!Check(S, DecodeSpecial3LlSc(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10273 | return S; |
10274 | case 372: |
10275 | tmp = fieldFromInstruction(insn, 21, 5); |
10276 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10277 | tmp = fieldFromInstruction(insn, 8, 2); |
10278 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10279 | return S; |
10280 | case 373: |
10281 | tmp = fieldFromInstruction(insn, 0, 26); |
10282 | if (!Check(S, DecodeBranchTarget26(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10283 | return S; |
10284 | case 374: |
10285 | tmp = fieldFromInstruction(insn, 21, 5); |
10286 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10287 | tmp = fieldFromInstruction(insn, 0, 21); |
10288 | if (!Check(S, DecodeBranchTarget21(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10289 | return S; |
10290 | case 375: |
10291 | tmp = fieldFromInstruction(insn, 21, 5); |
10292 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10293 | tmp = fieldFromInstruction(insn, 0, 18); |
10294 | if (!Check(S, DecodeSimm18Lsl3(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10295 | return S; |
10296 | case 376: |
10297 | tmp = fieldFromInstruction(insn, 21, 5); |
10298 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10299 | tmp = fieldFromInstruction(insn, 0, 21); |
10300 | if (!Check(S, DecodeBranchTarget21(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10301 | return S; |
10302 | case 377: |
10303 | tmp = fieldFromInstruction(insn, 11, 5); |
10304 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10305 | tmp = fieldFromInstruction(insn, 16, 5); |
10306 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10307 | tmp = fieldFromInstruction(insn, 21, 5); |
10308 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10309 | return S; |
10310 | case 378: |
10311 | tmp = fieldFromInstruction(insn, 21, 5); |
10312 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10313 | tmp = fieldFromInstruction(insn, 16, 5); |
10314 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10315 | return S; |
10316 | case 379: |
10317 | tmp = fieldFromInstruction(insn, 11, 5); |
10318 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10319 | tmp = fieldFromInstruction(insn, 16, 5); |
10320 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10321 | tmp = fieldFromInstruction(insn, 6, 5); |
10322 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10323 | return S; |
10324 | case 380: |
10325 | tmp = fieldFromInstruction(insn, 16, 5); |
10326 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10327 | tmp = fieldFromInstruction(insn, 11, 5); |
10328 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10329 | tmp = fieldFromInstruction(insn, 0, 3); |
10330 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10331 | return S; |
10332 | case 381: |
10333 | tmp = fieldFromInstruction(insn, 11, 5); |
10334 | if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10335 | tmp = fieldFromInstruction(insn, 16, 5); |
10336 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10337 | tmp = fieldFromInstruction(insn, 0, 3); |
10338 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10339 | return S; |
10340 | case 382: |
10341 | tmp = fieldFromInstruction(insn, 16, 5); |
10342 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10343 | tmp = fieldFromInstruction(insn, 11, 5); |
10344 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10345 | tmp = fieldFromInstruction(insn, 0, 3); |
10346 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10347 | return S; |
10348 | case 383: |
10349 | tmp = fieldFromInstruction(insn, 11, 5); |
10350 | if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10351 | tmp = fieldFromInstruction(insn, 16, 5); |
10352 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10353 | tmp = fieldFromInstruction(insn, 0, 3); |
10354 | MI.addOperand(Op: MCOperand::createImm(Val: tmp)); |
10355 | return S; |
10356 | case 384: |
10357 | tmp = fieldFromInstruction(insn, 13, 3); |
10358 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10359 | tmp = fieldFromInstruction(insn, 16, 5); |
10360 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10361 | tmp = fieldFromInstruction(insn, 21, 5); |
10362 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10363 | return S; |
10364 | case 385: |
10365 | tmp = fieldFromInstruction(insn, 16, 5); |
10366 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10367 | tmp = fieldFromInstruction(insn, 21, 5); |
10368 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10369 | tmp = fieldFromInstruction(insn, 0, 16); |
10370 | if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10371 | return S; |
10372 | case 386: |
10373 | tmp = 0x0; |
10374 | insertBits(tmp, fieldFromInstruction(insn, 11, 5), 0, 5); |
10375 | insertBits(tmp, fieldFromInstruction(insn, 16, 5), 0, 5); |
10376 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10377 | tmp = fieldFromInstruction(insn, 21, 5); |
10378 | if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10379 | return S; |
10380 | case 387: |
10381 | if (!Check(S, DecodeDEXT(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10382 | return S; |
10383 | case 388: |
10384 | if (!Check(S, DecodeDINS(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } |
10385 | return S; |
10386 | case 389: |
10387 | tmp = fieldFromInstruction(insn, 16, 5); |
10388 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10389 | tmp = fieldFromInstruction(insn, 11, 5); |
10390 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10391 | return S; |
10392 | case 390: |
10393 | tmp = fieldFromInstruction(insn, 11, 5); |
10394 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10395 | tmp = fieldFromInstruction(insn, 16, 5); |
10396 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10397 | return S; |
10398 | case 391: |
10399 | tmp = fieldFromInstruction(insn, 11, 5); |
10400 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10401 | tmp = fieldFromInstruction(insn, 11, 5); |
10402 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10403 | tmp = fieldFromInstruction(insn, 16, 5); |
10404 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10405 | return S; |
10406 | case 392: |
10407 | tmp = fieldFromInstruction(insn, 6, 5); |
10408 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10409 | tmp = fieldFromInstruction(insn, 11, 5); |
10410 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10411 | return S; |
10412 | case 393: |
10413 | tmp = fieldFromInstruction(insn, 6, 5); |
10414 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10415 | tmp = fieldFromInstruction(insn, 11, 5); |
10416 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10417 | tmp = fieldFromInstruction(insn, 18, 3); |
10418 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10419 | tmp = fieldFromInstruction(insn, 6, 5); |
10420 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10421 | return S; |
10422 | case 394: |
10423 | tmp = fieldFromInstruction(insn, 6, 5); |
10424 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10425 | tmp = fieldFromInstruction(insn, 11, 5); |
10426 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10427 | tmp = fieldFromInstruction(insn, 16, 5); |
10428 | if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10429 | tmp = fieldFromInstruction(insn, 6, 5); |
10430 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10431 | return S; |
10432 | case 395: |
10433 | tmp = fieldFromInstruction(insn, 6, 5); |
10434 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10435 | tmp = fieldFromInstruction(insn, 11, 5); |
10436 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10437 | tmp = fieldFromInstruction(insn, 16, 5); |
10438 | if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10439 | return S; |
10440 | case 396: |
10441 | tmp = fieldFromInstruction(insn, 8, 3); |
10442 | if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10443 | tmp = fieldFromInstruction(insn, 11, 5); |
10444 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10445 | tmp = fieldFromInstruction(insn, 16, 5); |
10446 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10447 | return S; |
10448 | case 397: |
10449 | tmp = fieldFromInstruction(insn, 6, 5); |
10450 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10451 | tmp = fieldFromInstruction(insn, 21, 5); |
10452 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10453 | tmp = fieldFromInstruction(insn, 16, 5); |
10454 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10455 | return S; |
10456 | case 398: |
10457 | tmp = fieldFromInstruction(insn, 11, 5); |
10458 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10459 | tmp = fieldFromInstruction(insn, 21, 5); |
10460 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10461 | tmp = fieldFromInstruction(insn, 16, 5); |
10462 | if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10463 | return S; |
10464 | case 399: |
10465 | tmp = fieldFromInstruction(insn, 6, 5); |
10466 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10467 | tmp = fieldFromInstruction(insn, 21, 5); |
10468 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10469 | tmp = fieldFromInstruction(insn, 11, 5); |
10470 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10471 | tmp = fieldFromInstruction(insn, 16, 5); |
10472 | if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } |
10473 | return S; |
10474 | } |
10475 | } |
10476 | |
10477 | template <typename InsnType> |
10478 | static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, |
10479 | InsnType insn, uint64_t Address, |
10480 | const MCDisassembler *DisAsm, |
10481 | const MCSubtargetInfo &STI) { |
10482 | const FeatureBitset &Bits = STI.getFeatureBits(); |
10483 | |
10484 | const uint8_t *Ptr = DecodeTable; |
10485 | uint64_t CurFieldValue = 0; |
10486 | DecodeStatus S = MCDisassembler::Success; |
10487 | while (true) { |
10488 | ptrdiff_t Loc = Ptr - DecodeTable; |
10489 | switch (*Ptr) { |
10490 | default: |
10491 | errs() << Loc << ": Unexpected decode table opcode!\n" ; |
10492 | return MCDisassembler::Fail; |
10493 | case MCD::OPC_ExtractField: { |
10494 | // Decode the start value. |
10495 | unsigned Start = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10496 | unsigned Len = *Ptr++; |
10497 | CurFieldValue = fieldFromInstruction(insn, Start, Len); |
10498 | LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " |
10499 | << Len << "): " << CurFieldValue << "\n" ); |
10500 | break; |
10501 | } |
10502 | case MCD::OPC_FilterValue: { |
10503 | // Decode the field value. |
10504 | uint64_t Val = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10505 | // NumToSkip is a plain 24-bit integer. |
10506 | unsigned NumToSkip = *Ptr++; |
10507 | NumToSkip |= (*Ptr++) << 8; |
10508 | NumToSkip |= (*Ptr++) << 16; |
10509 | |
10510 | // Perform the filter operation. |
10511 | if (Val != CurFieldValue) |
10512 | Ptr += NumToSkip; |
10513 | LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip |
10514 | << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:" ) |
10515 | << " continuing at " << (Ptr - DecodeTable) << "\n" ); |
10516 | |
10517 | break; |
10518 | } |
10519 | case MCD::OPC_CheckField: { |
10520 | // Decode the start value. |
10521 | unsigned Start = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10522 | unsigned Len = *Ptr; |
10523 | uint64_t FieldValue = fieldFromInstruction(insn, Start, Len); |
10524 | // Decode the field value. |
10525 | unsigned PtrLen = 0; |
10526 | uint64_t ExpectedValue = decodeULEB128(p: ++Ptr, n: &PtrLen); |
10527 | Ptr += PtrLen; |
10528 | // NumToSkip is a plain 24-bit integer. |
10529 | unsigned NumToSkip = *Ptr++; |
10530 | NumToSkip |= (*Ptr++) << 8; |
10531 | NumToSkip |= (*Ptr++) << 16; |
10532 | |
10533 | // If the actual and expected values don't match, skip. |
10534 | if (ExpectedValue != FieldValue) |
10535 | Ptr += NumToSkip; |
10536 | LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", " |
10537 | << Len << ", " << ExpectedValue << ", " << NumToSkip |
10538 | << "): FieldValue = " << FieldValue << ", ExpectedValue = " |
10539 | << ExpectedValue << ": " |
10540 | << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n" )); |
10541 | break; |
10542 | } |
10543 | case MCD::OPC_CheckPredicate: { |
10544 | // Decode the Predicate Index value. |
10545 | unsigned PIdx = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10546 | // NumToSkip is a plain 24-bit integer. |
10547 | unsigned NumToSkip = *Ptr++; |
10548 | NumToSkip |= (*Ptr++) << 8; |
10549 | NumToSkip |= (*Ptr++) << 16; |
10550 | // Check the predicate. |
10551 | bool Pred; |
10552 | if (!(Pred = checkDecoderPredicate(Idx: PIdx, Bits))) |
10553 | Ptr += NumToSkip; |
10554 | (void)Pred; |
10555 | LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): " |
10556 | << (Pred ? "PASS\n" : "FAIL\n" )); |
10557 | |
10558 | break; |
10559 | } |
10560 | case MCD::OPC_Decode: { |
10561 | // Decode the Opcode value. |
10562 | unsigned Opc = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10563 | unsigned DecodeIdx = decodeULEB128AndIncUnsafe(p&: Ptr); |
10564 | |
10565 | MI.clear(); |
10566 | MI.setOpcode(Opc); |
10567 | bool DecodeComplete; |
10568 | S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, DecodeComplete); |
10569 | assert(DecodeComplete); |
10570 | |
10571 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc |
10572 | << ", using decoder " << DecodeIdx << ": " |
10573 | << (S != MCDisassembler::Fail ? "PASS" : "FAIL" ) << "\n" ); |
10574 | return S; |
10575 | } |
10576 | case MCD::OPC_TryDecode: { |
10577 | // Decode the Opcode value. |
10578 | unsigned Opc = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10579 | unsigned DecodeIdx = decodeULEB128AndIncUnsafe(p&: Ptr); |
10580 | // NumToSkip is a plain 24-bit integer. |
10581 | unsigned NumToSkip = *Ptr++; |
10582 | NumToSkip |= (*Ptr++) << 8; |
10583 | NumToSkip |= (*Ptr++) << 16; |
10584 | |
10585 | // Perform the decode operation. |
10586 | MCInst TmpMI; |
10587 | TmpMI.setOpcode(Opc); |
10588 | bool DecodeComplete; |
10589 | S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete); |
10590 | LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc |
10591 | << ", using decoder " << DecodeIdx << ": " ); |
10592 | |
10593 | if (DecodeComplete) { |
10594 | // Decoding complete. |
10595 | LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL" ) << "\n" ); |
10596 | MI = TmpMI; |
10597 | return S; |
10598 | } else { |
10599 | assert(S == MCDisassembler::Fail); |
10600 | // If the decoding was incomplete, skip. |
10601 | Ptr += NumToSkip; |
10602 | LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n" ); |
10603 | // Reset decode status. This also drops a SoftFail status that could be |
10604 | // set before the decode attempt. |
10605 | S = MCDisassembler::Success; |
10606 | } |
10607 | break; |
10608 | } |
10609 | case MCD::OPC_SoftFail: { |
10610 | // Decode the mask values. |
10611 | uint64_t PositiveMask = decodeULEB128AndIncUnsafe(p&: ++Ptr); |
10612 | uint64_t NegativeMask = decodeULEB128AndIncUnsafe(p&: Ptr); |
10613 | bool Fail = (insn & PositiveMask) != 0 || (~insn & NegativeMask) != 0; |
10614 | if (Fail) |
10615 | S = MCDisassembler::SoftFail; |
10616 | LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n" : "PASS\n" )); |
10617 | break; |
10618 | } |
10619 | case MCD::OPC_Fail: { |
10620 | LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n" ); |
10621 | return MCDisassembler::Fail; |
10622 | } |
10623 | } |
10624 | } |
10625 | llvm_unreachable("bogosity detected in disassembler state machine!" ); |
10626 | } |
10627 | |
10628 | |
10629 | } // end namespace llvm |
10630 | |