1/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ 2|* *| 3|* * Mips Disassembler *| 4|* *| 5|* Automatically generated file, do not edit! *| 6|* *| 7\*===----------------------------------------------------------------------===*/ 8 9#include "llvm/MC/MCInst.h" 10#include "llvm/MC/MCSubtargetInfo.h" 11#include "llvm/MC/SubtargetFeature.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 <assert.h> 17 18namespace llvm { 19 20// Helper functions for extracting fields from encoded instructions. 21// InsnType must either be integral or an APInt-like object that must: 22// * be default-constructible and copy-constructible 23// * be constructible from an APInt (this can be private) 24// * Support insertBits(bits, startBit, numBits) 25// * Support extractBitsAsZExtValue(numBits, startBit) 26// * Support the ~, &, ==, and != operators with other objects of the same type 27// * Support the != and bitwise & with uint64_t 28// * Support put (<<) to raw_ostream& 29template <typename InsnType> 30#if defined(_MSC_VER) && !defined(__clang__) 31__declspec(noinline) 32#endif 33static std::enable_if_t<std::is_integral<InsnType>::value, InsnType> 34fieldFromInstruction(const InsnType &insn, unsigned startBit, 35 unsigned numBits) { 36 assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!"); 37 assert(startBit + numBits <= (sizeof(InsnType) * 8) && 38 "Instruction field out of bounds!"); 39 InsnType fieldMask; 40 if (numBits == sizeof(InsnType) * 8) 41 fieldMask = (InsnType)(-1LL); 42 else 43 fieldMask = (((InsnType)1 << numBits) - 1) << startBit; 44 return (insn & fieldMask) >> startBit; 45} 46 47template <typename InsnType> 48static std::enable_if_t<!std::is_integral<InsnType>::value, uint64_t> 49fieldFromInstruction(const InsnType &insn, unsigned startBit, 50 unsigned numBits) { 51 return insn.extractBitsAsZExtValue(numBits, startBit); 52} 53 54// Helper function for inserting bits extracted from an encoded instruction into 55// a field. 56template <typename InsnType> 57static std::enable_if_t<std::is_integral<InsnType>::value> 58insertBits(InsnType &field, InsnType bits, unsigned startBit, unsigned numBits) { 59 assert(startBit + numBits <= sizeof field * 8); 60 field |= (InsnType)bits << startBit; 61} 62 63template <typename InsnType> 64static std::enable_if_t<!std::is_integral<InsnType>::value> 65insertBits(InsnType &field, uint64_t bits, unsigned startBit, unsigned numBits) { 66 field.insertBits(bits, startBit, numBits); 67} 68 69static bool Check(DecodeStatus &Out, DecodeStatus In) { 70 Out = static_cast<DecodeStatus>(Out & In); 71 return Out != MCDisassembler::Fail; 72} 73 74static const uint8_t DecoderTable16[] = { 75/* 0 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 76/* 3 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 17 77/* 8 */ MCD::OPC_CheckPredicate, 0, 92, 2, 0, // Skip to: 617 78/* 13 */ MCD::OPC_Decode, 139, 8, 0, // Opcode: Bimm16 79/* 17 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 31 80/* 22 */ MCD::OPC_CheckPredicate, 0, 78, 2, 0, // Skip to: 617 81/* 27 */ MCD::OPC_Decode, 137, 8, 1, // Opcode: BeqzRxImm16 82/* 31 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 45 83/* 36 */ MCD::OPC_CheckPredicate, 0, 64, 2, 0, // Skip to: 617 84/* 41 */ MCD::OPC_Decode, 141, 8, 1, // Opcode: BnezRxImm16 85/* 45 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 59 86/* 50 */ MCD::OPC_CheckPredicate, 0, 50, 2, 0, // Skip to: 617 87/* 55 */ MCD::OPC_Decode, 200, 6, 2, // Opcode: AddiuRxRxImm16 88/* 59 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 73 89/* 64 */ MCD::OPC_CheckPredicate, 0, 36, 2, 0, // Skip to: 617 90/* 69 */ MCD::OPC_Decode, 185, 21, 3, // Opcode: SltiRxImm16 91/* 73 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 87 92/* 78 */ MCD::OPC_CheckPredicate, 0, 22, 2, 0, // Skip to: 617 93/* 83 */ MCD::OPC_Decode, 187, 21, 3, // Opcode: SltiuRxImm16 94/* 87 */ MCD::OPC_FilterValue, 12, 73, 0, 0, // Skip to: 165 95/* 92 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... 96/* 95 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 109 97/* 100 */ MCD::OPC_CheckPredicate, 0, 0, 2, 0, // Skip to: 617 98/* 105 */ MCD::OPC_Decode, 144, 8, 4, // Opcode: Bteqz16 99/* 109 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 123 100/* 114 */ MCD::OPC_CheckPredicate, 0, 242, 1, 0, // Skip to: 617 101/* 119 */ MCD::OPC_Decode, 146, 8, 4, // Opcode: Btnez16 102/* 123 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 137 103/* 128 */ MCD::OPC_CheckPredicate, 0, 228, 1, 0, // Skip to: 617 104/* 133 */ MCD::OPC_Decode, 203, 6, 4, // Opcode: AddiuSpImm16 105/* 137 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 151 106/* 142 */ MCD::OPC_CheckPredicate, 0, 214, 1, 0, // Skip to: 617 107/* 147 */ MCD::OPC_Decode, 190, 17, 5, // Opcode: Move32R16 108/* 151 */ MCD::OPC_FilterValue, 7, 205, 1, 0, // Skip to: 617 109/* 156 */ MCD::OPC_CheckPredicate, 0, 200, 1, 0, // Skip to: 617 110/* 161 */ MCD::OPC_Decode, 191, 17, 6, // Opcode: MoveR3216 111/* 165 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 179 112/* 170 */ MCD::OPC_CheckPredicate, 0, 186, 1, 0, // Skip to: 617 113/* 175 */ MCD::OPC_Decode, 144, 15, 3, // Opcode: LiRxImm16 114/* 179 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 193 115/* 184 */ MCD::OPC_CheckPredicate, 0, 172, 1, 0, // Skip to: 617 116/* 189 */ MCD::OPC_Decode, 210, 10, 3, // Opcode: CmpiRxImm16 117/* 193 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 207 118/* 198 */ MCD::OPC_CheckPredicate, 0, 158, 1, 0, // Skip to: 617 119/* 203 */ MCD::OPC_Decode, 147, 15, 7, // Opcode: LwRxPcTcp16 120/* 207 */ MCD::OPC_FilterValue, 28, 31, 0, 0, // Skip to: 243 121/* 212 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... 122/* 215 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 229 123/* 220 */ MCD::OPC_CheckPredicate, 0, 136, 1, 0, // Skip to: 617 124/* 225 */ MCD::OPC_Decode, 205, 6, 8, // Opcode: AdduRxRyRz16 125/* 229 */ MCD::OPC_FilterValue, 3, 127, 1, 0, // Skip to: 617 126/* 234 */ MCD::OPC_CheckPredicate, 0, 122, 1, 0, // Skip to: 617 127/* 239 */ MCD::OPC_Decode, 194, 21, 8, // Opcode: SubuRxRyRz16 128/* 243 */ MCD::OPC_FilterValue, 29, 113, 1, 0, // Skip to: 617 129/* 248 */ MCD::OPC_ExtractField, 0, 5, // Inst{4-0} ... 130/* 251 */ MCD::OPC_FilterValue, 0, 80, 0, 0, // Skip to: 336 131/* 256 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 132/* 259 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 273 133/* 264 */ MCD::OPC_CheckPredicate, 0, 92, 1, 0, // Skip to: 617 134/* 269 */ MCD::OPC_Decode, 150, 14, 9, // Opcode: JumpLinkReg16 135/* 273 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 294 136/* 278 */ MCD::OPC_CheckPredicate, 0, 78, 1, 0, // Skip to: 617 137/* 283 */ MCD::OPC_CheckField, 8, 3, 0, 71, 1, 0, // Skip to: 617 138/* 290 */ MCD::OPC_Decode, 147, 14, 10, // Opcode: JrRa16 139/* 294 */ MCD::OPC_FilterValue, 6, 16, 0, 0, // Skip to: 315 140/* 299 */ MCD::OPC_CheckPredicate, 0, 57, 1, 0, // Skip to: 617 141/* 304 */ MCD::OPC_CheckField, 8, 3, 0, 50, 1, 0, // Skip to: 617 142/* 311 */ MCD::OPC_Decode, 149, 14, 10, // Opcode: JrcRx16 143/* 315 */ MCD::OPC_FilterValue, 7, 41, 1, 0, // Skip to: 617 144/* 320 */ MCD::OPC_CheckPredicate, 0, 36, 1, 0, // Skip to: 617 145/* 325 */ MCD::OPC_CheckField, 8, 3, 0, 29, 1, 0, // Skip to: 617 146/* 332 */ MCD::OPC_Decode, 148, 14, 10, // Opcode: JrcRa16 147/* 336 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 350 148/* 341 */ MCD::OPC_CheckPredicate, 0, 15, 1, 0, // Skip to: 617 149/* 346 */ MCD::OPC_Decode, 184, 21, 11, // Opcode: SltRxRy16 150/* 350 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 364 151/* 355 */ MCD::OPC_CheckPredicate, 0, 1, 1, 0, // Skip to: 617 152/* 360 */ MCD::OPC_Decode, 189, 21, 11, // Opcode: SltuRxRy16 153/* 364 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 378 154/* 369 */ MCD::OPC_CheckPredicate, 0, 243, 0, 0, // Skip to: 617 155/* 374 */ MCD::OPC_Decode, 183, 21, 12, // Opcode: SllvRxRy16 156/* 378 */ MCD::OPC_FilterValue, 5, 16, 0, 0, // Skip to: 399 157/* 383 */ MCD::OPC_CheckPredicate, 0, 229, 0, 0, // Skip to: 617 158/* 388 */ MCD::OPC_CheckField, 5, 6, 0, 222, 0, 0, // Skip to: 617 159/* 395 */ MCD::OPC_Decode, 143, 8, 10, // Opcode: Break16 160/* 399 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 413 161/* 404 */ MCD::OPC_CheckPredicate, 0, 208, 0, 0, // Skip to: 617 162/* 409 */ MCD::OPC_Decode, 193, 21, 12, // Opcode: SrlvRxRy16 163/* 413 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 427 164/* 418 */ MCD::OPC_CheckPredicate, 0, 194, 0, 0, // Skip to: 617 165/* 423 */ MCD::OPC_Decode, 191, 21, 12, // Opcode: SravRxRy16 166/* 427 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 441 167/* 432 */ MCD::OPC_CheckPredicate, 0, 180, 0, 0, // Skip to: 617 168/* 437 */ MCD::OPC_Decode, 209, 10, 11, // Opcode: CmpRxRy16 169/* 441 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 455 170/* 446 */ MCD::OPC_CheckPredicate, 0, 166, 0, 0, // Skip to: 617 171/* 451 */ MCD::OPC_Decode, 206, 6, 12, // Opcode: AndRxRxRy16 172/* 455 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 469 173/* 460 */ MCD::OPC_CheckPredicate, 0, 152, 0, 0, // Skip to: 617 174/* 465 */ MCD::OPC_Decode, 232, 17, 12, // Opcode: OrRxRxRy16 175/* 469 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 483 176/* 474 */ MCD::OPC_CheckPredicate, 0, 138, 0, 0, // Skip to: 617 177/* 479 */ MCD::OPC_Decode, 158, 22, 12, // Opcode: XorRxRxRy16 178/* 483 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 497 179/* 488 */ MCD::OPC_CheckPredicate, 0, 124, 0, 0, // Skip to: 617 180/* 493 */ MCD::OPC_Decode, 219, 17, 11, // Opcode: NotRxRy16 181/* 497 */ MCD::OPC_FilterValue, 16, 16, 0, 0, // Skip to: 518 182/* 502 */ MCD::OPC_CheckPredicate, 0, 110, 0, 0, // Skip to: 617 183/* 507 */ MCD::OPC_CheckField, 5, 3, 0, 103, 0, 0, // Skip to: 617 184/* 514 */ MCD::OPC_Decode, 188, 17, 9, // Opcode: Mfhi16 185/* 518 */ MCD::OPC_FilterValue, 17, 31, 0, 0, // Skip to: 554 186/* 523 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 187/* 526 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 540 188/* 531 */ MCD::OPC_CheckPredicate, 0, 81, 0, 0, // Skip to: 617 189/* 536 */ MCD::OPC_Decode, 179, 21, 13, // Opcode: SebRx16 190/* 540 */ MCD::OPC_FilterValue, 5, 72, 0, 0, // Skip to: 617 191/* 545 */ MCD::OPC_CheckPredicate, 0, 67, 0, 0, // Skip to: 617 192/* 550 */ MCD::OPC_Decode, 180, 21, 13, // Opcode: SehRx16 193/* 554 */ MCD::OPC_FilterValue, 18, 16, 0, 0, // Skip to: 575 194/* 559 */ MCD::OPC_CheckPredicate, 0, 53, 0, 0, // Skip to: 617 195/* 564 */ MCD::OPC_CheckField, 5, 3, 0, 46, 0, 0, // Skip to: 617 196/* 571 */ MCD::OPC_Decode, 189, 17, 9, // Opcode: Mflo16 197/* 575 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 589 198/* 580 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 617 199/* 585 */ MCD::OPC_Decode, 219, 11, 11, // Opcode: DivRxRy16 200/* 589 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 603 201/* 594 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 617 202/* 599 */ MCD::OPC_Decode, 220, 11, 11, // Opcode: DivuRxRy16 203/* 603 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 617 204/* 608 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 617 205/* 613 */ MCD::OPC_Decode, 218, 17, 11, // Opcode: NegRxRy16 206/* 617 */ MCD::OPC_Fail, 207 0 208}; 209 210static const uint8_t DecoderTable32[] = { 211/* 0 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 212/* 3 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 31 213/* 8 */ MCD::OPC_CheckPredicate, 0, 2, 2, 0, // Skip to: 527 214/* 13 */ MCD::OPC_CheckField, 27, 5, 30, 251, 1, 0, // Skip to: 527 215/* 20 */ MCD::OPC_CheckField, 5, 3, 0, 244, 1, 0, // Skip to: 527 216/* 27 */ MCD::OPC_Decode, 199, 6, 14, // Opcode: AddiuRxPcImmX16 217/* 31 */ MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 59 218/* 36 */ MCD::OPC_CheckPredicate, 0, 230, 1, 0, // Skip to: 527 219/* 41 */ MCD::OPC_CheckField, 27, 5, 30, 223, 1, 0, // Skip to: 527 220/* 48 */ MCD::OPC_CheckField, 5, 6, 0, 216, 1, 0, // Skip to: 527 221/* 55 */ MCD::OPC_Decode, 140, 8, 15, // Opcode: BimmX16 222/* 59 */ MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 87 223/* 64 */ MCD::OPC_CheckPredicate, 0, 202, 1, 0, // Skip to: 527 224/* 69 */ MCD::OPC_CheckField, 27, 5, 30, 195, 1, 0, // Skip to: 527 225/* 76 */ MCD::OPC_CheckField, 5, 3, 0, 188, 1, 0, // Skip to: 527 226/* 83 */ MCD::OPC_Decode, 138, 8, 16, // Opcode: BeqzRxImmX16 227/* 87 */ MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 115 228/* 92 */ MCD::OPC_CheckPredicate, 0, 174, 1, 0, // Skip to: 527 229/* 97 */ MCD::OPC_CheckField, 27, 5, 30, 167, 1, 0, // Skip to: 527 230/* 104 */ MCD::OPC_CheckField, 5, 3, 0, 160, 1, 0, // Skip to: 527 231/* 111 */ MCD::OPC_Decode, 142, 8, 16, // Opcode: BnezRxImmX16 232/* 115 */ MCD::OPC_FilterValue, 6, 106, 0, 0, // Skip to: 226 233/* 120 */ MCD::OPC_ExtractField, 27, 5, // Inst{31-27} ... 234/* 123 */ MCD::OPC_FilterValue, 30, 143, 1, 0, // Skip to: 527 235/* 128 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 236/* 131 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 181 237/* 136 */ MCD::OPC_ExtractField, 0, 5, // Inst{4-0} ... 238/* 139 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 153 239/* 144 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 181 240/* 149 */ MCD::OPC_Decode, 182, 21, 17, // Opcode: SllX16 241/* 153 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 167 242/* 158 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 181 243/* 163 */ MCD::OPC_Decode, 192, 21, 17, // Opcode: SrlX16 244/* 167 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 181 245/* 172 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 181 246/* 177 */ MCD::OPC_Decode, 190, 21, 17, // Opcode: SraX16 247/* 181 */ MCD::OPC_ExtractField, 5, 6, // Inst{10-5} ... 248/* 184 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 198 249/* 189 */ MCD::OPC_CheckPredicate, 0, 77, 1, 0, // Skip to: 527 250/* 194 */ MCD::OPC_Decode, 145, 8, 18, // Opcode: BteqzX16 251/* 198 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 212 252/* 203 */ MCD::OPC_CheckPredicate, 0, 63, 1, 0, // Skip to: 527 253/* 208 */ MCD::OPC_Decode, 147, 8, 18, // Opcode: BtnezX16 254/* 212 */ MCD::OPC_FilterValue, 24, 54, 1, 0, // Skip to: 527 255/* 217 */ MCD::OPC_CheckPredicate, 0, 49, 1, 0, // Skip to: 527 256/* 222 */ MCD::OPC_Decode, 204, 6, 18, // Opcode: AddiuSpImmX16 257/* 226 */ MCD::OPC_FilterValue, 8, 23, 0, 0, // Skip to: 254 258/* 231 */ MCD::OPC_CheckPredicate, 0, 35, 1, 0, // Skip to: 527 259/* 236 */ MCD::OPC_CheckField, 27, 5, 30, 28, 1, 0, // Skip to: 527 260/* 243 */ MCD::OPC_CheckField, 4, 1, 0, 21, 1, 0, // Skip to: 527 261/* 250 */ MCD::OPC_Decode, 202, 6, 19, // Opcode: AddiuRxRyOffMemX16 262/* 254 */ MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 282 263/* 259 */ MCD::OPC_CheckPredicate, 0, 7, 1, 0, // Skip to: 527 264/* 264 */ MCD::OPC_CheckField, 27, 5, 30, 0, 1, 0, // Skip to: 527 265/* 271 */ MCD::OPC_CheckField, 5, 3, 0, 249, 0, 0, // Skip to: 527 266/* 278 */ MCD::OPC_Decode, 198, 6, 14, // Opcode: AddiuRxImmX16 267/* 282 */ MCD::OPC_FilterValue, 10, 23, 0, 0, // Skip to: 310 268/* 287 */ MCD::OPC_CheckPredicate, 0, 235, 0, 0, // Skip to: 527 269/* 292 */ MCD::OPC_CheckField, 27, 5, 30, 228, 0, 0, // Skip to: 527 270/* 299 */ MCD::OPC_CheckField, 5, 3, 0, 221, 0, 0, // Skip to: 527 271/* 306 */ MCD::OPC_Decode, 186, 21, 14, // Opcode: SltiRxImmX16 272/* 310 */ MCD::OPC_FilterValue, 11, 23, 0, 0, // Skip to: 338 273/* 315 */ MCD::OPC_CheckPredicate, 0, 207, 0, 0, // Skip to: 527 274/* 320 */ MCD::OPC_CheckField, 27, 5, 30, 200, 0, 0, // Skip to: 527 275/* 327 */ MCD::OPC_CheckField, 5, 3, 0, 193, 0, 0, // Skip to: 527 276/* 334 */ MCD::OPC_Decode, 188, 21, 14, // Opcode: SltiuRxImmX16 277/* 338 */ MCD::OPC_FilterValue, 13, 23, 0, 0, // Skip to: 366 278/* 343 */ MCD::OPC_CheckPredicate, 0, 179, 0, 0, // Skip to: 527 279/* 348 */ MCD::OPC_CheckField, 27, 5, 30, 172, 0, 0, // Skip to: 527 280/* 355 */ MCD::OPC_CheckField, 5, 3, 0, 165, 0, 0, // Skip to: 527 281/* 362 */ MCD::OPC_Decode, 146, 15, 14, // Opcode: LiRxImmX16 282/* 366 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 394 283/* 371 */ MCD::OPC_CheckPredicate, 0, 151, 0, 0, // Skip to: 527 284/* 376 */ MCD::OPC_CheckField, 27, 5, 30, 144, 0, 0, // Skip to: 527 285/* 383 */ MCD::OPC_CheckField, 5, 3, 0, 137, 0, 0, // Skip to: 527 286/* 390 */ MCD::OPC_Decode, 211, 10, 14, // Opcode: CmpiRxImmX16 287/* 394 */ MCD::OPC_FilterValue, 18, 16, 0, 0, // Skip to: 415 288/* 399 */ MCD::OPC_CheckPredicate, 0, 123, 0, 0, // Skip to: 527 289/* 404 */ MCD::OPC_CheckField, 27, 5, 30, 116, 0, 0, // Skip to: 527 290/* 411 */ MCD::OPC_Decode, 150, 15, 19, // Opcode: LwRxSpImmX16 291/* 415 */ MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 443 292/* 420 */ MCD::OPC_CheckPredicate, 0, 102, 0, 0, // Skip to: 527 293/* 425 */ MCD::OPC_CheckField, 27, 5, 30, 95, 0, 0, // Skip to: 527 294/* 432 */ MCD::OPC_CheckField, 5, 3, 0, 88, 0, 0, // Skip to: 527 295/* 439 */ MCD::OPC_Decode, 148, 15, 20, // Opcode: LwRxPcTcpX16 296/* 443 */ MCD::OPC_FilterValue, 24, 16, 0, 0, // Skip to: 464 297/* 448 */ MCD::OPC_CheckPredicate, 0, 74, 0, 0, // Skip to: 527 298/* 453 */ MCD::OPC_CheckField, 27, 5, 30, 67, 0, 0, // Skip to: 527 299/* 460 */ MCD::OPC_Decode, 178, 21, 19, // Opcode: SbRxRyOffMemX16 300/* 464 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 485 301/* 469 */ MCD::OPC_CheckPredicate, 0, 53, 0, 0, // Skip to: 527 302/* 474 */ MCD::OPC_CheckField, 27, 5, 30, 46, 0, 0, // Skip to: 527 303/* 481 */ MCD::OPC_Decode, 181, 21, 19, // Opcode: ShRxRyOffMemX16 304/* 485 */ MCD::OPC_FilterValue, 26, 16, 0, 0, // Skip to: 506 305/* 490 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 527 306/* 495 */ MCD::OPC_CheckField, 27, 5, 30, 25, 0, 0, // Skip to: 527 307/* 502 */ MCD::OPC_Decode, 196, 21, 19, // Opcode: SwRxSpImmX16 308/* 506 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 527 309/* 511 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 527 310/* 516 */ MCD::OPC_CheckField, 27, 5, 30, 4, 0, 0, // Skip to: 527 311/* 523 */ MCD::OPC_Decode, 195, 21, 19, // Opcode: SwRxRyOffMemX16 312/* 527 */ MCD::OPC_Fail, 313 0 314}; 315 316static const uint8_t DecoderTableCOP3_32[] = { 317/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 318/* 3 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 17 319/* 8 */ MCD::OPC_CheckPredicate, 1, 46, 0, 0, // Skip to: 59 320/* 13 */ MCD::OPC_Decode, 235, 14, 21, // Opcode: LWC3 321/* 17 */ MCD::OPC_FilterValue, 55, 9, 0, 0, // Skip to: 31 322/* 22 */ MCD::OPC_CheckPredicate, 2, 32, 0, 0, // Skip to: 59 323/* 27 */ MCD::OPC_Decode, 175, 14, 21, // Opcode: LDC3 324/* 31 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 45 325/* 36 */ MCD::OPC_CheckPredicate, 1, 18, 0, 0, // Skip to: 59 326/* 41 */ MCD::OPC_Decode, 143, 21, 21, // Opcode: SWC3 327/* 45 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 59 328/* 50 */ MCD::OPC_CheckPredicate, 2, 4, 0, 0, // Skip to: 59 329/* 55 */ MCD::OPC_Decode, 139, 19, 21, // Opcode: SDC3 330/* 59 */ MCD::OPC_Fail, 331 0 332}; 333 334static const uint8_t DecoderTableCnMips32[] = { 335/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 336/* 3 */ MCD::OPC_FilterValue, 18, 31, 0, 0, // Skip to: 39 337/* 8 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 338/* 11 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 25 339/* 16 */ MCD::OPC_CheckPredicate, 3, 239, 1, 0, // Skip to: 516 340/* 21 */ MCD::OPC_Decode, 129, 11, 22, // Opcode: DMFC2_OCTEON 341/* 25 */ MCD::OPC_FilterValue, 5, 230, 1, 0, // Skip to: 516 342/* 30 */ MCD::OPC_CheckPredicate, 3, 225, 1, 0, // Skip to: 516 343/* 35 */ MCD::OPC_Decode, 137, 11, 22, // Opcode: DMTC2_OCTEON 344/* 39 */ MCD::OPC_FilterValue, 28, 160, 1, 0, // Skip to: 460 345/* 44 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 346/* 47 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 68 347/* 52 */ MCD::OPC_CheckPredicate, 3, 203, 1, 0, // Skip to: 516 348/* 57 */ MCD::OPC_CheckField, 6, 5, 0, 196, 1, 0, // Skip to: 516 349/* 64 */ MCD::OPC_Decode, 141, 11, 23, // Opcode: DMUL 350/* 68 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 89 351/* 73 */ MCD::OPC_CheckPredicate, 3, 182, 1, 0, // Skip to: 516 352/* 78 */ MCD::OPC_CheckField, 6, 15, 0, 175, 1, 0, // Skip to: 516 353/* 85 */ MCD::OPC_Decode, 130, 17, 24, // Opcode: MTM0 354/* 89 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 110 355/* 94 */ MCD::OPC_CheckPredicate, 3, 161, 1, 0, // Skip to: 516 356/* 99 */ MCD::OPC_CheckField, 6, 15, 0, 154, 1, 0, // Skip to: 516 357/* 106 */ MCD::OPC_Decode, 133, 17, 24, // Opcode: MTP0 358/* 110 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 131 359/* 115 */ MCD::OPC_CheckPredicate, 3, 140, 1, 0, // Skip to: 516 360/* 120 */ MCD::OPC_CheckField, 6, 15, 0, 133, 1, 0, // Skip to: 516 361/* 127 */ MCD::OPC_Decode, 134, 17, 24, // Opcode: MTP1 362/* 131 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 152 363/* 136 */ MCD::OPC_CheckPredicate, 3, 119, 1, 0, // Skip to: 516 364/* 141 */ MCD::OPC_CheckField, 6, 15, 0, 112, 1, 0, // Skip to: 516 365/* 148 */ MCD::OPC_Decode, 135, 17, 24, // Opcode: MTP2 366/* 152 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 173 367/* 157 */ MCD::OPC_CheckPredicate, 3, 98, 1, 0, // Skip to: 516 368/* 162 */ MCD::OPC_CheckField, 6, 15, 0, 91, 1, 0, // Skip to: 516 369/* 169 */ MCD::OPC_Decode, 131, 17, 24, // Opcode: MTM1 370/* 173 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 194 371/* 178 */ MCD::OPC_CheckPredicate, 3, 77, 1, 0, // Skip to: 516 372/* 183 */ MCD::OPC_CheckField, 6, 15, 0, 70, 1, 0, // Skip to: 516 373/* 190 */ MCD::OPC_Decode, 132, 17, 24, // Opcode: MTM2 374/* 194 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 215 375/* 199 */ MCD::OPC_CheckPredicate, 3, 56, 1, 0, // Skip to: 516 376/* 204 */ MCD::OPC_CheckField, 6, 5, 0, 49, 1, 0, // Skip to: 516 377/* 211 */ MCD::OPC_Decode, 132, 22, 23, // Opcode: VMULU 378/* 215 */ MCD::OPC_FilterValue, 16, 16, 0, 0, // Skip to: 236 379/* 220 */ MCD::OPC_CheckPredicate, 3, 35, 1, 0, // Skip to: 516 380/* 225 */ MCD::OPC_CheckField, 6, 5, 0, 28, 1, 0, // Skip to: 516 381/* 232 */ MCD::OPC_Decode, 131, 22, 23, // Opcode: VMM0 382/* 236 */ MCD::OPC_FilterValue, 17, 16, 0, 0, // Skip to: 257 383/* 241 */ MCD::OPC_CheckPredicate, 3, 14, 1, 0, // Skip to: 516 384/* 246 */ MCD::OPC_CheckField, 6, 5, 0, 7, 1, 0, // Skip to: 516 385/* 253 */ MCD::OPC_Decode, 130, 22, 23, // Opcode: V3MULU 386/* 257 */ MCD::OPC_FilterValue, 40, 16, 0, 0, // Skip to: 278 387/* 262 */ MCD::OPC_CheckPredicate, 3, 249, 0, 0, // Skip to: 516 388/* 267 */ MCD::OPC_CheckField, 6, 5, 0, 242, 0, 0, // Skip to: 516 389/* 274 */ MCD::OPC_Decode, 208, 6, 23, // Opcode: BADDu 390/* 278 */ MCD::OPC_FilterValue, 42, 16, 0, 0, // Skip to: 299 391/* 283 */ MCD::OPC_CheckPredicate, 3, 228, 0, 0, // Skip to: 516 392/* 288 */ MCD::OPC_CheckField, 6, 5, 0, 221, 0, 0, // Skip to: 516 393/* 295 */ MCD::OPC_Decode, 170, 19, 23, // Opcode: SEQ 394/* 299 */ MCD::OPC_FilterValue, 43, 16, 0, 0, // Skip to: 320 395/* 304 */ MCD::OPC_CheckPredicate, 3, 207, 0, 0, // Skip to: 516 396/* 309 */ MCD::OPC_CheckField, 6, 5, 0, 200, 0, 0, // Skip to: 516 397/* 316 */ MCD::OPC_Decode, 142, 20, 23, // Opcode: SNE 398/* 320 */ MCD::OPC_FilterValue, 44, 23, 0, 0, // Skip to: 348 399/* 325 */ MCD::OPC_CheckPredicate, 3, 186, 0, 0, // Skip to: 516 400/* 330 */ MCD::OPC_CheckField, 16, 5, 0, 179, 0, 0, // Skip to: 516 401/* 337 */ MCD::OPC_CheckField, 6, 5, 0, 172, 0, 0, // Skip to: 516 402/* 344 */ MCD::OPC_Decode, 128, 18, 25, // Opcode: POP 403/* 348 */ MCD::OPC_FilterValue, 45, 23, 0, 0, // Skip to: 376 404/* 353 */ MCD::OPC_CheckPredicate, 3, 158, 0, 0, // Skip to: 516 405/* 358 */ MCD::OPC_CheckField, 16, 5, 0, 151, 0, 0, // Skip to: 516 406/* 365 */ MCD::OPC_CheckField, 6, 5, 0, 144, 0, 0, // Skip to: 516 407/* 372 */ MCD::OPC_Decode, 174, 11, 26, // Opcode: DPOP 408/* 376 */ MCD::OPC_FilterValue, 46, 9, 0, 0, // Skip to: 390 409/* 381 */ MCD::OPC_CheckPredicate, 3, 130, 0, 0, // Skip to: 516 410/* 386 */ MCD::OPC_Decode, 171, 19, 27, // Opcode: SEQi 411/* 390 */ MCD::OPC_FilterValue, 47, 9, 0, 0, // Skip to: 404 412/* 395 */ MCD::OPC_CheckPredicate, 3, 116, 0, 0, // Skip to: 516 413/* 400 */ MCD::OPC_Decode, 143, 20, 27, // Opcode: SNEi 414/* 404 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 418 415/* 409 */ MCD::OPC_CheckPredicate, 4, 102, 0, 0, // Skip to: 516 416/* 414 */ MCD::OPC_Decode, 177, 8, 28, // Opcode: CINS 417/* 418 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 432 418/* 423 */ MCD::OPC_CheckPredicate, 4, 88, 0, 0, // Skip to: 516 419/* 428 */ MCD::OPC_Decode, 178, 8, 28, // Opcode: CINS32 420/* 432 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 446 421/* 437 */ MCD::OPC_CheckPredicate, 4, 74, 0, 0, // Skip to: 516 422/* 442 */ MCD::OPC_Decode, 133, 12, 28, // Opcode: EXTS 423/* 446 */ MCD::OPC_FilterValue, 59, 65, 0, 0, // Skip to: 516 424/* 451 */ MCD::OPC_CheckPredicate, 4, 60, 0, 0, // Skip to: 516 425/* 456 */ MCD::OPC_Decode, 134, 12, 28, // Opcode: EXTS32 426/* 460 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 474 427/* 465 */ MCD::OPC_CheckPredicate, 3, 46, 0, 0, // Skip to: 516 428/* 470 */ MCD::OPC_Decode, 214, 6, 29, // Opcode: BBIT0 429/* 474 */ MCD::OPC_FilterValue, 54, 9, 0, 0, // Skip to: 488 430/* 479 */ MCD::OPC_CheckPredicate, 3, 32, 0, 0, // Skip to: 516 431/* 484 */ MCD::OPC_Decode, 215, 6, 29, // Opcode: BBIT032 432/* 488 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 502 433/* 493 */ MCD::OPC_CheckPredicate, 3, 18, 0, 0, // Skip to: 516 434/* 498 */ MCD::OPC_Decode, 216, 6, 29, // Opcode: BBIT1 435/* 502 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 516 436/* 507 */ MCD::OPC_CheckPredicate, 3, 4, 0, 0, // Skip to: 516 437/* 512 */ MCD::OPC_Decode, 217, 6, 29, // Opcode: BBIT132 438/* 516 */ MCD::OPC_Fail, 439 0 440}; 441 442static const uint8_t DecoderTableCnMipsP32[] = { 443/* 0 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... 444/* 3 */ MCD::OPC_FilterValue, 24, 16, 0, 0, // Skip to: 24 445/* 8 */ MCD::OPC_CheckPredicate, 5, 32, 0, 0, // Skip to: 45 446/* 13 */ MCD::OPC_CheckField, 26, 6, 28, 25, 0, 0, // Skip to: 45 447/* 20 */ MCD::OPC_Decode, 224, 18, 30, // Opcode: SAA 448/* 24 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 45 449/* 29 */ MCD::OPC_CheckPredicate, 5, 11, 0, 0, // Skip to: 45 450/* 34 */ MCD::OPC_CheckField, 26, 6, 28, 4, 0, 0, // Skip to: 45 451/* 41 */ MCD::OPC_Decode, 225, 18, 30, // Opcode: SAAD 452/* 45 */ MCD::OPC_Fail, 453 0 454}; 455 456static const uint8_t DecoderTableMicroMips16[] = { 457/* 0 */ MCD::OPC_ExtractField, 10, 6, // Inst{15-10} ... 458/* 3 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 39 459/* 8 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 460/* 11 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 25 461/* 16 */ MCD::OPC_CheckPredicate, 6, 114, 2, 0, // Skip to: 647 462/* 21 */ MCD::OPC_Decode, 241, 5, 31, // Opcode: ADDU16_MM 463/* 25 */ MCD::OPC_FilterValue, 1, 105, 2, 0, // Skip to: 647 464/* 30 */ MCD::OPC_CheckPredicate, 6, 100, 2, 0, // Skip to: 647 465/* 35 */ MCD::OPC_Decode, 232, 20, 31, // Opcode: SUBU16_MM 466/* 39 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 53 467/* 44 */ MCD::OPC_CheckPredicate, 7, 86, 2, 0, // Skip to: 647 468/* 49 */ MCD::OPC_Decode, 155, 14, 32, // Opcode: LBU16_MM 469/* 53 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 67 470/* 58 */ MCD::OPC_CheckPredicate, 6, 72, 2, 0, // Skip to: 647 471/* 63 */ MCD::OPC_Decode, 157, 16, 33, // Opcode: MOVE16_MM 472/* 67 */ MCD::OPC_FilterValue, 9, 31, 0, 0, // Skip to: 103 473/* 72 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 474/* 75 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 89 475/* 80 */ MCD::OPC_CheckPredicate, 6, 50, 2, 0, // Skip to: 647 476/* 85 */ MCD::OPC_Decode, 242, 19, 34, // Opcode: SLL16_MM 477/* 89 */ MCD::OPC_FilterValue, 1, 41, 2, 0, // Skip to: 647 478/* 94 */ MCD::OPC_CheckPredicate, 6, 36, 2, 0, // Skip to: 647 479/* 99 */ MCD::OPC_Decode, 173, 20, 34, // Opcode: SRL16_MM 480/* 103 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 117 481/* 108 */ MCD::OPC_CheckPredicate, 7, 22, 2, 0, // Skip to: 647 482/* 113 */ MCD::OPC_Decode, 196, 14, 32, // Opcode: LHU16_MM 483/* 117 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 131 484/* 122 */ MCD::OPC_CheckPredicate, 6, 8, 2, 0, // Skip to: 647 485/* 127 */ MCD::OPC_Decode, 158, 6, 35, // Opcode: ANDI16_MM 486/* 131 */ MCD::OPC_FilterValue, 17, 8, 1, 0, // Skip to: 400 487/* 136 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... 488/* 139 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 153 489/* 144 */ MCD::OPC_CheckPredicate, 6, 242, 1, 0, // Skip to: 647 490/* 149 */ MCD::OPC_Decode, 216, 17, 36, // Opcode: NOT16_MM 491/* 153 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 167 492/* 158 */ MCD::OPC_CheckPredicate, 6, 228, 1, 0, // Skip to: 647 493/* 163 */ MCD::OPC_Decode, 147, 22, 37, // Opcode: XOR16_MM 494/* 167 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 181 495/* 172 */ MCD::OPC_CheckPredicate, 6, 214, 1, 0, // Skip to: 647 496/* 177 */ MCD::OPC_Decode, 155, 6, 37, // Opcode: AND16_MM 497/* 181 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 195 498/* 186 */ MCD::OPC_CheckPredicate, 6, 200, 1, 0, // Skip to: 647 499/* 191 */ MCD::OPC_Decode, 221, 17, 37, // Opcode: OR16_MM 500/* 195 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 209 501/* 200 */ MCD::OPC_CheckPredicate, 6, 186, 1, 0, // Skip to: 647 502/* 205 */ MCD::OPC_Decode, 246, 14, 38, // Opcode: LWM16_MM 503/* 209 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 223 504/* 214 */ MCD::OPC_CheckPredicate, 6, 172, 1, 0, // Skip to: 647 505/* 219 */ MCD::OPC_Decode, 153, 21, 38, // Opcode: SWM16_MM 506/* 223 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 259 507/* 228 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 508/* 231 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 245 509/* 236 */ MCD::OPC_CheckPredicate, 6, 150, 1, 0, // Skip to: 647 510/* 241 */ MCD::OPC_Decode, 133, 14, 39, // Opcode: JR16_MM 511/* 245 */ MCD::OPC_FilterValue, 1, 141, 1, 0, // Skip to: 647 512/* 250 */ MCD::OPC_CheckPredicate, 6, 136, 1, 0, // Skip to: 647 513/* 255 */ MCD::OPC_Decode, 136, 14, 39, // Opcode: JRC16_MM 514/* 259 */ MCD::OPC_FilterValue, 7, 31, 0, 0, // Skip to: 295 515/* 264 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 516/* 267 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 281 517/* 272 */ MCD::OPC_CheckPredicate, 6, 114, 1, 0, // Skip to: 647 518/* 277 */ MCD::OPC_Decode, 240, 13, 39, // Opcode: JALR16_MM 519/* 281 */ MCD::OPC_FilterValue, 1, 105, 1, 0, // Skip to: 647 520/* 286 */ MCD::OPC_CheckPredicate, 6, 100, 1, 0, // Skip to: 647 521/* 291 */ MCD::OPC_Decode, 245, 13, 39, // Opcode: JALRS16_MM 522/* 295 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 316 523/* 300 */ MCD::OPC_CheckPredicate, 6, 86, 1, 0, // Skip to: 647 524/* 305 */ MCD::OPC_CheckField, 5, 1, 0, 79, 1, 0, // Skip to: 647 525/* 312 */ MCD::OPC_Decode, 231, 15, 39, // Opcode: MFHI16_MM 526/* 316 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 337 527/* 321 */ MCD::OPC_CheckPredicate, 6, 65, 1, 0, // Skip to: 647 528/* 326 */ MCD::OPC_CheckField, 5, 1, 0, 58, 1, 0, // Skip to: 647 529/* 333 */ MCD::OPC_Decode, 237, 15, 39, // Opcode: MFLO16_MM 530/* 337 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 358 531/* 342 */ MCD::OPC_CheckPredicate, 6, 44, 1, 0, // Skip to: 647 532/* 347 */ MCD::OPC_CheckField, 4, 2, 0, 37, 1, 0, // Skip to: 647 533/* 354 */ MCD::OPC_Decode, 246, 7, 40, // Opcode: BREAK16_MM 534/* 358 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 379 535/* 363 */ MCD::OPC_CheckPredicate, 6, 23, 1, 0, // Skip to: 647 536/* 368 */ MCD::OPC_CheckField, 4, 2, 0, 16, 1, 0, // Skip to: 647 537/* 375 */ MCD::OPC_Decode, 254, 18, 40, // Opcode: SDBBP16_MM 538/* 379 */ MCD::OPC_FilterValue, 12, 7, 1, 0, // Skip to: 647 539/* 384 */ MCD::OPC_CheckPredicate, 6, 2, 1, 0, // Skip to: 647 540/* 389 */ MCD::OPC_CheckField, 5, 1, 0, 251, 0, 0, // Skip to: 647 541/* 396 */ MCD::OPC_Decode, 135, 14, 41, // Opcode: JRADDIUSP 542/* 400 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 414 543/* 405 */ MCD::OPC_CheckPredicate, 7, 237, 0, 0, // Skip to: 647 544/* 410 */ MCD::OPC_Decode, 129, 15, 42, // Opcode: LWSP_MM 545/* 414 */ MCD::OPC_FilterValue, 19, 31, 0, 0, // Skip to: 450 546/* 419 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 547/* 422 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 436 548/* 427 */ MCD::OPC_CheckPredicate, 7, 215, 0, 0, // Skip to: 647 549/* 432 */ MCD::OPC_Decode, 209, 5, 43, // Opcode: ADDIUS5_MM 550/* 436 */ MCD::OPC_FilterValue, 1, 206, 0, 0, // Skip to: 647 551/* 441 */ MCD::OPC_CheckPredicate, 7, 201, 0, 0, // Skip to: 647 552/* 446 */ MCD::OPC_Decode, 210, 5, 44, // Opcode: ADDIUSP_MM 553/* 450 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 464 554/* 455 */ MCD::OPC_CheckPredicate, 7, 187, 0, 0, // Skip to: 647 555/* 460 */ MCD::OPC_Decode, 240, 14, 45, // Opcode: LWGP_MM 556/* 464 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 478 557/* 469 */ MCD::OPC_CheckPredicate, 7, 173, 0, 0, // Skip to: 647 558/* 474 */ MCD::OPC_Decode, 228, 14, 32, // Opcode: LW16_MM 559/* 478 */ MCD::OPC_FilterValue, 27, 31, 0, 0, // Skip to: 514 560/* 483 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 561/* 486 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 500 562/* 491 */ MCD::OPC_CheckPredicate, 7, 151, 0, 0, // Skip to: 647 563/* 496 */ MCD::OPC_Decode, 208, 5, 46, // Opcode: ADDIUR2_MM 564/* 500 */ MCD::OPC_FilterValue, 1, 142, 0, 0, // Skip to: 647 565/* 505 */ MCD::OPC_CheckPredicate, 7, 137, 0, 0, // Skip to: 647 566/* 510 */ MCD::OPC_Decode, 207, 5, 47, // Opcode: ADDIUR1SP_MM 567/* 514 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 535 568/* 519 */ MCD::OPC_CheckPredicate, 6, 123, 0, 0, // Skip to: 647 569/* 524 */ MCD::OPC_CheckField, 0, 1, 0, 116, 0, 0, // Skip to: 647 570/* 531 */ MCD::OPC_Decode, 159, 16, 48, // Opcode: MOVEP_MM 571/* 535 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 549 572/* 540 */ MCD::OPC_CheckPredicate, 6, 102, 0, 0, // Skip to: 647 573/* 545 */ MCD::OPC_Decode, 235, 18, 32, // Opcode: SB16_MM 574/* 549 */ MCD::OPC_FilterValue, 35, 9, 0, 0, // Skip to: 563 575/* 554 */ MCD::OPC_CheckPredicate, 6, 88, 0, 0, // Skip to: 647 576/* 559 */ MCD::OPC_Decode, 249, 6, 49, // Opcode: BEQZ16_MM 577/* 563 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 577 578/* 568 */ MCD::OPC_CheckPredicate, 6, 74, 0, 0, // Skip to: 647 579/* 573 */ MCD::OPC_Decode, 173, 19, 32, // Opcode: SH16_MM 580/* 577 */ MCD::OPC_FilterValue, 43, 9, 0, 0, // Skip to: 591 581/* 582 */ MCD::OPC_CheckPredicate, 6, 60, 0, 0, // Skip to: 647 582/* 587 */ MCD::OPC_Decode, 224, 7, 49, // Opcode: BNEZ16_MM 583/* 591 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 605 584/* 596 */ MCD::OPC_CheckPredicate, 6, 46, 0, 0, // Skip to: 647 585/* 601 */ MCD::OPC_Decode, 162, 21, 42, // Opcode: SWSP_MM 586/* 605 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 619 587/* 610 */ MCD::OPC_CheckPredicate, 7, 32, 0, 0, // Skip to: 647 588/* 615 */ MCD::OPC_Decode, 207, 6, 50, // Opcode: B16_MM 589/* 619 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 633 590/* 624 */ MCD::OPC_CheckPredicate, 6, 18, 0, 0, // Skip to: 647 591/* 629 */ MCD::OPC_Decode, 135, 21, 32, // Opcode: SW16_MM 592/* 633 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 647 593/* 638 */ MCD::OPC_CheckPredicate, 6, 4, 0, 0, // Skip to: 647 594/* 643 */ MCD::OPC_Decode, 205, 14, 51, // Opcode: LI16_MM 595/* 647 */ MCD::OPC_Fail, 596 0 597}; 598 599static const uint8_t DecoderTableMicroMips32[] = { 600/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 601/* 3 */ MCD::OPC_FilterValue, 0, 238, 14, 0, // Skip to: 3830 602/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 603/* 11 */ MCD::OPC_FilterValue, 0, 104, 0, 0, // Skip to: 120 604/* 16 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 605/* 19 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 78 606/* 24 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... 607/* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 608/* 32 */ MCD::OPC_CheckPredicate, 7, 32, 0, 0, // Skip to: 69 609/* 37 */ MCD::OPC_Decode, 195, 20, 10, // Opcode: SSNOP_MM 610/* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 611/* 46 */ MCD::OPC_CheckPredicate, 7, 18, 0, 0, // Skip to: 69 612/* 51 */ MCD::OPC_Decode, 222, 11, 10, // Opcode: EHB_MM 613/* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 614/* 60 */ MCD::OPC_CheckPredicate, 7, 4, 0, 0, // Skip to: 69 615/* 65 */ MCD::OPC_Decode, 236, 17, 10, // Opcode: PAUSE_MM 616/* 69 */ MCD::OPC_CheckPredicate, 7, 101, 25, 0, // Skip to: 6575 617/* 74 */ MCD::OPC_Decode, 255, 19, 52, // Opcode: SLL_MM 618/* 78 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 92 619/* 83 */ MCD::OPC_CheckPredicate, 7, 87, 25, 0, // Skip to: 6575 620/* 88 */ MCD::OPC_Decode, 192, 20, 52, // Opcode: SRL_MM 621/* 92 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 106 622/* 97 */ MCD::OPC_CheckPredicate, 7, 73, 25, 0, // Skip to: 6575 623/* 102 */ MCD::OPC_Decode, 170, 20, 52, // Opcode: SRA_MM 624/* 106 */ MCD::OPC_FilterValue, 3, 64, 25, 0, // Skip to: 6575 625/* 111 */ MCD::OPC_CheckPredicate, 7, 59, 25, 0, // Skip to: 6575 626/* 116 */ MCD::OPC_Decode, 204, 18, 52, // Opcode: ROTR_MM 627/* 120 */ MCD::OPC_FilterValue, 5, 227, 0, 0, // Skip to: 352 628/* 125 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 629/* 128 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 149 630/* 133 */ MCD::OPC_CheckPredicate, 8, 37, 25, 0, // Skip to: 6575 631/* 138 */ MCD::OPC_CheckField, 11, 5, 0, 30, 25, 0, // Skip to: 6575 632/* 145 */ MCD::OPC_Decode, 248, 8, 53, // Opcode: CMP_EQ_PH_MM 633/* 149 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 170 634/* 154 */ MCD::OPC_CheckPredicate, 8, 16, 25, 0, // Skip to: 6575 635/* 159 */ MCD::OPC_CheckField, 11, 5, 0, 9, 25, 0, // Skip to: 6575 636/* 166 */ MCD::OPC_Decode, 134, 9, 53, // Opcode: CMP_LT_PH_MM 637/* 170 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 191 638/* 175 */ MCD::OPC_CheckPredicate, 8, 251, 24, 0, // Skip to: 6575 639/* 180 */ MCD::OPC_CheckField, 11, 5, 0, 244, 24, 0, // Skip to: 6575 640/* 187 */ MCD::OPC_Decode, 128, 9, 53, // Opcode: CMP_LE_PH_MM 641/* 191 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 205 642/* 196 */ MCD::OPC_CheckPredicate, 9, 230, 24, 0, // Skip to: 6575 643/* 201 */ MCD::OPC_Decode, 226, 8, 54, // Opcode: CMPGDU_EQ_QB_MMR2 644/* 205 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 219 645/* 210 */ MCD::OPC_CheckPredicate, 9, 216, 24, 0, // Skip to: 6575 646/* 215 */ MCD::OPC_Decode, 230, 8, 54, // Opcode: CMPGDU_LT_QB_MMR2 647/* 219 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 233 648/* 224 */ MCD::OPC_CheckPredicate, 9, 202, 24, 0, // Skip to: 6575 649/* 229 */ MCD::OPC_Decode, 228, 8, 54, // Opcode: CMPGDU_LE_QB_MMR2 650/* 233 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 254 651/* 238 */ MCD::OPC_CheckPredicate, 8, 188, 24, 0, // Skip to: 6575 652/* 243 */ MCD::OPC_CheckField, 11, 5, 0, 181, 24, 0, // Skip to: 6575 653/* 250 */ MCD::OPC_Decode, 238, 8, 53, // Opcode: CMPU_EQ_QB_MM 654/* 254 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 275 655/* 259 */ MCD::OPC_CheckPredicate, 8, 167, 24, 0, // Skip to: 6575 656/* 264 */ MCD::OPC_CheckField, 11, 5, 0, 160, 24, 0, // Skip to: 6575 657/* 271 */ MCD::OPC_Decode, 242, 8, 53, // Opcode: CMPU_LT_QB_MM 658/* 275 */ MCD::OPC_FilterValue, 11, 16, 0, 0, // Skip to: 296 659/* 280 */ MCD::OPC_CheckPredicate, 8, 146, 24, 0, // Skip to: 6575 660/* 285 */ MCD::OPC_CheckField, 11, 5, 0, 139, 24, 0, // Skip to: 6575 661/* 292 */ MCD::OPC_Decode, 240, 8, 53, // Opcode: CMPU_LE_QB_MM 662/* 296 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 310 663/* 301 */ MCD::OPC_CheckPredicate, 8, 125, 24, 0, // Skip to: 6575 664/* 306 */ MCD::OPC_Decode, 225, 5, 55, // Opcode: ADDQ_S_W_MM 665/* 310 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 324 666/* 315 */ MCD::OPC_CheckPredicate, 8, 111, 24, 0, // Skip to: 6575 667/* 320 */ MCD::OPC_Decode, 215, 20, 55, // Opcode: SUBQ_S_W_MM 668/* 324 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 338 669/* 329 */ MCD::OPC_CheckPredicate, 8, 97, 24, 0, // Skip to: 6575 670/* 334 */ MCD::OPC_Decode, 228, 5, 55, // Opcode: ADDSC_MM 671/* 338 */ MCD::OPC_FilterValue, 15, 88, 24, 0, // Skip to: 6575 672/* 343 */ MCD::OPC_CheckPredicate, 8, 83, 24, 0, // Skip to: 6575 673/* 348 */ MCD::OPC_Decode, 137, 6, 55, // Opcode: ADDWC_MM 674/* 352 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 366 675/* 357 */ MCD::OPC_CheckPredicate, 7, 69, 24, 0, // Skip to: 6575 676/* 362 */ MCD::OPC_Decode, 248, 7, 56, // Opcode: BREAK_MM 677/* 366 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 380 678/* 371 */ MCD::OPC_CheckPredicate, 6, 55, 24, 0, // Skip to: 6575 679/* 376 */ MCD::OPC_Decode, 235, 13, 57, // Opcode: INS_MM 680/* 380 */ MCD::OPC_FilterValue, 13, 167, 1, 0, // Skip to: 808 681/* 385 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 682/* 388 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 402 683/* 393 */ MCD::OPC_CheckPredicate, 8, 33, 24, 0, // Skip to: 6575 684/* 398 */ MCD::OPC_Decode, 221, 5, 58, // Opcode: ADDQ_PH_MM 685/* 402 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 416 686/* 407 */ MCD::OPC_CheckPredicate, 9, 19, 24, 0, // Skip to: 6575 687/* 412 */ MCD::OPC_Decode, 213, 5, 58, // Opcode: ADDQH_PH_MMR2 688/* 416 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 430 689/* 421 */ MCD::OPC_CheckPredicate, 9, 5, 24, 0, // Skip to: 6575 690/* 426 */ MCD::OPC_Decode, 219, 5, 55, // Opcode: ADDQH_W_MMR2 691/* 430 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 444 692/* 435 */ MCD::OPC_CheckPredicate, 8, 247, 23, 0, // Skip to: 6575 693/* 440 */ MCD::OPC_Decode, 251, 5, 58, // Opcode: ADDU_QB_MM 694/* 444 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 458 695/* 449 */ MCD::OPC_CheckPredicate, 9, 233, 23, 0, // Skip to: 6575 696/* 454 */ MCD::OPC_Decode, 249, 5, 58, // Opcode: ADDU_PH_MMR2 697/* 458 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 472 698/* 463 */ MCD::OPC_CheckPredicate, 9, 219, 23, 0, // Skip to: 6575 699/* 468 */ MCD::OPC_Decode, 244, 5, 58, // Opcode: ADDUH_QB_MMR2 700/* 472 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 486 701/* 477 */ MCD::OPC_CheckPredicate, 8, 205, 23, 0, // Skip to: 6575 702/* 482 */ MCD::OPC_Decode, 202, 19, 59, // Opcode: SHRAV_PH_MM 703/* 486 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 500 704/* 491 */ MCD::OPC_CheckPredicate, 9, 191, 23, 0, // Skip to: 6575 705/* 496 */ MCD::OPC_Decode, 204, 19, 59, // Opcode: SHRAV_QB_MMR2 706/* 500 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 514 707/* 505 */ MCD::OPC_CheckPredicate, 8, 177, 23, 0, // Skip to: 6575 708/* 510 */ MCD::OPC_Decode, 211, 20, 58, // Opcode: SUBQ_PH_MM 709/* 514 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 528 710/* 519 */ MCD::OPC_CheckPredicate, 9, 163, 23, 0, // Skip to: 6575 711/* 524 */ MCD::OPC_Decode, 203, 20, 58, // Opcode: SUBQH_PH_MMR2 712/* 528 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 542 713/* 533 */ MCD::OPC_CheckPredicate, 9, 149, 23, 0, // Skip to: 6575 714/* 538 */ MCD::OPC_Decode, 209, 20, 55, // Opcode: SUBQH_W_MMR2 715/* 542 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 556 716/* 547 */ MCD::OPC_CheckPredicate, 8, 135, 23, 0, // Skip to: 6575 717/* 552 */ MCD::OPC_Decode, 242, 20, 58, // Opcode: SUBU_QB_MM 718/* 556 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 570 719/* 561 */ MCD::OPC_CheckPredicate, 9, 121, 23, 0, // Skip to: 6575 720/* 566 */ MCD::OPC_Decode, 240, 20, 58, // Opcode: SUBU_PH_MMR2 721/* 570 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 584 722/* 575 */ MCD::OPC_CheckPredicate, 9, 107, 23, 0, // Skip to: 6575 723/* 580 */ MCD::OPC_Decode, 235, 20, 58, // Opcode: SUBUH_QB_MMR2 724/* 584 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 598 725/* 589 */ MCD::OPC_CheckPredicate, 9, 93, 23, 0, // Skip to: 6575 726/* 594 */ MCD::OPC_Decode, 160, 18, 60, // Opcode: PRECR_SRA_PH_W_MMR2 727/* 598 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 612 728/* 603 */ MCD::OPC_CheckPredicate, 8, 79, 23, 0, // Skip to: 6575 729/* 608 */ MCD::OPC_Decode, 223, 5, 58, // Opcode: ADDQ_S_PH_MM 730/* 612 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 626 731/* 617 */ MCD::OPC_CheckPredicate, 9, 65, 23, 0, // Skip to: 6575 732/* 622 */ MCD::OPC_Decode, 215, 5, 58, // Opcode: ADDQH_R_PH_MMR2 733/* 626 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 640 734/* 631 */ MCD::OPC_CheckPredicate, 9, 51, 23, 0, // Skip to: 6575 735/* 636 */ MCD::OPC_Decode, 217, 5, 55, // Opcode: ADDQH_R_W_MMR2 736/* 640 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 654 737/* 645 */ MCD::OPC_CheckPredicate, 8, 37, 23, 0, // Skip to: 6575 738/* 650 */ MCD::OPC_Decode, 255, 5, 58, // Opcode: ADDU_S_QB_MM 739/* 654 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 668 740/* 659 */ MCD::OPC_CheckPredicate, 9, 23, 23, 0, // Skip to: 6575 741/* 664 */ MCD::OPC_Decode, 253, 5, 58, // Opcode: ADDU_S_PH_MMR2 742/* 668 */ MCD::OPC_FilterValue, 21, 9, 0, 0, // Skip to: 682 743/* 673 */ MCD::OPC_CheckPredicate, 9, 9, 23, 0, // Skip to: 6575 744/* 678 */ MCD::OPC_Decode, 246, 5, 58, // Opcode: ADDUH_R_QB_MMR2 745/* 682 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 696 746/* 687 */ MCD::OPC_CheckPredicate, 8, 251, 22, 0, // Skip to: 6575 747/* 692 */ MCD::OPC_Decode, 206, 19, 59, // Opcode: SHRAV_R_PH_MM 748/* 696 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 710 749/* 701 */ MCD::OPC_CheckPredicate, 9, 237, 22, 0, // Skip to: 6575 750/* 706 */ MCD::OPC_Decode, 208, 19, 59, // Opcode: SHRAV_R_QB_MMR2 751/* 710 */ MCD::OPC_FilterValue, 24, 9, 0, 0, // Skip to: 724 752/* 715 */ MCD::OPC_CheckPredicate, 8, 223, 22, 0, // Skip to: 6575 753/* 720 */ MCD::OPC_Decode, 213, 20, 58, // Opcode: SUBQ_S_PH_MM 754/* 724 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 738 755/* 729 */ MCD::OPC_CheckPredicate, 9, 209, 22, 0, // Skip to: 6575 756/* 734 */ MCD::OPC_Decode, 205, 20, 58, // Opcode: SUBQH_R_PH_MMR2 757/* 738 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 752 758/* 743 */ MCD::OPC_CheckPredicate, 9, 195, 22, 0, // Skip to: 6575 759/* 748 */ MCD::OPC_Decode, 207, 20, 55, // Opcode: SUBQH_R_W_MMR2 760/* 752 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 766 761/* 757 */ MCD::OPC_CheckPredicate, 8, 181, 22, 0, // Skip to: 6575 762/* 762 */ MCD::OPC_Decode, 246, 20, 58, // Opcode: SUBU_S_QB_MM 763/* 766 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 780 764/* 771 */ MCD::OPC_CheckPredicate, 9, 167, 22, 0, // Skip to: 6575 765/* 776 */ MCD::OPC_Decode, 244, 20, 58, // Opcode: SUBU_S_PH_MMR2 766/* 780 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 794 767/* 785 */ MCD::OPC_CheckPredicate, 9, 153, 22, 0, // Skip to: 6575 768/* 790 */ MCD::OPC_Decode, 237, 20, 58, // Opcode: SUBUH_R_QB_MMR2 769/* 794 */ MCD::OPC_FilterValue, 31, 144, 22, 0, // Skip to: 6575 770/* 799 */ MCD::OPC_CheckPredicate, 9, 139, 22, 0, // Skip to: 6575 771/* 804 */ MCD::OPC_Decode, 162, 18, 60, // Opcode: PRECR_SRA_R_PH_W_MMR2 772/* 808 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 844 773/* 813 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 774/* 816 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 830 775/* 821 */ MCD::OPC_CheckPredicate, 8, 117, 22, 0, // Skip to: 6575 776/* 826 */ MCD::OPC_Decode, 186, 19, 59, // Opcode: SHLLV_PH_MM 777/* 830 */ MCD::OPC_FilterValue, 16, 108, 22, 0, // Skip to: 6575 778/* 835 */ MCD::OPC_CheckPredicate, 8, 103, 22, 0, // Skip to: 6575 779/* 840 */ MCD::OPC_Decode, 190, 19, 59, // Opcode: SHLLV_S_PH_MM 780/* 844 */ MCD::OPC_FilterValue, 16, 213, 0, 0, // Skip to: 1062 781/* 849 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 782/* 852 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 866 783/* 857 */ MCD::OPC_CheckPredicate, 7, 81, 22, 0, // Skip to: 6575 784/* 862 */ MCD::OPC_Decode, 251, 19, 61, // Opcode: SLLV_MM 785/* 866 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 880 786/* 871 */ MCD::OPC_CheckPredicate, 7, 67, 22, 0, // Skip to: 6575 787/* 876 */ MCD::OPC_Decode, 188, 20, 61, // Opcode: SRLV_MM 788/* 880 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 894 789/* 885 */ MCD::OPC_CheckPredicate, 7, 53, 22, 0, // Skip to: 6575 790/* 890 */ MCD::OPC_Decode, 166, 20, 61, // Opcode: SRAV_MM 791/* 894 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 908 792/* 899 */ MCD::OPC_CheckPredicate, 7, 39, 22, 0, // Skip to: 6575 793/* 904 */ MCD::OPC_Decode, 203, 18, 61, // Opcode: ROTRV_MM 794/* 908 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 922 795/* 913 */ MCD::OPC_CheckPredicate, 6, 25, 22, 0, // Skip to: 6575 796/* 918 */ MCD::OPC_Decode, 142, 6, 55, // Opcode: ADD_MM 797/* 922 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 936 798/* 927 */ MCD::OPC_CheckPredicate, 6, 11, 22, 0, // Skip to: 6575 799/* 932 */ MCD::OPC_Decode, 149, 6, 55, // Opcode: ADDu_MM 800/* 936 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 950 801/* 941 */ MCD::OPC_CheckPredicate, 6, 253, 21, 0, // Skip to: 6575 802/* 946 */ MCD::OPC_Decode, 255, 20, 55, // Opcode: SUB_MM 803/* 950 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 964 804/* 955 */ MCD::OPC_CheckPredicate, 6, 239, 21, 0, // Skip to: 6575 805/* 960 */ MCD::OPC_Decode, 130, 21, 55, // Opcode: SUBu_MM 806/* 964 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 978 807/* 969 */ MCD::OPC_CheckPredicate, 6, 225, 21, 0, // Skip to: 6575 808/* 974 */ MCD::OPC_Decode, 179, 17, 55, // Opcode: MUL_MM 809/* 978 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 992 810/* 983 */ MCD::OPC_CheckPredicate, 6, 211, 21, 0, // Skip to: 6575 811/* 988 */ MCD::OPC_Decode, 162, 6, 55, // Opcode: AND_MM 812/* 992 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 1006 813/* 997 */ MCD::OPC_CheckPredicate, 6, 197, 21, 0, // Skip to: 6575 814/* 1002 */ MCD::OPC_Decode, 226, 17, 55, // Opcode: OR_MM 815/* 1006 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1020 816/* 1011 */ MCD::OPC_CheckPredicate, 6, 183, 21, 0, // Skip to: 6575 817/* 1016 */ MCD::OPC_Decode, 213, 17, 55, // Opcode: NOR_MM 818/* 1020 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1034 819/* 1025 */ MCD::OPC_CheckPredicate, 6, 169, 21, 0, // Skip to: 6575 820/* 1030 */ MCD::OPC_Decode, 152, 22, 55, // Opcode: XOR_MM 821/* 1034 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 1048 822/* 1039 */ MCD::OPC_CheckPredicate, 7, 155, 21, 0, // Skip to: 6575 823/* 1044 */ MCD::OPC_Decode, 132, 20, 55, // Opcode: SLT_MM 824/* 1048 */ MCD::OPC_FilterValue, 14, 146, 21, 0, // Skip to: 6575 825/* 1053 */ MCD::OPC_CheckPredicate, 7, 141, 21, 0, // Skip to: 6575 826/* 1058 */ MCD::OPC_Decode, 141, 20, 55, // Opcode: SLTu_MM 827/* 1062 */ MCD::OPC_FilterValue, 21, 199, 0, 0, // Skip to: 1266 828/* 1067 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 829/* 1070 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1084 830/* 1075 */ MCD::OPC_CheckPredicate, 8, 119, 21, 0, // Skip to: 6575 831/* 1080 */ MCD::OPC_Decode, 147, 17, 58, // Opcode: MULEU_S_PH_QBL_MM 832/* 1084 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 1098 833/* 1089 */ MCD::OPC_CheckPredicate, 8, 105, 21, 0, // Skip to: 6575 834/* 1094 */ MCD::OPC_Decode, 149, 17, 58, // Opcode: MULEU_S_PH_QBR_MM 835/* 1098 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1112 836/* 1103 */ MCD::OPC_CheckPredicate, 8, 91, 21, 0, // Skip to: 6575 837/* 1108 */ MCD::OPC_Decode, 151, 17, 58, // Opcode: MULQ_RS_PH_MM 838/* 1112 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1126 839/* 1117 */ MCD::OPC_CheckPredicate, 9, 77, 21, 0, // Skip to: 6575 840/* 1122 */ MCD::OPC_Decode, 155, 17, 58, // Opcode: MULQ_S_PH_MMR2 841/* 1126 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1140 842/* 1131 */ MCD::OPC_CheckPredicate, 9, 63, 21, 0, // Skip to: 6575 843/* 1136 */ MCD::OPC_Decode, 153, 17, 55, // Opcode: MULQ_RS_W_MMR2 844/* 1140 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 1154 845/* 1145 */ MCD::OPC_CheckPredicate, 9, 49, 21, 0, // Skip to: 6575 846/* 1150 */ MCD::OPC_Decode, 157, 17, 55, // Opcode: MULQ_S_W_MMR2 847/* 1154 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 1168 848/* 1159 */ MCD::OPC_CheckPredicate, 9, 35, 21, 0, // Skip to: 6575 849/* 1164 */ MCD::OPC_Decode, 169, 6, 62, // Opcode: APPEND_MMR2 850/* 1168 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 1182 851/* 1173 */ MCD::OPC_CheckPredicate, 9, 21, 21, 0, // Skip to: 6575 852/* 1178 */ MCD::OPC_Decode, 171, 18, 62, // Opcode: PREPEND_MMR2 853/* 1182 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 1196 854/* 1187 */ MCD::OPC_CheckPredicate, 8, 7, 21, 0, // Skip to: 6575 855/* 1192 */ MCD::OPC_Decode, 145, 16, 55, // Opcode: MODSUB_MM 856/* 1196 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1210 857/* 1201 */ MCD::OPC_CheckPredicate, 8, 249, 20, 0, // Skip to: 6575 858/* 1206 */ MCD::OPC_Decode, 210, 19, 61, // Opcode: SHRAV_R_W_MM 859/* 1210 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1224 860/* 1215 */ MCD::OPC_CheckPredicate, 9, 235, 20, 0, // Skip to: 6575 861/* 1220 */ MCD::OPC_Decode, 222, 19, 59, // Opcode: SHRLV_PH_MMR2 862/* 1224 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 1238 863/* 1229 */ MCD::OPC_CheckPredicate, 8, 221, 20, 0, // Skip to: 6575 864/* 1234 */ MCD::OPC_Decode, 224, 19, 59, // Opcode: SHRLV_QB_MM 865/* 1238 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 1252 866/* 1243 */ MCD::OPC_CheckPredicate, 8, 207, 20, 0, // Skip to: 6575 867/* 1248 */ MCD::OPC_Decode, 188, 19, 59, // Opcode: SHLLV_QB_MM 868/* 1252 */ MCD::OPC_FilterValue, 15, 198, 20, 0, // Skip to: 6575 869/* 1257 */ MCD::OPC_CheckPredicate, 8, 193, 20, 0, // Skip to: 6575 870/* 1262 */ MCD::OPC_Decode, 192, 19, 61, // Opcode: SHLLV_S_W_MM 871/* 1266 */ MCD::OPC_FilterValue, 24, 45, 0, 0, // Skip to: 1316 872/* 1271 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 873/* 1274 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1288 874/* 1279 */ MCD::OPC_CheckPredicate, 6, 171, 20, 0, // Skip to: 6575 875/* 1284 */ MCD::OPC_Decode, 179, 16, 63, // Opcode: MOVN_I_MM 876/* 1288 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1302 877/* 1293 */ MCD::OPC_CheckPredicate, 6, 157, 20, 0, // Skip to: 6575 878/* 1298 */ MCD::OPC_Decode, 199, 16, 63, // Opcode: MOVZ_I_MM 879/* 1302 */ MCD::OPC_FilterValue, 4, 148, 20, 0, // Skip to: 6575 880/* 1307 */ MCD::OPC_CheckPredicate, 7, 143, 20, 0, // Skip to: 6575 881/* 1312 */ MCD::OPC_Decode, 135, 15, 64, // Opcode: LWXS_MM 882/* 1316 */ MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 1344 883/* 1321 */ MCD::OPC_CheckPredicate, 8, 129, 20, 0, // Skip to: 6575 884/* 1326 */ MCD::OPC_CheckField, 22, 4, 0, 122, 20, 0, // Skip to: 6575 885/* 1333 */ MCD::OPC_CheckField, 6, 8, 0, 115, 20, 0, // Skip to: 6575 886/* 1340 */ MCD::OPC_Decode, 184, 19, 65, // Opcode: SHILO_MM 887/* 1344 */ MCD::OPC_FilterValue, 37, 73, 0, 0, // Skip to: 1422 888/* 1349 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 889/* 1352 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1366 890/* 1357 */ MCD::OPC_CheckPredicate, 8, 93, 20, 0, // Skip to: 6575 891/* 1362 */ MCD::OPC_Decode, 143, 17, 54, // Opcode: MULEQ_S_W_PHL_MM 892/* 1366 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1380 893/* 1371 */ MCD::OPC_CheckPredicate, 8, 79, 20, 0, // Skip to: 6575 894/* 1376 */ MCD::OPC_Decode, 145, 17, 54, // Opcode: MULEQ_S_W_PHR_MM 895/* 1380 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1394 896/* 1385 */ MCD::OPC_CheckPredicate, 8, 65, 20, 0, // Skip to: 6575 897/* 1390 */ MCD::OPC_Decode, 198, 14, 64, // Opcode: LHX_MM 898/* 1394 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1408 899/* 1399 */ MCD::OPC_CheckPredicate, 8, 51, 20, 0, // Skip to: 6575 900/* 1404 */ MCD::OPC_Decode, 136, 15, 64, // Opcode: LWX_MM 901/* 1408 */ MCD::OPC_FilterValue, 8, 42, 20, 0, // Skip to: 6575 902/* 1413 */ MCD::OPC_CheckPredicate, 8, 37, 20, 0, // Skip to: 6575 903/* 1418 */ MCD::OPC_Decode, 157, 14, 64, // Opcode: LBUX_MM 904/* 1422 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 1436 905/* 1427 */ MCD::OPC_CheckPredicate, 6, 23, 20, 0, // Skip to: 6575 906/* 1432 */ MCD::OPC_Decode, 135, 12, 66, // Opcode: EXT_MM 907/* 1436 */ MCD::OPC_FilterValue, 45, 143, 0, 0, // Skip to: 1584 908/* 1441 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 909/* 1444 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1458 910/* 1449 */ MCD::OPC_CheckPredicate, 9, 1, 20, 0, // Skip to: 6575 911/* 1454 */ MCD::OPC_Decode, 182, 17, 58, // Opcode: MUL_PH_MMR2 912/* 1458 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1472 913/* 1463 */ MCD::OPC_CheckPredicate, 9, 243, 19, 0, // Skip to: 6575 914/* 1468 */ MCD::OPC_Decode, 158, 18, 58, // Opcode: PRECR_QB_PH_MMR2 915/* 1472 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1486 916/* 1477 */ MCD::OPC_CheckPredicate, 8, 229, 19, 0, // Skip to: 6575 917/* 1482 */ MCD::OPC_Decode, 154, 18, 58, // Opcode: PRECRQ_QB_PH_MM 918/* 1486 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 1500 919/* 1491 */ MCD::OPC_CheckPredicate, 8, 215, 19, 0, // Skip to: 6575 920/* 1496 */ MCD::OPC_Decode, 152, 18, 67, // Opcode: PRECRQ_PH_W_MM 921/* 1500 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1514 922/* 1505 */ MCD::OPC_CheckPredicate, 8, 201, 19, 0, // Skip to: 6575 923/* 1510 */ MCD::OPC_Decode, 156, 18, 67, // Opcode: PRECRQ_RS_PH_W_MM 924/* 1514 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1528 925/* 1519 */ MCD::OPC_CheckPredicate, 8, 187, 19, 0, // Skip to: 6575 926/* 1524 */ MCD::OPC_Decode, 150, 18, 58, // Opcode: PRECRQU_S_QB_PH_MM 927/* 1528 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1542 928/* 1533 */ MCD::OPC_CheckPredicate, 8, 173, 19, 0, // Skip to: 6575 929/* 1538 */ MCD::OPC_Decode, 234, 17, 58, // Opcode: PACKRL_PH_MM 930/* 1542 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 1556 931/* 1547 */ MCD::OPC_CheckPredicate, 8, 159, 19, 0, // Skip to: 6575 932/* 1552 */ MCD::OPC_Decode, 253, 17, 58, // Opcode: PICK_QB_MM 933/* 1556 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 1570 934/* 1561 */ MCD::OPC_CheckPredicate, 8, 145, 19, 0, // Skip to: 6575 935/* 1566 */ MCD::OPC_Decode, 251, 17, 58, // Opcode: PICK_PH_MM 936/* 1570 */ MCD::OPC_FilterValue, 16, 136, 19, 0, // Skip to: 6575 937/* 1575 */ MCD::OPC_CheckPredicate, 9, 131, 19, 0, // Skip to: 6575 938/* 1580 */ MCD::OPC_Decode, 187, 17, 58, // Opcode: MUL_S_PH_MMR2 939/* 1584 */ MCD::OPC_FilterValue, 52, 45, 0, 0, // Skip to: 1634 940/* 1589 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 941/* 1592 */ MCD::OPC_FilterValue, 19, 16, 0, 0, // Skip to: 1613 942/* 1597 */ MCD::OPC_CheckPredicate, 10, 109, 19, 0, // Skip to: 6575 943/* 1602 */ MCD::OPC_CheckField, 14, 2, 0, 102, 19, 0, // Skip to: 6575 944/* 1609 */ MCD::OPC_Decode, 229, 15, 68, // Opcode: MFHGC0_MM 945/* 1613 */ MCD::OPC_FilterValue, 27, 93, 19, 0, // Skip to: 6575 946/* 1618 */ MCD::OPC_CheckPredicate, 10, 88, 19, 0, // Skip to: 6575 947/* 1623 */ MCD::OPC_CheckField, 14, 2, 0, 81, 19, 0, // Skip to: 6575 948/* 1630 */ MCD::OPC_Decode, 245, 16, 69, // Opcode: MTHGC0_MM 949/* 1634 */ MCD::OPC_FilterValue, 53, 109, 0, 0, // Skip to: 1748 950/* 1639 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 951/* 1642 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 1656 952/* 1647 */ MCD::OPC_CheckPredicate, 8, 59, 19, 0, // Skip to: 6575 953/* 1652 */ MCD::OPC_Decode, 220, 19, 52, // Opcode: SHRA_R_W_MM 954/* 1656 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 1677 955/* 1661 */ MCD::OPC_CheckPredicate, 8, 45, 19, 0, // Skip to: 6575 956/* 1666 */ MCD::OPC_CheckField, 11, 1, 0, 38, 19, 0, // Skip to: 6575 957/* 1673 */ MCD::OPC_Decode, 212, 19, 70, // Opcode: SHRA_PH_MM 958/* 1677 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 1713 959/* 1682 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 960/* 1685 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1699 961/* 1690 */ MCD::OPC_CheckPredicate, 8, 16, 19, 0, // Skip to: 6575 962/* 1695 */ MCD::OPC_Decode, 194, 19, 70, // Opcode: SHLL_PH_MM 963/* 1699 */ MCD::OPC_FilterValue, 1, 7, 19, 0, // Skip to: 6575 964/* 1704 */ MCD::OPC_CheckPredicate, 8, 2, 19, 0, // Skip to: 6575 965/* 1709 */ MCD::OPC_Decode, 198, 19, 70, // Opcode: SHLL_S_PH_MM 966/* 1713 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 1727 967/* 1718 */ MCD::OPC_CheckPredicate, 8, 244, 18, 0, // Skip to: 6575 968/* 1723 */ MCD::OPC_Decode, 200, 19, 52, // Opcode: SHLL_S_W_MM 969/* 1727 */ MCD::OPC_FilterValue, 28, 235, 18, 0, // Skip to: 6575 970/* 1732 */ MCD::OPC_CheckPredicate, 8, 230, 18, 0, // Skip to: 6575 971/* 1737 */ MCD::OPC_CheckField, 11, 1, 0, 223, 18, 0, // Skip to: 6575 972/* 1744 */ MCD::OPC_Decode, 216, 19, 70, // Opcode: SHRA_R_PH_MM 973/* 1748 */ MCD::OPC_FilterValue, 60, 8, 8, 0, // Skip to: 3809 974/* 1753 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 975/* 1756 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1792 976/* 1761 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 977/* 1764 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1778 978/* 1769 */ MCD::OPC_CheckPredicate, 7, 193, 18, 0, // Skip to: 6575 979/* 1774 */ MCD::OPC_Decode, 200, 21, 71, // Opcode: TEQ_MM 980/* 1778 */ MCD::OPC_FilterValue, 1, 184, 18, 0, // Skip to: 6575 981/* 1783 */ MCD::OPC_CheckPredicate, 7, 179, 18, 0, // Skip to: 6575 982/* 1788 */ MCD::OPC_Decode, 239, 21, 71, // Opcode: TLT_MM 983/* 1792 */ MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 1928 984/* 1797 */ MCD::OPC_ExtractField, 11, 2, // Inst{12-11} ... 985/* 1800 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 1850 986/* 1805 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 987/* 1808 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1829 988/* 1813 */ MCD::OPC_CheckPredicate, 8, 149, 18, 0, // Skip to: 6575 989/* 1818 */ MCD::OPC_CheckField, 21, 5, 0, 142, 18, 0, // Skip to: 6575 990/* 1825 */ MCD::OPC_Decode, 234, 15, 72, // Opcode: MFHI_DSP_MM 991/* 1829 */ MCD::OPC_FilterValue, 1, 133, 18, 0, // Skip to: 6575 992/* 1834 */ MCD::OPC_CheckPredicate, 8, 128, 18, 0, // Skip to: 6575 993/* 1839 */ MCD::OPC_CheckField, 21, 5, 0, 121, 18, 0, // Skip to: 6575 994/* 1846 */ MCD::OPC_Decode, 249, 16, 73, // Opcode: MTHI_DSP_MM 995/* 1850 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1864 996/* 1855 */ MCD::OPC_CheckPredicate, 8, 107, 18, 0, // Skip to: 6575 997/* 1860 */ MCD::OPC_Decode, 196, 19, 74, // Opcode: SHLL_QB_MM 998/* 1864 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 1914 999/* 1869 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 1000/* 1872 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1893 1001/* 1877 */ MCD::OPC_CheckPredicate, 8, 85, 18, 0, // Skip to: 6575 1002/* 1882 */ MCD::OPC_CheckField, 21, 5, 0, 78, 18, 0, // Skip to: 6575 1003/* 1889 */ MCD::OPC_Decode, 240, 15, 72, // Opcode: MFLO_DSP_MM 1004/* 1893 */ MCD::OPC_FilterValue, 1, 69, 18, 0, // Skip to: 6575 1005/* 1898 */ MCD::OPC_CheckPredicate, 8, 64, 18, 0, // Skip to: 6575 1006/* 1903 */ MCD::OPC_CheckField, 21, 5, 0, 57, 18, 0, // Skip to: 6575 1007/* 1910 */ MCD::OPC_Decode, 128, 17, 75, // Opcode: MTLO_DSP_MM 1008/* 1914 */ MCD::OPC_FilterValue, 3, 48, 18, 0, // Skip to: 6575 1009/* 1919 */ MCD::OPC_CheckPredicate, 8, 43, 18, 0, // Skip to: 6575 1010/* 1924 */ MCD::OPC_Decode, 228, 19, 74, // Opcode: SHRL_QB_MM 1011/* 1928 */ MCD::OPC_FilterValue, 2, 101, 0, 0, // Skip to: 2034 1012/* 1933 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1013/* 1936 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1950 1014/* 1941 */ MCD::OPC_CheckPredicate, 9, 21, 18, 0, // Skip to: 6575 1015/* 1946 */ MCD::OPC_Decode, 173, 11, 76, // Opcode: DPA_W_PH_MMR2 1016/* 1950 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1964 1017/* 1955 */ MCD::OPC_CheckPredicate, 9, 7, 18, 0, // Skip to: 6575 1018/* 1960 */ MCD::OPC_Decode, 213, 6, 77, // Opcode: BALIGN_MMR2 1019/* 1964 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 1978 1020/* 1969 */ MCD::OPC_CheckPredicate, 9, 249, 17, 0, // Skip to: 6575 1021/* 1974 */ MCD::OPC_Decode, 171, 11, 76, // Opcode: DPAX_W_PH_MMR2 1022/* 1978 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1992 1023/* 1983 */ MCD::OPC_CheckPredicate, 8, 235, 17, 0, // Skip to: 6575 1024/* 1988 */ MCD::OPC_Decode, 167, 11, 76, // Opcode: DPAU_H_QBL_MM 1025/* 1992 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2006 1026/* 1997 */ MCD::OPC_CheckPredicate, 8, 221, 17, 0, // Skip to: 6575 1027/* 2002 */ MCD::OPC_Decode, 243, 11, 78, // Opcode: EXTPV_MM 1028/* 2006 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2020 1029/* 2011 */ MCD::OPC_CheckPredicate, 8, 207, 17, 0, // Skip to: 6575 1030/* 2016 */ MCD::OPC_Decode, 169, 11, 76, // Opcode: DPAU_H_QBR_MM 1031/* 2020 */ MCD::OPC_FilterValue, 7, 198, 17, 0, // Skip to: 6575 1032/* 2025 */ MCD::OPC_CheckPredicate, 8, 193, 17, 0, // Skip to: 6575 1033/* 2030 */ MCD::OPC_Decode, 240, 11, 78, // Opcode: EXTPDPV_MM 1034/* 2034 */ MCD::OPC_FilterValue, 4, 171, 0, 0, // Skip to: 2210 1035/* 2039 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1036/* 2042 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2056 1037/* 2047 */ MCD::OPC_CheckPredicate, 9, 171, 17, 0, // Skip to: 6575 1038/* 2052 */ MCD::OPC_Decode, 200, 5, 79, // Opcode: ABSQ_S_QB_MMR2 1039/* 2056 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2070 1040/* 2061 */ MCD::OPC_CheckPredicate, 8, 157, 17, 0, // Skip to: 6575 1041/* 2066 */ MCD::OPC_Decode, 198, 5, 79, // Opcode: ABSQ_S_PH_MM 1042/* 2070 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2084 1043/* 2075 */ MCD::OPC_CheckPredicate, 8, 143, 17, 0, // Skip to: 6575 1044/* 2080 */ MCD::OPC_Decode, 202, 5, 80, // Opcode: ABSQ_S_W_MM 1045/* 2084 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2098 1046/* 2089 */ MCD::OPC_CheckPredicate, 8, 129, 17, 0, // Skip to: 6575 1047/* 2094 */ MCD::OPC_Decode, 175, 7, 80, // Opcode: BITREV_MM 1048/* 2098 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2112 1049/* 2103 */ MCD::OPC_CheckPredicate, 8, 115, 17, 0, // Skip to: 6575 1050/* 2108 */ MCD::OPC_Decode, 234, 13, 81, // Opcode: INSV_MM 1051/* 2112 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2126 1052/* 2117 */ MCD::OPC_CheckPredicate, 8, 101, 17, 0, // Skip to: 6575 1053/* 2122 */ MCD::OPC_Decode, 138, 18, 82, // Opcode: PRECEQ_W_PHL_MM 1054/* 2126 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 2140 1055/* 2131 */ MCD::OPC_CheckPredicate, 8, 87, 17, 0, // Skip to: 6575 1056/* 2136 */ MCD::OPC_Decode, 140, 18, 82, // Opcode: PRECEQ_W_PHR_MM 1057/* 2140 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2154 1058/* 2145 */ MCD::OPC_CheckPredicate, 8, 73, 17, 0, // Skip to: 6575 1059/* 2150 */ MCD::OPC_Decode, 132, 18, 79, // Opcode: PRECEQU_PH_QBL_MM 1060/* 2154 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 2168 1061/* 2159 */ MCD::OPC_CheckPredicate, 8, 59, 17, 0, // Skip to: 6575 1062/* 2164 */ MCD::OPC_Decode, 136, 18, 79, // Opcode: PRECEQU_PH_QBR_MM 1063/* 2168 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 2182 1064/* 2173 */ MCD::OPC_CheckPredicate, 8, 45, 17, 0, // Skip to: 6575 1065/* 2178 */ MCD::OPC_Decode, 144, 18, 79, // Opcode: PRECEU_PH_QBL_MM 1066/* 2182 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 2196 1067/* 2187 */ MCD::OPC_CheckPredicate, 8, 31, 17, 0, // Skip to: 6575 1068/* 2192 */ MCD::OPC_Decode, 148, 18, 79, // Opcode: PRECEU_PH_QBR_MM 1069/* 2196 */ MCD::OPC_FilterValue, 30, 22, 17, 0, // Skip to: 6575 1070/* 2201 */ MCD::OPC_CheckPredicate, 8, 17, 17, 0, // Skip to: 6575 1071/* 2206 */ MCD::OPC_Decode, 175, 18, 82, // Opcode: RADDU_W_QB_MM 1072/* 2210 */ MCD::OPC_FilterValue, 5, 87, 0, 0, // Skip to: 2302 1073/* 2215 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... 1074/* 2218 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2232 1075/* 2223 */ MCD::OPC_CheckPredicate, 10, 251, 16, 0, // Skip to: 6575 1076/* 2228 */ MCD::OPC_Decode, 214, 21, 10, // Opcode: TLBGP_MM 1077/* 2232 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2246 1078/* 2237 */ MCD::OPC_CheckPredicate, 10, 237, 16, 0, // Skip to: 6575 1079/* 2242 */ MCD::OPC_Decode, 216, 21, 10, // Opcode: TLBGR_MM 1080/* 2246 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2260 1081/* 2251 */ MCD::OPC_CheckPredicate, 10, 223, 16, 0, // Skip to: 6575 1082/* 2256 */ MCD::OPC_Decode, 218, 21, 10, // Opcode: TLBGWI_MM 1083/* 2260 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2274 1084/* 2265 */ MCD::OPC_CheckPredicate, 10, 209, 16, 0, // Skip to: 6575 1085/* 2270 */ MCD::OPC_Decode, 220, 21, 10, // Opcode: TLBGWR_MM 1086/* 2274 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2288 1087/* 2279 */ MCD::OPC_CheckPredicate, 10, 195, 16, 0, // Skip to: 6575 1088/* 2284 */ MCD::OPC_Decode, 212, 21, 10, // Opcode: TLBGINV_MM 1089/* 2288 */ MCD::OPC_FilterValue, 10, 186, 16, 0, // Skip to: 6575 1090/* 2293 */ MCD::OPC_CheckPredicate, 10, 181, 16, 0, // Skip to: 6575 1091/* 2298 */ MCD::OPC_Decode, 211, 21, 10, // Opcode: TLBGINVF_MM 1092/* 2302 */ MCD::OPC_FilterValue, 7, 31, 0, 0, // Skip to: 2338 1093/* 2307 */ MCD::OPC_ExtractField, 11, 2, // Inst{12-11} ... 1094/* 2310 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2324 1095/* 2315 */ MCD::OPC_CheckPredicate, 9, 159, 16, 0, // Skip to: 6575 1096/* 2320 */ MCD::OPC_Decode, 214, 19, 74, // Opcode: SHRA_QB_MMR2 1097/* 2324 */ MCD::OPC_FilterValue, 2, 150, 16, 0, // Skip to: 6575 1098/* 2329 */ MCD::OPC_CheckPredicate, 9, 145, 16, 0, // Skip to: 6575 1099/* 2334 */ MCD::OPC_Decode, 218, 19, 74, // Opcode: SHRA_R_QB_MMR2 1100/* 2338 */ MCD::OPC_FilterValue, 8, 31, 0, 0, // Skip to: 2374 1101/* 2343 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 1102/* 2346 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2360 1103/* 2351 */ MCD::OPC_CheckPredicate, 7, 123, 16, 0, // Skip to: 6575 1104/* 2356 */ MCD::OPC_Decode, 208, 21, 71, // Opcode: TGE_MM 1105/* 2360 */ MCD::OPC_FilterValue, 1, 114, 16, 0, // Skip to: 6575 1106/* 2365 */ MCD::OPC_CheckPredicate, 7, 109, 16, 0, // Skip to: 6575 1107/* 2370 */ MCD::OPC_Decode, 238, 21, 71, // Opcode: TLTU_MM 1108/* 2374 */ MCD::OPC_FilterValue, 9, 101, 0, 0, // Skip to: 2480 1109/* 2379 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1110/* 2382 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 2403 1111/* 2387 */ MCD::OPC_CheckPredicate, 8, 87, 16, 0, // Skip to: 6575 1112/* 2392 */ MCD::OPC_CheckField, 21, 5, 0, 80, 16, 0, // Skip to: 6575 1113/* 2399 */ MCD::OPC_Decode, 252, 16, 83, // Opcode: MTHLIP_MM 1114/* 2403 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2417 1115/* 2408 */ MCD::OPC_CheckPredicate, 8, 66, 16, 0, // Skip to: 6575 1116/* 2413 */ MCD::OPC_Decode, 183, 15, 76, // Opcode: MAQ_S_W_PHR_MM 1117/* 2417 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2438 1118/* 2422 */ MCD::OPC_CheckPredicate, 8, 52, 16, 0, // Skip to: 6575 1119/* 2427 */ MCD::OPC_CheckField, 21, 5, 0, 45, 16, 0, // Skip to: 6575 1120/* 2434 */ MCD::OPC_Decode, 183, 19, 83, // Opcode: SHILOV_MM 1121/* 2438 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2452 1122/* 2443 */ MCD::OPC_CheckPredicate, 8, 31, 16, 0, // Skip to: 6575 1123/* 2448 */ MCD::OPC_Decode, 181, 15, 76, // Opcode: MAQ_S_W_PHL_MM 1124/* 2452 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2466 1125/* 2457 */ MCD::OPC_CheckPredicate, 8, 17, 16, 0, // Skip to: 6575 1126/* 2462 */ MCD::OPC_Decode, 179, 15, 76, // Opcode: MAQ_SA_W_PHR_MM 1127/* 2466 */ MCD::OPC_FilterValue, 7, 8, 16, 0, // Skip to: 6575 1128/* 2471 */ MCD::OPC_CheckPredicate, 8, 3, 16, 0, // Skip to: 6575 1129/* 2476 */ MCD::OPC_Decode, 177, 15, 76, // Opcode: MAQ_SA_W_PHL_MM 1130/* 2480 */ MCD::OPC_FilterValue, 10, 115, 0, 0, // Skip to: 2600 1131/* 2485 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1132/* 2488 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2502 1133/* 2493 */ MCD::OPC_CheckPredicate, 8, 237, 15, 0, // Skip to: 6575 1134/* 2498 */ MCD::OPC_Decode, 165, 11, 76, // Opcode: DPAQ_S_W_PH_MM 1135/* 2502 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2516 1136/* 2507 */ MCD::OPC_CheckPredicate, 8, 223, 15, 0, // Skip to: 6575 1137/* 2512 */ MCD::OPC_Decode, 170, 15, 76, // Opcode: MADD_DSP_MM 1138/* 2516 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2530 1139/* 2521 */ MCD::OPC_CheckPredicate, 8, 209, 15, 0, // Skip to: 6575 1140/* 2526 */ MCD::OPC_Decode, 163, 11, 76, // Opcode: DPAQ_SA_L_W_MM 1141/* 2530 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2544 1142/* 2535 */ MCD::OPC_CheckPredicate, 8, 195, 15, 0, // Skip to: 6575 1143/* 2540 */ MCD::OPC_Decode, 160, 15, 76, // Opcode: MADDU_DSP_MM 1144/* 2544 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2558 1145/* 2549 */ MCD::OPC_CheckPredicate, 9, 181, 15, 0, // Skip to: 6575 1146/* 2554 */ MCD::OPC_Decode, 161, 11, 76, // Opcode: DPAQX_S_W_PH_MMR2 1147/* 2558 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2572 1148/* 2563 */ MCD::OPC_CheckPredicate, 8, 167, 15, 0, // Skip to: 6575 1149/* 2568 */ MCD::OPC_Decode, 221, 16, 76, // Opcode: MSUB_DSP_MM 1150/* 2572 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2586 1151/* 2577 */ MCD::OPC_CheckPredicate, 9, 153, 15, 0, // Skip to: 6575 1152/* 2582 */ MCD::OPC_Decode, 159, 11, 76, // Opcode: DPAQX_SA_W_PH_MMR2 1153/* 2586 */ MCD::OPC_FilterValue, 7, 144, 15, 0, // Skip to: 6575 1154/* 2591 */ MCD::OPC_CheckPredicate, 8, 139, 15, 0, // Skip to: 6575 1155/* 2596 */ MCD::OPC_Decode, 211, 16, 76, // Opcode: MSUBU_DSP_MM 1156/* 2600 */ MCD::OPC_FilterValue, 12, 27, 1, 0, // Skip to: 2888 1157/* 2605 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1158/* 2608 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2622 1159/* 2613 */ MCD::OPC_CheckPredicate, 8, 117, 15, 0, // Skip to: 6575 1160/* 2618 */ MCD::OPC_Decode, 190, 18, 84, // Opcode: REPLV_PH_MM 1161/* 2622 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2636 1162/* 2627 */ MCD::OPC_CheckPredicate, 8, 103, 15, 0, // Skip to: 6575 1163/* 2632 */ MCD::OPC_Decode, 192, 18, 84, // Opcode: REPLV_QB_MM 1164/* 2636 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2650 1165/* 2641 */ MCD::OPC_CheckPredicate, 7, 89, 15, 0, // Skip to: 6575 1166/* 2646 */ MCD::OPC_Decode, 148, 19, 80, // Opcode: SEB_MM 1167/* 2650 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2664 1168/* 2655 */ MCD::OPC_CheckPredicate, 7, 75, 15, 0, // Skip to: 6575 1169/* 2660 */ MCD::OPC_Decode, 151, 19, 80, // Opcode: SEH_MM 1170/* 2664 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 2678 1171/* 2669 */ MCD::OPC_CheckPredicate, 7, 61, 15, 0, // Skip to: 6575 1172/* 2674 */ MCD::OPC_Decode, 202, 8, 80, // Opcode: CLO_MM 1173/* 2678 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 2692 1174/* 2683 */ MCD::OPC_CheckPredicate, 7, 47, 15, 0, // Skip to: 6575 1175/* 2688 */ MCD::OPC_Decode, 222, 8, 80, // Opcode: CLZ_MM 1176/* 2692 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 2706 1177/* 2697 */ MCD::OPC_CheckPredicate, 6, 33, 15, 0, // Skip to: 6575 1178/* 2702 */ MCD::OPC_Decode, 180, 18, 85, // Opcode: RDHWR_MM 1179/* 2706 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2720 1180/* 2711 */ MCD::OPC_CheckPredicate, 8, 19, 15, 0, // Skip to: 6575 1181/* 2716 */ MCD::OPC_Decode, 131, 18, 79, // Opcode: PRECEQU_PH_QBLA_MM 1182/* 2720 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 2734 1183/* 2725 */ MCD::OPC_CheckPredicate, 7, 5, 15, 0, // Skip to: 6575 1184/* 2730 */ MCD::OPC_Decode, 144, 22, 80, // Opcode: WSBH_MM 1185/* 2734 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 2748 1186/* 2739 */ MCD::OPC_CheckPredicate, 6, 247, 14, 0, // Skip to: 6575 1187/* 2744 */ MCD::OPC_Decode, 170, 17, 86, // Opcode: MULT_MM 1188/* 2748 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 2762 1189/* 2753 */ MCD::OPC_CheckPredicate, 8, 233, 14, 0, // Skip to: 6575 1190/* 2758 */ MCD::OPC_Decode, 135, 18, 79, // Opcode: PRECEQU_PH_QBRA_MM 1191/* 2762 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 2776 1192/* 2767 */ MCD::OPC_CheckPredicate, 6, 219, 14, 0, // Skip to: 6575 1193/* 2772 */ MCD::OPC_Decode, 172, 17, 86, // Opcode: MULTu_MM 1194/* 2776 */ MCD::OPC_FilterValue, 21, 9, 0, 0, // Skip to: 2790 1195/* 2781 */ MCD::OPC_CheckPredicate, 6, 205, 14, 0, // Skip to: 6575 1196/* 2786 */ MCD::OPC_Decode, 141, 19, 86, // Opcode: SDIV_MM 1197/* 2790 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 2804 1198/* 2795 */ MCD::OPC_CheckPredicate, 8, 191, 14, 0, // Skip to: 6575 1199/* 2800 */ MCD::OPC_Decode, 143, 18, 79, // Opcode: PRECEU_PH_QBLA_MM 1200/* 2804 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 2818 1201/* 2809 */ MCD::OPC_CheckPredicate, 6, 177, 14, 0, // Skip to: 6575 1202/* 2814 */ MCD::OPC_Decode, 129, 22, 86, // Opcode: UDIV_MM 1203/* 2818 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 2832 1204/* 2823 */ MCD::OPC_CheckPredicate, 6, 163, 14, 0, // Skip to: 6575 1205/* 2828 */ MCD::OPC_Decode, 171, 15, 86, // Opcode: MADD_MM 1206/* 2832 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 2846 1207/* 2837 */ MCD::OPC_CheckPredicate, 8, 149, 14, 0, // Skip to: 6575 1208/* 2842 */ MCD::OPC_Decode, 147, 18, 79, // Opcode: PRECEU_PH_QBRA_MM 1209/* 2846 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 2860 1210/* 2851 */ MCD::OPC_CheckPredicate, 6, 135, 14, 0, // Skip to: 6575 1211/* 2856 */ MCD::OPC_Decode, 161, 15, 86, // Opcode: MADDU_MM 1212/* 2860 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 2874 1213/* 2865 */ MCD::OPC_CheckPredicate, 6, 121, 14, 0, // Skip to: 6575 1214/* 2870 */ MCD::OPC_Decode, 222, 16, 86, // Opcode: MSUB_MM 1215/* 2874 */ MCD::OPC_FilterValue, 31, 112, 14, 0, // Skip to: 6575 1216/* 2879 */ MCD::OPC_CheckPredicate, 6, 107, 14, 0, // Skip to: 6575 1217/* 2884 */ MCD::OPC_Decode, 212, 16, 86, // Opcode: MSUBU_MM 1218/* 2888 */ MCD::OPC_FilterValue, 13, 206, 0, 0, // Skip to: 3099 1219/* 2893 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1220/* 2896 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 2917 1221/* 2901 */ MCD::OPC_CheckPredicate, 7, 85, 14, 0, // Skip to: 6575 1222/* 2906 */ MCD::OPC_CheckField, 16, 10, 0, 78, 14, 0, // Skip to: 6575 1223/* 2913 */ MCD::OPC_Decode, 226, 21, 10, // Opcode: TLBP_MM 1224/* 2917 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2938 1225/* 2922 */ MCD::OPC_CheckPredicate, 7, 64, 14, 0, // Skip to: 6575 1226/* 2927 */ MCD::OPC_CheckField, 16, 10, 0, 57, 14, 0, // Skip to: 6575 1227/* 2934 */ MCD::OPC_Decode, 228, 21, 10, // Opcode: TLBR_MM 1228/* 2938 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 2959 1229/* 2943 */ MCD::OPC_CheckPredicate, 7, 43, 14, 0, // Skip to: 6575 1230/* 2948 */ MCD::OPC_CheckField, 16, 10, 0, 36, 14, 0, // Skip to: 6575 1231/* 2955 */ MCD::OPC_Decode, 230, 21, 10, // Opcode: TLBWI_MM 1232/* 2959 */ MCD::OPC_FilterValue, 6, 16, 0, 0, // Skip to: 2980 1233/* 2964 */ MCD::OPC_CheckPredicate, 7, 22, 14, 0, // Skip to: 6575 1234/* 2969 */ MCD::OPC_CheckField, 16, 10, 0, 15, 14, 0, // Skip to: 6575 1235/* 2976 */ MCD::OPC_Decode, 232, 21, 10, // Opcode: TLBWR_MM 1236/* 2980 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 3001 1237/* 2985 */ MCD::OPC_CheckPredicate, 7, 1, 14, 0, // Skip to: 6575 1238/* 2990 */ MCD::OPC_CheckField, 21, 5, 0, 250, 13, 0, // Skip to: 6575 1239/* 2997 */ MCD::OPC_Decode, 172, 21, 87, // Opcode: SYNC_MM 1240/* 3001 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 3015 1241/* 3006 */ MCD::OPC_CheckPredicate, 7, 236, 13, 0, // Skip to: 6575 1242/* 3011 */ MCD::OPC_Decode, 175, 21, 88, // Opcode: SYSCALL_MM 1243/* 3015 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 3029 1244/* 3020 */ MCD::OPC_CheckPredicate, 7, 222, 13, 0, // Skip to: 6575 1245/* 3025 */ MCD::OPC_Decode, 138, 22, 88, // Opcode: WAIT_MM 1246/* 3029 */ MCD::OPC_FilterValue, 24, 9, 0, 0, // Skip to: 3043 1247/* 3034 */ MCD::OPC_CheckPredicate, 10, 208, 13, 0, // Skip to: 6575 1248/* 3039 */ MCD::OPC_Decode, 207, 13, 88, // Opcode: HYPCALL_MM 1249/* 3043 */ MCD::OPC_FilterValue, 27, 9, 0, 0, // Skip to: 3057 1250/* 3048 */ MCD::OPC_CheckPredicate, 7, 194, 13, 0, // Skip to: 6575 1251/* 3053 */ MCD::OPC_Decode, 128, 19, 88, // Opcode: SDBBP_MM 1252/* 3057 */ MCD::OPC_FilterValue, 28, 16, 0, 0, // Skip to: 3078 1253/* 3062 */ MCD::OPC_CheckPredicate, 7, 180, 13, 0, // Skip to: 6575 1254/* 3067 */ MCD::OPC_CheckField, 16, 10, 0, 173, 13, 0, // Skip to: 6575 1255/* 3074 */ MCD::OPC_Decode, 228, 10, 10, // Opcode: DERET_MM 1256/* 3078 */ MCD::OPC_FilterValue, 30, 164, 13, 0, // Skip to: 6575 1257/* 3083 */ MCD::OPC_CheckPredicate, 7, 159, 13, 0, // Skip to: 6575 1258/* 3088 */ MCD::OPC_CheckField, 16, 10, 0, 152, 13, 0, // Skip to: 6575 1259/* 3095 */ MCD::OPC_Decode, 231, 11, 10, // Opcode: ERET_MM 1260/* 3099 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 3120 1261/* 3104 */ MCD::OPC_CheckPredicate, 9, 138, 13, 0, // Skip to: 6575 1262/* 3109 */ MCD::OPC_CheckField, 11, 1, 0, 131, 13, 0, // Skip to: 6575 1263/* 3116 */ MCD::OPC_Decode, 226, 19, 70, // Opcode: SHRL_PH_MMR2 1264/* 3120 */ MCD::OPC_FilterValue, 16, 31, 0, 0, // Skip to: 3156 1265/* 3125 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 1266/* 3128 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3142 1267/* 3133 */ MCD::OPC_CheckPredicate, 7, 109, 13, 0, // Skip to: 6575 1268/* 3138 */ MCD::OPC_Decode, 207, 21, 71, // Opcode: TGEU_MM 1269/* 3142 */ MCD::OPC_FilterValue, 1, 100, 13, 0, // Skip to: 6575 1270/* 3147 */ MCD::OPC_CheckPredicate, 7, 95, 13, 0, // Skip to: 6575 1271/* 3152 */ MCD::OPC_Decode, 243, 21, 71, // Opcode: TNE_MM 1272/* 3156 */ MCD::OPC_FilterValue, 18, 115, 0, 0, // Skip to: 3276 1273/* 3161 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1274/* 3164 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3178 1275/* 3169 */ MCD::OPC_CheckPredicate, 9, 73, 13, 0, // Skip to: 6575 1276/* 3174 */ MCD::OPC_Decode, 196, 11, 76, // Opcode: DPS_W_PH_MMR2 1277/* 3178 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3192 1278/* 3183 */ MCD::OPC_CheckPredicate, 8, 59, 13, 0, // Skip to: 6575 1279/* 3188 */ MCD::OPC_Decode, 169, 17, 89, // Opcode: MULT_DSP_MM 1280/* 3192 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3206 1281/* 3197 */ MCD::OPC_CheckPredicate, 9, 45, 13, 0, // Skip to: 6575 1282/* 3202 */ MCD::OPC_Decode, 194, 11, 76, // Opcode: DPSX_W_PH_MMR2 1283/* 3206 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3220 1284/* 3211 */ MCD::OPC_CheckPredicate, 8, 31, 13, 0, // Skip to: 6575 1285/* 3216 */ MCD::OPC_Decode, 167, 17, 89, // Opcode: MULTU_DSP_MM 1286/* 3220 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3234 1287/* 3225 */ MCD::OPC_CheckPredicate, 8, 17, 13, 0, // Skip to: 6575 1288/* 3230 */ MCD::OPC_Decode, 190, 11, 76, // Opcode: DPSU_H_QBL_MM 1289/* 3234 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3248 1290/* 3239 */ MCD::OPC_CheckPredicate, 9, 3, 13, 0, // Skip to: 6575 1291/* 3244 */ MCD::OPC_Decode, 164, 17, 76, // Opcode: MULSA_W_PH_MMR2 1292/* 3248 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3262 1293/* 3253 */ MCD::OPC_CheckPredicate, 8, 245, 12, 0, // Skip to: 6575 1294/* 3258 */ MCD::OPC_Decode, 192, 11, 76, // Opcode: DPSU_H_QBR_MM 1295/* 3262 */ MCD::OPC_FilterValue, 7, 236, 12, 0, // Skip to: 6575 1296/* 3267 */ MCD::OPC_CheckPredicate, 8, 231, 12, 0, // Skip to: 6575 1297/* 3272 */ MCD::OPC_Decode, 162, 17, 76, // Opcode: MULSAQ_S_W_PH_MM 1298/* 3276 */ MCD::OPC_FilterValue, 19, 16, 0, 0, // Skip to: 3297 1299/* 3281 */ MCD::OPC_CheckPredicate, 10, 217, 12, 0, // Skip to: 6575 1300/* 3286 */ MCD::OPC_CheckField, 14, 2, 0, 210, 12, 0, // Skip to: 6575 1301/* 3293 */ MCD::OPC_Decode, 221, 15, 68, // Opcode: MFGC0_MM 1302/* 3297 */ MCD::OPC_FilterValue, 20, 31, 0, 0, // Skip to: 3333 1303/* 3302 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1304/* 3305 */ MCD::OPC_FilterValue, 25, 9, 0, 0, // Skip to: 3319 1305/* 3310 */ MCD::OPC_CheckPredicate, 7, 188, 12, 0, // Skip to: 6575 1306/* 3315 */ MCD::OPC_Decode, 175, 8, 90, // Opcode: CFC2_MM 1307/* 3319 */ MCD::OPC_FilterValue, 27, 179, 12, 0, // Skip to: 6575 1308/* 3324 */ MCD::OPC_CheckPredicate, 7, 174, 12, 0, // Skip to: 6575 1309/* 3329 */ MCD::OPC_Decode, 202, 9, 91, // Opcode: CTC2_MM 1310/* 3333 */ MCD::OPC_FilterValue, 21, 87, 0, 0, // Skip to: 3425 1311/* 3338 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1312/* 3341 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 3362 1313/* 3346 */ MCD::OPC_CheckPredicate, 6, 152, 12, 0, // Skip to: 6575 1314/* 3351 */ MCD::OPC_CheckField, 21, 5, 0, 145, 12, 0, // Skip to: 6575 1315/* 3358 */ MCD::OPC_Decode, 235, 15, 92, // Opcode: MFHI_MM 1316/* 3362 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 3383 1317/* 3367 */ MCD::OPC_CheckPredicate, 6, 131, 12, 0, // Skip to: 6575 1318/* 3372 */ MCD::OPC_CheckField, 21, 5, 0, 124, 12, 0, // Skip to: 6575 1319/* 3379 */ MCD::OPC_Decode, 241, 15, 92, // Opcode: MFLO_MM 1320/* 3383 */ MCD::OPC_FilterValue, 5, 16, 0, 0, // Skip to: 3404 1321/* 3388 */ MCD::OPC_CheckPredicate, 6, 110, 12, 0, // Skip to: 6575 1322/* 3393 */ MCD::OPC_CheckField, 21, 5, 0, 103, 12, 0, // Skip to: 6575 1323/* 3400 */ MCD::OPC_Decode, 250, 16, 92, // Opcode: MTHI_MM 1324/* 3404 */ MCD::OPC_FilterValue, 7, 94, 12, 0, // Skip to: 6575 1325/* 3409 */ MCD::OPC_CheckPredicate, 6, 89, 12, 0, // Skip to: 6575 1326/* 3414 */ MCD::OPC_CheckField, 21, 5, 0, 82, 12, 0, // Skip to: 6575 1327/* 3421 */ MCD::OPC_Decode, 129, 17, 92, // Opcode: MTLO_MM 1328/* 3425 */ MCD::OPC_FilterValue, 23, 16, 0, 0, // Skip to: 3446 1329/* 3430 */ MCD::OPC_CheckPredicate, 8, 68, 12, 0, // Skip to: 6575 1330/* 3435 */ MCD::OPC_CheckField, 11, 2, 0, 61, 12, 0, // Skip to: 6575 1331/* 3442 */ MCD::OPC_Decode, 196, 18, 93, // Opcode: REPL_QB_MM 1332/* 3446 */ MCD::OPC_FilterValue, 25, 115, 0, 0, // Skip to: 3566 1333/* 3451 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1334/* 3454 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3468 1335/* 3459 */ MCD::OPC_CheckPredicate, 8, 39, 12, 0, // Skip to: 6575 1336/* 3464 */ MCD::OPC_Decode, 177, 18, 94, // Opcode: RDDSP_MM 1337/* 3468 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3482 1338/* 3473 */ MCD::OPC_CheckPredicate, 8, 25, 12, 0, // Skip to: 6575 1339/* 3478 */ MCD::OPC_Decode, 132, 12, 95, // Opcode: EXTR_W_MM 1340/* 3482 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3496 1341/* 3487 */ MCD::OPC_CheckPredicate, 8, 11, 12, 0, // Skip to: 6575 1342/* 3492 */ MCD::OPC_Decode, 141, 22, 94, // Opcode: WRDSP_MM 1343/* 3496 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3510 1344/* 3501 */ MCD::OPC_CheckPredicate, 8, 253, 11, 0, // Skip to: 6575 1345/* 3506 */ MCD::OPC_Decode, 128, 12, 95, // Opcode: EXTR_R_W_MM 1346/* 3510 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3524 1347/* 3515 */ MCD::OPC_CheckPredicate, 8, 239, 11, 0, // Skip to: 6575 1348/* 3520 */ MCD::OPC_Decode, 244, 11, 95, // Opcode: EXTP_MM 1349/* 3524 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3538 1350/* 3529 */ MCD::OPC_CheckPredicate, 8, 225, 11, 0, // Skip to: 6575 1351/* 3534 */ MCD::OPC_Decode, 254, 11, 95, // Opcode: EXTR_RS_W_MM 1352/* 3538 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3552 1353/* 3543 */ MCD::OPC_CheckPredicate, 8, 211, 11, 0, // Skip to: 6575 1354/* 3548 */ MCD::OPC_Decode, 241, 11, 95, // Opcode: EXTPDP_MM 1355/* 3552 */ MCD::OPC_FilterValue, 7, 202, 11, 0, // Skip to: 6575 1356/* 3557 */ MCD::OPC_CheckPredicate, 8, 197, 11, 0, // Skip to: 6575 1357/* 3562 */ MCD::OPC_Decode, 130, 12, 95, // Opcode: EXTR_S_H_MM 1358/* 3566 */ MCD::OPC_FilterValue, 26, 115, 0, 0, // Skip to: 3686 1359/* 3571 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 1360/* 3574 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3588 1361/* 3579 */ MCD::OPC_CheckPredicate, 8, 175, 11, 0, // Skip to: 6575 1362/* 3584 */ MCD::OPC_Decode, 182, 11, 76, // Opcode: DPSQ_S_W_PH_MM 1363/* 3588 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3602 1364/* 3593 */ MCD::OPC_CheckPredicate, 8, 161, 11, 0, // Skip to: 6575 1365/* 3598 */ MCD::OPC_Decode, 252, 11, 78, // Opcode: EXTRV_W_MM 1366/* 3602 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3616 1367/* 3607 */ MCD::OPC_CheckPredicate, 8, 147, 11, 0, // Skip to: 6575 1368/* 3612 */ MCD::OPC_Decode, 180, 11, 76, // Opcode: DPSQ_SA_L_W_MM 1369/* 3616 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3630 1370/* 3621 */ MCD::OPC_CheckPredicate, 8, 133, 11, 0, // Skip to: 6575 1371/* 3626 */ MCD::OPC_Decode, 248, 11, 78, // Opcode: EXTRV_R_W_MM 1372/* 3630 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3644 1373/* 3635 */ MCD::OPC_CheckPredicate, 9, 119, 11, 0, // Skip to: 6575 1374/* 3640 */ MCD::OPC_Decode, 178, 11, 76, // Opcode: DPSQX_S_W_PH_MMR2 1375/* 3644 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3658 1376/* 3649 */ MCD::OPC_CheckPredicate, 8, 105, 11, 0, // Skip to: 6575 1377/* 3654 */ MCD::OPC_Decode, 246, 11, 78, // Opcode: EXTRV_RS_W_MM 1378/* 3658 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3672 1379/* 3663 */ MCD::OPC_CheckPredicate, 9, 91, 11, 0, // Skip to: 6575 1380/* 3668 */ MCD::OPC_Decode, 176, 11, 76, // Opcode: DPSQX_SA_W_PH_MMR2 1381/* 3672 */ MCD::OPC_FilterValue, 7, 82, 11, 0, // Skip to: 6575 1382/* 3677 */ MCD::OPC_CheckPredicate, 8, 77, 11, 0, // Skip to: 6575 1383/* 3682 */ MCD::OPC_Decode, 250, 11, 78, // Opcode: EXTRV_S_H_MM 1384/* 3686 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 3707 1385/* 3691 */ MCD::OPC_CheckPredicate, 10, 63, 11, 0, // Skip to: 6575 1386/* 3696 */ MCD::OPC_CheckField, 14, 2, 0, 56, 11, 0, // Skip to: 6575 1387/* 3703 */ MCD::OPC_Decode, 237, 16, 69, // Opcode: MTGC0_MM 1388/* 3707 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 3759 1389/* 3712 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1390/* 3715 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 3745 1391/* 3720 */ MCD::OPC_CheckPredicate, 6, 11, 0, 0, // Skip to: 3736 1392/* 3725 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3736 1393/* 3732 */ MCD::OPC_Decode, 143, 14, 92, // Opcode: JR_MM 1394/* 3736 */ MCD::OPC_CheckPredicate, 6, 18, 11, 0, // Skip to: 6575 1395/* 3741 */ MCD::OPC_Decode, 249, 13, 80, // Opcode: JALR_MM 1396/* 3745 */ MCD::OPC_FilterValue, 9, 9, 11, 0, // Skip to: 6575 1397/* 3750 */ MCD::OPC_CheckPredicate, 6, 4, 11, 0, // Skip to: 6575 1398/* 3755 */ MCD::OPC_Decode, 246, 13, 80, // Opcode: JALRS_MM 1399/* 3759 */ MCD::OPC_FilterValue, 29, 251, 10, 0, // Skip to: 6575 1400/* 3764 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 1401/* 3767 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 3788 1402/* 3772 */ MCD::OPC_CheckPredicate, 7, 238, 10, 0, // Skip to: 6575 1403/* 3777 */ MCD::OPC_CheckField, 21, 5, 0, 231, 10, 0, // Skip to: 6575 1404/* 3784 */ MCD::OPC_Decode, 250, 10, 92, // Opcode: DI_MM 1405/* 3788 */ MCD::OPC_FilterValue, 10, 222, 10, 0, // Skip to: 6575 1406/* 3793 */ MCD::OPC_CheckPredicate, 7, 217, 10, 0, // Skip to: 6575 1407/* 3798 */ MCD::OPC_CheckField, 21, 5, 0, 210, 10, 0, // Skip to: 6575 1408/* 3805 */ MCD::OPC_Decode, 225, 11, 92, // Opcode: EI_MM 1409/* 3809 */ MCD::OPC_FilterValue, 61, 201, 10, 0, // Skip to: 6575 1410/* 3814 */ MCD::OPC_CheckPredicate, 8, 196, 10, 0, // Skip to: 6575 1411/* 3819 */ MCD::OPC_CheckField, 6, 5, 0, 189, 10, 0, // Skip to: 6575 1412/* 3826 */ MCD::OPC_Decode, 194, 18, 96, // Opcode: REPL_PH_MM 1413/* 3830 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 3844 1414/* 3835 */ MCD::OPC_CheckPredicate, 6, 175, 10, 0, // Skip to: 6575 1415/* 3840 */ MCD::OPC_Decode, 145, 6, 97, // Opcode: ADDi_MM 1416/* 3844 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3858 1417/* 3849 */ MCD::OPC_CheckPredicate, 7, 161, 10, 0, // Skip to: 6575 1418/* 3854 */ MCD::OPC_Decode, 165, 14, 98, // Opcode: LBu_MM 1419/* 3858 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3872 1420/* 3863 */ MCD::OPC_CheckPredicate, 7, 147, 10, 0, // Skip to: 6575 1421/* 3868 */ MCD::OPC_Decode, 240, 18, 98, // Opcode: SB_MM 1422/* 3872 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 3886 1423/* 3877 */ MCD::OPC_CheckPredicate, 7, 133, 10, 0, // Skip to: 6575 1424/* 3882 */ MCD::OPC_Decode, 159, 14, 98, // Opcode: LB_MM 1425/* 3886 */ MCD::OPC_FilterValue, 8, 73, 0, 0, // Skip to: 3964 1426/* 3891 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 1427/* 3894 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3908 1428/* 3899 */ MCD::OPC_CheckPredicate, 7, 111, 10, 0, // Skip to: 6575 1429/* 3904 */ MCD::OPC_Decode, 251, 14, 99, // Opcode: LWP_MM 1430/* 3908 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 3922 1431/* 3913 */ MCD::OPC_CheckPredicate, 7, 97, 10, 0, // Skip to: 6575 1432/* 3918 */ MCD::OPC_Decode, 248, 14, 99, // Opcode: LWM32_MM 1433/* 3922 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 3936 1434/* 3927 */ MCD::OPC_CheckPredicate, 6, 83, 10, 0, // Skip to: 6575 1435/* 3932 */ MCD::OPC_Decode, 151, 8, 100, // Opcode: CACHE_MM 1436/* 3936 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 3950 1437/* 3941 */ MCD::OPC_CheckPredicate, 7, 69, 10, 0, // Skip to: 6575 1438/* 3946 */ MCD::OPC_Decode, 156, 21, 99, // Opcode: SWP_MM 1439/* 3950 */ MCD::OPC_FilterValue, 13, 60, 10, 0, // Skip to: 6575 1440/* 3955 */ MCD::OPC_CheckPredicate, 7, 55, 10, 0, // Skip to: 6575 1441/* 3960 */ MCD::OPC_Decode, 155, 21, 99, // Opcode: SWM32_MM 1442/* 3964 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 3978 1443/* 3969 */ MCD::OPC_CheckPredicate, 6, 41, 10, 0, // Skip to: 6575 1444/* 3974 */ MCD::OPC_Decode, 147, 6, 97, // Opcode: ADDiu_MM 1445/* 3978 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 3992 1446/* 3983 */ MCD::OPC_CheckPredicate, 7, 27, 10, 0, // Skip to: 6575 1447/* 3988 */ MCD::OPC_Decode, 204, 14, 98, // Opcode: LHu_MM 1448/* 3992 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4006 1449/* 3997 */ MCD::OPC_CheckPredicate, 7, 13, 10, 0, // Skip to: 6575 1450/* 4002 */ MCD::OPC_Decode, 229, 19, 98, // Opcode: SH_MM 1451/* 4006 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 4020 1452/* 4011 */ MCD::OPC_CheckPredicate, 7, 255, 9, 0, // Skip to: 6575 1453/* 4016 */ MCD::OPC_Decode, 199, 14, 98, // Opcode: LH_MM 1454/* 4020 */ MCD::OPC_FilterValue, 16, 83, 1, 0, // Skip to: 4364 1455/* 4025 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 1456/* 4028 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4042 1457/* 4033 */ MCD::OPC_CheckPredicate, 6, 233, 9, 0, // Skip to: 6575 1458/* 4038 */ MCD::OPC_Decode, 205, 7, 101, // Opcode: BLTZ_MM 1459/* 4042 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4056 1460/* 4047 */ MCD::OPC_CheckPredicate, 6, 219, 9, 0, // Skip to: 6575 1461/* 4052 */ MCD::OPC_Decode, 200, 7, 101, // Opcode: BLTZAL_MM 1462/* 4056 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4070 1463/* 4061 */ MCD::OPC_CheckPredicate, 6, 205, 9, 0, // Skip to: 6575 1464/* 4066 */ MCD::OPC_Decode, 148, 7, 101, // Opcode: BGEZ_MM 1465/* 4070 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 4084 1466/* 4075 */ MCD::OPC_CheckPredicate, 6, 191, 9, 0, // Skip to: 6575 1467/* 4080 */ MCD::OPC_Decode, 143, 7, 101, // Opcode: BGEZAL_MM 1468/* 4084 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4098 1469/* 4089 */ MCD::OPC_CheckPredicate, 6, 177, 9, 0, // Skip to: 6575 1470/* 4094 */ MCD::OPC_Decode, 186, 7, 101, // Opcode: BLEZ_MM 1471/* 4098 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4112 1472/* 4103 */ MCD::OPC_CheckPredicate, 6, 163, 9, 0, // Skip to: 6575 1473/* 4108 */ MCD::OPC_Decode, 230, 7, 101, // Opcode: BNEZC_MM 1474/* 4112 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4126 1475/* 4117 */ MCD::OPC_CheckPredicate, 6, 149, 9, 0, // Skip to: 6575 1476/* 4122 */ MCD::OPC_Decode, 157, 7, 101, // Opcode: BGTZ_MM 1477/* 4126 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 4140 1478/* 4131 */ MCD::OPC_CheckPredicate, 6, 135, 9, 0, // Skip to: 6575 1479/* 4136 */ MCD::OPC_Decode, 255, 6, 101, // Opcode: BEQZC_MM 1480/* 4140 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 4154 1481/* 4145 */ MCD::OPC_CheckPredicate, 6, 121, 9, 0, // Skip to: 6575 1482/* 4150 */ MCD::OPC_Decode, 236, 21, 102, // Opcode: TLTI_MM 1483/* 4154 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 4168 1484/* 4159 */ MCD::OPC_CheckPredicate, 6, 107, 9, 0, // Skip to: 6575 1485/* 4164 */ MCD::OPC_Decode, 205, 21, 102, // Opcode: TGEI_MM 1486/* 4168 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 4182 1487/* 4173 */ MCD::OPC_CheckPredicate, 6, 93, 9, 0, // Skip to: 6575 1488/* 4178 */ MCD::OPC_Decode, 235, 21, 102, // Opcode: TLTIU_MM 1489/* 4182 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 4196 1490/* 4187 */ MCD::OPC_CheckPredicate, 6, 79, 9, 0, // Skip to: 6575 1491/* 4192 */ MCD::OPC_Decode, 204, 21, 102, // Opcode: TGEIU_MM 1492/* 4196 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 4210 1493/* 4201 */ MCD::OPC_CheckPredicate, 6, 65, 9, 0, // Skip to: 6575 1494/* 4206 */ MCD::OPC_Decode, 242, 21, 102, // Opcode: TNEI_MM 1495/* 4210 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 4224 1496/* 4215 */ MCD::OPC_CheckPredicate, 6, 51, 9, 0, // Skip to: 6575 1497/* 4220 */ MCD::OPC_Decode, 226, 14, 103, // Opcode: LUi_MM 1498/* 4224 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4238 1499/* 4229 */ MCD::OPC_CheckPredicate, 6, 37, 9, 0, // Skip to: 6575 1500/* 4234 */ MCD::OPC_Decode, 199, 21, 102, // Opcode: TEQI_MM 1501/* 4238 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 4252 1502/* 4243 */ MCD::OPC_CheckPredicate, 6, 23, 9, 0, // Skip to: 6575 1503/* 4248 */ MCD::OPC_Decode, 170, 21, 104, // Opcode: SYNCI_MM 1504/* 4252 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 4266 1505/* 4257 */ MCD::OPC_CheckPredicate, 6, 9, 9, 0, // Skip to: 6575 1506/* 4262 */ MCD::OPC_Decode, 199, 7, 101, // Opcode: BLTZALS_MM 1507/* 4266 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 4280 1508/* 4271 */ MCD::OPC_CheckPredicate, 6, 251, 8, 0, // Skip to: 6575 1509/* 4276 */ MCD::OPC_Decode, 142, 7, 101, // Opcode: BGEZALS_MM 1510/* 4280 */ MCD::OPC_FilterValue, 25, 16, 0, 0, // Skip to: 4301 1511/* 4285 */ MCD::OPC_CheckPredicate, 11, 237, 8, 0, // Skip to: 6575 1512/* 4290 */ MCD::OPC_CheckField, 16, 5, 0, 230, 8, 0, // Skip to: 6575 1513/* 4297 */ MCD::OPC_Decode, 243, 7, 105, // Opcode: BPOSGE32C_MMR3 1514/* 4301 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 4322 1515/* 4306 */ MCD::OPC_CheckPredicate, 12, 216, 8, 0, // Skip to: 6575 1516/* 4311 */ MCD::OPC_CheckField, 16, 5, 0, 209, 8, 0, // Skip to: 6575 1517/* 4318 */ MCD::OPC_Decode, 244, 7, 106, // Opcode: BPOSGE32_MM 1518/* 4322 */ MCD::OPC_FilterValue, 28, 16, 0, 0, // Skip to: 4343 1519/* 4327 */ MCD::OPC_CheckPredicate, 13, 195, 8, 0, // Skip to: 6575 1520/* 4332 */ MCD::OPC_CheckField, 16, 2, 0, 188, 8, 0, // Skip to: 6575 1521/* 4339 */ MCD::OPC_Decode, 224, 6, 107, // Opcode: BC1F_MM 1522/* 4343 */ MCD::OPC_FilterValue, 29, 179, 8, 0, // Skip to: 6575 1523/* 4348 */ MCD::OPC_CheckPredicate, 13, 174, 8, 0, // Skip to: 6575 1524/* 4353 */ MCD::OPC_CheckField, 16, 2, 0, 167, 8, 0, // Skip to: 6575 1525/* 4360 */ MCD::OPC_Decode, 229, 6, 107, // Opcode: BC1T_MM 1526/* 4364 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 4378 1527/* 4369 */ MCD::OPC_CheckPredicate, 6, 153, 8, 0, // Skip to: 6575 1528/* 4374 */ MCD::OPC_Decode, 231, 17, 108, // Opcode: ORi_MM 1529/* 4378 */ MCD::OPC_FilterValue, 21, 234, 5, 0, // Skip to: 5897 1530/* 4383 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 1531/* 4386 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4400 1532/* 4391 */ MCD::OPC_CheckPredicate, 14, 131, 8, 0, // Skip to: 6575 1533/* 4396 */ MCD::OPC_Decode, 175, 15, 109, // Opcode: MADD_S_MM 1534/* 4400 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4414 1535/* 4405 */ MCD::OPC_CheckPredicate, 14, 117, 8, 0, // Skip to: 6575 1536/* 4410 */ MCD::OPC_Decode, 204, 17, 109, // Opcode: NMADD_S_MM 1537/* 4414 */ MCD::OPC_FilterValue, 8, 59, 0, 0, // Skip to: 4478 1538/* 4419 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 1539/* 4422 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4436 1540/* 4427 */ MCD::OPC_CheckPredicate, 13, 95, 8, 0, // Skip to: 6575 1541/* 4432 */ MCD::OPC_Decode, 134, 15, 110, // Opcode: LWXC1_MM 1542/* 4436 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 4450 1543/* 4441 */ MCD::OPC_CheckPredicate, 13, 81, 8, 0, // Skip to: 6575 1544/* 4446 */ MCD::OPC_Decode, 165, 21, 110, // Opcode: SWXC1_MM 1545/* 4450 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4464 1546/* 4455 */ MCD::OPC_CheckPredicate, 15, 67, 8, 0, // Skip to: 6575 1547/* 4460 */ MCD::OPC_Decode, 223, 14, 111, // Opcode: LUXC1_MM 1548/* 4464 */ MCD::OPC_FilterValue, 6, 58, 8, 0, // Skip to: 6575 1549/* 4469 */ MCD::OPC_CheckPredicate, 15, 53, 8, 0, // Skip to: 6575 1550/* 4474 */ MCD::OPC_Decode, 133, 21, 111, // Opcode: SUXC1_MM 1551/* 4478 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 4492 1552/* 4483 */ MCD::OPC_CheckPredicate, 16, 39, 8, 0, // Skip to: 6575 1553/* 4488 */ MCD::OPC_Decode, 167, 15, 112, // Opcode: MADD_D32_MM 1554/* 4492 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 4506 1555/* 4497 */ MCD::OPC_CheckPredicate, 16, 25, 8, 0, // Skip to: 6575 1556/* 4502 */ MCD::OPC_Decode, 201, 17, 112, // Opcode: NMADD_D32_MM 1557/* 4506 */ MCD::OPC_FilterValue, 32, 101, 0, 0, // Skip to: 4612 1558/* 4511 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 1559/* 4514 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4535 1560/* 4519 */ MCD::OPC_CheckPredicate, 13, 3, 8, 0, // Skip to: 6575 1561/* 4524 */ MCD::OPC_CheckField, 11, 2, 0, 252, 7, 0, // Skip to: 6575 1562/* 4531 */ MCD::OPC_Decode, 169, 16, 113, // Opcode: MOVF_S_MM 1563/* 4535 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4556 1564/* 4540 */ MCD::OPC_CheckPredicate, 13, 238, 7, 0, // Skip to: 6575 1565/* 4545 */ MCD::OPC_CheckField, 11, 2, 0, 231, 7, 0, // Skip to: 6575 1566/* 4552 */ MCD::OPC_Decode, 189, 16, 113, // Opcode: MOVT_S_MM 1567/* 4556 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4570 1568/* 4561 */ MCD::OPC_CheckPredicate, 6, 217, 7, 0, // Skip to: 6575 1569/* 4566 */ MCD::OPC_Decode, 166, 18, 114, // Opcode: PREFX_MM 1570/* 4570 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 4591 1571/* 4575 */ MCD::OPC_CheckPredicate, 17, 203, 7, 0, // Skip to: 6575 1572/* 4580 */ MCD::OPC_CheckField, 11, 2, 0, 196, 7, 0, // Skip to: 6575 1573/* 4587 */ MCD::OPC_Decode, 163, 16, 115, // Opcode: MOVF_D32_MM 1574/* 4591 */ MCD::OPC_FilterValue, 9, 187, 7, 0, // Skip to: 6575 1575/* 4596 */ MCD::OPC_CheckPredicate, 17, 182, 7, 0, // Skip to: 6575 1576/* 4601 */ MCD::OPC_CheckField, 11, 2, 0, 175, 7, 0, // Skip to: 6575 1577/* 4608 */ MCD::OPC_Decode, 183, 16, 115, // Opcode: MOVT_D32_MM 1578/* 4612 */ MCD::OPC_FilterValue, 33, 9, 0, 0, // Skip to: 4626 1579/* 4617 */ MCD::OPC_CheckPredicate, 14, 161, 7, 0, // Skip to: 6575 1580/* 4622 */ MCD::OPC_Decode, 226, 16, 109, // Opcode: MSUB_S_MM 1581/* 4626 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 4640 1582/* 4631 */ MCD::OPC_CheckPredicate, 14, 147, 7, 0, // Skip to: 6575 1583/* 4636 */ MCD::OPC_Decode, 209, 17, 109, // Opcode: NMSUB_S_MM 1584/* 4640 */ MCD::OPC_FilterValue, 41, 9, 0, 0, // Skip to: 4654 1585/* 4645 */ MCD::OPC_CheckPredicate, 16, 133, 7, 0, // Skip to: 6575 1586/* 4650 */ MCD::OPC_Decode, 218, 16, 112, // Opcode: MSUB_D32_MM 1587/* 4654 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 4668 1588/* 4659 */ MCD::OPC_CheckPredicate, 16, 119, 7, 0, // Skip to: 6575 1589/* 4664 */ MCD::OPC_Decode, 206, 17, 112, // Opcode: NMSUB_D32_MM 1590/* 4668 */ MCD::OPC_FilterValue, 48, 59, 0, 0, // Skip to: 4732 1591/* 4673 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 1592/* 4676 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4690 1593/* 4681 */ MCD::OPC_CheckPredicate, 18, 97, 7, 0, // Skip to: 6575 1594/* 4686 */ MCD::OPC_Decode, 145, 12, 116, // Opcode: FADD_D32_MM 1595/* 4690 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4704 1596/* 4695 */ MCD::OPC_CheckPredicate, 18, 83, 7, 0, // Skip to: 6575 1597/* 4700 */ MCD::OPC_Decode, 162, 13, 116, // Opcode: FSUB_D32_MM 1598/* 4704 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 4718 1599/* 4709 */ MCD::OPC_CheckPredicate, 18, 69, 7, 0, // Skip to: 6575 1600/* 4714 */ MCD::OPC_Decode, 246, 12, 116, // Opcode: FMUL_D32_MM 1601/* 4718 */ MCD::OPC_FilterValue, 7, 60, 7, 0, // Skip to: 6575 1602/* 4723 */ MCD::OPC_CheckPredicate, 18, 55, 7, 0, // Skip to: 6575 1603/* 4728 */ MCD::OPC_Decode, 184, 12, 116, // Opcode: FDIV_D32_MM 1604/* 4732 */ MCD::OPC_FilterValue, 56, 59, 0, 0, // Skip to: 4796 1605/* 4737 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... 1606/* 4740 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4754 1607/* 4745 */ MCD::OPC_CheckPredicate, 13, 33, 7, 0, // Skip to: 6575 1608/* 4750 */ MCD::OPC_Decode, 181, 16, 117, // Opcode: MOVN_I_S_MM 1609/* 4754 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 4768 1610/* 4759 */ MCD::OPC_CheckPredicate, 13, 19, 7, 0, // Skip to: 6575 1611/* 4764 */ MCD::OPC_Decode, 201, 16, 117, // Opcode: MOVZ_I_S_MM 1612/* 4768 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 4782 1613/* 4773 */ MCD::OPC_CheckPredicate, 17, 5, 7, 0, // Skip to: 6575 1614/* 4778 */ MCD::OPC_Decode, 175, 16, 118, // Opcode: MOVN_I_D32_MM 1615/* 4782 */ MCD::OPC_FilterValue, 5, 252, 6, 0, // Skip to: 6575 1616/* 4787 */ MCD::OPC_CheckPredicate, 17, 247, 6, 0, // Skip to: 6575 1617/* 4792 */ MCD::OPC_Decode, 195, 16, 118, // Opcode: MOVZ_I_D32_MM 1618/* 4796 */ MCD::OPC_FilterValue, 59, 96, 2, 0, // Skip to: 5409 1619/* 4801 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 1620/* 4804 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4825 1621/* 4809 */ MCD::OPC_CheckPredicate, 19, 225, 6, 0, // Skip to: 6575 1622/* 4814 */ MCD::OPC_CheckField, 13, 3, 1, 218, 6, 0, // Skip to: 6575 1623/* 4821 */ MCD::OPC_Decode, 216, 15, 119, // Opcode: MFC1_MM 1624/* 4825 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4846 1625/* 4830 */ MCD::OPC_CheckPredicate, 18, 204, 6, 0, // Skip to: 6575 1626/* 4835 */ MCD::OPC_CheckField, 13, 3, 1, 197, 6, 0, // Skip to: 6575 1627/* 4842 */ MCD::OPC_Decode, 235, 12, 120, // Opcode: FMOV_D32_MM 1628/* 4846 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 4882 1629/* 4851 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1630/* 4854 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4868 1631/* 4859 */ MCD::OPC_CheckPredicate, 20, 175, 6, 0, // Skip to: 6575 1632/* 4864 */ MCD::OPC_Decode, 218, 9, 121, // Opcode: CVT_L_S_MM 1633/* 4868 */ MCD::OPC_FilterValue, 2, 166, 6, 0, // Skip to: 6575 1634/* 4873 */ MCD::OPC_CheckPredicate, 20, 161, 6, 0, // Skip to: 6575 1635/* 4878 */ MCD::OPC_Decode, 215, 9, 122, // Opcode: CVT_L_D64_MM 1636/* 4882 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 4896 1637/* 4887 */ MCD::OPC_CheckPredicate, 13, 147, 6, 0, // Skip to: 6575 1638/* 4892 */ MCD::OPC_Decode, 167, 16, 123, // Opcode: MOVF_I_MM 1639/* 4896 */ MCD::OPC_FilterValue, 8, 31, 0, 0, // Skip to: 4932 1640/* 4901 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1641/* 4904 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4918 1642/* 4909 */ MCD::OPC_CheckPredicate, 19, 125, 6, 0, // Skip to: 6575 1643/* 4914 */ MCD::OPC_Decode, 221, 18, 124, // Opcode: RSQRT_S_MM 1644/* 4918 */ MCD::OPC_FilterValue, 2, 116, 6, 0, // Skip to: 6575 1645/* 4923 */ MCD::OPC_CheckPredicate, 18, 111, 6, 0, // Skip to: 6575 1646/* 4928 */ MCD::OPC_Decode, 217, 18, 120, // Opcode: RSQRT_D32_MM 1647/* 4932 */ MCD::OPC_FilterValue, 13, 31, 0, 0, // Skip to: 4968 1648/* 4937 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1649/* 4940 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4954 1650/* 4945 */ MCD::OPC_CheckPredicate, 19, 89, 6, 0, // Skip to: 6575 1651/* 4950 */ MCD::OPC_Decode, 142, 12, 124, // Opcode: FABS_S_MM 1652/* 4954 */ MCD::OPC_FilterValue, 1, 80, 6, 0, // Skip to: 6575 1653/* 4959 */ MCD::OPC_CheckPredicate, 18, 75, 6, 0, // Skip to: 6575 1654/* 4964 */ MCD::OPC_Decode, 138, 12, 120, // Opcode: FABS_D32_MM 1655/* 4968 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 4989 1656/* 4973 */ MCD::OPC_CheckPredicate, 19, 61, 6, 0, // Skip to: 6575 1657/* 4978 */ MCD::OPC_CheckField, 13, 3, 1, 54, 6, 0, // Skip to: 6575 1658/* 4985 */ MCD::OPC_Decode, 232, 16, 125, // Opcode: MTC1_MM 1659/* 4989 */ MCD::OPC_FilterValue, 36, 31, 0, 0, // Skip to: 5025 1660/* 4994 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1661/* 4997 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5011 1662/* 5002 */ MCD::OPC_CheckPredicate, 19, 32, 6, 0, // Skip to: 6575 1663/* 5007 */ MCD::OPC_Decode, 239, 9, 124, // Opcode: CVT_W_S_MM 1664/* 5011 */ MCD::OPC_FilterValue, 2, 23, 6, 0, // Skip to: 6575 1665/* 5016 */ MCD::OPC_CheckPredicate, 18, 18, 6, 0, // Skip to: 6575 1666/* 5021 */ MCD::OPC_Decode, 235, 9, 126, // Opcode: CVT_W_D32_MM 1667/* 5025 */ MCD::OPC_FilterValue, 37, 9, 0, 0, // Skip to: 5039 1668/* 5030 */ MCD::OPC_CheckPredicate, 13, 4, 6, 0, // Skip to: 6575 1669/* 5035 */ MCD::OPC_Decode, 187, 16, 123, // Opcode: MOVT_I_MM 1670/* 5039 */ MCD::OPC_FilterValue, 40, 31, 0, 0, // Skip to: 5075 1671/* 5044 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1672/* 5047 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5061 1673/* 5052 */ MCD::OPC_CheckPredicate, 19, 238, 5, 0, // Skip to: 6575 1674/* 5057 */ MCD::OPC_Decode, 158, 13, 124, // Opcode: FSQRT_S_MM 1675/* 5061 */ MCD::OPC_FilterValue, 2, 229, 5, 0, // Skip to: 6575 1676/* 5066 */ MCD::OPC_CheckPredicate, 18, 224, 5, 0, // Skip to: 6575 1677/* 5071 */ MCD::OPC_Decode, 154, 13, 120, // Opcode: FSQRT_D32_MM 1678/* 5075 */ MCD::OPC_FilterValue, 44, 59, 0, 0, // Skip to: 5139 1679/* 5080 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1680/* 5083 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5097 1681/* 5088 */ MCD::OPC_CheckPredicate, 19, 202, 5, 0, // Skip to: 6575 1682/* 5093 */ MCD::OPC_Decode, 222, 12, 124, // Opcode: FLOOR_W_S_MM 1683/* 5097 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5111 1684/* 5102 */ MCD::OPC_CheckPredicate, 19, 188, 5, 0, // Skip to: 6575 1685/* 5107 */ MCD::OPC_Decode, 253, 21, 124, // Opcode: TRUNC_W_S_MM 1686/* 5111 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 5125 1687/* 5116 */ MCD::OPC_CheckPredicate, 18, 174, 5, 0, // Skip to: 6575 1688/* 5121 */ MCD::OPC_Decode, 220, 12, 126, // Opcode: FLOOR_W_MM 1689/* 5125 */ MCD::OPC_FilterValue, 3, 165, 5, 0, // Skip to: 6575 1690/* 5130 */ MCD::OPC_CheckPredicate, 18, 160, 5, 0, // Skip to: 6575 1691/* 5135 */ MCD::OPC_Decode, 251, 21, 126, // Opcode: TRUNC_W_MM 1692/* 5139 */ MCD::OPC_FilterValue, 45, 16, 0, 0, // Skip to: 5160 1693/* 5144 */ MCD::OPC_CheckPredicate, 18, 146, 5, 0, // Skip to: 6575 1694/* 5149 */ MCD::OPC_CheckField, 13, 3, 1, 139, 5, 0, // Skip to: 6575 1695/* 5156 */ MCD::OPC_Decode, 255, 12, 120, // Opcode: FNEG_D32_MM 1696/* 5160 */ MCD::OPC_FilterValue, 64, 32, 0, 0, // Skip to: 5197 1697/* 5165 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1698/* 5168 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5182 1699/* 5173 */ MCD::OPC_CheckPredicate, 19, 117, 5, 0, // Skip to: 6575 1700/* 5178 */ MCD::OPC_Decode, 174, 8, 127, // Opcode: CFC1_MM 1701/* 5182 */ MCD::OPC_FilterValue, 1, 108, 5, 0, // Skip to: 6575 1702/* 5187 */ MCD::OPC_CheckPredicate, 18, 103, 5, 0, // Skip to: 6575 1703/* 5192 */ MCD::OPC_Decode, 224, 15, 128, 1, // Opcode: MFHC1_D32_MM 1704/* 5197 */ MCD::OPC_FilterValue, 72, 31, 0, 0, // Skip to: 5233 1705/* 5202 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1706/* 5205 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5219 1707/* 5210 */ MCD::OPC_CheckPredicate, 19, 80, 5, 0, // Skip to: 6575 1708/* 5215 */ MCD::OPC_Decode, 188, 18, 124, // Opcode: RECIP_S_MM 1709/* 5219 */ MCD::OPC_FilterValue, 2, 71, 5, 0, // Skip to: 6575 1710/* 5224 */ MCD::OPC_CheckPredicate, 18, 66, 5, 0, // Skip to: 6575 1711/* 5229 */ MCD::OPC_Decode, 184, 18, 120, // Opcode: RECIP_D32_MM 1712/* 5233 */ MCD::OPC_FilterValue, 77, 33, 0, 0, // Skip to: 5271 1713/* 5238 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1714/* 5241 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5256 1715/* 5246 */ MCD::OPC_CheckPredicate, 18, 44, 5, 0, // Skip to: 6575 1716/* 5251 */ MCD::OPC_Decode, 205, 9, 129, 1, // Opcode: CVT_D32_S_MM 1717/* 5256 */ MCD::OPC_FilterValue, 1, 34, 5, 0, // Skip to: 6575 1718/* 5261 */ MCD::OPC_CheckPredicate, 18, 29, 5, 0, // Skip to: 6575 1719/* 5266 */ MCD::OPC_Decode, 207, 9, 129, 1, // Opcode: CVT_D32_W_MM 1720/* 5271 */ MCD::OPC_FilterValue, 96, 33, 0, 0, // Skip to: 5309 1721/* 5276 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1722/* 5279 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5294 1723/* 5284 */ MCD::OPC_CheckPredicate, 19, 6, 5, 0, // Skip to: 6575 1724/* 5289 */ MCD::OPC_Decode, 201, 9, 130, 1, // Opcode: CTC1_MM 1725/* 5294 */ MCD::OPC_FilterValue, 1, 252, 4, 0, // Skip to: 6575 1726/* 5299 */ MCD::OPC_CheckPredicate, 18, 247, 4, 0, // Skip to: 6575 1727/* 5304 */ MCD::OPC_Decode, 240, 16, 131, 1, // Opcode: MTHC1_D32_MM 1728/* 5309 */ MCD::OPC_FilterValue, 108, 59, 0, 0, // Skip to: 5373 1729/* 5314 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1730/* 5317 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5331 1731/* 5322 */ MCD::OPC_CheckPredicate, 19, 224, 4, 0, // Skip to: 6575 1732/* 5327 */ MCD::OPC_Decode, 163, 8, 124, // Opcode: CEIL_W_S_MM 1733/* 5331 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5345 1734/* 5336 */ MCD::OPC_CheckPredicate, 19, 210, 4, 0, // Skip to: 6575 1735/* 5341 */ MCD::OPC_Decode, 214, 18, 124, // Opcode: ROUND_W_S_MM 1736/* 5345 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 5359 1737/* 5350 */ MCD::OPC_CheckPredicate, 18, 196, 4, 0, // Skip to: 6575 1738/* 5355 */ MCD::OPC_Decode, 161, 8, 126, // Opcode: CEIL_W_MM 1739/* 5359 */ MCD::OPC_FilterValue, 3, 187, 4, 0, // Skip to: 6575 1740/* 5364 */ MCD::OPC_CheckPredicate, 18, 182, 4, 0, // Skip to: 6575 1741/* 5369 */ MCD::OPC_Decode, 212, 18, 126, // Opcode: ROUND_W_MM 1742/* 5373 */ MCD::OPC_FilterValue, 109, 173, 4, 0, // Skip to: 6575 1743/* 5378 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 1744/* 5381 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5395 1745/* 5386 */ MCD::OPC_CheckPredicate, 18, 160, 4, 0, // Skip to: 6575 1746/* 5391 */ MCD::OPC_Decode, 224, 9, 126, // Opcode: CVT_S_D32_MM 1747/* 5395 */ MCD::OPC_FilterValue, 1, 151, 4, 0, // Skip to: 6575 1748/* 5400 */ MCD::OPC_CheckPredicate, 19, 146, 4, 0, // Skip to: 6575 1749/* 5405 */ MCD::OPC_Decode, 232, 9, 124, // Opcode: CVT_S_W_MM 1750/* 5409 */ MCD::OPC_FilterValue, 60, 137, 4, 0, // Skip to: 6575 1751/* 5414 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 1752/* 5417 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5432 1753/* 5422 */ MCD::OPC_CheckPredicate, 13, 124, 4, 0, // Skip to: 6575 1754/* 5427 */ MCD::OPC_Decode, 252, 9, 132, 1, // Opcode: C_F_S_MM 1755/* 5432 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5447 1756/* 5437 */ MCD::OPC_CheckPredicate, 13, 109, 4, 0, // Skip to: 6575 1757/* 5442 */ MCD::OPC_Decode, 208, 10, 132, 1, // Opcode: C_UN_S_MM 1758/* 5447 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5462 1759/* 5452 */ MCD::OPC_CheckPredicate, 13, 94, 4, 0, // Skip to: 6575 1760/* 5457 */ MCD::OPC_Decode, 246, 9, 132, 1, // Opcode: C_EQ_S_MM 1761/* 5462 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5477 1762/* 5467 */ MCD::OPC_CheckPredicate, 13, 79, 4, 0, // Skip to: 6575 1763/* 5472 */ MCD::OPC_Decode, 190, 10, 132, 1, // Opcode: C_UEQ_S_MM 1764/* 5477 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 5492 1765/* 5482 */ MCD::OPC_CheckPredicate, 13, 64, 4, 0, // Skip to: 6575 1766/* 5487 */ MCD::OPC_Decode, 172, 10, 132, 1, // Opcode: C_OLT_S_MM 1767/* 5492 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 5507 1768/* 5497 */ MCD::OPC_CheckPredicate, 13, 49, 4, 0, // Skip to: 6575 1769/* 5502 */ MCD::OPC_Decode, 202, 10, 132, 1, // Opcode: C_ULT_S_MM 1770/* 5507 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 5522 1771/* 5512 */ MCD::OPC_CheckPredicate, 13, 34, 4, 0, // Skip to: 6575 1772/* 5517 */ MCD::OPC_Decode, 166, 10, 132, 1, // Opcode: C_OLE_S_MM 1773/* 5522 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 5537 1774/* 5527 */ MCD::OPC_CheckPredicate, 13, 19, 4, 0, // Skip to: 6575 1775/* 5532 */ MCD::OPC_Decode, 196, 10, 132, 1, // Opcode: C_ULE_S_MM 1776/* 5537 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5552 1777/* 5542 */ MCD::OPC_CheckPredicate, 13, 4, 4, 0, // Skip to: 6575 1778/* 5547 */ MCD::OPC_Decode, 184, 10, 132, 1, // Opcode: C_SF_S_MM 1779/* 5552 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5567 1780/* 5557 */ MCD::OPC_CheckPredicate, 13, 245, 3, 0, // Skip to: 6575 1781/* 5562 */ MCD::OPC_Decode, 148, 10, 132, 1, // Opcode: C_NGLE_S_MM 1782/* 5567 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5582 1783/* 5572 */ MCD::OPC_CheckPredicate, 13, 230, 3, 0, // Skip to: 6575 1784/* 5577 */ MCD::OPC_Decode, 178, 10, 132, 1, // Opcode: C_SEQ_S_MM 1785/* 5582 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5597 1786/* 5587 */ MCD::OPC_CheckPredicate, 13, 215, 3, 0, // Skip to: 6575 1787/* 5592 */ MCD::OPC_Decode, 154, 10, 132, 1, // Opcode: C_NGL_S_MM 1788/* 5597 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5612 1789/* 5602 */ MCD::OPC_CheckPredicate, 13, 200, 3, 0, // Skip to: 6575 1790/* 5607 */ MCD::OPC_Decode, 136, 10, 132, 1, // Opcode: C_LT_S_MM 1791/* 5612 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5627 1792/* 5617 */ MCD::OPC_CheckPredicate, 13, 185, 3, 0, // Skip to: 6575 1793/* 5622 */ MCD::OPC_Decode, 142, 10, 132, 1, // Opcode: C_NGE_S_MM 1794/* 5627 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5642 1795/* 5632 */ MCD::OPC_CheckPredicate, 13, 170, 3, 0, // Skip to: 6575 1796/* 5637 */ MCD::OPC_Decode, 130, 10, 132, 1, // Opcode: C_LE_S_MM 1797/* 5642 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5657 1798/* 5647 */ MCD::OPC_CheckPredicate, 13, 155, 3, 0, // Skip to: 6575 1799/* 5652 */ MCD::OPC_Decode, 160, 10, 132, 1, // Opcode: C_NGT_S_MM 1800/* 5657 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5672 1801/* 5662 */ MCD::OPC_CheckPredicate, 17, 140, 3, 0, // Skip to: 6575 1802/* 5667 */ MCD::OPC_Decode, 248, 9, 133, 1, // Opcode: C_F_D32_MM 1803/* 5672 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5687 1804/* 5677 */ MCD::OPC_CheckPredicate, 17, 125, 3, 0, // Skip to: 6575 1805/* 5682 */ MCD::OPC_Decode, 204, 10, 133, 1, // Opcode: C_UN_D32_MM 1806/* 5687 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5702 1807/* 5692 */ MCD::OPC_CheckPredicate, 17, 110, 3, 0, // Skip to: 6575 1808/* 5697 */ MCD::OPC_Decode, 242, 9, 133, 1, // Opcode: C_EQ_D32_MM 1809/* 5702 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5717 1810/* 5707 */ MCD::OPC_CheckPredicate, 17, 95, 3, 0, // Skip to: 6575 1811/* 5712 */ MCD::OPC_Decode, 186, 10, 133, 1, // Opcode: C_UEQ_D32_MM 1812/* 5717 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5732 1813/* 5722 */ MCD::OPC_CheckPredicate, 17, 80, 3, 0, // Skip to: 6575 1814/* 5727 */ MCD::OPC_Decode, 168, 10, 133, 1, // Opcode: C_OLT_D32_MM 1815/* 5732 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5747 1816/* 5737 */ MCD::OPC_CheckPredicate, 17, 65, 3, 0, // Skip to: 6575 1817/* 5742 */ MCD::OPC_Decode, 198, 10, 133, 1, // Opcode: C_ULT_D32_MM 1818/* 5747 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5762 1819/* 5752 */ MCD::OPC_CheckPredicate, 17, 50, 3, 0, // Skip to: 6575 1820/* 5757 */ MCD::OPC_Decode, 162, 10, 133, 1, // Opcode: C_OLE_D32_MM 1821/* 5762 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 5777 1822/* 5767 */ MCD::OPC_CheckPredicate, 17, 35, 3, 0, // Skip to: 6575 1823/* 5772 */ MCD::OPC_Decode, 192, 10, 133, 1, // Opcode: C_ULE_D32_MM 1824/* 5777 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 5792 1825/* 5782 */ MCD::OPC_CheckPredicate, 17, 20, 3, 0, // Skip to: 6575 1826/* 5787 */ MCD::OPC_Decode, 180, 10, 133, 1, // Opcode: C_SF_D32_MM 1827/* 5792 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 5807 1828/* 5797 */ MCD::OPC_CheckPredicate, 17, 5, 3, 0, // Skip to: 6575 1829/* 5802 */ MCD::OPC_Decode, 144, 10, 133, 1, // Opcode: C_NGLE_D32_MM 1830/* 5807 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 5822 1831/* 5812 */ MCD::OPC_CheckPredicate, 17, 246, 2, 0, // Skip to: 6575 1832/* 5817 */ MCD::OPC_Decode, 174, 10, 133, 1, // Opcode: C_SEQ_D32_MM 1833/* 5822 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 5837 1834/* 5827 */ MCD::OPC_CheckPredicate, 17, 231, 2, 0, // Skip to: 6575 1835/* 5832 */ MCD::OPC_Decode, 150, 10, 133, 1, // Opcode: C_NGL_D32_MM 1836/* 5837 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 5852 1837/* 5842 */ MCD::OPC_CheckPredicate, 17, 216, 2, 0, // Skip to: 6575 1838/* 5847 */ MCD::OPC_Decode, 132, 10, 133, 1, // Opcode: C_LT_D32_MM 1839/* 5852 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 5867 1840/* 5857 */ MCD::OPC_CheckPredicate, 17, 201, 2, 0, // Skip to: 6575 1841/* 5862 */ MCD::OPC_Decode, 138, 10, 133, 1, // Opcode: C_NGE_D32_MM 1842/* 5867 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 5882 1843/* 5872 */ MCD::OPC_CheckPredicate, 17, 186, 2, 0, // Skip to: 6575 1844/* 5877 */ MCD::OPC_Decode, 254, 9, 133, 1, // Opcode: C_LE_D32_MM 1845/* 5882 */ MCD::OPC_FilterValue, 31, 176, 2, 0, // Skip to: 6575 1846/* 5887 */ MCD::OPC_CheckPredicate, 17, 171, 2, 0, // Skip to: 6575 1847/* 5892 */ MCD::OPC_Decode, 156, 10, 133, 1, // Opcode: C_NGT_D32_MM 1848/* 5897 */ MCD::OPC_FilterValue, 22, 48, 0, 0, // Skip to: 5950 1849/* 5902 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 1850/* 5905 */ MCD::OPC_FilterValue, 197, 1, 9, 0, 0, // Skip to: 5920 1851/* 5911 */ MCD::OPC_CheckPredicate, 8, 147, 2, 0, // Skip to: 6575 1852/* 5916 */ MCD::OPC_Decode, 232, 8, 54, // Opcode: CMPGU_EQ_QB_MM 1853/* 5920 */ MCD::OPC_FilterValue, 133, 2, 9, 0, 0, // Skip to: 5935 1854/* 5926 */ MCD::OPC_CheckPredicate, 8, 132, 2, 0, // Skip to: 6575 1855/* 5931 */ MCD::OPC_Decode, 236, 8, 54, // Opcode: CMPGU_LT_QB_MM 1856/* 5935 */ MCD::OPC_FilterValue, 197, 2, 122, 2, 0, // Skip to: 6575 1857/* 5941 */ MCD::OPC_CheckPredicate, 8, 117, 2, 0, // Skip to: 6575 1858/* 5946 */ MCD::OPC_Decode, 234, 8, 54, // Opcode: CMPGU_LE_QB_MM 1859/* 5950 */ MCD::OPC_FilterValue, 24, 115, 1, 0, // Skip to: 6326 1860/* 5955 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 1861/* 5958 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5972 1862/* 5963 */ MCD::OPC_CheckPredicate, 6, 95, 2, 0, // Skip to: 6575 1863/* 5968 */ MCD::OPC_Decode, 245, 14, 99, // Opcode: LWL_MM 1864/* 5972 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 5986 1865/* 5977 */ MCD::OPC_CheckPredicate, 6, 81, 2, 0, // Skip to: 6575 1866/* 5982 */ MCD::OPC_Decode, 128, 15, 99, // Opcode: LWR_MM 1867/* 5986 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 6000 1868/* 5991 */ MCD::OPC_CheckPredicate, 6, 67, 2, 0, // Skip to: 6575 1869/* 5996 */ MCD::OPC_Decode, 167, 18, 100, // Opcode: PREF_MM 1870/* 6000 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 6014 1871/* 6005 */ MCD::OPC_CheckPredicate, 6, 53, 2, 0, // Skip to: 6575 1872/* 6010 */ MCD::OPC_Decode, 214, 14, 99, // Opcode: LL_MM 1873/* 6014 */ MCD::OPC_FilterValue, 6, 123, 0, 0, // Skip to: 6142 1874/* 6019 */ MCD::OPC_ExtractField, 9, 3, // Inst{11-9} ... 1875/* 6022 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6037 1876/* 6027 */ MCD::OPC_CheckPredicate, 21, 31, 2, 0, // Skip to: 6575 1877/* 6032 */ MCD::OPC_Decode, 164, 14, 134, 1, // Opcode: LBuE_MM 1878/* 6037 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6052 1879/* 6042 */ MCD::OPC_CheckPredicate, 21, 16, 2, 0, // Skip to: 6575 1880/* 6047 */ MCD::OPC_Decode, 203, 14, 134, 1, // Opcode: LHuE_MM 1881/* 6052 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6067 1882/* 6057 */ MCD::OPC_CheckPredicate, 22, 1, 2, 0, // Skip to: 6575 1883/* 6062 */ MCD::OPC_Decode, 244, 14, 134, 1, // Opcode: LWLE_MM 1884/* 6067 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6082 1885/* 6072 */ MCD::OPC_CheckPredicate, 22, 242, 1, 0, // Skip to: 6575 1886/* 6077 */ MCD::OPC_Decode, 255, 14, 134, 1, // Opcode: LWRE_MM 1887/* 6082 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6097 1888/* 6087 */ MCD::OPC_CheckPredicate, 21, 227, 1, 0, // Skip to: 6575 1889/* 6092 */ MCD::OPC_Decode, 154, 14, 134, 1, // Opcode: LBE_MM 1890/* 6097 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 6112 1891/* 6102 */ MCD::OPC_CheckPredicate, 21, 212, 1, 0, // Skip to: 6575 1892/* 6107 */ MCD::OPC_Decode, 195, 14, 134, 1, // Opcode: LHE_MM 1893/* 6112 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6127 1894/* 6117 */ MCD::OPC_CheckPredicate, 21, 197, 1, 0, // Skip to: 6575 1895/* 6122 */ MCD::OPC_Decode, 213, 14, 134, 1, // Opcode: LLE_MM 1896/* 6127 */ MCD::OPC_FilterValue, 7, 187, 1, 0, // Skip to: 6575 1897/* 6132 */ MCD::OPC_CheckPredicate, 21, 182, 1, 0, // Skip to: 6575 1898/* 6137 */ MCD::OPC_Decode, 239, 14, 134, 1, // Opcode: LWE_MM 1899/* 6142 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 6156 1900/* 6147 */ MCD::OPC_CheckPredicate, 6, 167, 1, 0, // Skip to: 6575 1901/* 6152 */ MCD::OPC_Decode, 152, 21, 99, // Opcode: SWL_MM 1902/* 6156 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 6170 1903/* 6161 */ MCD::OPC_CheckPredicate, 6, 153, 1, 0, // Skip to: 6575 1904/* 6166 */ MCD::OPC_Decode, 161, 21, 99, // Opcode: SWR_MM 1905/* 6170 */ MCD::OPC_FilterValue, 10, 123, 0, 0, // Skip to: 6298 1906/* 6175 */ MCD::OPC_ExtractField, 9, 3, // Inst{11-9} ... 1907/* 6178 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6193 1908/* 6183 */ MCD::OPC_CheckPredicate, 22, 131, 1, 0, // Skip to: 6575 1909/* 6188 */ MCD::OPC_Decode, 151, 21, 134, 1, // Opcode: SWLE_MM 1910/* 6193 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6208 1911/* 6198 */ MCD::OPC_CheckPredicate, 22, 116, 1, 0, // Skip to: 6575 1912/* 6203 */ MCD::OPC_Decode, 160, 21, 134, 1, // Opcode: SWRE_MM 1913/* 6208 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6223 1914/* 6213 */ MCD::OPC_CheckPredicate, 21, 101, 1, 0, // Skip to: 6575 1915/* 6218 */ MCD::OPC_Decode, 165, 18, 135, 1, // Opcode: PREFE_MM 1916/* 6223 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 6238 1917/* 6228 */ MCD::OPC_CheckPredicate, 21, 86, 1, 0, // Skip to: 6575 1918/* 6233 */ MCD::OPC_Decode, 150, 8, 135, 1, // Opcode: CACHEE_MM 1919/* 6238 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6253 1920/* 6243 */ MCD::OPC_CheckPredicate, 21, 71, 1, 0, // Skip to: 6575 1921/* 6248 */ MCD::OPC_Decode, 239, 18, 134, 1, // Opcode: SBE_MM 1922/* 6253 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 6268 1923/* 6258 */ MCD::OPC_CheckPredicate, 21, 56, 1, 0, // Skip to: 6575 1924/* 6263 */ MCD::OPC_Decode, 177, 19, 134, 1, // Opcode: SHE_MM 1925/* 6268 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6283 1926/* 6273 */ MCD::OPC_CheckPredicate, 21, 41, 1, 0, // Skip to: 6575 1927/* 6278 */ MCD::OPC_Decode, 248, 18, 134, 1, // Opcode: SCE_MM 1928/* 6283 */ MCD::OPC_FilterValue, 7, 31, 1, 0, // Skip to: 6575 1929/* 6288 */ MCD::OPC_CheckPredicate, 21, 26, 1, 0, // Skip to: 6575 1930/* 6293 */ MCD::OPC_Decode, 147, 21, 134, 1, // Opcode: SWE_MM 1931/* 6298 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 6312 1932/* 6303 */ MCD::OPC_CheckPredicate, 6, 11, 1, 0, // Skip to: 6575 1933/* 6308 */ MCD::OPC_Decode, 249, 18, 99, // Opcode: SC_MM 1934/* 6312 */ MCD::OPC_FilterValue, 14, 2, 1, 0, // Skip to: 6575 1935/* 6317 */ MCD::OPC_CheckPredicate, 6, 253, 0, 0, // Skip to: 6575 1936/* 6322 */ MCD::OPC_Decode, 131, 15, 99, // Opcode: LWU_MM 1937/* 6326 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 6340 1938/* 6331 */ MCD::OPC_CheckPredicate, 6, 239, 0, 0, // Skip to: 6575 1939/* 6336 */ MCD::OPC_Decode, 157, 22, 108, // Opcode: XORi_MM 1940/* 6340 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 6355 1941/* 6345 */ MCD::OPC_CheckPredicate, 6, 225, 0, 0, // Skip to: 6575 1942/* 6350 */ MCD::OPC_Decode, 250, 13, 136, 1, // Opcode: JALS_MM 1943/* 6355 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 6370 1944/* 6360 */ MCD::OPC_CheckPredicate, 6, 210, 0, 0, // Skip to: 6575 1945/* 6365 */ MCD::OPC_Decode, 205, 5, 137, 1, // Opcode: ADDIUPC_MM 1946/* 6370 */ MCD::OPC_FilterValue, 36, 9, 0, 0, // Skip to: 6384 1947/* 6375 */ MCD::OPC_CheckPredicate, 7, 195, 0, 0, // Skip to: 6575 1948/* 6380 */ MCD::OPC_Decode, 135, 20, 97, // Opcode: SLTi_MM 1949/* 6384 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 6399 1950/* 6389 */ MCD::OPC_CheckPredicate, 6, 181, 0, 0, // Skip to: 6575 1951/* 6394 */ MCD::OPC_Decode, 129, 7, 138, 1, // Opcode: BEQ_MM 1952/* 6399 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 6414 1953/* 6404 */ MCD::OPC_CheckPredicate, 19, 166, 0, 0, // Skip to: 6575 1954/* 6409 */ MCD::OPC_Decode, 139, 21, 139, 1, // Opcode: SWC1_MM 1955/* 6414 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 6429 1956/* 6419 */ MCD::OPC_CheckPredicate, 19, 151, 0, 0, // Skip to: 6575 1957/* 6424 */ MCD::OPC_Decode, 231, 14, 139, 1, // Opcode: LWC1_MM 1958/* 6429 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 6443 1959/* 6434 */ MCD::OPC_CheckPredicate, 7, 136, 0, 0, // Skip to: 6575 1960/* 6439 */ MCD::OPC_Decode, 138, 20, 97, // Opcode: SLTiu_MM 1961/* 6443 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 6458 1962/* 6448 */ MCD::OPC_CheckPredicate, 6, 122, 0, 0, // Skip to: 6575 1963/* 6453 */ MCD::OPC_Decode, 232, 7, 138, 1, // Opcode: BNE_MM 1964/* 6458 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 6473 1965/* 6463 */ MCD::OPC_CheckPredicate, 18, 107, 0, 0, // Skip to: 6575 1966/* 6468 */ MCD::OPC_Decode, 134, 19, 139, 1, // Opcode: SDC1_MM_D32 1967/* 6473 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 6488 1968/* 6478 */ MCD::OPC_CheckPredicate, 18, 92, 0, 0, // Skip to: 6575 1969/* 6483 */ MCD::OPC_Decode, 170, 14, 139, 1, // Opcode: LDC1_MM_D32 1970/* 6488 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 6502 1971/* 6493 */ MCD::OPC_CheckPredicate, 6, 77, 0, 0, // Skip to: 6575 1972/* 6498 */ MCD::OPC_Decode, 167, 6, 108, // Opcode: ANDi_MM 1973/* 6502 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 6517 1974/* 6507 */ MCD::OPC_CheckPredicate, 6, 63, 0, 0, // Skip to: 6575 1975/* 6512 */ MCD::OPC_Decode, 144, 14, 136, 1, // Opcode: J_MM 1976/* 6517 */ MCD::OPC_FilterValue, 60, 10, 0, 0, // Skip to: 6532 1977/* 6522 */ MCD::OPC_CheckPredicate, 6, 48, 0, 0, // Skip to: 6575 1978/* 6527 */ MCD::OPC_Decode, 252, 13, 140, 1, // Opcode: JALX_MM 1979/* 6532 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 6547 1980/* 6537 */ MCD::OPC_CheckPredicate, 6, 33, 0, 0, // Skip to: 6575 1981/* 6542 */ MCD::OPC_Decode, 253, 13, 136, 1, // Opcode: JAL_MM 1982/* 6547 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 6561 1983/* 6552 */ MCD::OPC_CheckPredicate, 7, 18, 0, 0, // Skip to: 6575 1984/* 6557 */ MCD::OPC_Decode, 166, 21, 98, // Opcode: SW_MM 1985/* 6561 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 6575 1986/* 6566 */ MCD::OPC_CheckPredicate, 7, 4, 0, 0, // Skip to: 6575 1987/* 6571 */ MCD::OPC_Decode, 137, 15, 98, // Opcode: LW_MM 1988/* 6575 */ MCD::OPC_Fail, 1989 0 1990}; 1991 1992static const uint8_t DecoderTableMicroMipsDSP32[] = { 1993/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 1994/* 3 */ MCD::OPC_FilterValue, 62, 10, 0, 0, // Skip to: 18 1995/* 8 */ MCD::OPC_CheckPredicate, 8, 20, 0, 0, // Skip to: 33 1996/* 13 */ MCD::OPC_Decode, 145, 21, 141, 1, // Opcode: SWDSP_MM 1997/* 18 */ MCD::OPC_FilterValue, 63, 10, 0, 0, // Skip to: 33 1998/* 23 */ MCD::OPC_CheckPredicate, 8, 5, 0, 0, // Skip to: 33 1999/* 28 */ MCD::OPC_Decode, 237, 14, 141, 1, // Opcode: LWDSP_MM 2000/* 33 */ MCD::OPC_Fail, 2001 0 2002}; 2003 2004static const uint8_t DecoderTableMicroMipsFP6432[] = { 2005/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 2006/* 3 */ MCD::OPC_FilterValue, 21, 39, 1, 0, // Skip to: 303 2007/* 8 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 2008/* 11 */ MCD::OPC_FilterValue, 59, 48, 0, 0, // Skip to: 64 2009/* 16 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2010/* 19 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 34 2011/* 24 */ MCD::OPC_CheckPredicate, 20, 48, 1, 0, // Skip to: 333 2012/* 29 */ MCD::OPC_Decode, 231, 16, 142, 1, // Opcode: MTC1_D64_MM 2013/* 34 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 49 2014/* 39 */ MCD::OPC_CheckPredicate, 20, 33, 1, 0, // Skip to: 333 2015/* 44 */ MCD::OPC_Decode, 226, 15, 143, 1, // Opcode: MFHC1_D64_MM 2016/* 49 */ MCD::OPC_FilterValue, 7, 23, 1, 0, // Skip to: 333 2017/* 54 */ MCD::OPC_CheckPredicate, 20, 18, 1, 0, // Skip to: 333 2018/* 59 */ MCD::OPC_Decode, 242, 16, 144, 1, // Opcode: MTHC1_D64_MM 2019/* 64 */ MCD::OPC_FilterValue, 123, 16, 0, 0, // Skip to: 85 2020/* 69 */ MCD::OPC_CheckPredicate, 20, 3, 1, 0, // Skip to: 333 2021/* 74 */ MCD::OPC_CheckField, 11, 5, 4, 252, 0, 0, // Skip to: 333 2022/* 81 */ MCD::OPC_Decode, 237, 12, 122, // Opcode: FMOV_D64_MM 2023/* 85 */ MCD::OPC_FilterValue, 176, 2, 10, 0, 0, // Skip to: 101 2024/* 91 */ MCD::OPC_CheckPredicate, 20, 237, 0, 0, // Skip to: 333 2025/* 96 */ MCD::OPC_Decode, 147, 12, 145, 1, // Opcode: FADD_D64_MM 2026/* 101 */ MCD::OPC_FilterValue, 187, 2, 17, 0, 0, // Skip to: 124 2027/* 107 */ MCD::OPC_CheckPredicate, 20, 221, 0, 0, // Skip to: 333 2028/* 112 */ MCD::OPC_CheckField, 11, 5, 9, 214, 0, 0, // Skip to: 333 2029/* 119 */ MCD::OPC_Decode, 237, 9, 146, 1, // Opcode: CVT_W_D64_MM 2030/* 124 */ MCD::OPC_FilterValue, 240, 2, 10, 0, 0, // Skip to: 140 2031/* 130 */ MCD::OPC_CheckPredicate, 20, 198, 0, 0, // Skip to: 333 2032/* 135 */ MCD::OPC_Decode, 164, 13, 145, 1, // Opcode: FSUB_D64_MM 2033/* 140 */ MCD::OPC_FilterValue, 176, 3, 10, 0, 0, // Skip to: 156 2034/* 146 */ MCD::OPC_CheckPredicate, 20, 182, 0, 0, // Skip to: 333 2035/* 151 */ MCD::OPC_Decode, 248, 12, 145, 1, // Opcode: FMUL_D64_MM 2036/* 156 */ MCD::OPC_FilterValue, 240, 3, 10, 0, 0, // Skip to: 172 2037/* 162 */ MCD::OPC_CheckPredicate, 20, 166, 0, 0, // Skip to: 333 2038/* 167 */ MCD::OPC_Decode, 186, 12, 145, 1, // Opcode: FDIV_D64_MM 2039/* 172 */ MCD::OPC_FilterValue, 187, 4, 45, 0, 0, // Skip to: 223 2040/* 178 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2041/* 181 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 195 2042/* 186 */ MCD::OPC_CheckPredicate, 20, 142, 0, 0, // Skip to: 333 2043/* 191 */ MCD::OPC_Decode, 219, 18, 122, // Opcode: RSQRT_D64_MM 2044/* 195 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 209 2045/* 200 */ MCD::OPC_CheckPredicate, 20, 128, 0, 0, // Skip to: 333 2046/* 205 */ MCD::OPC_Decode, 156, 13, 122, // Opcode: FSQRT_D64_MM 2047/* 209 */ MCD::OPC_FilterValue, 10, 119, 0, 0, // Skip to: 333 2048/* 214 */ MCD::OPC_CheckPredicate, 20, 114, 0, 0, // Skip to: 333 2049/* 219 */ MCD::OPC_Decode, 186, 18, 122, // Opcode: RECIP_D64_MM 2050/* 223 */ MCD::OPC_FilterValue, 251, 6, 104, 0, 0, // Skip to: 333 2051/* 229 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2052/* 232 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 246 2053/* 237 */ MCD::OPC_CheckPredicate, 20, 91, 0, 0, // Skip to: 333 2054/* 242 */ MCD::OPC_Decode, 210, 9, 121, // Opcode: CVT_D64_S_MM 2055/* 246 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 261 2056/* 251 */ MCD::OPC_CheckPredicate, 20, 77, 0, 0, // Skip to: 333 2057/* 256 */ MCD::OPC_Decode, 226, 9, 146, 1, // Opcode: CVT_S_D64_MM 2058/* 261 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 275 2059/* 266 */ MCD::OPC_CheckPredicate, 20, 62, 0, 0, // Skip to: 333 2060/* 271 */ MCD::OPC_Decode, 140, 12, 122, // Opcode: FABS_D64_MM 2061/* 275 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 289 2062/* 280 */ MCD::OPC_CheckPredicate, 20, 48, 0, 0, // Skip to: 333 2063/* 285 */ MCD::OPC_Decode, 129, 13, 122, // Opcode: FNEG_D64_MM 2064/* 289 */ MCD::OPC_FilterValue, 6, 39, 0, 0, // Skip to: 333 2065/* 294 */ MCD::OPC_CheckPredicate, 20, 34, 0, 0, // Skip to: 333 2066/* 299 */ MCD::OPC_Decode, 212, 9, 121, // Opcode: CVT_D64_W_MM 2067/* 303 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 318 2068/* 308 */ MCD::OPC_CheckPredicate, 23, 20, 0, 0, // Skip to: 333 2069/* 313 */ MCD::OPC_Decode, 133, 19, 139, 1, // Opcode: SDC1_D64_MMR6 2070/* 318 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 333 2071/* 323 */ MCD::OPC_CheckPredicate, 23, 5, 0, 0, // Skip to: 333 2072/* 328 */ MCD::OPC_Decode, 169, 14, 139, 1, // Opcode: LDC1_D64_MMR6 2073/* 333 */ MCD::OPC_Fail, 2074 0 2075}; 2076 2077static const uint8_t DecoderTableMicroMipsR616[] = { 2078/* 0 */ MCD::OPC_ExtractField, 10, 6, // Inst{15-10} ... 2079/* 3 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 41 2080/* 8 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2081/* 11 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 26 2082/* 16 */ MCD::OPC_CheckPredicate, 24, 173, 1, 0, // Skip to: 450 2083/* 21 */ MCD::OPC_Decode, 242, 5, 147, 1, // Opcode: ADDU16_MMR6 2084/* 26 */ MCD::OPC_FilterValue, 1, 163, 1, 0, // Skip to: 450 2085/* 31 */ MCD::OPC_CheckPredicate, 24, 158, 1, 0, // Skip to: 450 2086/* 36 */ MCD::OPC_Decode, 233, 20, 147, 1, // Opcode: SUBU16_MMR6 2087/* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 2088/* 46 */ MCD::OPC_CheckPredicate, 24, 143, 1, 0, // Skip to: 450 2089/* 51 */ MCD::OPC_Decode, 158, 16, 33, // Opcode: MOVE16_MMR6 2090/* 55 */ MCD::OPC_FilterValue, 9, 31, 0, 0, // Skip to: 91 2091/* 60 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2092/* 63 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 77 2093/* 68 */ MCD::OPC_CheckPredicate, 24, 121, 1, 0, // Skip to: 450 2094/* 73 */ MCD::OPC_Decode, 243, 19, 34, // Opcode: SLL16_MMR6 2095/* 77 */ MCD::OPC_FilterValue, 1, 112, 1, 0, // Skip to: 450 2096/* 82 */ MCD::OPC_CheckPredicate, 24, 107, 1, 0, // Skip to: 450 2097/* 87 */ MCD::OPC_Decode, 174, 20, 34, // Opcode: SRL16_MMR6 2098/* 91 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 105 2099/* 96 */ MCD::OPC_CheckPredicate, 24, 93, 1, 0, // Skip to: 450 2100/* 101 */ MCD::OPC_Decode, 159, 6, 35, // Opcode: ANDI16_MMR6 2101/* 105 */ MCD::OPC_FilterValue, 17, 228, 0, 0, // Skip to: 338 2102/* 110 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... 2103/* 113 */ MCD::OPC_FilterValue, 0, 206, 0, 0, // Skip to: 324 2104/* 118 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... 2105/* 121 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 159 2106/* 126 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... 2107/* 129 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 144 2108/* 134 */ MCD::OPC_CheckPredicate, 24, 55, 1, 0, // Skip to: 450 2109/* 139 */ MCD::OPC_Decode, 217, 17, 148, 1, // Opcode: NOT16_MMR6 2110/* 144 */ MCD::OPC_FilterValue, 1, 45, 1, 0, // Skip to: 450 2111/* 149 */ MCD::OPC_CheckPredicate, 24, 40, 1, 0, // Skip to: 450 2112/* 154 */ MCD::OPC_Decode, 148, 22, 149, 1, // Opcode: XOR16_MMR6 2113/* 159 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 197 2114/* 164 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... 2115/* 167 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 182 2116/* 172 */ MCD::OPC_CheckPredicate, 24, 17, 1, 0, // Skip to: 450 2117/* 177 */ MCD::OPC_Decode, 156, 6, 149, 1, // Opcode: AND16_MMR6 2118/* 182 */ MCD::OPC_FilterValue, 1, 7, 1, 0, // Skip to: 450 2119/* 187 */ MCD::OPC_CheckPredicate, 24, 2, 1, 0, // Skip to: 450 2120/* 192 */ MCD::OPC_Decode, 222, 17, 149, 1, // Opcode: OR16_MMR6 2121/* 197 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 233 2122/* 202 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... 2123/* 205 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 219 2124/* 210 */ MCD::OPC_CheckPredicate, 24, 235, 0, 0, // Skip to: 450 2125/* 215 */ MCD::OPC_Decode, 247, 14, 38, // Opcode: LWM16_MMR6 2126/* 219 */ MCD::OPC_FilterValue, 1, 226, 0, 0, // Skip to: 450 2127/* 224 */ MCD::OPC_CheckPredicate, 24, 221, 0, 0, // Skip to: 450 2128/* 229 */ MCD::OPC_Decode, 154, 21, 38, // Opcode: SWM16_MMR6 2129/* 233 */ MCD::OPC_FilterValue, 3, 212, 0, 0, // Skip to: 450 2130/* 238 */ MCD::OPC_ExtractField, 3, 2, // Inst{4-3} ... 2131/* 241 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 256 2132/* 246 */ MCD::OPC_CheckPredicate, 24, 199, 0, 0, // Skip to: 450 2133/* 251 */ MCD::OPC_Decode, 137, 14, 150, 1, // Opcode: JRC16_MMR6 2134/* 256 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 271 2135/* 261 */ MCD::OPC_CheckPredicate, 24, 184, 0, 0, // Skip to: 450 2136/* 266 */ MCD::OPC_Decode, 242, 13, 150, 1, // Opcode: JALRC16_MMR6 2137/* 271 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 286 2138/* 276 */ MCD::OPC_CheckPredicate, 24, 169, 0, 0, // Skip to: 450 2139/* 281 */ MCD::OPC_Decode, 138, 14, 151, 1, // Opcode: JRCADDIUSP_MMR6 2140/* 286 */ MCD::OPC_FilterValue, 3, 159, 0, 0, // Skip to: 450 2141/* 291 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 2142/* 294 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 309 2143/* 299 */ MCD::OPC_CheckPredicate, 24, 146, 0, 0, // Skip to: 450 2144/* 304 */ MCD::OPC_Decode, 247, 7, 152, 1, // Opcode: BREAK16_MMR6 2145/* 309 */ MCD::OPC_FilterValue, 1, 136, 0, 0, // Skip to: 450 2146/* 314 */ MCD::OPC_CheckPredicate, 24, 131, 0, 0, // Skip to: 450 2147/* 319 */ MCD::OPC_Decode, 255, 18, 152, 1, // Opcode: SDBBP16_MMR6 2148/* 324 */ MCD::OPC_FilterValue, 1, 121, 0, 0, // Skip to: 450 2149/* 329 */ MCD::OPC_CheckPredicate, 24, 116, 0, 0, // Skip to: 450 2150/* 334 */ MCD::OPC_Decode, 160, 16, 48, // Opcode: MOVEP_MMR6 2151/* 338 */ MCD::OPC_FilterValue, 34, 9, 0, 0, // Skip to: 352 2152/* 343 */ MCD::OPC_CheckPredicate, 24, 102, 0, 0, // Skip to: 450 2153/* 348 */ MCD::OPC_Decode, 236, 18, 32, // Opcode: SB16_MMR6 2154/* 352 */ MCD::OPC_FilterValue, 35, 9, 0, 0, // Skip to: 366 2155/* 357 */ MCD::OPC_CheckPredicate, 24, 88, 0, 0, // Skip to: 450 2156/* 362 */ MCD::OPC_Decode, 253, 6, 49, // Opcode: BEQZC16_MMR6 2157/* 366 */ MCD::OPC_FilterValue, 42, 9, 0, 0, // Skip to: 380 2158/* 371 */ MCD::OPC_CheckPredicate, 24, 74, 0, 0, // Skip to: 450 2159/* 376 */ MCD::OPC_Decode, 174, 19, 32, // Opcode: SH16_MMR6 2160/* 380 */ MCD::OPC_FilterValue, 43, 9, 0, 0, // Skip to: 394 2161/* 385 */ MCD::OPC_CheckPredicate, 24, 60, 0, 0, // Skip to: 450 2162/* 390 */ MCD::OPC_Decode, 228, 7, 49, // Opcode: BNEZC16_MMR6 2163/* 394 */ MCD::OPC_FilterValue, 50, 9, 0, 0, // Skip to: 408 2164/* 399 */ MCD::OPC_CheckPredicate, 24, 46, 0, 0, // Skip to: 450 2165/* 404 */ MCD::OPC_Decode, 163, 21, 42, // Opcode: SWSP_MMR6 2166/* 408 */ MCD::OPC_FilterValue, 51, 9, 0, 0, // Skip to: 422 2167/* 413 */ MCD::OPC_CheckPredicate, 24, 32, 0, 0, // Skip to: 450 2168/* 418 */ MCD::OPC_Decode, 219, 6, 50, // Opcode: BC16_MMR6 2169/* 422 */ MCD::OPC_FilterValue, 58, 9, 0, 0, // Skip to: 436 2170/* 427 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 450 2171/* 432 */ MCD::OPC_Decode, 136, 21, 32, // Opcode: SW16_MMR6 2172/* 436 */ MCD::OPC_FilterValue, 59, 9, 0, 0, // Skip to: 450 2173/* 441 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 450 2174/* 446 */ MCD::OPC_Decode, 206, 14, 51, // Opcode: LI16_MMR6 2175/* 450 */ MCD::OPC_Fail, 2176 0 2177}; 2178 2179static const uint8_t DecoderTableMicroMipsR632[] = { 2180/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 2181/* 3 */ MCD::OPC_FilterValue, 0, 98, 4, 0, // Skip to: 1130 2182/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 2183/* 11 */ MCD::OPC_FilterValue, 0, 112, 0, 0, // Skip to: 128 2184/* 16 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2185/* 19 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 78 2186/* 24 */ MCD::OPC_ExtractField, 11, 15, // Inst{25-11} ... 2187/* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 2188/* 32 */ MCD::OPC_CheckPredicate, 24, 32, 0, 0, // Skip to: 69 2189/* 37 */ MCD::OPC_Decode, 196, 20, 10, // Opcode: SSNOP_MMR6 2190/* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 2191/* 46 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 69 2192/* 51 */ MCD::OPC_Decode, 223, 11, 10, // Opcode: EHB_MMR6 2193/* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 2194/* 60 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 69 2195/* 65 */ MCD::OPC_Decode, 237, 17, 10, // Opcode: PAUSE_MMR6 2196/* 69 */ MCD::OPC_CheckPredicate, 24, 80, 12, 0, // Skip to: 3226 2197/* 74 */ MCD::OPC_Decode, 128, 20, 52, // Opcode: SLL_MMR6 2198/* 78 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 92 2199/* 83 */ MCD::OPC_CheckPredicate, 24, 66, 12, 0, // Skip to: 3226 2200/* 88 */ MCD::OPC_Decode, 156, 19, 55, // Opcode: SELEQZ_MMR6 2201/* 92 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 106 2202/* 97 */ MCD::OPC_CheckPredicate, 24, 52, 12, 0, // Skip to: 3226 2203/* 102 */ MCD::OPC_Decode, 163, 19, 55, // Opcode: SELNEZ_MMR6 2204/* 106 */ MCD::OPC_FilterValue, 7, 43, 12, 0, // Skip to: 3226 2205/* 111 */ MCD::OPC_CheckPredicate, 24, 38, 12, 0, // Skip to: 3226 2206/* 116 */ MCD::OPC_CheckField, 14, 2, 0, 31, 12, 0, // Skip to: 3226 2207/* 123 */ MCD::OPC_Decode, 181, 18, 153, 1, // Opcode: RDHWR_MMR6 2208/* 128 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 142 2209/* 133 */ MCD::OPC_CheckPredicate, 24, 16, 12, 0, // Skip to: 3226 2210/* 138 */ MCD::OPC_Decode, 249, 7, 56, // Opcode: BREAK_MMR6 2211/* 142 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 156 2212/* 147 */ MCD::OPC_CheckPredicate, 24, 2, 12, 0, // Skip to: 3226 2213/* 152 */ MCD::OPC_Decode, 236, 13, 57, // Opcode: INS_MMR6 2214/* 156 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 178 2215/* 161 */ MCD::OPC_CheckPredicate, 24, 244, 11, 0, // Skip to: 3226 2216/* 166 */ MCD::OPC_CheckField, 6, 3, 0, 237, 11, 0, // Skip to: 3226 2217/* 173 */ MCD::OPC_Decode, 218, 14, 154, 1, // Opcode: LSA_MMR6 2218/* 178 */ MCD::OPC_FilterValue, 16, 136, 0, 0, // Skip to: 319 2219/* 183 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2220/* 186 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 207 2221/* 191 */ MCD::OPC_CheckPredicate, 24, 214, 11, 0, // Skip to: 3226 2222/* 196 */ MCD::OPC_CheckField, 16, 5, 0, 207, 11, 0, // Skip to: 3226 2223/* 203 */ MCD::OPC_Decode, 223, 8, 25, // Opcode: CLZ_MMR6 2224/* 207 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 221 2225/* 212 */ MCD::OPC_CheckPredicate, 24, 193, 11, 0, // Skip to: 3226 2226/* 217 */ MCD::OPC_Decode, 143, 6, 55, // Opcode: ADD_MMR6 2227/* 221 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 235 2228/* 226 */ MCD::OPC_CheckPredicate, 24, 179, 11, 0, // Skip to: 3226 2229/* 231 */ MCD::OPC_Decode, 247, 5, 55, // Opcode: ADDU_MMR6 2230/* 235 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 249 2231/* 240 */ MCD::OPC_CheckPredicate, 24, 165, 11, 0, // Skip to: 3226 2232/* 245 */ MCD::OPC_Decode, 128, 21, 55, // Opcode: SUB_MMR6 2233/* 249 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 263 2234/* 254 */ MCD::OPC_CheckPredicate, 24, 151, 11, 0, // Skip to: 3226 2235/* 259 */ MCD::OPC_Decode, 238, 20, 55, // Opcode: SUBU_MMR6 2236/* 263 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 277 2237/* 268 */ MCD::OPC_CheckPredicate, 24, 137, 11, 0, // Skip to: 3226 2238/* 273 */ MCD::OPC_Decode, 163, 6, 55, // Opcode: AND_MMR6 2239/* 277 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 291 2240/* 282 */ MCD::OPC_CheckPredicate, 24, 123, 11, 0, // Skip to: 3226 2241/* 287 */ MCD::OPC_Decode, 227, 17, 55, // Opcode: OR_MMR6 2242/* 291 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 305 2243/* 296 */ MCD::OPC_CheckPredicate, 24, 109, 11, 0, // Skip to: 3226 2244/* 301 */ MCD::OPC_Decode, 214, 17, 55, // Opcode: NOR_MMR6 2245/* 305 */ MCD::OPC_FilterValue, 12, 100, 11, 0, // Skip to: 3226 2246/* 310 */ MCD::OPC_CheckPredicate, 24, 95, 11, 0, // Skip to: 3226 2247/* 315 */ MCD::OPC_Decode, 153, 22, 55, // Opcode: XOR_MMR6 2248/* 319 */ MCD::OPC_FilterValue, 24, 115, 0, 0, // Skip to: 439 2249/* 324 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2250/* 327 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 341 2251/* 332 */ MCD::OPC_CheckPredicate, 24, 73, 11, 0, // Skip to: 3226 2252/* 337 */ MCD::OPC_Decode, 180, 17, 55, // Opcode: MUL_MMR6 2253/* 341 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 355 2254/* 346 */ MCD::OPC_CheckPredicate, 24, 59, 11, 0, // Skip to: 3226 2255/* 351 */ MCD::OPC_Decode, 140, 17, 55, // Opcode: MUH_MMR6 2256/* 355 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 369 2257/* 360 */ MCD::OPC_CheckPredicate, 24, 45, 11, 0, // Skip to: 3226 2258/* 365 */ MCD::OPC_Decode, 174, 17, 55, // Opcode: MULU_MMR6 2259/* 369 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 383 2260/* 374 */ MCD::OPC_CheckPredicate, 24, 31, 11, 0, // Skip to: 3226 2261/* 379 */ MCD::OPC_Decode, 139, 17, 55, // Opcode: MUHU_MMR6 2262/* 383 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 397 2263/* 388 */ MCD::OPC_CheckPredicate, 24, 17, 11, 0, // Skip to: 3226 2264/* 393 */ MCD::OPC_Decode, 241, 10, 55, // Opcode: DIV_MMR6 2265/* 397 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 411 2266/* 402 */ MCD::OPC_CheckPredicate, 24, 3, 11, 0, // Skip to: 3226 2267/* 407 */ MCD::OPC_Decode, 148, 16, 55, // Opcode: MOD_MMR6 2268/* 411 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 425 2269/* 416 */ MCD::OPC_CheckPredicate, 24, 245, 10, 0, // Skip to: 3226 2270/* 421 */ MCD::OPC_Decode, 240, 10, 55, // Opcode: DIVU_MMR6 2271/* 425 */ MCD::OPC_FilterValue, 7, 236, 10, 0, // Skip to: 3226 2272/* 430 */ MCD::OPC_CheckPredicate, 24, 231, 10, 0, // Skip to: 3226 2273/* 435 */ MCD::OPC_Decode, 147, 16, 55, // Opcode: MODU_MMR6 2274/* 439 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 461 2275/* 444 */ MCD::OPC_CheckPredicate, 24, 217, 10, 0, // Skip to: 3226 2276/* 449 */ MCD::OPC_CheckField, 6, 3, 0, 210, 10, 0, // Skip to: 3226 2277/* 456 */ MCD::OPC_Decode, 151, 6, 155, 1, // Opcode: ALIGN_MMR6 2278/* 461 */ MCD::OPC_FilterValue, 44, 9, 0, 0, // Skip to: 475 2279/* 466 */ MCD::OPC_CheckPredicate, 24, 195, 10, 0, // Skip to: 3226 2280/* 471 */ MCD::OPC_Decode, 136, 12, 66, // Opcode: EXT_MMR6 2281/* 475 */ MCD::OPC_FilterValue, 52, 45, 0, 0, // Skip to: 525 2282/* 480 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2283/* 483 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 504 2284/* 488 */ MCD::OPC_CheckPredicate, 24, 173, 10, 0, // Skip to: 3226 2285/* 493 */ MCD::OPC_CheckField, 14, 2, 0, 166, 10, 0, // Skip to: 3226 2286/* 500 */ MCD::OPC_Decode, 222, 15, 68, // Opcode: MFHC0_MMR6 2287/* 504 */ MCD::OPC_FilterValue, 11, 157, 10, 0, // Skip to: 3226 2288/* 509 */ MCD::OPC_CheckPredicate, 24, 152, 10, 0, // Skip to: 3226 2289/* 514 */ MCD::OPC_CheckField, 14, 2, 0, 145, 10, 0, // Skip to: 3226 2290/* 521 */ MCD::OPC_Decode, 238, 16, 69, // Opcode: MTHC0_MMR6 2291/* 525 */ MCD::OPC_FilterValue, 60, 66, 2, 0, // Skip to: 1108 2292/* 530 */ MCD::OPC_ExtractField, 14, 2, // Inst{15-14} ... 2293/* 533 */ MCD::OPC_FilterValue, 0, 138, 0, 0, // Skip to: 676 2294/* 538 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2295/* 541 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 555 2296/* 546 */ MCD::OPC_CheckPredicate, 24, 115, 10, 0, // Skip to: 3226 2297/* 551 */ MCD::OPC_Decode, 213, 15, 68, // Opcode: MFC0_MMR6 2298/* 555 */ MCD::OPC_FilterValue, 5, 45, 0, 0, // Skip to: 605 2299/* 560 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 2300/* 563 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 584 2301/* 568 */ MCD::OPC_CheckPredicate, 24, 93, 10, 0, // Skip to: 3226 2302/* 573 */ MCD::OPC_CheckField, 21, 5, 0, 86, 10, 0, // Skip to: 3226 2303/* 580 */ MCD::OPC_Decode, 218, 11, 92, // Opcode: DVP_MMR6 2304/* 584 */ MCD::OPC_FilterValue, 7, 77, 10, 0, // Skip to: 3226 2305/* 589 */ MCD::OPC_CheckPredicate, 24, 72, 10, 0, // Skip to: 3226 2306/* 594 */ MCD::OPC_CheckField, 21, 5, 0, 65, 10, 0, // Skip to: 3226 2307/* 601 */ MCD::OPC_Decode, 235, 11, 92, // Opcode: EVP_MMR6 2308/* 605 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 619 2309/* 610 */ MCD::OPC_CheckPredicate, 24, 51, 10, 0, // Skip to: 3226 2310/* 615 */ MCD::OPC_Decode, 228, 16, 69, // Opcode: MTC0_MMR6 2311/* 619 */ MCD::OPC_FilterValue, 12, 16, 0, 0, // Skip to: 640 2312/* 624 */ MCD::OPC_CheckPredicate, 24, 37, 10, 0, // Skip to: 3226 2313/* 629 */ MCD::OPC_CheckField, 11, 3, 1, 30, 10, 0, // Skip to: 3226 2314/* 636 */ MCD::OPC_Decode, 177, 7, 86, // Opcode: BITSWAP_MMR6 2315/* 640 */ MCD::OPC_FilterValue, 28, 21, 10, 0, // Skip to: 3226 2316/* 645 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 2317/* 648 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 662 2318/* 653 */ MCD::OPC_CheckPredicate, 24, 8, 10, 0, // Skip to: 3226 2319/* 658 */ MCD::OPC_Decode, 244, 13, 80, // Opcode: JALRC_MMR6 2320/* 662 */ MCD::OPC_FilterValue, 3, 255, 9, 0, // Skip to: 3226 2321/* 667 */ MCD::OPC_CheckPredicate, 24, 250, 9, 0, // Skip to: 3226 2322/* 672 */ MCD::OPC_Decode, 243, 13, 80, // Opcode: JALRC_HB_MMR6 2323/* 676 */ MCD::OPC_FilterValue, 1, 10, 1, 0, // Skip to: 947 2324/* 681 */ MCD::OPC_ExtractField, 11, 3, // Inst{13-11} ... 2325/* 684 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 734 2326/* 689 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2327/* 692 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 713 2328/* 697 */ MCD::OPC_CheckPredicate, 24, 220, 9, 0, // Skip to: 3226 2329/* 702 */ MCD::OPC_CheckField, 16, 10, 0, 213, 9, 0, // Skip to: 3226 2330/* 709 */ MCD::OPC_Decode, 224, 21, 10, // Opcode: TLBINV_MMR6 2331/* 713 */ MCD::OPC_FilterValue, 29, 204, 9, 0, // Skip to: 3226 2332/* 718 */ MCD::OPC_CheckPredicate, 24, 199, 9, 0, // Skip to: 3226 2333/* 723 */ MCD::OPC_CheckField, 21, 5, 0, 192, 9, 0, // Skip to: 3226 2334/* 730 */ MCD::OPC_Decode, 251, 10, 92, // Opcode: DI_MMR6 2335/* 734 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 770 2336/* 739 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2337/* 742 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 756 2338/* 747 */ MCD::OPC_CheckPredicate, 24, 170, 9, 0, // Skip to: 3226 2339/* 752 */ MCD::OPC_Decode, 203, 8, 80, // Opcode: CLO_MMR6 2340/* 756 */ MCD::OPC_FilterValue, 20, 161, 9, 0, // Skip to: 3226 2341/* 761 */ MCD::OPC_CheckPredicate, 24, 156, 9, 0, // Skip to: 3226 2342/* 766 */ MCD::OPC_Decode, 219, 15, 90, // Opcode: MFC2_MMR6 2343/* 770 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 820 2344/* 775 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2345/* 778 */ MCD::OPC_FilterValue, 13, 16, 0, 0, // Skip to: 799 2346/* 783 */ MCD::OPC_CheckPredicate, 24, 134, 9, 0, // Skip to: 3226 2347/* 788 */ MCD::OPC_CheckField, 16, 10, 0, 127, 9, 0, // Skip to: 3226 2348/* 795 */ MCD::OPC_Decode, 223, 21, 10, // Opcode: TLBINVF_MMR6 2349/* 799 */ MCD::OPC_FilterValue, 29, 118, 9, 0, // Skip to: 3226 2350/* 804 */ MCD::OPC_CheckPredicate, 24, 113, 9, 0, // Skip to: 3226 2351/* 809 */ MCD::OPC_CheckField, 21, 5, 0, 106, 9, 0, // Skip to: 3226 2352/* 816 */ MCD::OPC_Decode, 226, 11, 92, // Opcode: EI_MMR6 2353/* 820 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 841 2354/* 825 */ MCD::OPC_CheckPredicate, 24, 92, 9, 0, // Skip to: 3226 2355/* 830 */ MCD::OPC_CheckField, 6, 5, 20, 85, 9, 0, // Skip to: 3226 2356/* 837 */ MCD::OPC_Decode, 235, 16, 91, // Opcode: MTC2_MMR6 2357/* 841 */ MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 869 2358/* 846 */ MCD::OPC_CheckPredicate, 25, 71, 9, 0, // Skip to: 3226 2359/* 851 */ MCD::OPC_CheckField, 21, 5, 0, 64, 9, 0, // Skip to: 3226 2360/* 858 */ MCD::OPC_CheckField, 6, 5, 5, 57, 9, 0, // Skip to: 3226 2361/* 865 */ MCD::OPC_Decode, 191, 13, 92, // Opcode: GINVI_MMR6 2362/* 869 */ MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 897 2363/* 874 */ MCD::OPC_CheckPredicate, 24, 43, 9, 0, // Skip to: 3226 2364/* 879 */ MCD::OPC_CheckField, 21, 5, 0, 36, 9, 0, // Skip to: 3226 2365/* 886 */ MCD::OPC_CheckField, 6, 5, 13, 29, 9, 0, // Skip to: 3226 2366/* 893 */ MCD::OPC_Decode, 173, 21, 87, // Opcode: SYNC_MMR6 2367/* 897 */ MCD::OPC_FilterValue, 6, 24, 0, 0, // Skip to: 926 2368/* 902 */ MCD::OPC_CheckPredicate, 25, 15, 9, 0, // Skip to: 3226 2369/* 907 */ MCD::OPC_CheckField, 21, 5, 0, 8, 9, 0, // Skip to: 3226 2370/* 914 */ MCD::OPC_CheckField, 6, 3, 5, 1, 9, 0, // Skip to: 3226 2371/* 921 */ MCD::OPC_Decode, 193, 13, 156, 1, // Opcode: GINVT_MMR6 2372/* 926 */ MCD::OPC_FilterValue, 7, 247, 8, 0, // Skip to: 3226 2373/* 931 */ MCD::OPC_CheckPredicate, 24, 242, 8, 0, // Skip to: 3226 2374/* 936 */ MCD::OPC_CheckField, 6, 5, 12, 235, 8, 0, // Skip to: 3226 2375/* 943 */ MCD::OPC_Decode, 145, 22, 80, // Opcode: WSBH_MMR6 2376/* 947 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 997 2377/* 952 */ MCD::OPC_ExtractField, 6, 8, // Inst{13-6} ... 2378/* 955 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 969 2379/* 960 */ MCD::OPC_CheckPredicate, 24, 213, 8, 0, // Skip to: 3226 2380/* 965 */ MCD::OPC_Decode, 227, 15, 90, // Opcode: MFHC2_MMR6 2381/* 969 */ MCD::OPC_FilterValue, 77, 9, 0, 0, // Skip to: 983 2382/* 974 */ MCD::OPC_CheckPredicate, 24, 199, 8, 0, // Skip to: 3226 2383/* 979 */ MCD::OPC_Decode, 139, 22, 88, // Opcode: WAIT_MMR6 2384/* 983 */ MCD::OPC_FilterValue, 116, 190, 8, 0, // Skip to: 3226 2385/* 988 */ MCD::OPC_CheckPredicate, 24, 185, 8, 0, // Skip to: 3226 2386/* 993 */ MCD::OPC_Decode, 243, 16, 91, // Opcode: MTHC2_MMR6 2387/* 997 */ MCD::OPC_FilterValue, 3, 176, 8, 0, // Skip to: 3226 2388/* 1002 */ MCD::OPC_ExtractField, 6, 8, // Inst{13-6} ... 2389/* 1005 */ MCD::OPC_FilterValue, 109, 9, 0, 0, // Skip to: 1019 2390/* 1010 */ MCD::OPC_CheckPredicate, 24, 163, 8, 0, // Skip to: 3226 2391/* 1015 */ MCD::OPC_Decode, 129, 19, 88, // Opcode: SDBBP_MMR6 2392/* 1019 */ MCD::OPC_FilterValue, 133, 1, 9, 0, 0, // Skip to: 1034 2393/* 1025 */ MCD::OPC_CheckPredicate, 24, 148, 8, 0, // Skip to: 3226 2394/* 1030 */ MCD::OPC_Decode, 182, 18, 80, // Opcode: RDPGPR_MMR6 2395/* 1034 */ MCD::OPC_FilterValue, 141, 1, 16, 0, 0, // Skip to: 1056 2396/* 1040 */ MCD::OPC_CheckPredicate, 24, 133, 8, 0, // Skip to: 3226 2397/* 1045 */ MCD::OPC_CheckField, 16, 10, 0, 126, 8, 0, // Skip to: 3226 2398/* 1052 */ MCD::OPC_Decode, 229, 10, 10, // Opcode: DERET_MMR6 2399/* 1056 */ MCD::OPC_FilterValue, 197, 1, 9, 0, 0, // Skip to: 1071 2400/* 1062 */ MCD::OPC_CheckPredicate, 24, 111, 8, 0, // Skip to: 3226 2401/* 1067 */ MCD::OPC_Decode, 142, 22, 80, // Opcode: WRPGPR_MMR6 2402/* 1071 */ MCD::OPC_FilterValue, 205, 1, 101, 8, 0, // Skip to: 3226 2403/* 1077 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 2404/* 1080 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1094 2405/* 1085 */ MCD::OPC_CheckPredicate, 24, 88, 8, 0, // Skip to: 3226 2406/* 1090 */ MCD::OPC_Decode, 232, 11, 10, // Opcode: ERET_MMR6 2407/* 1094 */ MCD::OPC_FilterValue, 1, 79, 8, 0, // Skip to: 3226 2408/* 1099 */ MCD::OPC_CheckPredicate, 24, 74, 8, 0, // Skip to: 3226 2409/* 1104 */ MCD::OPC_Decode, 230, 11, 10, // Opcode: ERETNC_MMR6 2410/* 1108 */ MCD::OPC_FilterValue, 63, 65, 8, 0, // Skip to: 3226 2411/* 1113 */ MCD::OPC_CheckPredicate, 24, 60, 8, 0, // Skip to: 3226 2412/* 1118 */ MCD::OPC_CheckField, 22, 4, 0, 53, 8, 0, // Skip to: 3226 2413/* 1125 */ MCD::OPC_Decode, 232, 19, 157, 1, // Opcode: SIGRIE_MMR6 2414/* 1130 */ MCD::OPC_FilterValue, 4, 26, 0, 0, // Skip to: 1161 2415/* 1135 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 1152 2416/* 1140 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 1152 2417/* 1147 */ MCD::OPC_Decode, 220, 14, 158, 1, // Opcode: LUI_MMR6 2418/* 1152 */ MCD::OPC_CheckPredicate, 24, 21, 8, 0, // Skip to: 3226 2419/* 1157 */ MCD::OPC_Decode, 181, 6, 108, // Opcode: AUI_MMR6 2420/* 1161 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1176 2421/* 1166 */ MCD::OPC_CheckPredicate, 24, 7, 8, 0, // Skip to: 3226 2422/* 1171 */ MCD::OPC_Decode, 158, 14, 159, 1, // Opcode: LBU_MMR6 2423/* 1176 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1190 2424/* 1181 */ MCD::OPC_CheckPredicate, 24, 248, 7, 0, // Skip to: 3226 2425/* 1186 */ MCD::OPC_Decode, 241, 18, 98, // Opcode: SB_MMR6 2426/* 1190 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1205 2427/* 1195 */ MCD::OPC_CheckPredicate, 24, 234, 7, 0, // Skip to: 3226 2428/* 1200 */ MCD::OPC_Decode, 160, 14, 159, 1, // Opcode: LB_MMR6 2429/* 1205 */ MCD::OPC_FilterValue, 8, 105, 0, 0, // Skip to: 1315 2430/* 1210 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 2431/* 1213 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1235 2432/* 1218 */ MCD::OPC_CheckPredicate, 24, 211, 7, 0, // Skip to: 3226 2433/* 1223 */ MCD::OPC_CheckField, 11, 1, 0, 204, 7, 0, // Skip to: 3226 2434/* 1230 */ MCD::OPC_Decode, 233, 14, 160, 1, // Opcode: LWC2_MMR6 2435/* 1235 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1257 2436/* 1240 */ MCD::OPC_CheckPredicate, 24, 189, 7, 0, // Skip to: 3226 2437/* 1245 */ MCD::OPC_CheckField, 11, 1, 0, 182, 7, 0, // Skip to: 3226 2438/* 1252 */ MCD::OPC_Decode, 173, 14, 160, 1, // Opcode: LDC2_MMR6 2439/* 1257 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1271 2440/* 1262 */ MCD::OPC_CheckPredicate, 24, 167, 7, 0, // Skip to: 3226 2441/* 1267 */ MCD::OPC_Decode, 152, 8, 100, // Opcode: CACHE_MMR6 2442/* 1271 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 1293 2443/* 1276 */ MCD::OPC_CheckPredicate, 24, 153, 7, 0, // Skip to: 3226 2444/* 1281 */ MCD::OPC_CheckField, 11, 1, 0, 146, 7, 0, // Skip to: 3226 2445/* 1288 */ MCD::OPC_Decode, 141, 21, 160, 1, // Opcode: SWC2_MMR6 2446/* 1293 */ MCD::OPC_FilterValue, 10, 136, 7, 0, // Skip to: 3226 2447/* 1298 */ MCD::OPC_CheckPredicate, 24, 131, 7, 0, // Skip to: 3226 2448/* 1303 */ MCD::OPC_CheckField, 11, 1, 0, 124, 7, 0, // Skip to: 3226 2449/* 1310 */ MCD::OPC_Decode, 137, 19, 160, 1, // Opcode: SDC2_MMR6 2450/* 1315 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 1329 2451/* 1320 */ MCD::OPC_CheckPredicate, 24, 109, 7, 0, // Skip to: 3226 2452/* 1325 */ MCD::OPC_Decode, 211, 5, 97, // Opcode: ADDIU_MMR6 2453/* 1329 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 1343 2454/* 1334 */ MCD::OPC_CheckPredicate, 24, 95, 7, 0, // Skip to: 3226 2455/* 1339 */ MCD::OPC_Decode, 230, 19, 98, // Opcode: SH_MMR6 2456/* 1343 */ MCD::OPC_FilterValue, 16, 78, 0, 0, // Skip to: 1426 2457/* 1348 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 2458/* 1351 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1366 2459/* 1356 */ MCD::OPC_CheckPredicate, 26, 73, 7, 0, // Skip to: 3226 2460/* 1361 */ MCD::OPC_Decode, 221, 6, 161, 1, // Opcode: BC1EQZC_MMR6 2461/* 1366 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1381 2462/* 1371 */ MCD::OPC_CheckPredicate, 26, 58, 7, 0, // Skip to: 3226 2463/* 1376 */ MCD::OPC_Decode, 226, 6, 161, 1, // Opcode: BC1NEZC_MMR6 2464/* 1381 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1396 2465/* 1386 */ MCD::OPC_CheckPredicate, 24, 43, 7, 0, // Skip to: 3226 2466/* 1391 */ MCD::OPC_Decode, 231, 6, 162, 1, // Opcode: BC2EQZC_MMR6 2467/* 1396 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1411 2468/* 1401 */ MCD::OPC_CheckPredicate, 24, 28, 7, 0, // Skip to: 3226 2469/* 1406 */ MCD::OPC_Decode, 233, 6, 162, 1, // Opcode: BC2NEZC_MMR6 2470/* 1411 */ MCD::OPC_FilterValue, 12, 18, 7, 0, // Skip to: 3226 2471/* 1416 */ MCD::OPC_CheckPredicate, 24, 13, 7, 0, // Skip to: 3226 2472/* 1421 */ MCD::OPC_Decode, 171, 21, 163, 1, // Opcode: SYNCI_MMR6 2473/* 1426 */ MCD::OPC_FilterValue, 20, 9, 0, 0, // Skip to: 1440 2474/* 1431 */ MCD::OPC_CheckPredicate, 24, 254, 6, 0, // Skip to: 3226 2475/* 1436 */ MCD::OPC_Decode, 225, 17, 108, // Opcode: ORI_MMR6 2476/* 1440 */ MCD::OPC_FilterValue, 21, 87, 5, 0, // Skip to: 2812 2477/* 1445 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 2478/* 1448 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1463 2479/* 1453 */ MCD::OPC_CheckPredicate, 26, 232, 6, 0, // Skip to: 3226 2480/* 1458 */ MCD::OPC_Decode, 137, 16, 164, 1, // Opcode: MIN_S_MMR6 2481/* 1463 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1478 2482/* 1468 */ MCD::OPC_CheckPredicate, 26, 217, 6, 0, // Skip to: 3226 2483/* 1473 */ MCD::OPC_Decode, 244, 8, 165, 1, // Opcode: CMP_AF_S_MMR6 2484/* 1478 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1493 2485/* 1483 */ MCD::OPC_CheckPredicate, 26, 202, 6, 0, // Skip to: 3226 2486/* 1488 */ MCD::OPC_Decode, 206, 15, 164, 1, // Opcode: MAX_S_MMR6 2487/* 1493 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 1508 2488/* 1498 */ MCD::OPC_CheckPredicate, 26, 187, 6, 0, // Skip to: 3226 2489/* 1503 */ MCD::OPC_Decode, 243, 8, 166, 1, // Opcode: CMP_AF_D_MMR6 2490/* 1508 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 1530 2491/* 1513 */ MCD::OPC_CheckPredicate, 24, 172, 6, 0, // Skip to: 3226 2492/* 1518 */ MCD::OPC_CheckField, 11, 5, 0, 165, 6, 0, // Skip to: 3226 2493/* 1525 */ MCD::OPC_Decode, 200, 18, 167, 1, // Opcode: RINT_S_MMR6 2494/* 1530 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 1545 2495/* 1535 */ MCD::OPC_CheckPredicate, 26, 150, 6, 0, // Skip to: 3226 2496/* 1540 */ MCD::OPC_Decode, 246, 15, 164, 1, // Opcode: MINA_S_MMR6 2497/* 1545 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 1560 2498/* 1550 */ MCD::OPC_CheckPredicate, 26, 135, 6, 0, // Skip to: 3226 2499/* 1555 */ MCD::OPC_Decode, 187, 15, 164, 1, // Opcode: MAXA_S_MMR6 2500/* 1560 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 1575 2501/* 1565 */ MCD::OPC_CheckPredicate, 26, 120, 6, 0, // Skip to: 3226 2502/* 1570 */ MCD::OPC_Decode, 151, 12, 168, 1, // Opcode: FADD_S_MMR6 2503/* 1575 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 1590 2504/* 1580 */ MCD::OPC_CheckPredicate, 24, 105, 6, 0, // Skip to: 3226 2505/* 1585 */ MCD::OPC_Decode, 158, 19, 164, 1, // Opcode: SELEQZ_S_MMR6 2506/* 1590 */ MCD::OPC_FilterValue, 59, 31, 0, 0, // Skip to: 1626 2507/* 1595 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2508/* 1598 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1612 2509/* 1603 */ MCD::OPC_CheckPredicate, 26, 82, 6, 0, // Skip to: 3226 2510/* 1608 */ MCD::OPC_Decode, 217, 15, 119, // Opcode: MFC1_MMR6 2511/* 1612 */ MCD::OPC_FilterValue, 5, 73, 6, 0, // Skip to: 3226 2512/* 1617 */ MCD::OPC_CheckPredicate, 26, 68, 6, 0, // Skip to: 3226 2513/* 1622 */ MCD::OPC_Decode, 233, 16, 125, // Opcode: MTC1_MMR6 2514/* 1626 */ MCD::OPC_FilterValue, 69, 10, 0, 0, // Skip to: 1641 2515/* 1631 */ MCD::OPC_CheckPredicate, 26, 54, 6, 0, // Skip to: 3226 2516/* 1636 */ MCD::OPC_Decode, 184, 9, 165, 1, // Opcode: CMP_UN_S_MMR6 2517/* 1641 */ MCD::OPC_FilterValue, 85, 10, 0, 0, // Skip to: 1656 2518/* 1646 */ MCD::OPC_CheckPredicate, 26, 39, 6, 0, // Skip to: 3226 2519/* 1651 */ MCD::OPC_Decode, 182, 9, 166, 1, // Opcode: CMP_UN_D_MMR6 2520/* 1656 */ MCD::OPC_FilterValue, 96, 17, 0, 0, // Skip to: 1678 2521/* 1661 */ MCD::OPC_CheckPredicate, 24, 24, 6, 0, // Skip to: 3226 2522/* 1666 */ MCD::OPC_CheckField, 11, 5, 0, 17, 6, 0, // Skip to: 3226 2523/* 1673 */ MCD::OPC_Decode, 184, 8, 167, 1, // Opcode: CLASS_S_MMR6 2524/* 1678 */ MCD::OPC_FilterValue, 112, 10, 0, 0, // Skip to: 1693 2525/* 1683 */ MCD::OPC_CheckPredicate, 26, 2, 6, 0, // Skip to: 3226 2526/* 1688 */ MCD::OPC_Decode, 168, 13, 168, 1, // Opcode: FSUB_S_MMR6 2527/* 1693 */ MCD::OPC_FilterValue, 120, 10, 0, 0, // Skip to: 1708 2528/* 1698 */ MCD::OPC_CheckPredicate, 24, 243, 5, 0, // Skip to: 3226 2529/* 1703 */ MCD::OPC_Decode, 165, 19, 164, 1, // Opcode: SELNEZ_S_MMR6 2530/* 1708 */ MCD::OPC_FilterValue, 123, 31, 0, 0, // Skip to: 1744 2531/* 1713 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2532/* 1716 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1730 2533/* 1721 */ MCD::OPC_CheckPredicate, 26, 220, 5, 0, // Skip to: 3226 2534/* 1726 */ MCD::OPC_Decode, 241, 12, 124, // Opcode: FMOV_S_MMR6 2535/* 1730 */ MCD::OPC_FilterValue, 4, 211, 5, 0, // Skip to: 3226 2536/* 1735 */ MCD::OPC_CheckPredicate, 26, 206, 5, 0, // Skip to: 3226 2537/* 1740 */ MCD::OPC_Decode, 238, 12, 122, // Opcode: FMOV_D_MMR6 2538/* 1744 */ MCD::OPC_FilterValue, 133, 1, 10, 0, 0, // Skip to: 1760 2539/* 1750 */ MCD::OPC_CheckPredicate, 26, 191, 5, 0, // Skip to: 3226 2540/* 1755 */ MCD::OPC_Decode, 250, 8, 165, 1, // Opcode: CMP_EQ_S_MMR6 2541/* 1760 */ MCD::OPC_FilterValue, 149, 1, 10, 0, 0, // Skip to: 1776 2542/* 1766 */ MCD::OPC_CheckPredicate, 26, 175, 5, 0, // Skip to: 3226 2543/* 1771 */ MCD::OPC_Decode, 246, 8, 166, 1, // Opcode: CMP_EQ_D_MMR6 2544/* 1776 */ MCD::OPC_FilterValue, 176, 1, 10, 0, 0, // Skip to: 1792 2545/* 1782 */ MCD::OPC_CheckPredicate, 26, 159, 5, 0, // Skip to: 3226 2546/* 1787 */ MCD::OPC_Decode, 252, 12, 168, 1, // Opcode: FMUL_S_MMR6 2547/* 1792 */ MCD::OPC_FilterValue, 184, 1, 10, 0, 0, // Skip to: 1808 2548/* 1798 */ MCD::OPC_CheckPredicate, 24, 143, 5, 0, // Skip to: 3226 2549/* 1803 */ MCD::OPC_Decode, 169, 19, 169, 1, // Opcode: SEL_S_MMR6 2550/* 1808 */ MCD::OPC_FilterValue, 197, 1, 10, 0, 0, // Skip to: 1824 2551/* 1814 */ MCD::OPC_CheckPredicate, 26, 127, 5, 0, // Skip to: 3226 2552/* 1819 */ MCD::OPC_Decode, 172, 9, 165, 1, // Opcode: CMP_UEQ_S_MMR6 2553/* 1824 */ MCD::OPC_FilterValue, 213, 1, 10, 0, 0, // Skip to: 1840 2554/* 1830 */ MCD::OPC_CheckPredicate, 26, 111, 5, 0, // Skip to: 3226 2555/* 1835 */ MCD::OPC_Decode, 170, 9, 166, 1, // Opcode: CMP_UEQ_D_MMR6 2556/* 1840 */ MCD::OPC_FilterValue, 240, 1, 10, 0, 0, // Skip to: 1856 2557/* 1846 */ MCD::OPC_CheckPredicate, 26, 95, 5, 0, // Skip to: 3226 2558/* 1851 */ MCD::OPC_Decode, 189, 12, 168, 1, // Opcode: FDIV_S_MMR6 2559/* 1856 */ MCD::OPC_FilterValue, 133, 2, 10, 0, 0, // Skip to: 1872 2560/* 1862 */ MCD::OPC_CheckPredicate, 26, 79, 5, 0, // Skip to: 3226 2561/* 1867 */ MCD::OPC_Decode, 136, 9, 165, 1, // Opcode: CMP_LT_S_MMR6 2562/* 1872 */ MCD::OPC_FilterValue, 149, 2, 10, 0, 0, // Skip to: 1888 2563/* 1878 */ MCD::OPC_CheckPredicate, 26, 63, 5, 0, // Skip to: 3226 2564/* 1883 */ MCD::OPC_Decode, 132, 9, 166, 1, // Opcode: CMP_LT_D_MMR6 2565/* 1888 */ MCD::OPC_FilterValue, 187, 2, 45, 0, 0, // Skip to: 1939 2566/* 1894 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2567/* 1897 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1911 2568/* 1902 */ MCD::OPC_CheckPredicate, 26, 39, 5, 0, // Skip to: 3226 2569/* 1907 */ MCD::OPC_Decode, 219, 9, 121, // Opcode: CVT_L_S_MMR6 2570/* 1911 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1925 2571/* 1916 */ MCD::OPC_CheckPredicate, 26, 25, 5, 0, // Skip to: 3226 2572/* 1921 */ MCD::OPC_Decode, 240, 9, 124, // Opcode: CVT_W_S_MMR6 2573/* 1925 */ MCD::OPC_FilterValue, 8, 16, 5, 0, // Skip to: 3226 2574/* 1930 */ MCD::OPC_CheckPredicate, 26, 11, 5, 0, // Skip to: 3226 2575/* 1935 */ MCD::OPC_Decode, 216, 9, 122, // Opcode: CVT_L_D_MMR6 2576/* 1939 */ MCD::OPC_FilterValue, 197, 2, 10, 0, 0, // Skip to: 1955 2577/* 1945 */ MCD::OPC_CheckPredicate, 26, 252, 4, 0, // Skip to: 3226 2578/* 1950 */ MCD::OPC_Decode, 180, 9, 165, 1, // Opcode: CMP_ULT_S_MMR6 2579/* 1955 */ MCD::OPC_FilterValue, 213, 2, 10, 0, 0, // Skip to: 1971 2580/* 1961 */ MCD::OPC_CheckPredicate, 26, 236, 4, 0, // Skip to: 3226 2581/* 1966 */ MCD::OPC_Decode, 178, 9, 166, 1, // Opcode: CMP_ULT_D_MMR6 2582/* 1971 */ MCD::OPC_FilterValue, 133, 3, 10, 0, 0, // Skip to: 1987 2583/* 1977 */ MCD::OPC_CheckPredicate, 26, 220, 4, 0, // Skip to: 3226 2584/* 1982 */ MCD::OPC_Decode, 130, 9, 165, 1, // Opcode: CMP_LE_S_MMR6 2585/* 1987 */ MCD::OPC_FilterValue, 149, 3, 10, 0, 0, // Skip to: 2003 2586/* 1993 */ MCD::OPC_CheckPredicate, 26, 204, 4, 0, // Skip to: 3226 2587/* 1998 */ MCD::OPC_Decode, 254, 8, 166, 1, // Opcode: CMP_LE_D_MMR6 2588/* 2003 */ MCD::OPC_FilterValue, 184, 3, 10, 0, 0, // Skip to: 2019 2589/* 2009 */ MCD::OPC_CheckPredicate, 26, 188, 4, 0, // Skip to: 3226 2590/* 2014 */ MCD::OPC_Decode, 155, 15, 170, 1, // Opcode: MADDF_S_MMR6 2591/* 2019 */ MCD::OPC_FilterValue, 197, 3, 10, 0, 0, // Skip to: 2035 2592/* 2025 */ MCD::OPC_CheckPredicate, 26, 172, 4, 0, // Skip to: 3226 2593/* 2030 */ MCD::OPC_Decode, 176, 9, 165, 1, // Opcode: CMP_ULE_S_MMR6 2594/* 2035 */ MCD::OPC_FilterValue, 213, 3, 10, 0, 0, // Skip to: 2051 2595/* 2041 */ MCD::OPC_CheckPredicate, 26, 156, 4, 0, // Skip to: 3226 2596/* 2046 */ MCD::OPC_Decode, 174, 9, 166, 1, // Opcode: CMP_ULE_D_MMR6 2597/* 2051 */ MCD::OPC_FilterValue, 248, 3, 10, 0, 0, // Skip to: 2067 2598/* 2057 */ MCD::OPC_CheckPredicate, 26, 140, 4, 0, // Skip to: 3226 2599/* 2062 */ MCD::OPC_Decode, 206, 16, 170, 1, // Opcode: MSUBF_S_MMR6 2600/* 2067 */ MCD::OPC_FilterValue, 131, 4, 10, 0, 0, // Skip to: 2083 2601/* 2073 */ MCD::OPC_CheckPredicate, 26, 124, 4, 0, // Skip to: 3226 2602/* 2078 */ MCD::OPC_Decode, 132, 16, 145, 1, // Opcode: MIN_D_MMR6 2603/* 2083 */ MCD::OPC_FilterValue, 133, 4, 10, 0, 0, // Skip to: 2099 2604/* 2089 */ MCD::OPC_CheckPredicate, 26, 108, 4, 0, // Skip to: 3226 2605/* 2094 */ MCD::OPC_Decode, 140, 9, 165, 1, // Opcode: CMP_SAF_S_MMR6 2606/* 2099 */ MCD::OPC_FilterValue, 139, 4, 10, 0, 0, // Skip to: 2115 2607/* 2105 */ MCD::OPC_CheckPredicate, 26, 92, 4, 0, // Skip to: 3226 2608/* 2110 */ MCD::OPC_Decode, 201, 15, 145, 1, // Opcode: MAX_D_MMR6 2609/* 2115 */ MCD::OPC_FilterValue, 149, 4, 10, 0, 0, // Skip to: 2131 2610/* 2121 */ MCD::OPC_CheckPredicate, 26, 76, 4, 0, // Skip to: 3226 2611/* 2126 */ MCD::OPC_Decode, 138, 9, 166, 1, // Opcode: CMP_SAF_D_MMR6 2612/* 2131 */ MCD::OPC_FilterValue, 160, 4, 17, 0, 0, // Skip to: 2154 2613/* 2137 */ MCD::OPC_CheckPredicate, 24, 60, 4, 0, // Skip to: 3226 2614/* 2142 */ MCD::OPC_CheckField, 11, 5, 0, 53, 4, 0, // Skip to: 3226 2615/* 2149 */ MCD::OPC_Decode, 198, 18, 171, 1, // Opcode: RINT_D_MMR6 2616/* 2154 */ MCD::OPC_FilterValue, 163, 4, 10, 0, 0, // Skip to: 2170 2617/* 2160 */ MCD::OPC_CheckPredicate, 26, 37, 4, 0, // Skip to: 3226 2618/* 2165 */ MCD::OPC_Decode, 244, 15, 145, 1, // Opcode: MINA_D_MMR6 2619/* 2170 */ MCD::OPC_FilterValue, 171, 4, 10, 0, 0, // Skip to: 2186 2620/* 2176 */ MCD::OPC_CheckPredicate, 26, 21, 4, 0, // Skip to: 3226 2621/* 2181 */ MCD::OPC_Decode, 185, 15, 145, 1, // Opcode: MAXA_D_MMR6 2622/* 2186 */ MCD::OPC_FilterValue, 184, 4, 10, 0, 0, // Skip to: 2202 2623/* 2192 */ MCD::OPC_CheckPredicate, 24, 5, 4, 0, // Skip to: 3226 2624/* 2197 */ MCD::OPC_Decode, 155, 19, 145, 1, // Opcode: SELEQZ_D_MMR6 2625/* 2202 */ MCD::OPC_FilterValue, 197, 4, 10, 0, 0, // Skip to: 2218 2626/* 2208 */ MCD::OPC_CheckPredicate, 26, 245, 3, 0, // Skip to: 3226 2627/* 2213 */ MCD::OPC_Decode, 168, 9, 165, 1, // Opcode: CMP_SUN_S_MMR6 2628/* 2218 */ MCD::OPC_FilterValue, 213, 4, 10, 0, 0, // Skip to: 2234 2629/* 2224 */ MCD::OPC_CheckPredicate, 26, 229, 3, 0, // Skip to: 3226 2630/* 2229 */ MCD::OPC_Decode, 166, 9, 166, 1, // Opcode: CMP_SUN_D_MMR6 2631/* 2234 */ MCD::OPC_FilterValue, 224, 4, 17, 0, 0, // Skip to: 2257 2632/* 2240 */ MCD::OPC_CheckPredicate, 24, 213, 3, 0, // Skip to: 3226 2633/* 2245 */ MCD::OPC_CheckField, 11, 5, 0, 206, 3, 0, // Skip to: 3226 2634/* 2252 */ MCD::OPC_Decode, 182, 8, 171, 1, // Opcode: CLASS_D_MMR6 2635/* 2257 */ MCD::OPC_FilterValue, 248, 4, 10, 0, 0, // Skip to: 2273 2636/* 2263 */ MCD::OPC_CheckPredicate, 24, 190, 3, 0, // Skip to: 3226 2637/* 2268 */ MCD::OPC_Decode, 162, 19, 145, 1, // Opcode: SELNEZ_D_MMR6 2638/* 2273 */ MCD::OPC_FilterValue, 133, 5, 10, 0, 0, // Skip to: 2289 2639/* 2279 */ MCD::OPC_CheckPredicate, 26, 174, 3, 0, // Skip to: 3226 2640/* 2284 */ MCD::OPC_Decode, 144, 9, 165, 1, // Opcode: CMP_SEQ_S_MMR6 2641/* 2289 */ MCD::OPC_FilterValue, 149, 5, 10, 0, 0, // Skip to: 2305 2642/* 2295 */ MCD::OPC_CheckPredicate, 26, 158, 3, 0, // Skip to: 3226 2643/* 2300 */ MCD::OPC_Decode, 142, 9, 166, 1, // Opcode: CMP_SEQ_D_MMR6 2644/* 2305 */ MCD::OPC_FilterValue, 184, 5, 10, 0, 0, // Skip to: 2321 2645/* 2311 */ MCD::OPC_CheckPredicate, 24, 142, 3, 0, // Skip to: 3226 2646/* 2316 */ MCD::OPC_Decode, 167, 19, 172, 1, // Opcode: SEL_D_MMR6 2647/* 2321 */ MCD::OPC_FilterValue, 197, 5, 10, 0, 0, // Skip to: 2337 2648/* 2327 */ MCD::OPC_CheckPredicate, 26, 126, 3, 0, // Skip to: 3226 2649/* 2332 */ MCD::OPC_Decode, 156, 9, 165, 1, // Opcode: CMP_SUEQ_S_MMR6 2650/* 2337 */ MCD::OPC_FilterValue, 213, 5, 10, 0, 0, // Skip to: 2353 2651/* 2343 */ MCD::OPC_CheckPredicate, 26, 110, 3, 0, // Skip to: 3226 2652/* 2348 */ MCD::OPC_Decode, 154, 9, 166, 1, // Opcode: CMP_SUEQ_D_MMR6 2653/* 2353 */ MCD::OPC_FilterValue, 133, 6, 10, 0, 0, // Skip to: 2369 2654/* 2359 */ MCD::OPC_CheckPredicate, 26, 94, 3, 0, // Skip to: 3226 2655/* 2364 */ MCD::OPC_Decode, 152, 9, 165, 1, // Opcode: CMP_SLT_S_MMR6 2656/* 2369 */ MCD::OPC_FilterValue, 149, 6, 10, 0, 0, // Skip to: 2385 2657/* 2375 */ MCD::OPC_CheckPredicate, 26, 78, 3, 0, // Skip to: 3226 2658/* 2380 */ MCD::OPC_Decode, 150, 9, 166, 1, // Opcode: CMP_SLT_D_MMR6 2659/* 2385 */ MCD::OPC_FilterValue, 187, 6, 228, 0, 0, // Skip to: 2619 2660/* 2391 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2661/* 2394 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2408 2662/* 2399 */ MCD::OPC_CheckPredicate, 26, 54, 3, 0, // Skip to: 3226 2663/* 2404 */ MCD::OPC_Decode, 216, 12, 121, // Opcode: FLOOR_L_S_MMR6 2664/* 2408 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2422 2665/* 2413 */ MCD::OPC_CheckPredicate, 26, 40, 3, 0, // Skip to: 3226 2666/* 2418 */ MCD::OPC_Decode, 223, 12, 124, // Opcode: FLOOR_W_S_MMR6 2667/* 2422 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2436 2668/* 2427 */ MCD::OPC_CheckPredicate, 26, 26, 3, 0, // Skip to: 3226 2669/* 2432 */ MCD::OPC_Decode, 157, 8, 121, // Opcode: CEIL_L_S_MMR6 2670/* 2436 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2450 2671/* 2441 */ MCD::OPC_CheckPredicate, 26, 12, 3, 0, // Skip to: 3226 2672/* 2446 */ MCD::OPC_Decode, 164, 8, 124, // Opcode: CEIL_W_S_MMR6 2673/* 2450 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 2464 2674/* 2455 */ MCD::OPC_CheckPredicate, 26, 254, 2, 0, // Skip to: 3226 2675/* 2460 */ MCD::OPC_Decode, 247, 21, 121, // Opcode: TRUNC_L_S_MMR6 2676/* 2464 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 2478 2677/* 2469 */ MCD::OPC_CheckPredicate, 26, 240, 2, 0, // Skip to: 3226 2678/* 2474 */ MCD::OPC_Decode, 254, 21, 124, // Opcode: TRUNC_W_S_MMR6 2679/* 2478 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 2492 2680/* 2483 */ MCD::OPC_CheckPredicate, 26, 226, 2, 0, // Skip to: 3226 2681/* 2488 */ MCD::OPC_Decode, 208, 18, 121, // Opcode: ROUND_L_S_MMR6 2682/* 2492 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2506 2683/* 2497 */ MCD::OPC_CheckPredicate, 26, 212, 2, 0, // Skip to: 3226 2684/* 2502 */ MCD::OPC_Decode, 215, 18, 124, // Opcode: ROUND_W_S_MMR6 2685/* 2506 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 2520 2686/* 2511 */ MCD::OPC_CheckPredicate, 26, 198, 2, 0, // Skip to: 3226 2687/* 2516 */ MCD::OPC_Decode, 214, 12, 122, // Opcode: FLOOR_L_D_MMR6 2688/* 2520 */ MCD::OPC_FilterValue, 9, 9, 0, 0, // Skip to: 2534 2689/* 2525 */ MCD::OPC_CheckPredicate, 26, 184, 2, 0, // Skip to: 3226 2690/* 2530 */ MCD::OPC_Decode, 219, 12, 126, // Opcode: FLOOR_W_D_MMR6 2691/* 2534 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2548 2692/* 2539 */ MCD::OPC_CheckPredicate, 26, 170, 2, 0, // Skip to: 3226 2693/* 2544 */ MCD::OPC_Decode, 155, 8, 122, // Opcode: CEIL_L_D_MMR6 2694/* 2548 */ MCD::OPC_FilterValue, 11, 9, 0, 0, // Skip to: 2562 2695/* 2553 */ MCD::OPC_CheckPredicate, 26, 156, 2, 0, // Skip to: 3226 2696/* 2558 */ MCD::OPC_Decode, 160, 8, 126, // Opcode: CEIL_W_D_MMR6 2697/* 2562 */ MCD::OPC_FilterValue, 12, 9, 0, 0, // Skip to: 2576 2698/* 2567 */ MCD::OPC_CheckPredicate, 26, 142, 2, 0, // Skip to: 3226 2699/* 2572 */ MCD::OPC_Decode, 245, 21, 122, // Opcode: TRUNC_L_D_MMR6 2700/* 2576 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2591 2701/* 2581 */ MCD::OPC_CheckPredicate, 26, 128, 2, 0, // Skip to: 3226 2702/* 2586 */ MCD::OPC_Decode, 250, 21, 146, 1, // Opcode: TRUNC_W_D_MMR6 2703/* 2591 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 2605 2704/* 2596 */ MCD::OPC_CheckPredicate, 26, 113, 2, 0, // Skip to: 3226 2705/* 2601 */ MCD::OPC_Decode, 206, 18, 122, // Opcode: ROUND_L_D_MMR6 2706/* 2605 */ MCD::OPC_FilterValue, 15, 104, 2, 0, // Skip to: 3226 2707/* 2610 */ MCD::OPC_CheckPredicate, 26, 99, 2, 0, // Skip to: 3226 2708/* 2615 */ MCD::OPC_Decode, 211, 18, 122, // Opcode: ROUND_W_D_MMR6 2709/* 2619 */ MCD::OPC_FilterValue, 197, 6, 10, 0, 0, // Skip to: 2635 2710/* 2625 */ MCD::OPC_CheckPredicate, 26, 84, 2, 0, // Skip to: 3226 2711/* 2630 */ MCD::OPC_Decode, 164, 9, 165, 1, // Opcode: CMP_SULT_S_MMR6 2712/* 2635 */ MCD::OPC_FilterValue, 213, 6, 10, 0, 0, // Skip to: 2651 2713/* 2641 */ MCD::OPC_CheckPredicate, 26, 68, 2, 0, // Skip to: 3226 2714/* 2646 */ MCD::OPC_Decode, 162, 9, 166, 1, // Opcode: CMP_SULT_D_MMR6 2715/* 2651 */ MCD::OPC_FilterValue, 251, 6, 59, 0, 0, // Skip to: 2716 2716/* 2657 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 2717/* 2660 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2674 2718/* 2665 */ MCD::OPC_CheckPredicate, 26, 44, 2, 0, // Skip to: 3226 2719/* 2670 */ MCD::OPC_Decode, 132, 13, 124, // Opcode: FNEG_S_MMR6 2720/* 2674 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 2688 2721/* 2679 */ MCD::OPC_CheckPredicate, 26, 30, 2, 0, // Skip to: 3226 2722/* 2684 */ MCD::OPC_Decode, 233, 9, 124, // Opcode: CVT_S_W_MMR6 2723/* 2688 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 2702 2724/* 2693 */ MCD::OPC_CheckPredicate, 23, 16, 2, 0, // Skip to: 3226 2725/* 2698 */ MCD::OPC_Decode, 213, 9, 122, // Opcode: CVT_D_L_MMR6 2726/* 2702 */ MCD::OPC_FilterValue, 11, 7, 2, 0, // Skip to: 3226 2727/* 2707 */ MCD::OPC_CheckPredicate, 23, 2, 2, 0, // Skip to: 3226 2728/* 2712 */ MCD::OPC_Decode, 228, 9, 121, // Opcode: CVT_S_L_MMR6 2729/* 2716 */ MCD::OPC_FilterValue, 133, 7, 10, 0, 0, // Skip to: 2732 2730/* 2722 */ MCD::OPC_CheckPredicate, 26, 243, 1, 0, // Skip to: 3226 2731/* 2727 */ MCD::OPC_Decode, 148, 9, 165, 1, // Opcode: CMP_SLE_S_MMR6 2732/* 2732 */ MCD::OPC_FilterValue, 149, 7, 10, 0, 0, // Skip to: 2748 2733/* 2738 */ MCD::OPC_CheckPredicate, 26, 227, 1, 0, // Skip to: 3226 2734/* 2743 */ MCD::OPC_Decode, 146, 9, 166, 1, // Opcode: CMP_SLE_D_MMR6 2735/* 2748 */ MCD::OPC_FilterValue, 184, 7, 10, 0, 0, // Skip to: 2764 2736/* 2754 */ MCD::OPC_CheckPredicate, 26, 211, 1, 0, // Skip to: 3226 2737/* 2759 */ MCD::OPC_Decode, 153, 15, 172, 1, // Opcode: MADDF_D_MMR6 2738/* 2764 */ MCD::OPC_FilterValue, 197, 7, 10, 0, 0, // Skip to: 2780 2739/* 2770 */ MCD::OPC_CheckPredicate, 26, 195, 1, 0, // Skip to: 3226 2740/* 2775 */ MCD::OPC_Decode, 160, 9, 165, 1, // Opcode: CMP_SULE_S_MMR6 2741/* 2780 */ MCD::OPC_FilterValue, 213, 7, 10, 0, 0, // Skip to: 2796 2742/* 2786 */ MCD::OPC_CheckPredicate, 26, 179, 1, 0, // Skip to: 3226 2743/* 2791 */ MCD::OPC_Decode, 158, 9, 166, 1, // Opcode: CMP_SULE_D_MMR6 2744/* 2796 */ MCD::OPC_FilterValue, 248, 7, 168, 1, 0, // Skip to: 3226 2745/* 2802 */ MCD::OPC_CheckPredicate, 26, 163, 1, 0, // Skip to: 3226 2746/* 2807 */ MCD::OPC_Decode, 204, 16, 172, 1, // Opcode: MSUBF_D_MMR6 2747/* 2812 */ MCD::OPC_FilterValue, 24, 61, 0, 0, // Skip to: 2878 2748/* 2817 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 2749/* 2820 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2834 2750/* 2825 */ MCD::OPC_CheckPredicate, 24, 140, 1, 0, // Skip to: 3226 2751/* 2830 */ MCD::OPC_Decode, 168, 18, 100, // Opcode: PREF_MMR6 2752/* 2834 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 2856 2753/* 2839 */ MCD::OPC_CheckPredicate, 24, 126, 1, 0, // Skip to: 3226 2754/* 2844 */ MCD::OPC_CheckField, 9, 3, 0, 119, 1, 0, // Skip to: 3226 2755/* 2851 */ MCD::OPC_Decode, 215, 14, 134, 1, // Opcode: LL_MMR6 2756/* 2856 */ MCD::OPC_FilterValue, 11, 109, 1, 0, // Skip to: 3226 2757/* 2861 */ MCD::OPC_CheckPredicate, 24, 104, 1, 0, // Skip to: 3226 2758/* 2866 */ MCD::OPC_CheckField, 9, 3, 0, 97, 1, 0, // Skip to: 3226 2759/* 2873 */ MCD::OPC_Decode, 250, 18, 134, 1, // Opcode: SC_MMR6 2760/* 2878 */ MCD::OPC_FilterValue, 28, 9, 0, 0, // Skip to: 2892 2761/* 2883 */ MCD::OPC_CheckPredicate, 24, 82, 1, 0, // Skip to: 3226 2762/* 2888 */ MCD::OPC_Decode, 151, 22, 108, // Opcode: XORI_MMR6 2763/* 2892 */ MCD::OPC_FilterValue, 29, 27, 0, 0, // Skip to: 2924 2764/* 2897 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2914 2765/* 2902 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2914 2766/* 2909 */ MCD::OPC_Decode, 251, 6, 173, 1, // Opcode: BEQZALC_MMR6 2767/* 2914 */ MCD::OPC_CheckPredicate, 24, 51, 1, 0, // Skip to: 3226 2768/* 2919 */ MCD::OPC_Decode, 247, 6, 173, 1, // Opcode: BEQC_MMR6 2769/* 2924 */ MCD::OPC_FilterValue, 30, 71, 0, 0, // Skip to: 3000 2770/* 2929 */ MCD::OPC_ExtractField, 19, 2, // Inst{20-19} ... 2771/* 2932 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2947 2772/* 2937 */ MCD::OPC_CheckPredicate, 24, 28, 1, 0, // Skip to: 3226 2773/* 2942 */ MCD::OPC_Decode, 206, 5, 174, 1, // Opcode: ADDIUPC_MMR6 2774/* 2947 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2962 2775/* 2952 */ MCD::OPC_CheckPredicate, 24, 13, 1, 0, // Skip to: 3226 2776/* 2957 */ MCD::OPC_Decode, 250, 14, 174, 1, // Opcode: LWPC_MMR6 2777/* 2962 */ MCD::OPC_FilterValue, 3, 3, 1, 0, // Skip to: 3226 2778/* 2967 */ MCD::OPC_ExtractField, 16, 3, // Inst{18-16} ... 2779/* 2970 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 2985 2780/* 2975 */ MCD::OPC_CheckPredicate, 24, 246, 0, 0, // Skip to: 3226 2781/* 2980 */ MCD::OPC_Decode, 180, 6, 175, 1, // Opcode: AUIPC_MMR6 2782/* 2985 */ MCD::OPC_FilterValue, 7, 236, 0, 0, // Skip to: 3226 2783/* 2990 */ MCD::OPC_CheckPredicate, 24, 231, 0, 0, // Skip to: 3226 2784/* 2995 */ MCD::OPC_Decode, 153, 6, 175, 1, // Opcode: ALUIPC_MMR6 2785/* 3000 */ MCD::OPC_FilterValue, 31, 27, 0, 0, // Skip to: 3032 2786/* 3005 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 3022 2787/* 3010 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 3022 2788/* 3017 */ MCD::OPC_Decode, 226, 7, 176, 1, // Opcode: BNEZALC_MMR6 2789/* 3022 */ MCD::OPC_CheckPredicate, 24, 199, 0, 0, // Skip to: 3226 2790/* 3027 */ MCD::OPC_Decode, 214, 7, 176, 1, // Opcode: BNEC_MMR6 2791/* 3032 */ MCD::OPC_FilterValue, 32, 26, 0, 0, // Skip to: 3063 2792/* 3037 */ MCD::OPC_CheckPredicate, 24, 11, 0, 0, // Skip to: 3053 2793/* 3042 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3053 2794/* 3049 */ MCD::OPC_Decode, 128, 14, 103, // Opcode: JIALC_MMR6 2795/* 3053 */ MCD::OPC_CheckPredicate, 24, 168, 0, 0, // Skip to: 3226 2796/* 3058 */ MCD::OPC_Decode, 128, 7, 177, 1, // Opcode: BEQZC_MMR6 2797/* 3063 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 3078 2798/* 3068 */ MCD::OPC_CheckPredicate, 24, 153, 0, 0, // Skip to: 3226 2799/* 3073 */ MCD::OPC_Decode, 242, 6, 178, 1, // Opcode: BC_MMR6 2800/* 3078 */ MCD::OPC_FilterValue, 40, 26, 0, 0, // Skip to: 3109 2801/* 3083 */ MCD::OPC_CheckPredicate, 24, 11, 0, 0, // Skip to: 3099 2802/* 3088 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 3099 2803/* 3095 */ MCD::OPC_Decode, 131, 14, 103, // Opcode: JIC_MMR6 2804/* 3099 */ MCD::OPC_CheckPredicate, 24, 122, 0, 0, // Skip to: 3226 2805/* 3104 */ MCD::OPC_Decode, 231, 7, 177, 1, // Opcode: BNEZC_MMR6 2806/* 3109 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 3124 2807/* 3114 */ MCD::OPC_CheckPredicate, 24, 107, 0, 0, // Skip to: 3226 2808/* 3119 */ MCD::OPC_Decode, 211, 6, 178, 1, // Opcode: BALC_MMR6 2809/* 3124 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 3139 2810/* 3129 */ MCD::OPC_CheckPredicate, 24, 92, 0, 0, // Skip to: 3226 2811/* 3134 */ MCD::OPC_Decode, 135, 7, 179, 1, // Opcode: BGEUC_MMR6 2812/* 3139 */ MCD::OPC_FilterValue, 52, 9, 0, 0, // Skip to: 3153 2813/* 3144 */ MCD::OPC_CheckPredicate, 24, 77, 0, 0, // Skip to: 3226 2814/* 3149 */ MCD::OPC_Decode, 161, 6, 108, // Opcode: ANDI_MMR6 2815/* 3153 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 3168 2816/* 3158 */ MCD::OPC_CheckPredicate, 24, 63, 0, 0, // Skip to: 3226 2817/* 3163 */ MCD::OPC_Decode, 189, 7, 180, 1, // Opcode: BLTC_MMR6 2818/* 3168 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 3183 2819/* 3173 */ MCD::OPC_CheckPredicate, 24, 48, 0, 0, // Skip to: 3226 2820/* 3178 */ MCD::OPC_Decode, 192, 7, 181, 1, // Opcode: BLTUC_MMR6 2821/* 3183 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 3198 2822/* 3188 */ MCD::OPC_CheckPredicate, 24, 33, 0, 0, // Skip to: 3226 2823/* 3193 */ MCD::OPC_Decode, 132, 7, 182, 1, // Opcode: BGEC_MMR6 2824/* 3198 */ MCD::OPC_FilterValue, 62, 9, 0, 0, // Skip to: 3212 2825/* 3203 */ MCD::OPC_CheckPredicate, 24, 18, 0, 0, // Skip to: 3226 2826/* 3208 */ MCD::OPC_Decode, 167, 21, 98, // Opcode: SW_MMR6 2827/* 3212 */ MCD::OPC_FilterValue, 63, 9, 0, 0, // Skip to: 3226 2828/* 3217 */ MCD::OPC_CheckPredicate, 24, 4, 0, 0, // Skip to: 3226 2829/* 3222 */ MCD::OPC_Decode, 138, 15, 98, // Opcode: LW_MMR6 2830/* 3226 */ MCD::OPC_Fail, 2831 0 2832}; 2833 2834static const uint8_t DecoderTableMicroMipsR6_Ambiguous32[] = { 2835/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 2836/* 3 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 18 2837/* 8 */ MCD::OPC_CheckPredicate, 24, 84, 0, 0, // Skip to: 97 2838/* 13 */ MCD::OPC_Decode, 241, 7, 173, 1, // Opcode: BOVC_MMR6 2839/* 18 */ MCD::OPC_FilterValue, 31, 10, 0, 0, // Skip to: 33 2840/* 23 */ MCD::OPC_CheckPredicate, 24, 69, 0, 0, // Skip to: 97 2841/* 28 */ MCD::OPC_Decode, 234, 7, 176, 1, // Opcode: BNVC_MMR6 2842/* 33 */ MCD::OPC_FilterValue, 48, 27, 0, 0, // Skip to: 65 2843/* 38 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 55 2844/* 43 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 55 2845/* 50 */ MCD::OPC_Decode, 181, 7, 179, 1, // Opcode: BLEZALC_MMR6 2846/* 55 */ MCD::OPC_CheckPredicate, 24, 37, 0, 0, // Skip to: 97 2847/* 60 */ MCD::OPC_Decode, 140, 7, 179, 1, // Opcode: BGEZALC_MMR6 2848/* 65 */ MCD::OPC_FilterValue, 56, 27, 0, 0, // Skip to: 97 2849/* 70 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 87 2850/* 75 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 87 2851/* 82 */ MCD::OPC_Decode, 152, 7, 181, 1, // Opcode: BGTZALC_MMR6 2852/* 87 */ MCD::OPC_CheckPredicate, 24, 5, 0, 0, // Skip to: 97 2853/* 92 */ MCD::OPC_Decode, 197, 7, 181, 1, // Opcode: BLTZALC_MMR6 2854/* 97 */ MCD::OPC_Fail, 2855 0 2856}; 2857 2858static const uint8_t DecoderTableMips32[] = { 2859/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 2860/* 3 */ MCD::OPC_FilterValue, 0, 101, 4, 0, // Skip to: 1133 2861/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 2862/* 11 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 79 2863/* 16 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 2864/* 19 */ MCD::OPC_FilterValue, 0, 178, 66, 0, // Skip to: 17098 2865/* 24 */ MCD::OPC_ExtractField, 6, 15, // Inst{20-6} ... 2866/* 27 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 41 2867/* 32 */ MCD::OPC_CheckPredicate, 27, 32, 0, 0, // Skip to: 69 2868/* 37 */ MCD::OPC_Decode, 194, 20, 10, // Opcode: SSNOP 2869/* 41 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 55 2870/* 46 */ MCD::OPC_CheckPredicate, 27, 18, 0, 0, // Skip to: 69 2871/* 51 */ MCD::OPC_Decode, 221, 11, 10, // Opcode: EHB 2872/* 55 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 69 2873/* 60 */ MCD::OPC_CheckPredicate, 28, 4, 0, 0, // Skip to: 69 2874/* 65 */ MCD::OPC_Decode, 235, 17, 10, // Opcode: PAUSE 2875/* 69 */ MCD::OPC_CheckPredicate, 27, 128, 66, 0, // Skip to: 17098 2876/* 74 */ MCD::OPC_Decode, 241, 19, 183, 1, // Opcode: SLL 2877/* 79 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 131 2878/* 84 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 2879/* 87 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 109 2880/* 92 */ MCD::OPC_CheckPredicate, 29, 105, 66, 0, // Skip to: 17098 2881/* 97 */ MCD::OPC_CheckField, 6, 5, 0, 98, 66, 0, // Skip to: 17098 2882/* 104 */ MCD::OPC_Decode, 165, 16, 184, 1, // Opcode: MOVF_I 2883/* 109 */ MCD::OPC_FilterValue, 1, 88, 66, 0, // Skip to: 17098 2884/* 114 */ MCD::OPC_CheckPredicate, 29, 83, 66, 0, // Skip to: 17098 2885/* 119 */ MCD::OPC_CheckField, 6, 5, 0, 76, 66, 0, // Skip to: 17098 2886/* 126 */ MCD::OPC_Decode, 185, 16, 184, 1, // Opcode: MOVT_I 2887/* 131 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 169 2888/* 136 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 2889/* 139 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 154 2890/* 144 */ MCD::OPC_CheckPredicate, 27, 53, 66, 0, // Skip to: 17098 2891/* 149 */ MCD::OPC_Decode, 172, 20, 183, 1, // Opcode: SRL 2892/* 154 */ MCD::OPC_FilterValue, 1, 43, 66, 0, // Skip to: 17098 2893/* 159 */ MCD::OPC_CheckPredicate, 28, 38, 66, 0, // Skip to: 17098 2894/* 164 */ MCD::OPC_Decode, 201, 18, 183, 1, // Opcode: ROTR 2895/* 169 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 191 2896/* 174 */ MCD::OPC_CheckPredicate, 27, 23, 66, 0, // Skip to: 17098 2897/* 179 */ MCD::OPC_CheckField, 21, 5, 0, 16, 66, 0, // Skip to: 17098 2898/* 186 */ MCD::OPC_Decode, 152, 20, 183, 1, // Opcode: SRA 2899/* 191 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 212 2900/* 196 */ MCD::OPC_CheckPredicate, 27, 1, 66, 0, // Skip to: 17098 2901/* 201 */ MCD::OPC_CheckField, 6, 5, 0, 250, 65, 0, // Skip to: 17098 2902/* 208 */ MCD::OPC_Decode, 250, 19, 55, // Opcode: SLLV 2903/* 212 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 234 2904/* 217 */ MCD::OPC_CheckPredicate, 30, 236, 65, 0, // Skip to: 17098 2905/* 222 */ MCD::OPC_CheckField, 8, 3, 0, 229, 65, 0, // Skip to: 17098 2906/* 229 */ MCD::OPC_Decode, 217, 14, 185, 1, // Opcode: LSA 2907/* 234 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 270 2908/* 239 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2909/* 242 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 256 2910/* 247 */ MCD::OPC_CheckPredicate, 27, 206, 65, 0, // Skip to: 17098 2911/* 252 */ MCD::OPC_Decode, 187, 20, 55, // Opcode: SRLV 2912/* 256 */ MCD::OPC_FilterValue, 1, 197, 65, 0, // Skip to: 17098 2913/* 261 */ MCD::OPC_CheckPredicate, 28, 192, 65, 0, // Skip to: 17098 2914/* 266 */ MCD::OPC_Decode, 202, 18, 55, // Opcode: ROTRV 2915/* 270 */ MCD::OPC_FilterValue, 7, 16, 0, 0, // Skip to: 291 2916/* 275 */ MCD::OPC_CheckPredicate, 27, 178, 65, 0, // Skip to: 17098 2917/* 280 */ MCD::OPC_CheckField, 6, 5, 0, 171, 65, 0, // Skip to: 17098 2918/* 287 */ MCD::OPC_Decode, 165, 20, 55, // Opcode: SRAV 2919/* 291 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 329 2920/* 296 */ MCD::OPC_ExtractField, 6, 15, // Inst{20-6} ... 2921/* 299 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 314 2922/* 304 */ MCD::OPC_CheckPredicate, 31, 149, 65, 0, // Skip to: 17098 2923/* 309 */ MCD::OPC_Decode, 132, 14, 186, 1, // Opcode: JR 2924/* 314 */ MCD::OPC_FilterValue, 16, 139, 65, 0, // Skip to: 17098 2925/* 319 */ MCD::OPC_CheckPredicate, 32, 134, 65, 0, // Skip to: 17098 2926/* 324 */ MCD::OPC_Decode, 139, 14, 186, 1, // Opcode: JR_HB 2927/* 329 */ MCD::OPC_FilterValue, 9, 45, 0, 0, // Skip to: 379 2928/* 334 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2929/* 337 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 358 2930/* 342 */ MCD::OPC_CheckPredicate, 33, 111, 65, 0, // Skip to: 17098 2931/* 347 */ MCD::OPC_CheckField, 16, 5, 0, 104, 65, 0, // Skip to: 17098 2932/* 354 */ MCD::OPC_Decode, 239, 13, 25, // Opcode: JALR 2933/* 358 */ MCD::OPC_FilterValue, 16, 95, 65, 0, // Skip to: 17098 2934/* 363 */ MCD::OPC_CheckPredicate, 34, 90, 65, 0, // Skip to: 17098 2935/* 368 */ MCD::OPC_CheckField, 16, 5, 0, 83, 65, 0, // Skip to: 17098 2936/* 375 */ MCD::OPC_Decode, 247, 13, 25, // Opcode: JALR_HB 2937/* 379 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 401 2938/* 384 */ MCD::OPC_CheckPredicate, 35, 69, 65, 0, // Skip to: 17098 2939/* 389 */ MCD::OPC_CheckField, 6, 5, 0, 62, 65, 0, // Skip to: 17098 2940/* 396 */ MCD::OPC_Decode, 197, 16, 187, 1, // Opcode: MOVZ_I_I 2941/* 401 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 423 2942/* 406 */ MCD::OPC_CheckPredicate, 35, 47, 65, 0, // Skip to: 17098 2943/* 411 */ MCD::OPC_CheckField, 6, 5, 0, 40, 65, 0, // Skip to: 17098 2944/* 418 */ MCD::OPC_Decode, 177, 16, 187, 1, // Opcode: MOVN_I_I 2945/* 423 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 438 2946/* 428 */ MCD::OPC_CheckPredicate, 27, 25, 65, 0, // Skip to: 17098 2947/* 433 */ MCD::OPC_Decode, 174, 21, 188, 1, // Opcode: SYSCALL 2948/* 438 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 452 2949/* 443 */ MCD::OPC_CheckPredicate, 27, 10, 65, 0, // Skip to: 17098 2950/* 448 */ MCD::OPC_Decode, 245, 7, 56, // Opcode: BREAK 2951/* 452 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 467 2952/* 457 */ MCD::OPC_CheckPredicate, 36, 252, 64, 0, // Skip to: 17098 2953/* 462 */ MCD::OPC_Decode, 168, 21, 189, 1, // Opcode: SYNC 2954/* 467 */ MCD::OPC_FilterValue, 16, 51, 0, 0, // Skip to: 523 2955/* 472 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2956/* 475 */ MCD::OPC_FilterValue, 0, 234, 64, 0, // Skip to: 17098 2957/* 480 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 2958/* 483 */ MCD::OPC_FilterValue, 0, 226, 64, 0, // Skip to: 17098 2959/* 488 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... 2960/* 491 */ MCD::OPC_FilterValue, 0, 218, 64, 0, // Skip to: 17098 2961/* 496 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 513 2962/* 501 */ MCD::OPC_CheckField, 21, 2, 0, 5, 0, 0, // Skip to: 513 2963/* 508 */ MCD::OPC_Decode, 230, 15, 190, 1, // Opcode: MFHI 2964/* 513 */ MCD::OPC_CheckPredicate, 37, 196, 64, 0, // Skip to: 17098 2965/* 518 */ MCD::OPC_Decode, 233, 15, 191, 1, // Opcode: MFHI_DSP 2966/* 523 */ MCD::OPC_FilterValue, 17, 43, 0, 0, // Skip to: 571 2967/* 528 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2968/* 531 */ MCD::OPC_FilterValue, 0, 178, 64, 0, // Skip to: 17098 2969/* 536 */ MCD::OPC_ExtractField, 13, 8, // Inst{20-13} ... 2970/* 539 */ MCD::OPC_FilterValue, 0, 170, 64, 0, // Skip to: 17098 2971/* 544 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 561 2972/* 549 */ MCD::OPC_CheckField, 11, 2, 0, 5, 0, 0, // Skip to: 561 2973/* 556 */ MCD::OPC_Decode, 246, 16, 186, 1, // Opcode: MTHI 2974/* 561 */ MCD::OPC_CheckPredicate, 37, 148, 64, 0, // Skip to: 17098 2975/* 566 */ MCD::OPC_Decode, 248, 16, 192, 1, // Opcode: MTHI_DSP 2976/* 571 */ MCD::OPC_FilterValue, 18, 51, 0, 0, // Skip to: 627 2977/* 576 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2978/* 579 */ MCD::OPC_FilterValue, 0, 130, 64, 0, // Skip to: 17098 2979/* 584 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 2980/* 587 */ MCD::OPC_FilterValue, 0, 122, 64, 0, // Skip to: 17098 2981/* 592 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... 2982/* 595 */ MCD::OPC_FilterValue, 0, 114, 64, 0, // Skip to: 17098 2983/* 600 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 617 2984/* 605 */ MCD::OPC_CheckField, 21, 2, 0, 5, 0, 0, // Skip to: 617 2985/* 612 */ MCD::OPC_Decode, 236, 15, 190, 1, // Opcode: MFLO 2986/* 617 */ MCD::OPC_CheckPredicate, 37, 92, 64, 0, // Skip to: 17098 2987/* 622 */ MCD::OPC_Decode, 239, 15, 191, 1, // Opcode: MFLO_DSP 2988/* 627 */ MCD::OPC_FilterValue, 19, 43, 0, 0, // Skip to: 675 2989/* 632 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 2990/* 635 */ MCD::OPC_FilterValue, 0, 74, 64, 0, // Skip to: 17098 2991/* 640 */ MCD::OPC_ExtractField, 13, 8, // Inst{20-13} ... 2992/* 643 */ MCD::OPC_FilterValue, 0, 66, 64, 0, // Skip to: 17098 2993/* 648 */ MCD::OPC_CheckPredicate, 31, 12, 0, 0, // Skip to: 665 2994/* 653 */ MCD::OPC_CheckField, 11, 2, 0, 5, 0, 0, // Skip to: 665 2995/* 660 */ MCD::OPC_Decode, 253, 16, 186, 1, // Opcode: MTLO 2996/* 665 */ MCD::OPC_CheckPredicate, 37, 44, 64, 0, // Skip to: 17098 2997/* 670 */ MCD::OPC_Decode, 255, 16, 193, 1, // Opcode: MTLO_DSP 2998/* 675 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 697 2999/* 680 */ MCD::OPC_CheckPredicate, 38, 29, 64, 0, // Skip to: 17098 3000/* 685 */ MCD::OPC_CheckField, 8, 3, 0, 22, 64, 0, // Skip to: 17098 3001/* 692 */ MCD::OPC_Decode, 252, 10, 194, 1, // Opcode: DLSA 3002/* 697 */ MCD::OPC_FilterValue, 24, 42, 0, 0, // Skip to: 744 3003/* 702 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3004/* 705 */ MCD::OPC_FilterValue, 0, 4, 64, 0, // Skip to: 17098 3005/* 710 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3006/* 713 */ MCD::OPC_FilterValue, 0, 252, 63, 0, // Skip to: 17098 3007/* 718 */ MCD::OPC_CheckPredicate, 31, 11, 0, 0, // Skip to: 734 3008/* 723 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 734 3009/* 730 */ MCD::OPC_Decode, 165, 17, 80, // Opcode: MULT 3010/* 734 */ MCD::OPC_CheckPredicate, 37, 231, 63, 0, // Skip to: 17098 3011/* 739 */ MCD::OPC_Decode, 168, 17, 195, 1, // Opcode: MULT_DSP 3012/* 744 */ MCD::OPC_FilterValue, 25, 42, 0, 0, // Skip to: 791 3013/* 749 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3014/* 752 */ MCD::OPC_FilterValue, 0, 213, 63, 0, // Skip to: 17098 3015/* 757 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3016/* 760 */ MCD::OPC_FilterValue, 0, 205, 63, 0, // Skip to: 17098 3017/* 765 */ MCD::OPC_CheckPredicate, 31, 11, 0, 0, // Skip to: 781 3018/* 770 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 781 3019/* 777 */ MCD::OPC_Decode, 171, 17, 80, // Opcode: MULTu 3020/* 781 */ MCD::OPC_CheckPredicate, 37, 184, 63, 0, // Skip to: 17098 3021/* 786 */ MCD::OPC_Decode, 166, 17, 195, 1, // Opcode: MULTU_DSP 3022/* 791 */ MCD::OPC_FilterValue, 26, 16, 0, 0, // Skip to: 812 3023/* 796 */ MCD::OPC_CheckPredicate, 31, 169, 63, 0, // Skip to: 17098 3024/* 801 */ MCD::OPC_CheckField, 6, 10, 0, 162, 63, 0, // Skip to: 17098 3025/* 808 */ MCD::OPC_Decode, 140, 19, 80, // Opcode: SDIV 3026/* 812 */ MCD::OPC_FilterValue, 27, 16, 0, 0, // Skip to: 833 3027/* 817 */ MCD::OPC_CheckPredicate, 31, 148, 63, 0, // Skip to: 17098 3028/* 822 */ MCD::OPC_CheckField, 6, 10, 0, 141, 63, 0, // Skip to: 17098 3029/* 829 */ MCD::OPC_Decode, 128, 22, 80, // Opcode: UDIV 3030/* 833 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 854 3031/* 838 */ MCD::OPC_CheckPredicate, 27, 127, 63, 0, // Skip to: 17098 3032/* 843 */ MCD::OPC_CheckField, 6, 5, 0, 120, 63, 0, // Skip to: 17098 3033/* 850 */ MCD::OPC_Decode, 203, 5, 61, // Opcode: ADD 3034/* 854 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 875 3035/* 859 */ MCD::OPC_CheckPredicate, 27, 106, 63, 0, // Skip to: 17098 3036/* 864 */ MCD::OPC_CheckField, 6, 5, 0, 99, 63, 0, // Skip to: 17098 3037/* 871 */ MCD::OPC_Decode, 148, 6, 61, // Opcode: ADDu 3038/* 875 */ MCD::OPC_FilterValue, 34, 16, 0, 0, // Skip to: 896 3039/* 880 */ MCD::OPC_CheckPredicate, 27, 85, 63, 0, // Skip to: 17098 3040/* 885 */ MCD::OPC_CheckField, 6, 5, 0, 78, 63, 0, // Skip to: 17098 3041/* 892 */ MCD::OPC_Decode, 201, 20, 61, // Opcode: SUB 3042/* 896 */ MCD::OPC_FilterValue, 35, 16, 0, 0, // Skip to: 917 3043/* 901 */ MCD::OPC_CheckPredicate, 27, 64, 63, 0, // Skip to: 17098 3044/* 906 */ MCD::OPC_CheckField, 6, 5, 0, 57, 63, 0, // Skip to: 17098 3045/* 913 */ MCD::OPC_Decode, 129, 21, 61, // Opcode: SUBu 3046/* 917 */ MCD::OPC_FilterValue, 36, 16, 0, 0, // Skip to: 938 3047/* 922 */ MCD::OPC_CheckPredicate, 27, 43, 63, 0, // Skip to: 17098 3048/* 927 */ MCD::OPC_CheckField, 6, 5, 0, 36, 63, 0, // Skip to: 17098 3049/* 934 */ MCD::OPC_Decode, 154, 6, 61, // Opcode: AND 3050/* 938 */ MCD::OPC_FilterValue, 37, 16, 0, 0, // Skip to: 959 3051/* 943 */ MCD::OPC_CheckPredicate, 27, 22, 63, 0, // Skip to: 17098 3052/* 948 */ MCD::OPC_CheckField, 6, 5, 0, 15, 63, 0, // Skip to: 17098 3053/* 955 */ MCD::OPC_Decode, 220, 17, 61, // Opcode: OR 3054/* 959 */ MCD::OPC_FilterValue, 38, 16, 0, 0, // Skip to: 980 3055/* 964 */ MCD::OPC_CheckPredicate, 27, 1, 63, 0, // Skip to: 17098 3056/* 969 */ MCD::OPC_CheckField, 6, 5, 0, 250, 62, 0, // Skip to: 17098 3057/* 976 */ MCD::OPC_Decode, 146, 22, 61, // Opcode: XOR 3058/* 980 */ MCD::OPC_FilterValue, 39, 16, 0, 0, // Skip to: 1001 3059/* 985 */ MCD::OPC_CheckPredicate, 27, 236, 62, 0, // Skip to: 17098 3060/* 990 */ MCD::OPC_CheckField, 6, 5, 0, 229, 62, 0, // Skip to: 17098 3061/* 997 */ MCD::OPC_Decode, 210, 17, 61, // Opcode: NOR 3062/* 1001 */ MCD::OPC_FilterValue, 42, 16, 0, 0, // Skip to: 1022 3063/* 1006 */ MCD::OPC_CheckPredicate, 27, 215, 62, 0, // Skip to: 17098 3064/* 1011 */ MCD::OPC_CheckField, 6, 5, 0, 208, 62, 0, // Skip to: 17098 3065/* 1018 */ MCD::OPC_Decode, 130, 20, 61, // Opcode: SLT 3066/* 1022 */ MCD::OPC_FilterValue, 43, 16, 0, 0, // Skip to: 1043 3067/* 1027 */ MCD::OPC_CheckPredicate, 27, 194, 62, 0, // Skip to: 17098 3068/* 1032 */ MCD::OPC_CheckField, 6, 5, 0, 187, 62, 0, // Skip to: 17098 3069/* 1039 */ MCD::OPC_Decode, 139, 20, 61, // Opcode: SLTu 3070/* 1043 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 1058 3071/* 1048 */ MCD::OPC_CheckPredicate, 36, 173, 62, 0, // Skip to: 17098 3072/* 1053 */ MCD::OPC_Decode, 201, 21, 196, 1, // Opcode: TGE 3073/* 1058 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 1073 3074/* 1063 */ MCD::OPC_CheckPredicate, 36, 158, 62, 0, // Skip to: 17098 3075/* 1068 */ MCD::OPC_Decode, 206, 21, 196, 1, // Opcode: TGEU 3076/* 1073 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 1088 3077/* 1078 */ MCD::OPC_CheckPredicate, 36, 143, 62, 0, // Skip to: 17098 3078/* 1083 */ MCD::OPC_Decode, 233, 21, 196, 1, // Opcode: TLT 3079/* 1088 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 1103 3080/* 1093 */ MCD::OPC_CheckPredicate, 36, 128, 62, 0, // Skip to: 17098 3081/* 1098 */ MCD::OPC_Decode, 237, 21, 196, 1, // Opcode: TLTU 3082/* 1103 */ MCD::OPC_FilterValue, 52, 10, 0, 0, // Skip to: 1118 3083/* 1108 */ MCD::OPC_CheckPredicate, 36, 113, 62, 0, // Skip to: 17098 3084/* 1113 */ MCD::OPC_Decode, 197, 21, 196, 1, // Opcode: TEQ 3085/* 1118 */ MCD::OPC_FilterValue, 54, 103, 62, 0, // Skip to: 17098 3086/* 1123 */ MCD::OPC_CheckPredicate, 36, 98, 62, 0, // Skip to: 17098 3087/* 1128 */ MCD::OPC_Decode, 240, 21, 196, 1, // Opcode: TNE 3088/* 1133 */ MCD::OPC_FilterValue, 1, 250, 0, 0, // Skip to: 1388 3089/* 1138 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 3090/* 1141 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1156 3091/* 1146 */ MCD::OPC_CheckPredicate, 27, 75, 62, 0, // Skip to: 17098 3092/* 1151 */ MCD::OPC_Decode, 193, 7, 197, 1, // Opcode: BLTZ 3093/* 1156 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1171 3094/* 1161 */ MCD::OPC_CheckPredicate, 27, 60, 62, 0, // Skip to: 17098 3095/* 1166 */ MCD::OPC_Decode, 136, 7, 197, 1, // Opcode: BGEZ 3096/* 1171 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1186 3097/* 1176 */ MCD::OPC_CheckPredicate, 39, 45, 62, 0, // Skip to: 17098 3098/* 1181 */ MCD::OPC_Decode, 204, 7, 197, 1, // Opcode: BLTZL 3099/* 1186 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1201 3100/* 1191 */ MCD::OPC_CheckPredicate, 39, 30, 62, 0, // Skip to: 17098 3101/* 1196 */ MCD::OPC_Decode, 147, 7, 197, 1, // Opcode: BGEZL 3102/* 1201 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1216 3103/* 1206 */ MCD::OPC_CheckPredicate, 39, 15, 62, 0, // Skip to: 17098 3104/* 1211 */ MCD::OPC_Decode, 202, 21, 175, 1, // Opcode: TGEI 3105/* 1216 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1231 3106/* 1221 */ MCD::OPC_CheckPredicate, 39, 0, 62, 0, // Skip to: 17098 3107/* 1226 */ MCD::OPC_Decode, 203, 21, 175, 1, // Opcode: TGEIU 3108/* 1231 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1246 3109/* 1236 */ MCD::OPC_CheckPredicate, 39, 241, 61, 0, // Skip to: 17098 3110/* 1241 */ MCD::OPC_Decode, 234, 21, 175, 1, // Opcode: TLTI 3111/* 1246 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1261 3112/* 1251 */ MCD::OPC_CheckPredicate, 39, 226, 61, 0, // Skip to: 17098 3113/* 1256 */ MCD::OPC_Decode, 255, 21, 175, 1, // Opcode: TTLTIU 3114/* 1261 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1276 3115/* 1266 */ MCD::OPC_CheckPredicate, 39, 211, 61, 0, // Skip to: 17098 3116/* 1271 */ MCD::OPC_Decode, 198, 21, 175, 1, // Opcode: TEQI 3117/* 1276 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1291 3118/* 1281 */ MCD::OPC_CheckPredicate, 39, 196, 61, 0, // Skip to: 17098 3119/* 1286 */ MCD::OPC_Decode, 241, 21, 175, 1, // Opcode: TNEI 3120/* 1291 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 1306 3121/* 1296 */ MCD::OPC_CheckPredicate, 31, 181, 61, 0, // Skip to: 17098 3122/* 1301 */ MCD::OPC_Decode, 195, 7, 197, 1, // Opcode: BLTZAL 3123/* 1306 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 1321 3124/* 1311 */ MCD::OPC_CheckPredicate, 31, 166, 61, 0, // Skip to: 17098 3125/* 1316 */ MCD::OPC_Decode, 138, 7, 197, 1, // Opcode: BGEZAL 3126/* 1321 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 1336 3127/* 1326 */ MCD::OPC_CheckPredicate, 39, 151, 61, 0, // Skip to: 17098 3128/* 1331 */ MCD::OPC_Decode, 198, 7, 197, 1, // Opcode: BLTZALL 3129/* 1336 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 1351 3130/* 1341 */ MCD::OPC_CheckPredicate, 39, 136, 61, 0, // Skip to: 17098 3131/* 1346 */ MCD::OPC_Decode, 141, 7, 197, 1, // Opcode: BGEZALL 3132/* 1351 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 1373 3133/* 1356 */ MCD::OPC_CheckPredicate, 40, 121, 61, 0, // Skip to: 17098 3134/* 1361 */ MCD::OPC_CheckField, 21, 5, 0, 114, 61, 0, // Skip to: 17098 3135/* 1368 */ MCD::OPC_Decode, 242, 7, 198, 1, // Opcode: BPOSGE32 3136/* 1373 */ MCD::OPC_FilterValue, 31, 104, 61, 0, // Skip to: 17098 3137/* 1378 */ MCD::OPC_CheckPredicate, 28, 99, 61, 0, // Skip to: 17098 3138/* 1383 */ MCD::OPC_Decode, 169, 21, 199, 1, // Opcode: SYNCI 3139/* 1388 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1403 3140/* 1393 */ MCD::OPC_CheckPredicate, 27, 84, 61, 0, // Skip to: 17098 3141/* 1398 */ MCD::OPC_Decode, 237, 13, 200, 1, // Opcode: J 3142/* 1403 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1418 3143/* 1408 */ MCD::OPC_CheckPredicate, 27, 69, 61, 0, // Skip to: 17098 3144/* 1413 */ MCD::OPC_Decode, 238, 13, 200, 1, // Opcode: JAL 3145/* 1418 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1433 3146/* 1423 */ MCD::OPC_CheckPredicate, 27, 54, 61, 0, // Skip to: 17098 3147/* 1428 */ MCD::OPC_Decode, 243, 6, 201, 1, // Opcode: BEQ 3148/* 1433 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1448 3149/* 1438 */ MCD::OPC_CheckPredicate, 27, 39, 61, 0, // Skip to: 17098 3150/* 1443 */ MCD::OPC_Decode, 210, 7, 201, 1, // Opcode: BNE 3151/* 1448 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 1470 3152/* 1453 */ MCD::OPC_CheckPredicate, 27, 24, 61, 0, // Skip to: 17098 3153/* 1458 */ MCD::OPC_CheckField, 16, 5, 0, 17, 61, 0, // Skip to: 17098 3154/* 1465 */ MCD::OPC_Decode, 178, 7, 197, 1, // Opcode: BLEZ 3155/* 1470 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 1492 3156/* 1475 */ MCD::OPC_CheckPredicate, 27, 2, 61, 0, // Skip to: 17098 3157/* 1480 */ MCD::OPC_CheckField, 16, 5, 0, 251, 60, 0, // Skip to: 17098 3158/* 1487 */ MCD::OPC_Decode, 149, 7, 197, 1, // Opcode: BGTZ 3159/* 1492 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1507 3160/* 1497 */ MCD::OPC_CheckPredicate, 31, 236, 60, 0, // Skip to: 17098 3161/* 1502 */ MCD::OPC_Decode, 144, 6, 202, 1, // Opcode: ADDi 3162/* 1507 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1522 3163/* 1512 */ MCD::OPC_CheckPredicate, 27, 221, 60, 0, // Skip to: 17098 3164/* 1517 */ MCD::OPC_Decode, 146, 6, 202, 1, // Opcode: ADDiu 3165/* 1522 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1537 3166/* 1527 */ MCD::OPC_CheckPredicate, 27, 206, 60, 0, // Skip to: 17098 3167/* 1532 */ MCD::OPC_Decode, 133, 20, 202, 1, // Opcode: SLTi 3168/* 1537 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1552 3169/* 1542 */ MCD::OPC_CheckPredicate, 27, 191, 60, 0, // Skip to: 17098 3170/* 1547 */ MCD::OPC_Decode, 136, 20, 202, 1, // Opcode: SLTiu 3171/* 1552 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1567 3172/* 1557 */ MCD::OPC_CheckPredicate, 27, 176, 60, 0, // Skip to: 17098 3173/* 1562 */ MCD::OPC_Decode, 165, 6, 203, 1, // Opcode: ANDi 3174/* 1567 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1582 3175/* 1572 */ MCD::OPC_CheckPredicate, 27, 161, 60, 0, // Skip to: 17098 3176/* 1577 */ MCD::OPC_Decode, 229, 17, 203, 1, // Opcode: ORi 3177/* 1582 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1597 3178/* 1587 */ MCD::OPC_CheckPredicate, 27, 146, 60, 0, // Skip to: 17098 3179/* 1592 */ MCD::OPC_Decode, 155, 22, 203, 1, // Opcode: XORi 3180/* 1597 */ MCD::OPC_FilterValue, 15, 16, 0, 0, // Skip to: 1618 3181/* 1602 */ MCD::OPC_CheckPredicate, 27, 131, 60, 0, // Skip to: 17098 3182/* 1607 */ MCD::OPC_CheckField, 21, 5, 0, 124, 60, 0, // Skip to: 17098 3183/* 1614 */ MCD::OPC_Decode, 224, 14, 103, // Opcode: LUi 3184/* 1618 */ MCD::OPC_FilterValue, 16, 187, 2, 0, // Skip to: 2322 3185/* 1623 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... 3186/* 1626 */ MCD::OPC_FilterValue, 0, 190, 1, 0, // Skip to: 2077 3187/* 1631 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 3188/* 1634 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1656 3189/* 1639 */ MCD::OPC_CheckPredicate, 27, 94, 60, 0, // Skip to: 17098 3190/* 1644 */ MCD::OPC_CheckField, 4, 7, 0, 87, 60, 0, // Skip to: 17098 3191/* 1651 */ MCD::OPC_Decode, 212, 15, 204, 1, // Opcode: MFC0 3192/* 1656 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 1724 3193/* 1661 */ MCD::OPC_ExtractField, 4, 7, // Inst{10-4} ... 3194/* 1664 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1679 3195/* 1669 */ MCD::OPC_CheckPredicate, 41, 64, 60, 0, // Skip to: 17098 3196/* 1674 */ MCD::OPC_Decode, 220, 15, 204, 1, // Opcode: MFGC0 3197/* 1679 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 1694 3198/* 1684 */ MCD::OPC_CheckPredicate, 41, 49, 60, 0, // Skip to: 17098 3199/* 1689 */ MCD::OPC_Decode, 236, 16, 205, 1, // Opcode: MTGC0 3200/* 1694 */ MCD::OPC_FilterValue, 64, 10, 0, 0, // Skip to: 1709 3201/* 1699 */ MCD::OPC_CheckPredicate, 41, 34, 60, 0, // Skip to: 17098 3202/* 1704 */ MCD::OPC_Decode, 228, 15, 204, 1, // Opcode: MFHGC0 3203/* 1709 */ MCD::OPC_FilterValue, 96, 24, 60, 0, // Skip to: 17098 3204/* 1714 */ MCD::OPC_CheckPredicate, 41, 19, 60, 0, // Skip to: 17098 3205/* 1719 */ MCD::OPC_Decode, 244, 16, 205, 1, // Opcode: MTHGC0 3206/* 1724 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 1746 3207/* 1729 */ MCD::OPC_CheckPredicate, 27, 4, 60, 0, // Skip to: 17098 3208/* 1734 */ MCD::OPC_CheckField, 4, 7, 0, 253, 59, 0, // Skip to: 17098 3209/* 1741 */ MCD::OPC_Decode, 227, 16, 205, 1, // Opcode: MTC0 3210/* 1746 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 1768 3211/* 1751 */ MCD::OPC_CheckPredicate, 42, 238, 59, 0, // Skip to: 17098 3212/* 1756 */ MCD::OPC_CheckField, 6, 5, 0, 231, 59, 0, // Skip to: 17098 3213/* 1763 */ MCD::OPC_Decode, 242, 15, 206, 1, // Opcode: MFTR 3214/* 1768 */ MCD::OPC_FilterValue, 11, 133, 0, 0, // Skip to: 1906 3215/* 1773 */ MCD::OPC_ExtractField, 4, 12, // Inst{15-4} ... 3216/* 1776 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1797 3217/* 1781 */ MCD::OPC_CheckPredicate, 42, 208, 59, 0, // Skip to: 17098 3218/* 1786 */ MCD::OPC_CheckField, 0, 3, 1, 201, 59, 0, // Skip to: 17098 3219/* 1793 */ MCD::OPC_Decode, 217, 11, 92, // Opcode: DVPE 3220/* 1797 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 1818 3221/* 1802 */ MCD::OPC_CheckPredicate, 42, 187, 59, 0, // Skip to: 17098 3222/* 1807 */ MCD::OPC_CheckField, 0, 3, 1, 180, 59, 0, // Skip to: 17098 3223/* 1814 */ MCD::OPC_Decode, 234, 11, 92, // Opcode: EVPE 3224/* 1818 */ MCD::OPC_FilterValue, 188, 1, 16, 0, 0, // Skip to: 1840 3225/* 1824 */ MCD::OPC_CheckPredicate, 42, 165, 59, 0, // Skip to: 17098 3226/* 1829 */ MCD::OPC_CheckField, 0, 3, 1, 158, 59, 0, // Skip to: 17098 3227/* 1836 */ MCD::OPC_Decode, 133, 11, 92, // Opcode: DMT 3228/* 1840 */ MCD::OPC_FilterValue, 190, 1, 16, 0, 0, // Skip to: 1862 3229/* 1846 */ MCD::OPC_CheckPredicate, 42, 143, 59, 0, // Skip to: 17098 3230/* 1851 */ MCD::OPC_CheckField, 0, 3, 1, 136, 59, 0, // Skip to: 17098 3231/* 1858 */ MCD::OPC_Decode, 227, 11, 92, // Opcode: EMT 3232/* 1862 */ MCD::OPC_FilterValue, 128, 12, 16, 0, 0, // Skip to: 1884 3233/* 1868 */ MCD::OPC_CheckPredicate, 28, 121, 59, 0, // Skip to: 17098 3234/* 1873 */ MCD::OPC_CheckField, 0, 3, 0, 114, 59, 0, // Skip to: 17098 3235/* 1880 */ MCD::OPC_Decode, 234, 10, 92, // Opcode: DI 3236/* 1884 */ MCD::OPC_FilterValue, 130, 12, 104, 59, 0, // Skip to: 17098 3237/* 1890 */ MCD::OPC_CheckPredicate, 28, 99, 59, 0, // Skip to: 17098 3238/* 1895 */ MCD::OPC_CheckField, 0, 3, 0, 92, 59, 0, // Skip to: 17098 3239/* 1902 */ MCD::OPC_Decode, 224, 11, 92, // Opcode: EI 3240/* 1906 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 1928 3241/* 1911 */ MCD::OPC_CheckPredicate, 42, 78, 59, 0, // Skip to: 17098 3242/* 1916 */ MCD::OPC_CheckField, 6, 5, 0, 71, 59, 0, // Skip to: 17098 3243/* 1923 */ MCD::OPC_Decode, 136, 17, 206, 1, // Opcode: MTTR 3244/* 1928 */ MCD::OPC_FilterValue, 16, 61, 59, 0, // Skip to: 17098 3245/* 1933 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... 3246/* 1936 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1972 3247/* 1941 */ MCD::OPC_ExtractField, 4, 17, // Inst{20-4} ... 3248/* 1944 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 1958 3249/* 1949 */ MCD::OPC_CheckPredicate, 41, 40, 59, 0, // Skip to: 17098 3250/* 1954 */ MCD::OPC_Decode, 213, 21, 10, // Opcode: TLBGP 3251/* 1958 */ MCD::OPC_FilterValue, 2, 31, 59, 0, // Skip to: 17098 3252/* 1963 */ MCD::OPC_CheckPredicate, 43, 26, 59, 0, // Skip to: 17098 3253/* 1968 */ MCD::OPC_Decode, 137, 22, 10, // Opcode: WAIT 3254/* 1972 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 1993 3255/* 1977 */ MCD::OPC_CheckPredicate, 27, 12, 59, 0, // Skip to: 17098 3256/* 1982 */ MCD::OPC_CheckField, 4, 17, 0, 5, 59, 0, // Skip to: 17098 3257/* 1989 */ MCD::OPC_Decode, 227, 21, 10, // Opcode: TLBR 3258/* 1993 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 2014 3259/* 1998 */ MCD::OPC_CheckPredicate, 27, 247, 58, 0, // Skip to: 17098 3260/* 2003 */ MCD::OPC_CheckField, 4, 17, 0, 240, 58, 0, // Skip to: 17098 3261/* 2010 */ MCD::OPC_Decode, 229, 21, 10, // Opcode: TLBWI 3262/* 2014 */ MCD::OPC_FilterValue, 3, 16, 0, 0, // Skip to: 2035 3263/* 2019 */ MCD::OPC_CheckPredicate, 44, 226, 58, 0, // Skip to: 17098 3264/* 2024 */ MCD::OPC_CheckField, 4, 17, 0, 219, 58, 0, // Skip to: 17098 3265/* 2031 */ MCD::OPC_Decode, 221, 21, 10, // Opcode: TLBINV 3266/* 2035 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 2056 3267/* 2040 */ MCD::OPC_CheckPredicate, 44, 205, 58, 0, // Skip to: 17098 3268/* 2045 */ MCD::OPC_CheckField, 4, 17, 0, 198, 58, 0, // Skip to: 17098 3269/* 2052 */ MCD::OPC_Decode, 222, 21, 10, // Opcode: TLBINVF 3270/* 2056 */ MCD::OPC_FilterValue, 6, 189, 58, 0, // Skip to: 17098 3271/* 2061 */ MCD::OPC_CheckPredicate, 27, 184, 58, 0, // Skip to: 17098 3272/* 2066 */ MCD::OPC_CheckField, 4, 17, 0, 177, 58, 0, // Skip to: 17098 3273/* 2073 */ MCD::OPC_Decode, 231, 21, 10, // Opcode: TLBWR 3274/* 2077 */ MCD::OPC_FilterValue, 1, 168, 58, 0, // Skip to: 17098 3275/* 2082 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... 3276/* 2085 */ MCD::OPC_FilterValue, 0, 88, 0, 0, // Skip to: 2178 3277/* 2090 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3278/* 2093 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 2116 3279/* 2098 */ MCD::OPC_CheckPredicate, 27, 147, 58, 0, // Skip to: 17098 3280/* 2103 */ MCD::OPC_CheckField, 6, 20, 128, 128, 32, 138, 58, 0, // Skip to: 17098 3281/* 2112 */ MCD::OPC_Decode, 225, 21, 10, // Opcode: TLBP 3282/* 2116 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 2156 3283/* 2121 */ MCD::OPC_ExtractField, 6, 20, // Inst{25-6} ... 3284/* 2124 */ MCD::OPC_FilterValue, 128, 128, 32, 9, 0, 0, // Skip to: 2140 3285/* 2131 */ MCD::OPC_CheckPredicate, 43, 114, 58, 0, // Skip to: 17098 3286/* 2136 */ MCD::OPC_Decode, 228, 11, 10, // Opcode: ERET 3287/* 2140 */ MCD::OPC_FilterValue, 129, 128, 32, 103, 58, 0, // Skip to: 17098 3288/* 2147 */ MCD::OPC_CheckPredicate, 45, 98, 58, 0, // Skip to: 17098 3289/* 2152 */ MCD::OPC_Decode, 229, 11, 10, // Opcode: ERETNC 3290/* 2156 */ MCD::OPC_FilterValue, 2, 89, 58, 0, // Skip to: 17098 3291/* 2161 */ MCD::OPC_CheckPredicate, 41, 84, 58, 0, // Skip to: 17098 3292/* 2166 */ MCD::OPC_CheckField, 25, 1, 1, 77, 58, 0, // Skip to: 17098 3293/* 2173 */ MCD::OPC_Decode, 206, 13, 207, 1, // Opcode: HYPCALL 3294/* 2178 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 2202 3295/* 2183 */ MCD::OPC_CheckPredicate, 41, 62, 58, 0, // Skip to: 17098 3296/* 2188 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 52, 58, 0, // Skip to: 17098 3297/* 2198 */ MCD::OPC_Decode, 215, 21, 10, // Opcode: TLBGR 3298/* 2202 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2226 3299/* 2207 */ MCD::OPC_CheckPredicate, 41, 38, 58, 0, // Skip to: 17098 3300/* 2212 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 28, 58, 0, // Skip to: 17098 3301/* 2222 */ MCD::OPC_Decode, 217, 21, 10, // Opcode: TLBGWI 3302/* 2226 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2250 3303/* 2231 */ MCD::OPC_CheckPredicate, 41, 14, 58, 0, // Skip to: 17098 3304/* 2236 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 4, 58, 0, // Skip to: 17098 3305/* 2246 */ MCD::OPC_Decode, 209, 21, 10, // Opcode: TLBGINV 3306/* 2250 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2274 3307/* 2255 */ MCD::OPC_CheckPredicate, 41, 246, 57, 0, // Skip to: 17098 3308/* 2260 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 236, 57, 0, // Skip to: 17098 3309/* 2270 */ MCD::OPC_Decode, 210, 21, 10, // Opcode: TLBGINVF 3310/* 2274 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2298 3311/* 2279 */ MCD::OPC_CheckPredicate, 41, 222, 57, 0, // Skip to: 17098 3312/* 2284 */ MCD::OPC_CheckField, 4, 22, 128, 128, 128, 1, 212, 57, 0, // Skip to: 17098 3313/* 2294 */ MCD::OPC_Decode, 219, 21, 10, // Opcode: TLBGWR 3314/* 2298 */ MCD::OPC_FilterValue, 7, 203, 57, 0, // Skip to: 17098 3315/* 2303 */ MCD::OPC_CheckPredicate, 46, 198, 57, 0, // Skip to: 17098 3316/* 2308 */ MCD::OPC_CheckField, 4, 22, 129, 128, 128, 1, 188, 57, 0, // Skip to: 17098 3317/* 2318 */ MCD::OPC_Decode, 227, 10, 10, // Opcode: DERET 3318/* 2322 */ MCD::OPC_FilterValue, 17, 205, 7, 0, // Skip to: 4324 3319/* 2327 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 3320/* 2330 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2352 3321/* 2335 */ MCD::OPC_CheckPredicate, 47, 166, 57, 0, // Skip to: 17098 3322/* 2340 */ MCD::OPC_CheckField, 0, 11, 0, 159, 57, 0, // Skip to: 17098 3323/* 2347 */ MCD::OPC_Decode, 214, 15, 208, 1, // Opcode: MFC1 3324/* 2352 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 2374 3325/* 2357 */ MCD::OPC_CheckPredicate, 48, 144, 57, 0, // Skip to: 17098 3326/* 2362 */ MCD::OPC_CheckField, 0, 11, 0, 137, 57, 0, // Skip to: 17098 3327/* 2369 */ MCD::OPC_Decode, 255, 10, 209, 1, // Opcode: DMFC1 3328/* 2374 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 2396 3329/* 2379 */ MCD::OPC_CheckPredicate, 47, 122, 57, 0, // Skip to: 17098 3330/* 2384 */ MCD::OPC_CheckField, 0, 11, 0, 115, 57, 0, // Skip to: 17098 3331/* 2391 */ MCD::OPC_Decode, 173, 8, 210, 1, // Opcode: CFC1 3332/* 2396 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 2418 3333/* 2401 */ MCD::OPC_CheckPredicate, 49, 100, 57, 0, // Skip to: 17098 3334/* 2406 */ MCD::OPC_CheckField, 0, 11, 0, 93, 57, 0, // Skip to: 17098 3335/* 2413 */ MCD::OPC_Decode, 223, 15, 211, 1, // Opcode: MFHC1_D32 3336/* 2418 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 2440 3337/* 2423 */ MCD::OPC_CheckPredicate, 47, 78, 57, 0, // Skip to: 17098 3338/* 2428 */ MCD::OPC_CheckField, 0, 11, 0, 71, 57, 0, // Skip to: 17098 3339/* 2435 */ MCD::OPC_Decode, 229, 16, 212, 1, // Opcode: MTC1 3340/* 2440 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 2462 3341/* 2445 */ MCD::OPC_CheckPredicate, 48, 56, 57, 0, // Skip to: 17098 3342/* 2450 */ MCD::OPC_CheckField, 0, 11, 0, 49, 57, 0, // Skip to: 17098 3343/* 2457 */ MCD::OPC_Decode, 135, 11, 213, 1, // Opcode: DMTC1 3344/* 2462 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 2484 3345/* 2467 */ MCD::OPC_CheckPredicate, 47, 34, 57, 0, // Skip to: 17098 3346/* 2472 */ MCD::OPC_CheckField, 0, 11, 0, 27, 57, 0, // Skip to: 17098 3347/* 2479 */ MCD::OPC_Decode, 200, 9, 214, 1, // Opcode: CTC1 3348/* 2484 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 2506 3349/* 2489 */ MCD::OPC_CheckPredicate, 49, 12, 57, 0, // Skip to: 17098 3350/* 2494 */ MCD::OPC_CheckField, 0, 11, 0, 5, 57, 0, // Skip to: 17098 3351/* 2501 */ MCD::OPC_Decode, 239, 16, 215, 1, // Opcode: MTHC1_D32 3352/* 2506 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 2574 3353/* 2511 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 3354/* 2514 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2529 3355/* 2519 */ MCD::OPC_CheckPredicate, 50, 238, 56, 0, // Skip to: 17098 3356/* 2524 */ MCD::OPC_Decode, 222, 6, 216, 1, // Opcode: BC1F 3357/* 2529 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2544 3358/* 2534 */ MCD::OPC_CheckPredicate, 50, 223, 56, 0, // Skip to: 17098 3359/* 2539 */ MCD::OPC_Decode, 227, 6, 216, 1, // Opcode: BC1T 3360/* 2544 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2559 3361/* 2549 */ MCD::OPC_CheckPredicate, 51, 208, 56, 0, // Skip to: 17098 3362/* 2554 */ MCD::OPC_Decode, 223, 6, 216, 1, // Opcode: BC1FL 3363/* 2559 */ MCD::OPC_FilterValue, 3, 198, 56, 0, // Skip to: 17098 3364/* 2564 */ MCD::OPC_CheckPredicate, 51, 193, 56, 0, // Skip to: 17098 3365/* 2569 */ MCD::OPC_Decode, 228, 6, 216, 1, // Opcode: BC1TL 3366/* 2574 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 2589 3367/* 2579 */ MCD::OPC_CheckPredicate, 30, 178, 56, 0, // Skip to: 17098 3368/* 2584 */ MCD::OPC_Decode, 135, 8, 217, 1, // Opcode: BZ_V 3369/* 2589 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2604 3370/* 2594 */ MCD::OPC_CheckPredicate, 30, 163, 56, 0, // Skip to: 17098 3371/* 2599 */ MCD::OPC_Decode, 238, 7, 217, 1, // Opcode: BNZ_V 3372/* 2604 */ MCD::OPC_FilterValue, 16, 1, 3, 0, // Skip to: 3378 3373/* 2609 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3374/* 2612 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2627 3375/* 2617 */ MCD::OPC_CheckPredicate, 47, 140, 56, 0, // Skip to: 17098 3376/* 2622 */ MCD::OPC_Decode, 149, 12, 218, 1, // Opcode: FADD_S 3377/* 2627 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2642 3378/* 2632 */ MCD::OPC_CheckPredicate, 47, 125, 56, 0, // Skip to: 17098 3379/* 2637 */ MCD::OPC_Decode, 166, 13, 218, 1, // Opcode: FSUB_S 3380/* 2642 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2657 3381/* 2647 */ MCD::OPC_CheckPredicate, 47, 110, 56, 0, // Skip to: 17098 3382/* 2652 */ MCD::OPC_Decode, 250, 12, 218, 1, // Opcode: FMUL_S 3383/* 2657 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2672 3384/* 2662 */ MCD::OPC_CheckPredicate, 47, 95, 56, 0, // Skip to: 17098 3385/* 2667 */ MCD::OPC_Decode, 187, 12, 218, 1, // Opcode: FDIV_S 3386/* 2672 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 2694 3387/* 2677 */ MCD::OPC_CheckPredicate, 52, 80, 56, 0, // Skip to: 17098 3388/* 2682 */ MCD::OPC_CheckField, 16, 5, 0, 73, 56, 0, // Skip to: 17098 3389/* 2689 */ MCD::OPC_Decode, 157, 13, 219, 1, // Opcode: FSQRT_S 3390/* 2694 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 2716 3391/* 2699 */ MCD::OPC_CheckPredicate, 47, 58, 56, 0, // Skip to: 17098 3392/* 2704 */ MCD::OPC_CheckField, 16, 5, 0, 51, 56, 0, // Skip to: 17098 3393/* 2711 */ MCD::OPC_Decode, 141, 12, 219, 1, // Opcode: FABS_S 3394/* 2716 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 2738 3395/* 2721 */ MCD::OPC_CheckPredicate, 47, 36, 56, 0, // Skip to: 17098 3396/* 2726 */ MCD::OPC_CheckField, 16, 5, 0, 29, 56, 0, // Skip to: 17098 3397/* 2733 */ MCD::OPC_Decode, 239, 12, 219, 1, // Opcode: FMOV_S 3398/* 2738 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 2760 3399/* 2743 */ MCD::OPC_CheckPredicate, 53, 14, 56, 0, // Skip to: 17098 3400/* 2748 */ MCD::OPC_CheckField, 16, 5, 0, 7, 56, 0, // Skip to: 17098 3401/* 2755 */ MCD::OPC_Decode, 130, 13, 219, 1, // Opcode: FNEG_S 3402/* 2760 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 2782 3403/* 2765 */ MCD::OPC_CheckPredicate, 52, 248, 55, 0, // Skip to: 17098 3404/* 2770 */ MCD::OPC_CheckField, 16, 5, 0, 241, 55, 0, // Skip to: 17098 3405/* 2777 */ MCD::OPC_Decode, 213, 18, 219, 1, // Opcode: ROUND_W_S 3406/* 2782 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 2804 3407/* 2787 */ MCD::OPC_CheckPredicate, 52, 226, 55, 0, // Skip to: 17098 3408/* 2792 */ MCD::OPC_CheckField, 16, 5, 0, 219, 55, 0, // Skip to: 17098 3409/* 2799 */ MCD::OPC_Decode, 252, 21, 219, 1, // Opcode: TRUNC_W_S 3410/* 2804 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 2826 3411/* 2809 */ MCD::OPC_CheckPredicate, 52, 204, 55, 0, // Skip to: 17098 3412/* 2814 */ MCD::OPC_CheckField, 16, 5, 0, 197, 55, 0, // Skip to: 17098 3413/* 2821 */ MCD::OPC_Decode, 162, 8, 219, 1, // Opcode: CEIL_W_S 3414/* 2826 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2848 3415/* 2831 */ MCD::OPC_CheckPredicate, 52, 182, 55, 0, // Skip to: 17098 3416/* 2836 */ MCD::OPC_CheckField, 16, 5, 0, 175, 55, 0, // Skip to: 17098 3417/* 2843 */ MCD::OPC_Decode, 221, 12, 219, 1, // Opcode: FLOOR_W_S 3418/* 2848 */ MCD::OPC_FilterValue, 17, 33, 0, 0, // Skip to: 2886 3419/* 2853 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 3420/* 2856 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2871 3421/* 2861 */ MCD::OPC_CheckPredicate, 29, 152, 55, 0, // Skip to: 17098 3422/* 2866 */ MCD::OPC_Decode, 168, 16, 220, 1, // Opcode: MOVF_S 3423/* 2871 */ MCD::OPC_FilterValue, 1, 142, 55, 0, // Skip to: 17098 3424/* 2876 */ MCD::OPC_CheckPredicate, 29, 137, 55, 0, // Skip to: 17098 3425/* 2881 */ MCD::OPC_Decode, 188, 16, 220, 1, // Opcode: MOVT_S 3426/* 2886 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 2901 3427/* 2891 */ MCD::OPC_CheckPredicate, 29, 122, 55, 0, // Skip to: 17098 3428/* 2896 */ MCD::OPC_Decode, 200, 16, 221, 1, // Opcode: MOVZ_I_S 3429/* 2901 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 2916 3430/* 2906 */ MCD::OPC_CheckPredicate, 29, 107, 55, 0, // Skip to: 17098 3431/* 2911 */ MCD::OPC_Decode, 180, 16, 221, 1, // Opcode: MOVN_I_S 3432/* 2916 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 2938 3433/* 2921 */ MCD::OPC_CheckPredicate, 54, 92, 55, 0, // Skip to: 17098 3434/* 2926 */ MCD::OPC_CheckField, 16, 5, 0, 85, 55, 0, // Skip to: 17098 3435/* 2933 */ MCD::OPC_Decode, 187, 18, 219, 1, // Opcode: RECIP_S 3436/* 2938 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 2960 3437/* 2943 */ MCD::OPC_CheckPredicate, 54, 70, 55, 0, // Skip to: 17098 3438/* 2948 */ MCD::OPC_CheckField, 16, 5, 0, 63, 55, 0, // Skip to: 17098 3439/* 2955 */ MCD::OPC_Decode, 220, 18, 219, 1, // Opcode: RSQRT_S 3440/* 2960 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 2982 3441/* 2965 */ MCD::OPC_CheckPredicate, 55, 48, 55, 0, // Skip to: 17098 3442/* 2970 */ MCD::OPC_CheckField, 16, 5, 0, 41, 55, 0, // Skip to: 17098 3443/* 2977 */ MCD::OPC_Decode, 204, 9, 222, 1, // Opcode: CVT_D32_S 3444/* 2982 */ MCD::OPC_FilterValue, 36, 17, 0, 0, // Skip to: 3004 3445/* 2987 */ MCD::OPC_CheckPredicate, 47, 26, 55, 0, // Skip to: 17098 3446/* 2992 */ MCD::OPC_CheckField, 16, 5, 0, 19, 55, 0, // Skip to: 17098 3447/* 2999 */ MCD::OPC_Decode, 238, 9, 219, 1, // Opcode: CVT_W_S 3448/* 3004 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 3026 3449/* 3009 */ MCD::OPC_CheckPredicate, 56, 4, 55, 0, // Skip to: 17098 3450/* 3014 */ MCD::OPC_CheckField, 16, 5, 0, 253, 54, 0, // Skip to: 17098 3451/* 3021 */ MCD::OPC_Decode, 217, 9, 223, 1, // Opcode: CVT_L_S 3452/* 3026 */ MCD::OPC_FilterValue, 48, 17, 0, 0, // Skip to: 3048 3453/* 3031 */ MCD::OPC_CheckPredicate, 50, 238, 54, 0, // Skip to: 17098 3454/* 3036 */ MCD::OPC_CheckField, 6, 2, 0, 231, 54, 0, // Skip to: 17098 3455/* 3043 */ MCD::OPC_Decode, 251, 9, 224, 1, // Opcode: C_F_S 3456/* 3048 */ MCD::OPC_FilterValue, 49, 17, 0, 0, // Skip to: 3070 3457/* 3053 */ MCD::OPC_CheckPredicate, 50, 216, 54, 0, // Skip to: 17098 3458/* 3058 */ MCD::OPC_CheckField, 6, 2, 0, 209, 54, 0, // Skip to: 17098 3459/* 3065 */ MCD::OPC_Decode, 207, 10, 224, 1, // Opcode: C_UN_S 3460/* 3070 */ MCD::OPC_FilterValue, 50, 17, 0, 0, // Skip to: 3092 3461/* 3075 */ MCD::OPC_CheckPredicate, 50, 194, 54, 0, // Skip to: 17098 3462/* 3080 */ MCD::OPC_CheckField, 6, 2, 0, 187, 54, 0, // Skip to: 17098 3463/* 3087 */ MCD::OPC_Decode, 245, 9, 224, 1, // Opcode: C_EQ_S 3464/* 3092 */ MCD::OPC_FilterValue, 51, 17, 0, 0, // Skip to: 3114 3465/* 3097 */ MCD::OPC_CheckPredicate, 50, 172, 54, 0, // Skip to: 17098 3466/* 3102 */ MCD::OPC_CheckField, 6, 2, 0, 165, 54, 0, // Skip to: 17098 3467/* 3109 */ MCD::OPC_Decode, 189, 10, 224, 1, // Opcode: C_UEQ_S 3468/* 3114 */ MCD::OPC_FilterValue, 52, 17, 0, 0, // Skip to: 3136 3469/* 3119 */ MCD::OPC_CheckPredicate, 50, 150, 54, 0, // Skip to: 17098 3470/* 3124 */ MCD::OPC_CheckField, 6, 2, 0, 143, 54, 0, // Skip to: 17098 3471/* 3131 */ MCD::OPC_Decode, 171, 10, 224, 1, // Opcode: C_OLT_S 3472/* 3136 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 3158 3473/* 3141 */ MCD::OPC_CheckPredicate, 50, 128, 54, 0, // Skip to: 17098 3474/* 3146 */ MCD::OPC_CheckField, 6, 2, 0, 121, 54, 0, // Skip to: 17098 3475/* 3153 */ MCD::OPC_Decode, 201, 10, 224, 1, // Opcode: C_ULT_S 3476/* 3158 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 3180 3477/* 3163 */ MCD::OPC_CheckPredicate, 50, 106, 54, 0, // Skip to: 17098 3478/* 3168 */ MCD::OPC_CheckField, 6, 2, 0, 99, 54, 0, // Skip to: 17098 3479/* 3175 */ MCD::OPC_Decode, 165, 10, 224, 1, // Opcode: C_OLE_S 3480/* 3180 */ MCD::OPC_FilterValue, 55, 17, 0, 0, // Skip to: 3202 3481/* 3185 */ MCD::OPC_CheckPredicate, 50, 84, 54, 0, // Skip to: 17098 3482/* 3190 */ MCD::OPC_CheckField, 6, 2, 0, 77, 54, 0, // Skip to: 17098 3483/* 3197 */ MCD::OPC_Decode, 195, 10, 224, 1, // Opcode: C_ULE_S 3484/* 3202 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 3224 3485/* 3207 */ MCD::OPC_CheckPredicate, 50, 62, 54, 0, // Skip to: 17098 3486/* 3212 */ MCD::OPC_CheckField, 6, 2, 0, 55, 54, 0, // Skip to: 17098 3487/* 3219 */ MCD::OPC_Decode, 183, 10, 224, 1, // Opcode: C_SF_S 3488/* 3224 */ MCD::OPC_FilterValue, 57, 17, 0, 0, // Skip to: 3246 3489/* 3229 */ MCD::OPC_CheckPredicate, 50, 40, 54, 0, // Skip to: 17098 3490/* 3234 */ MCD::OPC_CheckField, 6, 2, 0, 33, 54, 0, // Skip to: 17098 3491/* 3241 */ MCD::OPC_Decode, 147, 10, 224, 1, // Opcode: C_NGLE_S 3492/* 3246 */ MCD::OPC_FilterValue, 58, 17, 0, 0, // Skip to: 3268 3493/* 3251 */ MCD::OPC_CheckPredicate, 50, 18, 54, 0, // Skip to: 17098 3494/* 3256 */ MCD::OPC_CheckField, 6, 2, 0, 11, 54, 0, // Skip to: 17098 3495/* 3263 */ MCD::OPC_Decode, 177, 10, 224, 1, // Opcode: C_SEQ_S 3496/* 3268 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 3290 3497/* 3273 */ MCD::OPC_CheckPredicate, 50, 252, 53, 0, // Skip to: 17098 3498/* 3278 */ MCD::OPC_CheckField, 6, 2, 0, 245, 53, 0, // Skip to: 17098 3499/* 3285 */ MCD::OPC_Decode, 153, 10, 224, 1, // Opcode: C_NGL_S 3500/* 3290 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 3312 3501/* 3295 */ MCD::OPC_CheckPredicate, 50, 230, 53, 0, // Skip to: 17098 3502/* 3300 */ MCD::OPC_CheckField, 6, 2, 0, 223, 53, 0, // Skip to: 17098 3503/* 3307 */ MCD::OPC_Decode, 135, 10, 224, 1, // Opcode: C_LT_S 3504/* 3312 */ MCD::OPC_FilterValue, 61, 17, 0, 0, // Skip to: 3334 3505/* 3317 */ MCD::OPC_CheckPredicate, 50, 208, 53, 0, // Skip to: 17098 3506/* 3322 */ MCD::OPC_CheckField, 6, 2, 0, 201, 53, 0, // Skip to: 17098 3507/* 3329 */ MCD::OPC_Decode, 141, 10, 224, 1, // Opcode: C_NGE_S 3508/* 3334 */ MCD::OPC_FilterValue, 62, 17, 0, 0, // Skip to: 3356 3509/* 3339 */ MCD::OPC_CheckPredicate, 50, 186, 53, 0, // Skip to: 17098 3510/* 3344 */ MCD::OPC_CheckField, 6, 2, 0, 179, 53, 0, // Skip to: 17098 3511/* 3351 */ MCD::OPC_Decode, 129, 10, 224, 1, // Opcode: C_LE_S 3512/* 3356 */ MCD::OPC_FilterValue, 63, 169, 53, 0, // Skip to: 17098 3513/* 3361 */ MCD::OPC_CheckPredicate, 50, 164, 53, 0, // Skip to: 17098 3514/* 3366 */ MCD::OPC_CheckField, 6, 2, 0, 157, 53, 0, // Skip to: 17098 3515/* 3373 */ MCD::OPC_Decode, 159, 10, 224, 1, // Opcode: C_NGT_S 3516/* 3378 */ MCD::OPC_FilterValue, 17, 1, 3, 0, // Skip to: 4152 3517/* 3383 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3518/* 3386 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3401 3519/* 3391 */ MCD::OPC_CheckPredicate, 55, 134, 53, 0, // Skip to: 17098 3520/* 3396 */ MCD::OPC_Decode, 144, 12, 225, 1, // Opcode: FADD_D32 3521/* 3401 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3416 3522/* 3406 */ MCD::OPC_CheckPredicate, 55, 119, 53, 0, // Skip to: 17098 3523/* 3411 */ MCD::OPC_Decode, 161, 13, 225, 1, // Opcode: FSUB_D32 3524/* 3416 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 3431 3525/* 3421 */ MCD::OPC_CheckPredicate, 55, 104, 53, 0, // Skip to: 17098 3526/* 3426 */ MCD::OPC_Decode, 245, 12, 225, 1, // Opcode: FMUL_D32 3527/* 3431 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 3446 3528/* 3436 */ MCD::OPC_CheckPredicate, 55, 89, 53, 0, // Skip to: 17098 3529/* 3441 */ MCD::OPC_Decode, 183, 12, 225, 1, // Opcode: FDIV_D32 3530/* 3446 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 3468 3531/* 3451 */ MCD::OPC_CheckPredicate, 57, 74, 53, 0, // Skip to: 17098 3532/* 3456 */ MCD::OPC_CheckField, 16, 5, 0, 67, 53, 0, // Skip to: 17098 3533/* 3463 */ MCD::OPC_Decode, 153, 13, 226, 1, // Opcode: FSQRT_D32 3534/* 3468 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 3490 3535/* 3473 */ MCD::OPC_CheckPredicate, 55, 52, 53, 0, // Skip to: 17098 3536/* 3478 */ MCD::OPC_CheckField, 16, 5, 0, 45, 53, 0, // Skip to: 17098 3537/* 3485 */ MCD::OPC_Decode, 137, 12, 226, 1, // Opcode: FABS_D32 3538/* 3490 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 3512 3539/* 3495 */ MCD::OPC_CheckPredicate, 55, 30, 53, 0, // Skip to: 17098 3540/* 3500 */ MCD::OPC_CheckField, 16, 5, 0, 23, 53, 0, // Skip to: 17098 3541/* 3507 */ MCD::OPC_Decode, 234, 12, 226, 1, // Opcode: FMOV_D32 3542/* 3512 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 3534 3543/* 3517 */ MCD::OPC_CheckPredicate, 55, 8, 53, 0, // Skip to: 17098 3544/* 3522 */ MCD::OPC_CheckField, 16, 5, 0, 1, 53, 0, // Skip to: 17098 3545/* 3529 */ MCD::OPC_Decode, 254, 12, 226, 1, // Opcode: FNEG_D32 3546/* 3534 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 3556 3547/* 3539 */ MCD::OPC_CheckPredicate, 57, 242, 52, 0, // Skip to: 17098 3548/* 3544 */ MCD::OPC_CheckField, 16, 5, 0, 235, 52, 0, // Skip to: 17098 3549/* 3551 */ MCD::OPC_Decode, 209, 18, 227, 1, // Opcode: ROUND_W_D32 3550/* 3556 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 3578 3551/* 3561 */ MCD::OPC_CheckPredicate, 57, 220, 52, 0, // Skip to: 17098 3552/* 3566 */ MCD::OPC_CheckField, 16, 5, 0, 213, 52, 0, // Skip to: 17098 3553/* 3573 */ MCD::OPC_Decode, 248, 21, 227, 1, // Opcode: TRUNC_W_D32 3554/* 3578 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 3600 3555/* 3583 */ MCD::OPC_CheckPredicate, 57, 198, 52, 0, // Skip to: 17098 3556/* 3588 */ MCD::OPC_CheckField, 16, 5, 0, 191, 52, 0, // Skip to: 17098 3557/* 3595 */ MCD::OPC_Decode, 158, 8, 227, 1, // Opcode: CEIL_W_D32 3558/* 3600 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 3622 3559/* 3605 */ MCD::OPC_CheckPredicate, 57, 176, 52, 0, // Skip to: 17098 3560/* 3610 */ MCD::OPC_CheckField, 16, 5, 0, 169, 52, 0, // Skip to: 17098 3561/* 3617 */ MCD::OPC_Decode, 217, 12, 227, 1, // Opcode: FLOOR_W_D32 3562/* 3622 */ MCD::OPC_FilterValue, 17, 33, 0, 0, // Skip to: 3660 3563/* 3627 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 3564/* 3630 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3645 3565/* 3635 */ MCD::OPC_CheckPredicate, 58, 146, 52, 0, // Skip to: 17098 3566/* 3640 */ MCD::OPC_Decode, 162, 16, 228, 1, // Opcode: MOVF_D32 3567/* 3645 */ MCD::OPC_FilterValue, 1, 136, 52, 0, // Skip to: 17098 3568/* 3650 */ MCD::OPC_CheckPredicate, 58, 131, 52, 0, // Skip to: 17098 3569/* 3655 */ MCD::OPC_Decode, 182, 16, 228, 1, // Opcode: MOVT_D32 3570/* 3660 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 3675 3571/* 3665 */ MCD::OPC_CheckPredicate, 58, 116, 52, 0, // Skip to: 17098 3572/* 3670 */ MCD::OPC_Decode, 194, 16, 229, 1, // Opcode: MOVZ_I_D32 3573/* 3675 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 3690 3574/* 3680 */ MCD::OPC_CheckPredicate, 58, 101, 52, 0, // Skip to: 17098 3575/* 3685 */ MCD::OPC_Decode, 174, 16, 229, 1, // Opcode: MOVN_I_D32 3576/* 3690 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 3712 3577/* 3695 */ MCD::OPC_CheckPredicate, 59, 86, 52, 0, // Skip to: 17098 3578/* 3700 */ MCD::OPC_CheckField, 16, 5, 0, 79, 52, 0, // Skip to: 17098 3579/* 3707 */ MCD::OPC_Decode, 183, 18, 226, 1, // Opcode: RECIP_D32 3580/* 3712 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 3734 3581/* 3717 */ MCD::OPC_CheckPredicate, 59, 64, 52, 0, // Skip to: 17098 3582/* 3722 */ MCD::OPC_CheckField, 16, 5, 0, 57, 52, 0, // Skip to: 17098 3583/* 3729 */ MCD::OPC_Decode, 216, 18, 226, 1, // Opcode: RSQRT_D32 3584/* 3734 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 3756 3585/* 3739 */ MCD::OPC_CheckPredicate, 55, 42, 52, 0, // Skip to: 17098 3586/* 3744 */ MCD::OPC_CheckField, 16, 5, 0, 35, 52, 0, // Skip to: 17098 3587/* 3751 */ MCD::OPC_Decode, 223, 9, 227, 1, // Opcode: CVT_S_D32 3588/* 3756 */ MCD::OPC_FilterValue, 36, 17, 0, 0, // Skip to: 3778 3589/* 3761 */ MCD::OPC_CheckPredicate, 55, 20, 52, 0, // Skip to: 17098 3590/* 3766 */ MCD::OPC_CheckField, 16, 5, 0, 13, 52, 0, // Skip to: 17098 3591/* 3773 */ MCD::OPC_Decode, 234, 9, 227, 1, // Opcode: CVT_W_D32 3592/* 3778 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 3800 3593/* 3783 */ MCD::OPC_CheckPredicate, 56, 254, 51, 0, // Skip to: 17098 3594/* 3788 */ MCD::OPC_CheckField, 16, 5, 0, 247, 51, 0, // Skip to: 17098 3595/* 3795 */ MCD::OPC_Decode, 214, 9, 230, 1, // Opcode: CVT_L_D64 3596/* 3800 */ MCD::OPC_FilterValue, 48, 17, 0, 0, // Skip to: 3822 3597/* 3805 */ MCD::OPC_CheckPredicate, 60, 232, 51, 0, // Skip to: 17098 3598/* 3810 */ MCD::OPC_CheckField, 6, 2, 0, 225, 51, 0, // Skip to: 17098 3599/* 3817 */ MCD::OPC_Decode, 247, 9, 231, 1, // Opcode: C_F_D32 3600/* 3822 */ MCD::OPC_FilterValue, 49, 17, 0, 0, // Skip to: 3844 3601/* 3827 */ MCD::OPC_CheckPredicate, 60, 210, 51, 0, // Skip to: 17098 3602/* 3832 */ MCD::OPC_CheckField, 6, 2, 0, 203, 51, 0, // Skip to: 17098 3603/* 3839 */ MCD::OPC_Decode, 203, 10, 231, 1, // Opcode: C_UN_D32 3604/* 3844 */ MCD::OPC_FilterValue, 50, 17, 0, 0, // Skip to: 3866 3605/* 3849 */ MCD::OPC_CheckPredicate, 60, 188, 51, 0, // Skip to: 17098 3606/* 3854 */ MCD::OPC_CheckField, 6, 2, 0, 181, 51, 0, // Skip to: 17098 3607/* 3861 */ MCD::OPC_Decode, 241, 9, 231, 1, // Opcode: C_EQ_D32 3608/* 3866 */ MCD::OPC_FilterValue, 51, 17, 0, 0, // Skip to: 3888 3609/* 3871 */ MCD::OPC_CheckPredicate, 60, 166, 51, 0, // Skip to: 17098 3610/* 3876 */ MCD::OPC_CheckField, 6, 2, 0, 159, 51, 0, // Skip to: 17098 3611/* 3883 */ MCD::OPC_Decode, 185, 10, 231, 1, // Opcode: C_UEQ_D32 3612/* 3888 */ MCD::OPC_FilterValue, 52, 17, 0, 0, // Skip to: 3910 3613/* 3893 */ MCD::OPC_CheckPredicate, 60, 144, 51, 0, // Skip to: 17098 3614/* 3898 */ MCD::OPC_CheckField, 6, 2, 0, 137, 51, 0, // Skip to: 17098 3615/* 3905 */ MCD::OPC_Decode, 167, 10, 231, 1, // Opcode: C_OLT_D32 3616/* 3910 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 3932 3617/* 3915 */ MCD::OPC_CheckPredicate, 60, 122, 51, 0, // Skip to: 17098 3618/* 3920 */ MCD::OPC_CheckField, 6, 2, 0, 115, 51, 0, // Skip to: 17098 3619/* 3927 */ MCD::OPC_Decode, 197, 10, 231, 1, // Opcode: C_ULT_D32 3620/* 3932 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 3954 3621/* 3937 */ MCD::OPC_CheckPredicate, 60, 100, 51, 0, // Skip to: 17098 3622/* 3942 */ MCD::OPC_CheckField, 6, 2, 0, 93, 51, 0, // Skip to: 17098 3623/* 3949 */ MCD::OPC_Decode, 161, 10, 231, 1, // Opcode: C_OLE_D32 3624/* 3954 */ MCD::OPC_FilterValue, 55, 17, 0, 0, // Skip to: 3976 3625/* 3959 */ MCD::OPC_CheckPredicate, 60, 78, 51, 0, // Skip to: 17098 3626/* 3964 */ MCD::OPC_CheckField, 6, 2, 0, 71, 51, 0, // Skip to: 17098 3627/* 3971 */ MCD::OPC_Decode, 191, 10, 231, 1, // Opcode: C_ULE_D32 3628/* 3976 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 3998 3629/* 3981 */ MCD::OPC_CheckPredicate, 60, 56, 51, 0, // Skip to: 17098 3630/* 3986 */ MCD::OPC_CheckField, 6, 2, 0, 49, 51, 0, // Skip to: 17098 3631/* 3993 */ MCD::OPC_Decode, 179, 10, 231, 1, // Opcode: C_SF_D32 3632/* 3998 */ MCD::OPC_FilterValue, 57, 17, 0, 0, // Skip to: 4020 3633/* 4003 */ MCD::OPC_CheckPredicate, 60, 34, 51, 0, // Skip to: 17098 3634/* 4008 */ MCD::OPC_CheckField, 6, 2, 0, 27, 51, 0, // Skip to: 17098 3635/* 4015 */ MCD::OPC_Decode, 143, 10, 231, 1, // Opcode: C_NGLE_D32 3636/* 4020 */ MCD::OPC_FilterValue, 58, 17, 0, 0, // Skip to: 4042 3637/* 4025 */ MCD::OPC_CheckPredicate, 60, 12, 51, 0, // Skip to: 17098 3638/* 4030 */ MCD::OPC_CheckField, 6, 2, 0, 5, 51, 0, // Skip to: 17098 3639/* 4037 */ MCD::OPC_Decode, 173, 10, 231, 1, // Opcode: C_SEQ_D32 3640/* 4042 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 4064 3641/* 4047 */ MCD::OPC_CheckPredicate, 60, 246, 50, 0, // Skip to: 17098 3642/* 4052 */ MCD::OPC_CheckField, 6, 2, 0, 239, 50, 0, // Skip to: 17098 3643/* 4059 */ MCD::OPC_Decode, 149, 10, 231, 1, // Opcode: C_NGL_D32 3644/* 4064 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 4086 3645/* 4069 */ MCD::OPC_CheckPredicate, 60, 224, 50, 0, // Skip to: 17098 3646/* 4074 */ MCD::OPC_CheckField, 6, 2, 0, 217, 50, 0, // Skip to: 17098 3647/* 4081 */ MCD::OPC_Decode, 131, 10, 231, 1, // Opcode: C_LT_D32 3648/* 4086 */ MCD::OPC_FilterValue, 61, 17, 0, 0, // Skip to: 4108 3649/* 4091 */ MCD::OPC_CheckPredicate, 60, 202, 50, 0, // Skip to: 17098 3650/* 4096 */ MCD::OPC_CheckField, 6, 2, 0, 195, 50, 0, // Skip to: 17098 3651/* 4103 */ MCD::OPC_Decode, 137, 10, 231, 1, // Opcode: C_NGE_D32 3652/* 4108 */ MCD::OPC_FilterValue, 62, 17, 0, 0, // Skip to: 4130 3653/* 4113 */ MCD::OPC_CheckPredicate, 60, 180, 50, 0, // Skip to: 17098 3654/* 4118 */ MCD::OPC_CheckField, 6, 2, 0, 173, 50, 0, // Skip to: 17098 3655/* 4125 */ MCD::OPC_Decode, 253, 9, 231, 1, // Opcode: C_LE_D32 3656/* 4130 */ MCD::OPC_FilterValue, 63, 163, 50, 0, // Skip to: 17098 3657/* 4135 */ MCD::OPC_CheckPredicate, 60, 158, 50, 0, // Skip to: 17098 3658/* 4140 */ MCD::OPC_CheckField, 6, 2, 0, 151, 50, 0, // Skip to: 17098 3659/* 4147 */ MCD::OPC_Decode, 155, 10, 231, 1, // Opcode: C_NGT_D32 3660/* 4152 */ MCD::OPC_FilterValue, 20, 47, 0, 0, // Skip to: 4204 3661/* 4157 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3662/* 4160 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 4182 3663/* 4165 */ MCD::OPC_CheckPredicate, 47, 128, 50, 0, // Skip to: 17098 3664/* 4170 */ MCD::OPC_CheckField, 16, 5, 0, 121, 50, 0, // Skip to: 17098 3665/* 4177 */ MCD::OPC_Decode, 231, 9, 219, 1, // Opcode: CVT_S_W 3666/* 4182 */ MCD::OPC_FilterValue, 33, 111, 50, 0, // Skip to: 17098 3667/* 4187 */ MCD::OPC_CheckPredicate, 55, 106, 50, 0, // Skip to: 17098 3668/* 4192 */ MCD::OPC_CheckField, 16, 5, 0, 99, 50, 0, // Skip to: 17098 3669/* 4199 */ MCD::OPC_Decode, 206, 9, 222, 1, // Opcode: CVT_D32_W 3670/* 4204 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 4219 3671/* 4209 */ MCD::OPC_CheckPredicate, 30, 84, 50, 0, // Skip to: 17098 3672/* 4214 */ MCD::OPC_Decode, 132, 8, 217, 1, // Opcode: BZ_B 3673/* 4219 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 4234 3674/* 4224 */ MCD::OPC_CheckPredicate, 30, 69, 50, 0, // Skip to: 17098 3675/* 4229 */ MCD::OPC_Decode, 134, 8, 232, 1, // Opcode: BZ_H 3676/* 4234 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 4249 3677/* 4239 */ MCD::OPC_CheckPredicate, 30, 54, 50, 0, // Skip to: 17098 3678/* 4244 */ MCD::OPC_Decode, 136, 8, 233, 1, // Opcode: BZ_W 3679/* 4249 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 4264 3680/* 4254 */ MCD::OPC_CheckPredicate, 30, 39, 50, 0, // Skip to: 17098 3681/* 4259 */ MCD::OPC_Decode, 133, 8, 234, 1, // Opcode: BZ_D 3682/* 4264 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 4279 3683/* 4269 */ MCD::OPC_CheckPredicate, 30, 24, 50, 0, // Skip to: 17098 3684/* 4274 */ MCD::OPC_Decode, 235, 7, 217, 1, // Opcode: BNZ_B 3685/* 4279 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 4294 3686/* 4284 */ MCD::OPC_CheckPredicate, 30, 9, 50, 0, // Skip to: 17098 3687/* 4289 */ MCD::OPC_Decode, 237, 7, 232, 1, // Opcode: BNZ_H 3688/* 4294 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 4309 3689/* 4299 */ MCD::OPC_CheckPredicate, 30, 250, 49, 0, // Skip to: 17098 3690/* 4304 */ MCD::OPC_Decode, 239, 7, 233, 1, // Opcode: BNZ_W 3691/* 4309 */ MCD::OPC_FilterValue, 31, 240, 49, 0, // Skip to: 17098 3692/* 4314 */ MCD::OPC_CheckPredicate, 30, 235, 49, 0, // Skip to: 17098 3693/* 4319 */ MCD::OPC_Decode, 236, 7, 234, 1, // Opcode: BNZ_D 3694/* 4324 */ MCD::OPC_FilterValue, 18, 47, 0, 0, // Skip to: 4376 3695/* 4329 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 3696/* 4332 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4354 3697/* 4337 */ MCD::OPC_CheckPredicate, 27, 212, 49, 0, // Skip to: 17098 3698/* 4342 */ MCD::OPC_CheckField, 3, 8, 0, 205, 49, 0, // Skip to: 17098 3699/* 4349 */ MCD::OPC_Decode, 218, 15, 235, 1, // Opcode: MFC2 3700/* 4354 */ MCD::OPC_FilterValue, 4, 195, 49, 0, // Skip to: 17098 3701/* 4359 */ MCD::OPC_CheckPredicate, 27, 190, 49, 0, // Skip to: 17098 3702/* 4364 */ MCD::OPC_CheckField, 3, 8, 0, 183, 49, 0, // Skip to: 17098 3703/* 4371 */ MCD::OPC_Decode, 234, 16, 236, 1, // Opcode: MTC2 3704/* 4376 */ MCD::OPC_FilterValue, 19, 255, 0, 0, // Skip to: 4636 3705/* 4381 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3706/* 4384 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4406 3707/* 4389 */ MCD::OPC_CheckPredicate, 61, 160, 49, 0, // Skip to: 17098 3708/* 4394 */ MCD::OPC_CheckField, 11, 5, 0, 153, 49, 0, // Skip to: 17098 3709/* 4401 */ MCD::OPC_Decode, 133, 15, 237, 1, // Opcode: LWXC1 3710/* 4406 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4428 3711/* 4411 */ MCD::OPC_CheckPredicate, 62, 138, 49, 0, // Skip to: 17098 3712/* 4416 */ MCD::OPC_CheckField, 11, 5, 0, 131, 49, 0, // Skip to: 17098 3713/* 4423 */ MCD::OPC_Decode, 183, 14, 238, 1, // Opcode: LDXC1 3714/* 4428 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 4450 3715/* 4433 */ MCD::OPC_CheckPredicate, 63, 116, 49, 0, // Skip to: 17098 3716/* 4438 */ MCD::OPC_CheckField, 11, 5, 0, 109, 49, 0, // Skip to: 17098 3717/* 4445 */ MCD::OPC_Decode, 221, 14, 238, 1, // Opcode: LUXC1 3718/* 4450 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 4472 3719/* 4455 */ MCD::OPC_CheckPredicate, 61, 94, 49, 0, // Skip to: 17098 3720/* 4460 */ MCD::OPC_CheckField, 6, 5, 0, 87, 49, 0, // Skip to: 17098 3721/* 4467 */ MCD::OPC_Decode, 164, 21, 239, 1, // Opcode: SWXC1 3722/* 4472 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 4494 3723/* 4477 */ MCD::OPC_CheckPredicate, 62, 72, 49, 0, // Skip to: 17098 3724/* 4482 */ MCD::OPC_CheckField, 6, 5, 0, 65, 49, 0, // Skip to: 17098 3725/* 4489 */ MCD::OPC_Decode, 144, 19, 240, 1, // Opcode: SDXC1 3726/* 4494 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 4516 3727/* 4499 */ MCD::OPC_CheckPredicate, 63, 50, 49, 0, // Skip to: 17098 3728/* 4504 */ MCD::OPC_CheckField, 6, 5, 0, 43, 49, 0, // Skip to: 17098 3729/* 4511 */ MCD::OPC_Decode, 131, 21, 240, 1, // Opcode: SUXC1 3730/* 4516 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 4531 3731/* 4521 */ MCD::OPC_CheckPredicate, 64, 28, 49, 0, // Skip to: 17098 3732/* 4526 */ MCD::OPC_Decode, 174, 15, 241, 1, // Opcode: MADD_S 3733/* 4531 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 4546 3734/* 4536 */ MCD::OPC_CheckPredicate, 65, 13, 49, 0, // Skip to: 17098 3735/* 4541 */ MCD::OPC_Decode, 166, 15, 242, 1, // Opcode: MADD_D32 3736/* 4546 */ MCD::OPC_FilterValue, 40, 10, 0, 0, // Skip to: 4561 3737/* 4551 */ MCD::OPC_CheckPredicate, 64, 254, 48, 0, // Skip to: 17098 3738/* 4556 */ MCD::OPC_Decode, 225, 16, 241, 1, // Opcode: MSUB_S 3739/* 4561 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 4576 3740/* 4566 */ MCD::OPC_CheckPredicate, 65, 239, 48, 0, // Skip to: 17098 3741/* 4571 */ MCD::OPC_Decode, 217, 16, 242, 1, // Opcode: MSUB_D32 3742/* 4576 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 4591 3743/* 4581 */ MCD::OPC_CheckPredicate, 66, 224, 48, 0, // Skip to: 17098 3744/* 4586 */ MCD::OPC_Decode, 203, 17, 241, 1, // Opcode: NMADD_S 3745/* 4591 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 4606 3746/* 4596 */ MCD::OPC_CheckPredicate, 67, 209, 48, 0, // Skip to: 17098 3747/* 4601 */ MCD::OPC_Decode, 200, 17, 242, 1, // Opcode: NMADD_D32 3748/* 4606 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 4621 3749/* 4611 */ MCD::OPC_CheckPredicate, 66, 194, 48, 0, // Skip to: 17098 3750/* 4616 */ MCD::OPC_Decode, 208, 17, 241, 1, // Opcode: NMSUB_S 3751/* 4621 */ MCD::OPC_FilterValue, 57, 184, 48, 0, // Skip to: 17098 3752/* 4626 */ MCD::OPC_CheckPredicate, 67, 179, 48, 0, // Skip to: 17098 3753/* 4631 */ MCD::OPC_Decode, 205, 17, 242, 1, // Opcode: NMSUB_D32 3754/* 4636 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 4651 3755/* 4641 */ MCD::OPC_CheckPredicate, 39, 164, 48, 0, // Skip to: 17098 3756/* 4646 */ MCD::OPC_Decode, 248, 6, 201, 1, // Opcode: BEQL 3757/* 4651 */ MCD::OPC_FilterValue, 21, 107, 0, 0, // Skip to: 4763 3758/* 4656 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... 3759/* 4659 */ MCD::OPC_FilterValue, 123, 9, 0, 0, // Skip to: 4673 3760/* 4664 */ MCD::OPC_CheckPredicate, 19, 19, 0, 0, // Skip to: 4688 3761/* 4669 */ MCD::OPC_Decode, 240, 12, 124, // Opcode: FMOV_S_MM 3762/* 4673 */ MCD::OPC_FilterValue, 251, 22, 9, 0, 0, // Skip to: 4688 3763/* 4679 */ MCD::OPC_CheckPredicate, 19, 4, 0, 0, // Skip to: 4688 3764/* 4684 */ MCD::OPC_Decode, 131, 13, 124, // Opcode: FNEG_S_MM 3765/* 4688 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 3766/* 4691 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 4706 3767/* 4696 */ MCD::OPC_CheckPredicate, 19, 52, 0, 0, // Skip to: 4753 3768/* 4701 */ MCD::OPC_Decode, 150, 12, 164, 1, // Opcode: FADD_S_MM 3769/* 4706 */ MCD::OPC_FilterValue, 112, 10, 0, 0, // Skip to: 4721 3770/* 4711 */ MCD::OPC_CheckPredicate, 19, 37, 0, 0, // Skip to: 4753 3771/* 4716 */ MCD::OPC_Decode, 167, 13, 164, 1, // Opcode: FSUB_S_MM 3772/* 4721 */ MCD::OPC_FilterValue, 176, 1, 10, 0, 0, // Skip to: 4737 3773/* 4727 */ MCD::OPC_CheckPredicate, 19, 21, 0, 0, // Skip to: 4753 3774/* 4732 */ MCD::OPC_Decode, 251, 12, 164, 1, // Opcode: FMUL_S_MM 3775/* 4737 */ MCD::OPC_FilterValue, 240, 1, 10, 0, 0, // Skip to: 4753 3776/* 4743 */ MCD::OPC_CheckPredicate, 19, 5, 0, 0, // Skip to: 4753 3777/* 4748 */ MCD::OPC_Decode, 188, 12, 164, 1, // Opcode: FDIV_S_MM 3778/* 4753 */ MCD::OPC_CheckPredicate, 39, 52, 48, 0, // Skip to: 17098 3779/* 4758 */ MCD::OPC_Decode, 223, 7, 201, 1, // Opcode: BNEL 3780/* 4763 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 4785 3781/* 4768 */ MCD::OPC_CheckPredicate, 39, 37, 48, 0, // Skip to: 17098 3782/* 4773 */ MCD::OPC_CheckField, 16, 5, 0, 30, 48, 0, // Skip to: 17098 3783/* 4780 */ MCD::OPC_Decode, 185, 7, 197, 1, // Opcode: BLEZL 3784/* 4785 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 4807 3785/* 4790 */ MCD::OPC_CheckPredicate, 39, 15, 48, 0, // Skip to: 17098 3786/* 4795 */ MCD::OPC_CheckField, 16, 5, 0, 8, 48, 0, // Skip to: 17098 3787/* 4802 */ MCD::OPC_Decode, 156, 7, 197, 1, // Opcode: BGTZL 3788/* 4807 */ MCD::OPC_FilterValue, 28, 15, 1, 0, // Skip to: 5083 3789/* 4812 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3790/* 4815 */ MCD::OPC_FilterValue, 0, 42, 0, 0, // Skip to: 4862 3791/* 4820 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3792/* 4823 */ MCD::OPC_FilterValue, 0, 238, 47, 0, // Skip to: 17098 3793/* 4828 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3794/* 4831 */ MCD::OPC_FilterValue, 0, 230, 47, 0, // Skip to: 17098 3795/* 4836 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4852 3796/* 4841 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4852 3797/* 4848 */ MCD::OPC_Decode, 151, 15, 80, // Opcode: MADD 3798/* 4852 */ MCD::OPC_CheckPredicate, 37, 209, 47, 0, // Skip to: 17098 3799/* 4857 */ MCD::OPC_Decode, 169, 15, 243, 1, // Opcode: MADD_DSP 3800/* 4862 */ MCD::OPC_FilterValue, 1, 42, 0, 0, // Skip to: 4909 3801/* 4867 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3802/* 4870 */ MCD::OPC_FilterValue, 0, 191, 47, 0, // Skip to: 17098 3803/* 4875 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3804/* 4878 */ MCD::OPC_FilterValue, 0, 183, 47, 0, // Skip to: 17098 3805/* 4883 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4899 3806/* 4888 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4899 3807/* 4895 */ MCD::OPC_Decode, 158, 15, 80, // Opcode: MADDU 3808/* 4899 */ MCD::OPC_CheckPredicate, 37, 162, 47, 0, // Skip to: 17098 3809/* 4904 */ MCD::OPC_Decode, 159, 15, 243, 1, // Opcode: MADDU_DSP 3810/* 4909 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 4930 3811/* 4914 */ MCD::OPC_CheckPredicate, 68, 147, 47, 0, // Skip to: 17098 3812/* 4919 */ MCD::OPC_CheckField, 6, 5, 0, 140, 47, 0, // Skip to: 17098 3813/* 4926 */ MCD::OPC_Decode, 141, 17, 61, // Opcode: MUL 3814/* 4930 */ MCD::OPC_FilterValue, 4, 42, 0, 0, // Skip to: 4977 3815/* 4935 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3816/* 4938 */ MCD::OPC_FilterValue, 0, 123, 47, 0, // Skip to: 17098 3817/* 4943 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3818/* 4946 */ MCD::OPC_FilterValue, 0, 115, 47, 0, // Skip to: 17098 3819/* 4951 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 4967 3820/* 4956 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4967 3821/* 4963 */ MCD::OPC_Decode, 202, 16, 80, // Opcode: MSUB 3822/* 4967 */ MCD::OPC_CheckPredicate, 37, 94, 47, 0, // Skip to: 17098 3823/* 4972 */ MCD::OPC_Decode, 220, 16, 243, 1, // Opcode: MSUB_DSP 3824/* 4977 */ MCD::OPC_FilterValue, 5, 42, 0, 0, // Skip to: 5024 3825/* 4982 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 3826/* 4985 */ MCD::OPC_FilterValue, 0, 76, 47, 0, // Skip to: 17098 3827/* 4990 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... 3828/* 4993 */ MCD::OPC_FilterValue, 0, 68, 47, 0, // Skip to: 17098 3829/* 4998 */ MCD::OPC_CheckPredicate, 68, 11, 0, 0, // Skip to: 5014 3830/* 5003 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 5014 3831/* 5010 */ MCD::OPC_Decode, 209, 16, 80, // Opcode: MSUBU 3832/* 5014 */ MCD::OPC_CheckPredicate, 37, 47, 47, 0, // Skip to: 17098 3833/* 5019 */ MCD::OPC_Decode, 210, 16, 243, 1, // Opcode: MSUBU_DSP 3834/* 5024 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 5046 3835/* 5029 */ MCD::OPC_CheckPredicate, 68, 32, 47, 0, // Skip to: 17098 3836/* 5034 */ MCD::OPC_CheckField, 6, 5, 0, 25, 47, 0, // Skip to: 17098 3837/* 5041 */ MCD::OPC_Decode, 221, 8, 244, 1, // Opcode: CLZ 3838/* 5046 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 5068 3839/* 5051 */ MCD::OPC_CheckPredicate, 68, 10, 47, 0, // Skip to: 17098 3840/* 5056 */ MCD::OPC_CheckField, 6, 5, 0, 3, 47, 0, // Skip to: 17098 3841/* 5063 */ MCD::OPC_Decode, 201, 8, 244, 1, // Opcode: CLO 3842/* 5068 */ MCD::OPC_FilterValue, 63, 249, 46, 0, // Skip to: 17098 3843/* 5073 */ MCD::OPC_CheckPredicate, 68, 244, 46, 0, // Skip to: 17098 3844/* 5078 */ MCD::OPC_Decode, 253, 18, 188, 1, // Opcode: SDBBP 3845/* 5083 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 5098 3846/* 5088 */ MCD::OPC_CheckPredicate, 68, 229, 46, 0, // Skip to: 17098 3847/* 5093 */ MCD::OPC_Decode, 251, 13, 200, 1, // Opcode: JALX 3848/* 5098 */ MCD::OPC_FilterValue, 30, 201, 32, 0, // Skip to: 13496 3849/* 5103 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3850/* 5106 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 5174 3851/* 5111 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... 3852/* 5114 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5129 3853/* 5119 */ MCD::OPC_CheckPredicate, 30, 198, 46, 0, // Skip to: 17098 3854/* 5124 */ MCD::OPC_Decode, 160, 6, 245, 1, // Opcode: ANDI_B 3855/* 5129 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5144 3856/* 5134 */ MCD::OPC_CheckPredicate, 30, 183, 46, 0, // Skip to: 17098 3857/* 5139 */ MCD::OPC_Decode, 224, 17, 245, 1, // Opcode: ORI_B 3858/* 5144 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5159 3859/* 5149 */ MCD::OPC_CheckPredicate, 30, 168, 46, 0, // Skip to: 17098 3860/* 5154 */ MCD::OPC_Decode, 212, 17, 245, 1, // Opcode: NORI_B 3861/* 5159 */ MCD::OPC_FilterValue, 3, 158, 46, 0, // Skip to: 17098 3862/* 5164 */ MCD::OPC_CheckPredicate, 30, 153, 46, 0, // Skip to: 17098 3863/* 5169 */ MCD::OPC_Decode, 150, 22, 245, 1, // Opcode: XORI_B 3864/* 5174 */ MCD::OPC_FilterValue, 1, 48, 0, 0, // Skip to: 5227 3865/* 5179 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... 3866/* 5182 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5197 3867/* 5187 */ MCD::OPC_CheckPredicate, 30, 130, 46, 0, // Skip to: 17098 3868/* 5192 */ MCD::OPC_Decode, 206, 7, 246, 1, // Opcode: BMNZI_B 3869/* 5197 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5212 3870/* 5202 */ MCD::OPC_CheckPredicate, 30, 115, 46, 0, // Skip to: 17098 3871/* 5207 */ MCD::OPC_Decode, 208, 7, 246, 1, // Opcode: BMZI_B 3872/* 5212 */ MCD::OPC_FilterValue, 2, 105, 46, 0, // Skip to: 17098 3873/* 5217 */ MCD::OPC_CheckPredicate, 30, 100, 46, 0, // Skip to: 17098 3874/* 5222 */ MCD::OPC_Decode, 250, 7, 246, 1, // Opcode: BSELI_B 3875/* 5227 */ MCD::OPC_FilterValue, 2, 48, 0, 0, // Skip to: 5280 3876/* 5232 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... 3877/* 5235 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5250 3878/* 5240 */ MCD::OPC_CheckPredicate, 30, 77, 46, 0, // Skip to: 17098 3879/* 5245 */ MCD::OPC_Decode, 178, 19, 245, 1, // Opcode: SHF_B 3880/* 5250 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5265 3881/* 5255 */ MCD::OPC_CheckPredicate, 30, 62, 46, 0, // Skip to: 17098 3882/* 5260 */ MCD::OPC_Decode, 179, 19, 247, 1, // Opcode: SHF_H 3883/* 5265 */ MCD::OPC_FilterValue, 2, 52, 46, 0, // Skip to: 17098 3884/* 5270 */ MCD::OPC_CheckPredicate, 30, 47, 46, 0, // Skip to: 17098 3885/* 5275 */ MCD::OPC_Decode, 180, 19, 248, 1, // Opcode: SHF_W 3886/* 5280 */ MCD::OPC_FilterValue, 6, 107, 1, 0, // Skip to: 5648 3887/* 5285 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 3888/* 5288 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5303 3889/* 5293 */ MCD::OPC_CheckPredicate, 30, 24, 46, 0, // Skip to: 17098 3890/* 5298 */ MCD::OPC_Decode, 128, 6, 249, 1, // Opcode: ADDVI_B 3891/* 5303 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5318 3892/* 5308 */ MCD::OPC_CheckPredicate, 30, 9, 46, 0, // Skip to: 17098 3893/* 5313 */ MCD::OPC_Decode, 130, 6, 250, 1, // Opcode: ADDVI_H 3894/* 5318 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5333 3895/* 5323 */ MCD::OPC_CheckPredicate, 30, 250, 45, 0, // Skip to: 17098 3896/* 5328 */ MCD::OPC_Decode, 131, 6, 251, 1, // Opcode: ADDVI_W 3897/* 5333 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5348 3898/* 5338 */ MCD::OPC_CheckPredicate, 30, 235, 45, 0, // Skip to: 17098 3899/* 5343 */ MCD::OPC_Decode, 129, 6, 252, 1, // Opcode: ADDVI_D 3900/* 5348 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 5363 3901/* 5353 */ MCD::OPC_CheckPredicate, 30, 220, 45, 0, // Skip to: 17098 3902/* 5358 */ MCD::OPC_Decode, 247, 20, 249, 1, // Opcode: SUBVI_B 3903/* 5363 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 5378 3904/* 5368 */ MCD::OPC_CheckPredicate, 30, 205, 45, 0, // Skip to: 17098 3905/* 5373 */ MCD::OPC_Decode, 249, 20, 250, 1, // Opcode: SUBVI_H 3906/* 5378 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 5393 3907/* 5383 */ MCD::OPC_CheckPredicate, 30, 190, 45, 0, // Skip to: 17098 3908/* 5388 */ MCD::OPC_Decode, 250, 20, 251, 1, // Opcode: SUBVI_W 3909/* 5393 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 5408 3910/* 5398 */ MCD::OPC_CheckPredicate, 30, 175, 45, 0, // Skip to: 17098 3911/* 5403 */ MCD::OPC_Decode, 248, 20, 252, 1, // Opcode: SUBVI_D 3912/* 5408 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5423 3913/* 5413 */ MCD::OPC_CheckPredicate, 30, 160, 45, 0, // Skip to: 17098 3914/* 5418 */ MCD::OPC_Decode, 188, 15, 249, 1, // Opcode: MAXI_S_B 3915/* 5423 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5438 3916/* 5428 */ MCD::OPC_CheckPredicate, 30, 145, 45, 0, // Skip to: 17098 3917/* 5433 */ MCD::OPC_Decode, 190, 15, 250, 1, // Opcode: MAXI_S_H 3918/* 5438 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5453 3919/* 5443 */ MCD::OPC_CheckPredicate, 30, 130, 45, 0, // Skip to: 17098 3920/* 5448 */ MCD::OPC_Decode, 191, 15, 251, 1, // Opcode: MAXI_S_W 3921/* 5453 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5468 3922/* 5458 */ MCD::OPC_CheckPredicate, 30, 115, 45, 0, // Skip to: 17098 3923/* 5463 */ MCD::OPC_Decode, 189, 15, 252, 1, // Opcode: MAXI_S_D 3924/* 5468 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5483 3925/* 5473 */ MCD::OPC_CheckPredicate, 30, 100, 45, 0, // Skip to: 17098 3926/* 5478 */ MCD::OPC_Decode, 192, 15, 249, 1, // Opcode: MAXI_U_B 3927/* 5483 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5498 3928/* 5488 */ MCD::OPC_CheckPredicate, 30, 85, 45, 0, // Skip to: 17098 3929/* 5493 */ MCD::OPC_Decode, 194, 15, 250, 1, // Opcode: MAXI_U_H 3930/* 5498 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5513 3931/* 5503 */ MCD::OPC_CheckPredicate, 30, 70, 45, 0, // Skip to: 17098 3932/* 5508 */ MCD::OPC_Decode, 195, 15, 251, 1, // Opcode: MAXI_U_W 3933/* 5513 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5528 3934/* 5518 */ MCD::OPC_CheckPredicate, 30, 55, 45, 0, // Skip to: 17098 3935/* 5523 */ MCD::OPC_Decode, 193, 15, 252, 1, // Opcode: MAXI_U_D 3936/* 5528 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5543 3937/* 5533 */ MCD::OPC_CheckPredicate, 30, 40, 45, 0, // Skip to: 17098 3938/* 5538 */ MCD::OPC_Decode, 247, 15, 249, 1, // Opcode: MINI_S_B 3939/* 5543 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5558 3940/* 5548 */ MCD::OPC_CheckPredicate, 30, 25, 45, 0, // Skip to: 17098 3941/* 5553 */ MCD::OPC_Decode, 249, 15, 250, 1, // Opcode: MINI_S_H 3942/* 5558 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5573 3943/* 5563 */ MCD::OPC_CheckPredicate, 30, 10, 45, 0, // Skip to: 17098 3944/* 5568 */ MCD::OPC_Decode, 250, 15, 251, 1, // Opcode: MINI_S_W 3945/* 5573 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5588 3946/* 5578 */ MCD::OPC_CheckPredicate, 30, 251, 44, 0, // Skip to: 17098 3947/* 5583 */ MCD::OPC_Decode, 248, 15, 252, 1, // Opcode: MINI_S_D 3948/* 5588 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5603 3949/* 5593 */ MCD::OPC_CheckPredicate, 30, 236, 44, 0, // Skip to: 17098 3950/* 5598 */ MCD::OPC_Decode, 251, 15, 249, 1, // Opcode: MINI_U_B 3951/* 5603 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5618 3952/* 5608 */ MCD::OPC_CheckPredicate, 30, 221, 44, 0, // Skip to: 17098 3953/* 5613 */ MCD::OPC_Decode, 253, 15, 250, 1, // Opcode: MINI_U_H 3954/* 5618 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5633 3955/* 5623 */ MCD::OPC_CheckPredicate, 30, 206, 44, 0, // Skip to: 17098 3956/* 5628 */ MCD::OPC_Decode, 254, 15, 251, 1, // Opcode: MINI_U_W 3957/* 5633 */ MCD::OPC_FilterValue, 23, 196, 44, 0, // Skip to: 17098 3958/* 5638 */ MCD::OPC_CheckPredicate, 30, 191, 44, 0, // Skip to: 17098 3959/* 5643 */ MCD::OPC_Decode, 252, 15, 252, 1, // Opcode: MINI_U_D 3960/* 5648 */ MCD::OPC_FilterValue, 7, 107, 1, 0, // Skip to: 6016 3961/* 5653 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 3962/* 5656 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5671 3963/* 5661 */ MCD::OPC_CheckPredicate, 30, 168, 44, 0, // Skip to: 17098 3964/* 5666 */ MCD::OPC_Decode, 165, 8, 249, 1, // Opcode: CEQI_B 3965/* 5671 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 5686 3966/* 5676 */ MCD::OPC_CheckPredicate, 30, 153, 44, 0, // Skip to: 17098 3967/* 5681 */ MCD::OPC_Decode, 167, 8, 250, 1, // Opcode: CEQI_H 3968/* 5686 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 5701 3969/* 5691 */ MCD::OPC_CheckPredicate, 30, 138, 44, 0, // Skip to: 17098 3970/* 5696 */ MCD::OPC_Decode, 168, 8, 251, 1, // Opcode: CEQI_W 3971/* 5701 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 5716 3972/* 5706 */ MCD::OPC_CheckPredicate, 30, 123, 44, 0, // Skip to: 17098 3973/* 5711 */ MCD::OPC_Decode, 166, 8, 252, 1, // Opcode: CEQI_D 3974/* 5716 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 5731 3975/* 5721 */ MCD::OPC_CheckPredicate, 30, 108, 44, 0, // Skip to: 17098 3976/* 5726 */ MCD::OPC_Decode, 205, 8, 249, 1, // Opcode: CLTI_S_B 3977/* 5731 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 5746 3978/* 5736 */ MCD::OPC_CheckPredicate, 30, 93, 44, 0, // Skip to: 17098 3979/* 5741 */ MCD::OPC_Decode, 207, 8, 250, 1, // Opcode: CLTI_S_H 3980/* 5746 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 5761 3981/* 5751 */ MCD::OPC_CheckPredicate, 30, 78, 44, 0, // Skip to: 17098 3982/* 5756 */ MCD::OPC_Decode, 208, 8, 251, 1, // Opcode: CLTI_S_W 3983/* 5761 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 5776 3984/* 5766 */ MCD::OPC_CheckPredicate, 30, 63, 44, 0, // Skip to: 17098 3985/* 5771 */ MCD::OPC_Decode, 206, 8, 252, 1, // Opcode: CLTI_S_D 3986/* 5776 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 5791 3987/* 5781 */ MCD::OPC_CheckPredicate, 30, 48, 44, 0, // Skip to: 17098 3988/* 5786 */ MCD::OPC_Decode, 209, 8, 249, 1, // Opcode: CLTI_U_B 3989/* 5791 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5806 3990/* 5796 */ MCD::OPC_CheckPredicate, 30, 33, 44, 0, // Skip to: 17098 3991/* 5801 */ MCD::OPC_Decode, 211, 8, 250, 1, // Opcode: CLTI_U_H 3992/* 5806 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 5821 3993/* 5811 */ MCD::OPC_CheckPredicate, 30, 18, 44, 0, // Skip to: 17098 3994/* 5816 */ MCD::OPC_Decode, 212, 8, 251, 1, // Opcode: CLTI_U_W 3995/* 5821 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5836 3996/* 5826 */ MCD::OPC_CheckPredicate, 30, 3, 44, 0, // Skip to: 17098 3997/* 5831 */ MCD::OPC_Decode, 210, 8, 252, 1, // Opcode: CLTI_U_D 3998/* 5836 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 5851 3999/* 5841 */ MCD::OPC_CheckPredicate, 30, 244, 43, 0, // Skip to: 17098 4000/* 5846 */ MCD::OPC_Decode, 185, 8, 249, 1, // Opcode: CLEI_S_B 4001/* 5851 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 5866 4002/* 5856 */ MCD::OPC_CheckPredicate, 30, 229, 43, 0, // Skip to: 17098 4003/* 5861 */ MCD::OPC_Decode, 187, 8, 250, 1, // Opcode: CLEI_S_H 4004/* 5866 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 5881 4005/* 5871 */ MCD::OPC_CheckPredicate, 30, 214, 43, 0, // Skip to: 17098 4006/* 5876 */ MCD::OPC_Decode, 188, 8, 251, 1, // Opcode: CLEI_S_W 4007/* 5881 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 5896 4008/* 5886 */ MCD::OPC_CheckPredicate, 30, 199, 43, 0, // Skip to: 17098 4009/* 5891 */ MCD::OPC_Decode, 186, 8, 252, 1, // Opcode: CLEI_S_D 4010/* 5896 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 5911 4011/* 5901 */ MCD::OPC_CheckPredicate, 30, 184, 43, 0, // Skip to: 17098 4012/* 5906 */ MCD::OPC_Decode, 189, 8, 249, 1, // Opcode: CLEI_U_B 4013/* 5911 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 5926 4014/* 5916 */ MCD::OPC_CheckPredicate, 30, 169, 43, 0, // Skip to: 17098 4015/* 5921 */ MCD::OPC_Decode, 191, 8, 250, 1, // Opcode: CLEI_U_H 4016/* 5926 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 5941 4017/* 5931 */ MCD::OPC_CheckPredicate, 30, 154, 43, 0, // Skip to: 17098 4018/* 5936 */ MCD::OPC_Decode, 192, 8, 251, 1, // Opcode: CLEI_U_W 4019/* 5941 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 5956 4020/* 5946 */ MCD::OPC_CheckPredicate, 30, 139, 43, 0, // Skip to: 17098 4021/* 5951 */ MCD::OPC_Decode, 190, 8, 252, 1, // Opcode: CLEI_U_D 4022/* 5956 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 5971 4023/* 5961 */ MCD::OPC_CheckPredicate, 30, 124, 43, 0, // Skip to: 17098 4024/* 5966 */ MCD::OPC_Decode, 176, 14, 253, 1, // Opcode: LDI_B 4025/* 5971 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 5986 4026/* 5976 */ MCD::OPC_CheckPredicate, 30, 109, 43, 0, // Skip to: 17098 4027/* 5981 */ MCD::OPC_Decode, 178, 14, 254, 1, // Opcode: LDI_H 4028/* 5986 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 6001 4029/* 5991 */ MCD::OPC_CheckPredicate, 30, 94, 43, 0, // Skip to: 17098 4030/* 5996 */ MCD::OPC_Decode, 179, 14, 255, 1, // Opcode: LDI_W 4031/* 6001 */ MCD::OPC_FilterValue, 27, 84, 43, 0, // Skip to: 17098 4032/* 6006 */ MCD::OPC_CheckPredicate, 30, 79, 43, 0, // Skip to: 17098 4033/* 6011 */ MCD::OPC_Decode, 177, 14, 128, 2, // Opcode: LDI_D 4034/* 6016 */ MCD::OPC_FilterValue, 9, 155, 2, 0, // Skip to: 6688 4035/* 6021 */ MCD::OPC_ExtractField, 22, 4, // Inst{25-22} ... 4036/* 6024 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6039 4037/* 6029 */ MCD::OPC_CheckPredicate, 30, 56, 43, 0, // Skip to: 17098 4038/* 6034 */ MCD::OPC_Decode, 247, 19, 129, 2, // Opcode: SLLI_D 4039/* 6039 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 6107 4040/* 6044 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4041/* 6047 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6062 4042/* 6052 */ MCD::OPC_CheckPredicate, 30, 33, 43, 0, // Skip to: 17098 4043/* 6057 */ MCD::OPC_Decode, 249, 19, 251, 1, // Opcode: SLLI_W 4044/* 6062 */ MCD::OPC_FilterValue, 1, 23, 43, 0, // Skip to: 17098 4045/* 6067 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4046/* 6070 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6085 4047/* 6075 */ MCD::OPC_CheckPredicate, 30, 10, 43, 0, // Skip to: 17098 4048/* 6080 */ MCD::OPC_Decode, 248, 19, 130, 2, // Opcode: SLLI_H 4049/* 6085 */ MCD::OPC_FilterValue, 1, 0, 43, 0, // Skip to: 17098 4050/* 6090 */ MCD::OPC_CheckPredicate, 30, 251, 42, 0, // Skip to: 17098 4051/* 6095 */ MCD::OPC_CheckField, 19, 1, 0, 244, 42, 0, // Skip to: 17098 4052/* 6102 */ MCD::OPC_Decode, 246, 19, 131, 2, // Opcode: SLLI_B 4053/* 6107 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6122 4054/* 6112 */ MCD::OPC_CheckPredicate, 30, 229, 42, 0, // Skip to: 17098 4055/* 6117 */ MCD::OPC_Decode, 154, 20, 129, 2, // Opcode: SRAI_D 4056/* 6122 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 6190 4057/* 6127 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4058/* 6130 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6145 4059/* 6135 */ MCD::OPC_CheckPredicate, 30, 206, 42, 0, // Skip to: 17098 4060/* 6140 */ MCD::OPC_Decode, 156, 20, 251, 1, // Opcode: SRAI_W 4061/* 6145 */ MCD::OPC_FilterValue, 1, 196, 42, 0, // Skip to: 17098 4062/* 6150 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4063/* 6153 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6168 4064/* 6158 */ MCD::OPC_CheckPredicate, 30, 183, 42, 0, // Skip to: 17098 4065/* 6163 */ MCD::OPC_Decode, 155, 20, 130, 2, // Opcode: SRAI_H 4066/* 6168 */ MCD::OPC_FilterValue, 1, 173, 42, 0, // Skip to: 17098 4067/* 6173 */ MCD::OPC_CheckPredicate, 30, 168, 42, 0, // Skip to: 17098 4068/* 6178 */ MCD::OPC_CheckField, 19, 1, 0, 161, 42, 0, // Skip to: 17098 4069/* 6185 */ MCD::OPC_Decode, 153, 20, 131, 2, // Opcode: SRAI_B 4070/* 6190 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6205 4071/* 6195 */ MCD::OPC_CheckPredicate, 30, 146, 42, 0, // Skip to: 17098 4072/* 6200 */ MCD::OPC_Decode, 176, 20, 129, 2, // Opcode: SRLI_D 4073/* 6205 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 6273 4074/* 6210 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4075/* 6213 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6228 4076/* 6218 */ MCD::OPC_CheckPredicate, 30, 123, 42, 0, // Skip to: 17098 4077/* 6223 */ MCD::OPC_Decode, 178, 20, 251, 1, // Opcode: SRLI_W 4078/* 6228 */ MCD::OPC_FilterValue, 1, 113, 42, 0, // Skip to: 17098 4079/* 6233 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4080/* 6236 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6251 4081/* 6241 */ MCD::OPC_CheckPredicate, 30, 100, 42, 0, // Skip to: 17098 4082/* 6246 */ MCD::OPC_Decode, 177, 20, 130, 2, // Opcode: SRLI_H 4083/* 6251 */ MCD::OPC_FilterValue, 1, 90, 42, 0, // Skip to: 17098 4084/* 6256 */ MCD::OPC_CheckPredicate, 30, 85, 42, 0, // Skip to: 17098 4085/* 6261 */ MCD::OPC_CheckField, 19, 1, 0, 78, 42, 0, // Skip to: 17098 4086/* 6268 */ MCD::OPC_Decode, 175, 20, 131, 2, // Opcode: SRLI_B 4087/* 6273 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6288 4088/* 6278 */ MCD::OPC_CheckPredicate, 30, 63, 42, 0, // Skip to: 17098 4089/* 6283 */ MCD::OPC_Decode, 235, 6, 129, 2, // Opcode: BCLRI_D 4090/* 6288 */ MCD::OPC_FilterValue, 7, 63, 0, 0, // Skip to: 6356 4091/* 6293 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4092/* 6296 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6311 4093/* 6301 */ MCD::OPC_CheckPredicate, 30, 40, 42, 0, // Skip to: 17098 4094/* 6306 */ MCD::OPC_Decode, 237, 6, 251, 1, // Opcode: BCLRI_W 4095/* 6311 */ MCD::OPC_FilterValue, 1, 30, 42, 0, // Skip to: 17098 4096/* 6316 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4097/* 6319 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6334 4098/* 6324 */ MCD::OPC_CheckPredicate, 30, 17, 42, 0, // Skip to: 17098 4099/* 6329 */ MCD::OPC_Decode, 236, 6, 130, 2, // Opcode: BCLRI_H 4100/* 6334 */ MCD::OPC_FilterValue, 1, 7, 42, 0, // Skip to: 17098 4101/* 6339 */ MCD::OPC_CheckPredicate, 30, 2, 42, 0, // Skip to: 17098 4102/* 6344 */ MCD::OPC_CheckField, 19, 1, 0, 251, 41, 0, // Skip to: 17098 4103/* 6351 */ MCD::OPC_Decode, 234, 6, 131, 2, // Opcode: BCLRI_B 4104/* 6356 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 6371 4105/* 6361 */ MCD::OPC_CheckPredicate, 30, 236, 41, 0, // Skip to: 17098 4106/* 6366 */ MCD::OPC_Decode, 253, 7, 129, 2, // Opcode: BSETI_D 4107/* 6371 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 6439 4108/* 6376 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4109/* 6379 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6394 4110/* 6384 */ MCD::OPC_CheckPredicate, 30, 213, 41, 0, // Skip to: 17098 4111/* 6389 */ MCD::OPC_Decode, 255, 7, 251, 1, // Opcode: BSETI_W 4112/* 6394 */ MCD::OPC_FilterValue, 1, 203, 41, 0, // Skip to: 17098 4113/* 6399 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4114/* 6402 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6417 4115/* 6407 */ MCD::OPC_CheckPredicate, 30, 190, 41, 0, // Skip to: 17098 4116/* 6412 */ MCD::OPC_Decode, 254, 7, 130, 2, // Opcode: BSETI_H 4117/* 6417 */ MCD::OPC_FilterValue, 1, 180, 41, 0, // Skip to: 17098 4118/* 6422 */ MCD::OPC_CheckPredicate, 30, 175, 41, 0, // Skip to: 17098 4119/* 6427 */ MCD::OPC_CheckField, 19, 1, 0, 168, 41, 0, // Skip to: 17098 4120/* 6434 */ MCD::OPC_Decode, 252, 7, 131, 2, // Opcode: BSETI_B 4121/* 6439 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 6454 4122/* 6444 */ MCD::OPC_CheckPredicate, 30, 153, 41, 0, // Skip to: 17098 4123/* 6449 */ MCD::OPC_Decode, 216, 7, 129, 2, // Opcode: BNEGI_D 4124/* 6454 */ MCD::OPC_FilterValue, 11, 63, 0, 0, // Skip to: 6522 4125/* 6459 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4126/* 6462 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6477 4127/* 6467 */ MCD::OPC_CheckPredicate, 30, 130, 41, 0, // Skip to: 17098 4128/* 6472 */ MCD::OPC_Decode, 218, 7, 251, 1, // Opcode: BNEGI_W 4129/* 6477 */ MCD::OPC_FilterValue, 1, 120, 41, 0, // Skip to: 17098 4130/* 6482 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4131/* 6485 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6500 4132/* 6490 */ MCD::OPC_CheckPredicate, 30, 107, 41, 0, // Skip to: 17098 4133/* 6495 */ MCD::OPC_Decode, 217, 7, 130, 2, // Opcode: BNEGI_H 4134/* 6500 */ MCD::OPC_FilterValue, 1, 97, 41, 0, // Skip to: 17098 4135/* 6505 */ MCD::OPC_CheckPredicate, 30, 92, 41, 0, // Skip to: 17098 4136/* 6510 */ MCD::OPC_CheckField, 19, 1, 0, 85, 41, 0, // Skip to: 17098 4137/* 6517 */ MCD::OPC_Decode, 215, 7, 131, 2, // Opcode: BNEGI_B 4138/* 6522 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 6537 4139/* 6527 */ MCD::OPC_CheckPredicate, 30, 70, 41, 0, // Skip to: 17098 4140/* 6532 */ MCD::OPC_Decode, 159, 7, 132, 2, // Opcode: BINSLI_D 4141/* 6537 */ MCD::OPC_FilterValue, 13, 63, 0, 0, // Skip to: 6605 4142/* 6542 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4143/* 6545 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6560 4144/* 6550 */ MCD::OPC_CheckPredicate, 30, 47, 41, 0, // Skip to: 17098 4145/* 6555 */ MCD::OPC_Decode, 161, 7, 133, 2, // Opcode: BINSLI_W 4146/* 6560 */ MCD::OPC_FilterValue, 1, 37, 41, 0, // Skip to: 17098 4147/* 6565 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4148/* 6568 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6583 4149/* 6573 */ MCD::OPC_CheckPredicate, 30, 24, 41, 0, // Skip to: 17098 4150/* 6578 */ MCD::OPC_Decode, 160, 7, 134, 2, // Opcode: BINSLI_H 4151/* 6583 */ MCD::OPC_FilterValue, 1, 14, 41, 0, // Skip to: 17098 4152/* 6588 */ MCD::OPC_CheckPredicate, 30, 9, 41, 0, // Skip to: 17098 4153/* 6593 */ MCD::OPC_CheckField, 19, 1, 0, 2, 41, 0, // Skip to: 17098 4154/* 6600 */ MCD::OPC_Decode, 158, 7, 135, 2, // Opcode: BINSLI_B 4155/* 6605 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6620 4156/* 6610 */ MCD::OPC_CheckPredicate, 30, 243, 40, 0, // Skip to: 17098 4157/* 6615 */ MCD::OPC_Decode, 167, 7, 132, 2, // Opcode: BINSRI_D 4158/* 6620 */ MCD::OPC_FilterValue, 15, 233, 40, 0, // Skip to: 17098 4159/* 6625 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4160/* 6628 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6643 4161/* 6633 */ MCD::OPC_CheckPredicate, 30, 220, 40, 0, // Skip to: 17098 4162/* 6638 */ MCD::OPC_Decode, 169, 7, 133, 2, // Opcode: BINSRI_W 4163/* 6643 */ MCD::OPC_FilterValue, 1, 210, 40, 0, // Skip to: 17098 4164/* 6648 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4165/* 6651 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6666 4166/* 6656 */ MCD::OPC_CheckPredicate, 30, 197, 40, 0, // Skip to: 17098 4167/* 6661 */ MCD::OPC_Decode, 168, 7, 134, 2, // Opcode: BINSRI_H 4168/* 6666 */ MCD::OPC_FilterValue, 1, 187, 40, 0, // Skip to: 17098 4169/* 6671 */ MCD::OPC_CheckPredicate, 30, 182, 40, 0, // Skip to: 17098 4170/* 6676 */ MCD::OPC_CheckField, 19, 1, 0, 175, 40, 0, // Skip to: 17098 4171/* 6683 */ MCD::OPC_Decode, 166, 7, 135, 2, // Opcode: BINSRI_B 4172/* 6688 */ MCD::OPC_FilterValue, 10, 79, 1, 0, // Skip to: 7028 4173/* 6693 */ MCD::OPC_ExtractField, 22, 4, // Inst{25-22} ... 4174/* 6696 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6711 4175/* 6701 */ MCD::OPC_CheckPredicate, 30, 152, 40, 0, // Skip to: 17098 4176/* 6706 */ MCD::OPC_Decode, 227, 18, 129, 2, // Opcode: SAT_S_D 4177/* 6711 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 6779 4178/* 6716 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4179/* 6719 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6734 4180/* 6724 */ MCD::OPC_CheckPredicate, 30, 129, 40, 0, // Skip to: 17098 4181/* 6729 */ MCD::OPC_Decode, 229, 18, 251, 1, // Opcode: SAT_S_W 4182/* 6734 */ MCD::OPC_FilterValue, 1, 119, 40, 0, // Skip to: 17098 4183/* 6739 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4184/* 6742 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6757 4185/* 6747 */ MCD::OPC_CheckPredicate, 30, 106, 40, 0, // Skip to: 17098 4186/* 6752 */ MCD::OPC_Decode, 228, 18, 130, 2, // Opcode: SAT_S_H 4187/* 6757 */ MCD::OPC_FilterValue, 1, 96, 40, 0, // Skip to: 17098 4188/* 6762 */ MCD::OPC_CheckPredicate, 30, 91, 40, 0, // Skip to: 17098 4189/* 6767 */ MCD::OPC_CheckField, 19, 1, 0, 84, 40, 0, // Skip to: 17098 4190/* 6774 */ MCD::OPC_Decode, 226, 18, 131, 2, // Opcode: SAT_S_B 4191/* 6779 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6794 4192/* 6784 */ MCD::OPC_CheckPredicate, 30, 69, 40, 0, // Skip to: 17098 4193/* 6789 */ MCD::OPC_Decode, 231, 18, 129, 2, // Opcode: SAT_U_D 4194/* 6794 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 6862 4195/* 6799 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4196/* 6802 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6817 4197/* 6807 */ MCD::OPC_CheckPredicate, 30, 46, 40, 0, // Skip to: 17098 4198/* 6812 */ MCD::OPC_Decode, 233, 18, 251, 1, // Opcode: SAT_U_W 4199/* 6817 */ MCD::OPC_FilterValue, 1, 36, 40, 0, // Skip to: 17098 4200/* 6822 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4201/* 6825 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6840 4202/* 6830 */ MCD::OPC_CheckPredicate, 30, 23, 40, 0, // Skip to: 17098 4203/* 6835 */ MCD::OPC_Decode, 232, 18, 130, 2, // Opcode: SAT_U_H 4204/* 6840 */ MCD::OPC_FilterValue, 1, 13, 40, 0, // Skip to: 17098 4205/* 6845 */ MCD::OPC_CheckPredicate, 30, 8, 40, 0, // Skip to: 17098 4206/* 6850 */ MCD::OPC_CheckField, 19, 1, 0, 1, 40, 0, // Skip to: 17098 4207/* 6857 */ MCD::OPC_Decode, 230, 18, 131, 2, // Opcode: SAT_U_B 4208/* 6862 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 6877 4209/* 6867 */ MCD::OPC_CheckPredicate, 30, 242, 39, 0, // Skip to: 17098 4210/* 6872 */ MCD::OPC_Decode, 158, 20, 129, 2, // Opcode: SRARI_D 4211/* 6877 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 6945 4212/* 6882 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4213/* 6885 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6900 4214/* 6890 */ MCD::OPC_CheckPredicate, 30, 219, 39, 0, // Skip to: 17098 4215/* 6895 */ MCD::OPC_Decode, 160, 20, 251, 1, // Opcode: SRARI_W 4216/* 6900 */ MCD::OPC_FilterValue, 1, 209, 39, 0, // Skip to: 17098 4217/* 6905 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4218/* 6908 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6923 4219/* 6913 */ MCD::OPC_CheckPredicate, 30, 196, 39, 0, // Skip to: 17098 4220/* 6918 */ MCD::OPC_Decode, 159, 20, 130, 2, // Opcode: SRARI_H 4221/* 6923 */ MCD::OPC_FilterValue, 1, 186, 39, 0, // Skip to: 17098 4222/* 6928 */ MCD::OPC_CheckPredicate, 30, 181, 39, 0, // Skip to: 17098 4223/* 6933 */ MCD::OPC_CheckField, 19, 1, 0, 174, 39, 0, // Skip to: 17098 4224/* 6940 */ MCD::OPC_Decode, 157, 20, 131, 2, // Opcode: SRARI_B 4225/* 6945 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 6960 4226/* 6950 */ MCD::OPC_CheckPredicate, 30, 159, 39, 0, // Skip to: 17098 4227/* 6955 */ MCD::OPC_Decode, 180, 20, 129, 2, // Opcode: SRLRI_D 4228/* 6960 */ MCD::OPC_FilterValue, 7, 149, 39, 0, // Skip to: 17098 4229/* 6965 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 4230/* 6968 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6983 4231/* 6973 */ MCD::OPC_CheckPredicate, 30, 136, 39, 0, // Skip to: 17098 4232/* 6978 */ MCD::OPC_Decode, 182, 20, 251, 1, // Opcode: SRLRI_W 4233/* 6983 */ MCD::OPC_FilterValue, 1, 126, 39, 0, // Skip to: 17098 4234/* 6988 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4235/* 6991 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7006 4236/* 6996 */ MCD::OPC_CheckPredicate, 30, 113, 39, 0, // Skip to: 17098 4237/* 7001 */ MCD::OPC_Decode, 181, 20, 130, 2, // Opcode: SRLRI_H 4238/* 7006 */ MCD::OPC_FilterValue, 1, 103, 39, 0, // Skip to: 17098 4239/* 7011 */ MCD::OPC_CheckPredicate, 30, 98, 39, 0, // Skip to: 17098 4240/* 7016 */ MCD::OPC_CheckField, 19, 1, 0, 91, 39, 0, // Skip to: 17098 4241/* 7023 */ MCD::OPC_Decode, 179, 20, 131, 2, // Opcode: SRLRI_B 4242/* 7028 */ MCD::OPC_FilterValue, 13, 227, 1, 0, // Skip to: 7516 4243/* 7033 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4244/* 7036 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7051 4245/* 7041 */ MCD::OPC_CheckPredicate, 30, 68, 39, 0, // Skip to: 17098 4246/* 7046 */ MCD::OPC_Decode, 252, 19, 136, 2, // Opcode: SLL_B 4247/* 7051 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7066 4248/* 7056 */ MCD::OPC_CheckPredicate, 30, 53, 39, 0, // Skip to: 17098 4249/* 7061 */ MCD::OPC_Decode, 254, 19, 137, 2, // Opcode: SLL_H 4250/* 7066 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7081 4251/* 7071 */ MCD::OPC_CheckPredicate, 30, 38, 39, 0, // Skip to: 17098 4252/* 7076 */ MCD::OPC_Decode, 129, 20, 138, 2, // Opcode: SLL_W 4253/* 7081 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7096 4254/* 7086 */ MCD::OPC_CheckPredicate, 30, 23, 39, 0, // Skip to: 17098 4255/* 7091 */ MCD::OPC_Decode, 253, 19, 139, 2, // Opcode: SLL_D 4256/* 7096 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 7111 4257/* 7101 */ MCD::OPC_CheckPredicate, 30, 8, 39, 0, // Skip to: 17098 4258/* 7106 */ MCD::OPC_Decode, 167, 20, 136, 2, // Opcode: SRA_B 4259/* 7111 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 7126 4260/* 7116 */ MCD::OPC_CheckPredicate, 30, 249, 38, 0, // Skip to: 17098 4261/* 7121 */ MCD::OPC_Decode, 169, 20, 137, 2, // Opcode: SRA_H 4262/* 7126 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 7141 4263/* 7131 */ MCD::OPC_CheckPredicate, 30, 234, 38, 0, // Skip to: 17098 4264/* 7136 */ MCD::OPC_Decode, 171, 20, 138, 2, // Opcode: SRA_W 4265/* 7141 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 7156 4266/* 7146 */ MCD::OPC_CheckPredicate, 30, 219, 38, 0, // Skip to: 17098 4267/* 7151 */ MCD::OPC_Decode, 168, 20, 139, 2, // Opcode: SRA_D 4268/* 7156 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 7171 4269/* 7161 */ MCD::OPC_CheckPredicate, 30, 204, 38, 0, // Skip to: 17098 4270/* 7166 */ MCD::OPC_Decode, 189, 20, 136, 2, // Opcode: SRL_B 4271/* 7171 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 7186 4272/* 7176 */ MCD::OPC_CheckPredicate, 30, 189, 38, 0, // Skip to: 17098 4273/* 7181 */ MCD::OPC_Decode, 191, 20, 137, 2, // Opcode: SRL_H 4274/* 7186 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 7201 4275/* 7191 */ MCD::OPC_CheckPredicate, 30, 174, 38, 0, // Skip to: 17098 4276/* 7196 */ MCD::OPC_Decode, 193, 20, 138, 2, // Opcode: SRL_W 4277/* 7201 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 7216 4278/* 7206 */ MCD::OPC_CheckPredicate, 30, 159, 38, 0, // Skip to: 17098 4279/* 7211 */ MCD::OPC_Decode, 190, 20, 139, 2, // Opcode: SRL_D 4280/* 7216 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 7231 4281/* 7221 */ MCD::OPC_CheckPredicate, 30, 144, 38, 0, // Skip to: 17098 4282/* 7226 */ MCD::OPC_Decode, 238, 6, 136, 2, // Opcode: BCLR_B 4283/* 7231 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 7246 4284/* 7236 */ MCD::OPC_CheckPredicate, 30, 129, 38, 0, // Skip to: 17098 4285/* 7241 */ MCD::OPC_Decode, 240, 6, 137, 2, // Opcode: BCLR_H 4286/* 7246 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7261 4287/* 7251 */ MCD::OPC_CheckPredicate, 30, 114, 38, 0, // Skip to: 17098 4288/* 7256 */ MCD::OPC_Decode, 241, 6, 138, 2, // Opcode: BCLR_W 4289/* 7261 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 7276 4290/* 7266 */ MCD::OPC_CheckPredicate, 30, 99, 38, 0, // Skip to: 17098 4291/* 7271 */ MCD::OPC_Decode, 239, 6, 139, 2, // Opcode: BCLR_D 4292/* 7276 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 7291 4293/* 7281 */ MCD::OPC_CheckPredicate, 30, 84, 38, 0, // Skip to: 17098 4294/* 7286 */ MCD::OPC_Decode, 128, 8, 136, 2, // Opcode: BSET_B 4295/* 7291 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 7306 4296/* 7296 */ MCD::OPC_CheckPredicate, 30, 69, 38, 0, // Skip to: 17098 4297/* 7301 */ MCD::OPC_Decode, 130, 8, 137, 2, // Opcode: BSET_H 4298/* 7306 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 7321 4299/* 7311 */ MCD::OPC_CheckPredicate, 30, 54, 38, 0, // Skip to: 17098 4300/* 7316 */ MCD::OPC_Decode, 131, 8, 138, 2, // Opcode: BSET_W 4301/* 7321 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 7336 4302/* 7326 */ MCD::OPC_CheckPredicate, 30, 39, 38, 0, // Skip to: 17098 4303/* 7331 */ MCD::OPC_Decode, 129, 8, 139, 2, // Opcode: BSET_D 4304/* 7336 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 7351 4305/* 7341 */ MCD::OPC_CheckPredicate, 30, 24, 38, 0, // Skip to: 17098 4306/* 7346 */ MCD::OPC_Decode, 219, 7, 136, 2, // Opcode: BNEG_B 4307/* 7351 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 7366 4308/* 7356 */ MCD::OPC_CheckPredicate, 30, 9, 38, 0, // Skip to: 17098 4309/* 7361 */ MCD::OPC_Decode, 221, 7, 137, 2, // Opcode: BNEG_H 4310/* 7366 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 7381 4311/* 7371 */ MCD::OPC_CheckPredicate, 30, 250, 37, 0, // Skip to: 17098 4312/* 7376 */ MCD::OPC_Decode, 222, 7, 138, 2, // Opcode: BNEG_W 4313/* 7381 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 7396 4314/* 7386 */ MCD::OPC_CheckPredicate, 30, 235, 37, 0, // Skip to: 17098 4315/* 7391 */ MCD::OPC_Decode, 220, 7, 139, 2, // Opcode: BNEG_D 4316/* 7396 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 7411 4317/* 7401 */ MCD::OPC_CheckPredicate, 30, 220, 37, 0, // Skip to: 17098 4318/* 7406 */ MCD::OPC_Decode, 162, 7, 140, 2, // Opcode: BINSL_B 4319/* 7411 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 7426 4320/* 7416 */ MCD::OPC_CheckPredicate, 30, 205, 37, 0, // Skip to: 17098 4321/* 7421 */ MCD::OPC_Decode, 164, 7, 141, 2, // Opcode: BINSL_H 4322/* 7426 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 7441 4323/* 7431 */ MCD::OPC_CheckPredicate, 30, 190, 37, 0, // Skip to: 17098 4324/* 7436 */ MCD::OPC_Decode, 165, 7, 142, 2, // Opcode: BINSL_W 4325/* 7441 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 7456 4326/* 7446 */ MCD::OPC_CheckPredicate, 30, 175, 37, 0, // Skip to: 17098 4327/* 7451 */ MCD::OPC_Decode, 163, 7, 143, 2, // Opcode: BINSL_D 4328/* 7456 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 7471 4329/* 7461 */ MCD::OPC_CheckPredicate, 30, 160, 37, 0, // Skip to: 17098 4330/* 7466 */ MCD::OPC_Decode, 170, 7, 140, 2, // Opcode: BINSR_B 4331/* 7471 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 7486 4332/* 7476 */ MCD::OPC_CheckPredicate, 30, 145, 37, 0, // Skip to: 17098 4333/* 7481 */ MCD::OPC_Decode, 172, 7, 141, 2, // Opcode: BINSR_H 4334/* 7486 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 7501 4335/* 7491 */ MCD::OPC_CheckPredicate, 30, 130, 37, 0, // Skip to: 17098 4336/* 7496 */ MCD::OPC_Decode, 173, 7, 142, 2, // Opcode: BINSR_W 4337/* 7501 */ MCD::OPC_FilterValue, 31, 120, 37, 0, // Skip to: 17098 4338/* 7506 */ MCD::OPC_CheckPredicate, 30, 115, 37, 0, // Skip to: 17098 4339/* 7511 */ MCD::OPC_Decode, 171, 7, 143, 2, // Opcode: BINSR_D 4340/* 7516 */ MCD::OPC_FilterValue, 14, 227, 1, 0, // Skip to: 8004 4341/* 7521 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4342/* 7524 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7539 4343/* 7529 */ MCD::OPC_CheckPredicate, 30, 92, 37, 0, // Skip to: 17098 4344/* 7534 */ MCD::OPC_Decode, 132, 6, 136, 2, // Opcode: ADDV_B 4345/* 7539 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7554 4346/* 7544 */ MCD::OPC_CheckPredicate, 30, 77, 37, 0, // Skip to: 17098 4347/* 7549 */ MCD::OPC_Decode, 134, 6, 137, 2, // Opcode: ADDV_H 4348/* 7554 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7569 4349/* 7559 */ MCD::OPC_CheckPredicate, 30, 62, 37, 0, // Skip to: 17098 4350/* 7564 */ MCD::OPC_Decode, 135, 6, 138, 2, // Opcode: ADDV_W 4351/* 7569 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 7584 4352/* 7574 */ MCD::OPC_CheckPredicate, 30, 47, 37, 0, // Skip to: 17098 4353/* 7579 */ MCD::OPC_Decode, 133, 6, 139, 2, // Opcode: ADDV_D 4354/* 7584 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 7599 4355/* 7589 */ MCD::OPC_CheckPredicate, 30, 32, 37, 0, // Skip to: 17098 4356/* 7594 */ MCD::OPC_Decode, 251, 20, 136, 2, // Opcode: SUBV_B 4357/* 7599 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 7614 4358/* 7604 */ MCD::OPC_CheckPredicate, 30, 17, 37, 0, // Skip to: 17098 4359/* 7609 */ MCD::OPC_Decode, 253, 20, 137, 2, // Opcode: SUBV_H 4360/* 7614 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 7629 4361/* 7619 */ MCD::OPC_CheckPredicate, 30, 2, 37, 0, // Skip to: 17098 4362/* 7624 */ MCD::OPC_Decode, 254, 20, 138, 2, // Opcode: SUBV_W 4363/* 7629 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 7644 4364/* 7634 */ MCD::OPC_CheckPredicate, 30, 243, 36, 0, // Skip to: 17098 4365/* 7639 */ MCD::OPC_Decode, 252, 20, 139, 2, // Opcode: SUBV_D 4366/* 7644 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 7659 4367/* 7649 */ MCD::OPC_CheckPredicate, 30, 228, 36, 0, // Skip to: 17098 4368/* 7654 */ MCD::OPC_Decode, 203, 15, 136, 2, // Opcode: MAX_S_B 4369/* 7659 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 7674 4370/* 7664 */ MCD::OPC_CheckPredicate, 30, 213, 36, 0, // Skip to: 17098 4371/* 7669 */ MCD::OPC_Decode, 205, 15, 137, 2, // Opcode: MAX_S_H 4372/* 7674 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 7689 4373/* 7679 */ MCD::OPC_CheckPredicate, 30, 198, 36, 0, // Skip to: 17098 4374/* 7684 */ MCD::OPC_Decode, 207, 15, 138, 2, // Opcode: MAX_S_W 4375/* 7689 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 7704 4376/* 7694 */ MCD::OPC_CheckPredicate, 30, 183, 36, 0, // Skip to: 17098 4377/* 7699 */ MCD::OPC_Decode, 204, 15, 139, 2, // Opcode: MAX_S_D 4378/* 7704 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 7719 4379/* 7709 */ MCD::OPC_CheckPredicate, 30, 168, 36, 0, // Skip to: 17098 4380/* 7714 */ MCD::OPC_Decode, 208, 15, 136, 2, // Opcode: MAX_U_B 4381/* 7719 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 7734 4382/* 7724 */ MCD::OPC_CheckPredicate, 30, 153, 36, 0, // Skip to: 17098 4383/* 7729 */ MCD::OPC_Decode, 210, 15, 137, 2, // Opcode: MAX_U_H 4384/* 7734 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7749 4385/* 7739 */ MCD::OPC_CheckPredicate, 30, 138, 36, 0, // Skip to: 17098 4386/* 7744 */ MCD::OPC_Decode, 211, 15, 138, 2, // Opcode: MAX_U_W 4387/* 7749 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 7764 4388/* 7754 */ MCD::OPC_CheckPredicate, 30, 123, 36, 0, // Skip to: 17098 4389/* 7759 */ MCD::OPC_Decode, 209, 15, 139, 2, // Opcode: MAX_U_D 4390/* 7764 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 7779 4391/* 7769 */ MCD::OPC_CheckPredicate, 30, 108, 36, 0, // Skip to: 17098 4392/* 7774 */ MCD::OPC_Decode, 134, 16, 136, 2, // Opcode: MIN_S_B 4393/* 7779 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 7794 4394/* 7784 */ MCD::OPC_CheckPredicate, 30, 93, 36, 0, // Skip to: 17098 4395/* 7789 */ MCD::OPC_Decode, 136, 16, 137, 2, // Opcode: MIN_S_H 4396/* 7794 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 7809 4397/* 7799 */ MCD::OPC_CheckPredicate, 30, 78, 36, 0, // Skip to: 17098 4398/* 7804 */ MCD::OPC_Decode, 138, 16, 138, 2, // Opcode: MIN_S_W 4399/* 7809 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 7824 4400/* 7814 */ MCD::OPC_CheckPredicate, 30, 63, 36, 0, // Skip to: 17098 4401/* 7819 */ MCD::OPC_Decode, 135, 16, 139, 2, // Opcode: MIN_S_D 4402/* 7824 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 7839 4403/* 7829 */ MCD::OPC_CheckPredicate, 30, 48, 36, 0, // Skip to: 17098 4404/* 7834 */ MCD::OPC_Decode, 139, 16, 136, 2, // Opcode: MIN_U_B 4405/* 7839 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 7854 4406/* 7844 */ MCD::OPC_CheckPredicate, 30, 33, 36, 0, // Skip to: 17098 4407/* 7849 */ MCD::OPC_Decode, 141, 16, 137, 2, // Opcode: MIN_U_H 4408/* 7854 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 7869 4409/* 7859 */ MCD::OPC_CheckPredicate, 30, 18, 36, 0, // Skip to: 17098 4410/* 7864 */ MCD::OPC_Decode, 142, 16, 138, 2, // Opcode: MIN_U_W 4411/* 7869 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 7884 4412/* 7874 */ MCD::OPC_CheckPredicate, 30, 3, 36, 0, // Skip to: 17098 4413/* 7879 */ MCD::OPC_Decode, 140, 16, 139, 2, // Opcode: MIN_U_D 4414/* 7884 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 7899 4415/* 7889 */ MCD::OPC_CheckPredicate, 30, 244, 35, 0, // Skip to: 17098 4416/* 7894 */ MCD::OPC_Decode, 196, 15, 136, 2, // Opcode: MAX_A_B 4417/* 7899 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 7914 4418/* 7904 */ MCD::OPC_CheckPredicate, 30, 229, 35, 0, // Skip to: 17098 4419/* 7909 */ MCD::OPC_Decode, 198, 15, 137, 2, // Opcode: MAX_A_H 4420/* 7914 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 7929 4421/* 7919 */ MCD::OPC_CheckPredicate, 30, 214, 35, 0, // Skip to: 17098 4422/* 7924 */ MCD::OPC_Decode, 199, 15, 138, 2, // Opcode: MAX_A_W 4423/* 7929 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 7944 4424/* 7934 */ MCD::OPC_CheckPredicate, 30, 199, 35, 0, // Skip to: 17098 4425/* 7939 */ MCD::OPC_Decode, 197, 15, 139, 2, // Opcode: MAX_A_D 4426/* 7944 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 7959 4427/* 7949 */ MCD::OPC_CheckPredicate, 30, 184, 35, 0, // Skip to: 17098 4428/* 7954 */ MCD::OPC_Decode, 255, 15, 136, 2, // Opcode: MIN_A_B 4429/* 7959 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 7974 4430/* 7964 */ MCD::OPC_CheckPredicate, 30, 169, 35, 0, // Skip to: 17098 4431/* 7969 */ MCD::OPC_Decode, 129, 16, 137, 2, // Opcode: MIN_A_H 4432/* 7974 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 7989 4433/* 7979 */ MCD::OPC_CheckPredicate, 30, 154, 35, 0, // Skip to: 17098 4434/* 7984 */ MCD::OPC_Decode, 130, 16, 138, 2, // Opcode: MIN_A_W 4435/* 7989 */ MCD::OPC_FilterValue, 31, 144, 35, 0, // Skip to: 17098 4436/* 7994 */ MCD::OPC_CheckPredicate, 30, 139, 35, 0, // Skip to: 17098 4437/* 7999 */ MCD::OPC_Decode, 128, 16, 139, 2, // Opcode: MIN_A_D 4438/* 8004 */ MCD::OPC_FilterValue, 15, 47, 1, 0, // Skip to: 8312 4439/* 8009 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4440/* 8012 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8027 4441/* 8017 */ MCD::OPC_CheckPredicate, 30, 116, 35, 0, // Skip to: 17098 4442/* 8022 */ MCD::OPC_Decode, 169, 8, 136, 2, // Opcode: CEQ_B 4443/* 8027 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8042 4444/* 8032 */ MCD::OPC_CheckPredicate, 30, 101, 35, 0, // Skip to: 17098 4445/* 8037 */ MCD::OPC_Decode, 171, 8, 137, 2, // Opcode: CEQ_H 4446/* 8042 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8057 4447/* 8047 */ MCD::OPC_CheckPredicate, 30, 86, 35, 0, // Skip to: 17098 4448/* 8052 */ MCD::OPC_Decode, 172, 8, 138, 2, // Opcode: CEQ_W 4449/* 8057 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8072 4450/* 8062 */ MCD::OPC_CheckPredicate, 30, 71, 35, 0, // Skip to: 17098 4451/* 8067 */ MCD::OPC_Decode, 170, 8, 139, 2, // Opcode: CEQ_D 4452/* 8072 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8087 4453/* 8077 */ MCD::OPC_CheckPredicate, 30, 56, 35, 0, // Skip to: 17098 4454/* 8082 */ MCD::OPC_Decode, 213, 8, 136, 2, // Opcode: CLT_S_B 4455/* 8087 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8102 4456/* 8092 */ MCD::OPC_CheckPredicate, 30, 41, 35, 0, // Skip to: 17098 4457/* 8097 */ MCD::OPC_Decode, 215, 8, 137, 2, // Opcode: CLT_S_H 4458/* 8102 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8117 4459/* 8107 */ MCD::OPC_CheckPredicate, 30, 26, 35, 0, // Skip to: 17098 4460/* 8112 */ MCD::OPC_Decode, 216, 8, 138, 2, // Opcode: CLT_S_W 4461/* 8117 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8132 4462/* 8122 */ MCD::OPC_CheckPredicate, 30, 11, 35, 0, // Skip to: 17098 4463/* 8127 */ MCD::OPC_Decode, 214, 8, 139, 2, // Opcode: CLT_S_D 4464/* 8132 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 8147 4465/* 8137 */ MCD::OPC_CheckPredicate, 30, 252, 34, 0, // Skip to: 17098 4466/* 8142 */ MCD::OPC_Decode, 217, 8, 136, 2, // Opcode: CLT_U_B 4467/* 8147 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 8162 4468/* 8152 */ MCD::OPC_CheckPredicate, 30, 237, 34, 0, // Skip to: 17098 4469/* 8157 */ MCD::OPC_Decode, 219, 8, 137, 2, // Opcode: CLT_U_H 4470/* 8162 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8177 4471/* 8167 */ MCD::OPC_CheckPredicate, 30, 222, 34, 0, // Skip to: 17098 4472/* 8172 */ MCD::OPC_Decode, 220, 8, 138, 2, // Opcode: CLT_U_W 4473/* 8177 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 8192 4474/* 8182 */ MCD::OPC_CheckPredicate, 30, 207, 34, 0, // Skip to: 17098 4475/* 8187 */ MCD::OPC_Decode, 218, 8, 139, 2, // Opcode: CLT_U_D 4476/* 8192 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 8207 4477/* 8197 */ MCD::OPC_CheckPredicate, 30, 192, 34, 0, // Skip to: 17098 4478/* 8202 */ MCD::OPC_Decode, 193, 8, 136, 2, // Opcode: CLE_S_B 4479/* 8207 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 8222 4480/* 8212 */ MCD::OPC_CheckPredicate, 30, 177, 34, 0, // Skip to: 17098 4481/* 8217 */ MCD::OPC_Decode, 195, 8, 137, 2, // Opcode: CLE_S_H 4482/* 8222 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 8237 4483/* 8227 */ MCD::OPC_CheckPredicate, 30, 162, 34, 0, // Skip to: 17098 4484/* 8232 */ MCD::OPC_Decode, 196, 8, 138, 2, // Opcode: CLE_S_W 4485/* 8237 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 8252 4486/* 8242 */ MCD::OPC_CheckPredicate, 30, 147, 34, 0, // Skip to: 17098 4487/* 8247 */ MCD::OPC_Decode, 194, 8, 139, 2, // Opcode: CLE_S_D 4488/* 8252 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 8267 4489/* 8257 */ MCD::OPC_CheckPredicate, 30, 132, 34, 0, // Skip to: 17098 4490/* 8262 */ MCD::OPC_Decode, 197, 8, 136, 2, // Opcode: CLE_U_B 4491/* 8267 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 8282 4492/* 8272 */ MCD::OPC_CheckPredicate, 30, 117, 34, 0, // Skip to: 17098 4493/* 8277 */ MCD::OPC_Decode, 199, 8, 137, 2, // Opcode: CLE_U_H 4494/* 8282 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 8297 4495/* 8287 */ MCD::OPC_CheckPredicate, 30, 102, 34, 0, // Skip to: 17098 4496/* 8292 */ MCD::OPC_Decode, 200, 8, 138, 2, // Opcode: CLE_U_W 4497/* 8297 */ MCD::OPC_FilterValue, 23, 92, 34, 0, // Skip to: 17098 4498/* 8302 */ MCD::OPC_CheckPredicate, 30, 87, 34, 0, // Skip to: 17098 4499/* 8307 */ MCD::OPC_Decode, 198, 8, 139, 2, // Opcode: CLE_U_D 4500/* 8312 */ MCD::OPC_FilterValue, 16, 227, 1, 0, // Skip to: 8800 4501/* 8317 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4502/* 8320 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8335 4503/* 8325 */ MCD::OPC_CheckPredicate, 30, 64, 34, 0, // Skip to: 17098 4504/* 8330 */ MCD::OPC_Decode, 138, 6, 136, 2, // Opcode: ADD_A_B 4505/* 8335 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8350 4506/* 8340 */ MCD::OPC_CheckPredicate, 30, 49, 34, 0, // Skip to: 17098 4507/* 8345 */ MCD::OPC_Decode, 140, 6, 137, 2, // Opcode: ADD_A_H 4508/* 8350 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8365 4509/* 8355 */ MCD::OPC_CheckPredicate, 30, 34, 34, 0, // Skip to: 17098 4510/* 8360 */ MCD::OPC_Decode, 141, 6, 138, 2, // Opcode: ADD_A_W 4511/* 8365 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8380 4512/* 8370 */ MCD::OPC_CheckPredicate, 30, 19, 34, 0, // Skip to: 17098 4513/* 8375 */ MCD::OPC_Decode, 139, 6, 139, 2, // Opcode: ADD_A_D 4514/* 8380 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 8395 4515/* 8385 */ MCD::OPC_CheckPredicate, 30, 4, 34, 0, // Skip to: 17098 4516/* 8390 */ MCD::OPC_Decode, 229, 5, 136, 2, // Opcode: ADDS_A_B 4517/* 8395 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 8410 4518/* 8400 */ MCD::OPC_CheckPredicate, 30, 245, 33, 0, // Skip to: 17098 4519/* 8405 */ MCD::OPC_Decode, 231, 5, 137, 2, // Opcode: ADDS_A_H 4520/* 8410 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 8425 4521/* 8415 */ MCD::OPC_CheckPredicate, 30, 230, 33, 0, // Skip to: 17098 4522/* 8420 */ MCD::OPC_Decode, 232, 5, 138, 2, // Opcode: ADDS_A_W 4523/* 8425 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 8440 4524/* 8430 */ MCD::OPC_CheckPredicate, 30, 215, 33, 0, // Skip to: 17098 4525/* 8435 */ MCD::OPC_Decode, 230, 5, 139, 2, // Opcode: ADDS_A_D 4526/* 8440 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8455 4527/* 8445 */ MCD::OPC_CheckPredicate, 30, 200, 33, 0, // Skip to: 17098 4528/* 8450 */ MCD::OPC_Decode, 233, 5, 136, 2, // Opcode: ADDS_S_B 4529/* 8455 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8470 4530/* 8460 */ MCD::OPC_CheckPredicate, 30, 185, 33, 0, // Skip to: 17098 4531/* 8465 */ MCD::OPC_Decode, 235, 5, 137, 2, // Opcode: ADDS_S_H 4532/* 8470 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8485 4533/* 8475 */ MCD::OPC_CheckPredicate, 30, 170, 33, 0, // Skip to: 17098 4534/* 8480 */ MCD::OPC_Decode, 236, 5, 138, 2, // Opcode: ADDS_S_W 4535/* 8485 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8500 4536/* 8490 */ MCD::OPC_CheckPredicate, 30, 155, 33, 0, // Skip to: 17098 4537/* 8495 */ MCD::OPC_Decode, 234, 5, 139, 2, // Opcode: ADDS_S_D 4538/* 8500 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 8515 4539/* 8505 */ MCD::OPC_CheckPredicate, 30, 140, 33, 0, // Skip to: 17098 4540/* 8510 */ MCD::OPC_Decode, 237, 5, 136, 2, // Opcode: ADDS_U_B 4541/* 8515 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 8530 4542/* 8520 */ MCD::OPC_CheckPredicate, 30, 125, 33, 0, // Skip to: 17098 4543/* 8525 */ MCD::OPC_Decode, 239, 5, 137, 2, // Opcode: ADDS_U_H 4544/* 8530 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8545 4545/* 8535 */ MCD::OPC_CheckPredicate, 30, 110, 33, 0, // Skip to: 17098 4546/* 8540 */ MCD::OPC_Decode, 240, 5, 138, 2, // Opcode: ADDS_U_W 4547/* 8545 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 8560 4548/* 8550 */ MCD::OPC_CheckPredicate, 30, 95, 33, 0, // Skip to: 17098 4549/* 8555 */ MCD::OPC_Decode, 238, 5, 139, 2, // Opcode: ADDS_U_D 4550/* 8560 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 8575 4551/* 8565 */ MCD::OPC_CheckPredicate, 30, 80, 33, 0, // Skip to: 17098 4552/* 8570 */ MCD::OPC_Decode, 190, 6, 136, 2, // Opcode: AVE_S_B 4553/* 8575 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 8590 4554/* 8580 */ MCD::OPC_CheckPredicate, 30, 65, 33, 0, // Skip to: 17098 4555/* 8585 */ MCD::OPC_Decode, 192, 6, 137, 2, // Opcode: AVE_S_H 4556/* 8590 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 8605 4557/* 8595 */ MCD::OPC_CheckPredicate, 30, 50, 33, 0, // Skip to: 17098 4558/* 8600 */ MCD::OPC_Decode, 193, 6, 138, 2, // Opcode: AVE_S_W 4559/* 8605 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 8620 4560/* 8610 */ MCD::OPC_CheckPredicate, 30, 35, 33, 0, // Skip to: 17098 4561/* 8615 */ MCD::OPC_Decode, 191, 6, 139, 2, // Opcode: AVE_S_D 4562/* 8620 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 8635 4563/* 8625 */ MCD::OPC_CheckPredicate, 30, 20, 33, 0, // Skip to: 17098 4564/* 8630 */ MCD::OPC_Decode, 194, 6, 136, 2, // Opcode: AVE_U_B 4565/* 8635 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 8650 4566/* 8640 */ MCD::OPC_CheckPredicate, 30, 5, 33, 0, // Skip to: 17098 4567/* 8645 */ MCD::OPC_Decode, 196, 6, 137, 2, // Opcode: AVE_U_H 4568/* 8650 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 8665 4569/* 8655 */ MCD::OPC_CheckPredicate, 30, 246, 32, 0, // Skip to: 17098 4570/* 8660 */ MCD::OPC_Decode, 197, 6, 138, 2, // Opcode: AVE_U_W 4571/* 8665 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 8680 4572/* 8670 */ MCD::OPC_CheckPredicate, 30, 231, 32, 0, // Skip to: 17098 4573/* 8675 */ MCD::OPC_Decode, 195, 6, 139, 2, // Opcode: AVE_U_D 4574/* 8680 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 8695 4575/* 8685 */ MCD::OPC_CheckPredicate, 30, 216, 32, 0, // Skip to: 17098 4576/* 8690 */ MCD::OPC_Decode, 182, 6, 136, 2, // Opcode: AVER_S_B 4577/* 8695 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 8710 4578/* 8700 */ MCD::OPC_CheckPredicate, 30, 201, 32, 0, // Skip to: 17098 4579/* 8705 */ MCD::OPC_Decode, 184, 6, 137, 2, // Opcode: AVER_S_H 4580/* 8710 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 8725 4581/* 8715 */ MCD::OPC_CheckPredicate, 30, 186, 32, 0, // Skip to: 17098 4582/* 8720 */ MCD::OPC_Decode, 185, 6, 138, 2, // Opcode: AVER_S_W 4583/* 8725 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 8740 4584/* 8730 */ MCD::OPC_CheckPredicate, 30, 171, 32, 0, // Skip to: 17098 4585/* 8735 */ MCD::OPC_Decode, 183, 6, 139, 2, // Opcode: AVER_S_D 4586/* 8740 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 8755 4587/* 8745 */ MCD::OPC_CheckPredicate, 30, 156, 32, 0, // Skip to: 17098 4588/* 8750 */ MCD::OPC_Decode, 186, 6, 136, 2, // Opcode: AVER_U_B 4589/* 8755 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 8770 4590/* 8760 */ MCD::OPC_CheckPredicate, 30, 141, 32, 0, // Skip to: 17098 4591/* 8765 */ MCD::OPC_Decode, 188, 6, 137, 2, // Opcode: AVER_U_H 4592/* 8770 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 8785 4593/* 8775 */ MCD::OPC_CheckPredicate, 30, 126, 32, 0, // Skip to: 17098 4594/* 8780 */ MCD::OPC_Decode, 189, 6, 138, 2, // Opcode: AVER_U_W 4595/* 8785 */ MCD::OPC_FilterValue, 31, 116, 32, 0, // Skip to: 17098 4596/* 8790 */ MCD::OPC_CheckPredicate, 30, 111, 32, 0, // Skip to: 17098 4597/* 8795 */ MCD::OPC_Decode, 187, 6, 139, 2, // Opcode: AVER_U_D 4598/* 8800 */ MCD::OPC_FilterValue, 17, 107, 1, 0, // Skip to: 9168 4599/* 8805 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4600/* 8808 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8823 4601/* 8813 */ MCD::OPC_CheckPredicate, 30, 88, 32, 0, // Skip to: 17098 4602/* 8818 */ MCD::OPC_Decode, 224, 20, 136, 2, // Opcode: SUBS_S_B 4603/* 8823 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8838 4604/* 8828 */ MCD::OPC_CheckPredicate, 30, 73, 32, 0, // Skip to: 17098 4605/* 8833 */ MCD::OPC_Decode, 226, 20, 137, 2, // Opcode: SUBS_S_H 4606/* 8838 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8853 4607/* 8843 */ MCD::OPC_CheckPredicate, 30, 58, 32, 0, // Skip to: 17098 4608/* 8848 */ MCD::OPC_Decode, 227, 20, 138, 2, // Opcode: SUBS_S_W 4609/* 8853 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 8868 4610/* 8858 */ MCD::OPC_CheckPredicate, 30, 43, 32, 0, // Skip to: 17098 4611/* 8863 */ MCD::OPC_Decode, 225, 20, 139, 2, // Opcode: SUBS_S_D 4612/* 8868 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 8883 4613/* 8873 */ MCD::OPC_CheckPredicate, 30, 28, 32, 0, // Skip to: 17098 4614/* 8878 */ MCD::OPC_Decode, 228, 20, 136, 2, // Opcode: SUBS_U_B 4615/* 8883 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 8898 4616/* 8888 */ MCD::OPC_CheckPredicate, 30, 13, 32, 0, // Skip to: 17098 4617/* 8893 */ MCD::OPC_Decode, 230, 20, 137, 2, // Opcode: SUBS_U_H 4618/* 8898 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 8913 4619/* 8903 */ MCD::OPC_CheckPredicate, 30, 254, 31, 0, // Skip to: 17098 4620/* 8908 */ MCD::OPC_Decode, 231, 20, 138, 2, // Opcode: SUBS_U_W 4621/* 8913 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 8928 4622/* 8918 */ MCD::OPC_CheckPredicate, 30, 239, 31, 0, // Skip to: 17098 4623/* 8923 */ MCD::OPC_Decode, 229, 20, 139, 2, // Opcode: SUBS_U_D 4624/* 8928 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 8943 4625/* 8933 */ MCD::OPC_CheckPredicate, 30, 224, 31, 0, // Skip to: 17098 4626/* 8938 */ MCD::OPC_Decode, 216, 20, 136, 2, // Opcode: SUBSUS_U_B 4627/* 8943 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 8958 4628/* 8948 */ MCD::OPC_CheckPredicate, 30, 209, 31, 0, // Skip to: 17098 4629/* 8953 */ MCD::OPC_Decode, 218, 20, 137, 2, // Opcode: SUBSUS_U_H 4630/* 8958 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 8973 4631/* 8963 */ MCD::OPC_CheckPredicate, 30, 194, 31, 0, // Skip to: 17098 4632/* 8968 */ MCD::OPC_Decode, 219, 20, 138, 2, // Opcode: SUBSUS_U_W 4633/* 8973 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 8988 4634/* 8978 */ MCD::OPC_CheckPredicate, 30, 179, 31, 0, // Skip to: 17098 4635/* 8983 */ MCD::OPC_Decode, 217, 20, 139, 2, // Opcode: SUBSUS_U_D 4636/* 8988 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 9003 4637/* 8993 */ MCD::OPC_CheckPredicate, 30, 164, 31, 0, // Skip to: 17098 4638/* 8998 */ MCD::OPC_Decode, 220, 20, 136, 2, // Opcode: SUBSUU_S_B 4639/* 9003 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9018 4640/* 9008 */ MCD::OPC_CheckPredicate, 30, 149, 31, 0, // Skip to: 17098 4641/* 9013 */ MCD::OPC_Decode, 222, 20, 137, 2, // Opcode: SUBSUU_S_H 4642/* 9018 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9033 4643/* 9023 */ MCD::OPC_CheckPredicate, 30, 134, 31, 0, // Skip to: 17098 4644/* 9028 */ MCD::OPC_Decode, 223, 20, 138, 2, // Opcode: SUBSUU_S_W 4645/* 9033 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 9048 4646/* 9038 */ MCD::OPC_CheckPredicate, 30, 119, 31, 0, // Skip to: 17098 4647/* 9043 */ MCD::OPC_Decode, 221, 20, 139, 2, // Opcode: SUBSUU_S_D 4648/* 9048 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 9063 4649/* 9053 */ MCD::OPC_CheckPredicate, 30, 104, 31, 0, // Skip to: 17098 4650/* 9058 */ MCD::OPC_Decode, 170, 6, 136, 2, // Opcode: ASUB_S_B 4651/* 9063 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9078 4652/* 9068 */ MCD::OPC_CheckPredicate, 30, 89, 31, 0, // Skip to: 17098 4653/* 9073 */ MCD::OPC_Decode, 172, 6, 137, 2, // Opcode: ASUB_S_H 4654/* 9078 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9093 4655/* 9083 */ MCD::OPC_CheckPredicate, 30, 74, 31, 0, // Skip to: 17098 4656/* 9088 */ MCD::OPC_Decode, 173, 6, 138, 2, // Opcode: ASUB_S_W 4657/* 9093 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9108 4658/* 9098 */ MCD::OPC_CheckPredicate, 30, 59, 31, 0, // Skip to: 17098 4659/* 9103 */ MCD::OPC_Decode, 171, 6, 139, 2, // Opcode: ASUB_S_D 4660/* 9108 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 9123 4661/* 9113 */ MCD::OPC_CheckPredicate, 30, 44, 31, 0, // Skip to: 17098 4662/* 9118 */ MCD::OPC_Decode, 174, 6, 136, 2, // Opcode: ASUB_U_B 4663/* 9123 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9138 4664/* 9128 */ MCD::OPC_CheckPredicate, 30, 29, 31, 0, // Skip to: 17098 4665/* 9133 */ MCD::OPC_Decode, 176, 6, 137, 2, // Opcode: ASUB_U_H 4666/* 9138 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9153 4667/* 9143 */ MCD::OPC_CheckPredicate, 30, 14, 31, 0, // Skip to: 17098 4668/* 9148 */ MCD::OPC_Decode, 177, 6, 138, 2, // Opcode: ASUB_U_W 4669/* 9153 */ MCD::OPC_FilterValue, 23, 4, 31, 0, // Skip to: 17098 4670/* 9158 */ MCD::OPC_CheckPredicate, 30, 255, 30, 0, // Skip to: 17098 4671/* 9163 */ MCD::OPC_Decode, 175, 6, 139, 2, // Opcode: ASUB_U_D 4672/* 9168 */ MCD::OPC_FilterValue, 18, 167, 1, 0, // Skip to: 9596 4673/* 9173 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4674/* 9176 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9191 4675/* 9181 */ MCD::OPC_CheckPredicate, 30, 232, 30, 0, // Skip to: 17098 4676/* 9186 */ MCD::OPC_Decode, 175, 17, 136, 2, // Opcode: MULV_B 4677/* 9191 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9206 4678/* 9196 */ MCD::OPC_CheckPredicate, 30, 217, 30, 0, // Skip to: 17098 4679/* 9201 */ MCD::OPC_Decode, 177, 17, 137, 2, // Opcode: MULV_H 4680/* 9206 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9221 4681/* 9211 */ MCD::OPC_CheckPredicate, 30, 202, 30, 0, // Skip to: 17098 4682/* 9216 */ MCD::OPC_Decode, 178, 17, 138, 2, // Opcode: MULV_W 4683/* 9221 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9236 4684/* 9226 */ MCD::OPC_CheckPredicate, 30, 187, 30, 0, // Skip to: 17098 4685/* 9231 */ MCD::OPC_Decode, 176, 17, 139, 2, // Opcode: MULV_D 4686/* 9236 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9251 4687/* 9241 */ MCD::OPC_CheckPredicate, 30, 172, 30, 0, // Skip to: 17098 4688/* 9246 */ MCD::OPC_Decode, 162, 15, 140, 2, // Opcode: MADDV_B 4689/* 9251 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9266 4690/* 9256 */ MCD::OPC_CheckPredicate, 30, 157, 30, 0, // Skip to: 17098 4691/* 9261 */ MCD::OPC_Decode, 164, 15, 141, 2, // Opcode: MADDV_H 4692/* 9266 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9281 4693/* 9271 */ MCD::OPC_CheckPredicate, 30, 142, 30, 0, // Skip to: 17098 4694/* 9276 */ MCD::OPC_Decode, 165, 15, 142, 2, // Opcode: MADDV_W 4695/* 9281 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9296 4696/* 9286 */ MCD::OPC_CheckPredicate, 30, 127, 30, 0, // Skip to: 17098 4697/* 9291 */ MCD::OPC_Decode, 163, 15, 143, 2, // Opcode: MADDV_D 4698/* 9296 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 9311 4699/* 9301 */ MCD::OPC_CheckPredicate, 30, 112, 30, 0, // Skip to: 17098 4700/* 9306 */ MCD::OPC_Decode, 213, 16, 140, 2, // Opcode: MSUBV_B 4701/* 9311 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9326 4702/* 9316 */ MCD::OPC_CheckPredicate, 30, 97, 30, 0, // Skip to: 17098 4703/* 9321 */ MCD::OPC_Decode, 215, 16, 141, 2, // Opcode: MSUBV_H 4704/* 9326 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9341 4705/* 9331 */ MCD::OPC_CheckPredicate, 30, 82, 30, 0, // Skip to: 17098 4706/* 9336 */ MCD::OPC_Decode, 216, 16, 142, 2, // Opcode: MSUBV_W 4707/* 9341 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9356 4708/* 9346 */ MCD::OPC_CheckPredicate, 30, 67, 30, 0, // Skip to: 17098 4709/* 9351 */ MCD::OPC_Decode, 214, 16, 143, 2, // Opcode: MSUBV_D 4710/* 9356 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 9371 4711/* 9361 */ MCD::OPC_CheckPredicate, 30, 52, 30, 0, // Skip to: 17098 4712/* 9366 */ MCD::OPC_Decode, 242, 10, 136, 2, // Opcode: DIV_S_B 4713/* 9371 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9386 4714/* 9376 */ MCD::OPC_CheckPredicate, 30, 37, 30, 0, // Skip to: 17098 4715/* 9381 */ MCD::OPC_Decode, 244, 10, 137, 2, // Opcode: DIV_S_H 4716/* 9386 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9401 4717/* 9391 */ MCD::OPC_CheckPredicate, 30, 22, 30, 0, // Skip to: 17098 4718/* 9396 */ MCD::OPC_Decode, 245, 10, 138, 2, // Opcode: DIV_S_W 4719/* 9401 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9416 4720/* 9406 */ MCD::OPC_CheckPredicate, 30, 7, 30, 0, // Skip to: 17098 4721/* 9411 */ MCD::OPC_Decode, 243, 10, 139, 2, // Opcode: DIV_S_D 4722/* 9416 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 9431 4723/* 9421 */ MCD::OPC_CheckPredicate, 30, 248, 29, 0, // Skip to: 17098 4724/* 9426 */ MCD::OPC_Decode, 246, 10, 136, 2, // Opcode: DIV_U_B 4725/* 9431 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9446 4726/* 9436 */ MCD::OPC_CheckPredicate, 30, 233, 29, 0, // Skip to: 17098 4727/* 9441 */ MCD::OPC_Decode, 248, 10, 137, 2, // Opcode: DIV_U_H 4728/* 9446 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9461 4729/* 9451 */ MCD::OPC_CheckPredicate, 30, 218, 29, 0, // Skip to: 17098 4730/* 9456 */ MCD::OPC_Decode, 249, 10, 138, 2, // Opcode: DIV_U_W 4731/* 9461 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 9476 4732/* 9466 */ MCD::OPC_CheckPredicate, 30, 203, 29, 0, // Skip to: 17098 4733/* 9471 */ MCD::OPC_Decode, 247, 10, 139, 2, // Opcode: DIV_U_D 4734/* 9476 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 9491 4735/* 9481 */ MCD::OPC_CheckPredicate, 30, 188, 29, 0, // Skip to: 17098 4736/* 9486 */ MCD::OPC_Decode, 149, 16, 136, 2, // Opcode: MOD_S_B 4737/* 9491 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 9506 4738/* 9496 */ MCD::OPC_CheckPredicate, 30, 173, 29, 0, // Skip to: 17098 4739/* 9501 */ MCD::OPC_Decode, 151, 16, 137, 2, // Opcode: MOD_S_H 4740/* 9506 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 9521 4741/* 9511 */ MCD::OPC_CheckPredicate, 30, 158, 29, 0, // Skip to: 17098 4742/* 9516 */ MCD::OPC_Decode, 152, 16, 138, 2, // Opcode: MOD_S_W 4743/* 9521 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 9536 4744/* 9526 */ MCD::OPC_CheckPredicate, 30, 143, 29, 0, // Skip to: 17098 4745/* 9531 */ MCD::OPC_Decode, 150, 16, 139, 2, // Opcode: MOD_S_D 4746/* 9536 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 9551 4747/* 9541 */ MCD::OPC_CheckPredicate, 30, 128, 29, 0, // Skip to: 17098 4748/* 9546 */ MCD::OPC_Decode, 153, 16, 136, 2, // Opcode: MOD_U_B 4749/* 9551 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 9566 4750/* 9556 */ MCD::OPC_CheckPredicate, 30, 113, 29, 0, // Skip to: 17098 4751/* 9561 */ MCD::OPC_Decode, 155, 16, 137, 2, // Opcode: MOD_U_H 4752/* 9566 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 9581 4753/* 9571 */ MCD::OPC_CheckPredicate, 30, 98, 29, 0, // Skip to: 17098 4754/* 9576 */ MCD::OPC_Decode, 156, 16, 138, 2, // Opcode: MOD_U_W 4755/* 9581 */ MCD::OPC_FilterValue, 31, 88, 29, 0, // Skip to: 17098 4756/* 9586 */ MCD::OPC_CheckPredicate, 30, 83, 29, 0, // Skip to: 17098 4757/* 9591 */ MCD::OPC_Decode, 154, 16, 139, 2, // Opcode: MOD_U_D 4758/* 9596 */ MCD::OPC_FilterValue, 19, 17, 1, 0, // Skip to: 9874 4759/* 9601 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4760/* 9604 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9619 4761/* 9609 */ MCD::OPC_CheckPredicate, 30, 60, 29, 0, // Skip to: 17098 4762/* 9614 */ MCD::OPC_Decode, 147, 11, 144, 2, // Opcode: DOTP_S_H 4763/* 9619 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9634 4764/* 9624 */ MCD::OPC_CheckPredicate, 30, 45, 29, 0, // Skip to: 17098 4765/* 9629 */ MCD::OPC_Decode, 148, 11, 145, 2, // Opcode: DOTP_S_W 4766/* 9634 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9649 4767/* 9639 */ MCD::OPC_CheckPredicate, 30, 30, 29, 0, // Skip to: 17098 4768/* 9644 */ MCD::OPC_Decode, 146, 11, 146, 2, // Opcode: DOTP_S_D 4769/* 9649 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9664 4770/* 9654 */ MCD::OPC_CheckPredicate, 30, 15, 29, 0, // Skip to: 17098 4771/* 9659 */ MCD::OPC_Decode, 150, 11, 144, 2, // Opcode: DOTP_U_H 4772/* 9664 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9679 4773/* 9669 */ MCD::OPC_CheckPredicate, 30, 0, 29, 0, // Skip to: 17098 4774/* 9674 */ MCD::OPC_Decode, 151, 11, 145, 2, // Opcode: DOTP_U_W 4775/* 9679 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 9694 4776/* 9684 */ MCD::OPC_CheckPredicate, 30, 241, 28, 0, // Skip to: 17098 4777/* 9689 */ MCD::OPC_Decode, 149, 11, 146, 2, // Opcode: DOTP_U_D 4778/* 9694 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 9709 4779/* 9699 */ MCD::OPC_CheckPredicate, 30, 226, 28, 0, // Skip to: 17098 4780/* 9704 */ MCD::OPC_Decode, 153, 11, 147, 2, // Opcode: DPADD_S_H 4781/* 9709 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 9724 4782/* 9714 */ MCD::OPC_CheckPredicate, 30, 211, 28, 0, // Skip to: 17098 4783/* 9719 */ MCD::OPC_Decode, 154, 11, 148, 2, // Opcode: DPADD_S_W 4784/* 9724 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 9739 4785/* 9729 */ MCD::OPC_CheckPredicate, 30, 196, 28, 0, // Skip to: 17098 4786/* 9734 */ MCD::OPC_Decode, 152, 11, 149, 2, // Opcode: DPADD_S_D 4787/* 9739 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 9754 4788/* 9744 */ MCD::OPC_CheckPredicate, 30, 181, 28, 0, // Skip to: 17098 4789/* 9749 */ MCD::OPC_Decode, 156, 11, 147, 2, // Opcode: DPADD_U_H 4790/* 9754 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9769 4791/* 9759 */ MCD::OPC_CheckPredicate, 30, 166, 28, 0, // Skip to: 17098 4792/* 9764 */ MCD::OPC_Decode, 157, 11, 148, 2, // Opcode: DPADD_U_W 4793/* 9769 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 9784 4794/* 9774 */ MCD::OPC_CheckPredicate, 30, 151, 28, 0, // Skip to: 17098 4795/* 9779 */ MCD::OPC_Decode, 155, 11, 149, 2, // Opcode: DPADD_U_D 4796/* 9784 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 9799 4797/* 9789 */ MCD::OPC_CheckPredicate, 30, 136, 28, 0, // Skip to: 17098 4798/* 9794 */ MCD::OPC_Decode, 184, 11, 147, 2, // Opcode: DPSUB_S_H 4799/* 9799 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 9814 4800/* 9804 */ MCD::OPC_CheckPredicate, 30, 121, 28, 0, // Skip to: 17098 4801/* 9809 */ MCD::OPC_Decode, 185, 11, 148, 2, // Opcode: DPSUB_S_W 4802/* 9814 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 9829 4803/* 9819 */ MCD::OPC_CheckPredicate, 30, 106, 28, 0, // Skip to: 17098 4804/* 9824 */ MCD::OPC_Decode, 183, 11, 149, 2, // Opcode: DPSUB_S_D 4805/* 9829 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 9844 4806/* 9834 */ MCD::OPC_CheckPredicate, 30, 91, 28, 0, // Skip to: 17098 4807/* 9839 */ MCD::OPC_Decode, 187, 11, 147, 2, // Opcode: DPSUB_U_H 4808/* 9844 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 9859 4809/* 9849 */ MCD::OPC_CheckPredicate, 30, 76, 28, 0, // Skip to: 17098 4810/* 9854 */ MCD::OPC_Decode, 188, 11, 148, 2, // Opcode: DPSUB_U_W 4811/* 9859 */ MCD::OPC_FilterValue, 23, 66, 28, 0, // Skip to: 17098 4812/* 9864 */ MCD::OPC_CheckPredicate, 30, 61, 28, 0, // Skip to: 17098 4813/* 9869 */ MCD::OPC_Decode, 186, 11, 149, 2, // Opcode: DPSUB_U_D 4814/* 9874 */ MCD::OPC_FilterValue, 20, 227, 1, 0, // Skip to: 10362 4815/* 9879 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4816/* 9882 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9897 4817/* 9887 */ MCD::OPC_CheckPredicate, 30, 38, 28, 0, // Skip to: 17098 4818/* 9892 */ MCD::OPC_Decode, 237, 19, 150, 2, // Opcode: SLD_B 4819/* 9897 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9912 4820/* 9902 */ MCD::OPC_CheckPredicate, 30, 23, 28, 0, // Skip to: 17098 4821/* 9907 */ MCD::OPC_Decode, 239, 19, 151, 2, // Opcode: SLD_H 4822/* 9912 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9927 4823/* 9917 */ MCD::OPC_CheckPredicate, 30, 8, 28, 0, // Skip to: 17098 4824/* 9922 */ MCD::OPC_Decode, 240, 19, 152, 2, // Opcode: SLD_W 4825/* 9927 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 9942 4826/* 9932 */ MCD::OPC_CheckPredicate, 30, 249, 27, 0, // Skip to: 17098 4827/* 9937 */ MCD::OPC_Decode, 238, 19, 153, 2, // Opcode: SLD_D 4828/* 9942 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 9957 4829/* 9947 */ MCD::OPC_CheckPredicate, 30, 234, 27, 0, // Skip to: 17098 4830/* 9952 */ MCD::OPC_Decode, 148, 20, 154, 2, // Opcode: SPLAT_B 4831/* 9957 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 9972 4832/* 9962 */ MCD::OPC_CheckPredicate, 30, 219, 27, 0, // Skip to: 17098 4833/* 9967 */ MCD::OPC_Decode, 150, 20, 155, 2, // Opcode: SPLAT_H 4834/* 9972 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 9987 4835/* 9977 */ MCD::OPC_CheckPredicate, 30, 204, 27, 0, // Skip to: 17098 4836/* 9982 */ MCD::OPC_Decode, 151, 20, 156, 2, // Opcode: SPLAT_W 4837/* 9987 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 10002 4838/* 9992 */ MCD::OPC_CheckPredicate, 30, 189, 27, 0, // Skip to: 17098 4839/* 9997 */ MCD::OPC_Decode, 149, 20, 157, 2, // Opcode: SPLAT_D 4840/* 10002 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10017 4841/* 10007 */ MCD::OPC_CheckPredicate, 30, 174, 27, 0, // Skip to: 17098 4842/* 10012 */ MCD::OPC_Decode, 238, 17, 136, 2, // Opcode: PCKEV_B 4843/* 10017 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 10032 4844/* 10022 */ MCD::OPC_CheckPredicate, 30, 159, 27, 0, // Skip to: 17098 4845/* 10027 */ MCD::OPC_Decode, 240, 17, 137, 2, // Opcode: PCKEV_H 4846/* 10032 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 10047 4847/* 10037 */ MCD::OPC_CheckPredicate, 30, 144, 27, 0, // Skip to: 17098 4848/* 10042 */ MCD::OPC_Decode, 241, 17, 138, 2, // Opcode: PCKEV_W 4849/* 10047 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 10062 4850/* 10052 */ MCD::OPC_CheckPredicate, 30, 129, 27, 0, // Skip to: 17098 4851/* 10057 */ MCD::OPC_Decode, 239, 17, 139, 2, // Opcode: PCKEV_D 4852/* 10062 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 10077 4853/* 10067 */ MCD::OPC_CheckPredicate, 30, 114, 27, 0, // Skip to: 17098 4854/* 10072 */ MCD::OPC_Decode, 242, 17, 136, 2, // Opcode: PCKOD_B 4855/* 10077 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 10092 4856/* 10082 */ MCD::OPC_CheckPredicate, 30, 99, 27, 0, // Skip to: 17098 4857/* 10087 */ MCD::OPC_Decode, 244, 17, 137, 2, // Opcode: PCKOD_H 4858/* 10092 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10107 4859/* 10097 */ MCD::OPC_CheckPredicate, 30, 84, 27, 0, // Skip to: 17098 4860/* 10102 */ MCD::OPC_Decode, 245, 17, 138, 2, // Opcode: PCKOD_W 4861/* 10107 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 10122 4862/* 10112 */ MCD::OPC_CheckPredicate, 30, 69, 27, 0, // Skip to: 17098 4863/* 10117 */ MCD::OPC_Decode, 243, 17, 139, 2, // Opcode: PCKOD_D 4864/* 10122 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 10137 4865/* 10127 */ MCD::OPC_CheckPredicate, 30, 54, 27, 0, // Skip to: 17098 4866/* 10132 */ MCD::OPC_Decode, 212, 13, 136, 2, // Opcode: ILVL_B 4867/* 10137 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 10152 4868/* 10142 */ MCD::OPC_CheckPredicate, 30, 39, 27, 0, // Skip to: 17098 4869/* 10147 */ MCD::OPC_Decode, 214, 13, 137, 2, // Opcode: ILVL_H 4870/* 10152 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 10167 4871/* 10157 */ MCD::OPC_CheckPredicate, 30, 24, 27, 0, // Skip to: 17098 4872/* 10162 */ MCD::OPC_Decode, 215, 13, 138, 2, // Opcode: ILVL_W 4873/* 10167 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 10182 4874/* 10172 */ MCD::OPC_CheckPredicate, 30, 9, 27, 0, // Skip to: 17098 4875/* 10177 */ MCD::OPC_Decode, 213, 13, 139, 2, // Opcode: ILVL_D 4876/* 10182 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 10197 4877/* 10187 */ MCD::OPC_CheckPredicate, 30, 250, 26, 0, // Skip to: 17098 4878/* 10192 */ MCD::OPC_Decode, 220, 13, 136, 2, // Opcode: ILVR_B 4879/* 10197 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 10212 4880/* 10202 */ MCD::OPC_CheckPredicate, 30, 235, 26, 0, // Skip to: 17098 4881/* 10207 */ MCD::OPC_Decode, 222, 13, 137, 2, // Opcode: ILVR_H 4882/* 10212 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 10227 4883/* 10217 */ MCD::OPC_CheckPredicate, 30, 220, 26, 0, // Skip to: 17098 4884/* 10222 */ MCD::OPC_Decode, 223, 13, 138, 2, // Opcode: ILVR_W 4885/* 10227 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 10242 4886/* 10232 */ MCD::OPC_CheckPredicate, 30, 205, 26, 0, // Skip to: 17098 4887/* 10237 */ MCD::OPC_Decode, 221, 13, 139, 2, // Opcode: ILVR_D 4888/* 10242 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 10257 4889/* 10247 */ MCD::OPC_CheckPredicate, 30, 190, 26, 0, // Skip to: 17098 4890/* 10252 */ MCD::OPC_Decode, 208, 13, 136, 2, // Opcode: ILVEV_B 4891/* 10257 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 10272 4892/* 10262 */ MCD::OPC_CheckPredicate, 30, 175, 26, 0, // Skip to: 17098 4893/* 10267 */ MCD::OPC_Decode, 210, 13, 137, 2, // Opcode: ILVEV_H 4894/* 10272 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 10287 4895/* 10277 */ MCD::OPC_CheckPredicate, 30, 160, 26, 0, // Skip to: 17098 4896/* 10282 */ MCD::OPC_Decode, 211, 13, 138, 2, // Opcode: ILVEV_W 4897/* 10287 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 10302 4898/* 10292 */ MCD::OPC_CheckPredicate, 30, 145, 26, 0, // Skip to: 17098 4899/* 10297 */ MCD::OPC_Decode, 209, 13, 139, 2, // Opcode: ILVEV_D 4900/* 10302 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 10317 4901/* 10307 */ MCD::OPC_CheckPredicate, 30, 130, 26, 0, // Skip to: 17098 4902/* 10312 */ MCD::OPC_Decode, 216, 13, 136, 2, // Opcode: ILVOD_B 4903/* 10317 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 10332 4904/* 10322 */ MCD::OPC_CheckPredicate, 30, 115, 26, 0, // Skip to: 17098 4905/* 10327 */ MCD::OPC_Decode, 218, 13, 137, 2, // Opcode: ILVOD_H 4906/* 10332 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 10347 4907/* 10337 */ MCD::OPC_CheckPredicate, 30, 100, 26, 0, // Skip to: 17098 4908/* 10342 */ MCD::OPC_Decode, 219, 13, 138, 2, // Opcode: ILVOD_W 4909/* 10347 */ MCD::OPC_FilterValue, 31, 90, 26, 0, // Skip to: 17098 4910/* 10352 */ MCD::OPC_CheckPredicate, 30, 85, 26, 0, // Skip to: 17098 4911/* 10357 */ MCD::OPC_Decode, 217, 13, 139, 2, // Opcode: ILVOD_D 4912/* 10362 */ MCD::OPC_FilterValue, 21, 107, 1, 0, // Skip to: 10730 4913/* 10367 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 4914/* 10370 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10385 4915/* 10375 */ MCD::OPC_CheckPredicate, 30, 62, 26, 0, // Skip to: 17098 4916/* 10380 */ MCD::OPC_Decode, 133, 22, 140, 2, // Opcode: VSHF_B 4917/* 10385 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10400 4918/* 10390 */ MCD::OPC_CheckPredicate, 30, 47, 26, 0, // Skip to: 17098 4919/* 10395 */ MCD::OPC_Decode, 135, 22, 141, 2, // Opcode: VSHF_H 4920/* 10400 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10415 4921/* 10405 */ MCD::OPC_CheckPredicate, 30, 32, 26, 0, // Skip to: 17098 4922/* 10410 */ MCD::OPC_Decode, 136, 22, 142, 2, // Opcode: VSHF_W 4923/* 10415 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 10430 4924/* 10420 */ MCD::OPC_CheckPredicate, 30, 17, 26, 0, // Skip to: 17098 4925/* 10425 */ MCD::OPC_Decode, 134, 22, 143, 2, // Opcode: VSHF_D 4926/* 10430 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 10445 4927/* 10435 */ MCD::OPC_CheckPredicate, 30, 2, 26, 0, // Skip to: 17098 4928/* 10440 */ MCD::OPC_Decode, 161, 20, 136, 2, // Opcode: SRAR_B 4929/* 10445 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 10460 4930/* 10450 */ MCD::OPC_CheckPredicate, 30, 243, 25, 0, // Skip to: 17098 4931/* 10455 */ MCD::OPC_Decode, 163, 20, 137, 2, // Opcode: SRAR_H 4932/* 10460 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 10475 4933/* 10465 */ MCD::OPC_CheckPredicate, 30, 228, 25, 0, // Skip to: 17098 4934/* 10470 */ MCD::OPC_Decode, 164, 20, 138, 2, // Opcode: SRAR_W 4935/* 10475 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 10490 4936/* 10480 */ MCD::OPC_CheckPredicate, 30, 213, 25, 0, // Skip to: 17098 4937/* 10485 */ MCD::OPC_Decode, 162, 20, 139, 2, // Opcode: SRAR_D 4938/* 10490 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10505 4939/* 10495 */ MCD::OPC_CheckPredicate, 30, 198, 25, 0, // Skip to: 17098 4940/* 10500 */ MCD::OPC_Decode, 183, 20, 136, 2, // Opcode: SRLR_B 4941/* 10505 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 10520 4942/* 10510 */ MCD::OPC_CheckPredicate, 30, 183, 25, 0, // Skip to: 17098 4943/* 10515 */ MCD::OPC_Decode, 185, 20, 137, 2, // Opcode: SRLR_H 4944/* 10520 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 10535 4945/* 10525 */ MCD::OPC_CheckPredicate, 30, 168, 25, 0, // Skip to: 17098 4946/* 10530 */ MCD::OPC_Decode, 186, 20, 138, 2, // Opcode: SRLR_W 4947/* 10535 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 10550 4948/* 10540 */ MCD::OPC_CheckPredicate, 30, 153, 25, 0, // Skip to: 17098 4949/* 10545 */ MCD::OPC_Decode, 184, 20, 139, 2, // Opcode: SRLR_D 4950/* 10550 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 10565 4951/* 10555 */ MCD::OPC_CheckPredicate, 30, 138, 25, 0, // Skip to: 17098 4952/* 10560 */ MCD::OPC_Decode, 195, 13, 144, 2, // Opcode: HADD_S_H 4953/* 10565 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 10580 4954/* 10570 */ MCD::OPC_CheckPredicate, 30, 123, 25, 0, // Skip to: 17098 4955/* 10575 */ MCD::OPC_Decode, 196, 13, 145, 2, // Opcode: HADD_S_W 4956/* 10580 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 10595 4957/* 10585 */ MCD::OPC_CheckPredicate, 30, 108, 25, 0, // Skip to: 17098 4958/* 10590 */ MCD::OPC_Decode, 194, 13, 146, 2, // Opcode: HADD_S_D 4959/* 10595 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 10610 4960/* 10600 */ MCD::OPC_CheckPredicate, 30, 93, 25, 0, // Skip to: 17098 4961/* 10605 */ MCD::OPC_Decode, 198, 13, 144, 2, // Opcode: HADD_U_H 4962/* 10610 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 10625 4963/* 10615 */ MCD::OPC_CheckPredicate, 30, 78, 25, 0, // Skip to: 17098 4964/* 10620 */ MCD::OPC_Decode, 199, 13, 145, 2, // Opcode: HADD_U_W 4965/* 10625 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 10640 4966/* 10630 */ MCD::OPC_CheckPredicate, 30, 63, 25, 0, // Skip to: 17098 4967/* 10635 */ MCD::OPC_Decode, 197, 13, 146, 2, // Opcode: HADD_U_D 4968/* 10640 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 10655 4969/* 10645 */ MCD::OPC_CheckPredicate, 30, 48, 25, 0, // Skip to: 17098 4970/* 10650 */ MCD::OPC_Decode, 201, 13, 144, 2, // Opcode: HSUB_S_H 4971/* 10655 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 10670 4972/* 10660 */ MCD::OPC_CheckPredicate, 30, 33, 25, 0, // Skip to: 17098 4973/* 10665 */ MCD::OPC_Decode, 202, 13, 145, 2, // Opcode: HSUB_S_W 4974/* 10670 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 10685 4975/* 10675 */ MCD::OPC_CheckPredicate, 30, 18, 25, 0, // Skip to: 17098 4976/* 10680 */ MCD::OPC_Decode, 200, 13, 146, 2, // Opcode: HSUB_S_D 4977/* 10685 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 10700 4978/* 10690 */ MCD::OPC_CheckPredicate, 30, 3, 25, 0, // Skip to: 17098 4979/* 10695 */ MCD::OPC_Decode, 204, 13, 144, 2, // Opcode: HSUB_U_H 4980/* 10700 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 10715 4981/* 10705 */ MCD::OPC_CheckPredicate, 30, 244, 24, 0, // Skip to: 17098 4982/* 10710 */ MCD::OPC_Decode, 205, 13, 145, 2, // Opcode: HSUB_U_W 4983/* 10715 */ MCD::OPC_FilterValue, 31, 234, 24, 0, // Skip to: 17098 4984/* 10720 */ MCD::OPC_CheckPredicate, 30, 229, 24, 0, // Skip to: 17098 4985/* 10725 */ MCD::OPC_Decode, 203, 13, 146, 2, // Opcode: HSUB_U_D 4986/* 10730 */ MCD::OPC_FilterValue, 25, 26, 2, 0, // Skip to: 11273 4987/* 10735 */ MCD::OPC_ExtractField, 20, 6, // Inst{25-20} ... 4988/* 10738 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10753 4989/* 10743 */ MCD::OPC_CheckPredicate, 30, 206, 24, 0, // Skip to: 17098 4990/* 10748 */ MCD::OPC_Decode, 233, 19, 158, 2, // Opcode: SLDI_B 4991/* 10753 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10775 4992/* 10758 */ MCD::OPC_CheckPredicate, 30, 191, 24, 0, // Skip to: 17098 4993/* 10763 */ MCD::OPC_CheckField, 19, 1, 0, 184, 24, 0, // Skip to: 17098 4994/* 10770 */ MCD::OPC_Decode, 235, 19, 159, 2, // Opcode: SLDI_H 4995/* 10775 */ MCD::OPC_FilterValue, 3, 62, 0, 0, // Skip to: 10842 4996/* 10780 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... 4997/* 10783 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10798 4998/* 10788 */ MCD::OPC_CheckPredicate, 30, 161, 24, 0, // Skip to: 17098 4999/* 10793 */ MCD::OPC_Decode, 236, 19, 160, 2, // Opcode: SLDI_W 5000/* 10798 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10820 5001/* 10803 */ MCD::OPC_CheckPredicate, 30, 146, 24, 0, // Skip to: 17098 5002/* 10808 */ MCD::OPC_CheckField, 17, 1, 0, 139, 24, 0, // Skip to: 17098 5003/* 10815 */ MCD::OPC_Decode, 234, 19, 161, 2, // Opcode: SLDI_D 5004/* 10820 */ MCD::OPC_FilterValue, 3, 129, 24, 0, // Skip to: 17098 5005/* 10825 */ MCD::OPC_CheckPredicate, 30, 124, 24, 0, // Skip to: 17098 5006/* 10830 */ MCD::OPC_CheckField, 16, 2, 2, 117, 24, 0, // Skip to: 17098 5007/* 10837 */ MCD::OPC_Decode, 203, 9, 162, 2, // Opcode: CTCMSA 5008/* 10842 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 10857 5009/* 10847 */ MCD::OPC_CheckPredicate, 30, 102, 24, 0, // Skip to: 17098 5010/* 10852 */ MCD::OPC_Decode, 144, 20, 163, 2, // Opcode: SPLATI_B 5011/* 10857 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 10879 5012/* 10862 */ MCD::OPC_CheckPredicate, 30, 87, 24, 0, // Skip to: 17098 5013/* 10867 */ MCD::OPC_CheckField, 19, 1, 0, 80, 24, 0, // Skip to: 17098 5014/* 10874 */ MCD::OPC_Decode, 146, 20, 164, 2, // Opcode: SPLATI_H 5015/* 10879 */ MCD::OPC_FilterValue, 7, 62, 0, 0, // Skip to: 10946 5016/* 10884 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... 5017/* 10887 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10902 5018/* 10892 */ MCD::OPC_CheckPredicate, 30, 57, 24, 0, // Skip to: 17098 5019/* 10897 */ MCD::OPC_Decode, 147, 20, 165, 2, // Opcode: SPLATI_W 5020/* 10902 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 10924 5021/* 10907 */ MCD::OPC_CheckPredicate, 30, 42, 24, 0, // Skip to: 17098 5022/* 10912 */ MCD::OPC_CheckField, 17, 1, 0, 35, 24, 0, // Skip to: 17098 5023/* 10919 */ MCD::OPC_Decode, 145, 20, 166, 2, // Opcode: SPLATI_D 5024/* 10924 */ MCD::OPC_FilterValue, 3, 25, 24, 0, // Skip to: 17098 5025/* 10929 */ MCD::OPC_CheckPredicate, 30, 20, 24, 0, // Skip to: 17098 5026/* 10934 */ MCD::OPC_CheckField, 16, 2, 2, 13, 24, 0, // Skip to: 17098 5027/* 10941 */ MCD::OPC_Decode, 176, 8, 167, 2, // Opcode: CFCMSA 5028/* 10946 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 10961 5029/* 10951 */ MCD::OPC_CheckPredicate, 30, 254, 23, 0, // Skip to: 17098 5030/* 10956 */ MCD::OPC_Decode, 185, 9, 168, 2, // Opcode: COPY_S_B 5031/* 10961 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 10983 5032/* 10966 */ MCD::OPC_CheckPredicate, 30, 239, 23, 0, // Skip to: 17098 5033/* 10971 */ MCD::OPC_CheckField, 19, 1, 0, 232, 23, 0, // Skip to: 17098 5034/* 10978 */ MCD::OPC_Decode, 187, 9, 169, 2, // Opcode: COPY_S_H 5035/* 10983 */ MCD::OPC_FilterValue, 11, 62, 0, 0, // Skip to: 11050 5036/* 10988 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... 5037/* 10991 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11006 5038/* 10996 */ MCD::OPC_CheckPredicate, 30, 209, 23, 0, // Skip to: 17098 5039/* 11001 */ MCD::OPC_Decode, 188, 9, 170, 2, // Opcode: COPY_S_W 5040/* 11006 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 11028 5041/* 11011 */ MCD::OPC_CheckPredicate, 38, 194, 23, 0, // Skip to: 17098 5042/* 11016 */ MCD::OPC_CheckField, 17, 1, 0, 187, 23, 0, // Skip to: 17098 5043/* 11023 */ MCD::OPC_Decode, 186, 9, 171, 2, // Opcode: COPY_S_D 5044/* 11028 */ MCD::OPC_FilterValue, 3, 177, 23, 0, // Skip to: 17098 5045/* 11033 */ MCD::OPC_CheckPredicate, 30, 172, 23, 0, // Skip to: 17098 5046/* 11038 */ MCD::OPC_CheckField, 16, 2, 2, 165, 23, 0, // Skip to: 17098 5047/* 11045 */ MCD::OPC_Decode, 161, 16, 172, 2, // Opcode: MOVE_V 5048/* 11050 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 11065 5049/* 11055 */ MCD::OPC_CheckPredicate, 30, 150, 23, 0, // Skip to: 17098 5050/* 11060 */ MCD::OPC_Decode, 189, 9, 168, 2, // Opcode: COPY_U_B 5051/* 11065 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 11087 5052/* 11070 */ MCD::OPC_CheckPredicate, 30, 135, 23, 0, // Skip to: 17098 5053/* 11075 */ MCD::OPC_CheckField, 19, 1, 0, 128, 23, 0, // Skip to: 17098 5054/* 11082 */ MCD::OPC_Decode, 190, 9, 169, 2, // Opcode: COPY_U_H 5055/* 11087 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 11109 5056/* 11092 */ MCD::OPC_CheckPredicate, 38, 113, 23, 0, // Skip to: 17098 5057/* 11097 */ MCD::OPC_CheckField, 18, 2, 0, 106, 23, 0, // Skip to: 17098 5058/* 11104 */ MCD::OPC_Decode, 191, 9, 170, 2, // Opcode: COPY_U_W 5059/* 11109 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11124 5060/* 11114 */ MCD::OPC_CheckPredicate, 30, 91, 23, 0, // Skip to: 17098 5061/* 11119 */ MCD::OPC_Decode, 225, 13, 173, 2, // Opcode: INSERT_B 5062/* 11124 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 11146 5063/* 11129 */ MCD::OPC_CheckPredicate, 30, 76, 23, 0, // Skip to: 17098 5064/* 11134 */ MCD::OPC_CheckField, 19, 1, 0, 69, 23, 0, // Skip to: 17098 5065/* 11141 */ MCD::OPC_Decode, 227, 13, 174, 2, // Opcode: INSERT_H 5066/* 11146 */ MCD::OPC_FilterValue, 19, 40, 0, 0, // Skip to: 11191 5067/* 11151 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... 5068/* 11154 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11169 5069/* 11159 */ MCD::OPC_CheckPredicate, 30, 46, 23, 0, // Skip to: 17098 5070/* 11164 */ MCD::OPC_Decode, 228, 13, 175, 2, // Opcode: INSERT_W 5071/* 11169 */ MCD::OPC_FilterValue, 2, 36, 23, 0, // Skip to: 17098 5072/* 11174 */ MCD::OPC_CheckPredicate, 38, 31, 23, 0, // Skip to: 17098 5073/* 11179 */ MCD::OPC_CheckField, 17, 1, 0, 24, 23, 0, // Skip to: 17098 5074/* 11186 */ MCD::OPC_Decode, 226, 13, 176, 2, // Opcode: INSERT_D 5075/* 11191 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 11206 5076/* 11196 */ MCD::OPC_CheckPredicate, 30, 9, 23, 0, // Skip to: 17098 5077/* 11201 */ MCD::OPC_Decode, 230, 13, 177, 2, // Opcode: INSVE_B 5078/* 11206 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 11228 5079/* 11211 */ MCD::OPC_CheckPredicate, 30, 250, 22, 0, // Skip to: 17098 5080/* 11216 */ MCD::OPC_CheckField, 19, 1, 0, 243, 22, 0, // Skip to: 17098 5081/* 11223 */ MCD::OPC_Decode, 232, 13, 177, 2, // Opcode: INSVE_H 5082/* 11228 */ MCD::OPC_FilterValue, 23, 233, 22, 0, // Skip to: 17098 5083/* 11233 */ MCD::OPC_ExtractField, 18, 2, // Inst{19-18} ... 5084/* 11236 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11251 5085/* 11241 */ MCD::OPC_CheckPredicate, 30, 220, 22, 0, // Skip to: 17098 5086/* 11246 */ MCD::OPC_Decode, 233, 13, 177, 2, // Opcode: INSVE_W 5087/* 11251 */ MCD::OPC_FilterValue, 2, 210, 22, 0, // Skip to: 17098 5088/* 11256 */ MCD::OPC_CheckPredicate, 30, 205, 22, 0, // Skip to: 17098 5089/* 11261 */ MCD::OPC_CheckField, 17, 1, 0, 198, 22, 0, // Skip to: 17098 5090/* 11268 */ MCD::OPC_Decode, 231, 13, 177, 2, // Opcode: INSVE_D 5091/* 11273 */ MCD::OPC_FilterValue, 26, 227, 1, 0, // Skip to: 11761 5092/* 11278 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 5093/* 11281 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11296 5094/* 11286 */ MCD::OPC_CheckPredicate, 30, 175, 22, 0, // Skip to: 17098 5095/* 11291 */ MCD::OPC_Decode, 154, 12, 138, 2, // Opcode: FCAF_W 5096/* 11296 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11311 5097/* 11301 */ MCD::OPC_CheckPredicate, 30, 160, 22, 0, // Skip to: 17098 5098/* 11306 */ MCD::OPC_Decode, 153, 12, 139, 2, // Opcode: FCAF_D 5099/* 11311 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11326 5100/* 11316 */ MCD::OPC_CheckPredicate, 30, 145, 22, 0, // Skip to: 17098 5101/* 11321 */ MCD::OPC_Decode, 181, 12, 138, 2, // Opcode: FCUN_W 5102/* 11326 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11341 5103/* 11331 */ MCD::OPC_CheckPredicate, 30, 130, 22, 0, // Skip to: 17098 5104/* 11336 */ MCD::OPC_Decode, 180, 12, 139, 2, // Opcode: FCUN_D 5105/* 11341 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 11356 5106/* 11346 */ MCD::OPC_CheckPredicate, 30, 115, 22, 0, // Skip to: 17098 5107/* 11351 */ MCD::OPC_Decode, 156, 12, 138, 2, // Opcode: FCEQ_W 5108/* 11356 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 11371 5109/* 11361 */ MCD::OPC_CheckPredicate, 30, 100, 22, 0, // Skip to: 17098 5110/* 11366 */ MCD::OPC_Decode, 155, 12, 139, 2, // Opcode: FCEQ_D 5111/* 11371 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 11386 5112/* 11376 */ MCD::OPC_CheckPredicate, 30, 85, 22, 0, // Skip to: 17098 5113/* 11381 */ MCD::OPC_Decode, 173, 12, 138, 2, // Opcode: FCUEQ_W 5114/* 11386 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 11401 5115/* 11391 */ MCD::OPC_CheckPredicate, 30, 70, 22, 0, // Skip to: 17098 5116/* 11396 */ MCD::OPC_Decode, 172, 12, 139, 2, // Opcode: FCUEQ_D 5117/* 11401 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 11416 5118/* 11406 */ MCD::OPC_CheckPredicate, 30, 55, 22, 0, // Skip to: 17098 5119/* 11411 */ MCD::OPC_Decode, 162, 12, 138, 2, // Opcode: FCLT_W 5120/* 11416 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 11431 5121/* 11421 */ MCD::OPC_CheckPredicate, 30, 40, 22, 0, // Skip to: 17098 5122/* 11426 */ MCD::OPC_Decode, 161, 12, 139, 2, // Opcode: FCLT_D 5123/* 11431 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 11446 5124/* 11436 */ MCD::OPC_CheckPredicate, 30, 25, 22, 0, // Skip to: 17098 5125/* 11441 */ MCD::OPC_Decode, 177, 12, 138, 2, // Opcode: FCULT_W 5126/* 11446 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 11461 5127/* 11451 */ MCD::OPC_CheckPredicate, 30, 10, 22, 0, // Skip to: 17098 5128/* 11456 */ MCD::OPC_Decode, 176, 12, 139, 2, // Opcode: FCULT_D 5129/* 11461 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 11476 5130/* 11466 */ MCD::OPC_CheckPredicate, 30, 251, 21, 0, // Skip to: 17098 5131/* 11471 */ MCD::OPC_Decode, 160, 12, 138, 2, // Opcode: FCLE_W 5132/* 11476 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 11491 5133/* 11481 */ MCD::OPC_CheckPredicate, 30, 236, 21, 0, // Skip to: 17098 5134/* 11486 */ MCD::OPC_Decode, 159, 12, 139, 2, // Opcode: FCLE_D 5135/* 11491 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11506 5136/* 11496 */ MCD::OPC_CheckPredicate, 30, 221, 21, 0, // Skip to: 17098 5137/* 11501 */ MCD::OPC_Decode, 175, 12, 138, 2, // Opcode: FCULE_W 5138/* 11506 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 11521 5139/* 11511 */ MCD::OPC_CheckPredicate, 30, 206, 21, 0, // Skip to: 17098 5140/* 11516 */ MCD::OPC_Decode, 174, 12, 139, 2, // Opcode: FCULE_D 5141/* 11521 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11536 5142/* 11526 */ MCD::OPC_CheckPredicate, 30, 191, 21, 0, // Skip to: 17098 5143/* 11531 */ MCD::OPC_Decode, 141, 13, 138, 2, // Opcode: FSAF_W 5144/* 11536 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 11551 5145/* 11541 */ MCD::OPC_CheckPredicate, 30, 176, 21, 0, // Skip to: 17098 5146/* 11546 */ MCD::OPC_Decode, 140, 13, 139, 2, // Opcode: FSAF_D 5147/* 11551 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 11566 5148/* 11556 */ MCD::OPC_CheckPredicate, 30, 161, 21, 0, // Skip to: 17098 5149/* 11561 */ MCD::OPC_Decode, 179, 13, 138, 2, // Opcode: FSUN_W 5150/* 11566 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 11581 5151/* 11571 */ MCD::OPC_CheckPredicate, 30, 146, 21, 0, // Skip to: 17098 5152/* 11576 */ MCD::OPC_Decode, 178, 13, 139, 2, // Opcode: FSUN_D 5153/* 11581 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 11596 5154/* 11586 */ MCD::OPC_CheckPredicate, 30, 131, 21, 0, // Skip to: 17098 5155/* 11591 */ MCD::OPC_Decode, 143, 13, 138, 2, // Opcode: FSEQ_W 5156/* 11596 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 11611 5157/* 11601 */ MCD::OPC_CheckPredicate, 30, 116, 21, 0, // Skip to: 17098 5158/* 11606 */ MCD::OPC_Decode, 142, 13, 139, 2, // Opcode: FSEQ_D 5159/* 11611 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 11626 5160/* 11616 */ MCD::OPC_CheckPredicate, 30, 101, 21, 0, // Skip to: 17098 5161/* 11621 */ MCD::OPC_Decode, 171, 13, 138, 2, // Opcode: FSUEQ_W 5162/* 11626 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 11641 5163/* 11631 */ MCD::OPC_CheckPredicate, 30, 86, 21, 0, // Skip to: 17098 5164/* 11636 */ MCD::OPC_Decode, 170, 13, 139, 2, // Opcode: FSUEQ_D 5165/* 11641 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 11656 5166/* 11646 */ MCD::OPC_CheckPredicate, 30, 71, 21, 0, // Skip to: 17098 5167/* 11651 */ MCD::OPC_Decode, 147, 13, 138, 2, // Opcode: FSLT_W 5168/* 11656 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 11671 5169/* 11661 */ MCD::OPC_CheckPredicate, 30, 56, 21, 0, // Skip to: 17098 5170/* 11666 */ MCD::OPC_Decode, 146, 13, 139, 2, // Opcode: FSLT_D 5171/* 11671 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 11686 5172/* 11676 */ MCD::OPC_CheckPredicate, 30, 41, 21, 0, // Skip to: 17098 5173/* 11681 */ MCD::OPC_Decode, 175, 13, 138, 2, // Opcode: FSULT_W 5174/* 11686 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 11701 5175/* 11691 */ MCD::OPC_CheckPredicate, 30, 26, 21, 0, // Skip to: 17098 5176/* 11696 */ MCD::OPC_Decode, 174, 13, 139, 2, // Opcode: FSULT_D 5177/* 11701 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 11716 5178/* 11706 */ MCD::OPC_CheckPredicate, 30, 11, 21, 0, // Skip to: 17098 5179/* 11711 */ MCD::OPC_Decode, 145, 13, 138, 2, // Opcode: FSLE_W 5180/* 11716 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 11731 5181/* 11721 */ MCD::OPC_CheckPredicate, 30, 252, 20, 0, // Skip to: 17098 5182/* 11726 */ MCD::OPC_Decode, 144, 13, 139, 2, // Opcode: FSLE_D 5183/* 11731 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 11746 5184/* 11736 */ MCD::OPC_CheckPredicate, 30, 237, 20, 0, // Skip to: 17098 5185/* 11741 */ MCD::OPC_Decode, 173, 13, 138, 2, // Opcode: FSULE_W 5186/* 11746 */ MCD::OPC_FilterValue, 31, 227, 20, 0, // Skip to: 17098 5187/* 11751 */ MCD::OPC_CheckPredicate, 30, 222, 20, 0, // Skip to: 17098 5188/* 11756 */ MCD::OPC_Decode, 172, 13, 139, 2, // Opcode: FSULE_D 5189/* 11761 */ MCD::OPC_FilterValue, 27, 137, 1, 0, // Skip to: 12159 5190/* 11766 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 5191/* 11769 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11784 5192/* 11774 */ MCD::OPC_CheckPredicate, 30, 199, 20, 0, // Skip to: 17098 5193/* 11779 */ MCD::OPC_Decode, 152, 12, 138, 2, // Opcode: FADD_W 5194/* 11784 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 11799 5195/* 11789 */ MCD::OPC_CheckPredicate, 30, 184, 20, 0, // Skip to: 17098 5196/* 11794 */ MCD::OPC_Decode, 143, 12, 139, 2, // Opcode: FADD_D 5197/* 11799 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 11814 5198/* 11804 */ MCD::OPC_CheckPredicate, 30, 169, 20, 0, // Skip to: 17098 5199/* 11809 */ MCD::OPC_Decode, 169, 13, 138, 2, // Opcode: FSUB_W 5200/* 11814 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 11829 5201/* 11819 */ MCD::OPC_CheckPredicate, 30, 154, 20, 0, // Skip to: 17098 5202/* 11824 */ MCD::OPC_Decode, 160, 13, 139, 2, // Opcode: FSUB_D 5203/* 11829 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 11844 5204/* 11834 */ MCD::OPC_CheckPredicate, 30, 139, 20, 0, // Skip to: 17098 5205/* 11839 */ MCD::OPC_Decode, 253, 12, 138, 2, // Opcode: FMUL_W 5206/* 11844 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 11859 5207/* 11849 */ MCD::OPC_CheckPredicate, 30, 124, 20, 0, // Skip to: 17098 5208/* 11854 */ MCD::OPC_Decode, 244, 12, 139, 2, // Opcode: FMUL_D 5209/* 11859 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 11874 5210/* 11864 */ MCD::OPC_CheckPredicate, 30, 109, 20, 0, // Skip to: 17098 5211/* 11869 */ MCD::OPC_Decode, 190, 12, 138, 2, // Opcode: FDIV_W 5212/* 11874 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 11889 5213/* 11879 */ MCD::OPC_CheckPredicate, 30, 94, 20, 0, // Skip to: 17098 5214/* 11884 */ MCD::OPC_Decode, 182, 12, 139, 2, // Opcode: FDIV_D 5215/* 11889 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 11904 5216/* 11894 */ MCD::OPC_CheckPredicate, 30, 79, 20, 0, // Skip to: 17098 5217/* 11899 */ MCD::OPC_Decode, 225, 12, 142, 2, // Opcode: FMADD_W 5218/* 11904 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 11919 5219/* 11909 */ MCD::OPC_CheckPredicate, 30, 64, 20, 0, // Skip to: 17098 5220/* 11914 */ MCD::OPC_Decode, 224, 12, 143, 2, // Opcode: FMADD_D 5221/* 11919 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 11934 5222/* 11924 */ MCD::OPC_CheckPredicate, 30, 49, 20, 0, // Skip to: 17098 5223/* 11929 */ MCD::OPC_Decode, 243, 12, 142, 2, // Opcode: FMSUB_W 5224/* 11934 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 11949 5225/* 11939 */ MCD::OPC_CheckPredicate, 30, 34, 20, 0, // Skip to: 17098 5226/* 11944 */ MCD::OPC_Decode, 242, 12, 143, 2, // Opcode: FMSUB_D 5227/* 11949 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11964 5228/* 11954 */ MCD::OPC_CheckPredicate, 30, 19, 20, 0, // Skip to: 17098 5229/* 11959 */ MCD::OPC_Decode, 194, 12, 138, 2, // Opcode: FEXP2_W 5230/* 11964 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 11979 5231/* 11969 */ MCD::OPC_CheckPredicate, 30, 4, 20, 0, // Skip to: 17098 5232/* 11974 */ MCD::OPC_Decode, 193, 12, 139, 2, // Opcode: FEXP2_D 5233/* 11979 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 11994 5234/* 11984 */ MCD::OPC_CheckPredicate, 30, 245, 19, 0, // Skip to: 17098 5235/* 11989 */ MCD::OPC_Decode, 191, 12, 178, 2, // Opcode: FEXDO_H 5236/* 11994 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 12009 5237/* 11999 */ MCD::OPC_CheckPredicate, 30, 230, 19, 0, // Skip to: 17098 5238/* 12004 */ MCD::OPC_Decode, 192, 12, 179, 2, // Opcode: FEXDO_W 5239/* 12009 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 12024 5240/* 12014 */ MCD::OPC_CheckPredicate, 30, 215, 19, 0, // Skip to: 17098 5241/* 12019 */ MCD::OPC_Decode, 184, 13, 178, 2, // Opcode: FTQ_H 5242/* 12024 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 12039 5243/* 12029 */ MCD::OPC_CheckPredicate, 30, 200, 19, 0, // Skip to: 17098 5244/* 12034 */ MCD::OPC_Decode, 185, 13, 179, 2, // Opcode: FTQ_W 5245/* 12039 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 12054 5246/* 12044 */ MCD::OPC_CheckPredicate, 30, 185, 19, 0, // Skip to: 17098 5247/* 12049 */ MCD::OPC_Decode, 233, 12, 138, 2, // Opcode: FMIN_W 5248/* 12054 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 12069 5249/* 12059 */ MCD::OPC_CheckPredicate, 30, 170, 19, 0, // Skip to: 17098 5250/* 12064 */ MCD::OPC_Decode, 232, 12, 139, 2, // Opcode: FMIN_D 5251/* 12069 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 12084 5252/* 12074 */ MCD::OPC_CheckPredicate, 30, 155, 19, 0, // Skip to: 17098 5253/* 12079 */ MCD::OPC_Decode, 231, 12, 138, 2, // Opcode: FMIN_A_W 5254/* 12084 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 12099 5255/* 12089 */ MCD::OPC_CheckPredicate, 30, 140, 19, 0, // Skip to: 17098 5256/* 12094 */ MCD::OPC_Decode, 230, 12, 139, 2, // Opcode: FMIN_A_D 5257/* 12099 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 12114 5258/* 12104 */ MCD::OPC_CheckPredicate, 30, 125, 19, 0, // Skip to: 17098 5259/* 12109 */ MCD::OPC_Decode, 229, 12, 138, 2, // Opcode: FMAX_W 5260/* 12114 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 12129 5261/* 12119 */ MCD::OPC_CheckPredicate, 30, 110, 19, 0, // Skip to: 17098 5262/* 12124 */ MCD::OPC_Decode, 228, 12, 139, 2, // Opcode: FMAX_D 5263/* 12129 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 12144 5264/* 12134 */ MCD::OPC_CheckPredicate, 30, 95, 19, 0, // Skip to: 17098 5265/* 12139 */ MCD::OPC_Decode, 227, 12, 138, 2, // Opcode: FMAX_A_W 5266/* 12144 */ MCD::OPC_FilterValue, 31, 85, 19, 0, // Skip to: 17098 5267/* 12149 */ MCD::OPC_CheckPredicate, 30, 80, 19, 0, // Skip to: 17098 5268/* 12154 */ MCD::OPC_Decode, 226, 12, 139, 2, // Opcode: FMAX_A_D 5269/* 12159 */ MCD::OPC_FilterValue, 28, 107, 1, 0, // Skip to: 12527 5270/* 12164 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 5271/* 12167 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12182 5272/* 12172 */ MCD::OPC_CheckPredicate, 30, 57, 19, 0, // Skip to: 17098 5273/* 12177 */ MCD::OPC_Decode, 171, 12, 138, 2, // Opcode: FCOR_W 5274/* 12182 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12197 5275/* 12187 */ MCD::OPC_CheckPredicate, 30, 42, 19, 0, // Skip to: 17098 5276/* 12192 */ MCD::OPC_Decode, 170, 12, 139, 2, // Opcode: FCOR_D 5277/* 12197 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12212 5278/* 12202 */ MCD::OPC_CheckPredicate, 30, 27, 19, 0, // Skip to: 17098 5279/* 12207 */ MCD::OPC_Decode, 179, 12, 138, 2, // Opcode: FCUNE_W 5280/* 12212 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12227 5281/* 12217 */ MCD::OPC_CheckPredicate, 30, 12, 19, 0, // Skip to: 17098 5282/* 12222 */ MCD::OPC_Decode, 178, 12, 139, 2, // Opcode: FCUNE_D 5283/* 12227 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12242 5284/* 12232 */ MCD::OPC_CheckPredicate, 30, 253, 18, 0, // Skip to: 17098 5285/* 12237 */ MCD::OPC_Decode, 169, 12, 138, 2, // Opcode: FCNE_W 5286/* 12242 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 12257 5287/* 12247 */ MCD::OPC_CheckPredicate, 30, 238, 18, 0, // Skip to: 17098 5288/* 12252 */ MCD::OPC_Decode, 168, 12, 139, 2, // Opcode: FCNE_D 5289/* 12257 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 12272 5290/* 12262 */ MCD::OPC_CheckPredicate, 30, 223, 18, 0, // Skip to: 17098 5291/* 12267 */ MCD::OPC_Decode, 183, 17, 137, 2, // Opcode: MUL_Q_H 5292/* 12272 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 12287 5293/* 12277 */ MCD::OPC_CheckPredicate, 30, 208, 18, 0, // Skip to: 17098 5294/* 12282 */ MCD::OPC_Decode, 184, 17, 138, 2, // Opcode: MUL_Q_W 5295/* 12287 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 12302 5296/* 12292 */ MCD::OPC_CheckPredicate, 30, 193, 18, 0, // Skip to: 17098 5297/* 12297 */ MCD::OPC_Decode, 172, 15, 141, 2, // Opcode: MADD_Q_H 5298/* 12302 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 12317 5299/* 12307 */ MCD::OPC_CheckPredicate, 30, 178, 18, 0, // Skip to: 17098 5300/* 12312 */ MCD::OPC_Decode, 173, 15, 142, 2, // Opcode: MADD_Q_W 5301/* 12317 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 12332 5302/* 12322 */ MCD::OPC_CheckPredicate, 30, 163, 18, 0, // Skip to: 17098 5303/* 12327 */ MCD::OPC_Decode, 223, 16, 141, 2, // Opcode: MSUB_Q_H 5304/* 12332 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 12347 5305/* 12337 */ MCD::OPC_CheckPredicate, 30, 148, 18, 0, // Skip to: 17098 5306/* 12342 */ MCD::OPC_Decode, 224, 16, 142, 2, // Opcode: MSUB_Q_W 5307/* 12347 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 12362 5308/* 12352 */ MCD::OPC_CheckPredicate, 30, 133, 18, 0, // Skip to: 17098 5309/* 12357 */ MCD::OPC_Decode, 151, 13, 138, 2, // Opcode: FSOR_W 5310/* 12362 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 12377 5311/* 12367 */ MCD::OPC_CheckPredicate, 30, 118, 18, 0, // Skip to: 17098 5312/* 12372 */ MCD::OPC_Decode, 150, 13, 139, 2, // Opcode: FSOR_D 5313/* 12377 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 12392 5314/* 12382 */ MCD::OPC_CheckPredicate, 30, 103, 18, 0, // Skip to: 17098 5315/* 12387 */ MCD::OPC_Decode, 177, 13, 138, 2, // Opcode: FSUNE_W 5316/* 12392 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 12407 5317/* 12397 */ MCD::OPC_CheckPredicate, 30, 88, 18, 0, // Skip to: 17098 5318/* 12402 */ MCD::OPC_Decode, 176, 13, 139, 2, // Opcode: FSUNE_D 5319/* 12407 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 12422 5320/* 12412 */ MCD::OPC_CheckPredicate, 30, 73, 18, 0, // Skip to: 17098 5321/* 12417 */ MCD::OPC_Decode, 149, 13, 138, 2, // Opcode: FSNE_W 5322/* 12422 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 12437 5323/* 12427 */ MCD::OPC_CheckPredicate, 30, 58, 18, 0, // Skip to: 17098 5324/* 12432 */ MCD::OPC_Decode, 148, 13, 139, 2, // Opcode: FSNE_D 5325/* 12437 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 12452 5326/* 12442 */ MCD::OPC_CheckPredicate, 30, 43, 18, 0, // Skip to: 17098 5327/* 12447 */ MCD::OPC_Decode, 159, 17, 137, 2, // Opcode: MULR_Q_H 5328/* 12452 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 12467 5329/* 12457 */ MCD::OPC_CheckPredicate, 30, 28, 18, 0, // Skip to: 17098 5330/* 12462 */ MCD::OPC_Decode, 160, 17, 138, 2, // Opcode: MULR_Q_W 5331/* 12467 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 12482 5332/* 12472 */ MCD::OPC_CheckPredicate, 30, 13, 18, 0, // Skip to: 17098 5333/* 12477 */ MCD::OPC_Decode, 156, 15, 141, 2, // Opcode: MADDR_Q_H 5334/* 12482 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 12497 5335/* 12487 */ MCD::OPC_CheckPredicate, 30, 254, 17, 0, // Skip to: 17098 5336/* 12492 */ MCD::OPC_Decode, 157, 15, 142, 2, // Opcode: MADDR_Q_W 5337/* 12497 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 12512 5338/* 12502 */ MCD::OPC_CheckPredicate, 30, 239, 17, 0, // Skip to: 17098 5339/* 12507 */ MCD::OPC_Decode, 207, 16, 141, 2, // Opcode: MSUBR_Q_H 5340/* 12512 */ MCD::OPC_FilterValue, 29, 229, 17, 0, // Skip to: 17098 5341/* 12517 */ MCD::OPC_CheckPredicate, 30, 224, 17, 0, // Skip to: 17098 5342/* 12522 */ MCD::OPC_Decode, 208, 16, 142, 2, // Opcode: MSUBR_Q_W 5343/* 12527 */ MCD::OPC_FilterValue, 30, 76, 3, 0, // Skip to: 13376 5344/* 12532 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 5345/* 12535 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12550 5346/* 12540 */ MCD::OPC_CheckPredicate, 30, 201, 17, 0, // Skip to: 17098 5347/* 12545 */ MCD::OPC_Decode, 164, 6, 136, 2, // Opcode: AND_V 5348/* 12550 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12565 5349/* 12555 */ MCD::OPC_CheckPredicate, 30, 186, 17, 0, // Skip to: 17098 5350/* 12560 */ MCD::OPC_Decode, 228, 17, 136, 2, // Opcode: OR_V 5351/* 12565 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12580 5352/* 12570 */ MCD::OPC_CheckPredicate, 30, 171, 17, 0, // Skip to: 17098 5353/* 12575 */ MCD::OPC_Decode, 215, 17, 136, 2, // Opcode: NOR_V 5354/* 12580 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12595 5355/* 12585 */ MCD::OPC_CheckPredicate, 30, 156, 17, 0, // Skip to: 17098 5356/* 12590 */ MCD::OPC_Decode, 154, 22, 136, 2, // Opcode: XOR_V 5357/* 12595 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12610 5358/* 12600 */ MCD::OPC_CheckPredicate, 30, 141, 17, 0, // Skip to: 17098 5359/* 12605 */ MCD::OPC_Decode, 207, 7, 140, 2, // Opcode: BMNZ_V 5360/* 12610 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12625 5361/* 12615 */ MCD::OPC_CheckPredicate, 30, 126, 17, 0, // Skip to: 17098 5362/* 12620 */ MCD::OPC_Decode, 209, 7, 140, 2, // Opcode: BMZ_V 5363/* 12625 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12640 5364/* 12630 */ MCD::OPC_CheckPredicate, 30, 111, 17, 0, // Skip to: 17098 5365/* 12635 */ MCD::OPC_Decode, 251, 7, 140, 2, // Opcode: BSEL_V 5366/* 12640 */ MCD::OPC_FilterValue, 24, 243, 0, 0, // Skip to: 12888 5367/* 12645 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 5368/* 12648 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12663 5369/* 12653 */ MCD::OPC_CheckPredicate, 30, 88, 17, 0, // Skip to: 17098 5370/* 12658 */ MCD::OPC_Decode, 207, 12, 180, 2, // Opcode: FILL_B 5371/* 12663 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12678 5372/* 12668 */ MCD::OPC_CheckPredicate, 30, 73, 17, 0, // Skip to: 17098 5373/* 12673 */ MCD::OPC_Decode, 209, 12, 181, 2, // Opcode: FILL_H 5374/* 12678 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12693 5375/* 12683 */ MCD::OPC_CheckPredicate, 30, 58, 17, 0, // Skip to: 17098 5376/* 12688 */ MCD::OPC_Decode, 210, 12, 182, 2, // Opcode: FILL_W 5377/* 12693 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12708 5378/* 12698 */ MCD::OPC_CheckPredicate, 38, 43, 17, 0, // Skip to: 17098 5379/* 12703 */ MCD::OPC_Decode, 208, 12, 183, 2, // Opcode: FILL_D 5380/* 12708 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12723 5381/* 12713 */ MCD::OPC_CheckPredicate, 30, 28, 17, 0, // Skip to: 17098 5382/* 12718 */ MCD::OPC_Decode, 246, 17, 172, 2, // Opcode: PCNT_B 5383/* 12723 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12738 5384/* 12728 */ MCD::OPC_CheckPredicate, 30, 13, 17, 0, // Skip to: 17098 5385/* 12733 */ MCD::OPC_Decode, 248, 17, 184, 2, // Opcode: PCNT_H 5386/* 12738 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 12753 5387/* 12743 */ MCD::OPC_CheckPredicate, 30, 254, 16, 0, // Skip to: 17098 5388/* 12748 */ MCD::OPC_Decode, 249, 17, 185, 2, // Opcode: PCNT_W 5389/* 12753 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 12768 5390/* 12758 */ MCD::OPC_CheckPredicate, 30, 239, 16, 0, // Skip to: 17098 5391/* 12763 */ MCD::OPC_Decode, 247, 17, 186, 2, // Opcode: PCNT_D 5392/* 12768 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 12783 5393/* 12773 */ MCD::OPC_CheckPredicate, 30, 224, 16, 0, // Skip to: 17098 5394/* 12778 */ MCD::OPC_Decode, 192, 17, 172, 2, // Opcode: NLOC_B 5395/* 12783 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 12798 5396/* 12788 */ MCD::OPC_CheckPredicate, 30, 209, 16, 0, // Skip to: 17098 5397/* 12793 */ MCD::OPC_Decode, 194, 17, 184, 2, // Opcode: NLOC_H 5398/* 12798 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 12813 5399/* 12803 */ MCD::OPC_CheckPredicate, 30, 194, 16, 0, // Skip to: 17098 5400/* 12808 */ MCD::OPC_Decode, 195, 17, 185, 2, // Opcode: NLOC_W 5401/* 12813 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 12828 5402/* 12818 */ MCD::OPC_CheckPredicate, 30, 179, 16, 0, // Skip to: 17098 5403/* 12823 */ MCD::OPC_Decode, 193, 17, 186, 2, // Opcode: NLOC_D 5404/* 12828 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 12843 5405/* 12833 */ MCD::OPC_CheckPredicate, 30, 164, 16, 0, // Skip to: 17098 5406/* 12838 */ MCD::OPC_Decode, 196, 17, 172, 2, // Opcode: NLZC_B 5407/* 12843 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 12858 5408/* 12848 */ MCD::OPC_CheckPredicate, 30, 149, 16, 0, // Skip to: 17098 5409/* 12853 */ MCD::OPC_Decode, 198, 17, 184, 2, // Opcode: NLZC_H 5410/* 12858 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12873 5411/* 12863 */ MCD::OPC_CheckPredicate, 30, 134, 16, 0, // Skip to: 17098 5412/* 12868 */ MCD::OPC_Decode, 199, 17, 185, 2, // Opcode: NLZC_W 5413/* 12873 */ MCD::OPC_FilterValue, 15, 124, 16, 0, // Skip to: 17098 5414/* 12878 */ MCD::OPC_CheckPredicate, 30, 119, 16, 0, // Skip to: 17098 5415/* 12883 */ MCD::OPC_Decode, 197, 17, 186, 2, // Opcode: NLZC_D 5416/* 12888 */ MCD::OPC_FilterValue, 25, 109, 16, 0, // Skip to: 17098 5417/* 12893 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 5418/* 12896 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12911 5419/* 12901 */ MCD::OPC_CheckPredicate, 30, 96, 16, 0, // Skip to: 17098 5420/* 12906 */ MCD::OPC_Decode, 158, 12, 185, 2, // Opcode: FCLASS_W 5421/* 12911 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 12926 5422/* 12916 */ MCD::OPC_CheckPredicate, 30, 81, 16, 0, // Skip to: 17098 5423/* 12921 */ MCD::OPC_Decode, 157, 12, 186, 2, // Opcode: FCLASS_D 5424/* 12926 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 12941 5425/* 12931 */ MCD::OPC_CheckPredicate, 30, 66, 16, 0, // Skip to: 17098 5426/* 12936 */ MCD::OPC_Decode, 187, 13, 185, 2, // Opcode: FTRUNC_S_W 5427/* 12941 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 12956 5428/* 12946 */ MCD::OPC_CheckPredicate, 30, 51, 16, 0, // Skip to: 17098 5429/* 12951 */ MCD::OPC_Decode, 186, 13, 186, 2, // Opcode: FTRUNC_S_D 5430/* 12956 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 12971 5431/* 12961 */ MCD::OPC_CheckPredicate, 30, 36, 16, 0, // Skip to: 17098 5432/* 12966 */ MCD::OPC_Decode, 189, 13, 185, 2, // Opcode: FTRUNC_U_W 5433/* 12971 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 12986 5434/* 12976 */ MCD::OPC_CheckPredicate, 30, 21, 16, 0, // Skip to: 17098 5435/* 12981 */ MCD::OPC_Decode, 188, 13, 186, 2, // Opcode: FTRUNC_U_D 5436/* 12986 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 13001 5437/* 12991 */ MCD::OPC_CheckPredicate, 30, 6, 16, 0, // Skip to: 17098 5438/* 12996 */ MCD::OPC_Decode, 159, 13, 185, 2, // Opcode: FSQRT_W 5439/* 13001 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 13016 5440/* 13006 */ MCD::OPC_CheckPredicate, 30, 247, 15, 0, // Skip to: 17098 5441/* 13011 */ MCD::OPC_Decode, 152, 13, 186, 2, // Opcode: FSQRT_D 5442/* 13016 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 13031 5443/* 13021 */ MCD::OPC_CheckPredicate, 30, 232, 15, 0, // Skip to: 17098 5444/* 13026 */ MCD::OPC_Decode, 139, 13, 185, 2, // Opcode: FRSQRT_W 5445/* 13031 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 13046 5446/* 13036 */ MCD::OPC_CheckPredicate, 30, 217, 15, 0, // Skip to: 17098 5447/* 13041 */ MCD::OPC_Decode, 138, 13, 186, 2, // Opcode: FRSQRT_D 5448/* 13046 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 13061 5449/* 13051 */ MCD::OPC_CheckPredicate, 30, 202, 15, 0, // Skip to: 17098 5450/* 13056 */ MCD::OPC_Decode, 135, 13, 185, 2, // Opcode: FRCP_W 5451/* 13061 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 13076 5452/* 13066 */ MCD::OPC_CheckPredicate, 30, 187, 15, 0, // Skip to: 17098 5453/* 13071 */ MCD::OPC_Decode, 134, 13, 186, 2, // Opcode: FRCP_D 5454/* 13076 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 13091 5455/* 13081 */ MCD::OPC_CheckPredicate, 30, 172, 15, 0, // Skip to: 17098 5456/* 13086 */ MCD::OPC_Decode, 137, 13, 185, 2, // Opcode: FRINT_W 5457/* 13091 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 13106 5458/* 13096 */ MCD::OPC_CheckPredicate, 30, 157, 15, 0, // Skip to: 17098 5459/* 13101 */ MCD::OPC_Decode, 136, 13, 186, 2, // Opcode: FRINT_D 5460/* 13106 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 13121 5461/* 13111 */ MCD::OPC_CheckPredicate, 30, 142, 15, 0, // Skip to: 17098 5462/* 13116 */ MCD::OPC_Decode, 212, 12, 185, 2, // Opcode: FLOG2_W 5463/* 13121 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 13136 5464/* 13126 */ MCD::OPC_CheckPredicate, 30, 127, 15, 0, // Skip to: 17098 5465/* 13131 */ MCD::OPC_Decode, 211, 12, 186, 2, // Opcode: FLOG2_D 5466/* 13136 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 13151 5467/* 13141 */ MCD::OPC_CheckPredicate, 30, 112, 15, 0, // Skip to: 17098 5468/* 13146 */ MCD::OPC_Decode, 196, 12, 187, 2, // Opcode: FEXUPL_W 5469/* 13151 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 13166 5470/* 13156 */ MCD::OPC_CheckPredicate, 30, 97, 15, 0, // Skip to: 17098 5471/* 13161 */ MCD::OPC_Decode, 195, 12, 188, 2, // Opcode: FEXUPL_D 5472/* 13166 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 13181 5473/* 13171 */ MCD::OPC_CheckPredicate, 30, 82, 15, 0, // Skip to: 17098 5474/* 13176 */ MCD::OPC_Decode, 198, 12, 187, 2, // Opcode: FEXUPR_W 5475/* 13181 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 13196 5476/* 13186 */ MCD::OPC_CheckPredicate, 30, 67, 15, 0, // Skip to: 17098 5477/* 13191 */ MCD::OPC_Decode, 197, 12, 188, 2, // Opcode: FEXUPR_D 5478/* 13196 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 13211 5479/* 13201 */ MCD::OPC_CheckPredicate, 30, 52, 15, 0, // Skip to: 17098 5480/* 13206 */ MCD::OPC_Decode, 204, 12, 187, 2, // Opcode: FFQL_W 5481/* 13211 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 13226 5482/* 13216 */ MCD::OPC_CheckPredicate, 30, 37, 15, 0, // Skip to: 17098 5483/* 13221 */ MCD::OPC_Decode, 203, 12, 188, 2, // Opcode: FFQL_D 5484/* 13226 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 13241 5485/* 13231 */ MCD::OPC_CheckPredicate, 30, 22, 15, 0, // Skip to: 17098 5486/* 13236 */ MCD::OPC_Decode, 206, 12, 187, 2, // Opcode: FFQR_W 5487/* 13241 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 13256 5488/* 13246 */ MCD::OPC_CheckPredicate, 30, 7, 15, 0, // Skip to: 17098 5489/* 13251 */ MCD::OPC_Decode, 205, 12, 188, 2, // Opcode: FFQR_D 5490/* 13256 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 13271 5491/* 13261 */ MCD::OPC_CheckPredicate, 30, 248, 14, 0, // Skip to: 17098 5492/* 13266 */ MCD::OPC_Decode, 181, 13, 185, 2, // Opcode: FTINT_S_W 5493/* 13271 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 13286 5494/* 13276 */ MCD::OPC_CheckPredicate, 30, 233, 14, 0, // Skip to: 17098 5495/* 13281 */ MCD::OPC_Decode, 180, 13, 186, 2, // Opcode: FTINT_S_D 5496/* 13286 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 13301 5497/* 13291 */ MCD::OPC_CheckPredicate, 30, 218, 14, 0, // Skip to: 17098 5498/* 13296 */ MCD::OPC_Decode, 183, 13, 185, 2, // Opcode: FTINT_U_W 5499/* 13301 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 13316 5500/* 13306 */ MCD::OPC_CheckPredicate, 30, 203, 14, 0, // Skip to: 17098 5501/* 13311 */ MCD::OPC_Decode, 182, 13, 186, 2, // Opcode: FTINT_U_D 5502/* 13316 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 13331 5503/* 13321 */ MCD::OPC_CheckPredicate, 30, 188, 14, 0, // Skip to: 17098 5504/* 13326 */ MCD::OPC_Decode, 200, 12, 185, 2, // Opcode: FFINT_S_W 5505/* 13331 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 13346 5506/* 13336 */ MCD::OPC_CheckPredicate, 30, 173, 14, 0, // Skip to: 17098 5507/* 13341 */ MCD::OPC_Decode, 199, 12, 186, 2, // Opcode: FFINT_S_D 5508/* 13346 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 13361 5509/* 13351 */ MCD::OPC_CheckPredicate, 30, 158, 14, 0, // Skip to: 17098 5510/* 13356 */ MCD::OPC_Decode, 202, 12, 185, 2, // Opcode: FFINT_U_W 5511/* 13361 */ MCD::OPC_FilterValue, 31, 148, 14, 0, // Skip to: 17098 5512/* 13366 */ MCD::OPC_CheckPredicate, 30, 143, 14, 0, // Skip to: 17098 5513/* 13371 */ MCD::OPC_Decode, 201, 12, 186, 2, // Opcode: FFINT_U_D 5514/* 13376 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 13391 5515/* 13381 */ MCD::OPC_CheckPredicate, 30, 128, 14, 0, // Skip to: 17098 5516/* 13386 */ MCD::OPC_Decode, 185, 14, 189, 2, // Opcode: LD_B 5517/* 13391 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 13406 5518/* 13396 */ MCD::OPC_CheckPredicate, 30, 113, 14, 0, // Skip to: 17098 5519/* 13401 */ MCD::OPC_Decode, 187, 14, 189, 2, // Opcode: LD_H 5520/* 13406 */ MCD::OPC_FilterValue, 34, 10, 0, 0, // Skip to: 13421 5521/* 13411 */ MCD::OPC_CheckPredicate, 30, 98, 14, 0, // Skip to: 17098 5522/* 13416 */ MCD::OPC_Decode, 188, 14, 189, 2, // Opcode: LD_W 5523/* 13421 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 13436 5524/* 13426 */ MCD::OPC_CheckPredicate, 30, 83, 14, 0, // Skip to: 17098 5525/* 13431 */ MCD::OPC_Decode, 186, 14, 189, 2, // Opcode: LD_D 5526/* 13436 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 13451 5527/* 13441 */ MCD::OPC_CheckPredicate, 30, 68, 14, 0, // Skip to: 17098 5528/* 13446 */ MCD::OPC_Decode, 197, 20, 189, 2, // Opcode: ST_B 5529/* 13451 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 13466 5530/* 13456 */ MCD::OPC_CheckPredicate, 30, 53, 14, 0, // Skip to: 17098 5531/* 13461 */ MCD::OPC_Decode, 199, 20, 189, 2, // Opcode: ST_H 5532/* 13466 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 13481 5533/* 13471 */ MCD::OPC_CheckPredicate, 30, 38, 14, 0, // Skip to: 17098 5534/* 13476 */ MCD::OPC_Decode, 200, 20, 189, 2, // Opcode: ST_W 5535/* 13481 */ MCD::OPC_FilterValue, 39, 28, 14, 0, // Skip to: 17098 5536/* 13486 */ MCD::OPC_CheckPredicate, 30, 23, 14, 0, // Skip to: 17098 5537/* 13491 */ MCD::OPC_Decode, 198, 20, 189, 2, // Opcode: ST_D 5538/* 13496 */ MCD::OPC_FilterValue, 31, 165, 12, 0, // Skip to: 16738 5539/* 13501 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 5540/* 13504 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13519 5541/* 13509 */ MCD::OPC_CheckPredicate, 28, 0, 14, 0, // Skip to: 17098 5542/* 13514 */ MCD::OPC_Decode, 236, 11, 190, 2, // Opcode: EXT 5543/* 13519 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13534 5544/* 13524 */ MCD::OPC_CheckPredicate, 28, 241, 13, 0, // Skip to: 17098 5545/* 13529 */ MCD::OPC_Decode, 224, 13, 191, 2, // Opcode: INS 5546/* 13534 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 13556 5547/* 13539 */ MCD::OPC_CheckPredicate, 42, 226, 13, 0, // Skip to: 17098 5548/* 13544 */ MCD::OPC_CheckField, 6, 5, 0, 219, 13, 0, // Skip to: 17098 5549/* 13551 */ MCD::OPC_Decode, 133, 13, 192, 2, // Opcode: FORK 5550/* 13556 */ MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 13584 5551/* 13561 */ MCD::OPC_CheckPredicate, 42, 204, 13, 0, // Skip to: 17098 5552/* 13566 */ MCD::OPC_CheckField, 16, 5, 0, 197, 13, 0, // Skip to: 17098 5553/* 13573 */ MCD::OPC_CheckField, 6, 5, 0, 190, 13, 0, // Skip to: 17098 5554/* 13580 */ MCD::OPC_Decode, 159, 22, 25, // Opcode: YIELD 5555/* 13584 */ MCD::OPC_FilterValue, 10, 48, 0, 0, // Skip to: 13637 5556/* 13589 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5557/* 13592 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13607 5558/* 13597 */ MCD::OPC_CheckPredicate, 37, 168, 13, 0, // Skip to: 17098 5559/* 13602 */ MCD::OPC_Decode, 132, 15, 193, 2, // Opcode: LWX 5560/* 13607 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13622 5561/* 13612 */ MCD::OPC_CheckPredicate, 37, 153, 13, 0, // Skip to: 17098 5562/* 13617 */ MCD::OPC_Decode, 197, 14, 193, 2, // Opcode: LHX 5563/* 13622 */ MCD::OPC_FilterValue, 6, 143, 13, 0, // Skip to: 17098 5564/* 13627 */ MCD::OPC_CheckPredicate, 37, 138, 13, 0, // Skip to: 17098 5565/* 13632 */ MCD::OPC_Decode, 156, 14, 193, 2, // Opcode: LBUX 5566/* 13637 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 13659 5567/* 13642 */ MCD::OPC_CheckPredicate, 37, 123, 13, 0, // Skip to: 17098 5568/* 13647 */ MCD::OPC_CheckField, 6, 10, 0, 116, 13, 0, // Skip to: 17098 5569/* 13654 */ MCD::OPC_Decode, 229, 13, 194, 2, // Opcode: INSV 5570/* 13659 */ MCD::OPC_FilterValue, 16, 109, 1, 0, // Skip to: 14029 5571/* 13664 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5572/* 13667 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13682 5573/* 13672 */ MCD::OPC_CheckPredicate, 37, 93, 13, 0, // Skip to: 17098 5574/* 13677 */ MCD::OPC_Decode, 250, 5, 195, 2, // Opcode: ADDU_QB 5575/* 13682 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 13697 5576/* 13687 */ MCD::OPC_CheckPredicate, 37, 78, 13, 0, // Skip to: 17098 5577/* 13692 */ MCD::OPC_Decode, 241, 20, 195, 2, // Opcode: SUBU_QB 5578/* 13697 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 13712 5579/* 13702 */ MCD::OPC_CheckPredicate, 37, 63, 13, 0, // Skip to: 17098 5580/* 13707 */ MCD::OPC_Decode, 254, 5, 195, 2, // Opcode: ADDU_S_QB 5581/* 13712 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 13727 5582/* 13717 */ MCD::OPC_CheckPredicate, 37, 48, 13, 0, // Skip to: 17098 5583/* 13722 */ MCD::OPC_Decode, 245, 20, 195, 2, // Opcode: SUBU_S_QB 5584/* 13727 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 13742 5585/* 13732 */ MCD::OPC_CheckPredicate, 37, 33, 13, 0, // Skip to: 17098 5586/* 13737 */ MCD::OPC_Decode, 146, 17, 195, 2, // Opcode: MULEU_S_PH_QBL 5587/* 13742 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 13757 5588/* 13747 */ MCD::OPC_CheckPredicate, 37, 18, 13, 0, // Skip to: 17098 5589/* 13752 */ MCD::OPC_Decode, 148, 17, 195, 2, // Opcode: MULEU_S_PH_QBR 5590/* 13757 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 13772 5591/* 13762 */ MCD::OPC_CheckPredicate, 69, 3, 13, 0, // Skip to: 17098 5592/* 13767 */ MCD::OPC_Decode, 248, 5, 195, 2, // Opcode: ADDU_PH 5593/* 13772 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 13787 5594/* 13777 */ MCD::OPC_CheckPredicate, 69, 244, 12, 0, // Skip to: 17098 5595/* 13782 */ MCD::OPC_Decode, 239, 20, 195, 2, // Opcode: SUBU_PH 5596/* 13787 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 13802 5597/* 13792 */ MCD::OPC_CheckPredicate, 37, 229, 12, 0, // Skip to: 17098 5598/* 13797 */ MCD::OPC_Decode, 220, 5, 195, 2, // Opcode: ADDQ_PH 5599/* 13802 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 13817 5600/* 13807 */ MCD::OPC_CheckPredicate, 37, 214, 12, 0, // Skip to: 17098 5601/* 13812 */ MCD::OPC_Decode, 210, 20, 195, 2, // Opcode: SUBQ_PH 5602/* 13817 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 13832 5603/* 13822 */ MCD::OPC_CheckPredicate, 69, 199, 12, 0, // Skip to: 17098 5604/* 13827 */ MCD::OPC_Decode, 252, 5, 195, 2, // Opcode: ADDU_S_PH 5605/* 13832 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 13847 5606/* 13837 */ MCD::OPC_CheckPredicate, 69, 184, 12, 0, // Skip to: 17098 5607/* 13842 */ MCD::OPC_Decode, 243, 20, 195, 2, // Opcode: SUBU_S_PH 5608/* 13847 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 13862 5609/* 13852 */ MCD::OPC_CheckPredicate, 37, 169, 12, 0, // Skip to: 17098 5610/* 13857 */ MCD::OPC_Decode, 222, 5, 195, 2, // Opcode: ADDQ_S_PH 5611/* 13862 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 13877 5612/* 13867 */ MCD::OPC_CheckPredicate, 37, 154, 12, 0, // Skip to: 17098 5613/* 13872 */ MCD::OPC_Decode, 212, 20, 195, 2, // Opcode: SUBQ_S_PH 5614/* 13877 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 13891 5615/* 13882 */ MCD::OPC_CheckPredicate, 37, 139, 12, 0, // Skip to: 17098 5616/* 13887 */ MCD::OPC_Decode, 227, 5, 61, // Opcode: ADDSC 5617/* 13891 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 13905 5618/* 13896 */ MCD::OPC_CheckPredicate, 37, 125, 12, 0, // Skip to: 17098 5619/* 13901 */ MCD::OPC_Decode, 136, 6, 61, // Opcode: ADDWC 5620/* 13905 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 13919 5621/* 13910 */ MCD::OPC_CheckPredicate, 37, 111, 12, 0, // Skip to: 17098 5622/* 13915 */ MCD::OPC_Decode, 144, 16, 61, // Opcode: MODSUB 5623/* 13919 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 13941 5624/* 13924 */ MCD::OPC_CheckPredicate, 37, 97, 12, 0, // Skip to: 17098 5625/* 13929 */ MCD::OPC_CheckField, 16, 5, 0, 90, 12, 0, // Skip to: 17098 5626/* 13936 */ MCD::OPC_Decode, 174, 18, 196, 2, // Opcode: RADDU_W_QB 5627/* 13941 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 13955 5628/* 13946 */ MCD::OPC_CheckPredicate, 37, 75, 12, 0, // Skip to: 17098 5629/* 13951 */ MCD::OPC_Decode, 224, 5, 61, // Opcode: ADDQ_S_W 5630/* 13955 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 13969 5631/* 13960 */ MCD::OPC_CheckPredicate, 37, 61, 12, 0, // Skip to: 17098 5632/* 13965 */ MCD::OPC_Decode, 214, 20, 61, // Opcode: SUBQ_S_W 5633/* 13969 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 13984 5634/* 13974 */ MCD::OPC_CheckPredicate, 37, 47, 12, 0, // Skip to: 17098 5635/* 13979 */ MCD::OPC_Decode, 142, 17, 197, 2, // Opcode: MULEQ_S_W_PHL 5636/* 13984 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 13999 5637/* 13989 */ MCD::OPC_CheckPredicate, 37, 32, 12, 0, // Skip to: 17098 5638/* 13994 */ MCD::OPC_Decode, 144, 17, 197, 2, // Opcode: MULEQ_S_W_PHR 5639/* 13999 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 14014 5640/* 14004 */ MCD::OPC_CheckPredicate, 69, 17, 12, 0, // Skip to: 17098 5641/* 14009 */ MCD::OPC_Decode, 154, 17, 195, 2, // Opcode: MULQ_S_PH 5642/* 14014 */ MCD::OPC_FilterValue, 31, 7, 12, 0, // Skip to: 17098 5643/* 14019 */ MCD::OPC_CheckPredicate, 37, 2, 12, 0, // Skip to: 17098 5644/* 14024 */ MCD::OPC_Decode, 150, 17, 195, 2, // Opcode: MULQ_RS_PH 5645/* 14029 */ MCD::OPC_FilterValue, 17, 113, 1, 0, // Skip to: 14403 5646/* 14034 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5647/* 14037 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 14058 5648/* 14042 */ MCD::OPC_CheckPredicate, 37, 235, 11, 0, // Skip to: 17098 5649/* 14047 */ MCD::OPC_CheckField, 11, 5, 0, 228, 11, 0, // Skip to: 17098 5650/* 14054 */ MCD::OPC_Decode, 237, 8, 79, // Opcode: CMPU_EQ_QB 5651/* 14058 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 14079 5652/* 14063 */ MCD::OPC_CheckPredicate, 37, 214, 11, 0, // Skip to: 17098 5653/* 14068 */ MCD::OPC_CheckField, 11, 5, 0, 207, 11, 0, // Skip to: 17098 5654/* 14075 */ MCD::OPC_Decode, 241, 8, 79, // Opcode: CMPU_LT_QB 5655/* 14079 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 14100 5656/* 14084 */ MCD::OPC_CheckPredicate, 37, 193, 11, 0, // Skip to: 17098 5657/* 14089 */ MCD::OPC_CheckField, 11, 5, 0, 186, 11, 0, // Skip to: 17098 5658/* 14096 */ MCD::OPC_Decode, 239, 8, 79, // Opcode: CMPU_LE_QB 5659/* 14100 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14115 5660/* 14105 */ MCD::OPC_CheckPredicate, 37, 172, 11, 0, // Skip to: 17098 5661/* 14110 */ MCD::OPC_Decode, 252, 17, 195, 2, // Opcode: PICK_QB 5662/* 14115 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 14130 5663/* 14120 */ MCD::OPC_CheckPredicate, 37, 157, 11, 0, // Skip to: 17098 5664/* 14125 */ MCD::OPC_Decode, 231, 8, 197, 2, // Opcode: CMPGU_EQ_QB 5665/* 14130 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 14145 5666/* 14135 */ MCD::OPC_CheckPredicate, 37, 142, 11, 0, // Skip to: 17098 5667/* 14140 */ MCD::OPC_Decode, 235, 8, 197, 2, // Opcode: CMPGU_LT_QB 5668/* 14145 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 14160 5669/* 14150 */ MCD::OPC_CheckPredicate, 37, 127, 11, 0, // Skip to: 17098 5670/* 14155 */ MCD::OPC_Decode, 233, 8, 197, 2, // Opcode: CMPGU_LE_QB 5671/* 14160 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 14181 5672/* 14165 */ MCD::OPC_CheckPredicate, 37, 112, 11, 0, // Skip to: 17098 5673/* 14170 */ MCD::OPC_CheckField, 11, 5, 0, 105, 11, 0, // Skip to: 17098 5674/* 14177 */ MCD::OPC_Decode, 247, 8, 79, // Opcode: CMP_EQ_PH 5675/* 14181 */ MCD::OPC_FilterValue, 9, 16, 0, 0, // Skip to: 14202 5676/* 14186 */ MCD::OPC_CheckPredicate, 37, 91, 11, 0, // Skip to: 17098 5677/* 14191 */ MCD::OPC_CheckField, 11, 5, 0, 84, 11, 0, // Skip to: 17098 5678/* 14198 */ MCD::OPC_Decode, 133, 9, 79, // Opcode: CMP_LT_PH 5679/* 14202 */ MCD::OPC_FilterValue, 10, 16, 0, 0, // Skip to: 14223 5680/* 14207 */ MCD::OPC_CheckPredicate, 37, 70, 11, 0, // Skip to: 17098 5681/* 14212 */ MCD::OPC_CheckField, 11, 5, 0, 63, 11, 0, // Skip to: 17098 5682/* 14219 */ MCD::OPC_Decode, 255, 8, 79, // Opcode: CMP_LE_PH 5683/* 14223 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 14238 5684/* 14228 */ MCD::OPC_CheckPredicate, 37, 49, 11, 0, // Skip to: 17098 5685/* 14233 */ MCD::OPC_Decode, 250, 17, 195, 2, // Opcode: PICK_PH 5686/* 14238 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 14253 5687/* 14243 */ MCD::OPC_CheckPredicate, 37, 34, 11, 0, // Skip to: 17098 5688/* 14248 */ MCD::OPC_Decode, 153, 18, 195, 2, // Opcode: PRECRQ_QB_PH 5689/* 14253 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 14268 5690/* 14258 */ MCD::OPC_CheckPredicate, 69, 19, 11, 0, // Skip to: 17098 5691/* 14263 */ MCD::OPC_Decode, 157, 18, 195, 2, // Opcode: PRECR_QB_PH 5692/* 14268 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14283 5693/* 14273 */ MCD::OPC_CheckPredicate, 37, 4, 11, 0, // Skip to: 17098 5694/* 14278 */ MCD::OPC_Decode, 233, 17, 195, 2, // Opcode: PACKRL_PH 5695/* 14283 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 14298 5696/* 14288 */ MCD::OPC_CheckPredicate, 37, 245, 10, 0, // Skip to: 17098 5697/* 14293 */ MCD::OPC_Decode, 149, 18, 195, 2, // Opcode: PRECRQU_S_QB_PH 5698/* 14298 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 14313 5699/* 14303 */ MCD::OPC_CheckPredicate, 37, 230, 10, 0, // Skip to: 17098 5700/* 14308 */ MCD::OPC_Decode, 151, 18, 198, 2, // Opcode: PRECRQ_PH_W 5701/* 14313 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 14328 5702/* 14318 */ MCD::OPC_CheckPredicate, 37, 215, 10, 0, // Skip to: 17098 5703/* 14323 */ MCD::OPC_Decode, 155, 18, 198, 2, // Opcode: PRECRQ_RS_PH_W 5704/* 14328 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 14343 5705/* 14333 */ MCD::OPC_CheckPredicate, 69, 200, 10, 0, // Skip to: 17098 5706/* 14338 */ MCD::OPC_Decode, 225, 8, 197, 2, // Opcode: CMPGDU_EQ_QB 5707/* 14343 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 14358 5708/* 14348 */ MCD::OPC_CheckPredicate, 69, 185, 10, 0, // Skip to: 17098 5709/* 14353 */ MCD::OPC_Decode, 229, 8, 197, 2, // Opcode: CMPGDU_LT_QB 5710/* 14358 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 14373 5711/* 14363 */ MCD::OPC_CheckPredicate, 69, 170, 10, 0, // Skip to: 17098 5712/* 14368 */ MCD::OPC_Decode, 227, 8, 197, 2, // Opcode: CMPGDU_LE_QB 5713/* 14373 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 14388 5714/* 14378 */ MCD::OPC_CheckPredicate, 69, 155, 10, 0, // Skip to: 17098 5715/* 14383 */ MCD::OPC_Decode, 159, 18, 199, 2, // Opcode: PRECR_SRA_PH_W 5716/* 14388 */ MCD::OPC_FilterValue, 31, 145, 10, 0, // Skip to: 17098 5717/* 14393 */ MCD::OPC_CheckPredicate, 69, 140, 10, 0, // Skip to: 17098 5718/* 14398 */ MCD::OPC_Decode, 161, 18, 199, 2, // Opcode: PRECR_SRA_R_PH_W 5719/* 14403 */ MCD::OPC_FilterValue, 18, 128, 1, 0, // Skip to: 14792 5720/* 14408 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5721/* 14411 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 14433 5722/* 14416 */ MCD::OPC_CheckPredicate, 69, 117, 10, 0, // Skip to: 17098 5723/* 14421 */ MCD::OPC_CheckField, 21, 5, 0, 110, 10, 0, // Skip to: 17098 5724/* 14428 */ MCD::OPC_Decode, 199, 5, 200, 2, // Opcode: ABSQ_S_QB 5725/* 14433 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14448 5726/* 14438 */ MCD::OPC_CheckPredicate, 37, 95, 10, 0, // Skip to: 17098 5727/* 14443 */ MCD::OPC_Decode, 195, 18, 201, 2, // Opcode: REPL_QB 5728/* 14448 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 14470 5729/* 14453 */ MCD::OPC_CheckPredicate, 37, 80, 10, 0, // Skip to: 17098 5730/* 14458 */ MCD::OPC_CheckField, 21, 5, 0, 73, 10, 0, // Skip to: 17098 5731/* 14465 */ MCD::OPC_Decode, 191, 18, 202, 2, // Opcode: REPLV_QB 5732/* 14470 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 14492 5733/* 14475 */ MCD::OPC_CheckPredicate, 37, 58, 10, 0, // Skip to: 17098 5734/* 14480 */ MCD::OPC_CheckField, 21, 5, 0, 51, 10, 0, // Skip to: 17098 5735/* 14487 */ MCD::OPC_Decode, 129, 18, 200, 2, // Opcode: PRECEQU_PH_QBL 5736/* 14492 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 14514 5737/* 14497 */ MCD::OPC_CheckPredicate, 37, 36, 10, 0, // Skip to: 17098 5738/* 14502 */ MCD::OPC_CheckField, 21, 5, 0, 29, 10, 0, // Skip to: 17098 5739/* 14509 */ MCD::OPC_Decode, 133, 18, 200, 2, // Opcode: PRECEQU_PH_QBR 5740/* 14514 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 14536 5741/* 14519 */ MCD::OPC_CheckPredicate, 37, 14, 10, 0, // Skip to: 17098 5742/* 14524 */ MCD::OPC_CheckField, 21, 5, 0, 7, 10, 0, // Skip to: 17098 5743/* 14531 */ MCD::OPC_Decode, 130, 18, 200, 2, // Opcode: PRECEQU_PH_QBLA 5744/* 14536 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 14558 5745/* 14541 */ MCD::OPC_CheckPredicate, 37, 248, 9, 0, // Skip to: 17098 5746/* 14546 */ MCD::OPC_CheckField, 21, 5, 0, 241, 9, 0, // Skip to: 17098 5747/* 14553 */ MCD::OPC_Decode, 134, 18, 200, 2, // Opcode: PRECEQU_PH_QBRA 5748/* 14558 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 14580 5749/* 14563 */ MCD::OPC_CheckPredicate, 37, 226, 9, 0, // Skip to: 17098 5750/* 14568 */ MCD::OPC_CheckField, 21, 5, 0, 219, 9, 0, // Skip to: 17098 5751/* 14575 */ MCD::OPC_Decode, 197, 5, 200, 2, // Opcode: ABSQ_S_PH 5752/* 14580 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 14594 5753/* 14585 */ MCD::OPC_CheckPredicate, 37, 204, 9, 0, // Skip to: 17098 5754/* 14590 */ MCD::OPC_Decode, 193, 18, 96, // Opcode: REPL_PH 5755/* 14594 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 14616 5756/* 14599 */ MCD::OPC_CheckPredicate, 37, 190, 9, 0, // Skip to: 17098 5757/* 14604 */ MCD::OPC_CheckField, 21, 5, 0, 183, 9, 0, // Skip to: 17098 5758/* 14611 */ MCD::OPC_Decode, 189, 18, 202, 2, // Opcode: REPLV_PH 5759/* 14616 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 14638 5760/* 14621 */ MCD::OPC_CheckPredicate, 37, 168, 9, 0, // Skip to: 17098 5761/* 14626 */ MCD::OPC_CheckField, 21, 5, 0, 161, 9, 0, // Skip to: 17098 5762/* 14633 */ MCD::OPC_Decode, 137, 18, 203, 2, // Opcode: PRECEQ_W_PHL 5763/* 14638 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 14660 5764/* 14643 */ MCD::OPC_CheckPredicate, 37, 146, 9, 0, // Skip to: 17098 5765/* 14648 */ MCD::OPC_CheckField, 21, 5, 0, 139, 9, 0, // Skip to: 17098 5766/* 14655 */ MCD::OPC_Decode, 139, 18, 203, 2, // Opcode: PRECEQ_W_PHR 5767/* 14660 */ MCD::OPC_FilterValue, 17, 17, 0, 0, // Skip to: 14682 5768/* 14665 */ MCD::OPC_CheckPredicate, 37, 124, 9, 0, // Skip to: 17098 5769/* 14670 */ MCD::OPC_CheckField, 21, 5, 0, 117, 9, 0, // Skip to: 17098 5770/* 14677 */ MCD::OPC_Decode, 201, 5, 204, 2, // Opcode: ABSQ_S_W 5771/* 14682 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 14704 5772/* 14687 */ MCD::OPC_CheckPredicate, 37, 102, 9, 0, // Skip to: 17098 5773/* 14692 */ MCD::OPC_CheckField, 21, 5, 0, 95, 9, 0, // Skip to: 17098 5774/* 14699 */ MCD::OPC_Decode, 174, 7, 204, 2, // Opcode: BITREV 5775/* 14704 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 14726 5776/* 14709 */ MCD::OPC_CheckPredicate, 37, 80, 9, 0, // Skip to: 17098 5777/* 14714 */ MCD::OPC_CheckField, 21, 5, 0, 73, 9, 0, // Skip to: 17098 5778/* 14721 */ MCD::OPC_Decode, 141, 18, 200, 2, // Opcode: PRECEU_PH_QBL 5779/* 14726 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 14748 5780/* 14731 */ MCD::OPC_CheckPredicate, 37, 58, 9, 0, // Skip to: 17098 5781/* 14736 */ MCD::OPC_CheckField, 21, 5, 0, 51, 9, 0, // Skip to: 17098 5782/* 14743 */ MCD::OPC_Decode, 145, 18, 200, 2, // Opcode: PRECEU_PH_QBR 5783/* 14748 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 14770 5784/* 14753 */ MCD::OPC_CheckPredicate, 37, 36, 9, 0, // Skip to: 17098 5785/* 14758 */ MCD::OPC_CheckField, 21, 5, 0, 29, 9, 0, // Skip to: 17098 5786/* 14765 */ MCD::OPC_Decode, 142, 18, 200, 2, // Opcode: PRECEU_PH_QBLA 5787/* 14770 */ MCD::OPC_FilterValue, 31, 19, 9, 0, // Skip to: 17098 5788/* 14775 */ MCD::OPC_CheckPredicate, 37, 14, 9, 0, // Skip to: 17098 5789/* 14780 */ MCD::OPC_CheckField, 21, 5, 0, 7, 9, 0, // Skip to: 17098 5790/* 14787 */ MCD::OPC_Decode, 146, 18, 200, 2, // Opcode: PRECEU_PH_QBRA 5791/* 14792 */ MCD::OPC_FilterValue, 19, 75, 1, 0, // Skip to: 15128 5792/* 14797 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5793/* 14800 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14815 5794/* 14805 */ MCD::OPC_CheckPredicate, 37, 240, 8, 0, // Skip to: 17098 5795/* 14810 */ MCD::OPC_Decode, 195, 19, 205, 2, // Opcode: SHLL_QB 5796/* 14815 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 14830 5797/* 14820 */ MCD::OPC_CheckPredicate, 37, 225, 8, 0, // Skip to: 17098 5798/* 14825 */ MCD::OPC_Decode, 227, 19, 205, 2, // Opcode: SHRL_QB 5799/* 14830 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 14845 5800/* 14835 */ MCD::OPC_CheckPredicate, 37, 210, 8, 0, // Skip to: 17098 5801/* 14840 */ MCD::OPC_Decode, 187, 19, 206, 2, // Opcode: SHLLV_QB 5802/* 14845 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 14860 5803/* 14850 */ MCD::OPC_CheckPredicate, 37, 195, 8, 0, // Skip to: 17098 5804/* 14855 */ MCD::OPC_Decode, 223, 19, 206, 2, // Opcode: SHRLV_QB 5805/* 14860 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 14875 5806/* 14865 */ MCD::OPC_CheckPredicate, 69, 180, 8, 0, // Skip to: 17098 5807/* 14870 */ MCD::OPC_Decode, 213, 19, 205, 2, // Opcode: SHRA_QB 5808/* 14875 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 14890 5809/* 14880 */ MCD::OPC_CheckPredicate, 69, 165, 8, 0, // Skip to: 17098 5810/* 14885 */ MCD::OPC_Decode, 217, 19, 205, 2, // Opcode: SHRA_R_QB 5811/* 14890 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 14905 5812/* 14895 */ MCD::OPC_CheckPredicate, 69, 150, 8, 0, // Skip to: 17098 5813/* 14900 */ MCD::OPC_Decode, 203, 19, 206, 2, // Opcode: SHRAV_QB 5814/* 14905 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 14920 5815/* 14910 */ MCD::OPC_CheckPredicate, 69, 135, 8, 0, // Skip to: 17098 5816/* 14915 */ MCD::OPC_Decode, 207, 19, 206, 2, // Opcode: SHRAV_R_QB 5817/* 14920 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 14935 5818/* 14925 */ MCD::OPC_CheckPredicate, 37, 120, 8, 0, // Skip to: 17098 5819/* 14930 */ MCD::OPC_Decode, 193, 19, 205, 2, // Opcode: SHLL_PH 5820/* 14935 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 14950 5821/* 14940 */ MCD::OPC_CheckPredicate, 37, 105, 8, 0, // Skip to: 17098 5822/* 14945 */ MCD::OPC_Decode, 211, 19, 205, 2, // Opcode: SHRA_PH 5823/* 14950 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 14965 5824/* 14955 */ MCD::OPC_CheckPredicate, 37, 90, 8, 0, // Skip to: 17098 5825/* 14960 */ MCD::OPC_Decode, 185, 19, 206, 2, // Opcode: SHLLV_PH 5826/* 14965 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 14980 5827/* 14970 */ MCD::OPC_CheckPredicate, 37, 75, 8, 0, // Skip to: 17098 5828/* 14975 */ MCD::OPC_Decode, 201, 19, 206, 2, // Opcode: SHRAV_PH 5829/* 14980 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 14995 5830/* 14985 */ MCD::OPC_CheckPredicate, 37, 60, 8, 0, // Skip to: 17098 5831/* 14990 */ MCD::OPC_Decode, 197, 19, 205, 2, // Opcode: SHLL_S_PH 5832/* 14995 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 15010 5833/* 15000 */ MCD::OPC_CheckPredicate, 37, 45, 8, 0, // Skip to: 17098 5834/* 15005 */ MCD::OPC_Decode, 215, 19, 205, 2, // Opcode: SHRA_R_PH 5835/* 15010 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 15025 5836/* 15015 */ MCD::OPC_CheckPredicate, 37, 30, 8, 0, // Skip to: 17098 5837/* 15020 */ MCD::OPC_Decode, 189, 19, 206, 2, // Opcode: SHLLV_S_PH 5838/* 15025 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 15040 5839/* 15030 */ MCD::OPC_CheckPredicate, 37, 15, 8, 0, // Skip to: 17098 5840/* 15035 */ MCD::OPC_Decode, 205, 19, 206, 2, // Opcode: SHRAV_R_PH 5841/* 15040 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 15055 5842/* 15045 */ MCD::OPC_CheckPredicate, 37, 0, 8, 0, // Skip to: 17098 5843/* 15050 */ MCD::OPC_Decode, 199, 19, 207, 2, // Opcode: SHLL_S_W 5844/* 15055 */ MCD::OPC_FilterValue, 21, 10, 0, 0, // Skip to: 15070 5845/* 15060 */ MCD::OPC_CheckPredicate, 37, 241, 7, 0, // Skip to: 17098 5846/* 15065 */ MCD::OPC_Decode, 219, 19, 207, 2, // Opcode: SHRA_R_W 5847/* 15070 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 15084 5848/* 15075 */ MCD::OPC_CheckPredicate, 37, 226, 7, 0, // Skip to: 17098 5849/* 15080 */ MCD::OPC_Decode, 191, 19, 55, // Opcode: SHLLV_S_W 5850/* 15084 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 15098 5851/* 15089 */ MCD::OPC_CheckPredicate, 37, 212, 7, 0, // Skip to: 17098 5852/* 15094 */ MCD::OPC_Decode, 209, 19, 55, // Opcode: SHRAV_R_W 5853/* 15098 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 15113 5854/* 15103 */ MCD::OPC_CheckPredicate, 69, 198, 7, 0, // Skip to: 17098 5855/* 15108 */ MCD::OPC_Decode, 225, 19, 205, 2, // Opcode: SHRL_PH 5856/* 15113 */ MCD::OPC_FilterValue, 27, 188, 7, 0, // Skip to: 17098 5857/* 15118 */ MCD::OPC_CheckPredicate, 69, 183, 7, 0, // Skip to: 17098 5858/* 15123 */ MCD::OPC_Decode, 221, 19, 206, 2, // Opcode: SHRLV_PH 5859/* 15128 */ MCD::OPC_FilterValue, 24, 237, 0, 0, // Skip to: 15370 5860/* 15133 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5861/* 15136 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 15151 5862/* 15141 */ MCD::OPC_CheckPredicate, 69, 160, 7, 0, // Skip to: 17098 5863/* 15146 */ MCD::OPC_Decode, 243, 5, 195, 2, // Opcode: ADDUH_QB 5864/* 15151 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 15166 5865/* 15156 */ MCD::OPC_CheckPredicate, 69, 145, 7, 0, // Skip to: 17098 5866/* 15161 */ MCD::OPC_Decode, 234, 20, 195, 2, // Opcode: SUBUH_QB 5867/* 15166 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 15181 5868/* 15171 */ MCD::OPC_CheckPredicate, 69, 130, 7, 0, // Skip to: 17098 5869/* 15176 */ MCD::OPC_Decode, 245, 5, 195, 2, // Opcode: ADDUH_R_QB 5870/* 15181 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 15196 5871/* 15186 */ MCD::OPC_CheckPredicate, 69, 115, 7, 0, // Skip to: 17098 5872/* 15191 */ MCD::OPC_Decode, 236, 20, 195, 2, // Opcode: SUBUH_R_QB 5873/* 15196 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 15211 5874/* 15201 */ MCD::OPC_CheckPredicate, 69, 100, 7, 0, // Skip to: 17098 5875/* 15206 */ MCD::OPC_Decode, 212, 5, 195, 2, // Opcode: ADDQH_PH 5876/* 15211 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 15226 5877/* 15216 */ MCD::OPC_CheckPredicate, 69, 85, 7, 0, // Skip to: 17098 5878/* 15221 */ MCD::OPC_Decode, 202, 20, 195, 2, // Opcode: SUBQH_PH 5879/* 15226 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 15241 5880/* 15231 */ MCD::OPC_CheckPredicate, 69, 70, 7, 0, // Skip to: 17098 5881/* 15236 */ MCD::OPC_Decode, 214, 5, 195, 2, // Opcode: ADDQH_R_PH 5882/* 15241 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 15256 5883/* 15246 */ MCD::OPC_CheckPredicate, 69, 55, 7, 0, // Skip to: 17098 5884/* 15251 */ MCD::OPC_Decode, 204, 20, 195, 2, // Opcode: SUBQH_R_PH 5885/* 15256 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 15271 5886/* 15261 */ MCD::OPC_CheckPredicate, 69, 40, 7, 0, // Skip to: 17098 5887/* 15266 */ MCD::OPC_Decode, 181, 17, 195, 2, // Opcode: MUL_PH 5888/* 15271 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 15286 5889/* 15276 */ MCD::OPC_CheckPredicate, 69, 25, 7, 0, // Skip to: 17098 5890/* 15281 */ MCD::OPC_Decode, 186, 17, 195, 2, // Opcode: MUL_S_PH 5891/* 15286 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 15300 5892/* 15291 */ MCD::OPC_CheckPredicate, 69, 10, 7, 0, // Skip to: 17098 5893/* 15296 */ MCD::OPC_Decode, 218, 5, 61, // Opcode: ADDQH_W 5894/* 15300 */ MCD::OPC_FilterValue, 17, 9, 0, 0, // Skip to: 15314 5895/* 15305 */ MCD::OPC_CheckPredicate, 69, 252, 6, 0, // Skip to: 17098 5896/* 15310 */ MCD::OPC_Decode, 208, 20, 61, // Opcode: SUBQH_W 5897/* 15314 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 15328 5898/* 15319 */ MCD::OPC_CheckPredicate, 69, 238, 6, 0, // Skip to: 17098 5899/* 15324 */ MCD::OPC_Decode, 216, 5, 61, // Opcode: ADDQH_R_W 5900/* 15328 */ MCD::OPC_FilterValue, 19, 9, 0, 0, // Skip to: 15342 5901/* 15333 */ MCD::OPC_CheckPredicate, 69, 224, 6, 0, // Skip to: 17098 5902/* 15338 */ MCD::OPC_Decode, 206, 20, 61, // Opcode: SUBQH_R_W 5903/* 15342 */ MCD::OPC_FilterValue, 22, 9, 0, 0, // Skip to: 15356 5904/* 15347 */ MCD::OPC_CheckPredicate, 69, 210, 6, 0, // Skip to: 17098 5905/* 15352 */ MCD::OPC_Decode, 156, 17, 61, // Opcode: MULQ_S_W 5906/* 15356 */ MCD::OPC_FilterValue, 23, 201, 6, 0, // Skip to: 17098 5907/* 15361 */ MCD::OPC_CheckPredicate, 69, 196, 6, 0, // Skip to: 17098 5908/* 15366 */ MCD::OPC_Decode, 152, 17, 61, // Opcode: MULQ_RS_W 5909/* 15370 */ MCD::OPC_FilterValue, 25, 17, 0, 0, // Skip to: 15392 5910/* 15375 */ MCD::OPC_CheckPredicate, 70, 182, 6, 0, // Skip to: 17098 5911/* 15380 */ MCD::OPC_CheckField, 6, 1, 0, 175, 6, 0, // Skip to: 17098 5912/* 15387 */ MCD::OPC_Decode, 243, 14, 208, 2, // Opcode: LWLE 5913/* 15392 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 15414 5914/* 15397 */ MCD::OPC_CheckPredicate, 70, 160, 6, 0, // Skip to: 17098 5915/* 15402 */ MCD::OPC_CheckField, 6, 1, 0, 153, 6, 0, // Skip to: 17098 5916/* 15409 */ MCD::OPC_Decode, 254, 14, 208, 2, // Opcode: LWRE 5917/* 15414 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 15436 5918/* 15419 */ MCD::OPC_CheckPredicate, 44, 138, 6, 0, // Skip to: 17098 5919/* 15424 */ MCD::OPC_CheckField, 6, 1, 0, 131, 6, 0, // Skip to: 17098 5920/* 15431 */ MCD::OPC_Decode, 149, 8, 209, 2, // Opcode: CACHEE 5921/* 15436 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 15458 5922/* 15441 */ MCD::OPC_CheckPredicate, 44, 116, 6, 0, // Skip to: 17098 5923/* 15446 */ MCD::OPC_CheckField, 6, 1, 0, 109, 6, 0, // Skip to: 17098 5924/* 15453 */ MCD::OPC_Decode, 238, 18, 208, 2, // Opcode: SBE 5925/* 15458 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 15480 5926/* 15463 */ MCD::OPC_CheckPredicate, 44, 94, 6, 0, // Skip to: 17098 5927/* 15468 */ MCD::OPC_CheckField, 6, 1, 0, 87, 6, 0, // Skip to: 17098 5928/* 15475 */ MCD::OPC_Decode, 176, 19, 208, 2, // Opcode: SHE 5929/* 15480 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 15502 5930/* 15485 */ MCD::OPC_CheckPredicate, 44, 72, 6, 0, // Skip to: 17098 5931/* 15490 */ MCD::OPC_CheckField, 6, 1, 0, 65, 6, 0, // Skip to: 17098 5932/* 15497 */ MCD::OPC_Decode, 247, 18, 208, 2, // Opcode: SCE 5933/* 15502 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 15524 5934/* 15507 */ MCD::OPC_CheckPredicate, 44, 50, 6, 0, // Skip to: 17098 5935/* 15512 */ MCD::OPC_CheckField, 6, 1, 0, 43, 6, 0, // Skip to: 17098 5936/* 15519 */ MCD::OPC_Decode, 146, 21, 208, 2, // Opcode: SWE 5937/* 15524 */ MCD::OPC_FilterValue, 32, 69, 0, 0, // Skip to: 15598 5938/* 15529 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5939/* 15532 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 15554 5940/* 15537 */ MCD::OPC_CheckPredicate, 28, 20, 6, 0, // Skip to: 17098 5941/* 15542 */ MCD::OPC_CheckField, 21, 5, 0, 13, 6, 0, // Skip to: 17098 5942/* 15549 */ MCD::OPC_Decode, 143, 22, 204, 2, // Opcode: WSBH 5943/* 15554 */ MCD::OPC_FilterValue, 16, 17, 0, 0, // Skip to: 15576 5944/* 15559 */ MCD::OPC_CheckPredicate, 28, 254, 5, 0, // Skip to: 17098 5945/* 15564 */ MCD::OPC_CheckField, 21, 5, 0, 247, 5, 0, // Skip to: 17098 5946/* 15571 */ MCD::OPC_Decode, 146, 19, 204, 2, // Opcode: SEB 5947/* 15576 */ MCD::OPC_FilterValue, 24, 237, 5, 0, // Skip to: 17098 5948/* 15581 */ MCD::OPC_CheckPredicate, 28, 232, 5, 0, // Skip to: 17098 5949/* 15586 */ MCD::OPC_CheckField, 21, 5, 0, 225, 5, 0, // Skip to: 17098 5950/* 15593 */ MCD::OPC_Decode, 149, 19, 204, 2, // Opcode: SEH 5951/* 15598 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 15620 5952/* 15603 */ MCD::OPC_CheckPredicate, 70, 210, 5, 0, // Skip to: 17098 5953/* 15608 */ MCD::OPC_CheckField, 6, 1, 0, 203, 5, 0, // Skip to: 17098 5954/* 15615 */ MCD::OPC_Decode, 150, 21, 208, 2, // Opcode: SWLE 5955/* 15620 */ MCD::OPC_FilterValue, 34, 17, 0, 0, // Skip to: 15642 5956/* 15625 */ MCD::OPC_CheckPredicate, 70, 188, 5, 0, // Skip to: 17098 5957/* 15630 */ MCD::OPC_CheckField, 6, 1, 0, 181, 5, 0, // Skip to: 17098 5958/* 15637 */ MCD::OPC_Decode, 159, 21, 208, 2, // Opcode: SWRE 5959/* 15642 */ MCD::OPC_FilterValue, 35, 17, 0, 0, // Skip to: 15664 5960/* 15647 */ MCD::OPC_CheckPredicate, 44, 166, 5, 0, // Skip to: 17098 5961/* 15652 */ MCD::OPC_CheckField, 6, 1, 0, 159, 5, 0, // Skip to: 17098 5962/* 15659 */ MCD::OPC_Decode, 164, 18, 209, 2, // Opcode: PREFE 5963/* 15664 */ MCD::OPC_FilterValue, 40, 17, 0, 0, // Skip to: 15686 5964/* 15669 */ MCD::OPC_CheckPredicate, 44, 144, 5, 0, // Skip to: 17098 5965/* 15674 */ MCD::OPC_CheckField, 6, 1, 0, 137, 5, 0, // Skip to: 17098 5966/* 15681 */ MCD::OPC_Decode, 163, 14, 208, 2, // Opcode: LBuE 5967/* 15686 */ MCD::OPC_FilterValue, 41, 17, 0, 0, // Skip to: 15708 5968/* 15691 */ MCD::OPC_CheckPredicate, 44, 122, 5, 0, // Skip to: 17098 5969/* 15696 */ MCD::OPC_CheckField, 6, 1, 0, 115, 5, 0, // Skip to: 17098 5970/* 15703 */ MCD::OPC_Decode, 202, 14, 208, 2, // Opcode: LHuE 5971/* 15708 */ MCD::OPC_FilterValue, 44, 17, 0, 0, // Skip to: 15730 5972/* 15713 */ MCD::OPC_CheckPredicate, 44, 100, 5, 0, // Skip to: 17098 5973/* 15718 */ MCD::OPC_CheckField, 6, 1, 0, 93, 5, 0, // Skip to: 17098 5974/* 15725 */ MCD::OPC_Decode, 153, 14, 208, 2, // Opcode: LBE 5975/* 15730 */ MCD::OPC_FilterValue, 45, 17, 0, 0, // Skip to: 15752 5976/* 15735 */ MCD::OPC_CheckPredicate, 44, 78, 5, 0, // Skip to: 17098 5977/* 15740 */ MCD::OPC_CheckField, 6, 1, 0, 71, 5, 0, // Skip to: 17098 5978/* 15747 */ MCD::OPC_Decode, 194, 14, 208, 2, // Opcode: LHE 5979/* 15752 */ MCD::OPC_FilterValue, 46, 17, 0, 0, // Skip to: 15774 5980/* 15757 */ MCD::OPC_CheckPredicate, 44, 56, 5, 0, // Skip to: 17098 5981/* 15762 */ MCD::OPC_CheckField, 6, 1, 0, 49, 5, 0, // Skip to: 17098 5982/* 15769 */ MCD::OPC_Decode, 212, 14, 208, 2, // Opcode: LLE 5983/* 15774 */ MCD::OPC_FilterValue, 47, 17, 0, 0, // Skip to: 15796 5984/* 15779 */ MCD::OPC_CheckPredicate, 44, 34, 5, 0, // Skip to: 17098 5985/* 15784 */ MCD::OPC_CheckField, 6, 1, 0, 27, 5, 0, // Skip to: 17098 5986/* 15791 */ MCD::OPC_Decode, 238, 14, 208, 2, // Opcode: LWE 5987/* 15796 */ MCD::OPC_FilterValue, 48, 231, 1, 0, // Skip to: 16288 5988/* 15801 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 5989/* 15804 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 15826 5990/* 15809 */ MCD::OPC_CheckPredicate, 69, 4, 5, 0, // Skip to: 17098 5991/* 15814 */ MCD::OPC_CheckField, 13, 3, 0, 253, 4, 0, // Skip to: 17098 5992/* 15821 */ MCD::OPC_Decode, 172, 11, 243, 1, // Opcode: DPA_W_PH 5993/* 15826 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 15848 5994/* 15831 */ MCD::OPC_CheckPredicate, 69, 238, 4, 0, // Skip to: 17098 5995/* 15836 */ MCD::OPC_CheckField, 13, 3, 0, 231, 4, 0, // Skip to: 17098 5996/* 15843 */ MCD::OPC_Decode, 195, 11, 243, 1, // Opcode: DPS_W_PH 5997/* 15848 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 15870 5998/* 15853 */ MCD::OPC_CheckPredicate, 69, 216, 4, 0, // Skip to: 17098 5999/* 15858 */ MCD::OPC_CheckField, 13, 3, 0, 209, 4, 0, // Skip to: 17098 6000/* 15865 */ MCD::OPC_Decode, 163, 17, 243, 1, // Opcode: MULSA_W_PH 6001/* 15870 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 15892 6002/* 15875 */ MCD::OPC_CheckPredicate, 37, 194, 4, 0, // Skip to: 17098 6003/* 15880 */ MCD::OPC_CheckField, 13, 3, 0, 187, 4, 0, // Skip to: 17098 6004/* 15887 */ MCD::OPC_Decode, 166, 11, 243, 1, // Opcode: DPAU_H_QBL 6005/* 15892 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 15914 6006/* 15897 */ MCD::OPC_CheckPredicate, 37, 172, 4, 0, // Skip to: 17098 6007/* 15902 */ MCD::OPC_CheckField, 13, 3, 0, 165, 4, 0, // Skip to: 17098 6008/* 15909 */ MCD::OPC_Decode, 164, 11, 243, 1, // Opcode: DPAQ_S_W_PH 6009/* 15914 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 15936 6010/* 15919 */ MCD::OPC_CheckPredicate, 37, 150, 4, 0, // Skip to: 17098 6011/* 15924 */ MCD::OPC_CheckField, 13, 3, 0, 143, 4, 0, // Skip to: 17098 6012/* 15931 */ MCD::OPC_Decode, 181, 11, 243, 1, // Opcode: DPSQ_S_W_PH 6013/* 15936 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 15958 6014/* 15941 */ MCD::OPC_CheckPredicate, 37, 128, 4, 0, // Skip to: 17098 6015/* 15946 */ MCD::OPC_CheckField, 13, 3, 0, 121, 4, 0, // Skip to: 17098 6016/* 15953 */ MCD::OPC_Decode, 161, 17, 243, 1, // Opcode: MULSAQ_S_W_PH 6017/* 15958 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 15980 6018/* 15963 */ MCD::OPC_CheckPredicate, 37, 106, 4, 0, // Skip to: 17098 6019/* 15968 */ MCD::OPC_CheckField, 13, 3, 0, 99, 4, 0, // Skip to: 17098 6020/* 15975 */ MCD::OPC_Decode, 168, 11, 243, 1, // Opcode: DPAU_H_QBR 6021/* 15980 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 16002 6022/* 15985 */ MCD::OPC_CheckPredicate, 69, 84, 4, 0, // Skip to: 17098 6023/* 15990 */ MCD::OPC_CheckField, 13, 3, 0, 77, 4, 0, // Skip to: 17098 6024/* 15997 */ MCD::OPC_Decode, 170, 11, 243, 1, // Opcode: DPAX_W_PH 6025/* 16002 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 16024 6026/* 16007 */ MCD::OPC_CheckPredicate, 69, 62, 4, 0, // Skip to: 17098 6027/* 16012 */ MCD::OPC_CheckField, 13, 3, 0, 55, 4, 0, // Skip to: 17098 6028/* 16019 */ MCD::OPC_Decode, 193, 11, 243, 1, // Opcode: DPSX_W_PH 6029/* 16024 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 16046 6030/* 16029 */ MCD::OPC_CheckPredicate, 37, 40, 4, 0, // Skip to: 17098 6031/* 16034 */ MCD::OPC_CheckField, 13, 3, 0, 33, 4, 0, // Skip to: 17098 6032/* 16041 */ MCD::OPC_Decode, 189, 11, 243, 1, // Opcode: DPSU_H_QBL 6033/* 16046 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 16068 6034/* 16051 */ MCD::OPC_CheckPredicate, 37, 18, 4, 0, // Skip to: 17098 6035/* 16056 */ MCD::OPC_CheckField, 13, 3, 0, 11, 4, 0, // Skip to: 17098 6036/* 16063 */ MCD::OPC_Decode, 162, 11, 243, 1, // Opcode: DPAQ_SA_L_W 6037/* 16068 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 16090 6038/* 16073 */ MCD::OPC_CheckPredicate, 37, 252, 3, 0, // Skip to: 17098 6039/* 16078 */ MCD::OPC_CheckField, 13, 3, 0, 245, 3, 0, // Skip to: 17098 6040/* 16085 */ MCD::OPC_Decode, 179, 11, 243, 1, // Opcode: DPSQ_SA_L_W 6041/* 16090 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 16112 6042/* 16095 */ MCD::OPC_CheckPredicate, 37, 230, 3, 0, // Skip to: 17098 6043/* 16100 */ MCD::OPC_CheckField, 13, 3, 0, 223, 3, 0, // Skip to: 17098 6044/* 16107 */ MCD::OPC_Decode, 191, 11, 243, 1, // Opcode: DPSU_H_QBR 6045/* 16112 */ MCD::OPC_FilterValue, 16, 17, 0, 0, // Skip to: 16134 6046/* 16117 */ MCD::OPC_CheckPredicate, 37, 208, 3, 0, // Skip to: 17098 6047/* 16122 */ MCD::OPC_CheckField, 13, 3, 0, 201, 3, 0, // Skip to: 17098 6048/* 16129 */ MCD::OPC_Decode, 176, 15, 243, 1, // Opcode: MAQ_SA_W_PHL 6049/* 16134 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 16156 6050/* 16139 */ MCD::OPC_CheckPredicate, 37, 186, 3, 0, // Skip to: 17098 6051/* 16144 */ MCD::OPC_CheckField, 13, 3, 0, 179, 3, 0, // Skip to: 17098 6052/* 16151 */ MCD::OPC_Decode, 178, 15, 243, 1, // Opcode: MAQ_SA_W_PHR 6053/* 16156 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 16178 6054/* 16161 */ MCD::OPC_CheckPredicate, 37, 164, 3, 0, // Skip to: 17098 6055/* 16166 */ MCD::OPC_CheckField, 13, 3, 0, 157, 3, 0, // Skip to: 17098 6056/* 16173 */ MCD::OPC_Decode, 180, 15, 243, 1, // Opcode: MAQ_S_W_PHL 6057/* 16178 */ MCD::OPC_FilterValue, 22, 17, 0, 0, // Skip to: 16200 6058/* 16183 */ MCD::OPC_CheckPredicate, 37, 142, 3, 0, // Skip to: 17098 6059/* 16188 */ MCD::OPC_CheckField, 13, 3, 0, 135, 3, 0, // Skip to: 17098 6060/* 16195 */ MCD::OPC_Decode, 182, 15, 243, 1, // Opcode: MAQ_S_W_PHR 6061/* 16200 */ MCD::OPC_FilterValue, 24, 17, 0, 0, // Skip to: 16222 6062/* 16205 */ MCD::OPC_CheckPredicate, 69, 120, 3, 0, // Skip to: 17098 6063/* 16210 */ MCD::OPC_CheckField, 13, 3, 0, 113, 3, 0, // Skip to: 17098 6064/* 16217 */ MCD::OPC_Decode, 160, 11, 243, 1, // Opcode: DPAQX_S_W_PH 6065/* 16222 */ MCD::OPC_FilterValue, 25, 17, 0, 0, // Skip to: 16244 6066/* 16227 */ MCD::OPC_CheckPredicate, 69, 98, 3, 0, // Skip to: 17098 6067/* 16232 */ MCD::OPC_CheckField, 13, 3, 0, 91, 3, 0, // Skip to: 17098 6068/* 16239 */ MCD::OPC_Decode, 177, 11, 243, 1, // Opcode: DPSQX_S_W_PH 6069/* 16244 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 16266 6070/* 16249 */ MCD::OPC_CheckPredicate, 69, 76, 3, 0, // Skip to: 17098 6071/* 16254 */ MCD::OPC_CheckField, 13, 3, 0, 69, 3, 0, // Skip to: 17098 6072/* 16261 */ MCD::OPC_Decode, 158, 11, 243, 1, // Opcode: DPAQX_SA_W_PH 6073/* 16266 */ MCD::OPC_FilterValue, 27, 59, 3, 0, // Skip to: 17098 6074/* 16271 */ MCD::OPC_CheckPredicate, 69, 54, 3, 0, // Skip to: 17098 6075/* 16276 */ MCD::OPC_CheckField, 13, 3, 0, 47, 3, 0, // Skip to: 17098 6076/* 16283 */ MCD::OPC_Decode, 175, 11, 243, 1, // Opcode: DPSQX_SA_W_PH 6077/* 16288 */ MCD::OPC_FilterValue, 49, 48, 0, 0, // Skip to: 16341 6078/* 16293 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6079/* 16296 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 16311 6080/* 16301 */ MCD::OPC_CheckPredicate, 69, 24, 3, 0, // Skip to: 17098 6081/* 16306 */ MCD::OPC_Decode, 168, 6, 210, 2, // Opcode: APPEND 6082/* 16311 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 16326 6083/* 16316 */ MCD::OPC_CheckPredicate, 69, 9, 3, 0, // Skip to: 17098 6084/* 16321 */ MCD::OPC_Decode, 170, 18, 210, 2, // Opcode: PREPEND 6085/* 16326 */ MCD::OPC_FilterValue, 16, 255, 2, 0, // Skip to: 17098 6086/* 16331 */ MCD::OPC_CheckPredicate, 69, 250, 2, 0, // Skip to: 17098 6087/* 16336 */ MCD::OPC_Decode, 212, 6, 210, 2, // Opcode: BALIGN 6088/* 16341 */ MCD::OPC_FilterValue, 56, 107, 1, 0, // Skip to: 16709 6089/* 16346 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6090/* 16349 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 16371 6091/* 16354 */ MCD::OPC_CheckPredicate, 37, 227, 2, 0, // Skip to: 17098 6092/* 16359 */ MCD::OPC_CheckField, 13, 3, 0, 220, 2, 0, // Skip to: 17098 6093/* 16366 */ MCD::OPC_Decode, 131, 12, 211, 2, // Opcode: EXTR_W 6094/* 16371 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 16393 6095/* 16376 */ MCD::OPC_CheckPredicate, 37, 205, 2, 0, // Skip to: 17098 6096/* 16381 */ MCD::OPC_CheckField, 13, 3, 0, 198, 2, 0, // Skip to: 17098 6097/* 16388 */ MCD::OPC_Decode, 251, 11, 212, 2, // Opcode: EXTRV_W 6098/* 16393 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 16415 6099/* 16398 */ MCD::OPC_CheckPredicate, 37, 183, 2, 0, // Skip to: 17098 6100/* 16403 */ MCD::OPC_CheckField, 13, 3, 0, 176, 2, 0, // Skip to: 17098 6101/* 16410 */ MCD::OPC_Decode, 237, 11, 211, 2, // Opcode: EXTP 6102/* 16415 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 16437 6103/* 16420 */ MCD::OPC_CheckPredicate, 37, 161, 2, 0, // Skip to: 17098 6104/* 16425 */ MCD::OPC_CheckField, 13, 3, 0, 154, 2, 0, // Skip to: 17098 6105/* 16432 */ MCD::OPC_Decode, 242, 11, 212, 2, // Opcode: EXTPV 6106/* 16437 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 16459 6107/* 16442 */ MCD::OPC_CheckPredicate, 37, 139, 2, 0, // Skip to: 17098 6108/* 16447 */ MCD::OPC_CheckField, 13, 3, 0, 132, 2, 0, // Skip to: 17098 6109/* 16454 */ MCD::OPC_Decode, 255, 11, 211, 2, // Opcode: EXTR_R_W 6110/* 16459 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 16481 6111/* 16464 */ MCD::OPC_CheckPredicate, 37, 117, 2, 0, // Skip to: 17098 6112/* 16469 */ MCD::OPC_CheckField, 13, 3, 0, 110, 2, 0, // Skip to: 17098 6113/* 16476 */ MCD::OPC_Decode, 247, 11, 212, 2, // Opcode: EXTRV_R_W 6114/* 16481 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 16503 6115/* 16486 */ MCD::OPC_CheckPredicate, 37, 95, 2, 0, // Skip to: 17098 6116/* 16491 */ MCD::OPC_CheckField, 13, 3, 0, 88, 2, 0, // Skip to: 17098 6117/* 16498 */ MCD::OPC_Decode, 253, 11, 211, 2, // Opcode: EXTR_RS_W 6118/* 16503 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 16525 6119/* 16508 */ MCD::OPC_CheckPredicate, 37, 73, 2, 0, // Skip to: 17098 6120/* 16513 */ MCD::OPC_CheckField, 13, 3, 0, 66, 2, 0, // Skip to: 17098 6121/* 16520 */ MCD::OPC_Decode, 245, 11, 212, 2, // Opcode: EXTRV_RS_W 6122/* 16525 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 16547 6123/* 16530 */ MCD::OPC_CheckPredicate, 37, 51, 2, 0, // Skip to: 17098 6124/* 16535 */ MCD::OPC_CheckField, 13, 3, 0, 44, 2, 0, // Skip to: 17098 6125/* 16542 */ MCD::OPC_Decode, 238, 11, 211, 2, // Opcode: EXTPDP 6126/* 16547 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 16569 6127/* 16552 */ MCD::OPC_CheckPredicate, 37, 29, 2, 0, // Skip to: 17098 6128/* 16557 */ MCD::OPC_CheckField, 13, 3, 0, 22, 2, 0, // Skip to: 17098 6129/* 16564 */ MCD::OPC_Decode, 239, 11, 212, 2, // Opcode: EXTPDPV 6130/* 16569 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16591 6131/* 16574 */ MCD::OPC_CheckPredicate, 37, 7, 2, 0, // Skip to: 17098 6132/* 16579 */ MCD::OPC_CheckField, 13, 3, 0, 0, 2, 0, // Skip to: 17098 6133/* 16586 */ MCD::OPC_Decode, 129, 12, 211, 2, // Opcode: EXTR_S_H 6134/* 16591 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 16613 6135/* 16596 */ MCD::OPC_CheckPredicate, 37, 241, 1, 0, // Skip to: 17098 6136/* 16601 */ MCD::OPC_CheckField, 13, 3, 0, 234, 1, 0, // Skip to: 17098 6137/* 16608 */ MCD::OPC_Decode, 249, 11, 212, 2, // Opcode: EXTRV_S_H 6138/* 16613 */ MCD::OPC_FilterValue, 18, 10, 0, 0, // Skip to: 16628 6139/* 16618 */ MCD::OPC_CheckPredicate, 37, 219, 1, 0, // Skip to: 17098 6140/* 16623 */ MCD::OPC_Decode, 176, 18, 213, 2, // Opcode: RDDSP 6141/* 16628 */ MCD::OPC_FilterValue, 19, 10, 0, 0, // Skip to: 16643 6142/* 16633 */ MCD::OPC_CheckPredicate, 40, 204, 1, 0, // Skip to: 17098 6143/* 16638 */ MCD::OPC_Decode, 140, 22, 214, 2, // Opcode: WRDSP 6144/* 16643 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 16665 6145/* 16648 */ MCD::OPC_CheckPredicate, 37, 189, 1, 0, // Skip to: 17098 6146/* 16653 */ MCD::OPC_CheckField, 13, 7, 0, 182, 1, 0, // Skip to: 17098 6147/* 16660 */ MCD::OPC_Decode, 181, 19, 215, 2, // Opcode: SHILO 6148/* 16665 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 16687 6149/* 16670 */ MCD::OPC_CheckPredicate, 37, 167, 1, 0, // Skip to: 17098 6150/* 16675 */ MCD::OPC_CheckField, 13, 8, 0, 160, 1, 0, // Skip to: 17098 6151/* 16682 */ MCD::OPC_Decode, 182, 19, 216, 2, // Opcode: SHILOV 6152/* 16687 */ MCD::OPC_FilterValue, 31, 150, 1, 0, // Skip to: 17098 6153/* 16692 */ MCD::OPC_CheckPredicate, 37, 145, 1, 0, // Skip to: 17098 6154/* 16697 */ MCD::OPC_CheckField, 13, 8, 0, 138, 1, 0, // Skip to: 17098 6155/* 16704 */ MCD::OPC_Decode, 251, 16, 216, 2, // Opcode: MTHLIP 6156/* 16709 */ MCD::OPC_FilterValue, 59, 128, 1, 0, // Skip to: 17098 6157/* 16714 */ MCD::OPC_CheckPredicate, 27, 123, 1, 0, // Skip to: 17098 6158/* 16719 */ MCD::OPC_CheckField, 21, 5, 0, 116, 1, 0, // Skip to: 17098 6159/* 16726 */ MCD::OPC_CheckField, 9, 2, 0, 109, 1, 0, // Skip to: 17098 6160/* 16733 */ MCD::OPC_Decode, 178, 18, 217, 2, // Opcode: RDHWR 6161/* 16738 */ MCD::OPC_FilterValue, 32, 10, 0, 0, // Skip to: 16753 6162/* 16743 */ MCD::OPC_CheckPredicate, 27, 94, 1, 0, // Skip to: 17098 6163/* 16748 */ MCD::OPC_Decode, 151, 14, 141, 1, // Opcode: LB 6164/* 16753 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 16768 6165/* 16758 */ MCD::OPC_CheckPredicate, 27, 79, 1, 0, // Skip to: 17098 6166/* 16763 */ MCD::OPC_Decode, 192, 14, 141, 1, // Opcode: LH 6167/* 16768 */ MCD::OPC_FilterValue, 34, 10, 0, 0, // Skip to: 16783 6168/* 16773 */ MCD::OPC_CheckPredicate, 31, 64, 1, 0, // Skip to: 17098 6169/* 16778 */ MCD::OPC_Decode, 241, 14, 141, 1, // Opcode: LWL 6170/* 16783 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 16798 6171/* 16788 */ MCD::OPC_CheckPredicate, 27, 49, 1, 0, // Skip to: 17098 6172/* 16793 */ MCD::OPC_Decode, 227, 14, 141, 1, // Opcode: LW 6173/* 16798 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 16813 6174/* 16803 */ MCD::OPC_CheckPredicate, 27, 34, 1, 0, // Skip to: 17098 6175/* 16808 */ MCD::OPC_Decode, 161, 14, 141, 1, // Opcode: LBu 6176/* 16813 */ MCD::OPC_FilterValue, 37, 10, 0, 0, // Skip to: 16828 6177/* 16818 */ MCD::OPC_CheckPredicate, 27, 19, 1, 0, // Skip to: 17098 6178/* 16823 */ MCD::OPC_Decode, 200, 14, 141, 1, // Opcode: LHu 6179/* 16828 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 16843 6180/* 16833 */ MCD::OPC_CheckPredicate, 31, 4, 1, 0, // Skip to: 17098 6181/* 16838 */ MCD::OPC_Decode, 252, 14, 141, 1, // Opcode: LWR 6182/* 16843 */ MCD::OPC_FilterValue, 40, 10, 0, 0, // Skip to: 16858 6183/* 16848 */ MCD::OPC_CheckPredicate, 27, 245, 0, 0, // Skip to: 17098 6184/* 16853 */ MCD::OPC_Decode, 234, 18, 141, 1, // Opcode: SB 6185/* 16858 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 16873 6186/* 16863 */ MCD::OPC_CheckPredicate, 27, 230, 0, 0, // Skip to: 17098 6187/* 16868 */ MCD::OPC_Decode, 172, 19, 141, 1, // Opcode: SH 6188/* 16873 */ MCD::OPC_FilterValue, 42, 10, 0, 0, // Skip to: 16888 6189/* 16878 */ MCD::OPC_CheckPredicate, 31, 215, 0, 0, // Skip to: 17098 6190/* 16883 */ MCD::OPC_Decode, 148, 21, 141, 1, // Opcode: SWL 6191/* 16888 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 16903 6192/* 16893 */ MCD::OPC_CheckPredicate, 27, 200, 0, 0, // Skip to: 17098 6193/* 16898 */ MCD::OPC_Decode, 134, 21, 141, 1, // Opcode: SW 6194/* 16903 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 16918 6195/* 16908 */ MCD::OPC_CheckPredicate, 31, 185, 0, 0, // Skip to: 17098 6196/* 16913 */ MCD::OPC_Decode, 157, 21, 141, 1, // Opcode: SWR 6197/* 16918 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 16933 6198/* 16923 */ MCD::OPC_CheckPredicate, 71, 170, 0, 0, // Skip to: 17098 6199/* 16928 */ MCD::OPC_Decode, 148, 8, 218, 2, // Opcode: CACHE 6200/* 16933 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 16948 6201/* 16938 */ MCD::OPC_CheckPredicate, 72, 155, 0, 0, // Skip to: 17098 6202/* 16943 */ MCD::OPC_Decode, 207, 14, 141, 1, // Opcode: LL 6203/* 16948 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 16963 6204/* 16953 */ MCD::OPC_CheckPredicate, 47, 140, 0, 0, // Skip to: 17098 6205/* 16958 */ MCD::OPC_Decode, 230, 14, 219, 2, // Opcode: LWC1 6206/* 16963 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 16978 6207/* 16968 */ MCD::OPC_CheckPredicate, 31, 125, 0, 0, // Skip to: 17098 6208/* 16973 */ MCD::OPC_Decode, 232, 14, 220, 2, // Opcode: LWC2 6209/* 16978 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 16993 6210/* 16983 */ MCD::OPC_CheckPredicate, 71, 110, 0, 0, // Skip to: 17098 6211/* 16988 */ MCD::OPC_Decode, 163, 18, 218, 2, // Opcode: PREF 6212/* 16993 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 17008 6213/* 16998 */ MCD::OPC_CheckPredicate, 57, 95, 0, 0, // Skip to: 17098 6214/* 17003 */ MCD::OPC_Decode, 167, 14, 219, 2, // Opcode: LDC1 6215/* 17008 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 17023 6216/* 17013 */ MCD::OPC_CheckPredicate, 39, 80, 0, 0, // Skip to: 17098 6217/* 17018 */ MCD::OPC_Decode, 172, 14, 220, 2, // Opcode: LDC2 6218/* 17023 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 17038 6219/* 17028 */ MCD::OPC_CheckPredicate, 72, 65, 0, 0, // Skip to: 17098 6220/* 17033 */ MCD::OPC_Decode, 242, 18, 141, 1, // Opcode: SC 6221/* 17038 */ MCD::OPC_FilterValue, 57, 10, 0, 0, // Skip to: 17053 6222/* 17043 */ MCD::OPC_CheckPredicate, 47, 50, 0, 0, // Skip to: 17098 6223/* 17048 */ MCD::OPC_Decode, 138, 21, 219, 2, // Opcode: SWC1 6224/* 17053 */ MCD::OPC_FilterValue, 58, 10, 0, 0, // Skip to: 17068 6225/* 17058 */ MCD::OPC_CheckPredicate, 31, 35, 0, 0, // Skip to: 17098 6226/* 17063 */ MCD::OPC_Decode, 140, 21, 220, 2, // Opcode: SWC2 6227/* 17068 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 17083 6228/* 17073 */ MCD::OPC_CheckPredicate, 57, 20, 0, 0, // Skip to: 17098 6229/* 17078 */ MCD::OPC_Decode, 131, 19, 219, 2, // Opcode: SDC1 6230/* 17083 */ MCD::OPC_FilterValue, 62, 10, 0, 0, // Skip to: 17098 6231/* 17088 */ MCD::OPC_CheckPredicate, 39, 5, 0, 0, // Skip to: 17098 6232/* 17093 */ MCD::OPC_Decode, 136, 19, 220, 2, // Opcode: SDC2 6233/* 17098 */ MCD::OPC_Fail, 6234 0 6235}; 6236 6237static const uint8_t DecoderTableMips32_64_PTR6432[] = { 6238/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6239/* 3 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 24 6240/* 8 */ MCD::OPC_CheckPredicate, 73, 41, 0, 0, // Skip to: 54 6241/* 13 */ MCD::OPC_CheckField, 0, 21, 8, 34, 0, 0, // Skip to: 54 6242/* 20 */ MCD::OPC_Decode, 134, 14, 24, // Opcode: JR64 6243/* 24 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 39 6244/* 29 */ MCD::OPC_CheckPredicate, 74, 20, 0, 0, // Skip to: 54 6245/* 34 */ MCD::OPC_Decode, 208, 14, 141, 1, // Opcode: LL64 6246/* 39 */ MCD::OPC_FilterValue, 56, 10, 0, 0, // Skip to: 54 6247/* 44 */ MCD::OPC_CheckPredicate, 74, 5, 0, 0, // Skip to: 54 6248/* 49 */ MCD::OPC_Decode, 243, 18, 141, 1, // Opcode: SC64 6249/* 54 */ MCD::OPC_Fail, 6250 0 6251}; 6252 6253static const uint8_t DecoderTableMips32r6_64r632[] = { 6254/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6255/* 3 */ MCD::OPC_FilterValue, 0, 14, 2, 0, // Skip to: 534 6256/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6257/* 11 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 33 6258/* 16 */ MCD::OPC_CheckPredicate, 75, 133, 9, 0, // Skip to: 2458 6259/* 21 */ MCD::OPC_CheckField, 8, 3, 0, 126, 9, 0, // Skip to: 2458 6260/* 28 */ MCD::OPC_Decode, 219, 14, 185, 1, // Opcode: LSA_R6 6261/* 33 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 55 6262/* 38 */ MCD::OPC_CheckPredicate, 75, 111, 9, 0, // Skip to: 2458 6263/* 43 */ MCD::OPC_CheckField, 6, 15, 16, 104, 9, 0, // Skip to: 2458 6264/* 50 */ MCD::OPC_Decode, 142, 14, 186, 1, // Opcode: JR_HB_R6 6265/* 55 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 70 6266/* 60 */ MCD::OPC_CheckPredicate, 76, 89, 9, 0, // Skip to: 2458 6267/* 65 */ MCD::OPC_Decode, 130, 19, 188, 1, // Opcode: SDBBP_R6 6268/* 70 */ MCD::OPC_FilterValue, 16, 23, 0, 0, // Skip to: 98 6269/* 75 */ MCD::OPC_CheckPredicate, 75, 74, 9, 0, // Skip to: 2458 6270/* 80 */ MCD::OPC_CheckField, 16, 5, 0, 67, 9, 0, // Skip to: 2458 6271/* 87 */ MCD::OPC_CheckField, 6, 5, 1, 60, 9, 0, // Skip to: 2458 6272/* 94 */ MCD::OPC_Decode, 224, 8, 25, // Opcode: CLZ_R6 6273/* 98 */ MCD::OPC_FilterValue, 17, 23, 0, 0, // Skip to: 126 6274/* 103 */ MCD::OPC_CheckPredicate, 75, 46, 9, 0, // Skip to: 2458 6275/* 108 */ MCD::OPC_CheckField, 16, 5, 0, 39, 9, 0, // Skip to: 2458 6276/* 115 */ MCD::OPC_CheckField, 6, 5, 1, 32, 9, 0, // Skip to: 2458 6277/* 122 */ MCD::OPC_Decode, 204, 8, 25, // Opcode: CLO_R6 6278/* 126 */ MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 154 6279/* 131 */ MCD::OPC_CheckPredicate, 77, 18, 9, 0, // Skip to: 2458 6280/* 136 */ MCD::OPC_CheckField, 16, 5, 0, 11, 9, 0, // Skip to: 2458 6281/* 143 */ MCD::OPC_CheckField, 6, 5, 1, 4, 9, 0, // Skip to: 2458 6282/* 150 */ MCD::OPC_Decode, 224, 10, 26, // Opcode: DCLZ_R6 6283/* 154 */ MCD::OPC_FilterValue, 19, 23, 0, 0, // Skip to: 182 6284/* 159 */ MCD::OPC_CheckPredicate, 77, 246, 8, 0, // Skip to: 2458 6285/* 164 */ MCD::OPC_CheckField, 16, 5, 0, 239, 8, 0, // Skip to: 2458 6286/* 171 */ MCD::OPC_CheckField, 6, 5, 1, 232, 8, 0, // Skip to: 2458 6287/* 178 */ MCD::OPC_Decode, 222, 10, 26, // Opcode: DCLO_R6 6288/* 182 */ MCD::OPC_FilterValue, 21, 17, 0, 0, // Skip to: 204 6289/* 187 */ MCD::OPC_CheckPredicate, 77, 218, 8, 0, // Skip to: 2458 6290/* 192 */ MCD::OPC_CheckField, 8, 3, 0, 211, 8, 0, // Skip to: 2458 6291/* 199 */ MCD::OPC_Decode, 253, 10, 194, 1, // Opcode: DLSA_R6 6292/* 204 */ MCD::OPC_FilterValue, 24, 31, 0, 0, // Skip to: 240 6293/* 209 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6294/* 212 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 226 6295/* 217 */ MCD::OPC_CheckPredicate, 76, 188, 8, 0, // Skip to: 2458 6296/* 222 */ MCD::OPC_Decode, 185, 17, 61, // Opcode: MUL_R6 6297/* 226 */ MCD::OPC_FilterValue, 3, 179, 8, 0, // Skip to: 2458 6298/* 231 */ MCD::OPC_CheckPredicate, 76, 174, 8, 0, // Skip to: 2458 6299/* 236 */ MCD::OPC_Decode, 137, 17, 61, // Opcode: MUH 6300/* 240 */ MCD::OPC_FilterValue, 25, 31, 0, 0, // Skip to: 276 6301/* 245 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6302/* 248 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 262 6303/* 253 */ MCD::OPC_CheckPredicate, 76, 152, 8, 0, // Skip to: 2458 6304/* 258 */ MCD::OPC_Decode, 173, 17, 61, // Opcode: MULU 6305/* 262 */ MCD::OPC_FilterValue, 3, 143, 8, 0, // Skip to: 2458 6306/* 267 */ MCD::OPC_CheckPredicate, 76, 138, 8, 0, // Skip to: 2458 6307/* 272 */ MCD::OPC_Decode, 138, 17, 61, // Opcode: MUHU 6308/* 276 */ MCD::OPC_FilterValue, 26, 31, 0, 0, // Skip to: 312 6309/* 281 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6310/* 284 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 298 6311/* 289 */ MCD::OPC_CheckPredicate, 76, 116, 8, 0, // Skip to: 2458 6312/* 294 */ MCD::OPC_Decode, 238, 10, 61, // Opcode: DIV 6313/* 298 */ MCD::OPC_FilterValue, 3, 107, 8, 0, // Skip to: 2458 6314/* 303 */ MCD::OPC_CheckPredicate, 76, 102, 8, 0, // Skip to: 2458 6315/* 308 */ MCD::OPC_Decode, 143, 16, 61, // Opcode: MOD 6316/* 312 */ MCD::OPC_FilterValue, 27, 31, 0, 0, // Skip to: 348 6317/* 317 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6318/* 320 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 334 6319/* 325 */ MCD::OPC_CheckPredicate, 76, 80, 8, 0, // Skip to: 2458 6320/* 330 */ MCD::OPC_Decode, 239, 10, 61, // Opcode: DIVU 6321/* 334 */ MCD::OPC_FilterValue, 3, 71, 8, 0, // Skip to: 2458 6322/* 339 */ MCD::OPC_CheckPredicate, 76, 66, 8, 0, // Skip to: 2458 6323/* 344 */ MCD::OPC_Decode, 146, 16, 61, // Opcode: MODU 6324/* 348 */ MCD::OPC_FilterValue, 28, 31, 0, 0, // Skip to: 384 6325/* 353 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6326/* 356 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 370 6327/* 361 */ MCD::OPC_CheckPredicate, 77, 44, 8, 0, // Skip to: 2458 6328/* 366 */ MCD::OPC_Decode, 145, 11, 23, // Opcode: DMUL_R6 6329/* 370 */ MCD::OPC_FilterValue, 3, 35, 8, 0, // Skip to: 2458 6330/* 375 */ MCD::OPC_CheckPredicate, 77, 30, 8, 0, // Skip to: 2458 6331/* 380 */ MCD::OPC_Decode, 139, 11, 23, // Opcode: DMUH 6332/* 384 */ MCD::OPC_FilterValue, 29, 31, 0, 0, // Skip to: 420 6333/* 389 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6334/* 392 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 406 6335/* 397 */ MCD::OPC_CheckPredicate, 77, 8, 8, 0, // Skip to: 2458 6336/* 402 */ MCD::OPC_Decode, 144, 11, 23, // Opcode: DMULU 6337/* 406 */ MCD::OPC_FilterValue, 3, 255, 7, 0, // Skip to: 2458 6338/* 411 */ MCD::OPC_CheckPredicate, 77, 250, 7, 0, // Skip to: 2458 6339/* 416 */ MCD::OPC_Decode, 140, 11, 23, // Opcode: DMUHU 6340/* 420 */ MCD::OPC_FilterValue, 30, 31, 0, 0, // Skip to: 456 6341/* 425 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6342/* 428 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 442 6343/* 433 */ MCD::OPC_CheckPredicate, 77, 228, 7, 0, // Skip to: 2458 6344/* 438 */ MCD::OPC_Decode, 225, 10, 23, // Opcode: DDIV 6345/* 442 */ MCD::OPC_FilterValue, 3, 219, 7, 0, // Skip to: 2458 6346/* 447 */ MCD::OPC_CheckPredicate, 77, 214, 7, 0, // Skip to: 2458 6347/* 452 */ MCD::OPC_Decode, 131, 11, 23, // Opcode: DMOD 6348/* 456 */ MCD::OPC_FilterValue, 31, 31, 0, 0, // Skip to: 492 6349/* 461 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6350/* 464 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 478 6351/* 469 */ MCD::OPC_CheckPredicate, 77, 192, 7, 0, // Skip to: 2458 6352/* 474 */ MCD::OPC_Decode, 226, 10, 23, // Opcode: DDIVU 6353/* 478 */ MCD::OPC_FilterValue, 3, 183, 7, 0, // Skip to: 2458 6354/* 483 */ MCD::OPC_CheckPredicate, 77, 178, 7, 0, // Skip to: 2458 6355/* 488 */ MCD::OPC_Decode, 132, 11, 23, // Opcode: DMODU 6356/* 492 */ MCD::OPC_FilterValue, 53, 16, 0, 0, // Skip to: 513 6357/* 497 */ MCD::OPC_CheckPredicate, 78, 164, 7, 0, // Skip to: 2458 6358/* 502 */ MCD::OPC_CheckField, 6, 5, 0, 157, 7, 0, // Skip to: 2458 6359/* 509 */ MCD::OPC_Decode, 152, 19, 61, // Opcode: SELEQZ 6360/* 513 */ MCD::OPC_FilterValue, 55, 148, 7, 0, // Skip to: 2458 6361/* 518 */ MCD::OPC_CheckPredicate, 78, 143, 7, 0, // Skip to: 2458 6362/* 523 */ MCD::OPC_CheckField, 6, 5, 0, 136, 7, 0, // Skip to: 2458 6363/* 530 */ MCD::OPC_Decode, 159, 19, 61, // Opcode: SELNEZ 6364/* 534 */ MCD::OPC_FilterValue, 1, 77, 0, 0, // Skip to: 616 6365/* 539 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... 6366/* 542 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 557 6367/* 547 */ MCD::OPC_CheckPredicate, 77, 114, 7, 0, // Skip to: 2458 6368/* 552 */ MCD::OPC_Decode, 216, 10, 221, 2, // Opcode: DAHI 6369/* 557 */ MCD::OPC_FilterValue, 17, 17, 0, 0, // Skip to: 579 6370/* 562 */ MCD::OPC_CheckPredicate, 75, 99, 7, 0, // Skip to: 2458 6371/* 567 */ MCD::OPC_CheckField, 21, 5, 0, 92, 7, 0, // Skip to: 2458 6372/* 574 */ MCD::OPC_Decode, 209, 6, 198, 1, // Opcode: BAL 6373/* 579 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 601 6374/* 584 */ MCD::OPC_CheckPredicate, 76, 77, 7, 0, // Skip to: 2458 6375/* 589 */ MCD::OPC_CheckField, 21, 5, 0, 70, 7, 0, // Skip to: 2458 6376/* 596 */ MCD::OPC_Decode, 231, 19, 222, 2, // Opcode: SIGRIE 6377/* 601 */ MCD::OPC_FilterValue, 30, 60, 7, 0, // Skip to: 2458 6378/* 606 */ MCD::OPC_CheckPredicate, 77, 55, 7, 0, // Skip to: 2458 6379/* 611 */ MCD::OPC_Decode, 218, 10, 221, 2, // Opcode: DATI 6380/* 616 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 631 6381/* 621 */ MCD::OPC_CheckPredicate, 76, 40, 7, 0, // Skip to: 2458 6382/* 626 */ MCD::OPC_Decode, 139, 7, 223, 2, // Opcode: BGEZALC 6383/* 631 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 646 6384/* 636 */ MCD::OPC_CheckPredicate, 76, 25, 7, 0, // Skip to: 2458 6385/* 641 */ MCD::OPC_Decode, 196, 7, 224, 2, // Opcode: BLTZALC 6386/* 646 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 661 6387/* 651 */ MCD::OPC_CheckPredicate, 76, 10, 7, 0, // Skip to: 2458 6388/* 656 */ MCD::OPC_Decode, 245, 6, 225, 2, // Opcode: BEQC 6389/* 661 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 676 6390/* 666 */ MCD::OPC_CheckPredicate, 75, 251, 6, 0, // Skip to: 2458 6391/* 671 */ MCD::OPC_Decode, 178, 6, 203, 1, // Opcode: AUI 6392/* 676 */ MCD::OPC_FilterValue, 16, 45, 0, 0, // Skip to: 726 6393/* 681 */ MCD::OPC_ExtractField, 0, 16, // Inst{15-0} ... 6394/* 684 */ MCD::OPC_FilterValue, 4, 16, 0, 0, // Skip to: 705 6395/* 689 */ MCD::OPC_CheckPredicate, 75, 228, 6, 0, // Skip to: 2458 6396/* 694 */ MCD::OPC_CheckField, 21, 5, 11, 221, 6, 0, // Skip to: 2458 6397/* 701 */ MCD::OPC_Decode, 233, 11, 92, // Opcode: EVP 6398/* 705 */ MCD::OPC_FilterValue, 36, 212, 6, 0, // Skip to: 2458 6399/* 710 */ MCD::OPC_CheckPredicate, 75, 207, 6, 0, // Skip to: 2458 6400/* 715 */ MCD::OPC_CheckField, 21, 5, 11, 200, 6, 0, // Skip to: 2458 6401/* 722 */ MCD::OPC_Decode, 216, 11, 92, // Opcode: DVP 6402/* 726 */ MCD::OPC_FilterValue, 17, 135, 3, 0, // Skip to: 1634 6403/* 731 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6404/* 734 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 749 6405/* 739 */ MCD::OPC_CheckPredicate, 79, 178, 6, 0, // Skip to: 2458 6406/* 744 */ MCD::OPC_Decode, 220, 6, 226, 2, // Opcode: BC1EQZ 6407/* 749 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 764 6408/* 754 */ MCD::OPC_CheckPredicate, 79, 163, 6, 0, // Skip to: 2458 6409/* 759 */ MCD::OPC_Decode, 225, 6, 226, 2, // Opcode: BC1NEZ 6410/* 764 */ MCD::OPC_FilterValue, 16, 182, 0, 0, // Skip to: 951 6411/* 769 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6412/* 772 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 787 6413/* 777 */ MCD::OPC_CheckPredicate, 79, 140, 6, 0, // Skip to: 2458 6414/* 782 */ MCD::OPC_Decode, 168, 19, 227, 2, // Opcode: SEL_S 6415/* 787 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 802 6416/* 792 */ MCD::OPC_CheckPredicate, 79, 125, 6, 0, // Skip to: 2458 6417/* 797 */ MCD::OPC_Decode, 157, 19, 218, 1, // Opcode: SELEQZ_S 6418/* 802 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 817 6419/* 807 */ MCD::OPC_CheckPredicate, 79, 110, 6, 0, // Skip to: 2458 6420/* 812 */ MCD::OPC_Decode, 164, 19, 218, 1, // Opcode: SELNEZ_S 6421/* 817 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 832 6422/* 822 */ MCD::OPC_CheckPredicate, 79, 95, 6, 0, // Skip to: 2458 6423/* 827 */ MCD::OPC_Decode, 154, 15, 228, 2, // Opcode: MADDF_S 6424/* 832 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 847 6425/* 837 */ MCD::OPC_CheckPredicate, 79, 80, 6, 0, // Skip to: 2458 6426/* 842 */ MCD::OPC_Decode, 205, 16, 228, 2, // Opcode: MSUBF_S 6427/* 847 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 869 6428/* 852 */ MCD::OPC_CheckPredicate, 79, 65, 6, 0, // Skip to: 2458 6429/* 857 */ MCD::OPC_CheckField, 16, 5, 0, 58, 6, 0, // Skip to: 2458 6430/* 864 */ MCD::OPC_Decode, 199, 18, 219, 1, // Opcode: RINT_S 6431/* 869 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 891 6432/* 874 */ MCD::OPC_CheckPredicate, 79, 43, 6, 0, // Skip to: 2458 6433/* 879 */ MCD::OPC_CheckField, 16, 5, 0, 36, 6, 0, // Skip to: 2458 6434/* 886 */ MCD::OPC_Decode, 183, 8, 219, 1, // Opcode: CLASS_S 6435/* 891 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 906 6436/* 896 */ MCD::OPC_CheckPredicate, 79, 21, 6, 0, // Skip to: 2458 6437/* 901 */ MCD::OPC_Decode, 133, 16, 218, 1, // Opcode: MIN_S 6438/* 906 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 921 6439/* 911 */ MCD::OPC_CheckPredicate, 79, 6, 6, 0, // Skip to: 2458 6440/* 916 */ MCD::OPC_Decode, 202, 15, 218, 1, // Opcode: MAX_S 6441/* 921 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 936 6442/* 926 */ MCD::OPC_CheckPredicate, 79, 247, 5, 0, // Skip to: 2458 6443/* 931 */ MCD::OPC_Decode, 245, 15, 218, 1, // Opcode: MINA_S 6444/* 936 */ MCD::OPC_FilterValue, 31, 237, 5, 0, // Skip to: 2458 6445/* 941 */ MCD::OPC_CheckPredicate, 79, 232, 5, 0, // Skip to: 2458 6446/* 946 */ MCD::OPC_Decode, 186, 15, 218, 1, // Opcode: MAXA_S 6447/* 951 */ MCD::OPC_FilterValue, 17, 182, 0, 0, // Skip to: 1138 6448/* 956 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6449/* 959 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 974 6450/* 964 */ MCD::OPC_CheckPredicate, 79, 209, 5, 0, // Skip to: 2458 6451/* 969 */ MCD::OPC_Decode, 166, 19, 229, 2, // Opcode: SEL_D 6452/* 974 */ MCD::OPC_FilterValue, 20, 10, 0, 0, // Skip to: 989 6453/* 979 */ MCD::OPC_CheckPredicate, 79, 194, 5, 0, // Skip to: 2458 6454/* 984 */ MCD::OPC_Decode, 154, 19, 230, 2, // Opcode: SELEQZ_D 6455/* 989 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 1004 6456/* 994 */ MCD::OPC_CheckPredicate, 79, 179, 5, 0, // Skip to: 2458 6457/* 999 */ MCD::OPC_Decode, 161, 19, 230, 2, // Opcode: SELNEZ_D 6458/* 1004 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 1019 6459/* 1009 */ MCD::OPC_CheckPredicate, 79, 164, 5, 0, // Skip to: 2458 6460/* 1014 */ MCD::OPC_Decode, 152, 15, 229, 2, // Opcode: MADDF_D 6461/* 1019 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 1034 6462/* 1024 */ MCD::OPC_CheckPredicate, 79, 149, 5, 0, // Skip to: 2458 6463/* 1029 */ MCD::OPC_Decode, 203, 16, 229, 2, // Opcode: MSUBF_D 6464/* 1034 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 1056 6465/* 1039 */ MCD::OPC_CheckPredicate, 79, 134, 5, 0, // Skip to: 2458 6466/* 1044 */ MCD::OPC_CheckField, 16, 5, 0, 127, 5, 0, // Skip to: 2458 6467/* 1051 */ MCD::OPC_Decode, 197, 18, 230, 1, // Opcode: RINT_D 6468/* 1056 */ MCD::OPC_FilterValue, 27, 17, 0, 0, // Skip to: 1078 6469/* 1061 */ MCD::OPC_CheckPredicate, 79, 112, 5, 0, // Skip to: 2458 6470/* 1066 */ MCD::OPC_CheckField, 16, 5, 0, 105, 5, 0, // Skip to: 2458 6471/* 1073 */ MCD::OPC_Decode, 181, 8, 230, 1, // Opcode: CLASS_D 6472/* 1078 */ MCD::OPC_FilterValue, 28, 10, 0, 0, // Skip to: 1093 6473/* 1083 */ MCD::OPC_CheckPredicate, 79, 90, 5, 0, // Skip to: 2458 6474/* 1088 */ MCD::OPC_Decode, 131, 16, 230, 2, // Opcode: MIN_D 6475/* 1093 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 1108 6476/* 1098 */ MCD::OPC_CheckPredicate, 79, 75, 5, 0, // Skip to: 2458 6477/* 1103 */ MCD::OPC_Decode, 200, 15, 230, 2, // Opcode: MAX_D 6478/* 1108 */ MCD::OPC_FilterValue, 30, 10, 0, 0, // Skip to: 1123 6479/* 1113 */ MCD::OPC_CheckPredicate, 79, 60, 5, 0, // Skip to: 2458 6480/* 1118 */ MCD::OPC_Decode, 243, 15, 230, 2, // Opcode: MINA_D 6481/* 1123 */ MCD::OPC_FilterValue, 31, 50, 5, 0, // Skip to: 2458 6482/* 1128 */ MCD::OPC_CheckPredicate, 79, 45, 5, 0, // Skip to: 2458 6483/* 1133 */ MCD::OPC_Decode, 184, 15, 230, 2, // Opcode: MAXA_D 6484/* 1138 */ MCD::OPC_FilterValue, 20, 243, 0, 0, // Skip to: 1386 6485/* 1143 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6486/* 1146 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1161 6487/* 1151 */ MCD::OPC_CheckPredicate, 79, 22, 5, 0, // Skip to: 2458 6488/* 1156 */ MCD::OPC_Decode, 252, 8, 231, 2, // Opcode: CMP_F_S 6489/* 1161 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1176 6490/* 1166 */ MCD::OPC_CheckPredicate, 79, 7, 5, 0, // Skip to: 2458 6491/* 1171 */ MCD::OPC_Decode, 183, 9, 231, 2, // Opcode: CMP_UN_S 6492/* 1176 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1191 6493/* 1181 */ MCD::OPC_CheckPredicate, 79, 248, 4, 0, // Skip to: 2458 6494/* 1186 */ MCD::OPC_Decode, 249, 8, 231, 2, // Opcode: CMP_EQ_S 6495/* 1191 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1206 6496/* 1196 */ MCD::OPC_CheckPredicate, 79, 233, 4, 0, // Skip to: 2458 6497/* 1201 */ MCD::OPC_Decode, 171, 9, 231, 2, // Opcode: CMP_UEQ_S 6498/* 1206 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1221 6499/* 1211 */ MCD::OPC_CheckPredicate, 79, 218, 4, 0, // Skip to: 2458 6500/* 1216 */ MCD::OPC_Decode, 135, 9, 231, 2, // Opcode: CMP_LT_S 6501/* 1221 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1236 6502/* 1226 */ MCD::OPC_CheckPredicate, 79, 203, 4, 0, // Skip to: 2458 6503/* 1231 */ MCD::OPC_Decode, 179, 9, 231, 2, // Opcode: CMP_ULT_S 6504/* 1236 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1251 6505/* 1241 */ MCD::OPC_CheckPredicate, 79, 188, 4, 0, // Skip to: 2458 6506/* 1246 */ MCD::OPC_Decode, 129, 9, 231, 2, // Opcode: CMP_LE_S 6507/* 1251 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1266 6508/* 1256 */ MCD::OPC_CheckPredicate, 79, 173, 4, 0, // Skip to: 2458 6509/* 1261 */ MCD::OPC_Decode, 175, 9, 231, 2, // Opcode: CMP_ULE_S 6510/* 1266 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1281 6511/* 1271 */ MCD::OPC_CheckPredicate, 79, 158, 4, 0, // Skip to: 2458 6512/* 1276 */ MCD::OPC_Decode, 139, 9, 231, 2, // Opcode: CMP_SAF_S 6513/* 1281 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1296 6514/* 1286 */ MCD::OPC_CheckPredicate, 79, 143, 4, 0, // Skip to: 2458 6515/* 1291 */ MCD::OPC_Decode, 167, 9, 231, 2, // Opcode: CMP_SUN_S 6516/* 1296 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1311 6517/* 1301 */ MCD::OPC_CheckPredicate, 79, 128, 4, 0, // Skip to: 2458 6518/* 1306 */ MCD::OPC_Decode, 143, 9, 231, 2, // Opcode: CMP_SEQ_S 6519/* 1311 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1326 6520/* 1316 */ MCD::OPC_CheckPredicate, 79, 113, 4, 0, // Skip to: 2458 6521/* 1321 */ MCD::OPC_Decode, 155, 9, 231, 2, // Opcode: CMP_SUEQ_S 6522/* 1326 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1341 6523/* 1331 */ MCD::OPC_CheckPredicate, 79, 98, 4, 0, // Skip to: 2458 6524/* 1336 */ MCD::OPC_Decode, 151, 9, 231, 2, // Opcode: CMP_SLT_S 6525/* 1341 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1356 6526/* 1346 */ MCD::OPC_CheckPredicate, 79, 83, 4, 0, // Skip to: 2458 6527/* 1351 */ MCD::OPC_Decode, 163, 9, 231, 2, // Opcode: CMP_SULT_S 6528/* 1356 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1371 6529/* 1361 */ MCD::OPC_CheckPredicate, 79, 68, 4, 0, // Skip to: 2458 6530/* 1366 */ MCD::OPC_Decode, 147, 9, 231, 2, // Opcode: CMP_SLE_S 6531/* 1371 */ MCD::OPC_FilterValue, 15, 58, 4, 0, // Skip to: 2458 6532/* 1376 */ MCD::OPC_CheckPredicate, 79, 53, 4, 0, // Skip to: 2458 6533/* 1381 */ MCD::OPC_Decode, 159, 9, 231, 2, // Opcode: CMP_SULE_S 6534/* 1386 */ MCD::OPC_FilterValue, 21, 43, 4, 0, // Skip to: 2458 6535/* 1391 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6536/* 1394 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1409 6537/* 1399 */ MCD::OPC_CheckPredicate, 79, 30, 4, 0, // Skip to: 2458 6538/* 1404 */ MCD::OPC_Decode, 251, 8, 232, 2, // Opcode: CMP_F_D 6539/* 1409 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1424 6540/* 1414 */ MCD::OPC_CheckPredicate, 79, 15, 4, 0, // Skip to: 2458 6541/* 1419 */ MCD::OPC_Decode, 181, 9, 232, 2, // Opcode: CMP_UN_D 6542/* 1424 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1439 6543/* 1429 */ MCD::OPC_CheckPredicate, 79, 0, 4, 0, // Skip to: 2458 6544/* 1434 */ MCD::OPC_Decode, 245, 8, 232, 2, // Opcode: CMP_EQ_D 6545/* 1439 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1454 6546/* 1444 */ MCD::OPC_CheckPredicate, 79, 241, 3, 0, // Skip to: 2458 6547/* 1449 */ MCD::OPC_Decode, 169, 9, 232, 2, // Opcode: CMP_UEQ_D 6548/* 1454 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1469 6549/* 1459 */ MCD::OPC_CheckPredicate, 79, 226, 3, 0, // Skip to: 2458 6550/* 1464 */ MCD::OPC_Decode, 131, 9, 232, 2, // Opcode: CMP_LT_D 6551/* 1469 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1484 6552/* 1474 */ MCD::OPC_CheckPredicate, 79, 211, 3, 0, // Skip to: 2458 6553/* 1479 */ MCD::OPC_Decode, 177, 9, 232, 2, // Opcode: CMP_ULT_D 6554/* 1484 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1499 6555/* 1489 */ MCD::OPC_CheckPredicate, 79, 196, 3, 0, // Skip to: 2458 6556/* 1494 */ MCD::OPC_Decode, 253, 8, 232, 2, // Opcode: CMP_LE_D 6557/* 1499 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1514 6558/* 1504 */ MCD::OPC_CheckPredicate, 79, 181, 3, 0, // Skip to: 2458 6559/* 1509 */ MCD::OPC_Decode, 173, 9, 232, 2, // Opcode: CMP_ULE_D 6560/* 1514 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 1529 6561/* 1519 */ MCD::OPC_CheckPredicate, 79, 166, 3, 0, // Skip to: 2458 6562/* 1524 */ MCD::OPC_Decode, 137, 9, 232, 2, // Opcode: CMP_SAF_D 6563/* 1529 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1544 6564/* 1534 */ MCD::OPC_CheckPredicate, 79, 151, 3, 0, // Skip to: 2458 6565/* 1539 */ MCD::OPC_Decode, 165, 9, 232, 2, // Opcode: CMP_SUN_D 6566/* 1544 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1559 6567/* 1549 */ MCD::OPC_CheckPredicate, 79, 136, 3, 0, // Skip to: 2458 6568/* 1554 */ MCD::OPC_Decode, 141, 9, 232, 2, // Opcode: CMP_SEQ_D 6569/* 1559 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1574 6570/* 1564 */ MCD::OPC_CheckPredicate, 79, 121, 3, 0, // Skip to: 2458 6571/* 1569 */ MCD::OPC_Decode, 153, 9, 232, 2, // Opcode: CMP_SUEQ_D 6572/* 1574 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 1589 6573/* 1579 */ MCD::OPC_CheckPredicate, 79, 106, 3, 0, // Skip to: 2458 6574/* 1584 */ MCD::OPC_Decode, 149, 9, 232, 2, // Opcode: CMP_SLT_D 6575/* 1589 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1604 6576/* 1594 */ MCD::OPC_CheckPredicate, 79, 91, 3, 0, // Skip to: 2458 6577/* 1599 */ MCD::OPC_Decode, 161, 9, 232, 2, // Opcode: CMP_SULT_D 6578/* 1604 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1619 6579/* 1609 */ MCD::OPC_CheckPredicate, 79, 76, 3, 0, // Skip to: 2458 6580/* 1614 */ MCD::OPC_Decode, 145, 9, 232, 2, // Opcode: CMP_SLE_D 6581/* 1619 */ MCD::OPC_FilterValue, 15, 66, 3, 0, // Skip to: 2458 6582/* 1624 */ MCD::OPC_CheckPredicate, 79, 61, 3, 0, // Skip to: 2458 6583/* 1629 */ MCD::OPC_Decode, 157, 9, 232, 2, // Opcode: CMP_SULE_D 6584/* 1634 */ MCD::OPC_FilterValue, 18, 93, 0, 0, // Skip to: 1732 6585/* 1639 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6586/* 1642 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 1657 6587/* 1647 */ MCD::OPC_CheckPredicate, 76, 38, 3, 0, // Skip to: 2458 6588/* 1652 */ MCD::OPC_Decode, 230, 6, 233, 2, // Opcode: BC2EQZ 6589/* 1657 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 1672 6590/* 1662 */ MCD::OPC_CheckPredicate, 76, 23, 3, 0, // Skip to: 2458 6591/* 1667 */ MCD::OPC_Decode, 234, 14, 234, 2, // Opcode: LWC2_R6 6592/* 1672 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 1687 6593/* 1677 */ MCD::OPC_CheckPredicate, 76, 8, 3, 0, // Skip to: 2458 6594/* 1682 */ MCD::OPC_Decode, 142, 21, 234, 2, // Opcode: SWC2_R6 6595/* 1687 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1702 6596/* 1692 */ MCD::OPC_CheckPredicate, 76, 249, 2, 0, // Skip to: 2458 6597/* 1697 */ MCD::OPC_Decode, 232, 6, 233, 2, // Opcode: BC2NEZ 6598/* 1702 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1717 6599/* 1707 */ MCD::OPC_CheckPredicate, 76, 234, 2, 0, // Skip to: 2458 6600/* 1712 */ MCD::OPC_Decode, 174, 14, 234, 2, // Opcode: LDC2_R6 6601/* 1717 */ MCD::OPC_FilterValue, 15, 224, 2, 0, // Skip to: 2458 6602/* 1722 */ MCD::OPC_CheckPredicate, 76, 219, 2, 0, // Skip to: 2458 6603/* 1727 */ MCD::OPC_Decode, 138, 19, 234, 2, // Opcode: SDC2_R6 6604/* 1732 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 1747 6605/* 1737 */ MCD::OPC_CheckPredicate, 76, 204, 2, 0, // Skip to: 2458 6606/* 1742 */ MCD::OPC_Decode, 144, 7, 235, 2, // Opcode: BGEZC 6607/* 1747 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 1762 6608/* 1752 */ MCD::OPC_CheckPredicate, 76, 189, 2, 0, // Skip to: 2458 6609/* 1757 */ MCD::OPC_Decode, 201, 7, 236, 2, // Opcode: BLTZC 6610/* 1762 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 1777 6611/* 1767 */ MCD::OPC_CheckPredicate, 76, 174, 2, 0, // Skip to: 2458 6612/* 1772 */ MCD::OPC_Decode, 212, 7, 237, 2, // Opcode: BNEC 6613/* 1777 */ MCD::OPC_FilterValue, 29, 10, 0, 0, // Skip to: 1792 6614/* 1782 */ MCD::OPC_CheckPredicate, 77, 159, 2, 0, // Skip to: 2458 6615/* 1787 */ MCD::OPC_Decode, 219, 10, 238, 2, // Opcode: DAUI 6616/* 1792 */ MCD::OPC_FilterValue, 31, 135, 1, 0, // Skip to: 2188 6617/* 1797 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6618/* 1800 */ MCD::OPC_FilterValue, 15, 123, 0, 0, // Skip to: 1928 6619/* 1805 */ MCD::OPC_ExtractField, 6, 10, // Inst{15-6} ... 6620/* 1808 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1823 6621/* 1813 */ MCD::OPC_CheckPredicate, 80, 128, 2, 0, // Skip to: 2458 6622/* 1818 */ MCD::OPC_Decode, 192, 9, 239, 2, // Opcode: CRC32B 6623/* 1823 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1838 6624/* 1828 */ MCD::OPC_CheckPredicate, 80, 113, 2, 0, // Skip to: 2458 6625/* 1833 */ MCD::OPC_Decode, 198, 9, 239, 2, // Opcode: CRC32H 6626/* 1838 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1853 6627/* 1843 */ MCD::OPC_CheckPredicate, 80, 98, 2, 0, // Skip to: 2458 6628/* 1848 */ MCD::OPC_Decode, 199, 9, 239, 2, // Opcode: CRC32W 6629/* 1853 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1868 6630/* 1858 */ MCD::OPC_CheckPredicate, 81, 83, 2, 0, // Skip to: 2458 6631/* 1863 */ MCD::OPC_Decode, 197, 9, 239, 2, // Opcode: CRC32D 6632/* 1868 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 1883 6633/* 1873 */ MCD::OPC_CheckPredicate, 80, 68, 2, 0, // Skip to: 2458 6634/* 1878 */ MCD::OPC_Decode, 193, 9, 239, 2, // Opcode: CRC32CB 6635/* 1883 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1898 6636/* 1888 */ MCD::OPC_CheckPredicate, 80, 53, 2, 0, // Skip to: 2458 6637/* 1893 */ MCD::OPC_Decode, 195, 9, 239, 2, // Opcode: CRC32CH 6638/* 1898 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1913 6639/* 1903 */ MCD::OPC_CheckPredicate, 80, 38, 2, 0, // Skip to: 2458 6640/* 1908 */ MCD::OPC_Decode, 196, 9, 239, 2, // Opcode: CRC32CW 6641/* 1913 */ MCD::OPC_FilterValue, 7, 28, 2, 0, // Skip to: 2458 6642/* 1918 */ MCD::OPC_CheckPredicate, 81, 23, 2, 0, // Skip to: 2458 6643/* 1923 */ MCD::OPC_Decode, 194, 9, 239, 2, // Opcode: CRC32CD 6644/* 1928 */ MCD::OPC_FilterValue, 32, 47, 0, 0, // Skip to: 1980 6645/* 1933 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... 6646/* 1936 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 1965 6647/* 1941 */ MCD::OPC_CheckPredicate, 75, 0, 2, 0, // Skip to: 2458 6648/* 1946 */ MCD::OPC_CheckField, 21, 5, 0, 249, 1, 0, // Skip to: 2458 6649/* 1953 */ MCD::OPC_CheckField, 6, 2, 0, 242, 1, 0, // Skip to: 2458 6650/* 1960 */ MCD::OPC_Decode, 176, 7, 204, 2, // Opcode: BITSWAP 6651/* 1965 */ MCD::OPC_FilterValue, 2, 232, 1, 0, // Skip to: 2458 6652/* 1970 */ MCD::OPC_CheckPredicate, 75, 227, 1, 0, // Skip to: 2458 6653/* 1975 */ MCD::OPC_Decode, 150, 6, 240, 2, // Opcode: ALIGN 6654/* 1980 */ MCD::OPC_FilterValue, 36, 47, 0, 0, // Skip to: 2032 6655/* 1985 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... 6656/* 1988 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 2017 6657/* 1993 */ MCD::OPC_CheckPredicate, 77, 204, 1, 0, // Skip to: 2458 6658/* 1998 */ MCD::OPC_CheckField, 21, 5, 0, 197, 1, 0, // Skip to: 2458 6659/* 2005 */ MCD::OPC_CheckField, 6, 3, 0, 190, 1, 0, // Skip to: 2458 6660/* 2012 */ MCD::OPC_Decode, 220, 10, 241, 2, // Opcode: DBITSWAP 6661/* 2017 */ MCD::OPC_FilterValue, 1, 180, 1, 0, // Skip to: 2458 6662/* 2022 */ MCD::OPC_CheckPredicate, 77, 175, 1, 0, // Skip to: 2458 6663/* 2027 */ MCD::OPC_Decode, 217, 10, 242, 2, // Opcode: DALIGN 6664/* 2032 */ MCD::OPC_FilterValue, 37, 17, 0, 0, // Skip to: 2054 6665/* 2037 */ MCD::OPC_CheckPredicate, 76, 160, 1, 0, // Skip to: 2458 6666/* 2042 */ MCD::OPC_CheckField, 6, 1, 0, 153, 1, 0, // Skip to: 2458 6667/* 2049 */ MCD::OPC_Decode, 153, 8, 209, 2, // Opcode: CACHE_R6 6668/* 2054 */ MCD::OPC_FilterValue, 38, 10, 0, 0, // Skip to: 2069 6669/* 2059 */ MCD::OPC_CheckPredicate, 82, 138, 1, 0, // Skip to: 2458 6670/* 2064 */ MCD::OPC_Decode, 251, 18, 243, 2, // Opcode: SC_R6 6671/* 2069 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 2084 6672/* 2074 */ MCD::OPC_CheckPredicate, 75, 123, 1, 0, // Skip to: 2458 6673/* 2079 */ MCD::OPC_Decode, 246, 18, 243, 2, // Opcode: SCD_R6 6674/* 2084 */ MCD::OPC_FilterValue, 53, 17, 0, 0, // Skip to: 2106 6675/* 2089 */ MCD::OPC_CheckPredicate, 76, 108, 1, 0, // Skip to: 2458 6676/* 2094 */ MCD::OPC_CheckField, 6, 1, 0, 101, 1, 0, // Skip to: 2458 6677/* 2101 */ MCD::OPC_Decode, 169, 18, 209, 2, // Opcode: PREF_R6 6678/* 2106 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 2121 6679/* 2111 */ MCD::OPC_CheckPredicate, 82, 86, 1, 0, // Skip to: 2458 6680/* 2116 */ MCD::OPC_Decode, 216, 14, 243, 2, // Opcode: LL_R6 6681/* 2121 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 2136 6682/* 2126 */ MCD::OPC_CheckPredicate, 77, 71, 1, 0, // Skip to: 2458 6683/* 2131 */ MCD::OPC_Decode, 211, 14, 243, 2, // Opcode: LLD_R6 6684/* 2136 */ MCD::OPC_FilterValue, 61, 61, 1, 0, // Skip to: 2458 6685/* 2141 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 6686/* 2144 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2166 6687/* 2149 */ MCD::OPC_CheckPredicate, 83, 48, 1, 0, // Skip to: 2458 6688/* 2154 */ MCD::OPC_CheckField, 8, 13, 0, 41, 1, 0, // Skip to: 2458 6689/* 2161 */ MCD::OPC_Decode, 190, 13, 186, 1, // Opcode: GINVI 6690/* 2166 */ MCD::OPC_FilterValue, 2, 31, 1, 0, // Skip to: 2458 6691/* 2171 */ MCD::OPC_CheckPredicate, 83, 26, 1, 0, // Skip to: 2458 6692/* 2176 */ MCD::OPC_CheckField, 10, 11, 0, 19, 1, 0, // Skip to: 2458 6693/* 2183 */ MCD::OPC_Decode, 192, 13, 244, 2, // Opcode: GINVT 6694/* 2188 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 2203 6695/* 2193 */ MCD::OPC_CheckPredicate, 76, 4, 1, 0, // Skip to: 2458 6696/* 2198 */ MCD::OPC_Decode, 218, 6, 245, 2, // Opcode: BC 6697/* 2203 */ MCD::OPC_FilterValue, 53, 27, 0, 0, // Skip to: 2235 6698/* 2208 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2225 6699/* 2213 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2225 6700/* 2220 */ MCD::OPC_Decode, 155, 7, 180, 1, // Opcode: BGTZC_MMR6 6701/* 2225 */ MCD::OPC_CheckPredicate, 24, 228, 0, 0, // Skip to: 2458 6702/* 2230 */ MCD::OPC_Decode, 203, 7, 180, 1, // Opcode: BLTZC_MMR6 6703/* 2235 */ MCD::OPC_FilterValue, 54, 26, 0, 0, // Skip to: 2266 6704/* 2240 */ MCD::OPC_CheckPredicate, 75, 11, 0, 0, // Skip to: 2256 6705/* 2245 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 2256 6706/* 2252 */ MCD::OPC_Decode, 129, 14, 103, // Opcode: JIC 6707/* 2256 */ MCD::OPC_CheckPredicate, 76, 197, 0, 0, // Skip to: 2458 6708/* 2261 */ MCD::OPC_Decode, 252, 6, 246, 2, // Opcode: BEQZC 6709/* 2266 */ MCD::OPC_FilterValue, 58, 10, 0, 0, // Skip to: 2281 6710/* 2271 */ MCD::OPC_CheckPredicate, 75, 182, 0, 0, // Skip to: 2458 6711/* 2276 */ MCD::OPC_Decode, 210, 6, 245, 2, // Opcode: BALC 6712/* 2281 */ MCD::OPC_FilterValue, 59, 109, 0, 0, // Skip to: 2395 6713/* 2286 */ MCD::OPC_ExtractField, 19, 2, // Inst{20-19} ... 6714/* 2289 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2304 6715/* 2294 */ MCD::OPC_CheckPredicate, 75, 159, 0, 0, // Skip to: 2458 6716/* 2299 */ MCD::OPC_Decode, 204, 5, 174, 1, // Opcode: ADDIUPC 6717/* 2304 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2319 6718/* 2309 */ MCD::OPC_CheckPredicate, 75, 144, 0, 0, // Skip to: 2458 6719/* 2314 */ MCD::OPC_Decode, 249, 14, 174, 1, // Opcode: LWPC 6720/* 2319 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2334 6721/* 2324 */ MCD::OPC_CheckPredicate, 84, 129, 0, 0, // Skip to: 2458 6722/* 2329 */ MCD::OPC_Decode, 130, 15, 174, 1, // Opcode: LWUPC 6723/* 2334 */ MCD::OPC_FilterValue, 3, 119, 0, 0, // Skip to: 2458 6724/* 2339 */ MCD::OPC_ExtractField, 18, 1, // Inst{18} ... 6725/* 2342 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2357 6726/* 2347 */ MCD::OPC_CheckPredicate, 84, 106, 0, 0, // Skip to: 2458 6727/* 2352 */ MCD::OPC_Decode, 181, 14, 247, 2, // Opcode: LDPC 6728/* 2357 */ MCD::OPC_FilterValue, 1, 96, 0, 0, // Skip to: 2458 6729/* 2362 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 6730/* 2365 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2380 6731/* 2370 */ MCD::OPC_CheckPredicate, 75, 83, 0, 0, // Skip to: 2458 6732/* 2375 */ MCD::OPC_Decode, 179, 6, 175, 1, // Opcode: AUIPC 6733/* 2380 */ MCD::OPC_FilterValue, 3, 73, 0, 0, // Skip to: 2458 6734/* 2385 */ MCD::OPC_CheckPredicate, 75, 68, 0, 0, // Skip to: 2458 6735/* 2390 */ MCD::OPC_Decode, 152, 6, 175, 1, // Opcode: ALUIPC 6736/* 2395 */ MCD::OPC_FilterValue, 61, 27, 0, 0, // Skip to: 2427 6737/* 2400 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 2417 6738/* 2405 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 2417 6739/* 2412 */ MCD::OPC_Decode, 184, 7, 182, 1, // Opcode: BLEZC_MMR6 6740/* 2417 */ MCD::OPC_CheckPredicate, 24, 36, 0, 0, // Skip to: 2458 6741/* 2422 */ MCD::OPC_Decode, 146, 7, 182, 1, // Opcode: BGEZC_MMR6 6742/* 2427 */ MCD::OPC_FilterValue, 62, 26, 0, 0, // Skip to: 2458 6743/* 2432 */ MCD::OPC_CheckPredicate, 75, 11, 0, 0, // Skip to: 2448 6744/* 2437 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 2448 6745/* 2444 */ MCD::OPC_Decode, 254, 13, 103, // Opcode: JIALC 6746/* 2448 */ MCD::OPC_CheckPredicate, 76, 5, 0, 0, // Skip to: 2458 6747/* 2453 */ MCD::OPC_Decode, 227, 7, 246, 2, // Opcode: BNEZC 6748/* 2458 */ MCD::OPC_Fail, 6749 0 6750}; 6751 6752static const uint8_t DecoderTableMips32r6_64r6_Ambiguous32[] = { 6753/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6754/* 3 */ MCD::OPC_FilterValue, 6, 27, 0, 0, // Skip to: 35 6755/* 8 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 25 6756/* 13 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 25 6757/* 20 */ MCD::OPC_Decode, 180, 7, 223, 2, // Opcode: BLEZALC 6758/* 25 */ MCD::OPC_CheckPredicate, 76, 165, 0, 0, // Skip to: 195 6759/* 30 */ MCD::OPC_Decode, 133, 7, 223, 2, // Opcode: BGEUC 6760/* 35 */ MCD::OPC_FilterValue, 7, 27, 0, 0, // Skip to: 67 6761/* 40 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 57 6762/* 45 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 57 6763/* 52 */ MCD::OPC_Decode, 151, 7, 224, 2, // Opcode: BGTZALC 6764/* 57 */ MCD::OPC_CheckPredicate, 76, 133, 0, 0, // Skip to: 195 6765/* 62 */ MCD::OPC_Decode, 190, 7, 224, 2, // Opcode: BLTUC 6766/* 67 */ MCD::OPC_FilterValue, 8, 27, 0, 0, // Skip to: 99 6767/* 72 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 89 6768/* 77 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 89 6769/* 84 */ MCD::OPC_Decode, 250, 6, 237, 2, // Opcode: BEQZALC 6770/* 89 */ MCD::OPC_CheckPredicate, 76, 101, 0, 0, // Skip to: 195 6771/* 94 */ MCD::OPC_Decode, 240, 7, 225, 2, // Opcode: BOVC 6772/* 99 */ MCD::OPC_FilterValue, 22, 27, 0, 0, // Skip to: 131 6773/* 104 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 121 6774/* 109 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 121 6775/* 116 */ MCD::OPC_Decode, 182, 7, 235, 2, // Opcode: BLEZC 6776/* 121 */ MCD::OPC_CheckPredicate, 76, 69, 0, 0, // Skip to: 195 6777/* 126 */ MCD::OPC_Decode, 130, 7, 235, 2, // Opcode: BGEC 6778/* 131 */ MCD::OPC_FilterValue, 23, 27, 0, 0, // Skip to: 163 6779/* 136 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 153 6780/* 141 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 153 6781/* 148 */ MCD::OPC_Decode, 153, 7, 236, 2, // Opcode: BGTZC 6782/* 153 */ MCD::OPC_CheckPredicate, 76, 37, 0, 0, // Skip to: 195 6783/* 158 */ MCD::OPC_Decode, 187, 7, 236, 2, // Opcode: BLTC 6784/* 163 */ MCD::OPC_FilterValue, 24, 27, 0, 0, // Skip to: 195 6785/* 168 */ MCD::OPC_CheckPredicate, 76, 12, 0, 0, // Skip to: 185 6786/* 173 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 185 6787/* 180 */ MCD::OPC_Decode, 225, 7, 237, 2, // Opcode: BNEZALC 6788/* 185 */ MCD::OPC_CheckPredicate, 76, 5, 0, 0, // Skip to: 195 6789/* 190 */ MCD::OPC_Decode, 233, 7, 237, 2, // Opcode: BNVC 6790/* 195 */ MCD::OPC_Fail, 6791 0 6792}; 6793 6794static const uint8_t DecoderTableMips32r6_64r6_BranchZero32[] = { 6795/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6796/* 3 */ MCD::OPC_FilterValue, 22, 10, 0, 0, // Skip to: 18 6797/* 8 */ MCD::OPC_CheckPredicate, 85, 20, 0, 0, // Skip to: 33 6798/* 13 */ MCD::OPC_Decode, 145, 7, 235, 2, // Opcode: BGEZC64 6799/* 18 */ MCD::OPC_FilterValue, 23, 10, 0, 0, // Skip to: 33 6800/* 23 */ MCD::OPC_CheckPredicate, 85, 5, 0, 0, // Skip to: 33 6801/* 28 */ MCD::OPC_Decode, 202, 7, 236, 2, // Opcode: BLTZC64 6802/* 33 */ MCD::OPC_Fail, 6803 0 6804}; 6805 6806static const uint8_t DecoderTableMips32r6_64r6_GP6432[] = { 6807/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6808/* 3 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 61 6809/* 8 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 6810/* 11 */ MCD::OPC_FilterValue, 53, 9, 0, 0, // Skip to: 25 6811/* 16 */ MCD::OPC_CheckPredicate, 86, 226, 0, 0, // Skip to: 247 6812/* 21 */ MCD::OPC_Decode, 153, 19, 23, // Opcode: SELEQZ64 6813/* 25 */ MCD::OPC_FilterValue, 55, 9, 0, 0, // Skip to: 39 6814/* 30 */ MCD::OPC_CheckPredicate, 86, 212, 0, 0, // Skip to: 247 6815/* 35 */ MCD::OPC_Decode, 160, 19, 23, // Opcode: SELNEZ64 6816/* 39 */ MCD::OPC_FilterValue, 137, 8, 202, 0, 0, // Skip to: 247 6817/* 45 */ MCD::OPC_CheckPredicate, 75, 197, 0, 0, // Skip to: 247 6818/* 50 */ MCD::OPC_CheckField, 11, 10, 0, 190, 0, 0, // Skip to: 247 6819/* 57 */ MCD::OPC_Decode, 141, 14, 24, // Opcode: JR_HB64_R6 6820/* 61 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 76 6821/* 66 */ MCD::OPC_CheckPredicate, 85, 176, 0, 0, // Skip to: 247 6822/* 71 */ MCD::OPC_Decode, 134, 7, 223, 2, // Opcode: BGEUC64 6823/* 76 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 91 6824/* 81 */ MCD::OPC_CheckPredicate, 85, 161, 0, 0, // Skip to: 247 6825/* 86 */ MCD::OPC_Decode, 191, 7, 224, 2, // Opcode: BLTUC64 6826/* 91 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 106 6827/* 96 */ MCD::OPC_CheckPredicate, 85, 146, 0, 0, // Skip to: 247 6828/* 101 */ MCD::OPC_Decode, 246, 6, 225, 2, // Opcode: BEQC64 6829/* 106 */ MCD::OPC_FilterValue, 22, 27, 0, 0, // Skip to: 138 6830/* 111 */ MCD::OPC_CheckPredicate, 85, 12, 0, 0, // Skip to: 128 6831/* 116 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 128 6832/* 123 */ MCD::OPC_Decode, 183, 7, 235, 2, // Opcode: BLEZC64 6833/* 128 */ MCD::OPC_CheckPredicate, 85, 114, 0, 0, // Skip to: 247 6834/* 133 */ MCD::OPC_Decode, 131, 7, 235, 2, // Opcode: BGEC64 6835/* 138 */ MCD::OPC_FilterValue, 23, 27, 0, 0, // Skip to: 170 6836/* 143 */ MCD::OPC_CheckPredicate, 85, 12, 0, 0, // Skip to: 160 6837/* 148 */ MCD::OPC_CheckField, 21, 5, 0, 5, 0, 0, // Skip to: 160 6838/* 155 */ MCD::OPC_Decode, 154, 7, 236, 2, // Opcode: BGTZC64 6839/* 160 */ MCD::OPC_CheckPredicate, 85, 82, 0, 0, // Skip to: 247 6840/* 165 */ MCD::OPC_Decode, 188, 7, 236, 2, // Opcode: BLTC64 6841/* 170 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 185 6842/* 175 */ MCD::OPC_CheckPredicate, 85, 67, 0, 0, // Skip to: 247 6843/* 180 */ MCD::OPC_Decode, 213, 7, 237, 2, // Opcode: BNEC64 6844/* 185 */ MCD::OPC_FilterValue, 54, 26, 0, 0, // Skip to: 216 6845/* 190 */ MCD::OPC_CheckPredicate, 85, 11, 0, 0, // Skip to: 206 6846/* 195 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 206 6847/* 202 */ MCD::OPC_Decode, 130, 14, 22, // Opcode: JIC64 6848/* 206 */ MCD::OPC_CheckPredicate, 85, 36, 0, 0, // Skip to: 247 6849/* 211 */ MCD::OPC_Decode, 254, 6, 248, 2, // Opcode: BEQZC64 6850/* 216 */ MCD::OPC_FilterValue, 62, 26, 0, 0, // Skip to: 247 6851/* 221 */ MCD::OPC_CheckPredicate, 85, 11, 0, 0, // Skip to: 237 6852/* 226 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 237 6853/* 233 */ MCD::OPC_Decode, 255, 13, 22, // Opcode: JIALC64 6854/* 237 */ MCD::OPC_CheckPredicate, 85, 5, 0, 0, // Skip to: 247 6855/* 242 */ MCD::OPC_Decode, 229, 7, 248, 2, // Opcode: BNEZC64 6856/* 247 */ MCD::OPC_Fail, 6857 0 6858}; 6859 6860static const uint8_t DecoderTableMips32r6_64r6_PTR6432[] = { 6861/* 0 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6862/* 3 */ MCD::OPC_FilterValue, 38, 17, 0, 0, // Skip to: 25 6863/* 8 */ MCD::OPC_CheckPredicate, 87, 34, 0, 0, // Skip to: 47 6864/* 13 */ MCD::OPC_CheckField, 26, 6, 31, 27, 0, 0, // Skip to: 47 6865/* 20 */ MCD::OPC_Decode, 244, 18, 243, 2, // Opcode: SC64_R6 6866/* 25 */ MCD::OPC_FilterValue, 54, 17, 0, 0, // Skip to: 47 6867/* 30 */ MCD::OPC_CheckPredicate, 87, 12, 0, 0, // Skip to: 47 6868/* 35 */ MCD::OPC_CheckField, 26, 6, 31, 5, 0, 0, // Skip to: 47 6869/* 42 */ MCD::OPC_Decode, 209, 14, 243, 2, // Opcode: LL64_R6 6870/* 47 */ MCD::OPC_Fail, 6871 0 6872}; 6873 6874static const uint8_t DecoderTableMips6432[] = { 6875/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 6876/* 3 */ MCD::OPC_FilterValue, 0, 236, 1, 0, // Skip to: 500 6877/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 6878/* 11 */ MCD::OPC_FilterValue, 8, 16, 0, 0, // Skip to: 32 6879/* 16 */ MCD::OPC_CheckPredicate, 88, 244, 4, 0, // Skip to: 1289 6880/* 21 */ MCD::OPC_CheckField, 6, 15, 16, 237, 4, 0, // Skip to: 1289 6881/* 28 */ MCD::OPC_Decode, 140, 14, 24, // Opcode: JR_HB64 6882/* 32 */ MCD::OPC_FilterValue, 9, 45, 0, 0, // Skip to: 82 6883/* 37 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6884/* 40 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 61 6885/* 45 */ MCD::OPC_CheckPredicate, 89, 215, 4, 0, // Skip to: 1289 6886/* 50 */ MCD::OPC_CheckField, 16, 5, 0, 208, 4, 0, // Skip to: 1289 6887/* 57 */ MCD::OPC_Decode, 241, 13, 26, // Opcode: JALR64 6888/* 61 */ MCD::OPC_FilterValue, 16, 199, 4, 0, // Skip to: 1289 6889/* 66 */ MCD::OPC_CheckPredicate, 90, 194, 4, 0, // Skip to: 1289 6890/* 71 */ MCD::OPC_CheckField, 16, 5, 0, 187, 4, 0, // Skip to: 1289 6891/* 78 */ MCD::OPC_Decode, 248, 13, 26, // Opcode: JALR_HB64 6892/* 82 */ MCD::OPC_FilterValue, 20, 17, 0, 0, // Skip to: 104 6893/* 87 */ MCD::OPC_CheckPredicate, 91, 173, 4, 0, // Skip to: 1289 6894/* 92 */ MCD::OPC_CheckField, 6, 5, 0, 166, 4, 0, // Skip to: 1289 6895/* 99 */ MCD::OPC_Decode, 206, 11, 249, 2, // Opcode: DSLLV 6896/* 104 */ MCD::OPC_FilterValue, 22, 33, 0, 0, // Skip to: 142 6897/* 109 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 6898/* 112 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 127 6899/* 117 */ MCD::OPC_CheckPredicate, 91, 143, 4, 0, // Skip to: 1289 6900/* 122 */ MCD::OPC_Decode, 212, 11, 249, 2, // Opcode: DSRLV 6901/* 127 */ MCD::OPC_FilterValue, 1, 133, 4, 0, // Skip to: 1289 6902/* 132 */ MCD::OPC_CheckPredicate, 90, 128, 4, 0, // Skip to: 1289 6903/* 137 */ MCD::OPC_Decode, 199, 11, 249, 2, // Opcode: DROTRV 6904/* 142 */ MCD::OPC_FilterValue, 23, 17, 0, 0, // Skip to: 164 6905/* 147 */ MCD::OPC_CheckPredicate, 91, 113, 4, 0, // Skip to: 1289 6906/* 152 */ MCD::OPC_CheckField, 6, 5, 0, 106, 4, 0, // Skip to: 1289 6907/* 159 */ MCD::OPC_Decode, 209, 11, 249, 2, // Opcode: DSRAV 6908/* 164 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 186 6909/* 169 */ MCD::OPC_CheckPredicate, 92, 91, 4, 0, // Skip to: 1289 6910/* 174 */ MCD::OPC_CheckField, 6, 10, 0, 84, 4, 0, // Skip to: 1289 6911/* 181 */ MCD::OPC_Decode, 142, 11, 250, 2, // Opcode: DMULT 6912/* 186 */ MCD::OPC_FilterValue, 29, 17, 0, 0, // Skip to: 208 6913/* 191 */ MCD::OPC_CheckPredicate, 92, 69, 4, 0, // Skip to: 1289 6914/* 196 */ MCD::OPC_CheckField, 6, 10, 0, 62, 4, 0, // Skip to: 1289 6915/* 203 */ MCD::OPC_Decode, 143, 11, 250, 2, // Opcode: DMULTu 6916/* 208 */ MCD::OPC_FilterValue, 30, 17, 0, 0, // Skip to: 230 6917/* 213 */ MCD::OPC_CheckPredicate, 92, 47, 4, 0, // Skip to: 1289 6918/* 218 */ MCD::OPC_CheckField, 6, 10, 0, 40, 4, 0, // Skip to: 1289 6919/* 225 */ MCD::OPC_Decode, 201, 11, 250, 2, // Opcode: DSDIV 6920/* 230 */ MCD::OPC_FilterValue, 31, 17, 0, 0, // Skip to: 252 6921/* 235 */ MCD::OPC_CheckPredicate, 92, 25, 4, 0, // Skip to: 1289 6922/* 240 */ MCD::OPC_CheckField, 6, 10, 0, 18, 4, 0, // Skip to: 1289 6923/* 247 */ MCD::OPC_Decode, 215, 11, 250, 2, // Opcode: DUDIV 6924/* 252 */ MCD::OPC_FilterValue, 44, 16, 0, 0, // Skip to: 273 6925/* 257 */ MCD::OPC_CheckPredicate, 91, 3, 4, 0, // Skip to: 1289 6926/* 262 */ MCD::OPC_CheckField, 6, 5, 0, 252, 3, 0, // Skip to: 1289 6927/* 269 */ MCD::OPC_Decode, 212, 10, 23, // Opcode: DADD 6928/* 273 */ MCD::OPC_FilterValue, 45, 16, 0, 0, // Skip to: 294 6929/* 278 */ MCD::OPC_CheckPredicate, 91, 238, 3, 0, // Skip to: 1289 6930/* 283 */ MCD::OPC_CheckField, 6, 5, 0, 231, 3, 0, // Skip to: 1289 6931/* 290 */ MCD::OPC_Decode, 215, 10, 23, // Opcode: DADDu 6932/* 294 */ MCD::OPC_FilterValue, 46, 16, 0, 0, // Skip to: 315 6933/* 299 */ MCD::OPC_CheckPredicate, 91, 217, 3, 0, // Skip to: 1289 6934/* 304 */ MCD::OPC_CheckField, 6, 5, 0, 210, 3, 0, // Skip to: 1289 6935/* 311 */ MCD::OPC_Decode, 213, 11, 23, // Opcode: DSUB 6936/* 315 */ MCD::OPC_FilterValue, 47, 16, 0, 0, // Skip to: 336 6937/* 320 */ MCD::OPC_CheckPredicate, 91, 196, 3, 0, // Skip to: 1289 6938/* 325 */ MCD::OPC_CheckField, 6, 5, 0, 189, 3, 0, // Skip to: 1289 6939/* 332 */ MCD::OPC_Decode, 214, 11, 23, // Opcode: DSUBu 6940/* 336 */ MCD::OPC_FilterValue, 56, 17, 0, 0, // Skip to: 358 6941/* 341 */ MCD::OPC_CheckPredicate, 91, 175, 3, 0, // Skip to: 1289 6942/* 346 */ MCD::OPC_CheckField, 21, 5, 0, 168, 3, 0, // Skip to: 1289 6943/* 353 */ MCD::OPC_Decode, 203, 11, 251, 2, // Opcode: DSLL 6944/* 358 */ MCD::OPC_FilterValue, 58, 33, 0, 0, // Skip to: 396 6945/* 363 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6946/* 366 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 381 6947/* 371 */ MCD::OPC_CheckPredicate, 91, 145, 3, 0, // Skip to: 1289 6948/* 376 */ MCD::OPC_Decode, 210, 11, 251, 2, // Opcode: DSRL 6949/* 381 */ MCD::OPC_FilterValue, 1, 135, 3, 0, // Skip to: 1289 6950/* 386 */ MCD::OPC_CheckPredicate, 90, 130, 3, 0, // Skip to: 1289 6951/* 391 */ MCD::OPC_Decode, 197, 11, 251, 2, // Opcode: DROTR 6952/* 396 */ MCD::OPC_FilterValue, 59, 17, 0, 0, // Skip to: 418 6953/* 401 */ MCD::OPC_CheckPredicate, 91, 115, 3, 0, // Skip to: 1289 6954/* 406 */ MCD::OPC_CheckField, 21, 5, 0, 108, 3, 0, // Skip to: 1289 6955/* 413 */ MCD::OPC_Decode, 207, 11, 251, 2, // Opcode: DSRA 6956/* 418 */ MCD::OPC_FilterValue, 60, 17, 0, 0, // Skip to: 440 6957/* 423 */ MCD::OPC_CheckPredicate, 91, 93, 3, 0, // Skip to: 1289 6958/* 428 */ MCD::OPC_CheckField, 21, 5, 0, 86, 3, 0, // Skip to: 1289 6959/* 435 */ MCD::OPC_Decode, 204, 11, 251, 2, // Opcode: DSLL32 6960/* 440 */ MCD::OPC_FilterValue, 62, 33, 0, 0, // Skip to: 478 6961/* 445 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6962/* 448 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 463 6963/* 453 */ MCD::OPC_CheckPredicate, 91, 63, 3, 0, // Skip to: 1289 6964/* 458 */ MCD::OPC_Decode, 211, 11, 251, 2, // Opcode: DSRL32 6965/* 463 */ MCD::OPC_FilterValue, 1, 53, 3, 0, // Skip to: 1289 6966/* 468 */ MCD::OPC_CheckPredicate, 90, 48, 3, 0, // Skip to: 1289 6967/* 473 */ MCD::OPC_Decode, 198, 11, 251, 2, // Opcode: DROTR32 6968/* 478 */ MCD::OPC_FilterValue, 63, 38, 3, 0, // Skip to: 1289 6969/* 483 */ MCD::OPC_CheckPredicate, 91, 33, 3, 0, // Skip to: 1289 6970/* 488 */ MCD::OPC_CheckField, 21, 5, 0, 26, 3, 0, // Skip to: 1289 6971/* 495 */ MCD::OPC_Decode, 208, 11, 251, 2, // Opcode: DSRA32 6972/* 500 */ MCD::OPC_FilterValue, 16, 85, 0, 0, // Skip to: 590 6973/* 505 */ MCD::OPC_ExtractField, 3, 8, // Inst{10-3} ... 6974/* 508 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 546 6975/* 513 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6976/* 516 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 531 6977/* 521 */ MCD::OPC_CheckPredicate, 93, 251, 2, 0, // Skip to: 1289 6978/* 526 */ MCD::OPC_Decode, 254, 10, 252, 2, // Opcode: DMFC0 6979/* 531 */ MCD::OPC_FilterValue, 5, 241, 2, 0, // Skip to: 1289 6980/* 536 */ MCD::OPC_CheckPredicate, 93, 236, 2, 0, // Skip to: 1289 6981/* 541 */ MCD::OPC_Decode, 134, 11, 253, 2, // Opcode: DMTC0 6982/* 546 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 568 6983/* 551 */ MCD::OPC_CheckPredicate, 94, 221, 2, 0, // Skip to: 1289 6984/* 556 */ MCD::OPC_CheckField, 21, 5, 3, 214, 2, 0, // Skip to: 1289 6985/* 563 */ MCD::OPC_Decode, 130, 11, 252, 2, // Opcode: DMFGC0 6986/* 568 */ MCD::OPC_FilterValue, 96, 204, 2, 0, // Skip to: 1289 6987/* 573 */ MCD::OPC_CheckPredicate, 94, 199, 2, 0, // Skip to: 1289 6988/* 578 */ MCD::OPC_CheckField, 21, 5, 3, 192, 2, 0, // Skip to: 1289 6989/* 585 */ MCD::OPC_Decode, 138, 11, 253, 2, // Opcode: DMTGC0 6990/* 590 */ MCD::OPC_FilterValue, 18, 47, 0, 0, // Skip to: 642 6991/* 595 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 6992/* 598 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 620 6993/* 603 */ MCD::OPC_CheckPredicate, 93, 169, 2, 0, // Skip to: 1289 6994/* 608 */ MCD::OPC_CheckField, 3, 8, 0, 162, 2, 0, // Skip to: 1289 6995/* 615 */ MCD::OPC_Decode, 128, 11, 254, 2, // Opcode: DMFC2 6996/* 620 */ MCD::OPC_FilterValue, 5, 152, 2, 0, // Skip to: 1289 6997/* 625 */ MCD::OPC_CheckPredicate, 93, 147, 2, 0, // Skip to: 1289 6998/* 630 */ MCD::OPC_CheckField, 3, 8, 0, 140, 2, 0, // Skip to: 1289 6999/* 637 */ MCD::OPC_Decode, 136, 11, 255, 2, // Opcode: DMTC2 7000/* 642 */ MCD::OPC_FilterValue, 21, 3, 1, 0, // Skip to: 906 7001/* 647 */ MCD::OPC_ExtractField, 0, 13, // Inst{12-0} ... 7002/* 650 */ MCD::OPC_FilterValue, 188, 8, 10, 0, 0, // Skip to: 666 7003/* 656 */ MCD::OPC_CheckPredicate, 15, 116, 2, 0, // Skip to: 1289 7004/* 661 */ MCD::OPC_Decode, 250, 9, 128, 3, // Opcode: C_F_D64_MM 7005/* 666 */ MCD::OPC_FilterValue, 252, 8, 10, 0, 0, // Skip to: 682 7006/* 672 */ MCD::OPC_CheckPredicate, 15, 100, 2, 0, // Skip to: 1289 7007/* 677 */ MCD::OPC_Decode, 206, 10, 128, 3, // Opcode: C_UN_D64_MM 7008/* 682 */ MCD::OPC_FilterValue, 188, 9, 10, 0, 0, // Skip to: 698 7009/* 688 */ MCD::OPC_CheckPredicate, 15, 84, 2, 0, // Skip to: 1289 7010/* 693 */ MCD::OPC_Decode, 244, 9, 128, 3, // Opcode: C_EQ_D64_MM 7011/* 698 */ MCD::OPC_FilterValue, 252, 9, 10, 0, 0, // Skip to: 714 7012/* 704 */ MCD::OPC_CheckPredicate, 15, 68, 2, 0, // Skip to: 1289 7013/* 709 */ MCD::OPC_Decode, 188, 10, 128, 3, // Opcode: C_UEQ_D64_MM 7014/* 714 */ MCD::OPC_FilterValue, 188, 10, 10, 0, 0, // Skip to: 730 7015/* 720 */ MCD::OPC_CheckPredicate, 15, 52, 2, 0, // Skip to: 1289 7016/* 725 */ MCD::OPC_Decode, 170, 10, 128, 3, // Opcode: C_OLT_D64_MM 7017/* 730 */ MCD::OPC_FilterValue, 252, 10, 10, 0, 0, // Skip to: 746 7018/* 736 */ MCD::OPC_CheckPredicate, 15, 36, 2, 0, // Skip to: 1289 7019/* 741 */ MCD::OPC_Decode, 200, 10, 128, 3, // Opcode: C_ULT_D64_MM 7020/* 746 */ MCD::OPC_FilterValue, 188, 11, 10, 0, 0, // Skip to: 762 7021/* 752 */ MCD::OPC_CheckPredicate, 15, 20, 2, 0, // Skip to: 1289 7022/* 757 */ MCD::OPC_Decode, 164, 10, 128, 3, // Opcode: C_OLE_D64_MM 7023/* 762 */ MCD::OPC_FilterValue, 252, 11, 10, 0, 0, // Skip to: 778 7024/* 768 */ MCD::OPC_CheckPredicate, 15, 4, 2, 0, // Skip to: 1289 7025/* 773 */ MCD::OPC_Decode, 194, 10, 128, 3, // Opcode: C_ULE_D64_MM 7026/* 778 */ MCD::OPC_FilterValue, 188, 12, 10, 0, 0, // Skip to: 794 7027/* 784 */ MCD::OPC_CheckPredicate, 15, 244, 1, 0, // Skip to: 1289 7028/* 789 */ MCD::OPC_Decode, 182, 10, 128, 3, // Opcode: C_SF_D64_MM 7029/* 794 */ MCD::OPC_FilterValue, 252, 12, 10, 0, 0, // Skip to: 810 7030/* 800 */ MCD::OPC_CheckPredicate, 15, 228, 1, 0, // Skip to: 1289 7031/* 805 */ MCD::OPC_Decode, 146, 10, 128, 3, // Opcode: C_NGLE_D64_MM 7032/* 810 */ MCD::OPC_FilterValue, 188, 13, 10, 0, 0, // Skip to: 826 7033/* 816 */ MCD::OPC_CheckPredicate, 15, 212, 1, 0, // Skip to: 1289 7034/* 821 */ MCD::OPC_Decode, 176, 10, 128, 3, // Opcode: C_SEQ_D64_MM 7035/* 826 */ MCD::OPC_FilterValue, 252, 13, 10, 0, 0, // Skip to: 842 7036/* 832 */ MCD::OPC_CheckPredicate, 15, 196, 1, 0, // Skip to: 1289 7037/* 837 */ MCD::OPC_Decode, 152, 10, 128, 3, // Opcode: C_NGL_D64_MM 7038/* 842 */ MCD::OPC_FilterValue, 188, 14, 10, 0, 0, // Skip to: 858 7039/* 848 */ MCD::OPC_CheckPredicate, 15, 180, 1, 0, // Skip to: 1289 7040/* 853 */ MCD::OPC_Decode, 134, 10, 128, 3, // Opcode: C_LT_D64_MM 7041/* 858 */ MCD::OPC_FilterValue, 252, 14, 10, 0, 0, // Skip to: 874 7042/* 864 */ MCD::OPC_CheckPredicate, 15, 164, 1, 0, // Skip to: 1289 7043/* 869 */ MCD::OPC_Decode, 140, 10, 128, 3, // Opcode: C_NGE_D64_MM 7044/* 874 */ MCD::OPC_FilterValue, 188, 15, 10, 0, 0, // Skip to: 890 7045/* 880 */ MCD::OPC_CheckPredicate, 15, 148, 1, 0, // Skip to: 1289 7046/* 885 */ MCD::OPC_Decode, 128, 10, 128, 3, // Opcode: C_LE_D64_MM 7047/* 890 */ MCD::OPC_FilterValue, 252, 15, 137, 1, 0, // Skip to: 1289 7048/* 896 */ MCD::OPC_CheckPredicate, 15, 132, 1, 0, // Skip to: 1289 7049/* 901 */ MCD::OPC_Decode, 158, 10, 128, 3, // Opcode: C_NGT_D64_MM 7050/* 906 */ MCD::OPC_FilterValue, 24, 10, 0, 0, // Skip to: 921 7051/* 911 */ MCD::OPC_CheckPredicate, 95, 117, 1, 0, // Skip to: 1289 7052/* 916 */ MCD::OPC_Decode, 213, 10, 129, 3, // Opcode: DADDi 7053/* 921 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 936 7054/* 926 */ MCD::OPC_CheckPredicate, 91, 102, 1, 0, // Skip to: 1289 7055/* 931 */ MCD::OPC_Decode, 214, 10, 129, 3, // Opcode: DADDiu 7056/* 936 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 951 7057/* 941 */ MCD::OPC_CheckPredicate, 95, 87, 1, 0, // Skip to: 1289 7058/* 946 */ MCD::OPC_Decode, 180, 14, 141, 1, // Opcode: LDL 7059/* 951 */ MCD::OPC_FilterValue, 27, 10, 0, 0, // Skip to: 966 7060/* 956 */ MCD::OPC_CheckPredicate, 95, 72, 1, 0, // Skip to: 1289 7061/* 961 */ MCD::OPC_Decode, 182, 14, 141, 1, // Opcode: LDR 7062/* 966 */ MCD::OPC_FilterValue, 28, 33, 0, 0, // Skip to: 1004 7063/* 971 */ MCD::OPC_ExtractField, 0, 11, // Inst{10-0} ... 7064/* 974 */ MCD::OPC_FilterValue, 36, 10, 0, 0, // Skip to: 989 7065/* 979 */ MCD::OPC_CheckPredicate, 96, 49, 1, 0, // Skip to: 1289 7066/* 984 */ MCD::OPC_Decode, 223, 10, 130, 3, // Opcode: DCLZ 7067/* 989 */ MCD::OPC_FilterValue, 37, 39, 1, 0, // Skip to: 1289 7068/* 994 */ MCD::OPC_CheckPredicate, 96, 34, 1, 0, // Skip to: 1289 7069/* 999 */ MCD::OPC_Decode, 221, 10, 130, 3, // Opcode: DCLO 7070/* 1004 */ MCD::OPC_FilterValue, 31, 145, 0, 0, // Skip to: 1154 7071/* 1009 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 7072/* 1012 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 1027 7073/* 1017 */ MCD::OPC_CheckPredicate, 90, 11, 1, 0, // Skip to: 1289 7074/* 1022 */ MCD::OPC_Decode, 232, 10, 131, 3, // Opcode: DEXTM 7075/* 1027 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 1042 7076/* 1032 */ MCD::OPC_CheckPredicate, 90, 252, 0, 0, // Skip to: 1289 7077/* 1037 */ MCD::OPC_Decode, 233, 10, 131, 3, // Opcode: DEXTU 7078/* 1042 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 1057 7079/* 1047 */ MCD::OPC_CheckPredicate, 90, 237, 0, 0, // Skip to: 1289 7080/* 1052 */ MCD::OPC_Decode, 230, 10, 131, 3, // Opcode: DEXT 7081/* 1057 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 1072 7082/* 1062 */ MCD::OPC_CheckPredicate, 90, 222, 0, 0, // Skip to: 1289 7083/* 1067 */ MCD::OPC_Decode, 236, 10, 132, 3, // Opcode: DINSM 7084/* 1072 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 1087 7085/* 1077 */ MCD::OPC_CheckPredicate, 90, 207, 0, 0, // Skip to: 1289 7086/* 1082 */ MCD::OPC_Decode, 237, 10, 132, 3, // Opcode: DINSU 7087/* 1087 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1102 7088/* 1092 */ MCD::OPC_CheckPredicate, 90, 192, 0, 0, // Skip to: 1289 7089/* 1097 */ MCD::OPC_Decode, 235, 10, 132, 3, // Opcode: DINS 7090/* 1102 */ MCD::OPC_FilterValue, 36, 182, 0, 0, // Skip to: 1289 7091/* 1107 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 7092/* 1110 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1132 7093/* 1115 */ MCD::OPC_CheckPredicate, 90, 169, 0, 0, // Skip to: 1289 7094/* 1120 */ MCD::OPC_CheckField, 21, 5, 0, 162, 0, 0, // Skip to: 1289 7095/* 1127 */ MCD::OPC_Decode, 200, 11, 241, 2, // Opcode: DSBH 7096/* 1132 */ MCD::OPC_FilterValue, 5, 152, 0, 0, // Skip to: 1289 7097/* 1137 */ MCD::OPC_CheckPredicate, 90, 147, 0, 0, // Skip to: 1289 7098/* 1142 */ MCD::OPC_CheckField, 21, 5, 0, 140, 0, 0, // Skip to: 1289 7099/* 1149 */ MCD::OPC_Decode, 202, 11, 241, 2, // Opcode: DSHD 7100/* 1154 */ MCD::OPC_FilterValue, 39, 10, 0, 0, // Skip to: 1169 7101/* 1159 */ MCD::OPC_CheckPredicate, 91, 125, 0, 0, // Skip to: 1289 7102/* 1164 */ MCD::OPC_Decode, 139, 15, 141, 1, // Opcode: LWu 7103/* 1169 */ MCD::OPC_FilterValue, 44, 10, 0, 0, // Skip to: 1184 7104/* 1174 */ MCD::OPC_CheckPredicate, 95, 110, 0, 0, // Skip to: 1289 7105/* 1179 */ MCD::OPC_Decode, 142, 19, 141, 1, // Opcode: SDL 7106/* 1184 */ MCD::OPC_FilterValue, 45, 10, 0, 0, // Skip to: 1199 7107/* 1189 */ MCD::OPC_CheckPredicate, 95, 95, 0, 0, // Skip to: 1289 7108/* 1194 */ MCD::OPC_Decode, 143, 19, 141, 1, // Opcode: SDR 7109/* 1199 */ MCD::OPC_FilterValue, 46, 10, 0, 0, // Skip to: 1214 7110/* 1204 */ MCD::OPC_CheckPredicate, 20, 80, 0, 0, // Skip to: 1289 7111/* 1209 */ MCD::OPC_Decode, 135, 19, 139, 1, // Opcode: SDC1_MM_D64 7112/* 1214 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 1229 7113/* 1219 */ MCD::OPC_CheckPredicate, 20, 65, 0, 0, // Skip to: 1289 7114/* 1224 */ MCD::OPC_Decode, 171, 14, 139, 1, // Opcode: LDC1_MM_D64 7115/* 1229 */ MCD::OPC_FilterValue, 52, 10, 0, 0, // Skip to: 1244 7116/* 1234 */ MCD::OPC_CheckPredicate, 92, 50, 0, 0, // Skip to: 1289 7117/* 1239 */ MCD::OPC_Decode, 210, 14, 141, 1, // Opcode: LLD 7118/* 1244 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 1259 7119/* 1249 */ MCD::OPC_CheckPredicate, 91, 35, 0, 0, // Skip to: 1289 7120/* 1254 */ MCD::OPC_Decode, 166, 14, 141, 1, // Opcode: LD 7121/* 1259 */ MCD::OPC_FilterValue, 60, 10, 0, 0, // Skip to: 1274 7122/* 1264 */ MCD::OPC_CheckPredicate, 95, 20, 0, 0, // Skip to: 1289 7123/* 1269 */ MCD::OPC_Decode, 245, 18, 141, 1, // Opcode: SCD 7124/* 1274 */ MCD::OPC_FilterValue, 63, 10, 0, 0, // Skip to: 1289 7125/* 1279 */ MCD::OPC_CheckPredicate, 91, 5, 0, 0, // Skip to: 1289 7126/* 1284 */ MCD::OPC_Decode, 252, 18, 141, 1, // Opcode: SD 7127/* 1289 */ MCD::OPC_Fail, 7128 0 7129}; 7130 7131static const uint8_t DecoderTableMipsDSP32[] = { 7132/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 7133/* 3 */ MCD::OPC_FilterValue, 35, 10, 0, 0, // Skip to: 18 7134/* 8 */ MCD::OPC_CheckPredicate, 97, 20, 0, 0, // Skip to: 33 7135/* 13 */ MCD::OPC_Decode, 236, 14, 141, 1, // Opcode: LWDSP 7136/* 18 */ MCD::OPC_FilterValue, 43, 10, 0, 0, // Skip to: 33 7137/* 23 */ MCD::OPC_CheckPredicate, 97, 5, 0, 0, // Skip to: 33 7138/* 28 */ MCD::OPC_Decode, 144, 21, 141, 1, // Opcode: SWDSP 7139/* 33 */ MCD::OPC_Fail, 7140 0 7141}; 7142 7143static const uint8_t DecoderTableMipsFP6432[] = { 7144/* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... 7145/* 3 */ MCD::OPC_FilterValue, 17, 249, 5, 0, // Skip to: 1537 7146/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 7147/* 11 */ MCD::OPC_FilterValue, 0, 121, 0, 0, // Skip to: 137 7148/* 16 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 7149/* 19 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 41 7150/* 24 */ MCD::OPC_CheckPredicate, 98, 158, 6, 0, // Skip to: 1723 7151/* 29 */ MCD::OPC_CheckField, 6, 5, 0, 151, 6, 0, // Skip to: 1723 7152/* 36 */ MCD::OPC_Decode, 215, 15, 133, 3, // Opcode: MFC1_D64 7153/* 41 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 63 7154/* 46 */ MCD::OPC_CheckPredicate, 99, 136, 6, 0, // Skip to: 1723 7155/* 51 */ MCD::OPC_CheckField, 6, 5, 0, 129, 6, 0, // Skip to: 1723 7156/* 58 */ MCD::OPC_Decode, 225, 15, 133, 3, // Opcode: MFHC1_D64 7157/* 63 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 85 7158/* 68 */ MCD::OPC_CheckPredicate, 98, 114, 6, 0, // Skip to: 1723 7159/* 73 */ MCD::OPC_CheckField, 6, 5, 0, 107, 6, 0, // Skip to: 1723 7160/* 80 */ MCD::OPC_Decode, 230, 16, 134, 3, // Opcode: MTC1_D64 7161/* 85 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 107 7162/* 90 */ MCD::OPC_CheckPredicate, 99, 92, 6, 0, // Skip to: 1723 7163/* 95 */ MCD::OPC_CheckField, 6, 5, 0, 85, 6, 0, // Skip to: 1723 7164/* 102 */ MCD::OPC_Decode, 241, 16, 135, 3, // Opcode: MTHC1_D64 7165/* 107 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 122 7166/* 112 */ MCD::OPC_CheckPredicate, 98, 70, 6, 0, // Skip to: 1723 7167/* 117 */ MCD::OPC_Decode, 146, 12, 230, 2, // Opcode: FADD_D64 7168/* 122 */ MCD::OPC_FilterValue, 22, 60, 6, 0, // Skip to: 1723 7169/* 127 */ MCD::OPC_CheckPredicate, 100, 55, 6, 0, // Skip to: 1723 7170/* 132 */ MCD::OPC_Decode, 148, 12, 230, 2, // Opcode: FADD_PS64 7171/* 137 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 175 7172/* 142 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 7173/* 145 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 160 7174/* 150 */ MCD::OPC_CheckPredicate, 98, 32, 6, 0, // Skip to: 1723 7175/* 155 */ MCD::OPC_Decode, 163, 13, 230, 2, // Opcode: FSUB_D64 7176/* 160 */ MCD::OPC_FilterValue, 22, 22, 6, 0, // Skip to: 1723 7177/* 165 */ MCD::OPC_CheckPredicate, 100, 17, 6, 0, // Skip to: 1723 7178/* 170 */ MCD::OPC_Decode, 165, 13, 230, 2, // Opcode: FSUB_PS64 7179/* 175 */ MCD::OPC_FilterValue, 2, 33, 0, 0, // Skip to: 213 7180/* 180 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 7181/* 183 */ MCD::OPC_FilterValue, 17, 10, 0, 0, // Skip to: 198 7182/* 188 */ MCD::OPC_CheckPredicate, 98, 250, 5, 0, // Skip to: 1723 7183/* 193 */ MCD::OPC_Decode, 247, 12, 230, 2, // Opcode: FMUL_D64 7184/* 198 */ MCD::OPC_FilterValue, 22, 240, 5, 0, // Skip to: 1723 7185/* 203 */ MCD::OPC_CheckPredicate, 100, 235, 5, 0, // Skip to: 1723 7186/* 208 */ MCD::OPC_Decode, 249, 12, 230, 2, // Opcode: FMUL_PS64 7187/* 213 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 235 7188/* 218 */ MCD::OPC_CheckPredicate, 98, 220, 5, 0, // Skip to: 1723 7189/* 223 */ MCD::OPC_CheckField, 21, 5, 17, 213, 5, 0, // Skip to: 1723 7190/* 230 */ MCD::OPC_Decode, 185, 12, 230, 2, // Opcode: FDIV_D64 7191/* 235 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 258 7192/* 240 */ MCD::OPC_CheckPredicate, 101, 198, 5, 0, // Skip to: 1723 7193/* 245 */ MCD::OPC_CheckField, 16, 10, 160, 4, 190, 5, 0, // Skip to: 1723 7194/* 253 */ MCD::OPC_Decode, 155, 13, 230, 1, // Opcode: FSQRT_D64 7195/* 258 */ MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 281 7196/* 263 */ MCD::OPC_CheckPredicate, 98, 175, 5, 0, // Skip to: 1723 7197/* 268 */ MCD::OPC_CheckField, 16, 10, 160, 4, 167, 5, 0, // Skip to: 1723 7198/* 276 */ MCD::OPC_Decode, 139, 12, 230, 1, // Opcode: FABS_D64 7199/* 281 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 304 7200/* 286 */ MCD::OPC_CheckPredicate, 98, 152, 5, 0, // Skip to: 1723 7201/* 291 */ MCD::OPC_CheckField, 16, 10, 160, 4, 144, 5, 0, // Skip to: 1723 7202/* 299 */ MCD::OPC_Decode, 236, 12, 230, 1, // Opcode: FMOV_D64 7203/* 304 */ MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 327 7204/* 309 */ MCD::OPC_CheckPredicate, 98, 129, 5, 0, // Skip to: 1723 7205/* 314 */ MCD::OPC_CheckField, 16, 10, 160, 4, 121, 5, 0, // Skip to: 1723 7206/* 322 */ MCD::OPC_Decode, 128, 13, 230, 1, // Opcode: FNEG_D64 7207/* 327 */ MCD::OPC_FilterValue, 8, 35, 0, 0, // Skip to: 367 7208/* 332 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7209/* 335 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 351 7210/* 341 */ MCD::OPC_CheckPredicate, 101, 97, 5, 0, // Skip to: 1723 7211/* 346 */ MCD::OPC_Decode, 207, 18, 223, 1, // Opcode: ROUND_L_S 7212/* 351 */ MCD::OPC_FilterValue, 160, 4, 86, 5, 0, // Skip to: 1723 7213/* 357 */ MCD::OPC_CheckPredicate, 102, 81, 5, 0, // Skip to: 1723 7214/* 362 */ MCD::OPC_Decode, 205, 18, 230, 1, // Opcode: ROUND_L_D64 7215/* 367 */ MCD::OPC_FilterValue, 9, 35, 0, 0, // Skip to: 407 7216/* 372 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7217/* 375 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 391 7218/* 381 */ MCD::OPC_CheckPredicate, 101, 57, 5, 0, // Skip to: 1723 7219/* 386 */ MCD::OPC_Decode, 246, 21, 223, 1, // Opcode: TRUNC_L_S 7220/* 391 */ MCD::OPC_FilterValue, 160, 4, 46, 5, 0, // Skip to: 1723 7221/* 397 */ MCD::OPC_CheckPredicate, 102, 41, 5, 0, // Skip to: 1723 7222/* 402 */ MCD::OPC_Decode, 244, 21, 230, 1, // Opcode: TRUNC_L_D64 7223/* 407 */ MCD::OPC_FilterValue, 10, 35, 0, 0, // Skip to: 447 7224/* 412 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7225/* 415 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 431 7226/* 421 */ MCD::OPC_CheckPredicate, 101, 17, 5, 0, // Skip to: 1723 7227/* 426 */ MCD::OPC_Decode, 156, 8, 223, 1, // Opcode: CEIL_L_S 7228/* 431 */ MCD::OPC_FilterValue, 160, 4, 6, 5, 0, // Skip to: 1723 7229/* 437 */ MCD::OPC_CheckPredicate, 102, 1, 5, 0, // Skip to: 1723 7230/* 442 */ MCD::OPC_Decode, 154, 8, 230, 1, // Opcode: CEIL_L_D64 7231/* 447 */ MCD::OPC_FilterValue, 11, 35, 0, 0, // Skip to: 487 7232/* 452 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7233/* 455 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 471 7234/* 461 */ MCD::OPC_CheckPredicate, 101, 233, 4, 0, // Skip to: 1723 7235/* 466 */ MCD::OPC_Decode, 215, 12, 223, 1, // Opcode: FLOOR_L_S 7236/* 471 */ MCD::OPC_FilterValue, 160, 4, 222, 4, 0, // Skip to: 1723 7237/* 477 */ MCD::OPC_CheckPredicate, 102, 217, 4, 0, // Skip to: 1723 7238/* 482 */ MCD::OPC_Decode, 213, 12, 230, 1, // Opcode: FLOOR_L_D64 7239/* 487 */ MCD::OPC_FilterValue, 12, 18, 0, 0, // Skip to: 510 7240/* 492 */ MCD::OPC_CheckPredicate, 101, 202, 4, 0, // Skip to: 1723 7241/* 497 */ MCD::OPC_CheckField, 16, 10, 160, 4, 194, 4, 0, // Skip to: 1723 7242/* 505 */ MCD::OPC_Decode, 210, 18, 136, 3, // Opcode: ROUND_W_D64 7243/* 510 */ MCD::OPC_FilterValue, 13, 18, 0, 0, // Skip to: 533 7244/* 515 */ MCD::OPC_CheckPredicate, 101, 179, 4, 0, // Skip to: 1723 7245/* 520 */ MCD::OPC_CheckField, 16, 10, 160, 4, 171, 4, 0, // Skip to: 1723 7246/* 528 */ MCD::OPC_Decode, 249, 21, 136, 3, // Opcode: TRUNC_W_D64 7247/* 533 */ MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 556 7248/* 538 */ MCD::OPC_CheckPredicate, 101, 156, 4, 0, // Skip to: 1723 7249/* 543 */ MCD::OPC_CheckField, 16, 10, 160, 4, 148, 4, 0, // Skip to: 1723 7250/* 551 */ MCD::OPC_Decode, 159, 8, 136, 3, // Opcode: CEIL_W_D64 7251/* 556 */ MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 579 7252/* 561 */ MCD::OPC_CheckPredicate, 101, 133, 4, 0, // Skip to: 1723 7253/* 566 */ MCD::OPC_CheckField, 16, 10, 160, 4, 125, 4, 0, // Skip to: 1723 7254/* 574 */ MCD::OPC_Decode, 218, 12, 136, 3, // Opcode: FLOOR_W_D64 7255/* 579 */ MCD::OPC_FilterValue, 17, 47, 0, 0, // Skip to: 631 7256/* 584 */ MCD::OPC_ExtractField, 16, 2, // Inst{17-16} ... 7257/* 587 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 609 7258/* 592 */ MCD::OPC_CheckPredicate, 103, 102, 4, 0, // Skip to: 1723 7259/* 597 */ MCD::OPC_CheckField, 21, 5, 17, 95, 4, 0, // Skip to: 1723 7260/* 604 */ MCD::OPC_Decode, 164, 16, 137, 3, // Opcode: MOVF_D64 7261/* 609 */ MCD::OPC_FilterValue, 1, 85, 4, 0, // Skip to: 1723 7262/* 614 */ MCD::OPC_CheckPredicate, 103, 80, 4, 0, // Skip to: 1723 7263/* 619 */ MCD::OPC_CheckField, 21, 5, 17, 73, 4, 0, // Skip to: 1723 7264/* 626 */ MCD::OPC_Decode, 184, 16, 137, 3, // Opcode: MOVT_D64 7265/* 631 */ MCD::OPC_FilterValue, 18, 17, 0, 0, // Skip to: 653 7266/* 636 */ MCD::OPC_CheckPredicate, 103, 58, 4, 0, // Skip to: 1723 7267/* 641 */ MCD::OPC_CheckField, 21, 5, 17, 51, 4, 0, // Skip to: 1723 7268/* 648 */ MCD::OPC_Decode, 196, 16, 138, 3, // Opcode: MOVZ_I_D64 7269/* 653 */ MCD::OPC_FilterValue, 19, 17, 0, 0, // Skip to: 675 7270/* 658 */ MCD::OPC_CheckPredicate, 103, 36, 4, 0, // Skip to: 1723 7271/* 663 */ MCD::OPC_CheckField, 21, 5, 17, 29, 4, 0, // Skip to: 1723 7272/* 670 */ MCD::OPC_Decode, 176, 16, 138, 3, // Opcode: MOVN_I_D64 7273/* 675 */ MCD::OPC_FilterValue, 21, 18, 0, 0, // Skip to: 698 7274/* 680 */ MCD::OPC_CheckPredicate, 104, 14, 4, 0, // Skip to: 1723 7275/* 685 */ MCD::OPC_CheckField, 16, 10, 160, 4, 6, 4, 0, // Skip to: 1723 7276/* 693 */ MCD::OPC_Decode, 185, 18, 230, 1, // Opcode: RECIP_D64 7277/* 698 */ MCD::OPC_FilterValue, 22, 18, 0, 0, // Skip to: 721 7278/* 703 */ MCD::OPC_CheckPredicate, 104, 247, 3, 0, // Skip to: 1723 7279/* 708 */ MCD::OPC_CheckField, 16, 10, 160, 4, 239, 3, 0, // Skip to: 1723 7280/* 716 */ MCD::OPC_Decode, 218, 18, 230, 1, // Opcode: RSQRT_D64 7281/* 721 */ MCD::OPC_FilterValue, 24, 17, 0, 0, // Skip to: 743 7282/* 726 */ MCD::OPC_CheckPredicate, 105, 224, 3, 0, // Skip to: 1723 7283/* 731 */ MCD::OPC_CheckField, 21, 5, 22, 217, 3, 0, // Skip to: 1723 7284/* 738 */ MCD::OPC_Decode, 226, 5, 230, 2, // Opcode: ADDR_PS64 7285/* 743 */ MCD::OPC_FilterValue, 26, 17, 0, 0, // Skip to: 765 7286/* 748 */ MCD::OPC_CheckPredicate, 105, 202, 3, 0, // Skip to: 1723 7287/* 753 */ MCD::OPC_CheckField, 21, 5, 22, 195, 3, 0, // Skip to: 1723 7288/* 760 */ MCD::OPC_Decode, 158, 17, 230, 2, // Opcode: MULR_PS64 7289/* 765 */ MCD::OPC_FilterValue, 32, 51, 0, 0, // Skip to: 821 7290/* 770 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7291/* 773 */ MCD::OPC_FilterValue, 160, 4, 10, 0, 0, // Skip to: 789 7292/* 779 */ MCD::OPC_CheckPredicate, 98, 171, 3, 0, // Skip to: 1723 7293/* 784 */ MCD::OPC_Decode, 225, 9, 136, 3, // Opcode: CVT_S_D64 7294/* 789 */ MCD::OPC_FilterValue, 160, 5, 10, 0, 0, // Skip to: 805 7295/* 795 */ MCD::OPC_CheckPredicate, 106, 155, 3, 0, // Skip to: 1723 7296/* 800 */ MCD::OPC_Decode, 227, 9, 136, 3, // Opcode: CVT_S_L 7297/* 805 */ MCD::OPC_FilterValue, 192, 5, 144, 3, 0, // Skip to: 1723 7298/* 811 */ MCD::OPC_CheckPredicate, 100, 139, 3, 0, // Skip to: 1723 7299/* 816 */ MCD::OPC_Decode, 230, 9, 136, 3, // Opcode: CVT_S_PU64 7300/* 821 */ MCD::OPC_FilterValue, 33, 51, 0, 0, // Skip to: 877 7301/* 826 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7302/* 829 */ MCD::OPC_FilterValue, 128, 4, 10, 0, 0, // Skip to: 845 7303/* 835 */ MCD::OPC_CheckPredicate, 98, 115, 3, 0, // Skip to: 1723 7304/* 840 */ MCD::OPC_Decode, 209, 9, 223, 1, // Opcode: CVT_D64_S 7305/* 845 */ MCD::OPC_FilterValue, 128, 5, 10, 0, 0, // Skip to: 861 7306/* 851 */ MCD::OPC_CheckPredicate, 98, 99, 3, 0, // Skip to: 1723 7307/* 856 */ MCD::OPC_Decode, 211, 9, 223, 1, // Opcode: CVT_D64_W 7308/* 861 */ MCD::OPC_FilterValue, 160, 5, 88, 3, 0, // Skip to: 1723 7309/* 867 */ MCD::OPC_CheckPredicate, 106, 83, 3, 0, // Skip to: 1723 7310/* 872 */ MCD::OPC_Decode, 208, 9, 230, 1, // Opcode: CVT_D64_L 7311/* 877 */ MCD::OPC_FilterValue, 36, 35, 0, 0, // Skip to: 917 7312/* 882 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... 7313/* 885 */ MCD::OPC_FilterValue, 160, 4, 10, 0, 0, // Skip to: 901 7314/* 891 */ MCD::OPC_CheckPredicate, 98, 59, 3, 0, // Skip to: 1723 7315/* 896 */ MCD::OPC_Decode, 236, 9, 136, 3, // Opcode: CVT_W_D64 7316/* 901 */ MCD::OPC_FilterValue, 192, 5, 48, 3, 0, // Skip to: 1723 7317/* 907 */ MCD::OPC_CheckPredicate, 105, 43, 3, 0, // Skip to: 1723 7318/* 912 */ MCD::OPC_Decode, 222, 9, 230, 1, // Opcode: CVT_PW_PS64 7319/* 917 */ MCD::OPC_FilterValue, 38, 40, 0, 0, // Skip to: 962 7320/* 922 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... 7321/* 925 */ MCD::OPC_FilterValue, 16, 10, 0, 0, // Skip to: 940 7322/* 930 */ MCD::OPC_CheckPredicate, 100, 20, 3, 0, // Skip to: 1723 7323/* 935 */ MCD::OPC_Decode, 221, 9, 139, 3, // Opcode: CVT_PS_S64 7324/* 940 */ MCD::OPC_FilterValue, 20, 10, 3, 0, // Skip to: 1723 7325/* 945 */ MCD::OPC_CheckPredicate, 105, 5, 3, 0, // Skip to: 1723 7326/* 950 */ MCD::OPC_CheckField, 16, 5, 0, 254, 2, 0, // Skip to: 1723 7327/* 957 */ MCD::OPC_Decode, 220, 9, 230, 1, // Opcode: CVT_PS_PW64 7328/* 962 */ MCD::OPC_FilterValue, 40, 18, 0, 0, // Skip to: 985 7329/* 967 */ MCD::OPC_CheckPredicate, 100, 239, 2, 0, // Skip to: 1723 7330/* 972 */ MCD::OPC_CheckField, 16, 10, 192, 5, 231, 2, 0, // Skip to: 1723 7331/* 980 */ MCD::OPC_Decode, 229, 9, 136, 3, // Opcode: CVT_S_PL64 7332/* 985 */ MCD::OPC_FilterValue, 44, 17, 0, 0, // Skip to: 1007 7333/* 990 */ MCD::OPC_CheckPredicate, 100, 216, 2, 0, // Skip to: 1723 7334/* 995 */ MCD::OPC_CheckField, 21, 5, 22, 209, 2, 0, // Skip to: 1723 7335/* 1002 */ MCD::OPC_Decode, 254, 17, 230, 2, // Opcode: PLL_PS64 7336/* 1007 */ MCD::OPC_FilterValue, 45, 17, 0, 0, // Skip to: 1029 7337/* 1012 */ MCD::OPC_CheckPredicate, 100, 194, 2, 0, // Skip to: 1723 7338/* 1017 */ MCD::OPC_CheckField, 21, 5, 22, 187, 2, 0, // Skip to: 1723 7339/* 1024 */ MCD::OPC_Decode, 255, 17, 230, 2, // Opcode: PLU_PS64 7340/* 1029 */ MCD::OPC_FilterValue, 46, 17, 0, 0, // Skip to: 1051 7341/* 1034 */ MCD::OPC_CheckPredicate, 100, 172, 2, 0, // Skip to: 1723 7342/* 1039 */ MCD::OPC_CheckField, 21, 5, 22, 165, 2, 0, // Skip to: 1723 7343/* 1046 */ MCD::OPC_Decode, 172, 18, 230, 2, // Opcode: PUL_PS64 7344/* 1051 */ MCD::OPC_FilterValue, 47, 17, 0, 0, // Skip to: 1073 7345/* 1056 */ MCD::OPC_CheckPredicate, 100, 150, 2, 0, // Skip to: 1723 7346/* 1061 */ MCD::OPC_CheckField, 21, 5, 22, 143, 2, 0, // Skip to: 1723 7347/* 1068 */ MCD::OPC_Decode, 173, 18, 230, 2, // Opcode: PUU_PS64 7348/* 1073 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 1102 7349/* 1078 */ MCD::OPC_CheckPredicate, 107, 128, 2, 0, // Skip to: 1723 7350/* 1083 */ MCD::OPC_CheckField, 21, 5, 17, 121, 2, 0, // Skip to: 1723 7351/* 1090 */ MCD::OPC_CheckField, 6, 2, 0, 114, 2, 0, // Skip to: 1723 7352/* 1097 */ MCD::OPC_Decode, 249, 9, 140, 3, // Opcode: C_F_D64 7353/* 1102 */ MCD::OPC_FilterValue, 49, 24, 0, 0, // Skip to: 1131 7354/* 1107 */ MCD::OPC_CheckPredicate, 107, 99, 2, 0, // Skip to: 1723 7355/* 1112 */ MCD::OPC_CheckField, 21, 5, 17, 92, 2, 0, // Skip to: 1723 7356/* 1119 */ MCD::OPC_CheckField, 6, 2, 0, 85, 2, 0, // Skip to: 1723 7357/* 1126 */ MCD::OPC_Decode, 205, 10, 140, 3, // Opcode: C_UN_D64 7358/* 1131 */ MCD::OPC_FilterValue, 50, 24, 0, 0, // Skip to: 1160 7359/* 1136 */ MCD::OPC_CheckPredicate, 107, 70, 2, 0, // Skip to: 1723 7360/* 1141 */ MCD::OPC_CheckField, 21, 5, 17, 63, 2, 0, // Skip to: 1723 7361/* 1148 */ MCD::OPC_CheckField, 6, 2, 0, 56, 2, 0, // Skip to: 1723 7362/* 1155 */ MCD::OPC_Decode, 243, 9, 140, 3, // Opcode: C_EQ_D64 7363/* 1160 */ MCD::OPC_FilterValue, 51, 24, 0, 0, // Skip to: 1189 7364/* 1165 */ MCD::OPC_CheckPredicate, 107, 41, 2, 0, // Skip to: 1723 7365/* 1170 */ MCD::OPC_CheckField, 21, 5, 17, 34, 2, 0, // Skip to: 1723 7366/* 1177 */ MCD::OPC_CheckField, 6, 2, 0, 27, 2, 0, // Skip to: 1723 7367/* 1184 */ MCD::OPC_Decode, 187, 10, 140, 3, // Opcode: C_UEQ_D64 7368/* 1189 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 1218 7369/* 1194 */ MCD::OPC_CheckPredicate, 107, 12, 2, 0, // Skip to: 1723 7370/* 1199 */ MCD::OPC_CheckField, 21, 5, 17, 5, 2, 0, // Skip to: 1723 7371/* 1206 */ MCD::OPC_CheckField, 6, 2, 0, 254, 1, 0, // Skip to: 1723 7372/* 1213 */ MCD::OPC_Decode, 169, 10, 140, 3, // Opcode: C_OLT_D64 7373/* 1218 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 1247 7374/* 1223 */ MCD::OPC_CheckPredicate, 107, 239, 1, 0, // Skip to: 1723 7375/* 1228 */ MCD::OPC_CheckField, 21, 5, 17, 232, 1, 0, // Skip to: 1723 7376/* 1235 */ MCD::OPC_CheckField, 6, 2, 0, 225, 1, 0, // Skip to: 1723 7377/* 1242 */ MCD::OPC_Decode, 199, 10, 140, 3, // Opcode: C_ULT_D64 7378/* 1247 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 1276 7379/* 1252 */ MCD::OPC_CheckPredicate, 107, 210, 1, 0, // Skip to: 1723 7380/* 1257 */ MCD::OPC_CheckField, 21, 5, 17, 203, 1, 0, // Skip to: 1723 7381/* 1264 */ MCD::OPC_CheckField, 6, 2, 0, 196, 1, 0, // Skip to: 1723 7382/* 1271 */ MCD::OPC_Decode, 163, 10, 140, 3, // Opcode: C_OLE_D64 7383/* 1276 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 1305 7384/* 1281 */ MCD::OPC_CheckPredicate, 107, 181, 1, 0, // Skip to: 1723 7385/* 1286 */ MCD::OPC_CheckField, 21, 5, 17, 174, 1, 0, // Skip to: 1723 7386/* 1293 */ MCD::OPC_CheckField, 6, 2, 0, 167, 1, 0, // Skip to: 1723 7387/* 1300 */ MCD::OPC_Decode, 193, 10, 140, 3, // Opcode: C_ULE_D64 7388/* 1305 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 1334 7389/* 1310 */ MCD::OPC_CheckPredicate, 107, 152, 1, 0, // Skip to: 1723 7390/* 1315 */ MCD::OPC_CheckField, 21, 5, 17, 145, 1, 0, // Skip to: 1723 7391/* 1322 */ MCD::OPC_CheckField, 6, 2, 0, 138, 1, 0, // Skip to: 1723 7392/* 1329 */ MCD::OPC_Decode, 181, 10, 140, 3, // Opcode: C_SF_D64 7393/* 1334 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 1363 7394/* 1339 */ MCD::OPC_CheckPredicate, 107, 123, 1, 0, // Skip to: 1723 7395/* 1344 */ MCD::OPC_CheckField, 21, 5, 17, 116, 1, 0, // Skip to: 1723 7396/* 1351 */ MCD::OPC_CheckField, 6, 2, 0, 109, 1, 0, // Skip to: 1723 7397/* 1358 */ MCD::OPC_Decode, 145, 10, 140, 3, // Opcode: C_NGLE_D64 7398/* 1363 */ MCD::OPC_FilterValue, 58, 24, 0, 0, // Skip to: 1392 7399/* 1368 */ MCD::OPC_CheckPredicate, 107, 94, 1, 0, // Skip to: 1723 7400/* 1373 */ MCD::OPC_CheckField, 21, 5, 17, 87, 1, 0, // Skip to: 1723 7401/* 1380 */ MCD::OPC_CheckField, 6, 2, 0, 80, 1, 0, // Skip to: 1723 7402/* 1387 */ MCD::OPC_Decode, 175, 10, 140, 3, // Opcode: C_SEQ_D64 7403/* 1392 */ MCD::OPC_FilterValue, 59, 24, 0, 0, // Skip to: 1421 7404/* 1397 */ MCD::OPC_CheckPredicate, 107, 65, 1, 0, // Skip to: 1723 7405/* 1402 */ MCD::OPC_CheckField, 21, 5, 17, 58, 1, 0, // Skip to: 1723 7406/* 1409 */ MCD::OPC_CheckField, 6, 2, 0, 51, 1, 0, // Skip to: 1723 7407/* 1416 */ MCD::OPC_Decode, 151, 10, 140, 3, // Opcode: C_NGL_D64 7408/* 1421 */ MCD::OPC_FilterValue, 60, 24, 0, 0, // Skip to: 1450 7409/* 1426 */ MCD::OPC_CheckPredicate, 107, 36, 1, 0, // Skip to: 1723 7410/* 1431 */ MCD::OPC_CheckField, 21, 5, 17, 29, 1, 0, // Skip to: 1723 7411/* 1438 */ MCD::OPC_CheckField, 6, 2, 0, 22, 1, 0, // Skip to: 1723 7412/* 1445 */ MCD::OPC_Decode, 133, 10, 140, 3, // Opcode: C_LT_D64 7413/* 1450 */ MCD::OPC_FilterValue, 61, 24, 0, 0, // Skip to: 1479 7414/* 1455 */ MCD::OPC_CheckPredicate, 107, 7, 1, 0, // Skip to: 1723 7415/* 1460 */ MCD::OPC_CheckField, 21, 5, 17, 0, 1, 0, // Skip to: 1723 7416/* 1467 */ MCD::OPC_CheckField, 6, 2, 0, 249, 0, 0, // Skip to: 1723 7417/* 1474 */ MCD::OPC_Decode, 139, 10, 140, 3, // Opcode: C_NGE_D64 7418/* 1479 */ MCD::OPC_FilterValue, 62, 24, 0, 0, // Skip to: 1508 7419/* 1484 */ MCD::OPC_CheckPredicate, 107, 234, 0, 0, // Skip to: 1723 7420/* 1489 */ MCD::OPC_CheckField, 21, 5, 17, 227, 0, 0, // Skip to: 1723 7421/* 1496 */ MCD::OPC_CheckField, 6, 2, 0, 220, 0, 0, // Skip to: 1723 7422/* 1503 */ MCD::OPC_Decode, 255, 9, 140, 3, // Opcode: C_LE_D64 7423/* 1508 */ MCD::OPC_FilterValue, 63, 210, 0, 0, // Skip to: 1723 7424/* 1513 */ MCD::OPC_CheckPredicate, 107, 205, 0, 0, // Skip to: 1723 7425/* 1518 */ MCD::OPC_CheckField, 21, 5, 17, 198, 0, 0, // Skip to: 1723 7426/* 1525 */ MCD::OPC_CheckField, 6, 2, 0, 191, 0, 0, // Skip to: 1723 7427/* 1532 */ MCD::OPC_Decode, 157, 10, 140, 3, // Opcode: C_NGT_D64 7428/* 1537 */ MCD::OPC_FilterValue, 19, 151, 0, 0, // Skip to: 1693 7429/* 1542 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 7430/* 1545 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 1567 7431/* 1550 */ MCD::OPC_CheckPredicate, 108, 168, 0, 0, // Skip to: 1723 7432/* 1555 */ MCD::OPC_CheckField, 11, 5, 0, 161, 0, 0, // Skip to: 1723 7433/* 1562 */ MCD::OPC_Decode, 184, 14, 141, 3, // Opcode: LDXC164 7434/* 1567 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 1589 7435/* 1572 */ MCD::OPC_CheckPredicate, 109, 146, 0, 0, // Skip to: 1723 7436/* 1577 */ MCD::OPC_CheckField, 11, 5, 0, 139, 0, 0, // Skip to: 1723 7437/* 1584 */ MCD::OPC_Decode, 222, 14, 141, 3, // Opcode: LUXC164 7438/* 1589 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 1611 7439/* 1594 */ MCD::OPC_CheckPredicate, 108, 124, 0, 0, // Skip to: 1723 7440/* 1599 */ MCD::OPC_CheckField, 6, 5, 0, 117, 0, 0, // Skip to: 1723 7441/* 1606 */ MCD::OPC_Decode, 145, 19, 142, 3, // Opcode: SDXC164 7442/* 1611 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 1633 7443/* 1616 */ MCD::OPC_CheckPredicate, 109, 102, 0, 0, // Skip to: 1723 7444/* 1621 */ MCD::OPC_CheckField, 6, 5, 0, 95, 0, 0, // Skip to: 1723 7445/* 1628 */ MCD::OPC_Decode, 132, 21, 142, 3, // Opcode: SUXC164 7446/* 1633 */ MCD::OPC_FilterValue, 33, 10, 0, 0, // Skip to: 1648 7447/* 1638 */ MCD::OPC_CheckPredicate, 110, 80, 0, 0, // Skip to: 1723 7448/* 1643 */ MCD::OPC_Decode, 168, 15, 143, 3, // Opcode: MADD_D64 7449/* 1648 */ MCD::OPC_FilterValue, 41, 10, 0, 0, // Skip to: 1663 7450/* 1653 */ MCD::OPC_CheckPredicate, 110, 65, 0, 0, // Skip to: 1723 7451/* 1658 */ MCD::OPC_Decode, 219, 16, 143, 3, // Opcode: MSUB_D64 7452/* 1663 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 1678 7453/* 1668 */ MCD::OPC_CheckPredicate, 111, 50, 0, 0, // Skip to: 1723 7454/* 1673 */ MCD::OPC_Decode, 202, 17, 143, 3, // Opcode: NMADD_D64 7455/* 1678 */ MCD::OPC_FilterValue, 57, 40, 0, 0, // Skip to: 1723 7456/* 1683 */ MCD::OPC_CheckPredicate, 111, 35, 0, 0, // Skip to: 1723 7457/* 1688 */ MCD::OPC_Decode, 207, 17, 143, 3, // Opcode: NMSUB_D64 7458/* 1693 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 1708 7459/* 1698 */ MCD::OPC_CheckPredicate, 101, 20, 0, 0, // Skip to: 1723 7460/* 1703 */ MCD::OPC_Decode, 168, 14, 219, 2, // Opcode: LDC164 7461/* 1708 */ MCD::OPC_FilterValue, 61, 10, 0, 0, // Skip to: 1723 7462/* 1713 */ MCD::OPC_CheckPredicate, 101, 5, 0, 0, // Skip to: 1723 7463/* 1718 */ MCD::OPC_Decode, 132, 19, 219, 2, // Opcode: SDC164 7464/* 1723 */ MCD::OPC_Fail, 7465 0 7466}; 7467 7468static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset &Bits) { 7469 switch (Idx) { 7470 default: llvm_unreachable("Invalid index!"); 7471 case 0: 7472 return (Bits[Mips::FeatureMips16]); 7473 case 1: 7474 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); 7475 case 2: 7476 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); 7477 case 3: 7478 return (Bits[Mips::FeatureCnMips]); 7479 case 4: 7480 return (Bits[Mips::FeatureMips64] && Bits[Mips::FeatureCnMips] && !Bits[Mips::FeatureMicroMips]); 7481 case 5: 7482 return (Bits[Mips::FeatureCnMipsP]); 7483 case 6: 7484 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6]); 7485 case 7: 7486 return (Bits[Mips::FeatureMicroMips]); 7487 case 8: 7488 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSP]); 7489 case 9: 7490 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSPR2]); 7491 case 10: 7492 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r5] && Bits[Mips::FeatureVirt]); 7493 case 11: 7494 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureDSPR3]); 7495 case 12: 7496 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureDSP]); 7497 case 13: 7498 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); 7499 case 14: 7500 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4]); 7501 case 15: 7502 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); 7503 case 16: 7504 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4]); 7505 case 17: 7506 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); 7507 case 18: 7508 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat]); 7509 case 19: 7510 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureSoftFloat]); 7511 case 20: 7512 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat]); 7513 case 21: 7514 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureEVA]); 7515 case 22: 7516 return (Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureEVA]); 7517 case 23: 7518 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); 7519 case 24: 7520 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6]); 7521 case 25: 7522 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureGINV]); 7523 case 26: 7524 return (Bits[Mips::FeatureMicroMips] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat]); 7525 case 27: 7526 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMicroMips]); 7527 case 28: 7528 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMicroMips]); 7529 case 29: 7530 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7531 case 30: 7532 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMSA]); 7533 case 31: 7534 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7535 case 32: 7536 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6]); 7537 case 33: 7538 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureUseIndirectJumpsHazard]); 7539 case 34: 7540 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32]); 7541 case 35: 7542 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7543 case 36: 7544 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMicroMips]); 7545 case 37: 7546 return (Bits[Mips::FeatureDSP]); 7547 case 38: 7548 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMSA] && Bits[Mips::FeatureMips64]); 7549 case 39: 7550 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7551 case 40: 7552 return (Bits[Mips::FeatureDSP] && !Bits[Mips::FeatureMicroMips]); 7553 case 41: 7554 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r5] && Bits[Mips::FeatureVirt] && !Bits[Mips::FeatureMicroMips]); 7555 case 42: 7556 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMT] && !Bits[Mips::FeatureMicroMips]); 7557 case 43: 7558 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureMicroMips]); 7559 case 44: 7560 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && Bits[Mips::FeatureEVA] && !Bits[Mips::FeatureMicroMips]); 7561 case 45: 7562 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r5] && !Bits[Mips::FeatureMicroMips]); 7563 case 46: 7564 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32] && !Bits[Mips::FeatureMicroMips]); 7565 case 47: 7566 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7567 case 48: 7568 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7569 case 49: 7570 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7571 case 50: 7572 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7573 case 51: 7574 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7575 case 52: 7576 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7577 case 53: 7578 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureSoftFloat]); 7579 case 54: 7580 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7581 case 55: 7582 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7583 case 56: 7584 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7585 case 57: 7586 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7587 case 58: 7588 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7589 case 59: 7590 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7591 case 60: 7592 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7593 case 61: 7594 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat]); 7595 case 62: 7596 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7597 case 63: 7598 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips5_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7599 case 64: 7600 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips] && !Bits[Mips::FeatureNoMadd4]); 7601 case 65: 7602 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]); 7603 case 66: 7604 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureNoMadd4] && !Bits[Mips::FeatureMicroMips]); 7605 case 67: 7606 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]); 7607 case 68: 7608 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7609 case 69: 7610 return (Bits[Mips::FeatureDSPR2]); 7611 case 70: 7612 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && Bits[Mips::FeatureEVA] && !Bits[Mips::FeatureMicroMips]); 7613 case 71: 7614 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7615 case 72: 7616 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7617 case 73: 7618 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && !Bits[Mips::FeatureMicroMips]); 7619 case 74: 7620 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7621 case 75: 7622 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6]); 7623 case 76: 7624 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); 7625 case 77: 7626 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7627 case 78: 7628 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); 7629 case 79: 7630 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7631 case 80: 7632 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureCRC] && !Bits[Mips::FeatureMicroMips]); 7633 case 81: 7634 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6] && Bits[Mips::FeatureCRC] && !Bits[Mips::FeatureMicroMips]); 7635 case 82: 7636 return (!Bits[Mips::FeatureMips16] && !Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMicroMips]); 7637 case 83: 7638 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips32r6] && Bits[Mips::FeatureGINV] && !Bits[Mips::FeatureMicroMips]); 7639 case 84: 7640 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r6]); 7641 case 85: 7642 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips64r6]); 7643 case 86: 7644 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips32r6]); 7645 case 87: 7646 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit] && Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7647 case 88: 7648 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7649 case 89: 7650 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeaturePTR64Bit]); 7651 case 90: 7652 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r2] && !Bits[Mips::FeatureMicroMips]); 7653 case 91: 7654 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMicroMips]); 7655 case 92: 7656 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7657 case 93: 7658 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips3]); 7659 case 94: 7660 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips64r5] && Bits[Mips::FeatureVirt]); 7661 case 95: 7662 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureMips3] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6]); 7663 case 96: 7664 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureGP64Bit] && Bits[Mips::FeatureMips64] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureMicroMips]); 7665 case 97: 7666 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureDSP]); 7667 case 98: 7668 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7669 case 99: 7670 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7671 case 100: 7672 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7673 case 101: 7674 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7675 case 102: 7676 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips3_32] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7677 case 103: 7678 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7679 case 104: 7680 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7681 case 105: 7682 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && Bits[Mips::FeatureMips3D]); 7683 case 106: 7684 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips3_32r2] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7685 case 107: 7686 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7687 case 108: 7688 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips4_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat]); 7689 case 109: 7690 return (!Bits[Mips::FeatureMips16] && Bits[Mips::FeatureFP64Bit] && Bits[Mips::FeatureMips5_32r2] && !Bits[Mips::FeatureMips32r6] && !Bits[Mips::FeatureMips64r6] && !Bits[Mips::FeatureSoftFloat] && !Bits[Mips::FeatureMicroMips]); 7691 case 110: 7692 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]); 7693 case 111: 7694 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]); 7695 } 7696} 7697 7698template <typename InsnType> 7699static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI, 7700 uint64_t Address, const MCDisassembler *Decoder, bool &DecodeComplete) { 7701 DecodeComplete = true; 7702 using TmpType = std::conditional_t<std::is_integral<InsnType>::value, InsnType, uint64_t>; 7703 TmpType tmp; 7704 switch (Idx) { 7705 default: llvm_unreachable("Invalid index!"); 7706 case 0: 7707 tmp = fieldFromInstruction(insn, 0, 11); 7708 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7709 return S; 7710 case 1: 7711 tmp = fieldFromInstruction(insn, 8, 3); 7712 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7713 tmp = fieldFromInstruction(insn, 0, 8); 7714 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7715 return S; 7716 case 2: 7717 tmp = fieldFromInstruction(insn, 8, 3); 7718 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7719 tmp = fieldFromInstruction(insn, 8, 3); 7720 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7721 tmp = fieldFromInstruction(insn, 0, 8); 7722 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7723 return S; 7724 case 3: 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 4: 7731 tmp = fieldFromInstruction(insn, 0, 8); 7732 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7733 return S; 7734 case 5: 7735 tmp = 0x0; 7736 insertBits(tmp, fieldFromInstruction(insn, 3, 2), 3, 2); 7737 insertBits(tmp, fieldFromInstruction(insn, 5, 3), 0, 3); 7738 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7739 tmp = fieldFromInstruction(insn, 0, 3); 7740 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7741 return S; 7742 case 6: 7743 tmp = fieldFromInstruction(insn, 4, 4); 7744 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7745 tmp = fieldFromInstruction(insn, 0, 4); 7746 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7747 return S; 7748 case 7: 7749 tmp = fieldFromInstruction(insn, 8, 3); 7750 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7751 tmp = fieldFromInstruction(insn, 0, 8); 7752 MI.addOperand(MCOperand::createImm(tmp)); 7753 return S; 7754 case 8: 7755 tmp = fieldFromInstruction(insn, 2, 3); 7756 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7757 tmp = fieldFromInstruction(insn, 8, 3); 7758 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7759 tmp = fieldFromInstruction(insn, 5, 3); 7760 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7761 return S; 7762 case 9: 7763 tmp = fieldFromInstruction(insn, 8, 3); 7764 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7765 return S; 7766 case 10: 7767 return S; 7768 case 11: 7769 tmp = fieldFromInstruction(insn, 8, 3); 7770 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7771 tmp = fieldFromInstruction(insn, 5, 3); 7772 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7773 return S; 7774 case 12: 7775 tmp = fieldFromInstruction(insn, 8, 3); 7776 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7777 tmp = fieldFromInstruction(insn, 8, 3); 7778 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7779 tmp = fieldFromInstruction(insn, 5, 3); 7780 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7781 return S; 7782 case 13: 7783 tmp = fieldFromInstruction(insn, 8, 3); 7784 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7785 tmp = fieldFromInstruction(insn, 8, 3); 7786 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7787 return S; 7788 case 14: 7789 tmp = fieldFromInstruction(insn, 8, 3); 7790 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7791 tmp = 0x0; 7792 insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); 7793 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); 7794 insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); 7795 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7796 return S; 7797 case 15: 7798 tmp = 0x0; 7799 insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); 7800 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); 7801 insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); 7802 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7803 return S; 7804 case 16: 7805 tmp = fieldFromInstruction(insn, 8, 3); 7806 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7807 tmp = 0x0; 7808 insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); 7809 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); 7810 insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); 7811 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7812 return S; 7813 case 17: 7814 tmp = fieldFromInstruction(insn, 8, 3); 7815 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7816 tmp = fieldFromInstruction(insn, 5, 3); 7817 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7818 tmp = 0x0; 7819 insertBits(tmp, fieldFromInstruction(insn, 21, 1), 5, 1); 7820 insertBits(tmp, fieldFromInstruction(insn, 22, 5), 0, 5); 7821 MI.addOperand(MCOperand::createImm(tmp)); 7822 return S; 7823 case 18: 7824 tmp = 0x0; 7825 insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); 7826 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); 7827 insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); 7828 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7829 return S; 7830 case 19: 7831 if (!Check(S, DecodeFIXMEInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7832 return S; 7833 case 20: 7834 tmp = fieldFromInstruction(insn, 8, 3); 7835 if (!Check(S, DecodeCPU16RegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7836 tmp = 0x0; 7837 insertBits(tmp, fieldFromInstruction(insn, 0, 5), 0, 5); 7838 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 11, 5); 7839 insertBits(tmp, fieldFromInstruction(insn, 21, 6), 5, 6); 7840 MI.addOperand(MCOperand::createImm(tmp)); 7841 return S; 7842 case 21: 7843 if (!Check(S, DecodeFMem3(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7844 return S; 7845 case 22: 7846 tmp = fieldFromInstruction(insn, 16, 5); 7847 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7848 tmp = fieldFromInstruction(insn, 0, 16); 7849 MI.addOperand(MCOperand::createImm(tmp)); 7850 return S; 7851 case 23: 7852 tmp = fieldFromInstruction(insn, 11, 5); 7853 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7854 tmp = fieldFromInstruction(insn, 21, 5); 7855 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7856 tmp = fieldFromInstruction(insn, 16, 5); 7857 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7858 return S; 7859 case 24: 7860 tmp = fieldFromInstruction(insn, 21, 5); 7861 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7862 return S; 7863 case 25: 7864 tmp = fieldFromInstruction(insn, 11, 5); 7865 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7866 tmp = fieldFromInstruction(insn, 21, 5); 7867 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7868 return S; 7869 case 26: 7870 tmp = fieldFromInstruction(insn, 11, 5); 7871 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7872 tmp = fieldFromInstruction(insn, 21, 5); 7873 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7874 return S; 7875 case 27: 7876 tmp = fieldFromInstruction(insn, 16, 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 tmp = fieldFromInstruction(insn, 6, 10); 7881 if (!Check(S, DecodeSImmWithOffsetAndScale<10>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7882 return S; 7883 case 28: 7884 tmp = fieldFromInstruction(insn, 16, 5); 7885 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7886 tmp = fieldFromInstruction(insn, 21, 5); 7887 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7888 tmp = fieldFromInstruction(insn, 6, 5); 7889 MI.addOperand(MCOperand::createImm(tmp)); 7890 tmp = fieldFromInstruction(insn, 11, 5); 7891 MI.addOperand(MCOperand::createImm(tmp)); 7892 return S; 7893 case 29: 7894 tmp = fieldFromInstruction(insn, 21, 5); 7895 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7896 tmp = fieldFromInstruction(insn, 16, 5); 7897 MI.addOperand(MCOperand::createImm(tmp)); 7898 tmp = fieldFromInstruction(insn, 0, 16); 7899 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7900 return S; 7901 case 30: 7902 tmp = fieldFromInstruction(insn, 16, 5); 7903 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7904 tmp = fieldFromInstruction(insn, 21, 5); 7905 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7906 return S; 7907 case 31: 7908 tmp = fieldFromInstruction(insn, 7, 3); 7909 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7910 tmp = fieldFromInstruction(insn, 1, 3); 7911 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7912 tmp = fieldFromInstruction(insn, 4, 3); 7913 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7914 return S; 7915 case 32: 7916 if (!Check(S, DecodeMemMMImm4(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7917 return S; 7918 case 33: 7919 tmp = fieldFromInstruction(insn, 5, 5); 7920 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7921 tmp = fieldFromInstruction(insn, 0, 5); 7922 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7923 return S; 7924 case 34: 7925 tmp = fieldFromInstruction(insn, 7, 3); 7926 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7927 tmp = fieldFromInstruction(insn, 4, 3); 7928 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7929 tmp = fieldFromInstruction(insn, 1, 3); 7930 if (!Check(S, DecodePOOL16BEncodedField(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7931 return S; 7932 case 35: 7933 tmp = fieldFromInstruction(insn, 7, 3); 7934 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7935 tmp = fieldFromInstruction(insn, 4, 3); 7936 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7937 tmp = fieldFromInstruction(insn, 0, 4); 7938 if (!Check(S, DecodeANDI16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7939 return S; 7940 case 36: 7941 tmp = fieldFromInstruction(insn, 3, 3); 7942 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7943 tmp = fieldFromInstruction(insn, 0, 3); 7944 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7945 return S; 7946 case 37: 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 tmp = fieldFromInstruction(insn, 3, 3); 7952 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7953 return S; 7954 case 38: 7955 if (!Check(S, DecodeMemMMReglistImm4Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7956 return S; 7957 case 39: 7958 tmp = fieldFromInstruction(insn, 0, 5); 7959 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7960 return S; 7961 case 40: 7962 tmp = fieldFromInstruction(insn, 0, 4); 7963 MI.addOperand(MCOperand::createImm(tmp)); 7964 return S; 7965 case 41: 7966 tmp = fieldFromInstruction(insn, 0, 5); 7967 if (!Check(S, DecodeUImmWithOffsetAndScale<5, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7968 return S; 7969 case 42: 7970 if (!Check(S, DecodeMemMMSPImm5Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7971 return S; 7972 case 43: 7973 tmp = fieldFromInstruction(insn, 5, 5); 7974 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7975 tmp = fieldFromInstruction(insn, 5, 5); 7976 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7977 tmp = fieldFromInstruction(insn, 1, 4); 7978 if (!Check(S, DecodeSImmWithOffsetAndScale<4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7979 return S; 7980 case 44: 7981 tmp = fieldFromInstruction(insn, 1, 9); 7982 if (!Check(S, DecodeSimm9SP(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7983 return S; 7984 case 45: 7985 if (!Check(S, DecodeMemMMGPImm7Lsl2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 7986 return S; 7987 case 46: 7988 tmp = fieldFromInstruction(insn, 7, 3); 7989 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7990 tmp = fieldFromInstruction(insn, 4, 3); 7991 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7992 tmp = fieldFromInstruction(insn, 1, 3); 7993 if (!Check(S, DecodeAddiur2Simm7(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7994 return S; 7995 case 47: 7996 tmp = fieldFromInstruction(insn, 7, 3); 7997 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 7998 tmp = fieldFromInstruction(insn, 1, 6); 7999 if (!Check(S, DecodeUImmWithOffsetAndScale<6, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8000 return S; 8001 case 48: 8002 if (!Check(S, DecodeMovePOperands(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8003 return S; 8004 case 49: 8005 tmp = fieldFromInstruction(insn, 7, 3); 8006 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8007 tmp = fieldFromInstruction(insn, 0, 7); 8008 if (!Check(S, DecodeBranchTarget7MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8009 return S; 8010 case 50: 8011 tmp = fieldFromInstruction(insn, 0, 10); 8012 if (!Check(S, DecodeBranchTarget10MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8013 return S; 8014 case 51: 8015 tmp = fieldFromInstruction(insn, 7, 3); 8016 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8017 tmp = fieldFromInstruction(insn, 0, 7); 8018 if (!Check(S, DecodeLi16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8019 return S; 8020 case 52: 8021 tmp = fieldFromInstruction(insn, 21, 5); 8022 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8023 tmp = fieldFromInstruction(insn, 16, 5); 8024 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8025 tmp = fieldFromInstruction(insn, 11, 5); 8026 MI.addOperand(MCOperand::createImm(tmp)); 8027 return S; 8028 case 53: 8029 tmp = fieldFromInstruction(insn, 16, 5); 8030 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8031 tmp = fieldFromInstruction(insn, 21, 5); 8032 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8033 return S; 8034 case 54: 8035 tmp = fieldFromInstruction(insn, 11, 5); 8036 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8037 tmp = fieldFromInstruction(insn, 16, 5); 8038 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8039 tmp = fieldFromInstruction(insn, 21, 5); 8040 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8041 return S; 8042 case 55: 8043 tmp = fieldFromInstruction(insn, 11, 5); 8044 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8045 tmp = fieldFromInstruction(insn, 16, 5); 8046 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8047 tmp = fieldFromInstruction(insn, 21, 5); 8048 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8049 return S; 8050 case 56: 8051 tmp = fieldFromInstruction(insn, 16, 10); 8052 MI.addOperand(MCOperand::createImm(tmp)); 8053 tmp = fieldFromInstruction(insn, 6, 10); 8054 MI.addOperand(MCOperand::createImm(tmp)); 8055 return S; 8056 case 57: 8057 tmp = fieldFromInstruction(insn, 21, 5); 8058 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8059 tmp = fieldFromInstruction(insn, 16, 5); 8060 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8061 tmp = fieldFromInstruction(insn, 6, 5); 8062 MI.addOperand(MCOperand::createImm(tmp)); 8063 tmp = fieldFromInstruction(insn, 11, 5); 8064 if (!Check(S, DecodeInsSize(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8065 tmp = fieldFromInstruction(insn, 21, 5); 8066 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8067 return S; 8068 case 58: 8069 tmp = fieldFromInstruction(insn, 11, 5); 8070 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8071 tmp = fieldFromInstruction(insn, 16, 5); 8072 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8073 tmp = fieldFromInstruction(insn, 21, 5); 8074 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8075 return S; 8076 case 59: 8077 tmp = fieldFromInstruction(insn, 11, 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 tmp = fieldFromInstruction(insn, 16, 5); 8082 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8083 return S; 8084 case 60: 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 tmp = fieldFromInstruction(insn, 11, 5); 8090 MI.addOperand(MCOperand::createImm(tmp)); 8091 tmp = fieldFromInstruction(insn, 21, 5); 8092 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8093 return S; 8094 case 61: 8095 tmp = fieldFromInstruction(insn, 11, 5); 8096 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8097 tmp = fieldFromInstruction(insn, 21, 5); 8098 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8099 tmp = fieldFromInstruction(insn, 16, 5); 8100 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8101 return S; 8102 case 62: 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 tmp = fieldFromInstruction(insn, 11, 5); 8108 MI.addOperand(MCOperand::createImm(tmp)); 8109 tmp = fieldFromInstruction(insn, 21, 5); 8110 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8111 return S; 8112 case 63: 8113 tmp = fieldFromInstruction(insn, 11, 5); 8114 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8115 tmp = fieldFromInstruction(insn, 16, 5); 8116 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8117 tmp = fieldFromInstruction(insn, 21, 5); 8118 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8119 tmp = fieldFromInstruction(insn, 11, 5); 8120 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8121 return S; 8122 case 64: 8123 tmp = fieldFromInstruction(insn, 11, 5); 8124 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8125 tmp = fieldFromInstruction(insn, 16, 5); 8126 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8127 tmp = fieldFromInstruction(insn, 21, 5); 8128 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8129 return S; 8130 case 65: 8131 tmp = fieldFromInstruction(insn, 14, 2); 8132 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8133 tmp = fieldFromInstruction(insn, 16, 6); 8134 if (!Check(S, DecodeSImmWithOffsetAndScale<6>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8135 tmp = fieldFromInstruction(insn, 14, 2); 8136 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8137 return S; 8138 case 66: 8139 tmp = fieldFromInstruction(insn, 21, 5); 8140 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8141 tmp = fieldFromInstruction(insn, 16, 5); 8142 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8143 tmp = fieldFromInstruction(insn, 6, 5); 8144 MI.addOperand(MCOperand::createImm(tmp)); 8145 tmp = fieldFromInstruction(insn, 11, 5); 8146 if (!Check(S, DecodeUImmWithOffset<5, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8147 return S; 8148 case 67: 8149 tmp = fieldFromInstruction(insn, 11, 5); 8150 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8151 tmp = fieldFromInstruction(insn, 16, 5); 8152 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8153 tmp = fieldFromInstruction(insn, 21, 5); 8154 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8155 return S; 8156 case 68: 8157 tmp = fieldFromInstruction(insn, 21, 5); 8158 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8159 tmp = fieldFromInstruction(insn, 16, 5); 8160 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8161 tmp = fieldFromInstruction(insn, 11, 3); 8162 MI.addOperand(MCOperand::createImm(tmp)); 8163 return S; 8164 case 69: 8165 tmp = fieldFromInstruction(insn, 16, 5); 8166 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8167 tmp = fieldFromInstruction(insn, 21, 5); 8168 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8169 tmp = fieldFromInstruction(insn, 11, 3); 8170 MI.addOperand(MCOperand::createImm(tmp)); 8171 return S; 8172 case 70: 8173 tmp = fieldFromInstruction(insn, 21, 5); 8174 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8175 tmp = fieldFromInstruction(insn, 16, 5); 8176 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8177 tmp = fieldFromInstruction(insn, 12, 4); 8178 MI.addOperand(MCOperand::createImm(tmp)); 8179 return S; 8180 case 71: 8181 tmp = fieldFromInstruction(insn, 16, 5); 8182 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8183 tmp = fieldFromInstruction(insn, 21, 5); 8184 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8185 tmp = fieldFromInstruction(insn, 12, 4); 8186 MI.addOperand(MCOperand::createImm(tmp)); 8187 return S; 8188 case 72: 8189 tmp = fieldFromInstruction(insn, 16, 5); 8190 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8191 tmp = fieldFromInstruction(insn, 14, 2); 8192 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8193 return S; 8194 case 73: 8195 tmp = fieldFromInstruction(insn, 14, 2); 8196 if (!Check(S, DecodeHI32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8197 tmp = fieldFromInstruction(insn, 16, 5); 8198 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8199 return S; 8200 case 74: 8201 tmp = fieldFromInstruction(insn, 21, 5); 8202 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8203 tmp = fieldFromInstruction(insn, 16, 5); 8204 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8205 tmp = fieldFromInstruction(insn, 13, 3); 8206 MI.addOperand(MCOperand::createImm(tmp)); 8207 return S; 8208 case 75: 8209 tmp = fieldFromInstruction(insn, 14, 2); 8210 if (!Check(S, DecodeLO32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8211 tmp = fieldFromInstruction(insn, 16, 5); 8212 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8213 return S; 8214 case 76: 8215 tmp = fieldFromInstruction(insn, 14, 2); 8216 if (!Check(S, DecodeACC64DSPRegisterClass(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 tmp = fieldFromInstruction(insn, 21, 5); 8220 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8221 tmp = fieldFromInstruction(insn, 14, 2); 8222 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8223 return S; 8224 case 77: 8225 tmp = fieldFromInstruction(insn, 21, 5); 8226 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8227 tmp = fieldFromInstruction(insn, 16, 5); 8228 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8229 tmp = fieldFromInstruction(insn, 14, 2); 8230 MI.addOperand(MCOperand::createImm(tmp)); 8231 tmp = fieldFromInstruction(insn, 21, 5); 8232 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8233 return S; 8234 case 78: 8235 tmp = fieldFromInstruction(insn, 21, 5); 8236 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8237 tmp = fieldFromInstruction(insn, 14, 2); 8238 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8239 tmp = fieldFromInstruction(insn, 16, 5); 8240 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8241 return S; 8242 case 79: 8243 tmp = fieldFromInstruction(insn, 21, 5); 8244 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8245 tmp = fieldFromInstruction(insn, 16, 5); 8246 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8247 return S; 8248 case 80: 8249 tmp = fieldFromInstruction(insn, 21, 5); 8250 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8251 tmp = fieldFromInstruction(insn, 16, 5); 8252 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8253 return S; 8254 case 81: 8255 tmp = fieldFromInstruction(insn, 21, 5); 8256 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8257 tmp = fieldFromInstruction(insn, 21, 5); 8258 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8259 tmp = fieldFromInstruction(insn, 16, 5); 8260 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8261 return S; 8262 case 82: 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, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8267 return S; 8268 case 83: 8269 tmp = fieldFromInstruction(insn, 14, 2); 8270 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8271 tmp = fieldFromInstruction(insn, 16, 5); 8272 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8273 tmp = fieldFromInstruction(insn, 14, 2); 8274 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8275 return S; 8276 case 84: 8277 tmp = fieldFromInstruction(insn, 21, 5); 8278 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8279 tmp = fieldFromInstruction(insn, 16, 5); 8280 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8281 return S; 8282 case 85: 8283 tmp = fieldFromInstruction(insn, 21, 5); 8284 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8285 tmp = fieldFromInstruction(insn, 16, 5); 8286 if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8287 return S; 8288 case 86: 8289 tmp = fieldFromInstruction(insn, 16, 5); 8290 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8291 tmp = fieldFromInstruction(insn, 21, 5); 8292 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8293 return S; 8294 case 87: 8295 tmp = fieldFromInstruction(insn, 16, 5); 8296 MI.addOperand(MCOperand::createImm(tmp)); 8297 return S; 8298 case 88: 8299 tmp = fieldFromInstruction(insn, 16, 10); 8300 MI.addOperand(MCOperand::createImm(tmp)); 8301 return S; 8302 case 89: 8303 tmp = fieldFromInstruction(insn, 14, 2); 8304 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8305 tmp = fieldFromInstruction(insn, 16, 5); 8306 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8307 tmp = fieldFromInstruction(insn, 21, 5); 8308 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8309 return S; 8310 case 90: 8311 tmp = fieldFromInstruction(insn, 21, 5); 8312 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8313 tmp = fieldFromInstruction(insn, 16, 5); 8314 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8315 return S; 8316 case 91: 8317 tmp = fieldFromInstruction(insn, 16, 5); 8318 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8319 tmp = fieldFromInstruction(insn, 21, 5); 8320 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8321 return S; 8322 case 92: 8323 tmp = fieldFromInstruction(insn, 16, 5); 8324 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8325 return S; 8326 case 93: 8327 tmp = fieldFromInstruction(insn, 21, 5); 8328 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8329 tmp = fieldFromInstruction(insn, 13, 8); 8330 MI.addOperand(MCOperand::createImm(tmp)); 8331 return S; 8332 case 94: 8333 tmp = fieldFromInstruction(insn, 21, 5); 8334 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8335 tmp = fieldFromInstruction(insn, 14, 7); 8336 MI.addOperand(MCOperand::createImm(tmp)); 8337 return S; 8338 case 95: 8339 tmp = fieldFromInstruction(insn, 21, 5); 8340 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8341 tmp = fieldFromInstruction(insn, 14, 2); 8342 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8343 tmp = fieldFromInstruction(insn, 16, 5); 8344 MI.addOperand(MCOperand::createImm(tmp)); 8345 return S; 8346 case 96: 8347 tmp = fieldFromInstruction(insn, 11, 5); 8348 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8349 tmp = fieldFromInstruction(insn, 16, 10); 8350 if (!Check(S, DecodeSImmWithOffsetAndScale<10>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8351 return S; 8352 case 97: 8353 tmp = fieldFromInstruction(insn, 21, 5); 8354 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8355 tmp = fieldFromInstruction(insn, 16, 5); 8356 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8357 tmp = fieldFromInstruction(insn, 0, 16); 8358 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8359 return S; 8360 case 98: 8361 if (!Check(S, DecodeMemMMImm16(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8362 return S; 8363 case 99: 8364 if (!Check(S, DecodeMemMMImm12(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8365 return S; 8366 case 100: 8367 if (!Check(S, DecodeCacheOpMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8368 return S; 8369 case 101: 8370 tmp = fieldFromInstruction(insn, 16, 5); 8371 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8372 tmp = fieldFromInstruction(insn, 0, 16); 8373 if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8374 return S; 8375 case 102: 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, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8380 return S; 8381 case 103: 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 MI.addOperand(MCOperand::createImm(tmp)); 8386 return S; 8387 case 104: 8388 if (!Check(S, DecodeSyncI_MM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8389 return S; 8390 case 105: 8391 tmp = fieldFromInstruction(insn, 0, 16); 8392 if (!Check(S, DecodeBranchTarget1SImm16(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8393 return S; 8394 case 106: 8395 tmp = fieldFromInstruction(insn, 0, 16); 8396 if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8397 return S; 8398 case 107: 8399 tmp = fieldFromInstruction(insn, 18, 3); 8400 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8401 tmp = fieldFromInstruction(insn, 0, 16); 8402 if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8403 return S; 8404 case 108: 8405 tmp = fieldFromInstruction(insn, 21, 5); 8406 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8407 tmp = fieldFromInstruction(insn, 16, 5); 8408 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8409 tmp = fieldFromInstruction(insn, 0, 16); 8410 MI.addOperand(MCOperand::createImm(tmp)); 8411 return S; 8412 case 109: 8413 tmp = fieldFromInstruction(insn, 11, 5); 8414 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8415 tmp = fieldFromInstruction(insn, 6, 5); 8416 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8417 tmp = fieldFromInstruction(insn, 16, 5); 8418 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8419 tmp = fieldFromInstruction(insn, 21, 5); 8420 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8421 return S; 8422 case 110: 8423 tmp = fieldFromInstruction(insn, 11, 5); 8424 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8425 tmp = fieldFromInstruction(insn, 16, 5); 8426 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8427 tmp = fieldFromInstruction(insn, 21, 5); 8428 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8429 return S; 8430 case 111: 8431 tmp = fieldFromInstruction(insn, 11, 5); 8432 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8433 tmp = fieldFromInstruction(insn, 16, 5); 8434 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8435 tmp = fieldFromInstruction(insn, 21, 5); 8436 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8437 return S; 8438 case 112: 8439 tmp = fieldFromInstruction(insn, 11, 5); 8440 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8441 tmp = fieldFromInstruction(insn, 6, 5); 8442 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8443 tmp = fieldFromInstruction(insn, 16, 5); 8444 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8445 tmp = fieldFromInstruction(insn, 21, 5); 8446 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8447 return S; 8448 case 113: 8449 tmp = fieldFromInstruction(insn, 21, 5); 8450 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8451 tmp = fieldFromInstruction(insn, 16, 5); 8452 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8453 tmp = fieldFromInstruction(insn, 13, 3); 8454 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8455 tmp = fieldFromInstruction(insn, 21, 5); 8456 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8457 return S; 8458 case 114: 8459 tmp = fieldFromInstruction(insn, 16, 5); 8460 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8461 tmp = fieldFromInstruction(insn, 21, 5); 8462 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8463 tmp = fieldFromInstruction(insn, 11, 5); 8464 MI.addOperand(MCOperand::createImm(tmp)); 8465 return S; 8466 case 115: 8467 tmp = fieldFromInstruction(insn, 21, 5); 8468 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8469 tmp = fieldFromInstruction(insn, 16, 5); 8470 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8471 tmp = fieldFromInstruction(insn, 13, 3); 8472 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8473 tmp = fieldFromInstruction(insn, 21, 5); 8474 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8475 return S; 8476 case 116: 8477 tmp = fieldFromInstruction(insn, 11, 5); 8478 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8479 tmp = fieldFromInstruction(insn, 16, 5); 8480 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8481 tmp = fieldFromInstruction(insn, 21, 5); 8482 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8483 return S; 8484 case 117: 8485 tmp = fieldFromInstruction(insn, 11, 5); 8486 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8487 tmp = fieldFromInstruction(insn, 16, 5); 8488 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8489 tmp = fieldFromInstruction(insn, 21, 5); 8490 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8491 tmp = fieldFromInstruction(insn, 11, 5); 8492 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8493 return S; 8494 case 118: 8495 tmp = fieldFromInstruction(insn, 11, 5); 8496 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8497 tmp = fieldFromInstruction(insn, 16, 5); 8498 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8499 tmp = fieldFromInstruction(insn, 21, 5); 8500 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8501 tmp = fieldFromInstruction(insn, 11, 5); 8502 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8503 return S; 8504 case 119: 8505 tmp = fieldFromInstruction(insn, 21, 5); 8506 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8507 tmp = fieldFromInstruction(insn, 16, 5); 8508 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8509 return S; 8510 case 120: 8511 tmp = fieldFromInstruction(insn, 21, 5); 8512 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8513 tmp = fieldFromInstruction(insn, 16, 5); 8514 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8515 return S; 8516 case 121: 8517 tmp = fieldFromInstruction(insn, 21, 5); 8518 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8519 tmp = fieldFromInstruction(insn, 16, 5); 8520 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8521 return S; 8522 case 122: 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, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8527 return S; 8528 case 123: 8529 tmp = fieldFromInstruction(insn, 21, 5); 8530 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8531 tmp = fieldFromInstruction(insn, 16, 5); 8532 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8533 tmp = fieldFromInstruction(insn, 13, 3); 8534 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8535 tmp = fieldFromInstruction(insn, 21, 5); 8536 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8537 return S; 8538 case 124: 8539 tmp = fieldFromInstruction(insn, 21, 5); 8540 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8541 tmp = fieldFromInstruction(insn, 16, 5); 8542 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8543 return S; 8544 case 125: 8545 tmp = fieldFromInstruction(insn, 16, 5); 8546 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8547 tmp = fieldFromInstruction(insn, 21, 5); 8548 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8549 return S; 8550 case 126: 8551 tmp = fieldFromInstruction(insn, 21, 5); 8552 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8553 tmp = fieldFromInstruction(insn, 16, 5); 8554 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8555 return S; 8556 case 127: 8557 tmp = fieldFromInstruction(insn, 21, 5); 8558 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8559 tmp = fieldFromInstruction(insn, 16, 5); 8560 if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8561 return S; 8562 case 128: 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, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8567 return S; 8568 case 129: 8569 tmp = fieldFromInstruction(insn, 21, 5); 8570 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8571 tmp = fieldFromInstruction(insn, 16, 5); 8572 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8573 return S; 8574 case 130: 8575 tmp = fieldFromInstruction(insn, 16, 5); 8576 if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8577 tmp = fieldFromInstruction(insn, 21, 5); 8578 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8579 return S; 8580 case 131: 8581 tmp = fieldFromInstruction(insn, 16, 5); 8582 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8583 tmp = fieldFromInstruction(insn, 16, 5); 8584 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8585 tmp = fieldFromInstruction(insn, 21, 5); 8586 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8587 return S; 8588 case 132: 8589 tmp = fieldFromInstruction(insn, 13, 3); 8590 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8591 tmp = fieldFromInstruction(insn, 16, 5); 8592 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8593 tmp = fieldFromInstruction(insn, 21, 5); 8594 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8595 return S; 8596 case 133: 8597 tmp = fieldFromInstruction(insn, 13, 3); 8598 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8599 tmp = fieldFromInstruction(insn, 16, 5); 8600 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8601 tmp = fieldFromInstruction(insn, 21, 5); 8602 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8603 return S; 8604 case 134: 8605 if (!Check(S, DecodeMemMMImm9(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8606 return S; 8607 case 135: 8608 if (!Check(S, DecodePrefeOpMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8609 return S; 8610 case 136: 8611 if (!Check(S, DecodeJumpTargetMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8612 return S; 8613 case 137: 8614 tmp = fieldFromInstruction(insn, 23, 3); 8615 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8616 tmp = fieldFromInstruction(insn, 0, 23); 8617 if (!Check(S, DecodeSimm23Lsl2(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8618 return S; 8619 case 138: 8620 tmp = fieldFromInstruction(insn, 16, 5); 8621 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8622 tmp = fieldFromInstruction(insn, 21, 5); 8623 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8624 tmp = fieldFromInstruction(insn, 0, 16); 8625 if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8626 return S; 8627 case 139: 8628 if (!Check(S, DecodeFMemMMR2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8629 return S; 8630 case 140: 8631 if (!Check(S, DecodeJumpTargetXMM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8632 return S; 8633 case 141: 8634 if (!Check(S, DecodeMem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8635 return S; 8636 case 142: 8637 tmp = fieldFromInstruction(insn, 16, 5); 8638 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8639 tmp = fieldFromInstruction(insn, 21, 5); 8640 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8641 return S; 8642 case 143: 8643 tmp = fieldFromInstruction(insn, 21, 5); 8644 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8645 tmp = fieldFromInstruction(insn, 16, 5); 8646 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8647 return S; 8648 case 144: 8649 tmp = fieldFromInstruction(insn, 16, 5); 8650 if (!Check(S, DecodeFGR64RegisterClass(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 tmp = fieldFromInstruction(insn, 21, 5); 8654 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8655 return S; 8656 case 145: 8657 tmp = fieldFromInstruction(insn, 11, 5); 8658 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8659 tmp = fieldFromInstruction(insn, 16, 5); 8660 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8661 tmp = fieldFromInstruction(insn, 21, 5); 8662 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8663 return S; 8664 case 146: 8665 tmp = fieldFromInstruction(insn, 21, 5); 8666 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8667 tmp = fieldFromInstruction(insn, 16, 5); 8668 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8669 return S; 8670 case 147: 8671 tmp = fieldFromInstruction(insn, 1, 3); 8672 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8673 tmp = fieldFromInstruction(insn, 7, 3); 8674 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8675 tmp = fieldFromInstruction(insn, 4, 3); 8676 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8677 return S; 8678 case 148: 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 149: 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 tmp = fieldFromInstruction(insn, 7, 3); 8690 if (!Check(S, DecodeGPRMM16RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8691 return S; 8692 case 150: 8693 tmp = fieldFromInstruction(insn, 5, 5); 8694 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8695 return S; 8696 case 151: 8697 tmp = fieldFromInstruction(insn, 5, 5); 8698 if (!Check(S, DecodeUImmWithOffsetAndScale<5, 0, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8699 return S; 8700 case 152: 8701 tmp = fieldFromInstruction(insn, 6, 4); 8702 MI.addOperand(MCOperand::createImm(tmp)); 8703 return S; 8704 case 153: 8705 tmp = fieldFromInstruction(insn, 21, 5); 8706 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8707 tmp = fieldFromInstruction(insn, 16, 5); 8708 if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8709 tmp = fieldFromInstruction(insn, 11, 3); 8710 MI.addOperand(MCOperand::createImm(tmp)); 8711 return S; 8712 case 154: 8713 tmp = fieldFromInstruction(insn, 11, 5); 8714 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8715 tmp = fieldFromInstruction(insn, 16, 5); 8716 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8717 tmp = fieldFromInstruction(insn, 21, 5); 8718 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8719 tmp = fieldFromInstruction(insn, 9, 2); 8720 if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8721 return S; 8722 case 155: 8723 tmp = fieldFromInstruction(insn, 11, 5); 8724 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8725 tmp = fieldFromInstruction(insn, 21, 5); 8726 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8727 tmp = fieldFromInstruction(insn, 16, 5); 8728 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8729 tmp = fieldFromInstruction(insn, 9, 2); 8730 MI.addOperand(MCOperand::createImm(tmp)); 8731 return S; 8732 case 156: 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(MCOperand::createImm(tmp)); 8737 return S; 8738 case 157: 8739 tmp = fieldFromInstruction(insn, 6, 16); 8740 MI.addOperand(MCOperand::createImm(tmp)); 8741 return S; 8742 case 158: 8743 tmp = fieldFromInstruction(insn, 21, 5); 8744 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8745 tmp = fieldFromInstruction(insn, 0, 16); 8746 MI.addOperand(MCOperand::createImm(tmp)); 8747 return S; 8748 case 159: 8749 if (!Check(S, DecodeLoadByte15(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8750 return S; 8751 case 160: 8752 if (!Check(S, DecodeFMemCop2MMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8753 return S; 8754 case 161: 8755 tmp = fieldFromInstruction(insn, 16, 5); 8756 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8757 tmp = fieldFromInstruction(insn, 0, 16); 8758 if (!Check(S, DecodeBranchTargetMM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8759 return S; 8760 case 162: 8761 tmp = fieldFromInstruction(insn, 16, 5); 8762 if (!Check(S, DecodeCOP2RegisterClass(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 163: 8767 if (!Check(S, DecodeSynciR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8768 return S; 8769 case 164: 8770 tmp = fieldFromInstruction(insn, 11, 5); 8771 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8772 tmp = fieldFromInstruction(insn, 16, 5); 8773 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8774 tmp = fieldFromInstruction(insn, 21, 5); 8775 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8776 return S; 8777 case 165: 8778 tmp = fieldFromInstruction(insn, 11, 5); 8779 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8780 tmp = fieldFromInstruction(insn, 16, 5); 8781 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8782 tmp = fieldFromInstruction(insn, 21, 5); 8783 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8784 return S; 8785 case 166: 8786 tmp = fieldFromInstruction(insn, 11, 5); 8787 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8788 tmp = fieldFromInstruction(insn, 16, 5); 8789 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8790 tmp = fieldFromInstruction(insn, 21, 5); 8791 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8792 return S; 8793 case 167: 8794 tmp = fieldFromInstruction(insn, 16, 5); 8795 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8796 tmp = fieldFromInstruction(insn, 21, 5); 8797 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8798 return S; 8799 case 168: 8800 tmp = fieldFromInstruction(insn, 11, 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 tmp = fieldFromInstruction(insn, 16, 5); 8805 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8806 return S; 8807 case 169: 8808 tmp = fieldFromInstruction(insn, 11, 5); 8809 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8810 tmp = fieldFromInstruction(insn, 11, 5); 8811 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8812 tmp = fieldFromInstruction(insn, 16, 5); 8813 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8814 tmp = fieldFromInstruction(insn, 21, 5); 8815 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8816 return S; 8817 case 170: 8818 tmp = fieldFromInstruction(insn, 11, 5); 8819 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8820 tmp = fieldFromInstruction(insn, 11, 5); 8821 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8822 tmp = fieldFromInstruction(insn, 16, 5); 8823 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8824 tmp = fieldFromInstruction(insn, 21, 5); 8825 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8826 return S; 8827 case 171: 8828 tmp = fieldFromInstruction(insn, 16, 5); 8829 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8830 tmp = fieldFromInstruction(insn, 21, 5); 8831 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8832 return S; 8833 case 172: 8834 tmp = fieldFromInstruction(insn, 11, 5); 8835 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8836 tmp = fieldFromInstruction(insn, 11, 5); 8837 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8838 tmp = fieldFromInstruction(insn, 16, 5); 8839 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8840 tmp = fieldFromInstruction(insn, 21, 5); 8841 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8842 return S; 8843 case 173: 8844 if (!Check(S, DecodePOP35GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8845 return S; 8846 case 174: 8847 tmp = fieldFromInstruction(insn, 21, 5); 8848 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8849 tmp = fieldFromInstruction(insn, 0, 19); 8850 if (!Check(S, DecodeSimm19Lsl2(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8851 return S; 8852 case 175: 8853 tmp = fieldFromInstruction(insn, 21, 5); 8854 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8855 tmp = fieldFromInstruction(insn, 0, 16); 8856 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8857 return S; 8858 case 176: 8859 if (!Check(S, DecodePOP37GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8860 return S; 8861 case 177: 8862 tmp = fieldFromInstruction(insn, 21, 5); 8863 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8864 tmp = fieldFromInstruction(insn, 0, 21); 8865 if (!Check(S, DecodeBranchTarget21MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8866 return S; 8867 case 178: 8868 tmp = fieldFromInstruction(insn, 0, 26); 8869 if (!Check(S, DecodeBranchTarget26MM(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8870 return S; 8871 case 179: 8872 if (!Check(S, DecodeBlezGroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8873 return S; 8874 case 180: 8875 if (!Check(S, DecodePOP65GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8876 return S; 8877 case 181: 8878 if (!Check(S, DecodeBgtzGroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8879 return S; 8880 case 182: 8881 if (!Check(S, DecodePOP75GroupBranchMMR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8882 return S; 8883 case 183: 8884 tmp = fieldFromInstruction(insn, 11, 5); 8885 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8886 tmp = fieldFromInstruction(insn, 16, 5); 8887 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8888 tmp = fieldFromInstruction(insn, 6, 5); 8889 MI.addOperand(MCOperand::createImm(tmp)); 8890 return S; 8891 case 184: 8892 tmp = fieldFromInstruction(insn, 11, 5); 8893 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8894 tmp = fieldFromInstruction(insn, 21, 5); 8895 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8896 tmp = fieldFromInstruction(insn, 18, 3); 8897 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8898 tmp = fieldFromInstruction(insn, 11, 5); 8899 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8900 return S; 8901 case 185: 8902 tmp = fieldFromInstruction(insn, 11, 5); 8903 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8904 tmp = fieldFromInstruction(insn, 21, 5); 8905 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8906 tmp = fieldFromInstruction(insn, 16, 5); 8907 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8908 tmp = fieldFromInstruction(insn, 6, 2); 8909 if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8910 return S; 8911 case 186: 8912 tmp = fieldFromInstruction(insn, 21, 5); 8913 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8914 return S; 8915 case 187: 8916 tmp = fieldFromInstruction(insn, 11, 5); 8917 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8918 tmp = fieldFromInstruction(insn, 21, 5); 8919 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8920 tmp = fieldFromInstruction(insn, 16, 5); 8921 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8922 tmp = fieldFromInstruction(insn, 11, 5); 8923 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8924 return S; 8925 case 188: 8926 tmp = fieldFromInstruction(insn, 6, 20); 8927 MI.addOperand(MCOperand::createImm(tmp)); 8928 return S; 8929 case 189: 8930 tmp = fieldFromInstruction(insn, 6, 5); 8931 MI.addOperand(MCOperand::createImm(tmp)); 8932 return S; 8933 case 190: 8934 tmp = fieldFromInstruction(insn, 11, 5); 8935 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8936 return S; 8937 case 191: 8938 tmp = fieldFromInstruction(insn, 11, 5); 8939 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8940 tmp = fieldFromInstruction(insn, 21, 2); 8941 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8942 return S; 8943 case 192: 8944 tmp = fieldFromInstruction(insn, 11, 2); 8945 if (!Check(S, DecodeHI32DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8946 tmp = fieldFromInstruction(insn, 21, 5); 8947 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8948 return S; 8949 case 193: 8950 tmp = fieldFromInstruction(insn, 11, 2); 8951 if (!Check(S, DecodeLO32DSPRegisterClass(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 194: 8956 tmp = fieldFromInstruction(insn, 11, 5); 8957 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8958 tmp = fieldFromInstruction(insn, 21, 5); 8959 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8960 tmp = fieldFromInstruction(insn, 16, 5); 8961 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8962 tmp = fieldFromInstruction(insn, 6, 2); 8963 if (!Check(S, DecodeUImmWithOffset<2, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8964 return S; 8965 case 195: 8966 tmp = fieldFromInstruction(insn, 11, 2); 8967 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8968 tmp = fieldFromInstruction(insn, 21, 5); 8969 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8970 tmp = fieldFromInstruction(insn, 16, 5); 8971 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8972 return S; 8973 case 196: 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 tmp = fieldFromInstruction(insn, 6, 10); 8979 MI.addOperand(MCOperand::createImm(tmp)); 8980 return S; 8981 case 197: 8982 tmp = fieldFromInstruction(insn, 21, 5); 8983 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8984 tmp = fieldFromInstruction(insn, 0, 16); 8985 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8986 return S; 8987 case 198: 8988 tmp = fieldFromInstruction(insn, 0, 16); 8989 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 8990 return S; 8991 case 199: 8992 if (!Check(S, DecodeSyncI(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8993 return S; 8994 case 200: 8995 if (!Check(S, DecodeJumpTarget(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 8996 return S; 8997 case 201: 8998 tmp = fieldFromInstruction(insn, 21, 5); 8999 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9000 tmp = fieldFromInstruction(insn, 16, 5); 9001 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9002 tmp = fieldFromInstruction(insn, 0, 16); 9003 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9004 return S; 9005 case 202: 9006 tmp = fieldFromInstruction(insn, 16, 5); 9007 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9008 tmp = fieldFromInstruction(insn, 21, 5); 9009 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9010 tmp = fieldFromInstruction(insn, 0, 16); 9011 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9012 return S; 9013 case 203: 9014 tmp = fieldFromInstruction(insn, 16, 5); 9015 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9016 tmp = fieldFromInstruction(insn, 21, 5); 9017 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9018 tmp = fieldFromInstruction(insn, 0, 16); 9019 MI.addOperand(MCOperand::createImm(tmp)); 9020 return S; 9021 case 204: 9022 tmp = fieldFromInstruction(insn, 16, 5); 9023 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9024 tmp = fieldFromInstruction(insn, 11, 5); 9025 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9026 tmp = fieldFromInstruction(insn, 0, 3); 9027 MI.addOperand(MCOperand::createImm(tmp)); 9028 return S; 9029 case 205: 9030 tmp = fieldFromInstruction(insn, 11, 5); 9031 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9032 tmp = fieldFromInstruction(insn, 16, 5); 9033 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9034 tmp = fieldFromInstruction(insn, 0, 3); 9035 MI.addOperand(MCOperand::createImm(tmp)); 9036 return S; 9037 case 206: 9038 tmp = fieldFromInstruction(insn, 11, 5); 9039 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9040 tmp = fieldFromInstruction(insn, 16, 5); 9041 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9042 tmp = fieldFromInstruction(insn, 5, 1); 9043 MI.addOperand(MCOperand::createImm(tmp)); 9044 tmp = fieldFromInstruction(insn, 0, 3); 9045 MI.addOperand(MCOperand::createImm(tmp)); 9046 tmp = fieldFromInstruction(insn, 4, 1); 9047 MI.addOperand(MCOperand::createImm(tmp)); 9048 return S; 9049 case 207: 9050 tmp = fieldFromInstruction(insn, 11, 10); 9051 MI.addOperand(MCOperand::createImm(tmp)); 9052 return S; 9053 case 208: 9054 tmp = fieldFromInstruction(insn, 16, 5); 9055 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9056 tmp = fieldFromInstruction(insn, 11, 5); 9057 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9058 return S; 9059 case 209: 9060 tmp = fieldFromInstruction(insn, 16, 5); 9061 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9062 tmp = fieldFromInstruction(insn, 11, 5); 9063 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9064 return S; 9065 case 210: 9066 tmp = fieldFromInstruction(insn, 16, 5); 9067 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9068 tmp = fieldFromInstruction(insn, 11, 5); 9069 if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9070 return S; 9071 case 211: 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, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9076 return S; 9077 case 212: 9078 tmp = fieldFromInstruction(insn, 11, 5); 9079 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9080 tmp = fieldFromInstruction(insn, 16, 5); 9081 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9082 return S; 9083 case 213: 9084 tmp = fieldFromInstruction(insn, 11, 5); 9085 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9086 tmp = fieldFromInstruction(insn, 16, 5); 9087 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9088 return S; 9089 case 214: 9090 tmp = fieldFromInstruction(insn, 11, 5); 9091 if (!Check(S, DecodeCCRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9092 tmp = fieldFromInstruction(insn, 16, 5); 9093 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9094 return S; 9095 case 215: 9096 tmp = fieldFromInstruction(insn, 11, 5); 9097 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9098 tmp = fieldFromInstruction(insn, 11, 5); 9099 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9100 tmp = fieldFromInstruction(insn, 16, 5); 9101 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9102 return S; 9103 case 216: 9104 tmp = fieldFromInstruction(insn, 18, 3); 9105 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9106 tmp = fieldFromInstruction(insn, 0, 16); 9107 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9108 return S; 9109 case 217: 9110 tmp = fieldFromInstruction(insn, 16, 5); 9111 if (!Check(S, DecodeMSA128BRegisterClass(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 218: 9116 tmp = fieldFromInstruction(insn, 6, 5); 9117 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9118 tmp = fieldFromInstruction(insn, 11, 5); 9119 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9120 tmp = fieldFromInstruction(insn, 16, 5); 9121 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9122 return S; 9123 case 219: 9124 tmp = fieldFromInstruction(insn, 6, 5); 9125 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9126 tmp = fieldFromInstruction(insn, 11, 5); 9127 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9128 return S; 9129 case 220: 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 tmp = fieldFromInstruction(insn, 18, 3); 9135 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9136 tmp = fieldFromInstruction(insn, 6, 5); 9137 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9138 return S; 9139 case 221: 9140 tmp = fieldFromInstruction(insn, 6, 5); 9141 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9142 tmp = fieldFromInstruction(insn, 11, 5); 9143 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9144 tmp = fieldFromInstruction(insn, 16, 5); 9145 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9146 tmp = fieldFromInstruction(insn, 6, 5); 9147 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9148 return S; 9149 case 222: 9150 tmp = fieldFromInstruction(insn, 6, 5); 9151 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9152 tmp = fieldFromInstruction(insn, 11, 5); 9153 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9154 return S; 9155 case 223: 9156 tmp = fieldFromInstruction(insn, 6, 5); 9157 if (!Check(S, DecodeFGR64RegisterClass(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 224: 9162 tmp = fieldFromInstruction(insn, 8, 3); 9163 if (!Check(S, DecodeFCCRegisterClass(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 tmp = fieldFromInstruction(insn, 16, 5); 9167 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9168 return S; 9169 case 225: 9170 tmp = fieldFromInstruction(insn, 6, 5); 9171 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9172 tmp = fieldFromInstruction(insn, 11, 5); 9173 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9174 tmp = fieldFromInstruction(insn, 16, 5); 9175 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9176 return S; 9177 case 226: 9178 tmp = fieldFromInstruction(insn, 6, 5); 9179 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9180 tmp = fieldFromInstruction(insn, 11, 5); 9181 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9182 return S; 9183 case 227: 9184 tmp = fieldFromInstruction(insn, 6, 5); 9185 if (!Check(S, DecodeFGR32RegisterClass(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 228: 9190 tmp = fieldFromInstruction(insn, 6, 5); 9191 if (!Check(S, DecodeAFGR64RegisterClass(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 tmp = fieldFromInstruction(insn, 18, 3); 9195 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9196 tmp = fieldFromInstruction(insn, 6, 5); 9197 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9198 return S; 9199 case 229: 9200 tmp = fieldFromInstruction(insn, 6, 5); 9201 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9202 tmp = fieldFromInstruction(insn, 11, 5); 9203 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9204 tmp = fieldFromInstruction(insn, 16, 5); 9205 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9206 tmp = fieldFromInstruction(insn, 6, 5); 9207 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9208 return S; 9209 case 230: 9210 tmp = fieldFromInstruction(insn, 6, 5); 9211 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9212 tmp = fieldFromInstruction(insn, 11, 5); 9213 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9214 return S; 9215 case 231: 9216 tmp = fieldFromInstruction(insn, 8, 3); 9217 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9218 tmp = fieldFromInstruction(insn, 11, 5); 9219 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9220 tmp = fieldFromInstruction(insn, 16, 5); 9221 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9222 return S; 9223 case 232: 9224 tmp = fieldFromInstruction(insn, 16, 5); 9225 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9226 tmp = fieldFromInstruction(insn, 0, 16); 9227 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9228 return S; 9229 case 233: 9230 tmp = fieldFromInstruction(insn, 16, 5); 9231 if (!Check(S, DecodeMSA128WRegisterClass(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 234: 9236 tmp = fieldFromInstruction(insn, 16, 5); 9237 if (!Check(S, DecodeMSA128DRegisterClass(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 235: 9242 tmp = fieldFromInstruction(insn, 16, 5); 9243 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9244 tmp = fieldFromInstruction(insn, 11, 5); 9245 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9246 tmp = fieldFromInstruction(insn, 0, 3); 9247 MI.addOperand(MCOperand::createImm(tmp)); 9248 return S; 9249 case 236: 9250 tmp = fieldFromInstruction(insn, 11, 5); 9251 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9252 tmp = fieldFromInstruction(insn, 16, 5); 9253 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9254 tmp = fieldFromInstruction(insn, 0, 3); 9255 MI.addOperand(MCOperand::createImm(tmp)); 9256 return S; 9257 case 237: 9258 tmp = fieldFromInstruction(insn, 6, 5); 9259 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9260 tmp = fieldFromInstruction(insn, 21, 5); 9261 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9262 tmp = fieldFromInstruction(insn, 16, 5); 9263 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9264 return S; 9265 case 238: 9266 tmp = fieldFromInstruction(insn, 6, 5); 9267 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9268 tmp = fieldFromInstruction(insn, 21, 5); 9269 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9270 tmp = fieldFromInstruction(insn, 16, 5); 9271 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9272 return S; 9273 case 239: 9274 tmp = fieldFromInstruction(insn, 11, 5); 9275 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9276 tmp = fieldFromInstruction(insn, 21, 5); 9277 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9278 tmp = fieldFromInstruction(insn, 16, 5); 9279 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9280 return S; 9281 case 240: 9282 tmp = fieldFromInstruction(insn, 11, 5); 9283 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9284 tmp = fieldFromInstruction(insn, 21, 5); 9285 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9286 tmp = fieldFromInstruction(insn, 16, 5); 9287 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9288 return S; 9289 case 241: 9290 tmp = fieldFromInstruction(insn, 6, 5); 9291 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9292 tmp = fieldFromInstruction(insn, 21, 5); 9293 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9294 tmp = fieldFromInstruction(insn, 11, 5); 9295 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9296 tmp = fieldFromInstruction(insn, 16, 5); 9297 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9298 return S; 9299 case 242: 9300 tmp = fieldFromInstruction(insn, 6, 5); 9301 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9302 tmp = fieldFromInstruction(insn, 21, 5); 9303 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9304 tmp = fieldFromInstruction(insn, 11, 5); 9305 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9306 tmp = fieldFromInstruction(insn, 16, 5); 9307 if (!Check(S, DecodeAFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9308 return S; 9309 case 243: 9310 tmp = fieldFromInstruction(insn, 11, 2); 9311 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9312 tmp = fieldFromInstruction(insn, 21, 5); 9313 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9314 tmp = fieldFromInstruction(insn, 16, 5); 9315 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9316 tmp = fieldFromInstruction(insn, 11, 2); 9317 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9318 return S; 9319 case 244: 9320 tmp = 0x0; 9321 insertBits(tmp, fieldFromInstruction(insn, 11, 5), 0, 5); 9322 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 0, 5); 9323 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9324 tmp = fieldFromInstruction(insn, 21, 5); 9325 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9326 return S; 9327 case 245: 9328 tmp = fieldFromInstruction(insn, 6, 5); 9329 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9330 tmp = fieldFromInstruction(insn, 11, 5); 9331 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9332 tmp = fieldFromInstruction(insn, 16, 8); 9333 MI.addOperand(MCOperand::createImm(tmp)); 9334 return S; 9335 case 246: 9336 tmp = fieldFromInstruction(insn, 6, 5); 9337 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9338 tmp = fieldFromInstruction(insn, 6, 5); 9339 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9340 tmp = fieldFromInstruction(insn, 11, 5); 9341 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9342 tmp = fieldFromInstruction(insn, 16, 8); 9343 MI.addOperand(MCOperand::createImm(tmp)); 9344 return S; 9345 case 247: 9346 tmp = fieldFromInstruction(insn, 6, 5); 9347 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9348 tmp = fieldFromInstruction(insn, 11, 5); 9349 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9350 tmp = fieldFromInstruction(insn, 16, 8); 9351 MI.addOperand(MCOperand::createImm(tmp)); 9352 return S; 9353 case 248: 9354 tmp = fieldFromInstruction(insn, 6, 5); 9355 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9356 tmp = fieldFromInstruction(insn, 11, 5); 9357 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9358 tmp = fieldFromInstruction(insn, 16, 8); 9359 MI.addOperand(MCOperand::createImm(tmp)); 9360 return S; 9361 case 249: 9362 tmp = fieldFromInstruction(insn, 6, 5); 9363 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9364 tmp = fieldFromInstruction(insn, 11, 5); 9365 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9366 tmp = fieldFromInstruction(insn, 16, 5); 9367 MI.addOperand(MCOperand::createImm(tmp)); 9368 return S; 9369 case 250: 9370 tmp = fieldFromInstruction(insn, 6, 5); 9371 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9372 tmp = fieldFromInstruction(insn, 11, 5); 9373 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9374 tmp = fieldFromInstruction(insn, 16, 5); 9375 MI.addOperand(MCOperand::createImm(tmp)); 9376 return S; 9377 case 251: 9378 tmp = fieldFromInstruction(insn, 6, 5); 9379 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9380 tmp = fieldFromInstruction(insn, 11, 5); 9381 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9382 tmp = fieldFromInstruction(insn, 16, 5); 9383 MI.addOperand(MCOperand::createImm(tmp)); 9384 return S; 9385 case 252: 9386 tmp = fieldFromInstruction(insn, 6, 5); 9387 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9388 tmp = fieldFromInstruction(insn, 11, 5); 9389 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9390 tmp = fieldFromInstruction(insn, 16, 5); 9391 MI.addOperand(MCOperand::createImm(tmp)); 9392 return S; 9393 case 253: 9394 tmp = fieldFromInstruction(insn, 6, 5); 9395 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9396 tmp = fieldFromInstruction(insn, 11, 10); 9397 MI.addOperand(MCOperand::createImm(tmp)); 9398 return S; 9399 case 254: 9400 tmp = fieldFromInstruction(insn, 6, 5); 9401 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9402 tmp = fieldFromInstruction(insn, 11, 10); 9403 MI.addOperand(MCOperand::createImm(tmp)); 9404 return S; 9405 case 255: 9406 tmp = fieldFromInstruction(insn, 6, 5); 9407 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9408 tmp = fieldFromInstruction(insn, 11, 10); 9409 MI.addOperand(MCOperand::createImm(tmp)); 9410 return S; 9411 case 256: 9412 tmp = fieldFromInstruction(insn, 6, 5); 9413 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9414 tmp = fieldFromInstruction(insn, 11, 10); 9415 MI.addOperand(MCOperand::createImm(tmp)); 9416 return S; 9417 case 257: 9418 tmp = fieldFromInstruction(insn, 6, 5); 9419 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9420 tmp = fieldFromInstruction(insn, 11, 5); 9421 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9422 tmp = fieldFromInstruction(insn, 16, 6); 9423 MI.addOperand(MCOperand::createImm(tmp)); 9424 return S; 9425 case 258: 9426 tmp = fieldFromInstruction(insn, 6, 5); 9427 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9428 tmp = fieldFromInstruction(insn, 11, 5); 9429 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9430 tmp = fieldFromInstruction(insn, 16, 4); 9431 MI.addOperand(MCOperand::createImm(tmp)); 9432 return S; 9433 case 259: 9434 tmp = fieldFromInstruction(insn, 6, 5); 9435 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9436 tmp = fieldFromInstruction(insn, 11, 5); 9437 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9438 tmp = fieldFromInstruction(insn, 16, 3); 9439 MI.addOperand(MCOperand::createImm(tmp)); 9440 return S; 9441 case 260: 9442 tmp = fieldFromInstruction(insn, 6, 5); 9443 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9444 tmp = fieldFromInstruction(insn, 6, 5); 9445 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9446 tmp = fieldFromInstruction(insn, 11, 5); 9447 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9448 tmp = fieldFromInstruction(insn, 16, 6); 9449 MI.addOperand(MCOperand::createImm(tmp)); 9450 return S; 9451 case 261: 9452 tmp = fieldFromInstruction(insn, 6, 5); 9453 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9454 tmp = fieldFromInstruction(insn, 6, 5); 9455 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9456 tmp = fieldFromInstruction(insn, 11, 5); 9457 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9458 tmp = fieldFromInstruction(insn, 16, 5); 9459 MI.addOperand(MCOperand::createImm(tmp)); 9460 return S; 9461 case 262: 9462 tmp = fieldFromInstruction(insn, 6, 5); 9463 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9464 tmp = fieldFromInstruction(insn, 6, 5); 9465 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9466 tmp = fieldFromInstruction(insn, 11, 5); 9467 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9468 tmp = fieldFromInstruction(insn, 16, 4); 9469 MI.addOperand(MCOperand::createImm(tmp)); 9470 return S; 9471 case 263: 9472 tmp = fieldFromInstruction(insn, 6, 5); 9473 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9474 tmp = fieldFromInstruction(insn, 6, 5); 9475 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9476 tmp = fieldFromInstruction(insn, 11, 5); 9477 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9478 tmp = fieldFromInstruction(insn, 16, 3); 9479 MI.addOperand(MCOperand::createImm(tmp)); 9480 return S; 9481 case 264: 9482 tmp = fieldFromInstruction(insn, 6, 5); 9483 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9484 tmp = fieldFromInstruction(insn, 11, 5); 9485 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9486 tmp = fieldFromInstruction(insn, 16, 5); 9487 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9488 return S; 9489 case 265: 9490 tmp = fieldFromInstruction(insn, 6, 5); 9491 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9492 tmp = fieldFromInstruction(insn, 11, 5); 9493 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9494 tmp = fieldFromInstruction(insn, 16, 5); 9495 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9496 return S; 9497 case 266: 9498 tmp = fieldFromInstruction(insn, 6, 5); 9499 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9500 tmp = fieldFromInstruction(insn, 11, 5); 9501 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9502 tmp = fieldFromInstruction(insn, 16, 5); 9503 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9504 return S; 9505 case 267: 9506 tmp = fieldFromInstruction(insn, 6, 5); 9507 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9508 tmp = fieldFromInstruction(insn, 11, 5); 9509 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9510 tmp = fieldFromInstruction(insn, 16, 5); 9511 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9512 return S; 9513 case 268: 9514 tmp = fieldFromInstruction(insn, 6, 5); 9515 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9516 tmp = fieldFromInstruction(insn, 6, 5); 9517 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9518 tmp = fieldFromInstruction(insn, 11, 5); 9519 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9520 tmp = fieldFromInstruction(insn, 16, 5); 9521 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9522 return S; 9523 case 269: 9524 tmp = fieldFromInstruction(insn, 6, 5); 9525 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9526 tmp = fieldFromInstruction(insn, 6, 5); 9527 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9528 tmp = fieldFromInstruction(insn, 11, 5); 9529 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9530 tmp = fieldFromInstruction(insn, 16, 5); 9531 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9532 return S; 9533 case 270: 9534 tmp = fieldFromInstruction(insn, 6, 5); 9535 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9536 tmp = fieldFromInstruction(insn, 6, 5); 9537 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9538 tmp = fieldFromInstruction(insn, 11, 5); 9539 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9540 tmp = fieldFromInstruction(insn, 16, 5); 9541 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9542 return S; 9543 case 271: 9544 tmp = fieldFromInstruction(insn, 6, 5); 9545 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9546 tmp = fieldFromInstruction(insn, 6, 5); 9547 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9548 tmp = fieldFromInstruction(insn, 11, 5); 9549 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9550 tmp = fieldFromInstruction(insn, 16, 5); 9551 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9552 return S; 9553 case 272: 9554 tmp = fieldFromInstruction(insn, 6, 5); 9555 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9556 tmp = fieldFromInstruction(insn, 11, 5); 9557 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9558 tmp = fieldFromInstruction(insn, 16, 5); 9559 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9560 return S; 9561 case 273: 9562 tmp = fieldFromInstruction(insn, 6, 5); 9563 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9564 tmp = fieldFromInstruction(insn, 11, 5); 9565 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9566 tmp = fieldFromInstruction(insn, 16, 5); 9567 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9568 return S; 9569 case 274: 9570 tmp = fieldFromInstruction(insn, 6, 5); 9571 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9572 tmp = fieldFromInstruction(insn, 11, 5); 9573 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9574 tmp = fieldFromInstruction(insn, 16, 5); 9575 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9576 return S; 9577 case 275: 9578 tmp = fieldFromInstruction(insn, 6, 5); 9579 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9580 tmp = fieldFromInstruction(insn, 6, 5); 9581 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9582 tmp = fieldFromInstruction(insn, 11, 5); 9583 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9584 tmp = fieldFromInstruction(insn, 16, 5); 9585 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9586 return S; 9587 case 276: 9588 tmp = fieldFromInstruction(insn, 6, 5); 9589 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9590 tmp = fieldFromInstruction(insn, 6, 5); 9591 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9592 tmp = fieldFromInstruction(insn, 11, 5); 9593 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9594 tmp = fieldFromInstruction(insn, 16, 5); 9595 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9596 return S; 9597 case 277: 9598 tmp = fieldFromInstruction(insn, 6, 5); 9599 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9600 tmp = fieldFromInstruction(insn, 6, 5); 9601 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9602 tmp = fieldFromInstruction(insn, 11, 5); 9603 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9604 tmp = fieldFromInstruction(insn, 16, 5); 9605 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9606 return S; 9607 case 278: 9608 tmp = fieldFromInstruction(insn, 6, 5); 9609 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9610 tmp = fieldFromInstruction(insn, 6, 5); 9611 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9612 tmp = fieldFromInstruction(insn, 11, 5); 9613 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9614 tmp = fieldFromInstruction(insn, 16, 5); 9615 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9616 return S; 9617 case 279: 9618 tmp = fieldFromInstruction(insn, 6, 5); 9619 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9620 tmp = fieldFromInstruction(insn, 6, 5); 9621 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9622 tmp = fieldFromInstruction(insn, 11, 5); 9623 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9624 tmp = fieldFromInstruction(insn, 16, 5); 9625 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9626 return S; 9627 case 280: 9628 tmp = fieldFromInstruction(insn, 6, 5); 9629 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9630 tmp = fieldFromInstruction(insn, 6, 5); 9631 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9632 tmp = fieldFromInstruction(insn, 11, 5); 9633 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9634 tmp = fieldFromInstruction(insn, 16, 5); 9635 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9636 return S; 9637 case 281: 9638 tmp = fieldFromInstruction(insn, 6, 5); 9639 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9640 tmp = fieldFromInstruction(insn, 6, 5); 9641 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9642 tmp = fieldFromInstruction(insn, 11, 5); 9643 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9644 tmp = fieldFromInstruction(insn, 16, 5); 9645 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9646 return S; 9647 case 282: 9648 tmp = fieldFromInstruction(insn, 6, 5); 9649 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9650 tmp = fieldFromInstruction(insn, 11, 5); 9651 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9652 tmp = fieldFromInstruction(insn, 16, 5); 9653 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9654 return S; 9655 case 283: 9656 tmp = fieldFromInstruction(insn, 6, 5); 9657 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9658 tmp = fieldFromInstruction(insn, 11, 5); 9659 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9660 tmp = fieldFromInstruction(insn, 16, 5); 9661 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9662 return S; 9663 case 284: 9664 tmp = fieldFromInstruction(insn, 6, 5); 9665 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9666 tmp = fieldFromInstruction(insn, 11, 5); 9667 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9668 tmp = fieldFromInstruction(insn, 16, 5); 9669 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9670 return S; 9671 case 285: 9672 tmp = fieldFromInstruction(insn, 6, 5); 9673 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9674 tmp = fieldFromInstruction(insn, 11, 5); 9675 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9676 tmp = fieldFromInstruction(insn, 16, 5); 9677 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9678 return S; 9679 case 286: 9680 tmp = fieldFromInstruction(insn, 6, 5); 9681 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9682 tmp = fieldFromInstruction(insn, 6, 5); 9683 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9684 tmp = fieldFromInstruction(insn, 11, 5); 9685 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9686 tmp = fieldFromInstruction(insn, 16, 4); 9687 MI.addOperand(MCOperand::createImm(tmp)); 9688 return S; 9689 case 287: 9690 tmp = fieldFromInstruction(insn, 6, 5); 9691 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9692 tmp = fieldFromInstruction(insn, 6, 5); 9693 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9694 tmp = fieldFromInstruction(insn, 11, 5); 9695 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9696 tmp = fieldFromInstruction(insn, 16, 3); 9697 MI.addOperand(MCOperand::createImm(tmp)); 9698 return S; 9699 case 288: 9700 tmp = fieldFromInstruction(insn, 6, 5); 9701 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9702 tmp = fieldFromInstruction(insn, 6, 5); 9703 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9704 tmp = fieldFromInstruction(insn, 11, 5); 9705 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9706 tmp = fieldFromInstruction(insn, 16, 2); 9707 MI.addOperand(MCOperand::createImm(tmp)); 9708 return S; 9709 case 289: 9710 tmp = fieldFromInstruction(insn, 6, 5); 9711 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9712 tmp = fieldFromInstruction(insn, 6, 5); 9713 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9714 tmp = fieldFromInstruction(insn, 11, 5); 9715 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9716 tmp = fieldFromInstruction(insn, 16, 1); 9717 MI.addOperand(MCOperand::createImm(tmp)); 9718 return S; 9719 case 290: 9720 tmp = fieldFromInstruction(insn, 6, 5); 9721 if (!Check(S, DecodeMSACtrlRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9722 tmp = fieldFromInstruction(insn, 11, 5); 9723 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9724 return S; 9725 case 291: 9726 tmp = fieldFromInstruction(insn, 6, 5); 9727 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9728 tmp = fieldFromInstruction(insn, 11, 5); 9729 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9730 tmp = fieldFromInstruction(insn, 16, 4); 9731 MI.addOperand(MCOperand::createImm(tmp)); 9732 return S; 9733 case 292: 9734 tmp = fieldFromInstruction(insn, 6, 5); 9735 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9736 tmp = fieldFromInstruction(insn, 11, 5); 9737 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9738 tmp = fieldFromInstruction(insn, 16, 3); 9739 MI.addOperand(MCOperand::createImm(tmp)); 9740 return S; 9741 case 293: 9742 tmp = fieldFromInstruction(insn, 6, 5); 9743 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9744 tmp = fieldFromInstruction(insn, 11, 5); 9745 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9746 tmp = fieldFromInstruction(insn, 16, 2); 9747 MI.addOperand(MCOperand::createImm(tmp)); 9748 return S; 9749 case 294: 9750 tmp = fieldFromInstruction(insn, 6, 5); 9751 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9752 tmp = fieldFromInstruction(insn, 11, 5); 9753 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9754 tmp = fieldFromInstruction(insn, 16, 1); 9755 MI.addOperand(MCOperand::createImm(tmp)); 9756 return S; 9757 case 295: 9758 tmp = fieldFromInstruction(insn, 6, 5); 9759 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9760 tmp = fieldFromInstruction(insn, 11, 5); 9761 if (!Check(S, DecodeMSACtrlRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9762 return S; 9763 case 296: 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, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9768 tmp = fieldFromInstruction(insn, 16, 4); 9769 MI.addOperand(MCOperand::createImm(tmp)); 9770 return S; 9771 case 297: 9772 tmp = fieldFromInstruction(insn, 6, 5); 9773 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9774 tmp = fieldFromInstruction(insn, 11, 5); 9775 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9776 tmp = fieldFromInstruction(insn, 16, 3); 9777 MI.addOperand(MCOperand::createImm(tmp)); 9778 return S; 9779 case 298: 9780 tmp = fieldFromInstruction(insn, 6, 5); 9781 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9782 tmp = fieldFromInstruction(insn, 11, 5); 9783 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9784 tmp = fieldFromInstruction(insn, 16, 2); 9785 MI.addOperand(MCOperand::createImm(tmp)); 9786 return S; 9787 case 299: 9788 tmp = fieldFromInstruction(insn, 6, 5); 9789 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9790 tmp = fieldFromInstruction(insn, 11, 5); 9791 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9792 tmp = fieldFromInstruction(insn, 16, 1); 9793 MI.addOperand(MCOperand::createImm(tmp)); 9794 return S; 9795 case 300: 9796 tmp = fieldFromInstruction(insn, 6, 5); 9797 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9798 tmp = fieldFromInstruction(insn, 11, 5); 9799 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9800 return S; 9801 case 301: 9802 tmp = fieldFromInstruction(insn, 6, 5); 9803 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9804 tmp = fieldFromInstruction(insn, 6, 5); 9805 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9806 tmp = fieldFromInstruction(insn, 11, 5); 9807 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9808 tmp = fieldFromInstruction(insn, 16, 4); 9809 MI.addOperand(MCOperand::createImm(tmp)); 9810 return S; 9811 case 302: 9812 tmp = fieldFromInstruction(insn, 6, 5); 9813 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9814 tmp = fieldFromInstruction(insn, 6, 5); 9815 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9816 tmp = fieldFromInstruction(insn, 11, 5); 9817 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9818 tmp = fieldFromInstruction(insn, 16, 3); 9819 MI.addOperand(MCOperand::createImm(tmp)); 9820 return S; 9821 case 303: 9822 tmp = fieldFromInstruction(insn, 6, 5); 9823 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9824 tmp = fieldFromInstruction(insn, 6, 5); 9825 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9826 tmp = fieldFromInstruction(insn, 11, 5); 9827 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9828 tmp = fieldFromInstruction(insn, 16, 2); 9829 MI.addOperand(MCOperand::createImm(tmp)); 9830 return S; 9831 case 304: 9832 tmp = fieldFromInstruction(insn, 6, 5); 9833 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9834 tmp = fieldFromInstruction(insn, 6, 5); 9835 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9836 tmp = fieldFromInstruction(insn, 11, 5); 9837 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9838 tmp = fieldFromInstruction(insn, 16, 1); 9839 MI.addOperand(MCOperand::createImm(tmp)); 9840 return S; 9841 case 305: 9842 if (!Check(S, DecodeINSVE_DF(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 9843 return S; 9844 case 306: 9845 tmp = fieldFromInstruction(insn, 6, 5); 9846 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9847 tmp = fieldFromInstruction(insn, 11, 5); 9848 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9849 tmp = fieldFromInstruction(insn, 16, 5); 9850 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9851 return S; 9852 case 307: 9853 tmp = fieldFromInstruction(insn, 6, 5); 9854 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9855 tmp = fieldFromInstruction(insn, 11, 5); 9856 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9857 tmp = fieldFromInstruction(insn, 16, 5); 9858 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9859 return S; 9860 case 308: 9861 tmp = fieldFromInstruction(insn, 6, 5); 9862 if (!Check(S, DecodeMSA128BRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9863 tmp = fieldFromInstruction(insn, 11, 5); 9864 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9865 return S; 9866 case 309: 9867 tmp = fieldFromInstruction(insn, 6, 5); 9868 if (!Check(S, DecodeMSA128HRegisterClass(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 310: 9873 tmp = fieldFromInstruction(insn, 6, 5); 9874 if (!Check(S, DecodeMSA128WRegisterClass(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 311: 9879 tmp = fieldFromInstruction(insn, 6, 5); 9880 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9881 tmp = fieldFromInstruction(insn, 11, 5); 9882 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9883 return S; 9884 case 312: 9885 tmp = fieldFromInstruction(insn, 6, 5); 9886 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9887 tmp = fieldFromInstruction(insn, 11, 5); 9888 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9889 return S; 9890 case 313: 9891 tmp = fieldFromInstruction(insn, 6, 5); 9892 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9893 tmp = fieldFromInstruction(insn, 11, 5); 9894 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9895 return S; 9896 case 314: 9897 tmp = fieldFromInstruction(insn, 6, 5); 9898 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9899 tmp = fieldFromInstruction(insn, 11, 5); 9900 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9901 return S; 9902 case 315: 9903 tmp = fieldFromInstruction(insn, 6, 5); 9904 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9905 tmp = fieldFromInstruction(insn, 11, 5); 9906 if (!Check(S, DecodeMSA128HRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9907 return S; 9908 case 316: 9909 tmp = fieldFromInstruction(insn, 6, 5); 9910 if (!Check(S, DecodeMSA128DRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9911 tmp = fieldFromInstruction(insn, 11, 5); 9912 if (!Check(S, DecodeMSA128WRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9913 return S; 9914 case 317: 9915 if (!Check(S, DecodeMSA128Mem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 9916 return S; 9917 case 318: 9918 tmp = fieldFromInstruction(insn, 16, 5); 9919 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9920 tmp = fieldFromInstruction(insn, 21, 5); 9921 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9922 tmp = fieldFromInstruction(insn, 6, 5); 9923 MI.addOperand(MCOperand::createImm(tmp)); 9924 tmp = fieldFromInstruction(insn, 11, 5); 9925 if (!Check(S, DecodeUImmWithOffset<5, 1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9926 return S; 9927 case 319: 9928 tmp = fieldFromInstruction(insn, 16, 5); 9929 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9930 tmp = fieldFromInstruction(insn, 21, 5); 9931 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9932 tmp = fieldFromInstruction(insn, 6, 5); 9933 MI.addOperand(MCOperand::createImm(tmp)); 9934 tmp = fieldFromInstruction(insn, 11, 5); 9935 if (!Check(S, DecodeInsSize(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9936 tmp = fieldFromInstruction(insn, 16, 5); 9937 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9938 return S; 9939 case 320: 9940 tmp = fieldFromInstruction(insn, 21, 5); 9941 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9942 tmp = fieldFromInstruction(insn, 11, 5); 9943 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9944 tmp = fieldFromInstruction(insn, 16, 5); 9945 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9946 return S; 9947 case 321: 9948 tmp = fieldFromInstruction(insn, 11, 5); 9949 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9950 tmp = fieldFromInstruction(insn, 21, 5); 9951 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9952 tmp = fieldFromInstruction(insn, 16, 5); 9953 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9954 return S; 9955 case 322: 9956 tmp = fieldFromInstruction(insn, 16, 5); 9957 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9958 tmp = fieldFromInstruction(insn, 16, 5); 9959 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9960 tmp = fieldFromInstruction(insn, 21, 5); 9961 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9962 return S; 9963 case 323: 9964 tmp = fieldFromInstruction(insn, 11, 5); 9965 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9966 tmp = fieldFromInstruction(insn, 21, 5); 9967 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9968 tmp = fieldFromInstruction(insn, 16, 5); 9969 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9970 return S; 9971 case 324: 9972 tmp = fieldFromInstruction(insn, 11, 5); 9973 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9974 tmp = fieldFromInstruction(insn, 21, 5); 9975 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9976 return S; 9977 case 325: 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 tmp = fieldFromInstruction(insn, 16, 5); 9983 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9984 return S; 9985 case 326: 9986 tmp = fieldFromInstruction(insn, 11, 5); 9987 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9988 tmp = fieldFromInstruction(insn, 21, 5); 9989 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9990 tmp = fieldFromInstruction(insn, 16, 5); 9991 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9992 return S; 9993 case 327: 9994 tmp = fieldFromInstruction(insn, 16, 5); 9995 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9996 tmp = fieldFromInstruction(insn, 21, 5); 9997 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 9998 tmp = fieldFromInstruction(insn, 11, 5); 9999 MI.addOperand(MCOperand::createImm(tmp)); 10000 tmp = fieldFromInstruction(insn, 16, 5); 10001 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10002 return S; 10003 case 328: 10004 tmp = fieldFromInstruction(insn, 11, 5); 10005 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10006 tmp = fieldFromInstruction(insn, 16, 5); 10007 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10008 return S; 10009 case 329: 10010 tmp = fieldFromInstruction(insn, 11, 5); 10011 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10012 tmp = fieldFromInstruction(insn, 16, 10); 10013 MI.addOperand(MCOperand::createImm(tmp)); 10014 return S; 10015 case 330: 10016 tmp = fieldFromInstruction(insn, 11, 5); 10017 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10018 tmp = fieldFromInstruction(insn, 16, 5); 10019 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10020 return S; 10021 case 331: 10022 tmp = fieldFromInstruction(insn, 11, 5); 10023 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10024 tmp = fieldFromInstruction(insn, 16, 5); 10025 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10026 return S; 10027 case 332: 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, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10032 return S; 10033 case 333: 10034 tmp = fieldFromInstruction(insn, 11, 5); 10035 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10036 tmp = fieldFromInstruction(insn, 16, 5); 10037 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10038 tmp = fieldFromInstruction(insn, 21, 5); 10039 MI.addOperand(MCOperand::createImm(tmp)); 10040 return S; 10041 case 334: 10042 tmp = fieldFromInstruction(insn, 11, 5); 10043 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10044 tmp = fieldFromInstruction(insn, 16, 5); 10045 if (!Check(S, DecodeDSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10046 tmp = fieldFromInstruction(insn, 21, 5); 10047 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10048 return S; 10049 case 335: 10050 tmp = fieldFromInstruction(insn, 11, 5); 10051 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10052 tmp = fieldFromInstruction(insn, 16, 5); 10053 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10054 tmp = fieldFromInstruction(insn, 21, 5); 10055 MI.addOperand(MCOperand::createImm(tmp)); 10056 return S; 10057 case 336: 10058 if (!Check(S, DecodeMemEVA(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10059 return S; 10060 case 337: 10061 if (!Check(S, DecodeCacheeOp_CacheOpR6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10062 return S; 10063 case 338: 10064 tmp = fieldFromInstruction(insn, 16, 5); 10065 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10066 tmp = fieldFromInstruction(insn, 21, 5); 10067 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10068 tmp = fieldFromInstruction(insn, 11, 5); 10069 MI.addOperand(MCOperand::createImm(tmp)); 10070 tmp = fieldFromInstruction(insn, 16, 5); 10071 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10072 return S; 10073 case 339: 10074 tmp = fieldFromInstruction(insn, 16, 5); 10075 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10076 tmp = fieldFromInstruction(insn, 11, 2); 10077 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10078 tmp = fieldFromInstruction(insn, 21, 5); 10079 MI.addOperand(MCOperand::createImm(tmp)); 10080 return S; 10081 case 340: 10082 tmp = fieldFromInstruction(insn, 16, 5); 10083 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10084 tmp = fieldFromInstruction(insn, 11, 2); 10085 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10086 tmp = fieldFromInstruction(insn, 21, 5); 10087 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10088 return S; 10089 case 341: 10090 tmp = fieldFromInstruction(insn, 11, 5); 10091 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10092 tmp = fieldFromInstruction(insn, 16, 10); 10093 MI.addOperand(MCOperand::createImm(tmp)); 10094 return S; 10095 case 342: 10096 tmp = fieldFromInstruction(insn, 21, 5); 10097 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10098 tmp = fieldFromInstruction(insn, 11, 10); 10099 MI.addOperand(MCOperand::createImm(tmp)); 10100 return S; 10101 case 343: 10102 tmp = fieldFromInstruction(insn, 11, 2); 10103 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10104 tmp = fieldFromInstruction(insn, 20, 6); 10105 if (!Check(S, DecodeSImmWithOffsetAndScale<6>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10106 tmp = fieldFromInstruction(insn, 11, 2); 10107 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10108 return S; 10109 case 344: 10110 tmp = fieldFromInstruction(insn, 11, 2); 10111 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10112 tmp = fieldFromInstruction(insn, 21, 5); 10113 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10114 tmp = fieldFromInstruction(insn, 11, 2); 10115 if (!Check(S, DecodeACC64DSPRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10116 return S; 10117 case 345: 10118 tmp = fieldFromInstruction(insn, 16, 5); 10119 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10120 tmp = fieldFromInstruction(insn, 11, 5); 10121 if (!Check(S, DecodeHWRegsRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10122 tmp = fieldFromInstruction(insn, 6, 3); 10123 MI.addOperand(MCOperand::createImm(tmp)); 10124 return S; 10125 case 346: 10126 if (!Check(S, DecodeCacheOp(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10127 return S; 10128 case 347: 10129 if (!Check(S, DecodeFMem(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10130 return S; 10131 case 348: 10132 if (!Check(S, DecodeFMem2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10133 return S; 10134 case 349: 10135 if (!Check(S, DecodeDAHIDATI(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10136 return S; 10137 case 350: 10138 tmp = fieldFromInstruction(insn, 0, 16); 10139 MI.addOperand(MCOperand::createImm(tmp)); 10140 return S; 10141 case 351: 10142 if (!Check(S, DecodeBlezGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10143 return S; 10144 case 352: 10145 if (!Check(S, DecodeBgtzGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10146 return S; 10147 case 353: 10148 if (!Check(S, DecodeAddiGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10149 return S; 10150 case 354: 10151 tmp = fieldFromInstruction(insn, 16, 5); 10152 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10153 tmp = fieldFromInstruction(insn, 0, 16); 10154 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10155 return S; 10156 case 355: 10157 tmp = fieldFromInstruction(insn, 6, 5); 10158 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10159 tmp = fieldFromInstruction(insn, 6, 5); 10160 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10161 tmp = fieldFromInstruction(insn, 11, 5); 10162 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10163 tmp = fieldFromInstruction(insn, 16, 5); 10164 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10165 return S; 10166 case 356: 10167 tmp = fieldFromInstruction(insn, 6, 5); 10168 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10169 tmp = fieldFromInstruction(insn, 6, 5); 10170 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10171 tmp = fieldFromInstruction(insn, 11, 5); 10172 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10173 tmp = fieldFromInstruction(insn, 16, 5); 10174 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10175 return S; 10176 case 357: 10177 tmp = fieldFromInstruction(insn, 6, 5); 10178 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10179 tmp = fieldFromInstruction(insn, 6, 5); 10180 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10181 tmp = fieldFromInstruction(insn, 11, 5); 10182 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10183 tmp = fieldFromInstruction(insn, 16, 5); 10184 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10185 return S; 10186 case 358: 10187 tmp = fieldFromInstruction(insn, 6, 5); 10188 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10189 tmp = fieldFromInstruction(insn, 11, 5); 10190 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10191 tmp = fieldFromInstruction(insn, 16, 5); 10192 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10193 return S; 10194 case 359: 10195 tmp = fieldFromInstruction(insn, 6, 5); 10196 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10197 tmp = fieldFromInstruction(insn, 11, 5); 10198 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10199 tmp = fieldFromInstruction(insn, 16, 5); 10200 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10201 return S; 10202 case 360: 10203 tmp = fieldFromInstruction(insn, 6, 5); 10204 if (!Check(S, DecodeFGRCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10205 tmp = fieldFromInstruction(insn, 11, 5); 10206 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10207 tmp = fieldFromInstruction(insn, 16, 5); 10208 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10209 return S; 10210 case 361: 10211 tmp = fieldFromInstruction(insn, 16, 5); 10212 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10213 tmp = fieldFromInstruction(insn, 0, 16); 10214 if (!Check(S, DecodeBranchTarget(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10215 return S; 10216 case 362: 10217 if (!Check(S, DecodeFMemCop2R6(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10218 return S; 10219 case 363: 10220 if (!Check(S, DecodeBlezlGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10221 return S; 10222 case 364: 10223 if (!Check(S, DecodeBgtzlGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10224 return S; 10225 case 365: 10226 if (!Check(S, DecodeDaddiGroupBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10227 return S; 10228 case 366: 10229 tmp = fieldFromInstruction(insn, 16, 5); 10230 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10231 tmp = fieldFromInstruction(insn, 21, 5); 10232 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10233 tmp = fieldFromInstruction(insn, 0, 16); 10234 MI.addOperand(MCOperand::createImm(tmp)); 10235 return S; 10236 case 367: 10237 if (!Check(S, DecodeCRC(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10238 return S; 10239 case 368: 10240 tmp = fieldFromInstruction(insn, 11, 5); 10241 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10242 tmp = fieldFromInstruction(insn, 21, 5); 10243 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10244 tmp = fieldFromInstruction(insn, 16, 5); 10245 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10246 tmp = fieldFromInstruction(insn, 6, 2); 10247 MI.addOperand(MCOperand::createImm(tmp)); 10248 return S; 10249 case 369: 10250 tmp = fieldFromInstruction(insn, 11, 5); 10251 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10252 tmp = fieldFromInstruction(insn, 16, 5); 10253 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10254 return S; 10255 case 370: 10256 tmp = fieldFromInstruction(insn, 11, 5); 10257 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10258 tmp = fieldFromInstruction(insn, 21, 5); 10259 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10260 tmp = fieldFromInstruction(insn, 16, 5); 10261 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10262 tmp = fieldFromInstruction(insn, 6, 3); 10263 MI.addOperand(MCOperand::createImm(tmp)); 10264 return S; 10265 case 371: 10266 if (!Check(S, DecodeSpecial3LlSc(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10267 return S; 10268 case 372: 10269 tmp = fieldFromInstruction(insn, 21, 5); 10270 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10271 tmp = fieldFromInstruction(insn, 8, 2); 10272 MI.addOperand(MCOperand::createImm(tmp)); 10273 return S; 10274 case 373: 10275 tmp = fieldFromInstruction(insn, 0, 26); 10276 if (!Check(S, DecodeBranchTarget26(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10277 return S; 10278 case 374: 10279 tmp = fieldFromInstruction(insn, 21, 5); 10280 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10281 tmp = fieldFromInstruction(insn, 0, 21); 10282 if (!Check(S, DecodeBranchTarget21(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10283 return S; 10284 case 375: 10285 tmp = fieldFromInstruction(insn, 21, 5); 10286 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10287 tmp = fieldFromInstruction(insn, 0, 18); 10288 if (!Check(S, DecodeSimm18Lsl3(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10289 return S; 10290 case 376: 10291 tmp = fieldFromInstruction(insn, 21, 5); 10292 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10293 tmp = fieldFromInstruction(insn, 0, 21); 10294 if (!Check(S, DecodeBranchTarget21(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10295 return S; 10296 case 377: 10297 tmp = fieldFromInstruction(insn, 11, 5); 10298 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10299 tmp = fieldFromInstruction(insn, 16, 5); 10300 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10301 tmp = fieldFromInstruction(insn, 21, 5); 10302 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10303 return S; 10304 case 378: 10305 tmp = fieldFromInstruction(insn, 21, 5); 10306 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10307 tmp = fieldFromInstruction(insn, 16, 5); 10308 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10309 return S; 10310 case 379: 10311 tmp = fieldFromInstruction(insn, 11, 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 tmp = fieldFromInstruction(insn, 6, 5); 10316 MI.addOperand(MCOperand::createImm(tmp)); 10317 return S; 10318 case 380: 10319 tmp = fieldFromInstruction(insn, 16, 5); 10320 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10321 tmp = fieldFromInstruction(insn, 11, 5); 10322 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10323 tmp = fieldFromInstruction(insn, 0, 3); 10324 MI.addOperand(MCOperand::createImm(tmp)); 10325 return S; 10326 case 381: 10327 tmp = fieldFromInstruction(insn, 11, 5); 10328 if (!Check(S, DecodeCOP0RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10329 tmp = fieldFromInstruction(insn, 16, 5); 10330 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10331 tmp = fieldFromInstruction(insn, 0, 3); 10332 MI.addOperand(MCOperand::createImm(tmp)); 10333 return S; 10334 case 382: 10335 tmp = fieldFromInstruction(insn, 16, 5); 10336 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10337 tmp = fieldFromInstruction(insn, 11, 5); 10338 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10339 tmp = fieldFromInstruction(insn, 0, 3); 10340 MI.addOperand(MCOperand::createImm(tmp)); 10341 return S; 10342 case 383: 10343 tmp = fieldFromInstruction(insn, 11, 5); 10344 if (!Check(S, DecodeCOP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10345 tmp = fieldFromInstruction(insn, 16, 5); 10346 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10347 tmp = fieldFromInstruction(insn, 0, 3); 10348 MI.addOperand(MCOperand::createImm(tmp)); 10349 return S; 10350 case 384: 10351 tmp = fieldFromInstruction(insn, 13, 3); 10352 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10353 tmp = fieldFromInstruction(insn, 16, 5); 10354 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10355 tmp = fieldFromInstruction(insn, 21, 5); 10356 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10357 return S; 10358 case 385: 10359 tmp = fieldFromInstruction(insn, 16, 5); 10360 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10361 tmp = fieldFromInstruction(insn, 21, 5); 10362 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10363 tmp = fieldFromInstruction(insn, 0, 16); 10364 if (!Check(S, DecodeSImmWithOffsetAndScale<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10365 return S; 10366 case 386: 10367 tmp = 0x0; 10368 insertBits(tmp, fieldFromInstruction(insn, 11, 5), 0, 5); 10369 insertBits(tmp, fieldFromInstruction(insn, 16, 5), 0, 5); 10370 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10371 tmp = fieldFromInstruction(insn, 21, 5); 10372 if (!Check(S, DecodeGPR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10373 return S; 10374 case 387: 10375 if (!Check(S, DecodeDEXT(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10376 return S; 10377 case 388: 10378 if (!Check(S, DecodeDINS(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 10379 return S; 10380 case 389: 10381 tmp = fieldFromInstruction(insn, 16, 5); 10382 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10383 tmp = fieldFromInstruction(insn, 11, 5); 10384 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10385 return S; 10386 case 390: 10387 tmp = fieldFromInstruction(insn, 11, 5); 10388 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10389 tmp = fieldFromInstruction(insn, 16, 5); 10390 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10391 return S; 10392 case 391: 10393 tmp = fieldFromInstruction(insn, 11, 5); 10394 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10395 tmp = fieldFromInstruction(insn, 11, 5); 10396 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10397 tmp = fieldFromInstruction(insn, 16, 5); 10398 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10399 return S; 10400 case 392: 10401 tmp = fieldFromInstruction(insn, 6, 5); 10402 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10403 tmp = fieldFromInstruction(insn, 11, 5); 10404 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10405 return S; 10406 case 393: 10407 tmp = fieldFromInstruction(insn, 6, 5); 10408 if (!Check(S, DecodeFGR64RegisterClass(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 tmp = fieldFromInstruction(insn, 18, 3); 10412 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10413 tmp = fieldFromInstruction(insn, 6, 5); 10414 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10415 return S; 10416 case 394: 10417 tmp = fieldFromInstruction(insn, 6, 5); 10418 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10419 tmp = fieldFromInstruction(insn, 11, 5); 10420 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10421 tmp = fieldFromInstruction(insn, 16, 5); 10422 if (!Check(S, DecodeGPR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10423 tmp = fieldFromInstruction(insn, 6, 5); 10424 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10425 return S; 10426 case 395: 10427 tmp = fieldFromInstruction(insn, 6, 5); 10428 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10429 tmp = fieldFromInstruction(insn, 11, 5); 10430 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10431 tmp = fieldFromInstruction(insn, 16, 5); 10432 if (!Check(S, DecodeFGR32RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10433 return S; 10434 case 396: 10435 tmp = fieldFromInstruction(insn, 8, 3); 10436 if (!Check(S, DecodeFCCRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10437 tmp = fieldFromInstruction(insn, 11, 5); 10438 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10439 tmp = fieldFromInstruction(insn, 16, 5); 10440 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10441 return S; 10442 case 397: 10443 tmp = fieldFromInstruction(insn, 6, 5); 10444 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10445 tmp = fieldFromInstruction(insn, 21, 5); 10446 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10447 tmp = fieldFromInstruction(insn, 16, 5); 10448 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10449 return S; 10450 case 398: 10451 tmp = fieldFromInstruction(insn, 11, 5); 10452 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10453 tmp = fieldFromInstruction(insn, 21, 5); 10454 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10455 tmp = fieldFromInstruction(insn, 16, 5); 10456 if (!Check(S, DecodePtrRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10457 return S; 10458 case 399: 10459 tmp = fieldFromInstruction(insn, 6, 5); 10460 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10461 tmp = fieldFromInstruction(insn, 21, 5); 10462 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10463 tmp = fieldFromInstruction(insn, 11, 5); 10464 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10465 tmp = fieldFromInstruction(insn, 16, 5); 10466 if (!Check(S, DecodeFGR64RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 10467 return S; 10468 } 10469} 10470 10471template <typename InsnType> 10472static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, 10473 InsnType insn, uint64_t Address, 10474 const MCDisassembler *DisAsm, 10475 const MCSubtargetInfo &STI) { 10476 const FeatureBitset &Bits = STI.getFeatureBits(); 10477 10478 const uint8_t *Ptr = DecodeTable; 10479 uint64_t CurFieldValue = 0; 10480 DecodeStatus S = MCDisassembler::Success; 10481 while (true) { 10482 ptrdiff_t Loc = Ptr - DecodeTable; 10483 switch (*Ptr) { 10484 default: 10485 errs() << Loc << ": Unexpected decode table opcode!\n"; 10486 return MCDisassembler::Fail; 10487 case MCD::OPC_ExtractField: { 10488 unsigned Start = *++Ptr; 10489 unsigned Len = *++Ptr; 10490 ++Ptr; 10491 CurFieldValue = fieldFromInstruction(insn, Start, Len); 10492 LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " 10493 << Len << "): " << CurFieldValue << "\n"); 10494 break; 10495 } 10496 case MCD::OPC_FilterValue: { 10497 // Decode the field value. 10498 unsigned Len; 10499 uint64_t Val = decodeULEB128(++Ptr, &Len); 10500 Ptr += Len; 10501 // NumToSkip is a plain 24-bit integer. 10502 unsigned NumToSkip = *Ptr++; 10503 NumToSkip |= (*Ptr++) << 8; 10504 NumToSkip |= (*Ptr++) << 16; 10505 10506 // Perform the filter operation. 10507 if (Val != CurFieldValue) 10508 Ptr += NumToSkip; 10509 LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip 10510 << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:") 10511 << " continuing at " << (Ptr - DecodeTable) << "\n"); 10512 10513 break; 10514 } 10515 case MCD::OPC_CheckField: { 10516 unsigned Start = *++Ptr; 10517 unsigned Len = *++Ptr; 10518 uint64_t FieldValue = fieldFromInstruction(insn, Start, Len); 10519 // Decode the field value. 10520 unsigned PtrLen = 0; 10521 uint64_t ExpectedValue = decodeULEB128(++Ptr, &PtrLen); 10522 Ptr += PtrLen; 10523 // NumToSkip is a plain 24-bit integer. 10524 unsigned NumToSkip = *Ptr++; 10525 NumToSkip |= (*Ptr++) << 8; 10526 NumToSkip |= (*Ptr++) << 16; 10527 10528 // If the actual and expected values don't match, skip. 10529 if (ExpectedValue != FieldValue) 10530 Ptr += NumToSkip; 10531 LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", " 10532 << Len << ", " << ExpectedValue << ", " << NumToSkip 10533 << "): FieldValue = " << FieldValue << ", ExpectedValue = " 10534 << ExpectedValue << ": " 10535 << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n")); 10536 break; 10537 } 10538 case MCD::OPC_CheckPredicate: { 10539 unsigned Len; 10540 // Decode the Predicate Index value. 10541 unsigned PIdx = decodeULEB128(++Ptr, &Len); 10542 Ptr += Len; 10543 // NumToSkip is a plain 24-bit integer. 10544 unsigned NumToSkip = *Ptr++; 10545 NumToSkip |= (*Ptr++) << 8; 10546 NumToSkip |= (*Ptr++) << 16; 10547 // Check the predicate. 10548 bool Pred; 10549 if (!(Pred = checkDecoderPredicate(PIdx, Bits))) 10550 Ptr += NumToSkip; 10551 (void)Pred; 10552 LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): " 10553 << (Pred ? "PASS\n" : "FAIL\n")); 10554 10555 break; 10556 } 10557 case MCD::OPC_Decode: { 10558 unsigned Len; 10559 // Decode the Opcode value. 10560 unsigned Opc = decodeULEB128(++Ptr, &Len); 10561 Ptr += Len; 10562 unsigned DecodeIdx = decodeULEB128(Ptr, &Len); 10563 Ptr += Len; 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 unsigned Len; 10578 // Decode the Opcode value. 10579 unsigned Opc = decodeULEB128(++Ptr, &Len); 10580 Ptr += Len; 10581 unsigned DecodeIdx = decodeULEB128(Ptr, &Len); 10582 Ptr += Len; 10583 // NumToSkip is a plain 24-bit integer. 10584 unsigned NumToSkip = *Ptr++; 10585 NumToSkip |= (*Ptr++) << 8; 10586 NumToSkip |= (*Ptr++) << 16; 10587 10588 // Perform the decode operation. 10589 MCInst TmpMI; 10590 TmpMI.setOpcode(Opc); 10591 bool DecodeComplete; 10592 S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete); 10593 LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc 10594 << ", using decoder " << DecodeIdx << ": "); 10595 10596 if (DecodeComplete) { 10597 // Decoding complete. 10598 LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n"); 10599 MI = TmpMI; 10600 return S; 10601 } else { 10602 assert(S == MCDisassembler::Fail); 10603 // If the decoding was incomplete, skip. 10604 Ptr += NumToSkip; 10605 LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n"); 10606 // Reset decode status. This also drops a SoftFail status that could be 10607 // set before the decode attempt. 10608 S = MCDisassembler::Success; 10609 } 10610 break; 10611 } 10612 case MCD::OPC_SoftFail: { 10613 // Decode the mask values. 10614 unsigned Len; 10615 uint64_t PositiveMask = decodeULEB128(++Ptr, &Len); 10616 Ptr += Len; 10617 uint64_t NegativeMask = decodeULEB128(Ptr, &Len); 10618 Ptr += Len; 10619 bool Fail = (insn & PositiveMask) != 0 || (~insn & NegativeMask) != 0; 10620 if (Fail) 10621 S = MCDisassembler::SoftFail; 10622 LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n" : "PASS\n")); 10623 break; 10624 } 10625 case MCD::OPC_Fail: { 10626 LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n"); 10627 return MCDisassembler::Fail; 10628 } 10629 } 10630 } 10631 llvm_unreachable("bogosity detected in disassembler state machine!"); 10632} 10633 10634 10635} // end namespace llvm 10636