/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ |* *| |* * PPC Disassembler *| |* *| |* Automatically generated file, do not edit! *| |* *| \*===----------------------------------------------------------------------===*/ #include "llvm/MC/MCInst.h" #include "llvm/Support/Debug.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/LEB128.h" #include "llvm/Support/raw_ostream.h" #include namespace llvm { // Helper functions for extracting fields from encoded instructions. // InsnType must either be integral or an APInt-like object that must: // * Have a static const max_size_in_bits equal to the number of bits in the // encoding. // * be default-constructible and copy-constructible // * be constructible from a uint64_t // * be constructible from an APInt (this can be private) // * Support getBitsSet(loBit, hiBit) // * be convertible to uint64_t // * Support the ~, &, ==, !=, and |= operators with other objects of the same type // * Support shift (<<, >>) with signed and unsigned integers on the RHS // * Support put (<<) to raw_ostream& template #if defined(_MSC_VER) && !defined(__clang__) __declspec(noinline) #endif static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, unsigned numBits, std::true_type) { assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!"); assert(startBit + numBits <= (sizeof(InsnType) * 8) && "Instruction field out of bounds!"); InsnType fieldMask; if (numBits == sizeof(InsnType) * 8) fieldMask = (InsnType)(-1LL); else fieldMask = (((InsnType)1 << numBits) - 1) << startBit; return (insn & fieldMask) >> startBit; } template static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, unsigned numBits, std::false_type) { assert(startBit + numBits <= InsnType::max_size_in_bits && "Instruction field out of bounds!"); InsnType fieldMask = InsnType::getBitsSet(0, numBits); return (insn >> startBit) & fieldMask; } template static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, unsigned numBits) { return fieldFromInstruction(insn, startBit, numBits, std::is_integral()); } static const uint8_t DecoderTable32[] = { /* 0 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 3 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 20 /* 8 */ MCD::OPC_CheckField, 1, 10, 128, 2, 133, 66, 0, // Skip to: 17045 /* 16 */ MCD::OPC_Decode, 133, 3, 0, // Opcode: ATTN /* 20 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 29 /* 25 */ MCD::OPC_Decode, 168, 13, 1, // Opcode: TDI /* 29 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 38 /* 34 */ MCD::OPC_Decode, 189, 13, 2, // Opcode: TWI /* 38 */ MCD::OPC_FilterValue, 4, 12, 12, 0, // Skip to: 3127 /* 43 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... /* 46 */ MCD::OPC_FilterValue, 0, 237, 0, 0, // Skip to: 288 /* 51 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 54 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 63 /* 59 */ MCD::OPC_Decode, 204, 13, 3, // Opcode: VADDUBM /* 63 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 72 /* 68 */ MCD::OPC_Decode, 207, 13, 3, // Opcode: VADDUHM /* 72 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 81 /* 77 */ MCD::OPC_Decode, 210, 13, 3, // Opcode: VADDUWM /* 81 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 90 /* 86 */ MCD::OPC_Decode, 206, 13, 3, // Opcode: VADDUDM /* 90 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 99 /* 95 */ MCD::OPC_Decode, 209, 13, 3, // Opcode: VADDUQM /* 99 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 108 /* 104 */ MCD::OPC_Decode, 196, 13, 3, // Opcode: VADDCUQ /* 108 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 117 /* 113 */ MCD::OPC_Decode, 197, 13, 3, // Opcode: VADDCUW /* 117 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 126 /* 122 */ MCD::OPC_Decode, 205, 13, 3, // Opcode: VADDUBS /* 126 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 135 /* 131 */ MCD::OPC_Decode, 208, 13, 3, // Opcode: VADDUHS /* 135 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 144 /* 140 */ MCD::OPC_Decode, 211, 13, 3, // Opcode: VADDUWS /* 144 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 153 /* 149 */ MCD::OPC_Decode, 201, 13, 3, // Opcode: VADDSBS /* 153 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 162 /* 158 */ MCD::OPC_Decode, 202, 13, 3, // Opcode: VADDSHS /* 162 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 171 /* 167 */ MCD::OPC_Decode, 203, 13, 3, // Opcode: VADDSWS /* 171 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 180 /* 176 */ MCD::OPC_Decode, 200, 15, 3, // Opcode: VSUBUBM /* 180 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 189 /* 185 */ MCD::OPC_Decode, 203, 15, 3, // Opcode: VSUBUHM /* 189 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 198 /* 194 */ MCD::OPC_Decode, 206, 15, 3, // Opcode: VSUBUWM /* 198 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 207 /* 203 */ MCD::OPC_Decode, 202, 15, 3, // Opcode: VSUBUDM /* 207 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 216 /* 212 */ MCD::OPC_Decode, 205, 15, 3, // Opcode: VSUBUQM /* 216 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 225 /* 221 */ MCD::OPC_Decode, 192, 15, 3, // Opcode: VSUBCUQ /* 225 */ MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 234 /* 230 */ MCD::OPC_Decode, 193, 15, 3, // Opcode: VSUBCUW /* 234 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 243 /* 239 */ MCD::OPC_Decode, 201, 15, 3, // Opcode: VSUBUBS /* 243 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 252 /* 248 */ MCD::OPC_Decode, 204, 15, 3, // Opcode: VSUBUHS /* 252 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 261 /* 257 */ MCD::OPC_Decode, 207, 15, 3, // Opcode: VSUBUWS /* 261 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 270 /* 266 */ MCD::OPC_Decode, 197, 15, 3, // Opcode: VSUBSBS /* 270 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 279 /* 275 */ MCD::OPC_Decode, 198, 15, 3, // Opcode: VSUBSHS /* 279 */ MCD::OPC_FilterValue, 30, 121, 65, 0, // Skip to: 17045 /* 284 */ MCD::OPC_Decode, 199, 15, 3, // Opcode: VSUBSWS /* 288 */ MCD::OPC_FilterValue, 1, 9, 1, 0, // Skip to: 558 /* 293 */ MCD::OPC_ExtractField, 6, 3, // Inst{8-6} ... /* 296 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 322 /* 301 */ MCD::OPC_ExtractField, 9, 7, // Inst{15-9} ... /* 304 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 313 /* 309 */ MCD::OPC_Decode, 222, 14, 4, // Opcode: VMUL10CUQ /* 313 */ MCD::OPC_FilterValue, 1, 87, 65, 0, // Skip to: 17045 /* 318 */ MCD::OPC_Decode, 225, 14, 4, // Opcode: VMUL10UQ /* 322 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 348 /* 327 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 330 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 339 /* 335 */ MCD::OPC_Decode, 223, 14, 3, // Opcode: VMUL10ECUQ /* 339 */ MCD::OPC_FilterValue, 1, 61, 65, 0, // Skip to: 17045 /* 344 */ MCD::OPC_Decode, 224, 14, 3, // Opcode: VMUL10EUQ /* 348 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 364 /* 353 */ MCD::OPC_CheckField, 9, 2, 2, 45, 65, 0, // Skip to: 17045 /* 360 */ MCD::OPC_Decode, 166, 3, 3, // Opcode: BCDUS_rec /* 364 */ MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 380 /* 369 */ MCD::OPC_CheckField, 10, 1, 1, 29, 65, 0, // Skip to: 17045 /* 376 */ MCD::OPC_Decode, 164, 3, 5, // Opcode: BCDS_rec /* 380 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 396 /* 385 */ MCD::OPC_CheckField, 10, 1, 1, 13, 65, 0, // Skip to: 17045 /* 392 */ MCD::OPC_Decode, 165, 3, 5, // Opcode: BCDTRUNC_rec /* 396 */ MCD::OPC_FilterValue, 5, 21, 0, 0, // Skip to: 422 /* 401 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 404 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 413 /* 409 */ MCD::OPC_Decode, 158, 3, 3, // Opcode: BCDCPSGN_rec /* 413 */ MCD::OPC_FilterValue, 2, 243, 64, 0, // Skip to: 17045 /* 418 */ MCD::OPC_Decode, 167, 3, 3, // Opcode: BCDUTRUNC_rec /* 422 */ MCD::OPC_FilterValue, 6, 115, 0, 0, // Skip to: 542 /* 427 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 430 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 446 /* 435 */ MCD::OPC_CheckField, 9, 2, 2, 219, 64, 0, // Skip to: 17045 /* 442 */ MCD::OPC_Decode, 160, 3, 6, // Opcode: BCDCTSQ_rec /* 446 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 462 /* 451 */ MCD::OPC_CheckField, 10, 1, 1, 203, 64, 0, // Skip to: 17045 /* 458 */ MCD::OPC_Decode, 156, 3, 7, // Opcode: BCDCFSQ_rec /* 462 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 478 /* 467 */ MCD::OPC_CheckField, 10, 1, 1, 187, 64, 0, // Skip to: 17045 /* 474 */ MCD::OPC_Decode, 161, 3, 7, // Opcode: BCDCTZ_rec /* 478 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 494 /* 483 */ MCD::OPC_CheckField, 9, 2, 2, 171, 64, 0, // Skip to: 17045 /* 490 */ MCD::OPC_Decode, 159, 3, 6, // Opcode: BCDCTN_rec /* 494 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 510 /* 499 */ MCD::OPC_CheckField, 10, 1, 1, 155, 64, 0, // Skip to: 17045 /* 506 */ MCD::OPC_Decode, 157, 3, 7, // Opcode: BCDCFZ_rec /* 510 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 526 /* 515 */ MCD::OPC_CheckField, 10, 1, 1, 139, 64, 0, // Skip to: 17045 /* 522 */ MCD::OPC_Decode, 155, 3, 7, // Opcode: BCDCFN_rec /* 526 */ MCD::OPC_FilterValue, 31, 130, 64, 0, // Skip to: 17045 /* 531 */ MCD::OPC_CheckField, 10, 1, 1, 123, 64, 0, // Skip to: 17045 /* 538 */ MCD::OPC_Decode, 162, 3, 7, // Opcode: BCDSETSGN_rec /* 542 */ MCD::OPC_FilterValue, 7, 114, 64, 0, // Skip to: 17045 /* 547 */ MCD::OPC_CheckField, 10, 1, 1, 107, 64, 0, // Skip to: 17045 /* 554 */ MCD::OPC_Decode, 163, 3, 5, // Opcode: BCDSR_rec /* 558 */ MCD::OPC_FilterValue, 2, 179, 1, 0, // Skip to: 998 /* 563 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 566 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 575 /* 571 */ MCD::OPC_Decode, 192, 14, 3, // Opcode: VMAXUB /* 575 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 584 /* 580 */ MCD::OPC_Decode, 194, 14, 3, // Opcode: VMAXUH /* 584 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 593 /* 589 */ MCD::OPC_Decode, 195, 14, 3, // Opcode: VMAXUW /* 593 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 602 /* 598 */ MCD::OPC_Decode, 193, 14, 3, // Opcode: VMAXUD /* 602 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 611 /* 607 */ MCD::OPC_Decode, 188, 14, 3, // Opcode: VMAXSB /* 611 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 620 /* 616 */ MCD::OPC_Decode, 190, 14, 3, // Opcode: VMAXSH /* 620 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 629 /* 625 */ MCD::OPC_Decode, 191, 14, 3, // Opcode: VMAXSW /* 629 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 638 /* 634 */ MCD::OPC_Decode, 189, 14, 3, // Opcode: VMAXSD /* 638 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 647 /* 643 */ MCD::OPC_Decode, 203, 14, 3, // Opcode: VMINUB /* 647 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 656 /* 652 */ MCD::OPC_Decode, 205, 14, 3, // Opcode: VMINUH /* 656 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 665 /* 661 */ MCD::OPC_Decode, 206, 14, 3, // Opcode: VMINUW /* 665 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 674 /* 670 */ MCD::OPC_Decode, 204, 14, 3, // Opcode: VMINUD /* 674 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 683 /* 679 */ MCD::OPC_Decode, 199, 14, 3, // Opcode: VMINSB /* 683 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 692 /* 688 */ MCD::OPC_Decode, 201, 14, 3, // Opcode: VMINSH /* 692 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 701 /* 697 */ MCD::OPC_Decode, 202, 14, 3, // Opcode: VMINSW /* 701 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 710 /* 706 */ MCD::OPC_Decode, 200, 14, 3, // Opcode: VMINSD /* 710 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 719 /* 715 */ MCD::OPC_Decode, 217, 13, 3, // Opcode: VAVGUB /* 719 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 728 /* 724 */ MCD::OPC_Decode, 218, 13, 3, // Opcode: VAVGUH /* 728 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 737 /* 733 */ MCD::OPC_Decode, 219, 13, 3, // Opcode: VAVGUW /* 737 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 746 /* 742 */ MCD::OPC_Decode, 214, 13, 3, // Opcode: VAVGSB /* 746 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 755 /* 751 */ MCD::OPC_Decode, 215, 13, 3, // Opcode: VAVGSH /* 755 */ MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 764 /* 760 */ MCD::OPC_Decode, 216, 13, 3, // Opcode: VAVGSW /* 764 */ MCD::OPC_FilterValue, 24, 147, 0, 0, // Skip to: 916 /* 769 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 772 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 781 /* 777 */ MCD::OPC_Decode, 231, 13, 8, // Opcode: VCLZLSBB /* 781 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 790 /* 786 */ MCD::OPC_Decode, 156, 14, 8, // Opcode: VCTZLSBB /* 790 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 799 /* 795 */ MCD::OPC_Decode, 243, 14, 6, // Opcode: VNEGW /* 799 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 808 /* 804 */ MCD::OPC_Decode, 242, 14, 6, // Opcode: VNEGD /* 808 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 817 /* 813 */ MCD::OPC_Decode, 146, 15, 6, // Opcode: VPRTYBW /* 817 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 826 /* 822 */ MCD::OPC_Decode, 144, 15, 6, // Opcode: VPRTYBD /* 826 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 835 /* 831 */ MCD::OPC_Decode, 145, 15, 6, // Opcode: VPRTYBQ /* 835 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 844 /* 840 */ MCD::OPC_Decode, 166, 14, 6, // Opcode: VEXTSB2W /* 844 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 853 /* 849 */ MCD::OPC_Decode, 170, 14, 6, // Opcode: VEXTSH2W /* 853 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 862 /* 858 */ MCD::OPC_Decode, 164, 14, 6, // Opcode: VEXTSB2D /* 862 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 871 /* 867 */ MCD::OPC_Decode, 168, 14, 6, // Opcode: VEXTSH2D /* 871 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 880 /* 876 */ MCD::OPC_Decode, 172, 14, 6, // Opcode: VEXTSW2D /* 880 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 889 /* 885 */ MCD::OPC_Decode, 153, 14, 6, // Opcode: VCTZB /* 889 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 898 /* 894 */ MCD::OPC_Decode, 155, 14, 6, // Opcode: VCTZH /* 898 */ MCD::OPC_FilterValue, 30, 4, 0, 0, // Skip to: 907 /* 903 */ MCD::OPC_Decode, 157, 14, 6, // Opcode: VCTZW /* 907 */ MCD::OPC_FilterValue, 31, 5, 63, 0, // Skip to: 17045 /* 912 */ MCD::OPC_Decode, 154, 14, 6, // Opcode: VCTZD /* 916 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 925 /* 921 */ MCD::OPC_Decode, 164, 15, 9, // Opcode: VSHASIGMAW /* 925 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 934 /* 930 */ MCD::OPC_Decode, 163, 15, 9, // Opcode: VSHASIGMAD /* 934 */ MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 950 /* 939 */ MCD::OPC_CheckField, 16, 5, 0, 227, 62, 0, // Skip to: 17045 /* 946 */ MCD::OPC_Decode, 228, 13, 6, // Opcode: VCLZB /* 950 */ MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 966 /* 955 */ MCD::OPC_CheckField, 16, 5, 0, 211, 62, 0, // Skip to: 17045 /* 962 */ MCD::OPC_Decode, 230, 13, 6, // Opcode: VCLZH /* 966 */ MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 982 /* 971 */ MCD::OPC_CheckField, 16, 5, 0, 195, 62, 0, // Skip to: 17045 /* 978 */ MCD::OPC_Decode, 232, 13, 6, // Opcode: VCLZW /* 982 */ MCD::OPC_FilterValue, 31, 186, 62, 0, // Skip to: 17045 /* 987 */ MCD::OPC_CheckField, 16, 5, 0, 179, 62, 0, // Skip to: 17045 /* 994 */ MCD::OPC_Decode, 229, 13, 6, // Opcode: VCLZD /* 998 */ MCD::OPC_FilterValue, 3, 94, 0, 0, // Skip to: 1097 /* 1003 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1006 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1015 /* 1011 */ MCD::OPC_Decode, 193, 13, 3, // Opcode: VABSDUB /* 1015 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1024 /* 1020 */ MCD::OPC_Decode, 194, 13, 3, // Opcode: VABSDUH /* 1024 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1033 /* 1029 */ MCD::OPC_Decode, 195, 13, 3, // Opcode: VABSDUW /* 1033 */ MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 1049 /* 1038 */ MCD::OPC_CheckField, 16, 5, 0, 128, 62, 0, // Skip to: 17045 /* 1045 */ MCD::OPC_Decode, 140, 15, 6, // Opcode: VPOPCNTB /* 1049 */ MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 1065 /* 1054 */ MCD::OPC_CheckField, 16, 5, 0, 112, 62, 0, // Skip to: 17045 /* 1061 */ MCD::OPC_Decode, 142, 15, 6, // Opcode: VPOPCNTH /* 1065 */ MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 1081 /* 1070 */ MCD::OPC_CheckField, 16, 5, 0, 96, 62, 0, // Skip to: 17045 /* 1077 */ MCD::OPC_Decode, 143, 15, 6, // Opcode: VPOPCNTW /* 1081 */ MCD::OPC_FilterValue, 31, 87, 62, 0, // Skip to: 17045 /* 1086 */ MCD::OPC_CheckField, 16, 5, 0, 80, 62, 0, // Skip to: 17045 /* 1093 */ MCD::OPC_Decode, 141, 15, 6, // Opcode: VPOPCNTD /* 1097 */ MCD::OPC_FilterValue, 4, 31, 1, 0, // Skip to: 1389 /* 1102 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1105 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1114 /* 1110 */ MCD::OPC_Decode, 152, 15, 3, // Opcode: VRLB /* 1114 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1123 /* 1119 */ MCD::OPC_Decode, 156, 15, 3, // Opcode: VRLH /* 1123 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1132 /* 1128 */ MCD::OPC_Decode, 157, 15, 3, // Opcode: VRLW /* 1132 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1141 /* 1137 */ MCD::OPC_Decode, 153, 15, 3, // Opcode: VRLD /* 1141 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1150 /* 1146 */ MCD::OPC_Decode, 166, 15, 3, // Opcode: VSLB /* 1150 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1159 /* 1155 */ MCD::OPC_Decode, 169, 15, 3, // Opcode: VSLH /* 1159 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1168 /* 1164 */ MCD::OPC_Decode, 172, 15, 3, // Opcode: VSLW /* 1168 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1177 /* 1173 */ MCD::OPC_Decode, 165, 15, 3, // Opcode: VSL /* 1177 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1186 /* 1182 */ MCD::OPC_Decode, 186, 15, 3, // Opcode: VSRB /* 1186 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1195 /* 1191 */ MCD::OPC_Decode, 188, 15, 3, // Opcode: VSRH /* 1195 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1204 /* 1200 */ MCD::OPC_Decode, 191, 15, 3, // Opcode: VSRW /* 1204 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1213 /* 1209 */ MCD::OPC_Decode, 181, 15, 3, // Opcode: VSR /* 1213 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1222 /* 1218 */ MCD::OPC_Decode, 182, 15, 3, // Opcode: VSRAB /* 1222 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1231 /* 1227 */ MCD::OPC_Decode, 184, 15, 3, // Opcode: VSRAH /* 1231 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1240 /* 1236 */ MCD::OPC_Decode, 185, 15, 3, // Opcode: VSRAW /* 1240 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1249 /* 1245 */ MCD::OPC_Decode, 183, 15, 3, // Opcode: VSRAD /* 1249 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1258 /* 1254 */ MCD::OPC_Decode, 212, 13, 3, // Opcode: VAND /* 1258 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1267 /* 1263 */ MCD::OPC_Decode, 213, 13, 3, // Opcode: VANDC /* 1267 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1276 /* 1272 */ MCD::OPC_Decode, 246, 14, 3, // Opcode: VOR /* 1276 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1285 /* 1281 */ MCD::OPC_Decode, 221, 15, 3, // Opcode: VXOR /* 1285 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 1294 /* 1290 */ MCD::OPC_Decode, 245, 14, 3, // Opcode: VNOR /* 1294 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 1303 /* 1299 */ MCD::OPC_Decode, 247, 14, 3, // Opcode: VORC /* 1303 */ MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 1312 /* 1308 */ MCD::OPC_Decode, 239, 14, 3, // Opcode: VNAND /* 1312 */ MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 1321 /* 1317 */ MCD::OPC_Decode, 167, 15, 3, // Opcode: VSLD /* 1321 */ MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 1337 /* 1326 */ MCD::OPC_CheckField, 11, 10, 0, 96, 61, 0, // Skip to: 17045 /* 1333 */ MCD::OPC_Decode, 147, 9, 10, // Opcode: MFVSCR /* 1337 */ MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 1353 /* 1342 */ MCD::OPC_CheckField, 16, 10, 0, 80, 61, 0, // Skip to: 17045 /* 1349 */ MCD::OPC_Decode, 187, 9, 11, // Opcode: MTVSCR /* 1353 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 1362 /* 1358 */ MCD::OPC_Decode, 158, 14, 3, // Opcode: VEQV /* 1362 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1371 /* 1367 */ MCD::OPC_Decode, 187, 15, 3, // Opcode: VSRD /* 1371 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 1380 /* 1376 */ MCD::OPC_Decode, 190, 15, 3, // Opcode: VSRV /* 1380 */ MCD::OPC_FilterValue, 29, 44, 61, 0, // Skip to: 17045 /* 1385 */ MCD::OPC_Decode, 171, 15, 3, // Opcode: VSLV /* 1389 */ MCD::OPC_FilterValue, 5, 39, 0, 0, // Skip to: 1433 /* 1394 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1397 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1406 /* 1402 */ MCD::OPC_Decode, 158, 15, 12, // Opcode: VRLWMI /* 1406 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1415 /* 1411 */ MCD::OPC_Decode, 154, 15, 12, // Opcode: VRLDMI /* 1415 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1424 /* 1420 */ MCD::OPC_Decode, 159, 15, 3, // Opcode: VRLWNM /* 1424 */ MCD::OPC_FilterValue, 7, 0, 61, 0, // Skip to: 17045 /* 1429 */ MCD::OPC_Decode, 155, 15, 3, // Opcode: VRLDNM /* 1433 */ MCD::OPC_FilterValue, 6, 237, 0, 0, // Skip to: 1675 /* 1438 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1441 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1450 /* 1446 */ MCD::OPC_Decode, 237, 13, 3, // Opcode: VCMPEQUB /* 1450 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1459 /* 1455 */ MCD::OPC_Decode, 241, 13, 3, // Opcode: VCMPEQUH /* 1459 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1468 /* 1464 */ MCD::OPC_Decode, 243, 13, 3, // Opcode: VCMPEQUW /* 1468 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1477 /* 1473 */ MCD::OPC_Decode, 235, 13, 3, // Opcode: VCMPEQFP /* 1477 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 1486 /* 1482 */ MCD::OPC_Decode, 245, 13, 3, // Opcode: VCMPGEFP /* 1486 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1495 /* 1491 */ MCD::OPC_Decode, 129, 14, 3, // Opcode: VCMPGTUB /* 1495 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1504 /* 1500 */ MCD::OPC_Decode, 133, 14, 3, // Opcode: VCMPGTUH /* 1504 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1513 /* 1509 */ MCD::OPC_Decode, 135, 14, 3, // Opcode: VCMPGTUW /* 1513 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1522 /* 1518 */ MCD::OPC_Decode, 247, 13, 3, // Opcode: VCMPGTFP /* 1522 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1531 /* 1527 */ MCD::OPC_Decode, 249, 13, 3, // Opcode: VCMPGTSB /* 1531 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1540 /* 1536 */ MCD::OPC_Decode, 253, 13, 3, // Opcode: VCMPGTSH /* 1540 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1549 /* 1545 */ MCD::OPC_Decode, 255, 13, 3, // Opcode: VCMPGTSW /* 1549 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1558 /* 1554 */ MCD::OPC_Decode, 233, 13, 3, // Opcode: VCMPBFP /* 1558 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1567 /* 1563 */ MCD::OPC_Decode, 238, 13, 3, // Opcode: VCMPEQUB_rec /* 1567 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1576 /* 1572 */ MCD::OPC_Decode, 242, 13, 3, // Opcode: VCMPEQUH_rec /* 1576 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1585 /* 1581 */ MCD::OPC_Decode, 244, 13, 3, // Opcode: VCMPEQUW_rec /* 1585 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1594 /* 1590 */ MCD::OPC_Decode, 236, 13, 3, // Opcode: VCMPEQFP_rec /* 1594 */ MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 1603 /* 1599 */ MCD::OPC_Decode, 246, 13, 3, // Opcode: VCMPGEFP_rec /* 1603 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 1612 /* 1608 */ MCD::OPC_Decode, 130, 14, 3, // Opcode: VCMPGTUB_rec /* 1612 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 1621 /* 1617 */ MCD::OPC_Decode, 134, 14, 3, // Opcode: VCMPGTUH_rec /* 1621 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 1630 /* 1626 */ MCD::OPC_Decode, 136, 14, 3, // Opcode: VCMPGTUW_rec /* 1630 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1639 /* 1635 */ MCD::OPC_Decode, 248, 13, 3, // Opcode: VCMPGTFP_rec /* 1639 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 1648 /* 1644 */ MCD::OPC_Decode, 250, 13, 3, // Opcode: VCMPGTSB_rec /* 1648 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 1657 /* 1653 */ MCD::OPC_Decode, 254, 13, 3, // Opcode: VCMPGTSH_rec /* 1657 */ MCD::OPC_FilterValue, 30, 4, 0, 0, // Skip to: 1666 /* 1662 */ MCD::OPC_Decode, 128, 14, 3, // Opcode: VCMPGTSW_rec /* 1666 */ MCD::OPC_FilterValue, 31, 14, 60, 0, // Skip to: 17045 /* 1671 */ MCD::OPC_Decode, 234, 13, 3, // Opcode: VCMPBFP_rec /* 1675 */ MCD::OPC_FilterValue, 7, 165, 0, 0, // Skip to: 1845 /* 1680 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1683 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1692 /* 1688 */ MCD::OPC_Decode, 137, 14, 3, // Opcode: VCMPNEB /* 1692 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1701 /* 1697 */ MCD::OPC_Decode, 139, 14, 3, // Opcode: VCMPNEH /* 1701 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1710 /* 1706 */ MCD::OPC_Decode, 141, 14, 3, // Opcode: VCMPNEW /* 1710 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 1719 /* 1715 */ MCD::OPC_Decode, 239, 13, 3, // Opcode: VCMPEQUD /* 1719 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1728 /* 1724 */ MCD::OPC_Decode, 143, 14, 3, // Opcode: VCMPNEZB /* 1728 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1737 /* 1733 */ MCD::OPC_Decode, 145, 14, 3, // Opcode: VCMPNEZH /* 1737 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1746 /* 1742 */ MCD::OPC_Decode, 147, 14, 3, // Opcode: VCMPNEZW /* 1746 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 1755 /* 1751 */ MCD::OPC_Decode, 131, 14, 3, // Opcode: VCMPGTUD /* 1755 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 1764 /* 1760 */ MCD::OPC_Decode, 251, 13, 3, // Opcode: VCMPGTSD /* 1764 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1773 /* 1769 */ MCD::OPC_Decode, 138, 14, 3, // Opcode: VCMPNEB_rec /* 1773 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1782 /* 1778 */ MCD::OPC_Decode, 140, 14, 3, // Opcode: VCMPNEH_rec /* 1782 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1791 /* 1787 */ MCD::OPC_Decode, 142, 14, 3, // Opcode: VCMPNEW_rec /* 1791 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1800 /* 1796 */ MCD::OPC_Decode, 240, 13, 3, // Opcode: VCMPEQUD_rec /* 1800 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 1809 /* 1805 */ MCD::OPC_Decode, 144, 14, 3, // Opcode: VCMPNEZB_rec /* 1809 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 1818 /* 1814 */ MCD::OPC_Decode, 146, 14, 3, // Opcode: VCMPNEZH_rec /* 1818 */ MCD::OPC_FilterValue, 22, 4, 0, 0, // Skip to: 1827 /* 1823 */ MCD::OPC_Decode, 148, 14, 3, // Opcode: VCMPNEZW_rec /* 1827 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 1836 /* 1832 */ MCD::OPC_Decode, 132, 14, 3, // Opcode: VCMPGTUD_rec /* 1836 */ MCD::OPC_FilterValue, 31, 100, 59, 0, // Skip to: 17045 /* 1841 */ MCD::OPC_Decode, 252, 13, 3, // Opcode: VCMPGTSD_rec /* 1845 */ MCD::OPC_FilterValue, 8, 226, 0, 0, // Skip to: 2076 /* 1850 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1853 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 1862 /* 1858 */ MCD::OPC_Decode, 235, 14, 3, // Opcode: VMULOUB /* 1862 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 1871 /* 1867 */ MCD::OPC_Decode, 236, 14, 3, // Opcode: VMULOUH /* 1871 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 1880 /* 1876 */ MCD::OPC_Decode, 237, 14, 3, // Opcode: VMULOUW /* 1880 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 1889 /* 1885 */ MCD::OPC_Decode, 232, 14, 3, // Opcode: VMULOSB /* 1889 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 1898 /* 1894 */ MCD::OPC_Decode, 233, 14, 3, // Opcode: VMULOSH /* 1898 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 1907 /* 1903 */ MCD::OPC_Decode, 234, 14, 3, // Opcode: VMULOSW /* 1907 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 1916 /* 1912 */ MCD::OPC_Decode, 229, 14, 3, // Opcode: VMULEUB /* 1916 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 1925 /* 1921 */ MCD::OPC_Decode, 230, 14, 3, // Opcode: VMULEUH /* 1925 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 1934 /* 1930 */ MCD::OPC_Decode, 231, 14, 3, // Opcode: VMULEUW /* 1934 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 1943 /* 1939 */ MCD::OPC_Decode, 226, 14, 3, // Opcode: VMULESB /* 1943 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 1952 /* 1948 */ MCD::OPC_Decode, 227, 14, 3, // Opcode: VMULESH /* 1952 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 1961 /* 1957 */ MCD::OPC_Decode, 228, 14, 3, // Opcode: VMULESW /* 1961 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 1970 /* 1966 */ MCD::OPC_Decode, 136, 15, 3, // Opcode: VPMSUMB /* 1970 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 1979 /* 1975 */ MCD::OPC_Decode, 138, 15, 3, // Opcode: VPMSUMH /* 1979 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 1988 /* 1984 */ MCD::OPC_Decode, 139, 15, 3, // Opcode: VPMSUMW /* 1988 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 1997 /* 1993 */ MCD::OPC_Decode, 137, 15, 3, // Opcode: VPMSUMD /* 1997 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 2006 /* 2002 */ MCD::OPC_Decode, 226, 13, 3, // Opcode: VCIPHER /* 2006 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2015 /* 2011 */ MCD::OPC_Decode, 240, 14, 3, // Opcode: VNCIPHER /* 2015 */ MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 2031 /* 2020 */ MCD::OPC_CheckField, 11, 5, 0, 170, 58, 0, // Skip to: 17045 /* 2027 */ MCD::OPC_Decode, 161, 15, 4, // Opcode: VSBOX /* 2031 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 2040 /* 2036 */ MCD::OPC_Decode, 211, 15, 3, // Opcode: VSUM4UBS /* 2040 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 2049 /* 2045 */ MCD::OPC_Decode, 210, 15, 3, // Opcode: VSUM4SHS /* 2049 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2058 /* 2054 */ MCD::OPC_Decode, 208, 15, 3, // Opcode: VSUM2SWS /* 2058 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 2067 /* 2063 */ MCD::OPC_Decode, 209, 15, 3, // Opcode: VSUM4SBS /* 2067 */ MCD::OPC_FilterValue, 30, 125, 58, 0, // Skip to: 17045 /* 2072 */ MCD::OPC_Decode, 212, 15, 3, // Opcode: VSUMSWS /* 2076 */ MCD::OPC_FilterValue, 9, 30, 0, 0, // Skip to: 2111 /* 2081 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 2084 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2093 /* 2089 */ MCD::OPC_Decode, 238, 14, 3, // Opcode: VMULUWM /* 2093 */ MCD::OPC_FilterValue, 20, 4, 0, 0, // Skip to: 2102 /* 2098 */ MCD::OPC_Decode, 227, 13, 3, // Opcode: VCIPHERLAST /* 2102 */ MCD::OPC_FilterValue, 21, 90, 58, 0, // Skip to: 17045 /* 2107 */ MCD::OPC_Decode, 241, 14, 3, // Opcode: VNCIPHERLAST /* 2111 */ MCD::OPC_FilterValue, 10, 203, 0, 0, // Skip to: 2319 /* 2116 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 2119 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2128 /* 2124 */ MCD::OPC_Decode, 200, 13, 3, // Opcode: VADDFP /* 2128 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2137 /* 2133 */ MCD::OPC_Decode, 196, 15, 3, // Opcode: VSUBFP /* 2137 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 2153 /* 2142 */ MCD::OPC_CheckField, 16, 5, 0, 48, 58, 0, // Skip to: 17045 /* 2149 */ MCD::OPC_Decode, 147, 15, 6, // Opcode: VREFP /* 2153 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 2169 /* 2158 */ MCD::OPC_CheckField, 16, 5, 0, 32, 58, 0, // Skip to: 17045 /* 2165 */ MCD::OPC_Decode, 160, 15, 6, // Opcode: VRSQRTEFP /* 2169 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 2185 /* 2174 */ MCD::OPC_CheckField, 16, 5, 0, 16, 58, 0, // Skip to: 17045 /* 2181 */ MCD::OPC_Decode, 159, 14, 6, // Opcode: VEXPTEFP /* 2185 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 2201 /* 2190 */ MCD::OPC_CheckField, 16, 5, 0, 0, 58, 0, // Skip to: 17045 /* 2197 */ MCD::OPC_Decode, 185, 14, 6, // Opcode: VLOGEFP /* 2201 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 2217 /* 2206 */ MCD::OPC_CheckField, 16, 5, 0, 240, 57, 0, // Skip to: 17045 /* 2213 */ MCD::OPC_Decode, 149, 15, 6, // Opcode: VRFIN /* 2217 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 2233 /* 2222 */ MCD::OPC_CheckField, 16, 5, 0, 224, 57, 0, // Skip to: 17045 /* 2229 */ MCD::OPC_Decode, 151, 15, 6, // Opcode: VRFIZ /* 2233 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 2249 /* 2238 */ MCD::OPC_CheckField, 16, 5, 0, 208, 57, 0, // Skip to: 17045 /* 2245 */ MCD::OPC_Decode, 150, 15, 6, // Opcode: VRFIP /* 2249 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 2265 /* 2254 */ MCD::OPC_CheckField, 16, 5, 0, 192, 57, 0, // Skip to: 17045 /* 2261 */ MCD::OPC_Decode, 148, 15, 6, // Opcode: VRFIM /* 2265 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2274 /* 2270 */ MCD::OPC_Decode, 224, 13, 13, // Opcode: VCFUX /* 2274 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 2283 /* 2279 */ MCD::OPC_Decode, 222, 13, 13, // Opcode: VCFSX /* 2283 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 2292 /* 2288 */ MCD::OPC_Decode, 151, 14, 13, // Opcode: VCTUXS /* 2292 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 2301 /* 2297 */ MCD::OPC_Decode, 149, 14, 13, // Opcode: VCTSXS /* 2301 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 2310 /* 2306 */ MCD::OPC_Decode, 187, 14, 3, // Opcode: VMAXFP /* 2310 */ MCD::OPC_FilterValue, 17, 138, 57, 0, // Skip to: 17045 /* 2315 */ MCD::OPC_Decode, 198, 14, 3, // Opcode: VMINFP /* 2319 */ MCD::OPC_FilterValue, 12, 202, 0, 0, // Skip to: 2526 /* 2324 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 2327 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2336 /* 2332 */ MCD::OPC_Decode, 209, 14, 3, // Opcode: VMRGHB /* 2336 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2345 /* 2341 */ MCD::OPC_Decode, 210, 14, 3, // Opcode: VMRGHH /* 2345 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2354 /* 2350 */ MCD::OPC_Decode, 211, 14, 3, // Opcode: VMRGHW /* 2354 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 2363 /* 2359 */ MCD::OPC_Decode, 212, 14, 3, // Opcode: VMRGLB /* 2363 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 2372 /* 2368 */ MCD::OPC_Decode, 213, 14, 3, // Opcode: VMRGLH /* 2372 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 2381 /* 2377 */ MCD::OPC_Decode, 214, 14, 3, // Opcode: VMRGLW /* 2381 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 2390 /* 2386 */ MCD::OPC_Decode, 173, 15, 13, // Opcode: VSPLTB /* 2390 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 2399 /* 2395 */ MCD::OPC_Decode, 175, 15, 13, // Opcode: VSPLTH /* 2399 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 2408 /* 2404 */ MCD::OPC_Decode, 180, 15, 13, // Opcode: VSPLTW /* 2408 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 2424 /* 2413 */ MCD::OPC_CheckField, 11, 5, 0, 33, 57, 0, // Skip to: 17045 /* 2420 */ MCD::OPC_Decode, 177, 15, 14, // Opcode: VSPLTISB /* 2424 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 2440 /* 2429 */ MCD::OPC_CheckField, 11, 5, 0, 17, 57, 0, // Skip to: 17045 /* 2436 */ MCD::OPC_Decode, 178, 15, 14, // Opcode: VSPLTISH /* 2440 */ MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 2456 /* 2445 */ MCD::OPC_CheckField, 11, 5, 0, 1, 57, 0, // Skip to: 17045 /* 2452 */ MCD::OPC_Decode, 179, 15, 14, // Opcode: VSPLTISW /* 2456 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 2465 /* 2461 */ MCD::OPC_Decode, 170, 15, 3, // Opcode: VSLO /* 2465 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 2474 /* 2470 */ MCD::OPC_Decode, 189, 15, 3, // Opcode: VSRO /* 2474 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 2490 /* 2479 */ MCD::OPC_CheckField, 16, 5, 0, 223, 56, 0, // Skip to: 17045 /* 2486 */ MCD::OPC_Decode, 180, 14, 6, // Opcode: VGBBD /* 2490 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2499 /* 2495 */ MCD::OPC_Decode, 221, 13, 3, // Opcode: VBPERMQ /* 2499 */ MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 2508 /* 2504 */ MCD::OPC_Decode, 220, 13, 3, // Opcode: VBPERMD /* 2508 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2517 /* 2513 */ MCD::OPC_Decode, 215, 14, 3, // Opcode: VMRGOW /* 2517 */ MCD::OPC_FilterValue, 30, 187, 56, 0, // Skip to: 17045 /* 2522 */ MCD::OPC_Decode, 208, 14, 3, // Opcode: VMRGEW /* 2526 */ MCD::OPC_FilterValue, 13, 129, 0, 0, // Skip to: 2660 /* 2531 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 2534 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 2543 /* 2539 */ MCD::OPC_Decode, 161, 14, 15, // Opcode: VEXTRACTUB /* 2543 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 2552 /* 2548 */ MCD::OPC_Decode, 162, 14, 15, // Opcode: VEXTRACTUH /* 2552 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 2561 /* 2557 */ MCD::OPC_Decode, 163, 14, 15, // Opcode: VEXTRACTUW /* 2561 */ MCD::OPC_FilterValue, 11, 4, 0, 0, // Skip to: 2570 /* 2566 */ MCD::OPC_Decode, 160, 14, 15, // Opcode: VEXTRACTD /* 2570 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2579 /* 2575 */ MCD::OPC_Decode, 181, 14, 16, // Opcode: VINSERTB /* 2579 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 2588 /* 2584 */ MCD::OPC_Decode, 183, 14, 16, // Opcode: VINSERTH /* 2588 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 2597 /* 2593 */ MCD::OPC_Decode, 184, 14, 15, // Opcode: VINSERTW /* 2597 */ MCD::OPC_FilterValue, 15, 4, 0, 0, // Skip to: 2606 /* 2602 */ MCD::OPC_Decode, 182, 14, 15, // Opcode: VINSERTD /* 2606 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 2615 /* 2611 */ MCD::OPC_Decode, 174, 14, 17, // Opcode: VEXTUBLX /* 2615 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 2624 /* 2620 */ MCD::OPC_Decode, 176, 14, 17, // Opcode: VEXTUHLX /* 2624 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 2633 /* 2629 */ MCD::OPC_Decode, 178, 14, 17, // Opcode: VEXTUWLX /* 2633 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 2642 /* 2638 */ MCD::OPC_Decode, 175, 14, 17, // Opcode: VEXTUBRX /* 2642 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 2651 /* 2647 */ MCD::OPC_Decode, 177, 14, 17, // Opcode: VEXTUHRX /* 2651 */ MCD::OPC_FilterValue, 30, 53, 56, 0, // Skip to: 17045 /* 2656 */ MCD::OPC_Decode, 179, 14, 17, // Opcode: VEXTUWRX /* 2660 */ MCD::OPC_FilterValue, 14, 248, 0, 0, // Skip to: 2913 /* 2665 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 2668 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 2677 /* 2673 */ MCD::OPC_Decode, 132, 15, 3, // Opcode: VPKUHUM /* 2677 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 2686 /* 2682 */ MCD::OPC_Decode, 134, 15, 3, // Opcode: VPKUWUM /* 2686 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 2695 /* 2691 */ MCD::OPC_Decode, 133, 15, 3, // Opcode: VPKUHUS /* 2695 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 2704 /* 2700 */ MCD::OPC_Decode, 135, 15, 3, // Opcode: VPKUWUS /* 2704 */ MCD::OPC_FilterValue, 4, 4, 0, 0, // Skip to: 2713 /* 2709 */ MCD::OPC_Decode, 255, 14, 3, // Opcode: VPKSHUS /* 2713 */ MCD::OPC_FilterValue, 5, 4, 0, 0, // Skip to: 2722 /* 2718 */ MCD::OPC_Decode, 129, 15, 3, // Opcode: VPKSWUS /* 2722 */ MCD::OPC_FilterValue, 6, 4, 0, 0, // Skip to: 2731 /* 2727 */ MCD::OPC_Decode, 254, 14, 3, // Opcode: VPKSHSS /* 2731 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 2740 /* 2736 */ MCD::OPC_Decode, 128, 15, 3, // Opcode: VPKSWSS /* 2740 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 2756 /* 2745 */ MCD::OPC_CheckField, 16, 5, 0, 213, 55, 0, // Skip to: 17045 /* 2752 */ MCD::OPC_Decode, 214, 15, 6, // Opcode: VUPKHSB /* 2756 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 2772 /* 2761 */ MCD::OPC_CheckField, 16, 5, 0, 197, 55, 0, // Skip to: 17045 /* 2768 */ MCD::OPC_Decode, 215, 15, 6, // Opcode: VUPKHSH /* 2772 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 2788 /* 2777 */ MCD::OPC_CheckField, 16, 5, 0, 181, 55, 0, // Skip to: 17045 /* 2784 */ MCD::OPC_Decode, 218, 15, 6, // Opcode: VUPKLSB /* 2788 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 2804 /* 2793 */ MCD::OPC_CheckField, 16, 5, 0, 165, 55, 0, // Skip to: 17045 /* 2800 */ MCD::OPC_Decode, 219, 15, 6, // Opcode: VUPKLSH /* 2804 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 2813 /* 2809 */ MCD::OPC_Decode, 251, 14, 3, // Opcode: VPKPX /* 2813 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 2829 /* 2818 */ MCD::OPC_CheckField, 16, 5, 0, 140, 55, 0, // Skip to: 17045 /* 2825 */ MCD::OPC_Decode, 213, 15, 6, // Opcode: VUPKHPX /* 2829 */ MCD::OPC_FilterValue, 15, 11, 0, 0, // Skip to: 2845 /* 2834 */ MCD::OPC_CheckField, 16, 5, 0, 124, 55, 0, // Skip to: 17045 /* 2841 */ MCD::OPC_Decode, 217, 15, 6, // Opcode: VUPKLPX /* 2845 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 2854 /* 2850 */ MCD::OPC_Decode, 130, 15, 3, // Opcode: VPKUDUM /* 2854 */ MCD::OPC_FilterValue, 19, 4, 0, 0, // Skip to: 2863 /* 2859 */ MCD::OPC_Decode, 131, 15, 3, // Opcode: VPKUDUS /* 2863 */ MCD::OPC_FilterValue, 21, 4, 0, 0, // Skip to: 2872 /* 2868 */ MCD::OPC_Decode, 253, 14, 3, // Opcode: VPKSDUS /* 2872 */ MCD::OPC_FilterValue, 23, 4, 0, 0, // Skip to: 2881 /* 2877 */ MCD::OPC_Decode, 252, 14, 3, // Opcode: VPKSDSS /* 2881 */ MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 2897 /* 2886 */ MCD::OPC_CheckField, 16, 5, 0, 72, 55, 0, // Skip to: 17045 /* 2893 */ MCD::OPC_Decode, 216, 15, 6, // Opcode: VUPKHSW /* 2897 */ MCD::OPC_FilterValue, 27, 63, 55, 0, // Skip to: 17045 /* 2902 */ MCD::OPC_CheckField, 16, 5, 0, 56, 55, 0, // Skip to: 17045 /* 2909 */ MCD::OPC_Decode, 220, 15, 6, // Opcode: VUPKLSW /* 2913 */ MCD::OPC_FilterValue, 32, 4, 0, 0, // Skip to: 2922 /* 2918 */ MCD::OPC_Decode, 196, 14, 18, // Opcode: VMHADDSHS /* 2922 */ MCD::OPC_FilterValue, 33, 4, 0, 0, // Skip to: 2931 /* 2927 */ MCD::OPC_Decode, 197, 14, 18, // Opcode: VMHRADDSHS /* 2931 */ MCD::OPC_FilterValue, 34, 4, 0, 0, // Skip to: 2940 /* 2936 */ MCD::OPC_Decode, 207, 14, 18, // Opcode: VMLADDUHM /* 2940 */ MCD::OPC_FilterValue, 36, 4, 0, 0, // Skip to: 2949 /* 2945 */ MCD::OPC_Decode, 219, 14, 18, // Opcode: VMSUMUBM /* 2949 */ MCD::OPC_FilterValue, 37, 4, 0, 0, // Skip to: 2958 /* 2954 */ MCD::OPC_Decode, 216, 14, 18, // Opcode: VMSUMMBM /* 2958 */ MCD::OPC_FilterValue, 38, 4, 0, 0, // Skip to: 2967 /* 2963 */ MCD::OPC_Decode, 220, 14, 18, // Opcode: VMSUMUHM /* 2967 */ MCD::OPC_FilterValue, 39, 4, 0, 0, // Skip to: 2976 /* 2972 */ MCD::OPC_Decode, 221, 14, 18, // Opcode: VMSUMUHS /* 2976 */ MCD::OPC_FilterValue, 40, 4, 0, 0, // Skip to: 2985 /* 2981 */ MCD::OPC_Decode, 217, 14, 18, // Opcode: VMSUMSHM /* 2985 */ MCD::OPC_FilterValue, 41, 4, 0, 0, // Skip to: 2994 /* 2990 */ MCD::OPC_Decode, 218, 14, 18, // Opcode: VMSUMSHS /* 2994 */ MCD::OPC_FilterValue, 42, 4, 0, 0, // Skip to: 3003 /* 2999 */ MCD::OPC_Decode, 162, 15, 18, // Opcode: VSEL /* 3003 */ MCD::OPC_FilterValue, 43, 4, 0, 0, // Skip to: 3012 /* 3008 */ MCD::OPC_Decode, 248, 14, 18, // Opcode: VPERM /* 3012 */ MCD::OPC_FilterValue, 44, 11, 0, 0, // Skip to: 3028 /* 3017 */ MCD::OPC_CheckField, 10, 1, 0, 197, 54, 0, // Skip to: 17045 /* 3024 */ MCD::OPC_Decode, 168, 15, 19, // Opcode: VSLDOI /* 3028 */ MCD::OPC_FilterValue, 45, 4, 0, 0, // Skip to: 3037 /* 3033 */ MCD::OPC_Decode, 250, 14, 18, // Opcode: VPERMXOR /* 3037 */ MCD::OPC_FilterValue, 46, 4, 0, 0, // Skip to: 3046 /* 3042 */ MCD::OPC_Decode, 186, 14, 20, // Opcode: VMADDFP /* 3046 */ MCD::OPC_FilterValue, 47, 4, 0, 0, // Skip to: 3055 /* 3051 */ MCD::OPC_Decode, 244, 14, 20, // Opcode: VNMSUBFP /* 3055 */ MCD::OPC_FilterValue, 48, 4, 0, 0, // Skip to: 3064 /* 3060 */ MCD::OPC_Decode, 237, 8, 21, // Opcode: MADDHD /* 3064 */ MCD::OPC_FilterValue, 49, 4, 0, 0, // Skip to: 3073 /* 3069 */ MCD::OPC_Decode, 238, 8, 21, // Opcode: MADDHDU /* 3073 */ MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 3082 /* 3078 */ MCD::OPC_Decode, 239, 8, 22, // Opcode: MADDLD /* 3082 */ MCD::OPC_FilterValue, 59, 4, 0, 0, // Skip to: 3091 /* 3087 */ MCD::OPC_Decode, 249, 14, 18, // Opcode: VPERMR /* 3091 */ MCD::OPC_FilterValue, 60, 4, 0, 0, // Skip to: 3100 /* 3096 */ MCD::OPC_Decode, 199, 13, 18, // Opcode: VADDEUQM /* 3100 */ MCD::OPC_FilterValue, 61, 4, 0, 0, // Skip to: 3109 /* 3105 */ MCD::OPC_Decode, 198, 13, 18, // Opcode: VADDECUQ /* 3109 */ MCD::OPC_FilterValue, 62, 4, 0, 0, // Skip to: 3118 /* 3114 */ MCD::OPC_Decode, 195, 15, 18, // Opcode: VSUBEUQM /* 3118 */ MCD::OPC_FilterValue, 63, 98, 54, 0, // Skip to: 17045 /* 3123 */ MCD::OPC_Decode, 194, 15, 18, // Opcode: VSUBECUQ /* 3127 */ MCD::OPC_FilterValue, 7, 4, 0, 0, // Skip to: 3136 /* 3132 */ MCD::OPC_Decode, 205, 9, 23, // Opcode: MULLI /* 3136 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 3145 /* 3141 */ MCD::OPC_Decode, 252, 12, 23, // Opcode: SUBFIC /* 3145 */ MCD::OPC_FilterValue, 10, 21, 0, 0, // Skip to: 3171 /* 3150 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... /* 3153 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3162 /* 3158 */ MCD::OPC_Decode, 247, 3, 24, // Opcode: CMPLWI /* 3162 */ MCD::OPC_FilterValue, 1, 54, 54, 0, // Skip to: 17045 /* 3167 */ MCD::OPC_Decode, 245, 3, 25, // Opcode: CMPLDI /* 3171 */ MCD::OPC_FilterValue, 11, 21, 0, 0, // Skip to: 3197 /* 3176 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... /* 3179 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3188 /* 3184 */ MCD::OPC_Decode, 251, 3, 26, // Opcode: CMPWI /* 3188 */ MCD::OPC_FilterValue, 1, 28, 54, 0, // Skip to: 17045 /* 3193 */ MCD::OPC_Decode, 242, 3, 27, // Opcode: CMPDI /* 3197 */ MCD::OPC_FilterValue, 12, 4, 0, 0, // Skip to: 3206 /* 3202 */ MCD::OPC_Decode, 155, 2, 23, // Opcode: ADDIC /* 3206 */ MCD::OPC_FilterValue, 13, 4, 0, 0, // Skip to: 3215 /* 3211 */ MCD::OPC_Decode, 157, 2, 23, // Opcode: ADDIC_rec /* 3215 */ MCD::OPC_FilterValue, 14, 15, 0, 0, // Skip to: 3235 /* 3220 */ MCD::OPC_CheckField, 16, 5, 0, 4, 0, 0, // Skip to: 3231 /* 3227 */ MCD::OPC_Decode, 181, 8, 28, // Opcode: LI /* 3231 */ MCD::OPC_Decode, 153, 2, 29, // Opcode: ADDI /* 3235 */ MCD::OPC_FilterValue, 15, 15, 0, 0, // Skip to: 3255 /* 3240 */ MCD::OPC_CheckField, 16, 5, 0, 4, 0, 0, // Skip to: 3251 /* 3247 */ MCD::OPC_Decode, 183, 8, 28, // Opcode: LIS /* 3251 */ MCD::OPC_Decode, 158, 2, 29, // Opcode: ADDIS /* 3255 */ MCD::OPC_FilterValue, 16, 35, 1, 0, // Skip to: 3551 /* 3260 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 3263 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 3335 /* 3268 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 3271 */ MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3281 /* 3277 */ MCD::OPC_Decode, 182, 3, 30, // Opcode: BDNZ /* 3281 */ MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3291 /* 3287 */ MCD::OPC_Decode, 202, 3, 30, // Opcode: BDZ /* 3291 */ MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3301 /* 3297 */ MCD::OPC_Decode, 200, 3, 30, // Opcode: BDNZm /* 3301 */ MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3311 /* 3307 */ MCD::OPC_Decode, 201, 3, 30, // Opcode: BDNZp /* 3311 */ MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3321 /* 3317 */ MCD::OPC_Decode, 220, 3, 30, // Opcode: BDZm /* 3321 */ MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3331 /* 3327 */ MCD::OPC_Decode, 221, 3, 30, // Opcode: BDZp /* 3331 */ MCD::OPC_Decode, 228, 17, 31, // Opcode: gBC /* 3335 */ MCD::OPC_FilterValue, 1, 67, 0, 0, // Skip to: 3407 /* 3340 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 3343 */ MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3353 /* 3349 */ MCD::OPC_Decode, 187, 3, 30, // Opcode: BDNZL /* 3353 */ MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3363 /* 3359 */ MCD::OPC_Decode, 207, 3, 30, // Opcode: BDZL /* 3363 */ MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3373 /* 3369 */ MCD::OPC_Decode, 198, 3, 30, // Opcode: BDNZLm /* 3373 */ MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3383 /* 3379 */ MCD::OPC_Decode, 199, 3, 30, // Opcode: BDNZLp /* 3383 */ MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3393 /* 3389 */ MCD::OPC_Decode, 218, 3, 30, // Opcode: BDZLm /* 3393 */ MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3403 /* 3399 */ MCD::OPC_Decode, 219, 3, 30, // Opcode: BDZLp /* 3403 */ MCD::OPC_Decode, 233, 17, 31, // Opcode: gBCL /* 3407 */ MCD::OPC_FilterValue, 2, 67, 0, 0, // Skip to: 3479 /* 3412 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 3415 */ MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3425 /* 3421 */ MCD::OPC_Decode, 184, 3, 30, // Opcode: BDNZA /* 3425 */ MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3435 /* 3431 */ MCD::OPC_Decode, 204, 3, 30, // Opcode: BDZA /* 3435 */ MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3445 /* 3441 */ MCD::OPC_Decode, 185, 3, 30, // Opcode: BDNZAm /* 3445 */ MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3455 /* 3451 */ MCD::OPC_Decode, 186, 3, 30, // Opcode: BDNZAp /* 3455 */ MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3465 /* 3461 */ MCD::OPC_Decode, 205, 3, 30, // Opcode: BDZAm /* 3465 */ MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3475 /* 3471 */ MCD::OPC_Decode, 206, 3, 30, // Opcode: BDZAp /* 3475 */ MCD::OPC_Decode, 229, 17, 31, // Opcode: gBCA /* 3479 */ MCD::OPC_FilterValue, 3, 249, 52, 0, // Skip to: 17045 /* 3484 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 3487 */ MCD::OPC_FilterValue, 128, 4, 4, 0, 0, // Skip to: 3497 /* 3493 */ MCD::OPC_Decode, 188, 3, 30, // Opcode: BDNZLA /* 3497 */ MCD::OPC_FilterValue, 192, 4, 4, 0, 0, // Skip to: 3507 /* 3503 */ MCD::OPC_Decode, 208, 3, 30, // Opcode: BDZLA /* 3507 */ MCD::OPC_FilterValue, 128, 6, 4, 0, 0, // Skip to: 3517 /* 3513 */ MCD::OPC_Decode, 189, 3, 30, // Opcode: BDNZLAm /* 3517 */ MCD::OPC_FilterValue, 160, 6, 4, 0, 0, // Skip to: 3527 /* 3523 */ MCD::OPC_Decode, 190, 3, 30, // Opcode: BDNZLAp /* 3527 */ MCD::OPC_FilterValue, 192, 6, 4, 0, 0, // Skip to: 3537 /* 3533 */ MCD::OPC_Decode, 209, 3, 30, // Opcode: BDZLAm /* 3537 */ MCD::OPC_FilterValue, 224, 6, 4, 0, 0, // Skip to: 3547 /* 3543 */ MCD::OPC_Decode, 210, 3, 30, // Opcode: BDZLAp /* 3547 */ MCD::OPC_Decode, 234, 17, 31, // Opcode: gBCLA /* 3551 */ MCD::OPC_FilterValue, 17, 11, 0, 0, // Skip to: 3567 /* 3556 */ MCD::OPC_CheckField, 1, 1, 1, 170, 52, 0, // Skip to: 17045 /* 3563 */ MCD::OPC_Decode, 200, 11, 32, // Opcode: SC /* 3567 */ MCD::OPC_FilterValue, 18, 39, 0, 0, // Skip to: 3611 /* 3572 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 3575 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 3584 /* 3580 */ MCD::OPC_Decode, 134, 3, 33, // Opcode: B /* 3584 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 3593 /* 3589 */ MCD::OPC_Decode, 222, 3, 34, // Opcode: BL /* 3593 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 3602 /* 3598 */ MCD::OPC_Decode, 135, 3, 33, // Opcode: BA /* 3602 */ MCD::OPC_FilterValue, 3, 126, 52, 0, // Skip to: 17045 /* 3607 */ MCD::OPC_Decode, 228, 3, 33, // Opcode: BLA /* 3611 */ MCD::OPC_FilterValue, 19, 22, 3, 0, // Skip to: 4406 /* 3616 */ MCD::OPC_ExtractField, 1, 5, // Inst{5-1} ... /* 3619 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 3649 /* 3624 */ MCD::OPC_CheckField, 21, 2, 0, 102, 52, 0, // Skip to: 17045 /* 3631 */ MCD::OPC_CheckField, 6, 12, 0, 95, 52, 0, // Skip to: 17045 /* 3638 */ MCD::OPC_CheckField, 0, 1, 0, 88, 52, 0, // Skip to: 17045 /* 3645 */ MCD::OPC_Decode, 242, 8, 35, // Opcode: MCRF /* 3649 */ MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 3785 /* 3654 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 3657 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 3673 /* 3662 */ MCD::OPC_CheckField, 0, 1, 0, 64, 52, 0, // Skip to: 17045 /* 3669 */ MCD::OPC_Decode, 149, 4, 36, // Opcode: CRNOR /* 3673 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 3689 /* 3678 */ MCD::OPC_CheckField, 0, 1, 0, 48, 52, 0, // Skip to: 17045 /* 3685 */ MCD::OPC_Decode, 146, 4, 36, // Opcode: CRANDC /* 3689 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 3705 /* 3694 */ MCD::OPC_CheckField, 0, 1, 0, 32, 52, 0, // Skip to: 17045 /* 3701 */ MCD::OPC_Decode, 154, 4, 36, // Opcode: CRXOR /* 3705 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 3721 /* 3710 */ MCD::OPC_CheckField, 0, 1, 0, 16, 52, 0, // Skip to: 17045 /* 3717 */ MCD::OPC_Decode, 148, 4, 36, // Opcode: CRNAND /* 3721 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 3737 /* 3726 */ MCD::OPC_CheckField, 0, 1, 0, 0, 52, 0, // Skip to: 17045 /* 3733 */ MCD::OPC_Decode, 145, 4, 36, // Opcode: CRAND /* 3737 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 3753 /* 3742 */ MCD::OPC_CheckField, 0, 1, 0, 240, 51, 0, // Skip to: 17045 /* 3749 */ MCD::OPC_Decode, 147, 4, 36, // Opcode: CREQV /* 3753 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 3769 /* 3758 */ MCD::OPC_CheckField, 0, 1, 0, 224, 51, 0, // Skip to: 17045 /* 3765 */ MCD::OPC_Decode, 151, 4, 36, // Opcode: CRORC /* 3769 */ MCD::OPC_FilterValue, 14, 215, 51, 0, // Skip to: 17045 /* 3774 */ MCD::OPC_CheckField, 0, 1, 0, 208, 51, 0, // Skip to: 17045 /* 3781 */ MCD::OPC_Decode, 150, 4, 36, // Opcode: CROR /* 3785 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 3794 /* 3790 */ MCD::OPC_Decode, 186, 2, 37, // Opcode: ADDPCIS /* 3794 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 3817 /* 3799 */ MCD::OPC_CheckField, 6, 20, 1, 183, 51, 0, // Skip to: 17045 /* 3806 */ MCD::OPC_CheckField, 0, 1, 0, 176, 51, 0, // Skip to: 17045 /* 3813 */ MCD::OPC_Decode, 170, 11, 0, // Opcode: RFMCI /* 3817 */ MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 3840 /* 3822 */ MCD::OPC_CheckField, 6, 20, 1, 160, 51, 0, // Skip to: 17045 /* 3829 */ MCD::OPC_CheckField, 0, 1, 0, 153, 51, 0, // Skip to: 17045 /* 3836 */ MCD::OPC_Decode, 166, 11, 0, // Opcode: RFDI /* 3840 */ MCD::OPC_FilterValue, 16, 113, 1, 0, // Skip to: 4214 /* 3845 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 3848 */ MCD::OPC_FilterValue, 0, 178, 0, 0, // Skip to: 4031 /* 3853 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 3856 */ MCD::OPC_FilterValue, 0, 134, 0, 0, // Skip to: 3995 /* 3861 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... /* 3864 */ MCD::OPC_FilterValue, 0, 120, 51, 0, // Skip to: 17045 /* 3869 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 3872 */ MCD::OPC_FilterValue, 128, 4, 11, 0, 0, // Skip to: 3889 /* 3878 */ MCD::OPC_CheckField, 11, 2, 0, 106, 0, 0, // Skip to: 3991 /* 3885 */ MCD::OPC_Decode, 191, 3, 0, // Opcode: BDNZLR /* 3889 */ MCD::OPC_FilterValue, 192, 4, 11, 0, 0, // Skip to: 3906 /* 3895 */ MCD::OPC_CheckField, 11, 2, 0, 89, 0, 0, // Skip to: 3991 /* 3902 */ MCD::OPC_Decode, 211, 3, 0, // Opcode: BDZLR /* 3906 */ MCD::OPC_FilterValue, 128, 5, 11, 0, 0, // Skip to: 3923 /* 3912 */ MCD::OPC_CheckField, 11, 2, 0, 72, 0, 0, // Skip to: 3991 /* 3919 */ MCD::OPC_Decode, 231, 3, 0, // Opcode: BLR /* 3923 */ MCD::OPC_FilterValue, 128, 6, 11, 0, 0, // Skip to: 3940 /* 3929 */ MCD::OPC_CheckField, 11, 2, 0, 55, 0, 0, // Skip to: 3991 /* 3936 */ MCD::OPC_Decode, 196, 3, 0, // Opcode: BDNZLRm /* 3940 */ MCD::OPC_FilterValue, 160, 6, 11, 0, 0, // Skip to: 3957 /* 3946 */ MCD::OPC_CheckField, 11, 2, 0, 38, 0, 0, // Skip to: 3991 /* 3953 */ MCD::OPC_Decode, 197, 3, 0, // Opcode: BDNZLRp /* 3957 */ MCD::OPC_FilterValue, 192, 6, 11, 0, 0, // Skip to: 3974 /* 3963 */ MCD::OPC_CheckField, 11, 2, 0, 21, 0, 0, // Skip to: 3991 /* 3970 */ MCD::OPC_Decode, 216, 3, 0, // Opcode: BDZLRm /* 3974 */ MCD::OPC_FilterValue, 224, 6, 11, 0, 0, // Skip to: 3991 /* 3980 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 3991 /* 3987 */ MCD::OPC_Decode, 217, 3, 0, // Opcode: BDZLRp /* 3991 */ MCD::OPC_Decode, 236, 17, 38, // Opcode: gBCLR /* 3995 */ MCD::OPC_FilterValue, 16, 245, 50, 0, // Skip to: 17045 /* 4000 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... /* 4003 */ MCD::OPC_FilterValue, 0, 237, 50, 0, // Skip to: 17045 /* 4008 */ MCD::OPC_CheckField, 16, 10, 128, 5, 11, 0, 0, // Skip to: 4027 /* 4016 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4027 /* 4023 */ MCD::OPC_Decode, 175, 3, 0, // Opcode: BCTR /* 4027 */ MCD::OPC_Decode, 231, 17, 38, // Opcode: gBCCTR /* 4031 */ MCD::OPC_FilterValue, 1, 209, 50, 0, // Skip to: 17045 /* 4036 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 4039 */ MCD::OPC_FilterValue, 0, 134, 0, 0, // Skip to: 4178 /* 4044 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... /* 4047 */ MCD::OPC_FilterValue, 0, 193, 50, 0, // Skip to: 17045 /* 4052 */ MCD::OPC_ExtractField, 16, 10, // Inst{25-16} ... /* 4055 */ MCD::OPC_FilterValue, 128, 4, 11, 0, 0, // Skip to: 4072 /* 4061 */ MCD::OPC_CheckField, 11, 2, 0, 106, 0, 0, // Skip to: 4174 /* 4068 */ MCD::OPC_Decode, 193, 3, 0, // Opcode: BDNZLRL /* 4072 */ MCD::OPC_FilterValue, 192, 4, 11, 0, 0, // Skip to: 4089 /* 4078 */ MCD::OPC_CheckField, 11, 2, 0, 89, 0, 0, // Skip to: 4174 /* 4085 */ MCD::OPC_Decode, 213, 3, 0, // Opcode: BDZLRL /* 4089 */ MCD::OPC_FilterValue, 128, 5, 11, 0, 0, // Skip to: 4106 /* 4095 */ MCD::OPC_CheckField, 11, 2, 0, 72, 0, 0, // Skip to: 4174 /* 4102 */ MCD::OPC_Decode, 233, 3, 0, // Opcode: BLRL /* 4106 */ MCD::OPC_FilterValue, 128, 6, 11, 0, 0, // Skip to: 4123 /* 4112 */ MCD::OPC_CheckField, 11, 2, 0, 55, 0, 0, // Skip to: 4174 /* 4119 */ MCD::OPC_Decode, 194, 3, 0, // Opcode: BDNZLRLm /* 4123 */ MCD::OPC_FilterValue, 160, 6, 11, 0, 0, // Skip to: 4140 /* 4129 */ MCD::OPC_CheckField, 11, 2, 0, 38, 0, 0, // Skip to: 4174 /* 4136 */ MCD::OPC_Decode, 195, 3, 0, // Opcode: BDNZLRLp /* 4140 */ MCD::OPC_FilterValue, 192, 6, 11, 0, 0, // Skip to: 4157 /* 4146 */ MCD::OPC_CheckField, 11, 2, 0, 21, 0, 0, // Skip to: 4174 /* 4153 */ MCD::OPC_Decode, 214, 3, 0, // Opcode: BDZLRLm /* 4157 */ MCD::OPC_FilterValue, 224, 6, 11, 0, 0, // Skip to: 4174 /* 4163 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4174 /* 4170 */ MCD::OPC_Decode, 215, 3, 0, // Opcode: BDZLRLp /* 4174 */ MCD::OPC_Decode, 237, 17, 38, // Opcode: gBCLRL /* 4178 */ MCD::OPC_FilterValue, 16, 62, 50, 0, // Skip to: 17045 /* 4183 */ MCD::OPC_ExtractField, 13, 3, // Inst{15-13} ... /* 4186 */ MCD::OPC_FilterValue, 0, 54, 50, 0, // Skip to: 17045 /* 4191 */ MCD::OPC_CheckField, 16, 10, 128, 5, 11, 0, 0, // Skip to: 4210 /* 4199 */ MCD::OPC_CheckField, 11, 2, 0, 4, 0, 0, // Skip to: 4210 /* 4206 */ MCD::OPC_Decode, 177, 3, 0, // Opcode: BCTRL /* 4210 */ MCD::OPC_Decode, 232, 17, 38, // Opcode: gBCCTRL /* 4214 */ MCD::OPC_FilterValue, 18, 141, 0, 0, // Skip to: 4360 /* 4219 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 4222 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 4245 /* 4227 */ MCD::OPC_CheckField, 11, 15, 0, 11, 50, 0, // Skip to: 17045 /* 4234 */ MCD::OPC_CheckField, 0, 1, 0, 4, 50, 0, // Skip to: 17045 /* 4241 */ MCD::OPC_Decode, 169, 11, 0, // Opcode: RFID /* 4245 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 4268 /* 4250 */ MCD::OPC_CheckField, 11, 15, 0, 244, 49, 0, // Skip to: 17045 /* 4257 */ MCD::OPC_CheckField, 0, 1, 0, 237, 49, 0, // Skip to: 17045 /* 4264 */ MCD::OPC_Decode, 168, 11, 0, // Opcode: RFI /* 4268 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4291 /* 4273 */ MCD::OPC_CheckField, 12, 14, 0, 221, 49, 0, // Skip to: 17045 /* 4280 */ MCD::OPC_CheckField, 0, 1, 0, 214, 49, 0, // Skip to: 17045 /* 4287 */ MCD::OPC_Decode, 167, 11, 39, // Opcode: RFEBB /* 4291 */ MCD::OPC_FilterValue, 8, 18, 0, 0, // Skip to: 4314 /* 4296 */ MCD::OPC_CheckField, 11, 15, 0, 198, 49, 0, // Skip to: 17045 /* 4303 */ MCD::OPC_CheckField, 0, 1, 0, 191, 49, 0, // Skip to: 17045 /* 4310 */ MCD::OPC_Decode, 227, 7, 0, // Opcode: HRFID /* 4314 */ MCD::OPC_FilterValue, 11, 18, 0, 0, // Skip to: 4337 /* 4319 */ MCD::OPC_CheckField, 11, 15, 0, 175, 49, 0, // Skip to: 17045 /* 4326 */ MCD::OPC_CheckField, 0, 1, 0, 168, 49, 0, // Skip to: 17045 /* 4333 */ MCD::OPC_Decode, 191, 12, 0, // Opcode: STOP /* 4337 */ MCD::OPC_FilterValue, 13, 159, 49, 0, // Skip to: 17045 /* 4342 */ MCD::OPC_CheckField, 11, 15, 0, 152, 49, 0, // Skip to: 17045 /* 4349 */ MCD::OPC_CheckField, 0, 1, 0, 145, 49, 0, // Skip to: 17045 /* 4356 */ MCD::OPC_Decode, 218, 9, 0, // Opcode: NAP /* 4360 */ MCD::OPC_FilterValue, 19, 18, 0, 0, // Skip to: 4383 /* 4365 */ MCD::OPC_CheckField, 6, 20, 1, 129, 49, 0, // Skip to: 17045 /* 4372 */ MCD::OPC_CheckField, 0, 1, 0, 122, 49, 0, // Skip to: 17045 /* 4379 */ MCD::OPC_Decode, 165, 11, 0, // Opcode: RFCI /* 4383 */ MCD::OPC_FilterValue, 22, 113, 49, 0, // Skip to: 17045 /* 4388 */ MCD::OPC_CheckField, 6, 20, 4, 106, 49, 0, // Skip to: 17045 /* 4395 */ MCD::OPC_CheckField, 0, 1, 0, 99, 49, 0, // Skip to: 17045 /* 4402 */ MCD::OPC_Decode, 237, 7, 0, // Opcode: ISYNC /* 4406 */ MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 4432 /* 4411 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4414 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4423 /* 4419 */ MCD::OPC_Decode, 187, 11, 40, // Opcode: RLWIMI /* 4423 */ MCD::OPC_FilterValue, 1, 73, 49, 0, // Skip to: 17045 /* 4428 */ MCD::OPC_Decode, 190, 11, 40, // Opcode: RLWIMI_rec /* 4432 */ MCD::OPC_FilterValue, 21, 21, 0, 0, // Skip to: 4458 /* 4437 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4440 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4449 /* 4445 */ MCD::OPC_Decode, 191, 11, 41, // Opcode: RLWINM /* 4449 */ MCD::OPC_FilterValue, 1, 47, 49, 0, // Skip to: 17045 /* 4454 */ MCD::OPC_Decode, 194, 11, 41, // Opcode: RLWINM_rec /* 4458 */ MCD::OPC_FilterValue, 23, 21, 0, 0, // Skip to: 4484 /* 4463 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4466 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4475 /* 4471 */ MCD::OPC_Decode, 195, 11, 42, // Opcode: RLWNM /* 4475 */ MCD::OPC_FilterValue, 1, 21, 49, 0, // Skip to: 17045 /* 4480 */ MCD::OPC_Decode, 198, 11, 42, // Opcode: RLWNM_rec /* 4484 */ MCD::OPC_FilterValue, 24, 15, 0, 0, // Skip to: 4504 /* 4489 */ MCD::OPC_CheckField, 0, 26, 0, 4, 0, 0, // Skip to: 4500 /* 4496 */ MCD::OPC_Decode, 227, 9, 0, // Opcode: NOP /* 4500 */ MCD::OPC_Decode, 241, 9, 43, // Opcode: ORI /* 4504 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 4513 /* 4509 */ MCD::OPC_Decode, 243, 9, 43, // Opcode: ORIS /* 4513 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 4522 /* 4518 */ MCD::OPC_Decode, 234, 15, 43, // Opcode: XORI /* 4522 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 4531 /* 4527 */ MCD::OPC_Decode, 236, 15, 43, // Opcode: XORIS /* 4531 */ MCD::OPC_FilterValue, 28, 4, 0, 0, // Skip to: 4540 /* 4536 */ MCD::OPC_Decode, 207, 2, 43, // Opcode: ANDI_rec /* 4540 */ MCD::OPC_FilterValue, 29, 4, 0, 0, // Skip to: 4549 /* 4545 */ MCD::OPC_Decode, 206, 2, 43, // Opcode: ANDIS_rec /* 4549 */ MCD::OPC_FilterValue, 30, 151, 0, 0, // Skip to: 4705 /* 4554 */ MCD::OPC_ExtractField, 2, 3, // Inst{4-2} ... /* 4557 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 4583 /* 4562 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4565 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4574 /* 4570 */ MCD::OPC_Decode, 176, 11, 44, // Opcode: RLDICL /* 4574 */ MCD::OPC_FilterValue, 1, 178, 48, 0, // Skip to: 17045 /* 4579 */ MCD::OPC_Decode, 180, 11, 44, // Opcode: RLDICL_rec /* 4583 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 4609 /* 4588 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4591 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4600 /* 4596 */ MCD::OPC_Decode, 181, 11, 44, // Opcode: RLDICR /* 4600 */ MCD::OPC_FilterValue, 1, 152, 48, 0, // Skip to: 17045 /* 4605 */ MCD::OPC_Decode, 183, 11, 44, // Opcode: RLDICR_rec /* 4609 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 4635 /* 4614 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4617 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4626 /* 4622 */ MCD::OPC_Decode, 175, 11, 44, // Opcode: RLDIC /* 4626 */ MCD::OPC_FilterValue, 1, 126, 48, 0, // Skip to: 17045 /* 4631 */ MCD::OPC_Decode, 184, 11, 44, // Opcode: RLDIC_rec /* 4635 */ MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 4661 /* 4640 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 4643 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4652 /* 4648 */ MCD::OPC_Decode, 185, 11, 45, // Opcode: RLDIMI /* 4652 */ MCD::OPC_FilterValue, 1, 100, 48, 0, // Skip to: 17045 /* 4657 */ MCD::OPC_Decode, 186, 11, 45, // Opcode: RLDIMI_rec /* 4661 */ MCD::OPC_FilterValue, 4, 91, 48, 0, // Skip to: 17045 /* 4666 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 4669 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 4678 /* 4674 */ MCD::OPC_Decode, 171, 11, 46, // Opcode: RLDCL /* 4678 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 4687 /* 4683 */ MCD::OPC_Decode, 172, 11, 46, // Opcode: RLDCL_rec /* 4687 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 4696 /* 4692 */ MCD::OPC_Decode, 173, 11, 46, // Opcode: RLDCR /* 4696 */ MCD::OPC_FilterValue, 3, 56, 48, 0, // Skip to: 17045 /* 4701 */ MCD::OPC_Decode, 174, 11, 46, // Opcode: RLDCR_rec /* 4705 */ MCD::OPC_FilterValue, 31, 161, 23, 0, // Skip to: 10759 /* 4710 */ MCD::OPC_ExtractField, 2, 4, // Inst{5-2} ... /* 4713 */ MCD::OPC_FilterValue, 0, 175, 0, 0, // Skip to: 4893 /* 4718 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 4721 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 4761 /* 4726 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... /* 4729 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 4745 /* 4734 */ MCD::OPC_CheckField, 0, 2, 0, 16, 48, 0, // Skip to: 17045 /* 4741 */ MCD::OPC_Decode, 250, 3, 47, // Opcode: CMPW /* 4745 */ MCD::OPC_FilterValue, 1, 7, 48, 0, // Skip to: 17045 /* 4750 */ MCD::OPC_CheckField, 0, 2, 0, 0, 48, 0, // Skip to: 17045 /* 4757 */ MCD::OPC_Decode, 241, 3, 48, // Opcode: CMPD /* 4761 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 4801 /* 4766 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... /* 4769 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 4785 /* 4774 */ MCD::OPC_CheckField, 0, 2, 0, 232, 47, 0, // Skip to: 17045 /* 4781 */ MCD::OPC_Decode, 246, 3, 47, // Opcode: CMPLW /* 4785 */ MCD::OPC_FilterValue, 1, 223, 47, 0, // Skip to: 17045 /* 4790 */ MCD::OPC_CheckField, 0, 2, 0, 216, 47, 0, // Skip to: 17045 /* 4797 */ MCD::OPC_Decode, 244, 3, 48, // Opcode: CMPLD /* 4801 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4824 /* 4806 */ MCD::OPC_CheckField, 11, 7, 0, 200, 47, 0, // Skip to: 17045 /* 4813 */ MCD::OPC_CheckField, 0, 2, 0, 193, 47, 0, // Skip to: 17045 /* 4820 */ MCD::OPC_Decode, 229, 11, 49, // Opcode: SETB /* 4824 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 4847 /* 4829 */ MCD::OPC_CheckField, 22, 1, 0, 177, 47, 0, // Skip to: 17045 /* 4836 */ MCD::OPC_CheckField, 0, 2, 0, 170, 47, 0, // Skip to: 17045 /* 4843 */ MCD::OPC_Decode, 248, 3, 50, // Opcode: CMPRB /* 4847 */ MCD::OPC_FilterValue, 7, 18, 0, 0, // Skip to: 4870 /* 4852 */ MCD::OPC_CheckField, 21, 2, 0, 154, 47, 0, // Skip to: 17045 /* 4859 */ MCD::OPC_CheckField, 0, 2, 0, 147, 47, 0, // Skip to: 17045 /* 4866 */ MCD::OPC_Decode, 243, 3, 51, // Opcode: CMPEQB /* 4870 */ MCD::OPC_FilterValue, 18, 138, 47, 0, // Skip to: 17045 /* 4875 */ MCD::OPC_CheckField, 11, 12, 0, 131, 47, 0, // Skip to: 17045 /* 4882 */ MCD::OPC_CheckField, 0, 2, 0, 124, 47, 0, // Skip to: 17045 /* 4889 */ MCD::OPC_Decode, 244, 8, 52, // Opcode: MCRXRX /* 4893 */ MCD::OPC_FilterValue, 1, 74, 0, 0, // Skip to: 4972 /* 4898 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 4901 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 4924 /* 4906 */ MCD::OPC_CheckField, 16, 1, 0, 100, 47, 0, // Skip to: 17045 /* 4913 */ MCD::OPC_CheckField, 1, 1, 1, 93, 47, 0, // Skip to: 17045 /* 4920 */ MCD::OPC_Decode, 229, 15, 53, // Opcode: WRTEE /* 4924 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 4940 /* 4929 */ MCD::OPC_CheckField, 1, 1, 1, 77, 47, 0, // Skip to: 17045 /* 4936 */ MCD::OPC_Decode, 230, 15, 54, // Opcode: WRTEEI /* 4940 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 4956 /* 4945 */ MCD::OPC_CheckField, 0, 2, 2, 61, 47, 0, // Skip to: 17045 /* 4952 */ MCD::OPC_Decode, 250, 8, 55, // Opcode: MFDCR /* 4956 */ MCD::OPC_FilterValue, 14, 52, 47, 0, // Skip to: 17045 /* 4961 */ MCD::OPC_CheckField, 0, 2, 2, 45, 47, 0, // Skip to: 17045 /* 4968 */ MCD::OPC_Decode, 163, 9, 55, // Opcode: MTDCR /* 4972 */ MCD::OPC_FilterValue, 2, 49, 0, 0, // Skip to: 5026 /* 4977 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 4980 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 5010 /* 4985 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 4988 */ MCD::OPC_FilterValue, 0, 20, 47, 0, // Skip to: 17045 /* 4993 */ MCD::OPC_CheckField, 11, 15, 128, 248, 1, 4, 0, 0, // Skip to: 5006 /* 5002 */ MCD::OPC_Decode, 184, 13, 0, // Opcode: TRAP /* 5006 */ MCD::OPC_Decode, 188, 13, 56, // Opcode: TW /* 5010 */ MCD::OPC_FilterValue, 2, 254, 46, 0, // Skip to: 17045 /* 5015 */ MCD::OPC_CheckField, 0, 2, 0, 247, 46, 0, // Skip to: 17045 /* 5022 */ MCD::OPC_Decode, 167, 13, 57, // Opcode: TD /* 5026 */ MCD::OPC_FilterValue, 3, 174, 1, 0, // Skip to: 5461 /* 5031 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 5034 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 5060 /* 5039 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5042 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5051 /* 5047 */ MCD::OPC_Decode, 190, 8, 58, // Opcode: LVSL /* 5051 */ MCD::OPC_FilterValue, 2, 213, 46, 0, // Skip to: 17045 /* 5056 */ MCD::OPC_Decode, 187, 8, 58, // Opcode: LVEBX /* 5060 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 5086 /* 5065 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5068 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5077 /* 5073 */ MCD::OPC_Decode, 191, 8, 58, // Opcode: LVSR /* 5077 */ MCD::OPC_FilterValue, 2, 187, 46, 0, // Skip to: 17045 /* 5082 */ MCD::OPC_Decode, 188, 8, 58, // Opcode: LVEHX /* 5086 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 5102 /* 5091 */ MCD::OPC_CheckField, 0, 2, 2, 171, 46, 0, // Skip to: 17045 /* 5098 */ MCD::OPC_Decode, 189, 8, 58, // Opcode: LVEWX /* 5102 */ MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 5118 /* 5107 */ MCD::OPC_CheckField, 0, 2, 2, 155, 46, 0, // Skip to: 17045 /* 5114 */ MCD::OPC_Decode, 192, 8, 58, // Opcode: LVX /* 5118 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 5134 /* 5123 */ MCD::OPC_CheckField, 0, 2, 2, 139, 46, 0, // Skip to: 17045 /* 5130 */ MCD::OPC_Decode, 193, 12, 58, // Opcode: STVEBX /* 5134 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 5150 /* 5139 */ MCD::OPC_CheckField, 0, 2, 2, 123, 46, 0, // Skip to: 17045 /* 5146 */ MCD::OPC_Decode, 194, 12, 58, // Opcode: STVEHX /* 5150 */ MCD::OPC_FilterValue, 6, 28, 0, 0, // Skip to: 5183 /* 5155 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5158 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5174 /* 5163 */ MCD::OPC_CheckField, 25, 1, 0, 99, 46, 0, // Skip to: 17045 /* 5170 */ MCD::OPC_Decode, 231, 7, 59, // Opcode: ICBLQ /* 5174 */ MCD::OPC_FilterValue, 2, 90, 46, 0, // Skip to: 17045 /* 5179 */ MCD::OPC_Decode, 195, 12, 58, // Opcode: STVEWX /* 5183 */ MCD::OPC_FilterValue, 7, 28, 0, 0, // Skip to: 5216 /* 5188 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5191 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5207 /* 5196 */ MCD::OPC_CheckField, 25, 1, 0, 66, 46, 0, // Skip to: 17045 /* 5203 */ MCD::OPC_Decode, 230, 7, 59, // Opcode: ICBLC /* 5207 */ MCD::OPC_FilterValue, 2, 57, 46, 0, // Skip to: 17045 /* 5212 */ MCD::OPC_Decode, 196, 12, 58, // Opcode: STVX /* 5216 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 5232 /* 5221 */ MCD::OPC_CheckField, 0, 2, 2, 41, 46, 0, // Skip to: 17045 /* 5228 */ MCD::OPC_Decode, 193, 8, 58, // Opcode: LVXL /* 5232 */ MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 5255 /* 5237 */ MCD::OPC_CheckField, 21, 5, 0, 25, 46, 0, // Skip to: 17045 /* 5244 */ MCD::OPC_CheckField, 0, 2, 0, 18, 46, 0, // Skip to: 17045 /* 5251 */ MCD::OPC_Decode, 171, 4, 60, // Opcode: DCCCI /* 5255 */ MCD::OPC_FilterValue, 15, 28, 0, 0, // Skip to: 5288 /* 5260 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5263 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5279 /* 5268 */ MCD::OPC_CheckField, 25, 1, 0, 250, 45, 0, // Skip to: 17045 /* 5275 */ MCD::OPC_Decode, 233, 7, 59, // Opcode: ICBTLS /* 5279 */ MCD::OPC_FilterValue, 2, 241, 45, 0, // Skip to: 17045 /* 5284 */ MCD::OPC_Decode, 197, 12, 58, // Opcode: STVXL /* 5288 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 5304 /* 5293 */ MCD::OPC_CheckField, 0, 2, 0, 225, 45, 0, // Skip to: 17045 /* 5300 */ MCD::OPC_Decode, 197, 8, 61, // Opcode: LWAT /* 5304 */ MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 5320 /* 5309 */ MCD::OPC_CheckField, 0, 2, 0, 209, 45, 0, // Skip to: 17045 /* 5316 */ MCD::OPC_Decode, 129, 8, 62, // Opcode: LDAT /* 5320 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 5336 /* 5325 */ MCD::OPC_CheckField, 0, 2, 0, 193, 45, 0, // Skip to: 17045 /* 5332 */ MCD::OPC_Decode, 200, 12, 61, // Opcode: STWAT /* 5336 */ MCD::OPC_FilterValue, 23, 11, 0, 0, // Skip to: 5352 /* 5341 */ MCD::OPC_CheckField, 0, 2, 0, 177, 45, 0, // Skip to: 17045 /* 5348 */ MCD::OPC_Decode, 156, 12, 62, // Opcode: STDAT /* 5352 */ MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 5375 /* 5357 */ MCD::OPC_CheckField, 22, 4, 0, 161, 45, 0, // Skip to: 17045 /* 5364 */ MCD::OPC_CheckField, 0, 2, 0, 154, 45, 0, // Skip to: 17045 /* 5371 */ MCD::OPC_Decode, 137, 4, 63, // Opcode: CP_COPY /* 5375 */ MCD::OPC_FilterValue, 26, 18, 0, 0, // Skip to: 5398 /* 5380 */ MCD::OPC_CheckField, 11, 15, 0, 138, 45, 0, // Skip to: 17045 /* 5387 */ MCD::OPC_CheckField, 0, 2, 0, 131, 45, 0, // Skip to: 17045 /* 5394 */ MCD::OPC_Decode, 136, 4, 0, // Opcode: CP_ABORT /* 5398 */ MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 5438 /* 5403 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5406 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5422 /* 5411 */ MCD::OPC_CheckField, 22, 4, 0, 107, 45, 0, // Skip to: 17045 /* 5418 */ MCD::OPC_Decode, 139, 4, 63, // Opcode: CP_PASTE /* 5422 */ MCD::OPC_FilterValue, 1, 98, 45, 0, // Skip to: 17045 /* 5427 */ MCD::OPC_CheckField, 22, 4, 0, 91, 45, 0, // Skip to: 17045 /* 5434 */ MCD::OPC_Decode, 142, 4, 63, // Opcode: CP_PASTE_rec /* 5438 */ MCD::OPC_FilterValue, 30, 82, 45, 0, // Skip to: 17045 /* 5443 */ MCD::OPC_CheckField, 21, 5, 0, 75, 45, 0, // Skip to: 17045 /* 5450 */ MCD::OPC_CheckField, 0, 2, 0, 68, 45, 0, // Skip to: 17045 /* 5457 */ MCD::OPC_Decode, 234, 7, 60, // Opcode: ICCCI /* 5461 */ MCD::OPC_FilterValue, 4, 207, 2, 0, // Skip to: 6185 /* 5466 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 5469 */ MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 5513 /* 5474 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5477 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5486 /* 5482 */ MCD::OPC_Decode, 236, 12, 64, // Opcode: SUBFC /* 5486 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 5495 /* 5491 */ MCD::OPC_Decode, 243, 12, 64, // Opcode: SUBFC_rec /* 5495 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5504 /* 5500 */ MCD::OPC_Decode, 194, 9, 65, // Opcode: MULHDU /* 5504 */ MCD::OPC_FilterValue, 3, 16, 45, 0, // Skip to: 17045 /* 5509 */ MCD::OPC_Decode, 195, 9, 65, // Opcode: MULHDU_rec /* 5513 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 5539 /* 5518 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5521 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5530 /* 5526 */ MCD::OPC_Decode, 231, 12, 64, // Opcode: SUBF /* 5530 */ MCD::OPC_FilterValue, 1, 246, 44, 0, // Skip to: 17045 /* 5535 */ MCD::OPC_Decode, 144, 13, 64, // Opcode: SUBF_rec /* 5539 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 5565 /* 5544 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5547 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5556 /* 5552 */ MCD::OPC_Decode, 193, 9, 65, // Opcode: MULHD /* 5556 */ MCD::OPC_FilterValue, 3, 220, 44, 0, // Skip to: 17045 /* 5561 */ MCD::OPC_Decode, 196, 9, 65, // Opcode: MULHD_rec /* 5565 */ MCD::OPC_FilterValue, 3, 35, 0, 0, // Skip to: 5605 /* 5570 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5573 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5589 /* 5578 */ MCD::OPC_CheckField, 11, 5, 0, 196, 44, 0, // Skip to: 17045 /* 5585 */ MCD::OPC_Decode, 219, 9, 66, // Opcode: NEG /* 5589 */ MCD::OPC_FilterValue, 1, 187, 44, 0, // Skip to: 17045 /* 5594 */ MCD::OPC_CheckField, 11, 5, 0, 180, 44, 0, // Skip to: 17045 /* 5601 */ MCD::OPC_Decode, 226, 9, 66, // Opcode: NEG_rec /* 5605 */ MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 5631 /* 5610 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5613 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5622 /* 5618 */ MCD::OPC_Decode, 244, 12, 64, // Opcode: SUBFE /* 5622 */ MCD::OPC_FilterValue, 1, 154, 44, 0, // Skip to: 17045 /* 5627 */ MCD::OPC_Decode, 251, 12, 64, // Opcode: SUBFE_rec /* 5631 */ MCD::OPC_FilterValue, 6, 35, 0, 0, // Skip to: 5671 /* 5636 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5639 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5655 /* 5644 */ MCD::OPC_CheckField, 11, 5, 0, 130, 44, 0, // Skip to: 17045 /* 5651 */ MCD::OPC_Decode, 136, 13, 66, // Opcode: SUBFZE /* 5655 */ MCD::OPC_FilterValue, 1, 121, 44, 0, // Skip to: 17045 /* 5660 */ MCD::OPC_CheckField, 11, 5, 0, 114, 44, 0, // Skip to: 17045 /* 5667 */ MCD::OPC_Decode, 143, 13, 66, // Opcode: SUBFZE_rec /* 5671 */ MCD::OPC_FilterValue, 7, 53, 0, 0, // Skip to: 5729 /* 5676 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5679 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5695 /* 5684 */ MCD::OPC_CheckField, 11, 5, 0, 90, 44, 0, // Skip to: 17045 /* 5691 */ MCD::OPC_Decode, 254, 12, 66, // Opcode: SUBFME /* 5695 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 5711 /* 5700 */ MCD::OPC_CheckField, 11, 5, 0, 74, 44, 0, // Skip to: 17045 /* 5707 */ MCD::OPC_Decode, 133, 13, 66, // Opcode: SUBFME_rec /* 5711 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5720 /* 5716 */ MCD::OPC_Decode, 201, 9, 65, // Opcode: MULLD /* 5720 */ MCD::OPC_FilterValue, 3, 56, 44, 0, // Skip to: 17045 /* 5725 */ MCD::OPC_Decode, 204, 9, 65, // Opcode: MULLD_rec /* 5729 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 5745 /* 5734 */ MCD::OPC_CheckField, 0, 2, 2, 40, 44, 0, // Skip to: 17045 /* 5741 */ MCD::OPC_Decode, 153, 9, 65, // Opcode: MODUD /* 5745 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 5771 /* 5750 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5753 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5762 /* 5758 */ MCD::OPC_Decode, 176, 4, 65, // Opcode: DIVDEU /* 5762 */ MCD::OPC_FilterValue, 3, 14, 44, 0, // Skip to: 17045 /* 5767 */ MCD::OPC_Decode, 179, 4, 65, // Opcode: DIVDEU_rec /* 5771 */ MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 5797 /* 5776 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5779 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5788 /* 5784 */ MCD::OPC_Decode, 173, 4, 65, // Opcode: DIVDE /* 5788 */ MCD::OPC_FilterValue, 3, 244, 43, 0, // Skip to: 17045 /* 5793 */ MCD::OPC_Decode, 180, 4, 65, // Opcode: DIVDE_rec /* 5797 */ MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 5823 /* 5802 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5805 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5814 /* 5810 */ MCD::OPC_Decode, 183, 4, 65, // Opcode: DIVDU /* 5814 */ MCD::OPC_FilterValue, 3, 218, 43, 0, // Skip to: 17045 /* 5819 */ MCD::OPC_Decode, 186, 4, 65, // Opcode: DIVDU_rec /* 5823 */ MCD::OPC_FilterValue, 15, 21, 0, 0, // Skip to: 5849 /* 5828 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5831 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 5840 /* 5836 */ MCD::OPC_Decode, 172, 4, 65, // Opcode: DIVD /* 5840 */ MCD::OPC_FilterValue, 3, 192, 43, 0, // Skip to: 17045 /* 5845 */ MCD::OPC_Decode, 187, 4, 65, // Opcode: DIVD_rec /* 5849 */ MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 5875 /* 5854 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5857 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5866 /* 5862 */ MCD::OPC_Decode, 241, 12, 64, // Opcode: SUBFCO /* 5866 */ MCD::OPC_FilterValue, 1, 166, 43, 0, // Skip to: 17045 /* 5871 */ MCD::OPC_Decode, 242, 12, 64, // Opcode: SUBFCO_rec /* 5875 */ MCD::OPC_FilterValue, 17, 21, 0, 0, // Skip to: 5901 /* 5880 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5883 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5892 /* 5888 */ MCD::OPC_Decode, 134, 13, 64, // Opcode: SUBFO /* 5892 */ MCD::OPC_FilterValue, 1, 140, 43, 0, // Skip to: 17045 /* 5897 */ MCD::OPC_Decode, 135, 13, 64, // Opcode: SUBFO_rec /* 5901 */ MCD::OPC_FilterValue, 19, 35, 0, 0, // Skip to: 5941 /* 5906 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5909 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5925 /* 5914 */ MCD::OPC_CheckField, 11, 5, 0, 116, 43, 0, // Skip to: 17045 /* 5921 */ MCD::OPC_Decode, 224, 9, 66, // Opcode: NEGO /* 5925 */ MCD::OPC_FilterValue, 1, 107, 43, 0, // Skip to: 17045 /* 5930 */ MCD::OPC_CheckField, 11, 5, 0, 100, 43, 0, // Skip to: 17045 /* 5937 */ MCD::OPC_Decode, 225, 9, 66, // Opcode: NEGO_rec /* 5941 */ MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 5967 /* 5946 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5949 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 5958 /* 5954 */ MCD::OPC_Decode, 249, 12, 64, // Opcode: SUBFEO /* 5958 */ MCD::OPC_FilterValue, 1, 74, 43, 0, // Skip to: 17045 /* 5963 */ MCD::OPC_Decode, 250, 12, 64, // Opcode: SUBFEO_rec /* 5967 */ MCD::OPC_FilterValue, 22, 35, 0, 0, // Skip to: 6007 /* 5972 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 5975 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 5991 /* 5980 */ MCD::OPC_CheckField, 11, 5, 0, 50, 43, 0, // Skip to: 17045 /* 5987 */ MCD::OPC_Decode, 141, 13, 66, // Opcode: SUBFZEO /* 5991 */ MCD::OPC_FilterValue, 1, 41, 43, 0, // Skip to: 17045 /* 5996 */ MCD::OPC_CheckField, 11, 5, 0, 34, 43, 0, // Skip to: 17045 /* 6003 */ MCD::OPC_Decode, 142, 13, 66, // Opcode: SUBFZEO_rec /* 6007 */ MCD::OPC_FilterValue, 23, 53, 0, 0, // Skip to: 6065 /* 6012 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6015 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6031 /* 6020 */ MCD::OPC_CheckField, 11, 5, 0, 10, 43, 0, // Skip to: 17045 /* 6027 */ MCD::OPC_Decode, 131, 13, 66, // Opcode: SUBFMEO /* 6031 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6047 /* 6036 */ MCD::OPC_CheckField, 11, 5, 0, 250, 42, 0, // Skip to: 17045 /* 6043 */ MCD::OPC_Decode, 132, 13, 66, // Opcode: SUBFMEO_rec /* 6047 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6056 /* 6052 */ MCD::OPC_Decode, 202, 9, 65, // Opcode: MULLDO /* 6056 */ MCD::OPC_FilterValue, 3, 232, 42, 0, // Skip to: 17045 /* 6061 */ MCD::OPC_Decode, 203, 9, 65, // Opcode: MULLDO_rec /* 6065 */ MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 6081 /* 6070 */ MCD::OPC_CheckField, 0, 2, 2, 216, 42, 0, // Skip to: 17045 /* 6077 */ MCD::OPC_Decode, 151, 9, 65, // Opcode: MODSD /* 6081 */ MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 6107 /* 6086 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6089 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6098 /* 6094 */ MCD::OPC_Decode, 177, 4, 65, // Opcode: DIVDEUO /* 6098 */ MCD::OPC_FilterValue, 3, 190, 42, 0, // Skip to: 17045 /* 6103 */ MCD::OPC_Decode, 178, 4, 65, // Opcode: DIVDEUO_rec /* 6107 */ MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 6133 /* 6112 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6115 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6124 /* 6120 */ MCD::OPC_Decode, 174, 4, 65, // Opcode: DIVDEO /* 6124 */ MCD::OPC_FilterValue, 3, 164, 42, 0, // Skip to: 17045 /* 6129 */ MCD::OPC_Decode, 175, 4, 65, // Opcode: DIVDEO_rec /* 6133 */ MCD::OPC_FilterValue, 30, 21, 0, 0, // Skip to: 6159 /* 6138 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6141 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6150 /* 6146 */ MCD::OPC_Decode, 184, 4, 65, // Opcode: DIVDUO /* 6150 */ MCD::OPC_FilterValue, 3, 138, 42, 0, // Skip to: 17045 /* 6155 */ MCD::OPC_Decode, 185, 4, 65, // Opcode: DIVDUO_rec /* 6159 */ MCD::OPC_FilterValue, 31, 129, 42, 0, // Skip to: 17045 /* 6164 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6167 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6176 /* 6172 */ MCD::OPC_Decode, 181, 4, 65, // Opcode: DIVDO /* 6176 */ MCD::OPC_FilterValue, 3, 112, 42, 0, // Skip to: 17045 /* 6181 */ MCD::OPC_Decode, 182, 4, 65, // Opcode: DIVDO_rec /* 6185 */ MCD::OPC_FilterValue, 5, 113, 2, 0, // Skip to: 6815 /* 6190 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 6193 */ MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 6237 /* 6198 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6201 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6210 /* 6206 */ MCD::OPC_Decode, 137, 2, 64, // Opcode: ADDC /* 6210 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6219 /* 6215 */ MCD::OPC_Decode, 144, 2, 64, // Opcode: ADDC_rec /* 6219 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6228 /* 6224 */ MCD::OPC_Decode, 198, 9, 64, // Opcode: MULHWU /* 6228 */ MCD::OPC_FilterValue, 3, 60, 42, 0, // Skip to: 17045 /* 6233 */ MCD::OPC_Decode, 199, 9, 64, // Opcode: MULHWU_rec /* 6237 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 6263 /* 6242 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6245 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6254 /* 6250 */ MCD::OPC_Decode, 197, 9, 64, // Opcode: MULHW /* 6254 */ MCD::OPC_FilterValue, 3, 34, 42, 0, // Skip to: 17045 /* 6259 */ MCD::OPC_Decode, 200, 9, 64, // Opcode: MULHW_rec /* 6263 */ MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 6289 /* 6268 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6271 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6280 /* 6276 */ MCD::OPC_Decode, 145, 2, 64, // Opcode: ADDE /* 6280 */ MCD::OPC_FilterValue, 1, 8, 42, 0, // Skip to: 17045 /* 6285 */ MCD::OPC_Decode, 152, 2, 64, // Opcode: ADDE_rec /* 6289 */ MCD::OPC_FilterValue, 6, 35, 0, 0, // Skip to: 6329 /* 6294 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6297 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6313 /* 6302 */ MCD::OPC_CheckField, 11, 5, 0, 240, 41, 0, // Skip to: 17045 /* 6309 */ MCD::OPC_Decode, 187, 2, 66, // Opcode: ADDZE /* 6313 */ MCD::OPC_FilterValue, 1, 231, 41, 0, // Skip to: 17045 /* 6318 */ MCD::OPC_CheckField, 11, 5, 0, 224, 41, 0, // Skip to: 17045 /* 6325 */ MCD::OPC_Decode, 194, 2, 66, // Opcode: ADDZE_rec /* 6329 */ MCD::OPC_FilterValue, 7, 53, 0, 0, // Skip to: 6387 /* 6334 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6337 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6353 /* 6342 */ MCD::OPC_CheckField, 11, 5, 0, 200, 41, 0, // Skip to: 17045 /* 6349 */ MCD::OPC_Decode, 178, 2, 66, // Opcode: ADDME /* 6353 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6369 /* 6358 */ MCD::OPC_CheckField, 11, 5, 0, 184, 41, 0, // Skip to: 17045 /* 6365 */ MCD::OPC_Decode, 185, 2, 66, // Opcode: ADDME_rec /* 6369 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6378 /* 6374 */ MCD::OPC_Decode, 207, 9, 64, // Opcode: MULLW /* 6378 */ MCD::OPC_FilterValue, 3, 166, 41, 0, // Skip to: 17045 /* 6383 */ MCD::OPC_Decode, 210, 9, 64, // Opcode: MULLW_rec /* 6387 */ MCD::OPC_FilterValue, 8, 30, 0, 0, // Skip to: 6422 /* 6392 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6395 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6404 /* 6400 */ MCD::OPC_Decode, 254, 1, 64, // Opcode: ADD4 /* 6404 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6413 /* 6409 */ MCD::OPC_Decode, 130, 2, 64, // Opcode: ADD4_rec /* 6413 */ MCD::OPC_FilterValue, 2, 131, 41, 0, // Skip to: 17045 /* 6418 */ MCD::OPC_Decode, 154, 9, 64, // Opcode: MODUW /* 6422 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 6448 /* 6427 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6430 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6439 /* 6435 */ MCD::OPC_Decode, 192, 4, 64, // Opcode: DIVWEU /* 6439 */ MCD::OPC_FilterValue, 3, 105, 41, 0, // Skip to: 17045 /* 6444 */ MCD::OPC_Decode, 195, 4, 64, // Opcode: DIVWEU_rec /* 6448 */ MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 6474 /* 6453 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6456 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6465 /* 6461 */ MCD::OPC_Decode, 189, 4, 64, // Opcode: DIVWE /* 6465 */ MCD::OPC_FilterValue, 3, 79, 41, 0, // Skip to: 17045 /* 6470 */ MCD::OPC_Decode, 196, 4, 64, // Opcode: DIVWE_rec /* 6474 */ MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 6500 /* 6479 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6482 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6491 /* 6487 */ MCD::OPC_Decode, 199, 4, 64, // Opcode: DIVWU /* 6491 */ MCD::OPC_FilterValue, 3, 53, 41, 0, // Skip to: 17045 /* 6496 */ MCD::OPC_Decode, 202, 4, 64, // Opcode: DIVWU_rec /* 6500 */ MCD::OPC_FilterValue, 15, 21, 0, 0, // Skip to: 6526 /* 6505 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6508 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6517 /* 6513 */ MCD::OPC_Decode, 188, 4, 64, // Opcode: DIVW /* 6517 */ MCD::OPC_FilterValue, 3, 27, 41, 0, // Skip to: 17045 /* 6522 */ MCD::OPC_Decode, 203, 4, 64, // Opcode: DIVW_rec /* 6526 */ MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 6552 /* 6531 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6534 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6543 /* 6539 */ MCD::OPC_Decode, 142, 2, 64, // Opcode: ADDCO /* 6543 */ MCD::OPC_FilterValue, 1, 1, 41, 0, // Skip to: 17045 /* 6548 */ MCD::OPC_Decode, 143, 2, 64, // Opcode: ADDCO_rec /* 6552 */ MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 6578 /* 6557 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6560 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6569 /* 6565 */ MCD::OPC_Decode, 150, 2, 64, // Opcode: ADDEO /* 6569 */ MCD::OPC_FilterValue, 1, 231, 40, 0, // Skip to: 17045 /* 6574 */ MCD::OPC_Decode, 151, 2, 64, // Opcode: ADDEO_rec /* 6578 */ MCD::OPC_FilterValue, 22, 35, 0, 0, // Skip to: 6618 /* 6583 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6586 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6602 /* 6591 */ MCD::OPC_CheckField, 11, 5, 0, 207, 40, 0, // Skip to: 17045 /* 6598 */ MCD::OPC_Decode, 192, 2, 66, // Opcode: ADDZEO /* 6602 */ MCD::OPC_FilterValue, 1, 198, 40, 0, // Skip to: 17045 /* 6607 */ MCD::OPC_CheckField, 11, 5, 0, 191, 40, 0, // Skip to: 17045 /* 6614 */ MCD::OPC_Decode, 193, 2, 66, // Opcode: ADDZEO_rec /* 6618 */ MCD::OPC_FilterValue, 23, 53, 0, 0, // Skip to: 6676 /* 6623 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6626 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6642 /* 6631 */ MCD::OPC_CheckField, 11, 5, 0, 167, 40, 0, // Skip to: 17045 /* 6638 */ MCD::OPC_Decode, 183, 2, 66, // Opcode: ADDMEO /* 6642 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 6658 /* 6647 */ MCD::OPC_CheckField, 11, 5, 0, 151, 40, 0, // Skip to: 17045 /* 6654 */ MCD::OPC_Decode, 184, 2, 66, // Opcode: ADDMEO_rec /* 6658 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6667 /* 6663 */ MCD::OPC_Decode, 208, 9, 64, // Opcode: MULLWO /* 6667 */ MCD::OPC_FilterValue, 3, 133, 40, 0, // Skip to: 17045 /* 6672 */ MCD::OPC_Decode, 209, 9, 64, // Opcode: MULLWO_rec /* 6676 */ MCD::OPC_FilterValue, 24, 30, 0, 0, // Skip to: 6711 /* 6681 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6684 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6693 /* 6689 */ MCD::OPC_Decode, 255, 1, 64, // Opcode: ADD4O /* 6693 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 6702 /* 6698 */ MCD::OPC_Decode, 128, 2, 64, // Opcode: ADD4O_rec /* 6702 */ MCD::OPC_FilterValue, 2, 98, 40, 0, // Skip to: 17045 /* 6707 */ MCD::OPC_Decode, 152, 9, 64, // Opcode: MODSW /* 6711 */ MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 6737 /* 6716 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6719 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6728 /* 6724 */ MCD::OPC_Decode, 193, 4, 64, // Opcode: DIVWEUO /* 6728 */ MCD::OPC_FilterValue, 3, 72, 40, 0, // Skip to: 17045 /* 6733 */ MCD::OPC_Decode, 194, 4, 64, // Opcode: DIVWEUO_rec /* 6737 */ MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 6763 /* 6742 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6745 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6754 /* 6750 */ MCD::OPC_Decode, 190, 4, 64, // Opcode: DIVWEO /* 6754 */ MCD::OPC_FilterValue, 3, 46, 40, 0, // Skip to: 17045 /* 6759 */ MCD::OPC_Decode, 191, 4, 64, // Opcode: DIVWEO_rec /* 6763 */ MCD::OPC_FilterValue, 30, 21, 0, 0, // Skip to: 6789 /* 6768 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6771 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6780 /* 6776 */ MCD::OPC_Decode, 200, 4, 64, // Opcode: DIVWUO /* 6780 */ MCD::OPC_FilterValue, 3, 20, 40, 0, // Skip to: 17045 /* 6785 */ MCD::OPC_Decode, 201, 4, 64, // Opcode: DIVWUO_rec /* 6789 */ MCD::OPC_FilterValue, 31, 11, 40, 0, // Skip to: 17045 /* 6794 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 6797 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 6806 /* 6802 */ MCD::OPC_Decode, 197, 4, 64, // Opcode: DIVWO /* 6806 */ MCD::OPC_FilterValue, 3, 250, 39, 0, // Skip to: 17045 /* 6811 */ MCD::OPC_Decode, 198, 4, 64, // Opcode: DIVWO_rec /* 6815 */ MCD::OPC_FilterValue, 6, 143, 1, 0, // Skip to: 7219 /* 6820 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 6823 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 6839 /* 6828 */ MCD::OPC_CheckField, 1, 1, 0, 226, 39, 0, // Skip to: 17045 /* 6835 */ MCD::OPC_Decode, 224, 8, 67, // Opcode: LXSIWZX /* 6839 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 6855 /* 6844 */ MCD::OPC_CheckField, 1, 1, 0, 210, 39, 0, // Skip to: 17045 /* 6851 */ MCD::OPC_Decode, 223, 8, 67, // Opcode: LXSIWAX /* 6855 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 6871 /* 6860 */ MCD::OPC_CheckField, 1, 1, 0, 194, 39, 0, // Skip to: 17045 /* 6867 */ MCD::OPC_Decode, 220, 12, 67, // Opcode: STXSIWX /* 6871 */ MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 6897 /* 6876 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 6879 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6888 /* 6884 */ MCD::OPC_Decode, 236, 8, 68, // Opcode: LXVX /* 6888 */ MCD::OPC_FilterValue, 1, 168, 39, 0, // Skip to: 17045 /* 6893 */ MCD::OPC_Decode, 232, 8, 69, // Opcode: LXVL /* 6897 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 6913 /* 6902 */ MCD::OPC_CheckField, 1, 1, 1, 152, 39, 0, // Skip to: 17045 /* 6909 */ MCD::OPC_Decode, 233, 8, 69, // Opcode: LXVLL /* 6913 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 6929 /* 6918 */ MCD::OPC_CheckField, 1, 1, 0, 136, 39, 0, // Skip to: 17045 /* 6925 */ MCD::OPC_Decode, 230, 8, 68, // Opcode: LXVDSX /* 6929 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 6945 /* 6934 */ MCD::OPC_CheckField, 1, 1, 0, 120, 39, 0, // Skip to: 17045 /* 6941 */ MCD::OPC_Decode, 235, 8, 68, // Opcode: LXVWSX /* 6945 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 6971 /* 6950 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 6953 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 6962 /* 6958 */ MCD::OPC_Decode, 230, 12, 68, // Opcode: STXVX /* 6962 */ MCD::OPC_FilterValue, 1, 94, 39, 0, // Skip to: 17045 /* 6967 */ MCD::OPC_Decode, 227, 12, 69, // Opcode: STXVL /* 6971 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 6987 /* 6976 */ MCD::OPC_CheckField, 1, 1, 1, 78, 39, 0, // Skip to: 17045 /* 6983 */ MCD::OPC_Decode, 228, 12, 69, // Opcode: STXVLL /* 6987 */ MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 7003 /* 6992 */ MCD::OPC_CheckField, 1, 1, 0, 62, 39, 0, // Skip to: 17045 /* 6999 */ MCD::OPC_Decode, 226, 8, 70, // Opcode: LXSSPX /* 7003 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 7019 /* 7008 */ MCD::OPC_CheckField, 1, 1, 0, 46, 39, 0, // Skip to: 17045 /* 7015 */ MCD::OPC_Decode, 220, 8, 67, // Opcode: LXSDX /* 7019 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 7035 /* 7024 */ MCD::OPC_CheckField, 1, 1, 0, 30, 39, 0, // Skip to: 17045 /* 7031 */ MCD::OPC_Decode, 222, 12, 70, // Opcode: STXSSPX /* 7035 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 7051 /* 7040 */ MCD::OPC_CheckField, 1, 1, 0, 14, 39, 0, // Skip to: 17045 /* 7047 */ MCD::OPC_Decode, 215, 12, 67, // Opcode: STXSDX /* 7051 */ MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 7077 /* 7056 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7059 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7068 /* 7064 */ MCD::OPC_Decode, 234, 8, 68, // Opcode: LXVW4X /* 7068 */ MCD::OPC_FilterValue, 1, 244, 38, 0, // Skip to: 17045 /* 7073 */ MCD::OPC_Decode, 221, 8, 67, // Opcode: LXSIBZX /* 7077 */ MCD::OPC_FilterValue, 25, 21, 0, 0, // Skip to: 7103 /* 7082 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7085 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7094 /* 7090 */ MCD::OPC_Decode, 231, 8, 68, // Opcode: LXVH8X /* 7094 */ MCD::OPC_FilterValue, 1, 218, 38, 0, // Skip to: 17045 /* 7099 */ MCD::OPC_Decode, 222, 8, 67, // Opcode: LXSIHZX /* 7103 */ MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 7119 /* 7108 */ MCD::OPC_CheckField, 1, 1, 0, 202, 38, 0, // Skip to: 17045 /* 7115 */ MCD::OPC_Decode, 229, 8, 68, // Opcode: LXVD2X /* 7119 */ MCD::OPC_FilterValue, 27, 11, 0, 0, // Skip to: 7135 /* 7124 */ MCD::OPC_CheckField, 1, 1, 0, 186, 38, 0, // Skip to: 17045 /* 7131 */ MCD::OPC_Decode, 228, 8, 68, // Opcode: LXVB16X /* 7135 */ MCD::OPC_FilterValue, 28, 21, 0, 0, // Skip to: 7161 /* 7140 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7143 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7152 /* 7148 */ MCD::OPC_Decode, 229, 12, 68, // Opcode: STXVW4X /* 7152 */ MCD::OPC_FilterValue, 1, 160, 38, 0, // Skip to: 17045 /* 7157 */ MCD::OPC_Decode, 216, 12, 67, // Opcode: STXSIBX /* 7161 */ MCD::OPC_FilterValue, 29, 21, 0, 0, // Skip to: 7187 /* 7166 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7169 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7178 /* 7174 */ MCD::OPC_Decode, 226, 12, 68, // Opcode: STXVH8X /* 7178 */ MCD::OPC_FilterValue, 1, 134, 38, 0, // Skip to: 17045 /* 7183 */ MCD::OPC_Decode, 218, 12, 67, // Opcode: STXSIHX /* 7187 */ MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 7203 /* 7192 */ MCD::OPC_CheckField, 1, 1, 0, 118, 38, 0, // Skip to: 17045 /* 7199 */ MCD::OPC_Decode, 225, 12, 68, // Opcode: STXVD2X /* 7203 */ MCD::OPC_FilterValue, 31, 109, 38, 0, // Skip to: 17045 /* 7208 */ MCD::OPC_CheckField, 1, 1, 0, 102, 38, 0, // Skip to: 17045 /* 7215 */ MCD::OPC_Decode, 224, 12, 68, // Opcode: STXVB16X /* 7219 */ MCD::OPC_FilterValue, 7, 247, 0, 0, // Skip to: 7471 /* 7224 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 7227 */ MCD::OPC_FilterValue, 0, 62, 0, 0, // Skip to: 7294 /* 7232 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 7235 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 7244 /* 7240 */ MCD::OPC_Decode, 245, 8, 71, // Opcode: MFBHRBE /* 7244 */ MCD::OPC_FilterValue, 10, 4, 0, 0, // Skip to: 7253 /* 7249 */ MCD::OPC_Decode, 136, 9, 55, // Opcode: MFPMR /* 7253 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 7269 /* 7258 */ MCD::OPC_CheckField, 11, 15, 0, 52, 38, 0, // Skip to: 17045 /* 7265 */ MCD::OPC_Decode, 238, 3, 0, // Opcode: CLRBHRB /* 7269 */ MCD::OPC_FilterValue, 14, 4, 0, 0, // Skip to: 7278 /* 7274 */ MCD::OPC_Decode, 177, 9, 72, // Opcode: MTPMR /* 7278 */ MCD::OPC_FilterValue, 22, 34, 38, 0, // Skip to: 17045 /* 7283 */ MCD::OPC_CheckField, 11, 12, 0, 27, 38, 0, // Skip to: 17045 /* 7290 */ MCD::OPC_Decode, 159, 13, 52, // Opcode: TCHECK /* 7294 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 7462 /* 7299 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 7302 */ MCD::OPC_FilterValue, 20, 18, 0, 0, // Skip to: 7325 /* 7307 */ MCD::OPC_CheckField, 22, 4, 0, 3, 38, 0, // Skip to: 17045 /* 7314 */ MCD::OPC_CheckField, 11, 10, 0, 252, 37, 0, // Skip to: 17045 /* 7321 */ MCD::OPC_Decode, 157, 13, 73, // Opcode: TBEGIN /* 7325 */ MCD::OPC_FilterValue, 21, 11, 0, 0, // Skip to: 7341 /* 7330 */ MCD::OPC_CheckField, 11, 14, 0, 236, 37, 0, // Skip to: 17045 /* 7337 */ MCD::OPC_Decode, 169, 13, 74, // Opcode: TEND /* 7341 */ MCD::OPC_FilterValue, 23, 18, 0, 0, // Skip to: 7364 /* 7346 */ MCD::OPC_CheckField, 22, 3, 0, 220, 37, 0, // Skip to: 17045 /* 7353 */ MCD::OPC_CheckField, 11, 10, 0, 213, 37, 0, // Skip to: 17045 /* 7360 */ MCD::OPC_Decode, 187, 13, 73, // Opcode: TSR /* 7364 */ MCD::OPC_FilterValue, 24, 4, 0, 0, // Skip to: 7373 /* 7369 */ MCD::OPC_Decode, 149, 13, 56, // Opcode: TABORTWC /* 7373 */ MCD::OPC_FilterValue, 25, 4, 0, 0, // Skip to: 7382 /* 7378 */ MCD::OPC_Decode, 147, 13, 56, // Opcode: TABORTDC /* 7382 */ MCD::OPC_FilterValue, 26, 4, 0, 0, // Skip to: 7391 /* 7387 */ MCD::OPC_Decode, 150, 13, 75, // Opcode: TABORTWCI /* 7391 */ MCD::OPC_FilterValue, 27, 4, 0, 0, // Skip to: 7400 /* 7396 */ MCD::OPC_Decode, 148, 13, 75, // Opcode: TABORTDCI /* 7400 */ MCD::OPC_FilterValue, 28, 18, 0, 0, // Skip to: 7423 /* 7405 */ MCD::OPC_CheckField, 21, 5, 0, 161, 37, 0, // Skip to: 17045 /* 7412 */ MCD::OPC_CheckField, 11, 5, 0, 154, 37, 0, // Skip to: 17045 /* 7419 */ MCD::OPC_Decode, 146, 13, 76, // Opcode: TABORT /* 7423 */ MCD::OPC_FilterValue, 29, 18, 0, 0, // Skip to: 7446 /* 7428 */ MCD::OPC_CheckField, 21, 5, 0, 138, 37, 0, // Skip to: 17045 /* 7435 */ MCD::OPC_CheckField, 11, 5, 0, 131, 37, 0, // Skip to: 17045 /* 7442 */ MCD::OPC_Decode, 186, 13, 76, // Opcode: TRECLAIM /* 7446 */ MCD::OPC_FilterValue, 31, 122, 37, 0, // Skip to: 17045 /* 7451 */ MCD::OPC_CheckField, 11, 15, 0, 115, 37, 0, // Skip to: 17045 /* 7458 */ MCD::OPC_Decode, 185, 13, 0, // Opcode: TRECHKPT /* 7462 */ MCD::OPC_FilterValue, 2, 106, 37, 0, // Skip to: 17045 /* 7467 */ MCD::OPC_Decode, 235, 7, 77, // Opcode: ISEL /* 7471 */ MCD::OPC_FilterValue, 8, 49, 0, 0, // Skip to: 7525 /* 7476 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... /* 7479 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7502 /* 7484 */ MCD::OPC_CheckField, 6, 6, 4, 82, 37, 0, // Skip to: 17045 /* 7491 */ MCD::OPC_CheckField, 0, 2, 0, 75, 37, 0, // Skip to: 17045 /* 7498 */ MCD::OPC_Decode, 157, 9, 78, // Opcode: MTCRF /* 7502 */ MCD::OPC_FilterValue, 1, 66, 37, 0, // Skip to: 17045 /* 7507 */ MCD::OPC_CheckField, 6, 6, 4, 59, 37, 0, // Skip to: 17045 /* 7514 */ MCD::OPC_CheckField, 0, 2, 0, 52, 37, 0, // Skip to: 17045 /* 7521 */ MCD::OPC_Decode, 175, 9, 79, // Opcode: MTOCRF /* 7525 */ MCD::OPC_FilterValue, 9, 65, 3, 0, // Skip to: 8363 /* 7530 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 7533 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 7587 /* 7538 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... /* 7541 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7564 /* 7546 */ MCD::OPC_CheckField, 11, 9, 0, 20, 37, 0, // Skip to: 17045 /* 7553 */ MCD::OPC_CheckField, 0, 2, 2, 13, 37, 0, // Skip to: 17045 /* 7560 */ MCD::OPC_Decode, 246, 8, 53, // Opcode: MFCR /* 7564 */ MCD::OPC_FilterValue, 1, 4, 37, 0, // Skip to: 17045 /* 7569 */ MCD::OPC_CheckField, 11, 1, 0, 253, 36, 0, // Skip to: 17045 /* 7576 */ MCD::OPC_CheckField, 0, 2, 2, 246, 36, 0, // Skip to: 17045 /* 7583 */ MCD::OPC_Decode, 134, 9, 80, // Opcode: MFOCRF /* 7587 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 7610 /* 7592 */ MCD::OPC_CheckField, 11, 5, 0, 230, 36, 0, // Skip to: 17045 /* 7599 */ MCD::OPC_CheckField, 1, 1, 1, 223, 36, 0, // Skip to: 17045 /* 7606 */ MCD::OPC_Decode, 148, 9, 81, // Opcode: MFVSRD /* 7610 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 7633 /* 7615 */ MCD::OPC_CheckField, 11, 10, 0, 207, 36, 0, // Skip to: 17045 /* 7622 */ MCD::OPC_CheckField, 0, 2, 2, 200, 36, 0, // Skip to: 17045 /* 7629 */ MCD::OPC_Decode, 133, 9, 53, // Opcode: MFMSR /* 7633 */ MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 7656 /* 7638 */ MCD::OPC_CheckField, 11, 5, 0, 184, 36, 0, // Skip to: 17045 /* 7645 */ MCD::OPC_CheckField, 1, 1, 1, 177, 36, 0, // Skip to: 17045 /* 7652 */ MCD::OPC_Decode, 150, 9, 82, // Opcode: MFVSRWZ /* 7656 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 7672 /* 7661 */ MCD::OPC_CheckField, 1, 1, 0, 161, 36, 0, // Skip to: 17045 /* 7668 */ MCD::OPC_Decode, 173, 9, 83, // Opcode: MTMSR /* 7672 */ MCD::OPC_FilterValue, 5, 28, 0, 0, // Skip to: 7705 /* 7677 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7680 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7689 /* 7685 */ MCD::OPC_Decode, 174, 9, 83, // Opcode: MTMSRD /* 7689 */ MCD::OPC_FilterValue, 1, 135, 36, 0, // Skip to: 17045 /* 7694 */ MCD::OPC_CheckField, 11, 5, 0, 128, 36, 0, // Skip to: 17045 /* 7701 */ MCD::OPC_Decode, 188, 9, 84, // Opcode: MTVSRD /* 7705 */ MCD::OPC_FilterValue, 6, 28, 0, 0, // Skip to: 7738 /* 7710 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7713 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7722 /* 7718 */ MCD::OPC_Decode, 180, 9, 85, // Opcode: MTSR /* 7722 */ MCD::OPC_FilterValue, 1, 102, 36, 0, // Skip to: 17045 /* 7727 */ MCD::OPC_CheckField, 11, 5, 0, 95, 36, 0, // Skip to: 17045 /* 7734 */ MCD::OPC_Decode, 190, 9, 86, // Opcode: MTVSRWA /* 7738 */ MCD::OPC_FilterValue, 7, 28, 0, 0, // Skip to: 7771 /* 7743 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7746 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 7755 /* 7751 */ MCD::OPC_Decode, 181, 9, 87, // Opcode: MTSRIN /* 7755 */ MCD::OPC_FilterValue, 1, 69, 36, 0, // Skip to: 17045 /* 7760 */ MCD::OPC_CheckField, 11, 5, 0, 62, 36, 0, // Skip to: 17045 /* 7767 */ MCD::OPC_Decode, 192, 9, 86, // Opcode: MTVSRWZ /* 7771 */ MCD::OPC_FilterValue, 8, 18, 0, 0, // Skip to: 7794 /* 7776 */ MCD::OPC_CheckField, 16, 10, 0, 46, 36, 0, // Skip to: 17045 /* 7783 */ MCD::OPC_CheckField, 0, 2, 0, 39, 36, 0, // Skip to: 17045 /* 7790 */ MCD::OPC_Decode, 172, 13, 88, // Opcode: TLBIEL /* 7794 */ MCD::OPC_FilterValue, 9, 42, 0, 0, // Skip to: 7841 /* 7799 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7802 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7825 /* 7807 */ MCD::OPC_CheckField, 16, 5, 0, 15, 36, 0, // Skip to: 17045 /* 7814 */ MCD::OPC_CheckField, 0, 1, 0, 8, 36, 0, // Skip to: 17045 /* 7821 */ MCD::OPC_Decode, 171, 13, 87, // Opcode: TLBIE /* 7825 */ MCD::OPC_FilterValue, 1, 255, 35, 0, // Skip to: 17045 /* 7830 */ MCD::OPC_CheckField, 11, 5, 0, 248, 35, 0, // Skip to: 17045 /* 7837 */ MCD::OPC_Decode, 149, 9, 89, // Opcode: MFVSRLD /* 7841 */ MCD::OPC_FilterValue, 10, 51, 0, 0, // Skip to: 7897 /* 7846 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 7849 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 7865 /* 7854 */ MCD::OPC_CheckField, 11, 15, 0, 224, 35, 0, // Skip to: 17045 /* 7861 */ MCD::OPC_Decode, 240, 11, 0, // Opcode: SLBSYNC /* 7865 */ MCD::OPC_FilterValue, 2, 215, 35, 0, // Skip to: 17045 /* 7870 */ MCD::OPC_ExtractField, 11, 10, // Inst{20-11} ... /* 7873 */ MCD::OPC_FilterValue, 128, 2, 4, 0, 0, // Skip to: 7883 /* 7879 */ MCD::OPC_Decode, 131, 9, 53, // Opcode: MFLR /* 7883 */ MCD::OPC_FilterValue, 160, 2, 4, 0, 0, // Skip to: 7893 /* 7889 */ MCD::OPC_Decode, 248, 8, 53, // Opcode: MFCTR /* 7893 */ MCD::OPC_Decode, 137, 9, 55, // Opcode: MFSPR /* 7897 */ MCD::OPC_FilterValue, 11, 28, 0, 0, // Skip to: 7930 /* 7902 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 7905 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 7921 /* 7910 */ MCD::OPC_CheckField, 11, 15, 0, 168, 35, 0, // Skip to: 17045 /* 7917 */ MCD::OPC_Decode, 170, 13, 0, // Opcode: TLBIA /* 7921 */ MCD::OPC_FilterValue, 2, 159, 35, 0, // Skip to: 17045 /* 7926 */ MCD::OPC_Decode, 141, 9, 55, // Opcode: MFTB /* 7930 */ MCD::OPC_FilterValue, 12, 42, 0, 0, // Skip to: 7977 /* 7935 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7938 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 7961 /* 7943 */ MCD::OPC_CheckField, 16, 5, 0, 135, 35, 0, // Skip to: 17045 /* 7950 */ MCD::OPC_CheckField, 0, 1, 0, 128, 35, 0, // Skip to: 17045 /* 7957 */ MCD::OPC_Decode, 239, 11, 87, // Opcode: SLBMTE /* 7961 */ MCD::OPC_FilterValue, 1, 119, 35, 0, // Skip to: 17045 /* 7966 */ MCD::OPC_CheckField, 11, 5, 0, 112, 35, 0, // Skip to: 17045 /* 7973 */ MCD::OPC_Decode, 191, 9, 90, // Opcode: MTVSRWS /* 7977 */ MCD::OPC_FilterValue, 13, 35, 0, 0, // Skip to: 8017 /* 7982 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 7985 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 8008 /* 7990 */ MCD::OPC_CheckField, 16, 10, 0, 88, 35, 0, // Skip to: 17045 /* 7997 */ MCD::OPC_CheckField, 0, 1, 0, 81, 35, 0, // Skip to: 17045 /* 8004 */ MCD::OPC_Decode, 235, 11, 88, // Opcode: SLBIE /* 8008 */ MCD::OPC_FilterValue, 1, 72, 35, 0, // Skip to: 17045 /* 8013 */ MCD::OPC_Decode, 189, 9, 91, // Opcode: MTVSRDD /* 8017 */ MCD::OPC_FilterValue, 14, 51, 0, 0, // Skip to: 8073 /* 8022 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8025 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8041 /* 8030 */ MCD::OPC_CheckField, 16, 5, 0, 48, 35, 0, // Skip to: 17045 /* 8037 */ MCD::OPC_Decode, 236, 11, 87, // Opcode: SLBIEG /* 8041 */ MCD::OPC_FilterValue, 2, 39, 35, 0, // Skip to: 17045 /* 8046 */ MCD::OPC_ExtractField, 11, 10, // Inst{20-11} ... /* 8049 */ MCD::OPC_FilterValue, 128, 2, 4, 0, 0, // Skip to: 8059 /* 8055 */ MCD::OPC_Decode, 171, 9, 53, // Opcode: MTLR /* 8059 */ MCD::OPC_FilterValue, 160, 2, 4, 0, 0, // Skip to: 8069 /* 8065 */ MCD::OPC_Decode, 159, 9, 53, // Opcode: MTCTR /* 8069 */ MCD::OPC_Decode, 178, 9, 72, // Opcode: MTSPR /* 8073 */ MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 8096 /* 8078 */ MCD::OPC_CheckField, 11, 15, 0, 0, 35, 0, // Skip to: 17045 /* 8085 */ MCD::OPC_CheckField, 0, 2, 0, 249, 34, 0, // Skip to: 17045 /* 8092 */ MCD::OPC_Decode, 234, 11, 0, // Opcode: SLBIA /* 8096 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 8112 /* 8101 */ MCD::OPC_CheckField, 1, 1, 1, 233, 34, 0, // Skip to: 17045 /* 8108 */ MCD::OPC_Decode, 139, 9, 85, // Opcode: MFSR /* 8112 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 8128 /* 8117 */ MCD::OPC_CheckField, 1, 1, 1, 217, 34, 0, // Skip to: 17045 /* 8124 */ MCD::OPC_Decode, 140, 9, 87, // Opcode: MFSRIN /* 8128 */ MCD::OPC_FilterValue, 23, 25, 0, 0, // Skip to: 8158 /* 8133 */ MCD::OPC_CheckField, 18, 3, 0, 201, 34, 0, // Skip to: 17045 /* 8140 */ MCD::OPC_CheckField, 11, 5, 0, 194, 34, 0, // Skip to: 17045 /* 8147 */ MCD::OPC_CheckField, 0, 2, 2, 187, 34, 0, // Skip to: 17045 /* 8154 */ MCD::OPC_Decode, 156, 4, 92, // Opcode: DARN /* 8158 */ MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 8181 /* 8163 */ MCD::OPC_CheckField, 21, 5, 0, 171, 34, 0, // Skip to: 17045 /* 8170 */ MCD::OPC_CheckField, 0, 2, 0, 164, 34, 0, // Skip to: 17045 /* 8177 */ MCD::OPC_Decode, 173, 13, 60, // Opcode: TLBIVAX /* 8181 */ MCD::OPC_FilterValue, 26, 18, 0, 0, // Skip to: 8204 /* 8186 */ MCD::OPC_CheckField, 16, 5, 0, 148, 34, 0, // Skip to: 17045 /* 8193 */ MCD::OPC_CheckField, 0, 2, 2, 141, 34, 0, // Skip to: 17045 /* 8200 */ MCD::OPC_Decode, 238, 11, 87, // Opcode: SLBMFEV /* 8204 */ MCD::OPC_FilterValue, 28, 48, 0, 0, // Skip to: 8257 /* 8209 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8212 */ MCD::OPC_FilterValue, 0, 15, 0, 0, // Skip to: 8232 /* 8217 */ MCD::OPC_CheckField, 21, 5, 0, 4, 0, 0, // Skip to: 8228 /* 8224 */ MCD::OPC_Decode, 178, 13, 60, // Opcode: TLBSX /* 8228 */ MCD::OPC_Decode, 179, 13, 64, // Opcode: TLBSX2 /* 8232 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8241 /* 8237 */ MCD::OPC_Decode, 180, 13, 64, // Opcode: TLBSX2D /* 8241 */ MCD::OPC_FilterValue, 2, 95, 34, 0, // Skip to: 17045 /* 8246 */ MCD::OPC_CheckField, 16, 5, 0, 88, 34, 0, // Skip to: 17045 /* 8253 */ MCD::OPC_Decode, 237, 11, 87, // Opcode: SLBMFEE /* 8257 */ MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 8285 /* 8262 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8265 */ MCD::OPC_FilterValue, 0, 71, 34, 0, // Skip to: 17045 /* 8270 */ MCD::OPC_CheckField, 11, 15, 0, 4, 0, 0, // Skip to: 8281 /* 8277 */ MCD::OPC_Decode, 176, 13, 0, // Opcode: TLBRE /* 8281 */ MCD::OPC_Decode, 177, 13, 93, // Opcode: TLBRE2 /* 8285 */ MCD::OPC_FilterValue, 30, 50, 0, 0, // Skip to: 8340 /* 8290 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8293 */ MCD::OPC_FilterValue, 0, 26, 0, 0, // Skip to: 8324 /* 8298 */ MCD::OPC_CheckField, 11, 15, 0, 4, 0, 0, // Skip to: 8309 /* 8305 */ MCD::OPC_Decode, 182, 13, 0, // Opcode: TLBWE /* 8309 */ MCD::OPC_CheckField, 16, 10, 0, 4, 0, 0, // Skip to: 8320 /* 8316 */ MCD::OPC_Decode, 174, 13, 88, // Opcode: TLBLD /* 8320 */ MCD::OPC_Decode, 183, 13, 93, // Opcode: TLBWE2 /* 8324 */ MCD::OPC_FilterValue, 3, 12, 34, 0, // Skip to: 17045 /* 8329 */ MCD::OPC_CheckField, 16, 5, 0, 5, 34, 0, // Skip to: 17045 /* 8336 */ MCD::OPC_Decode, 233, 11, 87, // Opcode: SLBFEE_rec /* 8340 */ MCD::OPC_FilterValue, 31, 252, 33, 0, // Skip to: 17045 /* 8345 */ MCD::OPC_CheckField, 16, 10, 0, 245, 33, 0, // Skip to: 17045 /* 8352 */ MCD::OPC_CheckField, 0, 2, 0, 238, 33, 0, // Skip to: 17045 /* 8359 */ MCD::OPC_Decode, 175, 13, 88, // Opcode: TLBLI /* 8363 */ MCD::OPC_FilterValue, 10, 141, 1, 0, // Skip to: 8765 /* 8368 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 8371 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 8406 /* 8376 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8379 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8388 /* 8384 */ MCD::OPC_Decode, 195, 8, 94, // Opcode: LWARX /* 8388 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8397 /* 8393 */ MCD::OPC_Decode, 196, 8, 94, // Opcode: LWARXL /* 8397 */ MCD::OPC_FilterValue, 2, 195, 33, 0, // Skip to: 17045 /* 8402 */ MCD::OPC_Decode, 135, 8, 95, // Opcode: LDX /* 8406 */ MCD::OPC_FilterValue, 1, 30, 0, 0, // Skip to: 8441 /* 8411 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8414 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8423 /* 8419 */ MCD::OPC_Decode, 239, 7, 94, // Opcode: LBARX /* 8423 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8432 /* 8428 */ MCD::OPC_Decode, 240, 7, 94, // Opcode: LBARXL /* 8432 */ MCD::OPC_FilterValue, 2, 160, 33, 0, // Skip to: 17045 /* 8437 */ MCD::OPC_Decode, 134, 8, 96, // Opcode: LDUX /* 8441 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 8467 /* 8446 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8449 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8458 /* 8454 */ MCD::OPC_Decode, 255, 7, 95, // Opcode: LDARX /* 8458 */ MCD::OPC_FilterValue, 1, 134, 33, 0, // Skip to: 17045 /* 8463 */ MCD::OPC_Decode, 128, 8, 95, // Opcode: LDARXL /* 8467 */ MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 8493 /* 8472 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8475 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8484 /* 8480 */ MCD::OPC_Decode, 158, 8, 94, // Opcode: LHARX /* 8484 */ MCD::OPC_FilterValue, 1, 108, 33, 0, // Skip to: 17045 /* 8489 */ MCD::OPC_Decode, 159, 8, 94, // Opcode: LHARXL /* 8493 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 8509 /* 8498 */ MCD::OPC_CheckField, 0, 2, 2, 92, 33, 0, // Skip to: 17045 /* 8505 */ MCD::OPC_Decode, 162, 12, 95, // Opcode: STDX /* 8509 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 8525 /* 8514 */ MCD::OPC_CheckField, 0, 2, 2, 76, 33, 0, // Skip to: 17045 /* 8521 */ MCD::OPC_Decode, 161, 12, 97, // Opcode: STDUX /* 8525 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 8541 /* 8530 */ MCD::OPC_CheckField, 0, 2, 2, 60, 33, 0, // Skip to: 17045 /* 8537 */ MCD::OPC_Decode, 132, 8, 95, // Opcode: LDMX /* 8541 */ MCD::OPC_FilterValue, 10, 11, 0, 0, // Skip to: 8557 /* 8546 */ MCD::OPC_CheckField, 0, 2, 2, 44, 33, 0, // Skip to: 17045 /* 8553 */ MCD::OPC_Decode, 199, 8, 95, // Opcode: LWAX /* 8557 */ MCD::OPC_FilterValue, 11, 11, 0, 0, // Skip to: 8573 /* 8562 */ MCD::OPC_CheckField, 0, 2, 2, 28, 33, 0, // Skip to: 17045 /* 8569 */ MCD::OPC_Decode, 198, 8, 96, // Opcode: LWAUX /* 8573 */ MCD::OPC_FilterValue, 16, 11, 0, 0, // Skip to: 8589 /* 8578 */ MCD::OPC_CheckField, 0, 2, 0, 12, 33, 0, // Skip to: 17045 /* 8585 */ MCD::OPC_Decode, 130, 8, 95, // Opcode: LDBRX /* 8589 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 8605 /* 8594 */ MCD::OPC_CheckField, 0, 2, 2, 252, 32, 0, // Skip to: 17045 /* 8601 */ MCD::OPC_Decode, 186, 8, 61, // Opcode: LSWI /* 8605 */ MCD::OPC_FilterValue, 20, 11, 0, 0, // Skip to: 8621 /* 8610 */ MCD::OPC_CheckField, 0, 2, 0, 236, 32, 0, // Skip to: 17045 /* 8617 */ MCD::OPC_Decode, 157, 12, 95, // Opcode: STDBRX /* 8621 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 8637 /* 8626 */ MCD::OPC_CheckField, 0, 2, 2, 220, 32, 0, // Skip to: 17045 /* 8633 */ MCD::OPC_Decode, 192, 12, 61, // Opcode: STSWI /* 8637 */ MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 8653 /* 8642 */ MCD::OPC_CheckField, 0, 2, 2, 204, 32, 0, // Skip to: 17045 /* 8649 */ MCD::OPC_Decode, 207, 8, 64, // Opcode: LWZCIX /* 8653 */ MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 8669 /* 8658 */ MCD::OPC_CheckField, 0, 2, 2, 188, 32, 0, // Skip to: 17045 /* 8665 */ MCD::OPC_Decode, 171, 8, 64, // Opcode: LHZCIX /* 8669 */ MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 8685 /* 8674 */ MCD::OPC_CheckField, 0, 2, 2, 172, 32, 0, // Skip to: 17045 /* 8681 */ MCD::OPC_Decode, 244, 7, 64, // Opcode: LBZCIX /* 8685 */ MCD::OPC_FilterValue, 27, 11, 0, 0, // Skip to: 8701 /* 8690 */ MCD::OPC_CheckField, 0, 2, 2, 156, 32, 0, // Skip to: 17045 /* 8697 */ MCD::OPC_Decode, 131, 8, 64, // Opcode: LDCIX /* 8701 */ MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 8717 /* 8706 */ MCD::OPC_CheckField, 0, 2, 2, 140, 32, 0, // Skip to: 17045 /* 8713 */ MCD::OPC_Decode, 202, 12, 64, // Opcode: STWCIX /* 8717 */ MCD::OPC_FilterValue, 29, 11, 0, 0, // Skip to: 8733 /* 8722 */ MCD::OPC_CheckField, 0, 2, 2, 124, 32, 0, // Skip to: 17045 /* 8729 */ MCD::OPC_Decode, 178, 12, 64, // Opcode: STHCIX /* 8733 */ MCD::OPC_FilterValue, 30, 11, 0, 0, // Skip to: 8749 /* 8738 */ MCD::OPC_CheckField, 0, 2, 2, 108, 32, 0, // Skip to: 17045 /* 8745 */ MCD::OPC_Decode, 143, 12, 64, // Opcode: STBCIX /* 8749 */ MCD::OPC_FilterValue, 31, 99, 32, 0, // Skip to: 17045 /* 8754 */ MCD::OPC_CheckField, 0, 2, 2, 92, 32, 0, // Skip to: 17045 /* 8761 */ MCD::OPC_Decode, 158, 12, 64, // Opcode: STDCIX /* 8765 */ MCD::OPC_FilterValue, 11, 89, 3, 0, // Skip to: 9627 /* 8770 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 8773 */ MCD::OPC_FilterValue, 0, 28, 0, 0, // Skip to: 8806 /* 8778 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8781 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8797 /* 8786 */ MCD::OPC_CheckField, 25, 1, 0, 60, 32, 0, // Skip to: 17045 /* 8793 */ MCD::OPC_Decode, 232, 7, 59, // Opcode: ICBT /* 8797 */ MCD::OPC_FilterValue, 2, 51, 32, 0, // Skip to: 17045 /* 8802 */ MCD::OPC_Decode, 212, 8, 94, // Opcode: LWZX /* 8806 */ MCD::OPC_FilterValue, 1, 28, 0, 0, // Skip to: 8839 /* 8811 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8814 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 8830 /* 8819 */ MCD::OPC_CheckField, 21, 5, 0, 27, 32, 0, // Skip to: 17045 /* 8826 */ MCD::OPC_Decode, 161, 4, 98, // Opcode: DCBST /* 8830 */ MCD::OPC_FilterValue, 2, 18, 32, 0, // Skip to: 17045 /* 8835 */ MCD::OPC_Decode, 210, 8, 99, // Opcode: LWZUX /* 8839 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 8865 /* 8844 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8847 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8856 /* 8852 */ MCD::OPC_Decode, 158, 4, 100, // Opcode: DCBF /* 8856 */ MCD::OPC_FilterValue, 2, 248, 31, 0, // Skip to: 17045 /* 8861 */ MCD::OPC_Decode, 249, 7, 94, // Opcode: LBZX /* 8865 */ MCD::OPC_FilterValue, 3, 11, 0, 0, // Skip to: 8881 /* 8870 */ MCD::OPC_CheckField, 0, 2, 2, 232, 31, 0, // Skip to: 17045 /* 8877 */ MCD::OPC_Decode, 247, 7, 99, // Opcode: LBZUX /* 8881 */ MCD::OPC_FilterValue, 4, 21, 0, 0, // Skip to: 8907 /* 8886 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8889 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8898 /* 8894 */ MCD::OPC_Decode, 203, 12, 94, // Opcode: STWCX /* 8898 */ MCD::OPC_FilterValue, 2, 206, 31, 0, // Skip to: 17045 /* 8903 */ MCD::OPC_Decode, 209, 12, 94, // Opcode: STWX /* 8907 */ MCD::OPC_FilterValue, 5, 11, 0, 0, // Skip to: 8923 /* 8912 */ MCD::OPC_CheckField, 0, 2, 2, 190, 31, 0, // Skip to: 17045 /* 8919 */ MCD::OPC_Decode, 207, 12, 101, // Opcode: STWUX /* 8923 */ MCD::OPC_FilterValue, 6, 21, 0, 0, // Skip to: 8949 /* 8928 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8931 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 8940 /* 8936 */ MCD::OPC_Decode, 159, 12, 95, // Opcode: STDCX /* 8940 */ MCD::OPC_FilterValue, 2, 164, 31, 0, // Skip to: 17045 /* 8945 */ MCD::OPC_Decode, 150, 12, 94, // Opcode: STBX /* 8949 */ MCD::OPC_FilterValue, 7, 21, 0, 0, // Skip to: 8975 /* 8954 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8957 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8966 /* 8962 */ MCD::OPC_Decode, 165, 4, 100, // Opcode: DCBTST /* 8966 */ MCD::OPC_FilterValue, 2, 138, 31, 0, // Skip to: 17045 /* 8971 */ MCD::OPC_Decode, 148, 12, 101, // Opcode: STBUX /* 8975 */ MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 9001 /* 8980 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 8983 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 8992 /* 8988 */ MCD::OPC_Decode, 163, 4, 100, // Opcode: DCBT /* 8992 */ MCD::OPC_FilterValue, 2, 112, 31, 0, // Skip to: 17045 /* 8997 */ MCD::OPC_Decode, 176, 8, 94, // Opcode: LHZX /* 9001 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 9017 /* 9006 */ MCD::OPC_CheckField, 0, 2, 2, 96, 31, 0, // Skip to: 17045 /* 9013 */ MCD::OPC_Decode, 174, 8, 99, // Opcode: LHZUX /* 9017 */ MCD::OPC_FilterValue, 10, 38, 0, 0, // Skip to: 9060 /* 9022 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9025 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9051 /* 9030 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... /* 9033 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9042 /* 9038 */ MCD::OPC_Decode, 206, 4, 102, // Opcode: DST /* 9042 */ MCD::OPC_FilterValue, 4, 62, 31, 0, // Skip to: 17045 /* 9047 */ MCD::OPC_Decode, 212, 4, 102, // Opcode: DSTT /* 9051 */ MCD::OPC_FilterValue, 2, 53, 31, 0, // Skip to: 17045 /* 9056 */ MCD::OPC_Decode, 164, 8, 94, // Opcode: LHAX /* 9060 */ MCD::OPC_FilterValue, 11, 38, 0, 0, // Skip to: 9103 /* 9065 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9068 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9094 /* 9073 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... /* 9076 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9085 /* 9081 */ MCD::OPC_Decode, 208, 4, 102, // Opcode: DSTST /* 9085 */ MCD::OPC_FilterValue, 4, 19, 31, 0, // Skip to: 17045 /* 9090 */ MCD::OPC_Decode, 210, 4, 102, // Opcode: DSTSTT /* 9094 */ MCD::OPC_FilterValue, 2, 10, 31, 0, // Skip to: 17045 /* 9099 */ MCD::OPC_Decode, 162, 8, 99, // Opcode: LHAUX /* 9103 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 9119 /* 9108 */ MCD::OPC_CheckField, 0, 2, 2, 250, 30, 0, // Skip to: 17045 /* 9115 */ MCD::OPC_Decode, 185, 12, 94, // Opcode: STHX /* 9119 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 9135 /* 9124 */ MCD::OPC_CheckField, 0, 2, 2, 234, 30, 0, // Skip to: 17045 /* 9131 */ MCD::OPC_Decode, 183, 12, 101, // Opcode: STHUX /* 9135 */ MCD::OPC_FilterValue, 14, 18, 0, 0, // Skip to: 9158 /* 9140 */ MCD::OPC_CheckField, 21, 5, 0, 218, 30, 0, // Skip to: 17045 /* 9147 */ MCD::OPC_CheckField, 0, 2, 0, 211, 30, 0, // Skip to: 17045 /* 9154 */ MCD::OPC_Decode, 160, 4, 98, // Opcode: DCBI /* 9158 */ MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 9184 /* 9163 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9166 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9175 /* 9171 */ MCD::OPC_Decode, 202, 8, 94, // Opcode: LWBRX /* 9175 */ MCD::OPC_FilterValue, 2, 185, 30, 0, // Skip to: 17045 /* 9180 */ MCD::OPC_Decode, 155, 8, 103, // Opcode: LFSX /* 9184 */ MCD::OPC_FilterValue, 17, 28, 0, 0, // Skip to: 9217 /* 9189 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9192 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9208 /* 9197 */ MCD::OPC_CheckField, 11, 15, 0, 161, 30, 0, // Skip to: 17045 /* 9204 */ MCD::OPC_Decode, 181, 13, 0, // Opcode: TLBSYNC /* 9208 */ MCD::OPC_FilterValue, 2, 152, 30, 0, // Skip to: 17045 /* 9213 */ MCD::OPC_Decode, 154, 8, 104, // Opcode: LFSUX /* 9217 */ MCD::OPC_FilterValue, 18, 35, 0, 0, // Skip to: 9257 /* 9222 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9225 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 9248 /* 9230 */ MCD::OPC_CheckField, 23, 3, 0, 128, 30, 0, // Skip to: 17045 /* 9237 */ MCD::OPC_CheckField, 11, 10, 0, 121, 30, 0, // Skip to: 17045 /* 9244 */ MCD::OPC_Decode, 145, 13, 105, // Opcode: SYNC /* 9248 */ MCD::OPC_FilterValue, 2, 112, 30, 0, // Skip to: 17045 /* 9253 */ MCD::OPC_Decode, 149, 8, 106, // Opcode: LFDX /* 9257 */ MCD::OPC_FilterValue, 19, 11, 0, 0, // Skip to: 9273 /* 9262 */ MCD::OPC_CheckField, 0, 2, 2, 96, 30, 0, // Skip to: 17045 /* 9269 */ MCD::OPC_Decode, 148, 8, 107, // Opcode: LFDUX /* 9273 */ MCD::OPC_FilterValue, 20, 21, 0, 0, // Skip to: 9299 /* 9278 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9281 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9290 /* 9286 */ MCD::OPC_Decode, 201, 12, 94, // Opcode: STWBRX /* 9290 */ MCD::OPC_FilterValue, 2, 70, 30, 0, // Skip to: 17045 /* 9295 */ MCD::OPC_Decode, 174, 12, 103, // Opcode: STFSX /* 9299 */ MCD::OPC_FilterValue, 21, 21, 0, 0, // Skip to: 9325 /* 9304 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9307 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 9316 /* 9312 */ MCD::OPC_Decode, 144, 12, 94, // Opcode: STBCX /* 9316 */ MCD::OPC_FilterValue, 2, 44, 30, 0, // Skip to: 17045 /* 9321 */ MCD::OPC_Decode, 173, 12, 108, // Opcode: STFSUX /* 9325 */ MCD::OPC_FilterValue, 22, 21, 0, 0, // Skip to: 9351 /* 9330 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9333 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 9342 /* 9338 */ MCD::OPC_Decode, 179, 12, 94, // Opcode: STHCX /* 9342 */ MCD::OPC_FilterValue, 2, 18, 30, 0, // Skip to: 17045 /* 9347 */ MCD::OPC_Decode, 169, 12, 106, // Opcode: STFDX /* 9351 */ MCD::OPC_FilterValue, 23, 28, 0, 0, // Skip to: 9384 /* 9356 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9359 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9375 /* 9364 */ MCD::OPC_CheckField, 21, 5, 0, 250, 29, 0, // Skip to: 17045 /* 9371 */ MCD::OPC_Decode, 157, 4, 98, // Opcode: DCBA /* 9375 */ MCD::OPC_FilterValue, 2, 241, 29, 0, // Skip to: 17045 /* 9380 */ MCD::OPC_Decode, 168, 12, 109, // Opcode: STFDUX /* 9384 */ MCD::OPC_FilterValue, 24, 11, 0, 0, // Skip to: 9400 /* 9389 */ MCD::OPC_CheckField, 0, 2, 0, 225, 29, 0, // Skip to: 17045 /* 9396 */ MCD::OPC_Decode, 166, 8, 94, // Opcode: LHBRX /* 9400 */ MCD::OPC_FilterValue, 25, 49, 0, 0, // Skip to: 9454 /* 9405 */ MCD::OPC_ExtractField, 23, 3, // Inst{25-23} ... /* 9408 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 9431 /* 9413 */ MCD::OPC_CheckField, 11, 10, 0, 201, 29, 0, // Skip to: 17045 /* 9420 */ MCD::OPC_CheckField, 0, 2, 0, 194, 29, 0, // Skip to: 17045 /* 9427 */ MCD::OPC_Decode, 204, 4, 110, // Opcode: DSS /* 9431 */ MCD::OPC_FilterValue, 4, 185, 29, 0, // Skip to: 17045 /* 9436 */ MCD::OPC_CheckField, 11, 12, 0, 178, 29, 0, // Skip to: 17045 /* 9443 */ MCD::OPC_CheckField, 0, 2, 0, 171, 29, 0, // Skip to: 17045 /* 9450 */ MCD::OPC_Decode, 205, 4, 0, // Opcode: DSSALL /* 9454 */ MCD::OPC_FilterValue, 26, 46, 0, 0, // Skip to: 9505 /* 9459 */ MCD::OPC_ExtractField, 1, 1, // Inst{1} ... /* 9462 */ MCD::OPC_FilterValue, 0, 22, 0, 0, // Skip to: 9489 /* 9467 */ MCD::OPC_CheckField, 11, 15, 0, 11, 0, 0, // Skip to: 9485 /* 9474 */ MCD::OPC_CheckField, 0, 1, 0, 4, 0, 0, // Skip to: 9485 /* 9481 */ MCD::OPC_Decode, 237, 6, 0, // Opcode: EnforceIEIO /* 9485 */ MCD::OPC_Decode, 241, 8, 111, // Opcode: MBAR /* 9489 */ MCD::OPC_FilterValue, 1, 127, 29, 0, // Skip to: 17045 /* 9494 */ MCD::OPC_CheckField, 0, 1, 0, 120, 29, 0, // Skip to: 17045 /* 9501 */ MCD::OPC_Decode, 150, 8, 106, // Opcode: LFIWAX /* 9505 */ MCD::OPC_FilterValue, 27, 28, 0, 0, // Skip to: 9538 /* 9510 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9513 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9529 /* 9518 */ MCD::OPC_CheckField, 11, 15, 0, 96, 29, 0, // Skip to: 17045 /* 9525 */ MCD::OPC_Decode, 155, 9, 0, // Opcode: MSGSYNC /* 9529 */ MCD::OPC_FilterValue, 2, 87, 29, 0, // Skip to: 17045 /* 9534 */ MCD::OPC_Decode, 151, 8, 106, // Opcode: LFIWZX /* 9538 */ MCD::OPC_FilterValue, 28, 11, 0, 0, // Skip to: 9554 /* 9543 */ MCD::OPC_CheckField, 0, 2, 0, 71, 29, 0, // Skip to: 17045 /* 9550 */ MCD::OPC_Decode, 177, 12, 94, // Opcode: STHBRX /* 9554 */ MCD::OPC_FilterValue, 30, 28, 0, 0, // Skip to: 9587 /* 9559 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9562 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9578 /* 9567 */ MCD::OPC_CheckField, 21, 5, 0, 47, 29, 0, // Skip to: 17045 /* 9574 */ MCD::OPC_Decode, 228, 7, 98, // Opcode: ICBI /* 9578 */ MCD::OPC_FilterValue, 2, 38, 29, 0, // Skip to: 17045 /* 9583 */ MCD::OPC_Decode, 170, 12, 106, // Opcode: STFIWX /* 9587 */ MCD::OPC_FilterValue, 31, 29, 29, 0, // Skip to: 17045 /* 9592 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... /* 9595 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9611 /* 9600 */ MCD::OPC_CheckField, 0, 2, 0, 14, 29, 0, // Skip to: 17045 /* 9607 */ MCD::OPC_Decode, 167, 4, 98, // Opcode: DCBZ /* 9611 */ MCD::OPC_FilterValue, 1, 5, 29, 0, // Skip to: 17045 /* 9616 */ MCD::OPC_CheckField, 0, 2, 0, 254, 28, 0, // Skip to: 17045 /* 9623 */ MCD::OPC_Decode, 169, 4, 98, // Opcode: DCBZL /* 9627 */ MCD::OPC_FilterValue, 12, 107, 0, 0, // Skip to: 9739 /* 9632 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 9635 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 9661 /* 9640 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9643 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9652 /* 9648 */ MCD::OPC_Decode, 243, 11, 112, // Opcode: SLW /* 9652 */ MCD::OPC_FilterValue, 1, 220, 28, 0, // Skip to: 17045 /* 9657 */ MCD::OPC_Decode, 246, 11, 112, // Opcode: SLW_rec /* 9661 */ MCD::OPC_FilterValue, 16, 21, 0, 0, // Skip to: 9687 /* 9666 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9669 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9678 /* 9674 */ MCD::OPC_Decode, 137, 12, 112, // Opcode: SRW /* 9678 */ MCD::OPC_FilterValue, 1, 194, 28, 0, // Skip to: 17045 /* 9683 */ MCD::OPC_Decode, 140, 12, 112, // Opcode: SRW_rec /* 9687 */ MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 9713 /* 9692 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9695 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9704 /* 9700 */ MCD::OPC_Decode, 131, 12, 112, // Opcode: SRAW /* 9704 */ MCD::OPC_FilterValue, 1, 168, 28, 0, // Skip to: 17045 /* 9709 */ MCD::OPC_Decode, 134, 12, 112, // Opcode: SRAW_rec /* 9713 */ MCD::OPC_FilterValue, 25, 159, 28, 0, // Skip to: 17045 /* 9718 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9721 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 9730 /* 9726 */ MCD::OPC_Decode, 132, 12, 113, // Opcode: SRAWI /* 9730 */ MCD::OPC_FilterValue, 1, 142, 28, 0, // Skip to: 17045 /* 9735 */ MCD::OPC_Decode, 133, 12, 113, // Opcode: SRAWI_rec /* 9739 */ MCD::OPC_FilterValue, 13, 210, 1, 0, // Skip to: 10210 /* 9744 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 9747 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 9805 /* 9752 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9755 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9771 /* 9760 */ MCD::OPC_CheckField, 11, 5, 0, 110, 28, 0, // Skip to: 17045 /* 9767 */ MCD::OPC_Decode, 254, 3, 114, // Opcode: CNTLZW /* 9771 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 9787 /* 9776 */ MCD::OPC_CheckField, 11, 5, 0, 94, 28, 0, // Skip to: 17045 /* 9783 */ MCD::OPC_Decode, 129, 4, 114, // Opcode: CNTLZW_rec /* 9787 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 9796 /* 9792 */ MCD::OPC_Decode, 241, 11, 115, // Opcode: SLD /* 9796 */ MCD::OPC_FilterValue, 3, 76, 28, 0, // Skip to: 17045 /* 9801 */ MCD::OPC_Decode, 242, 11, 115, // Opcode: SLD_rec /* 9805 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 9845 /* 9810 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9813 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9829 /* 9818 */ MCD::OPC_CheckField, 11, 5, 0, 52, 28, 0, // Skip to: 17045 /* 9825 */ MCD::OPC_Decode, 252, 3, 116, // Opcode: CNTLZD /* 9829 */ MCD::OPC_FilterValue, 1, 43, 28, 0, // Skip to: 17045 /* 9834 */ MCD::OPC_CheckField, 11, 5, 0, 36, 28, 0, // Skip to: 17045 /* 9841 */ MCD::OPC_Decode, 253, 3, 116, // Opcode: CNTLZD_rec /* 9845 */ MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 9868 /* 9850 */ MCD::OPC_CheckField, 11, 5, 0, 20, 28, 0, // Skip to: 17045 /* 9857 */ MCD::OPC_CheckField, 0, 2, 0, 13, 28, 0, // Skip to: 17045 /* 9864 */ MCD::OPC_Decode, 246, 9, 114, // Opcode: POPCNTB /* 9868 */ MCD::OPC_FilterValue, 11, 18, 0, 0, // Skip to: 9891 /* 9873 */ MCD::OPC_CheckField, 11, 5, 0, 253, 27, 0, // Skip to: 17045 /* 9880 */ MCD::OPC_CheckField, 0, 2, 0, 246, 27, 0, // Skip to: 17045 /* 9887 */ MCD::OPC_Decode, 248, 9, 114, // Opcode: POPCNTW /* 9891 */ MCD::OPC_FilterValue, 15, 18, 0, 0, // Skip to: 9914 /* 9896 */ MCD::OPC_CheckField, 11, 5, 0, 230, 27, 0, // Skip to: 17045 /* 9903 */ MCD::OPC_CheckField, 0, 2, 0, 223, 27, 0, // Skip to: 17045 /* 9910 */ MCD::OPC_Decode, 247, 9, 116, // Opcode: POPCNTD /* 9914 */ MCD::OPC_FilterValue, 16, 53, 0, 0, // Skip to: 9972 /* 9919 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9922 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9938 /* 9927 */ MCD::OPC_CheckField, 11, 5, 0, 199, 27, 0, // Skip to: 17045 /* 9934 */ MCD::OPC_Decode, 132, 4, 114, // Opcode: CNTTZW /* 9938 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 9954 /* 9943 */ MCD::OPC_CheckField, 11, 5, 0, 183, 27, 0, // Skip to: 17045 /* 9950 */ MCD::OPC_Decode, 135, 4, 114, // Opcode: CNTTZW_rec /* 9954 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 9963 /* 9959 */ MCD::OPC_Decode, 135, 12, 115, // Opcode: SRD /* 9963 */ MCD::OPC_FilterValue, 3, 165, 27, 0, // Skip to: 17045 /* 9968 */ MCD::OPC_Decode, 136, 12, 115, // Opcode: SRD_rec /* 9972 */ MCD::OPC_FilterValue, 17, 35, 0, 0, // Skip to: 10012 /* 9977 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 9980 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 9996 /* 9985 */ MCD::OPC_CheckField, 11, 5, 0, 141, 27, 0, // Skip to: 17045 /* 9992 */ MCD::OPC_Decode, 130, 4, 116, // Opcode: CNTTZD /* 9996 */ MCD::OPC_FilterValue, 1, 132, 27, 0, // Skip to: 17045 /* 10001 */ MCD::OPC_CheckField, 11, 5, 0, 125, 27, 0, // Skip to: 17045 /* 10008 */ MCD::OPC_Decode, 131, 4, 116, // Opcode: CNTTZD_rec /* 10012 */ MCD::OPC_FilterValue, 24, 21, 0, 0, // Skip to: 10038 /* 10017 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10020 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10029 /* 10025 */ MCD::OPC_Decode, 254, 11, 115, // Opcode: SRAD /* 10029 */ MCD::OPC_FilterValue, 1, 99, 27, 0, // Skip to: 17045 /* 10034 */ MCD::OPC_Decode, 130, 12, 115, // Opcode: SRAD_rec /* 10038 */ MCD::OPC_FilterValue, 25, 21, 0, 0, // Skip to: 10064 /* 10043 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 10046 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10055 /* 10051 */ MCD::OPC_Decode, 255, 11, 117, // Opcode: SRADI /* 10055 */ MCD::OPC_FilterValue, 1, 73, 27, 0, // Skip to: 17045 /* 10060 */ MCD::OPC_Decode, 129, 12, 117, // Opcode: SRADI_rec /* 10064 */ MCD::OPC_FilterValue, 27, 21, 0, 0, // Skip to: 10090 /* 10069 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... /* 10072 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10081 /* 10077 */ MCD::OPC_Decode, 229, 6, 117, // Opcode: EXTSWSLI /* 10081 */ MCD::OPC_FilterValue, 1, 47, 27, 0, // Skip to: 17045 /* 10086 */ MCD::OPC_Decode, 232, 6, 117, // Opcode: EXTSWSLI_rec /* 10090 */ MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 10130 /* 10095 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10098 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10114 /* 10103 */ MCD::OPC_CheckField, 11, 5, 0, 23, 27, 0, // Skip to: 17045 /* 10110 */ MCD::OPC_Decode, 223, 6, 114, // Opcode: EXTSH /* 10114 */ MCD::OPC_FilterValue, 1, 14, 27, 0, // Skip to: 17045 /* 10119 */ MCD::OPC_CheckField, 11, 5, 0, 7, 27, 0, // Skip to: 17045 /* 10126 */ MCD::OPC_Decode, 227, 6, 114, // Opcode: EXTSH_rec /* 10130 */ MCD::OPC_FilterValue, 29, 35, 0, 0, // Skip to: 10170 /* 10135 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10138 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10154 /* 10143 */ MCD::OPC_CheckField, 11, 5, 0, 239, 26, 0, // Skip to: 17045 /* 10150 */ MCD::OPC_Decode, 218, 6, 114, // Opcode: EXTSB /* 10154 */ MCD::OPC_FilterValue, 1, 230, 26, 0, // Skip to: 17045 /* 10159 */ MCD::OPC_CheckField, 11, 5, 0, 223, 26, 0, // Skip to: 17045 /* 10166 */ MCD::OPC_Decode, 222, 6, 114, // Opcode: EXTSB_rec /* 10170 */ MCD::OPC_FilterValue, 30, 214, 26, 0, // Skip to: 17045 /* 10175 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10178 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10194 /* 10183 */ MCD::OPC_CheckField, 11, 5, 0, 199, 26, 0, // Skip to: 17045 /* 10190 */ MCD::OPC_Decode, 228, 6, 116, // Opcode: EXTSW /* 10194 */ MCD::OPC_FilterValue, 1, 190, 26, 0, // Skip to: 17045 /* 10199 */ MCD::OPC_CheckField, 11, 5, 0, 183, 26, 0, // Skip to: 17045 /* 10206 */ MCD::OPC_Decode, 236, 6, 116, // Opcode: EXTSW_rec /* 10210 */ MCD::OPC_FilterValue, 14, 243, 0, 0, // Skip to: 10458 /* 10215 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 10218 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 10244 /* 10223 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10226 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10235 /* 10231 */ MCD::OPC_Decode, 197, 2, 112, // Opcode: AND /* 10235 */ MCD::OPC_FilterValue, 1, 149, 26, 0, // Skip to: 17045 /* 10240 */ MCD::OPC_Decode, 212, 2, 112, // Opcode: AND_rec /* 10244 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 10270 /* 10249 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10252 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10261 /* 10257 */ MCD::OPC_Decode, 200, 2, 112, // Opcode: ANDC /* 10261 */ MCD::OPC_FilterValue, 1, 123, 26, 0, // Skip to: 17045 /* 10266 */ MCD::OPC_Decode, 203, 2, 112, // Opcode: ANDC_rec /* 10270 */ MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 10296 /* 10275 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10278 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10287 /* 10283 */ MCD::OPC_Decode, 230, 9, 112, // Opcode: NOR /* 10287 */ MCD::OPC_FilterValue, 1, 97, 26, 0, // Skip to: 17045 /* 10292 */ MCD::OPC_Decode, 233, 9, 112, // Opcode: NOR_rec /* 10296 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 10312 /* 10301 */ MCD::OPC_CheckField, 0, 2, 0, 81, 26, 0, // Skip to: 17045 /* 10308 */ MCD::OPC_Decode, 236, 3, 118, // Opcode: BPERMD /* 10312 */ MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 10338 /* 10317 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10320 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10329 /* 10325 */ MCD::OPC_Decode, 147, 5, 112, // Opcode: EQV /* 10329 */ MCD::OPC_FilterValue, 1, 55, 26, 0, // Skip to: 17045 /* 10334 */ MCD::OPC_Decode, 150, 5, 112, // Opcode: EQV_rec /* 10338 */ MCD::OPC_FilterValue, 9, 21, 0, 0, // Skip to: 10364 /* 10343 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10346 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10355 /* 10351 */ MCD::OPC_Decode, 231, 15, 112, // Opcode: XOR /* 10355 */ MCD::OPC_FilterValue, 1, 29, 26, 0, // Skip to: 17045 /* 10360 */ MCD::OPC_Decode, 238, 15, 112, // Opcode: XOR_rec /* 10364 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 10390 /* 10369 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10372 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10381 /* 10377 */ MCD::OPC_Decode, 237, 9, 112, // Opcode: ORC /* 10381 */ MCD::OPC_FilterValue, 1, 3, 26, 0, // Skip to: 17045 /* 10386 */ MCD::OPC_Decode, 240, 9, 112, // Opcode: ORC_rec /* 10390 */ MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 10416 /* 10395 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10398 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10407 /* 10403 */ MCD::OPC_Decode, 234, 9, 112, // Opcode: OR /* 10407 */ MCD::OPC_FilterValue, 1, 233, 25, 0, // Skip to: 17045 /* 10412 */ MCD::OPC_Decode, 245, 9, 112, // Opcode: OR_rec /* 10416 */ MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 10442 /* 10421 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10424 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 10433 /* 10429 */ MCD::OPC_Decode, 214, 9, 112, // Opcode: NAND /* 10433 */ MCD::OPC_FilterValue, 1, 207, 25, 0, // Skip to: 17045 /* 10438 */ MCD::OPC_Decode, 217, 9, 112, // Opcode: NAND_rec /* 10442 */ MCD::OPC_FilterValue, 15, 198, 25, 0, // Skip to: 17045 /* 10447 */ MCD::OPC_CheckField, 0, 2, 0, 191, 25, 0, // Skip to: 17045 /* 10454 */ MCD::OPC_Decode, 239, 3, 112, // Opcode: CMPB /* 10458 */ MCD::OPC_FilterValue, 15, 182, 25, 0, // Skip to: 17045 /* 10463 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 10466 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 10506 /* 10471 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10474 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 10497 /* 10479 */ MCD::OPC_CheckField, 23, 3, 0, 159, 25, 0, // Skip to: 17045 /* 10486 */ MCD::OPC_CheckField, 11, 10, 0, 152, 25, 0, // Skip to: 17045 /* 10493 */ MCD::OPC_Decode, 228, 15, 105, // Opcode: WAIT /* 10497 */ MCD::OPC_FilterValue, 2, 143, 25, 0, // Skip to: 17045 /* 10502 */ MCD::OPC_Decode, 204, 8, 94, // Opcode: LWEPX /* 10506 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 10529 /* 10511 */ MCD::OPC_CheckField, 21, 5, 0, 127, 25, 0, // Skip to: 17045 /* 10518 */ MCD::OPC_CheckField, 0, 2, 2, 120, 25, 0, // Skip to: 17045 /* 10525 */ MCD::OPC_Decode, 162, 4, 98, // Opcode: DCBSTEP /* 10529 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 10545 /* 10534 */ MCD::OPC_CheckField, 0, 2, 2, 104, 25, 0, // Skip to: 17045 /* 10541 */ MCD::OPC_Decode, 241, 7, 94, // Opcode: LBEPX /* 10545 */ MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 10568 /* 10550 */ MCD::OPC_CheckField, 21, 5, 0, 88, 25, 0, // Skip to: 17045 /* 10557 */ MCD::OPC_CheckField, 0, 2, 2, 81, 25, 0, // Skip to: 17045 /* 10564 */ MCD::OPC_Decode, 159, 4, 98, // Opcode: DCBFEP /* 10568 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 10584 /* 10573 */ MCD::OPC_CheckField, 0, 2, 2, 65, 25, 0, // Skip to: 17045 /* 10580 */ MCD::OPC_Decode, 204, 12, 94, // Opcode: STWEPX /* 10584 */ MCD::OPC_FilterValue, 6, 11, 0, 0, // Skip to: 10600 /* 10589 */ MCD::OPC_CheckField, 0, 2, 2, 49, 25, 0, // Skip to: 17045 /* 10596 */ MCD::OPC_Decode, 145, 12, 94, // Opcode: STBEPX /* 10600 */ MCD::OPC_FilterValue, 7, 11, 0, 0, // Skip to: 10616 /* 10605 */ MCD::OPC_CheckField, 0, 2, 2, 33, 25, 0, // Skip to: 17045 /* 10612 */ MCD::OPC_Decode, 166, 4, 119, // Opcode: DCBTSTEP /* 10616 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 10632 /* 10621 */ MCD::OPC_CheckField, 0, 2, 2, 17, 25, 0, // Skip to: 17045 /* 10628 */ MCD::OPC_Decode, 168, 8, 94, // Opcode: LHEPX /* 10632 */ MCD::OPC_FilterValue, 9, 11, 0, 0, // Skip to: 10648 /* 10637 */ MCD::OPC_CheckField, 0, 2, 2, 1, 25, 0, // Skip to: 17045 /* 10644 */ MCD::OPC_Decode, 164, 4, 119, // Opcode: DCBTEP /* 10648 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 10664 /* 10653 */ MCD::OPC_CheckField, 0, 2, 2, 241, 24, 0, // Skip to: 17045 /* 10660 */ MCD::OPC_Decode, 180, 12, 94, // Opcode: STHEPX /* 10664 */ MCD::OPC_FilterValue, 18, 11, 0, 0, // Skip to: 10680 /* 10669 */ MCD::OPC_CheckField, 0, 2, 2, 225, 24, 0, // Skip to: 17045 /* 10676 */ MCD::OPC_Decode, 146, 8, 106, // Opcode: LFDEPX /* 10680 */ MCD::OPC_FilterValue, 22, 11, 0, 0, // Skip to: 10696 /* 10685 */ MCD::OPC_CheckField, 0, 2, 2, 209, 24, 0, // Skip to: 17045 /* 10692 */ MCD::OPC_Decode, 166, 12, 106, // Opcode: STFDEPX /* 10696 */ MCD::OPC_FilterValue, 30, 18, 0, 0, // Skip to: 10719 /* 10701 */ MCD::OPC_CheckField, 21, 5, 0, 193, 24, 0, // Skip to: 17045 /* 10708 */ MCD::OPC_CheckField, 0, 2, 2, 186, 24, 0, // Skip to: 17045 /* 10715 */ MCD::OPC_Decode, 229, 7, 98, // Opcode: ICBIEP /* 10719 */ MCD::OPC_FilterValue, 31, 177, 24, 0, // Skip to: 17045 /* 10724 */ MCD::OPC_ExtractField, 21, 5, // Inst{25-21} ... /* 10727 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 10743 /* 10732 */ MCD::OPC_CheckField, 0, 2, 2, 162, 24, 0, // Skip to: 17045 /* 10739 */ MCD::OPC_Decode, 168, 4, 98, // Opcode: DCBZEP /* 10743 */ MCD::OPC_FilterValue, 1, 153, 24, 0, // Skip to: 17045 /* 10748 */ MCD::OPC_CheckField, 0, 2, 2, 146, 24, 0, // Skip to: 17045 /* 10755 */ MCD::OPC_Decode, 170, 4, 98, // Opcode: DCBZLEP /* 10759 */ MCD::OPC_FilterValue, 32, 4, 0, 0, // Skip to: 10768 /* 10764 */ MCD::OPC_Decode, 205, 8, 120, // Opcode: LWZ /* 10768 */ MCD::OPC_FilterValue, 33, 4, 0, 0, // Skip to: 10777 /* 10773 */ MCD::OPC_Decode, 208, 8, 120, // Opcode: LWZU /* 10777 */ MCD::OPC_FilterValue, 34, 4, 0, 0, // Skip to: 10786 /* 10782 */ MCD::OPC_Decode, 242, 7, 120, // Opcode: LBZ /* 10786 */ MCD::OPC_FilterValue, 35, 4, 0, 0, // Skip to: 10795 /* 10791 */ MCD::OPC_Decode, 245, 7, 120, // Opcode: LBZU /* 10795 */ MCD::OPC_FilterValue, 36, 4, 0, 0, // Skip to: 10804 /* 10800 */ MCD::OPC_Decode, 198, 12, 120, // Opcode: STW /* 10804 */ MCD::OPC_FilterValue, 37, 4, 0, 0, // Skip to: 10813 /* 10809 */ MCD::OPC_Decode, 205, 12, 120, // Opcode: STWU /* 10813 */ MCD::OPC_FilterValue, 38, 4, 0, 0, // Skip to: 10822 /* 10818 */ MCD::OPC_Decode, 141, 12, 120, // Opcode: STB /* 10822 */ MCD::OPC_FilterValue, 39, 4, 0, 0, // Skip to: 10831 /* 10827 */ MCD::OPC_Decode, 146, 12, 120, // Opcode: STBU /* 10831 */ MCD::OPC_FilterValue, 40, 4, 0, 0, // Skip to: 10840 /* 10836 */ MCD::OPC_Decode, 169, 8, 120, // Opcode: LHZ /* 10840 */ MCD::OPC_FilterValue, 41, 4, 0, 0, // Skip to: 10849 /* 10845 */ MCD::OPC_Decode, 172, 8, 120, // Opcode: LHZU /* 10849 */ MCD::OPC_FilterValue, 42, 4, 0, 0, // Skip to: 10858 /* 10854 */ MCD::OPC_Decode, 156, 8, 120, // Opcode: LHA /* 10858 */ MCD::OPC_FilterValue, 43, 4, 0, 0, // Skip to: 10867 /* 10863 */ MCD::OPC_Decode, 160, 8, 120, // Opcode: LHAU /* 10867 */ MCD::OPC_FilterValue, 44, 4, 0, 0, // Skip to: 10876 /* 10872 */ MCD::OPC_Decode, 175, 12, 120, // Opcode: STH /* 10876 */ MCD::OPC_FilterValue, 45, 4, 0, 0, // Skip to: 10885 /* 10881 */ MCD::OPC_Decode, 181, 12, 120, // Opcode: STHU /* 10885 */ MCD::OPC_FilterValue, 46, 4, 0, 0, // Skip to: 10894 /* 10890 */ MCD::OPC_Decode, 185, 8, 120, // Opcode: LMW /* 10894 */ MCD::OPC_FilterValue, 47, 4, 0, 0, // Skip to: 10903 /* 10899 */ MCD::OPC_Decode, 190, 12, 120, // Opcode: STMW /* 10903 */ MCD::OPC_FilterValue, 48, 4, 0, 0, // Skip to: 10912 /* 10908 */ MCD::OPC_Decode, 152, 8, 121, // Opcode: LFS /* 10912 */ MCD::OPC_FilterValue, 49, 4, 0, 0, // Skip to: 10921 /* 10917 */ MCD::OPC_Decode, 153, 8, 121, // Opcode: LFSU /* 10921 */ MCD::OPC_FilterValue, 50, 4, 0, 0, // Skip to: 10930 /* 10926 */ MCD::OPC_Decode, 145, 8, 122, // Opcode: LFD /* 10930 */ MCD::OPC_FilterValue, 51, 4, 0, 0, // Skip to: 10939 /* 10935 */ MCD::OPC_Decode, 147, 8, 122, // Opcode: LFDU /* 10939 */ MCD::OPC_FilterValue, 52, 4, 0, 0, // Skip to: 10948 /* 10944 */ MCD::OPC_Decode, 171, 12, 121, // Opcode: STFS /* 10948 */ MCD::OPC_FilterValue, 53, 4, 0, 0, // Skip to: 10957 /* 10953 */ MCD::OPC_Decode, 172, 12, 121, // Opcode: STFSU /* 10957 */ MCD::OPC_FilterValue, 54, 4, 0, 0, // Skip to: 10966 /* 10962 */ MCD::OPC_Decode, 165, 12, 122, // Opcode: STFD /* 10966 */ MCD::OPC_FilterValue, 55, 4, 0, 0, // Skip to: 10975 /* 10971 */ MCD::OPC_Decode, 167, 12, 122, // Opcode: STFDU /* 10975 */ MCD::OPC_FilterValue, 57, 21, 0, 0, // Skip to: 11001 /* 10980 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 10983 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 10992 /* 10988 */ MCD::OPC_Decode, 219, 8, 123, // Opcode: LXSD /* 10992 */ MCD::OPC_FilterValue, 3, 160, 23, 0, // Skip to: 17045 /* 10997 */ MCD::OPC_Decode, 225, 8, 123, // Opcode: LXSSP /* 11001 */ MCD::OPC_FilterValue, 58, 30, 0, 0, // Skip to: 11036 /* 11006 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 11009 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 11018 /* 11014 */ MCD::OPC_Decode, 254, 7, 124, // Opcode: LD /* 11018 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 11027 /* 11023 */ MCD::OPC_Decode, 133, 8, 124, // Opcode: LDU /* 11027 */ MCD::OPC_FilterValue, 2, 125, 23, 0, // Skip to: 17045 /* 11032 */ MCD::OPC_Decode, 194, 8, 124, // Opcode: LWA /* 11036 */ MCD::OPC_FilterValue, 59, 175, 1, 0, // Skip to: 11472 /* 11041 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... /* 11044 */ MCD::OPC_FilterValue, 28, 35, 0, 0, // Skip to: 11084 /* 11049 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 11052 */ MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 11068 /* 11057 */ MCD::OPC_CheckField, 16, 5, 0, 93, 23, 0, // Skip to: 17045 /* 11064 */ MCD::OPC_Decode, 248, 6, 125, // Opcode: FCFIDS /* 11068 */ MCD::OPC_FilterValue, 30, 84, 23, 0, // Skip to: 17045 /* 11073 */ MCD::OPC_CheckField, 16, 5, 0, 77, 23, 0, // Skip to: 17045 /* 11080 */ MCD::OPC_Decode, 251, 6, 125, // Opcode: FCFIDUS /* 11084 */ MCD::OPC_FilterValue, 29, 35, 0, 0, // Skip to: 11124 /* 11089 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 11092 */ MCD::OPC_FilterValue, 26, 11, 0, 0, // Skip to: 11108 /* 11097 */ MCD::OPC_CheckField, 16, 5, 0, 53, 23, 0, // Skip to: 17045 /* 11104 */ MCD::OPC_Decode, 249, 6, 125, // Opcode: FCFIDS_rec /* 11108 */ MCD::OPC_FilterValue, 30, 44, 23, 0, // Skip to: 17045 /* 11113 */ MCD::OPC_CheckField, 16, 5, 0, 37, 23, 0, // Skip to: 17045 /* 11120 */ MCD::OPC_Decode, 252, 6, 125, // Opcode: FCFIDUS_rec /* 11124 */ MCD::OPC_FilterValue, 36, 11, 0, 0, // Skip to: 11140 /* 11129 */ MCD::OPC_CheckField, 6, 5, 0, 21, 23, 0, // Skip to: 17045 /* 11136 */ MCD::OPC_Decode, 150, 7, 126, // Opcode: FDIVS /* 11140 */ MCD::OPC_FilterValue, 37, 11, 0, 0, // Skip to: 11156 /* 11145 */ MCD::OPC_CheckField, 6, 5, 0, 5, 23, 0, // Skip to: 17045 /* 11152 */ MCD::OPC_Decode, 151, 7, 126, // Opcode: FDIVS_rec /* 11156 */ MCD::OPC_FilterValue, 40, 11, 0, 0, // Skip to: 11172 /* 11161 */ MCD::OPC_CheckField, 6, 5, 0, 245, 22, 0, // Skip to: 17045 /* 11168 */ MCD::OPC_Decode, 218, 7, 126, // Opcode: FSUBS /* 11172 */ MCD::OPC_FilterValue, 41, 11, 0, 0, // Skip to: 11188 /* 11177 */ MCD::OPC_CheckField, 6, 5, 0, 229, 22, 0, // Skip to: 17045 /* 11184 */ MCD::OPC_Decode, 219, 7, 126, // Opcode: FSUBS_rec /* 11188 */ MCD::OPC_FilterValue, 42, 11, 0, 0, // Skip to: 11204 /* 11193 */ MCD::OPC_CheckField, 6, 5, 0, 213, 22, 0, // Skip to: 17045 /* 11200 */ MCD::OPC_Decode, 243, 6, 126, // Opcode: FADDS /* 11204 */ MCD::OPC_FilterValue, 43, 11, 0, 0, // Skip to: 11220 /* 11209 */ MCD::OPC_CheckField, 6, 5, 0, 197, 22, 0, // Skip to: 17045 /* 11216 */ MCD::OPC_Decode, 244, 6, 126, // Opcode: FADDS_rec /* 11220 */ MCD::OPC_FilterValue, 44, 18, 0, 0, // Skip to: 11243 /* 11225 */ MCD::OPC_CheckField, 16, 5, 0, 181, 22, 0, // Skip to: 17045 /* 11232 */ MCD::OPC_CheckField, 6, 5, 0, 174, 22, 0, // Skip to: 17045 /* 11239 */ MCD::OPC_Decode, 214, 7, 127, // Opcode: FSQRTS /* 11243 */ MCD::OPC_FilterValue, 45, 18, 0, 0, // Skip to: 11266 /* 11248 */ MCD::OPC_CheckField, 16, 5, 0, 158, 22, 0, // Skip to: 17045 /* 11255 */ MCD::OPC_CheckField, 6, 5, 0, 151, 22, 0, // Skip to: 17045 /* 11262 */ MCD::OPC_Decode, 215, 7, 127, // Opcode: FSQRTS_rec /* 11266 */ MCD::OPC_FilterValue, 48, 18, 0, 0, // Skip to: 11289 /* 11271 */ MCD::OPC_CheckField, 16, 5, 0, 135, 22, 0, // Skip to: 17045 /* 11278 */ MCD::OPC_CheckField, 6, 5, 0, 128, 22, 0, // Skip to: 17045 /* 11285 */ MCD::OPC_Decode, 184, 7, 127, // Opcode: FRES /* 11289 */ MCD::OPC_FilterValue, 49, 18, 0, 0, // Skip to: 11312 /* 11294 */ MCD::OPC_CheckField, 16, 5, 0, 112, 22, 0, // Skip to: 17045 /* 11301 */ MCD::OPC_CheckField, 6, 5, 0, 105, 22, 0, // Skip to: 17045 /* 11308 */ MCD::OPC_Decode, 185, 7, 127, // Opcode: FRES_rec /* 11312 */ MCD::OPC_FilterValue, 50, 12, 0, 0, // Skip to: 11329 /* 11317 */ MCD::OPC_CheckField, 11, 5, 0, 89, 22, 0, // Skip to: 17045 /* 11324 */ MCD::OPC_Decode, 164, 7, 128, 1, // Opcode: FMULS /* 11329 */ MCD::OPC_FilterValue, 51, 12, 0, 0, // Skip to: 11346 /* 11334 */ MCD::OPC_CheckField, 11, 5, 0, 72, 22, 0, // Skip to: 17045 /* 11341 */ MCD::OPC_Decode, 165, 7, 128, 1, // Opcode: FMULS_rec /* 11346 */ MCD::OPC_FilterValue, 52, 18, 0, 0, // Skip to: 11369 /* 11351 */ MCD::OPC_CheckField, 16, 5, 0, 55, 22, 0, // Skip to: 17045 /* 11358 */ MCD::OPC_CheckField, 6, 5, 0, 48, 22, 0, // Skip to: 17045 /* 11365 */ MCD::OPC_Decode, 206, 7, 127, // Opcode: FRSQRTES /* 11369 */ MCD::OPC_FilterValue, 53, 18, 0, 0, // Skip to: 11392 /* 11374 */ MCD::OPC_CheckField, 16, 5, 0, 32, 22, 0, // Skip to: 17045 /* 11381 */ MCD::OPC_CheckField, 6, 5, 0, 25, 22, 0, // Skip to: 17045 /* 11388 */ MCD::OPC_Decode, 207, 7, 127, // Opcode: FRSQRTES_rec /* 11392 */ MCD::OPC_FilterValue, 56, 5, 0, 0, // Skip to: 11402 /* 11397 */ MCD::OPC_Decode, 160, 7, 129, 1, // Opcode: FMSUBS /* 11402 */ MCD::OPC_FilterValue, 57, 5, 0, 0, // Skip to: 11412 /* 11407 */ MCD::OPC_Decode, 161, 7, 129, 1, // Opcode: FMSUBS_rec /* 11412 */ MCD::OPC_FilterValue, 58, 5, 0, 0, // Skip to: 11422 /* 11417 */ MCD::OPC_Decode, 154, 7, 129, 1, // Opcode: FMADDS /* 11422 */ MCD::OPC_FilterValue, 59, 5, 0, 0, // Skip to: 11432 /* 11427 */ MCD::OPC_Decode, 155, 7, 129, 1, // Opcode: FMADDS_rec /* 11432 */ MCD::OPC_FilterValue, 60, 5, 0, 0, // Skip to: 11442 /* 11437 */ MCD::OPC_Decode, 180, 7, 129, 1, // Opcode: FNMSUBS /* 11442 */ MCD::OPC_FilterValue, 61, 5, 0, 0, // Skip to: 11452 /* 11447 */ MCD::OPC_Decode, 181, 7, 129, 1, // Opcode: FNMSUBS_rec /* 11452 */ MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 11462 /* 11457 */ MCD::OPC_Decode, 176, 7, 129, 1, // Opcode: FNMADDS /* 11462 */ MCD::OPC_FilterValue, 63, 202, 21, 0, // Skip to: 17045 /* 11467 */ MCD::OPC_Decode, 177, 7, 129, 1, // Opcode: FNMADDS_rec /* 11472 */ MCD::OPC_FilterValue, 60, 242, 13, 0, // Skip to: 15047 /* 11477 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... /* 11480 */ MCD::OPC_FilterValue, 0, 120, 3, 0, // Skip to: 12373 /* 11485 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 11488 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 11516 /* 11493 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11496 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11506 /* 11501 */ MCD::OPC_Decode, 244, 15, 130, 1, // Opcode: XSADDSP /* 11506 */ MCD::OPC_FilterValue, 1, 158, 21, 0, // Skip to: 17045 /* 11511 */ MCD::OPC_Decode, 162, 16, 131, 1, // Opcode: XSMADDASP /* 11516 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 11544 /* 11521 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11524 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11534 /* 11529 */ MCD::OPC_Decode, 219, 16, 130, 1, // Opcode: XSSUBSP /* 11534 */ MCD::OPC_FilterValue, 1, 130, 21, 0, // Skip to: 17045 /* 11539 */ MCD::OPC_Decode, 164, 16, 131, 1, // Opcode: XSMADDMSP /* 11544 */ MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 11572 /* 11549 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11552 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11562 /* 11557 */ MCD::OPC_Decode, 182, 16, 130, 1, // Opcode: XSMULSP /* 11562 */ MCD::OPC_FilterValue, 1, 102, 21, 0, // Skip to: 17045 /* 11567 */ MCD::OPC_Decode, 174, 16, 131, 1, // Opcode: XSMSUBASP /* 11572 */ MCD::OPC_FilterValue, 3, 23, 0, 0, // Skip to: 11600 /* 11577 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11580 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11590 /* 11585 */ MCD::OPC_Decode, 158, 16, 130, 1, // Opcode: XSDIVSP /* 11590 */ MCD::OPC_FilterValue, 1, 74, 21, 0, // Skip to: 17045 /* 11595 */ MCD::OPC_Decode, 176, 16, 131, 1, // Opcode: XSMSUBMSP /* 11600 */ MCD::OPC_FilterValue, 4, 23, 0, 0, // Skip to: 11628 /* 11605 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11608 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11618 /* 11613 */ MCD::OPC_Decode, 241, 15, 132, 1, // Opcode: XSADDDP /* 11618 */ MCD::OPC_FilterValue, 1, 46, 21, 0, // Skip to: 17045 /* 11623 */ MCD::OPC_Decode, 161, 16, 133, 1, // Opcode: XSMADDADP /* 11628 */ MCD::OPC_FilterValue, 5, 23, 0, 0, // Skip to: 11656 /* 11633 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11636 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11646 /* 11641 */ MCD::OPC_Decode, 216, 16, 132, 1, // Opcode: XSSUBDP /* 11646 */ MCD::OPC_FilterValue, 1, 18, 21, 0, // Skip to: 17045 /* 11651 */ MCD::OPC_Decode, 163, 16, 133, 1, // Opcode: XSMADDMDP /* 11656 */ MCD::OPC_FilterValue, 6, 23, 0, 0, // Skip to: 11684 /* 11661 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11664 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11674 /* 11669 */ MCD::OPC_Decode, 179, 16, 132, 1, // Opcode: XSMULDP /* 11674 */ MCD::OPC_FilterValue, 1, 246, 20, 0, // Skip to: 17045 /* 11679 */ MCD::OPC_Decode, 173, 16, 133, 1, // Opcode: XSMSUBADP /* 11684 */ MCD::OPC_FilterValue, 7, 23, 0, 0, // Skip to: 11712 /* 11689 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11692 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11702 /* 11697 */ MCD::OPC_Decode, 155, 16, 132, 1, // Opcode: XSDIVDP /* 11702 */ MCD::OPC_FilterValue, 1, 218, 20, 0, // Skip to: 17045 /* 11707 */ MCD::OPC_Decode, 175, 16, 133, 1, // Opcode: XSMSUBMDP /* 11712 */ MCD::OPC_FilterValue, 8, 23, 0, 0, // Skip to: 11740 /* 11717 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11720 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11730 /* 11725 */ MCD::OPC_Decode, 232, 16, 134, 1, // Opcode: XVADDSP /* 11730 */ MCD::OPC_FilterValue, 1, 190, 20, 0, // Skip to: 17045 /* 11735 */ MCD::OPC_Decode, 144, 17, 135, 1, // Opcode: XVMADDASP /* 11740 */ MCD::OPC_FilterValue, 9, 23, 0, 0, // Skip to: 11768 /* 11745 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11748 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11758 /* 11753 */ MCD::OPC_Decode, 186, 17, 134, 1, // Opcode: XVSUBSP /* 11758 */ MCD::OPC_FilterValue, 1, 162, 20, 0, // Skip to: 17045 /* 11763 */ MCD::OPC_Decode, 146, 17, 135, 1, // Opcode: XVMADDMSP /* 11768 */ MCD::OPC_FilterValue, 10, 23, 0, 0, // Skip to: 11796 /* 11773 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11776 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11786 /* 11781 */ MCD::OPC_Decode, 156, 17, 134, 1, // Opcode: XVMULSP /* 11786 */ MCD::OPC_FilterValue, 1, 134, 20, 0, // Skip to: 17045 /* 11791 */ MCD::OPC_Decode, 152, 17, 135, 1, // Opcode: XVMSUBASP /* 11796 */ MCD::OPC_FilterValue, 11, 23, 0, 0, // Skip to: 11824 /* 11801 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11804 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11814 /* 11809 */ MCD::OPC_Decode, 140, 17, 134, 1, // Opcode: XVDIVSP /* 11814 */ MCD::OPC_FilterValue, 1, 106, 20, 0, // Skip to: 17045 /* 11819 */ MCD::OPC_Decode, 154, 17, 135, 1, // Opcode: XVMSUBMSP /* 11824 */ MCD::OPC_FilterValue, 12, 23, 0, 0, // Skip to: 11852 /* 11829 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11832 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11842 /* 11837 */ MCD::OPC_Decode, 231, 16, 134, 1, // Opcode: XVADDDP /* 11842 */ MCD::OPC_FilterValue, 1, 78, 20, 0, // Skip to: 17045 /* 11847 */ MCD::OPC_Decode, 143, 17, 135, 1, // Opcode: XVMADDADP /* 11852 */ MCD::OPC_FilterValue, 13, 23, 0, 0, // Skip to: 11880 /* 11857 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11860 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11870 /* 11865 */ MCD::OPC_Decode, 185, 17, 134, 1, // Opcode: XVSUBDP /* 11870 */ MCD::OPC_FilterValue, 1, 50, 20, 0, // Skip to: 17045 /* 11875 */ MCD::OPC_Decode, 145, 17, 135, 1, // Opcode: XVMADDMDP /* 11880 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 11908 /* 11885 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11888 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11898 /* 11893 */ MCD::OPC_Decode, 155, 17, 134, 1, // Opcode: XVMULDP /* 11898 */ MCD::OPC_FilterValue, 1, 22, 20, 0, // Skip to: 17045 /* 11903 */ MCD::OPC_Decode, 151, 17, 135, 1, // Opcode: XVMSUBADP /* 11908 */ MCD::OPC_FilterValue, 15, 23, 0, 0, // Skip to: 11936 /* 11913 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11916 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11926 /* 11921 */ MCD::OPC_Decode, 139, 17, 134, 1, // Opcode: XVDIVDP /* 11926 */ MCD::OPC_FilterValue, 1, 250, 19, 0, // Skip to: 17045 /* 11931 */ MCD::OPC_Decode, 153, 17, 135, 1, // Opcode: XVMSUBMDP /* 11936 */ MCD::OPC_FilterValue, 16, 23, 0, 0, // Skip to: 11964 /* 11941 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11944 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11954 /* 11949 */ MCD::OPC_Decode, 167, 16, 132, 1, // Opcode: XSMAXCDP /* 11954 */ MCD::OPC_FilterValue, 1, 222, 19, 0, // Skip to: 17045 /* 11959 */ MCD::OPC_Decode, 188, 16, 131, 1, // Opcode: XSNMADDASP /* 11964 */ MCD::OPC_FilterValue, 17, 23, 0, 0, // Skip to: 11992 /* 11969 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 11972 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 11982 /* 11977 */ MCD::OPC_Decode, 170, 16, 132, 1, // Opcode: XSMINCDP /* 11982 */ MCD::OPC_FilterValue, 1, 194, 19, 0, // Skip to: 17045 /* 11987 */ MCD::OPC_Decode, 190, 16, 131, 1, // Opcode: XSNMADDMSP /* 11992 */ MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 12020 /* 11997 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12000 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12010 /* 12005 */ MCD::OPC_Decode, 169, 16, 136, 1, // Opcode: XSMAXJDP /* 12010 */ MCD::OPC_FilterValue, 1, 166, 19, 0, // Skip to: 17045 /* 12015 */ MCD::OPC_Decode, 194, 16, 131, 1, // Opcode: XSNMSUBASP /* 12020 */ MCD::OPC_FilterValue, 19, 23, 0, 0, // Skip to: 12048 /* 12025 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12028 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12038 /* 12033 */ MCD::OPC_Decode, 172, 16, 136, 1, // Opcode: XSMINJDP /* 12038 */ MCD::OPC_FilterValue, 1, 138, 19, 0, // Skip to: 17045 /* 12043 */ MCD::OPC_Decode, 196, 16, 131, 1, // Opcode: XSNMSUBMSP /* 12048 */ MCD::OPC_FilterValue, 20, 23, 0, 0, // Skip to: 12076 /* 12053 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12056 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12066 /* 12061 */ MCD::OPC_Decode, 168, 16, 132, 1, // Opcode: XSMAXDP /* 12066 */ MCD::OPC_FilterValue, 1, 110, 19, 0, // Skip to: 17045 /* 12071 */ MCD::OPC_Decode, 187, 16, 133, 1, // Opcode: XSNMADDADP /* 12076 */ MCD::OPC_FilterValue, 21, 23, 0, 0, // Skip to: 12104 /* 12081 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12084 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12094 /* 12089 */ MCD::OPC_Decode, 171, 16, 132, 1, // Opcode: XSMINDP /* 12094 */ MCD::OPC_FilterValue, 1, 82, 19, 0, // Skip to: 17045 /* 12099 */ MCD::OPC_Decode, 189, 16, 133, 1, // Opcode: XSNMADDMDP /* 12104 */ MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 12132 /* 12109 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12112 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12122 /* 12117 */ MCD::OPC_Decode, 254, 15, 132, 1, // Opcode: XSCPSGNDP /* 12122 */ MCD::OPC_FilterValue, 1, 54, 19, 0, // Skip to: 17045 /* 12127 */ MCD::OPC_Decode, 193, 16, 133, 1, // Opcode: XSNMSUBADP /* 12132 */ MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 12149 /* 12137 */ MCD::OPC_CheckField, 3, 1, 1, 37, 19, 0, // Skip to: 17045 /* 12144 */ MCD::OPC_Decode, 195, 16, 133, 1, // Opcode: XSNMSUBMDP /* 12149 */ MCD::OPC_FilterValue, 24, 23, 0, 0, // Skip to: 12177 /* 12154 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12157 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12167 /* 12162 */ MCD::OPC_Decode, 148, 17, 134, 1, // Opcode: XVMAXSP /* 12167 */ MCD::OPC_FilterValue, 1, 9, 19, 0, // Skip to: 17045 /* 12172 */ MCD::OPC_Decode, 162, 17, 135, 1, // Opcode: XVNMADDASP /* 12177 */ MCD::OPC_FilterValue, 25, 23, 0, 0, // Skip to: 12205 /* 12182 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12185 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12195 /* 12190 */ MCD::OPC_Decode, 150, 17, 134, 1, // Opcode: XVMINSP /* 12195 */ MCD::OPC_FilterValue, 1, 237, 18, 0, // Skip to: 17045 /* 12200 */ MCD::OPC_Decode, 164, 17, 135, 1, // Opcode: XVNMADDMSP /* 12205 */ MCD::OPC_FilterValue, 26, 23, 0, 0, // Skip to: 12233 /* 12210 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12213 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12223 /* 12218 */ MCD::OPC_Decode, 246, 16, 134, 1, // Opcode: XVCPSGNSP /* 12223 */ MCD::OPC_FilterValue, 1, 209, 18, 0, // Skip to: 17045 /* 12228 */ MCD::OPC_Decode, 166, 17, 135, 1, // Opcode: XVNMSUBASP /* 12233 */ MCD::OPC_FilterValue, 27, 23, 0, 0, // Skip to: 12261 /* 12238 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12241 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12251 /* 12246 */ MCD::OPC_Decode, 142, 17, 134, 1, // Opcode: XVIEXPSP /* 12251 */ MCD::OPC_FilterValue, 1, 181, 18, 0, // Skip to: 17045 /* 12256 */ MCD::OPC_Decode, 168, 17, 135, 1, // Opcode: XVNMSUBMSP /* 12261 */ MCD::OPC_FilterValue, 28, 23, 0, 0, // Skip to: 12289 /* 12266 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12269 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12279 /* 12274 */ MCD::OPC_Decode, 147, 17, 134, 1, // Opcode: XVMAXDP /* 12279 */ MCD::OPC_FilterValue, 1, 153, 18, 0, // Skip to: 17045 /* 12284 */ MCD::OPC_Decode, 161, 17, 135, 1, // Opcode: XVNMADDADP /* 12289 */ MCD::OPC_FilterValue, 29, 23, 0, 0, // Skip to: 12317 /* 12294 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12297 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12307 /* 12302 */ MCD::OPC_Decode, 149, 17, 134, 1, // Opcode: XVMINDP /* 12307 */ MCD::OPC_FilterValue, 1, 125, 18, 0, // Skip to: 17045 /* 12312 */ MCD::OPC_Decode, 163, 17, 135, 1, // Opcode: XVNMADDMDP /* 12317 */ MCD::OPC_FilterValue, 30, 23, 0, 0, // Skip to: 12345 /* 12322 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12325 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12335 /* 12330 */ MCD::OPC_Decode, 245, 16, 134, 1, // Opcode: XVCPSGNDP /* 12335 */ MCD::OPC_FilterValue, 1, 97, 18, 0, // Skip to: 17045 /* 12340 */ MCD::OPC_Decode, 165, 17, 135, 1, // Opcode: XVNMSUBADP /* 12345 */ MCD::OPC_FilterValue, 31, 87, 18, 0, // Skip to: 17045 /* 12350 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12353 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12363 /* 12358 */ MCD::OPC_Decode, 141, 17, 134, 1, // Opcode: XVIEXPDP /* 12363 */ MCD::OPC_FilterValue, 1, 69, 18, 0, // Skip to: 17045 /* 12368 */ MCD::OPC_Decode, 167, 17, 135, 1, // Opcode: XVNMSUBMDP /* 12373 */ MCD::OPC_FilterValue, 1, 97, 2, 0, // Skip to: 12987 /* 12378 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... /* 12381 */ MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 12517 /* 12386 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12389 */ MCD::OPC_FilterValue, 0, 41, 0, 0, // Skip to: 12435 /* 12394 */ MCD::OPC_ExtractField, 10, 1, // Inst{10} ... /* 12397 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12407 /* 12402 */ MCD::OPC_Decode, 223, 17, 137, 1, // Opcode: XXSLDWI /* 12407 */ MCD::OPC_FilterValue, 1, 25, 18, 0, // Skip to: 17045 /* 12412 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... /* 12415 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12425 /* 12420 */ MCD::OPC_Decode, 203, 17, 134, 1, // Opcode: XXLAND /* 12425 */ MCD::OPC_FilterValue, 1, 7, 18, 0, // Skip to: 17045 /* 12430 */ MCD::OPC_Decode, 208, 17, 134, 1, // Opcode: XXLNOR /* 12435 */ MCD::OPC_FilterValue, 1, 253, 17, 0, // Skip to: 17045 /* 12440 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... /* 12443 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12453 /* 12448 */ MCD::OPC_Decode, 245, 15, 136, 1, // Opcode: XSCMPEQDP /* 12453 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 12477 /* 12458 */ MCD::OPC_CheckField, 21, 2, 0, 228, 17, 0, // Skip to: 17045 /* 12465 */ MCD::OPC_CheckField, 0, 1, 0, 221, 17, 0, // Skip to: 17045 /* 12472 */ MCD::OPC_Decode, 252, 15, 138, 1, // Opcode: XSCMPUDP /* 12477 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 12487 /* 12482 */ MCD::OPC_Decode, 235, 16, 134, 1, // Opcode: XVCMPEQSP /* 12487 */ MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 12497 /* 12492 */ MCD::OPC_Decode, 233, 16, 134, 1, // Opcode: XVCMPEQDP /* 12497 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 12507 /* 12502 */ MCD::OPC_Decode, 236, 16, 134, 1, // Opcode: XVCMPEQSP_rec /* 12507 */ MCD::OPC_FilterValue, 7, 181, 17, 0, // Skip to: 17045 /* 12512 */ MCD::OPC_Decode, 234, 16, 134, 1, // Opcode: XVCMPEQDP_rec /* 12517 */ MCD::OPC_FilterValue, 1, 131, 0, 0, // Skip to: 12653 /* 12522 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12525 */ MCD::OPC_FilterValue, 0, 41, 0, 0, // Skip to: 12571 /* 12530 */ MCD::OPC_ExtractField, 10, 1, // Inst{10} ... /* 12533 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12543 /* 12538 */ MCD::OPC_Decode, 219, 17, 137, 1, // Opcode: XXPERMDI /* 12543 */ MCD::OPC_FilterValue, 1, 145, 17, 0, // Skip to: 17045 /* 12548 */ MCD::OPC_ExtractField, 8, 2, // Inst{9-8} ... /* 12551 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12561 /* 12556 */ MCD::OPC_Decode, 204, 17, 134, 1, // Opcode: XXLANDC /* 12561 */ MCD::OPC_FilterValue, 1, 127, 17, 0, // Skip to: 17045 /* 12566 */ MCD::OPC_Decode, 210, 17, 134, 1, // Opcode: XXLORC /* 12571 */ MCD::OPC_FilterValue, 1, 117, 17, 0, // Skip to: 17045 /* 12576 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... /* 12579 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12589 /* 12584 */ MCD::OPC_Decode, 249, 15, 136, 1, // Opcode: XSCMPGTDP /* 12589 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 12613 /* 12594 */ MCD::OPC_CheckField, 21, 2, 0, 92, 17, 0, // Skip to: 17045 /* 12601 */ MCD::OPC_CheckField, 0, 1, 0, 85, 17, 0, // Skip to: 17045 /* 12608 */ MCD::OPC_Decode, 250, 15, 138, 1, // Opcode: XSCMPODP /* 12613 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 12623 /* 12618 */ MCD::OPC_Decode, 243, 16, 134, 1, // Opcode: XVCMPGTSP /* 12623 */ MCD::OPC_FilterValue, 3, 5, 0, 0, // Skip to: 12633 /* 12628 */ MCD::OPC_Decode, 241, 16, 134, 1, // Opcode: XVCMPGTDP /* 12633 */ MCD::OPC_FilterValue, 6, 5, 0, 0, // Skip to: 12643 /* 12638 */ MCD::OPC_Decode, 244, 16, 134, 1, // Opcode: XVCMPGTSP_rec /* 12643 */ MCD::OPC_FilterValue, 7, 45, 17, 0, // Skip to: 17045 /* 12648 */ MCD::OPC_Decode, 242, 16, 134, 1, // Opcode: XVCMPGTDP_rec /* 12653 */ MCD::OPC_FilterValue, 2, 186, 0, 0, // Skip to: 12844 /* 12658 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... /* 12661 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 12689 /* 12666 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12669 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12679 /* 12674 */ MCD::OPC_Decode, 216, 17, 134, 1, // Opcode: XXMRGHW /* 12679 */ MCD::OPC_FilterValue, 1, 9, 17, 0, // Skip to: 17045 /* 12684 */ MCD::OPC_Decode, 248, 15, 136, 1, // Opcode: XSCMPGEDP /* 12689 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 12706 /* 12694 */ MCD::OPC_CheckField, 3, 1, 0, 248, 16, 0, // Skip to: 17045 /* 12701 */ MCD::OPC_Decode, 217, 17, 134, 1, // Opcode: XXMRGLW /* 12706 */ MCD::OPC_FilterValue, 2, 48, 0, 0, // Skip to: 12759 /* 12711 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12714 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 12749 /* 12719 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 12722 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 12739 /* 12727 */ MCD::OPC_CheckField, 18, 3, 0, 215, 16, 0, // Skip to: 17045 /* 12734 */ MCD::OPC_Decode, 226, 17, 139, 1, // Opcode: XXSPLTW /* 12739 */ MCD::OPC_FilterValue, 1, 205, 16, 0, // Skip to: 17045 /* 12744 */ MCD::OPC_Decode, 201, 17, 140, 1, // Opcode: XXEXTRACTUW /* 12749 */ MCD::OPC_FilterValue, 1, 195, 16, 0, // Skip to: 17045 /* 12754 */ MCD::OPC_Decode, 239, 16, 134, 1, // Opcode: XVCMPGESP /* 12759 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 12776 /* 12764 */ MCD::OPC_CheckField, 3, 1, 1, 178, 16, 0, // Skip to: 17045 /* 12771 */ MCD::OPC_Decode, 237, 16, 134, 1, // Opcode: XVCMPGEDP /* 12776 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 12793 /* 12781 */ MCD::OPC_CheckField, 3, 1, 0, 161, 16, 0, // Skip to: 17045 /* 12788 */ MCD::OPC_Decode, 209, 17, 134, 1, // Opcode: XXLOR /* 12793 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 12810 /* 12798 */ MCD::OPC_CheckField, 3, 1, 0, 144, 16, 0, // Skip to: 17045 /* 12805 */ MCD::OPC_Decode, 207, 17, 134, 1, // Opcode: XXLNAND /* 12810 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 12827 /* 12815 */ MCD::OPC_CheckField, 3, 1, 1, 127, 16, 0, // Skip to: 17045 /* 12822 */ MCD::OPC_Decode, 240, 16, 134, 1, // Opcode: XVCMPGESP_rec /* 12827 */ MCD::OPC_FilterValue, 7, 117, 16, 0, // Skip to: 17045 /* 12832 */ MCD::OPC_CheckField, 3, 1, 1, 110, 16, 0, // Skip to: 17045 /* 12839 */ MCD::OPC_Decode, 238, 16, 134, 1, // Opcode: XVCMPGEDP_rec /* 12844 */ MCD::OPC_FilterValue, 3, 100, 16, 0, // Skip to: 17045 /* 12849 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... /* 12852 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 12869 /* 12857 */ MCD::OPC_CheckField, 3, 1, 0, 85, 16, 0, // Skip to: 17045 /* 12864 */ MCD::OPC_Decode, 218, 17, 134, 1, // Opcode: XXPERM /* 12869 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 12911 /* 12874 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 12877 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 12887 /* 12882 */ MCD::OPC_Decode, 221, 17, 134, 1, // Opcode: XXPERMR /* 12887 */ MCD::OPC_FilterValue, 1, 57, 16, 0, // Skip to: 17045 /* 12892 */ MCD::OPC_CheckField, 21, 2, 0, 50, 16, 0, // Skip to: 17045 /* 12899 */ MCD::OPC_CheckField, 0, 1, 0, 43, 16, 0, // Skip to: 17045 /* 12906 */ MCD::OPC_Decode, 246, 15, 138, 1, // Opcode: XSCMPEXPDP /* 12911 */ MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 12953 /* 12916 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 12919 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 12943 /* 12924 */ MCD::OPC_CheckField, 19, 2, 0, 18, 16, 0, // Skip to: 17045 /* 12931 */ MCD::OPC_CheckField, 1, 1, 0, 11, 16, 0, // Skip to: 17045 /* 12938 */ MCD::OPC_Decode, 225, 17, 141, 1, // Opcode: XXSPLTIB /* 12943 */ MCD::OPC_FilterValue, 1, 1, 16, 0, // Skip to: 17045 /* 12948 */ MCD::OPC_Decode, 202, 17, 142, 1, // Opcode: XXINSERTW /* 12953 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 12970 /* 12958 */ MCD::OPC_CheckField, 3, 1, 0, 240, 15, 0, // Skip to: 17045 /* 12965 */ MCD::OPC_Decode, 212, 17, 134, 1, // Opcode: XXLXOR /* 12970 */ MCD::OPC_FilterValue, 5, 230, 15, 0, // Skip to: 17045 /* 12975 */ MCD::OPC_CheckField, 3, 1, 0, 223, 15, 0, // Skip to: 17045 /* 12982 */ MCD::OPC_Decode, 205, 17, 134, 1, // Opcode: XXLEQV /* 12987 */ MCD::OPC_FilterValue, 2, 253, 7, 0, // Skip to: 15037 /* 12992 */ MCD::OPC_ExtractField, 7, 4, // Inst{10-7} ... /* 12995 */ MCD::OPC_FilterValue, 0, 69, 0, 0, // Skip to: 13069 /* 13000 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 13003 */ MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13045 /* 13008 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13011 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13028 /* 13016 */ MCD::OPC_CheckField, 16, 5, 0, 182, 15, 0, // Skip to: 17045 /* 13023 */ MCD::OPC_Decode, 211, 16, 143, 1, // Opcode: XSRSQRTESP /* 13028 */ MCD::OPC_FilterValue, 1, 172, 15, 0, // Skip to: 17045 /* 13033 */ MCD::OPC_CheckField, 16, 5, 0, 165, 15, 0, // Skip to: 17045 /* 13040 */ MCD::OPC_Decode, 205, 16, 143, 1, // Opcode: XSRESP /* 13045 */ MCD::OPC_FilterValue, 3, 155, 15, 0, // Skip to: 17045 /* 13050 */ MCD::OPC_CheckField, 16, 5, 0, 148, 15, 0, // Skip to: 17045 /* 13057 */ MCD::OPC_CheckField, 6, 1, 0, 141, 15, 0, // Skip to: 17045 /* 13064 */ MCD::OPC_Decode, 215, 16, 143, 1, // Opcode: XSSQRTSP /* 13069 */ MCD::OPC_FilterValue, 2, 153, 0, 0, // Skip to: 13227 /* 13074 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 13077 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13119 /* 13082 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13085 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13102 /* 13090 */ MCD::OPC_CheckField, 16, 5, 0, 108, 15, 0, // Skip to: 17045 /* 13097 */ MCD::OPC_Decode, 138, 16, 144, 1, // Opcode: XSCVDPUXWS /* 13102 */ MCD::OPC_FilterValue, 1, 98, 15, 0, // Skip to: 17045 /* 13107 */ MCD::OPC_CheckField, 16, 5, 0, 91, 15, 0, // Skip to: 17045 /* 13114 */ MCD::OPC_Decode, 134, 16, 144, 1, // Opcode: XSCVDPSXWS /* 13119 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13161 /* 13124 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13127 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13144 /* 13132 */ MCD::OPC_CheckField, 16, 5, 0, 66, 15, 0, // Skip to: 17045 /* 13139 */ MCD::OPC_Decode, 199, 16, 144, 1, // Opcode: XSRDPI /* 13144 */ MCD::OPC_FilterValue, 1, 56, 15, 0, // Skip to: 17045 /* 13149 */ MCD::OPC_CheckField, 16, 5, 0, 49, 15, 0, // Skip to: 17045 /* 13156 */ MCD::OPC_Decode, 203, 16, 144, 1, // Opcode: XSRDPIZ /* 13161 */ MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13203 /* 13166 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13169 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13186 /* 13174 */ MCD::OPC_CheckField, 16, 5, 0, 24, 15, 0, // Skip to: 17045 /* 13181 */ MCD::OPC_Decode, 210, 16, 144, 1, // Opcode: XSRSQRTEDP /* 13186 */ MCD::OPC_FilterValue, 1, 14, 15, 0, // Skip to: 17045 /* 13191 */ MCD::OPC_CheckField, 16, 5, 0, 7, 15, 0, // Skip to: 17045 /* 13198 */ MCD::OPC_Decode, 204, 16, 144, 1, // Opcode: XSREDP /* 13203 */ MCD::OPC_FilterValue, 3, 253, 14, 0, // Skip to: 17045 /* 13208 */ MCD::OPC_CheckField, 16, 5, 0, 246, 14, 0, // Skip to: 17045 /* 13215 */ MCD::OPC_CheckField, 6, 1, 0, 239, 14, 0, // Skip to: 17045 /* 13222 */ MCD::OPC_Decode, 212, 16, 144, 1, // Opcode: XSSQRTDP /* 13227 */ MCD::OPC_FilterValue, 3, 140, 0, 0, // Skip to: 13372 /* 13232 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 13235 */ MCD::OPC_FilterValue, 0, 51, 0, 0, // Skip to: 13291 /* 13240 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13243 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13267 /* 13248 */ MCD::OPC_CheckField, 16, 5, 0, 206, 14, 0, // Skip to: 17045 /* 13255 */ MCD::OPC_CheckField, 2, 1, 1, 199, 14, 0, // Skip to: 17045 /* 13262 */ MCD::OPC_Decode, 202, 16, 144, 1, // Opcode: XSRDPIP /* 13267 */ MCD::OPC_FilterValue, 1, 189, 14, 0, // Skip to: 17045 /* 13272 */ MCD::OPC_CheckField, 16, 5, 0, 182, 14, 0, // Skip to: 17045 /* 13279 */ MCD::OPC_CheckField, 2, 1, 1, 175, 14, 0, // Skip to: 17045 /* 13286 */ MCD::OPC_Decode, 201, 16, 144, 1, // Opcode: XSRDPIM /* 13291 */ MCD::OPC_FilterValue, 1, 165, 14, 0, // Skip to: 17045 /* 13296 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13299 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 13348 /* 13304 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 13307 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13331 /* 13312 */ MCD::OPC_CheckField, 16, 7, 0, 142, 14, 0, // Skip to: 17045 /* 13319 */ MCD::OPC_CheckField, 0, 1, 0, 135, 14, 0, // Skip to: 17045 /* 13326 */ MCD::OPC_Decode, 221, 16, 145, 1, // Opcode: XSTSQRTDP /* 13331 */ MCD::OPC_FilterValue, 1, 125, 14, 0, // Skip to: 17045 /* 13336 */ MCD::OPC_CheckField, 16, 5, 0, 118, 14, 0, // Skip to: 17045 /* 13343 */ MCD::OPC_Decode, 200, 16, 144, 1, // Opcode: XSRDPIC /* 13348 */ MCD::OPC_FilterValue, 1, 108, 14, 0, // Skip to: 17045 /* 13353 */ MCD::OPC_CheckField, 21, 2, 0, 101, 14, 0, // Skip to: 17045 /* 13360 */ MCD::OPC_CheckField, 0, 1, 0, 94, 14, 0, // Skip to: 17045 /* 13367 */ MCD::OPC_Decode, 220, 16, 138, 1, // Opcode: XSTDIVDP /* 13372 */ MCD::OPC_FilterValue, 4, 153, 0, 0, // Skip to: 13530 /* 13377 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 13380 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13422 /* 13385 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13388 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13405 /* 13393 */ MCD::OPC_CheckField, 16, 5, 0, 61, 14, 0, // Skip to: 17045 /* 13400 */ MCD::OPC_Decode, 130, 17, 146, 1, // Opcode: XVCVSPUXWS /* 13405 */ MCD::OPC_FilterValue, 1, 51, 14, 0, // Skip to: 17045 /* 13410 */ MCD::OPC_CheckField, 16, 5, 0, 44, 14, 0, // Skip to: 17045 /* 13417 */ MCD::OPC_Decode, 128, 17, 146, 1, // Opcode: XVCVSPSXWS /* 13422 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13464 /* 13427 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13430 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13447 /* 13435 */ MCD::OPC_CheckField, 16, 5, 0, 19, 14, 0, // Skip to: 17045 /* 13442 */ MCD::OPC_Decode, 176, 17, 146, 1, // Opcode: XVRSPI /* 13447 */ MCD::OPC_FilterValue, 1, 9, 14, 0, // Skip to: 17045 /* 13452 */ MCD::OPC_CheckField, 16, 5, 0, 2, 14, 0, // Skip to: 17045 /* 13459 */ MCD::OPC_Decode, 180, 17, 146, 1, // Opcode: XVRSPIZ /* 13464 */ MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13506 /* 13469 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13472 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13489 /* 13477 */ MCD::OPC_CheckField, 16, 5, 0, 233, 13, 0, // Skip to: 17045 /* 13484 */ MCD::OPC_Decode, 182, 17, 146, 1, // Opcode: XVRSQRTESP /* 13489 */ MCD::OPC_FilterValue, 1, 223, 13, 0, // Skip to: 17045 /* 13494 */ MCD::OPC_CheckField, 16, 5, 0, 216, 13, 0, // Skip to: 17045 /* 13501 */ MCD::OPC_Decode, 175, 17, 146, 1, // Opcode: XVRESP /* 13506 */ MCD::OPC_FilterValue, 3, 206, 13, 0, // Skip to: 17045 /* 13511 */ MCD::OPC_CheckField, 16, 5, 0, 199, 13, 0, // Skip to: 17045 /* 13518 */ MCD::OPC_CheckField, 6, 1, 0, 192, 13, 0, // Skip to: 17045 /* 13525 */ MCD::OPC_Decode, 184, 17, 146, 1, // Opcode: XVSQRTSP /* 13530 */ MCD::OPC_FilterValue, 5, 176, 0, 0, // Skip to: 13711 /* 13535 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 13538 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 13630 /* 13543 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 13546 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13588 /* 13551 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13554 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13571 /* 13559 */ MCD::OPC_CheckField, 16, 5, 0, 151, 13, 0, // Skip to: 17045 /* 13566 */ MCD::OPC_Decode, 138, 17, 146, 1, // Opcode: XVCVUXWSP /* 13571 */ MCD::OPC_FilterValue, 1, 141, 13, 0, // Skip to: 17045 /* 13576 */ MCD::OPC_CheckField, 16, 5, 0, 134, 13, 0, // Skip to: 17045 /* 13583 */ MCD::OPC_Decode, 134, 17, 146, 1, // Opcode: XVCVSXWSP /* 13588 */ MCD::OPC_FilterValue, 1, 124, 13, 0, // Skip to: 17045 /* 13593 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13596 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13613 /* 13601 */ MCD::OPC_CheckField, 16, 5, 0, 109, 13, 0, // Skip to: 17045 /* 13608 */ MCD::OPC_Decode, 179, 17, 146, 1, // Opcode: XVRSPIP /* 13613 */ MCD::OPC_FilterValue, 1, 99, 13, 0, // Skip to: 17045 /* 13618 */ MCD::OPC_CheckField, 16, 5, 0, 92, 13, 0, // Skip to: 17045 /* 13625 */ MCD::OPC_Decode, 178, 17, 146, 1, // Opcode: XVRSPIM /* 13630 */ MCD::OPC_FilterValue, 1, 82, 13, 0, // Skip to: 17045 /* 13635 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13638 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 13687 /* 13643 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 13646 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 13670 /* 13651 */ MCD::OPC_CheckField, 16, 7, 0, 59, 13, 0, // Skip to: 17045 /* 13658 */ MCD::OPC_CheckField, 0, 1, 0, 52, 13, 0, // Skip to: 17045 /* 13665 */ MCD::OPC_Decode, 190, 17, 147, 1, // Opcode: XVTSQRTSP /* 13670 */ MCD::OPC_FilterValue, 1, 42, 13, 0, // Skip to: 17045 /* 13675 */ MCD::OPC_CheckField, 16, 5, 0, 35, 13, 0, // Skip to: 17045 /* 13682 */ MCD::OPC_Decode, 177, 17, 146, 1, // Opcode: XVRSPIC /* 13687 */ MCD::OPC_FilterValue, 1, 25, 13, 0, // Skip to: 17045 /* 13692 */ MCD::OPC_CheckField, 21, 2, 0, 18, 13, 0, // Skip to: 17045 /* 13699 */ MCD::OPC_CheckField, 0, 1, 0, 11, 13, 0, // Skip to: 17045 /* 13706 */ MCD::OPC_Decode, 188, 17, 148, 1, // Opcode: XVTDIVSP /* 13711 */ MCD::OPC_FilterValue, 6, 153, 0, 0, // Skip to: 13869 /* 13716 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 13719 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13761 /* 13724 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13727 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13744 /* 13732 */ MCD::OPC_CheckField, 16, 5, 0, 234, 12, 0, // Skip to: 17045 /* 13739 */ MCD::OPC_Decode, 251, 16, 146, 1, // Opcode: XVCVDPUXWS /* 13744 */ MCD::OPC_FilterValue, 1, 224, 12, 0, // Skip to: 17045 /* 13749 */ MCD::OPC_CheckField, 16, 5, 0, 217, 12, 0, // Skip to: 17045 /* 13756 */ MCD::OPC_Decode, 249, 16, 146, 1, // Opcode: XVCVDPSXWS /* 13761 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 13803 /* 13766 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13769 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13786 /* 13774 */ MCD::OPC_CheckField, 16, 5, 0, 192, 12, 0, // Skip to: 17045 /* 13781 */ MCD::OPC_Decode, 169, 17, 146, 1, // Opcode: XVRDPI /* 13786 */ MCD::OPC_FilterValue, 1, 182, 12, 0, // Skip to: 17045 /* 13791 */ MCD::OPC_CheckField, 16, 5, 0, 175, 12, 0, // Skip to: 17045 /* 13798 */ MCD::OPC_Decode, 173, 17, 146, 1, // Opcode: XVRDPIZ /* 13803 */ MCD::OPC_FilterValue, 2, 37, 0, 0, // Skip to: 13845 /* 13808 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13811 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13828 /* 13816 */ MCD::OPC_CheckField, 16, 5, 0, 150, 12, 0, // Skip to: 17045 /* 13823 */ MCD::OPC_Decode, 181, 17, 146, 1, // Opcode: XVRSQRTEDP /* 13828 */ MCD::OPC_FilterValue, 1, 140, 12, 0, // Skip to: 17045 /* 13833 */ MCD::OPC_CheckField, 16, 5, 0, 133, 12, 0, // Skip to: 17045 /* 13840 */ MCD::OPC_Decode, 174, 17, 146, 1, // Opcode: XVREDP /* 13845 */ MCD::OPC_FilterValue, 3, 123, 12, 0, // Skip to: 17045 /* 13850 */ MCD::OPC_CheckField, 16, 5, 0, 116, 12, 0, // Skip to: 17045 /* 13857 */ MCD::OPC_CheckField, 6, 1, 0, 109, 12, 0, // Skip to: 17045 /* 13864 */ MCD::OPC_Decode, 183, 17, 146, 1, // Opcode: XVSQRTDP /* 13869 */ MCD::OPC_FilterValue, 7, 176, 0, 0, // Skip to: 14050 /* 13874 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 13877 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 13969 /* 13882 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 13885 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 13927 /* 13890 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13893 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13910 /* 13898 */ MCD::OPC_CheckField, 16, 5, 0, 68, 12, 0, // Skip to: 17045 /* 13905 */ MCD::OPC_Decode, 137, 17, 146, 1, // Opcode: XVCVUXWDP /* 13910 */ MCD::OPC_FilterValue, 1, 58, 12, 0, // Skip to: 17045 /* 13915 */ MCD::OPC_CheckField, 16, 5, 0, 51, 12, 0, // Skip to: 17045 /* 13922 */ MCD::OPC_Decode, 133, 17, 146, 1, // Opcode: XVCVSXWDP /* 13927 */ MCD::OPC_FilterValue, 1, 41, 12, 0, // Skip to: 17045 /* 13932 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13935 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 13952 /* 13940 */ MCD::OPC_CheckField, 16, 5, 0, 26, 12, 0, // Skip to: 17045 /* 13947 */ MCD::OPC_Decode, 172, 17, 146, 1, // Opcode: XVRDPIP /* 13952 */ MCD::OPC_FilterValue, 1, 16, 12, 0, // Skip to: 17045 /* 13957 */ MCD::OPC_CheckField, 16, 5, 0, 9, 12, 0, // Skip to: 17045 /* 13964 */ MCD::OPC_Decode, 171, 17, 146, 1, // Opcode: XVRDPIM /* 13969 */ MCD::OPC_FilterValue, 1, 255, 11, 0, // Skip to: 17045 /* 13974 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 13977 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 14026 /* 13982 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 13985 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 14009 /* 13990 */ MCD::OPC_CheckField, 16, 7, 0, 232, 11, 0, // Skip to: 17045 /* 13997 */ MCD::OPC_CheckField, 0, 1, 0, 225, 11, 0, // Skip to: 17045 /* 14004 */ MCD::OPC_Decode, 189, 17, 147, 1, // Opcode: XVTSQRTDP /* 14009 */ MCD::OPC_FilterValue, 1, 215, 11, 0, // Skip to: 17045 /* 14014 */ MCD::OPC_CheckField, 16, 5, 0, 208, 11, 0, // Skip to: 17045 /* 14021 */ MCD::OPC_Decode, 170, 17, 146, 1, // Opcode: XVRDPIC /* 14026 */ MCD::OPC_FilterValue, 1, 198, 11, 0, // Skip to: 17045 /* 14031 */ MCD::OPC_CheckField, 21, 2, 0, 191, 11, 0, // Skip to: 17045 /* 14038 */ MCD::OPC_CheckField, 0, 1, 0, 184, 11, 0, // Skip to: 17045 /* 14045 */ MCD::OPC_Decode, 187, 17, 148, 1, // Opcode: XVTDIVDP /* 14050 */ MCD::OPC_FilterValue, 8, 69, 0, 0, // Skip to: 14124 /* 14055 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14058 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14100 /* 14063 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14066 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14083 /* 14071 */ MCD::OPC_CheckField, 16, 5, 0, 151, 11, 0, // Skip to: 17045 /* 14078 */ MCD::OPC_Decode, 130, 16, 144, 1, // Opcode: XSCVDPSP /* 14083 */ MCD::OPC_FilterValue, 1, 141, 11, 0, // Skip to: 17045 /* 14088 */ MCD::OPC_CheckField, 16, 5, 0, 134, 11, 0, // Skip to: 17045 /* 14095 */ MCD::OPC_Decode, 209, 16, 149, 1, // Opcode: XSRSP /* 14100 */ MCD::OPC_FilterValue, 3, 124, 11, 0, // Skip to: 17045 /* 14105 */ MCD::OPC_CheckField, 16, 5, 0, 117, 11, 0, // Skip to: 17045 /* 14112 */ MCD::OPC_CheckField, 6, 1, 0, 110, 11, 0, // Skip to: 17045 /* 14119 */ MCD::OPC_Decode, 131, 16, 150, 1, // Opcode: XSCVDPSPN /* 14124 */ MCD::OPC_FilterValue, 9, 69, 0, 0, // Skip to: 14198 /* 14129 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14132 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14174 /* 14137 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14140 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14157 /* 14145 */ MCD::OPC_CheckField, 16, 5, 0, 77, 11, 0, // Skip to: 17045 /* 14152 */ MCD::OPC_Decode, 154, 16, 149, 1, // Opcode: XSCVUXDSP /* 14157 */ MCD::OPC_FilterValue, 1, 67, 11, 0, // Skip to: 17045 /* 14162 */ MCD::OPC_CheckField, 16, 5, 0, 60, 11, 0, // Skip to: 17045 /* 14169 */ MCD::OPC_Decode, 151, 16, 149, 1, // Opcode: XSCVSXDSP /* 14174 */ MCD::OPC_FilterValue, 2, 50, 11, 0, // Skip to: 17045 /* 14179 */ MCD::OPC_CheckField, 6, 1, 0, 43, 11, 0, // Skip to: 17045 /* 14186 */ MCD::OPC_CheckField, 0, 1, 0, 36, 11, 0, // Skip to: 17045 /* 14193 */ MCD::OPC_Decode, 224, 16, 151, 1, // Opcode: XSTSTDCSP /* 14198 */ MCD::OPC_FilterValue, 10, 181, 0, 0, // Skip to: 14384 /* 14203 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 14206 */ MCD::OPC_FilterValue, 0, 94, 0, 0, // Skip to: 14305 /* 14211 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14214 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 14242 /* 14219 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14222 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14232 /* 14227 */ MCD::OPC_Decode, 136, 16, 144, 1, // Opcode: XSCVDPUXDS /* 14232 */ MCD::OPC_FilterValue, 1, 248, 10, 0, // Skip to: 17045 /* 14237 */ MCD::OPC_Decode, 132, 16, 144, 1, // Opcode: XSCVDPSXDS /* 14242 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 14270 /* 14247 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14250 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14260 /* 14255 */ MCD::OPC_Decode, 148, 16, 144, 1, // Opcode: XSCVSPDP /* 14260 */ MCD::OPC_FilterValue, 1, 220, 10, 0, // Skip to: 17045 /* 14265 */ MCD::OPC_Decode, 239, 15, 144, 1, // Opcode: XSABSDP /* 14270 */ MCD::OPC_FilterValue, 3, 210, 10, 0, // Skip to: 17045 /* 14275 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14278 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14288 /* 14283 */ MCD::OPC_Decode, 149, 16, 152, 1, // Opcode: XSCVSPDPN /* 14288 */ MCD::OPC_FilterValue, 1, 192, 10, 0, // Skip to: 17045 /* 14293 */ MCD::OPC_CheckField, 0, 1, 0, 185, 10, 0, // Skip to: 17045 /* 14300 */ MCD::OPC_Decode, 225, 16, 153, 1, // Opcode: XSXEXPDP /* 14305 */ MCD::OPC_FilterValue, 1, 26, 0, 0, // Skip to: 14336 /* 14310 */ MCD::OPC_CheckField, 6, 1, 1, 168, 10, 0, // Skip to: 17045 /* 14317 */ MCD::OPC_CheckField, 2, 2, 3, 161, 10, 0, // Skip to: 17045 /* 14324 */ MCD::OPC_CheckField, 0, 1, 0, 154, 10, 0, // Skip to: 17045 /* 14331 */ MCD::OPC_Decode, 227, 16, 153, 1, // Opcode: XSXSIGDP /* 14336 */ MCD::OPC_FilterValue, 16, 19, 0, 0, // Skip to: 14360 /* 14341 */ MCD::OPC_CheckField, 6, 1, 1, 137, 10, 0, // Skip to: 17045 /* 14348 */ MCD::OPC_CheckField, 2, 2, 3, 130, 10, 0, // Skip to: 17045 /* 14355 */ MCD::OPC_Decode, 140, 16, 144, 1, // Opcode: XSCVHPDP /* 14360 */ MCD::OPC_FilterValue, 17, 120, 10, 0, // Skip to: 17045 /* 14365 */ MCD::OPC_CheckField, 6, 1, 1, 113, 10, 0, // Skip to: 17045 /* 14372 */ MCD::OPC_CheckField, 2, 2, 3, 106, 10, 0, // Skip to: 17045 /* 14379 */ MCD::OPC_Decode, 128, 16, 144, 1, // Opcode: XSCVDPHP /* 14384 */ MCD::OPC_FilterValue, 11, 111, 0, 0, // Skip to: 14500 /* 14389 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14392 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14434 /* 14397 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14400 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14417 /* 14405 */ MCD::OPC_CheckField, 16, 5, 0, 73, 10, 0, // Skip to: 17045 /* 14412 */ MCD::OPC_Decode, 153, 16, 144, 1, // Opcode: XSCVUXDDP /* 14417 */ MCD::OPC_FilterValue, 1, 63, 10, 0, // Skip to: 17045 /* 14422 */ MCD::OPC_CheckField, 16, 5, 0, 56, 10, 0, // Skip to: 17045 /* 14429 */ MCD::OPC_Decode, 150, 16, 144, 1, // Opcode: XSCVSXDDP /* 14434 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14476 /* 14439 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14442 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14459 /* 14447 */ MCD::OPC_CheckField, 16, 5, 0, 31, 10, 0, // Skip to: 17045 /* 14454 */ MCD::OPC_Decode, 183, 16, 144, 1, // Opcode: XSNABSDP /* 14459 */ MCD::OPC_FilterValue, 1, 21, 10, 0, // Skip to: 17045 /* 14464 */ MCD::OPC_CheckField, 16, 5, 0, 14, 10, 0, // Skip to: 17045 /* 14471 */ MCD::OPC_Decode, 185, 16, 144, 1, // Opcode: XSNEGDP /* 14476 */ MCD::OPC_FilterValue, 2, 4, 10, 0, // Skip to: 17045 /* 14481 */ MCD::OPC_CheckField, 6, 1, 0, 253, 9, 0, // Skip to: 17045 /* 14488 */ MCD::OPC_CheckField, 0, 1, 0, 246, 9, 0, // Skip to: 17045 /* 14495 */ MCD::OPC_Decode, 222, 16, 151, 1, // Opcode: XSTSTDCDP /* 14500 */ MCD::OPC_FilterValue, 12, 87, 0, 0, // Skip to: 14592 /* 14505 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14508 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14550 /* 14513 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14516 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14533 /* 14521 */ MCD::OPC_CheckField, 16, 5, 0, 213, 9, 0, // Skip to: 17045 /* 14528 */ MCD::OPC_Decode, 129, 17, 146, 1, // Opcode: XVCVSPUXDS /* 14533 */ MCD::OPC_FilterValue, 1, 203, 9, 0, // Skip to: 17045 /* 14538 */ MCD::OPC_CheckField, 16, 5, 0, 196, 9, 0, // Skip to: 17045 /* 14545 */ MCD::OPC_Decode, 255, 16, 146, 1, // Opcode: XVCVSPSXDS /* 14550 */ MCD::OPC_FilterValue, 1, 186, 9, 0, // Skip to: 17045 /* 14555 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14558 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14575 /* 14563 */ MCD::OPC_CheckField, 16, 5, 0, 171, 9, 0, // Skip to: 17045 /* 14570 */ MCD::OPC_Decode, 247, 16, 146, 1, // Opcode: XVCVDPSP /* 14575 */ MCD::OPC_FilterValue, 1, 161, 9, 0, // Skip to: 17045 /* 14580 */ MCD::OPC_CheckField, 16, 5, 0, 154, 9, 0, // Skip to: 17045 /* 14587 */ MCD::OPC_Decode, 230, 16, 146, 1, // Opcode: XVABSSP /* 14592 */ MCD::OPC_FilterValue, 13, 105, 0, 0, // Skip to: 14702 /* 14597 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 14600 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 14692 /* 14605 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 14608 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14650 /* 14613 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14616 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14633 /* 14621 */ MCD::OPC_CheckField, 16, 5, 0, 113, 9, 0, // Skip to: 17045 /* 14628 */ MCD::OPC_Decode, 136, 17, 146, 1, // Opcode: XVCVUXDSP /* 14633 */ MCD::OPC_FilterValue, 1, 103, 9, 0, // Skip to: 17045 /* 14638 */ MCD::OPC_CheckField, 16, 5, 0, 96, 9, 0, // Skip to: 17045 /* 14645 */ MCD::OPC_Decode, 132, 17, 146, 1, // Opcode: XVCVSXDSP /* 14650 */ MCD::OPC_FilterValue, 1, 86, 9, 0, // Skip to: 17045 /* 14655 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14658 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14675 /* 14663 */ MCD::OPC_CheckField, 16, 5, 0, 71, 9, 0, // Skip to: 17045 /* 14670 */ MCD::OPC_Decode, 158, 17, 146, 1, // Opcode: XVNABSSP /* 14675 */ MCD::OPC_FilterValue, 1, 61, 9, 0, // Skip to: 17045 /* 14680 */ MCD::OPC_CheckField, 16, 5, 0, 54, 9, 0, // Skip to: 17045 /* 14687 */ MCD::OPC_Decode, 160, 17, 146, 1, // Opcode: XVNEGSP /* 14692 */ MCD::OPC_FilterValue, 1, 44, 9, 0, // Skip to: 17045 /* 14697 */ MCD::OPC_Decode, 192, 17, 154, 1, // Opcode: XVTSTDCSP /* 14702 */ MCD::OPC_FilterValue, 14, 220, 0, 0, // Skip to: 14927 /* 14707 */ MCD::OPC_ExtractField, 2, 2, // Inst{3-2} ... /* 14710 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14752 /* 14715 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14718 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14735 /* 14723 */ MCD::OPC_CheckField, 16, 5, 0, 11, 9, 0, // Skip to: 17045 /* 14730 */ MCD::OPC_Decode, 250, 16, 146, 1, // Opcode: XVCVDPUXDS /* 14735 */ MCD::OPC_FilterValue, 1, 1, 9, 0, // Skip to: 17045 /* 14740 */ MCD::OPC_CheckField, 16, 5, 0, 250, 8, 0, // Skip to: 17045 /* 14747 */ MCD::OPC_Decode, 248, 16, 146, 1, // Opcode: XVCVDPSXDS /* 14752 */ MCD::OPC_FilterValue, 1, 37, 0, 0, // Skip to: 14794 /* 14757 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14760 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14777 /* 14765 */ MCD::OPC_CheckField, 16, 5, 0, 225, 8, 0, // Skip to: 17045 /* 14772 */ MCD::OPC_Decode, 253, 16, 146, 1, // Opcode: XVCVSPDP /* 14777 */ MCD::OPC_FilterValue, 1, 215, 8, 0, // Skip to: 17045 /* 14782 */ MCD::OPC_CheckField, 16, 5, 0, 208, 8, 0, // Skip to: 17045 /* 14789 */ MCD::OPC_Decode, 229, 16, 146, 1, // Opcode: XVABSDP /* 14794 */ MCD::OPC_FilterValue, 3, 198, 8, 0, // Skip to: 17045 /* 14799 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14802 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14819 /* 14807 */ MCD::OPC_CheckField, 1, 1, 0, 183, 8, 0, // Skip to: 17045 /* 14814 */ MCD::OPC_Decode, 159, 16, 155, 1, // Opcode: XSIEXPDP /* 14819 */ MCD::OPC_FilterValue, 1, 173, 8, 0, // Skip to: 17045 /* 14824 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 14827 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 14837 /* 14832 */ MCD::OPC_Decode, 193, 17, 146, 1, // Opcode: XVXEXPDP /* 14837 */ MCD::OPC_FilterValue, 1, 5, 0, 0, // Skip to: 14847 /* 14842 */ MCD::OPC_Decode, 195, 17, 146, 1, // Opcode: XVXSIGDP /* 14847 */ MCD::OPC_FilterValue, 7, 5, 0, 0, // Skip to: 14857 /* 14852 */ MCD::OPC_Decode, 198, 17, 146, 1, // Opcode: XXBRH /* 14857 */ MCD::OPC_FilterValue, 8, 5, 0, 0, // Skip to: 14867 /* 14862 */ MCD::OPC_Decode, 194, 17, 146, 1, // Opcode: XVXEXPSP /* 14867 */ MCD::OPC_FilterValue, 9, 5, 0, 0, // Skip to: 14877 /* 14872 */ MCD::OPC_Decode, 196, 17, 146, 1, // Opcode: XVXSIGSP /* 14877 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 14887 /* 14882 */ MCD::OPC_Decode, 200, 17, 146, 1, // Opcode: XXBRW /* 14887 */ MCD::OPC_FilterValue, 23, 5, 0, 0, // Skip to: 14897 /* 14892 */ MCD::OPC_Decode, 197, 17, 146, 1, // Opcode: XXBRD /* 14897 */ MCD::OPC_FilterValue, 24, 5, 0, 0, // Skip to: 14907 /* 14902 */ MCD::OPC_Decode, 252, 16, 146, 1, // Opcode: XVCVHPSP /* 14907 */ MCD::OPC_FilterValue, 25, 5, 0, 0, // Skip to: 14917 /* 14912 */ MCD::OPC_Decode, 254, 16, 146, 1, // Opcode: XVCVSPHP /* 14917 */ MCD::OPC_FilterValue, 31, 75, 8, 0, // Skip to: 17045 /* 14922 */ MCD::OPC_Decode, 199, 17, 146, 1, // Opcode: XXBRQ /* 14927 */ MCD::OPC_FilterValue, 15, 65, 8, 0, // Skip to: 17045 /* 14932 */ MCD::OPC_ExtractField, 3, 1, // Inst{3} ... /* 14935 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 15027 /* 14940 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 14943 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 14985 /* 14948 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14951 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 14968 /* 14956 */ MCD::OPC_CheckField, 16, 5, 0, 34, 8, 0, // Skip to: 17045 /* 14963 */ MCD::OPC_Decode, 135, 17, 146, 1, // Opcode: XVCVUXDDP /* 14968 */ MCD::OPC_FilterValue, 1, 24, 8, 0, // Skip to: 17045 /* 14973 */ MCD::OPC_CheckField, 16, 5, 0, 17, 8, 0, // Skip to: 17045 /* 14980 */ MCD::OPC_Decode, 131, 17, 146, 1, // Opcode: XVCVSXDDP /* 14985 */ MCD::OPC_FilterValue, 1, 7, 8, 0, // Skip to: 17045 /* 14990 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... /* 14993 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15010 /* 14998 */ MCD::OPC_CheckField, 16, 5, 0, 248, 7, 0, // Skip to: 17045 /* 15005 */ MCD::OPC_Decode, 157, 17, 146, 1, // Opcode: XVNABSDP /* 15010 */ MCD::OPC_FilterValue, 1, 238, 7, 0, // Skip to: 17045 /* 15015 */ MCD::OPC_CheckField, 16, 5, 0, 231, 7, 0, // Skip to: 17045 /* 15022 */ MCD::OPC_Decode, 159, 17, 146, 1, // Opcode: XVNEGDP /* 15027 */ MCD::OPC_FilterValue, 1, 221, 7, 0, // Skip to: 17045 /* 15032 */ MCD::OPC_Decode, 191, 17, 154, 1, // Opcode: XVTSTDCDP /* 15037 */ MCD::OPC_FilterValue, 3, 211, 7, 0, // Skip to: 17045 /* 15042 */ MCD::OPC_Decode, 222, 17, 156, 1, // Opcode: XXSEL /* 15047 */ MCD::OPC_FilterValue, 61, 49, 0, 0, // Skip to: 15101 /* 15052 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 15055 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 15083 /* 15060 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... /* 15063 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 15073 /* 15068 */ MCD::OPC_Decode, 227, 8, 157, 1, // Opcode: LXV /* 15073 */ MCD::OPC_FilterValue, 1, 175, 7, 0, // Skip to: 17045 /* 15078 */ MCD::OPC_Decode, 223, 12, 157, 1, // Opcode: STXV /* 15083 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 15092 /* 15088 */ MCD::OPC_Decode, 214, 12, 123, // Opcode: STXSD /* 15092 */ MCD::OPC_FilterValue, 3, 156, 7, 0, // Skip to: 17045 /* 15097 */ MCD::OPC_Decode, 221, 12, 123, // Opcode: STXSSP /* 15101 */ MCD::OPC_FilterValue, 62, 21, 0, 0, // Skip to: 15127 /* 15106 */ MCD::OPC_ExtractField, 0, 2, // Inst{1-0} ... /* 15109 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15118 /* 15114 */ MCD::OPC_Decode, 155, 12, 124, // Opcode: STD /* 15118 */ MCD::OPC_FilterValue, 1, 130, 7, 0, // Skip to: 17045 /* 15123 */ MCD::OPC_Decode, 160, 12, 124, // Opcode: STDU /* 15127 */ MCD::OPC_FilterValue, 63, 121, 7, 0, // Skip to: 17045 /* 15132 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... /* 15135 */ MCD::OPC_FilterValue, 0, 77, 0, 0, // Skip to: 15217 /* 15140 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15143 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15160 /* 15148 */ MCD::OPC_CheckField, 21, 2, 0, 98, 7, 0, // Skip to: 17045 /* 15155 */ MCD::OPC_Decode, 128, 7, 158, 1, // Opcode: FCMPUS /* 15160 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 15183 /* 15165 */ MCD::OPC_CheckField, 21, 2, 0, 81, 7, 0, // Skip to: 17045 /* 15172 */ MCD::OPC_CheckField, 11, 7, 0, 74, 7, 0, // Skip to: 17045 /* 15179 */ MCD::OPC_Decode, 243, 8, 35, // Opcode: MCRFS /* 15183 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 15200 /* 15188 */ MCD::OPC_CheckField, 21, 2, 0, 58, 7, 0, // Skip to: 17045 /* 15195 */ MCD::OPC_Decode, 221, 7, 159, 1, // Opcode: FTDIV /* 15200 */ MCD::OPC_FilterValue, 5, 48, 7, 0, // Skip to: 17045 /* 15205 */ MCD::OPC_CheckField, 16, 7, 0, 41, 7, 0, // Skip to: 17045 /* 15212 */ MCD::OPC_Decode, 222, 7, 160, 1, // Opcode: FTSQRT /* 15217 */ MCD::OPC_FilterValue, 8, 49, 1, 0, // Skip to: 15527 /* 15222 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15225 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15234 /* 15230 */ MCD::OPC_Decode, 242, 15, 3, // Opcode: XSADDQP /* 15234 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15243 /* 15239 */ MCD::OPC_Decode, 180, 16, 3, // Opcode: XSMULQP /* 15243 */ MCD::OPC_FilterValue, 3, 4, 0, 0, // Skip to: 15252 /* 15248 */ MCD::OPC_Decode, 255, 15, 3, // Opcode: XSCPSGNQP /* 15252 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 15269 /* 15257 */ MCD::OPC_CheckField, 21, 2, 0, 245, 6, 0, // Skip to: 17045 /* 15264 */ MCD::OPC_Decode, 251, 15, 161, 1, // Opcode: XSCMPOQP /* 15269 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 15286 /* 15274 */ MCD::OPC_CheckField, 21, 2, 0, 228, 6, 0, // Skip to: 17045 /* 15281 */ MCD::OPC_Decode, 247, 15, 161, 1, // Opcode: XSCMPEXPQP /* 15286 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 15296 /* 15291 */ MCD::OPC_Decode, 165, 16, 162, 1, // Opcode: XSMADDQP /* 15296 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 15306 /* 15301 */ MCD::OPC_Decode, 177, 16, 162, 1, // Opcode: XSMSUBQP /* 15306 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 15316 /* 15311 */ MCD::OPC_Decode, 191, 16, 162, 1, // Opcode: XSNMADDQP /* 15316 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 15326 /* 15321 */ MCD::OPC_Decode, 197, 16, 162, 1, // Opcode: XSNMSUBQP /* 15326 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15335 /* 15331 */ MCD::OPC_Decode, 217, 16, 3, // Opcode: XSSUBQP /* 15335 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15344 /* 15340 */ MCD::OPC_Decode, 156, 16, 3, // Opcode: XSDIVQP /* 15344 */ MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 15361 /* 15349 */ MCD::OPC_CheckField, 21, 2, 0, 153, 6, 0, // Skip to: 17045 /* 15356 */ MCD::OPC_Decode, 253, 15, 161, 1, // Opcode: XSCMPUQP /* 15361 */ MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15371 /* 15366 */ MCD::OPC_Decode, 223, 16, 163, 1, // Opcode: XSTSTDCQP /* 15371 */ MCD::OPC_FilterValue, 25, 57, 0, 0, // Skip to: 15433 /* 15376 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 15379 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15388 /* 15384 */ MCD::OPC_Decode, 240, 15, 6, // Opcode: XSABSQP /* 15388 */ MCD::OPC_FilterValue, 2, 4, 0, 0, // Skip to: 15397 /* 15393 */ MCD::OPC_Decode, 226, 16, 6, // Opcode: XSXEXPQP /* 15397 */ MCD::OPC_FilterValue, 8, 4, 0, 0, // Skip to: 15406 /* 15402 */ MCD::OPC_Decode, 184, 16, 6, // Opcode: XSNABSQP /* 15406 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15415 /* 15411 */ MCD::OPC_Decode, 186, 16, 6, // Opcode: XSNEGQP /* 15415 */ MCD::OPC_FilterValue, 18, 4, 0, 0, // Skip to: 15424 /* 15420 */ MCD::OPC_Decode, 228, 16, 6, // Opcode: XSXSIGQP /* 15424 */ MCD::OPC_FilterValue, 27, 80, 6, 0, // Skip to: 17045 /* 15429 */ MCD::OPC_Decode, 213, 16, 6, // Opcode: XSSQRTQP /* 15433 */ MCD::OPC_FilterValue, 26, 79, 0, 0, // Skip to: 15517 /* 15438 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 15441 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15450 /* 15446 */ MCD::OPC_Decode, 146, 16, 6, // Opcode: XSCVQPUWZ /* 15450 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 15460 /* 15455 */ MCD::OPC_Decode, 152, 16, 164, 1, // Opcode: XSCVUDQP /* 15460 */ MCD::OPC_FilterValue, 9, 4, 0, 0, // Skip to: 15469 /* 15465 */ MCD::OPC_Decode, 144, 16, 6, // Opcode: XSCVQPSWZ /* 15469 */ MCD::OPC_FilterValue, 10, 5, 0, 0, // Skip to: 15479 /* 15474 */ MCD::OPC_Decode, 147, 16, 164, 1, // Opcode: XSCVSDQP /* 15479 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15488 /* 15484 */ MCD::OPC_Decode, 145, 16, 6, // Opcode: XSCVQPUDZ /* 15488 */ MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 15498 /* 15493 */ MCD::OPC_Decode, 141, 16, 165, 1, // Opcode: XSCVQPDP /* 15498 */ MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15508 /* 15503 */ MCD::OPC_Decode, 129, 16, 164, 1, // Opcode: XSCVDPQP /* 15508 */ MCD::OPC_FilterValue, 25, 252, 5, 0, // Skip to: 17045 /* 15513 */ MCD::OPC_Decode, 143, 16, 6, // Opcode: XSCVQPSDZ /* 15517 */ MCD::OPC_FilterValue, 27, 243, 5, 0, // Skip to: 17045 /* 15522 */ MCD::OPC_Decode, 160, 16, 166, 1, // Opcode: XSIEXPQP /* 15527 */ MCD::OPC_FilterValue, 9, 112, 0, 0, // Skip to: 15644 /* 15532 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15535 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15544 /* 15540 */ MCD::OPC_Decode, 243, 15, 3, // Opcode: XSADDQPO /* 15544 */ MCD::OPC_FilterValue, 1, 4, 0, 0, // Skip to: 15553 /* 15549 */ MCD::OPC_Decode, 181, 16, 3, // Opcode: XSMULQPO /* 15553 */ MCD::OPC_FilterValue, 12, 5, 0, 0, // Skip to: 15563 /* 15558 */ MCD::OPC_Decode, 166, 16, 162, 1, // Opcode: XSMADDQPO /* 15563 */ MCD::OPC_FilterValue, 13, 5, 0, 0, // Skip to: 15573 /* 15568 */ MCD::OPC_Decode, 178, 16, 162, 1, // Opcode: XSMSUBQPO /* 15573 */ MCD::OPC_FilterValue, 14, 5, 0, 0, // Skip to: 15583 /* 15578 */ MCD::OPC_Decode, 192, 16, 162, 1, // Opcode: XSNMADDQPO /* 15583 */ MCD::OPC_FilterValue, 15, 5, 0, 0, // Skip to: 15593 /* 15588 */ MCD::OPC_Decode, 198, 16, 162, 1, // Opcode: XSNMSUBQPO /* 15593 */ MCD::OPC_FilterValue, 16, 4, 0, 0, // Skip to: 15602 /* 15598 */ MCD::OPC_Decode, 218, 16, 3, // Opcode: XSSUBQPO /* 15602 */ MCD::OPC_FilterValue, 17, 4, 0, 0, // Skip to: 15611 /* 15607 */ MCD::OPC_Decode, 157, 16, 3, // Opcode: XSDIVQPO /* 15611 */ MCD::OPC_FilterValue, 25, 11, 0, 0, // Skip to: 15627 /* 15616 */ MCD::OPC_CheckField, 16, 5, 27, 142, 5, 0, // Skip to: 17045 /* 15623 */ MCD::OPC_Decode, 214, 16, 6, // Opcode: XSSQRTQPO /* 15627 */ MCD::OPC_FilterValue, 26, 133, 5, 0, // Skip to: 17045 /* 15632 */ MCD::OPC_CheckField, 16, 5, 20, 126, 5, 0, // Skip to: 17045 /* 15639 */ MCD::OPC_Decode, 142, 16, 165, 1, // Opcode: XSCVQPDPO /* 15644 */ MCD::OPC_FilterValue, 10, 37, 0, 0, // Skip to: 15686 /* 15649 */ MCD::OPC_ExtractField, 6, 3, // Inst{8-6} ... /* 15652 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15669 /* 15657 */ MCD::OPC_CheckField, 17, 4, 0, 101, 5, 0, // Skip to: 17045 /* 15664 */ MCD::OPC_Decode, 206, 16, 167, 1, // Opcode: XSRQPI /* 15669 */ MCD::OPC_FilterValue, 1, 91, 5, 0, // Skip to: 17045 /* 15674 */ MCD::OPC_CheckField, 17, 4, 0, 84, 5, 0, // Skip to: 17045 /* 15681 */ MCD::OPC_Decode, 208, 16, 167, 1, // Opcode: XSRQPXP /* 15686 */ MCD::OPC_FilterValue, 11, 19, 0, 0, // Skip to: 15710 /* 15691 */ MCD::OPC_CheckField, 17, 4, 0, 67, 5, 0, // Skip to: 17045 /* 15698 */ MCD::OPC_CheckField, 6, 3, 0, 60, 5, 0, // Skip to: 17045 /* 15705 */ MCD::OPC_Decode, 207, 16, 167, 1, // Opcode: XSRQPIX /* 15710 */ MCD::OPC_FilterValue, 12, 52, 0, 0, // Skip to: 15767 /* 15715 */ MCD::OPC_ExtractField, 6, 6, // Inst{11-6} ... /* 15718 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 15734 /* 15723 */ MCD::OPC_CheckField, 12, 9, 0, 35, 5, 0, // Skip to: 17045 /* 15730 */ MCD::OPC_Decode, 165, 9, 111, // Opcode: MTFSB1 /* 15734 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 15750 /* 15739 */ MCD::OPC_CheckField, 12, 9, 0, 19, 5, 0, // Skip to: 17045 /* 15746 */ MCD::OPC_Decode, 164, 9, 111, // Opcode: MTFSB0 /* 15750 */ MCD::OPC_FilterValue, 4, 10, 5, 0, // Skip to: 17045 /* 15755 */ MCD::OPC_CheckField, 17, 6, 0, 3, 5, 0, // Skip to: 17045 /* 15762 */ MCD::OPC_Decode, 167, 9, 168, 1, // Opcode: MTFSFI /* 15767 */ MCD::OPC_FilterValue, 13, 19, 0, 0, // Skip to: 15791 /* 15772 */ MCD::OPC_CheckField, 17, 6, 0, 242, 4, 0, // Skip to: 17045 /* 15779 */ MCD::OPC_CheckField, 6, 6, 4, 235, 4, 0, // Skip to: 17045 /* 15786 */ MCD::OPC_Decode, 168, 9, 168, 1, // Opcode: MTFSFI_rec /* 15791 */ MCD::OPC_FilterValue, 14, 126, 0, 0, // Skip to: 15922 /* 15796 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15799 */ MCD::OPC_FilterValue, 18, 108, 0, 0, // Skip to: 15912 /* 15804 */ MCD::OPC_ExtractField, 16, 5, // Inst{20-16} ... /* 15807 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 15824 /* 15812 */ MCD::OPC_CheckField, 11, 5, 0, 202, 4, 0, // Skip to: 17045 /* 15819 */ MCD::OPC_Decode, 251, 8, 169, 1, // Opcode: MFFS /* 15824 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 15841 /* 15829 */ MCD::OPC_CheckField, 11, 5, 0, 185, 4, 0, // Skip to: 17045 /* 15836 */ MCD::OPC_Decode, 254, 8, 169, 1, // Opcode: MFFSCE /* 15841 */ MCD::OPC_FilterValue, 20, 5, 0, 0, // Skip to: 15851 /* 15846 */ MCD::OPC_Decode, 252, 8, 170, 1, // Opcode: MFFSCDRN /* 15851 */ MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 15868 /* 15856 */ MCD::OPC_CheckField, 14, 2, 0, 158, 4, 0, // Skip to: 17045 /* 15863 */ MCD::OPC_Decode, 253, 8, 171, 1, // Opcode: MFFSCDRNI /* 15868 */ MCD::OPC_FilterValue, 22, 5, 0, 0, // Skip to: 15878 /* 15873 */ MCD::OPC_Decode, 255, 8, 170, 1, // Opcode: MFFSCRN /* 15878 */ MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 15895 /* 15883 */ MCD::OPC_CheckField, 13, 3, 0, 131, 4, 0, // Skip to: 17045 /* 15890 */ MCD::OPC_Decode, 128, 9, 172, 1, // Opcode: MFFSCRNI /* 15895 */ MCD::OPC_FilterValue, 24, 121, 4, 0, // Skip to: 17045 /* 15900 */ MCD::OPC_CheckField, 11, 5, 0, 114, 4, 0, // Skip to: 17045 /* 15907 */ MCD::OPC_Decode, 129, 9, 169, 1, // Opcode: MFFSL /* 15912 */ MCD::OPC_FilterValue, 22, 104, 4, 0, // Skip to: 17045 /* 15917 */ MCD::OPC_Decode, 166, 9, 173, 1, // Opcode: MTFSF /* 15922 */ MCD::OPC_FilterValue, 15, 30, 0, 0, // Skip to: 15957 /* 15927 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15930 */ MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 15947 /* 15935 */ MCD::OPC_CheckField, 11, 10, 0, 79, 4, 0, // Skip to: 17045 /* 15942 */ MCD::OPC_Decode, 130, 9, 169, 1, // Opcode: MFFS_rec /* 15947 */ MCD::OPC_FilterValue, 22, 69, 4, 0, // Skip to: 17045 /* 15952 */ MCD::OPC_Decode, 169, 9, 173, 1, // Opcode: MTFSF_rec /* 15957 */ MCD::OPC_FilterValue, 16, 140, 0, 0, // Skip to: 16102 /* 15962 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 15965 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 15974 /* 15970 */ MCD::OPC_Decode, 131, 7, 126, // Opcode: FCPSGNS /* 15974 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 15990 /* 15979 */ MCD::OPC_CheckField, 16, 5, 0, 35, 4, 0, // Skip to: 17045 /* 15986 */ MCD::OPC_Decode, 173, 7, 127, // Opcode: FNEGS /* 15990 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 16006 /* 15995 */ MCD::OPC_CheckField, 16, 5, 0, 19, 4, 0, // Skip to: 17045 /* 16002 */ MCD::OPC_Decode, 157, 7, 127, // Opcode: FMR /* 16006 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 16022 /* 16011 */ MCD::OPC_CheckField, 16, 5, 0, 3, 4, 0, // Skip to: 17045 /* 16018 */ MCD::OPC_Decode, 169, 7, 127, // Opcode: FNABSS /* 16022 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 16038 /* 16027 */ MCD::OPC_CheckField, 16, 5, 0, 243, 3, 0, // Skip to: 17045 /* 16034 */ MCD::OPC_Decode, 240, 6, 127, // Opcode: FABSS /* 16038 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 16054 /* 16043 */ MCD::OPC_CheckField, 16, 5, 0, 227, 3, 0, // Skip to: 17045 /* 16050 */ MCD::OPC_Decode, 193, 7, 127, // Opcode: FRINS /* 16054 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 16070 /* 16059 */ MCD::OPC_CheckField, 16, 5, 0, 211, 3, 0, // Skip to: 17045 /* 16066 */ MCD::OPC_Decode, 201, 7, 127, // Opcode: FRIZS /* 16070 */ MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 16086 /* 16075 */ MCD::OPC_CheckField, 16, 5, 0, 195, 3, 0, // Skip to: 17045 /* 16082 */ MCD::OPC_Decode, 197, 7, 127, // Opcode: FRIPS /* 16086 */ MCD::OPC_FilterValue, 15, 186, 3, 0, // Skip to: 17045 /* 16091 */ MCD::OPC_CheckField, 16, 5, 0, 179, 3, 0, // Skip to: 17045 /* 16098 */ MCD::OPC_Decode, 189, 7, 127, // Opcode: FRIMS /* 16102 */ MCD::OPC_FilterValue, 17, 140, 0, 0, // Skip to: 16247 /* 16107 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 16110 */ MCD::OPC_FilterValue, 0, 4, 0, 0, // Skip to: 16119 /* 16115 */ MCD::OPC_Decode, 132, 7, 126, // Opcode: FCPSGNS_rec /* 16119 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 16135 /* 16124 */ MCD::OPC_CheckField, 16, 5, 0, 146, 3, 0, // Skip to: 17045 /* 16131 */ MCD::OPC_Decode, 174, 7, 127, // Opcode: FNEGS_rec /* 16135 */ MCD::OPC_FilterValue, 2, 11, 0, 0, // Skip to: 16151 /* 16140 */ MCD::OPC_CheckField, 16, 5, 0, 130, 3, 0, // Skip to: 17045 /* 16147 */ MCD::OPC_Decode, 158, 7, 127, // Opcode: FMR_rec /* 16151 */ MCD::OPC_FilterValue, 4, 11, 0, 0, // Skip to: 16167 /* 16156 */ MCD::OPC_CheckField, 16, 5, 0, 114, 3, 0, // Skip to: 17045 /* 16163 */ MCD::OPC_Decode, 170, 7, 127, // Opcode: FNABSS_rec /* 16167 */ MCD::OPC_FilterValue, 8, 11, 0, 0, // Skip to: 16183 /* 16172 */ MCD::OPC_CheckField, 16, 5, 0, 98, 3, 0, // Skip to: 17045 /* 16179 */ MCD::OPC_Decode, 241, 6, 127, // Opcode: FABSS_rec /* 16183 */ MCD::OPC_FilterValue, 12, 11, 0, 0, // Skip to: 16199 /* 16188 */ MCD::OPC_CheckField, 16, 5, 0, 82, 3, 0, // Skip to: 17045 /* 16195 */ MCD::OPC_Decode, 194, 7, 127, // Opcode: FRINS_rec /* 16199 */ MCD::OPC_FilterValue, 13, 11, 0, 0, // Skip to: 16215 /* 16204 */ MCD::OPC_CheckField, 16, 5, 0, 66, 3, 0, // Skip to: 17045 /* 16211 */ MCD::OPC_Decode, 202, 7, 127, // Opcode: FRIZS_rec /* 16215 */ MCD::OPC_FilterValue, 14, 11, 0, 0, // Skip to: 16231 /* 16220 */ MCD::OPC_CheckField, 16, 5, 0, 50, 3, 0, // Skip to: 17045 /* 16227 */ MCD::OPC_Decode, 198, 7, 127, // Opcode: FRIPS_rec /* 16231 */ MCD::OPC_FilterValue, 15, 41, 3, 0, // Skip to: 17045 /* 16236 */ MCD::OPC_CheckField, 16, 5, 0, 34, 3, 0, // Skip to: 17045 /* 16243 */ MCD::OPC_Decode, 190, 7, 127, // Opcode: FRIMS_rec /* 16247 */ MCD::OPC_FilterValue, 24, 18, 0, 0, // Skip to: 16270 /* 16252 */ MCD::OPC_CheckField, 16, 5, 0, 18, 3, 0, // Skip to: 17045 /* 16259 */ MCD::OPC_CheckField, 6, 5, 0, 11, 3, 0, // Skip to: 17045 /* 16266 */ MCD::OPC_Decode, 203, 7, 125, // Opcode: FRSP /* 16270 */ MCD::OPC_FilterValue, 25, 18, 0, 0, // Skip to: 16293 /* 16275 */ MCD::OPC_CheckField, 16, 5, 0, 251, 2, 0, // Skip to: 17045 /* 16282 */ MCD::OPC_CheckField, 6, 5, 0, 244, 2, 0, // Skip to: 17045 /* 16289 */ MCD::OPC_Decode, 204, 7, 125, // Opcode: FRSP_rec /* 16293 */ MCD::OPC_FilterValue, 28, 105, 0, 0, // Skip to: 16403 /* 16298 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 16301 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16318 /* 16306 */ MCD::OPC_CheckField, 16, 5, 0, 220, 2, 0, // Skip to: 17045 /* 16313 */ MCD::OPC_Decode, 141, 7, 170, 1, // Opcode: FCTIW /* 16318 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16335 /* 16323 */ MCD::OPC_CheckField, 16, 5, 0, 203, 2, 0, // Skip to: 17045 /* 16330 */ MCD::OPC_Decode, 142, 7, 170, 1, // Opcode: FCTIWU /* 16335 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16352 /* 16340 */ MCD::OPC_CheckField, 16, 5, 0, 186, 2, 0, // Skip to: 17045 /* 16347 */ MCD::OPC_Decode, 133, 7, 170, 1, // Opcode: FCTID /* 16352 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 16369 /* 16357 */ MCD::OPC_CheckField, 16, 5, 0, 169, 2, 0, // Skip to: 17045 /* 16364 */ MCD::OPC_Decode, 247, 6, 170, 1, // Opcode: FCFID /* 16369 */ MCD::OPC_FilterValue, 29, 12, 0, 0, // Skip to: 16386 /* 16374 */ MCD::OPC_CheckField, 16, 5, 0, 152, 2, 0, // Skip to: 17045 /* 16381 */ MCD::OPC_Decode, 134, 7, 170, 1, // Opcode: FCTIDU /* 16386 */ MCD::OPC_FilterValue, 30, 142, 2, 0, // Skip to: 17045 /* 16391 */ MCD::OPC_CheckField, 16, 5, 0, 135, 2, 0, // Skip to: 17045 /* 16398 */ MCD::OPC_Decode, 250, 6, 170, 1, // Opcode: FCFIDU /* 16403 */ MCD::OPC_FilterValue, 29, 105, 0, 0, // Skip to: 16513 /* 16408 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 16411 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16428 /* 16416 */ MCD::OPC_CheckField, 16, 5, 0, 110, 2, 0, // Skip to: 17045 /* 16423 */ MCD::OPC_Decode, 148, 7, 170, 1, // Opcode: FCTIW_rec /* 16428 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16445 /* 16433 */ MCD::OPC_CheckField, 16, 5, 0, 93, 2, 0, // Skip to: 17045 /* 16440 */ MCD::OPC_Decode, 145, 7, 170, 1, // Opcode: FCTIWU_rec /* 16445 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16462 /* 16450 */ MCD::OPC_CheckField, 16, 5, 0, 76, 2, 0, // Skip to: 17045 /* 16457 */ MCD::OPC_Decode, 140, 7, 170, 1, // Opcode: FCTID_rec /* 16462 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 16479 /* 16467 */ MCD::OPC_CheckField, 16, 5, 0, 59, 2, 0, // Skip to: 17045 /* 16474 */ MCD::OPC_Decode, 254, 6, 170, 1, // Opcode: FCFID_rec /* 16479 */ MCD::OPC_FilterValue, 29, 12, 0, 0, // Skip to: 16496 /* 16484 */ MCD::OPC_CheckField, 16, 5, 0, 42, 2, 0, // Skip to: 17045 /* 16491 */ MCD::OPC_Decode, 137, 7, 170, 1, // Opcode: FCTIDU_rec /* 16496 */ MCD::OPC_FilterValue, 30, 32, 2, 0, // Skip to: 17045 /* 16501 */ MCD::OPC_CheckField, 16, 5, 0, 25, 2, 0, // Skip to: 17045 /* 16508 */ MCD::OPC_Decode, 253, 6, 170, 1, // Opcode: FCFIDU_rec /* 16513 */ MCD::OPC_FilterValue, 30, 71, 0, 0, // Skip to: 16589 /* 16518 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 16521 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16538 /* 16526 */ MCD::OPC_CheckField, 16, 5, 0, 0, 2, 0, // Skip to: 17045 /* 16533 */ MCD::OPC_Decode, 146, 7, 170, 1, // Opcode: FCTIWZ /* 16538 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16555 /* 16543 */ MCD::OPC_CheckField, 16, 5, 0, 239, 1, 0, // Skip to: 17045 /* 16550 */ MCD::OPC_Decode, 143, 7, 170, 1, // Opcode: FCTIWUZ /* 16555 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16572 /* 16560 */ MCD::OPC_CheckField, 16, 5, 0, 222, 1, 0, // Skip to: 17045 /* 16567 */ MCD::OPC_Decode, 138, 7, 170, 1, // Opcode: FCTIDZ /* 16572 */ MCD::OPC_FilterValue, 29, 212, 1, 0, // Skip to: 17045 /* 16577 */ MCD::OPC_CheckField, 16, 5, 0, 205, 1, 0, // Skip to: 17045 /* 16584 */ MCD::OPC_Decode, 135, 7, 170, 1, // Opcode: FCTIDUZ /* 16589 */ MCD::OPC_FilterValue, 31, 71, 0, 0, // Skip to: 16665 /* 16594 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 16597 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 16614 /* 16602 */ MCD::OPC_CheckField, 16, 5, 0, 180, 1, 0, // Skip to: 17045 /* 16609 */ MCD::OPC_Decode, 147, 7, 170, 1, // Opcode: FCTIWZ_rec /* 16614 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 16631 /* 16619 */ MCD::OPC_CheckField, 16, 5, 0, 163, 1, 0, // Skip to: 17045 /* 16626 */ MCD::OPC_Decode, 144, 7, 170, 1, // Opcode: FCTIWUZ_rec /* 16631 */ MCD::OPC_FilterValue, 25, 12, 0, 0, // Skip to: 16648 /* 16636 */ MCD::OPC_CheckField, 16, 5, 0, 146, 1, 0, // Skip to: 17045 /* 16643 */ MCD::OPC_Decode, 139, 7, 170, 1, // Opcode: FCTIDZ_rec /* 16648 */ MCD::OPC_FilterValue, 29, 136, 1, 0, // Skip to: 17045 /* 16653 */ MCD::OPC_CheckField, 16, 5, 0, 129, 1, 0, // Skip to: 17045 /* 16660 */ MCD::OPC_Decode, 136, 7, 170, 1, // Opcode: FCTIDUZ_rec /* 16665 */ MCD::OPC_FilterValue, 36, 12, 0, 0, // Skip to: 16682 /* 16670 */ MCD::OPC_CheckField, 6, 5, 0, 112, 1, 0, // Skip to: 17045 /* 16677 */ MCD::OPC_Decode, 149, 7, 174, 1, // Opcode: FDIV /* 16682 */ MCD::OPC_FilterValue, 37, 12, 0, 0, // Skip to: 16699 /* 16687 */ MCD::OPC_CheckField, 6, 5, 0, 95, 1, 0, // Skip to: 17045 /* 16694 */ MCD::OPC_Decode, 152, 7, 174, 1, // Opcode: FDIV_rec /* 16699 */ MCD::OPC_FilterValue, 40, 12, 0, 0, // Skip to: 16716 /* 16704 */ MCD::OPC_CheckField, 6, 5, 0, 78, 1, 0, // Skip to: 17045 /* 16711 */ MCD::OPC_Decode, 217, 7, 174, 1, // Opcode: FSUB /* 16716 */ MCD::OPC_FilterValue, 41, 12, 0, 0, // Skip to: 16733 /* 16721 */ MCD::OPC_CheckField, 6, 5, 0, 61, 1, 0, // Skip to: 17045 /* 16728 */ MCD::OPC_Decode, 220, 7, 174, 1, // Opcode: FSUB_rec /* 16733 */ MCD::OPC_FilterValue, 42, 12, 0, 0, // Skip to: 16750 /* 16738 */ MCD::OPC_CheckField, 6, 5, 0, 44, 1, 0, // Skip to: 17045 /* 16745 */ MCD::OPC_Decode, 242, 6, 174, 1, // Opcode: FADD /* 16750 */ MCD::OPC_FilterValue, 43, 12, 0, 0, // Skip to: 16767 /* 16755 */ MCD::OPC_CheckField, 6, 5, 0, 27, 1, 0, // Skip to: 17045 /* 16762 */ MCD::OPC_Decode, 245, 6, 174, 1, // Opcode: FADD_rec /* 16767 */ MCD::OPC_FilterValue, 44, 19, 0, 0, // Skip to: 16791 /* 16772 */ MCD::OPC_CheckField, 16, 5, 0, 10, 1, 0, // Skip to: 17045 /* 16779 */ MCD::OPC_CheckField, 6, 5, 0, 3, 1, 0, // Skip to: 17045 /* 16786 */ MCD::OPC_Decode, 213, 7, 170, 1, // Opcode: FSQRT /* 16791 */ MCD::OPC_FilterValue, 45, 19, 0, 0, // Skip to: 16815 /* 16796 */ MCD::OPC_CheckField, 16, 5, 0, 242, 0, 0, // Skip to: 17045 /* 16803 */ MCD::OPC_CheckField, 6, 5, 0, 235, 0, 0, // Skip to: 17045 /* 16810 */ MCD::OPC_Decode, 216, 7, 170, 1, // Opcode: FSQRT_rec /* 16815 */ MCD::OPC_FilterValue, 46, 5, 0, 0, // Skip to: 16825 /* 16820 */ MCD::OPC_Decode, 211, 7, 175, 1, // Opcode: FSELS /* 16825 */ MCD::OPC_FilterValue, 47, 5, 0, 0, // Skip to: 16835 /* 16830 */ MCD::OPC_Decode, 212, 7, 175, 1, // Opcode: FSELS_rec /* 16835 */ MCD::OPC_FilterValue, 48, 19, 0, 0, // Skip to: 16859 /* 16840 */ MCD::OPC_CheckField, 16, 5, 0, 198, 0, 0, // Skip to: 17045 /* 16847 */ MCD::OPC_CheckField, 6, 5, 0, 191, 0, 0, // Skip to: 17045 /* 16854 */ MCD::OPC_Decode, 183, 7, 170, 1, // Opcode: FRE /* 16859 */ MCD::OPC_FilterValue, 49, 19, 0, 0, // Skip to: 16883 /* 16864 */ MCD::OPC_CheckField, 16, 5, 0, 174, 0, 0, // Skip to: 17045 /* 16871 */ MCD::OPC_CheckField, 6, 5, 0, 167, 0, 0, // Skip to: 17045 /* 16878 */ MCD::OPC_Decode, 186, 7, 170, 1, // Opcode: FRE_rec /* 16883 */ MCD::OPC_FilterValue, 50, 12, 0, 0, // Skip to: 16900 /* 16888 */ MCD::OPC_CheckField, 11, 5, 0, 150, 0, 0, // Skip to: 17045 /* 16895 */ MCD::OPC_Decode, 163, 7, 176, 1, // Opcode: FMUL /* 16900 */ MCD::OPC_FilterValue, 51, 12, 0, 0, // Skip to: 16917 /* 16905 */ MCD::OPC_CheckField, 11, 5, 0, 133, 0, 0, // Skip to: 17045 /* 16912 */ MCD::OPC_Decode, 166, 7, 176, 1, // Opcode: FMUL_rec /* 16917 */ MCD::OPC_FilterValue, 52, 19, 0, 0, // Skip to: 16941 /* 16922 */ MCD::OPC_CheckField, 16, 5, 0, 116, 0, 0, // Skip to: 17045 /* 16929 */ MCD::OPC_CheckField, 6, 5, 0, 109, 0, 0, // Skip to: 17045 /* 16936 */ MCD::OPC_Decode, 205, 7, 170, 1, // Opcode: FRSQRTE /* 16941 */ MCD::OPC_FilterValue, 53, 19, 0, 0, // Skip to: 16965 /* 16946 */ MCD::OPC_CheckField, 16, 5, 0, 92, 0, 0, // Skip to: 17045 /* 16953 */ MCD::OPC_CheckField, 6, 5, 0, 85, 0, 0, // Skip to: 17045 /* 16960 */ MCD::OPC_Decode, 208, 7, 170, 1, // Opcode: FRSQRTE_rec /* 16965 */ MCD::OPC_FilterValue, 56, 5, 0, 0, // Skip to: 16975 /* 16970 */ MCD::OPC_Decode, 159, 7, 177, 1, // Opcode: FMSUB /* 16975 */ MCD::OPC_FilterValue, 57, 5, 0, 0, // Skip to: 16985 /* 16980 */ MCD::OPC_Decode, 162, 7, 177, 1, // Opcode: FMSUB_rec /* 16985 */ MCD::OPC_FilterValue, 58, 5, 0, 0, // Skip to: 16995 /* 16990 */ MCD::OPC_Decode, 153, 7, 177, 1, // Opcode: FMADD /* 16995 */ MCD::OPC_FilterValue, 59, 5, 0, 0, // Skip to: 17005 /* 17000 */ MCD::OPC_Decode, 156, 7, 177, 1, // Opcode: FMADD_rec /* 17005 */ MCD::OPC_FilterValue, 60, 5, 0, 0, // Skip to: 17015 /* 17010 */ MCD::OPC_Decode, 179, 7, 177, 1, // Opcode: FNMSUB /* 17015 */ MCD::OPC_FilterValue, 61, 5, 0, 0, // Skip to: 17025 /* 17020 */ MCD::OPC_Decode, 182, 7, 177, 1, // Opcode: FNMSUB_rec /* 17025 */ MCD::OPC_FilterValue, 62, 5, 0, 0, // Skip to: 17035 /* 17030 */ MCD::OPC_Decode, 175, 7, 177, 1, // Opcode: FNMADD /* 17035 */ MCD::OPC_FilterValue, 63, 5, 0, 0, // Skip to: 17045 /* 17040 */ MCD::OPC_Decode, 178, 7, 177, 1, // Opcode: FNMADD_rec /* 17045 */ MCD::OPC_Fail, 0 }; static const uint8_t DecoderTableQPX32[] = { /* 0 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... /* 3 */ MCD::OPC_FilterValue, 0, 71, 0, 0, // Skip to: 79 /* 8 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 11 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 28 /* 16 */ MCD::OPC_CheckField, 26, 6, 4, 186, 8, 0, // Skip to: 2257 /* 23 */ MCD::OPC_Decode, 140, 10, 178, 1, // Opcode: QVFCMPEQb /* 28 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 45 /* 33 */ MCD::OPC_CheckField, 26, 6, 4, 169, 8, 0, // Skip to: 2257 /* 40 */ MCD::OPC_Decode, 143, 10, 178, 1, // Opcode: QVFCMPGTb /* 45 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 62 /* 50 */ MCD::OPC_CheckField, 26, 6, 4, 152, 8, 0, // Skip to: 2257 /* 57 */ MCD::OPC_Decode, 210, 10, 178, 1, // Opcode: QVFTSTNANb /* 62 */ MCD::OPC_FilterValue, 3, 142, 8, 0, // Skip to: 2257 /* 67 */ MCD::OPC_CheckField, 26, 6, 4, 135, 8, 0, // Skip to: 2257 /* 74 */ MCD::OPC_Decode, 146, 10, 178, 1, // Opcode: QVFCMPLTb /* 79 */ MCD::OPC_FilterValue, 2, 23, 0, 0, // Skip to: 107 /* 84 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 87 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 97 /* 92 */ MCD::OPC_Decode, 219, 10, 179, 1, // Opcode: QVFXXMADDS /* 97 */ MCD::OPC_FilterValue, 4, 107, 8, 0, // Skip to: 2257 /* 102 */ MCD::OPC_Decode, 218, 10, 179, 1, // Opcode: QVFXXMADD /* 107 */ MCD::OPC_FilterValue, 6, 23, 0, 0, // Skip to: 135 /* 112 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 115 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 125 /* 120 */ MCD::OPC_Decode, 217, 10, 179, 1, // Opcode: QVFXXCPNMADDS /* 125 */ MCD::OPC_FilterValue, 4, 79, 8, 0, // Skip to: 2257 /* 130 */ MCD::OPC_Decode, 216, 10, 179, 1, // Opcode: QVFXXCPNMADD /* 135 */ MCD::OPC_FilterValue, 8, 19, 0, 0, // Skip to: 159 /* 140 */ MCD::OPC_CheckField, 26, 6, 4, 62, 8, 0, // Skip to: 2257 /* 147 */ MCD::OPC_CheckField, 6, 1, 0, 55, 8, 0, // Skip to: 2257 /* 154 */ MCD::OPC_Decode, 160, 10, 180, 1, // Opcode: QVFLOGICALb /* 159 */ MCD::OPC_FilterValue, 10, 216, 0, 0, // Skip to: 380 /* 164 */ MCD::OPC_ExtractField, 6, 3, // Inst{8-6} ... /* 167 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 184 /* 172 */ MCD::OPC_CheckField, 26, 6, 4, 30, 8, 0, // Skip to: 2257 /* 179 */ MCD::OPC_Decode, 251, 9, 181, 1, // Opcode: QVALIGNI /* 184 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 208 /* 189 */ MCD::OPC_CheckField, 26, 6, 4, 13, 8, 0, // Skip to: 2257 /* 196 */ MCD::OPC_CheckField, 11, 5, 0, 6, 8, 0, // Skip to: 2257 /* 203 */ MCD::OPC_Decode, 254, 9, 182, 1, // Opcode: QVESPLATI /* 208 */ MCD::OPC_FilterValue, 4, 41, 0, 0, // Skip to: 254 /* 213 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 216 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 226 /* 221 */ MCD::OPC_Decode, 222, 10, 183, 1, // Opcode: QVGPCI /* 226 */ MCD::OPC_FilterValue, 31, 234, 7, 0, // Skip to: 2257 /* 231 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 234 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 244 /* 239 */ MCD::OPC_Decode, 138, 11, 184, 1, // Opcode: QVSTFCSXI /* 244 */ MCD::OPC_FilterValue, 2, 216, 7, 0, // Skip to: 2257 /* 249 */ MCD::OPC_Decode, 159, 11, 184, 1, // Opcode: QVSTFSXI /* 254 */ MCD::OPC_FilterValue, 5, 37, 0, 0, // Skip to: 296 /* 259 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 262 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 279 /* 267 */ MCD::OPC_CheckField, 26, 6, 31, 191, 7, 0, // Skip to: 2257 /* 274 */ MCD::OPC_Decode, 134, 11, 184, 1, // Opcode: QVSTFCSUXI /* 279 */ MCD::OPC_FilterValue, 2, 181, 7, 0, // Skip to: 2257 /* 284 */ MCD::OPC_CheckField, 26, 6, 31, 174, 7, 0, // Skip to: 2257 /* 291 */ MCD::OPC_Decode, 154, 11, 184, 1, // Opcode: QVSTFSUXI /* 296 */ MCD::OPC_FilterValue, 6, 37, 0, 0, // Skip to: 338 /* 301 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 304 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 321 /* 309 */ MCD::OPC_CheckField, 26, 6, 31, 149, 7, 0, // Skip to: 2257 /* 316 */ MCD::OPC_Decode, 130, 11, 184, 1, // Opcode: QVSTFCDXI /* 321 */ MCD::OPC_FilterValue, 2, 139, 7, 0, // Skip to: 2257 /* 326 */ MCD::OPC_CheckField, 26, 6, 31, 132, 7, 0, // Skip to: 2257 /* 333 */ MCD::OPC_Decode, 147, 11, 184, 1, // Opcode: QVSTFDXI /* 338 */ MCD::OPC_FilterValue, 7, 122, 7, 0, // Skip to: 2257 /* 343 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... /* 346 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 363 /* 351 */ MCD::OPC_CheckField, 26, 6, 31, 107, 7, 0, // Skip to: 2257 /* 358 */ MCD::OPC_Decode, 254, 10, 184, 1, // Opcode: QVSTFCDUXI /* 363 */ MCD::OPC_FilterValue, 2, 97, 7, 0, // Skip to: 2257 /* 368 */ MCD::OPC_CheckField, 26, 6, 31, 90, 7, 0, // Skip to: 2257 /* 375 */ MCD::OPC_Decode, 143, 11, 184, 1, // Opcode: QVSTFDUXI /* 380 */ MCD::OPC_FilterValue, 11, 139, 0, 0, // Skip to: 524 /* 385 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 388 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 405 /* 393 */ MCD::OPC_CheckField, 26, 6, 31, 65, 7, 0, // Skip to: 2257 /* 400 */ MCD::OPC_Decode, 139, 11, 184, 1, // Opcode: QVSTFCSXIA /* 405 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 422 /* 410 */ MCD::OPC_CheckField, 26, 6, 31, 48, 7, 0, // Skip to: 2257 /* 417 */ MCD::OPC_Decode, 135, 11, 184, 1, // Opcode: QVSTFCSUXIA /* 422 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 439 /* 427 */ MCD::OPC_CheckField, 26, 6, 31, 31, 7, 0, // Skip to: 2257 /* 434 */ MCD::OPC_Decode, 131, 11, 184, 1, // Opcode: QVSTFCDXIA /* 439 */ MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 456 /* 444 */ MCD::OPC_CheckField, 26, 6, 31, 14, 7, 0, // Skip to: 2257 /* 451 */ MCD::OPC_Decode, 255, 10, 184, 1, // Opcode: QVSTFCDUXIA /* 456 */ MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 473 /* 461 */ MCD::OPC_CheckField, 26, 6, 31, 253, 6, 0, // Skip to: 2257 /* 468 */ MCD::OPC_Decode, 160, 11, 184, 1, // Opcode: QVSTFSXIA /* 473 */ MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 490 /* 478 */ MCD::OPC_CheckField, 26, 6, 31, 236, 6, 0, // Skip to: 2257 /* 485 */ MCD::OPC_Decode, 155, 11, 184, 1, // Opcode: QVSTFSUXIA /* 490 */ MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 507 /* 495 */ MCD::OPC_CheckField, 26, 6, 31, 219, 6, 0, // Skip to: 2257 /* 502 */ MCD::OPC_Decode, 148, 11, 184, 1, // Opcode: QVSTFDXIA /* 507 */ MCD::OPC_FilterValue, 23, 209, 6, 0, // Skip to: 2257 /* 512 */ MCD::OPC_CheckField, 26, 6, 31, 202, 6, 0, // Skip to: 2257 /* 519 */ MCD::OPC_Decode, 144, 11, 184, 1, // Opcode: QVSTFDUXIA /* 524 */ MCD::OPC_FilterValue, 12, 61, 0, 0, // Skip to: 590 /* 529 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 532 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 542 /* 537 */ MCD::OPC_Decode, 184, 10, 179, 1, // Opcode: QVFPERM /* 542 */ MCD::OPC_FilterValue, 31, 174, 6, 0, // Skip to: 2257 /* 547 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 550 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 560 /* 555 */ MCD::OPC_Decode, 251, 10, 184, 1, // Opcode: QVLPCRSX /* 560 */ MCD::OPC_FilterValue, 2, 5, 0, 0, // Skip to: 570 /* 565 */ MCD::OPC_Decode, 250, 10, 184, 1, // Opcode: QVLPCRDX /* 570 */ MCD::OPC_FilterValue, 16, 5, 0, 0, // Skip to: 580 /* 575 */ MCD::OPC_Decode, 248, 10, 184, 1, // Opcode: QVLPCLSX /* 580 */ MCD::OPC_FilterValue, 18, 136, 6, 0, // Skip to: 2257 /* 585 */ MCD::OPC_Decode, 247, 10, 184, 1, // Opcode: QVLPCLDX /* 590 */ MCD::OPC_FilterValue, 14, 70, 1, 0, // Skip to: 921 /* 595 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 598 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 615 /* 603 */ MCD::OPC_CheckField, 26, 6, 31, 111, 6, 0, // Skip to: 2257 /* 610 */ MCD::OPC_Decode, 229, 10, 184, 1, // Opcode: QVLFCSX /* 615 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 632 /* 620 */ MCD::OPC_CheckField, 26, 6, 31, 94, 6, 0, // Skip to: 2257 /* 627 */ MCD::OPC_Decode, 227, 10, 184, 1, // Opcode: QVLFCSUX /* 632 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 649 /* 637 */ MCD::OPC_CheckField, 26, 6, 31, 77, 6, 0, // Skip to: 2257 /* 644 */ MCD::OPC_Decode, 225, 10, 184, 1, // Opcode: QVLFCDX /* 649 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 666 /* 654 */ MCD::OPC_CheckField, 26, 6, 31, 60, 6, 0, // Skip to: 2257 /* 661 */ MCD::OPC_Decode, 223, 10, 184, 1, // Opcode: QVLFCDUX /* 666 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 683 /* 671 */ MCD::OPC_CheckField, 26, 6, 31, 43, 6, 0, // Skip to: 2257 /* 678 */ MCD::OPC_Decode, 136, 11, 184, 1, // Opcode: QVSTFCSX /* 683 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 700 /* 688 */ MCD::OPC_CheckField, 26, 6, 31, 26, 6, 0, // Skip to: 2257 /* 695 */ MCD::OPC_Decode, 132, 11, 184, 1, // Opcode: QVSTFCSUX /* 700 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 717 /* 705 */ MCD::OPC_CheckField, 26, 6, 31, 9, 6, 0, // Skip to: 2257 /* 712 */ MCD::OPC_Decode, 128, 11, 184, 1, // Opcode: QVSTFCDX /* 717 */ MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 734 /* 722 */ MCD::OPC_CheckField, 26, 6, 31, 248, 5, 0, // Skip to: 2257 /* 729 */ MCD::OPC_Decode, 252, 10, 184, 1, // Opcode: QVSTFCDUX /* 734 */ MCD::OPC_FilterValue, 16, 12, 0, 0, // Skip to: 751 /* 739 */ MCD::OPC_CheckField, 26, 6, 31, 231, 5, 0, // Skip to: 2257 /* 746 */ MCD::OPC_Decode, 243, 10, 184, 1, // Opcode: QVLFSX /* 751 */ MCD::OPC_FilterValue, 17, 12, 0, 0, // Skip to: 768 /* 756 */ MCD::OPC_CheckField, 26, 6, 31, 214, 5, 0, // Skip to: 2257 /* 763 */ MCD::OPC_Decode, 241, 10, 185, 1, // Opcode: QVLFSUX /* 768 */ MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 785 /* 773 */ MCD::OPC_CheckField, 26, 6, 31, 197, 5, 0, // Skip to: 2257 /* 780 */ MCD::OPC_Decode, 234, 10, 184, 1, // Opcode: QVLFDX /* 785 */ MCD::OPC_FilterValue, 19, 12, 0, 0, // Skip to: 802 /* 790 */ MCD::OPC_CheckField, 26, 6, 31, 180, 5, 0, // Skip to: 2257 /* 797 */ MCD::OPC_Decode, 232, 10, 186, 1, // Opcode: QVLFDUX /* 802 */ MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 819 /* 807 */ MCD::OPC_CheckField, 26, 6, 31, 163, 5, 0, // Skip to: 2257 /* 814 */ MCD::OPC_Decode, 157, 11, 184, 1, // Opcode: QVSTFSX /* 819 */ MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 836 /* 824 */ MCD::OPC_CheckField, 26, 6, 31, 146, 5, 0, // Skip to: 2257 /* 831 */ MCD::OPC_Decode, 152, 11, 187, 1, // Opcode: QVSTFSUX /* 836 */ MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 853 /* 841 */ MCD::OPC_CheckField, 26, 6, 31, 129, 5, 0, // Skip to: 2257 /* 848 */ MCD::OPC_Decode, 145, 11, 184, 1, // Opcode: QVSTFDX /* 853 */ MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 870 /* 858 */ MCD::OPC_CheckField, 26, 6, 31, 112, 5, 0, // Skip to: 2257 /* 865 */ MCD::OPC_Decode, 141, 11, 188, 1, // Opcode: QVSTFDUX /* 870 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 887 /* 875 */ MCD::OPC_CheckField, 26, 6, 31, 95, 5, 0, // Skip to: 2257 /* 882 */ MCD::OPC_Decode, 239, 10, 184, 1, // Opcode: QVLFIWZX /* 887 */ MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 904 /* 892 */ MCD::OPC_CheckField, 26, 6, 31, 78, 5, 0, // Skip to: 2257 /* 899 */ MCD::OPC_Decode, 237, 10, 184, 1, // Opcode: QVLFIWAX /* 904 */ MCD::OPC_FilterValue, 30, 68, 5, 0, // Skip to: 2257 /* 909 */ MCD::OPC_CheckField, 26, 6, 31, 61, 5, 0, // Skip to: 2257 /* 916 */ MCD::OPC_Decode, 150, 11, 184, 1, // Opcode: QVSTFIWX /* 921 */ MCD::OPC_FilterValue, 15, 70, 1, 0, // Skip to: 1252 /* 926 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 929 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 946 /* 934 */ MCD::OPC_CheckField, 26, 6, 31, 36, 5, 0, // Skip to: 2257 /* 941 */ MCD::OPC_Decode, 230, 10, 184, 1, // Opcode: QVLFCSXA /* 946 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 963 /* 951 */ MCD::OPC_CheckField, 26, 6, 31, 19, 5, 0, // Skip to: 2257 /* 958 */ MCD::OPC_Decode, 228, 10, 184, 1, // Opcode: QVLFCSUXA /* 963 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 980 /* 968 */ MCD::OPC_CheckField, 26, 6, 31, 2, 5, 0, // Skip to: 2257 /* 975 */ MCD::OPC_Decode, 226, 10, 184, 1, // Opcode: QVLFCDXA /* 980 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 997 /* 985 */ MCD::OPC_CheckField, 26, 6, 31, 241, 4, 0, // Skip to: 2257 /* 992 */ MCD::OPC_Decode, 224, 10, 184, 1, // Opcode: QVLFCDUXA /* 997 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 1014 /* 1002 */ MCD::OPC_CheckField, 26, 6, 31, 224, 4, 0, // Skip to: 2257 /* 1009 */ MCD::OPC_Decode, 137, 11, 184, 1, // Opcode: QVSTFCSXA /* 1014 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 1031 /* 1019 */ MCD::OPC_CheckField, 26, 6, 31, 207, 4, 0, // Skip to: 2257 /* 1026 */ MCD::OPC_Decode, 133, 11, 184, 1, // Opcode: QVSTFCSUXA /* 1031 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 1048 /* 1036 */ MCD::OPC_CheckField, 26, 6, 31, 190, 4, 0, // Skip to: 2257 /* 1043 */ MCD::OPC_Decode, 129, 11, 184, 1, // Opcode: QVSTFCDXA /* 1048 */ MCD::OPC_FilterValue, 7, 12, 0, 0, // Skip to: 1065 /* 1053 */ MCD::OPC_CheckField, 26, 6, 31, 173, 4, 0, // Skip to: 2257 /* 1060 */ MCD::OPC_Decode, 253, 10, 184, 1, // Opcode: QVSTFCDUXA /* 1065 */ MCD::OPC_FilterValue, 16, 12, 0, 0, // Skip to: 1082 /* 1070 */ MCD::OPC_CheckField, 26, 6, 31, 156, 4, 0, // Skip to: 2257 /* 1077 */ MCD::OPC_Decode, 244, 10, 184, 1, // Opcode: QVLFSXA /* 1082 */ MCD::OPC_FilterValue, 17, 12, 0, 0, // Skip to: 1099 /* 1087 */ MCD::OPC_CheckField, 26, 6, 31, 139, 4, 0, // Skip to: 2257 /* 1094 */ MCD::OPC_Decode, 242, 10, 184, 1, // Opcode: QVLFSUXA /* 1099 */ MCD::OPC_FilterValue, 18, 12, 0, 0, // Skip to: 1116 /* 1104 */ MCD::OPC_CheckField, 26, 6, 31, 122, 4, 0, // Skip to: 2257 /* 1111 */ MCD::OPC_Decode, 235, 10, 184, 1, // Opcode: QVLFDXA /* 1116 */ MCD::OPC_FilterValue, 19, 12, 0, 0, // Skip to: 1133 /* 1121 */ MCD::OPC_CheckField, 26, 6, 31, 105, 4, 0, // Skip to: 2257 /* 1128 */ MCD::OPC_Decode, 233, 10, 184, 1, // Opcode: QVLFDUXA /* 1133 */ MCD::OPC_FilterValue, 20, 12, 0, 0, // Skip to: 1150 /* 1138 */ MCD::OPC_CheckField, 26, 6, 31, 88, 4, 0, // Skip to: 2257 /* 1145 */ MCD::OPC_Decode, 158, 11, 184, 1, // Opcode: QVSTFSXA /* 1150 */ MCD::OPC_FilterValue, 21, 12, 0, 0, // Skip to: 1167 /* 1155 */ MCD::OPC_CheckField, 26, 6, 31, 71, 4, 0, // Skip to: 2257 /* 1162 */ MCD::OPC_Decode, 153, 11, 184, 1, // Opcode: QVSTFSUXA /* 1167 */ MCD::OPC_FilterValue, 22, 12, 0, 0, // Skip to: 1184 /* 1172 */ MCD::OPC_CheckField, 26, 6, 31, 54, 4, 0, // Skip to: 2257 /* 1179 */ MCD::OPC_Decode, 146, 11, 184, 1, // Opcode: QVSTFDXA /* 1184 */ MCD::OPC_FilterValue, 23, 12, 0, 0, // Skip to: 1201 /* 1189 */ MCD::OPC_CheckField, 26, 6, 31, 37, 4, 0, // Skip to: 2257 /* 1196 */ MCD::OPC_Decode, 142, 11, 184, 1, // Opcode: QVSTFDUXA /* 1201 */ MCD::OPC_FilterValue, 26, 12, 0, 0, // Skip to: 1218 /* 1206 */ MCD::OPC_CheckField, 26, 6, 31, 20, 4, 0, // Skip to: 2257 /* 1213 */ MCD::OPC_Decode, 240, 10, 184, 1, // Opcode: QVLFIWZXA /* 1218 */ MCD::OPC_FilterValue, 27, 12, 0, 0, // Skip to: 1235 /* 1223 */ MCD::OPC_CheckField, 26, 6, 31, 3, 4, 0, // Skip to: 2257 /* 1230 */ MCD::OPC_Decode, 238, 10, 184, 1, // Opcode: QVLFIWAXA /* 1235 */ MCD::OPC_FilterValue, 30, 249, 3, 0, // Skip to: 2257 /* 1240 */ MCD::OPC_CheckField, 26, 6, 31, 242, 3, 0, // Skip to: 2257 /* 1247 */ MCD::OPC_Decode, 151, 11, 184, 1, // Opcode: QVSTFIWXA /* 1252 */ MCD::OPC_FilterValue, 16, 212, 0, 0, // Skip to: 1469 /* 1257 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1260 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1277 /* 1265 */ MCD::OPC_CheckField, 26, 6, 4, 217, 3, 0, // Skip to: 2257 /* 1272 */ MCD::OPC_Decode, 148, 10, 189, 1, // Opcode: QVFCPSGN /* 1277 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 1301 /* 1282 */ MCD::OPC_CheckField, 26, 6, 4, 200, 3, 0, // Skip to: 2257 /* 1289 */ MCD::OPC_CheckField, 16, 5, 0, 193, 3, 0, // Skip to: 2257 /* 1296 */ MCD::OPC_Decode, 176, 10, 190, 1, // Opcode: QVFNEG /* 1301 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1325 /* 1306 */ MCD::OPC_CheckField, 26, 6, 4, 176, 3, 0, // Skip to: 2257 /* 1313 */ MCD::OPC_CheckField, 16, 5, 0, 169, 3, 0, // Skip to: 2257 /* 1320 */ MCD::OPC_Decode, 165, 10, 190, 1, // Opcode: QVFMR /* 1325 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1349 /* 1330 */ MCD::OPC_CheckField, 26, 6, 4, 152, 3, 0, // Skip to: 2257 /* 1337 */ MCD::OPC_CheckField, 16, 5, 0, 145, 3, 0, // Skip to: 2257 /* 1344 */ MCD::OPC_Decode, 174, 10, 190, 1, // Opcode: QVFNABS /* 1349 */ MCD::OPC_FilterValue, 8, 19, 0, 0, // Skip to: 1373 /* 1354 */ MCD::OPC_CheckField, 26, 6, 4, 128, 3, 0, // Skip to: 2257 /* 1361 */ MCD::OPC_CheckField, 16, 5, 0, 121, 3, 0, // Skip to: 2257 /* 1368 */ MCD::OPC_Decode, 129, 10, 190, 1, // Opcode: QVFABS /* 1373 */ MCD::OPC_FilterValue, 12, 19, 0, 0, // Skip to: 1397 /* 1378 */ MCD::OPC_CheckField, 26, 6, 4, 104, 3, 0, // Skip to: 2257 /* 1385 */ MCD::OPC_CheckField, 16, 5, 0, 97, 3, 0, // Skip to: 2257 /* 1392 */ MCD::OPC_Decode, 191, 10, 190, 1, // Opcode: QVFRIN /* 1397 */ MCD::OPC_FilterValue, 13, 19, 0, 0, // Skip to: 1421 /* 1402 */ MCD::OPC_CheckField, 26, 6, 4, 80, 3, 0, // Skip to: 2257 /* 1409 */ MCD::OPC_CheckField, 16, 5, 0, 73, 3, 0, // Skip to: 2257 /* 1416 */ MCD::OPC_Decode, 195, 10, 190, 1, // Opcode: QVFRIZ /* 1421 */ MCD::OPC_FilterValue, 14, 19, 0, 0, // Skip to: 1445 /* 1426 */ MCD::OPC_CheckField, 26, 6, 4, 56, 3, 0, // Skip to: 2257 /* 1433 */ MCD::OPC_CheckField, 16, 5, 0, 49, 3, 0, // Skip to: 2257 /* 1440 */ MCD::OPC_Decode, 193, 10, 190, 1, // Opcode: QVFRIP /* 1445 */ MCD::OPC_FilterValue, 15, 39, 3, 0, // Skip to: 2257 /* 1450 */ MCD::OPC_CheckField, 26, 6, 4, 32, 3, 0, // Skip to: 2257 /* 1457 */ MCD::OPC_CheckField, 16, 5, 0, 25, 3, 0, // Skip to: 2257 /* 1464 */ MCD::OPC_Decode, 189, 10, 190, 1, // Opcode: QVFRIM /* 1469 */ MCD::OPC_FilterValue, 18, 23, 0, 0, // Skip to: 1497 /* 1474 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1477 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 1487 /* 1482 */ MCD::OPC_Decode, 213, 10, 179, 1, // Opcode: QVFXMADDS /* 1487 */ MCD::OPC_FilterValue, 4, 253, 2, 0, // Skip to: 2257 /* 1492 */ MCD::OPC_Decode, 212, 10, 179, 1, // Opcode: QVFXMADD /* 1497 */ MCD::OPC_FilterValue, 22, 23, 0, 0, // Skip to: 1525 /* 1502 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1505 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 1515 /* 1510 */ MCD::OPC_Decode, 221, 10, 179, 1, // Opcode: QVFXXNPMADDS /* 1515 */ MCD::OPC_FilterValue, 4, 225, 2, 0, // Skip to: 2257 /* 1520 */ MCD::OPC_Decode, 220, 10, 179, 1, // Opcode: QVFXXNPMADD /* 1525 */ MCD::OPC_FilterValue, 24, 26, 0, 0, // Skip to: 1556 /* 1530 */ MCD::OPC_CheckField, 26, 6, 4, 208, 2, 0, // Skip to: 2257 /* 1537 */ MCD::OPC_CheckField, 16, 5, 0, 201, 2, 0, // Skip to: 2257 /* 1544 */ MCD::OPC_CheckField, 6, 5, 0, 194, 2, 0, // Skip to: 2257 /* 1551 */ MCD::OPC_Decode, 198, 10, 191, 1, // Opcode: QVFRSPs /* 1556 */ MCD::OPC_FilterValue, 28, 183, 0, 0, // Skip to: 1744 /* 1561 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1564 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1588 /* 1569 */ MCD::OPC_CheckField, 26, 6, 4, 169, 2, 0, // Skip to: 2257 /* 1576 */ MCD::OPC_CheckField, 16, 5, 0, 162, 2, 0, // Skip to: 2257 /* 1583 */ MCD::OPC_Decode, 155, 10, 190, 1, // Opcode: QVFCTIW /* 1588 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1612 /* 1593 */ MCD::OPC_CheckField, 26, 6, 4, 145, 2, 0, // Skip to: 2257 /* 1600 */ MCD::OPC_CheckField, 16, 5, 0, 138, 2, 0, // Skip to: 2257 /* 1607 */ MCD::OPC_Decode, 156, 10, 190, 1, // Opcode: QVFCTIWU /* 1612 */ MCD::OPC_FilterValue, 25, 19, 0, 0, // Skip to: 1636 /* 1617 */ MCD::OPC_CheckField, 26, 6, 4, 121, 2, 0, // Skip to: 2257 /* 1624 */ MCD::OPC_CheckField, 16, 5, 0, 114, 2, 0, // Skip to: 2257 /* 1631 */ MCD::OPC_Decode, 150, 10, 190, 1, // Opcode: QVFCTID /* 1636 */ MCD::OPC_FilterValue, 26, 37, 0, 0, // Skip to: 1678 /* 1641 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1644 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1661 /* 1649 */ MCD::OPC_CheckField, 16, 5, 0, 89, 2, 0, // Skip to: 2257 /* 1656 */ MCD::OPC_Decode, 135, 10, 190, 1, // Opcode: QVFCFIDS /* 1661 */ MCD::OPC_FilterValue, 4, 79, 2, 0, // Skip to: 2257 /* 1666 */ MCD::OPC_CheckField, 16, 5, 0, 72, 2, 0, // Skip to: 2257 /* 1673 */ MCD::OPC_Decode, 134, 10, 190, 1, // Opcode: QVFCFID /* 1678 */ MCD::OPC_FilterValue, 29, 19, 0, 0, // Skip to: 1702 /* 1683 */ MCD::OPC_CheckField, 26, 6, 4, 55, 2, 0, // Skip to: 2257 /* 1690 */ MCD::OPC_CheckField, 16, 5, 0, 48, 2, 0, // Skip to: 2257 /* 1697 */ MCD::OPC_Decode, 151, 10, 190, 1, // Opcode: QVFCTIDU /* 1702 */ MCD::OPC_FilterValue, 30, 38, 2, 0, // Skip to: 2257 /* 1707 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1710 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1727 /* 1715 */ MCD::OPC_CheckField, 16, 5, 0, 23, 2, 0, // Skip to: 2257 /* 1722 */ MCD::OPC_Decode, 137, 10, 190, 1, // Opcode: QVFCFIDUS /* 1727 */ MCD::OPC_FilterValue, 4, 13, 2, 0, // Skip to: 2257 /* 1732 */ MCD::OPC_CheckField, 16, 5, 0, 6, 2, 0, // Skip to: 2257 /* 1739 */ MCD::OPC_Decode, 136, 10, 190, 1, // Opcode: QVFCFIDU /* 1744 */ MCD::OPC_FilterValue, 30, 99, 0, 0, // Skip to: 1848 /* 1749 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... /* 1752 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1776 /* 1757 */ MCD::OPC_CheckField, 26, 6, 4, 237, 1, 0, // Skip to: 2257 /* 1764 */ MCD::OPC_CheckField, 16, 5, 0, 230, 1, 0, // Skip to: 2257 /* 1771 */ MCD::OPC_Decode, 158, 10, 190, 1, // Opcode: QVFCTIWZ /* 1776 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1800 /* 1781 */ MCD::OPC_CheckField, 26, 6, 4, 213, 1, 0, // Skip to: 2257 /* 1788 */ MCD::OPC_CheckField, 16, 5, 0, 206, 1, 0, // Skip to: 2257 /* 1795 */ MCD::OPC_Decode, 157, 10, 190, 1, // Opcode: QVFCTIWUZ /* 1800 */ MCD::OPC_FilterValue, 25, 19, 0, 0, // Skip to: 1824 /* 1805 */ MCD::OPC_CheckField, 26, 6, 4, 189, 1, 0, // Skip to: 2257 /* 1812 */ MCD::OPC_CheckField, 16, 5, 0, 182, 1, 0, // Skip to: 2257 /* 1819 */ MCD::OPC_Decode, 153, 10, 190, 1, // Opcode: QVFCTIDZ /* 1824 */ MCD::OPC_FilterValue, 29, 172, 1, 0, // Skip to: 2257 /* 1829 */ MCD::OPC_CheckField, 26, 6, 4, 165, 1, 0, // Skip to: 2257 /* 1836 */ MCD::OPC_CheckField, 16, 5, 0, 158, 1, 0, // Skip to: 2257 /* 1843 */ MCD::OPC_Decode, 152, 10, 190, 1, // Opcode: QVFCTIDUZ /* 1848 */ MCD::OPC_FilterValue, 34, 37, 0, 0, // Skip to: 1890 /* 1853 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1856 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1873 /* 1861 */ MCD::OPC_CheckField, 11, 5, 0, 133, 1, 0, // Skip to: 2257 /* 1868 */ MCD::OPC_Decode, 215, 10, 192, 1, // Opcode: QVFXMULS /* 1873 */ MCD::OPC_FilterValue, 4, 123, 1, 0, // Skip to: 2257 /* 1878 */ MCD::OPC_CheckField, 11, 5, 0, 116, 1, 0, // Skip to: 2257 /* 1885 */ MCD::OPC_Decode, 214, 10, 192, 1, // Opcode: QVFXMUL /* 1890 */ MCD::OPC_FilterValue, 40, 37, 0, 0, // Skip to: 1932 /* 1895 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1898 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1915 /* 1903 */ MCD::OPC_CheckField, 6, 5, 0, 91, 1, 0, // Skip to: 2257 /* 1910 */ MCD::OPC_Decode, 208, 10, 193, 1, // Opcode: QVFSUBSs /* 1915 */ MCD::OPC_FilterValue, 4, 81, 1, 0, // Skip to: 2257 /* 1920 */ MCD::OPC_CheckField, 6, 5, 0, 74, 1, 0, // Skip to: 2257 /* 1927 */ MCD::OPC_Decode, 206, 10, 189, 1, // Opcode: QVFSUB /* 1932 */ MCD::OPC_FilterValue, 42, 37, 0, 0, // Skip to: 1974 /* 1937 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1940 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1957 /* 1945 */ MCD::OPC_CheckField, 6, 5, 0, 49, 1, 0, // Skip to: 2257 /* 1952 */ MCD::OPC_Decode, 133, 10, 193, 1, // Opcode: QVFADDSs /* 1957 */ MCD::OPC_FilterValue, 4, 39, 1, 0, // Skip to: 2257 /* 1962 */ MCD::OPC_CheckField, 6, 5, 0, 32, 1, 0, // Skip to: 2257 /* 1969 */ MCD::OPC_Decode, 131, 10, 189, 1, // Opcode: QVFADD /* 1974 */ MCD::OPC_FilterValue, 46, 12, 0, 0, // Skip to: 1991 /* 1979 */ MCD::OPC_CheckField, 26, 6, 4, 15, 1, 0, // Skip to: 2257 /* 1986 */ MCD::OPC_Decode, 203, 10, 194, 1, // Opcode: QVFSELb /* 1991 */ MCD::OPC_FilterValue, 48, 51, 0, 0, // Skip to: 2047 /* 1996 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 1999 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2023 /* 2004 */ MCD::OPC_CheckField, 16, 5, 0, 246, 0, 0, // Skip to: 2257 /* 2011 */ MCD::OPC_CheckField, 6, 5, 0, 239, 0, 0, // Skip to: 2257 /* 2018 */ MCD::OPC_Decode, 187, 10, 190, 1, // Opcode: QVFRES /* 2023 */ MCD::OPC_FilterValue, 4, 229, 0, 0, // Skip to: 2257 /* 2028 */ MCD::OPC_CheckField, 16, 5, 0, 222, 0, 0, // Skip to: 2257 /* 2035 */ MCD::OPC_CheckField, 6, 5, 0, 215, 0, 0, // Skip to: 2257 /* 2042 */ MCD::OPC_Decode, 186, 10, 190, 1, // Opcode: QVFRE /* 2047 */ MCD::OPC_FilterValue, 50, 37, 0, 0, // Skip to: 2089 /* 2052 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2055 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2072 /* 2060 */ MCD::OPC_CheckField, 11, 5, 0, 190, 0, 0, // Skip to: 2257 /* 2067 */ MCD::OPC_Decode, 173, 10, 195, 1, // Opcode: QVFMULSs /* 2072 */ MCD::OPC_FilterValue, 4, 180, 0, 0, // Skip to: 2257 /* 2077 */ MCD::OPC_CheckField, 11, 5, 0, 173, 0, 0, // Skip to: 2257 /* 2084 */ MCD::OPC_Decode, 171, 10, 192, 1, // Opcode: QVFMUL /* 2089 */ MCD::OPC_FilterValue, 52, 51, 0, 0, // Skip to: 2145 /* 2094 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2097 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2121 /* 2102 */ MCD::OPC_CheckField, 16, 5, 0, 148, 0, 0, // Skip to: 2257 /* 2109 */ MCD::OPC_CheckField, 6, 5, 0, 141, 0, 0, // Skip to: 2257 /* 2116 */ MCD::OPC_Decode, 200, 10, 190, 1, // Opcode: QVFRSQRTES /* 2121 */ MCD::OPC_FilterValue, 4, 131, 0, 0, // Skip to: 2257 /* 2126 */ MCD::OPC_CheckField, 16, 5, 0, 124, 0, 0, // Skip to: 2257 /* 2133 */ MCD::OPC_CheckField, 6, 5, 0, 117, 0, 0, // Skip to: 2257 /* 2140 */ MCD::OPC_Decode, 199, 10, 190, 1, // Opcode: QVFRSQRTE /* 2145 */ MCD::OPC_FilterValue, 56, 23, 0, 0, // Skip to: 2173 /* 2150 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2153 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2163 /* 2158 */ MCD::OPC_Decode, 170, 10, 196, 1, // Opcode: QVFMSUBSs /* 2163 */ MCD::OPC_FilterValue, 4, 89, 0, 0, // Skip to: 2257 /* 2168 */ MCD::OPC_Decode, 168, 10, 179, 1, // Opcode: QVFMSUB /* 2173 */ MCD::OPC_FilterValue, 58, 23, 0, 0, // Skip to: 2201 /* 2178 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2181 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2191 /* 2186 */ MCD::OPC_Decode, 164, 10, 196, 1, // Opcode: QVFMADDSs /* 2191 */ MCD::OPC_FilterValue, 4, 61, 0, 0, // Skip to: 2257 /* 2196 */ MCD::OPC_Decode, 162, 10, 179, 1, // Opcode: QVFMADD /* 2201 */ MCD::OPC_FilterValue, 60, 23, 0, 0, // Skip to: 2229 /* 2206 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2209 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2219 /* 2214 */ MCD::OPC_Decode, 183, 10, 196, 1, // Opcode: QVFNMSUBSs /* 2219 */ MCD::OPC_FilterValue, 4, 33, 0, 0, // Skip to: 2257 /* 2224 */ MCD::OPC_Decode, 181, 10, 179, 1, // Opcode: QVFNMSUB /* 2229 */ MCD::OPC_FilterValue, 62, 23, 0, 0, // Skip to: 2257 /* 2234 */ MCD::OPC_ExtractField, 26, 6, // Inst{31-26} ... /* 2237 */ MCD::OPC_FilterValue, 0, 5, 0, 0, // Skip to: 2247 /* 2242 */ MCD::OPC_Decode, 180, 10, 196, 1, // Opcode: QVFNMADDSs /* 2247 */ MCD::OPC_FilterValue, 4, 5, 0, 0, // Skip to: 2257 /* 2252 */ MCD::OPC_Decode, 178, 10, 179, 1, // Opcode: QVFNMADD /* 2257 */ MCD::OPC_Fail, 0 }; static const uint8_t DecoderTableSPE32[] = { /* 0 */ MCD::OPC_ExtractField, 3, 8, // Inst{10-3} ... /* 3 */ MCD::OPC_FilterValue, 64, 71, 0, 0, // Skip to: 79 /* 8 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 11 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 28 /* 16 */ MCD::OPC_CheckField, 26, 6, 4, 112, 20, 0, // Skip to: 5255 /* 23 */ MCD::OPC_Decode, 157, 5, 197, 1, // Opcode: EVADDW /* 28 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 45 /* 33 */ MCD::OPC_CheckField, 26, 6, 4, 95, 20, 0, // Skip to: 5255 /* 40 */ MCD::OPC_Decode, 152, 5, 198, 1, // Opcode: EVADDIW /* 45 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 62 /* 50 */ MCD::OPC_CheckField, 26, 6, 4, 78, 20, 0, // Skip to: 5255 /* 57 */ MCD::OPC_Decode, 215, 6, 197, 1, // Opcode: EVSUBFW /* 62 */ MCD::OPC_FilterValue, 6, 68, 20, 0, // Skip to: 5255 /* 67 */ MCD::OPC_CheckField, 26, 6, 4, 61, 20, 0, // Skip to: 5255 /* 74 */ MCD::OPC_Decode, 216, 6, 199, 1, // Opcode: EVSUBIFW /* 79 */ MCD::OPC_FilterValue, 65, 187, 0, 0, // Skip to: 271 /* 84 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 87 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 111 /* 92 */ MCD::OPC_CheckField, 26, 6, 4, 36, 20, 0, // Skip to: 5255 /* 99 */ MCD::OPC_CheckField, 11, 5, 0, 29, 20, 0, // Skip to: 5255 /* 106 */ MCD::OPC_Decode, 151, 5, 200, 1, // Opcode: EVABS /* 111 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 135 /* 116 */ MCD::OPC_CheckField, 26, 6, 4, 12, 20, 0, // Skip to: 5255 /* 123 */ MCD::OPC_CheckField, 11, 5, 0, 5, 20, 0, // Skip to: 5255 /* 130 */ MCD::OPC_Decode, 181, 6, 200, 1, // Opcode: EVNEG /* 135 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 159 /* 140 */ MCD::OPC_CheckField, 26, 6, 4, 244, 19, 0, // Skip to: 5255 /* 147 */ MCD::OPC_CheckField, 11, 5, 0, 237, 19, 0, // Skip to: 5255 /* 154 */ MCD::OPC_Decode, 170, 5, 200, 1, // Opcode: EVEXTSB /* 159 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 183 /* 164 */ MCD::OPC_CheckField, 26, 6, 4, 220, 19, 0, // Skip to: 5255 /* 171 */ MCD::OPC_CheckField, 11, 5, 0, 213, 19, 0, // Skip to: 5255 /* 178 */ MCD::OPC_Decode, 171, 5, 200, 1, // Opcode: EVEXTSH /* 183 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 207 /* 188 */ MCD::OPC_CheckField, 26, 6, 4, 196, 19, 0, // Skip to: 5255 /* 195 */ MCD::OPC_CheckField, 11, 5, 0, 189, 19, 0, // Skip to: 5255 /* 202 */ MCD::OPC_Decode, 187, 6, 200, 1, // Opcode: EVRNDW /* 207 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 231 /* 212 */ MCD::OPC_CheckField, 26, 6, 4, 172, 19, 0, // Skip to: 5255 /* 219 */ MCD::OPC_CheckField, 11, 5, 0, 165, 19, 0, // Skip to: 5255 /* 226 */ MCD::OPC_Decode, 166, 5, 200, 1, // Opcode: EVCNTLZW /* 231 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 255 /* 236 */ MCD::OPC_CheckField, 26, 6, 4, 148, 19, 0, // Skip to: 5255 /* 243 */ MCD::OPC_CheckField, 11, 5, 0, 141, 19, 0, // Skip to: 5255 /* 250 */ MCD::OPC_Decode, 165, 5, 200, 1, // Opcode: EVCNTLSW /* 255 */ MCD::OPC_FilterValue, 7, 131, 19, 0, // Skip to: 5255 /* 260 */ MCD::OPC_CheckField, 26, 6, 4, 124, 19, 0, // Skip to: 5255 /* 267 */ MCD::OPC_Decode, 237, 3, 64, // Opcode: BRINC /* 271 */ MCD::OPC_FilterValue, 66, 71, 0, 0, // Skip to: 347 /* 276 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 279 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 296 /* 284 */ MCD::OPC_CheckField, 26, 6, 4, 100, 19, 0, // Skip to: 5255 /* 291 */ MCD::OPC_Decode, 158, 5, 197, 1, // Opcode: EVAND /* 296 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 313 /* 301 */ MCD::OPC_CheckField, 26, 6, 4, 83, 19, 0, // Skip to: 5255 /* 308 */ MCD::OPC_Decode, 159, 5, 197, 1, // Opcode: EVANDC /* 313 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 330 /* 318 */ MCD::OPC_CheckField, 26, 6, 4, 66, 19, 0, // Skip to: 5255 /* 325 */ MCD::OPC_Decode, 217, 6, 197, 1, // Opcode: EVXOR /* 330 */ MCD::OPC_FilterValue, 7, 56, 19, 0, // Skip to: 5255 /* 335 */ MCD::OPC_CheckField, 26, 6, 4, 49, 19, 0, // Skip to: 5255 /* 342 */ MCD::OPC_Decode, 183, 6, 197, 1, // Opcode: EVOR /* 347 */ MCD::OPC_FilterValue, 67, 71, 0, 0, // Skip to: 423 /* 352 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 355 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 372 /* 360 */ MCD::OPC_CheckField, 26, 6, 4, 24, 19, 0, // Skip to: 5255 /* 367 */ MCD::OPC_Decode, 182, 6, 197, 1, // Opcode: EVNOR /* 372 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 389 /* 377 */ MCD::OPC_CheckField, 26, 6, 4, 7, 19, 0, // Skip to: 5255 /* 384 */ MCD::OPC_Decode, 169, 5, 197, 1, // Opcode: EVEQV /* 389 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 406 /* 394 */ MCD::OPC_CheckField, 26, 6, 4, 246, 18, 0, // Skip to: 5255 /* 401 */ MCD::OPC_Decode, 184, 6, 197, 1, // Opcode: EVORC /* 406 */ MCD::OPC_FilterValue, 6, 236, 18, 0, // Skip to: 5255 /* 411 */ MCD::OPC_CheckField, 26, 6, 4, 229, 18, 0, // Skip to: 5255 /* 418 */ MCD::OPC_Decode, 180, 6, 197, 1, // Opcode: EVNAND /* 423 */ MCD::OPC_FilterValue, 68, 105, 0, 0, // Skip to: 533 /* 428 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 431 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 448 /* 436 */ MCD::OPC_CheckField, 26, 6, 4, 204, 18, 0, // Skip to: 5255 /* 443 */ MCD::OPC_Decode, 196, 6, 197, 1, // Opcode: EVSRWU /* 448 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 465 /* 453 */ MCD::OPC_CheckField, 26, 6, 4, 187, 18, 0, // Skip to: 5255 /* 460 */ MCD::OPC_Decode, 195, 6, 197, 1, // Opcode: EVSRWS /* 465 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 482 /* 470 */ MCD::OPC_CheckField, 26, 6, 4, 170, 18, 0, // Skip to: 5255 /* 477 */ MCD::OPC_Decode, 194, 6, 198, 1, // Opcode: EVSRWIU /* 482 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 499 /* 487 */ MCD::OPC_CheckField, 26, 6, 4, 153, 18, 0, // Skip to: 5255 /* 494 */ MCD::OPC_Decode, 193, 6, 198, 1, // Opcode: EVSRWIS /* 499 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 516 /* 504 */ MCD::OPC_CheckField, 26, 6, 4, 136, 18, 0, // Skip to: 5255 /* 511 */ MCD::OPC_Decode, 189, 6, 197, 1, // Opcode: EVSLW /* 516 */ MCD::OPC_FilterValue, 6, 126, 18, 0, // Skip to: 5255 /* 521 */ MCD::OPC_CheckField, 26, 6, 4, 119, 18, 0, // Skip to: 5255 /* 528 */ MCD::OPC_Decode, 190, 6, 198, 1, // Opcode: EVSLWI /* 533 */ MCD::OPC_FilterValue, 69, 153, 0, 0, // Skip to: 691 /* 538 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 541 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 558 /* 546 */ MCD::OPC_CheckField, 26, 6, 4, 94, 18, 0, // Skip to: 5255 /* 553 */ MCD::OPC_Decode, 185, 6, 197, 1, // Opcode: EVRLW /* 558 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 582 /* 563 */ MCD::OPC_CheckField, 26, 6, 4, 77, 18, 0, // Skip to: 5255 /* 570 */ MCD::OPC_CheckField, 11, 5, 0, 70, 18, 0, // Skip to: 5255 /* 577 */ MCD::OPC_Decode, 192, 6, 201, 1, // Opcode: EVSPLATI /* 582 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 599 /* 587 */ MCD::OPC_CheckField, 26, 6, 4, 53, 18, 0, // Skip to: 5255 /* 594 */ MCD::OPC_Decode, 186, 6, 198, 1, // Opcode: EVRLWI /* 599 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 623 /* 604 */ MCD::OPC_CheckField, 26, 6, 4, 36, 18, 0, // Skip to: 5255 /* 611 */ MCD::OPC_CheckField, 11, 5, 0, 29, 18, 0, // Skip to: 5255 /* 618 */ MCD::OPC_Decode, 191, 6, 201, 1, // Opcode: EVSPLATFI /* 623 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 640 /* 628 */ MCD::OPC_CheckField, 26, 6, 4, 12, 18, 0, // Skip to: 5255 /* 635 */ MCD::OPC_Decode, 217, 5, 197, 1, // Opcode: EVMERGEHI /* 640 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 657 /* 645 */ MCD::OPC_CheckField, 26, 6, 4, 251, 17, 0, // Skip to: 5255 /* 652 */ MCD::OPC_Decode, 219, 5, 202, 1, // Opcode: EVMERGELO /* 657 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 674 /* 662 */ MCD::OPC_CheckField, 26, 6, 4, 234, 17, 0, // Skip to: 5255 /* 669 */ MCD::OPC_Decode, 218, 5, 197, 1, // Opcode: EVMERGEHILO /* 674 */ MCD::OPC_FilterValue, 7, 224, 17, 0, // Skip to: 5255 /* 679 */ MCD::OPC_CheckField, 26, 6, 4, 217, 17, 0, // Skip to: 5255 /* 686 */ MCD::OPC_Decode, 220, 5, 197, 1, // Opcode: EVMERGELOHI /* 691 */ MCD::OPC_FilterValue, 70, 123, 0, 0, // Skip to: 819 /* 696 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 699 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 723 /* 704 */ MCD::OPC_CheckField, 26, 6, 4, 192, 17, 0, // Skip to: 5255 /* 711 */ MCD::OPC_CheckField, 21, 2, 0, 185, 17, 0, // Skip to: 5255 /* 718 */ MCD::OPC_Decode, 162, 5, 203, 1, // Opcode: EVCMPGTU /* 723 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 747 /* 728 */ MCD::OPC_CheckField, 26, 6, 4, 168, 17, 0, // Skip to: 5255 /* 735 */ MCD::OPC_CheckField, 21, 2, 0, 161, 17, 0, // Skip to: 5255 /* 742 */ MCD::OPC_Decode, 161, 5, 203, 1, // Opcode: EVCMPGTS /* 747 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 771 /* 752 */ MCD::OPC_CheckField, 26, 6, 4, 144, 17, 0, // Skip to: 5255 /* 759 */ MCD::OPC_CheckField, 21, 2, 0, 137, 17, 0, // Skip to: 5255 /* 766 */ MCD::OPC_Decode, 164, 5, 203, 1, // Opcode: EVCMPLTU /* 771 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 795 /* 776 */ MCD::OPC_CheckField, 26, 6, 4, 120, 17, 0, // Skip to: 5255 /* 783 */ MCD::OPC_CheckField, 21, 2, 0, 113, 17, 0, // Skip to: 5255 /* 790 */ MCD::OPC_Decode, 163, 5, 203, 1, // Opcode: EVCMPLTS /* 795 */ MCD::OPC_FilterValue, 4, 103, 17, 0, // Skip to: 5255 /* 800 */ MCD::OPC_CheckField, 26, 6, 4, 96, 17, 0, // Skip to: 5255 /* 807 */ MCD::OPC_CheckField, 21, 2, 0, 89, 17, 0, // Skip to: 5255 /* 814 */ MCD::OPC_Decode, 160, 5, 203, 1, // Opcode: EVCMPEQ /* 819 */ MCD::OPC_FilterValue, 79, 12, 0, 0, // Skip to: 836 /* 824 */ MCD::OPC_CheckField, 26, 6, 4, 72, 17, 0, // Skip to: 5255 /* 831 */ MCD::OPC_Decode, 188, 6, 204, 1, // Opcode: EVSEL /* 836 */ MCD::OPC_FilterValue, 80, 109, 0, 0, // Skip to: 950 /* 841 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 844 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 861 /* 849 */ MCD::OPC_CheckField, 26, 6, 4, 47, 17, 0, // Skip to: 5255 /* 856 */ MCD::OPC_Decode, 173, 5, 197, 1, // Opcode: EVFSADD /* 861 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 878 /* 866 */ MCD::OPC_CheckField, 26, 6, 4, 30, 17, 0, // Skip to: 5255 /* 873 */ MCD::OPC_Decode, 191, 5, 197, 1, // Opcode: EVFSSUB /* 878 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 902 /* 883 */ MCD::OPC_CheckField, 26, 6, 4, 13, 17, 0, // Skip to: 5255 /* 890 */ MCD::OPC_CheckField, 11, 5, 0, 6, 17, 0, // Skip to: 5255 /* 897 */ MCD::OPC_Decode, 172, 5, 200, 1, // Opcode: EVFSABS /* 902 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 926 /* 907 */ MCD::OPC_CheckField, 26, 6, 4, 245, 16, 0, // Skip to: 5255 /* 914 */ MCD::OPC_CheckField, 11, 5, 0, 238, 16, 0, // Skip to: 5255 /* 921 */ MCD::OPC_Decode, 189, 5, 200, 1, // Opcode: EVFSNABS /* 926 */ MCD::OPC_FilterValue, 6, 228, 16, 0, // Skip to: 5255 /* 931 */ MCD::OPC_CheckField, 26, 6, 4, 221, 16, 0, // Skip to: 5255 /* 938 */ MCD::OPC_CheckField, 11, 5, 0, 214, 16, 0, // Skip to: 5255 /* 945 */ MCD::OPC_Decode, 190, 5, 200, 1, // Opcode: EVFSNEG /* 950 */ MCD::OPC_FilterValue, 81, 133, 0, 0, // Skip to: 1088 /* 955 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 958 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 975 /* 963 */ MCD::OPC_CheckField, 26, 6, 4, 189, 16, 0, // Skip to: 5255 /* 970 */ MCD::OPC_Decode, 188, 5, 197, 1, // Opcode: EVFSMUL /* 975 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 992 /* 980 */ MCD::OPC_CheckField, 26, 6, 4, 172, 16, 0, // Skip to: 5255 /* 987 */ MCD::OPC_Decode, 187, 5, 197, 1, // Opcode: EVFSDIV /* 992 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1016 /* 997 */ MCD::OPC_CheckField, 26, 6, 4, 155, 16, 0, // Skip to: 5255 /* 1004 */ MCD::OPC_CheckField, 16, 5, 0, 148, 16, 0, // Skip to: 5255 /* 1011 */ MCD::OPC_Decode, 177, 5, 205, 1, // Opcode: EVFSCFUI /* 1016 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1040 /* 1021 */ MCD::OPC_CheckField, 26, 6, 4, 131, 16, 0, // Skip to: 5255 /* 1028 */ MCD::OPC_CheckField, 21, 2, 0, 124, 16, 0, // Skip to: 5255 /* 1035 */ MCD::OPC_Decode, 179, 5, 203, 1, // Opcode: EVFSCMPGT /* 1040 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1064 /* 1045 */ MCD::OPC_CheckField, 26, 6, 4, 107, 16, 0, // Skip to: 5255 /* 1052 */ MCD::OPC_CheckField, 21, 2, 0, 100, 16, 0, // Skip to: 5255 /* 1059 */ MCD::OPC_Decode, 180, 5, 203, 1, // Opcode: EVFSCMPLT /* 1064 */ MCD::OPC_FilterValue, 6, 90, 16, 0, // Skip to: 5255 /* 1069 */ MCD::OPC_CheckField, 26, 6, 4, 83, 16, 0, // Skip to: 5255 /* 1076 */ MCD::OPC_CheckField, 21, 2, 0, 76, 16, 0, // Skip to: 5255 /* 1083 */ MCD::OPC_Decode, 178, 5, 203, 1, // Opcode: EVFSCMPEQ /* 1088 */ MCD::OPC_FilterValue, 82, 171, 0, 0, // Skip to: 1264 /* 1093 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1096 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 1120 /* 1101 */ MCD::OPC_CheckField, 26, 6, 4, 51, 16, 0, // Skip to: 5255 /* 1108 */ MCD::OPC_CheckField, 16, 5, 0, 44, 16, 0, // Skip to: 5255 /* 1115 */ MCD::OPC_Decode, 175, 5, 205, 1, // Opcode: EVFSCFSI /* 1120 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1144 /* 1125 */ MCD::OPC_CheckField, 26, 6, 4, 27, 16, 0, // Skip to: 5255 /* 1132 */ MCD::OPC_CheckField, 16, 5, 0, 20, 16, 0, // Skip to: 5255 /* 1139 */ MCD::OPC_Decode, 176, 5, 205, 1, // Opcode: EVFSCFUF /* 1144 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 1168 /* 1149 */ MCD::OPC_CheckField, 26, 6, 4, 3, 16, 0, // Skip to: 5255 /* 1156 */ MCD::OPC_CheckField, 16, 5, 0, 252, 15, 0, // Skip to: 5255 /* 1163 */ MCD::OPC_Decode, 174, 5, 205, 1, // Opcode: EVFSCFSF /* 1168 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1192 /* 1173 */ MCD::OPC_CheckField, 26, 6, 4, 235, 15, 0, // Skip to: 5255 /* 1180 */ MCD::OPC_CheckField, 16, 5, 0, 228, 15, 0, // Skip to: 5255 /* 1187 */ MCD::OPC_Decode, 185, 5, 205, 1, // Opcode: EVFSCTUI /* 1192 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1216 /* 1197 */ MCD::OPC_CheckField, 26, 6, 4, 211, 15, 0, // Skip to: 5255 /* 1204 */ MCD::OPC_CheckField, 16, 5, 0, 204, 15, 0, // Skip to: 5255 /* 1211 */ MCD::OPC_Decode, 182, 5, 205, 1, // Opcode: EVFSCTSI /* 1216 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 1240 /* 1221 */ MCD::OPC_CheckField, 26, 6, 4, 187, 15, 0, // Skip to: 5255 /* 1228 */ MCD::OPC_CheckField, 16, 5, 0, 180, 15, 0, // Skip to: 5255 /* 1235 */ MCD::OPC_Decode, 184, 5, 205, 1, // Opcode: EVFSCTUF /* 1240 */ MCD::OPC_FilterValue, 7, 170, 15, 0, // Skip to: 5255 /* 1245 */ MCD::OPC_CheckField, 26, 6, 4, 163, 15, 0, // Skip to: 5255 /* 1252 */ MCD::OPC_CheckField, 16, 5, 0, 156, 15, 0, // Skip to: 5255 /* 1259 */ MCD::OPC_Decode, 181, 5, 205, 1, // Opcode: EVFSCTSF /* 1264 */ MCD::OPC_FilterValue, 83, 123, 0, 0, // Skip to: 1392 /* 1269 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1272 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 1296 /* 1277 */ MCD::OPC_CheckField, 26, 6, 4, 131, 15, 0, // Skip to: 5255 /* 1284 */ MCD::OPC_CheckField, 16, 5, 0, 124, 15, 0, // Skip to: 5255 /* 1291 */ MCD::OPC_Decode, 186, 5, 205, 1, // Opcode: EVFSCTUIZ /* 1296 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 1320 /* 1301 */ MCD::OPC_CheckField, 26, 6, 4, 107, 15, 0, // Skip to: 5255 /* 1308 */ MCD::OPC_CheckField, 16, 5, 0, 100, 15, 0, // Skip to: 5255 /* 1315 */ MCD::OPC_Decode, 183, 5, 205, 1, // Opcode: EVFSCTSIZ /* 1320 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1344 /* 1325 */ MCD::OPC_CheckField, 26, 6, 4, 83, 15, 0, // Skip to: 5255 /* 1332 */ MCD::OPC_CheckField, 21, 2, 0, 76, 15, 0, // Skip to: 5255 /* 1339 */ MCD::OPC_Decode, 193, 5, 203, 1, // Opcode: EVFSTSTGT /* 1344 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1368 /* 1349 */ MCD::OPC_CheckField, 26, 6, 4, 59, 15, 0, // Skip to: 5255 /* 1356 */ MCD::OPC_CheckField, 21, 2, 0, 52, 15, 0, // Skip to: 5255 /* 1363 */ MCD::OPC_Decode, 194, 5, 203, 1, // Opcode: EVFSTSTLT /* 1368 */ MCD::OPC_FilterValue, 6, 42, 15, 0, // Skip to: 5255 /* 1373 */ MCD::OPC_CheckField, 26, 6, 4, 35, 15, 0, // Skip to: 5255 /* 1380 */ MCD::OPC_CheckField, 21, 2, 0, 28, 15, 0, // Skip to: 5255 /* 1387 */ MCD::OPC_Decode, 192, 5, 203, 1, // Opcode: EVFSTSTEQ /* 1392 */ MCD::OPC_FilterValue, 88, 104, 0, 0, // Skip to: 1501 /* 1397 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1400 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 1416 /* 1405 */ MCD::OPC_CheckField, 26, 6, 4, 3, 15, 0, // Skip to: 5255 /* 1412 */ MCD::OPC_Decode, 247, 4, 64, // Opcode: EFSADD /* 1416 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 1432 /* 1421 */ MCD::OPC_CheckField, 26, 6, 4, 243, 14, 0, // Skip to: 5255 /* 1428 */ MCD::OPC_Decode, 138, 5, 64, // Opcode: EFSSUB /* 1432 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1455 /* 1437 */ MCD::OPC_CheckField, 26, 6, 4, 227, 14, 0, // Skip to: 5255 /* 1444 */ MCD::OPC_CheckField, 11, 5, 0, 220, 14, 0, // Skip to: 5255 /* 1451 */ MCD::OPC_Decode, 246, 4, 66, // Opcode: EFSABS /* 1455 */ MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1478 /* 1460 */ MCD::OPC_CheckField, 26, 6, 4, 204, 14, 0, // Skip to: 5255 /* 1467 */ MCD::OPC_CheckField, 11, 5, 0, 197, 14, 0, // Skip to: 5255 /* 1474 */ MCD::OPC_Decode, 136, 5, 66, // Opcode: EFSNABS /* 1478 */ MCD::OPC_FilterValue, 6, 188, 14, 0, // Skip to: 5255 /* 1483 */ MCD::OPC_CheckField, 26, 6, 4, 181, 14, 0, // Skip to: 5255 /* 1490 */ MCD::OPC_CheckField, 11, 5, 0, 174, 14, 0, // Skip to: 5255 /* 1497 */ MCD::OPC_Decode, 137, 5, 66, // Opcode: EFSNEG /* 1501 */ MCD::OPC_FilterValue, 89, 128, 0, 0, // Skip to: 1634 /* 1506 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1509 */ MCD::OPC_FilterValue, 0, 11, 0, 0, // Skip to: 1525 /* 1514 */ MCD::OPC_CheckField, 26, 6, 4, 150, 14, 0, // Skip to: 5255 /* 1521 */ MCD::OPC_Decode, 135, 5, 64, // Opcode: EFSMUL /* 1525 */ MCD::OPC_FilterValue, 1, 11, 0, 0, // Skip to: 1541 /* 1530 */ MCD::OPC_CheckField, 26, 6, 4, 134, 14, 0, // Skip to: 5255 /* 1537 */ MCD::OPC_Decode, 134, 5, 64, // Opcode: EFSDIV /* 1541 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1564 /* 1546 */ MCD::OPC_CheckField, 26, 6, 4, 118, 14, 0, // Skip to: 5255 /* 1553 */ MCD::OPC_CheckField, 21, 2, 0, 111, 14, 0, // Skip to: 5255 /* 1560 */ MCD::OPC_Decode, 254, 4, 47, // Opcode: EFSCMPGT /* 1564 */ MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1587 /* 1569 */ MCD::OPC_CheckField, 26, 6, 4, 95, 14, 0, // Skip to: 5255 /* 1576 */ MCD::OPC_CheckField, 21, 2, 0, 88, 14, 0, // Skip to: 5255 /* 1583 */ MCD::OPC_Decode, 255, 4, 47, // Opcode: EFSCMPLT /* 1587 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 1610 /* 1592 */ MCD::OPC_CheckField, 26, 6, 4, 72, 14, 0, // Skip to: 5255 /* 1599 */ MCD::OPC_CheckField, 21, 2, 0, 65, 14, 0, // Skip to: 5255 /* 1606 */ MCD::OPC_Decode, 253, 4, 47, // Opcode: EFSCMPEQ /* 1610 */ MCD::OPC_FilterValue, 7, 56, 14, 0, // Skip to: 5255 /* 1615 */ MCD::OPC_CheckField, 26, 6, 4, 49, 14, 0, // Skip to: 5255 /* 1622 */ MCD::OPC_CheckField, 16, 5, 0, 42, 14, 0, // Skip to: 5255 /* 1629 */ MCD::OPC_Decode, 248, 4, 206, 1, // Opcode: EFSCFD /* 1634 */ MCD::OPC_FilterValue, 90, 188, 0, 0, // Skip to: 1827 /* 1639 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1642 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 1665 /* 1647 */ MCD::OPC_CheckField, 26, 6, 4, 17, 14, 0, // Skip to: 5255 /* 1654 */ MCD::OPC_CheckField, 16, 5, 0, 10, 14, 0, // Skip to: 5255 /* 1661 */ MCD::OPC_Decode, 252, 4, 87, // Opcode: EFSCFUI /* 1665 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 1688 /* 1670 */ MCD::OPC_CheckField, 26, 6, 4, 250, 13, 0, // Skip to: 5255 /* 1677 */ MCD::OPC_CheckField, 16, 5, 0, 243, 13, 0, // Skip to: 5255 /* 1684 */ MCD::OPC_Decode, 250, 4, 87, // Opcode: EFSCFSI /* 1688 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 1711 /* 1693 */ MCD::OPC_CheckField, 26, 6, 4, 227, 13, 0, // Skip to: 5255 /* 1700 */ MCD::OPC_CheckField, 16, 5, 0, 220, 13, 0, // Skip to: 5255 /* 1707 */ MCD::OPC_Decode, 251, 4, 87, // Opcode: EFSCFUF /* 1711 */ MCD::OPC_FilterValue, 3, 18, 0, 0, // Skip to: 1734 /* 1716 */ MCD::OPC_CheckField, 26, 6, 4, 204, 13, 0, // Skip to: 5255 /* 1723 */ MCD::OPC_CheckField, 16, 5, 0, 197, 13, 0, // Skip to: 5255 /* 1730 */ MCD::OPC_Decode, 249, 4, 87, // Opcode: EFSCFSF /* 1734 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 1757 /* 1739 */ MCD::OPC_CheckField, 26, 6, 4, 181, 13, 0, // Skip to: 5255 /* 1746 */ MCD::OPC_CheckField, 16, 5, 0, 174, 13, 0, // Skip to: 5255 /* 1753 */ MCD::OPC_Decode, 132, 5, 87, // Opcode: EFSCTUI /* 1757 */ MCD::OPC_FilterValue, 5, 18, 0, 0, // Skip to: 1780 /* 1762 */ MCD::OPC_CheckField, 26, 6, 4, 158, 13, 0, // Skip to: 5255 /* 1769 */ MCD::OPC_CheckField, 16, 5, 0, 151, 13, 0, // Skip to: 5255 /* 1776 */ MCD::OPC_Decode, 129, 5, 87, // Opcode: EFSCTSI /* 1780 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 1804 /* 1785 */ MCD::OPC_CheckField, 26, 6, 4, 135, 13, 0, // Skip to: 5255 /* 1792 */ MCD::OPC_CheckField, 16, 5, 0, 128, 13, 0, // Skip to: 5255 /* 1799 */ MCD::OPC_Decode, 131, 5, 207, 1, // Opcode: EFSCTUF /* 1804 */ MCD::OPC_FilterValue, 7, 118, 13, 0, // Skip to: 5255 /* 1809 */ MCD::OPC_CheckField, 26, 6, 4, 111, 13, 0, // Skip to: 5255 /* 1816 */ MCD::OPC_CheckField, 16, 5, 0, 104, 13, 0, // Skip to: 5255 /* 1823 */ MCD::OPC_Decode, 128, 5, 87, // Opcode: EFSCTSF /* 1827 */ MCD::OPC_FilterValue, 91, 121, 0, 0, // Skip to: 1953 /* 1832 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1835 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 1858 /* 1840 */ MCD::OPC_CheckField, 26, 6, 4, 80, 13, 0, // Skip to: 5255 /* 1847 */ MCD::OPC_CheckField, 16, 5, 0, 73, 13, 0, // Skip to: 5255 /* 1854 */ MCD::OPC_Decode, 133, 5, 87, // Opcode: EFSCTUIZ /* 1858 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 1881 /* 1863 */ MCD::OPC_CheckField, 26, 6, 4, 57, 13, 0, // Skip to: 5255 /* 1870 */ MCD::OPC_CheckField, 16, 5, 0, 50, 13, 0, // Skip to: 5255 /* 1877 */ MCD::OPC_Decode, 130, 5, 87, // Opcode: EFSCTSIZ /* 1881 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 1905 /* 1886 */ MCD::OPC_CheckField, 26, 6, 4, 34, 13, 0, // Skip to: 5255 /* 1893 */ MCD::OPC_CheckField, 21, 2, 0, 27, 13, 0, // Skip to: 5255 /* 1900 */ MCD::OPC_Decode, 140, 5, 203, 1, // Opcode: EFSTSTGT /* 1905 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 1929 /* 1910 */ MCD::OPC_CheckField, 26, 6, 4, 10, 13, 0, // Skip to: 5255 /* 1917 */ MCD::OPC_CheckField, 21, 2, 0, 3, 13, 0, // Skip to: 5255 /* 1924 */ MCD::OPC_Decode, 141, 5, 203, 1, // Opcode: EFSTSTLT /* 1929 */ MCD::OPC_FilterValue, 6, 249, 12, 0, // Skip to: 5255 /* 1934 */ MCD::OPC_CheckField, 26, 6, 4, 242, 12, 0, // Skip to: 5255 /* 1941 */ MCD::OPC_CheckField, 21, 2, 0, 235, 12, 0, // Skip to: 5255 /* 1948 */ MCD::OPC_Decode, 139, 5, 203, 1, // Opcode: EFSTSTEQ /* 1953 */ MCD::OPC_FilterValue, 92, 157, 0, 0, // Skip to: 2115 /* 1958 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 1961 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 1978 /* 1966 */ MCD::OPC_CheckField, 26, 6, 4, 210, 12, 0, // Skip to: 5255 /* 1973 */ MCD::OPC_Decode, 219, 4, 197, 1, // Opcode: EFDADD /* 1978 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 1995 /* 1983 */ MCD::OPC_CheckField, 26, 6, 4, 193, 12, 0, // Skip to: 5255 /* 1990 */ MCD::OPC_Decode, 242, 4, 197, 1, // Opcode: EFDSUB /* 1995 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2019 /* 2000 */ MCD::OPC_CheckField, 26, 6, 4, 176, 12, 0, // Skip to: 5255 /* 2007 */ MCD::OPC_CheckField, 16, 5, 0, 169, 12, 0, // Skip to: 5255 /* 2014 */ MCD::OPC_Decode, 226, 4, 207, 1, // Opcode: EFDCFUID /* 2019 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2043 /* 2024 */ MCD::OPC_CheckField, 26, 6, 4, 152, 12, 0, // Skip to: 5255 /* 2031 */ MCD::OPC_CheckField, 16, 5, 0, 145, 12, 0, // Skip to: 5255 /* 2038 */ MCD::OPC_Decode, 223, 4, 207, 1, // Opcode: EFDCFSID /* 2043 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2067 /* 2048 */ MCD::OPC_CheckField, 26, 6, 4, 128, 12, 0, // Skip to: 5255 /* 2055 */ MCD::OPC_CheckField, 11, 5, 0, 121, 12, 0, // Skip to: 5255 /* 2062 */ MCD::OPC_Decode, 218, 4, 200, 1, // Opcode: EFDABS /* 2067 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2091 /* 2072 */ MCD::OPC_CheckField, 26, 6, 4, 104, 12, 0, // Skip to: 5255 /* 2079 */ MCD::OPC_CheckField, 11, 5, 0, 97, 12, 0, // Skip to: 5255 /* 2086 */ MCD::OPC_Decode, 240, 4, 200, 1, // Opcode: EFDNABS /* 2091 */ MCD::OPC_FilterValue, 6, 87, 12, 0, // Skip to: 5255 /* 2096 */ MCD::OPC_CheckField, 26, 6, 4, 80, 12, 0, // Skip to: 5255 /* 2103 */ MCD::OPC_CheckField, 11, 5, 0, 73, 12, 0, // Skip to: 5255 /* 2110 */ MCD::OPC_Decode, 241, 4, 200, 1, // Opcode: EFDNEG /* 2115 */ MCD::OPC_FilterValue, 93, 181, 0, 0, // Skip to: 2301 /* 2120 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2123 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2140 /* 2128 */ MCD::OPC_CheckField, 26, 6, 4, 48, 12, 0, // Skip to: 5255 /* 2135 */ MCD::OPC_Decode, 239, 4, 197, 1, // Opcode: EFDMUL /* 2140 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2157 /* 2145 */ MCD::OPC_CheckField, 26, 6, 4, 31, 12, 0, // Skip to: 5255 /* 2152 */ MCD::OPC_Decode, 238, 4, 197, 1, // Opcode: EFDDIV /* 2157 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2181 /* 2162 */ MCD::OPC_CheckField, 26, 6, 4, 14, 12, 0, // Skip to: 5255 /* 2169 */ MCD::OPC_CheckField, 16, 5, 0, 7, 12, 0, // Skip to: 5255 /* 2176 */ MCD::OPC_Decode, 236, 4, 206, 1, // Opcode: EFDCTUIDZ /* 2181 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2205 /* 2186 */ MCD::OPC_CheckField, 26, 6, 4, 246, 11, 0, // Skip to: 5255 /* 2193 */ MCD::OPC_CheckField, 16, 5, 0, 239, 11, 0, // Skip to: 5255 /* 2200 */ MCD::OPC_Decode, 232, 4, 206, 1, // Opcode: EFDCTSIDZ /* 2205 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2229 /* 2210 */ MCD::OPC_CheckField, 26, 6, 4, 222, 11, 0, // Skip to: 5255 /* 2217 */ MCD::OPC_CheckField, 21, 2, 0, 215, 11, 0, // Skip to: 5255 /* 2224 */ MCD::OPC_Decode, 228, 4, 203, 1, // Opcode: EFDCMPGT /* 2229 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2253 /* 2234 */ MCD::OPC_CheckField, 26, 6, 4, 198, 11, 0, // Skip to: 5255 /* 2241 */ MCD::OPC_CheckField, 21, 2, 0, 191, 11, 0, // Skip to: 5255 /* 2248 */ MCD::OPC_Decode, 229, 4, 203, 1, // Opcode: EFDCMPLT /* 2253 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2277 /* 2258 */ MCD::OPC_CheckField, 26, 6, 4, 174, 11, 0, // Skip to: 5255 /* 2265 */ MCD::OPC_CheckField, 21, 2, 0, 167, 11, 0, // Skip to: 5255 /* 2272 */ MCD::OPC_Decode, 227, 4, 203, 1, // Opcode: EFDCMPEQ /* 2277 */ MCD::OPC_FilterValue, 7, 157, 11, 0, // Skip to: 5255 /* 2282 */ MCD::OPC_CheckField, 26, 6, 4, 150, 11, 0, // Skip to: 5255 /* 2289 */ MCD::OPC_CheckField, 16, 5, 0, 143, 11, 0, // Skip to: 5255 /* 2296 */ MCD::OPC_Decode, 220, 4, 207, 1, // Opcode: EFDCFS /* 2301 */ MCD::OPC_FilterValue, 94, 195, 0, 0, // Skip to: 2501 /* 2306 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2309 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2333 /* 2314 */ MCD::OPC_CheckField, 26, 6, 4, 118, 11, 0, // Skip to: 5255 /* 2321 */ MCD::OPC_CheckField, 16, 5, 0, 111, 11, 0, // Skip to: 5255 /* 2328 */ MCD::OPC_Decode, 225, 4, 207, 1, // Opcode: EFDCFUI /* 2333 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 2357 /* 2338 */ MCD::OPC_CheckField, 26, 6, 4, 94, 11, 0, // Skip to: 5255 /* 2345 */ MCD::OPC_CheckField, 16, 5, 0, 87, 11, 0, // Skip to: 5255 /* 2352 */ MCD::OPC_Decode, 222, 4, 207, 1, // Opcode: EFDCFSI /* 2357 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2381 /* 2362 */ MCD::OPC_CheckField, 26, 6, 4, 70, 11, 0, // Skip to: 5255 /* 2369 */ MCD::OPC_CheckField, 16, 5, 0, 63, 11, 0, // Skip to: 5255 /* 2376 */ MCD::OPC_Decode, 224, 4, 207, 1, // Opcode: EFDCFUF /* 2381 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 2405 /* 2386 */ MCD::OPC_CheckField, 26, 6, 4, 46, 11, 0, // Skip to: 5255 /* 2393 */ MCD::OPC_CheckField, 16, 5, 0, 39, 11, 0, // Skip to: 5255 /* 2400 */ MCD::OPC_Decode, 221, 4, 207, 1, // Opcode: EFDCFSF /* 2405 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2429 /* 2410 */ MCD::OPC_CheckField, 26, 6, 4, 22, 11, 0, // Skip to: 5255 /* 2417 */ MCD::OPC_CheckField, 16, 5, 0, 15, 11, 0, // Skip to: 5255 /* 2424 */ MCD::OPC_Decode, 235, 4, 206, 1, // Opcode: EFDCTUI /* 2429 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2453 /* 2434 */ MCD::OPC_CheckField, 26, 6, 4, 254, 10, 0, // Skip to: 5255 /* 2441 */ MCD::OPC_CheckField, 16, 5, 0, 247, 10, 0, // Skip to: 5255 /* 2448 */ MCD::OPC_Decode, 231, 4, 206, 1, // Opcode: EFDCTSI /* 2453 */ MCD::OPC_FilterValue, 6, 19, 0, 0, // Skip to: 2477 /* 2458 */ MCD::OPC_CheckField, 26, 6, 4, 230, 10, 0, // Skip to: 5255 /* 2465 */ MCD::OPC_CheckField, 16, 5, 0, 223, 10, 0, // Skip to: 5255 /* 2472 */ MCD::OPC_Decode, 234, 4, 207, 1, // Opcode: EFDCTUF /* 2477 */ MCD::OPC_FilterValue, 7, 213, 10, 0, // Skip to: 5255 /* 2482 */ MCD::OPC_CheckField, 26, 6, 4, 206, 10, 0, // Skip to: 5255 /* 2489 */ MCD::OPC_CheckField, 16, 5, 0, 199, 10, 0, // Skip to: 5255 /* 2496 */ MCD::OPC_Decode, 230, 4, 207, 1, // Opcode: EFDCTSF /* 2501 */ MCD::OPC_FilterValue, 95, 123, 0, 0, // Skip to: 2629 /* 2506 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2509 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 2533 /* 2514 */ MCD::OPC_CheckField, 26, 6, 4, 174, 10, 0, // Skip to: 5255 /* 2521 */ MCD::OPC_CheckField, 16, 5, 0, 167, 10, 0, // Skip to: 5255 /* 2528 */ MCD::OPC_Decode, 237, 4, 206, 1, // Opcode: EFDCTUIZ /* 2533 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 2557 /* 2538 */ MCD::OPC_CheckField, 26, 6, 4, 150, 10, 0, // Skip to: 5255 /* 2545 */ MCD::OPC_CheckField, 16, 5, 0, 143, 10, 0, // Skip to: 5255 /* 2552 */ MCD::OPC_Decode, 233, 4, 206, 1, // Opcode: EFDCTSIZ /* 2557 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 2581 /* 2562 */ MCD::OPC_CheckField, 26, 6, 4, 126, 10, 0, // Skip to: 5255 /* 2569 */ MCD::OPC_CheckField, 21, 2, 0, 119, 10, 0, // Skip to: 5255 /* 2576 */ MCD::OPC_Decode, 244, 4, 203, 1, // Opcode: EFDTSTGT /* 2581 */ MCD::OPC_FilterValue, 5, 19, 0, 0, // Skip to: 2605 /* 2586 */ MCD::OPC_CheckField, 26, 6, 4, 102, 10, 0, // Skip to: 5255 /* 2593 */ MCD::OPC_CheckField, 21, 2, 0, 95, 10, 0, // Skip to: 5255 /* 2600 */ MCD::OPC_Decode, 245, 4, 203, 1, // Opcode: EFDTSTLT /* 2605 */ MCD::OPC_FilterValue, 6, 85, 10, 0, // Skip to: 5255 /* 2610 */ MCD::OPC_CheckField, 26, 6, 4, 78, 10, 0, // Skip to: 5255 /* 2617 */ MCD::OPC_CheckField, 21, 2, 0, 71, 10, 0, // Skip to: 5255 /* 2624 */ MCD::OPC_Decode, 243, 4, 203, 1, // Opcode: EFDTSTEQ /* 2629 */ MCD::OPC_FilterValue, 96, 105, 0, 0, // Skip to: 2739 /* 2634 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2637 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2654 /* 2642 */ MCD::OPC_CheckField, 26, 6, 4, 46, 10, 0, // Skip to: 5255 /* 2649 */ MCD::OPC_Decode, 196, 5, 208, 1, // Opcode: EVLDDX /* 2654 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2671 /* 2659 */ MCD::OPC_CheckField, 26, 6, 4, 29, 10, 0, // Skip to: 5255 /* 2666 */ MCD::OPC_Decode, 195, 5, 209, 1, // Opcode: EVLDD /* 2671 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 2688 /* 2676 */ MCD::OPC_CheckField, 26, 6, 4, 12, 10, 0, // Skip to: 5255 /* 2683 */ MCD::OPC_Decode, 200, 5, 208, 1, // Opcode: EVLDWX /* 2688 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 2705 /* 2693 */ MCD::OPC_CheckField, 26, 6, 4, 251, 9, 0, // Skip to: 5255 /* 2700 */ MCD::OPC_Decode, 199, 5, 209, 1, // Opcode: EVLDW /* 2705 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2722 /* 2710 */ MCD::OPC_CheckField, 26, 6, 4, 234, 9, 0, // Skip to: 5255 /* 2717 */ MCD::OPC_Decode, 198, 5, 208, 1, // Opcode: EVLDHX /* 2722 */ MCD::OPC_FilterValue, 5, 224, 9, 0, // Skip to: 5255 /* 2727 */ MCD::OPC_CheckField, 26, 6, 4, 217, 9, 0, // Skip to: 5255 /* 2734 */ MCD::OPC_Decode, 197, 5, 209, 1, // Opcode: EVLDH /* 2739 */ MCD::OPC_FilterValue, 97, 105, 0, 0, // Skip to: 2849 /* 2744 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2747 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2764 /* 2752 */ MCD::OPC_CheckField, 26, 6, 4, 192, 9, 0, // Skip to: 5255 /* 2759 */ MCD::OPC_Decode, 202, 5, 208, 1, // Opcode: EVLHHESPLATX /* 2764 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2781 /* 2769 */ MCD::OPC_CheckField, 26, 6, 4, 175, 9, 0, // Skip to: 5255 /* 2776 */ MCD::OPC_Decode, 201, 5, 210, 1, // Opcode: EVLHHESPLAT /* 2781 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2798 /* 2786 */ MCD::OPC_CheckField, 26, 6, 4, 158, 9, 0, // Skip to: 5255 /* 2793 */ MCD::OPC_Decode, 206, 5, 208, 1, // Opcode: EVLHHOUSPLATX /* 2798 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 2815 /* 2803 */ MCD::OPC_CheckField, 26, 6, 4, 141, 9, 0, // Skip to: 5255 /* 2810 */ MCD::OPC_Decode, 205, 5, 210, 1, // Opcode: EVLHHOUSPLAT /* 2815 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 2832 /* 2820 */ MCD::OPC_CheckField, 26, 6, 4, 124, 9, 0, // Skip to: 5255 /* 2827 */ MCD::OPC_Decode, 204, 5, 208, 1, // Opcode: EVLHHOSSPLATX /* 2832 */ MCD::OPC_FilterValue, 7, 114, 9, 0, // Skip to: 5255 /* 2837 */ MCD::OPC_CheckField, 26, 6, 4, 107, 9, 0, // Skip to: 5255 /* 2844 */ MCD::OPC_Decode, 203, 5, 210, 1, // Opcode: EVLHHOSSPLAT /* 2849 */ MCD::OPC_FilterValue, 98, 105, 0, 0, // Skip to: 2959 /* 2854 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2857 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2874 /* 2862 */ MCD::OPC_CheckField, 26, 6, 4, 82, 9, 0, // Skip to: 5255 /* 2869 */ MCD::OPC_Decode, 208, 5, 208, 1, // Opcode: EVLWHEX /* 2874 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 2891 /* 2879 */ MCD::OPC_CheckField, 26, 6, 4, 65, 9, 0, // Skip to: 5255 /* 2886 */ MCD::OPC_Decode, 207, 5, 211, 1, // Opcode: EVLWHE /* 2891 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 2908 /* 2896 */ MCD::OPC_CheckField, 26, 6, 4, 48, 9, 0, // Skip to: 5255 /* 2903 */ MCD::OPC_Decode, 212, 5, 208, 1, // Opcode: EVLWHOUX /* 2908 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 2925 /* 2913 */ MCD::OPC_CheckField, 26, 6, 4, 31, 9, 0, // Skip to: 5255 /* 2920 */ MCD::OPC_Decode, 211, 5, 211, 1, // Opcode: EVLWHOU /* 2925 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 2942 /* 2930 */ MCD::OPC_CheckField, 26, 6, 4, 14, 9, 0, // Skip to: 5255 /* 2937 */ MCD::OPC_Decode, 210, 5, 208, 1, // Opcode: EVLWHOSX /* 2942 */ MCD::OPC_FilterValue, 7, 4, 9, 0, // Skip to: 5255 /* 2947 */ MCD::OPC_CheckField, 26, 6, 4, 253, 8, 0, // Skip to: 5255 /* 2954 */ MCD::OPC_Decode, 209, 5, 211, 1, // Opcode: EVLWHOS /* 2959 */ MCD::OPC_FilterValue, 99, 71, 0, 0, // Skip to: 3035 /* 2964 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 2967 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 2984 /* 2972 */ MCD::OPC_CheckField, 26, 6, 4, 228, 8, 0, // Skip to: 5255 /* 2979 */ MCD::OPC_Decode, 216, 5, 208, 1, // Opcode: EVLWWSPLATX /* 2984 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3001 /* 2989 */ MCD::OPC_CheckField, 26, 6, 4, 211, 8, 0, // Skip to: 5255 /* 2996 */ MCD::OPC_Decode, 215, 5, 211, 1, // Opcode: EVLWWSPLAT /* 3001 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3018 /* 3006 */ MCD::OPC_CheckField, 26, 6, 4, 194, 8, 0, // Skip to: 5255 /* 3013 */ MCD::OPC_Decode, 214, 5, 208, 1, // Opcode: EVLWHSPLATX /* 3018 */ MCD::OPC_FilterValue, 5, 184, 8, 0, // Skip to: 5255 /* 3023 */ MCD::OPC_CheckField, 26, 6, 4, 177, 8, 0, // Skip to: 5255 /* 3030 */ MCD::OPC_Decode, 213, 5, 211, 1, // Opcode: EVLWHSPLAT /* 3035 */ MCD::OPC_FilterValue, 100, 105, 0, 0, // Skip to: 3145 /* 3040 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3043 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3060 /* 3048 */ MCD::OPC_CheckField, 26, 6, 4, 152, 8, 0, // Skip to: 5255 /* 3055 */ MCD::OPC_Decode, 198, 6, 208, 1, // Opcode: EVSTDDX /* 3060 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3077 /* 3065 */ MCD::OPC_CheckField, 26, 6, 4, 135, 8, 0, // Skip to: 5255 /* 3072 */ MCD::OPC_Decode, 197, 6, 209, 1, // Opcode: EVSTDD /* 3077 */ MCD::OPC_FilterValue, 2, 12, 0, 0, // Skip to: 3094 /* 3082 */ MCD::OPC_CheckField, 26, 6, 4, 118, 8, 0, // Skip to: 5255 /* 3089 */ MCD::OPC_Decode, 202, 6, 208, 1, // Opcode: EVSTDWX /* 3094 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3111 /* 3099 */ MCD::OPC_CheckField, 26, 6, 4, 101, 8, 0, // Skip to: 5255 /* 3106 */ MCD::OPC_Decode, 201, 6, 209, 1, // Opcode: EVSTDW /* 3111 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3128 /* 3116 */ MCD::OPC_CheckField, 26, 6, 4, 84, 8, 0, // Skip to: 5255 /* 3123 */ MCD::OPC_Decode, 200, 6, 208, 1, // Opcode: EVSTDHX /* 3128 */ MCD::OPC_FilterValue, 5, 74, 8, 0, // Skip to: 5255 /* 3133 */ MCD::OPC_CheckField, 26, 6, 4, 67, 8, 0, // Skip to: 5255 /* 3140 */ MCD::OPC_Decode, 199, 6, 209, 1, // Opcode: EVSTDH /* 3145 */ MCD::OPC_FilterValue, 102, 71, 0, 0, // Skip to: 3221 /* 3150 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3153 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3170 /* 3158 */ MCD::OPC_CheckField, 26, 6, 4, 42, 8, 0, // Skip to: 5255 /* 3165 */ MCD::OPC_Decode, 204, 6, 208, 1, // Opcode: EVSTWHEX /* 3170 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3187 /* 3175 */ MCD::OPC_CheckField, 26, 6, 4, 25, 8, 0, // Skip to: 5255 /* 3182 */ MCD::OPC_Decode, 203, 6, 211, 1, // Opcode: EVSTWHE /* 3187 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3204 /* 3192 */ MCD::OPC_CheckField, 26, 6, 4, 8, 8, 0, // Skip to: 5255 /* 3199 */ MCD::OPC_Decode, 206, 6, 208, 1, // Opcode: EVSTWHOX /* 3204 */ MCD::OPC_FilterValue, 5, 254, 7, 0, // Skip to: 5255 /* 3209 */ MCD::OPC_CheckField, 26, 6, 4, 247, 7, 0, // Skip to: 5255 /* 3216 */ MCD::OPC_Decode, 205, 6, 211, 1, // Opcode: EVSTWHO /* 3221 */ MCD::OPC_FilterValue, 103, 71, 0, 0, // Skip to: 3297 /* 3226 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3229 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3246 /* 3234 */ MCD::OPC_CheckField, 26, 6, 4, 222, 7, 0, // Skip to: 5255 /* 3241 */ MCD::OPC_Decode, 208, 6, 208, 1, // Opcode: EVSTWWEX /* 3246 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3263 /* 3251 */ MCD::OPC_CheckField, 26, 6, 4, 205, 7, 0, // Skip to: 5255 /* 3258 */ MCD::OPC_Decode, 207, 6, 211, 1, // Opcode: EVSTWWE /* 3263 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3280 /* 3268 */ MCD::OPC_CheckField, 26, 6, 4, 188, 7, 0, // Skip to: 5255 /* 3275 */ MCD::OPC_Decode, 210, 6, 208, 1, // Opcode: EVSTWWOX /* 3280 */ MCD::OPC_FilterValue, 5, 178, 7, 0, // Skip to: 5255 /* 3285 */ MCD::OPC_CheckField, 26, 6, 4, 171, 7, 0, // Skip to: 5255 /* 3292 */ MCD::OPC_Decode, 209, 6, 211, 1, // Opcode: EVSTWWO /* 3297 */ MCD::OPC_FilterValue, 128, 1, 37, 0, 0, // Skip to: 3340 /* 3303 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3306 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3323 /* 3311 */ MCD::OPC_CheckField, 26, 6, 4, 145, 7, 0, // Skip to: 5255 /* 3318 */ MCD::OPC_Decode, 235, 5, 197, 1, // Opcode: EVMHESSF /* 3323 */ MCD::OPC_FilterValue, 7, 135, 7, 0, // Skip to: 5255 /* 3328 */ MCD::OPC_CheckField, 26, 6, 4, 128, 7, 0, // Skip to: 5255 /* 3335 */ MCD::OPC_Decode, 133, 6, 197, 1, // Opcode: EVMHOSSF /* 3340 */ MCD::OPC_FilterValue, 129, 1, 105, 0, 0, // Skip to: 3451 /* 3346 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3349 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3366 /* 3354 */ MCD::OPC_CheckField, 26, 6, 4, 102, 7, 0, // Skip to: 5255 /* 3361 */ MCD::OPC_Decode, 241, 5, 197, 1, // Opcode: EVMHEUMI /* 3366 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3383 /* 3371 */ MCD::OPC_CheckField, 26, 6, 4, 85, 7, 0, // Skip to: 5255 /* 3378 */ MCD::OPC_Decode, 231, 5, 197, 1, // Opcode: EVMHESMI /* 3383 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3400 /* 3388 */ MCD::OPC_CheckField, 26, 6, 4, 68, 7, 0, // Skip to: 5255 /* 3395 */ MCD::OPC_Decode, 227, 5, 197, 1, // Opcode: EVMHESMF /* 3400 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3417 /* 3405 */ MCD::OPC_CheckField, 26, 6, 4, 51, 7, 0, // Skip to: 5255 /* 3412 */ MCD::OPC_Decode, 139, 6, 197, 1, // Opcode: EVMHOUMI /* 3417 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3434 /* 3422 */ MCD::OPC_CheckField, 26, 6, 4, 34, 7, 0, // Skip to: 5255 /* 3429 */ MCD::OPC_Decode, 129, 6, 197, 1, // Opcode: EVMHOSMI /* 3434 */ MCD::OPC_FilterValue, 7, 24, 7, 0, // Skip to: 5255 /* 3439 */ MCD::OPC_CheckField, 26, 6, 4, 17, 7, 0, // Skip to: 5255 /* 3446 */ MCD::OPC_Decode, 253, 5, 197, 1, // Opcode: EVMHOSMF /* 3451 */ MCD::OPC_FilterValue, 132, 1, 37, 0, 0, // Skip to: 3494 /* 3457 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3460 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3477 /* 3465 */ MCD::OPC_CheckField, 26, 6, 4, 247, 6, 0, // Skip to: 5255 /* 3472 */ MCD::OPC_Decode, 236, 5, 197, 1, // Opcode: EVMHESSFA /* 3477 */ MCD::OPC_FilterValue, 7, 237, 6, 0, // Skip to: 5255 /* 3482 */ MCD::OPC_CheckField, 26, 6, 4, 230, 6, 0, // Skip to: 5255 /* 3489 */ MCD::OPC_Decode, 134, 6, 197, 1, // Opcode: EVMHOSSFA /* 3494 */ MCD::OPC_FilterValue, 133, 1, 105, 0, 0, // Skip to: 3605 /* 3500 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3503 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3520 /* 3508 */ MCD::OPC_CheckField, 26, 6, 4, 204, 6, 0, // Skip to: 5255 /* 3515 */ MCD::OPC_Decode, 242, 5, 197, 1, // Opcode: EVMHEUMIA /* 3520 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3537 /* 3525 */ MCD::OPC_CheckField, 26, 6, 4, 187, 6, 0, // Skip to: 5255 /* 3532 */ MCD::OPC_Decode, 232, 5, 197, 1, // Opcode: EVMHESMIA /* 3537 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 3554 /* 3542 */ MCD::OPC_CheckField, 26, 6, 4, 170, 6, 0, // Skip to: 5255 /* 3549 */ MCD::OPC_Decode, 228, 5, 197, 1, // Opcode: EVMHESMFA /* 3554 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3571 /* 3559 */ MCD::OPC_CheckField, 26, 6, 4, 153, 6, 0, // Skip to: 5255 /* 3566 */ MCD::OPC_Decode, 140, 6, 197, 1, // Opcode: EVMHOUMIA /* 3571 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3588 /* 3576 */ MCD::OPC_CheckField, 26, 6, 4, 136, 6, 0, // Skip to: 5255 /* 3583 */ MCD::OPC_Decode, 130, 6, 197, 1, // Opcode: EVMHOSMIA /* 3588 */ MCD::OPC_FilterValue, 7, 126, 6, 0, // Skip to: 5255 /* 3593 */ MCD::OPC_CheckField, 26, 6, 4, 119, 6, 0, // Skip to: 5255 /* 3600 */ MCD::OPC_Decode, 254, 5, 197, 1, // Opcode: EVMHOSMFA /* 3605 */ MCD::OPC_FilterValue, 136, 1, 19, 0, 0, // Skip to: 3630 /* 3611 */ MCD::OPC_CheckField, 26, 6, 4, 101, 6, 0, // Skip to: 5255 /* 3618 */ MCD::OPC_CheckField, 0, 3, 7, 94, 6, 0, // Skip to: 5255 /* 3625 */ MCD::OPC_Decode, 150, 6, 197, 1, // Opcode: EVMWHSSF /* 3630 */ MCD::OPC_FilterValue, 137, 1, 71, 0, 0, // Skip to: 3707 /* 3636 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3639 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3656 /* 3644 */ MCD::OPC_CheckField, 26, 6, 4, 68, 6, 0, // Skip to: 5255 /* 3651 */ MCD::OPC_Decode, 158, 6, 197, 1, // Opcode: EVMWLUMI /* 3656 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3673 /* 3661 */ MCD::OPC_CheckField, 26, 6, 4, 51, 6, 0, // Skip to: 5255 /* 3668 */ MCD::OPC_Decode, 152, 6, 197, 1, // Opcode: EVMWHUMI /* 3673 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3690 /* 3678 */ MCD::OPC_CheckField, 26, 6, 4, 34, 6, 0, // Skip to: 5255 /* 3685 */ MCD::OPC_Decode, 148, 6, 197, 1, // Opcode: EVMWHSMI /* 3690 */ MCD::OPC_FilterValue, 7, 24, 6, 0, // Skip to: 5255 /* 3695 */ MCD::OPC_CheckField, 26, 6, 4, 17, 6, 0, // Skip to: 5255 /* 3702 */ MCD::OPC_Decode, 146, 6, 197, 1, // Opcode: EVMWHSMF /* 3707 */ MCD::OPC_FilterValue, 138, 1, 19, 0, 0, // Skip to: 3732 /* 3713 */ MCD::OPC_CheckField, 26, 6, 4, 255, 5, 0, // Skip to: 5255 /* 3720 */ MCD::OPC_CheckField, 0, 3, 3, 248, 5, 0, // Skip to: 5255 /* 3727 */ MCD::OPC_Decode, 172, 6, 197, 1, // Opcode: EVMWSSF /* 3732 */ MCD::OPC_FilterValue, 139, 1, 54, 0, 0, // Skip to: 3792 /* 3738 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3741 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3758 /* 3746 */ MCD::OPC_CheckField, 26, 6, 4, 222, 5, 0, // Skip to: 5255 /* 3753 */ MCD::OPC_Decode, 176, 6, 197, 1, // Opcode: EVMWUMI /* 3758 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3775 /* 3763 */ MCD::OPC_CheckField, 26, 6, 4, 205, 5, 0, // Skip to: 5255 /* 3770 */ MCD::OPC_Decode, 168, 6, 197, 1, // Opcode: EVMWSMI /* 3775 */ MCD::OPC_FilterValue, 3, 195, 5, 0, // Skip to: 5255 /* 3780 */ MCD::OPC_CheckField, 26, 6, 4, 188, 5, 0, // Skip to: 5255 /* 3787 */ MCD::OPC_Decode, 164, 6, 197, 1, // Opcode: EVMWSMF /* 3792 */ MCD::OPC_FilterValue, 140, 1, 19, 0, 0, // Skip to: 3817 /* 3798 */ MCD::OPC_CheckField, 26, 6, 4, 170, 5, 0, // Skip to: 5255 /* 3805 */ MCD::OPC_CheckField, 0, 3, 7, 163, 5, 0, // Skip to: 5255 /* 3812 */ MCD::OPC_Decode, 151, 6, 197, 1, // Opcode: EVMWHSSFA /* 3817 */ MCD::OPC_FilterValue, 141, 1, 71, 0, 0, // Skip to: 3894 /* 3823 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3826 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3843 /* 3831 */ MCD::OPC_CheckField, 26, 6, 4, 137, 5, 0, // Skip to: 5255 /* 3838 */ MCD::OPC_Decode, 159, 6, 197, 1, // Opcode: EVMWLUMIA /* 3843 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 3860 /* 3848 */ MCD::OPC_CheckField, 26, 6, 4, 120, 5, 0, // Skip to: 5255 /* 3855 */ MCD::OPC_Decode, 153, 6, 197, 1, // Opcode: EVMWHUMIA /* 3860 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 3877 /* 3865 */ MCD::OPC_CheckField, 26, 6, 4, 103, 5, 0, // Skip to: 5255 /* 3872 */ MCD::OPC_Decode, 149, 6, 197, 1, // Opcode: EVMWHSMIA /* 3877 */ MCD::OPC_FilterValue, 7, 93, 5, 0, // Skip to: 5255 /* 3882 */ MCD::OPC_CheckField, 26, 6, 4, 86, 5, 0, // Skip to: 5255 /* 3889 */ MCD::OPC_Decode, 147, 6, 197, 1, // Opcode: EVMWHSMFA /* 3894 */ MCD::OPC_FilterValue, 142, 1, 19, 0, 0, // Skip to: 3919 /* 3900 */ MCD::OPC_CheckField, 26, 6, 4, 68, 5, 0, // Skip to: 5255 /* 3907 */ MCD::OPC_CheckField, 0, 3, 3, 61, 5, 0, // Skip to: 5255 /* 3914 */ MCD::OPC_Decode, 173, 6, 197, 1, // Opcode: EVMWSSFA /* 3919 */ MCD::OPC_FilterValue, 143, 1, 54, 0, 0, // Skip to: 3979 /* 3925 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3928 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 3945 /* 3933 */ MCD::OPC_CheckField, 26, 6, 4, 35, 5, 0, // Skip to: 5255 /* 3940 */ MCD::OPC_Decode, 177, 6, 197, 1, // Opcode: EVMWUMIA /* 3945 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 3962 /* 3950 */ MCD::OPC_CheckField, 26, 6, 4, 18, 5, 0, // Skip to: 5255 /* 3957 */ MCD::OPC_Decode, 169, 6, 197, 1, // Opcode: EVMWSMIA /* 3962 */ MCD::OPC_FilterValue, 3, 8, 5, 0, // Skip to: 5255 /* 3967 */ MCD::OPC_CheckField, 26, 6, 4, 1, 5, 0, // Skip to: 5255 /* 3974 */ MCD::OPC_Decode, 165, 6, 197, 1, // Opcode: EVMWSMFA /* 3979 */ MCD::OPC_FilterValue, 152, 1, 157, 0, 0, // Skip to: 4142 /* 3985 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 3988 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 4012 /* 3993 */ MCD::OPC_CheckField, 26, 6, 4, 231, 4, 0, // Skip to: 5255 /* 4000 */ MCD::OPC_CheckField, 11, 5, 0, 224, 4, 0, // Skip to: 5255 /* 4007 */ MCD::OPC_Decode, 156, 5, 200, 1, // Opcode: EVADDUSIAAW /* 4012 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 4036 /* 4017 */ MCD::OPC_CheckField, 26, 6, 4, 207, 4, 0, // Skip to: 5255 /* 4024 */ MCD::OPC_CheckField, 11, 5, 0, 200, 4, 0, // Skip to: 5255 /* 4031 */ MCD::OPC_Decode, 154, 5, 200, 1, // Opcode: EVADDSSIAAW /* 4036 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 4060 /* 4041 */ MCD::OPC_CheckField, 26, 6, 4, 183, 4, 0, // Skip to: 5255 /* 4048 */ MCD::OPC_CheckField, 11, 5, 0, 176, 4, 0, // Skip to: 5255 /* 4055 */ MCD::OPC_Decode, 214, 6, 200, 1, // Opcode: EVSUBFUSIAAW /* 4060 */ MCD::OPC_FilterValue, 3, 19, 0, 0, // Skip to: 4084 /* 4065 */ MCD::OPC_CheckField, 26, 6, 4, 159, 4, 0, // Skip to: 5255 /* 4072 */ MCD::OPC_CheckField, 11, 5, 0, 152, 4, 0, // Skip to: 5255 /* 4079 */ MCD::OPC_Decode, 212, 6, 200, 1, // Opcode: EVSUBFSSIAAW /* 4084 */ MCD::OPC_FilterValue, 4, 19, 0, 0, // Skip to: 4108 /* 4089 */ MCD::OPC_CheckField, 26, 6, 4, 135, 4, 0, // Skip to: 5255 /* 4096 */ MCD::OPC_CheckField, 11, 5, 0, 128, 4, 0, // Skip to: 5255 /* 4103 */ MCD::OPC_Decode, 145, 6, 200, 1, // Opcode: EVMRA /* 4108 */ MCD::OPC_FilterValue, 6, 12, 0, 0, // Skip to: 4125 /* 4113 */ MCD::OPC_CheckField, 26, 6, 4, 111, 4, 0, // Skip to: 5255 /* 4120 */ MCD::OPC_Decode, 167, 5, 197, 1, // Opcode: EVDIVWS /* 4125 */ MCD::OPC_FilterValue, 7, 101, 4, 0, // Skip to: 5255 /* 4130 */ MCD::OPC_CheckField, 26, 6, 4, 94, 4, 0, // Skip to: 5255 /* 4137 */ MCD::OPC_Decode, 168, 5, 197, 1, // Opcode: EVDIVWU /* 4142 */ MCD::OPC_FilterValue, 153, 1, 99, 0, 0, // Skip to: 4247 /* 4148 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4151 */ MCD::OPC_FilterValue, 0, 19, 0, 0, // Skip to: 4175 /* 4156 */ MCD::OPC_CheckField, 26, 6, 4, 68, 4, 0, // Skip to: 5255 /* 4163 */ MCD::OPC_CheckField, 11, 5, 0, 61, 4, 0, // Skip to: 5255 /* 4170 */ MCD::OPC_Decode, 155, 5, 200, 1, // Opcode: EVADDUMIAAW /* 4175 */ MCD::OPC_FilterValue, 1, 19, 0, 0, // Skip to: 4199 /* 4180 */ MCD::OPC_CheckField, 26, 6, 4, 44, 4, 0, // Skip to: 5255 /* 4187 */ MCD::OPC_CheckField, 11, 5, 0, 37, 4, 0, // Skip to: 5255 /* 4194 */ MCD::OPC_Decode, 153, 5, 200, 1, // Opcode: EVADDSMIAAW /* 4199 */ MCD::OPC_FilterValue, 2, 19, 0, 0, // Skip to: 4223 /* 4204 */ MCD::OPC_CheckField, 26, 6, 4, 20, 4, 0, // Skip to: 5255 /* 4211 */ MCD::OPC_CheckField, 11, 5, 0, 13, 4, 0, // Skip to: 5255 /* 4218 */ MCD::OPC_Decode, 213, 6, 200, 1, // Opcode: EVSUBFUMIAAW /* 4223 */ MCD::OPC_FilterValue, 3, 3, 4, 0, // Skip to: 5255 /* 4228 */ MCD::OPC_CheckField, 26, 6, 4, 252, 3, 0, // Skip to: 5255 /* 4235 */ MCD::OPC_CheckField, 11, 5, 0, 245, 3, 0, // Skip to: 5255 /* 4242 */ MCD::OPC_Decode, 211, 6, 200, 1, // Opcode: EVSUBFSMIAAW /* 4247 */ MCD::OPC_FilterValue, 160, 1, 105, 0, 0, // Skip to: 4358 /* 4253 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4256 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4273 /* 4261 */ MCD::OPC_CheckField, 26, 6, 4, 219, 3, 0, // Skip to: 5255 /* 4268 */ MCD::OPC_Decode, 245, 5, 197, 1, // Opcode: EVMHEUSIAAW /* 4273 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4290 /* 4278 */ MCD::OPC_CheckField, 26, 6, 4, 202, 3, 0, // Skip to: 5255 /* 4285 */ MCD::OPC_Decode, 239, 5, 197, 1, // Opcode: EVMHESSIAAW /* 4290 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4307 /* 4295 */ MCD::OPC_CheckField, 26, 6, 4, 185, 3, 0, // Skip to: 5255 /* 4302 */ MCD::OPC_Decode, 237, 5, 197, 1, // Opcode: EVMHESSFAAW /* 4307 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4324 /* 4312 */ MCD::OPC_CheckField, 26, 6, 4, 168, 3, 0, // Skip to: 5255 /* 4319 */ MCD::OPC_Decode, 143, 6, 197, 1, // Opcode: EVMHOUSIAAW /* 4324 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4341 /* 4329 */ MCD::OPC_CheckField, 26, 6, 4, 151, 3, 0, // Skip to: 5255 /* 4336 */ MCD::OPC_Decode, 137, 6, 197, 1, // Opcode: EVMHOSSIAAW /* 4341 */ MCD::OPC_FilterValue, 7, 141, 3, 0, // Skip to: 5255 /* 4346 */ MCD::OPC_CheckField, 26, 6, 4, 134, 3, 0, // Skip to: 5255 /* 4353 */ MCD::OPC_Decode, 135, 6, 197, 1, // Opcode: EVMHOSSFAAW /* 4358 */ MCD::OPC_FilterValue, 161, 1, 105, 0, 0, // Skip to: 4469 /* 4364 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4367 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4384 /* 4372 */ MCD::OPC_CheckField, 26, 6, 4, 108, 3, 0, // Skip to: 5255 /* 4379 */ MCD::OPC_Decode, 243, 5, 197, 1, // Opcode: EVMHEUMIAAW /* 4384 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4401 /* 4389 */ MCD::OPC_CheckField, 26, 6, 4, 91, 3, 0, // Skip to: 5255 /* 4396 */ MCD::OPC_Decode, 233, 5, 197, 1, // Opcode: EVMHESMIAAW /* 4401 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4418 /* 4406 */ MCD::OPC_CheckField, 26, 6, 4, 74, 3, 0, // Skip to: 5255 /* 4413 */ MCD::OPC_Decode, 229, 5, 197, 1, // Opcode: EVMHESMFAAW /* 4418 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4435 /* 4423 */ MCD::OPC_CheckField, 26, 6, 4, 57, 3, 0, // Skip to: 5255 /* 4430 */ MCD::OPC_Decode, 141, 6, 197, 1, // Opcode: EVMHOUMIAAW /* 4435 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4452 /* 4440 */ MCD::OPC_CheckField, 26, 6, 4, 40, 3, 0, // Skip to: 5255 /* 4447 */ MCD::OPC_Decode, 131, 6, 197, 1, // Opcode: EVMHOSMIAAW /* 4452 */ MCD::OPC_FilterValue, 7, 30, 3, 0, // Skip to: 5255 /* 4457 */ MCD::OPC_CheckField, 26, 6, 4, 23, 3, 0, // Skip to: 5255 /* 4464 */ MCD::OPC_Decode, 255, 5, 197, 1, // Opcode: EVMHOSMFAAW /* 4469 */ MCD::OPC_FilterValue, 165, 1, 105, 0, 0, // Skip to: 4580 /* 4475 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4478 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4495 /* 4483 */ MCD::OPC_CheckField, 26, 6, 4, 253, 2, 0, // Skip to: 5255 /* 4490 */ MCD::OPC_Decode, 225, 5, 197, 1, // Opcode: EVMHEGUMIAA /* 4495 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4512 /* 4500 */ MCD::OPC_CheckField, 26, 6, 4, 236, 2, 0, // Skip to: 5255 /* 4507 */ MCD::OPC_Decode, 223, 5, 197, 1, // Opcode: EVMHEGSMIAA /* 4512 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4529 /* 4517 */ MCD::OPC_CheckField, 26, 6, 4, 219, 2, 0, // Skip to: 5255 /* 4524 */ MCD::OPC_Decode, 221, 5, 197, 1, // Opcode: EVMHEGSMFAA /* 4529 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4546 /* 4534 */ MCD::OPC_CheckField, 26, 6, 4, 202, 2, 0, // Skip to: 5255 /* 4541 */ MCD::OPC_Decode, 251, 5, 197, 1, // Opcode: EVMHOGUMIAA /* 4546 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4563 /* 4551 */ MCD::OPC_CheckField, 26, 6, 4, 185, 2, 0, // Skip to: 5255 /* 4558 */ MCD::OPC_Decode, 249, 5, 197, 1, // Opcode: EVMHOGSMIAA /* 4563 */ MCD::OPC_FilterValue, 7, 175, 2, 0, // Skip to: 5255 /* 4568 */ MCD::OPC_CheckField, 26, 6, 4, 168, 2, 0, // Skip to: 5255 /* 4575 */ MCD::OPC_Decode, 247, 5, 197, 1, // Opcode: EVMHOGSMFAA /* 4580 */ MCD::OPC_FilterValue, 168, 1, 37, 0, 0, // Skip to: 4623 /* 4586 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4589 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4606 /* 4594 */ MCD::OPC_CheckField, 26, 6, 4, 142, 2, 0, // Skip to: 5255 /* 4601 */ MCD::OPC_Decode, 162, 6, 197, 1, // Opcode: EVMWLUSIAAW /* 4606 */ MCD::OPC_FilterValue, 1, 132, 2, 0, // Skip to: 5255 /* 4611 */ MCD::OPC_CheckField, 26, 6, 4, 125, 2, 0, // Skip to: 5255 /* 4618 */ MCD::OPC_Decode, 156, 6, 197, 1, // Opcode: EVMWLSSIAAW /* 4623 */ MCD::OPC_FilterValue, 169, 1, 37, 0, 0, // Skip to: 4666 /* 4629 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4632 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4649 /* 4637 */ MCD::OPC_CheckField, 26, 6, 4, 99, 2, 0, // Skip to: 5255 /* 4644 */ MCD::OPC_Decode, 160, 6, 197, 1, // Opcode: EVMWLUMIAAW /* 4649 */ MCD::OPC_FilterValue, 1, 89, 2, 0, // Skip to: 5255 /* 4654 */ MCD::OPC_CheckField, 26, 6, 4, 82, 2, 0, // Skip to: 5255 /* 4661 */ MCD::OPC_Decode, 154, 6, 197, 1, // Opcode: EVMWLSMIAAW /* 4666 */ MCD::OPC_FilterValue, 170, 1, 19, 0, 0, // Skip to: 4691 /* 4672 */ MCD::OPC_CheckField, 26, 6, 4, 64, 2, 0, // Skip to: 5255 /* 4679 */ MCD::OPC_CheckField, 0, 3, 3, 57, 2, 0, // Skip to: 5255 /* 4686 */ MCD::OPC_Decode, 174, 6, 197, 1, // Opcode: EVMWSSFAA /* 4691 */ MCD::OPC_FilterValue, 171, 1, 54, 0, 0, // Skip to: 4751 /* 4697 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4700 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4717 /* 4705 */ MCD::OPC_CheckField, 26, 6, 4, 31, 2, 0, // Skip to: 5255 /* 4712 */ MCD::OPC_Decode, 178, 6, 197, 1, // Opcode: EVMWUMIAA /* 4717 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4734 /* 4722 */ MCD::OPC_CheckField, 26, 6, 4, 14, 2, 0, // Skip to: 5255 /* 4729 */ MCD::OPC_Decode, 170, 6, 197, 1, // Opcode: EVMWSMIAA /* 4734 */ MCD::OPC_FilterValue, 3, 4, 2, 0, // Skip to: 5255 /* 4739 */ MCD::OPC_CheckField, 26, 6, 4, 253, 1, 0, // Skip to: 5255 /* 4746 */ MCD::OPC_Decode, 166, 6, 197, 1, // Opcode: EVMWSMFAA /* 4751 */ MCD::OPC_FilterValue, 176, 1, 105, 0, 0, // Skip to: 4862 /* 4757 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4760 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4777 /* 4765 */ MCD::OPC_CheckField, 26, 6, 4, 227, 1, 0, // Skip to: 5255 /* 4772 */ MCD::OPC_Decode, 246, 5, 197, 1, // Opcode: EVMHEUSIANW /* 4777 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4794 /* 4782 */ MCD::OPC_CheckField, 26, 6, 4, 210, 1, 0, // Skip to: 5255 /* 4789 */ MCD::OPC_Decode, 240, 5, 197, 1, // Opcode: EVMHESSIANW /* 4794 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4811 /* 4799 */ MCD::OPC_CheckField, 26, 6, 4, 193, 1, 0, // Skip to: 5255 /* 4806 */ MCD::OPC_Decode, 238, 5, 197, 1, // Opcode: EVMHESSFANW /* 4811 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4828 /* 4816 */ MCD::OPC_CheckField, 26, 6, 4, 176, 1, 0, // Skip to: 5255 /* 4823 */ MCD::OPC_Decode, 144, 6, 197, 1, // Opcode: EVMHOUSIANW /* 4828 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4845 /* 4833 */ MCD::OPC_CheckField, 26, 6, 4, 159, 1, 0, // Skip to: 5255 /* 4840 */ MCD::OPC_Decode, 138, 6, 197, 1, // Opcode: EVMHOSSIANW /* 4845 */ MCD::OPC_FilterValue, 7, 149, 1, 0, // Skip to: 5255 /* 4850 */ MCD::OPC_CheckField, 26, 6, 4, 142, 1, 0, // Skip to: 5255 /* 4857 */ MCD::OPC_Decode, 136, 6, 197, 1, // Opcode: EVMHOSSFANW /* 4862 */ MCD::OPC_FilterValue, 177, 1, 105, 0, 0, // Skip to: 4973 /* 4868 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4871 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4888 /* 4876 */ MCD::OPC_CheckField, 26, 6, 4, 116, 1, 0, // Skip to: 5255 /* 4883 */ MCD::OPC_Decode, 244, 5, 197, 1, // Opcode: EVMHEUMIANW /* 4888 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 4905 /* 4893 */ MCD::OPC_CheckField, 26, 6, 4, 99, 1, 0, // Skip to: 5255 /* 4900 */ MCD::OPC_Decode, 234, 5, 197, 1, // Opcode: EVMHESMIANW /* 4905 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 4922 /* 4910 */ MCD::OPC_CheckField, 26, 6, 4, 82, 1, 0, // Skip to: 5255 /* 4917 */ MCD::OPC_Decode, 230, 5, 197, 1, // Opcode: EVMHESMFANW /* 4922 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 4939 /* 4927 */ MCD::OPC_CheckField, 26, 6, 4, 65, 1, 0, // Skip to: 5255 /* 4934 */ MCD::OPC_Decode, 142, 6, 197, 1, // Opcode: EVMHOUMIANW /* 4939 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 4956 /* 4944 */ MCD::OPC_CheckField, 26, 6, 4, 48, 1, 0, // Skip to: 5255 /* 4951 */ MCD::OPC_Decode, 132, 6, 197, 1, // Opcode: EVMHOSMIANW /* 4956 */ MCD::OPC_FilterValue, 7, 38, 1, 0, // Skip to: 5255 /* 4961 */ MCD::OPC_CheckField, 26, 6, 4, 31, 1, 0, // Skip to: 5255 /* 4968 */ MCD::OPC_Decode, 128, 6, 197, 1, // Opcode: EVMHOSMFANW /* 4973 */ MCD::OPC_FilterValue, 181, 1, 105, 0, 0, // Skip to: 5084 /* 4979 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 4982 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 4999 /* 4987 */ MCD::OPC_CheckField, 26, 6, 4, 5, 1, 0, // Skip to: 5255 /* 4994 */ MCD::OPC_Decode, 226, 5, 197, 1, // Opcode: EVMHEGUMIAN /* 4999 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 5016 /* 5004 */ MCD::OPC_CheckField, 26, 6, 4, 244, 0, 0, // Skip to: 5255 /* 5011 */ MCD::OPC_Decode, 224, 5, 197, 1, // Opcode: EVMHEGSMIAN /* 5016 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 5033 /* 5021 */ MCD::OPC_CheckField, 26, 6, 4, 227, 0, 0, // Skip to: 5255 /* 5028 */ MCD::OPC_Decode, 222, 5, 197, 1, // Opcode: EVMHEGSMFAN /* 5033 */ MCD::OPC_FilterValue, 4, 12, 0, 0, // Skip to: 5050 /* 5038 */ MCD::OPC_CheckField, 26, 6, 4, 210, 0, 0, // Skip to: 5255 /* 5045 */ MCD::OPC_Decode, 252, 5, 197, 1, // Opcode: EVMHOGUMIAN /* 5050 */ MCD::OPC_FilterValue, 5, 12, 0, 0, // Skip to: 5067 /* 5055 */ MCD::OPC_CheckField, 26, 6, 4, 193, 0, 0, // Skip to: 5255 /* 5062 */ MCD::OPC_Decode, 250, 5, 197, 1, // Opcode: EVMHOGSMIAN /* 5067 */ MCD::OPC_FilterValue, 7, 183, 0, 0, // Skip to: 5255 /* 5072 */ MCD::OPC_CheckField, 26, 6, 4, 176, 0, 0, // Skip to: 5255 /* 5079 */ MCD::OPC_Decode, 248, 5, 197, 1, // Opcode: EVMHOGSMFAN /* 5084 */ MCD::OPC_FilterValue, 184, 1, 37, 0, 0, // Skip to: 5127 /* 5090 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 5093 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5110 /* 5098 */ MCD::OPC_CheckField, 26, 6, 4, 150, 0, 0, // Skip to: 5255 /* 5105 */ MCD::OPC_Decode, 163, 6, 197, 1, // Opcode: EVMWLUSIANW /* 5110 */ MCD::OPC_FilterValue, 1, 140, 0, 0, // Skip to: 5255 /* 5115 */ MCD::OPC_CheckField, 26, 6, 4, 133, 0, 0, // Skip to: 5255 /* 5122 */ MCD::OPC_Decode, 157, 6, 197, 1, // Opcode: EVMWLSSIANW /* 5127 */ MCD::OPC_FilterValue, 185, 1, 37, 0, 0, // Skip to: 5170 /* 5133 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 5136 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5153 /* 5141 */ MCD::OPC_CheckField, 26, 6, 4, 107, 0, 0, // Skip to: 5255 /* 5148 */ MCD::OPC_Decode, 161, 6, 197, 1, // Opcode: EVMWLUMIANW /* 5153 */ MCD::OPC_FilterValue, 1, 97, 0, 0, // Skip to: 5255 /* 5158 */ MCD::OPC_CheckField, 26, 6, 4, 90, 0, 0, // Skip to: 5255 /* 5165 */ MCD::OPC_Decode, 155, 6, 197, 1, // Opcode: EVMWLSMIANW /* 5170 */ MCD::OPC_FilterValue, 186, 1, 19, 0, 0, // Skip to: 5195 /* 5176 */ MCD::OPC_CheckField, 26, 6, 4, 72, 0, 0, // Skip to: 5255 /* 5183 */ MCD::OPC_CheckField, 0, 3, 3, 65, 0, 0, // Skip to: 5255 /* 5190 */ MCD::OPC_Decode, 175, 6, 197, 1, // Opcode: EVMWSSFAN /* 5195 */ MCD::OPC_FilterValue, 187, 1, 54, 0, 0, // Skip to: 5255 /* 5201 */ MCD::OPC_ExtractField, 0, 3, // Inst{2-0} ... /* 5204 */ MCD::OPC_FilterValue, 0, 12, 0, 0, // Skip to: 5221 /* 5209 */ MCD::OPC_CheckField, 26, 6, 4, 39, 0, 0, // Skip to: 5255 /* 5216 */ MCD::OPC_Decode, 179, 6, 197, 1, // Opcode: EVMWUMIAN /* 5221 */ MCD::OPC_FilterValue, 1, 12, 0, 0, // Skip to: 5238 /* 5226 */ MCD::OPC_CheckField, 26, 6, 4, 22, 0, 0, // Skip to: 5255 /* 5233 */ MCD::OPC_Decode, 171, 6, 197, 1, // Opcode: EVMWSMIAN /* 5238 */ MCD::OPC_FilterValue, 3, 12, 0, 0, // Skip to: 5255 /* 5243 */ MCD::OPC_CheckField, 26, 6, 4, 5, 0, 0, // Skip to: 5255 /* 5250 */ MCD::OPC_Decode, 167, 6, 197, 1, // Opcode: EVMWSMFAN /* 5255 */ MCD::OPC_Fail, 0 }; static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset& Bits) { llvm_unreachable("Invalid index!"); } template static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI, uint64_t Address, const void *Decoder, bool &DecodeComplete) { DecodeComplete = true; InsnType tmp; switch (Idx) { default: llvm_unreachable("Invalid index!"); case 0: return S; case 1: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 2: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 3: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 4: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 5: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 6: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 7: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 8: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 9: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 15, 1); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 11, 4); MI.addOperand(MCOperand::createImm(tmp)); return S; case 10: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 11: tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 12: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 13: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 14: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (decodeSImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 15: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 16: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 17: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 18: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 19: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 4); MI.addOperand(MCOperand::createImm(tmp)); return S; case 20: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 21: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 22: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 23: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 24: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 25: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 26: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 27: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 28: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 29: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRC_NOR0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeSImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 30: tmp = fieldFromInstruction(insn, 2, 14); MI.addOperand(MCOperand::createImm(tmp)); return S; case 31: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 2, 14); MI.addOperand(MCOperand::createImm(tmp)); return S; case 32: tmp = fieldFromInstruction(insn, 5, 7); MI.addOperand(MCOperand::createImm(tmp)); return S; case 33: tmp = fieldFromInstruction(insn, 2, 24); MI.addOperand(MCOperand::createImm(tmp)); return S; case 34: tmp = fieldFromInstruction(insn, 2, 24); if (DecodePCRel24BranchTarget(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 35: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 18, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 36: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 37: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 0; tmp |= fieldFromInstruction(insn, 6, 10) << 6; tmp |= fieldFromInstruction(insn, 16, 5) << 1; MI.addOperand(MCOperand::createImm(tmp)); return S; case 38: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 39: tmp = fieldFromInstruction(insn, 11, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 40: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 1, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 41: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 1, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 42: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 1, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 43: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 16); if (decodeUImmOperand<16>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 44: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 5, 1) << 5; tmp |= fieldFromInstruction(insn, 6, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 45: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 5, 1) << 5; tmp |= fieldFromInstruction(insn, 6, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 46: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 5, 1) << 5; tmp |= fieldFromInstruction(insn, 6, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 47: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 48: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 49: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 18, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 50: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 1); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 51: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 52: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 53: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 54: tmp = fieldFromInstruction(insn, 15, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 55: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 11, 5) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; MI.addOperand(MCOperand::createImm(tmp)); return S; case 56: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 57: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 58: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 59: tmp = fieldFromInstruction(insn, 21, 4); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 60: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 61: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 62: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 63: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 64: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 65: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 66: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 67: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 68: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 69: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 70: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 71: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 10); if (decodeUImmOperand<10>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 72: tmp = 0x0; tmp |= fieldFromInstruction(insn, 11, 5) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 73: tmp = fieldFromInstruction(insn, 21, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 74: tmp = fieldFromInstruction(insn, 25, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 75: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 76: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 77: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRC_NOR0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeCRBITRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 78: tmp = fieldFromInstruction(insn, 12, 8); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 79: tmp = fieldFromInstruction(insn, 12, 8); if (decodeCRBitMOperand(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 80: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 12, 8); if (decodeCRBitMOperand(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 81: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 82: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 83: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 84: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 85: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 4); MI.addOperand(MCOperand::createImm(tmp)); return S; case 86: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 87: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 88: tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 89: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 90: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 91: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RC_NOX0RegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 92: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 93: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 94: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 95: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 96: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 97: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 98: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 99: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 100: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 101: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 102: tmp = fieldFromInstruction(insn, 21, 2); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 103: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 104: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 105: tmp = fieldFromInstruction(insn, 21, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 106: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 107: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 108: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 109: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 110: tmp = fieldFromInstruction(insn, 21, 2); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 111: tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 112: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 113: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 114: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 115: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 116: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 117: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (decodeUImmOperand<6>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 118: tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 119: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 120: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 21); if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 121: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 21); if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 122: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 21); if (decodeMemRIOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 123: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 2, 19); if (decodeMemRIXOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 124: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 2, 19); if (decodeMemRIXOperands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 125: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 126: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 127: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 128: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 129: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 130: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 131: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 132: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 133: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 134: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 135: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 136: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 137: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 8, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 138: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 139: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 140: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); MI.addOperand(MCOperand::createImm(tmp)); return S; case 141: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 8); if (decodeUImmOperand<8>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 142: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); MI.addOperand(MCOperand::createImm(tmp)); return S; case 143: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 144: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 145: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 146: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 147: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 148: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 149: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 150: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 151: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 7); if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 152: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 153: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 154: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 6, 1) << 6; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 155: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeG8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 156: tmp = 0x0; tmp |= fieldFromInstruction(insn, 0, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 2, 1) << 5; tmp |= fieldFromInstruction(insn, 16, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 1, 1) << 5; tmp |= fieldFromInstruction(insn, 11, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = 0x0; tmp |= fieldFromInstruction(insn, 3, 1) << 5; tmp |= fieldFromInstruction(insn, 6, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 157: tmp = 0x0; tmp |= fieldFromInstruction(insn, 3, 1) << 5; tmp |= fieldFromInstruction(insn, 21, 5) << 0; if (DecodeVSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 4, 17); if (decodeMemRIX16Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 158: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 159: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 160: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 161: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 162: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 163: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 7); if (decodeUImmOperand<7>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 164: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 165: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 166: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVSFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 167: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 1); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 11, 5); if (DecodeVRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 168: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 12, 4); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 16, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 169: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 170: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 171: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 3); MI.addOperand(MCOperand::createImm(tmp)); return S; case 172: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 173: tmp = fieldFromInstruction(insn, 17, 8); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 25, 1); MI.addOperand(MCOperand::createImm(tmp)); tmp = fieldFromInstruction(insn, 16, 1); MI.addOperand(MCOperand::createImm(tmp)); return S; case 174: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 175: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF4RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 176: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 177: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeF8RCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 178: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 179: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 180: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 7, 4); if (decodeUImmOperand<12>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 181: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 182: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 2); MI.addOperand(MCOperand::createImm(tmp)); return S; case 183: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 9, 12); if (decodeUImmOperand<12>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 184: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 185: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 186: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 187: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 188: tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 189: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 190: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 191: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 192: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 193: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 194: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQBRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeQFRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 195: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 196: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 6, 5); if (DecodeQSRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 197: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 198: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 199: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (decodeUImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 200: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 201: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (decodeSImmOperand<5>(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 202: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 203: tmp = fieldFromInstruction(insn, 23, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 204: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 0, 3); if (DecodeCRRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 205: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 206: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 207: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodeGPRCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 208: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 16, 5); if (DecodePointerLikeRegClass1(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 5); if (DecodePointerLikeRegClass0(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 209: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 10); if (decodeSPE8Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 210: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 10); if (decodeSPE2Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; case 211: tmp = fieldFromInstruction(insn, 21, 5); if (DecodeSPERCRegisterClass(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } tmp = fieldFromInstruction(insn, 11, 10); if (decodeSPE4Operands(MI, tmp, Address, Decoder) == MCDisassembler::Fail) { return MCDisassembler::Fail; } return S; } } template static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, InsnType insn, uint64_t Address, const void *DisAsm, const MCSubtargetInfo &STI) { const FeatureBitset& Bits = STI.getFeatureBits(); const uint8_t *Ptr = DecodeTable; InsnType CurFieldValue = 0; DecodeStatus S = MCDisassembler::Success; while (true) { ptrdiff_t Loc = Ptr - DecodeTable; switch (*Ptr) { default: errs() << Loc << ": Unexpected decode table opcode!\n"; return MCDisassembler::Fail; case MCD::OPC_ExtractField: { unsigned Start = *++Ptr; unsigned Len = *++Ptr; ++Ptr; CurFieldValue = fieldFromInstruction(insn, Start, Len); LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " << Len << "): " << CurFieldValue << "\n"); break; } case MCD::OPC_FilterValue: { // Decode the field value. unsigned Len; InsnType Val = decodeULEB128(++Ptr, &Len); Ptr += Len; // NumToSkip is a plain 24-bit integer. unsigned NumToSkip = *Ptr++; NumToSkip |= (*Ptr++) << 8; NumToSkip |= (*Ptr++) << 16; // Perform the filter operation. if (Val != CurFieldValue) Ptr += NumToSkip; LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:") << " continuing at " << (Ptr - DecodeTable) << "\n"); break; } case MCD::OPC_CheckField: { unsigned Start = *++Ptr; unsigned Len = *++Ptr; InsnType FieldValue = fieldFromInstruction(insn, Start, Len); // Decode the field value. InsnType ExpectedValue = decodeULEB128(++Ptr, &Len); Ptr += Len; // NumToSkip is a plain 24-bit integer. unsigned NumToSkip = *Ptr++; NumToSkip |= (*Ptr++) << 8; NumToSkip |= (*Ptr++) << 16; // If the actual and expected values don't match, skip. if (ExpectedValue != FieldValue) Ptr += NumToSkip; LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", " << Len << ", " << ExpectedValue << ", " << NumToSkip << "): FieldValue = " << FieldValue << ", ExpectedValue = " << ExpectedValue << ": " << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n")); break; } case MCD::OPC_CheckPredicate: { unsigned Len; // Decode the Predicate Index value. unsigned PIdx = decodeULEB128(++Ptr, &Len); Ptr += Len; // NumToSkip is a plain 24-bit integer. unsigned NumToSkip = *Ptr++; NumToSkip |= (*Ptr++) << 8; NumToSkip |= (*Ptr++) << 16; // Check the predicate. bool Pred; if (!(Pred = checkDecoderPredicate(PIdx, Bits))) Ptr += NumToSkip; (void)Pred; LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): " << (Pred ? "PASS\n" : "FAIL\n")); break; } case MCD::OPC_Decode: { unsigned Len; // Decode the Opcode value. unsigned Opc = decodeULEB128(++Ptr, &Len); Ptr += Len; unsigned DecodeIdx = decodeULEB128(Ptr, &Len); Ptr += Len; MI.clear(); MI.setOpcode(Opc); bool DecodeComplete; S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, DecodeComplete); assert(DecodeComplete); LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc << ", using decoder " << DecodeIdx << ": " << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n"); return S; } case MCD::OPC_TryDecode: { unsigned Len; // Decode the Opcode value. unsigned Opc = decodeULEB128(++Ptr, &Len); Ptr += Len; unsigned DecodeIdx = decodeULEB128(Ptr, &Len); Ptr += Len; // NumToSkip is a plain 24-bit integer. unsigned NumToSkip = *Ptr++; NumToSkip |= (*Ptr++) << 8; NumToSkip |= (*Ptr++) << 16; // Perform the decode operation. MCInst TmpMI; TmpMI.setOpcode(Opc); bool DecodeComplete; S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete); LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc << ", using decoder " << DecodeIdx << ": "); if (DecodeComplete) { // Decoding complete. LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n"); MI = TmpMI; return S; } else { assert(S == MCDisassembler::Fail); // If the decoding was incomplete, skip. Ptr += NumToSkip; LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n"); // Reset decode status. This also drops a SoftFail status that could be // set before the decode attempt. S = MCDisassembler::Success; } break; } case MCD::OPC_SoftFail: { // Decode the mask values. unsigned Len; InsnType PositiveMask = decodeULEB128(++Ptr, &Len); Ptr += Len; InsnType NegativeMask = decodeULEB128(Ptr, &Len); Ptr += Len; bool Fail = (insn & PositiveMask) || (~insn & NegativeMask); if (Fail) S = MCDisassembler::SoftFail; LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n":"PASS\n")); break; } case MCD::OPC_Fail: { LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n"); return MCDisassembler::Fail; } } } llvm_unreachable("bogosity detected in disassembler state machine!"); } } // end namespace llvm