1/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\ 2|* *| 3|* * ARM Disassembler *| 4|* *| 5|* Automatically generated file, do not edit! *| 6|* *| 7\*===----------------------------------------------------------------------===*/ 8 9#include "llvm/MC/MCInst.h" 10#include "llvm/Support/Debug.h" 11#include "llvm/Support/DataTypes.h" 12#include "llvm/Support/LEB128.h" 13#include "llvm/Support/raw_ostream.h" 14#include <assert.h> 15 16namespace llvm { 17 18// Helper functions for extracting fields from encoded instructions. 19// InsnType must either be integral or an APInt-like object that must: 20// * Have a static const max_size_in_bits equal to the number of bits in the 21// encoding. 22// * be default-constructible and copy-constructible 23// * be constructible from a uint64_t 24// * be constructible from an APInt (this can be private) 25// * Support getBitsSet(loBit, hiBit) 26// * be convertible to uint64_t 27// * Support the ~, &, ==, !=, and |= operators with other objects of the same type 28// * Support shift (<<, >>) with signed and unsigned integers on the RHS 29// * Support put (<<) to raw_ostream& 30template<typename InsnType> 31#if defined(_MSC_VER) && !defined(__clang__) 32__declspec(noinline) 33#endif 34static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, 35 unsigned numBits, std::true_type) { 36 assert(startBit + numBits <= 64 && "Cannot support >64-bit extractions!"); 37 assert(startBit + numBits <= (sizeof(InsnType) * 8) && 38 "Instruction field out of bounds!"); 39 InsnType fieldMask; 40 if (numBits == sizeof(InsnType) * 8) 41 fieldMask = (InsnType)(-1LL); 42 else 43 fieldMask = (((InsnType)1 << numBits) - 1) << startBit; 44 return (insn & fieldMask) >> startBit; 45} 46 47template<typename InsnType> 48static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, 49 unsigned numBits, std::false_type) { 50 assert(startBit + numBits <= InsnType::max_size_in_bits && "Instruction field out of bounds!"); 51 InsnType fieldMask = InsnType::getBitsSet(0, numBits); 52 return (insn >> startBit) & fieldMask; 53} 54 55template<typename InsnType> 56static InsnType fieldFromInstruction(InsnType insn, unsigned startBit, 57 unsigned numBits) { 58 return fieldFromInstruction(insn, startBit, numBits, std::is_integral<InsnType>()); 59} 60 61static const uint8_t DecoderTableARM32[] = { 62/* 0 */ MCD::OPC_ExtractField, 25, 3, // Inst{27-25} ... 63/* 3 */ MCD::OPC_FilterValue, 0, 47, 14, 0, // Skip to: 3639 64/* 8 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 65/* 11 */ MCD::OPC_FilterValue, 0, 110, 7, 0, // Skip to: 1918 66/* 16 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 67/* 19 */ MCD::OPC_FilterValue, 0, 139, 1, 0, // Skip to: 419 68/* 24 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 69/* 27 */ MCD::OPC_FilterValue, 0, 123, 0, 0, // Skip to: 155 70/* 32 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 71/* 35 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 65 72/* 40 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 56 73/* 45 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 56 74/* 52 */ MCD::OPC_Decode, 232, 4, 0, // Opcode: ANDrr 75/* 56 */ MCD::OPC_CheckPredicate, 0, 128, 32, 0, // Skip to: 8381 76/* 61 */ MCD::OPC_Decode, 233, 4, 1, // Opcode: ANDrsi 77/* 65 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 95 78/* 70 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 86 79/* 75 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 86 80/* 82 */ MCD::OPC_Decode, 158, 14, 0, // Opcode: SUBrr 81/* 86 */ MCD::OPC_CheckPredicate, 0, 98, 32, 0, // Skip to: 8381 82/* 91 */ MCD::OPC_Decode, 159, 14, 1, // Opcode: SUBrsi 83/* 95 */ MCD::OPC_FilterValue, 2, 25, 0, 0, // Skip to: 125 84/* 100 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 116 85/* 105 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 116 86/* 112 */ MCD::OPC_Decode, 223, 4, 0, // Opcode: ADDrr 87/* 116 */ MCD::OPC_CheckPredicate, 0, 68, 32, 0, // Skip to: 8381 88/* 121 */ MCD::OPC_Decode, 224, 4, 1, // Opcode: ADDrsi 89/* 125 */ MCD::OPC_FilterValue, 3, 59, 32, 0, // Skip to: 8381 90/* 130 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 146 91/* 135 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 146 92/* 142 */ MCD::OPC_Decode, 152, 13, 0, // Opcode: SBCrr 93/* 146 */ MCD::OPC_CheckPredicate, 0, 38, 32, 0, // Skip to: 8381 94/* 151 */ MCD::OPC_Decode, 153, 13, 1, // Opcode: SBCrsi 95/* 155 */ MCD::OPC_FilterValue, 1, 29, 32, 0, // Skip to: 8381 96/* 160 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 97/* 163 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 227 98/* 168 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 99/* 171 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 185 100/* 176 */ MCD::OPC_CheckPredicate, 0, 8, 32, 0, // Skip to: 8381 101/* 181 */ MCD::OPC_Decode, 234, 4, 2, // Opcode: ANDrsr 102/* 185 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 199 103/* 190 */ MCD::OPC_CheckPredicate, 0, 250, 31, 0, // Skip to: 8381 104/* 195 */ MCD::OPC_Decode, 160, 14, 2, // Opcode: SUBrsr 105/* 199 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 213 106/* 204 */ MCD::OPC_CheckPredicate, 0, 236, 31, 0, // Skip to: 8381 107/* 209 */ MCD::OPC_Decode, 225, 4, 2, // Opcode: ADDrsr 108/* 213 */ MCD::OPC_FilterValue, 3, 227, 31, 0, // Skip to: 8381 109/* 218 */ MCD::OPC_CheckPredicate, 0, 222, 31, 0, // Skip to: 8381 110/* 223 */ MCD::OPC_Decode, 154, 13, 3, // Opcode: SBCrsr 111/* 227 */ MCD::OPC_FilterValue, 1, 213, 31, 0, // Skip to: 8381 112/* 232 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 113/* 235 */ MCD::OPC_FilterValue, 0, 71, 0, 0, // Skip to: 311 114/* 240 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 115/* 243 */ MCD::OPC_FilterValue, 0, 14, 0, 0, // Skip to: 262 116/* 248 */ MCD::OPC_CheckPredicate, 1, 192, 31, 0, // Skip to: 8381 117/* 253 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 118/* 258 */ MCD::OPC_Decode, 133, 6, 4, // Opcode: MUL 119/* 262 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 283 120/* 267 */ MCD::OPC_CheckPredicate, 1, 173, 31, 0, // Skip to: 8381 121/* 272 */ MCD::OPC_CheckField, 20, 1, 0, 166, 31, 0, // Skip to: 8381 122/* 279 */ MCD::OPC_Decode, 193, 14, 5, // Opcode: UMAAL 123/* 283 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 297 124/* 288 */ MCD::OPC_CheckPredicate, 1, 152, 31, 0, // Skip to: 8381 125/* 293 */ MCD::OPC_Decode, 195, 14, 6, // Opcode: UMULL 126/* 297 */ MCD::OPC_FilterValue, 3, 143, 31, 0, // Skip to: 8381 127/* 302 */ MCD::OPC_CheckPredicate, 1, 138, 31, 0, // Skip to: 8381 128/* 307 */ MCD::OPC_Decode, 206, 13, 6, // Opcode: SMULL 129/* 311 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 347 130/* 316 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 131/* 319 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 333 132/* 324 */ MCD::OPC_CheckPredicate, 0, 116, 31, 0, // Skip to: 8381 133/* 329 */ MCD::OPC_Decode, 147, 14, 7, // Opcode: STRH_POST 134/* 333 */ MCD::OPC_FilterValue, 1, 107, 31, 0, // Skip to: 8381 135/* 338 */ MCD::OPC_CheckPredicate, 0, 102, 31, 0, // Skip to: 8381 136/* 343 */ MCD::OPC_Decode, 216, 5, 7, // Opcode: LDRH_POST 137/* 347 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 383 138/* 352 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 139/* 355 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 369 140/* 360 */ MCD::OPC_CheckPredicate, 0, 80, 31, 0, // Skip to: 8381 141/* 365 */ MCD::OPC_Decode, 207, 5, 7, // Opcode: LDRD_POST 142/* 369 */ MCD::OPC_FilterValue, 1, 71, 31, 0, // Skip to: 8381 143/* 374 */ MCD::OPC_CheckPredicate, 0, 66, 31, 0, // Skip to: 8381 144/* 379 */ MCD::OPC_Decode, 221, 5, 7, // Opcode: LDRSB_POST 145/* 383 */ MCD::OPC_FilterValue, 3, 57, 31, 0, // Skip to: 8381 146/* 388 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 147/* 391 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 405 148/* 396 */ MCD::OPC_CheckPredicate, 0, 44, 31, 0, // Skip to: 8381 149/* 401 */ MCD::OPC_Decode, 138, 14, 7, // Opcode: STRD_POST 150/* 405 */ MCD::OPC_FilterValue, 1, 35, 31, 0, // Skip to: 8381 151/* 410 */ MCD::OPC_CheckPredicate, 0, 30, 31, 0, // Skip to: 8381 152/* 415 */ MCD::OPC_Decode, 226, 5, 7, // Opcode: LDRSH_POST 153/* 419 */ MCD::OPC_FilterValue, 1, 21, 31, 0, // Skip to: 8381 154/* 424 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 155/* 427 */ MCD::OPC_FilterValue, 0, 6, 2, 0, // Skip to: 950 156/* 432 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 157/* 435 */ MCD::OPC_FilterValue, 0, 152, 1, 0, // Skip to: 848 158/* 440 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 159/* 443 */ MCD::OPC_FilterValue, 0, 66, 1, 0, // Skip to: 770 160/* 448 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 161/* 451 */ MCD::OPC_FilterValue, 14, 67, 0, 0, // Skip to: 523 162/* 456 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 163/* 459 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 491 164/* 464 */ MCD::OPC_CheckPredicate, 2, 171, 0, 0, // Skip to: 640 165/* 469 */ MCD::OPC_CheckField, 6, 2, 1, 164, 0, 0, // Skip to: 640 166/* 476 */ MCD::OPC_CheckField, 4, 1, 0, 157, 0, 0, // Skip to: 640 167/* 483 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 168/* 487 */ MCD::OPC_Decode, 139, 5, 8, // Opcode: CRC32B 169/* 491 */ MCD::OPC_FilterValue, 1, 144, 0, 0, // Skip to: 640 170/* 496 */ MCD::OPC_CheckPredicate, 2, 139, 0, 0, // Skip to: 640 171/* 501 */ MCD::OPC_CheckField, 6, 2, 1, 132, 0, 0, // Skip to: 640 172/* 508 */ MCD::OPC_CheckField, 4, 1, 0, 125, 0, 0, // Skip to: 640 173/* 515 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 174/* 519 */ MCD::OPC_Decode, 140, 5, 8, // Opcode: CRC32CB 175/* 523 */ MCD::OPC_FilterValue, 15, 112, 0, 0, // Skip to: 640 176/* 528 */ MCD::OPC_ExtractField, 10, 8, // Inst{17-10} ... 177/* 531 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 559 178/* 536 */ MCD::OPC_CheckPredicate, 0, 99, 0, 0, // Skip to: 640 179/* 541 */ MCD::OPC_CheckField, 9, 1, 0, 92, 0, 0, // Skip to: 640 180/* 548 */ MCD::OPC_CheckField, 0, 5, 0, 85, 0, 0, // Skip to: 640 181/* 555 */ MCD::OPC_Decode, 137, 5, 9, // Opcode: CPS2p 182/* 559 */ MCD::OPC_FilterValue, 64, 30, 0, 0, // Skip to: 594 183/* 564 */ MCD::OPC_CheckPredicate, 0, 71, 0, 0, // Skip to: 640 184/* 569 */ MCD::OPC_CheckField, 18, 2, 0, 64, 0, 0, // Skip to: 640 185/* 576 */ MCD::OPC_CheckField, 6, 3, 0, 57, 0, 0, // Skip to: 640 186/* 583 */ MCD::OPC_CheckField, 0, 5, 0, 50, 0, 0, // Skip to: 640 187/* 590 */ MCD::OPC_Decode, 158, 13, 10, // Opcode: SETEND 188/* 594 */ MCD::OPC_FilterValue, 128, 1, 40, 0, 0, // Skip to: 640 189/* 600 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 190/* 603 */ MCD::OPC_FilterValue, 0, 32, 0, 0, // Skip to: 640 191/* 608 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 631 192/* 613 */ MCD::OPC_CheckField, 18, 2, 0, 11, 0, 0, // Skip to: 631 193/* 620 */ MCD::OPC_CheckField, 6, 3, 0, 4, 0, 0, // Skip to: 631 194/* 627 */ MCD::OPC_Decode, 136, 5, 9, // Opcode: CPS1p 195/* 631 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 640 196/* 636 */ MCD::OPC_Decode, 138, 5, 9, // Opcode: CPS3p 197/* 640 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 198/* 643 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 684 199/* 648 */ MCD::OPC_CheckPredicate, 0, 88, 4, 0, // Skip to: 1765 200/* 653 */ MCD::OPC_CheckField, 16, 1, 1, 81, 4, 0, // Skip to: 1765 201/* 660 */ MCD::OPC_CheckField, 9, 1, 0, 74, 4, 0, // Skip to: 1765 202/* 667 */ MCD::OPC_CheckField, 4, 1, 0, 67, 4, 0, // Skip to: 1765 203/* 674 */ MCD::OPC_SoftFail, 143, 26 /* 0xd0f */, 128, 128, 56 /* 0xe0000 */, 204/* 680 */ MCD::OPC_Decode, 255, 5, 11, // Opcode: MRS 205/* 684 */ MCD::OPC_FilterValue, 1, 20, 0, 0, // Skip to: 709 206/* 689 */ MCD::OPC_CheckPredicate, 0, 47, 4, 0, // Skip to: 1765 207/* 694 */ MCD::OPC_CheckField, 4, 1, 1, 40, 4, 0, // Skip to: 1765 208/* 701 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 209/* 705 */ MCD::OPC_Decode, 245, 12, 12, // Opcode: QADD 210/* 709 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 749 211/* 714 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 212/* 717 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 731 213/* 722 */ MCD::OPC_CheckPredicate, 3, 14, 4, 0, // Skip to: 1765 214/* 727 */ MCD::OPC_Decode, 177, 13, 13, // Opcode: SMLABB 215/* 731 */ MCD::OPC_FilterValue, 1, 5, 4, 0, // Skip to: 1765 216/* 736 */ MCD::OPC_CheckPredicate, 4, 0, 4, 0, // Skip to: 1765 217/* 741 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 218/* 745 */ MCD::OPC_Decode, 162, 14, 14, // Opcode: SWP 219/* 749 */ MCD::OPC_FilterValue, 3, 243, 3, 0, // Skip to: 1765 220/* 754 */ MCD::OPC_CheckPredicate, 3, 238, 3, 0, // Skip to: 1765 221/* 759 */ MCD::OPC_CheckField, 4, 1, 0, 231, 3, 0, // Skip to: 1765 222/* 766 */ MCD::OPC_Decode, 178, 13, 13, // Opcode: SMLABT 223/* 770 */ MCD::OPC_FilterValue, 1, 222, 3, 0, // Skip to: 1765 224/* 775 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 225/* 778 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 806 226/* 783 */ MCD::OPC_CheckPredicate, 5, 209, 3, 0, // Skip to: 1765 227/* 788 */ MCD::OPC_CheckField, 28, 4, 14, 202, 3, 0, // Skip to: 1765 228/* 795 */ MCD::OPC_CheckField, 4, 1, 1, 195, 3, 0, // Skip to: 1765 229/* 802 */ MCD::OPC_Decode, 164, 5, 15, // Opcode: HLT 230/* 806 */ MCD::OPC_FilterValue, 2, 16, 0, 0, // Skip to: 827 231/* 811 */ MCD::OPC_CheckPredicate, 3, 181, 3, 0, // Skip to: 1765 232/* 816 */ MCD::OPC_CheckField, 4, 1, 0, 174, 3, 0, // Skip to: 1765 233/* 823 */ MCD::OPC_Decode, 188, 13, 13, // Opcode: SMLATB 234/* 827 */ MCD::OPC_FilterValue, 3, 165, 3, 0, // Skip to: 1765 235/* 832 */ MCD::OPC_CheckPredicate, 3, 160, 3, 0, // Skip to: 1765 236/* 837 */ MCD::OPC_CheckField, 4, 1, 0, 153, 3, 0, // Skip to: 1765 237/* 844 */ MCD::OPC_Decode, 189, 13, 13, // Opcode: SMLATT 238/* 848 */ MCD::OPC_FilterValue, 1, 144, 3, 0, // Skip to: 1765 239/* 853 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 240/* 856 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 924 241/* 861 */ MCD::OPC_CheckPredicate, 0, 16, 0, 0, // Skip to: 882 242/* 866 */ MCD::OPC_CheckField, 5, 7, 0, 9, 0, 0, // Skip to: 882 243/* 873 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 244/* 878 */ MCD::OPC_Decode, 178, 14, 16, // Opcode: TSTrr 245/* 882 */ MCD::OPC_CheckPredicate, 6, 23, 0, 0, // Skip to: 910 246/* 887 */ MCD::OPC_CheckField, 28, 4, 15, 16, 0, 0, // Skip to: 910 247/* 894 */ MCD::OPC_CheckField, 5, 3, 0, 9, 0, 0, // Skip to: 910 248/* 901 */ MCD::OPC_SoftFail, 143, 250, 63 /* 0xffd0f */, 0, 249/* 906 */ MCD::OPC_Decode, 159, 13, 10, // Opcode: SETPAN 250/* 910 */ MCD::OPC_CheckPredicate, 0, 82, 3, 0, // Skip to: 1765 251/* 915 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 252/* 920 */ MCD::OPC_Decode, 179, 14, 17, // Opcode: TSTrsi 253/* 924 */ MCD::OPC_FilterValue, 1, 68, 3, 0, // Skip to: 1765 254/* 929 */ MCD::OPC_CheckPredicate, 0, 63, 3, 0, // Skip to: 1765 255/* 934 */ MCD::OPC_CheckField, 7, 1, 0, 56, 3, 0, // Skip to: 1765 256/* 941 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 257/* 946 */ MCD::OPC_Decode, 180, 14, 18, // Opcode: TSTrsr 258/* 950 */ MCD::OPC_FilterValue, 1, 62, 1, 0, // Skip to: 1273 259/* 955 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 260/* 958 */ MCD::OPC_FilterValue, 0, 192, 0, 0, // Skip to: 1155 261/* 963 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 262/* 966 */ MCD::OPC_FilterValue, 0, 144, 0, 0, // Skip to: 1115 263/* 971 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 264/* 974 */ MCD::OPC_FilterValue, 0, 22, 0, 0, // Skip to: 1001 265/* 979 */ MCD::OPC_CheckPredicate, 0, 13, 3, 0, // Skip to: 1765 266/* 984 */ MCD::OPC_CheckField, 9, 1, 0, 6, 3, 0, // Skip to: 1765 267/* 991 */ MCD::OPC_SoftFail, 143, 26 /* 0xd0f */, 128, 128, 60 /* 0xf0000 */, 268/* 997 */ MCD::OPC_Decode, 129, 6, 11, // Opcode: MRSsys 269/* 1001 */ MCD::OPC_FilterValue, 2, 53, 0, 0, // Skip to: 1059 270/* 1006 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 271/* 1009 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 1034 272/* 1014 */ MCD::OPC_CheckPredicate, 2, 234, 2, 0, // Skip to: 1765 273/* 1019 */ MCD::OPC_CheckField, 28, 4, 14, 227, 2, 0, // Skip to: 1765 274/* 1026 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 275/* 1030 */ MCD::OPC_Decode, 144, 5, 8, // Opcode: CRC32W 276/* 1034 */ MCD::OPC_FilterValue, 1, 214, 2, 0, // Skip to: 1765 277/* 1039 */ MCD::OPC_CheckPredicate, 2, 209, 2, 0, // Skip to: 1765 278/* 1044 */ MCD::OPC_CheckField, 28, 4, 14, 202, 2, 0, // Skip to: 1765 279/* 1051 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 280/* 1055 */ MCD::OPC_Decode, 142, 5, 8, // Opcode: CRC32CW 281/* 1059 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 1073 282/* 1064 */ MCD::OPC_CheckPredicate, 3, 184, 2, 0, // Skip to: 1765 283/* 1069 */ MCD::OPC_Decode, 182, 13, 19, // Opcode: SMLALBB 284/* 1073 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 1087 285/* 1078 */ MCD::OPC_CheckPredicate, 3, 170, 2, 0, // Skip to: 1765 286/* 1083 */ MCD::OPC_Decode, 186, 13, 19, // Opcode: SMLALTB 287/* 1087 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 1101 288/* 1092 */ MCD::OPC_CheckPredicate, 3, 156, 2, 0, // Skip to: 1765 289/* 1097 */ MCD::OPC_Decode, 183, 13, 19, // Opcode: SMLALBT 290/* 1101 */ MCD::OPC_FilterValue, 7, 147, 2, 0, // Skip to: 1765 291/* 1106 */ MCD::OPC_CheckPredicate, 3, 142, 2, 0, // Skip to: 1765 292/* 1111 */ MCD::OPC_Decode, 187, 13, 19, // Opcode: SMLALTT 293/* 1115 */ MCD::OPC_FilterValue, 1, 133, 2, 0, // Skip to: 1765 294/* 1120 */ MCD::OPC_CheckPredicate, 0, 16, 0, 0, // Skip to: 1141 295/* 1125 */ MCD::OPC_CheckField, 5, 7, 0, 9, 0, 0, // Skip to: 1141 296/* 1132 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 297/* 1137 */ MCD::OPC_Decode, 133, 5, 20, // Opcode: CMPrr 298/* 1141 */ MCD::OPC_CheckPredicate, 0, 107, 2, 0, // Skip to: 1765 299/* 1146 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 300/* 1151 */ MCD::OPC_Decode, 134, 5, 17, // Opcode: CMPrsi 301/* 1155 */ MCD::OPC_FilterValue, 1, 93, 2, 0, // Skip to: 1765 302/* 1160 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 303/* 1163 */ MCD::OPC_FilterValue, 0, 73, 0, 0, // Skip to: 1241 304/* 1168 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 305/* 1171 */ MCD::OPC_FilterValue, 0, 46, 0, 0, // Skip to: 1222 306/* 1176 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 307/* 1179 */ MCD::OPC_FilterValue, 2, 13, 0, 0, // Skip to: 1197 308/* 1184 */ MCD::OPC_CheckPredicate, 0, 64, 2, 0, // Skip to: 1765 309/* 1189 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 310/* 1193 */ MCD::OPC_Decode, 249, 12, 21, // Opcode: QDADD 311/* 1197 */ MCD::OPC_FilterValue, 3, 51, 2, 0, // Skip to: 1765 312/* 1202 */ MCD::OPC_CheckPredicate, 7, 46, 2, 0, // Skip to: 1765 313/* 1207 */ MCD::OPC_SoftFail, 128, 128, 128, 128, 1 /* 0x10000000 */, 128, 128, 128, 128, 14 /* 0xffffffffe0000000 */, 314/* 1218 */ MCD::OPC_Decode, 165, 5, 15, // Opcode: HVC 315/* 1222 */ MCD::OPC_FilterValue, 1, 26, 2, 0, // Skip to: 1765 316/* 1227 */ MCD::OPC_CheckPredicate, 0, 21, 2, 0, // Skip to: 1765 317/* 1232 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 318/* 1237 */ MCD::OPC_Decode, 135, 5, 18, // Opcode: CMPrsr 319/* 1241 */ MCD::OPC_FilterValue, 1, 7, 2, 0, // Skip to: 1765 320/* 1246 */ MCD::OPC_CheckPredicate, 4, 2, 2, 0, // Skip to: 1765 321/* 1251 */ MCD::OPC_CheckField, 20, 1, 0, 251, 1, 0, // Skip to: 1765 322/* 1258 */ MCD::OPC_CheckField, 5, 2, 0, 244, 1, 0, // Skip to: 1765 323/* 1265 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 324/* 1269 */ MCD::OPC_Decode, 163, 14, 14, // Opcode: SWPB 325/* 1273 */ MCD::OPC_FilterValue, 2, 241, 0, 0, // Skip to: 1519 326/* 1278 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 327/* 1281 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1311 328/* 1286 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 1302 329/* 1291 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 1302 330/* 1298 */ MCD::OPC_Decode, 234, 12, 0, // Opcode: ORRrr 331/* 1302 */ MCD::OPC_CheckPredicate, 0, 202, 1, 0, // Skip to: 1765 332/* 1307 */ MCD::OPC_Decode, 235, 12, 1, // Opcode: ORRrsi 333/* 1311 */ MCD::OPC_FilterValue, 1, 193, 1, 0, // Skip to: 1765 334/* 1316 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 335/* 1319 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1333 336/* 1324 */ MCD::OPC_CheckPredicate, 0, 180, 1, 0, // Skip to: 1765 337/* 1329 */ MCD::OPC_Decode, 236, 12, 2, // Opcode: ORRrsr 338/* 1333 */ MCD::OPC_FilterValue, 1, 171, 1, 0, // Skip to: 1765 339/* 1338 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 340/* 1341 */ MCD::OPC_FilterValue, 12, 59, 0, 0, // Skip to: 1405 341/* 1346 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 342/* 1349 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 1377 343/* 1354 */ MCD::OPC_CheckPredicate, 8, 150, 1, 0, // Skip to: 1765 344/* 1359 */ MCD::OPC_CheckField, 12, 4, 15, 143, 1, 0, // Skip to: 1765 345/* 1366 */ MCD::OPC_CheckField, 5, 2, 0, 136, 1, 0, // Skip to: 1765 346/* 1373 */ MCD::OPC_Decode, 242, 13, 22, // Opcode: STL 347/* 1377 */ MCD::OPC_FilterValue, 1, 127, 1, 0, // Skip to: 1765 348/* 1382 */ MCD::OPC_CheckPredicate, 8, 122, 1, 0, // Skip to: 1765 349/* 1387 */ MCD::OPC_CheckField, 5, 2, 0, 115, 1, 0, // Skip to: 1765 350/* 1394 */ MCD::OPC_CheckField, 0, 4, 15, 108, 1, 0, // Skip to: 1765 351/* 1401 */ MCD::OPC_Decode, 167, 5, 23, // Opcode: LDA 352/* 1405 */ MCD::OPC_FilterValue, 14, 52, 0, 0, // Skip to: 1462 353/* 1410 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 354/* 1413 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1434 355/* 1418 */ MCD::OPC_CheckPredicate, 9, 86, 1, 0, // Skip to: 1765 356/* 1423 */ MCD::OPC_CheckField, 5, 2, 0, 79, 1, 0, // Skip to: 1765 357/* 1430 */ MCD::OPC_Decode, 244, 13, 24, // Opcode: STLEX 358/* 1434 */ MCD::OPC_FilterValue, 1, 70, 1, 0, // Skip to: 1765 359/* 1439 */ MCD::OPC_CheckPredicate, 9, 65, 1, 0, // Skip to: 1765 360/* 1444 */ MCD::OPC_CheckField, 5, 2, 0, 58, 1, 0, // Skip to: 1765 361/* 1451 */ MCD::OPC_CheckField, 0, 4, 15, 51, 1, 0, // Skip to: 1765 362/* 1458 */ MCD::OPC_Decode, 169, 5, 23, // Opcode: LDAEX 363/* 1462 */ MCD::OPC_FilterValue, 15, 42, 1, 0, // Skip to: 1765 364/* 1467 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 365/* 1470 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1491 366/* 1475 */ MCD::OPC_CheckPredicate, 0, 29, 1, 0, // Skip to: 1765 367/* 1480 */ MCD::OPC_CheckField, 5, 2, 0, 22, 1, 0, // Skip to: 1765 368/* 1487 */ MCD::OPC_Decode, 140, 14, 24, // Opcode: STREX 369/* 1491 */ MCD::OPC_FilterValue, 1, 13, 1, 0, // Skip to: 1765 370/* 1496 */ MCD::OPC_CheckPredicate, 0, 8, 1, 0, // Skip to: 1765 371/* 1501 */ MCD::OPC_CheckField, 5, 2, 0, 1, 1, 0, // Skip to: 1765 372/* 1508 */ MCD::OPC_CheckField, 0, 4, 15, 250, 0, 0, // Skip to: 1765 373/* 1515 */ MCD::OPC_Decode, 209, 5, 23, // Opcode: LDREX 374/* 1519 */ MCD::OPC_FilterValue, 3, 241, 0, 0, // Skip to: 1765 375/* 1524 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 376/* 1527 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1557 377/* 1532 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 1548 378/* 1537 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 1548 379/* 1544 */ MCD::OPC_Decode, 238, 4, 0, // Opcode: BICrr 380/* 1548 */ MCD::OPC_CheckPredicate, 0, 212, 0, 0, // Skip to: 1765 381/* 1553 */ MCD::OPC_Decode, 239, 4, 1, // Opcode: BICrsi 382/* 1557 */ MCD::OPC_FilterValue, 1, 203, 0, 0, // Skip to: 1765 383/* 1562 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 384/* 1565 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1579 385/* 1570 */ MCD::OPC_CheckPredicate, 0, 190, 0, 0, // Skip to: 1765 386/* 1575 */ MCD::OPC_Decode, 240, 4, 2, // Opcode: BICrsr 387/* 1579 */ MCD::OPC_FilterValue, 1, 181, 0, 0, // Skip to: 1765 388/* 1584 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 389/* 1587 */ MCD::OPC_FilterValue, 12, 59, 0, 0, // Skip to: 1651 390/* 1592 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 391/* 1595 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 1623 392/* 1600 */ MCD::OPC_CheckPredicate, 8, 160, 0, 0, // Skip to: 1765 393/* 1605 */ MCD::OPC_CheckField, 12, 4, 15, 153, 0, 0, // Skip to: 1765 394/* 1612 */ MCD::OPC_CheckField, 5, 2, 0, 146, 0, 0, // Skip to: 1765 395/* 1619 */ MCD::OPC_Decode, 243, 13, 22, // Opcode: STLB 396/* 1623 */ MCD::OPC_FilterValue, 1, 137, 0, 0, // Skip to: 1765 397/* 1628 */ MCD::OPC_CheckPredicate, 8, 132, 0, 0, // Skip to: 1765 398/* 1633 */ MCD::OPC_CheckField, 5, 2, 0, 125, 0, 0, // Skip to: 1765 399/* 1640 */ MCD::OPC_CheckField, 0, 4, 15, 118, 0, 0, // Skip to: 1765 400/* 1647 */ MCD::OPC_Decode, 168, 5, 23, // Opcode: LDAB 401/* 1651 */ MCD::OPC_FilterValue, 14, 52, 0, 0, // Skip to: 1708 402/* 1656 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 403/* 1659 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1680 404/* 1664 */ MCD::OPC_CheckPredicate, 9, 96, 0, 0, // Skip to: 1765 405/* 1669 */ MCD::OPC_CheckField, 5, 2, 0, 89, 0, 0, // Skip to: 1765 406/* 1676 */ MCD::OPC_Decode, 245, 13, 24, // Opcode: STLEXB 407/* 1680 */ MCD::OPC_FilterValue, 1, 80, 0, 0, // Skip to: 1765 408/* 1685 */ MCD::OPC_CheckPredicate, 9, 75, 0, 0, // Skip to: 1765 409/* 1690 */ MCD::OPC_CheckField, 5, 2, 0, 68, 0, 0, // Skip to: 1765 410/* 1697 */ MCD::OPC_CheckField, 0, 4, 15, 61, 0, 0, // Skip to: 1765 411/* 1704 */ MCD::OPC_Decode, 170, 5, 23, // Opcode: LDAEXB 412/* 1708 */ MCD::OPC_FilterValue, 15, 52, 0, 0, // Skip to: 1765 413/* 1713 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 414/* 1716 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1737 415/* 1721 */ MCD::OPC_CheckPredicate, 0, 39, 0, 0, // Skip to: 1765 416/* 1726 */ MCD::OPC_CheckField, 5, 2, 0, 32, 0, 0, // Skip to: 1765 417/* 1733 */ MCD::OPC_Decode, 141, 14, 24, // Opcode: STREXB 418/* 1737 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 1765 419/* 1742 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 1765 420/* 1747 */ MCD::OPC_CheckField, 5, 2, 0, 11, 0, 0, // Skip to: 1765 421/* 1754 */ MCD::OPC_CheckField, 0, 4, 15, 4, 0, 0, // Skip to: 1765 422/* 1761 */ MCD::OPC_Decode, 210, 5, 23, // Opcode: LDREXB 423/* 1765 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 424/* 1768 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 1810 425/* 1773 */ MCD::OPC_CheckPredicate, 7, 203, 25, 0, // Skip to: 8381 426/* 1778 */ MCD::OPC_CheckField, 23, 1, 0, 196, 25, 0, // Skip to: 8381 427/* 1785 */ MCD::OPC_CheckField, 20, 1, 0, 189, 25, 0, // Skip to: 8381 428/* 1792 */ MCD::OPC_CheckField, 9, 3, 1, 182, 25, 0, // Skip to: 8381 429/* 1799 */ MCD::OPC_CheckField, 0, 4, 0, 175, 25, 0, // Skip to: 8381 430/* 1806 */ MCD::OPC_Decode, 128, 6, 25, // Opcode: MRSbanked 431/* 1810 */ MCD::OPC_FilterValue, 11, 31, 0, 0, // Skip to: 1846 432/* 1815 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 433/* 1818 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1832 434/* 1823 */ MCD::OPC_CheckPredicate, 0, 153, 25, 0, // Skip to: 8381 435/* 1828 */ MCD::OPC_Decode, 144, 14, 7, // Opcode: STRH 436/* 1832 */ MCD::OPC_FilterValue, 1, 144, 25, 0, // Skip to: 8381 437/* 1837 */ MCD::OPC_CheckPredicate, 0, 139, 25, 0, // Skip to: 8381 438/* 1842 */ MCD::OPC_Decode, 213, 5, 7, // Opcode: LDRH 439/* 1846 */ MCD::OPC_FilterValue, 13, 31, 0, 0, // Skip to: 1882 440/* 1851 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 441/* 1854 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1868 442/* 1859 */ MCD::OPC_CheckPredicate, 3, 117, 25, 0, // Skip to: 8381 443/* 1864 */ MCD::OPC_Decode, 206, 5, 7, // Opcode: LDRD 444/* 1868 */ MCD::OPC_FilterValue, 1, 108, 25, 0, // Skip to: 8381 445/* 1873 */ MCD::OPC_CheckPredicate, 0, 103, 25, 0, // Skip to: 8381 446/* 1878 */ MCD::OPC_Decode, 218, 5, 7, // Opcode: LDRSB 447/* 1882 */ MCD::OPC_FilterValue, 15, 94, 25, 0, // Skip to: 8381 448/* 1887 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 449/* 1890 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 1904 450/* 1895 */ MCD::OPC_CheckPredicate, 3, 81, 25, 0, // Skip to: 8381 451/* 1900 */ MCD::OPC_Decode, 137, 14, 7, // Opcode: STRD 452/* 1904 */ MCD::OPC_FilterValue, 1, 72, 25, 0, // Skip to: 8381 453/* 1909 */ MCD::OPC_CheckPredicate, 0, 67, 25, 0, // Skip to: 8381 454/* 1914 */ MCD::OPC_Decode, 223, 5, 7, // Opcode: LDRSH 455/* 1918 */ MCD::OPC_FilterValue, 1, 58, 25, 0, // Skip to: 8381 456/* 1923 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 457/* 1926 */ MCD::OPC_FilterValue, 0, 180, 2, 0, // Skip to: 2623 458/* 1931 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 459/* 1934 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 2002 460/* 1939 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 461/* 1942 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1972 462/* 1947 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 1963 463/* 1952 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 1963 464/* 1959 */ MCD::OPC_Decode, 149, 5, 0, // Opcode: EORrr 465/* 1963 */ MCD::OPC_CheckPredicate, 0, 13, 25, 0, // Skip to: 8381 466/* 1968 */ MCD::OPC_Decode, 150, 5, 1, // Opcode: EORrsi 467/* 1972 */ MCD::OPC_FilterValue, 1, 4, 25, 0, // Skip to: 8381 468/* 1977 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 1993 469/* 1982 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 1993 470/* 1989 */ MCD::OPC_Decode, 140, 13, 0, // Opcode: RSBrr 471/* 1993 */ MCD::OPC_CheckPredicate, 0, 239, 24, 0, // Skip to: 8381 472/* 1998 */ MCD::OPC_Decode, 141, 13, 1, // Opcode: RSBrsi 473/* 2002 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 2070 474/* 2007 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 475/* 2010 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2040 476/* 2015 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 2031 477/* 2020 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 2031 478/* 2027 */ MCD::OPC_Decode, 219, 4, 0, // Opcode: ADCrr 479/* 2031 */ MCD::OPC_CheckPredicate, 0, 201, 24, 0, // Skip to: 8381 480/* 2036 */ MCD::OPC_Decode, 220, 4, 1, // Opcode: ADCrsi 481/* 2040 */ MCD::OPC_FilterValue, 1, 192, 24, 0, // Skip to: 8381 482/* 2045 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 2061 483/* 2050 */ MCD::OPC_CheckField, 5, 7, 0, 4, 0, 0, // Skip to: 2061 484/* 2057 */ MCD::OPC_Decode, 144, 13, 0, // Opcode: RSCrr 485/* 2061 */ MCD::OPC_CheckPredicate, 0, 171, 24, 0, // Skip to: 8381 486/* 2066 */ MCD::OPC_Decode, 145, 13, 1, // Opcode: RSCrsi 487/* 2070 */ MCD::OPC_FilterValue, 2, 166, 1, 0, // Skip to: 2497 488/* 2075 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 489/* 2078 */ MCD::OPC_FilterValue, 0, 70, 1, 0, // Skip to: 2409 490/* 2083 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 491/* 2086 */ MCD::OPC_FilterValue, 0, 38, 0, 0, // Skip to: 2129 492/* 2091 */ MCD::OPC_ExtractField, 9, 7, // Inst{15-9} ... 493/* 2094 */ MCD::OPC_FilterValue, 120, 16, 0, 0, // Skip to: 2115 494/* 2099 */ MCD::OPC_CheckPredicate, 0, 133, 24, 0, // Skip to: 8381 495/* 2104 */ MCD::OPC_CheckField, 8, 1, 0, 126, 24, 0, // Skip to: 8381 496/* 2111 */ MCD::OPC_Decode, 130, 6, 26, // Opcode: MSR 497/* 2115 */ MCD::OPC_FilterValue, 121, 117, 24, 0, // Skip to: 8381 498/* 2120 */ MCD::OPC_CheckPredicate, 7, 112, 24, 0, // Skip to: 8381 499/* 2125 */ MCD::OPC_Decode, 131, 6, 27, // Opcode: MSRbanked 500/* 2129 */ MCD::OPC_FilterValue, 1, 24, 0, 0, // Skip to: 2158 501/* 2134 */ MCD::OPC_CheckPredicate, 0, 98, 24, 0, // Skip to: 8381 502/* 2139 */ MCD::OPC_CheckField, 22, 1, 0, 91, 24, 0, // Skip to: 8381 503/* 2146 */ MCD::OPC_CheckField, 8, 12, 255, 31, 83, 24, 0, // Skip to: 8381 504/* 2154 */ MCD::OPC_Decode, 248, 4, 28, // Opcode: BXJ 505/* 2158 */ MCD::OPC_FilterValue, 2, 67, 0, 0, // Skip to: 2230 506/* 2163 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 507/* 2166 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 2198 508/* 2171 */ MCD::OPC_CheckPredicate, 2, 61, 24, 0, // Skip to: 8381 509/* 2176 */ MCD::OPC_CheckField, 28, 4, 14, 54, 24, 0, // Skip to: 8381 510/* 2183 */ MCD::OPC_CheckField, 22, 1, 0, 47, 24, 0, // Skip to: 8381 511/* 2190 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 512/* 2194 */ MCD::OPC_Decode, 143, 5, 8, // Opcode: CRC32H 513/* 2198 */ MCD::OPC_FilterValue, 1, 34, 24, 0, // Skip to: 8381 514/* 2203 */ MCD::OPC_CheckPredicate, 2, 29, 24, 0, // Skip to: 8381 515/* 2208 */ MCD::OPC_CheckField, 28, 4, 14, 22, 24, 0, // Skip to: 8381 516/* 2215 */ MCD::OPC_CheckField, 22, 1, 0, 15, 24, 0, // Skip to: 8381 517/* 2222 */ MCD::OPC_SoftFail, 128, 26 /* 0xd00 */, 0, 518/* 2226 */ MCD::OPC_Decode, 141, 5, 8, // Opcode: CRC32CH 519/* 2230 */ MCD::OPC_FilterValue, 3, 30, 0, 0, // Skip to: 2265 520/* 2235 */ MCD::OPC_CheckPredicate, 7, 253, 23, 0, // Skip to: 8381 521/* 2240 */ MCD::OPC_CheckField, 22, 1, 1, 246, 23, 0, // Skip to: 8381 522/* 2247 */ MCD::OPC_CheckField, 8, 12, 0, 239, 23, 0, // Skip to: 8381 523/* 2254 */ MCD::OPC_CheckField, 0, 4, 14, 232, 23, 0, // Skip to: 8381 524/* 2261 */ MCD::OPC_Decode, 152, 5, 29, // Opcode: ERET 525/* 2265 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 2301 526/* 2270 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 527/* 2273 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2287 528/* 2278 */ MCD::OPC_CheckPredicate, 3, 210, 23, 0, // Skip to: 8381 529/* 2283 */ MCD::OPC_Decode, 190, 13, 13, // Opcode: SMLAWB 530/* 2287 */ MCD::OPC_FilterValue, 1, 201, 23, 0, // Skip to: 8381 531/* 2292 */ MCD::OPC_CheckPredicate, 3, 196, 23, 0, // Skip to: 8381 532/* 2297 */ MCD::OPC_Decode, 204, 13, 30, // Opcode: SMULBB 533/* 2301 */ MCD::OPC_FilterValue, 5, 31, 0, 0, // Skip to: 2337 534/* 2306 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 535/* 2309 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2323 536/* 2314 */ MCD::OPC_CheckPredicate, 3, 174, 23, 0, // Skip to: 8381 537/* 2319 */ MCD::OPC_Decode, 209, 13, 30, // Opcode: SMULWB 538/* 2323 */ MCD::OPC_FilterValue, 1, 165, 23, 0, // Skip to: 8381 539/* 2328 */ MCD::OPC_CheckPredicate, 3, 160, 23, 0, // Skip to: 8381 540/* 2333 */ MCD::OPC_Decode, 207, 13, 30, // Opcode: SMULTB 541/* 2337 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 2373 542/* 2342 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 543/* 2345 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2359 544/* 2350 */ MCD::OPC_CheckPredicate, 3, 138, 23, 0, // Skip to: 8381 545/* 2355 */ MCD::OPC_Decode, 191, 13, 13, // Opcode: SMLAWT 546/* 2359 */ MCD::OPC_FilterValue, 1, 129, 23, 0, // Skip to: 8381 547/* 2364 */ MCD::OPC_CheckPredicate, 3, 124, 23, 0, // Skip to: 8381 548/* 2369 */ MCD::OPC_Decode, 205, 13, 30, // Opcode: SMULBT 549/* 2373 */ MCD::OPC_FilterValue, 7, 115, 23, 0, // Skip to: 8381 550/* 2378 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 551/* 2381 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2395 552/* 2386 */ MCD::OPC_CheckPredicate, 3, 102, 23, 0, // Skip to: 8381 553/* 2391 */ MCD::OPC_Decode, 210, 13, 30, // Opcode: SMULWT 554/* 2395 */ MCD::OPC_FilterValue, 1, 93, 23, 0, // Skip to: 8381 555/* 2400 */ MCD::OPC_CheckPredicate, 3, 88, 23, 0, // Skip to: 8381 556/* 2405 */ MCD::OPC_Decode, 208, 13, 30, // Opcode: SMULTT 557/* 2409 */ MCD::OPC_FilterValue, 1, 79, 23, 0, // Skip to: 8381 558/* 2414 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 559/* 2417 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 2457 560/* 2422 */ MCD::OPC_CheckPredicate, 0, 16, 0, 0, // Skip to: 2443 561/* 2427 */ MCD::OPC_CheckField, 5, 7, 0, 9, 0, 0, // Skip to: 2443 562/* 2434 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 563/* 2439 */ MCD::OPC_Decode, 171, 14, 20, // Opcode: TEQrr 564/* 2443 */ MCD::OPC_CheckPredicate, 0, 45, 23, 0, // Skip to: 8381 565/* 2448 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 566/* 2453 */ MCD::OPC_Decode, 172, 14, 17, // Opcode: TEQrsi 567/* 2457 */ MCD::OPC_FilterValue, 1, 31, 23, 0, // Skip to: 8381 568/* 2462 */ MCD::OPC_CheckPredicate, 0, 16, 0, 0, // Skip to: 2483 569/* 2467 */ MCD::OPC_CheckField, 5, 7, 0, 9, 0, 0, // Skip to: 2483 570/* 2474 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 571/* 2479 */ MCD::OPC_Decode, 129, 5, 20, // Opcode: CMNzrr 572/* 2483 */ MCD::OPC_CheckPredicate, 0, 5, 23, 0, // Skip to: 8381 573/* 2488 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 574/* 2493 */ MCD::OPC_Decode, 130, 5, 17, // Opcode: CMNzrsi 575/* 2497 */ MCD::OPC_FilterValue, 3, 247, 22, 0, // Skip to: 8381 576/* 2502 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 577/* 2505 */ MCD::OPC_FilterValue, 0, 73, 0, 0, // Skip to: 2583 578/* 2510 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 2534 579/* 2515 */ MCD::OPC_CheckField, 5, 16, 128, 15, 11, 0, 0, // Skip to: 2534 580/* 2523 */ MCD::OPC_CheckField, 0, 4, 14, 4, 0, 0, // Skip to: 2534 581/* 2530 */ MCD::OPC_Decode, 243, 5, 29, // Opcode: MOVPCLR 582/* 2534 */ MCD::OPC_ExtractField, 5, 7, // Inst{11-5} ... 583/* 2537 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2567 584/* 2542 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 2558 585/* 2547 */ MCD::OPC_CheckField, 16, 4, 0, 4, 0, 0, // Skip to: 2558 586/* 2554 */ MCD::OPC_Decode, 247, 5, 31, // Opcode: MOVr 587/* 2558 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 2567 588/* 2563 */ MCD::OPC_Decode, 248, 5, 32, // Opcode: MOVr_TC 589/* 2567 */ MCD::OPC_CheckPredicate, 0, 177, 22, 0, // Skip to: 8381 590/* 2572 */ MCD::OPC_CheckField, 16, 4, 0, 170, 22, 0, // Skip to: 8381 591/* 2579 */ MCD::OPC_Decode, 249, 5, 33, // Opcode: MOVsi 592/* 2583 */ MCD::OPC_FilterValue, 1, 161, 22, 0, // Skip to: 8381 593/* 2588 */ MCD::OPC_CheckPredicate, 0, 16, 0, 0, // Skip to: 2609 594/* 2593 */ MCD::OPC_CheckField, 5, 7, 0, 9, 0, 0, // Skip to: 2609 595/* 2600 */ MCD::OPC_SoftFail, 128, 128, 60 /* 0xf0000 */, 0, 596/* 2605 */ MCD::OPC_Decode, 222, 12, 31, // Opcode: MVNr 597/* 2609 */ MCD::OPC_CheckPredicate, 0, 135, 22, 0, // Skip to: 8381 598/* 2614 */ MCD::OPC_SoftFail, 128, 128, 60 /* 0xf0000 */, 0, 599/* 2619 */ MCD::OPC_Decode, 223, 12, 33, // Opcode: MVNsi 600/* 2623 */ MCD::OPC_FilterValue, 1, 121, 22, 0, // Skip to: 8381 601/* 2628 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 602/* 2631 */ MCD::OPC_FilterValue, 0, 113, 1, 0, // Skip to: 3005 603/* 2636 */ MCD::OPC_ExtractField, 22, 3, // Inst{24-22} ... 604/* 2639 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 2653 605/* 2644 */ MCD::OPC_CheckPredicate, 0, 100, 22, 0, // Skip to: 8381 606/* 2649 */ MCD::OPC_Decode, 151, 5, 2, // Opcode: EORrsr 607/* 2653 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 2667 608/* 2658 */ MCD::OPC_CheckPredicate, 0, 86, 22, 0, // Skip to: 8381 609/* 2663 */ MCD::OPC_Decode, 142, 13, 2, // Opcode: RSBrsr 610/* 2667 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 2681 611/* 2672 */ MCD::OPC_CheckPredicate, 0, 72, 22, 0, // Skip to: 8381 612/* 2677 */ MCD::OPC_Decode, 221, 4, 3, // Opcode: ADCrsr 613/* 2681 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 2695 614/* 2686 */ MCD::OPC_CheckPredicate, 0, 58, 22, 0, // Skip to: 8381 615/* 2691 */ MCD::OPC_Decode, 146, 13, 2, // Opcode: RSCrsr 616/* 2695 */ MCD::OPC_FilterValue, 4, 163, 0, 0, // Skip to: 2863 617/* 2700 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 618/* 2703 */ MCD::OPC_FilterValue, 0, 136, 0, 0, // Skip to: 2844 619/* 2708 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 620/* 2711 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 2766 621/* 2716 */ MCD::OPC_ExtractField, 8, 12, // Inst{19-8} ... 622/* 2719 */ MCD::OPC_FilterValue, 255, 31, 24, 22, 0, // Skip to: 8381 623/* 2725 */ MCD::OPC_CheckPredicate, 10, 11, 0, 0, // Skip to: 2741 624/* 2730 */ MCD::OPC_CheckField, 0, 4, 14, 4, 0, 0, // Skip to: 2741 625/* 2737 */ MCD::OPC_Decode, 249, 4, 29, // Opcode: BX_RET 626/* 2741 */ MCD::OPC_CheckPredicate, 10, 11, 0, 0, // Skip to: 2757 627/* 2746 */ MCD::OPC_CheckField, 28, 4, 14, 4, 0, 0, // Skip to: 2757 628/* 2753 */ MCD::OPC_Decode, 247, 4, 34, // Opcode: BX 629/* 2757 */ MCD::OPC_CheckPredicate, 10, 243, 21, 0, // Skip to: 8381 630/* 2762 */ MCD::OPC_Decode, 250, 4, 28, // Opcode: BX_pred 631/* 2766 */ MCD::OPC_FilterValue, 1, 34, 0, 0, // Skip to: 2805 632/* 2771 */ MCD::OPC_ExtractField, 8, 12, // Inst{19-8} ... 633/* 2774 */ MCD::OPC_FilterValue, 255, 31, 225, 21, 0, // Skip to: 8381 634/* 2780 */ MCD::OPC_CheckPredicate, 11, 11, 0, 0, // Skip to: 2796 635/* 2785 */ MCD::OPC_CheckField, 28, 4, 14, 4, 0, 0, // Skip to: 2796 636/* 2792 */ MCD::OPC_Decode, 243, 4, 34, // Opcode: BLX 637/* 2796 */ MCD::OPC_CheckPredicate, 11, 204, 21, 0, // Skip to: 8381 638/* 2801 */ MCD::OPC_Decode, 244, 4, 28, // Opcode: BLX_pred 639/* 2805 */ MCD::OPC_FilterValue, 2, 13, 0, 0, // Skip to: 2823 640/* 2810 */ MCD::OPC_CheckPredicate, 0, 190, 21, 0, // Skip to: 8381 641/* 2815 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 642/* 2819 */ MCD::OPC_Decode, 252, 12, 21, // Opcode: QSUB 643/* 2823 */ MCD::OPC_FilterValue, 3, 177, 21, 0, // Skip to: 8381 644/* 2828 */ MCD::OPC_CheckPredicate, 0, 172, 21, 0, // Skip to: 8381 645/* 2833 */ MCD::OPC_CheckField, 28, 4, 14, 165, 21, 0, // Skip to: 8381 646/* 2840 */ MCD::OPC_Decode, 241, 4, 15, // Opcode: BKPT 647/* 2844 */ MCD::OPC_FilterValue, 1, 156, 21, 0, // Skip to: 8381 648/* 2849 */ MCD::OPC_CheckPredicate, 0, 151, 21, 0, // Skip to: 8381 649/* 2854 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 650/* 2859 */ MCD::OPC_Decode, 173, 14, 18, // Opcode: TEQrsr 651/* 2863 */ MCD::OPC_FilterValue, 5, 97, 0, 0, // Skip to: 2965 652/* 2868 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 653/* 2871 */ MCD::OPC_FilterValue, 0, 70, 0, 0, // Skip to: 2946 654/* 2876 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 655/* 2879 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 2907 656/* 2884 */ MCD::OPC_CheckPredicate, 11, 116, 21, 0, // Skip to: 8381 657/* 2889 */ MCD::OPC_CheckField, 16, 4, 15, 109, 21, 0, // Skip to: 8381 658/* 2896 */ MCD::OPC_CheckField, 8, 4, 15, 102, 21, 0, // Skip to: 8381 659/* 2903 */ MCD::OPC_Decode, 255, 4, 35, // Opcode: CLZ 660/* 2907 */ MCD::OPC_FilterValue, 2, 13, 0, 0, // Skip to: 2925 661/* 2912 */ MCD::OPC_CheckPredicate, 0, 88, 21, 0, // Skip to: 8381 662/* 2917 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 663/* 2921 */ MCD::OPC_Decode, 250, 12, 21, // Opcode: QDSUB 664/* 2925 */ MCD::OPC_FilterValue, 3, 75, 21, 0, // Skip to: 8381 665/* 2930 */ MCD::OPC_CheckPredicate, 12, 70, 21, 0, // Skip to: 8381 666/* 2935 */ MCD::OPC_CheckField, 8, 12, 0, 63, 21, 0, // Skip to: 8381 667/* 2942 */ MCD::OPC_Decode, 176, 13, 36, // Opcode: SMC 668/* 2946 */ MCD::OPC_FilterValue, 1, 54, 21, 0, // Skip to: 8381 669/* 2951 */ MCD::OPC_CheckPredicate, 0, 49, 21, 0, // Skip to: 8381 670/* 2956 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 671/* 2961 */ MCD::OPC_Decode, 131, 5, 18, // Opcode: CMNzrsr 672/* 2965 */ MCD::OPC_FilterValue, 6, 16, 0, 0, // Skip to: 2986 673/* 2970 */ MCD::OPC_CheckPredicate, 0, 30, 21, 0, // Skip to: 8381 674/* 2975 */ MCD::OPC_CheckField, 16, 4, 0, 23, 21, 0, // Skip to: 8381 675/* 2982 */ MCD::OPC_Decode, 250, 5, 37, // Opcode: MOVsr 676/* 2986 */ MCD::OPC_FilterValue, 7, 14, 21, 0, // Skip to: 8381 677/* 2991 */ MCD::OPC_CheckPredicate, 0, 9, 21, 0, // Skip to: 8381 678/* 2996 */ MCD::OPC_SoftFail, 128, 128, 60 /* 0xf0000 */, 0, 679/* 3001 */ MCD::OPC_Decode, 224, 12, 37, // Opcode: MVNsr 680/* 3005 */ MCD::OPC_FilterValue, 1, 251, 20, 0, // Skip to: 8381 681/* 3010 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 682/* 3013 */ MCD::OPC_FilterValue, 0, 48, 1, 0, // Skip to: 3322 683/* 3018 */ MCD::OPC_ExtractField, 22, 3, // Inst{24-22} ... 684/* 3021 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3035 685/* 3026 */ MCD::OPC_CheckPredicate, 1, 230, 20, 0, // Skip to: 8381 686/* 3031 */ MCD::OPC_Decode, 241, 5, 38, // Opcode: MLA 687/* 3035 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 3056 688/* 3040 */ MCD::OPC_CheckPredicate, 13, 216, 20, 0, // Skip to: 8381 689/* 3045 */ MCD::OPC_CheckField, 20, 1, 0, 209, 20, 0, // Skip to: 8381 690/* 3052 */ MCD::OPC_Decode, 242, 5, 39, // Opcode: MLS 691/* 3056 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3070 692/* 3061 */ MCD::OPC_CheckPredicate, 1, 195, 20, 0, // Skip to: 8381 693/* 3066 */ MCD::OPC_Decode, 194, 14, 40, // Opcode: UMLAL 694/* 3070 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3084 695/* 3075 */ MCD::OPC_CheckPredicate, 1, 181, 20, 0, // Skip to: 8381 696/* 3080 */ MCD::OPC_Decode, 181, 13, 40, // Opcode: SMLAL 697/* 3084 */ MCD::OPC_FilterValue, 6, 89, 0, 0, // Skip to: 3178 698/* 3089 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 699/* 3092 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 3135 700/* 3097 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 701/* 3100 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3114 702/* 3105 */ MCD::OPC_CheckPredicate, 9, 151, 20, 0, // Skip to: 8381 703/* 3110 */ MCD::OPC_Decode, 246, 13, 41, // Opcode: STLEXD 704/* 3114 */ MCD::OPC_FilterValue, 1, 142, 20, 0, // Skip to: 8381 705/* 3119 */ MCD::OPC_CheckPredicate, 9, 137, 20, 0, // Skip to: 8381 706/* 3124 */ MCD::OPC_CheckField, 0, 4, 15, 130, 20, 0, // Skip to: 8381 707/* 3131 */ MCD::OPC_Decode, 171, 5, 42, // Opcode: LDAEXD 708/* 3135 */ MCD::OPC_FilterValue, 15, 121, 20, 0, // Skip to: 8381 709/* 3140 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 710/* 3143 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3157 711/* 3148 */ MCD::OPC_CheckPredicate, 0, 108, 20, 0, // Skip to: 8381 712/* 3153 */ MCD::OPC_Decode, 142, 14, 41, // Opcode: STREXD 713/* 3157 */ MCD::OPC_FilterValue, 1, 99, 20, 0, // Skip to: 8381 714/* 3162 */ MCD::OPC_CheckPredicate, 0, 94, 20, 0, // Skip to: 8381 715/* 3167 */ MCD::OPC_CheckField, 0, 4, 15, 87, 20, 0, // Skip to: 8381 716/* 3174 */ MCD::OPC_Decode, 211, 5, 42, // Opcode: LDREXD 717/* 3178 */ MCD::OPC_FilterValue, 7, 78, 20, 0, // Skip to: 8381 718/* 3183 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 719/* 3186 */ MCD::OPC_FilterValue, 12, 45, 0, 0, // Skip to: 3236 720/* 3191 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 721/* 3194 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 3215 722/* 3199 */ MCD::OPC_CheckPredicate, 8, 57, 20, 0, // Skip to: 8381 723/* 3204 */ MCD::OPC_CheckField, 12, 4, 15, 50, 20, 0, // Skip to: 8381 724/* 3211 */ MCD::OPC_Decode, 248, 13, 22, // Opcode: STLH 725/* 3215 */ MCD::OPC_FilterValue, 1, 41, 20, 0, // Skip to: 8381 726/* 3220 */ MCD::OPC_CheckPredicate, 8, 36, 20, 0, // Skip to: 8381 727/* 3225 */ MCD::OPC_CheckField, 0, 4, 15, 29, 20, 0, // Skip to: 8381 728/* 3232 */ MCD::OPC_Decode, 173, 5, 23, // Opcode: LDAH 729/* 3236 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 3279 730/* 3241 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 731/* 3244 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3258 732/* 3249 */ MCD::OPC_CheckPredicate, 9, 7, 20, 0, // Skip to: 8381 733/* 3254 */ MCD::OPC_Decode, 247, 13, 24, // Opcode: STLEXH 734/* 3258 */ MCD::OPC_FilterValue, 1, 254, 19, 0, // Skip to: 8381 735/* 3263 */ MCD::OPC_CheckPredicate, 9, 249, 19, 0, // Skip to: 8381 736/* 3268 */ MCD::OPC_CheckField, 0, 4, 15, 242, 19, 0, // Skip to: 8381 737/* 3275 */ MCD::OPC_Decode, 172, 5, 23, // Opcode: LDAEXH 738/* 3279 */ MCD::OPC_FilterValue, 15, 233, 19, 0, // Skip to: 8381 739/* 3284 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 740/* 3287 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3301 741/* 3292 */ MCD::OPC_CheckPredicate, 0, 220, 19, 0, // Skip to: 8381 742/* 3297 */ MCD::OPC_Decode, 143, 14, 24, // Opcode: STREXH 743/* 3301 */ MCD::OPC_FilterValue, 1, 211, 19, 0, // Skip to: 8381 744/* 3306 */ MCD::OPC_CheckPredicate, 0, 206, 19, 0, // Skip to: 8381 745/* 3311 */ MCD::OPC_CheckField, 0, 4, 15, 199, 19, 0, // Skip to: 8381 746/* 3318 */ MCD::OPC_Decode, 212, 5, 23, // Opcode: LDREXH 747/* 3322 */ MCD::OPC_FilterValue, 1, 130, 0, 0, // Skip to: 3457 748/* 3327 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 749/* 3330 */ MCD::OPC_FilterValue, 0, 60, 0, 0, // Skip to: 3395 750/* 3335 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 751/* 3338 */ MCD::OPC_FilterValue, 0, 38, 0, 0, // Skip to: 3381 752/* 3343 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 753/* 3346 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 3367 754/* 3351 */ MCD::OPC_CheckPredicate, 0, 161, 19, 0, // Skip to: 8381 755/* 3356 */ MCD::OPC_CheckField, 8, 4, 0, 154, 19, 0, // Skip to: 8381 756/* 3363 */ MCD::OPC_Decode, 146, 14, 43, // Opcode: STRHTr 757/* 3367 */ MCD::OPC_FilterValue, 1, 145, 19, 0, // Skip to: 8381 758/* 3372 */ MCD::OPC_CheckPredicate, 0, 140, 19, 0, // Skip to: 8381 759/* 3377 */ MCD::OPC_Decode, 145, 14, 44, // Opcode: STRHTi 760/* 3381 */ MCD::OPC_FilterValue, 1, 131, 19, 0, // Skip to: 8381 761/* 3386 */ MCD::OPC_CheckPredicate, 0, 126, 19, 0, // Skip to: 8381 762/* 3391 */ MCD::OPC_Decode, 148, 14, 7, // Opcode: STRH_PRE 763/* 3395 */ MCD::OPC_FilterValue, 1, 117, 19, 0, // Skip to: 8381 764/* 3400 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 765/* 3403 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 3443 766/* 3408 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 767/* 3411 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 3429 768/* 3416 */ MCD::OPC_CheckPredicate, 0, 96, 19, 0, // Skip to: 8381 769/* 3421 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 770/* 3425 */ MCD::OPC_Decode, 215, 5, 45, // Opcode: LDRHTr 771/* 3429 */ MCD::OPC_FilterValue, 1, 83, 19, 0, // Skip to: 8381 772/* 3434 */ MCD::OPC_CheckPredicate, 0, 78, 19, 0, // Skip to: 8381 773/* 3439 */ MCD::OPC_Decode, 214, 5, 46, // Opcode: LDRHTi 774/* 3443 */ MCD::OPC_FilterValue, 1, 69, 19, 0, // Skip to: 8381 775/* 3448 */ MCD::OPC_CheckPredicate, 0, 64, 19, 0, // Skip to: 8381 776/* 3453 */ MCD::OPC_Decode, 217, 5, 7, // Opcode: LDRH_PRE 777/* 3457 */ MCD::OPC_FilterValue, 2, 86, 0, 0, // Skip to: 3548 778/* 3462 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 779/* 3465 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 3486 780/* 3470 */ MCD::OPC_CheckPredicate, 0, 42, 19, 0, // Skip to: 8381 781/* 3475 */ MCD::OPC_CheckField, 24, 1, 1, 35, 19, 0, // Skip to: 8381 782/* 3482 */ MCD::OPC_Decode, 208, 5, 7, // Opcode: LDRD_PRE 783/* 3486 */ MCD::OPC_FilterValue, 1, 26, 19, 0, // Skip to: 8381 784/* 3491 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 785/* 3494 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 3534 786/* 3499 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 787/* 3502 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 3520 788/* 3507 */ MCD::OPC_CheckPredicate, 0, 5, 19, 0, // Skip to: 8381 789/* 3512 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 790/* 3516 */ MCD::OPC_Decode, 220, 5, 45, // Opcode: LDRSBTr 791/* 3520 */ MCD::OPC_FilterValue, 1, 248, 18, 0, // Skip to: 8381 792/* 3525 */ MCD::OPC_CheckPredicate, 0, 243, 18, 0, // Skip to: 8381 793/* 3530 */ MCD::OPC_Decode, 219, 5, 46, // Opcode: LDRSBTi 794/* 3534 */ MCD::OPC_FilterValue, 1, 234, 18, 0, // Skip to: 8381 795/* 3539 */ MCD::OPC_CheckPredicate, 0, 229, 18, 0, // Skip to: 8381 796/* 3544 */ MCD::OPC_Decode, 222, 5, 7, // Opcode: LDRSB_PRE 797/* 3548 */ MCD::OPC_FilterValue, 3, 220, 18, 0, // Skip to: 8381 798/* 3553 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 799/* 3556 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 3577 800/* 3561 */ MCD::OPC_CheckPredicate, 0, 207, 18, 0, // Skip to: 8381 801/* 3566 */ MCD::OPC_CheckField, 24, 1, 1, 200, 18, 0, // Skip to: 8381 802/* 3573 */ MCD::OPC_Decode, 139, 14, 7, // Opcode: STRD_PRE 803/* 3577 */ MCD::OPC_FilterValue, 1, 191, 18, 0, // Skip to: 8381 804/* 3582 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 805/* 3585 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 3625 806/* 3590 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 807/* 3593 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 3611 808/* 3598 */ MCD::OPC_CheckPredicate, 0, 170, 18, 0, // Skip to: 8381 809/* 3603 */ MCD::OPC_SoftFail, 128, 30 /* 0xf00 */, 0, 810/* 3607 */ MCD::OPC_Decode, 225, 5, 45, // Opcode: LDRSHTr 811/* 3611 */ MCD::OPC_FilterValue, 1, 157, 18, 0, // Skip to: 8381 812/* 3616 */ MCD::OPC_CheckPredicate, 0, 152, 18, 0, // Skip to: 8381 813/* 3621 */ MCD::OPC_Decode, 224, 5, 46, // Opcode: LDRSHTi 814/* 3625 */ MCD::OPC_FilterValue, 1, 143, 18, 0, // Skip to: 8381 815/* 3630 */ MCD::OPC_CheckPredicate, 0, 138, 18, 0, // Skip to: 8381 816/* 3635 */ MCD::OPC_Decode, 227, 5, 7, // Opcode: LDRSH_PRE 817/* 3639 */ MCD::OPC_FilterValue, 1, 0, 2, 0, // Skip to: 4156 818/* 3644 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 819/* 3647 */ MCD::OPC_FilterValue, 0, 201, 0, 0, // Skip to: 3853 820/* 3652 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 821/* 3655 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 3735 822/* 3660 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 823/* 3663 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3677 824/* 3668 */ MCD::OPC_CheckPredicate, 0, 46, 0, 0, // Skip to: 3719 825/* 3673 */ MCD::OPC_Decode, 231, 4, 47, // Opcode: ANDri 826/* 3677 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 3691 827/* 3682 */ MCD::OPC_CheckPredicate, 0, 32, 0, 0, // Skip to: 3719 828/* 3687 */ MCD::OPC_Decode, 157, 14, 47, // Opcode: SUBri 829/* 3691 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3705 830/* 3696 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 3719 831/* 3701 */ MCD::OPC_Decode, 222, 4, 47, // Opcode: ADDri 832/* 3705 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 3719 833/* 3710 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 3719 834/* 3715 */ MCD::OPC_Decode, 151, 13, 47, // Opcode: SBCri 835/* 3719 */ MCD::OPC_CheckPredicate, 0, 49, 18, 0, // Skip to: 8381 836/* 3724 */ MCD::OPC_CheckField, 16, 5, 15, 42, 18, 0, // Skip to: 8381 837/* 3731 */ MCD::OPC_Decode, 226, 4, 48, // Opcode: ADR 838/* 3735 */ MCD::OPC_FilterValue, 1, 33, 18, 0, // Skip to: 8381 839/* 3740 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 840/* 3743 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 3784 841/* 3748 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 842/* 3751 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3765 843/* 3756 */ MCD::OPC_CheckPredicate, 13, 12, 18, 0, // Skip to: 8381 844/* 3761 */ MCD::OPC_Decode, 246, 5, 49, // Opcode: MOVi16 845/* 3765 */ MCD::OPC_FilterValue, 1, 3, 18, 0, // Skip to: 8381 846/* 3770 */ MCD::OPC_CheckPredicate, 0, 254, 17, 0, // Skip to: 8381 847/* 3775 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 848/* 3780 */ MCD::OPC_Decode, 177, 14, 50, // Opcode: TSTri 849/* 3784 */ MCD::OPC_FilterValue, 1, 36, 0, 0, // Skip to: 3825 850/* 3789 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 851/* 3792 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3806 852/* 3797 */ MCD::OPC_CheckPredicate, 13, 227, 17, 0, // Skip to: 8381 853/* 3802 */ MCD::OPC_Decode, 244, 5, 49, // Opcode: MOVTi16 854/* 3806 */ MCD::OPC_FilterValue, 1, 218, 17, 0, // Skip to: 8381 855/* 3811 */ MCD::OPC_CheckPredicate, 0, 213, 17, 0, // Skip to: 8381 856/* 3816 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 857/* 3821 */ MCD::OPC_Decode, 132, 5, 50, // Opcode: CMPri 858/* 3825 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 3839 859/* 3830 */ MCD::OPC_CheckPredicate, 0, 194, 17, 0, // Skip to: 8381 860/* 3835 */ MCD::OPC_Decode, 233, 12, 47, // Opcode: ORRri 861/* 3839 */ MCD::OPC_FilterValue, 3, 185, 17, 0, // Skip to: 8381 862/* 3844 */ MCD::OPC_CheckPredicate, 0, 180, 17, 0, // Skip to: 8381 863/* 3849 */ MCD::OPC_Decode, 237, 4, 47, // Opcode: BICri 864/* 3853 */ MCD::OPC_FilterValue, 1, 171, 17, 0, // Skip to: 8381 865/* 3858 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 866/* 3861 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 3897 867/* 3866 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 868/* 3869 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3883 869/* 3874 */ MCD::OPC_CheckPredicate, 0, 150, 17, 0, // Skip to: 8381 870/* 3879 */ MCD::OPC_Decode, 148, 5, 47, // Opcode: EORri 871/* 3883 */ MCD::OPC_FilterValue, 1, 141, 17, 0, // Skip to: 8381 872/* 3888 */ MCD::OPC_CheckPredicate, 0, 136, 17, 0, // Skip to: 8381 873/* 3893 */ MCD::OPC_Decode, 139, 13, 47, // Opcode: RSBri 874/* 3897 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 3933 875/* 3902 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 876/* 3905 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 3919 877/* 3910 */ MCD::OPC_CheckPredicate, 0, 114, 17, 0, // Skip to: 8381 878/* 3915 */ MCD::OPC_Decode, 218, 4, 47, // Opcode: ADCri 879/* 3919 */ MCD::OPC_FilterValue, 1, 105, 17, 0, // Skip to: 8381 880/* 3924 */ MCD::OPC_CheckPredicate, 0, 100, 17, 0, // Skip to: 8381 881/* 3929 */ MCD::OPC_Decode, 143, 13, 47, // Opcode: RSCri 882/* 3933 */ MCD::OPC_FilterValue, 2, 168, 0, 0, // Skip to: 4106 883/* 3938 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 884/* 3941 */ MCD::OPC_FilterValue, 0, 114, 0, 0, // Skip to: 4060 885/* 3946 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 886/* 3949 */ MCD::OPC_FilterValue, 15, 75, 17, 0, // Skip to: 8381 887/* 3954 */ MCD::OPC_CheckPredicate, 14, 32, 0, 0, // Skip to: 3991 888/* 3959 */ MCD::OPC_CheckField, 28, 4, 14, 25, 0, 0, // Skip to: 3991 889/* 3966 */ MCD::OPC_CheckField, 22, 1, 0, 18, 0, 0, // Skip to: 3991 890/* 3973 */ MCD::OPC_CheckField, 16, 4, 0, 11, 0, 0, // Skip to: 3991 891/* 3980 */ MCD::OPC_CheckField, 0, 12, 18, 4, 0, 0, // Skip to: 3991 892/* 3987 */ MCD::OPC_Decode, 176, 14, 51, // Opcode: TSB 893/* 3991 */ MCD::OPC_CheckPredicate, 15, 25, 0, 0, // Skip to: 4021 894/* 3996 */ MCD::OPC_CheckField, 22, 1, 0, 18, 0, 0, // Skip to: 4021 895/* 4003 */ MCD::OPC_CheckField, 16, 4, 0, 11, 0, 0, // Skip to: 4021 896/* 4010 */ MCD::OPC_CheckField, 4, 8, 15, 4, 0, 0, // Skip to: 4021 897/* 4017 */ MCD::OPC_Decode, 145, 5, 36, // Opcode: DBG 898/* 4021 */ MCD::OPC_CheckPredicate, 1, 25, 0, 0, // Skip to: 4051 899/* 4026 */ MCD::OPC_CheckField, 22, 1, 0, 18, 0, 0, // Skip to: 4051 900/* 4033 */ MCD::OPC_CheckField, 16, 4, 0, 11, 0, 0, // Skip to: 4051 901/* 4040 */ MCD::OPC_CheckField, 8, 4, 0, 4, 0, 0, // Skip to: 4051 902/* 4047 */ MCD::OPC_Decode, 163, 5, 52, // Opcode: HINT 903/* 4051 */ MCD::OPC_CheckPredicate, 0, 229, 16, 0, // Skip to: 8381 904/* 4056 */ MCD::OPC_Decode, 132, 6, 53, // Opcode: MSRi 905/* 4060 */ MCD::OPC_FilterValue, 1, 220, 16, 0, // Skip to: 8381 906/* 4065 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 907/* 4068 */ MCD::OPC_FilterValue, 0, 14, 0, 0, // Skip to: 4087 908/* 4073 */ MCD::OPC_CheckPredicate, 0, 207, 16, 0, // Skip to: 8381 909/* 4078 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 910/* 4083 */ MCD::OPC_Decode, 170, 14, 50, // Opcode: TEQri 911/* 4087 */ MCD::OPC_FilterValue, 1, 193, 16, 0, // Skip to: 8381 912/* 4092 */ MCD::OPC_CheckPredicate, 0, 188, 16, 0, // Skip to: 8381 913/* 4097 */ MCD::OPC_SoftFail, 128, 224, 3 /* 0xf000 */, 0, 914/* 4102 */ MCD::OPC_Decode, 128, 5, 50, // Opcode: CMNri 915/* 4106 */ MCD::OPC_FilterValue, 3, 174, 16, 0, // Skip to: 8381 916/* 4111 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 917/* 4114 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4135 918/* 4119 */ MCD::OPC_CheckPredicate, 0, 161, 16, 0, // Skip to: 8381 919/* 4124 */ MCD::OPC_CheckField, 16, 4, 0, 154, 16, 0, // Skip to: 8381 920/* 4131 */ MCD::OPC_Decode, 245, 5, 54, // Opcode: MOVi 921/* 4135 */ MCD::OPC_FilterValue, 1, 145, 16, 0, // Skip to: 8381 922/* 4140 */ MCD::OPC_CheckPredicate, 0, 140, 16, 0, // Skip to: 8381 923/* 4145 */ MCD::OPC_CheckField, 16, 4, 0, 133, 16, 0, // Skip to: 8381 924/* 4152 */ MCD::OPC_Decode, 221, 12, 54, // Opcode: MVNi 925/* 4156 */ MCD::OPC_FilterValue, 2, 9, 2, 0, // Skip to: 4682 926/* 4161 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 927/* 4164 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 4200 928/* 4169 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 929/* 4172 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4186 930/* 4177 */ MCD::OPC_CheckPredicate, 0, 103, 16, 0, // Skip to: 8381 931/* 4182 */ MCD::OPC_Decode, 151, 14, 55, // Opcode: STR_POST_IMM 932/* 4186 */ MCD::OPC_FilterValue, 1, 94, 16, 0, // Skip to: 8381 933/* 4191 */ MCD::OPC_CheckPredicate, 0, 89, 16, 0, // Skip to: 8381 934/* 4196 */ MCD::OPC_Decode, 155, 14, 56, // Opcode: STRi12 935/* 4200 */ MCD::OPC_FilterValue, 1, 54, 0, 0, // Skip to: 4259 936/* 4205 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 937/* 4208 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4222 938/* 4213 */ MCD::OPC_CheckPredicate, 0, 67, 16, 0, // Skip to: 8381 939/* 4218 */ MCD::OPC_Decode, 230, 5, 55, // Opcode: LDR_POST_IMM 940/* 4222 */ MCD::OPC_FilterValue, 1, 58, 16, 0, // Skip to: 8381 941/* 4227 */ MCD::OPC_CheckPredicate, 16, 18, 0, 0, // Skip to: 4250 942/* 4232 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 4250 943/* 4239 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 4250 944/* 4246 */ MCD::OPC_Decode, 239, 12, 57, // Opcode: PLDWi12 945/* 4250 */ MCD::OPC_CheckPredicate, 0, 30, 16, 0, // Skip to: 8381 946/* 4255 */ MCD::OPC_Decode, 235, 5, 56, // Opcode: LDRi12 947/* 4259 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 4295 948/* 4264 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 949/* 4267 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4281 950/* 4272 */ MCD::OPC_CheckPredicate, 0, 8, 16, 0, // Skip to: 8381 951/* 4277 */ MCD::OPC_Decode, 149, 14, 55, // Opcode: STRT_POST_IMM 952/* 4281 */ MCD::OPC_FilterValue, 1, 255, 15, 0, // Skip to: 8381 953/* 4286 */ MCD::OPC_CheckPredicate, 0, 250, 15, 0, // Skip to: 8381 954/* 4291 */ MCD::OPC_Decode, 153, 14, 58, // Opcode: STR_PRE_IMM 955/* 4295 */ MCD::OPC_FilterValue, 3, 31, 0, 0, // Skip to: 4331 956/* 4300 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 957/* 4303 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4317 958/* 4308 */ MCD::OPC_CheckPredicate, 0, 228, 15, 0, // Skip to: 8381 959/* 4313 */ MCD::OPC_Decode, 228, 5, 55, // Opcode: LDRT_POST_IMM 960/* 4317 */ MCD::OPC_FilterValue, 1, 219, 15, 0, // Skip to: 8381 961/* 4322 */ MCD::OPC_CheckPredicate, 0, 214, 15, 0, // Skip to: 8381 962/* 4327 */ MCD::OPC_Decode, 232, 5, 59, // Opcode: LDR_PRE_IMM 963/* 4331 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 4367 964/* 4336 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 965/* 4339 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4353 966/* 4344 */ MCD::OPC_CheckPredicate, 0, 192, 15, 0, // Skip to: 8381 967/* 4349 */ MCD::OPC_Decode, 131, 14, 55, // Opcode: STRB_POST_IMM 968/* 4353 */ MCD::OPC_FilterValue, 1, 183, 15, 0, // Skip to: 8381 969/* 4358 */ MCD::OPC_CheckPredicate, 0, 178, 15, 0, // Skip to: 8381 970/* 4363 */ MCD::OPC_Decode, 135, 14, 60, // Opcode: STRBi12 971/* 4367 */ MCD::OPC_FilterValue, 5, 77, 0, 0, // Skip to: 4449 972/* 4372 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 973/* 4375 */ MCD::OPC_FilterValue, 0, 32, 0, 0, // Skip to: 4412 974/* 4380 */ MCD::OPC_CheckPredicate, 15, 18, 0, 0, // Skip to: 4403 975/* 4385 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 4403 976/* 4392 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 4403 977/* 4399 */ MCD::OPC_Decode, 243, 12, 57, // Opcode: PLIi12 978/* 4403 */ MCD::OPC_CheckPredicate, 0, 133, 15, 0, // Skip to: 8381 979/* 4408 */ MCD::OPC_Decode, 200, 5, 55, // Opcode: LDRB_POST_IMM 980/* 4412 */ MCD::OPC_FilterValue, 1, 124, 15, 0, // Skip to: 8381 981/* 4417 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 4440 982/* 4422 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 4440 983/* 4429 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 4440 984/* 4436 */ MCD::OPC_Decode, 241, 12, 57, // Opcode: PLDi12 985/* 4440 */ MCD::OPC_CheckPredicate, 0, 96, 15, 0, // Skip to: 8381 986/* 4445 */ MCD::OPC_Decode, 204, 5, 60, // Opcode: LDRBi12 987/* 4449 */ MCD::OPC_FilterValue, 6, 31, 0, 0, // Skip to: 4485 988/* 4454 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 989/* 4457 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4471 990/* 4462 */ MCD::OPC_CheckPredicate, 0, 74, 15, 0, // Skip to: 8381 991/* 4467 */ MCD::OPC_Decode, 129, 14, 55, // Opcode: STRBT_POST_IMM 992/* 4471 */ MCD::OPC_FilterValue, 1, 65, 15, 0, // Skip to: 8381 993/* 4476 */ MCD::OPC_CheckPredicate, 0, 60, 15, 0, // Skip to: 8381 994/* 4481 */ MCD::OPC_Decode, 133, 14, 58, // Opcode: STRB_PRE_IMM 995/* 4485 */ MCD::OPC_FilterValue, 7, 51, 15, 0, // Skip to: 8381 996/* 4490 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 997/* 4493 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4507 998/* 4498 */ MCD::OPC_CheckPredicate, 0, 38, 15, 0, // Skip to: 8381 999/* 4503 */ MCD::OPC_Decode, 198, 5, 55, // Opcode: LDRBT_POST_IMM 1000/* 4507 */ MCD::OPC_FilterValue, 1, 29, 15, 0, // Skip to: 8381 1001/* 4512 */ MCD::OPC_CheckPredicate, 17, 27, 0, 0, // Skip to: 4544 1002/* 4517 */ MCD::OPC_CheckField, 28, 4, 15, 20, 0, 0, // Skip to: 4544 1003/* 4524 */ MCD::OPC_CheckField, 23, 1, 0, 13, 0, 0, // Skip to: 4544 1004/* 4531 */ MCD::OPC_CheckField, 0, 20, 159, 224, 63, 4, 0, 0, // Skip to: 4544 1005/* 4540 */ MCD::OPC_Decode, 254, 4, 51, // Opcode: CLREX 1006/* 4544 */ MCD::OPC_ExtractField, 4, 16, // Inst{19-4} ... 1007/* 4547 */ MCD::OPC_FilterValue, 132, 254, 3, 23, 0, 0, // Skip to: 4577 1008/* 4554 */ MCD::OPC_CheckPredicate, 18, 78, 0, 0, // Skip to: 4637 1009/* 4559 */ MCD::OPC_CheckField, 28, 4, 15, 71, 0, 0, // Skip to: 4637 1010/* 4566 */ MCD::OPC_CheckField, 23, 1, 0, 64, 0, 0, // Skip to: 4637 1011/* 4573 */ MCD::OPC_Decode, 147, 5, 61, // Opcode: DSB 1012/* 4577 */ MCD::OPC_FilterValue, 133, 254, 3, 23, 0, 0, // Skip to: 4607 1013/* 4584 */ MCD::OPC_CheckPredicate, 18, 48, 0, 0, // Skip to: 4637 1014/* 4589 */ MCD::OPC_CheckField, 28, 4, 15, 41, 0, 0, // Skip to: 4637 1015/* 4596 */ MCD::OPC_CheckField, 23, 1, 0, 34, 0, 0, // Skip to: 4637 1016/* 4603 */ MCD::OPC_Decode, 146, 5, 61, // Opcode: DMB 1017/* 4607 */ MCD::OPC_FilterValue, 134, 254, 3, 23, 0, 0, // Skip to: 4637 1018/* 4614 */ MCD::OPC_CheckPredicate, 18, 18, 0, 0, // Skip to: 4637 1019/* 4619 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 4637 1020/* 4626 */ MCD::OPC_CheckField, 23, 1, 0, 4, 0, 0, // Skip to: 4637 1021/* 4633 */ MCD::OPC_Decode, 166, 5, 62, // Opcode: ISB 1022/* 4637 */ MCD::OPC_CheckPredicate, 19, 31, 0, 0, // Skip to: 4673 1023/* 4642 */ MCD::OPC_CheckField, 28, 4, 15, 24, 0, 0, // Skip to: 4673 1024/* 4649 */ MCD::OPC_CheckField, 23, 1, 0, 17, 0, 0, // Skip to: 4673 1025/* 4656 */ MCD::OPC_CheckField, 4, 4, 7, 10, 0, 0, // Skip to: 4673 1026/* 4663 */ MCD::OPC_SoftFail, 143, 30 /* 0xf0f */, 128, 224, 63 /* 0xff000 */, 1027/* 4669 */ MCD::OPC_Decode, 150, 13, 51, // Opcode: SB 1028/* 4673 */ MCD::OPC_CheckPredicate, 0, 119, 14, 0, // Skip to: 8381 1029/* 4678 */ MCD::OPC_Decode, 202, 5, 59, // Opcode: LDRB_PRE_IMM 1030/* 4682 */ MCD::OPC_FilterValue, 3, 129, 10, 0, // Skip to: 7376 1031/* 4687 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... 1032/* 4690 */ MCD::OPC_FilterValue, 0, 200, 2, 0, // Skip to: 5407 1033/* 4695 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 1034/* 4698 */ MCD::OPC_FilterValue, 0, 98, 0, 0, // Skip to: 4801 1035/* 4703 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1036/* 4706 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 4742 1037/* 4711 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1038/* 4714 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4728 1039/* 4719 */ MCD::OPC_CheckPredicate, 0, 73, 14, 0, // Skip to: 8381 1040/* 4724 */ MCD::OPC_Decode, 152, 14, 55, // Opcode: STR_POST_REG 1041/* 4728 */ MCD::OPC_FilterValue, 1, 64, 14, 0, // Skip to: 8381 1042/* 4733 */ MCD::OPC_CheckPredicate, 0, 59, 14, 0, // Skip to: 8381 1043/* 4738 */ MCD::OPC_Decode, 156, 14, 63, // Opcode: STRrs 1044/* 4742 */ MCD::OPC_FilterValue, 1, 50, 14, 0, // Skip to: 8381 1045/* 4747 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1046/* 4750 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 4764 1047/* 4755 */ MCD::OPC_CheckPredicate, 0, 37, 14, 0, // Skip to: 8381 1048/* 4760 */ MCD::OPC_Decode, 231, 5, 55, // Opcode: LDR_POST_REG 1049/* 4764 */ MCD::OPC_FilterValue, 1, 28, 14, 0, // Skip to: 8381 1050/* 4769 */ MCD::OPC_CheckPredicate, 16, 18, 0, 0, // Skip to: 4792 1051/* 4774 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 4792 1052/* 4781 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 4792 1053/* 4788 */ MCD::OPC_Decode, 240, 12, 64, // Opcode: PLDWrs 1054/* 4792 */ MCD::OPC_CheckPredicate, 0, 0, 14, 0, // Skip to: 8381 1055/* 4797 */ MCD::OPC_Decode, 236, 5, 63, // Opcode: LDRrs 1056/* 4801 */ MCD::OPC_FilterValue, 1, 247, 13, 0, // Skip to: 8381 1057/* 4806 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 1058/* 4809 */ MCD::OPC_FilterValue, 0, 202, 0, 0, // Skip to: 5016 1059/* 4814 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1060/* 4817 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 4875 1061/* 4822 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1062/* 4825 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 4850 1063/* 4830 */ MCD::OPC_CheckPredicate, 0, 218, 13, 0, // Skip to: 8381 1064/* 4835 */ MCD::OPC_CheckField, 20, 1, 1, 211, 13, 0, // Skip to: 8381 1065/* 4842 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1066/* 4846 */ MCD::OPC_Decode, 147, 13, 65, // Opcode: SADD16 1067/* 4850 */ MCD::OPC_FilterValue, 1, 198, 13, 0, // Skip to: 8381 1068/* 4855 */ MCD::OPC_CheckPredicate, 0, 193, 13, 0, // Skip to: 8381 1069/* 4860 */ MCD::OPC_CheckField, 20, 1, 1, 186, 13, 0, // Skip to: 8381 1070/* 4867 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1071/* 4871 */ MCD::OPC_Decode, 148, 13, 65, // Opcode: SADD8 1072/* 4875 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4896 1073/* 4880 */ MCD::OPC_CheckPredicate, 1, 168, 13, 0, // Skip to: 8381 1074/* 4885 */ MCD::OPC_CheckField, 20, 1, 0, 161, 13, 0, // Skip to: 8381 1075/* 4892 */ MCD::OPC_Decode, 237, 12, 66, // Opcode: PKHBT 1076/* 4896 */ MCD::OPC_FilterValue, 2, 69, 0, 0, // Skip to: 4970 1077/* 4901 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1078/* 4904 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 4942 1079/* 4909 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1080/* 4912 */ MCD::OPC_FilterValue, 0, 136, 13, 0, // Skip to: 8381 1081/* 4917 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 4933 1082/* 4922 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 4933 1083/* 4929 */ MCD::OPC_Decode, 202, 13, 67, // Opcode: SMUAD 1084/* 4933 */ MCD::OPC_CheckPredicate, 1, 115, 13, 0, // Skip to: 8381 1085/* 4938 */ MCD::OPC_Decode, 179, 13, 68, // Opcode: SMLAD 1086/* 4942 */ MCD::OPC_FilterValue, 1, 106, 13, 0, // Skip to: 8381 1087/* 4947 */ MCD::OPC_CheckPredicate, 20, 101, 13, 0, // Skip to: 8381 1088/* 4952 */ MCD::OPC_CheckField, 12, 4, 15, 94, 13, 0, // Skip to: 8381 1089/* 4959 */ MCD::OPC_CheckField, 7, 1, 0, 87, 13, 0, // Skip to: 8381 1090/* 4966 */ MCD::OPC_Decode, 156, 13, 30, // Opcode: SDIV 1091/* 4970 */ MCD::OPC_FilterValue, 3, 78, 13, 0, // Skip to: 8381 1092/* 4975 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1093/* 4978 */ MCD::OPC_FilterValue, 0, 70, 13, 0, // Skip to: 8381 1094/* 4983 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1095/* 4986 */ MCD::OPC_FilterValue, 0, 62, 13, 0, // Skip to: 8381 1096/* 4991 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 5007 1097/* 4996 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 5007 1098/* 5003 */ MCD::OPC_Decode, 202, 14, 30, // Opcode: USAD8 1099/* 5007 */ MCD::OPC_CheckPredicate, 1, 41, 13, 0, // Skip to: 8381 1100/* 5012 */ MCD::OPC_Decode, 203, 14, 39, // Opcode: USADA8 1101/* 5016 */ MCD::OPC_FilterValue, 1, 113, 0, 0, // Skip to: 5134 1102/* 5021 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1103/* 5024 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 5056 1104/* 5029 */ MCD::OPC_CheckPredicate, 0, 19, 13, 0, // Skip to: 8381 1105/* 5034 */ MCD::OPC_CheckField, 20, 1, 1, 12, 13, 0, // Skip to: 8381 1106/* 5041 */ MCD::OPC_CheckField, 7, 1, 0, 5, 13, 0, // Skip to: 8381 1107/* 5048 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1108/* 5052 */ MCD::OPC_Decode, 149, 13, 65, // Opcode: SASX 1109/* 5056 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 5088 1110/* 5061 */ MCD::OPC_CheckPredicate, 1, 243, 12, 0, // Skip to: 8381 1111/* 5066 */ MCD::OPC_CheckField, 20, 1, 0, 236, 12, 0, // Skip to: 8381 1112/* 5073 */ MCD::OPC_CheckField, 7, 1, 1, 229, 12, 0, // Skip to: 8381 1113/* 5080 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1114/* 5084 */ MCD::OPC_Decode, 157, 13, 69, // Opcode: SEL 1115/* 5088 */ MCD::OPC_FilterValue, 2, 216, 12, 0, // Skip to: 8381 1116/* 5093 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1117/* 5096 */ MCD::OPC_FilterValue, 0, 208, 12, 0, // Skip to: 8381 1118/* 5101 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1119/* 5104 */ MCD::OPC_FilterValue, 0, 200, 12, 0, // Skip to: 8381 1120/* 5109 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 5125 1121/* 5114 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 5125 1122/* 5121 */ MCD::OPC_Decode, 203, 13, 67, // Opcode: SMUADX 1123/* 5125 */ MCD::OPC_CheckPredicate, 1, 179, 12, 0, // Skip to: 8381 1124/* 5130 */ MCD::OPC_Decode, 180, 13, 68, // Opcode: SMLADX 1125/* 5134 */ MCD::OPC_FilterValue, 2, 102, 0, 0, // Skip to: 5241 1126/* 5139 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1127/* 5142 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 5174 1128/* 5147 */ MCD::OPC_CheckPredicate, 0, 157, 12, 0, // Skip to: 8381 1129/* 5152 */ MCD::OPC_CheckField, 20, 1, 1, 150, 12, 0, // Skip to: 8381 1130/* 5159 */ MCD::OPC_CheckField, 7, 1, 0, 143, 12, 0, // Skip to: 8381 1131/* 5166 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1132/* 5170 */ MCD::OPC_Decode, 223, 13, 65, // Opcode: SSAX 1133/* 5174 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 5195 1134/* 5179 */ MCD::OPC_CheckPredicate, 1, 125, 12, 0, // Skip to: 8381 1135/* 5184 */ MCD::OPC_CheckField, 20, 1, 0, 118, 12, 0, // Skip to: 8381 1136/* 5191 */ MCD::OPC_Decode, 238, 12, 66, // Opcode: PKHTB 1137/* 5195 */ MCD::OPC_FilterValue, 2, 109, 12, 0, // Skip to: 8381 1138/* 5200 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1139/* 5203 */ MCD::OPC_FilterValue, 0, 101, 12, 0, // Skip to: 8381 1140/* 5208 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1141/* 5211 */ MCD::OPC_FilterValue, 0, 93, 12, 0, // Skip to: 8381 1142/* 5216 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 5232 1143/* 5221 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 5232 1144/* 5228 */ MCD::OPC_Decode, 211, 13, 67, // Opcode: SMUSD 1145/* 5232 */ MCD::OPC_CheckPredicate, 1, 72, 12, 0, // Skip to: 8381 1146/* 5237 */ MCD::OPC_Decode, 192, 13, 68, // Opcode: SMLSD 1147/* 5241 */ MCD::OPC_FilterValue, 3, 63, 12, 0, // Skip to: 8381 1148/* 5246 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1149/* 5249 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 5307 1150/* 5254 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1151/* 5257 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 5282 1152/* 5262 */ MCD::OPC_CheckPredicate, 0, 42, 12, 0, // Skip to: 8381 1153/* 5267 */ MCD::OPC_CheckField, 20, 1, 1, 35, 12, 0, // Skip to: 8381 1154/* 5274 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1155/* 5278 */ MCD::OPC_Decode, 224, 13, 65, // Opcode: SSUB16 1156/* 5282 */ MCD::OPC_FilterValue, 1, 22, 12, 0, // Skip to: 8381 1157/* 5287 */ MCD::OPC_CheckPredicate, 0, 17, 12, 0, // Skip to: 8381 1158/* 5292 */ MCD::OPC_CheckField, 20, 1, 1, 10, 12, 0, // Skip to: 8381 1159/* 5299 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1160/* 5303 */ MCD::OPC_Decode, 225, 13, 65, // Opcode: SSUB8 1161/* 5307 */ MCD::OPC_FilterValue, 1, 49, 0, 0, // Skip to: 5361 1162/* 5312 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1163/* 5315 */ MCD::OPC_FilterValue, 0, 245, 11, 0, // Skip to: 8381 1164/* 5320 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1165/* 5323 */ MCD::OPC_FilterValue, 0, 237, 11, 0, // Skip to: 8381 1166/* 5328 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 5348 1167/* 5333 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 5348 1168/* 5340 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1169/* 5344 */ MCD::OPC_Decode, 168, 14, 70, // Opcode: SXTB16 1170/* 5348 */ MCD::OPC_CheckPredicate, 1, 212, 11, 0, // Skip to: 8381 1171/* 5353 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1172/* 5357 */ MCD::OPC_Decode, 165, 14, 71, // Opcode: SXTAB16 1173/* 5361 */ MCD::OPC_FilterValue, 2, 199, 11, 0, // Skip to: 8381 1174/* 5366 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1175/* 5369 */ MCD::OPC_FilterValue, 0, 191, 11, 0, // Skip to: 8381 1176/* 5374 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1177/* 5377 */ MCD::OPC_FilterValue, 0, 183, 11, 0, // Skip to: 8381 1178/* 5382 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 5398 1179/* 5387 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 5398 1180/* 5394 */ MCD::OPC_Decode, 212, 13, 67, // Opcode: SMUSDX 1181/* 5398 */ MCD::OPC_CheckPredicate, 1, 162, 11, 0, // Skip to: 8381 1182/* 5403 */ MCD::OPC_Decode, 193, 13, 68, // Opcode: SMLSDX 1183/* 5407 */ MCD::OPC_FilterValue, 1, 106, 2, 0, // Skip to: 6030 1184/* 5412 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 1185/* 5415 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 5495 1186/* 5420 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1187/* 5423 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 5459 1188/* 5428 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1189/* 5431 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5445 1190/* 5436 */ MCD::OPC_CheckPredicate, 0, 124, 11, 0, // Skip to: 8381 1191/* 5441 */ MCD::OPC_Decode, 150, 14, 55, // Opcode: STRT_POST_REG 1192/* 5445 */ MCD::OPC_FilterValue, 1, 115, 11, 0, // Skip to: 8381 1193/* 5450 */ MCD::OPC_CheckPredicate, 0, 110, 11, 0, // Skip to: 8381 1194/* 5455 */ MCD::OPC_Decode, 154, 14, 72, // Opcode: STR_PRE_REG 1195/* 5459 */ MCD::OPC_FilterValue, 1, 101, 11, 0, // Skip to: 8381 1196/* 5464 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1197/* 5467 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5481 1198/* 5472 */ MCD::OPC_CheckPredicate, 0, 88, 11, 0, // Skip to: 8381 1199/* 5477 */ MCD::OPC_Decode, 229, 5, 55, // Opcode: LDRT_POST_REG 1200/* 5481 */ MCD::OPC_FilterValue, 1, 79, 11, 0, // Skip to: 8381 1201/* 5486 */ MCD::OPC_CheckPredicate, 0, 74, 11, 0, // Skip to: 8381 1202/* 5491 */ MCD::OPC_Decode, 233, 5, 73, // Opcode: LDR_PRE_REG 1203/* 5495 */ MCD::OPC_FilterValue, 1, 65, 11, 0, // Skip to: 8381 1204/* 5500 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1205/* 5503 */ MCD::OPC_FilterValue, 0, 11, 1, 0, // Skip to: 5775 1206/* 5508 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 1207/* 5511 */ MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 5555 1208/* 5516 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1209/* 5519 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5537 1210/* 5524 */ MCD::OPC_CheckPredicate, 0, 36, 11, 0, // Skip to: 8381 1211/* 5529 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1212/* 5533 */ MCD::OPC_Decode, 246, 12, 65, // Opcode: QADD16 1213/* 5537 */ MCD::OPC_FilterValue, 1, 23, 11, 0, // Skip to: 8381 1214/* 5542 */ MCD::OPC_CheckPredicate, 0, 18, 11, 0, // Skip to: 8381 1215/* 5547 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1216/* 5551 */ MCD::OPC_Decode, 170, 13, 65, // Opcode: SHADD16 1217/* 5555 */ MCD::OPC_FilterValue, 1, 39, 0, 0, // Skip to: 5599 1218/* 5560 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1219/* 5563 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5581 1220/* 5568 */ MCD::OPC_CheckPredicate, 0, 248, 10, 0, // Skip to: 8381 1221/* 5573 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1222/* 5577 */ MCD::OPC_Decode, 248, 12, 65, // Opcode: QASX 1223/* 5581 */ MCD::OPC_FilterValue, 1, 235, 10, 0, // Skip to: 8381 1224/* 5586 */ MCD::OPC_CheckPredicate, 0, 230, 10, 0, // Skip to: 8381 1225/* 5591 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1226/* 5595 */ MCD::OPC_Decode, 172, 13, 65, // Opcode: SHASX 1227/* 5599 */ MCD::OPC_FilterValue, 2, 39, 0, 0, // Skip to: 5643 1228/* 5604 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1229/* 5607 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5625 1230/* 5612 */ MCD::OPC_CheckPredicate, 0, 204, 10, 0, // Skip to: 8381 1231/* 5617 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1232/* 5621 */ MCD::OPC_Decode, 251, 12, 65, // Opcode: QSAX 1233/* 5625 */ MCD::OPC_FilterValue, 1, 191, 10, 0, // Skip to: 8381 1234/* 5630 */ MCD::OPC_CheckPredicate, 0, 186, 10, 0, // Skip to: 8381 1235/* 5635 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1236/* 5639 */ MCD::OPC_Decode, 173, 13, 65, // Opcode: SHSAX 1237/* 5643 */ MCD::OPC_FilterValue, 3, 39, 0, 0, // Skip to: 5687 1238/* 5648 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1239/* 5651 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5669 1240/* 5656 */ MCD::OPC_CheckPredicate, 0, 160, 10, 0, // Skip to: 8381 1241/* 5661 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1242/* 5665 */ MCD::OPC_Decode, 253, 12, 65, // Opcode: QSUB16 1243/* 5669 */ MCD::OPC_FilterValue, 1, 147, 10, 0, // Skip to: 8381 1244/* 5674 */ MCD::OPC_CheckPredicate, 0, 142, 10, 0, // Skip to: 8381 1245/* 5679 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1246/* 5683 */ MCD::OPC_Decode, 174, 13, 65, // Opcode: SHSUB16 1247/* 5687 */ MCD::OPC_FilterValue, 4, 39, 0, 0, // Skip to: 5731 1248/* 5692 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1249/* 5695 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5713 1250/* 5700 */ MCD::OPC_CheckPredicate, 0, 116, 10, 0, // Skip to: 8381 1251/* 5705 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1252/* 5709 */ MCD::OPC_Decode, 247, 12, 65, // Opcode: QADD8 1253/* 5713 */ MCD::OPC_FilterValue, 1, 103, 10, 0, // Skip to: 8381 1254/* 5718 */ MCD::OPC_CheckPredicate, 0, 98, 10, 0, // Skip to: 8381 1255/* 5723 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1256/* 5727 */ MCD::OPC_Decode, 171, 13, 65, // Opcode: SHADD8 1257/* 5731 */ MCD::OPC_FilterValue, 7, 85, 10, 0, // Skip to: 8381 1258/* 5736 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1259/* 5739 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 5757 1260/* 5744 */ MCD::OPC_CheckPredicate, 0, 72, 10, 0, // Skip to: 8381 1261/* 5749 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1262/* 5753 */ MCD::OPC_Decode, 254, 12, 65, // Opcode: QSUB8 1263/* 5757 */ MCD::OPC_FilterValue, 1, 59, 10, 0, // Skip to: 8381 1264/* 5762 */ MCD::OPC_CheckPredicate, 0, 54, 10, 0, // Skip to: 8381 1265/* 5767 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1266/* 5771 */ MCD::OPC_Decode, 175, 13, 65, // Opcode: SHSUB8 1267/* 5775 */ MCD::OPC_FilterValue, 1, 194, 0, 0, // Skip to: 5974 1268/* 5780 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 1269/* 5783 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 5797 1270/* 5788 */ MCD::OPC_CheckPredicate, 1, 28, 10, 0, // Skip to: 8381 1271/* 5793 */ MCD::OPC_Decode, 221, 13, 74, // Opcode: SSAT 1272/* 5797 */ MCD::OPC_FilterValue, 1, 19, 10, 0, // Skip to: 8381 1273/* 5802 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 1274/* 5805 */ MCD::OPC_FilterValue, 0, 52, 0, 0, // Skip to: 5862 1275/* 5810 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1276/* 5813 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 5834 1277/* 5818 */ MCD::OPC_CheckPredicate, 1, 254, 9, 0, // Skip to: 8381 1278/* 5823 */ MCD::OPC_CheckField, 8, 4, 15, 247, 9, 0, // Skip to: 8381 1279/* 5830 */ MCD::OPC_Decode, 222, 13, 75, // Opcode: SSAT16 1280/* 5834 */ MCD::OPC_FilterValue, 1, 238, 9, 0, // Skip to: 8381 1281/* 5839 */ MCD::OPC_CheckPredicate, 1, 233, 9, 0, // Skip to: 8381 1282/* 5844 */ MCD::OPC_CheckField, 16, 4, 15, 226, 9, 0, // Skip to: 8381 1283/* 5851 */ MCD::OPC_CheckField, 8, 4, 15, 219, 9, 0, // Skip to: 8381 1284/* 5858 */ MCD::OPC_Decode, 128, 13, 35, // Opcode: REV 1285/* 5862 */ MCD::OPC_FilterValue, 1, 79, 0, 0, // Skip to: 5946 1286/* 5867 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1287/* 5870 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 5908 1288/* 5875 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 5895 1289/* 5880 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 5895 1290/* 5887 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1291/* 5891 */ MCD::OPC_Decode, 167, 14, 70, // Opcode: SXTB 1292/* 5895 */ MCD::OPC_CheckPredicate, 1, 177, 9, 0, // Skip to: 8381 1293/* 5900 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1294/* 5904 */ MCD::OPC_Decode, 164, 14, 71, // Opcode: SXTAB 1295/* 5908 */ MCD::OPC_FilterValue, 1, 164, 9, 0, // Skip to: 8381 1296/* 5913 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 5933 1297/* 5918 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 5933 1298/* 5925 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1299/* 5929 */ MCD::OPC_Decode, 169, 14, 70, // Opcode: SXTH 1300/* 5933 */ MCD::OPC_CheckPredicate, 1, 139, 9, 0, // Skip to: 8381 1301/* 5938 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1302/* 5942 */ MCD::OPC_Decode, 166, 14, 71, // Opcode: SXTAH 1303/* 5946 */ MCD::OPC_FilterValue, 2, 126, 9, 0, // Skip to: 8381 1304/* 5951 */ MCD::OPC_CheckPredicate, 1, 121, 9, 0, // Skip to: 8381 1305/* 5956 */ MCD::OPC_CheckField, 16, 5, 31, 114, 9, 0, // Skip to: 8381 1306/* 5963 */ MCD::OPC_CheckField, 8, 4, 15, 107, 9, 0, // Skip to: 8381 1307/* 5970 */ MCD::OPC_Decode, 129, 13, 35, // Opcode: REV16 1308/* 5974 */ MCD::OPC_FilterValue, 2, 30, 0, 0, // Skip to: 6009 1309/* 5979 */ MCD::OPC_CheckPredicate, 20, 93, 9, 0, // Skip to: 8381 1310/* 5984 */ MCD::OPC_CheckField, 20, 1, 1, 86, 9, 0, // Skip to: 8381 1311/* 5991 */ MCD::OPC_CheckField, 12, 4, 15, 79, 9, 0, // Skip to: 8381 1312/* 5998 */ MCD::OPC_CheckField, 5, 3, 0, 72, 9, 0, // Skip to: 8381 1313/* 6005 */ MCD::OPC_Decode, 186, 14, 30, // Opcode: UDIV 1314/* 6009 */ MCD::OPC_FilterValue, 3, 63, 9, 0, // Skip to: 8381 1315/* 6014 */ MCD::OPC_CheckPredicate, 13, 58, 9, 0, // Skip to: 8381 1316/* 6019 */ MCD::OPC_CheckField, 5, 2, 2, 51, 9, 0, // Skip to: 8381 1317/* 6026 */ MCD::OPC_Decode, 155, 13, 76, // Opcode: SBFX 1318/* 6030 */ MCD::OPC_FilterValue, 2, 155, 2, 0, // Skip to: 6702 1319/* 6035 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 1320/* 6038 */ MCD::OPC_FilterValue, 0, 121, 0, 0, // Skip to: 6164 1321/* 6043 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1322/* 6046 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 6082 1323/* 6051 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1324/* 6054 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 6068 1325/* 6059 */ MCD::OPC_CheckPredicate, 0, 13, 9, 0, // Skip to: 8381 1326/* 6064 */ MCD::OPC_Decode, 132, 14, 55, // Opcode: STRB_POST_REG 1327/* 6068 */ MCD::OPC_FilterValue, 1, 4, 9, 0, // Skip to: 8381 1328/* 6073 */ MCD::OPC_CheckPredicate, 0, 255, 8, 0, // Skip to: 8381 1329/* 6078 */ MCD::OPC_Decode, 136, 14, 77, // Opcode: STRBrs 1330/* 6082 */ MCD::OPC_FilterValue, 1, 246, 8, 0, // Skip to: 8381 1331/* 6087 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1332/* 6090 */ MCD::OPC_FilterValue, 0, 32, 0, 0, // Skip to: 6127 1333/* 6095 */ MCD::OPC_CheckPredicate, 15, 18, 0, 0, // Skip to: 6118 1334/* 6100 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 6118 1335/* 6107 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 6118 1336/* 6114 */ MCD::OPC_Decode, 244, 12, 64, // Opcode: PLIrs 1337/* 6118 */ MCD::OPC_CheckPredicate, 0, 210, 8, 0, // Skip to: 8381 1338/* 6123 */ MCD::OPC_Decode, 201, 5, 55, // Opcode: LDRB_POST_REG 1339/* 6127 */ MCD::OPC_FilterValue, 1, 201, 8, 0, // Skip to: 8381 1340/* 6132 */ MCD::OPC_CheckPredicate, 0, 18, 0, 0, // Skip to: 6155 1341/* 6137 */ MCD::OPC_CheckField, 28, 4, 15, 11, 0, 0, // Skip to: 6155 1342/* 6144 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 6155 1343/* 6151 */ MCD::OPC_Decode, 242, 12, 64, // Opcode: PLDrs 1344/* 6155 */ MCD::OPC_CheckPredicate, 0, 173, 8, 0, // Skip to: 8381 1345/* 6160 */ MCD::OPC_Decode, 205, 5, 77, // Opcode: LDRBrs 1346/* 6164 */ MCD::OPC_FilterValue, 1, 164, 8, 0, // Skip to: 8381 1347/* 6169 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 1348/* 6172 */ MCD::OPC_FilterValue, 0, 158, 0, 0, // Skip to: 6335 1349/* 6177 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1350/* 6180 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 6238 1351/* 6185 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1352/* 6188 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 6213 1353/* 6193 */ MCD::OPC_CheckPredicate, 0, 135, 8, 0, // Skip to: 8381 1354/* 6198 */ MCD::OPC_CheckField, 20, 1, 1, 128, 8, 0, // Skip to: 8381 1355/* 6205 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1356/* 6209 */ MCD::OPC_Decode, 181, 14, 65, // Opcode: UADD16 1357/* 6213 */ MCD::OPC_FilterValue, 1, 115, 8, 0, // Skip to: 8381 1358/* 6218 */ MCD::OPC_CheckPredicate, 0, 110, 8, 0, // Skip to: 8381 1359/* 6223 */ MCD::OPC_CheckField, 20, 1, 1, 103, 8, 0, // Skip to: 8381 1360/* 6230 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1361/* 6234 */ MCD::OPC_Decode, 182, 14, 65, // Opcode: UADD8 1362/* 6238 */ MCD::OPC_FilterValue, 2, 62, 0, 0, // Skip to: 6305 1363/* 6243 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1364/* 6246 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 6267 1365/* 6251 */ MCD::OPC_CheckPredicate, 1, 77, 8, 0, // Skip to: 8381 1366/* 6256 */ MCD::OPC_CheckField, 7, 1, 0, 70, 8, 0, // Skip to: 8381 1367/* 6263 */ MCD::OPC_Decode, 184, 13, 19, // Opcode: SMLALD 1368/* 6267 */ MCD::OPC_FilterValue, 1, 61, 8, 0, // Skip to: 8381 1369/* 6272 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1370/* 6275 */ MCD::OPC_FilterValue, 0, 53, 8, 0, // Skip to: 8381 1371/* 6280 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 6296 1372/* 6285 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 6296 1373/* 6292 */ MCD::OPC_Decode, 200, 13, 30, // Opcode: SMMUL 1374/* 6296 */ MCD::OPC_CheckPredicate, 1, 32, 8, 0, // Skip to: 8381 1375/* 6301 */ MCD::OPC_Decode, 196, 13, 39, // Opcode: SMMLA 1376/* 6305 */ MCD::OPC_FilterValue, 3, 23, 8, 0, // Skip to: 8381 1377/* 6310 */ MCD::OPC_CheckPredicate, 13, 11, 0, 0, // Skip to: 6326 1378/* 6315 */ MCD::OPC_CheckField, 0, 4, 15, 4, 0, 0, // Skip to: 6326 1379/* 6322 */ MCD::OPC_Decode, 235, 4, 78, // Opcode: BFC 1380/* 6326 */ MCD::OPC_CheckPredicate, 13, 2, 8, 0, // Skip to: 8381 1381/* 6331 */ MCD::OPC_Decode, 236, 4, 79, // Opcode: BFI 1382/* 6335 */ MCD::OPC_FilterValue, 1, 102, 0, 0, // Skip to: 6442 1383/* 6340 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1384/* 6343 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 6371 1385/* 6348 */ MCD::OPC_CheckPredicate, 1, 236, 7, 0, // Skip to: 8381 1386/* 6353 */ MCD::OPC_CheckField, 23, 2, 2, 229, 7, 0, // Skip to: 8381 1387/* 6360 */ MCD::OPC_CheckField, 7, 1, 0, 222, 7, 0, // Skip to: 8381 1388/* 6367 */ MCD::OPC_Decode, 185, 13, 19, // Opcode: SMLALDX 1389/* 6371 */ MCD::OPC_FilterValue, 1, 213, 7, 0, // Skip to: 8381 1390/* 6376 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1391/* 6379 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 6404 1392/* 6384 */ MCD::OPC_CheckPredicate, 0, 200, 7, 0, // Skip to: 8381 1393/* 6389 */ MCD::OPC_CheckField, 7, 1, 0, 193, 7, 0, // Skip to: 8381 1394/* 6396 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1395/* 6400 */ MCD::OPC_Decode, 183, 14, 65, // Opcode: UASX 1396/* 6404 */ MCD::OPC_FilterValue, 2, 180, 7, 0, // Skip to: 8381 1397/* 6409 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1398/* 6412 */ MCD::OPC_FilterValue, 0, 172, 7, 0, // Skip to: 8381 1399/* 6417 */ MCD::OPC_CheckPredicate, 1, 11, 0, 0, // Skip to: 6433 1400/* 6422 */ MCD::OPC_CheckField, 12, 4, 15, 4, 0, 0, // Skip to: 6433 1401/* 6429 */ MCD::OPC_Decode, 201, 13, 30, // Opcode: SMMULR 1402/* 6433 */ MCD::OPC_CheckPredicate, 1, 151, 7, 0, // Skip to: 8381 1403/* 6438 */ MCD::OPC_Decode, 197, 13, 39, // Opcode: SMMLAR 1404/* 6442 */ MCD::OPC_FilterValue, 2, 85, 0, 0, // Skip to: 6532 1405/* 6447 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1406/* 6450 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 6504 1407/* 6455 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1408/* 6458 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 6479 1409/* 6463 */ MCD::OPC_CheckPredicate, 1, 121, 7, 0, // Skip to: 8381 1410/* 6468 */ MCD::OPC_CheckField, 23, 2, 2, 114, 7, 0, // Skip to: 8381 1411/* 6475 */ MCD::OPC_Decode, 194, 13, 19, // Opcode: SMLSLD 1412/* 6479 */ MCD::OPC_FilterValue, 1, 105, 7, 0, // Skip to: 8381 1413/* 6484 */ MCD::OPC_CheckPredicate, 0, 100, 7, 0, // Skip to: 8381 1414/* 6489 */ MCD::OPC_CheckField, 23, 2, 0, 93, 7, 0, // Skip to: 8381 1415/* 6496 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1416/* 6500 */ MCD::OPC_Decode, 206, 14, 65, // Opcode: USAX 1417/* 6504 */ MCD::OPC_FilterValue, 1, 80, 7, 0, // Skip to: 8381 1418/* 6509 */ MCD::OPC_CheckPredicate, 1, 75, 7, 0, // Skip to: 8381 1419/* 6514 */ MCD::OPC_CheckField, 23, 2, 2, 68, 7, 0, // Skip to: 8381 1420/* 6521 */ MCD::OPC_CheckField, 20, 1, 1, 61, 7, 0, // Skip to: 8381 1421/* 6528 */ MCD::OPC_Decode, 198, 13, 39, // Opcode: SMMLS 1422/* 6532 */ MCD::OPC_FilterValue, 3, 52, 7, 0, // Skip to: 8381 1423/* 6537 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1424/* 6540 */ MCD::OPC_FilterValue, 0, 53, 0, 0, // Skip to: 6598 1425/* 6545 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1426/* 6548 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 6573 1427/* 6553 */ MCD::OPC_CheckPredicate, 0, 31, 7, 0, // Skip to: 8381 1428/* 6558 */ MCD::OPC_CheckField, 20, 1, 1, 24, 7, 0, // Skip to: 8381 1429/* 6565 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1430/* 6569 */ MCD::OPC_Decode, 207, 14, 65, // Opcode: USUB16 1431/* 6573 */ MCD::OPC_FilterValue, 1, 11, 7, 0, // Skip to: 8381 1432/* 6578 */ MCD::OPC_CheckPredicate, 0, 6, 7, 0, // Skip to: 8381 1433/* 6583 */ MCD::OPC_CheckField, 20, 1, 1, 255, 6, 0, // Skip to: 8381 1434/* 6590 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1435/* 6594 */ MCD::OPC_Decode, 208, 14, 65, // Opcode: USUB8 1436/* 6598 */ MCD::OPC_FilterValue, 1, 49, 0, 0, // Skip to: 6652 1437/* 6603 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1438/* 6606 */ MCD::OPC_FilterValue, 0, 234, 6, 0, // Skip to: 8381 1439/* 6611 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1440/* 6614 */ MCD::OPC_FilterValue, 0, 226, 6, 0, // Skip to: 8381 1441/* 6619 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 6639 1442/* 6624 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 6639 1443/* 6631 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1444/* 6635 */ MCD::OPC_Decode, 213, 14, 70, // Opcode: UXTB16 1445/* 6639 */ MCD::OPC_CheckPredicate, 1, 201, 6, 0, // Skip to: 8381 1446/* 6644 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1447/* 6648 */ MCD::OPC_Decode, 210, 14, 71, // Opcode: UXTAB16 1448/* 6652 */ MCD::OPC_FilterValue, 2, 188, 6, 0, // Skip to: 8381 1449/* 6657 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1450/* 6660 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 6681 1451/* 6665 */ MCD::OPC_CheckPredicate, 1, 175, 6, 0, // Skip to: 8381 1452/* 6670 */ MCD::OPC_CheckField, 20, 1, 0, 168, 6, 0, // Skip to: 8381 1453/* 6677 */ MCD::OPC_Decode, 195, 13, 19, // Opcode: SMLSLDX 1454/* 6681 */ MCD::OPC_FilterValue, 1, 159, 6, 0, // Skip to: 8381 1455/* 6686 */ MCD::OPC_CheckPredicate, 1, 154, 6, 0, // Skip to: 8381 1456/* 6691 */ MCD::OPC_CheckField, 20, 1, 1, 147, 6, 0, // Skip to: 8381 1457/* 6698 */ MCD::OPC_Decode, 199, 13, 39, // Opcode: SMMLSR 1458/* 6702 */ MCD::OPC_FilterValue, 3, 138, 6, 0, // Skip to: 8381 1459/* 6707 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 1460/* 6710 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 6790 1461/* 6715 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1462/* 6718 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 6754 1463/* 6723 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1464/* 6726 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 6740 1465/* 6731 */ MCD::OPC_CheckPredicate, 0, 109, 6, 0, // Skip to: 8381 1466/* 6736 */ MCD::OPC_Decode, 130, 14, 55, // Opcode: STRBT_POST_REG 1467/* 6740 */ MCD::OPC_FilterValue, 1, 100, 6, 0, // Skip to: 8381 1468/* 6745 */ MCD::OPC_CheckPredicate, 0, 95, 6, 0, // Skip to: 8381 1469/* 6750 */ MCD::OPC_Decode, 134, 14, 72, // Opcode: STRB_PRE_REG 1470/* 6754 */ MCD::OPC_FilterValue, 1, 86, 6, 0, // Skip to: 8381 1471/* 6759 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1472/* 6762 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 6776 1473/* 6767 */ MCD::OPC_CheckPredicate, 0, 73, 6, 0, // Skip to: 8381 1474/* 6772 */ MCD::OPC_Decode, 199, 5, 55, // Opcode: LDRBT_POST_REG 1475/* 6776 */ MCD::OPC_FilterValue, 1, 64, 6, 0, // Skip to: 8381 1476/* 6781 */ MCD::OPC_CheckPredicate, 0, 59, 6, 0, // Skip to: 8381 1477/* 6786 */ MCD::OPC_Decode, 203, 5, 73, // Opcode: LDRB_PRE_REG 1478/* 6790 */ MCD::OPC_FilterValue, 1, 50, 6, 0, // Skip to: 8381 1479/* 6795 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 1480/* 6798 */ MCD::OPC_FilterValue, 0, 11, 1, 0, // Skip to: 7070 1481/* 6803 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 1482/* 6806 */ MCD::OPC_FilterValue, 0, 39, 0, 0, // Skip to: 6850 1483/* 6811 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1484/* 6814 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 6832 1485/* 6819 */ MCD::OPC_CheckPredicate, 0, 21, 6, 0, // Skip to: 8381 1486/* 6824 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1487/* 6828 */ MCD::OPC_Decode, 196, 14, 65, // Opcode: UQADD16 1488/* 6832 */ MCD::OPC_FilterValue, 1, 8, 6, 0, // Skip to: 8381 1489/* 6837 */ MCD::OPC_CheckPredicate, 0, 3, 6, 0, // Skip to: 8381 1490/* 6842 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1491/* 6846 */ MCD::OPC_Decode, 187, 14, 65, // Opcode: UHADD16 1492/* 6850 */ MCD::OPC_FilterValue, 1, 39, 0, 0, // Skip to: 6894 1493/* 6855 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1494/* 6858 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 6876 1495/* 6863 */ MCD::OPC_CheckPredicate, 0, 233, 5, 0, // Skip to: 8381 1496/* 6868 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1497/* 6872 */ MCD::OPC_Decode, 198, 14, 65, // Opcode: UQASX 1498/* 6876 */ MCD::OPC_FilterValue, 1, 220, 5, 0, // Skip to: 8381 1499/* 6881 */ MCD::OPC_CheckPredicate, 0, 215, 5, 0, // Skip to: 8381 1500/* 6886 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1501/* 6890 */ MCD::OPC_Decode, 189, 14, 65, // Opcode: UHASX 1502/* 6894 */ MCD::OPC_FilterValue, 2, 39, 0, 0, // Skip to: 6938 1503/* 6899 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1504/* 6902 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 6920 1505/* 6907 */ MCD::OPC_CheckPredicate, 0, 189, 5, 0, // Skip to: 8381 1506/* 6912 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1507/* 6916 */ MCD::OPC_Decode, 199, 14, 65, // Opcode: UQSAX 1508/* 6920 */ MCD::OPC_FilterValue, 1, 176, 5, 0, // Skip to: 8381 1509/* 6925 */ MCD::OPC_CheckPredicate, 0, 171, 5, 0, // Skip to: 8381 1510/* 6930 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1511/* 6934 */ MCD::OPC_Decode, 190, 14, 65, // Opcode: UHSAX 1512/* 6938 */ MCD::OPC_FilterValue, 3, 39, 0, 0, // Skip to: 6982 1513/* 6943 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1514/* 6946 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 6964 1515/* 6951 */ MCD::OPC_CheckPredicate, 0, 145, 5, 0, // Skip to: 8381 1516/* 6956 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1517/* 6960 */ MCD::OPC_Decode, 200, 14, 65, // Opcode: UQSUB16 1518/* 6964 */ MCD::OPC_FilterValue, 1, 132, 5, 0, // Skip to: 8381 1519/* 6969 */ MCD::OPC_CheckPredicate, 0, 127, 5, 0, // Skip to: 8381 1520/* 6974 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1521/* 6978 */ MCD::OPC_Decode, 191, 14, 65, // Opcode: UHSUB16 1522/* 6982 */ MCD::OPC_FilterValue, 4, 39, 0, 0, // Skip to: 7026 1523/* 6987 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1524/* 6990 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 7008 1525/* 6995 */ MCD::OPC_CheckPredicate, 0, 101, 5, 0, // Skip to: 8381 1526/* 7000 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1527/* 7004 */ MCD::OPC_Decode, 197, 14, 65, // Opcode: UQADD8 1528/* 7008 */ MCD::OPC_FilterValue, 1, 88, 5, 0, // Skip to: 8381 1529/* 7013 */ MCD::OPC_CheckPredicate, 0, 83, 5, 0, // Skip to: 8381 1530/* 7018 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1531/* 7022 */ MCD::OPC_Decode, 188, 14, 65, // Opcode: UHADD8 1532/* 7026 */ MCD::OPC_FilterValue, 7, 70, 5, 0, // Skip to: 8381 1533/* 7031 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1534/* 7034 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 7052 1535/* 7039 */ MCD::OPC_CheckPredicate, 0, 57, 5, 0, // Skip to: 8381 1536/* 7044 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1537/* 7048 */ MCD::OPC_Decode, 201, 14, 65, // Opcode: UQSUB8 1538/* 7052 */ MCD::OPC_FilterValue, 1, 44, 5, 0, // Skip to: 8381 1539/* 7057 */ MCD::OPC_CheckPredicate, 0, 39, 5, 0, // Skip to: 8381 1540/* 7062 */ MCD::OPC_SoftFail, 0, 128, 30 /* 0xf00 */, 1541/* 7066 */ MCD::OPC_Decode, 192, 14, 65, // Opcode: UHSUB8 1542/* 7070 */ MCD::OPC_FilterValue, 1, 194, 0, 0, // Skip to: 7269 1543/* 7075 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 1544/* 7078 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 7092 1545/* 7083 */ MCD::OPC_CheckPredicate, 1, 13, 5, 0, // Skip to: 8381 1546/* 7088 */ MCD::OPC_Decode, 204, 14, 74, // Opcode: USAT 1547/* 7092 */ MCD::OPC_FilterValue, 1, 4, 5, 0, // Skip to: 8381 1548/* 7097 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 1549/* 7100 */ MCD::OPC_FilterValue, 0, 52, 0, 0, // Skip to: 7157 1550/* 7105 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1551/* 7108 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 7129 1552/* 7113 */ MCD::OPC_CheckPredicate, 1, 239, 4, 0, // Skip to: 8381 1553/* 7118 */ MCD::OPC_CheckField, 8, 4, 15, 232, 4, 0, // Skip to: 8381 1554/* 7125 */ MCD::OPC_Decode, 205, 14, 75, // Opcode: USAT16 1555/* 7129 */ MCD::OPC_FilterValue, 1, 223, 4, 0, // Skip to: 8381 1556/* 7134 */ MCD::OPC_CheckPredicate, 13, 218, 4, 0, // Skip to: 8381 1557/* 7139 */ MCD::OPC_CheckField, 16, 4, 15, 211, 4, 0, // Skip to: 8381 1558/* 7146 */ MCD::OPC_CheckField, 8, 4, 15, 204, 4, 0, // Skip to: 8381 1559/* 7153 */ MCD::OPC_Decode, 255, 12, 35, // Opcode: RBIT 1560/* 7157 */ MCD::OPC_FilterValue, 1, 79, 0, 0, // Skip to: 7241 1561/* 7162 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1562/* 7165 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 7203 1563/* 7170 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 7190 1564/* 7175 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 7190 1565/* 7182 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1566/* 7186 */ MCD::OPC_Decode, 212, 14, 70, // Opcode: UXTB 1567/* 7190 */ MCD::OPC_CheckPredicate, 1, 162, 4, 0, // Skip to: 8381 1568/* 7195 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1569/* 7199 */ MCD::OPC_Decode, 209, 14, 71, // Opcode: UXTAB 1570/* 7203 */ MCD::OPC_FilterValue, 1, 149, 4, 0, // Skip to: 8381 1571/* 7208 */ MCD::OPC_CheckPredicate, 1, 15, 0, 0, // Skip to: 7228 1572/* 7213 */ MCD::OPC_CheckField, 16, 4, 15, 8, 0, 0, // Skip to: 7228 1573/* 7220 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1574/* 7224 */ MCD::OPC_Decode, 214, 14, 70, // Opcode: UXTH 1575/* 7228 */ MCD::OPC_CheckPredicate, 1, 124, 4, 0, // Skip to: 8381 1576/* 7233 */ MCD::OPC_SoftFail, 128, 6 /* 0x300 */, 0, 1577/* 7237 */ MCD::OPC_Decode, 211, 14, 71, // Opcode: UXTAH 1578/* 7241 */ MCD::OPC_FilterValue, 2, 111, 4, 0, // Skip to: 8381 1579/* 7246 */ MCD::OPC_CheckPredicate, 1, 106, 4, 0, // Skip to: 8381 1580/* 7251 */ MCD::OPC_CheckField, 16, 5, 31, 99, 4, 0, // Skip to: 8381 1581/* 7258 */ MCD::OPC_CheckField, 8, 4, 15, 92, 4, 0, // Skip to: 8381 1582/* 7265 */ MCD::OPC_Decode, 130, 13, 35, // Opcode: REVSH 1583/* 7269 */ MCD::OPC_FilterValue, 3, 83, 4, 0, // Skip to: 8381 1584/* 7274 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 1585/* 7277 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 7291 1586/* 7282 */ MCD::OPC_CheckPredicate, 13, 70, 4, 0, // Skip to: 8381 1587/* 7287 */ MCD::OPC_Decode, 184, 14, 76, // Opcode: UBFX 1588/* 7291 */ MCD::OPC_FilterValue, 3, 61, 4, 0, // Skip to: 8381 1589/* 7296 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 1590/* 7299 */ MCD::OPC_FilterValue, 1, 53, 4, 0, // Skip to: 8381 1591/* 7304 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1592/* 7307 */ MCD::OPC_FilterValue, 1, 45, 4, 0, // Skip to: 8381 1593/* 7312 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 1594/* 7315 */ MCD::OPC_FilterValue, 14, 37, 4, 0, // Skip to: 8381 1595/* 7320 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 1596/* 7323 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7345 1597/* 7328 */ MCD::OPC_CheckPredicate, 21, 34, 0, 0, // Skip to: 7367 1598/* 7333 */ MCD::OPC_CheckField, 8, 12, 222, 29, 26, 0, 0, // Skip to: 7367 1599/* 7341 */ MCD::OPC_Decode, 175, 14, 51, // Opcode: TRAPNaCl 1600/* 7345 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7367 1601/* 7350 */ MCD::OPC_CheckPredicate, 0, 12, 0, 0, // Skip to: 7367 1602/* 7355 */ MCD::OPC_CheckField, 8, 12, 222, 31, 4, 0, 0, // Skip to: 7367 1603/* 7363 */ MCD::OPC_Decode, 174, 14, 51, // Opcode: TRAP 1604/* 7367 */ MCD::OPC_CheckPredicate, 0, 241, 3, 0, // Skip to: 8381 1605/* 7372 */ MCD::OPC_Decode, 185, 14, 15, // Opcode: UDF 1606/* 7376 */ MCD::OPC_FilterValue, 4, 75, 3, 0, // Skip to: 8224 1607/* 7381 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 1608/* 7384 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 7398 1609/* 7389 */ MCD::OPC_CheckPredicate, 0, 219, 3, 0, // Skip to: 8381 1610/* 7394 */ MCD::OPC_Decode, 249, 13, 80, // Opcode: STMDA 1611/* 7398 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 7436 1612/* 7403 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7427 1613/* 7408 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7427 1614/* 7415 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7427 1615/* 7423 */ MCD::OPC_Decode, 131, 13, 81, // Opcode: RFEDA 1616/* 7427 */ MCD::OPC_CheckPredicate, 0, 181, 3, 0, // Skip to: 8381 1617/* 7432 */ MCD::OPC_Decode, 190, 5, 80, // Opcode: LDMDA 1618/* 7436 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 7450 1619/* 7441 */ MCD::OPC_CheckPredicate, 0, 167, 3, 0, // Skip to: 8381 1620/* 7446 */ MCD::OPC_Decode, 250, 13, 82, // Opcode: STMDA_UPD 1621/* 7450 */ MCD::OPC_FilterValue, 3, 33, 0, 0, // Skip to: 7488 1622/* 7455 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7479 1623/* 7460 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7479 1624/* 7467 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7479 1625/* 7475 */ MCD::OPC_Decode, 132, 13, 81, // Opcode: RFEDA_UPD 1626/* 7479 */ MCD::OPC_CheckPredicate, 0, 129, 3, 0, // Skip to: 8381 1627/* 7484 */ MCD::OPC_Decode, 191, 5, 82, // Opcode: LDMDA_UPD 1628/* 7488 */ MCD::OPC_FilterValue, 4, 34, 0, 0, // Skip to: 7527 1629/* 7493 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7518 1630/* 7498 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7518 1631/* 7505 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7518 1632/* 7514 */ MCD::OPC_Decode, 213, 13, 83, // Opcode: SRSDA 1633/* 7518 */ MCD::OPC_CheckPredicate, 0, 90, 3, 0, // Skip to: 8381 1634/* 7523 */ MCD::OPC_Decode, 151, 29, 80, // Opcode: sysSTMDA 1635/* 7527 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 7541 1636/* 7532 */ MCD::OPC_CheckPredicate, 0, 76, 3, 0, // Skip to: 8381 1637/* 7537 */ MCD::OPC_Decode, 143, 29, 80, // Opcode: sysLDMDA 1638/* 7541 */ MCD::OPC_FilterValue, 6, 34, 0, 0, // Skip to: 7580 1639/* 7546 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7571 1640/* 7551 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7571 1641/* 7558 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7571 1642/* 7567 */ MCD::OPC_Decode, 214, 13, 83, // Opcode: SRSDA_UPD 1643/* 7571 */ MCD::OPC_CheckPredicate, 0, 37, 3, 0, // Skip to: 8381 1644/* 7576 */ MCD::OPC_Decode, 152, 29, 82, // Opcode: sysSTMDA_UPD 1645/* 7580 */ MCD::OPC_FilterValue, 7, 9, 0, 0, // Skip to: 7594 1646/* 7585 */ MCD::OPC_CheckPredicate, 0, 23, 3, 0, // Skip to: 8381 1647/* 7590 */ MCD::OPC_Decode, 144, 29, 82, // Opcode: sysLDMDA_UPD 1648/* 7594 */ MCD::OPC_FilterValue, 8, 9, 0, 0, // Skip to: 7608 1649/* 7599 */ MCD::OPC_CheckPredicate, 0, 9, 3, 0, // Skip to: 8381 1650/* 7604 */ MCD::OPC_Decode, 253, 13, 80, // Opcode: STMIA 1651/* 7608 */ MCD::OPC_FilterValue, 9, 33, 0, 0, // Skip to: 7646 1652/* 7613 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7637 1653/* 7618 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7637 1654/* 7625 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7637 1655/* 7633 */ MCD::OPC_Decode, 135, 13, 81, // Opcode: RFEIA 1656/* 7637 */ MCD::OPC_CheckPredicate, 0, 227, 2, 0, // Skip to: 8381 1657/* 7642 */ MCD::OPC_Decode, 194, 5, 80, // Opcode: LDMIA 1658/* 7646 */ MCD::OPC_FilterValue, 10, 9, 0, 0, // Skip to: 7660 1659/* 7651 */ MCD::OPC_CheckPredicate, 0, 213, 2, 0, // Skip to: 8381 1660/* 7656 */ MCD::OPC_Decode, 254, 13, 82, // Opcode: STMIA_UPD 1661/* 7660 */ MCD::OPC_FilterValue, 11, 33, 0, 0, // Skip to: 7698 1662/* 7665 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7689 1663/* 7670 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7689 1664/* 7677 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7689 1665/* 7685 */ MCD::OPC_Decode, 136, 13, 81, // Opcode: RFEIA_UPD 1666/* 7689 */ MCD::OPC_CheckPredicate, 0, 175, 2, 0, // Skip to: 8381 1667/* 7694 */ MCD::OPC_Decode, 195, 5, 82, // Opcode: LDMIA_UPD 1668/* 7698 */ MCD::OPC_FilterValue, 12, 34, 0, 0, // Skip to: 7737 1669/* 7703 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7728 1670/* 7708 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7728 1671/* 7715 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7728 1672/* 7724 */ MCD::OPC_Decode, 217, 13, 83, // Opcode: SRSIA 1673/* 7728 */ MCD::OPC_CheckPredicate, 0, 136, 2, 0, // Skip to: 8381 1674/* 7733 */ MCD::OPC_Decode, 155, 29, 80, // Opcode: sysSTMIA 1675/* 7737 */ MCD::OPC_FilterValue, 13, 9, 0, 0, // Skip to: 7751 1676/* 7742 */ MCD::OPC_CheckPredicate, 0, 122, 2, 0, // Skip to: 8381 1677/* 7747 */ MCD::OPC_Decode, 147, 29, 80, // Opcode: sysLDMIA 1678/* 7751 */ MCD::OPC_FilterValue, 14, 34, 0, 0, // Skip to: 7790 1679/* 7756 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7781 1680/* 7761 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7781 1681/* 7768 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7781 1682/* 7777 */ MCD::OPC_Decode, 218, 13, 83, // Opcode: SRSIA_UPD 1683/* 7781 */ MCD::OPC_CheckPredicate, 0, 83, 2, 0, // Skip to: 8381 1684/* 7786 */ MCD::OPC_Decode, 156, 29, 82, // Opcode: sysSTMIA_UPD 1685/* 7790 */ MCD::OPC_FilterValue, 15, 9, 0, 0, // Skip to: 7804 1686/* 7795 */ MCD::OPC_CheckPredicate, 0, 69, 2, 0, // Skip to: 8381 1687/* 7800 */ MCD::OPC_Decode, 148, 29, 82, // Opcode: sysLDMIA_UPD 1688/* 7804 */ MCD::OPC_FilterValue, 16, 9, 0, 0, // Skip to: 7818 1689/* 7809 */ MCD::OPC_CheckPredicate, 0, 55, 2, 0, // Skip to: 8381 1690/* 7814 */ MCD::OPC_Decode, 251, 13, 80, // Opcode: STMDB 1691/* 7818 */ MCD::OPC_FilterValue, 17, 33, 0, 0, // Skip to: 7856 1692/* 7823 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7847 1693/* 7828 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7847 1694/* 7835 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7847 1695/* 7843 */ MCD::OPC_Decode, 133, 13, 81, // Opcode: RFEDB 1696/* 7847 */ MCD::OPC_CheckPredicate, 0, 17, 2, 0, // Skip to: 8381 1697/* 7852 */ MCD::OPC_Decode, 192, 5, 80, // Opcode: LDMDB 1698/* 7856 */ MCD::OPC_FilterValue, 18, 9, 0, 0, // Skip to: 7870 1699/* 7861 */ MCD::OPC_CheckPredicate, 0, 3, 2, 0, // Skip to: 8381 1700/* 7866 */ MCD::OPC_Decode, 252, 13, 82, // Opcode: STMDB_UPD 1701/* 7870 */ MCD::OPC_FilterValue, 19, 33, 0, 0, // Skip to: 7908 1702/* 7875 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 7899 1703/* 7880 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 7899 1704/* 7887 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 7899 1705/* 7895 */ MCD::OPC_Decode, 134, 13, 81, // Opcode: RFEDB_UPD 1706/* 7899 */ MCD::OPC_CheckPredicate, 0, 221, 1, 0, // Skip to: 8381 1707/* 7904 */ MCD::OPC_Decode, 193, 5, 82, // Opcode: LDMDB_UPD 1708/* 7908 */ MCD::OPC_FilterValue, 20, 34, 0, 0, // Skip to: 7947 1709/* 7913 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7938 1710/* 7918 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7938 1711/* 7925 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7938 1712/* 7934 */ MCD::OPC_Decode, 215, 13, 83, // Opcode: SRSDB 1713/* 7938 */ MCD::OPC_CheckPredicate, 0, 182, 1, 0, // Skip to: 8381 1714/* 7943 */ MCD::OPC_Decode, 153, 29, 80, // Opcode: sysSTMDB 1715/* 7947 */ MCD::OPC_FilterValue, 21, 9, 0, 0, // Skip to: 7961 1716/* 7952 */ MCD::OPC_CheckPredicate, 0, 168, 1, 0, // Skip to: 8381 1717/* 7957 */ MCD::OPC_Decode, 145, 29, 80, // Opcode: sysLDMDB 1718/* 7961 */ MCD::OPC_FilterValue, 22, 34, 0, 0, // Skip to: 8000 1719/* 7966 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 7991 1720/* 7971 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 7991 1721/* 7978 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 7991 1722/* 7987 */ MCD::OPC_Decode, 216, 13, 83, // Opcode: SRSDB_UPD 1723/* 7991 */ MCD::OPC_CheckPredicate, 0, 129, 1, 0, // Skip to: 8381 1724/* 7996 */ MCD::OPC_Decode, 154, 29, 82, // Opcode: sysSTMDB_UPD 1725/* 8000 */ MCD::OPC_FilterValue, 23, 9, 0, 0, // Skip to: 8014 1726/* 8005 */ MCD::OPC_CheckPredicate, 0, 115, 1, 0, // Skip to: 8381 1727/* 8010 */ MCD::OPC_Decode, 146, 29, 82, // Opcode: sysLDMDB_UPD 1728/* 8014 */ MCD::OPC_FilterValue, 24, 9, 0, 0, // Skip to: 8028 1729/* 8019 */ MCD::OPC_CheckPredicate, 0, 101, 1, 0, // Skip to: 8381 1730/* 8024 */ MCD::OPC_Decode, 255, 13, 80, // Opcode: STMIB 1731/* 8028 */ MCD::OPC_FilterValue, 25, 33, 0, 0, // Skip to: 8066 1732/* 8033 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 8057 1733/* 8038 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 8057 1734/* 8045 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 8057 1735/* 8053 */ MCD::OPC_Decode, 137, 13, 81, // Opcode: RFEIB 1736/* 8057 */ MCD::OPC_CheckPredicate, 0, 63, 1, 0, // Skip to: 8381 1737/* 8062 */ MCD::OPC_Decode, 196, 5, 80, // Opcode: LDMIB 1738/* 8066 */ MCD::OPC_FilterValue, 26, 9, 0, 0, // Skip to: 8080 1739/* 8071 */ MCD::OPC_CheckPredicate, 0, 49, 1, 0, // Skip to: 8381 1740/* 8076 */ MCD::OPC_Decode, 128, 14, 82, // Opcode: STMIB_UPD 1741/* 8080 */ MCD::OPC_FilterValue, 27, 33, 0, 0, // Skip to: 8118 1742/* 8085 */ MCD::OPC_CheckPredicate, 0, 19, 0, 0, // Skip to: 8109 1743/* 8090 */ MCD::OPC_CheckField, 28, 4, 15, 12, 0, 0, // Skip to: 8109 1744/* 8097 */ MCD::OPC_CheckField, 0, 16, 128, 20, 4, 0, 0, // Skip to: 8109 1745/* 8105 */ MCD::OPC_Decode, 138, 13, 81, // Opcode: RFEIB_UPD 1746/* 8109 */ MCD::OPC_CheckPredicate, 0, 11, 1, 0, // Skip to: 8381 1747/* 8114 */ MCD::OPC_Decode, 197, 5, 82, // Opcode: LDMIB_UPD 1748/* 8118 */ MCD::OPC_FilterValue, 28, 34, 0, 0, // Skip to: 8157 1749/* 8123 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 8148 1750/* 8128 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 8148 1751/* 8135 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 8148 1752/* 8144 */ MCD::OPC_Decode, 219, 13, 83, // Opcode: SRSIB 1753/* 8148 */ MCD::OPC_CheckPredicate, 0, 228, 0, 0, // Skip to: 8381 1754/* 8153 */ MCD::OPC_Decode, 157, 29, 80, // Opcode: sysSTMIB 1755/* 8157 */ MCD::OPC_FilterValue, 29, 9, 0, 0, // Skip to: 8171 1756/* 8162 */ MCD::OPC_CheckPredicate, 0, 214, 0, 0, // Skip to: 8381 1757/* 8167 */ MCD::OPC_Decode, 149, 29, 80, // Opcode: sysLDMIB 1758/* 8171 */ MCD::OPC_FilterValue, 30, 34, 0, 0, // Skip to: 8210 1759/* 8176 */ MCD::OPC_CheckPredicate, 0, 20, 0, 0, // Skip to: 8201 1760/* 8181 */ MCD::OPC_CheckField, 28, 4, 15, 13, 0, 0, // Skip to: 8201 1761/* 8188 */ MCD::OPC_CheckField, 5, 15, 168, 208, 1, 4, 0, 0, // Skip to: 8201 1762/* 8197 */ MCD::OPC_Decode, 220, 13, 83, // Opcode: SRSIB_UPD 1763/* 8201 */ MCD::OPC_CheckPredicate, 0, 175, 0, 0, // Skip to: 8381 1764/* 8206 */ MCD::OPC_Decode, 158, 29, 82, // Opcode: sysSTMIB_UPD 1765/* 8210 */ MCD::OPC_FilterValue, 31, 166, 0, 0, // Skip to: 8381 1766/* 8215 */ MCD::OPC_CheckPredicate, 0, 161, 0, 0, // Skip to: 8381 1767/* 8220 */ MCD::OPC_Decode, 150, 29, 82, // Opcode: sysLDMIB_UPD 1768/* 8224 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 8292 1769/* 8229 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 1770/* 8232 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 8246 1771/* 8237 */ MCD::OPC_CheckPredicate, 0, 34, 0, 0, // Skip to: 8276 1772/* 8242 */ MCD::OPC_Decode, 251, 4, 84, // Opcode: Bcc 1773/* 8246 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 8276 1774/* 8251 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 8267 1775/* 8256 */ MCD::OPC_CheckField, 28, 4, 14, 4, 0, 0, // Skip to: 8267 1776/* 8263 */ MCD::OPC_Decode, 242, 4, 84, // Opcode: BL 1777/* 8267 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 8276 1778/* 8272 */ MCD::OPC_Decode, 246, 4, 84, // Opcode: BL_pred 1779/* 8276 */ MCD::OPC_CheckPredicate, 11, 100, 0, 0, // Skip to: 8381 1780/* 8281 */ MCD::OPC_CheckField, 28, 4, 15, 93, 0, 0, // Skip to: 8381 1781/* 8288 */ MCD::OPC_Decode, 245, 4, 85, // Opcode: BLXi 1782/* 8292 */ MCD::OPC_FilterValue, 6, 63, 0, 0, // Skip to: 8360 1783/* 8297 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 1784/* 8300 */ MCD::OPC_FilterValue, 4, 25, 0, 0, // Skip to: 8330 1785/* 8305 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 8321 1786/* 8310 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 8321 1787/* 8317 */ MCD::OPC_Decode, 240, 5, 86, // Opcode: MCRR2 1788/* 8321 */ MCD::OPC_CheckPredicate, 0, 55, 0, 0, // Skip to: 8381 1789/* 8326 */ MCD::OPC_Decode, 239, 5, 87, // Opcode: MCRR 1790/* 8330 */ MCD::OPC_FilterValue, 5, 46, 0, 0, // Skip to: 8381 1791/* 8335 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 8351 1792/* 8340 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 8351 1793/* 8347 */ MCD::OPC_Decode, 254, 5, 86, // Opcode: MRRC2 1794/* 8351 */ MCD::OPC_CheckPredicate, 0, 25, 0, 0, // Skip to: 8381 1795/* 8356 */ MCD::OPC_Decode, 253, 5, 88, // Opcode: MRRC 1796/* 8360 */ MCD::OPC_FilterValue, 7, 16, 0, 0, // Skip to: 8381 1797/* 8365 */ MCD::OPC_CheckPredicate, 0, 11, 0, 0, // Skip to: 8381 1798/* 8370 */ MCD::OPC_CheckField, 24, 1, 1, 4, 0, 0, // Skip to: 8381 1799/* 8377 */ MCD::OPC_Decode, 161, 14, 89, // Opcode: SVC 1800/* 8381 */ MCD::OPC_Fail, 1801 0 1802}; 1803 1804static const uint8_t DecoderTableCoProc32[] = { 1805/* 0 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 1806/* 3 */ MCD::OPC_FilterValue, 12, 19, 1, 0, // Skip to: 283 1807/* 8 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 1808/* 11 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 49 1809/* 16 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 1810/* 19 */ MCD::OPC_FilterValue, 1, 101, 2, 0, // Skip to: 637 1811/* 24 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 40 1812/* 29 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 40 1813/* 36 */ MCD::OPC_Decode, 231, 13, 90, // Opcode: STC2_OPTION 1814/* 40 */ MCD::OPC_CheckPredicate, 0, 80, 2, 0, // Skip to: 637 1815/* 45 */ MCD::OPC_Decode, 239, 13, 90, // Opcode: STC_OPTION 1816/* 49 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 87 1817/* 54 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 1818/* 57 */ MCD::OPC_FilterValue, 1, 63, 2, 0, // Skip to: 637 1819/* 62 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 78 1820/* 67 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 78 1821/* 74 */ MCD::OPC_Decode, 179, 5, 90, // Opcode: LDC2_OPTION 1822/* 78 */ MCD::OPC_CheckPredicate, 0, 42, 2, 0, // Skip to: 637 1823/* 83 */ MCD::OPC_Decode, 187, 5, 90, // Opcode: LDC_OPTION 1824/* 87 */ MCD::OPC_FilterValue, 2, 25, 0, 0, // Skip to: 117 1825/* 92 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 108 1826/* 97 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 108 1827/* 104 */ MCD::OPC_Decode, 232, 13, 90, // Opcode: STC2_POST 1828/* 108 */ MCD::OPC_CheckPredicate, 0, 12, 2, 0, // Skip to: 637 1829/* 113 */ MCD::OPC_Decode, 240, 13, 90, // Opcode: STC_POST 1830/* 117 */ MCD::OPC_FilterValue, 3, 25, 0, 0, // Skip to: 147 1831/* 122 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 138 1832/* 127 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 138 1833/* 134 */ MCD::OPC_Decode, 180, 5, 90, // Opcode: LDC2_POST 1834/* 138 */ MCD::OPC_CheckPredicate, 0, 238, 1, 0, // Skip to: 637 1835/* 143 */ MCD::OPC_Decode, 188, 5, 90, // Opcode: LDC_POST 1836/* 147 */ MCD::OPC_FilterValue, 4, 33, 0, 0, // Skip to: 185 1837/* 152 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 1838/* 155 */ MCD::OPC_FilterValue, 1, 221, 1, 0, // Skip to: 637 1839/* 160 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 176 1840/* 165 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 176 1841/* 172 */ MCD::OPC_Decode, 227, 13, 90, // Opcode: STC2L_OPTION 1842/* 176 */ MCD::OPC_CheckPredicate, 0, 200, 1, 0, // Skip to: 637 1843/* 181 */ MCD::OPC_Decode, 235, 13, 90, // Opcode: STCL_OPTION 1844/* 185 */ MCD::OPC_FilterValue, 5, 33, 0, 0, // Skip to: 223 1845/* 190 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 1846/* 193 */ MCD::OPC_FilterValue, 1, 183, 1, 0, // Skip to: 637 1847/* 198 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 214 1848/* 203 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 214 1849/* 210 */ MCD::OPC_Decode, 175, 5, 90, // Opcode: LDC2L_OPTION 1850/* 214 */ MCD::OPC_CheckPredicate, 0, 162, 1, 0, // Skip to: 637 1851/* 219 */ MCD::OPC_Decode, 183, 5, 90, // Opcode: LDCL_OPTION 1852/* 223 */ MCD::OPC_FilterValue, 6, 25, 0, 0, // Skip to: 253 1853/* 228 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 244 1854/* 233 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 244 1855/* 240 */ MCD::OPC_Decode, 228, 13, 90, // Opcode: STC2L_POST 1856/* 244 */ MCD::OPC_CheckPredicate, 0, 132, 1, 0, // Skip to: 637 1857/* 249 */ MCD::OPC_Decode, 236, 13, 90, // Opcode: STCL_POST 1858/* 253 */ MCD::OPC_FilterValue, 7, 123, 1, 0, // Skip to: 637 1859/* 258 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 274 1860/* 263 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 274 1861/* 270 */ MCD::OPC_Decode, 176, 5, 90, // Opcode: LDC2L_POST 1862/* 274 */ MCD::OPC_CheckPredicate, 0, 102, 1, 0, // Skip to: 637 1863/* 279 */ MCD::OPC_Decode, 184, 5, 90, // Opcode: LDCL_POST 1864/* 283 */ MCD::OPC_FilterValue, 13, 243, 0, 0, // Skip to: 531 1865/* 288 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 1866/* 291 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 321 1867/* 296 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 312 1868/* 301 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 312 1869/* 308 */ MCD::OPC_Decode, 230, 13, 90, // Opcode: STC2_OFFSET 1870/* 312 */ MCD::OPC_CheckPredicate, 0, 64, 1, 0, // Skip to: 637 1871/* 317 */ MCD::OPC_Decode, 238, 13, 90, // Opcode: STC_OFFSET 1872/* 321 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 351 1873/* 326 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 342 1874/* 331 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 342 1875/* 338 */ MCD::OPC_Decode, 178, 5, 90, // Opcode: LDC2_OFFSET 1876/* 342 */ MCD::OPC_CheckPredicate, 0, 34, 1, 0, // Skip to: 637 1877/* 347 */ MCD::OPC_Decode, 186, 5, 90, // Opcode: LDC_OFFSET 1878/* 351 */ MCD::OPC_FilterValue, 2, 25, 0, 0, // Skip to: 381 1879/* 356 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 372 1880/* 361 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 372 1881/* 368 */ MCD::OPC_Decode, 233, 13, 90, // Opcode: STC2_PRE 1882/* 372 */ MCD::OPC_CheckPredicate, 0, 4, 1, 0, // Skip to: 637 1883/* 377 */ MCD::OPC_Decode, 241, 13, 90, // Opcode: STC_PRE 1884/* 381 */ MCD::OPC_FilterValue, 3, 25, 0, 0, // Skip to: 411 1885/* 386 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 402 1886/* 391 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 402 1887/* 398 */ MCD::OPC_Decode, 181, 5, 90, // Opcode: LDC2_PRE 1888/* 402 */ MCD::OPC_CheckPredicate, 0, 230, 0, 0, // Skip to: 637 1889/* 407 */ MCD::OPC_Decode, 189, 5, 90, // Opcode: LDC_PRE 1890/* 411 */ MCD::OPC_FilterValue, 4, 25, 0, 0, // Skip to: 441 1891/* 416 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 432 1892/* 421 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 432 1893/* 428 */ MCD::OPC_Decode, 226, 13, 90, // Opcode: STC2L_OFFSET 1894/* 432 */ MCD::OPC_CheckPredicate, 0, 200, 0, 0, // Skip to: 637 1895/* 437 */ MCD::OPC_Decode, 234, 13, 90, // Opcode: STCL_OFFSET 1896/* 441 */ MCD::OPC_FilterValue, 5, 25, 0, 0, // Skip to: 471 1897/* 446 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 462 1898/* 451 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 462 1899/* 458 */ MCD::OPC_Decode, 174, 5, 90, // Opcode: LDC2L_OFFSET 1900/* 462 */ MCD::OPC_CheckPredicate, 0, 170, 0, 0, // Skip to: 637 1901/* 467 */ MCD::OPC_Decode, 182, 5, 90, // Opcode: LDCL_OFFSET 1902/* 471 */ MCD::OPC_FilterValue, 6, 25, 0, 0, // Skip to: 501 1903/* 476 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 492 1904/* 481 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 492 1905/* 488 */ MCD::OPC_Decode, 229, 13, 90, // Opcode: STC2L_PRE 1906/* 492 */ MCD::OPC_CheckPredicate, 0, 140, 0, 0, // Skip to: 637 1907/* 497 */ MCD::OPC_Decode, 237, 13, 90, // Opcode: STCL_PRE 1908/* 501 */ MCD::OPC_FilterValue, 7, 131, 0, 0, // Skip to: 637 1909/* 506 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 522 1910/* 511 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 522 1911/* 518 */ MCD::OPC_Decode, 177, 5, 90, // Opcode: LDC2L_PRE 1912/* 522 */ MCD::OPC_CheckPredicate, 0, 110, 0, 0, // Skip to: 637 1913/* 527 */ MCD::OPC_Decode, 185, 5, 90, // Opcode: LDCL_PRE 1914/* 531 */ MCD::OPC_FilterValue, 14, 101, 0, 0, // Skip to: 637 1915/* 536 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 1916/* 539 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 569 1917/* 544 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 560 1918/* 549 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 560 1919/* 556 */ MCD::OPC_Decode, 253, 4, 91, // Opcode: CDP2 1920/* 560 */ MCD::OPC_CheckPredicate, 4, 72, 0, 0, // Skip to: 637 1921/* 565 */ MCD::OPC_Decode, 252, 4, 92, // Opcode: CDP 1922/* 569 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 637 1923/* 574 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 1924/* 577 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 607 1925/* 582 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 598 1926/* 587 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 598 1927/* 594 */ MCD::OPC_Decode, 238, 5, 93, // Opcode: MCR2 1928/* 598 */ MCD::OPC_CheckPredicate, 0, 34, 0, 0, // Skip to: 637 1929/* 603 */ MCD::OPC_Decode, 237, 5, 94, // Opcode: MCR 1930/* 607 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 637 1931/* 612 */ MCD::OPC_CheckPredicate, 4, 11, 0, 0, // Skip to: 628 1932/* 617 */ MCD::OPC_CheckField, 28, 4, 15, 4, 0, 0, // Skip to: 628 1933/* 624 */ MCD::OPC_Decode, 252, 5, 95, // Opcode: MRC2 1934/* 628 */ MCD::OPC_CheckPredicate, 0, 4, 0, 0, // Skip to: 637 1935/* 633 */ MCD::OPC_Decode, 251, 5, 96, // Opcode: MRC 1936/* 637 */ MCD::OPC_Fail, 1937 0 1938}; 1939 1940static const uint8_t DecoderTableMVE32[] = { 1941/* 0 */ MCD::OPC_ExtractField, 25, 3, // Inst{27-25} ... 1942/* 3 */ MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 139 1943/* 8 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 1944/* 11 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 43 1945/* 16 */ MCD::OPC_CheckPredicate, 22, 163, 99, 0, // Skip to: 25528 1946/* 21 */ MCD::OPC_CheckField, 28, 4, 15, 156, 99, 0, // Skip to: 25528 1947/* 28 */ MCD::OPC_CheckField, 11, 5, 29, 149, 99, 0, // Skip to: 25528 1948/* 35 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 1, 1949/* 39 */ MCD::OPC_Decode, 255, 6, 97, // Opcode: MVE_VCTP8 1950/* 43 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 75 1951/* 48 */ MCD::OPC_CheckPredicate, 22, 131, 99, 0, // Skip to: 25528 1952/* 53 */ MCD::OPC_CheckField, 28, 4, 15, 124, 99, 0, // Skip to: 25528 1953/* 60 */ MCD::OPC_CheckField, 11, 5, 29, 117, 99, 0, // Skip to: 25528 1954/* 67 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 1, 1955/* 71 */ MCD::OPC_Decode, 252, 6, 97, // Opcode: MVE_VCTP16 1956/* 75 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 107 1957/* 80 */ MCD::OPC_CheckPredicate, 22, 99, 99, 0, // Skip to: 25528 1958/* 85 */ MCD::OPC_CheckField, 28, 4, 15, 92, 99, 0, // Skip to: 25528 1959/* 92 */ MCD::OPC_CheckField, 11, 5, 29, 85, 99, 0, // Skip to: 25528 1960/* 99 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 1, 1961/* 103 */ MCD::OPC_Decode, 253, 6, 97, // Opcode: MVE_VCTP32 1962/* 107 */ MCD::OPC_FilterValue, 3, 72, 99, 0, // Skip to: 25528 1963/* 112 */ MCD::OPC_CheckPredicate, 22, 67, 99, 0, // Skip to: 25528 1964/* 117 */ MCD::OPC_CheckField, 28, 4, 15, 60, 99, 0, // Skip to: 25528 1965/* 124 */ MCD::OPC_CheckField, 11, 5, 29, 53, 99, 0, // Skip to: 25528 1966/* 131 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 1, 1967/* 135 */ MCD::OPC_Decode, 254, 6, 97, // Opcode: MVE_VCTP64 1968/* 139 */ MCD::OPC_FilterValue, 5, 238, 1, 0, // Skip to: 638 1969/* 144 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 1970/* 147 */ MCD::OPC_FilterValue, 13, 89, 0, 0, // Skip to: 241 1971/* 152 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 1972/* 155 */ MCD::OPC_FilterValue, 5, 24, 99, 0, // Skip to: 25528 1973/* 160 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 1974/* 163 */ MCD::OPC_FilterValue, 14, 16, 99, 0, // Skip to: 25528 1975/* 168 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 1976/* 171 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 192 1977/* 176 */ MCD::OPC_CheckPredicate, 23, 39, 0, 0, // Skip to: 220 1978/* 181 */ MCD::OPC_CheckField, 6, 3, 4, 32, 0, 0, // Skip to: 220 1979/* 188 */ MCD::OPC_Decode, 143, 6, 98, // Opcode: MVE_LSLLr 1980/* 192 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 220 1981/* 197 */ MCD::OPC_CheckPredicate, 23, 18, 0, 0, // Skip to: 220 1982/* 202 */ MCD::OPC_CheckField, 8, 1, 1, 11, 0, 0, // Skip to: 220 1983/* 209 */ MCD::OPC_CheckField, 6, 1, 0, 4, 0, 0, // Skip to: 220 1984/* 216 */ MCD::OPC_Decode, 152, 6, 98, // Opcode: MVE_UQRSHLL 1985/* 220 */ MCD::OPC_CheckPredicate, 23, 215, 98, 0, // Skip to: 25528 1986/* 225 */ MCD::OPC_CheckField, 9, 3, 7, 208, 98, 0, // Skip to: 25528 1987/* 232 */ MCD::OPC_SoftFail, 192, 1 /* 0xc0 */, 128, 2 /* 0x100 */, 1988/* 237 */ MCD::OPC_Decode, 151, 6, 99, // Opcode: MVE_UQRSHL 1989/* 241 */ MCD::OPC_FilterValue, 15, 73, 0, 0, // Skip to: 319 1990/* 246 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 1991/* 249 */ MCD::OPC_FilterValue, 1, 186, 98, 0, // Skip to: 25528 1992/* 254 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 1993/* 257 */ MCD::OPC_FilterValue, 0, 178, 98, 0, // Skip to: 25528 1994/* 262 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 1995/* 265 */ MCD::OPC_FilterValue, 5, 170, 98, 0, // Skip to: 25528 1996/* 270 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 1997/* 273 */ MCD::OPC_FilterValue, 14, 162, 98, 0, // Skip to: 25528 1998/* 278 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 294 1999/* 283 */ MCD::OPC_CheckField, 9, 3, 7, 4, 0, 0, // Skip to: 294 2000/* 290 */ MCD::OPC_Decode, 153, 6, 100, // Opcode: MVE_UQSHL 2001/* 294 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 310 2002/* 299 */ MCD::OPC_CheckField, 16, 1, 1, 4, 0, 0, // Skip to: 310 2003/* 306 */ MCD::OPC_Decode, 154, 6, 101, // Opcode: MVE_UQSHLL 2004/* 310 */ MCD::OPC_CheckPredicate, 23, 125, 98, 0, // Skip to: 25528 2005/* 315 */ MCD::OPC_Decode, 142, 6, 101, // Opcode: MVE_LSLLi 2006/* 319 */ MCD::OPC_FilterValue, 31, 73, 0, 0, // Skip to: 397 2007/* 324 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 2008/* 327 */ MCD::OPC_FilterValue, 1, 108, 98, 0, // Skip to: 25528 2009/* 332 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 2010/* 335 */ MCD::OPC_FilterValue, 0, 100, 98, 0, // Skip to: 25528 2011/* 340 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 2012/* 343 */ MCD::OPC_FilterValue, 5, 92, 98, 0, // Skip to: 25528 2013/* 348 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2014/* 351 */ MCD::OPC_FilterValue, 14, 84, 98, 0, // Skip to: 25528 2015/* 356 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 372 2016/* 361 */ MCD::OPC_CheckField, 9, 3, 7, 4, 0, 0, // Skip to: 372 2017/* 368 */ MCD::OPC_Decode, 155, 6, 100, // Opcode: MVE_URSHR 2018/* 372 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 388 2019/* 377 */ MCD::OPC_CheckField, 16, 1, 1, 4, 0, 0, // Skip to: 388 2020/* 384 */ MCD::OPC_Decode, 156, 6, 101, // Opcode: MVE_URSHRL 2021/* 388 */ MCD::OPC_CheckPredicate, 23, 47, 98, 0, // Skip to: 25528 2022/* 393 */ MCD::OPC_Decode, 144, 6, 101, // Opcode: MVE_LSRL 2023/* 397 */ MCD::OPC_FilterValue, 45, 89, 0, 0, // Skip to: 491 2024/* 402 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 2025/* 405 */ MCD::OPC_FilterValue, 5, 30, 98, 0, // Skip to: 25528 2026/* 410 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2027/* 413 */ MCD::OPC_FilterValue, 14, 22, 98, 0, // Skip to: 25528 2028/* 418 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 2029/* 421 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 442 2030/* 426 */ MCD::OPC_CheckPredicate, 23, 39, 0, 0, // Skip to: 470 2031/* 431 */ MCD::OPC_CheckField, 6, 3, 4, 32, 0, 0, // Skip to: 470 2032/* 438 */ MCD::OPC_Decode, 135, 6, 98, // Opcode: MVE_ASRLr 2033/* 442 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 470 2034/* 447 */ MCD::OPC_CheckPredicate, 23, 18, 0, 0, // Skip to: 470 2035/* 452 */ MCD::OPC_CheckField, 8, 1, 1, 11, 0, 0, // Skip to: 470 2036/* 459 */ MCD::OPC_CheckField, 6, 1, 0, 4, 0, 0, // Skip to: 470 2037/* 466 */ MCD::OPC_Decode, 146, 6, 98, // Opcode: MVE_SQRSHRL 2038/* 470 */ MCD::OPC_CheckPredicate, 23, 221, 97, 0, // Skip to: 25528 2039/* 475 */ MCD::OPC_CheckField, 9, 3, 7, 214, 97, 0, // Skip to: 25528 2040/* 482 */ MCD::OPC_SoftFail, 192, 1 /* 0xc0 */, 128, 2 /* 0x100 */, 2041/* 487 */ MCD::OPC_Decode, 145, 6, 99, // Opcode: MVE_SQRSHR 2042/* 491 */ MCD::OPC_FilterValue, 47, 73, 0, 0, // Skip to: 569 2043/* 496 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 2044/* 499 */ MCD::OPC_FilterValue, 1, 192, 97, 0, // Skip to: 25528 2045/* 504 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 2046/* 507 */ MCD::OPC_FilterValue, 0, 184, 97, 0, // Skip to: 25528 2047/* 512 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 2048/* 515 */ MCD::OPC_FilterValue, 5, 176, 97, 0, // Skip to: 25528 2049/* 520 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2050/* 523 */ MCD::OPC_FilterValue, 14, 168, 97, 0, // Skip to: 25528 2051/* 528 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 544 2052/* 533 */ MCD::OPC_CheckField, 9, 3, 7, 4, 0, 0, // Skip to: 544 2053/* 540 */ MCD::OPC_Decode, 149, 6, 100, // Opcode: MVE_SRSHR 2054/* 544 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 560 2055/* 549 */ MCD::OPC_CheckField, 16, 1, 1, 4, 0, 0, // Skip to: 560 2056/* 556 */ MCD::OPC_Decode, 150, 6, 101, // Opcode: MVE_SRSHRL 2057/* 560 */ MCD::OPC_CheckPredicate, 23, 131, 97, 0, // Skip to: 25528 2058/* 565 */ MCD::OPC_Decode, 134, 6, 101, // Opcode: MVE_ASRLi 2059/* 569 */ MCD::OPC_FilterValue, 63, 122, 97, 0, // Skip to: 25528 2060/* 574 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 2061/* 577 */ MCD::OPC_FilterValue, 1, 114, 97, 0, // Skip to: 25528 2062/* 582 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 2063/* 585 */ MCD::OPC_FilterValue, 0, 106, 97, 0, // Skip to: 25528 2064/* 590 */ MCD::OPC_ExtractField, 20, 5, // Inst{24-20} ... 2065/* 593 */ MCD::OPC_FilterValue, 5, 98, 97, 0, // Skip to: 25528 2066/* 598 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2067/* 601 */ MCD::OPC_FilterValue, 14, 90, 97, 0, // Skip to: 25528 2068/* 606 */ MCD::OPC_CheckPredicate, 23, 11, 0, 0, // Skip to: 622 2069/* 611 */ MCD::OPC_CheckField, 9, 3, 7, 4, 0, 0, // Skip to: 622 2070/* 618 */ MCD::OPC_Decode, 147, 6, 100, // Opcode: MVE_SQSHL 2071/* 622 */ MCD::OPC_CheckPredicate, 23, 69, 97, 0, // Skip to: 25528 2072/* 627 */ MCD::OPC_CheckField, 16, 1, 1, 62, 97, 0, // Skip to: 25528 2073/* 634 */ MCD::OPC_Decode, 148, 6, 101, // Opcode: MVE_SQSHLL 2074/* 638 */ MCD::OPC_FilterValue, 6, 1, 19, 0, // Skip to: 5508 2075/* 643 */ MCD::OPC_ExtractField, 8, 5, // Inst{12-8} ... 2076/* 646 */ MCD::OPC_FilterValue, 8, 213, 0, 0, // Skip to: 864 2077/* 651 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 2078/* 654 */ MCD::OPC_FilterValue, 0, 51, 0, 0, // Skip to: 710 2079/* 659 */ MCD::OPC_CheckPredicate, 24, 32, 97, 0, // Skip to: 25528 2080/* 664 */ MCD::OPC_CheckField, 28, 4, 15, 25, 97, 0, // Skip to: 25528 2081/* 671 */ MCD::OPC_CheckField, 23, 1, 1, 18, 97, 0, // Skip to: 25528 2082/* 678 */ MCD::OPC_CheckField, 16, 1, 0, 11, 97, 0, // Skip to: 25528 2083/* 685 */ MCD::OPC_CheckField, 6, 1, 1, 4, 97, 0, // Skip to: 25528 2084/* 692 */ MCD::OPC_CheckField, 4, 1, 0, 253, 96, 0, // Skip to: 25528 2085/* 699 */ MCD::OPC_CheckField, 0, 1, 0, 246, 96, 0, // Skip to: 25528 2086/* 706 */ MCD::OPC_Decode, 215, 6, 102, // Opcode: MVE_VCADDf16 2087/* 710 */ MCD::OPC_FilterValue, 1, 51, 0, 0, // Skip to: 766 2088/* 715 */ MCD::OPC_CheckPredicate, 24, 232, 96, 0, // Skip to: 25528 2089/* 720 */ MCD::OPC_CheckField, 28, 4, 15, 225, 96, 0, // Skip to: 25528 2090/* 727 */ MCD::OPC_CheckField, 23, 1, 1, 218, 96, 0, // Skip to: 25528 2091/* 734 */ MCD::OPC_CheckField, 16, 1, 0, 211, 96, 0, // Skip to: 25528 2092/* 741 */ MCD::OPC_CheckField, 6, 1, 1, 204, 96, 0, // Skip to: 25528 2093/* 748 */ MCD::OPC_CheckField, 4, 1, 0, 197, 96, 0, // Skip to: 25528 2094/* 755 */ MCD::OPC_CheckField, 0, 1, 0, 190, 96, 0, // Skip to: 25528 2095/* 762 */ MCD::OPC_Decode, 216, 6, 102, // Opcode: MVE_VCADDf32 2096/* 766 */ MCD::OPC_FilterValue, 2, 44, 0, 0, // Skip to: 815 2097/* 771 */ MCD::OPC_CheckPredicate, 24, 176, 96, 0, // Skip to: 25528 2098/* 776 */ MCD::OPC_CheckField, 28, 4, 15, 169, 96, 0, // Skip to: 25528 2099/* 783 */ MCD::OPC_CheckField, 16, 1, 0, 162, 96, 0, // Skip to: 25528 2100/* 790 */ MCD::OPC_CheckField, 6, 1, 1, 155, 96, 0, // Skip to: 25528 2101/* 797 */ MCD::OPC_CheckField, 4, 1, 0, 148, 96, 0, // Skip to: 25528 2102/* 804 */ MCD::OPC_CheckField, 0, 1, 0, 141, 96, 0, // Skip to: 25528 2103/* 811 */ MCD::OPC_Decode, 226, 6, 103, // Opcode: MVE_VCMLAf16 2104/* 815 */ MCD::OPC_FilterValue, 3, 132, 96, 0, // Skip to: 25528 2105/* 820 */ MCD::OPC_CheckPredicate, 24, 127, 96, 0, // Skip to: 25528 2106/* 825 */ MCD::OPC_CheckField, 28, 4, 15, 120, 96, 0, // Skip to: 25528 2107/* 832 */ MCD::OPC_CheckField, 16, 1, 0, 113, 96, 0, // Skip to: 25528 2108/* 839 */ MCD::OPC_CheckField, 6, 1, 1, 106, 96, 0, // Skip to: 25528 2109/* 846 */ MCD::OPC_CheckField, 4, 1, 0, 99, 96, 0, // Skip to: 25528 2110/* 853 */ MCD::OPC_CheckField, 0, 1, 0, 92, 96, 0, // Skip to: 25528 2111/* 860 */ MCD::OPC_Decode, 227, 6, 103, // Opcode: MVE_VCMLAf32 2112/* 864 */ MCD::OPC_FilterValue, 14, 135, 2, 0, // Skip to: 1516 2113/* 869 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 2114/* 872 */ MCD::OPC_FilterValue, 0, 188, 0, 0, // Skip to: 1065 2115/* 877 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2116/* 880 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 922 2117/* 885 */ MCD::OPC_CheckPredicate, 22, 62, 96, 0, // Skip to: 25528 2118/* 890 */ MCD::OPC_CheckField, 28, 4, 14, 55, 96, 0, // Skip to: 25528 2119/* 897 */ MCD::OPC_CheckField, 23, 2, 1, 48, 96, 0, // Skip to: 25528 2120/* 904 */ MCD::OPC_CheckField, 4, 3, 0, 41, 96, 0, // Skip to: 25528 2121/* 911 */ MCD::OPC_CheckField, 0, 1, 0, 34, 96, 0, // Skip to: 25528 2122/* 918 */ MCD::OPC_Decode, 182, 12, 104, // Opcode: MVE_VSTRB8_rq 2123/* 922 */ MCD::OPC_FilterValue, 1, 25, 96, 0, // Skip to: 25528 2124/* 927 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2125/* 930 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 1037 2126/* 935 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2127/* 938 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 1002 2128/* 943 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 2129/* 946 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 974 2130/* 951 */ MCD::OPC_CheckPredicate, 22, 252, 95, 0, // Skip to: 25528 2131/* 956 */ MCD::OPC_CheckField, 28, 4, 14, 245, 95, 0, // Skip to: 25528 2132/* 963 */ MCD::OPC_CheckField, 23, 1, 1, 238, 95, 0, // Skip to: 25528 2133/* 970 */ MCD::OPC_Decode, 177, 12, 104, // Opcode: MVE_VSTRB16_rq 2134/* 974 */ MCD::OPC_FilterValue, 1, 229, 95, 0, // Skip to: 25528 2135/* 979 */ MCD::OPC_CheckPredicate, 22, 224, 95, 0, // Skip to: 25528 2136/* 984 */ MCD::OPC_CheckField, 28, 4, 14, 217, 95, 0, // Skip to: 25528 2137/* 991 */ MCD::OPC_CheckField, 23, 1, 1, 210, 95, 0, // Skip to: 25528 2138/* 998 */ MCD::OPC_Decode, 191, 12, 104, // Opcode: MVE_VSTRH16_rq_u 2139/* 1002 */ MCD::OPC_FilterValue, 1, 201, 95, 0, // Skip to: 25528 2140/* 1007 */ MCD::OPC_CheckPredicate, 22, 196, 95, 0, // Skip to: 25528 2141/* 1012 */ MCD::OPC_CheckField, 28, 4, 14, 189, 95, 0, // Skip to: 25528 2142/* 1019 */ MCD::OPC_CheckField, 23, 1, 1, 182, 95, 0, // Skip to: 25528 2143/* 1026 */ MCD::OPC_CheckField, 4, 3, 1, 175, 95, 0, // Skip to: 25528 2144/* 1033 */ MCD::OPC_Decode, 190, 12, 104, // Opcode: MVE_VSTRH16_rq 2145/* 1037 */ MCD::OPC_FilterValue, 1, 166, 95, 0, // Skip to: 25528 2146/* 1042 */ MCD::OPC_CheckPredicate, 22, 161, 95, 0, // Skip to: 25528 2147/* 1047 */ MCD::OPC_CheckField, 28, 4, 14, 154, 95, 0, // Skip to: 25528 2148/* 1054 */ MCD::OPC_CheckField, 19, 1, 0, 147, 95, 0, // Skip to: 25528 2149/* 1061 */ MCD::OPC_Decode, 174, 12, 105, // Opcode: MVE_VSTRB16 2150/* 1065 */ MCD::OPC_FilterValue, 1, 232, 0, 0, // Skip to: 1302 2151/* 1070 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2152/* 1073 */ MCD::OPC_FilterValue, 0, 37, 0, 0, // Skip to: 1115 2153/* 1078 */ MCD::OPC_CheckPredicate, 22, 125, 95, 0, // Skip to: 25528 2154/* 1083 */ MCD::OPC_CheckField, 28, 4, 15, 118, 95, 0, // Skip to: 25528 2155/* 1090 */ MCD::OPC_CheckField, 23, 2, 1, 111, 95, 0, // Skip to: 25528 2156/* 1097 */ MCD::OPC_CheckField, 4, 3, 0, 104, 95, 0, // Skip to: 25528 2157/* 1104 */ MCD::OPC_CheckField, 0, 1, 0, 97, 95, 0, // Skip to: 25528 2158/* 1111 */ MCD::OPC_Decode, 142, 8, 104, // Opcode: MVE_VLDRBU8_rq 2159/* 1115 */ MCD::OPC_FilterValue, 1, 88, 95, 0, // Skip to: 25528 2160/* 1120 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2161/* 1123 */ MCD::OPC_FilterValue, 0, 124, 0, 0, // Skip to: 1252 2162/* 1128 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2163/* 1131 */ MCD::OPC_FilterValue, 0, 81, 0, 0, // Skip to: 1217 2164/* 1136 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 2165/* 1139 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 1189 2166/* 1144 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2167/* 1147 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 1168 2168/* 1152 */ MCD::OPC_CheckPredicate, 22, 51, 95, 0, // Skip to: 25528 2169/* 1157 */ MCD::OPC_CheckField, 23, 1, 1, 44, 95, 0, // Skip to: 25528 2170/* 1164 */ MCD::OPC_Decode, 254, 7, 104, // Opcode: MVE_VLDRBS16_rq 2171/* 1168 */ MCD::OPC_FilterValue, 15, 35, 95, 0, // Skip to: 25528 2172/* 1173 */ MCD::OPC_CheckPredicate, 22, 30, 95, 0, // Skip to: 25528 2173/* 1178 */ MCD::OPC_CheckField, 23, 1, 1, 23, 95, 0, // Skip to: 25528 2174/* 1185 */ MCD::OPC_Decode, 134, 8, 104, // Opcode: MVE_VLDRBU16_rq 2175/* 1189 */ MCD::OPC_FilterValue, 1, 14, 95, 0, // Skip to: 25528 2176/* 1194 */ MCD::OPC_CheckPredicate, 22, 9, 95, 0, // Skip to: 25528 2177/* 1199 */ MCD::OPC_CheckField, 28, 4, 15, 2, 95, 0, // Skip to: 25528 2178/* 1206 */ MCD::OPC_CheckField, 23, 1, 1, 251, 94, 0, // Skip to: 25528 2179/* 1213 */ MCD::OPC_Decode, 156, 8, 104, // Opcode: MVE_VLDRHU16_rq_u 2180/* 1217 */ MCD::OPC_FilterValue, 1, 242, 94, 0, // Skip to: 25528 2181/* 1222 */ MCD::OPC_CheckPredicate, 22, 237, 94, 0, // Skip to: 25528 2182/* 1227 */ MCD::OPC_CheckField, 28, 4, 15, 230, 94, 0, // Skip to: 25528 2183/* 1234 */ MCD::OPC_CheckField, 23, 1, 1, 223, 94, 0, // Skip to: 25528 2184/* 1241 */ MCD::OPC_CheckField, 4, 3, 1, 216, 94, 0, // Skip to: 25528 2185/* 1248 */ MCD::OPC_Decode, 155, 8, 104, // Opcode: MVE_VLDRHU16_rq 2186/* 1252 */ MCD::OPC_FilterValue, 1, 207, 94, 0, // Skip to: 25528 2187/* 1257 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2188/* 1260 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 1281 2189/* 1265 */ MCD::OPC_CheckPredicate, 22, 194, 94, 0, // Skip to: 25528 2190/* 1270 */ MCD::OPC_CheckField, 19, 1, 0, 187, 94, 0, // Skip to: 25528 2191/* 1277 */ MCD::OPC_Decode, 251, 7, 105, // Opcode: MVE_VLDRBS16 2192/* 1281 */ MCD::OPC_FilterValue, 15, 178, 94, 0, // Skip to: 25528 2193/* 1286 */ MCD::OPC_CheckPredicate, 22, 173, 94, 0, // Skip to: 25528 2194/* 1291 */ MCD::OPC_CheckField, 19, 1, 0, 166, 94, 0, // Skip to: 25528 2195/* 1298 */ MCD::OPC_Decode, 131, 8, 105, // Opcode: MVE_VLDRBU16 2196/* 1302 */ MCD::OPC_FilterValue, 2, 73, 0, 0, // Skip to: 1380 2197/* 1307 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2198/* 1310 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 1345 2199/* 1315 */ MCD::OPC_CheckPredicate, 22, 144, 94, 0, // Skip to: 25528 2200/* 1320 */ MCD::OPC_CheckField, 28, 4, 14, 137, 94, 0, // Skip to: 25528 2201/* 1327 */ MCD::OPC_CheckField, 19, 1, 0, 130, 94, 0, // Skip to: 25528 2202/* 1334 */ MCD::OPC_CheckField, 7, 1, 1, 123, 94, 0, // Skip to: 25528 2203/* 1341 */ MCD::OPC_Decode, 175, 12, 106, // Opcode: MVE_VSTRB16_post 2204/* 1345 */ MCD::OPC_FilterValue, 1, 114, 94, 0, // Skip to: 25528 2205/* 1350 */ MCD::OPC_CheckPredicate, 22, 109, 94, 0, // Skip to: 25528 2206/* 1355 */ MCD::OPC_CheckField, 28, 4, 14, 102, 94, 0, // Skip to: 25528 2207/* 1362 */ MCD::OPC_CheckField, 19, 1, 0, 95, 94, 0, // Skip to: 25528 2208/* 1369 */ MCD::OPC_CheckField, 7, 1, 1, 88, 94, 0, // Skip to: 25528 2209/* 1376 */ MCD::OPC_Decode, 176, 12, 107, // Opcode: MVE_VSTRB16_pre 2210/* 1380 */ MCD::OPC_FilterValue, 3, 79, 94, 0, // Skip to: 25528 2211/* 1385 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2212/* 1388 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 1452 2213/* 1393 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2214/* 1396 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 1424 2215/* 1401 */ MCD::OPC_CheckPredicate, 22, 58, 94, 0, // Skip to: 25528 2216/* 1406 */ MCD::OPC_CheckField, 19, 1, 0, 51, 94, 0, // Skip to: 25528 2217/* 1413 */ MCD::OPC_CheckField, 7, 1, 1, 44, 94, 0, // Skip to: 25528 2218/* 1420 */ MCD::OPC_Decode, 252, 7, 106, // Opcode: MVE_VLDRBS16_post 2219/* 1424 */ MCD::OPC_FilterValue, 15, 35, 94, 0, // Skip to: 25528 2220/* 1429 */ MCD::OPC_CheckPredicate, 22, 30, 94, 0, // Skip to: 25528 2221/* 1434 */ MCD::OPC_CheckField, 19, 1, 0, 23, 94, 0, // Skip to: 25528 2222/* 1441 */ MCD::OPC_CheckField, 7, 1, 1, 16, 94, 0, // Skip to: 25528 2223/* 1448 */ MCD::OPC_Decode, 132, 8, 106, // Opcode: MVE_VLDRBU16_post 2224/* 1452 */ MCD::OPC_FilterValue, 1, 7, 94, 0, // Skip to: 25528 2225/* 1457 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2226/* 1460 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 1488 2227/* 1465 */ MCD::OPC_CheckPredicate, 22, 250, 93, 0, // Skip to: 25528 2228/* 1470 */ MCD::OPC_CheckField, 19, 1, 0, 243, 93, 0, // Skip to: 25528 2229/* 1477 */ MCD::OPC_CheckField, 7, 1, 1, 236, 93, 0, // Skip to: 25528 2230/* 1484 */ MCD::OPC_Decode, 253, 7, 107, // Opcode: MVE_VLDRBS16_pre 2231/* 1488 */ MCD::OPC_FilterValue, 15, 227, 93, 0, // Skip to: 25528 2232/* 1493 */ MCD::OPC_CheckPredicate, 22, 222, 93, 0, // Skip to: 25528 2233/* 1498 */ MCD::OPC_CheckField, 19, 1, 0, 215, 93, 0, // Skip to: 25528 2234/* 1505 */ MCD::OPC_CheckField, 7, 1, 1, 208, 93, 0, // Skip to: 25528 2235/* 1512 */ MCD::OPC_Decode, 133, 8, 107, // Opcode: MVE_VLDRBU16_pre 2236/* 1516 */ MCD::OPC_FilterValue, 15, 44, 5, 0, // Skip to: 2845 2237/* 1521 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 2238/* 1524 */ MCD::OPC_FilterValue, 0, 119, 1, 0, // Skip to: 1904 2239/* 1529 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2240/* 1532 */ MCD::OPC_FilterValue, 0, 33, 1, 0, // Skip to: 1826 2241/* 1537 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2242/* 1540 */ MCD::OPC_FilterValue, 0, 217, 0, 0, // Skip to: 1762 2243/* 1545 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 2244/* 1548 */ MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 1684 2245/* 1553 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 2246/* 1556 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1577 2247/* 1561 */ MCD::OPC_CheckPredicate, 23, 154, 93, 0, // Skip to: 25528 2248/* 1566 */ MCD::OPC_CheckField, 28, 4, 14, 147, 93, 0, // Skip to: 25528 2249/* 1573 */ MCD::OPC_Decode, 173, 9, 108, // Opcode: MVE_VMOV_rr_q 2250/* 1577 */ MCD::OPC_FilterValue, 1, 138, 93, 0, // Skip to: 25528 2251/* 1582 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2252/* 1585 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 1649 2253/* 1590 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 2254/* 1593 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 1621 2255/* 1598 */ MCD::OPC_CheckPredicate, 22, 117, 93, 0, // Skip to: 25528 2256/* 1603 */ MCD::OPC_CheckField, 28, 4, 14, 110, 93, 0, // Skip to: 25528 2257/* 1610 */ MCD::OPC_CheckField, 22, 1, 0, 103, 93, 0, // Skip to: 25528 2258/* 1617 */ MCD::OPC_Decode, 181, 12, 104, // Opcode: MVE_VSTRB32_rq 2259/* 1621 */ MCD::OPC_FilterValue, 1, 94, 93, 0, // Skip to: 25528 2260/* 1626 */ MCD::OPC_CheckPredicate, 22, 89, 93, 0, // Skip to: 25528 2261/* 1631 */ MCD::OPC_CheckField, 28, 4, 14, 82, 93, 0, // Skip to: 25528 2262/* 1638 */ MCD::OPC_CheckField, 22, 1, 0, 75, 93, 0, // Skip to: 25528 2263/* 1645 */ MCD::OPC_Decode, 196, 12, 104, // Opcode: MVE_VSTRH32_rq_u 2264/* 1649 */ MCD::OPC_FilterValue, 1, 66, 93, 0, // Skip to: 25528 2265/* 1654 */ MCD::OPC_CheckPredicate, 22, 61, 93, 0, // Skip to: 25528 2266/* 1659 */ MCD::OPC_CheckField, 28, 4, 14, 54, 93, 0, // Skip to: 25528 2267/* 1666 */ MCD::OPC_CheckField, 22, 1, 0, 47, 93, 0, // Skip to: 25528 2268/* 1673 */ MCD::OPC_CheckField, 4, 1, 1, 40, 93, 0, // Skip to: 25528 2269/* 1680 */ MCD::OPC_Decode, 195, 12, 104, // Opcode: MVE_VSTRH32_rq 2270/* 1684 */ MCD::OPC_FilterValue, 2, 31, 93, 0, // Skip to: 25528 2271/* 1689 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2272/* 1692 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 1727 2273/* 1697 */ MCD::OPC_CheckPredicate, 22, 18, 93, 0, // Skip to: 25528 2274/* 1702 */ MCD::OPC_CheckField, 28, 4, 14, 11, 93, 0, // Skip to: 25528 2275/* 1709 */ MCD::OPC_CheckField, 22, 2, 2, 4, 93, 0, // Skip to: 25528 2276/* 1716 */ MCD::OPC_CheckField, 4, 1, 0, 253, 92, 0, // Skip to: 25528 2277/* 1723 */ MCD::OPC_Decode, 203, 12, 104, // Opcode: MVE_VSTRW32_rq_u 2278/* 1727 */ MCD::OPC_FilterValue, 1, 244, 92, 0, // Skip to: 25528 2279/* 1732 */ MCD::OPC_CheckPredicate, 22, 239, 92, 0, // Skip to: 25528 2280/* 1737 */ MCD::OPC_CheckField, 28, 4, 14, 232, 92, 0, // Skip to: 25528 2281/* 1744 */ MCD::OPC_CheckField, 22, 2, 2, 225, 92, 0, // Skip to: 25528 2282/* 1751 */ MCD::OPC_CheckField, 4, 1, 0, 218, 92, 0, // Skip to: 25528 2283/* 1758 */ MCD::OPC_Decode, 202, 12, 104, // Opcode: MVE_VSTRW32_rq 2284/* 1762 */ MCD::OPC_FilterValue, 1, 209, 92, 0, // Skip to: 25528 2285/* 1767 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 2286/* 1770 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 1798 2287/* 1775 */ MCD::OPC_CheckPredicate, 22, 196, 92, 0, // Skip to: 25528 2288/* 1780 */ MCD::OPC_CheckField, 28, 4, 14, 189, 92, 0, // Skip to: 25528 2289/* 1787 */ MCD::OPC_CheckField, 22, 1, 0, 182, 92, 0, // Skip to: 25528 2290/* 1794 */ MCD::OPC_Decode, 178, 12, 105, // Opcode: MVE_VSTRB32 2291/* 1798 */ MCD::OPC_FilterValue, 1, 173, 92, 0, // Skip to: 25528 2292/* 1803 */ MCD::OPC_CheckPredicate, 22, 168, 92, 0, // Skip to: 25528 2293/* 1808 */ MCD::OPC_CheckField, 28, 4, 14, 161, 92, 0, // Skip to: 25528 2294/* 1815 */ MCD::OPC_CheckField, 22, 1, 0, 154, 92, 0, // Skip to: 25528 2295/* 1822 */ MCD::OPC_Decode, 192, 12, 109, // Opcode: MVE_VSTRH32 2296/* 1826 */ MCD::OPC_FilterValue, 1, 145, 92, 0, // Skip to: 25528 2297/* 1831 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2298/* 1834 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 1869 2299/* 1839 */ MCD::OPC_CheckPredicate, 22, 132, 92, 0, // Skip to: 25528 2300/* 1844 */ MCD::OPC_CheckField, 28, 4, 14, 125, 92, 0, // Skip to: 25528 2301/* 1851 */ MCD::OPC_CheckField, 22, 3, 2, 118, 92, 0, // Skip to: 25528 2302/* 1858 */ MCD::OPC_CheckField, 4, 3, 5, 111, 92, 0, // Skip to: 25528 2303/* 1865 */ MCD::OPC_Decode, 189, 12, 104, // Opcode: MVE_VSTRD64_rq_u 2304/* 1869 */ MCD::OPC_FilterValue, 1, 102, 92, 0, // Skip to: 25528 2305/* 1874 */ MCD::OPC_CheckPredicate, 22, 97, 92, 0, // Skip to: 25528 2306/* 1879 */ MCD::OPC_CheckField, 28, 4, 14, 90, 92, 0, // Skip to: 25528 2307/* 1886 */ MCD::OPC_CheckField, 22, 3, 2, 83, 92, 0, // Skip to: 25528 2308/* 1893 */ MCD::OPC_CheckField, 4, 3, 5, 76, 92, 0, // Skip to: 25528 2309/* 1900 */ MCD::OPC_Decode, 188, 12, 104, // Opcode: MVE_VSTRD64_rq 2310/* 1904 */ MCD::OPC_FilterValue, 1, 236, 1, 0, // Skip to: 2401 2311/* 1909 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2312/* 1912 */ MCD::OPC_FilterValue, 0, 150, 1, 0, // Skip to: 2323 2313/* 1917 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2314/* 1920 */ MCD::OPC_FilterValue, 0, 34, 1, 0, // Skip to: 2215 2315/* 1925 */ MCD::OPC_ExtractField, 5, 2, // Inst{6-5} ... 2316/* 1928 */ MCD::OPC_FilterValue, 0, 204, 0, 0, // Skip to: 2137 2317/* 1933 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 2318/* 1936 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 1957 2319/* 1941 */ MCD::OPC_CheckPredicate, 23, 30, 92, 0, // Skip to: 25528 2320/* 1946 */ MCD::OPC_CheckField, 28, 4, 14, 23, 92, 0, // Skip to: 25528 2321/* 1953 */ MCD::OPC_Decode, 172, 9, 110, // Opcode: MVE_VMOV_q_rr 2322/* 1957 */ MCD::OPC_FilterValue, 1, 14, 92, 0, // Skip to: 25528 2323/* 1962 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2324/* 1965 */ MCD::OPC_FilterValue, 0, 103, 0, 0, // Skip to: 2073 2325/* 1970 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 2326/* 1973 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 2023 2327/* 1978 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2328/* 1981 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 2002 2329/* 1986 */ MCD::OPC_CheckPredicate, 22, 241, 91, 0, // Skip to: 25528 2330/* 1991 */ MCD::OPC_CheckField, 22, 1, 0, 234, 91, 0, // Skip to: 25528 2331/* 1998 */ MCD::OPC_Decode, 130, 8, 104, // Opcode: MVE_VLDRBS32_rq 2332/* 2002 */ MCD::OPC_FilterValue, 15, 225, 91, 0, // Skip to: 25528 2333/* 2007 */ MCD::OPC_CheckPredicate, 22, 220, 91, 0, // Skip to: 25528 2334/* 2012 */ MCD::OPC_CheckField, 22, 1, 0, 213, 91, 0, // Skip to: 25528 2335/* 2019 */ MCD::OPC_Decode, 138, 8, 104, // Opcode: MVE_VLDRBU32_rq 2336/* 2023 */ MCD::OPC_FilterValue, 1, 204, 91, 0, // Skip to: 25528 2337/* 2028 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2338/* 2031 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 2052 2339/* 2036 */ MCD::OPC_CheckPredicate, 22, 191, 91, 0, // Skip to: 25528 2340/* 2041 */ MCD::OPC_CheckField, 22, 1, 0, 184, 91, 0, // Skip to: 25528 2341/* 2048 */ MCD::OPC_Decode, 151, 8, 104, // Opcode: MVE_VLDRHS32_rq_u 2342/* 2052 */ MCD::OPC_FilterValue, 15, 175, 91, 0, // Skip to: 25528 2343/* 2057 */ MCD::OPC_CheckPredicate, 22, 170, 91, 0, // Skip to: 25528 2344/* 2062 */ MCD::OPC_CheckField, 22, 1, 0, 163, 91, 0, // Skip to: 25528 2345/* 2069 */ MCD::OPC_Decode, 161, 8, 104, // Opcode: MVE_VLDRHU32_rq_u 2346/* 2073 */ MCD::OPC_FilterValue, 1, 154, 91, 0, // Skip to: 25528 2347/* 2078 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2348/* 2081 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 2109 2349/* 2086 */ MCD::OPC_CheckPredicate, 22, 141, 91, 0, // Skip to: 25528 2350/* 2091 */ MCD::OPC_CheckField, 22, 1, 0, 134, 91, 0, // Skip to: 25528 2351/* 2098 */ MCD::OPC_CheckField, 4, 1, 1, 127, 91, 0, // Skip to: 25528 2352/* 2105 */ MCD::OPC_Decode, 150, 8, 104, // Opcode: MVE_VLDRHS32_rq 2353/* 2109 */ MCD::OPC_FilterValue, 15, 118, 91, 0, // Skip to: 25528 2354/* 2114 */ MCD::OPC_CheckPredicate, 22, 113, 91, 0, // Skip to: 25528 2355/* 2119 */ MCD::OPC_CheckField, 22, 1, 0, 106, 91, 0, // Skip to: 25528 2356/* 2126 */ MCD::OPC_CheckField, 4, 1, 1, 99, 91, 0, // Skip to: 25528 2357/* 2133 */ MCD::OPC_Decode, 160, 8, 104, // Opcode: MVE_VLDRHU32_rq 2358/* 2137 */ MCD::OPC_FilterValue, 2, 90, 91, 0, // Skip to: 25528 2359/* 2142 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2360/* 2145 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 2180 2361/* 2150 */ MCD::OPC_CheckPredicate, 22, 77, 91, 0, // Skip to: 25528 2362/* 2155 */ MCD::OPC_CheckField, 28, 4, 15, 70, 91, 0, // Skip to: 25528 2363/* 2162 */ MCD::OPC_CheckField, 22, 2, 2, 63, 91, 0, // Skip to: 25528 2364/* 2169 */ MCD::OPC_CheckField, 4, 1, 0, 56, 91, 0, // Skip to: 25528 2365/* 2176 */ MCD::OPC_Decode, 168, 8, 104, // Opcode: MVE_VLDRWU32_rq_u 2366/* 2180 */ MCD::OPC_FilterValue, 1, 47, 91, 0, // Skip to: 25528 2367/* 2185 */ MCD::OPC_CheckPredicate, 22, 42, 91, 0, // Skip to: 25528 2368/* 2190 */ MCD::OPC_CheckField, 28, 4, 15, 35, 91, 0, // Skip to: 25528 2369/* 2197 */ MCD::OPC_CheckField, 22, 2, 2, 28, 91, 0, // Skip to: 25528 2370/* 2204 */ MCD::OPC_CheckField, 4, 1, 0, 21, 91, 0, // Skip to: 25528 2371/* 2211 */ MCD::OPC_Decode, 167, 8, 104, // Opcode: MVE_VLDRWU32_rq 2372/* 2215 */ MCD::OPC_FilterValue, 1, 12, 91, 0, // Skip to: 25528 2373/* 2220 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 2374/* 2223 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 2273 2375/* 2228 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2376/* 2231 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 2252 2377/* 2236 */ MCD::OPC_CheckPredicate, 22, 247, 90, 0, // Skip to: 25528 2378/* 2241 */ MCD::OPC_CheckField, 22, 1, 0, 240, 90, 0, // Skip to: 25528 2379/* 2248 */ MCD::OPC_Decode, 255, 7, 105, // Opcode: MVE_VLDRBS32 2380/* 2252 */ MCD::OPC_FilterValue, 15, 231, 90, 0, // Skip to: 25528 2381/* 2257 */ MCD::OPC_CheckPredicate, 22, 226, 90, 0, // Skip to: 25528 2382/* 2262 */ MCD::OPC_CheckField, 22, 1, 0, 219, 90, 0, // Skip to: 25528 2383/* 2269 */ MCD::OPC_Decode, 135, 8, 105, // Opcode: MVE_VLDRBU32 2384/* 2273 */ MCD::OPC_FilterValue, 1, 210, 90, 0, // Skip to: 25528 2385/* 2278 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2386/* 2281 */ MCD::OPC_FilterValue, 14, 16, 0, 0, // Skip to: 2302 2387/* 2286 */ MCD::OPC_CheckPredicate, 22, 197, 90, 0, // Skip to: 25528 2388/* 2291 */ MCD::OPC_CheckField, 22, 1, 0, 190, 90, 0, // Skip to: 25528 2389/* 2298 */ MCD::OPC_Decode, 147, 8, 109, // Opcode: MVE_VLDRHS32 2390/* 2302 */ MCD::OPC_FilterValue, 15, 181, 90, 0, // Skip to: 25528 2391/* 2307 */ MCD::OPC_CheckPredicate, 22, 176, 90, 0, // Skip to: 25528 2392/* 2312 */ MCD::OPC_CheckField, 22, 1, 0, 169, 90, 0, // Skip to: 25528 2393/* 2319 */ MCD::OPC_Decode, 157, 8, 109, // Opcode: MVE_VLDRHU32 2394/* 2323 */ MCD::OPC_FilterValue, 1, 160, 90, 0, // Skip to: 25528 2395/* 2328 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 2396/* 2331 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 2366 2397/* 2336 */ MCD::OPC_CheckPredicate, 22, 147, 90, 0, // Skip to: 25528 2398/* 2341 */ MCD::OPC_CheckField, 28, 4, 15, 140, 90, 0, // Skip to: 25528 2399/* 2348 */ MCD::OPC_CheckField, 22, 3, 2, 133, 90, 0, // Skip to: 25528 2400/* 2355 */ MCD::OPC_CheckField, 4, 3, 5, 126, 90, 0, // Skip to: 25528 2401/* 2362 */ MCD::OPC_Decode, 146, 8, 104, // Opcode: MVE_VLDRDU64_rq_u 2402/* 2366 */ MCD::OPC_FilterValue, 1, 117, 90, 0, // Skip to: 25528 2403/* 2371 */ MCD::OPC_CheckPredicate, 22, 112, 90, 0, // Skip to: 25528 2404/* 2376 */ MCD::OPC_CheckField, 28, 4, 15, 105, 90, 0, // Skip to: 25528 2405/* 2383 */ MCD::OPC_CheckField, 22, 3, 2, 98, 90, 0, // Skip to: 25528 2406/* 2390 */ MCD::OPC_CheckField, 4, 3, 5, 91, 90, 0, // Skip to: 25528 2407/* 2397 */ MCD::OPC_Decode, 145, 8, 104, // Opcode: MVE_VLDRDU64_rq 2408/* 2401 */ MCD::OPC_FilterValue, 2, 159, 0, 0, // Skip to: 2565 2409/* 2406 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 2410/* 2409 */ MCD::OPC_FilterValue, 0, 73, 0, 0, // Skip to: 2487 2411/* 2414 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2412/* 2417 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 2452 2413/* 2422 */ MCD::OPC_CheckPredicate, 22, 61, 90, 0, // Skip to: 25528 2414/* 2427 */ MCD::OPC_CheckField, 28, 4, 14, 54, 90, 0, // Skip to: 25528 2415/* 2434 */ MCD::OPC_CheckField, 22, 1, 0, 47, 90, 0, // Skip to: 25528 2416/* 2441 */ MCD::OPC_CheckField, 7, 1, 0, 40, 90, 0, // Skip to: 25528 2417/* 2448 */ MCD::OPC_Decode, 179, 12, 106, // Opcode: MVE_VSTRB32_post 2418/* 2452 */ MCD::OPC_FilterValue, 1, 31, 90, 0, // Skip to: 25528 2419/* 2457 */ MCD::OPC_CheckPredicate, 22, 26, 90, 0, // Skip to: 25528 2420/* 2462 */ MCD::OPC_CheckField, 28, 4, 14, 19, 90, 0, // Skip to: 25528 2421/* 2469 */ MCD::OPC_CheckField, 22, 1, 0, 12, 90, 0, // Skip to: 25528 2422/* 2476 */ MCD::OPC_CheckField, 7, 1, 0, 5, 90, 0, // Skip to: 25528 2423/* 2483 */ MCD::OPC_Decode, 180, 12, 107, // Opcode: MVE_VSTRB32_pre 2424/* 2487 */ MCD::OPC_FilterValue, 1, 252, 89, 0, // Skip to: 25528 2425/* 2492 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2426/* 2495 */ MCD::OPC_FilterValue, 0, 30, 0, 0, // Skip to: 2530 2427/* 2500 */ MCD::OPC_CheckPredicate, 22, 239, 89, 0, // Skip to: 25528 2428/* 2505 */ MCD::OPC_CheckField, 28, 4, 14, 232, 89, 0, // Skip to: 25528 2429/* 2512 */ MCD::OPC_CheckField, 22, 1, 0, 225, 89, 0, // Skip to: 25528 2430/* 2519 */ MCD::OPC_CheckField, 7, 1, 0, 218, 89, 0, // Skip to: 25528 2431/* 2526 */ MCD::OPC_Decode, 193, 12, 111, // Opcode: MVE_VSTRH32_post 2432/* 2530 */ MCD::OPC_FilterValue, 1, 209, 89, 0, // Skip to: 25528 2433/* 2535 */ MCD::OPC_CheckPredicate, 22, 204, 89, 0, // Skip to: 25528 2434/* 2540 */ MCD::OPC_CheckField, 28, 4, 14, 197, 89, 0, // Skip to: 25528 2435/* 2547 */ MCD::OPC_CheckField, 22, 1, 0, 190, 89, 0, // Skip to: 25528 2436/* 2554 */ MCD::OPC_CheckField, 7, 1, 0, 183, 89, 0, // Skip to: 25528 2437/* 2561 */ MCD::OPC_Decode, 194, 12, 112, // Opcode: MVE_VSTRH32_pre 2438/* 2565 */ MCD::OPC_FilterValue, 3, 174, 89, 0, // Skip to: 25528 2439/* 2570 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 2440/* 2573 */ MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 2709 2441/* 2578 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2442/* 2581 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 2645 2443/* 2586 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2444/* 2589 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 2617 2445/* 2594 */ MCD::OPC_CheckPredicate, 22, 145, 89, 0, // Skip to: 25528 2446/* 2599 */ MCD::OPC_CheckField, 22, 1, 0, 138, 89, 0, // Skip to: 25528 2447/* 2606 */ MCD::OPC_CheckField, 7, 1, 0, 131, 89, 0, // Skip to: 25528 2448/* 2613 */ MCD::OPC_Decode, 128, 8, 106, // Opcode: MVE_VLDRBS32_post 2449/* 2617 */ MCD::OPC_FilterValue, 15, 122, 89, 0, // Skip to: 25528 2450/* 2622 */ MCD::OPC_CheckPredicate, 22, 117, 89, 0, // Skip to: 25528 2451/* 2627 */ MCD::OPC_CheckField, 22, 1, 0, 110, 89, 0, // Skip to: 25528 2452/* 2634 */ MCD::OPC_CheckField, 7, 1, 0, 103, 89, 0, // Skip to: 25528 2453/* 2641 */ MCD::OPC_Decode, 136, 8, 106, // Opcode: MVE_VLDRBU32_post 2454/* 2645 */ MCD::OPC_FilterValue, 1, 94, 89, 0, // Skip to: 25528 2455/* 2650 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2456/* 2653 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 2681 2457/* 2658 */ MCD::OPC_CheckPredicate, 22, 81, 89, 0, // Skip to: 25528 2458/* 2663 */ MCD::OPC_CheckField, 22, 1, 0, 74, 89, 0, // Skip to: 25528 2459/* 2670 */ MCD::OPC_CheckField, 7, 1, 0, 67, 89, 0, // Skip to: 25528 2460/* 2677 */ MCD::OPC_Decode, 129, 8, 107, // Opcode: MVE_VLDRBS32_pre 2461/* 2681 */ MCD::OPC_FilterValue, 15, 58, 89, 0, // Skip to: 25528 2462/* 2686 */ MCD::OPC_CheckPredicate, 22, 53, 89, 0, // Skip to: 25528 2463/* 2691 */ MCD::OPC_CheckField, 22, 1, 0, 46, 89, 0, // Skip to: 25528 2464/* 2698 */ MCD::OPC_CheckField, 7, 1, 0, 39, 89, 0, // Skip to: 25528 2465/* 2705 */ MCD::OPC_Decode, 137, 8, 107, // Opcode: MVE_VLDRBU32_pre 2466/* 2709 */ MCD::OPC_FilterValue, 1, 30, 89, 0, // Skip to: 25528 2467/* 2714 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2468/* 2717 */ MCD::OPC_FilterValue, 0, 59, 0, 0, // Skip to: 2781 2469/* 2722 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2470/* 2725 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 2753 2471/* 2730 */ MCD::OPC_CheckPredicate, 22, 9, 89, 0, // Skip to: 25528 2472/* 2735 */ MCD::OPC_CheckField, 22, 1, 0, 2, 89, 0, // Skip to: 25528 2473/* 2742 */ MCD::OPC_CheckField, 7, 1, 0, 251, 88, 0, // Skip to: 25528 2474/* 2749 */ MCD::OPC_Decode, 148, 8, 111, // Opcode: MVE_VLDRHS32_post 2475/* 2753 */ MCD::OPC_FilterValue, 15, 242, 88, 0, // Skip to: 25528 2476/* 2758 */ MCD::OPC_CheckPredicate, 22, 237, 88, 0, // Skip to: 25528 2477/* 2763 */ MCD::OPC_CheckField, 22, 1, 0, 230, 88, 0, // Skip to: 25528 2478/* 2770 */ MCD::OPC_CheckField, 7, 1, 0, 223, 88, 0, // Skip to: 25528 2479/* 2777 */ MCD::OPC_Decode, 158, 8, 111, // Opcode: MVE_VLDRHU32_post 2480/* 2781 */ MCD::OPC_FilterValue, 1, 214, 88, 0, // Skip to: 25528 2481/* 2786 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2482/* 2789 */ MCD::OPC_FilterValue, 14, 23, 0, 0, // Skip to: 2817 2483/* 2794 */ MCD::OPC_CheckPredicate, 22, 201, 88, 0, // Skip to: 25528 2484/* 2799 */ MCD::OPC_CheckField, 22, 1, 0, 194, 88, 0, // Skip to: 25528 2485/* 2806 */ MCD::OPC_CheckField, 7, 1, 0, 187, 88, 0, // Skip to: 25528 2486/* 2813 */ MCD::OPC_Decode, 149, 8, 112, // Opcode: MVE_VLDRHS32_pre 2487/* 2817 */ MCD::OPC_FilterValue, 15, 178, 88, 0, // Skip to: 25528 2488/* 2822 */ MCD::OPC_CheckPredicate, 22, 173, 88, 0, // Skip to: 25528 2489/* 2827 */ MCD::OPC_CheckField, 22, 1, 0, 166, 88, 0, // Skip to: 25528 2490/* 2834 */ MCD::OPC_CheckField, 7, 1, 0, 159, 88, 0, // Skip to: 25528 2491/* 2841 */ MCD::OPC_Decode, 159, 8, 112, // Opcode: MVE_VLDRHU32_pre 2492/* 2845 */ MCD::OPC_FilterValue, 30, 160, 6, 0, // Skip to: 4546 2493/* 2850 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 2494/* 2853 */ MCD::OPC_FilterValue, 0, 179, 1, 0, // Skip to: 3293 2495/* 2858 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2496/* 2861 */ MCD::OPC_FilterValue, 0, 222, 0, 0, // Skip to: 3088 2497/* 2866 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2498/* 2869 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 3045 2499/* 2874 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2500/* 2877 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 2905 2501/* 2882 */ MCD::OPC_CheckPredicate, 22, 113, 88, 0, // Skip to: 25528 2502/* 2887 */ MCD::OPC_CheckField, 28, 4, 15, 106, 88, 0, // Skip to: 25528 2503/* 2894 */ MCD::OPC_CheckField, 23, 1, 1, 99, 88, 0, // Skip to: 25528 2504/* 2901 */ MCD::OPC_Decode, 142, 12, 113, // Opcode: MVE_VST20_8 2505/* 2905 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 2933 2506/* 2910 */ MCD::OPC_CheckPredicate, 22, 85, 88, 0, // Skip to: 25528 2507/* 2915 */ MCD::OPC_CheckField, 28, 4, 15, 78, 88, 0, // Skip to: 25528 2508/* 2922 */ MCD::OPC_CheckField, 23, 1, 1, 71, 88, 0, // Skip to: 25528 2509/* 2929 */ MCD::OPC_Decode, 154, 12, 114, // Opcode: MVE_VST40_8 2510/* 2933 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 2961 2511/* 2938 */ MCD::OPC_CheckPredicate, 22, 57, 88, 0, // Skip to: 25528 2512/* 2943 */ MCD::OPC_CheckField, 28, 4, 15, 50, 88, 0, // Skip to: 25528 2513/* 2950 */ MCD::OPC_CheckField, 23, 1, 1, 43, 88, 0, // Skip to: 25528 2514/* 2957 */ MCD::OPC_Decode, 148, 12, 113, // Opcode: MVE_VST21_8 2515/* 2961 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 2989 2516/* 2966 */ MCD::OPC_CheckPredicate, 22, 29, 88, 0, // Skip to: 25528 2517/* 2971 */ MCD::OPC_CheckField, 28, 4, 15, 22, 88, 0, // Skip to: 25528 2518/* 2978 */ MCD::OPC_CheckField, 23, 1, 1, 15, 88, 0, // Skip to: 25528 2519/* 2985 */ MCD::OPC_Decode, 160, 12, 114, // Opcode: MVE_VST41_8 2520/* 2989 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 3017 2521/* 2994 */ MCD::OPC_CheckPredicate, 22, 1, 88, 0, // Skip to: 25528 2522/* 2999 */ MCD::OPC_CheckField, 28, 4, 15, 250, 87, 0, // Skip to: 25528 2523/* 3006 */ MCD::OPC_CheckField, 23, 1, 1, 243, 87, 0, // Skip to: 25528 2524/* 3013 */ MCD::OPC_Decode, 166, 12, 114, // Opcode: MVE_VST42_8 2525/* 3017 */ MCD::OPC_FilterValue, 97, 234, 87, 0, // Skip to: 25528 2526/* 3022 */ MCD::OPC_CheckPredicate, 22, 229, 87, 0, // Skip to: 25528 2527/* 3027 */ MCD::OPC_CheckField, 28, 4, 15, 222, 87, 0, // Skip to: 25528 2528/* 3034 */ MCD::OPC_CheckField, 23, 1, 1, 215, 87, 0, // Skip to: 25528 2529/* 3041 */ MCD::OPC_Decode, 172, 12, 114, // Opcode: MVE_VST43_8 2530/* 3045 */ MCD::OPC_FilterValue, 1, 206, 87, 0, // Skip to: 25528 2531/* 3050 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2532/* 3053 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 3067 2533/* 3058 */ MCD::OPC_CheckPredicate, 22, 193, 87, 0, // Skip to: 25528 2534/* 3063 */ MCD::OPC_Decode, 183, 12, 115, // Opcode: MVE_VSTRBU8 2535/* 3067 */ MCD::OPC_FilterValue, 15, 184, 87, 0, // Skip to: 25528 2536/* 3072 */ MCD::OPC_CheckPredicate, 22, 179, 87, 0, // Skip to: 25528 2537/* 3077 */ MCD::OPC_CheckField, 16, 1, 0, 172, 87, 0, // Skip to: 25528 2538/* 3084 */ MCD::OPC_Decode, 200, 12, 116, // Opcode: MVE_VSTRW32_qi 2539/* 3088 */ MCD::OPC_FilterValue, 1, 163, 87, 0, // Skip to: 25528 2540/* 3093 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2541/* 3096 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 3272 2542/* 3101 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2543/* 3104 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 3132 2544/* 3109 */ MCD::OPC_CheckPredicate, 22, 142, 87, 0, // Skip to: 25528 2545/* 3114 */ MCD::OPC_CheckField, 28, 4, 15, 135, 87, 0, // Skip to: 25528 2546/* 3121 */ MCD::OPC_CheckField, 23, 1, 1, 128, 87, 0, // Skip to: 25528 2547/* 3128 */ MCD::OPC_Decode, 138, 12, 113, // Opcode: MVE_VST20_16 2548/* 3132 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 3160 2549/* 3137 */ MCD::OPC_CheckPredicate, 22, 114, 87, 0, // Skip to: 25528 2550/* 3142 */ MCD::OPC_CheckField, 28, 4, 15, 107, 87, 0, // Skip to: 25528 2551/* 3149 */ MCD::OPC_CheckField, 23, 1, 1, 100, 87, 0, // Skip to: 25528 2552/* 3156 */ MCD::OPC_Decode, 150, 12, 114, // Opcode: MVE_VST40_16 2553/* 3160 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 3188 2554/* 3165 */ MCD::OPC_CheckPredicate, 22, 86, 87, 0, // Skip to: 25528 2555/* 3170 */ MCD::OPC_CheckField, 28, 4, 15, 79, 87, 0, // Skip to: 25528 2556/* 3177 */ MCD::OPC_CheckField, 23, 1, 1, 72, 87, 0, // Skip to: 25528 2557/* 3184 */ MCD::OPC_Decode, 144, 12, 113, // Opcode: MVE_VST21_16 2558/* 3188 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 3216 2559/* 3193 */ MCD::OPC_CheckPredicate, 22, 58, 87, 0, // Skip to: 25528 2560/* 3198 */ MCD::OPC_CheckField, 28, 4, 15, 51, 87, 0, // Skip to: 25528 2561/* 3205 */ MCD::OPC_CheckField, 23, 1, 1, 44, 87, 0, // Skip to: 25528 2562/* 3212 */ MCD::OPC_Decode, 156, 12, 114, // Opcode: MVE_VST41_16 2563/* 3216 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 3244 2564/* 3221 */ MCD::OPC_CheckPredicate, 22, 30, 87, 0, // Skip to: 25528 2565/* 3226 */ MCD::OPC_CheckField, 28, 4, 15, 23, 87, 0, // Skip to: 25528 2566/* 3233 */ MCD::OPC_CheckField, 23, 1, 1, 16, 87, 0, // Skip to: 25528 2567/* 3240 */ MCD::OPC_Decode, 162, 12, 114, // Opcode: MVE_VST42_16 2568/* 3244 */ MCD::OPC_FilterValue, 97, 7, 87, 0, // Skip to: 25528 2569/* 3249 */ MCD::OPC_CheckPredicate, 22, 2, 87, 0, // Skip to: 25528 2570/* 3254 */ MCD::OPC_CheckField, 28, 4, 15, 251, 86, 0, // Skip to: 25528 2571/* 3261 */ MCD::OPC_CheckField, 23, 1, 1, 244, 86, 0, // Skip to: 25528 2572/* 3268 */ MCD::OPC_Decode, 168, 12, 114, // Opcode: MVE_VST43_16 2573/* 3272 */ MCD::OPC_FilterValue, 1, 235, 86, 0, // Skip to: 25528 2574/* 3277 */ MCD::OPC_CheckPredicate, 22, 230, 86, 0, // Skip to: 25528 2575/* 3282 */ MCD::OPC_CheckField, 28, 4, 14, 223, 86, 0, // Skip to: 25528 2576/* 3289 */ MCD::OPC_Decode, 197, 12, 117, // Opcode: MVE_VSTRHU16 2577/* 3293 */ MCD::OPC_FilterValue, 1, 179, 1, 0, // Skip to: 3733 2578/* 3298 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2579/* 3301 */ MCD::OPC_FilterValue, 0, 222, 0, 0, // Skip to: 3528 2580/* 3306 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2581/* 3309 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 3485 2582/* 3314 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2583/* 3317 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 3345 2584/* 3322 */ MCD::OPC_CheckPredicate, 22, 185, 86, 0, // Skip to: 25528 2585/* 3327 */ MCD::OPC_CheckField, 28, 4, 15, 178, 86, 0, // Skip to: 25528 2586/* 3334 */ MCD::OPC_CheckField, 23, 1, 1, 171, 86, 0, // Skip to: 25528 2587/* 3341 */ MCD::OPC_Decode, 219, 7, 118, // Opcode: MVE_VLD20_8 2588/* 3345 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 3373 2589/* 3350 */ MCD::OPC_CheckPredicate, 22, 157, 86, 0, // Skip to: 25528 2590/* 3355 */ MCD::OPC_CheckField, 28, 4, 15, 150, 86, 0, // Skip to: 25528 2591/* 3362 */ MCD::OPC_CheckField, 23, 1, 1, 143, 86, 0, // Skip to: 25528 2592/* 3369 */ MCD::OPC_Decode, 231, 7, 119, // Opcode: MVE_VLD40_8 2593/* 3373 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 3401 2594/* 3378 */ MCD::OPC_CheckPredicate, 22, 129, 86, 0, // Skip to: 25528 2595/* 3383 */ MCD::OPC_CheckField, 28, 4, 15, 122, 86, 0, // Skip to: 25528 2596/* 3390 */ MCD::OPC_CheckField, 23, 1, 1, 115, 86, 0, // Skip to: 25528 2597/* 3397 */ MCD::OPC_Decode, 225, 7, 118, // Opcode: MVE_VLD21_8 2598/* 3401 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 3429 2599/* 3406 */ MCD::OPC_CheckPredicate, 22, 101, 86, 0, // Skip to: 25528 2600/* 3411 */ MCD::OPC_CheckField, 28, 4, 15, 94, 86, 0, // Skip to: 25528 2601/* 3418 */ MCD::OPC_CheckField, 23, 1, 1, 87, 86, 0, // Skip to: 25528 2602/* 3425 */ MCD::OPC_Decode, 237, 7, 119, // Opcode: MVE_VLD41_8 2603/* 3429 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 3457 2604/* 3434 */ MCD::OPC_CheckPredicate, 22, 73, 86, 0, // Skip to: 25528 2605/* 3439 */ MCD::OPC_CheckField, 28, 4, 15, 66, 86, 0, // Skip to: 25528 2606/* 3446 */ MCD::OPC_CheckField, 23, 1, 1, 59, 86, 0, // Skip to: 25528 2607/* 3453 */ MCD::OPC_Decode, 243, 7, 119, // Opcode: MVE_VLD42_8 2608/* 3457 */ MCD::OPC_FilterValue, 97, 50, 86, 0, // Skip to: 25528 2609/* 3462 */ MCD::OPC_CheckPredicate, 22, 45, 86, 0, // Skip to: 25528 2610/* 3467 */ MCD::OPC_CheckField, 28, 4, 15, 38, 86, 0, // Skip to: 25528 2611/* 3474 */ MCD::OPC_CheckField, 23, 1, 1, 31, 86, 0, // Skip to: 25528 2612/* 3481 */ MCD::OPC_Decode, 249, 7, 119, // Opcode: MVE_VLD43_8 2613/* 3485 */ MCD::OPC_FilterValue, 1, 22, 86, 0, // Skip to: 25528 2614/* 3490 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2615/* 3493 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 3507 2616/* 3498 */ MCD::OPC_CheckPredicate, 22, 9, 86, 0, // Skip to: 25528 2617/* 3503 */ MCD::OPC_Decode, 139, 8, 115, // Opcode: MVE_VLDRBU8 2618/* 3507 */ MCD::OPC_FilterValue, 15, 0, 86, 0, // Skip to: 25528 2619/* 3512 */ MCD::OPC_CheckPredicate, 22, 251, 85, 0, // Skip to: 25528 2620/* 3517 */ MCD::OPC_CheckField, 16, 1, 0, 244, 85, 0, // Skip to: 25528 2621/* 3524 */ MCD::OPC_Decode, 165, 8, 116, // Opcode: MVE_VLDRWU32_qi 2622/* 3528 */ MCD::OPC_FilterValue, 1, 235, 85, 0, // Skip to: 25528 2623/* 3533 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2624/* 3536 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 3712 2625/* 3541 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2626/* 3544 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 3572 2627/* 3549 */ MCD::OPC_CheckPredicate, 22, 214, 85, 0, // Skip to: 25528 2628/* 3554 */ MCD::OPC_CheckField, 28, 4, 15, 207, 85, 0, // Skip to: 25528 2629/* 3561 */ MCD::OPC_CheckField, 23, 1, 1, 200, 85, 0, // Skip to: 25528 2630/* 3568 */ MCD::OPC_Decode, 215, 7, 118, // Opcode: MVE_VLD20_16 2631/* 3572 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 3600 2632/* 3577 */ MCD::OPC_CheckPredicate, 22, 186, 85, 0, // Skip to: 25528 2633/* 3582 */ MCD::OPC_CheckField, 28, 4, 15, 179, 85, 0, // Skip to: 25528 2634/* 3589 */ MCD::OPC_CheckField, 23, 1, 1, 172, 85, 0, // Skip to: 25528 2635/* 3596 */ MCD::OPC_Decode, 227, 7, 119, // Opcode: MVE_VLD40_16 2636/* 3600 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 3628 2637/* 3605 */ MCD::OPC_CheckPredicate, 22, 158, 85, 0, // Skip to: 25528 2638/* 3610 */ MCD::OPC_CheckField, 28, 4, 15, 151, 85, 0, // Skip to: 25528 2639/* 3617 */ MCD::OPC_CheckField, 23, 1, 1, 144, 85, 0, // Skip to: 25528 2640/* 3624 */ MCD::OPC_Decode, 221, 7, 118, // Opcode: MVE_VLD21_16 2641/* 3628 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 3656 2642/* 3633 */ MCD::OPC_CheckPredicate, 22, 130, 85, 0, // Skip to: 25528 2643/* 3638 */ MCD::OPC_CheckField, 28, 4, 15, 123, 85, 0, // Skip to: 25528 2644/* 3645 */ MCD::OPC_CheckField, 23, 1, 1, 116, 85, 0, // Skip to: 25528 2645/* 3652 */ MCD::OPC_Decode, 233, 7, 119, // Opcode: MVE_VLD41_16 2646/* 3656 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 3684 2647/* 3661 */ MCD::OPC_CheckPredicate, 22, 102, 85, 0, // Skip to: 25528 2648/* 3666 */ MCD::OPC_CheckField, 28, 4, 15, 95, 85, 0, // Skip to: 25528 2649/* 3673 */ MCD::OPC_CheckField, 23, 1, 1, 88, 85, 0, // Skip to: 25528 2650/* 3680 */ MCD::OPC_Decode, 239, 7, 119, // Opcode: MVE_VLD42_16 2651/* 3684 */ MCD::OPC_FilterValue, 97, 79, 85, 0, // Skip to: 25528 2652/* 3689 */ MCD::OPC_CheckPredicate, 22, 74, 85, 0, // Skip to: 25528 2653/* 3694 */ MCD::OPC_CheckField, 28, 4, 15, 67, 85, 0, // Skip to: 25528 2654/* 3701 */ MCD::OPC_CheckField, 23, 1, 1, 60, 85, 0, // Skip to: 25528 2655/* 3708 */ MCD::OPC_Decode, 245, 7, 119, // Opcode: MVE_VLD43_16 2656/* 3712 */ MCD::OPC_FilterValue, 1, 51, 85, 0, // Skip to: 25528 2657/* 3717 */ MCD::OPC_CheckPredicate, 22, 46, 85, 0, // Skip to: 25528 2658/* 3722 */ MCD::OPC_CheckField, 28, 4, 14, 39, 85, 0, // Skip to: 25528 2659/* 3729 */ MCD::OPC_Decode, 152, 8, 117, // Opcode: MVE_VLDRHU16 2660/* 3733 */ MCD::OPC_FilterValue, 2, 139, 1, 0, // Skip to: 4133 2661/* 3738 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2662/* 3741 */ MCD::OPC_FilterValue, 0, 202, 0, 0, // Skip to: 3948 2663/* 3746 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2664/* 3749 */ MCD::OPC_FilterValue, 0, 151, 0, 0, // Skip to: 3905 2665/* 3754 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2666/* 3757 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 3771 2667/* 3762 */ MCD::OPC_CheckPredicate, 22, 1, 85, 0, // Skip to: 25528 2668/* 3767 */ MCD::OPC_Decode, 184, 12, 120, // Opcode: MVE_VSTRBU8_post 2669/* 3771 */ MCD::OPC_FilterValue, 15, 248, 84, 0, // Skip to: 25528 2670/* 3776 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2671/* 3779 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 3800 2672/* 3784 */ MCD::OPC_CheckPredicate, 22, 235, 84, 0, // Skip to: 25528 2673/* 3789 */ MCD::OPC_CheckField, 23, 1, 1, 228, 84, 0, // Skip to: 25528 2674/* 3796 */ MCD::OPC_Decode, 143, 12, 121, // Opcode: MVE_VST20_8_wb 2675/* 3800 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 3821 2676/* 3805 */ MCD::OPC_CheckPredicate, 22, 214, 84, 0, // Skip to: 25528 2677/* 3810 */ MCD::OPC_CheckField, 23, 1, 1, 207, 84, 0, // Skip to: 25528 2678/* 3817 */ MCD::OPC_Decode, 155, 12, 122, // Opcode: MVE_VST40_8_wb 2679/* 3821 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 3842 2680/* 3826 */ MCD::OPC_CheckPredicate, 22, 193, 84, 0, // Skip to: 25528 2681/* 3831 */ MCD::OPC_CheckField, 23, 1, 1, 186, 84, 0, // Skip to: 25528 2682/* 3838 */ MCD::OPC_Decode, 149, 12, 121, // Opcode: MVE_VST21_8_wb 2683/* 3842 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 3863 2684/* 3847 */ MCD::OPC_CheckPredicate, 22, 172, 84, 0, // Skip to: 25528 2685/* 3852 */ MCD::OPC_CheckField, 23, 1, 1, 165, 84, 0, // Skip to: 25528 2686/* 3859 */ MCD::OPC_Decode, 161, 12, 122, // Opcode: MVE_VST41_8_wb 2687/* 3863 */ MCD::OPC_FilterValue, 65, 16, 0, 0, // Skip to: 3884 2688/* 3868 */ MCD::OPC_CheckPredicate, 22, 151, 84, 0, // Skip to: 25528 2689/* 3873 */ MCD::OPC_CheckField, 23, 1, 1, 144, 84, 0, // Skip to: 25528 2690/* 3880 */ MCD::OPC_Decode, 167, 12, 122, // Opcode: MVE_VST42_8_wb 2691/* 3884 */ MCD::OPC_FilterValue, 97, 135, 84, 0, // Skip to: 25528 2692/* 3889 */ MCD::OPC_CheckPredicate, 22, 130, 84, 0, // Skip to: 25528 2693/* 3894 */ MCD::OPC_CheckField, 23, 1, 1, 123, 84, 0, // Skip to: 25528 2694/* 3901 */ MCD::OPC_Decode, 173, 12, 122, // Opcode: MVE_VST43_8_wb 2695/* 3905 */ MCD::OPC_FilterValue, 1, 114, 84, 0, // Skip to: 25528 2696/* 3910 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2697/* 3913 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 3927 2698/* 3918 */ MCD::OPC_CheckPredicate, 22, 101, 84, 0, // Skip to: 25528 2699/* 3923 */ MCD::OPC_Decode, 185, 12, 123, // Opcode: MVE_VSTRBU8_pre 2700/* 3927 */ MCD::OPC_FilterValue, 15, 92, 84, 0, // Skip to: 25528 2701/* 3932 */ MCD::OPC_CheckPredicate, 22, 87, 84, 0, // Skip to: 25528 2702/* 3937 */ MCD::OPC_CheckField, 16, 1, 0, 80, 84, 0, // Skip to: 25528 2703/* 3944 */ MCD::OPC_Decode, 201, 12, 124, // Opcode: MVE_VSTRW32_qi_pre 2704/* 3948 */ MCD::OPC_FilterValue, 1, 71, 84, 0, // Skip to: 25528 2705/* 3953 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2706/* 3956 */ MCD::OPC_FilterValue, 0, 151, 0, 0, // Skip to: 4112 2707/* 3961 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2708/* 3964 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 3978 2709/* 3969 */ MCD::OPC_CheckPredicate, 22, 50, 84, 0, // Skip to: 25528 2710/* 3974 */ MCD::OPC_Decode, 198, 12, 125, // Opcode: MVE_VSTRHU16_post 2711/* 3978 */ MCD::OPC_FilterValue, 15, 41, 84, 0, // Skip to: 25528 2712/* 3983 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2713/* 3986 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 4007 2714/* 3991 */ MCD::OPC_CheckPredicate, 22, 28, 84, 0, // Skip to: 25528 2715/* 3996 */ MCD::OPC_CheckField, 23, 1, 1, 21, 84, 0, // Skip to: 25528 2716/* 4003 */ MCD::OPC_Decode, 139, 12, 121, // Opcode: MVE_VST20_16_wb 2717/* 4007 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 4028 2718/* 4012 */ MCD::OPC_CheckPredicate, 22, 7, 84, 0, // Skip to: 25528 2719/* 4017 */ MCD::OPC_CheckField, 23, 1, 1, 0, 84, 0, // Skip to: 25528 2720/* 4024 */ MCD::OPC_Decode, 151, 12, 122, // Opcode: MVE_VST40_16_wb 2721/* 4028 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 4049 2722/* 4033 */ MCD::OPC_CheckPredicate, 22, 242, 83, 0, // Skip to: 25528 2723/* 4038 */ MCD::OPC_CheckField, 23, 1, 1, 235, 83, 0, // Skip to: 25528 2724/* 4045 */ MCD::OPC_Decode, 145, 12, 121, // Opcode: MVE_VST21_16_wb 2725/* 4049 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 4070 2726/* 4054 */ MCD::OPC_CheckPredicate, 22, 221, 83, 0, // Skip to: 25528 2727/* 4059 */ MCD::OPC_CheckField, 23, 1, 1, 214, 83, 0, // Skip to: 25528 2728/* 4066 */ MCD::OPC_Decode, 157, 12, 122, // Opcode: MVE_VST41_16_wb 2729/* 4070 */ MCD::OPC_FilterValue, 65, 16, 0, 0, // Skip to: 4091 2730/* 4075 */ MCD::OPC_CheckPredicate, 22, 200, 83, 0, // Skip to: 25528 2731/* 4080 */ MCD::OPC_CheckField, 23, 1, 1, 193, 83, 0, // Skip to: 25528 2732/* 4087 */ MCD::OPC_Decode, 163, 12, 122, // Opcode: MVE_VST42_16_wb 2733/* 4091 */ MCD::OPC_FilterValue, 97, 184, 83, 0, // Skip to: 25528 2734/* 4096 */ MCD::OPC_CheckPredicate, 22, 179, 83, 0, // Skip to: 25528 2735/* 4101 */ MCD::OPC_CheckField, 23, 1, 1, 172, 83, 0, // Skip to: 25528 2736/* 4108 */ MCD::OPC_Decode, 169, 12, 122, // Opcode: MVE_VST43_16_wb 2737/* 4112 */ MCD::OPC_FilterValue, 1, 163, 83, 0, // Skip to: 25528 2738/* 4117 */ MCD::OPC_CheckPredicate, 22, 158, 83, 0, // Skip to: 25528 2739/* 4122 */ MCD::OPC_CheckField, 28, 4, 14, 151, 83, 0, // Skip to: 25528 2740/* 4129 */ MCD::OPC_Decode, 199, 12, 126, // Opcode: MVE_VSTRHU16_pre 2741/* 4133 */ MCD::OPC_FilterValue, 3, 142, 83, 0, // Skip to: 25528 2742/* 4138 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 2743/* 4141 */ MCD::OPC_FilterValue, 0, 208, 0, 0, // Skip to: 4354 2744/* 4146 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2745/* 4149 */ MCD::OPC_FilterValue, 0, 157, 0, 0, // Skip to: 4311 2746/* 4154 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2747/* 4157 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4171 2748/* 4162 */ MCD::OPC_CheckPredicate, 22, 113, 83, 0, // Skip to: 25528 2749/* 4167 */ MCD::OPC_Decode, 140, 8, 127, // Opcode: MVE_VLDRBU8_post 2750/* 4171 */ MCD::OPC_FilterValue, 15, 104, 83, 0, // Skip to: 25528 2751/* 4176 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2752/* 4179 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4201 2753/* 4184 */ MCD::OPC_CheckPredicate, 22, 91, 83, 0, // Skip to: 25528 2754/* 4189 */ MCD::OPC_CheckField, 23, 1, 1, 84, 83, 0, // Skip to: 25528 2755/* 4196 */ MCD::OPC_Decode, 220, 7, 128, 1, // Opcode: MVE_VLD20_8_wb 2756/* 4201 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4223 2757/* 4206 */ MCD::OPC_CheckPredicate, 22, 69, 83, 0, // Skip to: 25528 2758/* 4211 */ MCD::OPC_CheckField, 23, 1, 1, 62, 83, 0, // Skip to: 25528 2759/* 4218 */ MCD::OPC_Decode, 232, 7, 129, 1, // Opcode: MVE_VLD40_8_wb 2760/* 4223 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 4245 2761/* 4228 */ MCD::OPC_CheckPredicate, 22, 47, 83, 0, // Skip to: 25528 2762/* 4233 */ MCD::OPC_CheckField, 23, 1, 1, 40, 83, 0, // Skip to: 25528 2763/* 4240 */ MCD::OPC_Decode, 226, 7, 128, 1, // Opcode: MVE_VLD21_8_wb 2764/* 4245 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 4267 2765/* 4250 */ MCD::OPC_CheckPredicate, 22, 25, 83, 0, // Skip to: 25528 2766/* 4255 */ MCD::OPC_CheckField, 23, 1, 1, 18, 83, 0, // Skip to: 25528 2767/* 4262 */ MCD::OPC_Decode, 238, 7, 129, 1, // Opcode: MVE_VLD41_8_wb 2768/* 4267 */ MCD::OPC_FilterValue, 65, 17, 0, 0, // Skip to: 4289 2769/* 4272 */ MCD::OPC_CheckPredicate, 22, 3, 83, 0, // Skip to: 25528 2770/* 4277 */ MCD::OPC_CheckField, 23, 1, 1, 252, 82, 0, // Skip to: 25528 2771/* 4284 */ MCD::OPC_Decode, 244, 7, 129, 1, // Opcode: MVE_VLD42_8_wb 2772/* 4289 */ MCD::OPC_FilterValue, 97, 242, 82, 0, // Skip to: 25528 2773/* 4294 */ MCD::OPC_CheckPredicate, 22, 237, 82, 0, // Skip to: 25528 2774/* 4299 */ MCD::OPC_CheckField, 23, 1, 1, 230, 82, 0, // Skip to: 25528 2775/* 4306 */ MCD::OPC_Decode, 250, 7, 129, 1, // Opcode: MVE_VLD43_8_wb 2776/* 4311 */ MCD::OPC_FilterValue, 1, 220, 82, 0, // Skip to: 25528 2777/* 4316 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2778/* 4319 */ MCD::OPC_FilterValue, 14, 9, 0, 0, // Skip to: 4333 2779/* 4324 */ MCD::OPC_CheckPredicate, 22, 207, 82, 0, // Skip to: 25528 2780/* 4329 */ MCD::OPC_Decode, 141, 8, 123, // Opcode: MVE_VLDRBU8_pre 2781/* 4333 */ MCD::OPC_FilterValue, 15, 198, 82, 0, // Skip to: 25528 2782/* 4338 */ MCD::OPC_CheckPredicate, 22, 193, 82, 0, // Skip to: 25528 2783/* 4343 */ MCD::OPC_CheckField, 16, 1, 0, 186, 82, 0, // Skip to: 25528 2784/* 4350 */ MCD::OPC_Decode, 166, 8, 124, // Opcode: MVE_VLDRWU32_qi_pre 2785/* 4354 */ MCD::OPC_FilterValue, 1, 177, 82, 0, // Skip to: 25528 2786/* 4359 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2787/* 4362 */ MCD::OPC_FilterValue, 0, 158, 0, 0, // Skip to: 4525 2788/* 4367 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2789/* 4370 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 4385 2790/* 4375 */ MCD::OPC_CheckPredicate, 22, 156, 82, 0, // Skip to: 25528 2791/* 4380 */ MCD::OPC_Decode, 153, 8, 130, 1, // Opcode: MVE_VLDRHU16_post 2792/* 4385 */ MCD::OPC_FilterValue, 15, 146, 82, 0, // Skip to: 25528 2793/* 4390 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 2794/* 4393 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4415 2795/* 4398 */ MCD::OPC_CheckPredicate, 22, 133, 82, 0, // Skip to: 25528 2796/* 4403 */ MCD::OPC_CheckField, 23, 1, 1, 126, 82, 0, // Skip to: 25528 2797/* 4410 */ MCD::OPC_Decode, 216, 7, 128, 1, // Opcode: MVE_VLD20_16_wb 2798/* 4415 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4437 2799/* 4420 */ MCD::OPC_CheckPredicate, 22, 111, 82, 0, // Skip to: 25528 2800/* 4425 */ MCD::OPC_CheckField, 23, 1, 1, 104, 82, 0, // Skip to: 25528 2801/* 4432 */ MCD::OPC_Decode, 228, 7, 129, 1, // Opcode: MVE_VLD40_16_wb 2802/* 4437 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 4459 2803/* 4442 */ MCD::OPC_CheckPredicate, 22, 89, 82, 0, // Skip to: 25528 2804/* 4447 */ MCD::OPC_CheckField, 23, 1, 1, 82, 82, 0, // Skip to: 25528 2805/* 4454 */ MCD::OPC_Decode, 222, 7, 128, 1, // Opcode: MVE_VLD21_16_wb 2806/* 4459 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 4481 2807/* 4464 */ MCD::OPC_CheckPredicate, 22, 67, 82, 0, // Skip to: 25528 2808/* 4469 */ MCD::OPC_CheckField, 23, 1, 1, 60, 82, 0, // Skip to: 25528 2809/* 4476 */ MCD::OPC_Decode, 234, 7, 129, 1, // Opcode: MVE_VLD41_16_wb 2810/* 4481 */ MCD::OPC_FilterValue, 65, 17, 0, 0, // Skip to: 4503 2811/* 4486 */ MCD::OPC_CheckPredicate, 22, 45, 82, 0, // Skip to: 25528 2812/* 4491 */ MCD::OPC_CheckField, 23, 1, 1, 38, 82, 0, // Skip to: 25528 2813/* 4498 */ MCD::OPC_Decode, 240, 7, 129, 1, // Opcode: MVE_VLD42_16_wb 2814/* 4503 */ MCD::OPC_FilterValue, 97, 28, 82, 0, // Skip to: 25528 2815/* 4508 */ MCD::OPC_CheckPredicate, 22, 23, 82, 0, // Skip to: 25528 2816/* 4513 */ MCD::OPC_CheckField, 23, 1, 1, 16, 82, 0, // Skip to: 25528 2817/* 4520 */ MCD::OPC_Decode, 246, 7, 129, 1, // Opcode: MVE_VLD43_16_wb 2818/* 4525 */ MCD::OPC_FilterValue, 1, 6, 82, 0, // Skip to: 25528 2819/* 4530 */ MCD::OPC_CheckPredicate, 22, 1, 82, 0, // Skip to: 25528 2820/* 4535 */ MCD::OPC_CheckField, 28, 4, 14, 250, 81, 0, // Skip to: 25528 2821/* 4542 */ MCD::OPC_Decode, 154, 8, 126, // Opcode: MVE_VLDRHU16_pre 2822/* 4546 */ MCD::OPC_FilterValue, 31, 241, 81, 0, // Skip to: 25528 2823/* 4551 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 2824/* 4554 */ MCD::OPC_FilterValue, 0, 238, 0, 0, // Skip to: 4797 2825/* 4559 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2826/* 4562 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 4738 2827/* 4567 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... 2828/* 4570 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 4598 2829/* 4575 */ MCD::OPC_CheckPredicate, 22, 212, 81, 0, // Skip to: 25528 2830/* 4580 */ MCD::OPC_CheckField, 28, 4, 15, 205, 81, 0, // Skip to: 25528 2831/* 4587 */ MCD::OPC_CheckField, 23, 1, 1, 198, 81, 0, // Skip to: 25528 2832/* 4594 */ MCD::OPC_Decode, 140, 12, 113, // Opcode: MVE_VST20_32 2833/* 4598 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 4626 2834/* 4603 */ MCD::OPC_CheckPredicate, 22, 184, 81, 0, // Skip to: 25528 2835/* 4608 */ MCD::OPC_CheckField, 28, 4, 15, 177, 81, 0, // Skip to: 25528 2836/* 4615 */ MCD::OPC_CheckField, 23, 1, 1, 170, 81, 0, // Skip to: 25528 2837/* 4622 */ MCD::OPC_Decode, 152, 12, 114, // Opcode: MVE_VST40_32 2838/* 4626 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 4654 2839/* 4631 */ MCD::OPC_CheckPredicate, 22, 156, 81, 0, // Skip to: 25528 2840/* 4636 */ MCD::OPC_CheckField, 28, 4, 15, 149, 81, 0, // Skip to: 25528 2841/* 4643 */ MCD::OPC_CheckField, 23, 1, 1, 142, 81, 0, // Skip to: 25528 2842/* 4650 */ MCD::OPC_Decode, 146, 12, 113, // Opcode: MVE_VST21_32 2843/* 4654 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 4682 2844/* 4659 */ MCD::OPC_CheckPredicate, 22, 128, 81, 0, // Skip to: 25528 2845/* 4664 */ MCD::OPC_CheckField, 28, 4, 15, 121, 81, 0, // Skip to: 25528 2846/* 4671 */ MCD::OPC_CheckField, 23, 1, 1, 114, 81, 0, // Skip to: 25528 2847/* 4678 */ MCD::OPC_Decode, 158, 12, 114, // Opcode: MVE_VST41_32 2848/* 4682 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 4710 2849/* 4687 */ MCD::OPC_CheckPredicate, 22, 100, 81, 0, // Skip to: 25528 2850/* 4692 */ MCD::OPC_CheckField, 28, 4, 15, 93, 81, 0, // Skip to: 25528 2851/* 4699 */ MCD::OPC_CheckField, 23, 1, 1, 86, 81, 0, // Skip to: 25528 2852/* 4706 */ MCD::OPC_Decode, 164, 12, 114, // Opcode: MVE_VST42_32 2853/* 4710 */ MCD::OPC_FilterValue, 97, 77, 81, 0, // Skip to: 25528 2854/* 4715 */ MCD::OPC_CheckPredicate, 22, 72, 81, 0, // Skip to: 25528 2855/* 4720 */ MCD::OPC_CheckField, 28, 4, 15, 65, 81, 0, // Skip to: 25528 2856/* 4727 */ MCD::OPC_CheckField, 23, 1, 1, 58, 81, 0, // Skip to: 25528 2857/* 4734 */ MCD::OPC_Decode, 170, 12, 114, // Opcode: MVE_VST43_32 2858/* 4738 */ MCD::OPC_FilterValue, 1, 49, 81, 0, // Skip to: 25528 2859/* 4743 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2860/* 4746 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 4768 2861/* 4751 */ MCD::OPC_CheckPredicate, 22, 36, 81, 0, // Skip to: 25528 2862/* 4756 */ MCD::OPC_CheckField, 7, 1, 0, 29, 81, 0, // Skip to: 25528 2863/* 4763 */ MCD::OPC_Decode, 204, 12, 131, 1, // Opcode: MVE_VSTRWU32 2864/* 4768 */ MCD::OPC_FilterValue, 15, 19, 81, 0, // Skip to: 25528 2865/* 4773 */ MCD::OPC_CheckPredicate, 22, 14, 81, 0, // Skip to: 25528 2866/* 4778 */ MCD::OPC_CheckField, 16, 1, 0, 7, 81, 0, // Skip to: 25528 2867/* 4785 */ MCD::OPC_CheckField, 7, 1, 0, 0, 81, 0, // Skip to: 25528 2868/* 4792 */ MCD::OPC_Decode, 186, 12, 132, 1, // Opcode: MVE_VSTRD64_qi 2869/* 4797 */ MCD::OPC_FilterValue, 1, 238, 0, 0, // Skip to: 5040 2870/* 4802 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2871/* 4805 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 4981 2872/* 4810 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... 2873/* 4813 */ MCD::OPC_FilterValue, 0, 23, 0, 0, // Skip to: 4841 2874/* 4818 */ MCD::OPC_CheckPredicate, 22, 225, 80, 0, // Skip to: 25528 2875/* 4823 */ MCD::OPC_CheckField, 28, 4, 15, 218, 80, 0, // Skip to: 25528 2876/* 4830 */ MCD::OPC_CheckField, 23, 1, 1, 211, 80, 0, // Skip to: 25528 2877/* 4837 */ MCD::OPC_Decode, 217, 7, 118, // Opcode: MVE_VLD20_32 2878/* 4841 */ MCD::OPC_FilterValue, 1, 23, 0, 0, // Skip to: 4869 2879/* 4846 */ MCD::OPC_CheckPredicate, 22, 197, 80, 0, // Skip to: 25528 2880/* 4851 */ MCD::OPC_CheckField, 28, 4, 15, 190, 80, 0, // Skip to: 25528 2881/* 4858 */ MCD::OPC_CheckField, 23, 1, 1, 183, 80, 0, // Skip to: 25528 2882/* 4865 */ MCD::OPC_Decode, 229, 7, 119, // Opcode: MVE_VLD40_32 2883/* 4869 */ MCD::OPC_FilterValue, 32, 23, 0, 0, // Skip to: 4897 2884/* 4874 */ MCD::OPC_CheckPredicate, 22, 169, 80, 0, // Skip to: 25528 2885/* 4879 */ MCD::OPC_CheckField, 28, 4, 15, 162, 80, 0, // Skip to: 25528 2886/* 4886 */ MCD::OPC_CheckField, 23, 1, 1, 155, 80, 0, // Skip to: 25528 2887/* 4893 */ MCD::OPC_Decode, 223, 7, 118, // Opcode: MVE_VLD21_32 2888/* 4897 */ MCD::OPC_FilterValue, 33, 23, 0, 0, // Skip to: 4925 2889/* 4902 */ MCD::OPC_CheckPredicate, 22, 141, 80, 0, // Skip to: 25528 2890/* 4907 */ MCD::OPC_CheckField, 28, 4, 15, 134, 80, 0, // Skip to: 25528 2891/* 4914 */ MCD::OPC_CheckField, 23, 1, 1, 127, 80, 0, // Skip to: 25528 2892/* 4921 */ MCD::OPC_Decode, 235, 7, 119, // Opcode: MVE_VLD41_32 2893/* 4925 */ MCD::OPC_FilterValue, 65, 23, 0, 0, // Skip to: 4953 2894/* 4930 */ MCD::OPC_CheckPredicate, 22, 113, 80, 0, // Skip to: 25528 2895/* 4935 */ MCD::OPC_CheckField, 28, 4, 15, 106, 80, 0, // Skip to: 25528 2896/* 4942 */ MCD::OPC_CheckField, 23, 1, 1, 99, 80, 0, // Skip to: 25528 2897/* 4949 */ MCD::OPC_Decode, 241, 7, 119, // Opcode: MVE_VLD42_32 2898/* 4953 */ MCD::OPC_FilterValue, 97, 90, 80, 0, // Skip to: 25528 2899/* 4958 */ MCD::OPC_CheckPredicate, 22, 85, 80, 0, // Skip to: 25528 2900/* 4963 */ MCD::OPC_CheckField, 28, 4, 15, 78, 80, 0, // Skip to: 25528 2901/* 4970 */ MCD::OPC_CheckField, 23, 1, 1, 71, 80, 0, // Skip to: 25528 2902/* 4977 */ MCD::OPC_Decode, 247, 7, 119, // Opcode: MVE_VLD43_32 2903/* 4981 */ MCD::OPC_FilterValue, 1, 62, 80, 0, // Skip to: 25528 2904/* 4986 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2905/* 4989 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5011 2906/* 4994 */ MCD::OPC_CheckPredicate, 22, 49, 80, 0, // Skip to: 25528 2907/* 4999 */ MCD::OPC_CheckField, 7, 1, 0, 42, 80, 0, // Skip to: 25528 2908/* 5006 */ MCD::OPC_Decode, 162, 8, 131, 1, // Opcode: MVE_VLDRWU32 2909/* 5011 */ MCD::OPC_FilterValue, 15, 32, 80, 0, // Skip to: 25528 2910/* 5016 */ MCD::OPC_CheckPredicate, 22, 27, 80, 0, // Skip to: 25528 2911/* 5021 */ MCD::OPC_CheckField, 16, 1, 0, 20, 80, 0, // Skip to: 25528 2912/* 5028 */ MCD::OPC_CheckField, 7, 1, 0, 13, 80, 0, // Skip to: 25528 2913/* 5035 */ MCD::OPC_Decode, 143, 8, 132, 1, // Opcode: MVE_VLDRDU64_qi 2914/* 5040 */ MCD::OPC_FilterValue, 2, 226, 0, 0, // Skip to: 5271 2915/* 5045 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2916/* 5048 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 5212 2917/* 5053 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2918/* 5056 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5078 2919/* 5061 */ MCD::OPC_CheckPredicate, 22, 238, 79, 0, // Skip to: 25528 2920/* 5066 */ MCD::OPC_CheckField, 7, 1, 0, 231, 79, 0, // Skip to: 25528 2921/* 5073 */ MCD::OPC_Decode, 205, 12, 133, 1, // Opcode: MVE_VSTRWU32_post 2922/* 5078 */ MCD::OPC_FilterValue, 15, 221, 79, 0, // Skip to: 25528 2923/* 5083 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... 2924/* 5086 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 5107 2925/* 5091 */ MCD::OPC_CheckPredicate, 22, 208, 79, 0, // Skip to: 25528 2926/* 5096 */ MCD::OPC_CheckField, 23, 1, 1, 201, 79, 0, // Skip to: 25528 2927/* 5103 */ MCD::OPC_Decode, 141, 12, 121, // Opcode: MVE_VST20_32_wb 2928/* 5107 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 5128 2929/* 5112 */ MCD::OPC_CheckPredicate, 22, 187, 79, 0, // Skip to: 25528 2930/* 5117 */ MCD::OPC_CheckField, 23, 1, 1, 180, 79, 0, // Skip to: 25528 2931/* 5124 */ MCD::OPC_Decode, 153, 12, 122, // Opcode: MVE_VST40_32_wb 2932/* 5128 */ MCD::OPC_FilterValue, 32, 16, 0, 0, // Skip to: 5149 2933/* 5133 */ MCD::OPC_CheckPredicate, 22, 166, 79, 0, // Skip to: 25528 2934/* 5138 */ MCD::OPC_CheckField, 23, 1, 1, 159, 79, 0, // Skip to: 25528 2935/* 5145 */ MCD::OPC_Decode, 147, 12, 121, // Opcode: MVE_VST21_32_wb 2936/* 5149 */ MCD::OPC_FilterValue, 33, 16, 0, 0, // Skip to: 5170 2937/* 5154 */ MCD::OPC_CheckPredicate, 22, 145, 79, 0, // Skip to: 25528 2938/* 5159 */ MCD::OPC_CheckField, 23, 1, 1, 138, 79, 0, // Skip to: 25528 2939/* 5166 */ MCD::OPC_Decode, 159, 12, 122, // Opcode: MVE_VST41_32_wb 2940/* 5170 */ MCD::OPC_FilterValue, 65, 16, 0, 0, // Skip to: 5191 2941/* 5175 */ MCD::OPC_CheckPredicate, 22, 124, 79, 0, // Skip to: 25528 2942/* 5180 */ MCD::OPC_CheckField, 23, 1, 1, 117, 79, 0, // Skip to: 25528 2943/* 5187 */ MCD::OPC_Decode, 165, 12, 122, // Opcode: MVE_VST42_32_wb 2944/* 5191 */ MCD::OPC_FilterValue, 97, 108, 79, 0, // Skip to: 25528 2945/* 5196 */ MCD::OPC_CheckPredicate, 22, 103, 79, 0, // Skip to: 25528 2946/* 5201 */ MCD::OPC_CheckField, 23, 1, 1, 96, 79, 0, // Skip to: 25528 2947/* 5208 */ MCD::OPC_Decode, 171, 12, 122, // Opcode: MVE_VST43_32_wb 2948/* 5212 */ MCD::OPC_FilterValue, 1, 87, 79, 0, // Skip to: 25528 2949/* 5217 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2950/* 5220 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5242 2951/* 5225 */ MCD::OPC_CheckPredicate, 22, 74, 79, 0, // Skip to: 25528 2952/* 5230 */ MCD::OPC_CheckField, 7, 1, 0, 67, 79, 0, // Skip to: 25528 2953/* 5237 */ MCD::OPC_Decode, 206, 12, 134, 1, // Opcode: MVE_VSTRWU32_pre 2954/* 5242 */ MCD::OPC_FilterValue, 15, 57, 79, 0, // Skip to: 25528 2955/* 5247 */ MCD::OPC_CheckPredicate, 22, 52, 79, 0, // Skip to: 25528 2956/* 5252 */ MCD::OPC_CheckField, 16, 1, 0, 45, 79, 0, // Skip to: 25528 2957/* 5259 */ MCD::OPC_CheckField, 7, 1, 0, 38, 79, 0, // Skip to: 25528 2958/* 5266 */ MCD::OPC_Decode, 187, 12, 135, 1, // Opcode: MVE_VSTRD64_qi_pre 2959/* 5271 */ MCD::OPC_FilterValue, 3, 28, 79, 0, // Skip to: 25528 2960/* 5276 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 2961/* 5279 */ MCD::OPC_FilterValue, 0, 165, 0, 0, // Skip to: 5449 2962/* 5284 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2963/* 5287 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5309 2964/* 5292 */ MCD::OPC_CheckPredicate, 22, 7, 79, 0, // Skip to: 25528 2965/* 5297 */ MCD::OPC_CheckField, 7, 1, 0, 0, 79, 0, // Skip to: 25528 2966/* 5304 */ MCD::OPC_Decode, 163, 8, 136, 1, // Opcode: MVE_VLDRWU32_post 2967/* 5309 */ MCD::OPC_FilterValue, 15, 246, 78, 0, // Skip to: 25528 2968/* 5314 */ MCD::OPC_ExtractField, 0, 8, // Inst{7-0} ... 2969/* 5317 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5339 2970/* 5322 */ MCD::OPC_CheckPredicate, 22, 233, 78, 0, // Skip to: 25528 2971/* 5327 */ MCD::OPC_CheckField, 23, 1, 1, 226, 78, 0, // Skip to: 25528 2972/* 5334 */ MCD::OPC_Decode, 218, 7, 128, 1, // Opcode: MVE_VLD20_32_wb 2973/* 5339 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 5361 2974/* 5344 */ MCD::OPC_CheckPredicate, 22, 211, 78, 0, // Skip to: 25528 2975/* 5349 */ MCD::OPC_CheckField, 23, 1, 1, 204, 78, 0, // Skip to: 25528 2976/* 5356 */ MCD::OPC_Decode, 230, 7, 129, 1, // Opcode: MVE_VLD40_32_wb 2977/* 5361 */ MCD::OPC_FilterValue, 32, 17, 0, 0, // Skip to: 5383 2978/* 5366 */ MCD::OPC_CheckPredicate, 22, 189, 78, 0, // Skip to: 25528 2979/* 5371 */ MCD::OPC_CheckField, 23, 1, 1, 182, 78, 0, // Skip to: 25528 2980/* 5378 */ MCD::OPC_Decode, 224, 7, 128, 1, // Opcode: MVE_VLD21_32_wb 2981/* 5383 */ MCD::OPC_FilterValue, 33, 17, 0, 0, // Skip to: 5405 2982/* 5388 */ MCD::OPC_CheckPredicate, 22, 167, 78, 0, // Skip to: 25528 2983/* 5393 */ MCD::OPC_CheckField, 23, 1, 1, 160, 78, 0, // Skip to: 25528 2984/* 5400 */ MCD::OPC_Decode, 236, 7, 129, 1, // Opcode: MVE_VLD41_32_wb 2985/* 5405 */ MCD::OPC_FilterValue, 65, 17, 0, 0, // Skip to: 5427 2986/* 5410 */ MCD::OPC_CheckPredicate, 22, 145, 78, 0, // Skip to: 25528 2987/* 5415 */ MCD::OPC_CheckField, 23, 1, 1, 138, 78, 0, // Skip to: 25528 2988/* 5422 */ MCD::OPC_Decode, 242, 7, 129, 1, // Opcode: MVE_VLD42_32_wb 2989/* 5427 */ MCD::OPC_FilterValue, 97, 128, 78, 0, // Skip to: 25528 2990/* 5432 */ MCD::OPC_CheckPredicate, 22, 123, 78, 0, // Skip to: 25528 2991/* 5437 */ MCD::OPC_CheckField, 23, 1, 1, 116, 78, 0, // Skip to: 25528 2992/* 5444 */ MCD::OPC_Decode, 248, 7, 129, 1, // Opcode: MVE_VLD43_32_wb 2993/* 5449 */ MCD::OPC_FilterValue, 1, 106, 78, 0, // Skip to: 25528 2994/* 5454 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 2995/* 5457 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5479 2996/* 5462 */ MCD::OPC_CheckPredicate, 22, 93, 78, 0, // Skip to: 25528 2997/* 5467 */ MCD::OPC_CheckField, 7, 1, 0, 86, 78, 0, // Skip to: 25528 2998/* 5474 */ MCD::OPC_Decode, 164, 8, 134, 1, // Opcode: MVE_VLDRWU32_pre 2999/* 5479 */ MCD::OPC_FilterValue, 15, 76, 78, 0, // Skip to: 25528 3000/* 5484 */ MCD::OPC_CheckPredicate, 22, 71, 78, 0, // Skip to: 25528 3001/* 5489 */ MCD::OPC_CheckField, 16, 1, 0, 64, 78, 0, // Skip to: 25528 3002/* 5496 */ MCD::OPC_CheckField, 7, 1, 0, 57, 78, 0, // Skip to: 25528 3003/* 5503 */ MCD::OPC_Decode, 144, 8, 135, 1, // Opcode: MVE_VLDRDU64_qi_pre 3004/* 5508 */ MCD::OPC_FilterValue, 7, 47, 78, 0, // Skip to: 25528 3005/* 5513 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 3006/* 5516 */ MCD::OPC_FilterValue, 0, 19, 29, 0, // Skip to: 12964 3007/* 5521 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 3008/* 5524 */ MCD::OPC_FilterValue, 11, 195, 0, 0, // Skip to: 5724 3009/* 5529 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 3010/* 5532 */ MCD::OPC_FilterValue, 0, 91, 0, 0, // Skip to: 5628 3011/* 5537 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 3012/* 5540 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 5599 3013/* 5545 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3014/* 5548 */ MCD::OPC_FilterValue, 16, 24, 0, 0, // Skip to: 5577 3015/* 5553 */ MCD::OPC_CheckPredicate, 25, 2, 78, 0, // Skip to: 25528 3016/* 5558 */ MCD::OPC_CheckField, 28, 4, 14, 251, 77, 0, // Skip to: 25528 3017/* 5565 */ MCD::OPC_CheckField, 6, 1, 0, 244, 77, 0, // Skip to: 25528 3018/* 5572 */ MCD::OPC_Decode, 175, 9, 137, 1, // Opcode: MVE_VMOV_to_lane_32 3019/* 5577 */ MCD::OPC_FilterValue, 48, 234, 77, 0, // Skip to: 25528 3020/* 5582 */ MCD::OPC_CheckPredicate, 23, 229, 77, 0, // Skip to: 25528 3021/* 5587 */ MCD::OPC_CheckField, 28, 4, 14, 222, 77, 0, // Skip to: 25528 3022/* 5594 */ MCD::OPC_Decode, 174, 9, 138, 1, // Opcode: MVE_VMOV_to_lane_16 3023/* 5599 */ MCD::OPC_FilterValue, 1, 212, 77, 0, // Skip to: 25528 3024/* 5604 */ MCD::OPC_CheckPredicate, 23, 207, 77, 0, // Skip to: 25528 3025/* 5609 */ MCD::OPC_CheckField, 28, 4, 14, 200, 77, 0, // Skip to: 25528 3026/* 5616 */ MCD::OPC_CheckField, 0, 5, 16, 193, 77, 0, // Skip to: 25528 3027/* 5623 */ MCD::OPC_Decode, 176, 9, 139, 1, // Opcode: MVE_VMOV_to_lane_8 3028/* 5628 */ MCD::OPC_FilterValue, 1, 183, 77, 0, // Skip to: 25528 3029/* 5633 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 3030/* 5636 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 5695 3031/* 5641 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 3032/* 5644 */ MCD::OPC_FilterValue, 16, 24, 0, 0, // Skip to: 5673 3033/* 5649 */ MCD::OPC_CheckPredicate, 25, 162, 77, 0, // Skip to: 25528 3034/* 5654 */ MCD::OPC_CheckField, 28, 4, 14, 155, 77, 0, // Skip to: 25528 3035/* 5661 */ MCD::OPC_CheckField, 6, 1, 0, 148, 77, 0, // Skip to: 25528 3036/* 5668 */ MCD::OPC_Decode, 167, 9, 140, 1, // Opcode: MVE_VMOV_from_lane_32 3037/* 5673 */ MCD::OPC_FilterValue, 48, 138, 77, 0, // Skip to: 25528 3038/* 5678 */ MCD::OPC_CheckPredicate, 23, 133, 77, 0, // Skip to: 25528 3039/* 5683 */ MCD::OPC_CheckField, 28, 4, 14, 126, 77, 0, // Skip to: 25528 3040/* 5690 */ MCD::OPC_Decode, 168, 9, 141, 1, // Opcode: MVE_VMOV_from_lane_s16 3041/* 5695 */ MCD::OPC_FilterValue, 1, 116, 77, 0, // Skip to: 25528 3042/* 5700 */ MCD::OPC_CheckPredicate, 23, 111, 77, 0, // Skip to: 25528 3043/* 5705 */ MCD::OPC_CheckField, 28, 4, 14, 104, 77, 0, // Skip to: 25528 3044/* 5712 */ MCD::OPC_CheckField, 0, 5, 16, 97, 77, 0, // Skip to: 25528 3045/* 5719 */ MCD::OPC_Decode, 169, 9, 142, 1, // Opcode: MVE_VMOV_from_lane_s8 3046/* 5724 */ MCD::OPC_FilterValue, 14, 15, 17, 0, // Skip to: 10096 3047/* 5729 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 3048/* 5732 */ MCD::OPC_FilterValue, 0, 3, 3, 0, // Skip to: 6508 3049/* 5737 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 3050/* 5740 */ MCD::OPC_FilterValue, 0, 211, 1, 0, // Skip to: 6212 3051/* 5745 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 3052/* 5748 */ MCD::OPC_FilterValue, 0, 227, 0, 0, // Skip to: 5980 3053/* 5753 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3054/* 5756 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 5868 3055/* 5761 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3056/* 5764 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 5816 3057/* 5769 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3058/* 5772 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5794 3059/* 5777 */ MCD::OPC_CheckPredicate, 22, 34, 77, 0, // Skip to: 25528 3060/* 5782 */ MCD::OPC_CheckField, 4, 1, 0, 27, 77, 0, // Skip to: 25528 3061/* 5789 */ MCD::OPC_Decode, 147, 10, 143, 1, // Opcode: MVE_VQDMLADHs8 3062/* 5794 */ MCD::OPC_FilterValue, 15, 17, 77, 0, // Skip to: 25528 3063/* 5799 */ MCD::OPC_CheckPredicate, 22, 12, 77, 0, // Skip to: 25528 3064/* 5804 */ MCD::OPC_CheckField, 4, 1, 0, 5, 77, 0, // Skip to: 25528 3065/* 5811 */ MCD::OPC_Decode, 159, 10, 143, 1, // Opcode: MVE_VQDMLSDHs8 3066/* 5816 */ MCD::OPC_FilterValue, 1, 251, 76, 0, // Skip to: 25528 3067/* 5821 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3068/* 5824 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5846 3069/* 5829 */ MCD::OPC_CheckPredicate, 22, 238, 76, 0, // Skip to: 25528 3070/* 5834 */ MCD::OPC_CheckField, 4, 1, 0, 231, 76, 0, // Skip to: 25528 3071/* 5841 */ MCD::OPC_Decode, 192, 9, 144, 1, // Opcode: MVE_VMULLBs8 3072/* 5846 */ MCD::OPC_FilterValue, 15, 221, 76, 0, // Skip to: 25528 3073/* 5851 */ MCD::OPC_CheckPredicate, 22, 216, 76, 0, // Skip to: 25528 3074/* 5856 */ MCD::OPC_CheckField, 4, 1, 0, 209, 76, 0, // Skip to: 25528 3075/* 5863 */ MCD::OPC_Decode, 195, 9, 144, 1, // Opcode: MVE_VMULLBu8 3076/* 5868 */ MCD::OPC_FilterValue, 1, 199, 76, 0, // Skip to: 25528 3077/* 5873 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3078/* 5876 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 5928 3079/* 5881 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3080/* 5884 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5906 3081/* 5889 */ MCD::OPC_CheckPredicate, 22, 178, 76, 0, // Skip to: 25528 3082/* 5894 */ MCD::OPC_CheckField, 4, 1, 0, 171, 76, 0, // Skip to: 25528 3083/* 5901 */ MCD::OPC_Decode, 144, 10, 143, 1, // Opcode: MVE_VQDMLADHXs8 3084/* 5906 */ MCD::OPC_FilterValue, 15, 161, 76, 0, // Skip to: 25528 3085/* 5911 */ MCD::OPC_CheckPredicate, 22, 156, 76, 0, // Skip to: 25528 3086/* 5916 */ MCD::OPC_CheckField, 4, 1, 0, 149, 76, 0, // Skip to: 25528 3087/* 5923 */ MCD::OPC_Decode, 156, 10, 143, 1, // Opcode: MVE_VQDMLSDHXs8 3088/* 5928 */ MCD::OPC_FilterValue, 1, 139, 76, 0, // Skip to: 25528 3089/* 5933 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3090/* 5936 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 5958 3091/* 5941 */ MCD::OPC_CheckPredicate, 22, 126, 76, 0, // Skip to: 25528 3092/* 5946 */ MCD::OPC_CheckField, 4, 1, 0, 119, 76, 0, // Skip to: 25528 3093/* 5953 */ MCD::OPC_Decode, 200, 9, 144, 1, // Opcode: MVE_VMULLTs8 3094/* 5958 */ MCD::OPC_FilterValue, 15, 109, 76, 0, // Skip to: 25528 3095/* 5963 */ MCD::OPC_CheckPredicate, 22, 104, 76, 0, // Skip to: 25528 3096/* 5968 */ MCD::OPC_CheckField, 4, 1, 0, 97, 76, 0, // Skip to: 25528 3097/* 5975 */ MCD::OPC_Decode, 203, 9, 144, 1, // Opcode: MVE_VMULLTu8 3098/* 5980 */ MCD::OPC_FilterValue, 1, 87, 76, 0, // Skip to: 25528 3099/* 5985 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3100/* 5988 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 6100 3101/* 5993 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3102/* 5996 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6048 3103/* 6001 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3104/* 6004 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6026 3105/* 6009 */ MCD::OPC_CheckPredicate, 22, 58, 76, 0, // Skip to: 25528 3106/* 6014 */ MCD::OPC_CheckField, 4, 1, 0, 51, 76, 0, // Skip to: 25528 3107/* 6021 */ MCD::OPC_Decode, 194, 10, 143, 1, // Opcode: MVE_VQRDMLADHs8 3108/* 6026 */ MCD::OPC_FilterValue, 15, 41, 76, 0, // Skip to: 25528 3109/* 6031 */ MCD::OPC_CheckPredicate, 22, 36, 76, 0, // Skip to: 25528 3110/* 6036 */ MCD::OPC_CheckField, 4, 1, 0, 29, 76, 0, // Skip to: 25528 3111/* 6043 */ MCD::OPC_Decode, 206, 10, 143, 1, // Opcode: MVE_VQRDMLSDHs8 3112/* 6048 */ MCD::OPC_FilterValue, 1, 19, 76, 0, // Skip to: 25528 3113/* 6053 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3114/* 6056 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6078 3115/* 6061 */ MCD::OPC_CheckPredicate, 22, 6, 76, 0, // Skip to: 25528 3116/* 6066 */ MCD::OPC_CheckField, 4, 1, 0, 255, 75, 0, // Skip to: 25528 3117/* 6073 */ MCD::OPC_Decode, 184, 9, 144, 1, // Opcode: MVE_VMULHs8 3118/* 6078 */ MCD::OPC_FilterValue, 15, 245, 75, 0, // Skip to: 25528 3119/* 6083 */ MCD::OPC_CheckPredicate, 22, 240, 75, 0, // Skip to: 25528 3120/* 6088 */ MCD::OPC_CheckField, 4, 1, 0, 233, 75, 0, // Skip to: 25528 3121/* 6095 */ MCD::OPC_Decode, 187, 9, 144, 1, // Opcode: MVE_VMULHu8 3122/* 6100 */ MCD::OPC_FilterValue, 1, 223, 75, 0, // Skip to: 25528 3123/* 6105 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3124/* 6108 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6160 3125/* 6113 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3126/* 6116 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6138 3127/* 6121 */ MCD::OPC_CheckPredicate, 22, 202, 75, 0, // Skip to: 25528 3128/* 6126 */ MCD::OPC_CheckField, 4, 1, 0, 195, 75, 0, // Skip to: 25528 3129/* 6133 */ MCD::OPC_Decode, 191, 10, 143, 1, // Opcode: MVE_VQRDMLADHXs8 3130/* 6138 */ MCD::OPC_FilterValue, 15, 185, 75, 0, // Skip to: 25528 3131/* 6143 */ MCD::OPC_CheckPredicate, 22, 180, 75, 0, // Skip to: 25528 3132/* 6148 */ MCD::OPC_CheckField, 4, 1, 0, 173, 75, 0, // Skip to: 25528 3133/* 6155 */ MCD::OPC_Decode, 203, 10, 143, 1, // Opcode: MVE_VQRDMLSDHXs8 3134/* 6160 */ MCD::OPC_FilterValue, 1, 163, 75, 0, // Skip to: 25528 3135/* 6165 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3136/* 6168 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6190 3137/* 6173 */ MCD::OPC_CheckPredicate, 22, 150, 75, 0, // Skip to: 25528 3138/* 6178 */ MCD::OPC_CheckField, 4, 1, 0, 143, 75, 0, // Skip to: 25528 3139/* 6185 */ MCD::OPC_Decode, 190, 11, 144, 1, // Opcode: MVE_VRMULHs8 3140/* 6190 */ MCD::OPC_FilterValue, 15, 133, 75, 0, // Skip to: 25528 3141/* 6195 */ MCD::OPC_CheckPredicate, 22, 128, 75, 0, // Skip to: 25528 3142/* 6200 */ MCD::OPC_CheckField, 4, 1, 0, 121, 75, 0, // Skip to: 25528 3143/* 6207 */ MCD::OPC_Decode, 193, 11, 144, 1, // Opcode: MVE_VRMULHu8 3144/* 6212 */ MCD::OPC_FilterValue, 1, 111, 75, 0, // Skip to: 25528 3145/* 6217 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3146/* 6220 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 6364 3147/* 6225 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3148/* 6228 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 6296 3149/* 6233 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3150/* 6236 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6258 3151/* 6241 */ MCD::OPC_CheckPredicate, 22, 82, 75, 0, // Skip to: 25528 3152/* 6246 */ MCD::OPC_CheckField, 28, 4, 14, 75, 75, 0, // Skip to: 25528 3153/* 6253 */ MCD::OPC_Decode, 197, 10, 145, 1, // Opcode: MVE_VQRDMLAH_qrs8 3154/* 6258 */ MCD::OPC_FilterValue, 1, 65, 75, 0, // Skip to: 25528 3155/* 6263 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3156/* 6266 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6281 3157/* 6271 */ MCD::OPC_CheckPredicate, 22, 52, 75, 0, // Skip to: 25528 3158/* 6276 */ MCD::OPC_Decode, 131, 9, 145, 1, // Opcode: MVE_VMLA_qr_s8 3159/* 6281 */ MCD::OPC_FilterValue, 15, 42, 75, 0, // Skip to: 25528 3160/* 6286 */ MCD::OPC_CheckPredicate, 22, 37, 75, 0, // Skip to: 25528 3161/* 6291 */ MCD::OPC_Decode, 134, 9, 145, 1, // Opcode: MVE_VMLA_qr_u8 3162/* 6296 */ MCD::OPC_FilterValue, 1, 27, 75, 0, // Skip to: 25528 3163/* 6301 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3164/* 6304 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6326 3165/* 6309 */ MCD::OPC_CheckPredicate, 22, 14, 75, 0, // Skip to: 25528 3166/* 6314 */ MCD::OPC_CheckField, 28, 4, 14, 7, 75, 0, // Skip to: 25528 3167/* 6321 */ MCD::OPC_Decode, 200, 10, 145, 1, // Opcode: MVE_VQRDMLASH_qrs8 3168/* 6326 */ MCD::OPC_FilterValue, 1, 253, 74, 0, // Skip to: 25528 3169/* 6331 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3170/* 6334 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6349 3171/* 6339 */ MCD::OPC_CheckPredicate, 22, 240, 74, 0, // Skip to: 25528 3172/* 6344 */ MCD::OPC_Decode, 253, 8, 145, 1, // Opcode: MVE_VMLAS_qr_s8 3173/* 6349 */ MCD::OPC_FilterValue, 15, 230, 74, 0, // Skip to: 25528 3174/* 6354 */ MCD::OPC_CheckPredicate, 22, 225, 74, 0, // Skip to: 25528 3175/* 6359 */ MCD::OPC_Decode, 128, 9, 145, 1, // Opcode: MVE_VMLAS_qr_u8 3176/* 6364 */ MCD::OPC_FilterValue, 2, 215, 74, 0, // Skip to: 25528 3177/* 6369 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3178/* 6372 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 6440 3179/* 6377 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3180/* 6380 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6402 3181/* 6385 */ MCD::OPC_CheckPredicate, 22, 194, 74, 0, // Skip to: 25528 3182/* 6390 */ MCD::OPC_CheckField, 28, 4, 14, 187, 74, 0, // Skip to: 25528 3183/* 6397 */ MCD::OPC_Decode, 150, 10, 145, 1, // Opcode: MVE_VQDMLAH_qrs8 3184/* 6402 */ MCD::OPC_FilterValue, 1, 177, 74, 0, // Skip to: 25528 3185/* 6407 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3186/* 6410 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6425 3187/* 6415 */ MCD::OPC_CheckPredicate, 22, 164, 74, 0, // Skip to: 25528 3188/* 6420 */ MCD::OPC_Decode, 162, 10, 146, 1, // Opcode: MVE_VQDMULH_qr_s8 3189/* 6425 */ MCD::OPC_FilterValue, 15, 154, 74, 0, // Skip to: 25528 3190/* 6430 */ MCD::OPC_CheckPredicate, 22, 149, 74, 0, // Skip to: 25528 3191/* 6435 */ MCD::OPC_Decode, 209, 10, 146, 1, // Opcode: MVE_VQRDMULH_qr_s8 3192/* 6440 */ MCD::OPC_FilterValue, 1, 139, 74, 0, // Skip to: 25528 3193/* 6445 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3194/* 6448 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6470 3195/* 6453 */ MCD::OPC_CheckPredicate, 22, 126, 74, 0, // Skip to: 25528 3196/* 6458 */ MCD::OPC_CheckField, 28, 4, 14, 119, 74, 0, // Skip to: 25528 3197/* 6465 */ MCD::OPC_Decode, 153, 10, 145, 1, // Opcode: MVE_VQDMLASH_qrs8 3198/* 6470 */ MCD::OPC_FilterValue, 1, 109, 74, 0, // Skip to: 25528 3199/* 6475 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3200/* 6478 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 6493 3201/* 6483 */ MCD::OPC_CheckPredicate, 22, 96, 74, 0, // Skip to: 25528 3202/* 6488 */ MCD::OPC_Decode, 208, 9, 146, 1, // Opcode: MVE_VMUL_qr_i8 3203/* 6493 */ MCD::OPC_FilterValue, 15, 86, 74, 0, // Skip to: 25528 3204/* 6498 */ MCD::OPC_CheckPredicate, 22, 81, 74, 0, // Skip to: 25528 3205/* 6503 */ MCD::OPC_Decode, 214, 6, 146, 1, // Opcode: MVE_VBRSR8 3206/* 6508 */ MCD::OPC_FilterValue, 1, 3, 3, 0, // Skip to: 7284 3207/* 6513 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 3208/* 6516 */ MCD::OPC_FilterValue, 0, 211, 1, 0, // Skip to: 6988 3209/* 6521 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 3210/* 6524 */ MCD::OPC_FilterValue, 0, 227, 0, 0, // Skip to: 6756 3211/* 6529 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3212/* 6532 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 6644 3213/* 6537 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3214/* 6540 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6592 3215/* 6545 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3216/* 6548 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6570 3217/* 6553 */ MCD::OPC_CheckPredicate, 22, 26, 74, 0, // Skip to: 25528 3218/* 6558 */ MCD::OPC_CheckField, 4, 1, 0, 19, 74, 0, // Skip to: 25528 3219/* 6565 */ MCD::OPC_Decode, 145, 10, 143, 1, // Opcode: MVE_VQDMLADHs16 3220/* 6570 */ MCD::OPC_FilterValue, 15, 9, 74, 0, // Skip to: 25528 3221/* 6575 */ MCD::OPC_CheckPredicate, 22, 4, 74, 0, // Skip to: 25528 3222/* 6580 */ MCD::OPC_CheckField, 4, 1, 0, 253, 73, 0, // Skip to: 25528 3223/* 6587 */ MCD::OPC_Decode, 157, 10, 143, 1, // Opcode: MVE_VQDMLSDHs16 3224/* 6592 */ MCD::OPC_FilterValue, 1, 243, 73, 0, // Skip to: 25528 3225/* 6597 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3226/* 6600 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6622 3227/* 6605 */ MCD::OPC_CheckPredicate, 22, 230, 73, 0, // Skip to: 25528 3228/* 6610 */ MCD::OPC_CheckField, 4, 1, 0, 223, 73, 0, // Skip to: 25528 3229/* 6617 */ MCD::OPC_Decode, 190, 9, 144, 1, // Opcode: MVE_VMULLBs16 3230/* 6622 */ MCD::OPC_FilterValue, 15, 213, 73, 0, // Skip to: 25528 3231/* 6627 */ MCD::OPC_CheckPredicate, 22, 208, 73, 0, // Skip to: 25528 3232/* 6632 */ MCD::OPC_CheckField, 4, 1, 0, 201, 73, 0, // Skip to: 25528 3233/* 6639 */ MCD::OPC_Decode, 193, 9, 144, 1, // Opcode: MVE_VMULLBu16 3234/* 6644 */ MCD::OPC_FilterValue, 1, 191, 73, 0, // Skip to: 25528 3235/* 6649 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3236/* 6652 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6704 3237/* 6657 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3238/* 6660 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6682 3239/* 6665 */ MCD::OPC_CheckPredicate, 22, 170, 73, 0, // Skip to: 25528 3240/* 6670 */ MCD::OPC_CheckField, 4, 1, 0, 163, 73, 0, // Skip to: 25528 3241/* 6677 */ MCD::OPC_Decode, 142, 10, 143, 1, // Opcode: MVE_VQDMLADHXs16 3242/* 6682 */ MCD::OPC_FilterValue, 15, 153, 73, 0, // Skip to: 25528 3243/* 6687 */ MCD::OPC_CheckPredicate, 22, 148, 73, 0, // Skip to: 25528 3244/* 6692 */ MCD::OPC_CheckField, 4, 1, 0, 141, 73, 0, // Skip to: 25528 3245/* 6699 */ MCD::OPC_Decode, 154, 10, 143, 1, // Opcode: MVE_VQDMLSDHXs16 3246/* 6704 */ MCD::OPC_FilterValue, 1, 131, 73, 0, // Skip to: 25528 3247/* 6709 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3248/* 6712 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6734 3249/* 6717 */ MCD::OPC_CheckPredicate, 22, 118, 73, 0, // Skip to: 25528 3250/* 6722 */ MCD::OPC_CheckField, 4, 1, 0, 111, 73, 0, // Skip to: 25528 3251/* 6729 */ MCD::OPC_Decode, 198, 9, 144, 1, // Opcode: MVE_VMULLTs16 3252/* 6734 */ MCD::OPC_FilterValue, 15, 101, 73, 0, // Skip to: 25528 3253/* 6739 */ MCD::OPC_CheckPredicate, 22, 96, 73, 0, // Skip to: 25528 3254/* 6744 */ MCD::OPC_CheckField, 4, 1, 0, 89, 73, 0, // Skip to: 25528 3255/* 6751 */ MCD::OPC_Decode, 201, 9, 144, 1, // Opcode: MVE_VMULLTu16 3256/* 6756 */ MCD::OPC_FilterValue, 1, 79, 73, 0, // Skip to: 25528 3257/* 6761 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3258/* 6764 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 6876 3259/* 6769 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3260/* 6772 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6824 3261/* 6777 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3262/* 6780 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6802 3263/* 6785 */ MCD::OPC_CheckPredicate, 22, 50, 73, 0, // Skip to: 25528 3264/* 6790 */ MCD::OPC_CheckField, 4, 1, 0, 43, 73, 0, // Skip to: 25528 3265/* 6797 */ MCD::OPC_Decode, 192, 10, 143, 1, // Opcode: MVE_VQRDMLADHs16 3266/* 6802 */ MCD::OPC_FilterValue, 15, 33, 73, 0, // Skip to: 25528 3267/* 6807 */ MCD::OPC_CheckPredicate, 22, 28, 73, 0, // Skip to: 25528 3268/* 6812 */ MCD::OPC_CheckField, 4, 1, 0, 21, 73, 0, // Skip to: 25528 3269/* 6819 */ MCD::OPC_Decode, 204, 10, 143, 1, // Opcode: MVE_VQRDMLSDHs16 3270/* 6824 */ MCD::OPC_FilterValue, 1, 11, 73, 0, // Skip to: 25528 3271/* 6829 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3272/* 6832 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6854 3273/* 6837 */ MCD::OPC_CheckPredicate, 22, 254, 72, 0, // Skip to: 25528 3274/* 6842 */ MCD::OPC_CheckField, 4, 1, 0, 247, 72, 0, // Skip to: 25528 3275/* 6849 */ MCD::OPC_Decode, 182, 9, 144, 1, // Opcode: MVE_VMULHs16 3276/* 6854 */ MCD::OPC_FilterValue, 15, 237, 72, 0, // Skip to: 25528 3277/* 6859 */ MCD::OPC_CheckPredicate, 22, 232, 72, 0, // Skip to: 25528 3278/* 6864 */ MCD::OPC_CheckField, 4, 1, 0, 225, 72, 0, // Skip to: 25528 3279/* 6871 */ MCD::OPC_Decode, 185, 9, 144, 1, // Opcode: MVE_VMULHu16 3280/* 6876 */ MCD::OPC_FilterValue, 1, 215, 72, 0, // Skip to: 25528 3281/* 6881 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3282/* 6884 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 6936 3283/* 6889 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3284/* 6892 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6914 3285/* 6897 */ MCD::OPC_CheckPredicate, 22, 194, 72, 0, // Skip to: 25528 3286/* 6902 */ MCD::OPC_CheckField, 4, 1, 0, 187, 72, 0, // Skip to: 25528 3287/* 6909 */ MCD::OPC_Decode, 189, 10, 143, 1, // Opcode: MVE_VQRDMLADHXs16 3288/* 6914 */ MCD::OPC_FilterValue, 15, 177, 72, 0, // Skip to: 25528 3289/* 6919 */ MCD::OPC_CheckPredicate, 22, 172, 72, 0, // Skip to: 25528 3290/* 6924 */ MCD::OPC_CheckField, 4, 1, 0, 165, 72, 0, // Skip to: 25528 3291/* 6931 */ MCD::OPC_Decode, 201, 10, 143, 1, // Opcode: MVE_VQRDMLSDHXs16 3292/* 6936 */ MCD::OPC_FilterValue, 1, 155, 72, 0, // Skip to: 25528 3293/* 6941 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3294/* 6944 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 6966 3295/* 6949 */ MCD::OPC_CheckPredicate, 22, 142, 72, 0, // Skip to: 25528 3296/* 6954 */ MCD::OPC_CheckField, 4, 1, 0, 135, 72, 0, // Skip to: 25528 3297/* 6961 */ MCD::OPC_Decode, 188, 11, 144, 1, // Opcode: MVE_VRMULHs16 3298/* 6966 */ MCD::OPC_FilterValue, 15, 125, 72, 0, // Skip to: 25528 3299/* 6971 */ MCD::OPC_CheckPredicate, 22, 120, 72, 0, // Skip to: 25528 3300/* 6976 */ MCD::OPC_CheckField, 4, 1, 0, 113, 72, 0, // Skip to: 25528 3301/* 6983 */ MCD::OPC_Decode, 191, 11, 144, 1, // Opcode: MVE_VRMULHu16 3302/* 6988 */ MCD::OPC_FilterValue, 1, 103, 72, 0, // Skip to: 25528 3303/* 6993 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3304/* 6996 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 7140 3305/* 7001 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3306/* 7004 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 7072 3307/* 7009 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3308/* 7012 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7034 3309/* 7017 */ MCD::OPC_CheckPredicate, 22, 74, 72, 0, // Skip to: 25528 3310/* 7022 */ MCD::OPC_CheckField, 28, 4, 14, 67, 72, 0, // Skip to: 25528 3311/* 7029 */ MCD::OPC_Decode, 195, 10, 145, 1, // Opcode: MVE_VQRDMLAH_qrs16 3312/* 7034 */ MCD::OPC_FilterValue, 1, 57, 72, 0, // Skip to: 25528 3313/* 7039 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3314/* 7042 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7057 3315/* 7047 */ MCD::OPC_CheckPredicate, 22, 44, 72, 0, // Skip to: 25528 3316/* 7052 */ MCD::OPC_Decode, 129, 9, 145, 1, // Opcode: MVE_VMLA_qr_s16 3317/* 7057 */ MCD::OPC_FilterValue, 15, 34, 72, 0, // Skip to: 25528 3318/* 7062 */ MCD::OPC_CheckPredicate, 22, 29, 72, 0, // Skip to: 25528 3319/* 7067 */ MCD::OPC_Decode, 132, 9, 145, 1, // Opcode: MVE_VMLA_qr_u16 3320/* 7072 */ MCD::OPC_FilterValue, 1, 19, 72, 0, // Skip to: 25528 3321/* 7077 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3322/* 7080 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7102 3323/* 7085 */ MCD::OPC_CheckPredicate, 22, 6, 72, 0, // Skip to: 25528 3324/* 7090 */ MCD::OPC_CheckField, 28, 4, 14, 255, 71, 0, // Skip to: 25528 3325/* 7097 */ MCD::OPC_Decode, 198, 10, 145, 1, // Opcode: MVE_VQRDMLASH_qrs16 3326/* 7102 */ MCD::OPC_FilterValue, 1, 245, 71, 0, // Skip to: 25528 3327/* 7107 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3328/* 7110 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7125 3329/* 7115 */ MCD::OPC_CheckPredicate, 22, 232, 71, 0, // Skip to: 25528 3330/* 7120 */ MCD::OPC_Decode, 251, 8, 145, 1, // Opcode: MVE_VMLAS_qr_s16 3331/* 7125 */ MCD::OPC_FilterValue, 15, 222, 71, 0, // Skip to: 25528 3332/* 7130 */ MCD::OPC_CheckPredicate, 22, 217, 71, 0, // Skip to: 25528 3333/* 7135 */ MCD::OPC_Decode, 254, 8, 145, 1, // Opcode: MVE_VMLAS_qr_u16 3334/* 7140 */ MCD::OPC_FilterValue, 2, 207, 71, 0, // Skip to: 25528 3335/* 7145 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3336/* 7148 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 7216 3337/* 7153 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3338/* 7156 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7178 3339/* 7161 */ MCD::OPC_CheckPredicate, 22, 186, 71, 0, // Skip to: 25528 3340/* 7166 */ MCD::OPC_CheckField, 28, 4, 14, 179, 71, 0, // Skip to: 25528 3341/* 7173 */ MCD::OPC_Decode, 148, 10, 145, 1, // Opcode: MVE_VQDMLAH_qrs16 3342/* 7178 */ MCD::OPC_FilterValue, 1, 169, 71, 0, // Skip to: 25528 3343/* 7183 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3344/* 7186 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7201 3345/* 7191 */ MCD::OPC_CheckPredicate, 22, 156, 71, 0, // Skip to: 25528 3346/* 7196 */ MCD::OPC_Decode, 160, 10, 146, 1, // Opcode: MVE_VQDMULH_qr_s16 3347/* 7201 */ MCD::OPC_FilterValue, 15, 146, 71, 0, // Skip to: 25528 3348/* 7206 */ MCD::OPC_CheckPredicate, 22, 141, 71, 0, // Skip to: 25528 3349/* 7211 */ MCD::OPC_Decode, 207, 10, 146, 1, // Opcode: MVE_VQRDMULH_qr_s16 3350/* 7216 */ MCD::OPC_FilterValue, 1, 131, 71, 0, // Skip to: 25528 3351/* 7221 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3352/* 7224 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7246 3353/* 7229 */ MCD::OPC_CheckPredicate, 22, 118, 71, 0, // Skip to: 25528 3354/* 7234 */ MCD::OPC_CheckField, 28, 4, 14, 111, 71, 0, // Skip to: 25528 3355/* 7241 */ MCD::OPC_Decode, 151, 10, 145, 1, // Opcode: MVE_VQDMLASH_qrs16 3356/* 7246 */ MCD::OPC_FilterValue, 1, 101, 71, 0, // Skip to: 25528 3357/* 7251 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3358/* 7254 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7269 3359/* 7259 */ MCD::OPC_CheckPredicate, 22, 88, 71, 0, // Skip to: 25528 3360/* 7264 */ MCD::OPC_Decode, 206, 9, 146, 1, // Opcode: MVE_VMUL_qr_i16 3361/* 7269 */ MCD::OPC_FilterValue, 15, 78, 71, 0, // Skip to: 25528 3362/* 7274 */ MCD::OPC_CheckPredicate, 22, 73, 71, 0, // Skip to: 25528 3363/* 7279 */ MCD::OPC_Decode, 212, 6, 146, 1, // Opcode: MVE_VBRSR16 3364/* 7284 */ MCD::OPC_FilterValue, 2, 3, 3, 0, // Skip to: 8060 3365/* 7289 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 3366/* 7292 */ MCD::OPC_FilterValue, 0, 211, 1, 0, // Skip to: 7764 3367/* 7297 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 3368/* 7300 */ MCD::OPC_FilterValue, 0, 227, 0, 0, // Skip to: 7532 3369/* 7305 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3370/* 7308 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 7420 3371/* 7313 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3372/* 7316 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 7368 3373/* 7321 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3374/* 7324 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7346 3375/* 7329 */ MCD::OPC_CheckPredicate, 22, 18, 71, 0, // Skip to: 25528 3376/* 7334 */ MCD::OPC_CheckField, 4, 1, 0, 11, 71, 0, // Skip to: 25528 3377/* 7341 */ MCD::OPC_Decode, 146, 10, 143, 1, // Opcode: MVE_VQDMLADHs32 3378/* 7346 */ MCD::OPC_FilterValue, 15, 1, 71, 0, // Skip to: 25528 3379/* 7351 */ MCD::OPC_CheckPredicate, 22, 252, 70, 0, // Skip to: 25528 3380/* 7356 */ MCD::OPC_CheckField, 4, 1, 0, 245, 70, 0, // Skip to: 25528 3381/* 7363 */ MCD::OPC_Decode, 158, 10, 143, 1, // Opcode: MVE_VQDMLSDHs32 3382/* 7368 */ MCD::OPC_FilterValue, 1, 235, 70, 0, // Skip to: 25528 3383/* 7373 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3384/* 7376 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7398 3385/* 7381 */ MCD::OPC_CheckPredicate, 22, 222, 70, 0, // Skip to: 25528 3386/* 7386 */ MCD::OPC_CheckField, 4, 1, 0, 215, 70, 0, // Skip to: 25528 3387/* 7393 */ MCD::OPC_Decode, 191, 9, 144, 1, // Opcode: MVE_VMULLBs32 3388/* 7398 */ MCD::OPC_FilterValue, 15, 205, 70, 0, // Skip to: 25528 3389/* 7403 */ MCD::OPC_CheckPredicate, 22, 200, 70, 0, // Skip to: 25528 3390/* 7408 */ MCD::OPC_CheckField, 4, 1, 0, 193, 70, 0, // Skip to: 25528 3391/* 7415 */ MCD::OPC_Decode, 194, 9, 144, 1, // Opcode: MVE_VMULLBu32 3392/* 7420 */ MCD::OPC_FilterValue, 1, 183, 70, 0, // Skip to: 25528 3393/* 7425 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3394/* 7428 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 7480 3395/* 7433 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3396/* 7436 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7458 3397/* 7441 */ MCD::OPC_CheckPredicate, 22, 162, 70, 0, // Skip to: 25528 3398/* 7446 */ MCD::OPC_CheckField, 4, 1, 0, 155, 70, 0, // Skip to: 25528 3399/* 7453 */ MCD::OPC_Decode, 143, 10, 143, 1, // Opcode: MVE_VQDMLADHXs32 3400/* 7458 */ MCD::OPC_FilterValue, 15, 145, 70, 0, // Skip to: 25528 3401/* 7463 */ MCD::OPC_CheckPredicate, 22, 140, 70, 0, // Skip to: 25528 3402/* 7468 */ MCD::OPC_CheckField, 4, 1, 0, 133, 70, 0, // Skip to: 25528 3403/* 7475 */ MCD::OPC_Decode, 155, 10, 143, 1, // Opcode: MVE_VQDMLSDHXs32 3404/* 7480 */ MCD::OPC_FilterValue, 1, 123, 70, 0, // Skip to: 25528 3405/* 7485 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3406/* 7488 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7510 3407/* 7493 */ MCD::OPC_CheckPredicate, 22, 110, 70, 0, // Skip to: 25528 3408/* 7498 */ MCD::OPC_CheckField, 4, 1, 0, 103, 70, 0, // Skip to: 25528 3409/* 7505 */ MCD::OPC_Decode, 199, 9, 144, 1, // Opcode: MVE_VMULLTs32 3410/* 7510 */ MCD::OPC_FilterValue, 15, 93, 70, 0, // Skip to: 25528 3411/* 7515 */ MCD::OPC_CheckPredicate, 22, 88, 70, 0, // Skip to: 25528 3412/* 7520 */ MCD::OPC_CheckField, 4, 1, 0, 81, 70, 0, // Skip to: 25528 3413/* 7527 */ MCD::OPC_Decode, 202, 9, 144, 1, // Opcode: MVE_VMULLTu32 3414/* 7532 */ MCD::OPC_FilterValue, 1, 71, 70, 0, // Skip to: 25528 3415/* 7537 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3416/* 7540 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 7652 3417/* 7545 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3418/* 7548 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 7600 3419/* 7553 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3420/* 7556 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7578 3421/* 7561 */ MCD::OPC_CheckPredicate, 22, 42, 70, 0, // Skip to: 25528 3422/* 7566 */ MCD::OPC_CheckField, 4, 1, 0, 35, 70, 0, // Skip to: 25528 3423/* 7573 */ MCD::OPC_Decode, 193, 10, 143, 1, // Opcode: MVE_VQRDMLADHs32 3424/* 7578 */ MCD::OPC_FilterValue, 15, 25, 70, 0, // Skip to: 25528 3425/* 7583 */ MCD::OPC_CheckPredicate, 22, 20, 70, 0, // Skip to: 25528 3426/* 7588 */ MCD::OPC_CheckField, 4, 1, 0, 13, 70, 0, // Skip to: 25528 3427/* 7595 */ MCD::OPC_Decode, 205, 10, 143, 1, // Opcode: MVE_VQRDMLSDHs32 3428/* 7600 */ MCD::OPC_FilterValue, 1, 3, 70, 0, // Skip to: 25528 3429/* 7605 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3430/* 7608 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7630 3431/* 7613 */ MCD::OPC_CheckPredicate, 22, 246, 69, 0, // Skip to: 25528 3432/* 7618 */ MCD::OPC_CheckField, 4, 1, 0, 239, 69, 0, // Skip to: 25528 3433/* 7625 */ MCD::OPC_Decode, 183, 9, 144, 1, // Opcode: MVE_VMULHs32 3434/* 7630 */ MCD::OPC_FilterValue, 15, 229, 69, 0, // Skip to: 25528 3435/* 7635 */ MCD::OPC_CheckPredicate, 22, 224, 69, 0, // Skip to: 25528 3436/* 7640 */ MCD::OPC_CheckField, 4, 1, 0, 217, 69, 0, // Skip to: 25528 3437/* 7647 */ MCD::OPC_Decode, 186, 9, 144, 1, // Opcode: MVE_VMULHu32 3438/* 7652 */ MCD::OPC_FilterValue, 1, 207, 69, 0, // Skip to: 25528 3439/* 7657 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3440/* 7660 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 7712 3441/* 7665 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3442/* 7668 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7690 3443/* 7673 */ MCD::OPC_CheckPredicate, 22, 186, 69, 0, // Skip to: 25528 3444/* 7678 */ MCD::OPC_CheckField, 4, 1, 0, 179, 69, 0, // Skip to: 25528 3445/* 7685 */ MCD::OPC_Decode, 190, 10, 143, 1, // Opcode: MVE_VQRDMLADHXs32 3446/* 7690 */ MCD::OPC_FilterValue, 15, 169, 69, 0, // Skip to: 25528 3447/* 7695 */ MCD::OPC_CheckPredicate, 22, 164, 69, 0, // Skip to: 25528 3448/* 7700 */ MCD::OPC_CheckField, 4, 1, 0, 157, 69, 0, // Skip to: 25528 3449/* 7707 */ MCD::OPC_Decode, 202, 10, 143, 1, // Opcode: MVE_VQRDMLSDHXs32 3450/* 7712 */ MCD::OPC_FilterValue, 1, 147, 69, 0, // Skip to: 25528 3451/* 7717 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3452/* 7720 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 7742 3453/* 7725 */ MCD::OPC_CheckPredicate, 22, 134, 69, 0, // Skip to: 25528 3454/* 7730 */ MCD::OPC_CheckField, 4, 1, 0, 127, 69, 0, // Skip to: 25528 3455/* 7737 */ MCD::OPC_Decode, 189, 11, 144, 1, // Opcode: MVE_VRMULHs32 3456/* 7742 */ MCD::OPC_FilterValue, 15, 117, 69, 0, // Skip to: 25528 3457/* 7747 */ MCD::OPC_CheckPredicate, 22, 112, 69, 0, // Skip to: 25528 3458/* 7752 */ MCD::OPC_CheckField, 4, 1, 0, 105, 69, 0, // Skip to: 25528 3459/* 7759 */ MCD::OPC_Decode, 192, 11, 144, 1, // Opcode: MVE_VRMULHu32 3460/* 7764 */ MCD::OPC_FilterValue, 1, 95, 69, 0, // Skip to: 25528 3461/* 7769 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3462/* 7772 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 7916 3463/* 7777 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3464/* 7780 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 7848 3465/* 7785 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3466/* 7788 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7810 3467/* 7793 */ MCD::OPC_CheckPredicate, 22, 66, 69, 0, // Skip to: 25528 3468/* 7798 */ MCD::OPC_CheckField, 28, 4, 14, 59, 69, 0, // Skip to: 25528 3469/* 7805 */ MCD::OPC_Decode, 196, 10, 145, 1, // Opcode: MVE_VQRDMLAH_qrs32 3470/* 7810 */ MCD::OPC_FilterValue, 1, 49, 69, 0, // Skip to: 25528 3471/* 7815 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3472/* 7818 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7833 3473/* 7823 */ MCD::OPC_CheckPredicate, 22, 36, 69, 0, // Skip to: 25528 3474/* 7828 */ MCD::OPC_Decode, 130, 9, 145, 1, // Opcode: MVE_VMLA_qr_s32 3475/* 7833 */ MCD::OPC_FilterValue, 15, 26, 69, 0, // Skip to: 25528 3476/* 7838 */ MCD::OPC_CheckPredicate, 22, 21, 69, 0, // Skip to: 25528 3477/* 7843 */ MCD::OPC_Decode, 133, 9, 145, 1, // Opcode: MVE_VMLA_qr_u32 3478/* 7848 */ MCD::OPC_FilterValue, 1, 11, 69, 0, // Skip to: 25528 3479/* 7853 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3480/* 7856 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7878 3481/* 7861 */ MCD::OPC_CheckPredicate, 22, 254, 68, 0, // Skip to: 25528 3482/* 7866 */ MCD::OPC_CheckField, 28, 4, 14, 247, 68, 0, // Skip to: 25528 3483/* 7873 */ MCD::OPC_Decode, 199, 10, 145, 1, // Opcode: MVE_VQRDMLASH_qrs32 3484/* 7878 */ MCD::OPC_FilterValue, 1, 237, 68, 0, // Skip to: 25528 3485/* 7883 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3486/* 7886 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7901 3487/* 7891 */ MCD::OPC_CheckPredicate, 22, 224, 68, 0, // Skip to: 25528 3488/* 7896 */ MCD::OPC_Decode, 252, 8, 145, 1, // Opcode: MVE_VMLAS_qr_s32 3489/* 7901 */ MCD::OPC_FilterValue, 15, 214, 68, 0, // Skip to: 25528 3490/* 7906 */ MCD::OPC_CheckPredicate, 22, 209, 68, 0, // Skip to: 25528 3491/* 7911 */ MCD::OPC_Decode, 255, 8, 145, 1, // Opcode: MVE_VMLAS_qr_u32 3492/* 7916 */ MCD::OPC_FilterValue, 2, 199, 68, 0, // Skip to: 25528 3493/* 7921 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3494/* 7924 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 7992 3495/* 7929 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3496/* 7932 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7954 3497/* 7937 */ MCD::OPC_CheckPredicate, 22, 178, 68, 0, // Skip to: 25528 3498/* 7942 */ MCD::OPC_CheckField, 28, 4, 14, 171, 68, 0, // Skip to: 25528 3499/* 7949 */ MCD::OPC_Decode, 149, 10, 145, 1, // Opcode: MVE_VQDMLAH_qrs32 3500/* 7954 */ MCD::OPC_FilterValue, 1, 161, 68, 0, // Skip to: 25528 3501/* 7959 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3502/* 7962 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 7977 3503/* 7967 */ MCD::OPC_CheckPredicate, 22, 148, 68, 0, // Skip to: 25528 3504/* 7972 */ MCD::OPC_Decode, 161, 10, 146, 1, // Opcode: MVE_VQDMULH_qr_s32 3505/* 7977 */ MCD::OPC_FilterValue, 15, 138, 68, 0, // Skip to: 25528 3506/* 7982 */ MCD::OPC_CheckPredicate, 22, 133, 68, 0, // Skip to: 25528 3507/* 7987 */ MCD::OPC_Decode, 208, 10, 146, 1, // Opcode: MVE_VQRDMULH_qr_s32 3508/* 7992 */ MCD::OPC_FilterValue, 1, 123, 68, 0, // Skip to: 25528 3509/* 7997 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3510/* 8000 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 8022 3511/* 8005 */ MCD::OPC_CheckPredicate, 22, 110, 68, 0, // Skip to: 25528 3512/* 8010 */ MCD::OPC_CheckField, 28, 4, 14, 103, 68, 0, // Skip to: 25528 3513/* 8017 */ MCD::OPC_Decode, 152, 10, 145, 1, // Opcode: MVE_VQDMLASH_qrs32 3514/* 8022 */ MCD::OPC_FilterValue, 1, 93, 68, 0, // Skip to: 25528 3515/* 8027 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3516/* 8030 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 8045 3517/* 8035 */ MCD::OPC_CheckPredicate, 22, 80, 68, 0, // Skip to: 25528 3518/* 8040 */ MCD::OPC_Decode, 207, 9, 146, 1, // Opcode: MVE_VMUL_qr_i32 3519/* 8045 */ MCD::OPC_FilterValue, 15, 70, 68, 0, // Skip to: 25528 3520/* 8050 */ MCD::OPC_CheckPredicate, 22, 65, 68, 0, // Skip to: 25528 3521/* 8055 */ MCD::OPC_Decode, 213, 6, 146, 1, // Opcode: MVE_VBRSR32 3522/* 8060 */ MCD::OPC_FilterValue, 3, 55, 68, 0, // Skip to: 25528 3523/* 8065 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 3524/* 8068 */ MCD::OPC_FilterValue, 0, 51, 5, 0, // Skip to: 9404 3525/* 8073 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3526/* 8076 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8128 3527/* 8081 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3528/* 8084 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8106 3529/* 8089 */ MCD::OPC_CheckPredicate, 24, 26, 68, 0, // Skip to: 25528 3530/* 8094 */ MCD::OPC_CheckField, 4, 1, 0, 19, 68, 0, // Skip to: 25528 3531/* 8101 */ MCD::OPC_Decode, 250, 6, 147, 1, // Opcode: MVE_VCMULf16 3532/* 8106 */ MCD::OPC_FilterValue, 15, 9, 68, 0, // Skip to: 25528 3533/* 8111 */ MCD::OPC_CheckPredicate, 24, 4, 68, 0, // Skip to: 25528 3534/* 8116 */ MCD::OPC_CheckField, 4, 1, 0, 253, 67, 0, // Skip to: 25528 3535/* 8123 */ MCD::OPC_Decode, 251, 6, 147, 1, // Opcode: MVE_VCMULf32 3536/* 8128 */ MCD::OPC_FilterValue, 1, 243, 67, 0, // Skip to: 25528 3537/* 8133 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 3538/* 8136 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 8248 3539/* 8141 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3540/* 8144 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8196 3541/* 8149 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3542/* 8152 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8174 3543/* 8157 */ MCD::OPC_CheckPredicate, 22, 214, 67, 0, // Skip to: 25528 3544/* 8162 */ MCD::OPC_CheckField, 4, 1, 0, 207, 67, 0, // Skip to: 25528 3545/* 8169 */ MCD::OPC_Decode, 189, 9, 144, 1, // Opcode: MVE_VMULLBp8 3546/* 8174 */ MCD::OPC_FilterValue, 15, 197, 67, 0, // Skip to: 25528 3547/* 8179 */ MCD::OPC_CheckPredicate, 22, 192, 67, 0, // Skip to: 25528 3548/* 8184 */ MCD::OPC_CheckField, 4, 1, 0, 185, 67, 0, // Skip to: 25528 3549/* 8191 */ MCD::OPC_Decode, 188, 9, 144, 1, // Opcode: MVE_VMULLBp16 3550/* 8196 */ MCD::OPC_FilterValue, 1, 175, 67, 0, // Skip to: 25528 3551/* 8201 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3552/* 8204 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8226 3553/* 8209 */ MCD::OPC_CheckPredicate, 22, 162, 67, 0, // Skip to: 25528 3554/* 8214 */ MCD::OPC_CheckField, 4, 1, 0, 155, 67, 0, // Skip to: 25528 3555/* 8221 */ MCD::OPC_Decode, 197, 9, 144, 1, // Opcode: MVE_VMULLTp8 3556/* 8226 */ MCD::OPC_FilterValue, 15, 145, 67, 0, // Skip to: 25528 3557/* 8231 */ MCD::OPC_CheckPredicate, 22, 140, 67, 0, // Skip to: 25528 3558/* 8236 */ MCD::OPC_CheckField, 4, 1, 0, 133, 67, 0, // Skip to: 25528 3559/* 8243 */ MCD::OPC_Decode, 196, 9, 144, 1, // Opcode: MVE_VMULLTp16 3560/* 8248 */ MCD::OPC_FilterValue, 1, 123, 67, 0, // Skip to: 25528 3561/* 8253 */ MCD::OPC_ExtractField, 17, 3, // Inst{19-17} ... 3562/* 8256 */ MCD::OPC_FilterValue, 0, 227, 0, 0, // Skip to: 8488 3563/* 8261 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3564/* 8264 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 8376 3565/* 8269 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3566/* 8272 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8324 3567/* 8277 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3568/* 8280 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8302 3569/* 8285 */ MCD::OPC_CheckPredicate, 22, 86, 67, 0, // Skip to: 25528 3570/* 8290 */ MCD::OPC_CheckField, 4, 1, 0, 79, 67, 0, // Skip to: 25528 3571/* 8297 */ MCD::OPC_Decode, 229, 11, 148, 1, // Opcode: MVE_VSHLL_lws8bh 3572/* 8302 */ MCD::OPC_FilterValue, 15, 69, 67, 0, // Skip to: 25528 3573/* 8307 */ MCD::OPC_CheckPredicate, 22, 64, 67, 0, // Skip to: 25528 3574/* 8312 */ MCD::OPC_CheckField, 4, 1, 0, 57, 67, 0, // Skip to: 25528 3575/* 8319 */ MCD::OPC_Decode, 233, 11, 148, 1, // Opcode: MVE_VSHLL_lwu8bh 3576/* 8324 */ MCD::OPC_FilterValue, 1, 47, 67, 0, // Skip to: 25528 3577/* 8329 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3578/* 8332 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8354 3579/* 8337 */ MCD::OPC_CheckPredicate, 22, 34, 67, 0, // Skip to: 25528 3580/* 8342 */ MCD::OPC_CheckField, 4, 1, 0, 27, 67, 0, // Skip to: 25528 3581/* 8349 */ MCD::OPC_Decode, 230, 11, 148, 1, // Opcode: MVE_VSHLL_lws8th 3582/* 8354 */ MCD::OPC_FilterValue, 15, 17, 67, 0, // Skip to: 25528 3583/* 8359 */ MCD::OPC_CheckPredicate, 22, 12, 67, 0, // Skip to: 25528 3584/* 8364 */ MCD::OPC_CheckField, 4, 1, 0, 5, 67, 0, // Skip to: 25528 3585/* 8371 */ MCD::OPC_Decode, 234, 11, 148, 1, // Opcode: MVE_VSHLL_lwu8th 3586/* 8376 */ MCD::OPC_FilterValue, 1, 251, 66, 0, // Skip to: 25528 3587/* 8381 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3588/* 8384 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8436 3589/* 8389 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3590/* 8392 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8414 3591/* 8397 */ MCD::OPC_CheckPredicate, 22, 230, 66, 0, // Skip to: 25528 3592/* 8402 */ MCD::OPC_CheckField, 4, 1, 0, 223, 66, 0, // Skip to: 25528 3593/* 8409 */ MCD::OPC_Decode, 182, 10, 149, 1, // Opcode: MVE_VQMOVUNs16bh 3594/* 8414 */ MCD::OPC_FilterValue, 15, 213, 66, 0, // Skip to: 25528 3595/* 8419 */ MCD::OPC_CheckPredicate, 22, 208, 66, 0, // Skip to: 25528 3596/* 8424 */ MCD::OPC_CheckField, 4, 1, 0, 201, 66, 0, // Skip to: 25528 3597/* 8431 */ MCD::OPC_Decode, 163, 9, 149, 1, // Opcode: MVE_VMOVNi16bh 3598/* 8436 */ MCD::OPC_FilterValue, 1, 191, 66, 0, // Skip to: 25528 3599/* 8441 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3600/* 8444 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8466 3601/* 8449 */ MCD::OPC_CheckPredicate, 22, 178, 66, 0, // Skip to: 25528 3602/* 8454 */ MCD::OPC_CheckField, 4, 1, 0, 171, 66, 0, // Skip to: 25528 3603/* 8461 */ MCD::OPC_Decode, 183, 10, 149, 1, // Opcode: MVE_VQMOVUNs16th 3604/* 8466 */ MCD::OPC_FilterValue, 15, 161, 66, 0, // Skip to: 25528 3605/* 8471 */ MCD::OPC_CheckPredicate, 22, 156, 66, 0, // Skip to: 25528 3606/* 8476 */ MCD::OPC_CheckField, 4, 1, 0, 149, 66, 0, // Skip to: 25528 3607/* 8483 */ MCD::OPC_Decode, 164, 9, 149, 1, // Opcode: MVE_VMOVNi16th 3608/* 8488 */ MCD::OPC_FilterValue, 1, 181, 0, 0, // Skip to: 8674 3609/* 8493 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3610/* 8496 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 8608 3611/* 8501 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3612/* 8504 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8556 3613/* 8509 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3614/* 8512 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8534 3615/* 8517 */ MCD::OPC_CheckPredicate, 22, 110, 66, 0, // Skip to: 25528 3616/* 8522 */ MCD::OPC_CheckField, 4, 1, 0, 103, 66, 0, // Skip to: 25528 3617/* 8529 */ MCD::OPC_Decode, 174, 10, 149, 1, // Opcode: MVE_VQMOVNs16bh 3618/* 8534 */ MCD::OPC_FilterValue, 15, 93, 66, 0, // Skip to: 25528 3619/* 8539 */ MCD::OPC_CheckPredicate, 22, 88, 66, 0, // Skip to: 25528 3620/* 8544 */ MCD::OPC_CheckField, 4, 1, 0, 81, 66, 0, // Skip to: 25528 3621/* 8551 */ MCD::OPC_Decode, 178, 10, 149, 1, // Opcode: MVE_VQMOVNu16bh 3622/* 8556 */ MCD::OPC_FilterValue, 1, 71, 66, 0, // Skip to: 25528 3623/* 8561 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3624/* 8564 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8586 3625/* 8569 */ MCD::OPC_CheckPredicate, 22, 58, 66, 0, // Skip to: 25528 3626/* 8574 */ MCD::OPC_CheckField, 4, 1, 0, 51, 66, 0, // Skip to: 25528 3627/* 8581 */ MCD::OPC_Decode, 175, 10, 149, 1, // Opcode: MVE_VQMOVNs16th 3628/* 8586 */ MCD::OPC_FilterValue, 15, 41, 66, 0, // Skip to: 25528 3629/* 8591 */ MCD::OPC_CheckPredicate, 22, 36, 66, 0, // Skip to: 25528 3630/* 8596 */ MCD::OPC_CheckField, 4, 1, 0, 29, 66, 0, // Skip to: 25528 3631/* 8603 */ MCD::OPC_Decode, 179, 10, 149, 1, // Opcode: MVE_VQMOVNu16th 3632/* 8608 */ MCD::OPC_FilterValue, 1, 19, 66, 0, // Skip to: 25528 3633/* 8613 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3634/* 8616 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 8645 3635/* 8621 */ MCD::OPC_CheckPredicate, 22, 6, 66, 0, // Skip to: 25528 3636/* 8626 */ MCD::OPC_CheckField, 28, 4, 14, 255, 65, 0, // Skip to: 25528 3637/* 8633 */ MCD::OPC_CheckField, 4, 1, 0, 248, 65, 0, // Skip to: 25528 3638/* 8640 */ MCD::OPC_Decode, 174, 8, 149, 1, // Opcode: MVE_VMAXAs8 3639/* 8645 */ MCD::OPC_FilterValue, 1, 238, 65, 0, // Skip to: 25528 3640/* 8650 */ MCD::OPC_CheckPredicate, 22, 233, 65, 0, // Skip to: 25528 3641/* 8655 */ MCD::OPC_CheckField, 28, 4, 14, 226, 65, 0, // Skip to: 25528 3642/* 8662 */ MCD::OPC_CheckField, 4, 1, 0, 219, 65, 0, // Skip to: 25528 3643/* 8669 */ MCD::OPC_Decode, 200, 8, 149, 1, // Opcode: MVE_VMINAs8 3644/* 8674 */ MCD::OPC_FilterValue, 2, 227, 0, 0, // Skip to: 8906 3645/* 8679 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3646/* 8682 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 8794 3647/* 8687 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3648/* 8690 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8742 3649/* 8695 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3650/* 8698 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8720 3651/* 8703 */ MCD::OPC_CheckPredicate, 22, 180, 65, 0, // Skip to: 25528 3652/* 8708 */ MCD::OPC_CheckField, 4, 1, 0, 173, 65, 0, // Skip to: 25528 3653/* 8715 */ MCD::OPC_Decode, 227, 11, 148, 1, // Opcode: MVE_VSHLL_lws16bh 3654/* 8720 */ MCD::OPC_FilterValue, 15, 163, 65, 0, // Skip to: 25528 3655/* 8725 */ MCD::OPC_CheckPredicate, 22, 158, 65, 0, // Skip to: 25528 3656/* 8730 */ MCD::OPC_CheckField, 4, 1, 0, 151, 65, 0, // Skip to: 25528 3657/* 8737 */ MCD::OPC_Decode, 231, 11, 148, 1, // Opcode: MVE_VSHLL_lwu16bh 3658/* 8742 */ MCD::OPC_FilterValue, 1, 141, 65, 0, // Skip to: 25528 3659/* 8747 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3660/* 8750 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8772 3661/* 8755 */ MCD::OPC_CheckPredicate, 22, 128, 65, 0, // Skip to: 25528 3662/* 8760 */ MCD::OPC_CheckField, 4, 1, 0, 121, 65, 0, // Skip to: 25528 3663/* 8767 */ MCD::OPC_Decode, 228, 11, 148, 1, // Opcode: MVE_VSHLL_lws16th 3664/* 8772 */ MCD::OPC_FilterValue, 15, 111, 65, 0, // Skip to: 25528 3665/* 8777 */ MCD::OPC_CheckPredicate, 22, 106, 65, 0, // Skip to: 25528 3666/* 8782 */ MCD::OPC_CheckField, 4, 1, 0, 99, 65, 0, // Skip to: 25528 3667/* 8789 */ MCD::OPC_Decode, 232, 11, 148, 1, // Opcode: MVE_VSHLL_lwu16th 3668/* 8794 */ MCD::OPC_FilterValue, 1, 89, 65, 0, // Skip to: 25528 3669/* 8799 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3670/* 8802 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8854 3671/* 8807 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3672/* 8810 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8832 3673/* 8815 */ MCD::OPC_CheckPredicate, 22, 68, 65, 0, // Skip to: 25528 3674/* 8820 */ MCD::OPC_CheckField, 4, 1, 0, 61, 65, 0, // Skip to: 25528 3675/* 8827 */ MCD::OPC_Decode, 184, 10, 149, 1, // Opcode: MVE_VQMOVUNs32bh 3676/* 8832 */ MCD::OPC_FilterValue, 15, 51, 65, 0, // Skip to: 25528 3677/* 8837 */ MCD::OPC_CheckPredicate, 22, 46, 65, 0, // Skip to: 25528 3678/* 8842 */ MCD::OPC_CheckField, 4, 1, 0, 39, 65, 0, // Skip to: 25528 3679/* 8849 */ MCD::OPC_Decode, 165, 9, 149, 1, // Opcode: MVE_VMOVNi32bh 3680/* 8854 */ MCD::OPC_FilterValue, 1, 29, 65, 0, // Skip to: 25528 3681/* 8859 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3682/* 8862 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8884 3683/* 8867 */ MCD::OPC_CheckPredicate, 22, 16, 65, 0, // Skip to: 25528 3684/* 8872 */ MCD::OPC_CheckField, 4, 1, 0, 9, 65, 0, // Skip to: 25528 3685/* 8879 */ MCD::OPC_Decode, 185, 10, 149, 1, // Opcode: MVE_VQMOVUNs32th 3686/* 8884 */ MCD::OPC_FilterValue, 15, 255, 64, 0, // Skip to: 25528 3687/* 8889 */ MCD::OPC_CheckPredicate, 22, 250, 64, 0, // Skip to: 25528 3688/* 8894 */ MCD::OPC_CheckField, 4, 1, 0, 243, 64, 0, // Skip to: 25528 3689/* 8901 */ MCD::OPC_Decode, 166, 9, 149, 1, // Opcode: MVE_VMOVNi32th 3690/* 8906 */ MCD::OPC_FilterValue, 3, 181, 0, 0, // Skip to: 9092 3691/* 8911 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3692/* 8914 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 9026 3693/* 8919 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3694/* 8922 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 8974 3695/* 8927 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3696/* 8930 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 8952 3697/* 8935 */ MCD::OPC_CheckPredicate, 22, 204, 64, 0, // Skip to: 25528 3698/* 8940 */ MCD::OPC_CheckField, 4, 1, 0, 197, 64, 0, // Skip to: 25528 3699/* 8947 */ MCD::OPC_Decode, 176, 10, 149, 1, // Opcode: MVE_VQMOVNs32bh 3700/* 8952 */ MCD::OPC_FilterValue, 15, 187, 64, 0, // Skip to: 25528 3701/* 8957 */ MCD::OPC_CheckPredicate, 22, 182, 64, 0, // Skip to: 25528 3702/* 8962 */ MCD::OPC_CheckField, 4, 1, 0, 175, 64, 0, // Skip to: 25528 3703/* 8969 */ MCD::OPC_Decode, 180, 10, 149, 1, // Opcode: MVE_VQMOVNu32bh 3704/* 8974 */ MCD::OPC_FilterValue, 1, 165, 64, 0, // Skip to: 25528 3705/* 8979 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3706/* 8982 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9004 3707/* 8987 */ MCD::OPC_CheckPredicate, 22, 152, 64, 0, // Skip to: 25528 3708/* 8992 */ MCD::OPC_CheckField, 4, 1, 0, 145, 64, 0, // Skip to: 25528 3709/* 8999 */ MCD::OPC_Decode, 177, 10, 149, 1, // Opcode: MVE_VQMOVNs32th 3710/* 9004 */ MCD::OPC_FilterValue, 15, 135, 64, 0, // Skip to: 25528 3711/* 9009 */ MCD::OPC_CheckPredicate, 22, 130, 64, 0, // Skip to: 25528 3712/* 9014 */ MCD::OPC_CheckField, 4, 1, 0, 123, 64, 0, // Skip to: 25528 3713/* 9021 */ MCD::OPC_Decode, 181, 10, 149, 1, // Opcode: MVE_VQMOVNu32th 3714/* 9026 */ MCD::OPC_FilterValue, 1, 113, 64, 0, // Skip to: 25528 3715/* 9031 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3716/* 9034 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 9063 3717/* 9039 */ MCD::OPC_CheckPredicate, 22, 100, 64, 0, // Skip to: 25528 3718/* 9044 */ MCD::OPC_CheckField, 28, 4, 14, 93, 64, 0, // Skip to: 25528 3719/* 9051 */ MCD::OPC_CheckField, 4, 1, 0, 86, 64, 0, // Skip to: 25528 3720/* 9058 */ MCD::OPC_Decode, 172, 8, 149, 1, // Opcode: MVE_VMAXAs16 3721/* 9063 */ MCD::OPC_FilterValue, 1, 76, 64, 0, // Skip to: 25528 3722/* 9068 */ MCD::OPC_CheckPredicate, 22, 71, 64, 0, // Skip to: 25528 3723/* 9073 */ MCD::OPC_CheckField, 28, 4, 14, 64, 64, 0, // Skip to: 25528 3724/* 9080 */ MCD::OPC_CheckField, 4, 1, 0, 57, 64, 0, // Skip to: 25528 3725/* 9087 */ MCD::OPC_Decode, 198, 8, 149, 1, // Opcode: MVE_VMINAs16 3726/* 9092 */ MCD::OPC_FilterValue, 5, 75, 0, 0, // Skip to: 9172 3727/* 9097 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3728/* 9100 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 9136 3729/* 9105 */ MCD::OPC_CheckPredicate, 22, 34, 64, 0, // Skip to: 25528 3730/* 9110 */ MCD::OPC_CheckField, 28, 4, 14, 27, 64, 0, // Skip to: 25528 3731/* 9117 */ MCD::OPC_CheckField, 7, 1, 1, 20, 64, 0, // Skip to: 25528 3732/* 9124 */ MCD::OPC_CheckField, 4, 1, 0, 13, 64, 0, // Skip to: 25528 3733/* 9131 */ MCD::OPC_Decode, 173, 8, 149, 1, // Opcode: MVE_VMAXAs32 3734/* 9136 */ MCD::OPC_FilterValue, 1, 3, 64, 0, // Skip to: 25528 3735/* 9141 */ MCD::OPC_CheckPredicate, 22, 254, 63, 0, // Skip to: 25528 3736/* 9146 */ MCD::OPC_CheckField, 28, 4, 14, 247, 63, 0, // Skip to: 25528 3737/* 9153 */ MCD::OPC_CheckField, 7, 1, 1, 240, 63, 0, // Skip to: 25528 3738/* 9160 */ MCD::OPC_CheckField, 4, 1, 0, 233, 63, 0, // Skip to: 25528 3739/* 9167 */ MCD::OPC_Decode, 199, 8, 149, 1, // Opcode: MVE_VMINAs32 3740/* 9172 */ MCD::OPC_FilterValue, 7, 223, 63, 0, // Skip to: 25528 3741/* 9177 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3742/* 9180 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 9292 3743/* 9185 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3744/* 9188 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 9240 3745/* 9193 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3746/* 9196 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9218 3747/* 9201 */ MCD::OPC_CheckPredicate, 24, 194, 63, 0, // Skip to: 25528 3748/* 9206 */ MCD::OPC_CheckField, 4, 1, 0, 187, 63, 0, // Skip to: 25528 3749/* 9213 */ MCD::OPC_Decode, 128, 7, 149, 1, // Opcode: MVE_VCVTf16f32bh 3750/* 9218 */ MCD::OPC_FilterValue, 15, 177, 63, 0, // Skip to: 25528 3751/* 9223 */ MCD::OPC_CheckPredicate, 24, 172, 63, 0, // Skip to: 25528 3752/* 9228 */ MCD::OPC_CheckField, 4, 1, 0, 165, 63, 0, // Skip to: 25528 3753/* 9235 */ MCD::OPC_Decode, 134, 7, 149, 1, // Opcode: MVE_VCVTf32f16bh 3754/* 9240 */ MCD::OPC_FilterValue, 1, 155, 63, 0, // Skip to: 25528 3755/* 9245 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3756/* 9248 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9270 3757/* 9253 */ MCD::OPC_CheckPredicate, 24, 142, 63, 0, // Skip to: 25528 3758/* 9258 */ MCD::OPC_CheckField, 4, 1, 0, 135, 63, 0, // Skip to: 25528 3759/* 9265 */ MCD::OPC_Decode, 129, 7, 149, 1, // Opcode: MVE_VCVTf16f32th 3760/* 9270 */ MCD::OPC_FilterValue, 15, 125, 63, 0, // Skip to: 25528 3761/* 9275 */ MCD::OPC_CheckPredicate, 24, 120, 63, 0, // Skip to: 25528 3762/* 9280 */ MCD::OPC_CheckField, 4, 1, 0, 113, 63, 0, // Skip to: 25528 3763/* 9287 */ MCD::OPC_Decode, 135, 7, 149, 1, // Opcode: MVE_VCVTf32f16th 3764/* 9292 */ MCD::OPC_FilterValue, 1, 103, 63, 0, // Skip to: 25528 3765/* 9297 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3766/* 9300 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 9352 3767/* 9305 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3768/* 9308 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9330 3769/* 9313 */ MCD::OPC_CheckPredicate, 24, 82, 63, 0, // Skip to: 25528 3770/* 9318 */ MCD::OPC_CheckField, 4, 1, 0, 75, 63, 0, // Skip to: 25528 3771/* 9325 */ MCD::OPC_Decode, 178, 8, 149, 1, // Opcode: MVE_VMAXNMAf32 3772/* 9330 */ MCD::OPC_FilterValue, 15, 65, 63, 0, // Skip to: 25528 3773/* 9335 */ MCD::OPC_CheckPredicate, 24, 60, 63, 0, // Skip to: 25528 3774/* 9340 */ MCD::OPC_CheckField, 4, 1, 0, 53, 63, 0, // Skip to: 25528 3775/* 9347 */ MCD::OPC_Decode, 177, 8, 149, 1, // Opcode: MVE_VMAXNMAf16 3776/* 9352 */ MCD::OPC_FilterValue, 1, 43, 63, 0, // Skip to: 25528 3777/* 9357 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3778/* 9360 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9382 3779/* 9365 */ MCD::OPC_CheckPredicate, 24, 30, 63, 0, // Skip to: 25528 3780/* 9370 */ MCD::OPC_CheckField, 4, 1, 0, 23, 63, 0, // Skip to: 25528 3781/* 9377 */ MCD::OPC_Decode, 204, 8, 149, 1, // Opcode: MVE_VMINNMAf32 3782/* 9382 */ MCD::OPC_FilterValue, 15, 13, 63, 0, // Skip to: 25528 3783/* 9387 */ MCD::OPC_CheckPredicate, 24, 8, 63, 0, // Skip to: 25528 3784/* 9392 */ MCD::OPC_CheckField, 4, 1, 0, 1, 63, 0, // Skip to: 25528 3785/* 9399 */ MCD::OPC_Decode, 203, 8, 149, 1, // Opcode: MVE_VMINNMAf16 3786/* 9404 */ MCD::OPC_FilterValue, 1, 247, 62, 0, // Skip to: 25528 3787/* 9409 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3788/* 9412 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 9524 3789/* 9417 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3790/* 9420 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 9472 3791/* 9425 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3792/* 9428 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9450 3793/* 9433 */ MCD::OPC_CheckPredicate, 24, 218, 62, 0, // Skip to: 25528 3794/* 9438 */ MCD::OPC_CheckField, 16, 1, 1, 211, 62, 0, // Skip to: 25528 3795/* 9445 */ MCD::OPC_Decode, 177, 7, 145, 1, // Opcode: MVE_VFMA_qr_f32 3796/* 9450 */ MCD::OPC_FilterValue, 15, 201, 62, 0, // Skip to: 25528 3797/* 9455 */ MCD::OPC_CheckPredicate, 24, 196, 62, 0, // Skip to: 25528 3798/* 9460 */ MCD::OPC_CheckField, 16, 1, 1, 189, 62, 0, // Skip to: 25528 3799/* 9467 */ MCD::OPC_Decode, 176, 7, 145, 1, // Opcode: MVE_VFMA_qr_f16 3800/* 9472 */ MCD::OPC_FilterValue, 1, 179, 62, 0, // Skip to: 25528 3801/* 9477 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3802/* 9480 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9502 3803/* 9485 */ MCD::OPC_CheckPredicate, 24, 166, 62, 0, // Skip to: 25528 3804/* 9490 */ MCD::OPC_CheckField, 16, 1, 1, 159, 62, 0, // Skip to: 25528 3805/* 9497 */ MCD::OPC_Decode, 175, 7, 145, 1, // Opcode: MVE_VFMA_qr_Sf32 3806/* 9502 */ MCD::OPC_FilterValue, 15, 149, 62, 0, // Skip to: 25528 3807/* 9507 */ MCD::OPC_CheckPredicate, 24, 144, 62, 0, // Skip to: 25528 3808/* 9512 */ MCD::OPC_CheckField, 16, 1, 1, 137, 62, 0, // Skip to: 25528 3809/* 9519 */ MCD::OPC_Decode, 174, 7, 145, 1, // Opcode: MVE_VFMA_qr_Sf16 3810/* 9524 */ MCD::OPC_FilterValue, 2, 127, 62, 0, // Skip to: 25528 3811/* 9529 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3812/* 9532 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 9584 3813/* 9537 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3814/* 9540 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 9562 3815/* 9545 */ MCD::OPC_CheckPredicate, 24, 106, 62, 0, // Skip to: 25528 3816/* 9550 */ MCD::OPC_CheckField, 16, 1, 1, 99, 62, 0, // Skip to: 25528 3817/* 9557 */ MCD::OPC_Decode, 205, 9, 146, 1, // Opcode: MVE_VMUL_qr_f32 3818/* 9562 */ MCD::OPC_FilterValue, 15, 89, 62, 0, // Skip to: 25528 3819/* 9567 */ MCD::OPC_CheckPredicate, 24, 84, 62, 0, // Skip to: 25528 3820/* 9572 */ MCD::OPC_CheckField, 16, 1, 1, 77, 62, 0, // Skip to: 25528 3821/* 9579 */ MCD::OPC_Decode, 204, 9, 146, 1, // Opcode: MVE_VMUL_qr_f16 3822/* 9584 */ MCD::OPC_FilterValue, 1, 67, 62, 0, // Skip to: 25528 3823/* 9589 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 3824/* 9592 */ MCD::OPC_FilterValue, 1, 79, 0, 0, // Skip to: 9676 3825/* 9597 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3826/* 9600 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 9638 3827/* 9605 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3828/* 9608 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9623 3829/* 9613 */ MCD::OPC_CheckPredicate, 22, 38, 62, 0, // Skip to: 25528 3830/* 9618 */ MCD::OPC_Decode, 246, 11, 150, 1, // Opcode: MVE_VSHL_qrs8 3831/* 9623 */ MCD::OPC_FilterValue, 15, 28, 62, 0, // Skip to: 25528 3832/* 9628 */ MCD::OPC_CheckPredicate, 22, 23, 62, 0, // Skip to: 25528 3833/* 9633 */ MCD::OPC_Decode, 249, 11, 150, 1, // Opcode: MVE_VSHL_qru8 3834/* 9638 */ MCD::OPC_FilterValue, 1, 13, 62, 0, // Skip to: 25528 3835/* 9643 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3836/* 9646 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9661 3837/* 9651 */ MCD::OPC_CheckPredicate, 22, 0, 62, 0, // Skip to: 25528 3838/* 9656 */ MCD::OPC_Decode, 248, 10, 150, 1, // Opcode: MVE_VQSHL_qrs8 3839/* 9661 */ MCD::OPC_FilterValue, 15, 246, 61, 0, // Skip to: 25528 3840/* 9666 */ MCD::OPC_CheckPredicate, 22, 241, 61, 0, // Skip to: 25528 3841/* 9671 */ MCD::OPC_Decode, 251, 10, 150, 1, // Opcode: MVE_VQSHL_qru8 3842/* 9676 */ MCD::OPC_FilterValue, 3, 79, 0, 0, // Skip to: 9760 3843/* 9681 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3844/* 9684 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 9722 3845/* 9689 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3846/* 9692 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9707 3847/* 9697 */ MCD::OPC_CheckPredicate, 22, 210, 61, 0, // Skip to: 25528 3848/* 9702 */ MCD::OPC_Decode, 202, 11, 150, 1, // Opcode: MVE_VRSHL_qrs8 3849/* 9707 */ MCD::OPC_FilterValue, 15, 200, 61, 0, // Skip to: 25528 3850/* 9712 */ MCD::OPC_CheckPredicate, 22, 195, 61, 0, // Skip to: 25528 3851/* 9717 */ MCD::OPC_Decode, 205, 11, 150, 1, // Opcode: MVE_VRSHL_qru8 3852/* 9722 */ MCD::OPC_FilterValue, 1, 185, 61, 0, // Skip to: 25528 3853/* 9727 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3854/* 9730 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9745 3855/* 9735 */ MCD::OPC_CheckPredicate, 22, 172, 61, 0, // Skip to: 25528 3856/* 9740 */ MCD::OPC_Decode, 221, 10, 150, 1, // Opcode: MVE_VQRSHL_qrs8 3857/* 9745 */ MCD::OPC_FilterValue, 15, 162, 61, 0, // Skip to: 25528 3858/* 9750 */ MCD::OPC_CheckPredicate, 22, 157, 61, 0, // Skip to: 25528 3859/* 9755 */ MCD::OPC_Decode, 224, 10, 150, 1, // Opcode: MVE_VQRSHL_qru8 3860/* 9760 */ MCD::OPC_FilterValue, 5, 79, 0, 0, // Skip to: 9844 3861/* 9765 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3862/* 9768 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 9806 3863/* 9773 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3864/* 9776 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9791 3865/* 9781 */ MCD::OPC_CheckPredicate, 22, 126, 61, 0, // Skip to: 25528 3866/* 9786 */ MCD::OPC_Decode, 244, 11, 150, 1, // Opcode: MVE_VSHL_qrs16 3867/* 9791 */ MCD::OPC_FilterValue, 15, 116, 61, 0, // Skip to: 25528 3868/* 9796 */ MCD::OPC_CheckPredicate, 22, 111, 61, 0, // Skip to: 25528 3869/* 9801 */ MCD::OPC_Decode, 247, 11, 150, 1, // Opcode: MVE_VSHL_qru16 3870/* 9806 */ MCD::OPC_FilterValue, 1, 101, 61, 0, // Skip to: 25528 3871/* 9811 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3872/* 9814 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9829 3873/* 9819 */ MCD::OPC_CheckPredicate, 22, 88, 61, 0, // Skip to: 25528 3874/* 9824 */ MCD::OPC_Decode, 246, 10, 150, 1, // Opcode: MVE_VQSHL_qrs16 3875/* 9829 */ MCD::OPC_FilterValue, 15, 78, 61, 0, // Skip to: 25528 3876/* 9834 */ MCD::OPC_CheckPredicate, 22, 73, 61, 0, // Skip to: 25528 3877/* 9839 */ MCD::OPC_Decode, 249, 10, 150, 1, // Opcode: MVE_VQSHL_qru16 3878/* 9844 */ MCD::OPC_FilterValue, 7, 79, 0, 0, // Skip to: 9928 3879/* 9849 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3880/* 9852 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 9890 3881/* 9857 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3882/* 9860 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9875 3883/* 9865 */ MCD::OPC_CheckPredicate, 22, 42, 61, 0, // Skip to: 25528 3884/* 9870 */ MCD::OPC_Decode, 200, 11, 150, 1, // Opcode: MVE_VRSHL_qrs16 3885/* 9875 */ MCD::OPC_FilterValue, 15, 32, 61, 0, // Skip to: 25528 3886/* 9880 */ MCD::OPC_CheckPredicate, 22, 27, 61, 0, // Skip to: 25528 3887/* 9885 */ MCD::OPC_Decode, 203, 11, 150, 1, // Opcode: MVE_VRSHL_qru16 3888/* 9890 */ MCD::OPC_FilterValue, 1, 17, 61, 0, // Skip to: 25528 3889/* 9895 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3890/* 9898 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9913 3891/* 9903 */ MCD::OPC_CheckPredicate, 22, 4, 61, 0, // Skip to: 25528 3892/* 9908 */ MCD::OPC_Decode, 219, 10, 150, 1, // Opcode: MVE_VQRSHL_qrs16 3893/* 9913 */ MCD::OPC_FilterValue, 15, 250, 60, 0, // Skip to: 25528 3894/* 9918 */ MCD::OPC_CheckPredicate, 22, 245, 60, 0, // Skip to: 25528 3895/* 9923 */ MCD::OPC_Decode, 222, 10, 150, 1, // Opcode: MVE_VQRSHL_qru16 3896/* 9928 */ MCD::OPC_FilterValue, 9, 79, 0, 0, // Skip to: 10012 3897/* 9933 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3898/* 9936 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 9974 3899/* 9941 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3900/* 9944 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9959 3901/* 9949 */ MCD::OPC_CheckPredicate, 22, 214, 60, 0, // Skip to: 25528 3902/* 9954 */ MCD::OPC_Decode, 245, 11, 150, 1, // Opcode: MVE_VSHL_qrs32 3903/* 9959 */ MCD::OPC_FilterValue, 15, 204, 60, 0, // Skip to: 25528 3904/* 9964 */ MCD::OPC_CheckPredicate, 22, 199, 60, 0, // Skip to: 25528 3905/* 9969 */ MCD::OPC_Decode, 248, 11, 150, 1, // Opcode: MVE_VSHL_qru32 3906/* 9974 */ MCD::OPC_FilterValue, 1, 189, 60, 0, // Skip to: 25528 3907/* 9979 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3908/* 9982 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 9997 3909/* 9987 */ MCD::OPC_CheckPredicate, 22, 176, 60, 0, // Skip to: 25528 3910/* 9992 */ MCD::OPC_Decode, 247, 10, 150, 1, // Opcode: MVE_VQSHL_qrs32 3911/* 9997 */ MCD::OPC_FilterValue, 15, 166, 60, 0, // Skip to: 25528 3912/* 10002 */ MCD::OPC_CheckPredicate, 22, 161, 60, 0, // Skip to: 25528 3913/* 10007 */ MCD::OPC_Decode, 250, 10, 150, 1, // Opcode: MVE_VQSHL_qru32 3914/* 10012 */ MCD::OPC_FilterValue, 11, 151, 60, 0, // Skip to: 25528 3915/* 10017 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 3916/* 10020 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 10058 3917/* 10025 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3918/* 10028 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10043 3919/* 10033 */ MCD::OPC_CheckPredicate, 22, 130, 60, 0, // Skip to: 25528 3920/* 10038 */ MCD::OPC_Decode, 201, 11, 150, 1, // Opcode: MVE_VRSHL_qrs32 3921/* 10043 */ MCD::OPC_FilterValue, 15, 120, 60, 0, // Skip to: 25528 3922/* 10048 */ MCD::OPC_CheckPredicate, 22, 115, 60, 0, // Skip to: 25528 3923/* 10053 */ MCD::OPC_Decode, 204, 11, 150, 1, // Opcode: MVE_VRSHL_qru32 3924/* 10058 */ MCD::OPC_FilterValue, 1, 105, 60, 0, // Skip to: 25528 3925/* 10063 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3926/* 10066 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10081 3927/* 10071 */ MCD::OPC_CheckPredicate, 22, 92, 60, 0, // Skip to: 25528 3928/* 10076 */ MCD::OPC_Decode, 220, 10, 150, 1, // Opcode: MVE_VQRSHL_qrs32 3929/* 10081 */ MCD::OPC_FilterValue, 15, 82, 60, 0, // Skip to: 25528 3930/* 10086 */ MCD::OPC_CheckPredicate, 22, 77, 60, 0, // Skip to: 25528 3931/* 10091 */ MCD::OPC_Decode, 223, 10, 150, 1, // Opcode: MVE_VQRSHL_qru32 3932/* 10096 */ MCD::OPC_FilterValue, 15, 67, 60, 0, // Skip to: 25528 3933/* 10101 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 3934/* 10104 */ MCD::OPC_FilterValue, 0, 197, 2, 0, // Skip to: 10818 3935/* 10109 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 3936/* 10112 */ MCD::OPC_FilterValue, 0, 250, 0, 0, // Skip to: 10367 3937/* 10117 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3938/* 10120 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 10186 3939/* 10125 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3940/* 10128 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 10157 3941/* 10133 */ MCD::OPC_CheckPredicate, 22, 30, 60, 0, // Skip to: 25528 3942/* 10138 */ MCD::OPC_CheckField, 4, 1, 0, 23, 60, 0, // Skip to: 25528 3943/* 10145 */ MCD::OPC_CheckField, 0, 1, 0, 16, 60, 0, // Skip to: 25528 3944/* 10152 */ MCD::OPC_Decode, 196, 7, 151, 1, // Opcode: MVE_VHCADDs8 3945/* 10157 */ MCD::OPC_FilterValue, 15, 6, 60, 0, // Skip to: 25528 3946/* 10162 */ MCD::OPC_CheckPredicate, 22, 1, 60, 0, // Skip to: 25528 3947/* 10167 */ MCD::OPC_CheckField, 4, 1, 0, 250, 59, 0, // Skip to: 25528 3948/* 10174 */ MCD::OPC_CheckField, 0, 1, 0, 243, 59, 0, // Skip to: 25528 3949/* 10181 */ MCD::OPC_Decode, 219, 6, 151, 1, // Opcode: MVE_VCADDi8 3950/* 10186 */ MCD::OPC_FilterValue, 1, 233, 59, 0, // Skip to: 25528 3951/* 10191 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3952/* 10194 */ MCD::OPC_FilterValue, 0, 113, 0, 0, // Skip to: 10312 3953/* 10199 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 3954/* 10202 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 10257 3955/* 10207 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 3956/* 10210 */ MCD::OPC_FilterValue, 0, 209, 59, 0, // Skip to: 25528 3957/* 10215 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3958/* 10218 */ MCD::OPC_FilterValue, 15, 201, 59, 0, // Skip to: 25528 3959/* 10223 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10247 3960/* 10228 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10247 3961/* 10235 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10247 3962/* 10242 */ MCD::OPC_Decode, 236, 6, 152, 1, // Opcode: MVE_VCMPi8 3963/* 10247 */ MCD::OPC_CheckPredicate, 22, 172, 59, 0, // Skip to: 25528 3964/* 10252 */ MCD::OPC_Decode, 233, 9, 153, 1, // Opcode: MVE_VPTv16i8 3965/* 10257 */ MCD::OPC_FilterValue, 1, 162, 59, 0, // Skip to: 25528 3966/* 10262 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 3967/* 10265 */ MCD::OPC_FilterValue, 0, 154, 59, 0, // Skip to: 25528 3968/* 10270 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3969/* 10273 */ MCD::OPC_FilterValue, 15, 146, 59, 0, // Skip to: 25528 3970/* 10278 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10302 3971/* 10283 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10302 3972/* 10290 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10302 3973/* 10297 */ MCD::OPC_Decode, 248, 6, 154, 1, // Opcode: MVE_VCMPu8 3974/* 10302 */ MCD::OPC_CheckPredicate, 22, 117, 59, 0, // Skip to: 25528 3975/* 10307 */ MCD::OPC_Decode, 237, 9, 155, 1, // Opcode: MVE_VPTv16u8 3976/* 10312 */ MCD::OPC_FilterValue, 1, 107, 59, 0, // Skip to: 25528 3977/* 10317 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 3978/* 10320 */ MCD::OPC_FilterValue, 0, 99, 59, 0, // Skip to: 25528 3979/* 10325 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3980/* 10328 */ MCD::OPC_FilterValue, 15, 91, 59, 0, // Skip to: 25528 3981/* 10333 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10357 3982/* 10338 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10357 3983/* 10345 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10357 3984/* 10352 */ MCD::OPC_Decode, 242, 6, 156, 1, // Opcode: MVE_VCMPs8 3985/* 10357 */ MCD::OPC_CheckPredicate, 22, 62, 59, 0, // Skip to: 25528 3986/* 10362 */ MCD::OPC_Decode, 235, 9, 157, 1, // Opcode: MVE_VPTv16s8 3987/* 10367 */ MCD::OPC_FilterValue, 1, 52, 59, 0, // Skip to: 25528 3988/* 10372 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 3989/* 10375 */ MCD::OPC_FilterValue, 0, 236, 0, 0, // Skip to: 10616 3990/* 10380 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 3991/* 10383 */ MCD::OPC_FilterValue, 0, 103, 0, 0, // Skip to: 10491 3992/* 10388 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 3993/* 10391 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 10429 3994/* 10396 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 3995/* 10399 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10414 3996/* 10404 */ MCD::OPC_CheckPredicate, 22, 15, 59, 0, // Skip to: 25528 3997/* 10409 */ MCD::OPC_Decode, 184, 7, 146, 1, // Opcode: MVE_VHADD_qr_s8 3998/* 10414 */ MCD::OPC_FilterValue, 15, 5, 59, 0, // Skip to: 25528 3999/* 10419 */ MCD::OPC_CheckPredicate, 22, 0, 59, 0, // Skip to: 25528 4000/* 10424 */ MCD::OPC_Decode, 187, 7, 146, 1, // Opcode: MVE_VHADD_qr_u8 4001/* 10429 */ MCD::OPC_FilterValue, 1, 246, 58, 0, // Skip to: 25528 4002/* 10434 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4003/* 10437 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10452 4004/* 10442 */ MCD::OPC_CheckPredicate, 22, 233, 58, 0, // Skip to: 25528 4005/* 10447 */ MCD::OPC_Decode, 198, 6, 146, 1, // Opcode: MVE_VADD_qr_i8 4006/* 10452 */ MCD::OPC_FilterValue, 15, 223, 58, 0, // Skip to: 25528 4007/* 10457 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10481 4008/* 10462 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10481 4009/* 10469 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10481 4010/* 10476 */ MCD::OPC_Decode, 237, 6, 158, 1, // Opcode: MVE_VCMPi8r 4011/* 10481 */ MCD::OPC_CheckPredicate, 22, 194, 58, 0, // Skip to: 25528 4012/* 10486 */ MCD::OPC_Decode, 234, 9, 159, 1, // Opcode: MVE_VPTv16i8r 4013/* 10491 */ MCD::OPC_FilterValue, 2, 184, 58, 0, // Skip to: 25528 4014/* 10496 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4015/* 10499 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 10537 4016/* 10504 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4017/* 10507 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10522 4018/* 10512 */ MCD::OPC_CheckPredicate, 22, 163, 58, 0, // Skip to: 25528 4019/* 10517 */ MCD::OPC_Decode, 132, 10, 146, 1, // Opcode: MVE_VQADD_qr_s8 4020/* 10522 */ MCD::OPC_FilterValue, 15, 153, 58, 0, // Skip to: 25528 4021/* 10527 */ MCD::OPC_CheckPredicate, 22, 148, 58, 0, // Skip to: 25528 4022/* 10532 */ MCD::OPC_Decode, 135, 10, 146, 1, // Opcode: MVE_VQADD_qr_u8 4023/* 10537 */ MCD::OPC_FilterValue, 1, 138, 58, 0, // Skip to: 25528 4024/* 10542 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4025/* 10545 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 10577 4026/* 10550 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 10567 4027/* 10555 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 10567 4028/* 10562 */ MCD::OPC_Decode, 211, 7, 160, 1, // Opcode: MVE_VIDUPu8 4029/* 10567 */ MCD::OPC_CheckPredicate, 22, 108, 58, 0, // Skip to: 25528 4030/* 10572 */ MCD::OPC_Decode, 214, 7, 161, 1, // Opcode: MVE_VIWDUPu8 4031/* 10577 */ MCD::OPC_FilterValue, 15, 98, 58, 0, // Skip to: 25528 4032/* 10582 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10606 4033/* 10587 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10606 4034/* 10594 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10606 4035/* 10601 */ MCD::OPC_Decode, 249, 6, 162, 1, // Opcode: MVE_VCMPu8r 4036/* 10606 */ MCD::OPC_CheckPredicate, 22, 69, 58, 0, // Skip to: 25528 4037/* 10611 */ MCD::OPC_Decode, 238, 9, 163, 1, // Opcode: MVE_VPTv16u8r 4038/* 10616 */ MCD::OPC_FilterValue, 1, 59, 58, 0, // Skip to: 25528 4039/* 10621 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4040/* 10624 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 10708 4041/* 10629 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4042/* 10632 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 10670 4043/* 10637 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4044/* 10640 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10655 4045/* 10645 */ MCD::OPC_CheckPredicate, 22, 30, 58, 0, // Skip to: 25528 4046/* 10650 */ MCD::OPC_Decode, 199, 7, 146, 1, // Opcode: MVE_VHSUB_qr_s8 4047/* 10655 */ MCD::OPC_FilterValue, 15, 20, 58, 0, // Skip to: 25528 4048/* 10660 */ MCD::OPC_CheckPredicate, 22, 15, 58, 0, // Skip to: 25528 4049/* 10665 */ MCD::OPC_Decode, 202, 7, 146, 1, // Opcode: MVE_VHSUB_qr_u8 4050/* 10670 */ MCD::OPC_FilterValue, 2, 5, 58, 0, // Skip to: 25528 4051/* 10675 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4052/* 10678 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 10693 4053/* 10683 */ MCD::OPC_CheckPredicate, 22, 248, 57, 0, // Skip to: 25528 4054/* 10688 */ MCD::OPC_Decode, 144, 11, 146, 1, // Opcode: MVE_VQSUB_qr_s8 4055/* 10693 */ MCD::OPC_FilterValue, 15, 238, 57, 0, // Skip to: 25528 4056/* 10698 */ MCD::OPC_CheckPredicate, 22, 233, 57, 0, // Skip to: 25528 4057/* 10703 */ MCD::OPC_Decode, 147, 11, 146, 1, // Opcode: MVE_VQSUB_qr_u8 4058/* 10708 */ MCD::OPC_FilterValue, 1, 223, 57, 0, // Skip to: 25528 4059/* 10713 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4060/* 10716 */ MCD::OPC_FilterValue, 14, 50, 0, 0, // Skip to: 10771 4061/* 10721 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4062/* 10724 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10739 4063/* 10729 */ MCD::OPC_CheckPredicate, 22, 202, 57, 0, // Skip to: 25528 4064/* 10734 */ MCD::OPC_Decode, 211, 12, 146, 1, // Opcode: MVE_VSUB_qr_i8 4065/* 10739 */ MCD::OPC_FilterValue, 2, 192, 57, 0, // Skip to: 25528 4066/* 10744 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 10761 4067/* 10749 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 10761 4068/* 10756 */ MCD::OPC_Decode, 166, 7, 160, 1, // Opcode: MVE_VDDUPu8 4069/* 10761 */ MCD::OPC_CheckPredicate, 22, 170, 57, 0, // Skip to: 25528 4070/* 10766 */ MCD::OPC_Decode, 172, 7, 161, 1, // Opcode: MVE_VDWDUPu8 4071/* 10771 */ MCD::OPC_FilterValue, 15, 160, 57, 0, // Skip to: 25528 4072/* 10776 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4073/* 10779 */ MCD::OPC_FilterValue, 0, 152, 57, 0, // Skip to: 25528 4074/* 10784 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10808 4075/* 10789 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10808 4076/* 10796 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10808 4077/* 10803 */ MCD::OPC_Decode, 243, 6, 164, 1, // Opcode: MVE_VCMPs8r 4078/* 10808 */ MCD::OPC_CheckPredicate, 22, 123, 57, 0, // Skip to: 25528 4079/* 10813 */ MCD::OPC_Decode, 236, 9, 165, 1, // Opcode: MVE_VPTv16s8r 4080/* 10818 */ MCD::OPC_FilterValue, 1, 197, 2, 0, // Skip to: 11532 4081/* 10823 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 4082/* 10826 */ MCD::OPC_FilterValue, 0, 250, 0, 0, // Skip to: 11081 4083/* 10831 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4084/* 10834 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 10900 4085/* 10839 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4086/* 10842 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 10871 4087/* 10847 */ MCD::OPC_CheckPredicate, 22, 84, 57, 0, // Skip to: 25528 4088/* 10852 */ MCD::OPC_CheckField, 4, 1, 0, 77, 57, 0, // Skip to: 25528 4089/* 10859 */ MCD::OPC_CheckField, 0, 1, 0, 70, 57, 0, // Skip to: 25528 4090/* 10866 */ MCD::OPC_Decode, 194, 7, 151, 1, // Opcode: MVE_VHCADDs16 4091/* 10871 */ MCD::OPC_FilterValue, 15, 60, 57, 0, // Skip to: 25528 4092/* 10876 */ MCD::OPC_CheckPredicate, 22, 55, 57, 0, // Skip to: 25528 4093/* 10881 */ MCD::OPC_CheckField, 4, 1, 0, 48, 57, 0, // Skip to: 25528 4094/* 10888 */ MCD::OPC_CheckField, 0, 1, 0, 41, 57, 0, // Skip to: 25528 4095/* 10895 */ MCD::OPC_Decode, 217, 6, 151, 1, // Opcode: MVE_VCADDi16 4096/* 10900 */ MCD::OPC_FilterValue, 1, 31, 57, 0, // Skip to: 25528 4097/* 10905 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4098/* 10908 */ MCD::OPC_FilterValue, 0, 113, 0, 0, // Skip to: 11026 4099/* 10913 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 4100/* 10916 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 10971 4101/* 10921 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4102/* 10924 */ MCD::OPC_FilterValue, 0, 7, 57, 0, // Skip to: 25528 4103/* 10929 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4104/* 10932 */ MCD::OPC_FilterValue, 15, 255, 56, 0, // Skip to: 25528 4105/* 10937 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 10961 4106/* 10942 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 10961 4107/* 10949 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 10961 4108/* 10956 */ MCD::OPC_Decode, 232, 6, 152, 1, // Opcode: MVE_VCMPi16 4109/* 10961 */ MCD::OPC_CheckPredicate, 22, 226, 56, 0, // Skip to: 25528 4110/* 10966 */ MCD::OPC_Decode, 249, 9, 153, 1, // Opcode: MVE_VPTv8i16 4111/* 10971 */ MCD::OPC_FilterValue, 1, 216, 56, 0, // Skip to: 25528 4112/* 10976 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4113/* 10979 */ MCD::OPC_FilterValue, 0, 208, 56, 0, // Skip to: 25528 4114/* 10984 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4115/* 10987 */ MCD::OPC_FilterValue, 15, 200, 56, 0, // Skip to: 25528 4116/* 10992 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11016 4117/* 10997 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11016 4118/* 11004 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11016 4119/* 11011 */ MCD::OPC_Decode, 244, 6, 154, 1, // Opcode: MVE_VCMPu16 4120/* 11016 */ MCD::OPC_CheckPredicate, 22, 171, 56, 0, // Skip to: 25528 4121/* 11021 */ MCD::OPC_Decode, 253, 9, 155, 1, // Opcode: MVE_VPTv8u16 4122/* 11026 */ MCD::OPC_FilterValue, 1, 161, 56, 0, // Skip to: 25528 4123/* 11031 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4124/* 11034 */ MCD::OPC_FilterValue, 0, 153, 56, 0, // Skip to: 25528 4125/* 11039 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4126/* 11042 */ MCD::OPC_FilterValue, 15, 145, 56, 0, // Skip to: 25528 4127/* 11047 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11071 4128/* 11052 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11071 4129/* 11059 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11071 4130/* 11066 */ MCD::OPC_Decode, 238, 6, 156, 1, // Opcode: MVE_VCMPs16 4131/* 11071 */ MCD::OPC_CheckPredicate, 22, 116, 56, 0, // Skip to: 25528 4132/* 11076 */ MCD::OPC_Decode, 251, 9, 157, 1, // Opcode: MVE_VPTv8s16 4133/* 11081 */ MCD::OPC_FilterValue, 1, 106, 56, 0, // Skip to: 25528 4134/* 11086 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4135/* 11089 */ MCD::OPC_FilterValue, 0, 236, 0, 0, // Skip to: 11330 4136/* 11094 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4137/* 11097 */ MCD::OPC_FilterValue, 0, 103, 0, 0, // Skip to: 11205 4138/* 11102 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4139/* 11105 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 11143 4140/* 11110 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4141/* 11113 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11128 4142/* 11118 */ MCD::OPC_CheckPredicate, 22, 69, 56, 0, // Skip to: 25528 4143/* 11123 */ MCD::OPC_Decode, 182, 7, 146, 1, // Opcode: MVE_VHADD_qr_s16 4144/* 11128 */ MCD::OPC_FilterValue, 15, 59, 56, 0, // Skip to: 25528 4145/* 11133 */ MCD::OPC_CheckPredicate, 22, 54, 56, 0, // Skip to: 25528 4146/* 11138 */ MCD::OPC_Decode, 185, 7, 146, 1, // Opcode: MVE_VHADD_qr_u16 4147/* 11143 */ MCD::OPC_FilterValue, 1, 44, 56, 0, // Skip to: 25528 4148/* 11148 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4149/* 11151 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11166 4150/* 11156 */ MCD::OPC_CheckPredicate, 22, 31, 56, 0, // Skip to: 25528 4151/* 11161 */ MCD::OPC_Decode, 196, 6, 146, 1, // Opcode: MVE_VADD_qr_i16 4152/* 11166 */ MCD::OPC_FilterValue, 15, 21, 56, 0, // Skip to: 25528 4153/* 11171 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11195 4154/* 11176 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11195 4155/* 11183 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11195 4156/* 11190 */ MCD::OPC_Decode, 233, 6, 158, 1, // Opcode: MVE_VCMPi16r 4157/* 11195 */ MCD::OPC_CheckPredicate, 22, 248, 55, 0, // Skip to: 25528 4158/* 11200 */ MCD::OPC_Decode, 250, 9, 159, 1, // Opcode: MVE_VPTv8i16r 4159/* 11205 */ MCD::OPC_FilterValue, 2, 238, 55, 0, // Skip to: 25528 4160/* 11210 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4161/* 11213 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 11251 4162/* 11218 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4163/* 11221 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11236 4164/* 11226 */ MCD::OPC_CheckPredicate, 22, 217, 55, 0, // Skip to: 25528 4165/* 11231 */ MCD::OPC_Decode, 130, 10, 146, 1, // Opcode: MVE_VQADD_qr_s16 4166/* 11236 */ MCD::OPC_FilterValue, 15, 207, 55, 0, // Skip to: 25528 4167/* 11241 */ MCD::OPC_CheckPredicate, 22, 202, 55, 0, // Skip to: 25528 4168/* 11246 */ MCD::OPC_Decode, 133, 10, 146, 1, // Opcode: MVE_VQADD_qr_u16 4169/* 11251 */ MCD::OPC_FilterValue, 1, 192, 55, 0, // Skip to: 25528 4170/* 11256 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4171/* 11259 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 11291 4172/* 11264 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 11281 4173/* 11269 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 11281 4174/* 11276 */ MCD::OPC_Decode, 209, 7, 160, 1, // Opcode: MVE_VIDUPu16 4175/* 11281 */ MCD::OPC_CheckPredicate, 22, 162, 55, 0, // Skip to: 25528 4176/* 11286 */ MCD::OPC_Decode, 212, 7, 161, 1, // Opcode: MVE_VIWDUPu16 4177/* 11291 */ MCD::OPC_FilterValue, 15, 152, 55, 0, // Skip to: 25528 4178/* 11296 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11320 4179/* 11301 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11320 4180/* 11308 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11320 4181/* 11315 */ MCD::OPC_Decode, 245, 6, 162, 1, // Opcode: MVE_VCMPu16r 4182/* 11320 */ MCD::OPC_CheckPredicate, 22, 123, 55, 0, // Skip to: 25528 4183/* 11325 */ MCD::OPC_Decode, 254, 9, 163, 1, // Opcode: MVE_VPTv8u16r 4184/* 11330 */ MCD::OPC_FilterValue, 1, 113, 55, 0, // Skip to: 25528 4185/* 11335 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4186/* 11338 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 11422 4187/* 11343 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4188/* 11346 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 11384 4189/* 11351 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4190/* 11354 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11369 4191/* 11359 */ MCD::OPC_CheckPredicate, 22, 84, 55, 0, // Skip to: 25528 4192/* 11364 */ MCD::OPC_Decode, 197, 7, 146, 1, // Opcode: MVE_VHSUB_qr_s16 4193/* 11369 */ MCD::OPC_FilterValue, 15, 74, 55, 0, // Skip to: 25528 4194/* 11374 */ MCD::OPC_CheckPredicate, 22, 69, 55, 0, // Skip to: 25528 4195/* 11379 */ MCD::OPC_Decode, 200, 7, 146, 1, // Opcode: MVE_VHSUB_qr_u16 4196/* 11384 */ MCD::OPC_FilterValue, 2, 59, 55, 0, // Skip to: 25528 4197/* 11389 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4198/* 11392 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11407 4199/* 11397 */ MCD::OPC_CheckPredicate, 22, 46, 55, 0, // Skip to: 25528 4200/* 11402 */ MCD::OPC_Decode, 142, 11, 146, 1, // Opcode: MVE_VQSUB_qr_s16 4201/* 11407 */ MCD::OPC_FilterValue, 15, 36, 55, 0, // Skip to: 25528 4202/* 11412 */ MCD::OPC_CheckPredicate, 22, 31, 55, 0, // Skip to: 25528 4203/* 11417 */ MCD::OPC_Decode, 145, 11, 146, 1, // Opcode: MVE_VQSUB_qr_u16 4204/* 11422 */ MCD::OPC_FilterValue, 1, 21, 55, 0, // Skip to: 25528 4205/* 11427 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4206/* 11430 */ MCD::OPC_FilterValue, 14, 50, 0, 0, // Skip to: 11485 4207/* 11435 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4208/* 11438 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 11453 4209/* 11443 */ MCD::OPC_CheckPredicate, 22, 0, 55, 0, // Skip to: 25528 4210/* 11448 */ MCD::OPC_Decode, 209, 12, 146, 1, // Opcode: MVE_VSUB_qr_i16 4211/* 11453 */ MCD::OPC_FilterValue, 2, 246, 54, 0, // Skip to: 25528 4212/* 11458 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 11475 4213/* 11463 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 11475 4214/* 11470 */ MCD::OPC_Decode, 164, 7, 160, 1, // Opcode: MVE_VDDUPu16 4215/* 11475 */ MCD::OPC_CheckPredicate, 22, 224, 54, 0, // Skip to: 25528 4216/* 11480 */ MCD::OPC_Decode, 170, 7, 161, 1, // Opcode: MVE_VDWDUPu16 4217/* 11485 */ MCD::OPC_FilterValue, 15, 214, 54, 0, // Skip to: 25528 4218/* 11490 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4219/* 11493 */ MCD::OPC_FilterValue, 0, 206, 54, 0, // Skip to: 25528 4220/* 11498 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11522 4221/* 11503 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11522 4222/* 11510 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11522 4223/* 11517 */ MCD::OPC_Decode, 239, 6, 164, 1, // Opcode: MVE_VCMPs16r 4224/* 11522 */ MCD::OPC_CheckPredicate, 22, 177, 54, 0, // Skip to: 25528 4225/* 11527 */ MCD::OPC_Decode, 252, 9, 165, 1, // Opcode: MVE_VPTv8s16r 4226/* 11532 */ MCD::OPC_FilterValue, 2, 197, 2, 0, // Skip to: 12246 4227/* 11537 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 4228/* 11540 */ MCD::OPC_FilterValue, 0, 250, 0, 0, // Skip to: 11795 4229/* 11545 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4230/* 11548 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 11614 4231/* 11553 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4232/* 11556 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 11585 4233/* 11561 */ MCD::OPC_CheckPredicate, 22, 138, 54, 0, // Skip to: 25528 4234/* 11566 */ MCD::OPC_CheckField, 4, 1, 0, 131, 54, 0, // Skip to: 25528 4235/* 11573 */ MCD::OPC_CheckField, 0, 1, 0, 124, 54, 0, // Skip to: 25528 4236/* 11580 */ MCD::OPC_Decode, 195, 7, 151, 1, // Opcode: MVE_VHCADDs32 4237/* 11585 */ MCD::OPC_FilterValue, 15, 114, 54, 0, // Skip to: 25528 4238/* 11590 */ MCD::OPC_CheckPredicate, 22, 109, 54, 0, // Skip to: 25528 4239/* 11595 */ MCD::OPC_CheckField, 4, 1, 0, 102, 54, 0, // Skip to: 25528 4240/* 11602 */ MCD::OPC_CheckField, 0, 1, 0, 95, 54, 0, // Skip to: 25528 4241/* 11609 */ MCD::OPC_Decode, 218, 6, 151, 1, // Opcode: MVE_VCADDi32 4242/* 11614 */ MCD::OPC_FilterValue, 1, 85, 54, 0, // Skip to: 25528 4243/* 11619 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4244/* 11622 */ MCD::OPC_FilterValue, 0, 113, 0, 0, // Skip to: 11740 4245/* 11627 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 4246/* 11630 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 11685 4247/* 11635 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4248/* 11638 */ MCD::OPC_FilterValue, 0, 61, 54, 0, // Skip to: 25528 4249/* 11643 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4250/* 11646 */ MCD::OPC_FilterValue, 15, 53, 54, 0, // Skip to: 25528 4251/* 11651 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11675 4252/* 11656 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11675 4253/* 11663 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11675 4254/* 11670 */ MCD::OPC_Decode, 234, 6, 152, 1, // Opcode: MVE_VCMPi32 4255/* 11675 */ MCD::OPC_CheckPredicate, 22, 24, 54, 0, // Skip to: 25528 4256/* 11680 */ MCD::OPC_Decode, 241, 9, 153, 1, // Opcode: MVE_VPTv4i32 4257/* 11685 */ MCD::OPC_FilterValue, 1, 14, 54, 0, // Skip to: 25528 4258/* 11690 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4259/* 11693 */ MCD::OPC_FilterValue, 0, 6, 54, 0, // Skip to: 25528 4260/* 11698 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4261/* 11701 */ MCD::OPC_FilterValue, 15, 254, 53, 0, // Skip to: 25528 4262/* 11706 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11730 4263/* 11711 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11730 4264/* 11718 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11730 4265/* 11725 */ MCD::OPC_Decode, 246, 6, 154, 1, // Opcode: MVE_VCMPu32 4266/* 11730 */ MCD::OPC_CheckPredicate, 22, 225, 53, 0, // Skip to: 25528 4267/* 11735 */ MCD::OPC_Decode, 245, 9, 155, 1, // Opcode: MVE_VPTv4u32 4268/* 11740 */ MCD::OPC_FilterValue, 1, 215, 53, 0, // Skip to: 25528 4269/* 11745 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4270/* 11748 */ MCD::OPC_FilterValue, 0, 207, 53, 0, // Skip to: 25528 4271/* 11753 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4272/* 11756 */ MCD::OPC_FilterValue, 15, 199, 53, 0, // Skip to: 25528 4273/* 11761 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11785 4274/* 11766 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11785 4275/* 11773 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11785 4276/* 11780 */ MCD::OPC_Decode, 240, 6, 156, 1, // Opcode: MVE_VCMPs32 4277/* 11785 */ MCD::OPC_CheckPredicate, 22, 170, 53, 0, // Skip to: 25528 4278/* 11790 */ MCD::OPC_Decode, 243, 9, 157, 1, // Opcode: MVE_VPTv4s32 4279/* 11795 */ MCD::OPC_FilterValue, 1, 160, 53, 0, // Skip to: 25528 4280/* 11800 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4281/* 11803 */ MCD::OPC_FilterValue, 0, 236, 0, 0, // Skip to: 12044 4282/* 11808 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4283/* 11811 */ MCD::OPC_FilterValue, 0, 103, 0, 0, // Skip to: 11919 4284/* 11816 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4285/* 11819 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 11857 4286/* 11824 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4287/* 11827 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11842 4288/* 11832 */ MCD::OPC_CheckPredicate, 22, 123, 53, 0, // Skip to: 25528 4289/* 11837 */ MCD::OPC_Decode, 183, 7, 146, 1, // Opcode: MVE_VHADD_qr_s32 4290/* 11842 */ MCD::OPC_FilterValue, 15, 113, 53, 0, // Skip to: 25528 4291/* 11847 */ MCD::OPC_CheckPredicate, 22, 108, 53, 0, // Skip to: 25528 4292/* 11852 */ MCD::OPC_Decode, 186, 7, 146, 1, // Opcode: MVE_VHADD_qr_u32 4293/* 11857 */ MCD::OPC_FilterValue, 1, 98, 53, 0, // Skip to: 25528 4294/* 11862 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4295/* 11865 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11880 4296/* 11870 */ MCD::OPC_CheckPredicate, 22, 85, 53, 0, // Skip to: 25528 4297/* 11875 */ MCD::OPC_Decode, 197, 6, 146, 1, // Opcode: MVE_VADD_qr_i32 4298/* 11880 */ MCD::OPC_FilterValue, 15, 75, 53, 0, // Skip to: 25528 4299/* 11885 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 11909 4300/* 11890 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 11909 4301/* 11897 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 11909 4302/* 11904 */ MCD::OPC_Decode, 235, 6, 158, 1, // Opcode: MVE_VCMPi32r 4303/* 11909 */ MCD::OPC_CheckPredicate, 22, 46, 53, 0, // Skip to: 25528 4304/* 11914 */ MCD::OPC_Decode, 242, 9, 159, 1, // Opcode: MVE_VPTv4i32r 4305/* 11919 */ MCD::OPC_FilterValue, 2, 36, 53, 0, // Skip to: 25528 4306/* 11924 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4307/* 11927 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 11965 4308/* 11932 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4309/* 11935 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 11950 4310/* 11940 */ MCD::OPC_CheckPredicate, 22, 15, 53, 0, // Skip to: 25528 4311/* 11945 */ MCD::OPC_Decode, 131, 10, 146, 1, // Opcode: MVE_VQADD_qr_s32 4312/* 11950 */ MCD::OPC_FilterValue, 15, 5, 53, 0, // Skip to: 25528 4313/* 11955 */ MCD::OPC_CheckPredicate, 22, 0, 53, 0, // Skip to: 25528 4314/* 11960 */ MCD::OPC_Decode, 134, 10, 146, 1, // Opcode: MVE_VQADD_qr_u32 4315/* 11965 */ MCD::OPC_FilterValue, 1, 246, 52, 0, // Skip to: 25528 4316/* 11970 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4317/* 11973 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 12005 4318/* 11978 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 11995 4319/* 11983 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 11995 4320/* 11990 */ MCD::OPC_Decode, 210, 7, 160, 1, // Opcode: MVE_VIDUPu32 4321/* 11995 */ MCD::OPC_CheckPredicate, 22, 216, 52, 0, // Skip to: 25528 4322/* 12000 */ MCD::OPC_Decode, 213, 7, 161, 1, // Opcode: MVE_VIWDUPu32 4323/* 12005 */ MCD::OPC_FilterValue, 15, 206, 52, 0, // Skip to: 25528 4324/* 12010 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 12034 4325/* 12015 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12034 4326/* 12022 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12034 4327/* 12029 */ MCD::OPC_Decode, 247, 6, 162, 1, // Opcode: MVE_VCMPu32r 4328/* 12034 */ MCD::OPC_CheckPredicate, 22, 177, 52, 0, // Skip to: 25528 4329/* 12039 */ MCD::OPC_Decode, 246, 9, 163, 1, // Opcode: MVE_VPTv4u32r 4330/* 12044 */ MCD::OPC_FilterValue, 1, 167, 52, 0, // Skip to: 25528 4331/* 12049 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4332/* 12052 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 12136 4333/* 12057 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4334/* 12060 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 12098 4335/* 12065 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4336/* 12068 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12083 4337/* 12073 */ MCD::OPC_CheckPredicate, 22, 138, 52, 0, // Skip to: 25528 4338/* 12078 */ MCD::OPC_Decode, 198, 7, 146, 1, // Opcode: MVE_VHSUB_qr_s32 4339/* 12083 */ MCD::OPC_FilterValue, 15, 128, 52, 0, // Skip to: 25528 4340/* 12088 */ MCD::OPC_CheckPredicate, 22, 123, 52, 0, // Skip to: 25528 4341/* 12093 */ MCD::OPC_Decode, 201, 7, 146, 1, // Opcode: MVE_VHSUB_qr_u32 4342/* 12098 */ MCD::OPC_FilterValue, 2, 113, 52, 0, // Skip to: 25528 4343/* 12103 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4344/* 12106 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12121 4345/* 12111 */ MCD::OPC_CheckPredicate, 22, 100, 52, 0, // Skip to: 25528 4346/* 12116 */ MCD::OPC_Decode, 143, 11, 146, 1, // Opcode: MVE_VQSUB_qr_s32 4347/* 12121 */ MCD::OPC_FilterValue, 15, 90, 52, 0, // Skip to: 25528 4348/* 12126 */ MCD::OPC_CheckPredicate, 22, 85, 52, 0, // Skip to: 25528 4349/* 12131 */ MCD::OPC_Decode, 146, 11, 146, 1, // Opcode: MVE_VQSUB_qr_u32 4350/* 12136 */ MCD::OPC_FilterValue, 1, 75, 52, 0, // Skip to: 25528 4351/* 12141 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4352/* 12144 */ MCD::OPC_FilterValue, 14, 50, 0, 0, // Skip to: 12199 4353/* 12149 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4354/* 12152 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12167 4355/* 12157 */ MCD::OPC_CheckPredicate, 22, 54, 52, 0, // Skip to: 25528 4356/* 12162 */ MCD::OPC_Decode, 210, 12, 146, 1, // Opcode: MVE_VSUB_qr_i32 4357/* 12167 */ MCD::OPC_FilterValue, 2, 44, 52, 0, // Skip to: 25528 4358/* 12172 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 12189 4359/* 12177 */ MCD::OPC_CheckField, 1, 3, 7, 5, 0, 0, // Skip to: 12189 4360/* 12184 */ MCD::OPC_Decode, 165, 7, 160, 1, // Opcode: MVE_VDDUPu32 4361/* 12189 */ MCD::OPC_CheckPredicate, 22, 22, 52, 0, // Skip to: 25528 4362/* 12194 */ MCD::OPC_Decode, 171, 7, 161, 1, // Opcode: MVE_VDWDUPu32 4363/* 12199 */ MCD::OPC_FilterValue, 15, 12, 52, 0, // Skip to: 25528 4364/* 12204 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4365/* 12207 */ MCD::OPC_FilterValue, 0, 4, 52, 0, // Skip to: 25528 4366/* 12212 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 12236 4367/* 12217 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12236 4368/* 12224 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12236 4369/* 12231 */ MCD::OPC_Decode, 241, 6, 164, 1, // Opcode: MVE_VCMPs32r 4370/* 12236 */ MCD::OPC_CheckPredicate, 22, 231, 51, 0, // Skip to: 25528 4371/* 12241 */ MCD::OPC_Decode, 244, 9, 165, 1, // Opcode: MVE_VPTv4s32r 4372/* 12246 */ MCD::OPC_FilterValue, 3, 221, 51, 0, // Skip to: 25528 4373/* 12251 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 4374/* 12254 */ MCD::OPC_FilterValue, 0, 105, 1, 0, // Skip to: 12620 4375/* 12259 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4376/* 12262 */ MCD::OPC_FilterValue, 0, 227, 0, 0, // Skip to: 12494 4377/* 12267 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 4378/* 12270 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 12382 4379/* 12275 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4380/* 12278 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 12330 4381/* 12283 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4382/* 12286 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 12308 4383/* 12291 */ MCD::OPC_CheckPredicate, 22, 176, 51, 0, // Skip to: 25528 4384/* 12296 */ MCD::OPC_CheckField, 4, 1, 0, 169, 51, 0, // Skip to: 25528 4385/* 12303 */ MCD::OPC_Decode, 176, 6, 166, 1, // Opcode: MVE_VADC 4386/* 12308 */ MCD::OPC_FilterValue, 15, 159, 51, 0, // Skip to: 25528 4387/* 12313 */ MCD::OPC_CheckPredicate, 22, 154, 51, 0, // Skip to: 25528 4388/* 12318 */ MCD::OPC_CheckField, 4, 1, 0, 147, 51, 0, // Skip to: 25528 4389/* 12325 */ MCD::OPC_Decode, 216, 11, 166, 1, // Opcode: MVE_VSBC 4390/* 12330 */ MCD::OPC_FilterValue, 1, 137, 51, 0, // Skip to: 25528 4391/* 12335 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4392/* 12338 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 12360 4393/* 12343 */ MCD::OPC_CheckPredicate, 22, 124, 51, 0, // Skip to: 25528 4394/* 12348 */ MCD::OPC_CheckField, 4, 1, 0, 117, 51, 0, // Skip to: 25528 4395/* 12355 */ MCD::OPC_Decode, 177, 6, 166, 1, // Opcode: MVE_VADCI 4396/* 12360 */ MCD::OPC_FilterValue, 15, 107, 51, 0, // Skip to: 25528 4397/* 12365 */ MCD::OPC_CheckPredicate, 22, 102, 51, 0, // Skip to: 25528 4398/* 12370 */ MCD::OPC_CheckField, 4, 1, 0, 95, 51, 0, // Skip to: 25528 4399/* 12377 */ MCD::OPC_Decode, 217, 11, 166, 1, // Opcode: MVE_VSBCI 4400/* 12382 */ MCD::OPC_FilterValue, 1, 85, 51, 0, // Skip to: 25528 4401/* 12387 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4402/* 12390 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 12442 4403/* 12395 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4404/* 12398 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 12420 4405/* 12403 */ MCD::OPC_CheckPredicate, 22, 64, 51, 0, // Skip to: 25528 4406/* 12408 */ MCD::OPC_CheckField, 4, 1, 0, 57, 51, 0, // Skip to: 25528 4407/* 12415 */ MCD::OPC_Decode, 170, 10, 144, 1, // Opcode: MVE_VQDMULLs16bh 4408/* 12420 */ MCD::OPC_FilterValue, 15, 47, 51, 0, // Skip to: 25528 4409/* 12425 */ MCD::OPC_CheckPredicate, 22, 42, 51, 0, // Skip to: 25528 4410/* 12430 */ MCD::OPC_CheckField, 4, 1, 0, 35, 51, 0, // Skip to: 25528 4411/* 12437 */ MCD::OPC_Decode, 172, 10, 144, 1, // Opcode: MVE_VQDMULLs32bh 4412/* 12442 */ MCD::OPC_FilterValue, 1, 25, 51, 0, // Skip to: 25528 4413/* 12447 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4414/* 12450 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 12472 4415/* 12455 */ MCD::OPC_CheckPredicate, 22, 12, 51, 0, // Skip to: 25528 4416/* 12460 */ MCD::OPC_CheckField, 4, 1, 0, 5, 51, 0, // Skip to: 25528 4417/* 12467 */ MCD::OPC_Decode, 171, 10, 144, 1, // Opcode: MVE_VQDMULLs16th 4418/* 12472 */ MCD::OPC_FilterValue, 15, 251, 50, 0, // Skip to: 25528 4419/* 12477 */ MCD::OPC_CheckPredicate, 22, 246, 50, 0, // Skip to: 25528 4420/* 12482 */ MCD::OPC_CheckField, 4, 1, 0, 239, 50, 0, // Skip to: 25528 4421/* 12489 */ MCD::OPC_Decode, 173, 10, 144, 1, // Opcode: MVE_VQDMULLs32th 4422/* 12494 */ MCD::OPC_FilterValue, 1, 229, 50, 0, // Skip to: 25528 4423/* 12499 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4424/* 12502 */ MCD::OPC_FilterValue, 14, 42, 0, 0, // Skip to: 12549 4425/* 12507 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4426/* 12510 */ MCD::OPC_FilterValue, 0, 213, 50, 0, // Skip to: 25528 4427/* 12515 */ MCD::OPC_CheckPredicate, 24, 19, 0, 0, // Skip to: 12539 4428/* 12520 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12539 4429/* 12527 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12539 4430/* 12534 */ MCD::OPC_Decode, 230, 6, 167, 1, // Opcode: MVE_VCMPf32 4431/* 12539 */ MCD::OPC_CheckPredicate, 24, 184, 50, 0, // Skip to: 25528 4432/* 12544 */ MCD::OPC_Decode, 239, 9, 168, 1, // Opcode: MVE_VPTv4f32 4433/* 12549 */ MCD::OPC_FilterValue, 15, 174, 50, 0, // Skip to: 25528 4434/* 12554 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4435/* 12557 */ MCD::OPC_FilterValue, 0, 166, 50, 0, // Skip to: 25528 4436/* 12562 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 12586 4437/* 12567 */ MCD::OPC_CheckField, 12, 1, 0, 12, 0, 0, // Skip to: 12586 4438/* 12574 */ MCD::OPC_CheckField, 0, 1, 1, 5, 0, 0, // Skip to: 12586 4439/* 12581 */ MCD::OPC_Decode, 231, 9, 169, 1, // Opcode: MVE_VPSEL 4440/* 12586 */ MCD::OPC_CheckPredicate, 24, 19, 0, 0, // Skip to: 12610 4441/* 12591 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12610 4442/* 12598 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12610 4443/* 12605 */ MCD::OPC_Decode, 228, 6, 167, 1, // Opcode: MVE_VCMPf16 4444/* 12610 */ MCD::OPC_CheckPredicate, 24, 113, 50, 0, // Skip to: 25528 4445/* 12615 */ MCD::OPC_Decode, 247, 9, 168, 1, // Opcode: MVE_VPTv8f16 4446/* 12620 */ MCD::OPC_FilterValue, 1, 103, 50, 0, // Skip to: 25528 4447/* 12625 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4448/* 12628 */ MCD::OPC_FilterValue, 0, 171, 0, 0, // Skip to: 12804 4449/* 12633 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4450/* 12636 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 12720 4451/* 12641 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4452/* 12644 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 12682 4453/* 12649 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4454/* 12652 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12667 4455/* 12657 */ MCD::OPC_CheckPredicate, 24, 66, 50, 0, // Skip to: 25528 4456/* 12662 */ MCD::OPC_Decode, 195, 6, 146, 1, // Opcode: MVE_VADD_qr_f32 4457/* 12667 */ MCD::OPC_FilterValue, 15, 56, 50, 0, // Skip to: 25528 4458/* 12672 */ MCD::OPC_CheckPredicate, 24, 51, 50, 0, // Skip to: 25528 4459/* 12677 */ MCD::OPC_Decode, 194, 6, 146, 1, // Opcode: MVE_VADD_qr_f16 4460/* 12682 */ MCD::OPC_FilterValue, 1, 41, 50, 0, // Skip to: 25528 4461/* 12687 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4462/* 12690 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12705 4463/* 12695 */ MCD::OPC_CheckPredicate, 24, 28, 50, 0, // Skip to: 25528 4464/* 12700 */ MCD::OPC_Decode, 208, 12, 146, 1, // Opcode: MVE_VSUB_qr_f32 4465/* 12705 */ MCD::OPC_FilterValue, 15, 18, 50, 0, // Skip to: 25528 4466/* 12710 */ MCD::OPC_CheckPredicate, 24, 13, 50, 0, // Skip to: 25528 4467/* 12715 */ MCD::OPC_Decode, 207, 12, 146, 1, // Opcode: MVE_VSUB_qr_f16 4468/* 12720 */ MCD::OPC_FilterValue, 2, 3, 50, 0, // Skip to: 25528 4469/* 12725 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4470/* 12728 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 12766 4471/* 12733 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4472/* 12736 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12751 4473/* 12741 */ MCD::OPC_CheckPredicate, 22, 238, 49, 0, // Skip to: 25528 4474/* 12746 */ MCD::OPC_Decode, 166, 10, 146, 1, // Opcode: MVE_VQDMULL_qr_s16bh 4475/* 12751 */ MCD::OPC_FilterValue, 15, 228, 49, 0, // Skip to: 25528 4476/* 12756 */ MCD::OPC_CheckPredicate, 22, 223, 49, 0, // Skip to: 25528 4477/* 12761 */ MCD::OPC_Decode, 168, 10, 146, 1, // Opcode: MVE_VQDMULL_qr_s32bh 4478/* 12766 */ MCD::OPC_FilterValue, 1, 213, 49, 0, // Skip to: 25528 4479/* 12771 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4480/* 12774 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 12789 4481/* 12779 */ MCD::OPC_CheckPredicate, 22, 200, 49, 0, // Skip to: 25528 4482/* 12784 */ MCD::OPC_Decode, 167, 10, 146, 1, // Opcode: MVE_VQDMULL_qr_s16th 4483/* 12789 */ MCD::OPC_FilterValue, 15, 190, 49, 0, // Skip to: 25528 4484/* 12794 */ MCD::OPC_CheckPredicate, 22, 185, 49, 0, // Skip to: 25528 4485/* 12799 */ MCD::OPC_Decode, 169, 10, 146, 1, // Opcode: MVE_VQDMULL_qr_s32th 4486/* 12804 */ MCD::OPC_FilterValue, 1, 175, 49, 0, // Skip to: 25528 4487/* 12809 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4488/* 12812 */ MCD::OPC_FilterValue, 14, 42, 0, 0, // Skip to: 12859 4489/* 12817 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4490/* 12820 */ MCD::OPC_FilterValue, 0, 159, 49, 0, // Skip to: 25528 4491/* 12825 */ MCD::OPC_CheckPredicate, 24, 19, 0, 0, // Skip to: 12849 4492/* 12830 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12849 4493/* 12837 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12849 4494/* 12844 */ MCD::OPC_Decode, 231, 6, 170, 1, // Opcode: MVE_VCMPf32r 4495/* 12849 */ MCD::OPC_CheckPredicate, 24, 130, 49, 0, // Skip to: 25528 4496/* 12854 */ MCD::OPC_Decode, 240, 9, 171, 1, // Opcode: MVE_VPTv4f32r 4497/* 12859 */ MCD::OPC_FilterValue, 15, 120, 49, 0, // Skip to: 25528 4498/* 12864 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 4499/* 12867 */ MCD::OPC_FilterValue, 0, 112, 49, 0, // Skip to: 25528 4500/* 12872 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 4501/* 12875 */ MCD::OPC_FilterValue, 13, 50, 0, 0, // Skip to: 12930 4502/* 12880 */ MCD::OPC_CheckPredicate, 22, 24, 0, 0, // Skip to: 12909 4503/* 12885 */ MCD::OPC_CheckField, 22, 1, 0, 17, 0, 0, // Skip to: 12909 4504/* 12892 */ MCD::OPC_CheckField, 13, 3, 0, 10, 0, 0, // Skip to: 12909 4505/* 12899 */ MCD::OPC_SoftFail, 160, 161, 56 /* 0xe10a0 */, 0, 4506/* 12904 */ MCD::OPC_Decode, 230, 9, 172, 1, // Opcode: MVE_VPNOT 4507/* 12909 */ MCD::OPC_CheckPredicate, 22, 16, 0, 0, // Skip to: 12930 4508/* 12914 */ MCD::OPC_CheckField, 17, 3, 0, 9, 0, 0, // Skip to: 12930 4509/* 12921 */ MCD::OPC_SoftFail, 160, 33 /* 0x10a0 */, 0, 4510/* 12925 */ MCD::OPC_Decode, 232, 9, 173, 1, // Opcode: MVE_VPST 4511/* 12930 */ MCD::OPC_CheckPredicate, 24, 19, 0, 0, // Skip to: 12954 4512/* 12935 */ MCD::OPC_CheckField, 22, 1, 0, 12, 0, 0, // Skip to: 12954 4513/* 12942 */ MCD::OPC_CheckField, 13, 3, 0, 5, 0, 0, // Skip to: 12954 4514/* 12949 */ MCD::OPC_Decode, 229, 6, 170, 1, // Opcode: MVE_VCMPf16r 4515/* 12954 */ MCD::OPC_CheckPredicate, 24, 25, 49, 0, // Skip to: 25528 4516/* 12959 */ MCD::OPC_Decode, 248, 9, 171, 1, // Opcode: MVE_VPTv8f16r 4517/* 12964 */ MCD::OPC_FilterValue, 1, 119, 16, 0, // Skip to: 17184 4518/* 12969 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 4519/* 12972 */ MCD::OPC_FilterValue, 11, 179, 0, 0, // Skip to: 13156 4520/* 12977 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 4521/* 12980 */ MCD::OPC_FilterValue, 0, 105, 0, 0, // Skip to: 13090 4522/* 12985 */ MCD::OPC_ExtractField, 0, 7, // Inst{6-0} ... 4523/* 12988 */ MCD::OPC_FilterValue, 16, 61, 0, 0, // Skip to: 13054 4524/* 12993 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... 4525/* 12996 */ MCD::OPC_FilterValue, 1, 24, 0, 0, // Skip to: 13025 4526/* 13001 */ MCD::OPC_CheckPredicate, 22, 234, 48, 0, // Skip to: 25528 4527/* 13006 */ MCD::OPC_CheckField, 28, 4, 14, 227, 48, 0, // Skip to: 25528 4528/* 13013 */ MCD::OPC_CheckField, 16, 1, 0, 220, 48, 0, // Skip to: 25528 4529/* 13020 */ MCD::OPC_Decode, 168, 7, 174, 1, // Opcode: MVE_VDUP32 4530/* 13025 */ MCD::OPC_FilterValue, 3, 210, 48, 0, // Skip to: 25528 4531/* 13030 */ MCD::OPC_CheckPredicate, 22, 205, 48, 0, // Skip to: 25528 4532/* 13035 */ MCD::OPC_CheckField, 28, 4, 14, 198, 48, 0, // Skip to: 25528 4533/* 13042 */ MCD::OPC_CheckField, 16, 1, 0, 191, 48, 0, // Skip to: 25528 4534/* 13049 */ MCD::OPC_Decode, 169, 7, 174, 1, // Opcode: MVE_VDUP8 4535/* 13054 */ MCD::OPC_FilterValue, 48, 181, 48, 0, // Skip to: 25528 4536/* 13059 */ MCD::OPC_CheckPredicate, 22, 176, 48, 0, // Skip to: 25528 4537/* 13064 */ MCD::OPC_CheckField, 28, 4, 14, 169, 48, 0, // Skip to: 25528 4538/* 13071 */ MCD::OPC_CheckField, 21, 2, 1, 162, 48, 0, // Skip to: 25528 4539/* 13078 */ MCD::OPC_CheckField, 16, 1, 0, 155, 48, 0, // Skip to: 25528 4540/* 13085 */ MCD::OPC_Decode, 167, 7, 174, 1, // Opcode: MVE_VDUP16 4541/* 13090 */ MCD::OPC_FilterValue, 1, 145, 48, 0, // Skip to: 25528 4542/* 13095 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 4543/* 13098 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 13127 4544/* 13103 */ MCD::OPC_CheckPredicate, 23, 132, 48, 0, // Skip to: 25528 4545/* 13108 */ MCD::OPC_CheckField, 28, 4, 14, 125, 48, 0, // Skip to: 25528 4546/* 13115 */ MCD::OPC_CheckField, 0, 6, 48, 118, 48, 0, // Skip to: 25528 4547/* 13122 */ MCD::OPC_Decode, 170, 9, 141, 1, // Opcode: MVE_VMOV_from_lane_u16 4548/* 13127 */ MCD::OPC_FilterValue, 1, 108, 48, 0, // Skip to: 25528 4549/* 13132 */ MCD::OPC_CheckPredicate, 23, 103, 48, 0, // Skip to: 25528 4550/* 13137 */ MCD::OPC_CheckField, 28, 4, 14, 96, 48, 0, // Skip to: 25528 4551/* 13144 */ MCD::OPC_CheckField, 0, 5, 16, 89, 48, 0, // Skip to: 25528 4552/* 13151 */ MCD::OPC_Decode, 171, 9, 142, 1, // Opcode: MVE_VMOV_from_lane_u8 4553/* 13156 */ MCD::OPC_FilterValue, 14, 243, 3, 0, // Skip to: 14172 4554/* 13161 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 4555/* 13164 */ MCD::OPC_FilterValue, 0, 243, 1, 0, // Skip to: 13668 4556/* 13169 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 4557/* 13172 */ MCD::OPC_FilterValue, 0, 243, 0, 0, // Skip to: 13420 4558/* 13177 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4559/* 13180 */ MCD::OPC_FilterValue, 0, 147, 0, 0, // Skip to: 13332 4560/* 13185 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4561/* 13188 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 13260 4562/* 13193 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4563/* 13196 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13228 4564/* 13201 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13218 4565/* 13206 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13218 4566/* 13213 */ MCD::OPC_Decode, 230, 8, 175, 1, // Opcode: MVE_VMLADAVs16 4567/* 13218 */ MCD::OPC_CheckPredicate, 22, 17, 48, 0, // Skip to: 25528 4568/* 13223 */ MCD::OPC_Decode, 245, 8, 176, 1, // Opcode: MVE_VMLALDAVs16 4569/* 13228 */ MCD::OPC_FilterValue, 15, 7, 48, 0, // Skip to: 25528 4570/* 13233 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13250 4571/* 13238 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13250 4572/* 13245 */ MCD::OPC_Decode, 233, 8, 175, 1, // Opcode: MVE_VMLADAVu16 4573/* 13250 */ MCD::OPC_CheckPredicate, 22, 241, 47, 0, // Skip to: 25528 4574/* 13255 */ MCD::OPC_Decode, 247, 8, 176, 1, // Opcode: MVE_VMLALDAVu16 4575/* 13260 */ MCD::OPC_FilterValue, 1, 231, 47, 0, // Skip to: 25528 4576/* 13265 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4577/* 13268 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13300 4578/* 13273 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13290 4579/* 13278 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13290 4580/* 13285 */ MCD::OPC_Decode, 231, 8, 175, 1, // Opcode: MVE_VMLADAVs32 4581/* 13290 */ MCD::OPC_CheckPredicate, 22, 201, 47, 0, // Skip to: 25528 4582/* 13295 */ MCD::OPC_Decode, 246, 8, 176, 1, // Opcode: MVE_VMLALDAVs32 4583/* 13300 */ MCD::OPC_FilterValue, 15, 191, 47, 0, // Skip to: 25528 4584/* 13305 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13322 4585/* 13310 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13322 4586/* 13317 */ MCD::OPC_Decode, 234, 8, 175, 1, // Opcode: MVE_VMLADAVu32 4587/* 13322 */ MCD::OPC_CheckPredicate, 22, 169, 47, 0, // Skip to: 25528 4588/* 13327 */ MCD::OPC_Decode, 248, 8, 176, 1, // Opcode: MVE_VMLALDAVu32 4589/* 13332 */ MCD::OPC_FilterValue, 1, 159, 47, 0, // Skip to: 25528 4590/* 13337 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4591/* 13340 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 13380 4592/* 13345 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4593/* 13348 */ MCD::OPC_FilterValue, 14, 143, 47, 0, // Skip to: 25528 4594/* 13353 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13370 4595/* 13358 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13370 4596/* 13365 */ MCD::OPC_Decode, 236, 8, 175, 1, // Opcode: MVE_VMLADAVxs16 4597/* 13370 */ MCD::OPC_CheckPredicate, 22, 121, 47, 0, // Skip to: 25528 4598/* 13375 */ MCD::OPC_Decode, 249, 8, 176, 1, // Opcode: MVE_VMLALDAVxs16 4599/* 13380 */ MCD::OPC_FilterValue, 1, 111, 47, 0, // Skip to: 25528 4600/* 13385 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4601/* 13388 */ MCD::OPC_FilterValue, 14, 103, 47, 0, // Skip to: 25528 4602/* 13393 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13410 4603/* 13398 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13410 4604/* 13405 */ MCD::OPC_Decode, 237, 8, 175, 1, // Opcode: MVE_VMLADAVxs32 4605/* 13410 */ MCD::OPC_CheckPredicate, 22, 81, 47, 0, // Skip to: 25528 4606/* 13415 */ MCD::OPC_Decode, 250, 8, 176, 1, // Opcode: MVE_VMLALDAVxs32 4607/* 13420 */ MCD::OPC_FilterValue, 2, 71, 47, 0, // Skip to: 25528 4608/* 13425 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4609/* 13428 */ MCD::OPC_FilterValue, 0, 147, 0, 0, // Skip to: 13580 4610/* 13433 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4611/* 13436 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 13508 4612/* 13441 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4613/* 13444 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13476 4614/* 13449 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13466 4615/* 13454 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13466 4616/* 13461 */ MCD::OPC_Decode, 221, 8, 177, 1, // Opcode: MVE_VMLADAVas16 4617/* 13466 */ MCD::OPC_CheckPredicate, 22, 25, 47, 0, // Skip to: 25528 4618/* 13471 */ MCD::OPC_Decode, 239, 8, 178, 1, // Opcode: MVE_VMLALDAVas16 4619/* 13476 */ MCD::OPC_FilterValue, 15, 15, 47, 0, // Skip to: 25528 4620/* 13481 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13498 4621/* 13486 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13498 4622/* 13493 */ MCD::OPC_Decode, 224, 8, 177, 1, // Opcode: MVE_VMLADAVau16 4623/* 13498 */ MCD::OPC_CheckPredicate, 22, 249, 46, 0, // Skip to: 25528 4624/* 13503 */ MCD::OPC_Decode, 241, 8, 178, 1, // Opcode: MVE_VMLALDAVau16 4625/* 13508 */ MCD::OPC_FilterValue, 1, 239, 46, 0, // Skip to: 25528 4626/* 13513 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4627/* 13516 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13548 4628/* 13521 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13538 4629/* 13526 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13538 4630/* 13533 */ MCD::OPC_Decode, 222, 8, 177, 1, // Opcode: MVE_VMLADAVas32 4631/* 13538 */ MCD::OPC_CheckPredicate, 22, 209, 46, 0, // Skip to: 25528 4632/* 13543 */ MCD::OPC_Decode, 240, 8, 178, 1, // Opcode: MVE_VMLALDAVas32 4633/* 13548 */ MCD::OPC_FilterValue, 15, 199, 46, 0, // Skip to: 25528 4634/* 13553 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13570 4635/* 13558 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13570 4636/* 13565 */ MCD::OPC_Decode, 225, 8, 177, 1, // Opcode: MVE_VMLADAVau32 4637/* 13570 */ MCD::OPC_CheckPredicate, 22, 177, 46, 0, // Skip to: 25528 4638/* 13575 */ MCD::OPC_Decode, 242, 8, 178, 1, // Opcode: MVE_VMLALDAVau32 4639/* 13580 */ MCD::OPC_FilterValue, 1, 167, 46, 0, // Skip to: 25528 4640/* 13585 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4641/* 13588 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 13628 4642/* 13593 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4643/* 13596 */ MCD::OPC_FilterValue, 14, 151, 46, 0, // Skip to: 25528 4644/* 13601 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13618 4645/* 13606 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13618 4646/* 13613 */ MCD::OPC_Decode, 227, 8, 177, 1, // Opcode: MVE_VMLADAVaxs16 4647/* 13618 */ MCD::OPC_CheckPredicate, 22, 129, 46, 0, // Skip to: 25528 4648/* 13623 */ MCD::OPC_Decode, 243, 8, 178, 1, // Opcode: MVE_VMLALDAVaxs16 4649/* 13628 */ MCD::OPC_FilterValue, 1, 119, 46, 0, // Skip to: 25528 4650/* 13633 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4651/* 13636 */ MCD::OPC_FilterValue, 14, 111, 46, 0, // Skip to: 25528 4652/* 13641 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13658 4653/* 13646 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13658 4654/* 13653 */ MCD::OPC_Decode, 228, 8, 177, 1, // Opcode: MVE_VMLADAVaxs32 4655/* 13658 */ MCD::OPC_CheckPredicate, 22, 89, 46, 0, // Skip to: 25528 4656/* 13663 */ MCD::OPC_Decode, 244, 8, 178, 1, // Opcode: MVE_VMLALDAVaxs32 4657/* 13668 */ MCD::OPC_FilterValue, 1, 79, 46, 0, // Skip to: 25528 4658/* 13673 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 4659/* 13676 */ MCD::OPC_FilterValue, 0, 243, 0, 0, // Skip to: 13924 4660/* 13681 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4661/* 13684 */ MCD::OPC_FilterValue, 0, 115, 0, 0, // Skip to: 13804 4662/* 13689 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4663/* 13692 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 13764 4664/* 13697 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4665/* 13700 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13732 4666/* 13705 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13722 4667/* 13710 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13722 4668/* 13717 */ MCD::OPC_Decode, 141, 9, 175, 1, // Opcode: MVE_VMLSDAVs16 4669/* 13722 */ MCD::OPC_CheckPredicate, 22, 25, 46, 0, // Skip to: 25528 4670/* 13727 */ MCD::OPC_Decode, 151, 9, 176, 1, // Opcode: MVE_VMLSLDAVs16 4671/* 13732 */ MCD::OPC_FilterValue, 15, 15, 46, 0, // Skip to: 25528 4672/* 13737 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13754 4673/* 13742 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13754 4674/* 13749 */ MCD::OPC_Decode, 143, 9, 175, 1, // Opcode: MVE_VMLSDAVs8 4675/* 13754 */ MCD::OPC_CheckPredicate, 22, 249, 45, 0, // Skip to: 25528 4676/* 13759 */ MCD::OPC_Decode, 186, 11, 176, 1, // Opcode: MVE_VRMLSLDAVHs32 4677/* 13764 */ MCD::OPC_FilterValue, 1, 239, 45, 0, // Skip to: 25528 4678/* 13769 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4679/* 13772 */ MCD::OPC_FilterValue, 14, 231, 45, 0, // Skip to: 25528 4680/* 13777 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13794 4681/* 13782 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13794 4682/* 13789 */ MCD::OPC_Decode, 142, 9, 175, 1, // Opcode: MVE_VMLSDAVs32 4683/* 13794 */ MCD::OPC_CheckPredicate, 22, 209, 45, 0, // Skip to: 25528 4684/* 13799 */ MCD::OPC_Decode, 152, 9, 176, 1, // Opcode: MVE_VMLSLDAVs32 4685/* 13804 */ MCD::OPC_FilterValue, 1, 199, 45, 0, // Skip to: 25528 4686/* 13809 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4687/* 13812 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 13884 4688/* 13817 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4689/* 13820 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13852 4690/* 13825 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13842 4691/* 13830 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13842 4692/* 13837 */ MCD::OPC_Decode, 144, 9, 175, 1, // Opcode: MVE_VMLSDAVxs16 4693/* 13842 */ MCD::OPC_CheckPredicate, 22, 161, 45, 0, // Skip to: 25528 4694/* 13847 */ MCD::OPC_Decode, 153, 9, 176, 1, // Opcode: MVE_VMLSLDAVxs16 4695/* 13852 */ MCD::OPC_FilterValue, 15, 151, 45, 0, // Skip to: 25528 4696/* 13857 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13874 4697/* 13862 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13874 4698/* 13869 */ MCD::OPC_Decode, 146, 9, 175, 1, // Opcode: MVE_VMLSDAVxs8 4699/* 13874 */ MCD::OPC_CheckPredicate, 22, 129, 45, 0, // Skip to: 25528 4700/* 13879 */ MCD::OPC_Decode, 187, 11, 176, 1, // Opcode: MVE_VRMLSLDAVHxs32 4701/* 13884 */ MCD::OPC_FilterValue, 1, 119, 45, 0, // Skip to: 25528 4702/* 13889 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4703/* 13892 */ MCD::OPC_FilterValue, 14, 111, 45, 0, // Skip to: 25528 4704/* 13897 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13914 4705/* 13902 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13914 4706/* 13909 */ MCD::OPC_Decode, 145, 9, 175, 1, // Opcode: MVE_VMLSDAVxs32 4707/* 13914 */ MCD::OPC_CheckPredicate, 22, 89, 45, 0, // Skip to: 25528 4708/* 13919 */ MCD::OPC_Decode, 154, 9, 176, 1, // Opcode: MVE_VMLSLDAVxs32 4709/* 13924 */ MCD::OPC_FilterValue, 2, 79, 45, 0, // Skip to: 25528 4710/* 13929 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4711/* 13932 */ MCD::OPC_FilterValue, 0, 115, 0, 0, // Skip to: 14052 4712/* 13937 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4713/* 13940 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 14012 4714/* 13945 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4715/* 13948 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 13980 4716/* 13953 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 13970 4717/* 13958 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 13970 4718/* 13965 */ MCD::OPC_Decode, 135, 9, 177, 1, // Opcode: MVE_VMLSDAVas16 4719/* 13970 */ MCD::OPC_CheckPredicate, 22, 33, 45, 0, // Skip to: 25528 4720/* 13975 */ MCD::OPC_Decode, 147, 9, 178, 1, // Opcode: MVE_VMLSLDAVas16 4721/* 13980 */ MCD::OPC_FilterValue, 15, 23, 45, 0, // Skip to: 25528 4722/* 13985 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14002 4723/* 13990 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14002 4724/* 13997 */ MCD::OPC_Decode, 137, 9, 177, 1, // Opcode: MVE_VMLSDAVas8 4725/* 14002 */ MCD::OPC_CheckPredicate, 22, 1, 45, 0, // Skip to: 25528 4726/* 14007 */ MCD::OPC_Decode, 184, 11, 178, 1, // Opcode: MVE_VRMLSLDAVHas32 4727/* 14012 */ MCD::OPC_FilterValue, 1, 247, 44, 0, // Skip to: 25528 4728/* 14017 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4729/* 14020 */ MCD::OPC_FilterValue, 14, 239, 44, 0, // Skip to: 25528 4730/* 14025 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14042 4731/* 14030 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14042 4732/* 14037 */ MCD::OPC_Decode, 136, 9, 177, 1, // Opcode: MVE_VMLSDAVas32 4733/* 14042 */ MCD::OPC_CheckPredicate, 22, 217, 44, 0, // Skip to: 25528 4734/* 14047 */ MCD::OPC_Decode, 148, 9, 178, 1, // Opcode: MVE_VMLSLDAVas32 4735/* 14052 */ MCD::OPC_FilterValue, 1, 207, 44, 0, // Skip to: 25528 4736/* 14057 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4737/* 14060 */ MCD::OPC_FilterValue, 0, 67, 0, 0, // Skip to: 14132 4738/* 14065 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4739/* 14068 */ MCD::OPC_FilterValue, 14, 27, 0, 0, // Skip to: 14100 4740/* 14073 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14090 4741/* 14078 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14090 4742/* 14085 */ MCD::OPC_Decode, 138, 9, 177, 1, // Opcode: MVE_VMLSDAVaxs16 4743/* 14090 */ MCD::OPC_CheckPredicate, 22, 169, 44, 0, // Skip to: 25528 4744/* 14095 */ MCD::OPC_Decode, 149, 9, 178, 1, // Opcode: MVE_VMLSLDAVaxs16 4745/* 14100 */ MCD::OPC_FilterValue, 15, 159, 44, 0, // Skip to: 25528 4746/* 14105 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14122 4747/* 14110 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14122 4748/* 14117 */ MCD::OPC_Decode, 140, 9, 177, 1, // Opcode: MVE_VMLSDAVaxs8 4749/* 14122 */ MCD::OPC_CheckPredicate, 22, 137, 44, 0, // Skip to: 25528 4750/* 14127 */ MCD::OPC_Decode, 185, 11, 178, 1, // Opcode: MVE_VRMLSLDAVHaxs32 4751/* 14132 */ MCD::OPC_FilterValue, 1, 127, 44, 0, // Skip to: 25528 4752/* 14137 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4753/* 14140 */ MCD::OPC_FilterValue, 14, 119, 44, 0, // Skip to: 25528 4754/* 14145 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14162 4755/* 14150 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14162 4756/* 14157 */ MCD::OPC_Decode, 139, 9, 177, 1, // Opcode: MVE_VMLSDAVaxs32 4757/* 14162 */ MCD::OPC_CheckPredicate, 22, 97, 44, 0, // Skip to: 25528 4758/* 14167 */ MCD::OPC_Decode, 150, 9, 178, 1, // Opcode: MVE_VMLSLDAVaxs32 4759/* 14172 */ MCD::OPC_FilterValue, 15, 87, 44, 0, // Skip to: 25528 4760/* 14177 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 4761/* 14180 */ MCD::OPC_FilterValue, 0, 154, 5, 0, // Skip to: 15619 4762/* 14185 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 4763/* 14188 */ MCD::OPC_FilterValue, 0, 196, 4, 0, // Skip to: 15413 4764/* 14193 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 4765/* 14196 */ MCD::OPC_FilterValue, 0, 56, 3, 0, // Skip to: 15025 4766/* 14201 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 4767/* 14204 */ MCD::OPC_FilterValue, 0, 40, 2, 0, // Skip to: 14761 4768/* 14209 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4769/* 14212 */ MCD::OPC_FilterValue, 0, 60, 1, 0, // Skip to: 14533 4770/* 14217 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4771/* 14220 */ MCD::OPC_FilterValue, 14, 190, 0, 0, // Skip to: 14415 4772/* 14225 */ MCD::OPC_ExtractField, 17, 6, // Inst{22-17} ... 4773/* 14228 */ MCD::OPC_FilterValue, 48, 10, 0, 0, // Skip to: 14243 4774/* 14233 */ MCD::OPC_CheckPredicate, 22, 110, 0, 0, // Skip to: 14348 4775/* 14238 */ MCD::OPC_Decode, 171, 8, 179, 1, // Opcode: MVE_VMAXAVs8 4776/* 14243 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 14258 4777/* 14248 */ MCD::OPC_CheckPredicate, 22, 95, 0, 0, // Skip to: 14348 4778/* 14253 */ MCD::OPC_Decode, 185, 8, 179, 1, // Opcode: MVE_VMAXVs8 4779/* 14258 */ MCD::OPC_FilterValue, 50, 10, 0, 0, // Skip to: 14273 4780/* 14263 */ MCD::OPC_CheckPredicate, 22, 80, 0, 0, // Skip to: 14348 4781/* 14268 */ MCD::OPC_Decode, 169, 8, 179, 1, // Opcode: MVE_VMAXAVs16 4782/* 14273 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 14288 4783/* 14278 */ MCD::OPC_CheckPredicate, 22, 65, 0, 0, // Skip to: 14348 4784/* 14283 */ MCD::OPC_Decode, 183, 8, 179, 1, // Opcode: MVE_VMAXVs16 4785/* 14288 */ MCD::OPC_FilterValue, 52, 10, 0, 0, // Skip to: 14303 4786/* 14293 */ MCD::OPC_CheckPredicate, 22, 50, 0, 0, // Skip to: 14348 4787/* 14298 */ MCD::OPC_Decode, 170, 8, 179, 1, // Opcode: MVE_VMAXAVs32 4788/* 14303 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 14318 4789/* 14308 */ MCD::OPC_CheckPredicate, 22, 35, 0, 0, // Skip to: 14348 4790/* 14313 */ MCD::OPC_Decode, 184, 8, 179, 1, // Opcode: MVE_VMAXVs32 4791/* 14318 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 14333 4792/* 14323 */ MCD::OPC_CheckPredicate, 24, 20, 0, 0, // Skip to: 14348 4793/* 14328 */ MCD::OPC_Decode, 176, 8, 179, 1, // Opcode: MVE_VMAXNMAVf32 4794/* 14333 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 14348 4795/* 14338 */ MCD::OPC_CheckPredicate, 24, 5, 0, 0, // Skip to: 14348 4796/* 14343 */ MCD::OPC_Decode, 180, 8, 179, 1, // Opcode: MVE_VMAXNMVf32 4797/* 14348 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4798/* 14351 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 14383 4799/* 14356 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14373 4800/* 14361 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14373 4801/* 14368 */ MCD::OPC_Decode, 232, 8, 175, 1, // Opcode: MVE_VMLADAVs8 4802/* 14373 */ MCD::OPC_CheckPredicate, 22, 142, 43, 0, // Skip to: 25528 4803/* 14378 */ MCD::OPC_Decode, 181, 11, 176, 1, // Opcode: MVE_VRMLALDAVHs32 4804/* 14383 */ MCD::OPC_FilterValue, 1, 132, 43, 0, // Skip to: 25528 4805/* 14388 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14405 4806/* 14393 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14405 4807/* 14400 */ MCD::OPC_Decode, 238, 8, 175, 1, // Opcode: MVE_VMLADAVxs8 4808/* 14405 */ MCD::OPC_CheckPredicate, 22, 110, 43, 0, // Skip to: 25528 4809/* 14410 */ MCD::OPC_Decode, 183, 11, 176, 1, // Opcode: MVE_VRMLALDAVHxs32 4810/* 14415 */ MCD::OPC_FilterValue, 15, 100, 43, 0, // Skip to: 25528 4811/* 14420 */ MCD::OPC_ExtractField, 17, 6, // Inst{22-17} ... 4812/* 14423 */ MCD::OPC_FilterValue, 49, 10, 0, 0, // Skip to: 14438 4813/* 14428 */ MCD::OPC_CheckPredicate, 22, 65, 0, 0, // Skip to: 14498 4814/* 14433 */ MCD::OPC_Decode, 188, 8, 179, 1, // Opcode: MVE_VMAXVu8 4815/* 14438 */ MCD::OPC_FilterValue, 51, 10, 0, 0, // Skip to: 14453 4816/* 14443 */ MCD::OPC_CheckPredicate, 22, 50, 0, 0, // Skip to: 14498 4817/* 14448 */ MCD::OPC_Decode, 186, 8, 179, 1, // Opcode: MVE_VMAXVu16 4818/* 14453 */ MCD::OPC_FilterValue, 53, 10, 0, 0, // Skip to: 14468 4819/* 14458 */ MCD::OPC_CheckPredicate, 22, 35, 0, 0, // Skip to: 14498 4820/* 14463 */ MCD::OPC_Decode, 187, 8, 179, 1, // Opcode: MVE_VMAXVu32 4821/* 14468 */ MCD::OPC_FilterValue, 54, 10, 0, 0, // Skip to: 14483 4822/* 14473 */ MCD::OPC_CheckPredicate, 24, 20, 0, 0, // Skip to: 14498 4823/* 14478 */ MCD::OPC_Decode, 175, 8, 179, 1, // Opcode: MVE_VMAXNMAVf16 4824/* 14483 */ MCD::OPC_FilterValue, 55, 10, 0, 0, // Skip to: 14498 4825/* 14488 */ MCD::OPC_CheckPredicate, 24, 5, 0, 0, // Skip to: 14498 4826/* 14493 */ MCD::OPC_Decode, 179, 8, 179, 1, // Opcode: MVE_VMAXNMVf16 4827/* 14498 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4828/* 14501 */ MCD::OPC_FilterValue, 0, 14, 43, 0, // Skip to: 25528 4829/* 14506 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14523 4830/* 14511 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14523 4831/* 14518 */ MCD::OPC_Decode, 235, 8, 175, 1, // Opcode: MVE_VMLADAVu8 4832/* 14523 */ MCD::OPC_CheckPredicate, 22, 248, 42, 0, // Skip to: 25528 4833/* 14528 */ MCD::OPC_Decode, 182, 11, 176, 1, // Opcode: MVE_VRMLALDAVHu32 4834/* 14533 */ MCD::OPC_FilterValue, 1, 238, 42, 0, // Skip to: 25528 4835/* 14538 */ MCD::OPC_ExtractField, 17, 3, // Inst{19-17} ... 4836/* 14541 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 14607 4837/* 14546 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4838/* 14549 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 14578 4839/* 14554 */ MCD::OPC_CheckPredicate, 22, 217, 42, 0, // Skip to: 25528 4840/* 14559 */ MCD::OPC_CheckField, 20, 3, 7, 210, 42, 0, // Skip to: 25528 4841/* 14566 */ MCD::OPC_CheckField, 12, 1, 0, 203, 42, 0, // Skip to: 25528 4842/* 14573 */ MCD::OPC_Decode, 187, 6, 180, 1, // Opcode: MVE_VADDVs8no_acc 4843/* 14578 */ MCD::OPC_FilterValue, 15, 193, 42, 0, // Skip to: 25528 4844/* 14583 */ MCD::OPC_CheckPredicate, 22, 188, 42, 0, // Skip to: 25528 4845/* 14588 */ MCD::OPC_CheckField, 20, 3, 7, 181, 42, 0, // Skip to: 25528 4846/* 14595 */ MCD::OPC_CheckField, 12, 1, 0, 174, 42, 0, // Skip to: 25528 4847/* 14602 */ MCD::OPC_Decode, 193, 6, 180, 1, // Opcode: MVE_VADDVu8no_acc 4848/* 14607 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 14673 4849/* 14612 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4850/* 14615 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 14644 4851/* 14620 */ MCD::OPC_CheckPredicate, 22, 151, 42, 0, // Skip to: 25528 4852/* 14625 */ MCD::OPC_CheckField, 20, 3, 7, 144, 42, 0, // Skip to: 25528 4853/* 14632 */ MCD::OPC_CheckField, 12, 1, 0, 137, 42, 0, // Skip to: 25528 4854/* 14639 */ MCD::OPC_Decode, 183, 6, 180, 1, // Opcode: MVE_VADDVs16no_acc 4855/* 14644 */ MCD::OPC_FilterValue, 15, 127, 42, 0, // Skip to: 25528 4856/* 14649 */ MCD::OPC_CheckPredicate, 22, 122, 42, 0, // Skip to: 25528 4857/* 14654 */ MCD::OPC_CheckField, 20, 3, 7, 115, 42, 0, // Skip to: 25528 4858/* 14661 */ MCD::OPC_CheckField, 12, 1, 0, 108, 42, 0, // Skip to: 25528 4859/* 14668 */ MCD::OPC_Decode, 189, 6, 180, 1, // Opcode: MVE_VADDVu16no_acc 4860/* 14673 */ MCD::OPC_FilterValue, 4, 98, 42, 0, // Skip to: 25528 4861/* 14678 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4862/* 14681 */ MCD::OPC_FilterValue, 14, 35, 0, 0, // Skip to: 14721 4863/* 14686 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4864/* 14689 */ MCD::OPC_FilterValue, 0, 82, 42, 0, // Skip to: 25528 4865/* 14694 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14711 4866/* 14699 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14711 4867/* 14706 */ MCD::OPC_Decode, 185, 6, 180, 1, // Opcode: MVE_VADDVs32no_acc 4868/* 14711 */ MCD::OPC_CheckPredicate, 22, 60, 42, 0, // Skip to: 25528 4869/* 14716 */ MCD::OPC_Decode, 179, 6, 181, 1, // Opcode: MVE_VADDLVs32no_acc 4870/* 14721 */ MCD::OPC_FilterValue, 15, 50, 42, 0, // Skip to: 25528 4871/* 14726 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4872/* 14729 */ MCD::OPC_FilterValue, 0, 42, 42, 0, // Skip to: 25528 4873/* 14734 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 14751 4874/* 14739 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 14751 4875/* 14746 */ MCD::OPC_Decode, 191, 6, 180, 1, // Opcode: MVE_VADDVu32no_acc 4876/* 14751 */ MCD::OPC_CheckPredicate, 22, 20, 42, 0, // Skip to: 25528 4877/* 14756 */ MCD::OPC_Decode, 181, 6, 181, 1, // Opcode: MVE_VADDLVu32no_acc 4878/* 14761 */ MCD::OPC_FilterValue, 1, 10, 42, 0, // Skip to: 25528 4879/* 14766 */ MCD::OPC_ExtractField, 16, 7, // Inst{22-16} ... 4880/* 14769 */ MCD::OPC_FilterValue, 96, 17, 0, 0, // Skip to: 14791 4881/* 14774 */ MCD::OPC_CheckPredicate, 22, 253, 41, 0, // Skip to: 25528 4882/* 14779 */ MCD::OPC_CheckField, 28, 4, 14, 246, 41, 0, // Skip to: 25528 4883/* 14786 */ MCD::OPC_Decode, 197, 8, 179, 1, // Opcode: MVE_VMINAVs8 4884/* 14791 */ MCD::OPC_FilterValue, 98, 33, 0, 0, // Skip to: 14829 4885/* 14796 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4886/* 14799 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14814 4887/* 14804 */ MCD::OPC_CheckPredicate, 22, 223, 41, 0, // Skip to: 25528 4888/* 14809 */ MCD::OPC_Decode, 211, 8, 179, 1, // Opcode: MVE_VMINVs8 4889/* 14814 */ MCD::OPC_FilterValue, 15, 213, 41, 0, // Skip to: 25528 4890/* 14819 */ MCD::OPC_CheckPredicate, 22, 208, 41, 0, // Skip to: 25528 4891/* 14824 */ MCD::OPC_Decode, 214, 8, 179, 1, // Opcode: MVE_VMINVu8 4892/* 14829 */ MCD::OPC_FilterValue, 100, 17, 0, 0, // Skip to: 14851 4893/* 14834 */ MCD::OPC_CheckPredicate, 22, 193, 41, 0, // Skip to: 25528 4894/* 14839 */ MCD::OPC_CheckField, 28, 4, 14, 186, 41, 0, // Skip to: 25528 4895/* 14846 */ MCD::OPC_Decode, 195, 8, 179, 1, // Opcode: MVE_VMINAVs16 4896/* 14851 */ MCD::OPC_FilterValue, 102, 33, 0, 0, // Skip to: 14889 4897/* 14856 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4898/* 14859 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14874 4899/* 14864 */ MCD::OPC_CheckPredicate, 22, 163, 41, 0, // Skip to: 25528 4900/* 14869 */ MCD::OPC_Decode, 209, 8, 179, 1, // Opcode: MVE_VMINVs16 4901/* 14874 */ MCD::OPC_FilterValue, 15, 153, 41, 0, // Skip to: 25528 4902/* 14879 */ MCD::OPC_CheckPredicate, 22, 148, 41, 0, // Skip to: 25528 4903/* 14884 */ MCD::OPC_Decode, 212, 8, 179, 1, // Opcode: MVE_VMINVu16 4904/* 14889 */ MCD::OPC_FilterValue, 104, 17, 0, 0, // Skip to: 14911 4905/* 14894 */ MCD::OPC_CheckPredicate, 22, 133, 41, 0, // Skip to: 25528 4906/* 14899 */ MCD::OPC_CheckField, 28, 4, 14, 126, 41, 0, // Skip to: 25528 4907/* 14906 */ MCD::OPC_Decode, 196, 8, 179, 1, // Opcode: MVE_VMINAVs32 4908/* 14911 */ MCD::OPC_FilterValue, 106, 33, 0, 0, // Skip to: 14949 4909/* 14916 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4910/* 14919 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14934 4911/* 14924 */ MCD::OPC_CheckPredicate, 22, 103, 41, 0, // Skip to: 25528 4912/* 14929 */ MCD::OPC_Decode, 210, 8, 179, 1, // Opcode: MVE_VMINVs32 4913/* 14934 */ MCD::OPC_FilterValue, 15, 93, 41, 0, // Skip to: 25528 4914/* 14939 */ MCD::OPC_CheckPredicate, 22, 88, 41, 0, // Skip to: 25528 4915/* 14944 */ MCD::OPC_Decode, 213, 8, 179, 1, // Opcode: MVE_VMINVu32 4916/* 14949 */ MCD::OPC_FilterValue, 108, 33, 0, 0, // Skip to: 14987 4917/* 14954 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4918/* 14957 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 14972 4919/* 14962 */ MCD::OPC_CheckPredicate, 24, 65, 41, 0, // Skip to: 25528 4920/* 14967 */ MCD::OPC_Decode, 202, 8, 179, 1, // Opcode: MVE_VMINNMAVf32 4921/* 14972 */ MCD::OPC_FilterValue, 15, 55, 41, 0, // Skip to: 25528 4922/* 14977 */ MCD::OPC_CheckPredicate, 24, 50, 41, 0, // Skip to: 25528 4923/* 14982 */ MCD::OPC_Decode, 201, 8, 179, 1, // Opcode: MVE_VMINNMAVf16 4924/* 14987 */ MCD::OPC_FilterValue, 110, 40, 41, 0, // Skip to: 25528 4925/* 14992 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4926/* 14995 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 15010 4927/* 15000 */ MCD::OPC_CheckPredicate, 24, 27, 41, 0, // Skip to: 25528 4928/* 15005 */ MCD::OPC_Decode, 206, 8, 179, 1, // Opcode: MVE_VMINNMVf32 4929/* 15010 */ MCD::OPC_FilterValue, 15, 17, 41, 0, // Skip to: 25528 4930/* 15015 */ MCD::OPC_CheckPredicate, 24, 12, 41, 0, // Skip to: 25528 4931/* 15020 */ MCD::OPC_Decode, 205, 8, 179, 1, // Opcode: MVE_VMINNMVf16 4932/* 15025 */ MCD::OPC_FilterValue, 2, 2, 41, 0, // Skip to: 25528 4933/* 15030 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 4934/* 15033 */ MCD::OPC_FilterValue, 0, 63, 1, 0, // Skip to: 15357 4935/* 15038 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 4936/* 15041 */ MCD::OPC_FilterValue, 0, 83, 0, 0, // Skip to: 15129 4937/* 15046 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4938/* 15049 */ MCD::OPC_FilterValue, 14, 35, 0, 0, // Skip to: 15089 4939/* 15054 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 4940/* 15057 */ MCD::OPC_FilterValue, 0, 226, 40, 0, // Skip to: 25528 4941/* 15062 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 15079 4942/* 15067 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 15079 4943/* 15074 */ MCD::OPC_Decode, 223, 8, 177, 1, // Opcode: MVE_VMLADAVas8 4944/* 15079 */ MCD::OPC_CheckPredicate, 22, 204, 40, 0, // Skip to: 25528 4945/* 15084 */ MCD::OPC_Decode, 178, 11, 178, 1, // Opcode: MVE_VRMLALDAVHas32 4946/* 15089 */ MCD::OPC_FilterValue, 15, 194, 40, 0, // Skip to: 25528 4947/* 15094 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 4948/* 15097 */ MCD::OPC_FilterValue, 0, 186, 40, 0, // Skip to: 25528 4949/* 15102 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 15119 4950/* 15107 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 15119 4951/* 15114 */ MCD::OPC_Decode, 226, 8, 177, 1, // Opcode: MVE_VMLADAVau8 4952/* 15119 */ MCD::OPC_CheckPredicate, 22, 164, 40, 0, // Skip to: 25528 4953/* 15124 */ MCD::OPC_Decode, 179, 11, 178, 1, // Opcode: MVE_VRMLALDAVHau32 4954/* 15129 */ MCD::OPC_FilterValue, 1, 154, 40, 0, // Skip to: 25528 4955/* 15134 */ MCD::OPC_ExtractField, 17, 3, // Inst{19-17} ... 4956/* 15137 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 15203 4957/* 15142 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4958/* 15145 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15174 4959/* 15150 */ MCD::OPC_CheckPredicate, 22, 133, 40, 0, // Skip to: 25528 4960/* 15155 */ MCD::OPC_CheckField, 20, 3, 7, 126, 40, 0, // Skip to: 25528 4961/* 15162 */ MCD::OPC_CheckField, 7, 1, 0, 119, 40, 0, // Skip to: 25528 4962/* 15169 */ MCD::OPC_Decode, 186, 6, 182, 1, // Opcode: MVE_VADDVs8acc 4963/* 15174 */ MCD::OPC_FilterValue, 15, 109, 40, 0, // Skip to: 25528 4964/* 15179 */ MCD::OPC_CheckPredicate, 22, 104, 40, 0, // Skip to: 25528 4965/* 15184 */ MCD::OPC_CheckField, 20, 3, 7, 97, 40, 0, // Skip to: 25528 4966/* 15191 */ MCD::OPC_CheckField, 7, 1, 0, 90, 40, 0, // Skip to: 25528 4967/* 15198 */ MCD::OPC_Decode, 192, 6, 182, 1, // Opcode: MVE_VADDVu8acc 4968/* 15203 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 15269 4969/* 15208 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4970/* 15211 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15240 4971/* 15216 */ MCD::OPC_CheckPredicate, 22, 67, 40, 0, // Skip to: 25528 4972/* 15221 */ MCD::OPC_CheckField, 20, 3, 7, 60, 40, 0, // Skip to: 25528 4973/* 15228 */ MCD::OPC_CheckField, 7, 1, 0, 53, 40, 0, // Skip to: 25528 4974/* 15235 */ MCD::OPC_Decode, 182, 6, 182, 1, // Opcode: MVE_VADDVs16acc 4975/* 15240 */ MCD::OPC_FilterValue, 15, 43, 40, 0, // Skip to: 25528 4976/* 15245 */ MCD::OPC_CheckPredicate, 22, 38, 40, 0, // Skip to: 25528 4977/* 15250 */ MCD::OPC_CheckField, 20, 3, 7, 31, 40, 0, // Skip to: 25528 4978/* 15257 */ MCD::OPC_CheckField, 7, 1, 0, 24, 40, 0, // Skip to: 25528 4979/* 15264 */ MCD::OPC_Decode, 188, 6, 182, 1, // Opcode: MVE_VADDVu16acc 4980/* 15269 */ MCD::OPC_FilterValue, 4, 14, 40, 0, // Skip to: 25528 4981/* 15274 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 4982/* 15277 */ MCD::OPC_FilterValue, 14, 35, 0, 0, // Skip to: 15317 4983/* 15282 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 4984/* 15285 */ MCD::OPC_FilterValue, 0, 254, 39, 0, // Skip to: 25528 4985/* 15290 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 15307 4986/* 15295 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 15307 4987/* 15302 */ MCD::OPC_Decode, 184, 6, 182, 1, // Opcode: MVE_VADDVs32acc 4988/* 15307 */ MCD::OPC_CheckPredicate, 22, 232, 39, 0, // Skip to: 25528 4989/* 15312 */ MCD::OPC_Decode, 178, 6, 183, 1, // Opcode: MVE_VADDLVs32acc 4990/* 15317 */ MCD::OPC_FilterValue, 15, 222, 39, 0, // Skip to: 25528 4991/* 15322 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 4992/* 15325 */ MCD::OPC_FilterValue, 0, 214, 39, 0, // Skip to: 25528 4993/* 15330 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 15347 4994/* 15335 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 15347 4995/* 15342 */ MCD::OPC_Decode, 190, 6, 182, 1, // Opcode: MVE_VADDVu32acc 4996/* 15347 */ MCD::OPC_CheckPredicate, 22, 192, 39, 0, // Skip to: 25528 4997/* 15352 */ MCD::OPC_Decode, 180, 6, 183, 1, // Opcode: MVE_VADDLVu32acc 4998/* 15357 */ MCD::OPC_FilterValue, 1, 182, 39, 0, // Skip to: 25528 4999/* 15362 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 5000/* 15365 */ MCD::OPC_FilterValue, 0, 174, 39, 0, // Skip to: 25528 5001/* 15370 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 5002/* 15373 */ MCD::OPC_FilterValue, 0, 166, 39, 0, // Skip to: 25528 5003/* 15378 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5004/* 15381 */ MCD::OPC_FilterValue, 14, 158, 39, 0, // Skip to: 25528 5005/* 15386 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 15403 5006/* 15391 */ MCD::OPC_CheckField, 20, 3, 7, 5, 0, 0, // Skip to: 15403 5007/* 15398 */ MCD::OPC_Decode, 229, 8, 177, 1, // Opcode: MVE_VMLADAVaxs8 5008/* 15403 */ MCD::OPC_CheckPredicate, 22, 136, 39, 0, // Skip to: 25528 5009/* 15408 */ MCD::OPC_Decode, 180, 11, 178, 1, // Opcode: MVE_VRMLALDAVHaxs32 5010/* 15413 */ MCD::OPC_FilterValue, 1, 126, 39, 0, // Skip to: 25528 5011/* 15418 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 5012/* 15421 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 15487 5013/* 15426 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5014/* 15429 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15458 5015/* 15434 */ MCD::OPC_CheckPredicate, 22, 105, 39, 0, // Skip to: 25528 5016/* 15439 */ MCD::OPC_CheckField, 16, 1, 0, 98, 39, 0, // Skip to: 25528 5017/* 15446 */ MCD::OPC_CheckField, 4, 1, 0, 91, 39, 0, // Skip to: 25528 5018/* 15453 */ MCD::OPC_Decode, 159, 6, 184, 1, // Opcode: MVE_VABAVs8 5019/* 15458 */ MCD::OPC_FilterValue, 15, 81, 39, 0, // Skip to: 25528 5020/* 15463 */ MCD::OPC_CheckPredicate, 22, 76, 39, 0, // Skip to: 25528 5021/* 15468 */ MCD::OPC_CheckField, 16, 1, 0, 69, 39, 0, // Skip to: 25528 5022/* 15475 */ MCD::OPC_CheckField, 4, 1, 0, 62, 39, 0, // Skip to: 25528 5023/* 15482 */ MCD::OPC_Decode, 162, 6, 184, 1, // Opcode: MVE_VABAVu8 5024/* 15487 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 15553 5025/* 15492 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5026/* 15495 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15524 5027/* 15500 */ MCD::OPC_CheckPredicate, 22, 39, 39, 0, // Skip to: 25528 5028/* 15505 */ MCD::OPC_CheckField, 16, 1, 0, 32, 39, 0, // Skip to: 25528 5029/* 15512 */ MCD::OPC_CheckField, 4, 1, 0, 25, 39, 0, // Skip to: 25528 5030/* 15519 */ MCD::OPC_Decode, 157, 6, 184, 1, // Opcode: MVE_VABAVs16 5031/* 15524 */ MCD::OPC_FilterValue, 15, 15, 39, 0, // Skip to: 25528 5032/* 15529 */ MCD::OPC_CheckPredicate, 22, 10, 39, 0, // Skip to: 25528 5033/* 15534 */ MCD::OPC_CheckField, 16, 1, 0, 3, 39, 0, // Skip to: 25528 5034/* 15541 */ MCD::OPC_CheckField, 4, 1, 0, 252, 38, 0, // Skip to: 25528 5035/* 15548 */ MCD::OPC_Decode, 160, 6, 184, 1, // Opcode: MVE_VABAVu16 5036/* 15553 */ MCD::OPC_FilterValue, 2, 242, 38, 0, // Skip to: 25528 5037/* 15558 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5038/* 15561 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15590 5039/* 15566 */ MCD::OPC_CheckPredicate, 22, 229, 38, 0, // Skip to: 25528 5040/* 15571 */ MCD::OPC_CheckField, 16, 1, 0, 222, 38, 0, // Skip to: 25528 5041/* 15578 */ MCD::OPC_CheckField, 4, 1, 0, 215, 38, 0, // Skip to: 25528 5042/* 15585 */ MCD::OPC_Decode, 158, 6, 184, 1, // Opcode: MVE_VABAVs32 5043/* 15590 */ MCD::OPC_FilterValue, 15, 205, 38, 0, // Skip to: 25528 5044/* 15595 */ MCD::OPC_CheckPredicate, 22, 200, 38, 0, // Skip to: 25528 5045/* 15600 */ MCD::OPC_CheckField, 16, 1, 0, 193, 38, 0, // Skip to: 25528 5046/* 15607 */ MCD::OPC_CheckField, 4, 1, 0, 186, 38, 0, // Skip to: 25528 5047/* 15614 */ MCD::OPC_Decode, 161, 6, 184, 1, // Opcode: MVE_VABAVu32 5048/* 15619 */ MCD::OPC_FilterValue, 1, 176, 38, 0, // Skip to: 25528 5049/* 15624 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 5050/* 15627 */ MCD::OPC_FilterValue, 0, 219, 3, 0, // Skip to: 16619 5051/* 15632 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5052/* 15635 */ MCD::OPC_FilterValue, 0, 27, 1, 0, // Skip to: 15923 5053/* 15640 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5054/* 15643 */ MCD::OPC_FilterValue, 0, 135, 0, 0, // Skip to: 15783 5055/* 15648 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5056/* 15651 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 15717 5057/* 15656 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5058/* 15659 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15688 5059/* 15664 */ MCD::OPC_CheckPredicate, 22, 131, 38, 0, // Skip to: 25528 5060/* 15669 */ MCD::OPC_CheckField, 19, 1, 1, 124, 38, 0, // Skip to: 25528 5061/* 15676 */ MCD::OPC_CheckField, 4, 1, 0, 117, 38, 0, // Skip to: 25528 5062/* 15683 */ MCD::OPC_Decode, 130, 11, 185, 1, // Opcode: MVE_VQSHRNbhs16 5063/* 15688 */ MCD::OPC_FilterValue, 15, 107, 38, 0, // Skip to: 25528 5064/* 15693 */ MCD::OPC_CheckPredicate, 22, 102, 38, 0, // Skip to: 25528 5065/* 15698 */ MCD::OPC_CheckField, 19, 1, 1, 95, 38, 0, // Skip to: 25528 5066/* 15705 */ MCD::OPC_CheckField, 4, 1, 0, 88, 38, 0, // Skip to: 25528 5067/* 15712 */ MCD::OPC_Decode, 132, 11, 185, 1, // Opcode: MVE_VQSHRNbhu16 5068/* 15717 */ MCD::OPC_FilterValue, 1, 78, 38, 0, // Skip to: 25528 5069/* 15722 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5070/* 15725 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15754 5071/* 15730 */ MCD::OPC_CheckPredicate, 22, 65, 38, 0, // Skip to: 25528 5072/* 15735 */ MCD::OPC_CheckField, 19, 1, 1, 58, 38, 0, // Skip to: 25528 5073/* 15742 */ MCD::OPC_CheckField, 4, 1, 0, 51, 38, 0, // Skip to: 25528 5074/* 15749 */ MCD::OPC_Decode, 134, 11, 185, 1, // Opcode: MVE_VQSHRNths16 5075/* 15754 */ MCD::OPC_FilterValue, 15, 41, 38, 0, // Skip to: 25528 5076/* 15759 */ MCD::OPC_CheckPredicate, 22, 36, 38, 0, // Skip to: 25528 5077/* 15764 */ MCD::OPC_CheckField, 19, 1, 1, 29, 38, 0, // Skip to: 25528 5078/* 15771 */ MCD::OPC_CheckField, 4, 1, 0, 22, 38, 0, // Skip to: 25528 5079/* 15778 */ MCD::OPC_Decode, 136, 11, 185, 1, // Opcode: MVE_VQSHRNthu16 5080/* 15783 */ MCD::OPC_FilterValue, 1, 12, 38, 0, // Skip to: 25528 5081/* 15788 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5082/* 15791 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 15857 5083/* 15796 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5084/* 15799 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15828 5085/* 15804 */ MCD::OPC_CheckPredicate, 22, 247, 37, 0, // Skip to: 25528 5086/* 15809 */ MCD::OPC_CheckField, 19, 1, 1, 240, 37, 0, // Skip to: 25528 5087/* 15816 */ MCD::OPC_CheckField, 4, 1, 0, 233, 37, 0, // Skip to: 25528 5088/* 15823 */ MCD::OPC_Decode, 225, 10, 185, 1, // Opcode: MVE_VQRSHRNbhs16 5089/* 15828 */ MCD::OPC_FilterValue, 15, 223, 37, 0, // Skip to: 25528 5090/* 15833 */ MCD::OPC_CheckPredicate, 22, 218, 37, 0, // Skip to: 25528 5091/* 15838 */ MCD::OPC_CheckField, 19, 1, 1, 211, 37, 0, // Skip to: 25528 5092/* 15845 */ MCD::OPC_CheckField, 4, 1, 0, 204, 37, 0, // Skip to: 25528 5093/* 15852 */ MCD::OPC_Decode, 227, 10, 185, 1, // Opcode: MVE_VQRSHRNbhu16 5094/* 15857 */ MCD::OPC_FilterValue, 1, 194, 37, 0, // Skip to: 25528 5095/* 15862 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5096/* 15865 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 15894 5097/* 15870 */ MCD::OPC_CheckPredicate, 22, 181, 37, 0, // Skip to: 25528 5098/* 15875 */ MCD::OPC_CheckField, 19, 1, 1, 174, 37, 0, // Skip to: 25528 5099/* 15882 */ MCD::OPC_CheckField, 4, 1, 0, 167, 37, 0, // Skip to: 25528 5100/* 15889 */ MCD::OPC_Decode, 229, 10, 185, 1, // Opcode: MVE_VQRSHRNths16 5101/* 15894 */ MCD::OPC_FilterValue, 15, 157, 37, 0, // Skip to: 25528 5102/* 15899 */ MCD::OPC_CheckPredicate, 22, 152, 37, 0, // Skip to: 25528 5103/* 15904 */ MCD::OPC_CheckField, 19, 1, 1, 145, 37, 0, // Skip to: 25528 5104/* 15911 */ MCD::OPC_CheckField, 4, 1, 0, 138, 37, 0, // Skip to: 25528 5105/* 15918 */ MCD::OPC_Decode, 231, 10, 185, 1, // Opcode: MVE_VQRSHRNthu16 5106/* 15923 */ MCD::OPC_FilterValue, 1, 227, 0, 0, // Skip to: 16155 5107/* 15928 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5108/* 15931 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 16043 5109/* 15936 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5110/* 15939 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 15991 5111/* 15944 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5112/* 15947 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 15969 5113/* 15952 */ MCD::OPC_CheckPredicate, 22, 99, 37, 0, // Skip to: 25528 5114/* 15957 */ MCD::OPC_CheckField, 4, 1, 0, 92, 37, 0, // Skip to: 25528 5115/* 15964 */ MCD::OPC_Decode, 131, 11, 186, 1, // Opcode: MVE_VQSHRNbhs32 5116/* 15969 */ MCD::OPC_FilterValue, 15, 82, 37, 0, // Skip to: 25528 5117/* 15974 */ MCD::OPC_CheckPredicate, 22, 77, 37, 0, // Skip to: 25528 5118/* 15979 */ MCD::OPC_CheckField, 4, 1, 0, 70, 37, 0, // Skip to: 25528 5119/* 15986 */ MCD::OPC_Decode, 133, 11, 186, 1, // Opcode: MVE_VQSHRNbhu32 5120/* 15991 */ MCD::OPC_FilterValue, 1, 60, 37, 0, // Skip to: 25528 5121/* 15996 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5122/* 15999 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16021 5123/* 16004 */ MCD::OPC_CheckPredicate, 22, 47, 37, 0, // Skip to: 25528 5124/* 16009 */ MCD::OPC_CheckField, 4, 1, 0, 40, 37, 0, // Skip to: 25528 5125/* 16016 */ MCD::OPC_Decode, 135, 11, 186, 1, // Opcode: MVE_VQSHRNths32 5126/* 16021 */ MCD::OPC_FilterValue, 15, 30, 37, 0, // Skip to: 25528 5127/* 16026 */ MCD::OPC_CheckPredicate, 22, 25, 37, 0, // Skip to: 25528 5128/* 16031 */ MCD::OPC_CheckField, 4, 1, 0, 18, 37, 0, // Skip to: 25528 5129/* 16038 */ MCD::OPC_Decode, 137, 11, 186, 1, // Opcode: MVE_VQSHRNthu32 5130/* 16043 */ MCD::OPC_FilterValue, 1, 8, 37, 0, // Skip to: 25528 5131/* 16048 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5132/* 16051 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 16103 5133/* 16056 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5134/* 16059 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16081 5135/* 16064 */ MCD::OPC_CheckPredicate, 22, 243, 36, 0, // Skip to: 25528 5136/* 16069 */ MCD::OPC_CheckField, 4, 1, 0, 236, 36, 0, // Skip to: 25528 5137/* 16076 */ MCD::OPC_Decode, 226, 10, 186, 1, // Opcode: MVE_VQRSHRNbhs32 5138/* 16081 */ MCD::OPC_FilterValue, 15, 226, 36, 0, // Skip to: 25528 5139/* 16086 */ MCD::OPC_CheckPredicate, 22, 221, 36, 0, // Skip to: 25528 5140/* 16091 */ MCD::OPC_CheckField, 4, 1, 0, 214, 36, 0, // Skip to: 25528 5141/* 16098 */ MCD::OPC_Decode, 228, 10, 186, 1, // Opcode: MVE_VQRSHRNbhu32 5142/* 16103 */ MCD::OPC_FilterValue, 1, 204, 36, 0, // Skip to: 25528 5143/* 16108 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5144/* 16111 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16133 5145/* 16116 */ MCD::OPC_CheckPredicate, 22, 191, 36, 0, // Skip to: 25528 5146/* 16121 */ MCD::OPC_CheckField, 4, 1, 0, 184, 36, 0, // Skip to: 25528 5147/* 16128 */ MCD::OPC_Decode, 230, 10, 186, 1, // Opcode: MVE_VQRSHRNths32 5148/* 16133 */ MCD::OPC_FilterValue, 15, 174, 36, 0, // Skip to: 25528 5149/* 16138 */ MCD::OPC_CheckPredicate, 22, 169, 36, 0, // Skip to: 25528 5150/* 16143 */ MCD::OPC_CheckField, 4, 1, 0, 162, 36, 0, // Skip to: 25528 5151/* 16150 */ MCD::OPC_Decode, 232, 10, 186, 1, // Opcode: MVE_VQRSHRNthu32 5152/* 16155 */ MCD::OPC_FilterValue, 2, 243, 0, 0, // Skip to: 16403 5153/* 16160 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5154/* 16163 */ MCD::OPC_FilterValue, 0, 115, 0, 0, // Skip to: 16283 5155/* 16168 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5156/* 16171 */ MCD::OPC_FilterValue, 14, 51, 0, 0, // Skip to: 16227 5157/* 16176 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5158/* 16179 */ MCD::OPC_FilterValue, 0, 128, 36, 0, // Skip to: 25528 5159/* 16184 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5160/* 16187 */ MCD::OPC_FilterValue, 0, 120, 36, 0, // Skip to: 25528 5161/* 16192 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 5162/* 16195 */ MCD::OPC_FilterValue, 1, 112, 36, 0, // Skip to: 25528 5163/* 16200 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16217 5164/* 16205 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 16217 5165/* 16212 */ MCD::OPC_Decode, 157, 9, 148, 1, // Opcode: MVE_VMOVLs8bh 5166/* 16217 */ MCD::OPC_CheckPredicate, 22, 90, 36, 0, // Skip to: 25528 5167/* 16222 */ MCD::OPC_Decode, 221, 11, 187, 1, // Opcode: MVE_VSHLL_imms8bh 5168/* 16227 */ MCD::OPC_FilterValue, 15, 80, 36, 0, // Skip to: 25528 5169/* 16232 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5170/* 16235 */ MCD::OPC_FilterValue, 0, 72, 36, 0, // Skip to: 25528 5171/* 16240 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5172/* 16243 */ MCD::OPC_FilterValue, 0, 64, 36, 0, // Skip to: 25528 5173/* 16248 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 5174/* 16251 */ MCD::OPC_FilterValue, 1, 56, 36, 0, // Skip to: 25528 5175/* 16256 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16273 5176/* 16261 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 16273 5177/* 16268 */ MCD::OPC_Decode, 161, 9, 148, 1, // Opcode: MVE_VMOVLu8bh 5178/* 16273 */ MCD::OPC_CheckPredicate, 22, 34, 36, 0, // Skip to: 25528 5179/* 16278 */ MCD::OPC_Decode, 225, 11, 187, 1, // Opcode: MVE_VSHLL_immu8bh 5180/* 16283 */ MCD::OPC_FilterValue, 1, 24, 36, 0, // Skip to: 25528 5181/* 16288 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5182/* 16291 */ MCD::OPC_FilterValue, 14, 51, 0, 0, // Skip to: 16347 5183/* 16296 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5184/* 16299 */ MCD::OPC_FilterValue, 0, 8, 36, 0, // Skip to: 25528 5185/* 16304 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5186/* 16307 */ MCD::OPC_FilterValue, 0, 0, 36, 0, // Skip to: 25528 5187/* 16312 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 5188/* 16315 */ MCD::OPC_FilterValue, 1, 248, 35, 0, // Skip to: 25528 5189/* 16320 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16337 5190/* 16325 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 16337 5191/* 16332 */ MCD::OPC_Decode, 158, 9, 148, 1, // Opcode: MVE_VMOVLs8th 5192/* 16337 */ MCD::OPC_CheckPredicate, 22, 226, 35, 0, // Skip to: 25528 5193/* 16342 */ MCD::OPC_Decode, 222, 11, 187, 1, // Opcode: MVE_VSHLL_imms8th 5194/* 16347 */ MCD::OPC_FilterValue, 15, 216, 35, 0, // Skip to: 25528 5195/* 16352 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5196/* 16355 */ MCD::OPC_FilterValue, 0, 208, 35, 0, // Skip to: 25528 5197/* 16360 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5198/* 16363 */ MCD::OPC_FilterValue, 0, 200, 35, 0, // Skip to: 25528 5199/* 16368 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 5200/* 16371 */ MCD::OPC_FilterValue, 1, 192, 35, 0, // Skip to: 25528 5201/* 16376 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16393 5202/* 16381 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 16393 5203/* 16388 */ MCD::OPC_Decode, 162, 9, 148, 1, // Opcode: MVE_VMOVLu8th 5204/* 16393 */ MCD::OPC_CheckPredicate, 22, 170, 35, 0, // Skip to: 25528 5205/* 16398 */ MCD::OPC_Decode, 226, 11, 187, 1, // Opcode: MVE_VSHLL_immu8th 5206/* 16403 */ MCD::OPC_FilterValue, 3, 160, 35, 0, // Skip to: 25528 5207/* 16408 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5208/* 16411 */ MCD::OPC_FilterValue, 0, 99, 0, 0, // Skip to: 16515 5209/* 16416 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5210/* 16419 */ MCD::OPC_FilterValue, 14, 43, 0, 0, // Skip to: 16467 5211/* 16424 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5212/* 16427 */ MCD::OPC_FilterValue, 0, 136, 35, 0, // Skip to: 25528 5213/* 16432 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5214/* 16435 */ MCD::OPC_FilterValue, 0, 128, 35, 0, // Skip to: 25528 5215/* 16440 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16457 5216/* 16445 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 16457 5217/* 16452 */ MCD::OPC_Decode, 155, 9, 148, 1, // Opcode: MVE_VMOVLs16bh 5218/* 16457 */ MCD::OPC_CheckPredicate, 22, 106, 35, 0, // Skip to: 25528 5219/* 16462 */ MCD::OPC_Decode, 219, 11, 188, 1, // Opcode: MVE_VSHLL_imms16bh 5220/* 16467 */ MCD::OPC_FilterValue, 15, 96, 35, 0, // Skip to: 25528 5221/* 16472 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5222/* 16475 */ MCD::OPC_FilterValue, 0, 88, 35, 0, // Skip to: 25528 5223/* 16480 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5224/* 16483 */ MCD::OPC_FilterValue, 0, 80, 35, 0, // Skip to: 25528 5225/* 16488 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16505 5226/* 16493 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 16505 5227/* 16500 */ MCD::OPC_Decode, 159, 9, 148, 1, // Opcode: MVE_VMOVLu16bh 5228/* 16505 */ MCD::OPC_CheckPredicate, 22, 58, 35, 0, // Skip to: 25528 5229/* 16510 */ MCD::OPC_Decode, 223, 11, 188, 1, // Opcode: MVE_VSHLL_immu16bh 5230/* 16515 */ MCD::OPC_FilterValue, 1, 48, 35, 0, // Skip to: 25528 5231/* 16520 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5232/* 16523 */ MCD::OPC_FilterValue, 14, 43, 0, 0, // Skip to: 16571 5233/* 16528 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5234/* 16531 */ MCD::OPC_FilterValue, 0, 32, 35, 0, // Skip to: 25528 5235/* 16536 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5236/* 16539 */ MCD::OPC_FilterValue, 0, 24, 35, 0, // Skip to: 25528 5237/* 16544 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16561 5238/* 16549 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 16561 5239/* 16556 */ MCD::OPC_Decode, 156, 9, 148, 1, // Opcode: MVE_VMOVLs16th 5240/* 16561 */ MCD::OPC_CheckPredicate, 22, 2, 35, 0, // Skip to: 25528 5241/* 16566 */ MCD::OPC_Decode, 220, 11, 188, 1, // Opcode: MVE_VSHLL_imms16th 5242/* 16571 */ MCD::OPC_FilterValue, 15, 248, 34, 0, // Skip to: 25528 5243/* 16576 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5244/* 16579 */ MCD::OPC_FilterValue, 0, 240, 34, 0, // Skip to: 25528 5245/* 16584 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5246/* 16587 */ MCD::OPC_FilterValue, 0, 232, 34, 0, // Skip to: 25528 5247/* 16592 */ MCD::OPC_CheckPredicate, 22, 12, 0, 0, // Skip to: 16609 5248/* 16597 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 16609 5249/* 16604 */ MCD::OPC_Decode, 160, 9, 148, 1, // Opcode: MVE_VMOVLu16th 5250/* 16609 */ MCD::OPC_CheckPredicate, 22, 210, 34, 0, // Skip to: 25528 5251/* 16614 */ MCD::OPC_Decode, 224, 11, 188, 1, // Opcode: MVE_VSHLL_immu16th 5252/* 16619 */ MCD::OPC_FilterValue, 1, 200, 34, 0, // Skip to: 25528 5253/* 16624 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 5254/* 16627 */ MCD::OPC_FilterValue, 0, 36, 1, 0, // Skip to: 16924 5255/* 16632 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 5256/* 16635 */ MCD::OPC_FilterValue, 0, 255, 0, 0, // Skip to: 16895 5257/* 16640 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5258/* 16643 */ MCD::OPC_FilterValue, 0, 121, 0, 0, // Skip to: 16769 5259/* 16648 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 5260/* 16651 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 16717 5261/* 16656 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5262/* 16659 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 16688 5263/* 16664 */ MCD::OPC_CheckPredicate, 22, 155, 34, 0, // Skip to: 25528 5264/* 16669 */ MCD::OPC_CheckField, 19, 1, 1, 148, 34, 0, // Skip to: 25528 5265/* 16676 */ MCD::OPC_CheckField, 4, 1, 0, 141, 34, 0, // Skip to: 25528 5266/* 16683 */ MCD::OPC_Decode, 138, 11, 185, 1, // Opcode: MVE_VQSHRUNs16bh 5267/* 16688 */ MCD::OPC_FilterValue, 15, 131, 34, 0, // Skip to: 25528 5268/* 16693 */ MCD::OPC_CheckPredicate, 22, 126, 34, 0, // Skip to: 25528 5269/* 16698 */ MCD::OPC_CheckField, 19, 1, 1, 119, 34, 0, // Skip to: 25528 5270/* 16705 */ MCD::OPC_CheckField, 4, 1, 0, 112, 34, 0, // Skip to: 25528 5271/* 16712 */ MCD::OPC_Decode, 233, 10, 185, 1, // Opcode: MVE_VQRSHRUNs16bh 5272/* 16717 */ MCD::OPC_FilterValue, 1, 102, 34, 0, // Skip to: 25528 5273/* 16722 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5274/* 16725 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16747 5275/* 16730 */ MCD::OPC_CheckPredicate, 22, 89, 34, 0, // Skip to: 25528 5276/* 16735 */ MCD::OPC_CheckField, 4, 1, 0, 82, 34, 0, // Skip to: 25528 5277/* 16742 */ MCD::OPC_Decode, 140, 11, 186, 1, // Opcode: MVE_VQSHRUNs32bh 5278/* 16747 */ MCD::OPC_FilterValue, 15, 72, 34, 0, // Skip to: 25528 5279/* 16752 */ MCD::OPC_CheckPredicate, 22, 67, 34, 0, // Skip to: 25528 5280/* 16757 */ MCD::OPC_CheckField, 4, 1, 0, 60, 34, 0, // Skip to: 25528 5281/* 16764 */ MCD::OPC_Decode, 235, 10, 186, 1, // Opcode: MVE_VQRSHRUNs32bh 5282/* 16769 */ MCD::OPC_FilterValue, 1, 50, 34, 0, // Skip to: 25528 5283/* 16774 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 5284/* 16777 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 16843 5285/* 16782 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5286/* 16785 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 16814 5287/* 16790 */ MCD::OPC_CheckPredicate, 22, 29, 34, 0, // Skip to: 25528 5288/* 16795 */ MCD::OPC_CheckField, 19, 1, 1, 22, 34, 0, // Skip to: 25528 5289/* 16802 */ MCD::OPC_CheckField, 4, 1, 0, 15, 34, 0, // Skip to: 25528 5290/* 16809 */ MCD::OPC_Decode, 250, 11, 185, 1, // Opcode: MVE_VSHRNi16bh 5291/* 16814 */ MCD::OPC_FilterValue, 15, 5, 34, 0, // Skip to: 25528 5292/* 16819 */ MCD::OPC_CheckPredicate, 22, 0, 34, 0, // Skip to: 25528 5293/* 16824 */ MCD::OPC_CheckField, 19, 1, 1, 249, 33, 0, // Skip to: 25528 5294/* 16831 */ MCD::OPC_CheckField, 4, 1, 0, 242, 33, 0, // Skip to: 25528 5295/* 16838 */ MCD::OPC_Decode, 206, 11, 185, 1, // Opcode: MVE_VRSHRNi16bh 5296/* 16843 */ MCD::OPC_FilterValue, 1, 232, 33, 0, // Skip to: 25528 5297/* 16848 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5298/* 16851 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 16873 5299/* 16856 */ MCD::OPC_CheckPredicate, 22, 219, 33, 0, // Skip to: 25528 5300/* 16861 */ MCD::OPC_CheckField, 4, 1, 0, 212, 33, 0, // Skip to: 25528 5301/* 16868 */ MCD::OPC_Decode, 252, 11, 186, 1, // Opcode: MVE_VSHRNi32bh 5302/* 16873 */ MCD::OPC_FilterValue, 15, 202, 33, 0, // Skip to: 25528 5303/* 16878 */ MCD::OPC_CheckPredicate, 22, 197, 33, 0, // Skip to: 25528 5304/* 16883 */ MCD::OPC_CheckField, 4, 1, 0, 190, 33, 0, // Skip to: 25528 5305/* 16890 */ MCD::OPC_Decode, 208, 11, 186, 1, // Opcode: MVE_VRSHRNi32bh 5306/* 16895 */ MCD::OPC_FilterValue, 1, 180, 33, 0, // Skip to: 25528 5307/* 16900 */ MCD::OPC_CheckPredicate, 22, 175, 33, 0, // Skip to: 25528 5308/* 16905 */ MCD::OPC_CheckField, 28, 4, 14, 168, 33, 0, // Skip to: 25528 5309/* 16912 */ MCD::OPC_CheckField, 4, 2, 0, 161, 33, 0, // Skip to: 25528 5310/* 16919 */ MCD::OPC_Decode, 218, 11, 189, 1, // Opcode: MVE_VSHLC 5311/* 16924 */ MCD::OPC_FilterValue, 1, 151, 33, 0, // Skip to: 25528 5312/* 16929 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 5313/* 16932 */ MCD::OPC_FilterValue, 0, 121, 0, 0, // Skip to: 17058 5314/* 16937 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5315/* 16940 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 17006 5316/* 16945 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5317/* 16948 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 16977 5318/* 16953 */ MCD::OPC_CheckPredicate, 22, 122, 33, 0, // Skip to: 25528 5319/* 16958 */ MCD::OPC_CheckField, 19, 1, 1, 115, 33, 0, // Skip to: 25528 5320/* 16965 */ MCD::OPC_CheckField, 4, 1, 0, 108, 33, 0, // Skip to: 25528 5321/* 16972 */ MCD::OPC_Decode, 139, 11, 185, 1, // Opcode: MVE_VQSHRUNs16th 5322/* 16977 */ MCD::OPC_FilterValue, 15, 98, 33, 0, // Skip to: 25528 5323/* 16982 */ MCD::OPC_CheckPredicate, 22, 93, 33, 0, // Skip to: 25528 5324/* 16987 */ MCD::OPC_CheckField, 19, 1, 1, 86, 33, 0, // Skip to: 25528 5325/* 16994 */ MCD::OPC_CheckField, 4, 1, 0, 79, 33, 0, // Skip to: 25528 5326/* 17001 */ MCD::OPC_Decode, 234, 10, 185, 1, // Opcode: MVE_VQRSHRUNs16th 5327/* 17006 */ MCD::OPC_FilterValue, 1, 69, 33, 0, // Skip to: 25528 5328/* 17011 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5329/* 17014 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 17036 5330/* 17019 */ MCD::OPC_CheckPredicate, 22, 56, 33, 0, // Skip to: 25528 5331/* 17024 */ MCD::OPC_CheckField, 4, 1, 0, 49, 33, 0, // Skip to: 25528 5332/* 17031 */ MCD::OPC_Decode, 141, 11, 186, 1, // Opcode: MVE_VQSHRUNs32th 5333/* 17036 */ MCD::OPC_FilterValue, 15, 39, 33, 0, // Skip to: 25528 5334/* 17041 */ MCD::OPC_CheckPredicate, 22, 34, 33, 0, // Skip to: 25528 5335/* 17046 */ MCD::OPC_CheckField, 4, 1, 0, 27, 33, 0, // Skip to: 25528 5336/* 17053 */ MCD::OPC_Decode, 236, 10, 186, 1, // Opcode: MVE_VQRSHRUNs32th 5337/* 17058 */ MCD::OPC_FilterValue, 1, 17, 33, 0, // Skip to: 25528 5338/* 17063 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5339/* 17066 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 17132 5340/* 17071 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5341/* 17074 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 17103 5342/* 17079 */ MCD::OPC_CheckPredicate, 22, 252, 32, 0, // Skip to: 25528 5343/* 17084 */ MCD::OPC_CheckField, 19, 1, 1, 245, 32, 0, // Skip to: 25528 5344/* 17091 */ MCD::OPC_CheckField, 4, 1, 0, 238, 32, 0, // Skip to: 25528 5345/* 17098 */ MCD::OPC_Decode, 251, 11, 185, 1, // Opcode: MVE_VSHRNi16th 5346/* 17103 */ MCD::OPC_FilterValue, 15, 228, 32, 0, // Skip to: 25528 5347/* 17108 */ MCD::OPC_CheckPredicate, 22, 223, 32, 0, // Skip to: 25528 5348/* 17113 */ MCD::OPC_CheckField, 19, 1, 1, 216, 32, 0, // Skip to: 25528 5349/* 17120 */ MCD::OPC_CheckField, 4, 1, 0, 209, 32, 0, // Skip to: 25528 5350/* 17127 */ MCD::OPC_Decode, 207, 11, 185, 1, // Opcode: MVE_VRSHRNi16th 5351/* 17132 */ MCD::OPC_FilterValue, 1, 199, 32, 0, // Skip to: 25528 5352/* 17137 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5353/* 17140 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 17162 5354/* 17145 */ MCD::OPC_CheckPredicate, 22, 186, 32, 0, // Skip to: 25528 5355/* 17150 */ MCD::OPC_CheckField, 4, 1, 0, 179, 32, 0, // Skip to: 25528 5356/* 17157 */ MCD::OPC_Decode, 253, 11, 186, 1, // Opcode: MVE_VSHRNi32th 5357/* 17162 */ MCD::OPC_FilterValue, 15, 169, 32, 0, // Skip to: 25528 5358/* 17167 */ MCD::OPC_CheckPredicate, 22, 164, 32, 0, // Skip to: 25528 5359/* 17172 */ MCD::OPC_CheckField, 4, 1, 0, 157, 32, 0, // Skip to: 25528 5360/* 17179 */ MCD::OPC_Decode, 209, 11, 186, 1, // Opcode: MVE_VRSHRNi32th 5361/* 17184 */ MCD::OPC_FilterValue, 2, 15, 19, 0, // Skip to: 22068 5362/* 17189 */ MCD::OPC_ExtractField, 8, 5, // Inst{12-8} ... 5363/* 17192 */ MCD::OPC_FilterValue, 0, 251, 1, 0, // Skip to: 17704 5364/* 17197 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5365/* 17200 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 17368 5366/* 17205 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5367/* 17208 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 17288 5368/* 17213 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5369/* 17216 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17252 5370/* 17221 */ MCD::OPC_CheckPredicate, 22, 110, 32, 0, // Skip to: 25528 5371/* 17226 */ MCD::OPC_CheckField, 16, 1, 0, 103, 32, 0, // Skip to: 25528 5372/* 17233 */ MCD::OPC_CheckField, 6, 1, 1, 96, 32, 0, // Skip to: 25528 5373/* 17240 */ MCD::OPC_CheckField, 0, 1, 0, 89, 32, 0, // Skip to: 25528 5374/* 17247 */ MCD::OPC_Decode, 190, 7, 144, 1, // Opcode: MVE_VHADDs8 5375/* 17252 */ MCD::OPC_FilterValue, 15, 79, 32, 0, // Skip to: 25528 5376/* 17257 */ MCD::OPC_CheckPredicate, 22, 74, 32, 0, // Skip to: 25528 5377/* 17262 */ MCD::OPC_CheckField, 16, 1, 0, 67, 32, 0, // Skip to: 25528 5378/* 17269 */ MCD::OPC_CheckField, 6, 1, 1, 60, 32, 0, // Skip to: 25528 5379/* 17276 */ MCD::OPC_CheckField, 0, 1, 0, 53, 32, 0, // Skip to: 25528 5380/* 17283 */ MCD::OPC_Decode, 193, 7, 144, 1, // Opcode: MVE_VHADDu8 5381/* 17288 */ MCD::OPC_FilterValue, 1, 43, 32, 0, // Skip to: 25528 5382/* 17293 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5383/* 17296 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17332 5384/* 17301 */ MCD::OPC_CheckPredicate, 22, 30, 32, 0, // Skip to: 25528 5385/* 17306 */ MCD::OPC_CheckField, 16, 1, 0, 23, 32, 0, // Skip to: 25528 5386/* 17313 */ MCD::OPC_CheckField, 6, 1, 1, 16, 32, 0, // Skip to: 25528 5387/* 17320 */ MCD::OPC_CheckField, 0, 1, 0, 9, 32, 0, // Skip to: 25528 5388/* 17327 */ MCD::OPC_Decode, 138, 10, 144, 1, // Opcode: MVE_VQADDs8 5389/* 17332 */ MCD::OPC_FilterValue, 15, 255, 31, 0, // Skip to: 25528 5390/* 17337 */ MCD::OPC_CheckPredicate, 22, 250, 31, 0, // Skip to: 25528 5391/* 17342 */ MCD::OPC_CheckField, 16, 1, 0, 243, 31, 0, // Skip to: 25528 5392/* 17349 */ MCD::OPC_CheckField, 6, 1, 1, 236, 31, 0, // Skip to: 25528 5393/* 17356 */ MCD::OPC_CheckField, 0, 1, 0, 229, 31, 0, // Skip to: 25528 5394/* 17363 */ MCD::OPC_Decode, 141, 10, 144, 1, // Opcode: MVE_VQADDu8 5395/* 17368 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 17536 5396/* 17373 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5397/* 17376 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 17456 5398/* 17381 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5399/* 17384 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17420 5400/* 17389 */ MCD::OPC_CheckPredicate, 22, 198, 31, 0, // Skip to: 25528 5401/* 17394 */ MCD::OPC_CheckField, 16, 1, 0, 191, 31, 0, // Skip to: 25528 5402/* 17401 */ MCD::OPC_CheckField, 6, 1, 1, 184, 31, 0, // Skip to: 25528 5403/* 17408 */ MCD::OPC_CheckField, 0, 1, 0, 177, 31, 0, // Skip to: 25528 5404/* 17415 */ MCD::OPC_Decode, 188, 7, 144, 1, // Opcode: MVE_VHADDs16 5405/* 17420 */ MCD::OPC_FilterValue, 15, 167, 31, 0, // Skip to: 25528 5406/* 17425 */ MCD::OPC_CheckPredicate, 22, 162, 31, 0, // Skip to: 25528 5407/* 17430 */ MCD::OPC_CheckField, 16, 1, 0, 155, 31, 0, // Skip to: 25528 5408/* 17437 */ MCD::OPC_CheckField, 6, 1, 1, 148, 31, 0, // Skip to: 25528 5409/* 17444 */ MCD::OPC_CheckField, 0, 1, 0, 141, 31, 0, // Skip to: 25528 5410/* 17451 */ MCD::OPC_Decode, 191, 7, 144, 1, // Opcode: MVE_VHADDu16 5411/* 17456 */ MCD::OPC_FilterValue, 1, 131, 31, 0, // Skip to: 25528 5412/* 17461 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5413/* 17464 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17500 5414/* 17469 */ MCD::OPC_CheckPredicate, 22, 118, 31, 0, // Skip to: 25528 5415/* 17474 */ MCD::OPC_CheckField, 16, 1, 0, 111, 31, 0, // Skip to: 25528 5416/* 17481 */ MCD::OPC_CheckField, 6, 1, 1, 104, 31, 0, // Skip to: 25528 5417/* 17488 */ MCD::OPC_CheckField, 0, 1, 0, 97, 31, 0, // Skip to: 25528 5418/* 17495 */ MCD::OPC_Decode, 136, 10, 144, 1, // Opcode: MVE_VQADDs16 5419/* 17500 */ MCD::OPC_FilterValue, 15, 87, 31, 0, // Skip to: 25528 5420/* 17505 */ MCD::OPC_CheckPredicate, 22, 82, 31, 0, // Skip to: 25528 5421/* 17510 */ MCD::OPC_CheckField, 16, 1, 0, 75, 31, 0, // Skip to: 25528 5422/* 17517 */ MCD::OPC_CheckField, 6, 1, 1, 68, 31, 0, // Skip to: 25528 5423/* 17524 */ MCD::OPC_CheckField, 0, 1, 0, 61, 31, 0, // Skip to: 25528 5424/* 17531 */ MCD::OPC_Decode, 139, 10, 144, 1, // Opcode: MVE_VQADDu16 5425/* 17536 */ MCD::OPC_FilterValue, 2, 51, 31, 0, // Skip to: 25528 5426/* 17541 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5427/* 17544 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 17624 5428/* 17549 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5429/* 17552 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17588 5430/* 17557 */ MCD::OPC_CheckPredicate, 22, 30, 31, 0, // Skip to: 25528 5431/* 17562 */ MCD::OPC_CheckField, 16, 1, 0, 23, 31, 0, // Skip to: 25528 5432/* 17569 */ MCD::OPC_CheckField, 6, 1, 1, 16, 31, 0, // Skip to: 25528 5433/* 17576 */ MCD::OPC_CheckField, 0, 1, 0, 9, 31, 0, // Skip to: 25528 5434/* 17583 */ MCD::OPC_Decode, 189, 7, 144, 1, // Opcode: MVE_VHADDs32 5435/* 17588 */ MCD::OPC_FilterValue, 15, 255, 30, 0, // Skip to: 25528 5436/* 17593 */ MCD::OPC_CheckPredicate, 22, 250, 30, 0, // Skip to: 25528 5437/* 17598 */ MCD::OPC_CheckField, 16, 1, 0, 243, 30, 0, // Skip to: 25528 5438/* 17605 */ MCD::OPC_CheckField, 6, 1, 1, 236, 30, 0, // Skip to: 25528 5439/* 17612 */ MCD::OPC_CheckField, 0, 1, 0, 229, 30, 0, // Skip to: 25528 5440/* 17619 */ MCD::OPC_Decode, 192, 7, 144, 1, // Opcode: MVE_VHADDu32 5441/* 17624 */ MCD::OPC_FilterValue, 1, 219, 30, 0, // Skip to: 25528 5442/* 17629 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5443/* 17632 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17668 5444/* 17637 */ MCD::OPC_CheckPredicate, 22, 206, 30, 0, // Skip to: 25528 5445/* 17642 */ MCD::OPC_CheckField, 16, 1, 0, 199, 30, 0, // Skip to: 25528 5446/* 17649 */ MCD::OPC_CheckField, 6, 1, 1, 192, 30, 0, // Skip to: 25528 5447/* 17656 */ MCD::OPC_CheckField, 0, 1, 0, 185, 30, 0, // Skip to: 25528 5448/* 17663 */ MCD::OPC_Decode, 137, 10, 144, 1, // Opcode: MVE_VQADDs32 5449/* 17668 */ MCD::OPC_FilterValue, 15, 175, 30, 0, // Skip to: 25528 5450/* 17673 */ MCD::OPC_CheckPredicate, 22, 170, 30, 0, // Skip to: 25528 5451/* 17678 */ MCD::OPC_CheckField, 16, 1, 0, 163, 30, 0, // Skip to: 25528 5452/* 17685 */ MCD::OPC_CheckField, 6, 1, 1, 156, 30, 0, // Skip to: 25528 5453/* 17692 */ MCD::OPC_CheckField, 0, 1, 0, 149, 30, 0, // Skip to: 25528 5454/* 17699 */ MCD::OPC_Decode, 140, 10, 144, 1, // Opcode: MVE_VQADDu32 5455/* 17704 */ MCD::OPC_FilterValue, 1, 227, 1, 0, // Skip to: 18192 5456/* 17709 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5457/* 17712 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 17880 5458/* 17717 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5459/* 17720 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 17800 5460/* 17725 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5461/* 17728 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17764 5462/* 17733 */ MCD::OPC_CheckPredicate, 22, 110, 30, 0, // Skip to: 25528 5463/* 17738 */ MCD::OPC_CheckField, 16, 1, 0, 103, 30, 0, // Skip to: 25528 5464/* 17745 */ MCD::OPC_CheckField, 6, 1, 1, 96, 30, 0, // Skip to: 25528 5465/* 17752 */ MCD::OPC_CheckField, 0, 1, 0, 89, 30, 0, // Skip to: 25528 5466/* 17759 */ MCD::OPC_Decode, 162, 11, 144, 1, // Opcode: MVE_VRHADDs8 5467/* 17764 */ MCD::OPC_FilterValue, 15, 79, 30, 0, // Skip to: 25528 5468/* 17769 */ MCD::OPC_CheckPredicate, 22, 74, 30, 0, // Skip to: 25528 5469/* 17774 */ MCD::OPC_CheckField, 16, 1, 0, 67, 30, 0, // Skip to: 25528 5470/* 17781 */ MCD::OPC_CheckField, 6, 1, 1, 60, 30, 0, // Skip to: 25528 5471/* 17788 */ MCD::OPC_CheckField, 0, 1, 0, 53, 30, 0, // Skip to: 25528 5472/* 17795 */ MCD::OPC_Decode, 165, 11, 144, 1, // Opcode: MVE_VRHADDu8 5473/* 17800 */ MCD::OPC_FilterValue, 1, 43, 30, 0, // Skip to: 25528 5474/* 17805 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5475/* 17808 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17844 5476/* 17813 */ MCD::OPC_CheckPredicate, 22, 30, 30, 0, // Skip to: 25528 5477/* 17818 */ MCD::OPC_CheckField, 16, 1, 0, 23, 30, 0, // Skip to: 25528 5478/* 17825 */ MCD::OPC_CheckField, 6, 1, 1, 16, 30, 0, // Skip to: 25528 5479/* 17832 */ MCD::OPC_CheckField, 0, 1, 0, 9, 30, 0, // Skip to: 25528 5480/* 17839 */ MCD::OPC_Decode, 204, 6, 144, 1, // Opcode: MVE_VAND 5481/* 17844 */ MCD::OPC_FilterValue, 15, 255, 29, 0, // Skip to: 25528 5482/* 17849 */ MCD::OPC_CheckPredicate, 22, 250, 29, 0, // Skip to: 25528 5483/* 17854 */ MCD::OPC_CheckField, 16, 1, 0, 243, 29, 0, // Skip to: 25528 5484/* 17861 */ MCD::OPC_CheckField, 6, 1, 1, 236, 29, 0, // Skip to: 25528 5485/* 17868 */ MCD::OPC_CheckField, 0, 1, 0, 229, 29, 0, // Skip to: 25528 5486/* 17875 */ MCD::OPC_Decode, 173, 7, 144, 1, // Opcode: MVE_VEOR 5487/* 17880 */ MCD::OPC_FilterValue, 1, 126, 0, 0, // Skip to: 18011 5488/* 17885 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5489/* 17888 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 17968 5490/* 17893 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5491/* 17896 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 17932 5492/* 17901 */ MCD::OPC_CheckPredicate, 22, 198, 29, 0, // Skip to: 25528 5493/* 17906 */ MCD::OPC_CheckField, 16, 1, 0, 191, 29, 0, // Skip to: 25528 5494/* 17913 */ MCD::OPC_CheckField, 6, 1, 1, 184, 29, 0, // Skip to: 25528 5495/* 17920 */ MCD::OPC_CheckField, 0, 1, 0, 177, 29, 0, // Skip to: 25528 5496/* 17927 */ MCD::OPC_Decode, 160, 11, 144, 1, // Opcode: MVE_VRHADDs16 5497/* 17932 */ MCD::OPC_FilterValue, 15, 167, 29, 0, // Skip to: 25528 5498/* 17937 */ MCD::OPC_CheckPredicate, 22, 162, 29, 0, // Skip to: 25528 5499/* 17942 */ MCD::OPC_CheckField, 16, 1, 0, 155, 29, 0, // Skip to: 25528 5500/* 17949 */ MCD::OPC_CheckField, 6, 1, 1, 148, 29, 0, // Skip to: 25528 5501/* 17956 */ MCD::OPC_CheckField, 0, 1, 0, 141, 29, 0, // Skip to: 25528 5502/* 17963 */ MCD::OPC_Decode, 163, 11, 144, 1, // Opcode: MVE_VRHADDu16 5503/* 17968 */ MCD::OPC_FilterValue, 1, 131, 29, 0, // Skip to: 25528 5504/* 17973 */ MCD::OPC_CheckPredicate, 22, 126, 29, 0, // Skip to: 25528 5505/* 17978 */ MCD::OPC_CheckField, 28, 4, 14, 119, 29, 0, // Skip to: 25528 5506/* 17985 */ MCD::OPC_CheckField, 16, 1, 0, 112, 29, 0, // Skip to: 25528 5507/* 17992 */ MCD::OPC_CheckField, 6, 1, 1, 105, 29, 0, // Skip to: 25528 5508/* 17999 */ MCD::OPC_CheckField, 0, 1, 0, 98, 29, 0, // Skip to: 25528 5509/* 18006 */ MCD::OPC_Decode, 205, 6, 144, 1, // Opcode: MVE_VBIC 5510/* 18011 */ MCD::OPC_FilterValue, 2, 126, 0, 0, // Skip to: 18142 5511/* 18016 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5512/* 18019 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18099 5513/* 18024 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5514/* 18027 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18063 5515/* 18032 */ MCD::OPC_CheckPredicate, 22, 67, 29, 0, // Skip to: 25528 5516/* 18037 */ MCD::OPC_CheckField, 16, 1, 0, 60, 29, 0, // Skip to: 25528 5517/* 18044 */ MCD::OPC_CheckField, 6, 1, 1, 53, 29, 0, // Skip to: 25528 5518/* 18051 */ MCD::OPC_CheckField, 0, 1, 0, 46, 29, 0, // Skip to: 25528 5519/* 18058 */ MCD::OPC_Decode, 161, 11, 144, 1, // Opcode: MVE_VRHADDs32 5520/* 18063 */ MCD::OPC_FilterValue, 15, 36, 29, 0, // Skip to: 25528 5521/* 18068 */ MCD::OPC_CheckPredicate, 22, 31, 29, 0, // Skip to: 25528 5522/* 18073 */ MCD::OPC_CheckField, 16, 1, 0, 24, 29, 0, // Skip to: 25528 5523/* 18080 */ MCD::OPC_CheckField, 6, 1, 1, 17, 29, 0, // Skip to: 25528 5524/* 18087 */ MCD::OPC_CheckField, 0, 1, 0, 10, 29, 0, // Skip to: 25528 5525/* 18094 */ MCD::OPC_Decode, 164, 11, 144, 1, // Opcode: MVE_VRHADDu32 5526/* 18099 */ MCD::OPC_FilterValue, 1, 0, 29, 0, // Skip to: 25528 5527/* 18104 */ MCD::OPC_CheckPredicate, 22, 251, 28, 0, // Skip to: 25528 5528/* 18109 */ MCD::OPC_CheckField, 28, 4, 14, 244, 28, 0, // Skip to: 25528 5529/* 18116 */ MCD::OPC_CheckField, 16, 1, 0, 237, 28, 0, // Skip to: 25528 5530/* 18123 */ MCD::OPC_CheckField, 6, 1, 1, 230, 28, 0, // Skip to: 25528 5531/* 18130 */ MCD::OPC_CheckField, 0, 1, 0, 223, 28, 0, // Skip to: 25528 5532/* 18137 */ MCD::OPC_Decode, 223, 9, 144, 1, // Opcode: MVE_VORR 5533/* 18142 */ MCD::OPC_FilterValue, 3, 213, 28, 0, // Skip to: 25528 5534/* 18147 */ MCD::OPC_CheckPredicate, 22, 208, 28, 0, // Skip to: 25528 5535/* 18152 */ MCD::OPC_CheckField, 28, 4, 14, 201, 28, 0, // Skip to: 25528 5536/* 18159 */ MCD::OPC_CheckField, 16, 1, 0, 194, 28, 0, // Skip to: 25528 5537/* 18166 */ MCD::OPC_CheckField, 6, 1, 1, 187, 28, 0, // Skip to: 25528 5538/* 18173 */ MCD::OPC_CheckField, 4, 1, 1, 180, 28, 0, // Skip to: 25528 5539/* 18180 */ MCD::OPC_CheckField, 0, 1, 0, 173, 28, 0, // Skip to: 25528 5540/* 18187 */ MCD::OPC_Decode, 222, 9, 144, 1, // Opcode: MVE_VORN 5541/* 18192 */ MCD::OPC_FilterValue, 2, 251, 1, 0, // Skip to: 18704 5542/* 18197 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5543/* 18200 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 18368 5544/* 18205 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5545/* 18208 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18288 5546/* 18213 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5547/* 18216 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18252 5548/* 18221 */ MCD::OPC_CheckPredicate, 22, 134, 28, 0, // Skip to: 25528 5549/* 18226 */ MCD::OPC_CheckField, 16, 1, 0, 127, 28, 0, // Skip to: 25528 5550/* 18233 */ MCD::OPC_CheckField, 6, 1, 1, 120, 28, 0, // Skip to: 25528 5551/* 18240 */ MCD::OPC_CheckField, 0, 1, 0, 113, 28, 0, // Skip to: 25528 5552/* 18247 */ MCD::OPC_Decode, 205, 7, 144, 1, // Opcode: MVE_VHSUBs8 5553/* 18252 */ MCD::OPC_FilterValue, 15, 103, 28, 0, // Skip to: 25528 5554/* 18257 */ MCD::OPC_CheckPredicate, 22, 98, 28, 0, // Skip to: 25528 5555/* 18262 */ MCD::OPC_CheckField, 16, 1, 0, 91, 28, 0, // Skip to: 25528 5556/* 18269 */ MCD::OPC_CheckField, 6, 1, 1, 84, 28, 0, // Skip to: 25528 5557/* 18276 */ MCD::OPC_CheckField, 0, 1, 0, 77, 28, 0, // Skip to: 25528 5558/* 18283 */ MCD::OPC_Decode, 208, 7, 144, 1, // Opcode: MVE_VHSUBu8 5559/* 18288 */ MCD::OPC_FilterValue, 1, 67, 28, 0, // Skip to: 25528 5560/* 18293 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5561/* 18296 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18332 5562/* 18301 */ MCD::OPC_CheckPredicate, 22, 54, 28, 0, // Skip to: 25528 5563/* 18306 */ MCD::OPC_CheckField, 16, 1, 0, 47, 28, 0, // Skip to: 25528 5564/* 18313 */ MCD::OPC_CheckField, 6, 1, 1, 40, 28, 0, // Skip to: 25528 5565/* 18320 */ MCD::OPC_CheckField, 0, 1, 0, 33, 28, 0, // Skip to: 25528 5566/* 18327 */ MCD::OPC_Decode, 150, 11, 144, 1, // Opcode: MVE_VQSUBs8 5567/* 18332 */ MCD::OPC_FilterValue, 15, 23, 28, 0, // Skip to: 25528 5568/* 18337 */ MCD::OPC_CheckPredicate, 22, 18, 28, 0, // Skip to: 25528 5569/* 18342 */ MCD::OPC_CheckField, 16, 1, 0, 11, 28, 0, // Skip to: 25528 5570/* 18349 */ MCD::OPC_CheckField, 6, 1, 1, 4, 28, 0, // Skip to: 25528 5571/* 18356 */ MCD::OPC_CheckField, 0, 1, 0, 253, 27, 0, // Skip to: 25528 5572/* 18363 */ MCD::OPC_Decode, 153, 11, 144, 1, // Opcode: MVE_VQSUBu8 5573/* 18368 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 18536 5574/* 18373 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5575/* 18376 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18456 5576/* 18381 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5577/* 18384 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18420 5578/* 18389 */ MCD::OPC_CheckPredicate, 22, 222, 27, 0, // Skip to: 25528 5579/* 18394 */ MCD::OPC_CheckField, 16, 1, 0, 215, 27, 0, // Skip to: 25528 5580/* 18401 */ MCD::OPC_CheckField, 6, 1, 1, 208, 27, 0, // Skip to: 25528 5581/* 18408 */ MCD::OPC_CheckField, 0, 1, 0, 201, 27, 0, // Skip to: 25528 5582/* 18415 */ MCD::OPC_Decode, 203, 7, 144, 1, // Opcode: MVE_VHSUBs16 5583/* 18420 */ MCD::OPC_FilterValue, 15, 191, 27, 0, // Skip to: 25528 5584/* 18425 */ MCD::OPC_CheckPredicate, 22, 186, 27, 0, // Skip to: 25528 5585/* 18430 */ MCD::OPC_CheckField, 16, 1, 0, 179, 27, 0, // Skip to: 25528 5586/* 18437 */ MCD::OPC_CheckField, 6, 1, 1, 172, 27, 0, // Skip to: 25528 5587/* 18444 */ MCD::OPC_CheckField, 0, 1, 0, 165, 27, 0, // Skip to: 25528 5588/* 18451 */ MCD::OPC_Decode, 206, 7, 144, 1, // Opcode: MVE_VHSUBu16 5589/* 18456 */ MCD::OPC_FilterValue, 1, 155, 27, 0, // Skip to: 25528 5590/* 18461 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5591/* 18464 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18500 5592/* 18469 */ MCD::OPC_CheckPredicate, 22, 142, 27, 0, // Skip to: 25528 5593/* 18474 */ MCD::OPC_CheckField, 16, 1, 0, 135, 27, 0, // Skip to: 25528 5594/* 18481 */ MCD::OPC_CheckField, 6, 1, 1, 128, 27, 0, // Skip to: 25528 5595/* 18488 */ MCD::OPC_CheckField, 0, 1, 0, 121, 27, 0, // Skip to: 25528 5596/* 18495 */ MCD::OPC_Decode, 148, 11, 144, 1, // Opcode: MVE_VQSUBs16 5597/* 18500 */ MCD::OPC_FilterValue, 15, 111, 27, 0, // Skip to: 25528 5598/* 18505 */ MCD::OPC_CheckPredicate, 22, 106, 27, 0, // Skip to: 25528 5599/* 18510 */ MCD::OPC_CheckField, 16, 1, 0, 99, 27, 0, // Skip to: 25528 5600/* 18517 */ MCD::OPC_CheckField, 6, 1, 1, 92, 27, 0, // Skip to: 25528 5601/* 18524 */ MCD::OPC_CheckField, 0, 1, 0, 85, 27, 0, // Skip to: 25528 5602/* 18531 */ MCD::OPC_Decode, 151, 11, 144, 1, // Opcode: MVE_VQSUBu16 5603/* 18536 */ MCD::OPC_FilterValue, 2, 75, 27, 0, // Skip to: 25528 5604/* 18541 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5605/* 18544 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18624 5606/* 18549 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5607/* 18552 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18588 5608/* 18557 */ MCD::OPC_CheckPredicate, 22, 54, 27, 0, // Skip to: 25528 5609/* 18562 */ MCD::OPC_CheckField, 16, 1, 0, 47, 27, 0, // Skip to: 25528 5610/* 18569 */ MCD::OPC_CheckField, 6, 1, 1, 40, 27, 0, // Skip to: 25528 5611/* 18576 */ MCD::OPC_CheckField, 0, 1, 0, 33, 27, 0, // Skip to: 25528 5612/* 18583 */ MCD::OPC_Decode, 204, 7, 144, 1, // Opcode: MVE_VHSUBs32 5613/* 18588 */ MCD::OPC_FilterValue, 15, 23, 27, 0, // Skip to: 25528 5614/* 18593 */ MCD::OPC_CheckPredicate, 22, 18, 27, 0, // Skip to: 25528 5615/* 18598 */ MCD::OPC_CheckField, 16, 1, 0, 11, 27, 0, // Skip to: 25528 5616/* 18605 */ MCD::OPC_CheckField, 6, 1, 1, 4, 27, 0, // Skip to: 25528 5617/* 18612 */ MCD::OPC_CheckField, 0, 1, 0, 253, 26, 0, // Skip to: 25528 5618/* 18619 */ MCD::OPC_Decode, 207, 7, 144, 1, // Opcode: MVE_VHSUBu32 5619/* 18624 */ MCD::OPC_FilterValue, 1, 243, 26, 0, // Skip to: 25528 5620/* 18629 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5621/* 18632 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18668 5622/* 18637 */ MCD::OPC_CheckPredicate, 22, 230, 26, 0, // Skip to: 25528 5623/* 18642 */ MCD::OPC_CheckField, 16, 1, 0, 223, 26, 0, // Skip to: 25528 5624/* 18649 */ MCD::OPC_CheckField, 6, 1, 1, 216, 26, 0, // Skip to: 25528 5625/* 18656 */ MCD::OPC_CheckField, 0, 1, 0, 209, 26, 0, // Skip to: 25528 5626/* 18663 */ MCD::OPC_Decode, 149, 11, 144, 1, // Opcode: MVE_VQSUBs32 5627/* 18668 */ MCD::OPC_FilterValue, 15, 199, 26, 0, // Skip to: 25528 5628/* 18673 */ MCD::OPC_CheckPredicate, 22, 194, 26, 0, // Skip to: 25528 5629/* 18678 */ MCD::OPC_CheckField, 16, 1, 0, 187, 26, 0, // Skip to: 25528 5630/* 18685 */ MCD::OPC_CheckField, 6, 1, 1, 180, 26, 0, // Skip to: 25528 5631/* 18692 */ MCD::OPC_CheckField, 0, 1, 0, 173, 26, 0, // Skip to: 25528 5632/* 18699 */ MCD::OPC_Decode, 152, 11, 144, 1, // Opcode: MVE_VQSUBu32 5633/* 18704 */ MCD::OPC_FilterValue, 4, 251, 1, 0, // Skip to: 19216 5634/* 18709 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5635/* 18712 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 18880 5636/* 18717 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5637/* 18720 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18800 5638/* 18725 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5639/* 18728 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18764 5640/* 18733 */ MCD::OPC_CheckPredicate, 22, 134, 26, 0, // Skip to: 25528 5641/* 18738 */ MCD::OPC_CheckField, 16, 1, 0, 127, 26, 0, // Skip to: 25528 5642/* 18745 */ MCD::OPC_CheckField, 6, 1, 1, 120, 26, 0, // Skip to: 25528 5643/* 18752 */ MCD::OPC_CheckField, 0, 1, 0, 113, 26, 0, // Skip to: 25528 5644/* 18759 */ MCD::OPC_Decode, 237, 11, 190, 1, // Opcode: MVE_VSHL_by_vecs8 5645/* 18764 */ MCD::OPC_FilterValue, 15, 103, 26, 0, // Skip to: 25528 5646/* 18769 */ MCD::OPC_CheckPredicate, 22, 98, 26, 0, // Skip to: 25528 5647/* 18774 */ MCD::OPC_CheckField, 16, 1, 0, 91, 26, 0, // Skip to: 25528 5648/* 18781 */ MCD::OPC_CheckField, 6, 1, 1, 84, 26, 0, // Skip to: 25528 5649/* 18788 */ MCD::OPC_CheckField, 0, 1, 0, 77, 26, 0, // Skip to: 25528 5650/* 18795 */ MCD::OPC_Decode, 240, 11, 190, 1, // Opcode: MVE_VSHL_by_vecu8 5651/* 18800 */ MCD::OPC_FilterValue, 1, 67, 26, 0, // Skip to: 25528 5652/* 18805 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5653/* 18808 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18844 5654/* 18813 */ MCD::OPC_CheckPredicate, 22, 54, 26, 0, // Skip to: 25528 5655/* 18818 */ MCD::OPC_CheckField, 16, 1, 0, 47, 26, 0, // Skip to: 25528 5656/* 18825 */ MCD::OPC_CheckField, 6, 1, 1, 40, 26, 0, // Skip to: 25528 5657/* 18832 */ MCD::OPC_CheckField, 0, 1, 0, 33, 26, 0, // Skip to: 25528 5658/* 18839 */ MCD::OPC_Decode, 242, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecs8 5659/* 18844 */ MCD::OPC_FilterValue, 15, 23, 26, 0, // Skip to: 25528 5660/* 18849 */ MCD::OPC_CheckPredicate, 22, 18, 26, 0, // Skip to: 25528 5661/* 18854 */ MCD::OPC_CheckField, 16, 1, 0, 11, 26, 0, // Skip to: 25528 5662/* 18861 */ MCD::OPC_CheckField, 6, 1, 1, 4, 26, 0, // Skip to: 25528 5663/* 18868 */ MCD::OPC_CheckField, 0, 1, 0, 253, 25, 0, // Skip to: 25528 5664/* 18875 */ MCD::OPC_Decode, 245, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecu8 5665/* 18880 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 19048 5666/* 18885 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5667/* 18888 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 18968 5668/* 18893 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5669/* 18896 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 18932 5670/* 18901 */ MCD::OPC_CheckPredicate, 22, 222, 25, 0, // Skip to: 25528 5671/* 18906 */ MCD::OPC_CheckField, 16, 1, 0, 215, 25, 0, // Skip to: 25528 5672/* 18913 */ MCD::OPC_CheckField, 6, 1, 1, 208, 25, 0, // Skip to: 25528 5673/* 18920 */ MCD::OPC_CheckField, 0, 1, 0, 201, 25, 0, // Skip to: 25528 5674/* 18927 */ MCD::OPC_Decode, 235, 11, 190, 1, // Opcode: MVE_VSHL_by_vecs16 5675/* 18932 */ MCD::OPC_FilterValue, 15, 191, 25, 0, // Skip to: 25528 5676/* 18937 */ MCD::OPC_CheckPredicate, 22, 186, 25, 0, // Skip to: 25528 5677/* 18942 */ MCD::OPC_CheckField, 16, 1, 0, 179, 25, 0, // Skip to: 25528 5678/* 18949 */ MCD::OPC_CheckField, 6, 1, 1, 172, 25, 0, // Skip to: 25528 5679/* 18956 */ MCD::OPC_CheckField, 0, 1, 0, 165, 25, 0, // Skip to: 25528 5680/* 18963 */ MCD::OPC_Decode, 238, 11, 190, 1, // Opcode: MVE_VSHL_by_vecu16 5681/* 18968 */ MCD::OPC_FilterValue, 1, 155, 25, 0, // Skip to: 25528 5682/* 18973 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5683/* 18976 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19012 5684/* 18981 */ MCD::OPC_CheckPredicate, 22, 142, 25, 0, // Skip to: 25528 5685/* 18986 */ MCD::OPC_CheckField, 16, 1, 0, 135, 25, 0, // Skip to: 25528 5686/* 18993 */ MCD::OPC_CheckField, 6, 1, 1, 128, 25, 0, // Skip to: 25528 5687/* 19000 */ MCD::OPC_CheckField, 0, 1, 0, 121, 25, 0, // Skip to: 25528 5688/* 19007 */ MCD::OPC_Decode, 240, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecs16 5689/* 19012 */ MCD::OPC_FilterValue, 15, 111, 25, 0, // Skip to: 25528 5690/* 19017 */ MCD::OPC_CheckPredicate, 22, 106, 25, 0, // Skip to: 25528 5691/* 19022 */ MCD::OPC_CheckField, 16, 1, 0, 99, 25, 0, // Skip to: 25528 5692/* 19029 */ MCD::OPC_CheckField, 6, 1, 1, 92, 25, 0, // Skip to: 25528 5693/* 19036 */ MCD::OPC_CheckField, 0, 1, 0, 85, 25, 0, // Skip to: 25528 5694/* 19043 */ MCD::OPC_Decode, 243, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecu16 5695/* 19048 */ MCD::OPC_FilterValue, 2, 75, 25, 0, // Skip to: 25528 5696/* 19053 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5697/* 19056 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19136 5698/* 19061 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5699/* 19064 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19100 5700/* 19069 */ MCD::OPC_CheckPredicate, 22, 54, 25, 0, // Skip to: 25528 5701/* 19074 */ MCD::OPC_CheckField, 16, 1, 0, 47, 25, 0, // Skip to: 25528 5702/* 19081 */ MCD::OPC_CheckField, 6, 1, 1, 40, 25, 0, // Skip to: 25528 5703/* 19088 */ MCD::OPC_CheckField, 0, 1, 0, 33, 25, 0, // Skip to: 25528 5704/* 19095 */ MCD::OPC_Decode, 236, 11, 190, 1, // Opcode: MVE_VSHL_by_vecs32 5705/* 19100 */ MCD::OPC_FilterValue, 15, 23, 25, 0, // Skip to: 25528 5706/* 19105 */ MCD::OPC_CheckPredicate, 22, 18, 25, 0, // Skip to: 25528 5707/* 19110 */ MCD::OPC_CheckField, 16, 1, 0, 11, 25, 0, // Skip to: 25528 5708/* 19117 */ MCD::OPC_CheckField, 6, 1, 1, 4, 25, 0, // Skip to: 25528 5709/* 19124 */ MCD::OPC_CheckField, 0, 1, 0, 253, 24, 0, // Skip to: 25528 5710/* 19131 */ MCD::OPC_Decode, 239, 11, 190, 1, // Opcode: MVE_VSHL_by_vecu32 5711/* 19136 */ MCD::OPC_FilterValue, 1, 243, 24, 0, // Skip to: 25528 5712/* 19141 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5713/* 19144 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19180 5714/* 19149 */ MCD::OPC_CheckPredicate, 22, 230, 24, 0, // Skip to: 25528 5715/* 19154 */ MCD::OPC_CheckField, 16, 1, 0, 223, 24, 0, // Skip to: 25528 5716/* 19161 */ MCD::OPC_CheckField, 6, 1, 1, 216, 24, 0, // Skip to: 25528 5717/* 19168 */ MCD::OPC_CheckField, 0, 1, 0, 209, 24, 0, // Skip to: 25528 5718/* 19175 */ MCD::OPC_Decode, 241, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecs32 5719/* 19180 */ MCD::OPC_FilterValue, 15, 199, 24, 0, // Skip to: 25528 5720/* 19185 */ MCD::OPC_CheckPredicate, 22, 194, 24, 0, // Skip to: 25528 5721/* 19190 */ MCD::OPC_CheckField, 16, 1, 0, 187, 24, 0, // Skip to: 25528 5722/* 19197 */ MCD::OPC_CheckField, 6, 1, 1, 180, 24, 0, // Skip to: 25528 5723/* 19204 */ MCD::OPC_CheckField, 0, 1, 0, 173, 24, 0, // Skip to: 25528 5724/* 19211 */ MCD::OPC_Decode, 244, 10, 190, 1, // Opcode: MVE_VQSHL_by_vecu32 5725/* 19216 */ MCD::OPC_FilterValue, 5, 251, 1, 0, // Skip to: 19728 5726/* 19221 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5727/* 19224 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 19392 5728/* 19229 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5729/* 19232 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19312 5730/* 19237 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5731/* 19240 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19276 5732/* 19245 */ MCD::OPC_CheckPredicate, 22, 134, 24, 0, // Skip to: 25528 5733/* 19250 */ MCD::OPC_CheckField, 16, 1, 0, 127, 24, 0, // Skip to: 25528 5734/* 19257 */ MCD::OPC_CheckField, 6, 1, 1, 120, 24, 0, // Skip to: 25528 5735/* 19264 */ MCD::OPC_CheckField, 0, 1, 0, 113, 24, 0, // Skip to: 25528 5736/* 19271 */ MCD::OPC_Decode, 196, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecs8 5737/* 19276 */ MCD::OPC_FilterValue, 15, 103, 24, 0, // Skip to: 25528 5738/* 19281 */ MCD::OPC_CheckPredicate, 22, 98, 24, 0, // Skip to: 25528 5739/* 19286 */ MCD::OPC_CheckField, 16, 1, 0, 91, 24, 0, // Skip to: 25528 5740/* 19293 */ MCD::OPC_CheckField, 6, 1, 1, 84, 24, 0, // Skip to: 25528 5741/* 19300 */ MCD::OPC_CheckField, 0, 1, 0, 77, 24, 0, // Skip to: 25528 5742/* 19307 */ MCD::OPC_Decode, 199, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecu8 5743/* 19312 */ MCD::OPC_FilterValue, 1, 67, 24, 0, // Skip to: 25528 5744/* 19317 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5745/* 19320 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19356 5746/* 19325 */ MCD::OPC_CheckPredicate, 22, 54, 24, 0, // Skip to: 25528 5747/* 19330 */ MCD::OPC_CheckField, 16, 1, 0, 47, 24, 0, // Skip to: 25528 5748/* 19337 */ MCD::OPC_CheckField, 6, 1, 1, 40, 24, 0, // Skip to: 25528 5749/* 19344 */ MCD::OPC_CheckField, 0, 1, 0, 33, 24, 0, // Skip to: 25528 5750/* 19351 */ MCD::OPC_Decode, 215, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecs8 5751/* 19356 */ MCD::OPC_FilterValue, 15, 23, 24, 0, // Skip to: 25528 5752/* 19361 */ MCD::OPC_CheckPredicate, 22, 18, 24, 0, // Skip to: 25528 5753/* 19366 */ MCD::OPC_CheckField, 16, 1, 0, 11, 24, 0, // Skip to: 25528 5754/* 19373 */ MCD::OPC_CheckField, 6, 1, 1, 4, 24, 0, // Skip to: 25528 5755/* 19380 */ MCD::OPC_CheckField, 0, 1, 0, 253, 23, 0, // Skip to: 25528 5756/* 19387 */ MCD::OPC_Decode, 218, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecu8 5757/* 19392 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 19560 5758/* 19397 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5759/* 19400 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19480 5760/* 19405 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5761/* 19408 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19444 5762/* 19413 */ MCD::OPC_CheckPredicate, 22, 222, 23, 0, // Skip to: 25528 5763/* 19418 */ MCD::OPC_CheckField, 16, 1, 0, 215, 23, 0, // Skip to: 25528 5764/* 19425 */ MCD::OPC_CheckField, 6, 1, 1, 208, 23, 0, // Skip to: 25528 5765/* 19432 */ MCD::OPC_CheckField, 0, 1, 0, 201, 23, 0, // Skip to: 25528 5766/* 19439 */ MCD::OPC_Decode, 194, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecs16 5767/* 19444 */ MCD::OPC_FilterValue, 15, 191, 23, 0, // Skip to: 25528 5768/* 19449 */ MCD::OPC_CheckPredicate, 22, 186, 23, 0, // Skip to: 25528 5769/* 19454 */ MCD::OPC_CheckField, 16, 1, 0, 179, 23, 0, // Skip to: 25528 5770/* 19461 */ MCD::OPC_CheckField, 6, 1, 1, 172, 23, 0, // Skip to: 25528 5771/* 19468 */ MCD::OPC_CheckField, 0, 1, 0, 165, 23, 0, // Skip to: 25528 5772/* 19475 */ MCD::OPC_Decode, 197, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecu16 5773/* 19480 */ MCD::OPC_FilterValue, 1, 155, 23, 0, // Skip to: 25528 5774/* 19485 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5775/* 19488 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19524 5776/* 19493 */ MCD::OPC_CheckPredicate, 22, 142, 23, 0, // Skip to: 25528 5777/* 19498 */ MCD::OPC_CheckField, 16, 1, 0, 135, 23, 0, // Skip to: 25528 5778/* 19505 */ MCD::OPC_CheckField, 6, 1, 1, 128, 23, 0, // Skip to: 25528 5779/* 19512 */ MCD::OPC_CheckField, 0, 1, 0, 121, 23, 0, // Skip to: 25528 5780/* 19519 */ MCD::OPC_Decode, 213, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecs16 5781/* 19524 */ MCD::OPC_FilterValue, 15, 111, 23, 0, // Skip to: 25528 5782/* 19529 */ MCD::OPC_CheckPredicate, 22, 106, 23, 0, // Skip to: 25528 5783/* 19534 */ MCD::OPC_CheckField, 16, 1, 0, 99, 23, 0, // Skip to: 25528 5784/* 19541 */ MCD::OPC_CheckField, 6, 1, 1, 92, 23, 0, // Skip to: 25528 5785/* 19548 */ MCD::OPC_CheckField, 0, 1, 0, 85, 23, 0, // Skip to: 25528 5786/* 19555 */ MCD::OPC_Decode, 216, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecu16 5787/* 19560 */ MCD::OPC_FilterValue, 2, 75, 23, 0, // Skip to: 25528 5788/* 19565 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5789/* 19568 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19648 5790/* 19573 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5791/* 19576 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19612 5792/* 19581 */ MCD::OPC_CheckPredicate, 22, 54, 23, 0, // Skip to: 25528 5793/* 19586 */ MCD::OPC_CheckField, 16, 1, 0, 47, 23, 0, // Skip to: 25528 5794/* 19593 */ MCD::OPC_CheckField, 6, 1, 1, 40, 23, 0, // Skip to: 25528 5795/* 19600 */ MCD::OPC_CheckField, 0, 1, 0, 33, 23, 0, // Skip to: 25528 5796/* 19607 */ MCD::OPC_Decode, 195, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecs32 5797/* 19612 */ MCD::OPC_FilterValue, 15, 23, 23, 0, // Skip to: 25528 5798/* 19617 */ MCD::OPC_CheckPredicate, 22, 18, 23, 0, // Skip to: 25528 5799/* 19622 */ MCD::OPC_CheckField, 16, 1, 0, 11, 23, 0, // Skip to: 25528 5800/* 19629 */ MCD::OPC_CheckField, 6, 1, 1, 4, 23, 0, // Skip to: 25528 5801/* 19636 */ MCD::OPC_CheckField, 0, 1, 0, 253, 22, 0, // Skip to: 25528 5802/* 19643 */ MCD::OPC_Decode, 198, 11, 190, 1, // Opcode: MVE_VRSHL_by_vecu32 5803/* 19648 */ MCD::OPC_FilterValue, 1, 243, 22, 0, // Skip to: 25528 5804/* 19653 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5805/* 19656 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19692 5806/* 19661 */ MCD::OPC_CheckPredicate, 22, 230, 22, 0, // Skip to: 25528 5807/* 19666 */ MCD::OPC_CheckField, 16, 1, 0, 223, 22, 0, // Skip to: 25528 5808/* 19673 */ MCD::OPC_CheckField, 6, 1, 1, 216, 22, 0, // Skip to: 25528 5809/* 19680 */ MCD::OPC_CheckField, 0, 1, 0, 209, 22, 0, // Skip to: 25528 5810/* 19687 */ MCD::OPC_Decode, 214, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecs32 5811/* 19692 */ MCD::OPC_FilterValue, 15, 199, 22, 0, // Skip to: 25528 5812/* 19697 */ MCD::OPC_CheckPredicate, 22, 194, 22, 0, // Skip to: 25528 5813/* 19702 */ MCD::OPC_CheckField, 16, 1, 0, 187, 22, 0, // Skip to: 25528 5814/* 19709 */ MCD::OPC_CheckField, 6, 1, 1, 180, 22, 0, // Skip to: 25528 5815/* 19716 */ MCD::OPC_CheckField, 0, 1, 0, 173, 22, 0, // Skip to: 25528 5816/* 19723 */ MCD::OPC_Decode, 217, 10, 190, 1, // Opcode: MVE_VQRSHL_by_vecu32 5817/* 19728 */ MCD::OPC_FilterValue, 6, 251, 1, 0, // Skip to: 20240 5818/* 19733 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5819/* 19736 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 19904 5820/* 19741 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5821/* 19744 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19824 5822/* 19749 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5823/* 19752 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19788 5824/* 19757 */ MCD::OPC_CheckPredicate, 22, 134, 22, 0, // Skip to: 25528 5825/* 19762 */ MCD::OPC_CheckField, 16, 1, 0, 127, 22, 0, // Skip to: 25528 5826/* 19769 */ MCD::OPC_CheckField, 6, 1, 1, 120, 22, 0, // Skip to: 25528 5827/* 19776 */ MCD::OPC_CheckField, 0, 1, 0, 113, 22, 0, // Skip to: 25528 5828/* 19783 */ MCD::OPC_Decode, 191, 8, 144, 1, // Opcode: MVE_VMAXs8 5829/* 19788 */ MCD::OPC_FilterValue, 15, 103, 22, 0, // Skip to: 25528 5830/* 19793 */ MCD::OPC_CheckPredicate, 22, 98, 22, 0, // Skip to: 25528 5831/* 19798 */ MCD::OPC_CheckField, 16, 1, 0, 91, 22, 0, // Skip to: 25528 5832/* 19805 */ MCD::OPC_CheckField, 6, 1, 1, 84, 22, 0, // Skip to: 25528 5833/* 19812 */ MCD::OPC_CheckField, 0, 1, 0, 77, 22, 0, // Skip to: 25528 5834/* 19819 */ MCD::OPC_Decode, 194, 8, 144, 1, // Opcode: MVE_VMAXu8 5835/* 19824 */ MCD::OPC_FilterValue, 1, 67, 22, 0, // Skip to: 25528 5836/* 19829 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5837/* 19832 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19868 5838/* 19837 */ MCD::OPC_CheckPredicate, 22, 54, 22, 0, // Skip to: 25528 5839/* 19842 */ MCD::OPC_CheckField, 16, 1, 0, 47, 22, 0, // Skip to: 25528 5840/* 19849 */ MCD::OPC_CheckField, 6, 1, 1, 40, 22, 0, // Skip to: 25528 5841/* 19856 */ MCD::OPC_CheckField, 0, 1, 0, 33, 22, 0, // Skip to: 25528 5842/* 19863 */ MCD::OPC_Decode, 217, 8, 144, 1, // Opcode: MVE_VMINs8 5843/* 19868 */ MCD::OPC_FilterValue, 15, 23, 22, 0, // Skip to: 25528 5844/* 19873 */ MCD::OPC_CheckPredicate, 22, 18, 22, 0, // Skip to: 25528 5845/* 19878 */ MCD::OPC_CheckField, 16, 1, 0, 11, 22, 0, // Skip to: 25528 5846/* 19885 */ MCD::OPC_CheckField, 6, 1, 1, 4, 22, 0, // Skip to: 25528 5847/* 19892 */ MCD::OPC_CheckField, 0, 1, 0, 253, 21, 0, // Skip to: 25528 5848/* 19899 */ MCD::OPC_Decode, 220, 8, 144, 1, // Opcode: MVE_VMINu8 5849/* 19904 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 20072 5850/* 19909 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5851/* 19912 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 19992 5852/* 19917 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5853/* 19920 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 19956 5854/* 19925 */ MCD::OPC_CheckPredicate, 22, 222, 21, 0, // Skip to: 25528 5855/* 19930 */ MCD::OPC_CheckField, 16, 1, 0, 215, 21, 0, // Skip to: 25528 5856/* 19937 */ MCD::OPC_CheckField, 6, 1, 1, 208, 21, 0, // Skip to: 25528 5857/* 19944 */ MCD::OPC_CheckField, 0, 1, 0, 201, 21, 0, // Skip to: 25528 5858/* 19951 */ MCD::OPC_Decode, 189, 8, 144, 1, // Opcode: MVE_VMAXs16 5859/* 19956 */ MCD::OPC_FilterValue, 15, 191, 21, 0, // Skip to: 25528 5860/* 19961 */ MCD::OPC_CheckPredicate, 22, 186, 21, 0, // Skip to: 25528 5861/* 19966 */ MCD::OPC_CheckField, 16, 1, 0, 179, 21, 0, // Skip to: 25528 5862/* 19973 */ MCD::OPC_CheckField, 6, 1, 1, 172, 21, 0, // Skip to: 25528 5863/* 19980 */ MCD::OPC_CheckField, 0, 1, 0, 165, 21, 0, // Skip to: 25528 5864/* 19987 */ MCD::OPC_Decode, 192, 8, 144, 1, // Opcode: MVE_VMAXu16 5865/* 19992 */ MCD::OPC_FilterValue, 1, 155, 21, 0, // Skip to: 25528 5866/* 19997 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5867/* 20000 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 20036 5868/* 20005 */ MCD::OPC_CheckPredicate, 22, 142, 21, 0, // Skip to: 25528 5869/* 20010 */ MCD::OPC_CheckField, 16, 1, 0, 135, 21, 0, // Skip to: 25528 5870/* 20017 */ MCD::OPC_CheckField, 6, 1, 1, 128, 21, 0, // Skip to: 25528 5871/* 20024 */ MCD::OPC_CheckField, 0, 1, 0, 121, 21, 0, // Skip to: 25528 5872/* 20031 */ MCD::OPC_Decode, 215, 8, 144, 1, // Opcode: MVE_VMINs16 5873/* 20036 */ MCD::OPC_FilterValue, 15, 111, 21, 0, // Skip to: 25528 5874/* 20041 */ MCD::OPC_CheckPredicate, 22, 106, 21, 0, // Skip to: 25528 5875/* 20046 */ MCD::OPC_CheckField, 16, 1, 0, 99, 21, 0, // Skip to: 25528 5876/* 20053 */ MCD::OPC_CheckField, 6, 1, 1, 92, 21, 0, // Skip to: 25528 5877/* 20060 */ MCD::OPC_CheckField, 0, 1, 0, 85, 21, 0, // Skip to: 25528 5878/* 20067 */ MCD::OPC_Decode, 218, 8, 144, 1, // Opcode: MVE_VMINu16 5879/* 20072 */ MCD::OPC_FilterValue, 2, 75, 21, 0, // Skip to: 25528 5880/* 20077 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 5881/* 20080 */ MCD::OPC_FilterValue, 0, 75, 0, 0, // Skip to: 20160 5882/* 20085 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5883/* 20088 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 20124 5884/* 20093 */ MCD::OPC_CheckPredicate, 22, 54, 21, 0, // Skip to: 25528 5885/* 20098 */ MCD::OPC_CheckField, 16, 1, 0, 47, 21, 0, // Skip to: 25528 5886/* 20105 */ MCD::OPC_CheckField, 6, 1, 1, 40, 21, 0, // Skip to: 25528 5887/* 20112 */ MCD::OPC_CheckField, 0, 1, 0, 33, 21, 0, // Skip to: 25528 5888/* 20119 */ MCD::OPC_Decode, 190, 8, 144, 1, // Opcode: MVE_VMAXs32 5889/* 20124 */ MCD::OPC_FilterValue, 15, 23, 21, 0, // Skip to: 25528 5890/* 20129 */ MCD::OPC_CheckPredicate, 22, 18, 21, 0, // Skip to: 25528 5891/* 20134 */ MCD::OPC_CheckField, 16, 1, 0, 11, 21, 0, // Skip to: 25528 5892/* 20141 */ MCD::OPC_CheckField, 6, 1, 1, 4, 21, 0, // Skip to: 25528 5893/* 20148 */ MCD::OPC_CheckField, 0, 1, 0, 253, 20, 0, // Skip to: 25528 5894/* 20155 */ MCD::OPC_Decode, 193, 8, 144, 1, // Opcode: MVE_VMAXu32 5895/* 20160 */ MCD::OPC_FilterValue, 1, 243, 20, 0, // Skip to: 25528 5896/* 20165 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5897/* 20168 */ MCD::OPC_FilterValue, 14, 31, 0, 0, // Skip to: 20204 5898/* 20173 */ MCD::OPC_CheckPredicate, 22, 230, 20, 0, // Skip to: 25528 5899/* 20178 */ MCD::OPC_CheckField, 16, 1, 0, 223, 20, 0, // Skip to: 25528 5900/* 20185 */ MCD::OPC_CheckField, 6, 1, 1, 216, 20, 0, // Skip to: 25528 5901/* 20192 */ MCD::OPC_CheckField, 0, 1, 0, 209, 20, 0, // Skip to: 25528 5902/* 20199 */ MCD::OPC_Decode, 216, 8, 144, 1, // Opcode: MVE_VMINs32 5903/* 20204 */ MCD::OPC_FilterValue, 15, 199, 20, 0, // Skip to: 25528 5904/* 20209 */ MCD::OPC_CheckPredicate, 22, 194, 20, 0, // Skip to: 25528 5905/* 20214 */ MCD::OPC_CheckField, 16, 1, 0, 187, 20, 0, // Skip to: 25528 5906/* 20221 */ MCD::OPC_CheckField, 6, 1, 1, 180, 20, 0, // Skip to: 25528 5907/* 20228 */ MCD::OPC_CheckField, 0, 1, 0, 173, 20, 0, // Skip to: 25528 5908/* 20235 */ MCD::OPC_Decode, 219, 8, 144, 1, // Opcode: MVE_VMINu32 5909/* 20240 */ MCD::OPC_FilterValue, 7, 29, 1, 0, // Skip to: 20530 5910/* 20245 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5911/* 20248 */ MCD::OPC_FilterValue, 0, 89, 0, 0, // Skip to: 20342 5912/* 20253 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5913/* 20256 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20299 5914/* 20261 */ MCD::OPC_CheckPredicate, 22, 142, 20, 0, // Skip to: 25528 5915/* 20266 */ MCD::OPC_CheckField, 16, 1, 0, 135, 20, 0, // Skip to: 25528 5916/* 20273 */ MCD::OPC_CheckField, 6, 1, 1, 128, 20, 0, // Skip to: 25528 5917/* 20280 */ MCD::OPC_CheckField, 4, 1, 0, 121, 20, 0, // Skip to: 25528 5918/* 20287 */ MCD::OPC_CheckField, 0, 1, 0, 114, 20, 0, // Skip to: 25528 5919/* 20294 */ MCD::OPC_Decode, 167, 6, 144, 1, // Opcode: MVE_VABDs8 5920/* 20299 */ MCD::OPC_FilterValue, 15, 104, 20, 0, // Skip to: 25528 5921/* 20304 */ MCD::OPC_CheckPredicate, 22, 99, 20, 0, // Skip to: 25528 5922/* 20309 */ MCD::OPC_CheckField, 16, 1, 0, 92, 20, 0, // Skip to: 25528 5923/* 20316 */ MCD::OPC_CheckField, 6, 1, 1, 85, 20, 0, // Skip to: 25528 5924/* 20323 */ MCD::OPC_CheckField, 4, 1, 0, 78, 20, 0, // Skip to: 25528 5925/* 20330 */ MCD::OPC_CheckField, 0, 1, 0, 71, 20, 0, // Skip to: 25528 5926/* 20337 */ MCD::OPC_Decode, 170, 6, 144, 1, // Opcode: MVE_VABDu8 5927/* 20342 */ MCD::OPC_FilterValue, 1, 89, 0, 0, // Skip to: 20436 5928/* 20347 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5929/* 20350 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20393 5930/* 20355 */ MCD::OPC_CheckPredicate, 22, 48, 20, 0, // Skip to: 25528 5931/* 20360 */ MCD::OPC_CheckField, 16, 1, 0, 41, 20, 0, // Skip to: 25528 5932/* 20367 */ MCD::OPC_CheckField, 6, 1, 1, 34, 20, 0, // Skip to: 25528 5933/* 20374 */ MCD::OPC_CheckField, 4, 1, 0, 27, 20, 0, // Skip to: 25528 5934/* 20381 */ MCD::OPC_CheckField, 0, 1, 0, 20, 20, 0, // Skip to: 25528 5935/* 20388 */ MCD::OPC_Decode, 165, 6, 144, 1, // Opcode: MVE_VABDs16 5936/* 20393 */ MCD::OPC_FilterValue, 15, 10, 20, 0, // Skip to: 25528 5937/* 20398 */ MCD::OPC_CheckPredicate, 22, 5, 20, 0, // Skip to: 25528 5938/* 20403 */ MCD::OPC_CheckField, 16, 1, 0, 254, 19, 0, // Skip to: 25528 5939/* 20410 */ MCD::OPC_CheckField, 6, 1, 1, 247, 19, 0, // Skip to: 25528 5940/* 20417 */ MCD::OPC_CheckField, 4, 1, 0, 240, 19, 0, // Skip to: 25528 5941/* 20424 */ MCD::OPC_CheckField, 0, 1, 0, 233, 19, 0, // Skip to: 25528 5942/* 20431 */ MCD::OPC_Decode, 168, 6, 144, 1, // Opcode: MVE_VABDu16 5943/* 20436 */ MCD::OPC_FilterValue, 2, 223, 19, 0, // Skip to: 25528 5944/* 20441 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5945/* 20444 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20487 5946/* 20449 */ MCD::OPC_CheckPredicate, 22, 210, 19, 0, // Skip to: 25528 5947/* 20454 */ MCD::OPC_CheckField, 16, 1, 0, 203, 19, 0, // Skip to: 25528 5948/* 20461 */ MCD::OPC_CheckField, 6, 1, 1, 196, 19, 0, // Skip to: 25528 5949/* 20468 */ MCD::OPC_CheckField, 4, 1, 0, 189, 19, 0, // Skip to: 25528 5950/* 20475 */ MCD::OPC_CheckField, 0, 1, 0, 182, 19, 0, // Skip to: 25528 5951/* 20482 */ MCD::OPC_Decode, 166, 6, 144, 1, // Opcode: MVE_VABDs32 5952/* 20487 */ MCD::OPC_FilterValue, 15, 172, 19, 0, // Skip to: 25528 5953/* 20492 */ MCD::OPC_CheckPredicate, 22, 167, 19, 0, // Skip to: 25528 5954/* 20497 */ MCD::OPC_CheckField, 16, 1, 0, 160, 19, 0, // Skip to: 25528 5955/* 20504 */ MCD::OPC_CheckField, 6, 1, 1, 153, 19, 0, // Skip to: 25528 5956/* 20511 */ MCD::OPC_CheckField, 4, 1, 0, 146, 19, 0, // Skip to: 25528 5957/* 20518 */ MCD::OPC_CheckField, 0, 1, 0, 139, 19, 0, // Skip to: 25528 5958/* 20525 */ MCD::OPC_Decode, 169, 6, 144, 1, // Opcode: MVE_VABDu32 5959/* 20530 */ MCD::OPC_FilterValue, 8, 29, 1, 0, // Skip to: 20820 5960/* 20535 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 5961/* 20538 */ MCD::OPC_FilterValue, 0, 89, 0, 0, // Skip to: 20632 5962/* 20543 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5963/* 20546 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20589 5964/* 20551 */ MCD::OPC_CheckPredicate, 22, 108, 19, 0, // Skip to: 25528 5965/* 20556 */ MCD::OPC_CheckField, 16, 1, 0, 101, 19, 0, // Skip to: 25528 5966/* 20563 */ MCD::OPC_CheckField, 6, 1, 1, 94, 19, 0, // Skip to: 25528 5967/* 20570 */ MCD::OPC_CheckField, 4, 1, 0, 87, 19, 0, // Skip to: 25528 5968/* 20577 */ MCD::OPC_CheckField, 0, 1, 0, 80, 19, 0, // Skip to: 25528 5969/* 20584 */ MCD::OPC_Decode, 203, 6, 144, 1, // Opcode: MVE_VADDi8 5970/* 20589 */ MCD::OPC_FilterValue, 15, 70, 19, 0, // Skip to: 25528 5971/* 20594 */ MCD::OPC_CheckPredicate, 22, 65, 19, 0, // Skip to: 25528 5972/* 20599 */ MCD::OPC_CheckField, 16, 1, 0, 58, 19, 0, // Skip to: 25528 5973/* 20606 */ MCD::OPC_CheckField, 6, 1, 1, 51, 19, 0, // Skip to: 25528 5974/* 20613 */ MCD::OPC_CheckField, 4, 1, 0, 44, 19, 0, // Skip to: 25528 5975/* 20620 */ MCD::OPC_CheckField, 0, 1, 0, 37, 19, 0, // Skip to: 25528 5976/* 20627 */ MCD::OPC_Decode, 216, 12, 144, 1, // Opcode: MVE_VSUBi8 5977/* 20632 */ MCD::OPC_FilterValue, 1, 89, 0, 0, // Skip to: 20726 5978/* 20637 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5979/* 20640 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20683 5980/* 20645 */ MCD::OPC_CheckPredicate, 22, 14, 19, 0, // Skip to: 25528 5981/* 20650 */ MCD::OPC_CheckField, 16, 1, 0, 7, 19, 0, // Skip to: 25528 5982/* 20657 */ MCD::OPC_CheckField, 6, 1, 1, 0, 19, 0, // Skip to: 25528 5983/* 20664 */ MCD::OPC_CheckField, 4, 1, 0, 249, 18, 0, // Skip to: 25528 5984/* 20671 */ MCD::OPC_CheckField, 0, 1, 0, 242, 18, 0, // Skip to: 25528 5985/* 20678 */ MCD::OPC_Decode, 201, 6, 144, 1, // Opcode: MVE_VADDi16 5986/* 20683 */ MCD::OPC_FilterValue, 15, 232, 18, 0, // Skip to: 25528 5987/* 20688 */ MCD::OPC_CheckPredicate, 22, 227, 18, 0, // Skip to: 25528 5988/* 20693 */ MCD::OPC_CheckField, 16, 1, 0, 220, 18, 0, // Skip to: 25528 5989/* 20700 */ MCD::OPC_CheckField, 6, 1, 1, 213, 18, 0, // Skip to: 25528 5990/* 20707 */ MCD::OPC_CheckField, 4, 1, 0, 206, 18, 0, // Skip to: 25528 5991/* 20714 */ MCD::OPC_CheckField, 0, 1, 0, 199, 18, 0, // Skip to: 25528 5992/* 20721 */ MCD::OPC_Decode, 214, 12, 144, 1, // Opcode: MVE_VSUBi16 5993/* 20726 */ MCD::OPC_FilterValue, 2, 189, 18, 0, // Skip to: 25528 5994/* 20731 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 5995/* 20734 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 20777 5996/* 20739 */ MCD::OPC_CheckPredicate, 22, 176, 18, 0, // Skip to: 25528 5997/* 20744 */ MCD::OPC_CheckField, 16, 1, 0, 169, 18, 0, // Skip to: 25528 5998/* 20751 */ MCD::OPC_CheckField, 6, 1, 1, 162, 18, 0, // Skip to: 25528 5999/* 20758 */ MCD::OPC_CheckField, 4, 1, 0, 155, 18, 0, // Skip to: 25528 6000/* 20765 */ MCD::OPC_CheckField, 0, 1, 0, 148, 18, 0, // Skip to: 25528 6001/* 20772 */ MCD::OPC_Decode, 202, 6, 144, 1, // Opcode: MVE_VADDi32 6002/* 20777 */ MCD::OPC_FilterValue, 15, 138, 18, 0, // Skip to: 25528 6003/* 20782 */ MCD::OPC_CheckPredicate, 22, 133, 18, 0, // Skip to: 25528 6004/* 20787 */ MCD::OPC_CheckField, 16, 1, 0, 126, 18, 0, // Skip to: 25528 6005/* 20794 */ MCD::OPC_CheckField, 6, 1, 1, 119, 18, 0, // Skip to: 25528 6006/* 20801 */ MCD::OPC_CheckField, 4, 1, 0, 112, 18, 0, // Skip to: 25528 6007/* 20808 */ MCD::OPC_CheckField, 0, 1, 0, 105, 18, 0, // Skip to: 25528 6008/* 20815 */ MCD::OPC_Decode, 215, 12, 144, 1, // Opcode: MVE_VSUBi32 6009/* 20820 */ MCD::OPC_FilterValue, 9, 153, 0, 0, // Skip to: 20978 6010/* 20825 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6011/* 20828 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 20878 6012/* 20833 */ MCD::OPC_CheckPredicate, 22, 82, 18, 0, // Skip to: 25528 6013/* 20838 */ MCD::OPC_CheckField, 28, 4, 14, 75, 18, 0, // Skip to: 25528 6014/* 20845 */ MCD::OPC_CheckField, 16, 1, 0, 68, 18, 0, // Skip to: 25528 6015/* 20852 */ MCD::OPC_CheckField, 6, 1, 1, 61, 18, 0, // Skip to: 25528 6016/* 20859 */ MCD::OPC_CheckField, 4, 1, 1, 54, 18, 0, // Skip to: 25528 6017/* 20866 */ MCD::OPC_CheckField, 0, 1, 0, 47, 18, 0, // Skip to: 25528 6018/* 20873 */ MCD::OPC_Decode, 213, 9, 144, 1, // Opcode: MVE_VMULi8 6019/* 20878 */ MCD::OPC_FilterValue, 1, 45, 0, 0, // Skip to: 20928 6020/* 20883 */ MCD::OPC_CheckPredicate, 22, 32, 18, 0, // Skip to: 25528 6021/* 20888 */ MCD::OPC_CheckField, 28, 4, 14, 25, 18, 0, // Skip to: 25528 6022/* 20895 */ MCD::OPC_CheckField, 16, 1, 0, 18, 18, 0, // Skip to: 25528 6023/* 20902 */ MCD::OPC_CheckField, 6, 1, 1, 11, 18, 0, // Skip to: 25528 6024/* 20909 */ MCD::OPC_CheckField, 4, 1, 1, 4, 18, 0, // Skip to: 25528 6025/* 20916 */ MCD::OPC_CheckField, 0, 1, 0, 253, 17, 0, // Skip to: 25528 6026/* 20923 */ MCD::OPC_Decode, 211, 9, 144, 1, // Opcode: MVE_VMULi16 6027/* 20928 */ MCD::OPC_FilterValue, 2, 243, 17, 0, // Skip to: 25528 6028/* 20933 */ MCD::OPC_CheckPredicate, 22, 238, 17, 0, // Skip to: 25528 6029/* 20938 */ MCD::OPC_CheckField, 28, 4, 14, 231, 17, 0, // Skip to: 25528 6030/* 20945 */ MCD::OPC_CheckField, 16, 1, 0, 224, 17, 0, // Skip to: 25528 6031/* 20952 */ MCD::OPC_CheckField, 6, 1, 1, 217, 17, 0, // Skip to: 25528 6032/* 20959 */ MCD::OPC_CheckField, 4, 1, 1, 210, 17, 0, // Skip to: 25528 6033/* 20966 */ MCD::OPC_CheckField, 0, 1, 0, 203, 17, 0, // Skip to: 25528 6034/* 20973 */ MCD::OPC_Decode, 212, 9, 144, 1, // Opcode: MVE_VMULi32 6035/* 20978 */ MCD::OPC_FilterValue, 11, 29, 1, 0, // Skip to: 21268 6036/* 20983 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6037/* 20986 */ MCD::OPC_FilterValue, 0, 89, 0, 0, // Skip to: 21080 6038/* 20991 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6039/* 20994 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 21037 6040/* 20999 */ MCD::OPC_CheckPredicate, 22, 172, 17, 0, // Skip to: 25528 6041/* 21004 */ MCD::OPC_CheckField, 16, 1, 0, 165, 17, 0, // Skip to: 25528 6042/* 21011 */ MCD::OPC_CheckField, 6, 1, 1, 158, 17, 0, // Skip to: 25528 6043/* 21018 */ MCD::OPC_CheckField, 4, 1, 0, 151, 17, 0, // Skip to: 25528 6044/* 21025 */ MCD::OPC_CheckField, 0, 1, 0, 144, 17, 0, // Skip to: 25528 6045/* 21032 */ MCD::OPC_Decode, 165, 10, 144, 1, // Opcode: MVE_VQDMULHi8 6046/* 21037 */ MCD::OPC_FilterValue, 15, 134, 17, 0, // Skip to: 25528 6047/* 21042 */ MCD::OPC_CheckPredicate, 22, 129, 17, 0, // Skip to: 25528 6048/* 21047 */ MCD::OPC_CheckField, 16, 1, 0, 122, 17, 0, // Skip to: 25528 6049/* 21054 */ MCD::OPC_CheckField, 6, 1, 1, 115, 17, 0, // Skip to: 25528 6050/* 21061 */ MCD::OPC_CheckField, 4, 1, 0, 108, 17, 0, // Skip to: 25528 6051/* 21068 */ MCD::OPC_CheckField, 0, 1, 0, 101, 17, 0, // Skip to: 25528 6052/* 21075 */ MCD::OPC_Decode, 212, 10, 144, 1, // Opcode: MVE_VQRDMULHi8 6053/* 21080 */ MCD::OPC_FilterValue, 1, 89, 0, 0, // Skip to: 21174 6054/* 21085 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6055/* 21088 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 21131 6056/* 21093 */ MCD::OPC_CheckPredicate, 22, 78, 17, 0, // Skip to: 25528 6057/* 21098 */ MCD::OPC_CheckField, 16, 1, 0, 71, 17, 0, // Skip to: 25528 6058/* 21105 */ MCD::OPC_CheckField, 6, 1, 1, 64, 17, 0, // Skip to: 25528 6059/* 21112 */ MCD::OPC_CheckField, 4, 1, 0, 57, 17, 0, // Skip to: 25528 6060/* 21119 */ MCD::OPC_CheckField, 0, 1, 0, 50, 17, 0, // Skip to: 25528 6061/* 21126 */ MCD::OPC_Decode, 163, 10, 144, 1, // Opcode: MVE_VQDMULHi16 6062/* 21131 */ MCD::OPC_FilterValue, 15, 40, 17, 0, // Skip to: 25528 6063/* 21136 */ MCD::OPC_CheckPredicate, 22, 35, 17, 0, // Skip to: 25528 6064/* 21141 */ MCD::OPC_CheckField, 16, 1, 0, 28, 17, 0, // Skip to: 25528 6065/* 21148 */ MCD::OPC_CheckField, 6, 1, 1, 21, 17, 0, // Skip to: 25528 6066/* 21155 */ MCD::OPC_CheckField, 4, 1, 0, 14, 17, 0, // Skip to: 25528 6067/* 21162 */ MCD::OPC_CheckField, 0, 1, 0, 7, 17, 0, // Skip to: 25528 6068/* 21169 */ MCD::OPC_Decode, 210, 10, 144, 1, // Opcode: MVE_VQRDMULHi16 6069/* 21174 */ MCD::OPC_FilterValue, 2, 253, 16, 0, // Skip to: 25528 6070/* 21179 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6071/* 21182 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 21225 6072/* 21187 */ MCD::OPC_CheckPredicate, 22, 240, 16, 0, // Skip to: 25528 6073/* 21192 */ MCD::OPC_CheckField, 16, 1, 0, 233, 16, 0, // Skip to: 25528 6074/* 21199 */ MCD::OPC_CheckField, 6, 1, 1, 226, 16, 0, // Skip to: 25528 6075/* 21206 */ MCD::OPC_CheckField, 4, 1, 0, 219, 16, 0, // Skip to: 25528 6076/* 21213 */ MCD::OPC_CheckField, 0, 1, 0, 212, 16, 0, // Skip to: 25528 6077/* 21220 */ MCD::OPC_Decode, 164, 10, 144, 1, // Opcode: MVE_VQDMULHi32 6078/* 21225 */ MCD::OPC_FilterValue, 15, 202, 16, 0, // Skip to: 25528 6079/* 21230 */ MCD::OPC_CheckPredicate, 22, 197, 16, 0, // Skip to: 25528 6080/* 21235 */ MCD::OPC_CheckField, 16, 1, 0, 190, 16, 0, // Skip to: 25528 6081/* 21242 */ MCD::OPC_CheckField, 6, 1, 1, 183, 16, 0, // Skip to: 25528 6082/* 21249 */ MCD::OPC_CheckField, 4, 1, 0, 176, 16, 0, // Skip to: 25528 6083/* 21256 */ MCD::OPC_CheckField, 0, 1, 0, 169, 16, 0, // Skip to: 25528 6084/* 21263 */ MCD::OPC_Decode, 211, 10, 144, 1, // Opcode: MVE_VQRDMULHi32 6085/* 21268 */ MCD::OPC_FilterValue, 12, 203, 0, 0, // Skip to: 21476 6086/* 21273 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6087/* 21276 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 21326 6088/* 21281 */ MCD::OPC_CheckPredicate, 24, 146, 16, 0, // Skip to: 25528 6089/* 21286 */ MCD::OPC_CheckField, 28, 4, 14, 139, 16, 0, // Skip to: 25528 6090/* 21293 */ MCD::OPC_CheckField, 16, 1, 0, 132, 16, 0, // Skip to: 25528 6091/* 21300 */ MCD::OPC_CheckField, 6, 1, 1, 125, 16, 0, // Skip to: 25528 6092/* 21307 */ MCD::OPC_CheckField, 4, 1, 1, 118, 16, 0, // Skip to: 25528 6093/* 21314 */ MCD::OPC_CheckField, 0, 1, 0, 111, 16, 0, // Skip to: 25528 6094/* 21321 */ MCD::OPC_Decode, 179, 7, 143, 1, // Opcode: MVE_VFMAf32 6095/* 21326 */ MCD::OPC_FilterValue, 1, 45, 0, 0, // Skip to: 21376 6096/* 21331 */ MCD::OPC_CheckPredicate, 24, 96, 16, 0, // Skip to: 25528 6097/* 21336 */ MCD::OPC_CheckField, 28, 4, 14, 89, 16, 0, // Skip to: 25528 6098/* 21343 */ MCD::OPC_CheckField, 16, 1, 0, 82, 16, 0, // Skip to: 25528 6099/* 21350 */ MCD::OPC_CheckField, 6, 1, 1, 75, 16, 0, // Skip to: 25528 6100/* 21357 */ MCD::OPC_CheckField, 4, 1, 1, 68, 16, 0, // Skip to: 25528 6101/* 21364 */ MCD::OPC_CheckField, 0, 1, 0, 61, 16, 0, // Skip to: 25528 6102/* 21371 */ MCD::OPC_Decode, 178, 7, 143, 1, // Opcode: MVE_VFMAf16 6103/* 21376 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 21426 6104/* 21381 */ MCD::OPC_CheckPredicate, 24, 46, 16, 0, // Skip to: 25528 6105/* 21386 */ MCD::OPC_CheckField, 28, 4, 14, 39, 16, 0, // Skip to: 25528 6106/* 21393 */ MCD::OPC_CheckField, 16, 1, 0, 32, 16, 0, // Skip to: 25528 6107/* 21400 */ MCD::OPC_CheckField, 6, 1, 1, 25, 16, 0, // Skip to: 25528 6108/* 21407 */ MCD::OPC_CheckField, 4, 1, 1, 18, 16, 0, // Skip to: 25528 6109/* 21414 */ MCD::OPC_CheckField, 0, 1, 0, 11, 16, 0, // Skip to: 25528 6110/* 21421 */ MCD::OPC_Decode, 181, 7, 143, 1, // Opcode: MVE_VFMSf32 6111/* 21426 */ MCD::OPC_FilterValue, 3, 1, 16, 0, // Skip to: 25528 6112/* 21431 */ MCD::OPC_CheckPredicate, 24, 252, 15, 0, // Skip to: 25528 6113/* 21436 */ MCD::OPC_CheckField, 28, 4, 14, 245, 15, 0, // Skip to: 25528 6114/* 21443 */ MCD::OPC_CheckField, 16, 1, 0, 238, 15, 0, // Skip to: 25528 6115/* 21450 */ MCD::OPC_CheckField, 6, 1, 1, 231, 15, 0, // Skip to: 25528 6116/* 21457 */ MCD::OPC_CheckField, 4, 1, 1, 224, 15, 0, // Skip to: 25528 6117/* 21464 */ MCD::OPC_CheckField, 0, 1, 0, 217, 15, 0, // Skip to: 25528 6118/* 21471 */ MCD::OPC_Decode, 180, 7, 143, 1, // Opcode: MVE_VFMSf16 6119/* 21476 */ MCD::OPC_FilterValue, 13, 123, 1, 0, // Skip to: 21860 6120/* 21481 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6121/* 21484 */ MCD::OPC_FilterValue, 0, 89, 0, 0, // Skip to: 21578 6122/* 21489 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 6123/* 21492 */ MCD::OPC_FilterValue, 0, 38, 0, 0, // Skip to: 21535 6124/* 21497 */ MCD::OPC_CheckPredicate, 24, 186, 15, 0, // Skip to: 25528 6125/* 21502 */ MCD::OPC_CheckField, 28, 4, 14, 179, 15, 0, // Skip to: 25528 6126/* 21509 */ MCD::OPC_CheckField, 16, 1, 0, 172, 15, 0, // Skip to: 25528 6127/* 21516 */ MCD::OPC_CheckField, 6, 1, 1, 165, 15, 0, // Skip to: 25528 6128/* 21523 */ MCD::OPC_CheckField, 0, 1, 0, 158, 15, 0, // Skip to: 25528 6129/* 21530 */ MCD::OPC_Decode, 200, 6, 144, 1, // Opcode: MVE_VADDf32 6130/* 21535 */ MCD::OPC_FilterValue, 1, 148, 15, 0, // Skip to: 25528 6131/* 21540 */ MCD::OPC_CheckPredicate, 24, 143, 15, 0, // Skip to: 25528 6132/* 21545 */ MCD::OPC_CheckField, 28, 4, 15, 136, 15, 0, // Skip to: 25528 6133/* 21552 */ MCD::OPC_CheckField, 16, 1, 0, 129, 15, 0, // Skip to: 25528 6134/* 21559 */ MCD::OPC_CheckField, 6, 1, 1, 122, 15, 0, // Skip to: 25528 6135/* 21566 */ MCD::OPC_CheckField, 0, 1, 0, 115, 15, 0, // Skip to: 25528 6136/* 21573 */ MCD::OPC_Decode, 210, 9, 144, 1, // Opcode: MVE_VMULf32 6137/* 21578 */ MCD::OPC_FilterValue, 1, 89, 0, 0, // Skip to: 21672 6138/* 21583 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 6139/* 21586 */ MCD::OPC_FilterValue, 0, 38, 0, 0, // Skip to: 21629 6140/* 21591 */ MCD::OPC_CheckPredicate, 24, 92, 15, 0, // Skip to: 25528 6141/* 21596 */ MCD::OPC_CheckField, 28, 4, 14, 85, 15, 0, // Skip to: 25528 6142/* 21603 */ MCD::OPC_CheckField, 16, 1, 0, 78, 15, 0, // Skip to: 25528 6143/* 21610 */ MCD::OPC_CheckField, 6, 1, 1, 71, 15, 0, // Skip to: 25528 6144/* 21617 */ MCD::OPC_CheckField, 0, 1, 0, 64, 15, 0, // Skip to: 25528 6145/* 21624 */ MCD::OPC_Decode, 199, 6, 144, 1, // Opcode: MVE_VADDf16 6146/* 21629 */ MCD::OPC_FilterValue, 1, 54, 15, 0, // Skip to: 25528 6147/* 21634 */ MCD::OPC_CheckPredicate, 24, 49, 15, 0, // Skip to: 25528 6148/* 21639 */ MCD::OPC_CheckField, 28, 4, 15, 42, 15, 0, // Skip to: 25528 6149/* 21646 */ MCD::OPC_CheckField, 16, 1, 0, 35, 15, 0, // Skip to: 25528 6150/* 21653 */ MCD::OPC_CheckField, 6, 1, 1, 28, 15, 0, // Skip to: 25528 6151/* 21660 */ MCD::OPC_CheckField, 0, 1, 0, 21, 15, 0, // Skip to: 25528 6152/* 21667 */ MCD::OPC_Decode, 209, 9, 144, 1, // Opcode: MVE_VMULf16 6153/* 21672 */ MCD::OPC_FilterValue, 2, 89, 0, 0, // Skip to: 21766 6154/* 21677 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6155/* 21680 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 21723 6156/* 21685 */ MCD::OPC_CheckPredicate, 24, 254, 14, 0, // Skip to: 25528 6157/* 21690 */ MCD::OPC_CheckField, 16, 1, 0, 247, 14, 0, // Skip to: 25528 6158/* 21697 */ MCD::OPC_CheckField, 6, 1, 1, 240, 14, 0, // Skip to: 25528 6159/* 21704 */ MCD::OPC_CheckField, 4, 1, 0, 233, 14, 0, // Skip to: 25528 6160/* 21711 */ MCD::OPC_CheckField, 0, 1, 0, 226, 14, 0, // Skip to: 25528 6161/* 21718 */ MCD::OPC_Decode, 213, 12, 144, 1, // Opcode: MVE_VSUBf32 6162/* 21723 */ MCD::OPC_FilterValue, 15, 216, 14, 0, // Skip to: 25528 6163/* 21728 */ MCD::OPC_CheckPredicate, 24, 211, 14, 0, // Skip to: 25528 6164/* 21733 */ MCD::OPC_CheckField, 16, 1, 0, 204, 14, 0, // Skip to: 25528 6165/* 21740 */ MCD::OPC_CheckField, 6, 1, 1, 197, 14, 0, // Skip to: 25528 6166/* 21747 */ MCD::OPC_CheckField, 4, 1, 0, 190, 14, 0, // Skip to: 25528 6167/* 21754 */ MCD::OPC_CheckField, 0, 1, 0, 183, 14, 0, // Skip to: 25528 6168/* 21761 */ MCD::OPC_Decode, 164, 6, 144, 1, // Opcode: MVE_VABDf32 6169/* 21766 */ MCD::OPC_FilterValue, 3, 173, 14, 0, // Skip to: 25528 6170/* 21771 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6171/* 21774 */ MCD::OPC_FilterValue, 14, 38, 0, 0, // Skip to: 21817 6172/* 21779 */ MCD::OPC_CheckPredicate, 24, 160, 14, 0, // Skip to: 25528 6173/* 21784 */ MCD::OPC_CheckField, 16, 1, 0, 153, 14, 0, // Skip to: 25528 6174/* 21791 */ MCD::OPC_CheckField, 6, 1, 1, 146, 14, 0, // Skip to: 25528 6175/* 21798 */ MCD::OPC_CheckField, 4, 1, 0, 139, 14, 0, // Skip to: 25528 6176/* 21805 */ MCD::OPC_CheckField, 0, 1, 0, 132, 14, 0, // Skip to: 25528 6177/* 21812 */ MCD::OPC_Decode, 212, 12, 144, 1, // Opcode: MVE_VSUBf16 6178/* 21817 */ MCD::OPC_FilterValue, 15, 122, 14, 0, // Skip to: 25528 6179/* 21822 */ MCD::OPC_CheckPredicate, 24, 117, 14, 0, // Skip to: 25528 6180/* 21827 */ MCD::OPC_CheckField, 16, 1, 0, 110, 14, 0, // Skip to: 25528 6181/* 21834 */ MCD::OPC_CheckField, 6, 1, 1, 103, 14, 0, // Skip to: 25528 6182/* 21841 */ MCD::OPC_CheckField, 4, 1, 0, 96, 14, 0, // Skip to: 25528 6183/* 21848 */ MCD::OPC_CheckField, 0, 1, 0, 89, 14, 0, // Skip to: 25528 6184/* 21855 */ MCD::OPC_Decode, 163, 6, 144, 1, // Opcode: MVE_VABDf16 6185/* 21860 */ MCD::OPC_FilterValue, 15, 79, 14, 0, // Skip to: 25528 6186/* 21865 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6187/* 21868 */ MCD::OPC_FilterValue, 0, 45, 0, 0, // Skip to: 21918 6188/* 21873 */ MCD::OPC_CheckPredicate, 24, 66, 14, 0, // Skip to: 25528 6189/* 21878 */ MCD::OPC_CheckField, 28, 4, 15, 59, 14, 0, // Skip to: 25528 6190/* 21885 */ MCD::OPC_CheckField, 16, 1, 0, 52, 14, 0, // Skip to: 25528 6191/* 21892 */ MCD::OPC_CheckField, 6, 1, 1, 45, 14, 0, // Skip to: 25528 6192/* 21899 */ MCD::OPC_CheckField, 4, 1, 1, 38, 14, 0, // Skip to: 25528 6193/* 21906 */ MCD::OPC_CheckField, 0, 1, 0, 31, 14, 0, // Skip to: 25528 6194/* 21913 */ MCD::OPC_Decode, 182, 8, 144, 1, // Opcode: MVE_VMAXNMf32 6195/* 21918 */ MCD::OPC_FilterValue, 1, 45, 0, 0, // Skip to: 21968 6196/* 21923 */ MCD::OPC_CheckPredicate, 24, 16, 14, 0, // Skip to: 25528 6197/* 21928 */ MCD::OPC_CheckField, 28, 4, 15, 9, 14, 0, // Skip to: 25528 6198/* 21935 */ MCD::OPC_CheckField, 16, 1, 0, 2, 14, 0, // Skip to: 25528 6199/* 21942 */ MCD::OPC_CheckField, 6, 1, 1, 251, 13, 0, // Skip to: 25528 6200/* 21949 */ MCD::OPC_CheckField, 4, 1, 1, 244, 13, 0, // Skip to: 25528 6201/* 21956 */ MCD::OPC_CheckField, 0, 1, 0, 237, 13, 0, // Skip to: 25528 6202/* 21963 */ MCD::OPC_Decode, 181, 8, 144, 1, // Opcode: MVE_VMAXNMf16 6203/* 21968 */ MCD::OPC_FilterValue, 2, 45, 0, 0, // Skip to: 22018 6204/* 21973 */ MCD::OPC_CheckPredicate, 24, 222, 13, 0, // Skip to: 25528 6205/* 21978 */ MCD::OPC_CheckField, 28, 4, 15, 215, 13, 0, // Skip to: 25528 6206/* 21985 */ MCD::OPC_CheckField, 16, 1, 0, 208, 13, 0, // Skip to: 25528 6207/* 21992 */ MCD::OPC_CheckField, 6, 1, 1, 201, 13, 0, // Skip to: 25528 6208/* 21999 */ MCD::OPC_CheckField, 4, 1, 1, 194, 13, 0, // Skip to: 25528 6209/* 22006 */ MCD::OPC_CheckField, 0, 1, 0, 187, 13, 0, // Skip to: 25528 6210/* 22013 */ MCD::OPC_Decode, 208, 8, 144, 1, // Opcode: MVE_VMINNMf32 6211/* 22018 */ MCD::OPC_FilterValue, 3, 177, 13, 0, // Skip to: 25528 6212/* 22023 */ MCD::OPC_CheckPredicate, 24, 172, 13, 0, // Skip to: 25528 6213/* 22028 */ MCD::OPC_CheckField, 28, 4, 15, 165, 13, 0, // Skip to: 25528 6214/* 22035 */ MCD::OPC_CheckField, 16, 1, 0, 158, 13, 0, // Skip to: 25528 6215/* 22042 */ MCD::OPC_CheckField, 6, 1, 1, 151, 13, 0, // Skip to: 25528 6216/* 22049 */ MCD::OPC_CheckField, 4, 1, 1, 144, 13, 0, // Skip to: 25528 6217/* 22056 */ MCD::OPC_CheckField, 0, 1, 0, 137, 13, 0, // Skip to: 25528 6218/* 22063 */ MCD::OPC_Decode, 207, 8, 144, 1, // Opcode: MVE_VMINNMf16 6219/* 22068 */ MCD::OPC_FilterValue, 3, 127, 13, 0, // Skip to: 25528 6220/* 22073 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 6221/* 22076 */ MCD::OPC_FilterValue, 0, 224, 7, 0, // Skip to: 24097 6222/* 22081 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 6223/* 22084 */ MCD::OPC_FilterValue, 1, 148, 0, 0, // Skip to: 22237 6224/* 22089 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6225/* 22092 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 22121 6226/* 22097 */ MCD::OPC_CheckPredicate, 22, 98, 13, 0, // Skip to: 25528 6227/* 22102 */ MCD::OPC_CheckField, 28, 4, 15, 91, 13, 0, // Skip to: 25528 6228/* 22109 */ MCD::OPC_CheckField, 0, 1, 0, 84, 13, 0, // Skip to: 25528 6229/* 22116 */ MCD::OPC_Decode, 159, 11, 148, 1, // Opcode: MVE_VREV64_8 6230/* 22121 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 22150 6231/* 22126 */ MCD::OPC_CheckPredicate, 22, 69, 13, 0, // Skip to: 25528 6232/* 22131 */ MCD::OPC_CheckField, 28, 4, 15, 62, 13, 0, // Skip to: 25528 6233/* 22138 */ MCD::OPC_CheckField, 0, 1, 0, 55, 13, 0, // Skip to: 25528 6234/* 22145 */ MCD::OPC_Decode, 157, 11, 148, 1, // Opcode: MVE_VREV64_16 6235/* 22150 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22179 6236/* 22155 */ MCD::OPC_CheckPredicate, 24, 40, 13, 0, // Skip to: 25528 6237/* 22160 */ MCD::OPC_CheckField, 28, 4, 15, 33, 13, 0, // Skip to: 25528 6238/* 22167 */ MCD::OPC_CheckField, 0, 1, 0, 26, 13, 0, // Skip to: 25528 6239/* 22174 */ MCD::OPC_Decode, 141, 7, 148, 1, // Opcode: MVE_VCVTs16f16a 6240/* 22179 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 22208 6241/* 22184 */ MCD::OPC_CheckPredicate, 22, 11, 13, 0, // Skip to: 25528 6242/* 22189 */ MCD::OPC_CheckField, 28, 4, 15, 4, 13, 0, // Skip to: 25528 6243/* 22196 */ MCD::OPC_CheckField, 0, 1, 0, 253, 12, 0, // Skip to: 25528 6244/* 22203 */ MCD::OPC_Decode, 158, 11, 148, 1, // Opcode: MVE_VREV64_32 6245/* 22208 */ MCD::OPC_FilterValue, 59, 243, 12, 0, // Skip to: 25528 6246/* 22213 */ MCD::OPC_CheckPredicate, 24, 238, 12, 0, // Skip to: 25528 6247/* 22218 */ MCD::OPC_CheckField, 28, 4, 15, 231, 12, 0, // Skip to: 25528 6248/* 22225 */ MCD::OPC_CheckField, 0, 1, 0, 224, 12, 0, // Skip to: 25528 6249/* 22232 */ MCD::OPC_Decode, 147, 7, 148, 1, // Opcode: MVE_VCVTs32f32a 6250/* 22237 */ MCD::OPC_FilterValue, 3, 119, 0, 0, // Skip to: 22361 6251/* 22242 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6252/* 22245 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 22274 6253/* 22250 */ MCD::OPC_CheckPredicate, 22, 201, 12, 0, // Skip to: 25528 6254/* 22255 */ MCD::OPC_CheckField, 28, 4, 15, 194, 12, 0, // Skip to: 25528 6255/* 22262 */ MCD::OPC_CheckField, 0, 1, 0, 187, 12, 0, // Skip to: 25528 6256/* 22269 */ MCD::OPC_Decode, 156, 11, 148, 1, // Opcode: MVE_VREV32_8 6257/* 22274 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 22303 6258/* 22279 */ MCD::OPC_CheckPredicate, 22, 172, 12, 0, // Skip to: 25528 6259/* 22284 */ MCD::OPC_CheckField, 28, 4, 15, 165, 12, 0, // Skip to: 25528 6260/* 22291 */ MCD::OPC_CheckField, 0, 1, 0, 158, 12, 0, // Skip to: 25528 6261/* 22298 */ MCD::OPC_Decode, 155, 11, 148, 1, // Opcode: MVE_VREV32_16 6262/* 22303 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22332 6263/* 22308 */ MCD::OPC_CheckPredicate, 24, 143, 12, 0, // Skip to: 25528 6264/* 22313 */ MCD::OPC_CheckField, 28, 4, 15, 136, 12, 0, // Skip to: 25528 6265/* 22320 */ MCD::OPC_CheckField, 0, 1, 0, 129, 12, 0, // Skip to: 25528 6266/* 22327 */ MCD::OPC_Decode, 153, 7, 148, 1, // Opcode: MVE_VCVTu16f16a 6267/* 22332 */ MCD::OPC_FilterValue, 59, 119, 12, 0, // Skip to: 25528 6268/* 22337 */ MCD::OPC_CheckPredicate, 24, 114, 12, 0, // Skip to: 25528 6269/* 22342 */ MCD::OPC_CheckField, 28, 4, 15, 107, 12, 0, // Skip to: 25528 6270/* 22349 */ MCD::OPC_CheckField, 0, 1, 0, 100, 12, 0, // Skip to: 25528 6271/* 22356 */ MCD::OPC_Decode, 159, 7, 148, 1, // Opcode: MVE_VCVTu32f32a 6272/* 22361 */ MCD::OPC_FilterValue, 5, 90, 0, 0, // Skip to: 22456 6273/* 22366 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6274/* 22369 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 22398 6275/* 22374 */ MCD::OPC_CheckPredicate, 22, 77, 12, 0, // Skip to: 25528 6276/* 22379 */ MCD::OPC_CheckField, 28, 4, 15, 70, 12, 0, // Skip to: 25528 6277/* 22386 */ MCD::OPC_CheckField, 0, 1, 0, 63, 12, 0, // Skip to: 25528 6278/* 22393 */ MCD::OPC_Decode, 154, 11, 148, 1, // Opcode: MVE_VREV16_8 6279/* 22398 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22427 6280/* 22403 */ MCD::OPC_CheckPredicate, 24, 48, 12, 0, // Skip to: 25528 6281/* 22408 */ MCD::OPC_CheckField, 28, 4, 15, 41, 12, 0, // Skip to: 25528 6282/* 22415 */ MCD::OPC_CheckField, 0, 1, 0, 34, 12, 0, // Skip to: 25528 6283/* 22422 */ MCD::OPC_Decode, 143, 7, 148, 1, // Opcode: MVE_VCVTs16f16n 6284/* 22427 */ MCD::OPC_FilterValue, 59, 24, 12, 0, // Skip to: 25528 6285/* 22432 */ MCD::OPC_CheckPredicate, 24, 19, 12, 0, // Skip to: 25528 6286/* 22437 */ MCD::OPC_CheckField, 28, 4, 15, 12, 12, 0, // Skip to: 25528 6287/* 22444 */ MCD::OPC_CheckField, 0, 1, 0, 5, 12, 0, // Skip to: 25528 6288/* 22451 */ MCD::OPC_Decode, 149, 7, 148, 1, // Opcode: MVE_VCVTs32f32n 6289/* 22456 */ MCD::OPC_FilterValue, 7, 61, 0, 0, // Skip to: 22522 6290/* 22461 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6291/* 22464 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22493 6292/* 22469 */ MCD::OPC_CheckPredicate, 24, 238, 11, 0, // Skip to: 25528 6293/* 22474 */ MCD::OPC_CheckField, 28, 4, 15, 231, 11, 0, // Skip to: 25528 6294/* 22481 */ MCD::OPC_CheckField, 0, 1, 0, 224, 11, 0, // Skip to: 25528 6295/* 22488 */ MCD::OPC_Decode, 155, 7, 148, 1, // Opcode: MVE_VCVTu16f16n 6296/* 22493 */ MCD::OPC_FilterValue, 59, 214, 11, 0, // Skip to: 25528 6297/* 22498 */ MCD::OPC_CheckPredicate, 24, 209, 11, 0, // Skip to: 25528 6298/* 22503 */ MCD::OPC_CheckField, 28, 4, 15, 202, 11, 0, // Skip to: 25528 6299/* 22510 */ MCD::OPC_CheckField, 0, 1, 0, 195, 11, 0, // Skip to: 25528 6300/* 22517 */ MCD::OPC_Decode, 161, 7, 148, 1, // Opcode: MVE_VCVTu32f32n 6301/* 22522 */ MCD::OPC_FilterValue, 9, 61, 0, 0, // Skip to: 22588 6302/* 22527 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6303/* 22530 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22559 6304/* 22535 */ MCD::OPC_CheckPredicate, 24, 172, 11, 0, // Skip to: 25528 6305/* 22540 */ MCD::OPC_CheckField, 28, 4, 15, 165, 11, 0, // Skip to: 25528 6306/* 22547 */ MCD::OPC_CheckField, 0, 1, 0, 158, 11, 0, // Skip to: 25528 6307/* 22554 */ MCD::OPC_Decode, 144, 7, 148, 1, // Opcode: MVE_VCVTs16f16p 6308/* 22559 */ MCD::OPC_FilterValue, 59, 148, 11, 0, // Skip to: 25528 6309/* 22564 */ MCD::OPC_CheckPredicate, 24, 143, 11, 0, // Skip to: 25528 6310/* 22569 */ MCD::OPC_CheckField, 28, 4, 15, 136, 11, 0, // Skip to: 25528 6311/* 22576 */ MCD::OPC_CheckField, 0, 1, 0, 129, 11, 0, // Skip to: 25528 6312/* 22583 */ MCD::OPC_Decode, 150, 7, 148, 1, // Opcode: MVE_VCVTs32f32p 6313/* 22588 */ MCD::OPC_FilterValue, 11, 61, 0, 0, // Skip to: 22654 6314/* 22593 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6315/* 22596 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22625 6316/* 22601 */ MCD::OPC_CheckPredicate, 24, 106, 11, 0, // Skip to: 25528 6317/* 22606 */ MCD::OPC_CheckField, 28, 4, 15, 99, 11, 0, // Skip to: 25528 6318/* 22613 */ MCD::OPC_CheckField, 0, 1, 0, 92, 11, 0, // Skip to: 25528 6319/* 22620 */ MCD::OPC_Decode, 156, 7, 148, 1, // Opcode: MVE_VCVTu16f16p 6320/* 22625 */ MCD::OPC_FilterValue, 59, 82, 11, 0, // Skip to: 25528 6321/* 22630 */ MCD::OPC_CheckPredicate, 24, 77, 11, 0, // Skip to: 25528 6322/* 22635 */ MCD::OPC_CheckField, 28, 4, 15, 70, 11, 0, // Skip to: 25528 6323/* 22642 */ MCD::OPC_CheckField, 0, 1, 0, 63, 11, 0, // Skip to: 25528 6324/* 22649 */ MCD::OPC_Decode, 162, 7, 148, 1, // Opcode: MVE_VCVTu32f32p 6325/* 22654 */ MCD::OPC_FilterValue, 13, 148, 0, 0, // Skip to: 22807 6326/* 22659 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6327/* 22662 */ MCD::OPC_FilterValue, 49, 24, 0, 0, // Skip to: 22691 6328/* 22667 */ MCD::OPC_CheckPredicate, 22, 40, 11, 0, // Skip to: 25528 6329/* 22672 */ MCD::OPC_CheckField, 28, 4, 15, 33, 11, 0, // Skip to: 25528 6330/* 22679 */ MCD::OPC_CheckField, 0, 1, 0, 26, 11, 0, // Skip to: 25528 6331/* 22686 */ MCD::OPC_Decode, 175, 6, 148, 1, // Opcode: MVE_VABSs8 6332/* 22691 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 22720 6333/* 22696 */ MCD::OPC_CheckPredicate, 22, 11, 11, 0, // Skip to: 25528 6334/* 22701 */ MCD::OPC_CheckField, 28, 4, 15, 4, 11, 0, // Skip to: 25528 6335/* 22708 */ MCD::OPC_CheckField, 0, 1, 0, 253, 10, 0, // Skip to: 25528 6336/* 22715 */ MCD::OPC_Decode, 173, 6, 148, 1, // Opcode: MVE_VABSs16 6337/* 22720 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22749 6338/* 22725 */ MCD::OPC_CheckPredicate, 24, 238, 10, 0, // Skip to: 25528 6339/* 22730 */ MCD::OPC_CheckField, 28, 4, 15, 231, 10, 0, // Skip to: 25528 6340/* 22737 */ MCD::OPC_CheckField, 0, 1, 0, 224, 10, 0, // Skip to: 25528 6341/* 22744 */ MCD::OPC_Decode, 142, 7, 148, 1, // Opcode: MVE_VCVTs16f16m 6342/* 22749 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 22778 6343/* 22754 */ MCD::OPC_CheckPredicate, 22, 209, 10, 0, // Skip to: 25528 6344/* 22759 */ MCD::OPC_CheckField, 28, 4, 15, 202, 10, 0, // Skip to: 25528 6345/* 22766 */ MCD::OPC_CheckField, 0, 1, 0, 195, 10, 0, // Skip to: 25528 6346/* 22773 */ MCD::OPC_Decode, 174, 6, 148, 1, // Opcode: MVE_VABSs32 6347/* 22778 */ MCD::OPC_FilterValue, 59, 185, 10, 0, // Skip to: 25528 6348/* 22783 */ MCD::OPC_CheckPredicate, 24, 180, 10, 0, // Skip to: 25528 6349/* 22788 */ MCD::OPC_CheckField, 28, 4, 15, 173, 10, 0, // Skip to: 25528 6350/* 22795 */ MCD::OPC_CheckField, 0, 1, 0, 166, 10, 0, // Skip to: 25528 6351/* 22802 */ MCD::OPC_Decode, 148, 7, 148, 1, // Opcode: MVE_VCVTs32f32m 6352/* 22807 */ MCD::OPC_FilterValue, 15, 148, 0, 0, // Skip to: 22960 6353/* 22812 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6354/* 22815 */ MCD::OPC_FilterValue, 49, 24, 0, 0, // Skip to: 22844 6355/* 22820 */ MCD::OPC_CheckPredicate, 22, 143, 10, 0, // Skip to: 25528 6356/* 22825 */ MCD::OPC_CheckField, 28, 4, 15, 136, 10, 0, // Skip to: 25528 6357/* 22832 */ MCD::OPC_CheckField, 0, 1, 0, 129, 10, 0, // Skip to: 25528 6358/* 22839 */ MCD::OPC_Decode, 221, 9, 148, 1, // Opcode: MVE_VNEGs8 6359/* 22844 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 22873 6360/* 22849 */ MCD::OPC_CheckPredicate, 22, 114, 10, 0, // Skip to: 25528 6361/* 22854 */ MCD::OPC_CheckField, 28, 4, 15, 107, 10, 0, // Skip to: 25528 6362/* 22861 */ MCD::OPC_CheckField, 0, 1, 0, 100, 10, 0, // Skip to: 25528 6363/* 22868 */ MCD::OPC_Decode, 219, 9, 148, 1, // Opcode: MVE_VNEGs16 6364/* 22873 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 22902 6365/* 22878 */ MCD::OPC_CheckPredicate, 24, 85, 10, 0, // Skip to: 25528 6366/* 22883 */ MCD::OPC_CheckField, 28, 4, 15, 78, 10, 0, // Skip to: 25528 6367/* 22890 */ MCD::OPC_CheckField, 0, 1, 0, 71, 10, 0, // Skip to: 25528 6368/* 22897 */ MCD::OPC_Decode, 154, 7, 148, 1, // Opcode: MVE_VCVTu16f16m 6369/* 22902 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 22931 6370/* 22907 */ MCD::OPC_CheckPredicate, 22, 56, 10, 0, // Skip to: 25528 6371/* 22912 */ MCD::OPC_CheckField, 28, 4, 15, 49, 10, 0, // Skip to: 25528 6372/* 22919 */ MCD::OPC_CheckField, 0, 1, 0, 42, 10, 0, // Skip to: 25528 6373/* 22926 */ MCD::OPC_Decode, 220, 9, 148, 1, // Opcode: MVE_VNEGs32 6374/* 22931 */ MCD::OPC_FilterValue, 59, 32, 10, 0, // Skip to: 25528 6375/* 22936 */ MCD::OPC_CheckPredicate, 24, 27, 10, 0, // Skip to: 25528 6376/* 22941 */ MCD::OPC_CheckField, 28, 4, 15, 20, 10, 0, // Skip to: 25528 6377/* 22948 */ MCD::OPC_CheckField, 0, 1, 0, 13, 10, 0, // Skip to: 25528 6378/* 22955 */ MCD::OPC_Decode, 160, 7, 148, 1, // Opcode: MVE_VCVTu32f32m 6379/* 22960 */ MCD::OPC_FilterValue, 17, 148, 0, 0, // Skip to: 23113 6380/* 22965 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6381/* 22968 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 22997 6382/* 22973 */ MCD::OPC_CheckPredicate, 22, 246, 9, 0, // Skip to: 25528 6383/* 22978 */ MCD::OPC_CheckField, 28, 4, 15, 239, 9, 0, // Skip to: 25528 6384/* 22985 */ MCD::OPC_CheckField, 0, 1, 0, 232, 9, 0, // Skip to: 25528 6385/* 22992 */ MCD::OPC_Decode, 222, 6, 148, 1, // Opcode: MVE_VCLSs8 6386/* 22997 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 23026 6387/* 23002 */ MCD::OPC_CheckPredicate, 22, 217, 9, 0, // Skip to: 25528 6388/* 23007 */ MCD::OPC_CheckField, 28, 4, 15, 210, 9, 0, // Skip to: 25528 6389/* 23014 */ MCD::OPC_CheckField, 0, 1, 0, 203, 9, 0, // Skip to: 25528 6390/* 23021 */ MCD::OPC_Decode, 220, 6, 148, 1, // Opcode: MVE_VCLSs16 6391/* 23026 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23055 6392/* 23031 */ MCD::OPC_CheckPredicate, 24, 188, 9, 0, // Skip to: 25528 6393/* 23036 */ MCD::OPC_CheckField, 28, 4, 15, 181, 9, 0, // Skip to: 25528 6394/* 23043 */ MCD::OPC_CheckField, 0, 1, 0, 174, 9, 0, // Skip to: 25528 6395/* 23050 */ MCD::OPC_Decode, 168, 11, 148, 1, // Opcode: MVE_VRINTf16N 6396/* 23055 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 23084 6397/* 23060 */ MCD::OPC_CheckPredicate, 22, 159, 9, 0, // Skip to: 25528 6398/* 23065 */ MCD::OPC_CheckField, 28, 4, 15, 152, 9, 0, // Skip to: 25528 6399/* 23072 */ MCD::OPC_CheckField, 0, 1, 0, 145, 9, 0, // Skip to: 25528 6400/* 23079 */ MCD::OPC_Decode, 221, 6, 148, 1, // Opcode: MVE_VCLSs32 6401/* 23084 */ MCD::OPC_FilterValue, 58, 135, 9, 0, // Skip to: 25528 6402/* 23089 */ MCD::OPC_CheckPredicate, 24, 130, 9, 0, // Skip to: 25528 6403/* 23094 */ MCD::OPC_CheckField, 28, 4, 15, 123, 9, 0, // Skip to: 25528 6404/* 23101 */ MCD::OPC_CheckField, 0, 1, 0, 116, 9, 0, // Skip to: 25528 6405/* 23108 */ MCD::OPC_Decode, 174, 11, 148, 1, // Opcode: MVE_VRINTf32N 6406/* 23113 */ MCD::OPC_FilterValue, 19, 148, 0, 0, // Skip to: 23266 6407/* 23118 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6408/* 23121 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 23150 6409/* 23126 */ MCD::OPC_CheckPredicate, 22, 93, 9, 0, // Skip to: 25528 6410/* 23131 */ MCD::OPC_CheckField, 28, 4, 15, 86, 9, 0, // Skip to: 25528 6411/* 23138 */ MCD::OPC_CheckField, 0, 1, 0, 79, 9, 0, // Skip to: 25528 6412/* 23145 */ MCD::OPC_Decode, 225, 6, 148, 1, // Opcode: MVE_VCLZs8 6413/* 23150 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 23179 6414/* 23155 */ MCD::OPC_CheckPredicate, 22, 64, 9, 0, // Skip to: 25528 6415/* 23160 */ MCD::OPC_CheckField, 28, 4, 15, 57, 9, 0, // Skip to: 25528 6416/* 23167 */ MCD::OPC_CheckField, 0, 1, 0, 50, 9, 0, // Skip to: 25528 6417/* 23174 */ MCD::OPC_Decode, 223, 6, 148, 1, // Opcode: MVE_VCLZs16 6418/* 23179 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23208 6419/* 23184 */ MCD::OPC_CheckPredicate, 24, 35, 9, 0, // Skip to: 25528 6420/* 23189 */ MCD::OPC_CheckField, 28, 4, 15, 28, 9, 0, // Skip to: 25528 6421/* 23196 */ MCD::OPC_CheckField, 0, 1, 0, 21, 9, 0, // Skip to: 25528 6422/* 23203 */ MCD::OPC_Decode, 170, 11, 148, 1, // Opcode: MVE_VRINTf16X 6423/* 23208 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 23237 6424/* 23213 */ MCD::OPC_CheckPredicate, 22, 6, 9, 0, // Skip to: 25528 6425/* 23218 */ MCD::OPC_CheckField, 28, 4, 15, 255, 8, 0, // Skip to: 25528 6426/* 23225 */ MCD::OPC_CheckField, 0, 1, 0, 248, 8, 0, // Skip to: 25528 6427/* 23232 */ MCD::OPC_Decode, 224, 6, 148, 1, // Opcode: MVE_VCLZs32 6428/* 23237 */ MCD::OPC_FilterValue, 58, 238, 8, 0, // Skip to: 25528 6429/* 23242 */ MCD::OPC_CheckPredicate, 24, 233, 8, 0, // Skip to: 25528 6430/* 23247 */ MCD::OPC_CheckField, 28, 4, 15, 226, 8, 0, // Skip to: 25528 6431/* 23254 */ MCD::OPC_CheckField, 0, 1, 0, 219, 8, 0, // Skip to: 25528 6432/* 23261 */ MCD::OPC_Decode, 176, 11, 148, 1, // Opcode: MVE_VRINTf32X 6433/* 23266 */ MCD::OPC_FilterValue, 21, 61, 0, 0, // Skip to: 23332 6434/* 23271 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6435/* 23274 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23303 6436/* 23279 */ MCD::OPC_CheckPredicate, 24, 196, 8, 0, // Skip to: 25528 6437/* 23284 */ MCD::OPC_CheckField, 28, 4, 15, 189, 8, 0, // Skip to: 25528 6438/* 23291 */ MCD::OPC_CheckField, 0, 1, 0, 182, 8, 0, // Skip to: 25528 6439/* 23298 */ MCD::OPC_Decode, 166, 11, 148, 1, // Opcode: MVE_VRINTf16A 6440/* 23303 */ MCD::OPC_FilterValue, 58, 172, 8, 0, // Skip to: 25528 6441/* 23308 */ MCD::OPC_CheckPredicate, 24, 167, 8, 0, // Skip to: 25528 6442/* 23313 */ MCD::OPC_CheckField, 28, 4, 15, 160, 8, 0, // Skip to: 25528 6443/* 23320 */ MCD::OPC_CheckField, 0, 1, 0, 153, 8, 0, // Skip to: 25528 6444/* 23327 */ MCD::OPC_Decode, 172, 11, 148, 1, // Opcode: MVE_VRINTf32A 6445/* 23332 */ MCD::OPC_FilterValue, 23, 90, 0, 0, // Skip to: 23427 6446/* 23337 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6447/* 23340 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 23369 6448/* 23345 */ MCD::OPC_CheckPredicate, 22, 130, 8, 0, // Skip to: 25528 6449/* 23350 */ MCD::OPC_CheckField, 28, 4, 15, 123, 8, 0, // Skip to: 25528 6450/* 23357 */ MCD::OPC_CheckField, 0, 1, 0, 116, 8, 0, // Skip to: 25528 6451/* 23364 */ MCD::OPC_Decode, 214, 9, 148, 1, // Opcode: MVE_VMVN 6452/* 23369 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23398 6453/* 23374 */ MCD::OPC_CheckPredicate, 24, 101, 8, 0, // Skip to: 25528 6454/* 23379 */ MCD::OPC_CheckField, 28, 4, 15, 94, 8, 0, // Skip to: 25528 6455/* 23386 */ MCD::OPC_CheckField, 0, 1, 0, 87, 8, 0, // Skip to: 25528 6456/* 23393 */ MCD::OPC_Decode, 171, 11, 148, 1, // Opcode: MVE_VRINTf16Z 6457/* 23398 */ MCD::OPC_FilterValue, 58, 77, 8, 0, // Skip to: 25528 6458/* 23403 */ MCD::OPC_CheckPredicate, 24, 72, 8, 0, // Skip to: 25528 6459/* 23408 */ MCD::OPC_CheckField, 28, 4, 15, 65, 8, 0, // Skip to: 25528 6460/* 23415 */ MCD::OPC_CheckField, 0, 1, 0, 58, 8, 0, // Skip to: 25528 6461/* 23422 */ MCD::OPC_Decode, 177, 11, 148, 1, // Opcode: MVE_VRINTf32Z 6462/* 23427 */ MCD::OPC_FilterValue, 25, 61, 0, 0, // Skip to: 23493 6463/* 23432 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6464/* 23435 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 23464 6465/* 23440 */ MCD::OPC_CheckPredicate, 24, 35, 8, 0, // Skip to: 25528 6466/* 23445 */ MCD::OPC_CheckField, 28, 4, 15, 28, 8, 0, // Skip to: 25528 6467/* 23452 */ MCD::OPC_CheckField, 0, 1, 0, 21, 8, 0, // Skip to: 25528 6468/* 23459 */ MCD::OPC_Decode, 131, 7, 148, 1, // Opcode: MVE_VCVTf16s16n 6469/* 23464 */ MCD::OPC_FilterValue, 59, 11, 8, 0, // Skip to: 25528 6470/* 23469 */ MCD::OPC_CheckPredicate, 24, 6, 8, 0, // Skip to: 25528 6471/* 23474 */ MCD::OPC_CheckField, 28, 4, 15, 255, 7, 0, // Skip to: 25528 6472/* 23481 */ MCD::OPC_CheckField, 0, 1, 0, 248, 7, 0, // Skip to: 25528 6473/* 23488 */ MCD::OPC_Decode, 137, 7, 148, 1, // Opcode: MVE_VCVTf32s32n 6474/* 23493 */ MCD::OPC_FilterValue, 27, 119, 0, 0, // Skip to: 23617 6475/* 23498 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6476/* 23501 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23530 6477/* 23506 */ MCD::OPC_CheckPredicate, 24, 225, 7, 0, // Skip to: 25528 6478/* 23511 */ MCD::OPC_CheckField, 28, 4, 15, 218, 7, 0, // Skip to: 25528 6479/* 23518 */ MCD::OPC_CheckField, 0, 1, 0, 211, 7, 0, // Skip to: 25528 6480/* 23525 */ MCD::OPC_Decode, 167, 11, 148, 1, // Opcode: MVE_VRINTf16M 6481/* 23530 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 23559 6482/* 23535 */ MCD::OPC_CheckPredicate, 24, 196, 7, 0, // Skip to: 25528 6483/* 23540 */ MCD::OPC_CheckField, 28, 4, 15, 189, 7, 0, // Skip to: 25528 6484/* 23547 */ MCD::OPC_CheckField, 0, 1, 0, 182, 7, 0, // Skip to: 25528 6485/* 23554 */ MCD::OPC_Decode, 133, 7, 148, 1, // Opcode: MVE_VCVTf16u16n 6486/* 23559 */ MCD::OPC_FilterValue, 58, 24, 0, 0, // Skip to: 23588 6487/* 23564 */ MCD::OPC_CheckPredicate, 24, 167, 7, 0, // Skip to: 25528 6488/* 23569 */ MCD::OPC_CheckField, 28, 4, 15, 160, 7, 0, // Skip to: 25528 6489/* 23576 */ MCD::OPC_CheckField, 0, 1, 0, 153, 7, 0, // Skip to: 25528 6490/* 23583 */ MCD::OPC_Decode, 173, 11, 148, 1, // Opcode: MVE_VRINTf32M 6491/* 23588 */ MCD::OPC_FilterValue, 59, 143, 7, 0, // Skip to: 25528 6492/* 23593 */ MCD::OPC_CheckPredicate, 24, 138, 7, 0, // Skip to: 25528 6493/* 23598 */ MCD::OPC_CheckField, 28, 4, 15, 131, 7, 0, // Skip to: 25528 6494/* 23605 */ MCD::OPC_CheckField, 0, 1, 0, 124, 7, 0, // Skip to: 25528 6495/* 23612 */ MCD::OPC_Decode, 139, 7, 148, 1, // Opcode: MVE_VCVTf32u32n 6496/* 23617 */ MCD::OPC_FilterValue, 29, 206, 0, 0, // Skip to: 23828 6497/* 23622 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6498/* 23625 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 23654 6499/* 23630 */ MCD::OPC_CheckPredicate, 22, 101, 7, 0, // Skip to: 25528 6500/* 23635 */ MCD::OPC_CheckField, 28, 4, 15, 94, 7, 0, // Skip to: 25528 6501/* 23642 */ MCD::OPC_CheckField, 0, 1, 0, 87, 7, 0, // Skip to: 25528 6502/* 23649 */ MCD::OPC_Decode, 129, 10, 148, 1, // Opcode: MVE_VQABSs8 6503/* 23654 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 23683 6504/* 23659 */ MCD::OPC_CheckPredicate, 22, 72, 7, 0, // Skip to: 25528 6505/* 23664 */ MCD::OPC_CheckField, 28, 4, 15, 65, 7, 0, // Skip to: 25528 6506/* 23671 */ MCD::OPC_CheckField, 0, 1, 0, 58, 7, 0, // Skip to: 25528 6507/* 23678 */ MCD::OPC_Decode, 255, 9, 148, 1, // Opcode: MVE_VQABSs16 6508/* 23683 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 23712 6509/* 23688 */ MCD::OPC_CheckPredicate, 24, 43, 7, 0, // Skip to: 25528 6510/* 23693 */ MCD::OPC_CheckField, 28, 4, 15, 36, 7, 0, // Skip to: 25528 6511/* 23700 */ MCD::OPC_CheckField, 0, 1, 0, 29, 7, 0, // Skip to: 25528 6512/* 23707 */ MCD::OPC_Decode, 171, 6, 148, 1, // Opcode: MVE_VABSf16 6513/* 23712 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 23741 6514/* 23717 */ MCD::OPC_CheckPredicate, 24, 14, 7, 0, // Skip to: 25528 6515/* 23722 */ MCD::OPC_CheckField, 28, 4, 15, 7, 7, 0, // Skip to: 25528 6516/* 23729 */ MCD::OPC_CheckField, 0, 1, 0, 0, 7, 0, // Skip to: 25528 6517/* 23736 */ MCD::OPC_Decode, 145, 7, 148, 1, // Opcode: MVE_VCVTs16f16z 6518/* 23741 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 23770 6519/* 23746 */ MCD::OPC_CheckPredicate, 22, 241, 6, 0, // Skip to: 25528 6520/* 23751 */ MCD::OPC_CheckField, 28, 4, 15, 234, 6, 0, // Skip to: 25528 6521/* 23758 */ MCD::OPC_CheckField, 0, 1, 0, 227, 6, 0, // Skip to: 25528 6522/* 23765 */ MCD::OPC_Decode, 128, 10, 148, 1, // Opcode: MVE_VQABSs32 6523/* 23770 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 23799 6524/* 23775 */ MCD::OPC_CheckPredicate, 24, 212, 6, 0, // Skip to: 25528 6525/* 23780 */ MCD::OPC_CheckField, 28, 4, 15, 205, 6, 0, // Skip to: 25528 6526/* 23787 */ MCD::OPC_CheckField, 0, 1, 0, 198, 6, 0, // Skip to: 25528 6527/* 23794 */ MCD::OPC_Decode, 172, 6, 148, 1, // Opcode: MVE_VABSf32 6528/* 23799 */ MCD::OPC_FilterValue, 59, 188, 6, 0, // Skip to: 25528 6529/* 23804 */ MCD::OPC_CheckPredicate, 24, 183, 6, 0, // Skip to: 25528 6530/* 23809 */ MCD::OPC_CheckField, 28, 4, 15, 176, 6, 0, // Skip to: 25528 6531/* 23816 */ MCD::OPC_CheckField, 0, 1, 0, 169, 6, 0, // Skip to: 25528 6532/* 23823 */ MCD::OPC_Decode, 151, 7, 148, 1, // Opcode: MVE_VCVTs32f32z 6533/* 23828 */ MCD::OPC_FilterValue, 31, 159, 6, 0, // Skip to: 25528 6534/* 23833 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 6535/* 23836 */ MCD::OPC_FilterValue, 48, 24, 0, 0, // Skip to: 23865 6536/* 23841 */ MCD::OPC_CheckPredicate, 22, 146, 6, 0, // Skip to: 25528 6537/* 23846 */ MCD::OPC_CheckField, 28, 4, 15, 139, 6, 0, // Skip to: 25528 6538/* 23853 */ MCD::OPC_CheckField, 0, 1, 0, 132, 6, 0, // Skip to: 25528 6539/* 23860 */ MCD::OPC_Decode, 188, 10, 148, 1, // Opcode: MVE_VQNEGs8 6540/* 23865 */ MCD::OPC_FilterValue, 52, 24, 0, 0, // Skip to: 23894 6541/* 23870 */ MCD::OPC_CheckPredicate, 22, 117, 6, 0, // Skip to: 25528 6542/* 23875 */ MCD::OPC_CheckField, 28, 4, 15, 110, 6, 0, // Skip to: 25528 6543/* 23882 */ MCD::OPC_CheckField, 0, 1, 0, 103, 6, 0, // Skip to: 25528 6544/* 23889 */ MCD::OPC_Decode, 186, 10, 148, 1, // Opcode: MVE_VQNEGs16 6545/* 23894 */ MCD::OPC_FilterValue, 53, 24, 0, 0, // Skip to: 23923 6546/* 23899 */ MCD::OPC_CheckPredicate, 24, 88, 6, 0, // Skip to: 25528 6547/* 23904 */ MCD::OPC_CheckField, 28, 4, 15, 81, 6, 0, // Skip to: 25528 6548/* 23911 */ MCD::OPC_CheckField, 0, 1, 0, 74, 6, 0, // Skip to: 25528 6549/* 23918 */ MCD::OPC_Decode, 217, 9, 148, 1, // Opcode: MVE_VNEGf16 6550/* 23923 */ MCD::OPC_FilterValue, 54, 24, 0, 0, // Skip to: 23952 6551/* 23928 */ MCD::OPC_CheckPredicate, 24, 59, 6, 0, // Skip to: 25528 6552/* 23933 */ MCD::OPC_CheckField, 28, 4, 15, 52, 6, 0, // Skip to: 25528 6553/* 23940 */ MCD::OPC_CheckField, 0, 1, 0, 45, 6, 0, // Skip to: 25528 6554/* 23947 */ MCD::OPC_Decode, 169, 11, 148, 1, // Opcode: MVE_VRINTf16P 6555/* 23952 */ MCD::OPC_FilterValue, 55, 24, 0, 0, // Skip to: 23981 6556/* 23957 */ MCD::OPC_CheckPredicate, 24, 30, 6, 0, // Skip to: 25528 6557/* 23962 */ MCD::OPC_CheckField, 28, 4, 15, 23, 6, 0, // Skip to: 25528 6558/* 23969 */ MCD::OPC_CheckField, 0, 1, 0, 16, 6, 0, // Skip to: 25528 6559/* 23976 */ MCD::OPC_Decode, 157, 7, 148, 1, // Opcode: MVE_VCVTu16f16z 6560/* 23981 */ MCD::OPC_FilterValue, 56, 24, 0, 0, // Skip to: 24010 6561/* 23986 */ MCD::OPC_CheckPredicate, 22, 1, 6, 0, // Skip to: 25528 6562/* 23991 */ MCD::OPC_CheckField, 28, 4, 15, 250, 5, 0, // Skip to: 25528 6563/* 23998 */ MCD::OPC_CheckField, 0, 1, 0, 243, 5, 0, // Skip to: 25528 6564/* 24005 */ MCD::OPC_Decode, 187, 10, 148, 1, // Opcode: MVE_VQNEGs32 6565/* 24010 */ MCD::OPC_FilterValue, 57, 24, 0, 0, // Skip to: 24039 6566/* 24015 */ MCD::OPC_CheckPredicate, 24, 228, 5, 0, // Skip to: 25528 6567/* 24020 */ MCD::OPC_CheckField, 28, 4, 15, 221, 5, 0, // Skip to: 25528 6568/* 24027 */ MCD::OPC_CheckField, 0, 1, 0, 214, 5, 0, // Skip to: 25528 6569/* 24034 */ MCD::OPC_Decode, 218, 9, 148, 1, // Opcode: MVE_VNEGf32 6570/* 24039 */ MCD::OPC_FilterValue, 58, 24, 0, 0, // Skip to: 24068 6571/* 24044 */ MCD::OPC_CheckPredicate, 24, 199, 5, 0, // Skip to: 25528 6572/* 24049 */ MCD::OPC_CheckField, 28, 4, 15, 192, 5, 0, // Skip to: 25528 6573/* 24056 */ MCD::OPC_CheckField, 0, 1, 0, 185, 5, 0, // Skip to: 25528 6574/* 24063 */ MCD::OPC_Decode, 175, 11, 148, 1, // Opcode: MVE_VRINTf32P 6575/* 24068 */ MCD::OPC_FilterValue, 59, 175, 5, 0, // Skip to: 25528 6576/* 24073 */ MCD::OPC_CheckPredicate, 24, 170, 5, 0, // Skip to: 25528 6577/* 24078 */ MCD::OPC_CheckField, 28, 4, 15, 163, 5, 0, // Skip to: 25528 6578/* 24085 */ MCD::OPC_CheckField, 0, 1, 0, 156, 5, 0, // Skip to: 25528 6579/* 24092 */ MCD::OPC_Decode, 163, 7, 148, 1, // Opcode: MVE_VCVTu32f32z 6580/* 24097 */ MCD::OPC_FilterValue, 1, 146, 5, 0, // Skip to: 25528 6581/* 24102 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 6582/* 24105 */ MCD::OPC_FilterValue, 0, 140, 3, 0, // Skip to: 25018 6583/* 24110 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 6584/* 24113 */ MCD::OPC_FilterValue, 0, 114, 2, 0, // Skip to: 24744 6585/* 24118 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 6586/* 24121 */ MCD::OPC_FilterValue, 0, 88, 1, 0, // Skip to: 24470 6587/* 24126 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 6588/* 24129 */ MCD::OPC_FilterValue, 2, 173, 0, 0, // Skip to: 24307 6589/* 24134 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 6590/* 24137 */ MCD::OPC_FilterValue, 0, 106, 5, 0, // Skip to: 25528 6591/* 24142 */ MCD::OPC_ExtractField, 29, 3, // Inst{31-29} ... 6592/* 24145 */ MCD::OPC_FilterValue, 7, 98, 5, 0, // Skip to: 25528 6593/* 24150 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 6594/* 24153 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 24168 6595/* 24158 */ MCD::OPC_CheckPredicate, 22, 110, 0, 0, // Skip to: 24273 6596/* 24163 */ MCD::OPC_Decode, 224, 9, 191, 1, // Opcode: MVE_VORRIZ0v4i32 6597/* 24168 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 24183 6598/* 24173 */ MCD::OPC_CheckPredicate, 22, 95, 0, 0, // Skip to: 24273 6599/* 24178 */ MCD::OPC_Decode, 228, 9, 192, 1, // Opcode: MVE_VORRIZ8v4i32 6600/* 24183 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 24198 6601/* 24188 */ MCD::OPC_CheckPredicate, 22, 80, 0, 0, // Skip to: 24273 6602/* 24193 */ MCD::OPC_Decode, 226, 9, 193, 1, // Opcode: MVE_VORRIZ16v4i32 6603/* 24198 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 24213 6604/* 24203 */ MCD::OPC_CheckPredicate, 22, 65, 0, 0, // Skip to: 24273 6605/* 24208 */ MCD::OPC_Decode, 227, 9, 194, 1, // Opcode: MVE_VORRIZ24v4i32 6606/* 24213 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 24228 6607/* 24218 */ MCD::OPC_CheckPredicate, 22, 50, 0, 0, // Skip to: 24273 6608/* 24223 */ MCD::OPC_Decode, 225, 9, 191, 1, // Opcode: MVE_VORRIZ0v8i16 6609/* 24228 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 24243 6610/* 24233 */ MCD::OPC_CheckPredicate, 22, 35, 0, 0, // Skip to: 24273 6611/* 24238 */ MCD::OPC_Decode, 229, 9, 192, 1, // Opcode: MVE_VORRIZ8v8i16 6612/* 24243 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 24258 6613/* 24248 */ MCD::OPC_CheckPredicate, 22, 20, 0, 0, // Skip to: 24273 6614/* 24253 */ MCD::OPC_Decode, 181, 9, 195, 1, // Opcode: MVE_VMOVimmi8 6615/* 24258 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 24273 6616/* 24263 */ MCD::OPC_CheckPredicate, 22, 5, 0, 0, // Skip to: 24273 6617/* 24268 */ MCD::OPC_Decode, 177, 9, 195, 1, // Opcode: MVE_VMOVimmf32 6618/* 24273 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 24297 6619/* 24278 */ MCD::OPC_CheckField, 10, 2, 2, 12, 0, 0, // Skip to: 24297 6620/* 24285 */ MCD::OPC_CheckField, 8, 1, 0, 5, 0, 0, // Skip to: 24297 6621/* 24292 */ MCD::OPC_Decode, 178, 9, 195, 1, // Opcode: MVE_VMOVimmi16 6622/* 24297 */ MCD::OPC_CheckPredicate, 22, 202, 4, 0, // Skip to: 25528 6623/* 24302 */ MCD::OPC_Decode, 179, 9, 195, 1, // Opcode: MVE_VMOVimmi32 6624/* 24307 */ MCD::OPC_FilterValue, 3, 192, 4, 0, // Skip to: 25528 6625/* 24312 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 6626/* 24315 */ MCD::OPC_FilterValue, 0, 184, 4, 0, // Skip to: 25528 6627/* 24320 */ MCD::OPC_ExtractField, 29, 3, // Inst{31-29} ... 6628/* 24323 */ MCD::OPC_FilterValue, 7, 176, 4, 0, // Skip to: 25528 6629/* 24328 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 6630/* 24331 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 24346 6631/* 24336 */ MCD::OPC_CheckPredicate, 22, 95, 0, 0, // Skip to: 24436 6632/* 24341 */ MCD::OPC_Decode, 206, 6, 191, 1, // Opcode: MVE_VBICIZ0v4i32 6633/* 24346 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 24361 6634/* 24351 */ MCD::OPC_CheckPredicate, 22, 80, 0, 0, // Skip to: 24436 6635/* 24356 */ MCD::OPC_Decode, 210, 6, 192, 1, // Opcode: MVE_VBICIZ8v4i32 6636/* 24361 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 24376 6637/* 24366 */ MCD::OPC_CheckPredicate, 22, 65, 0, 0, // Skip to: 24436 6638/* 24371 */ MCD::OPC_Decode, 208, 6, 193, 1, // Opcode: MVE_VBICIZ16v4i32 6639/* 24376 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 24391 6640/* 24381 */ MCD::OPC_CheckPredicate, 22, 50, 0, 0, // Skip to: 24436 6641/* 24386 */ MCD::OPC_Decode, 209, 6, 194, 1, // Opcode: MVE_VBICIZ24v4i32 6642/* 24391 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 24406 6643/* 24396 */ MCD::OPC_CheckPredicate, 22, 35, 0, 0, // Skip to: 24436 6644/* 24401 */ MCD::OPC_Decode, 207, 6, 191, 1, // Opcode: MVE_VBICIZ0v8i16 6645/* 24406 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 24421 6646/* 24411 */ MCD::OPC_CheckPredicate, 22, 20, 0, 0, // Skip to: 24436 6647/* 24416 */ MCD::OPC_Decode, 211, 6, 192, 1, // Opcode: MVE_VBICIZ8v8i16 6648/* 24421 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 24436 6649/* 24426 */ MCD::OPC_CheckPredicate, 22, 5, 0, 0, // Skip to: 24436 6650/* 24431 */ MCD::OPC_Decode, 180, 9, 195, 1, // Opcode: MVE_VMOVimmi64 6651/* 24436 */ MCD::OPC_CheckPredicate, 22, 19, 0, 0, // Skip to: 24460 6652/* 24441 */ MCD::OPC_CheckField, 10, 2, 2, 12, 0, 0, // Skip to: 24460 6653/* 24448 */ MCD::OPC_CheckField, 8, 1, 0, 5, 0, 0, // Skip to: 24460 6654/* 24455 */ MCD::OPC_Decode, 215, 9, 195, 1, // Opcode: MVE_VMVNimmi16 6655/* 24460 */ MCD::OPC_CheckPredicate, 22, 39, 4, 0, // Skip to: 25528 6656/* 24465 */ MCD::OPC_Decode, 216, 9, 195, 1, // Opcode: MVE_VMVNimmi32 6657/* 24470 */ MCD::OPC_FilterValue, 1, 29, 4, 0, // Skip to: 25528 6658/* 24475 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 6659/* 24478 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 24530 6660/* 24483 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6661/* 24486 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24508 6662/* 24491 */ MCD::OPC_CheckPredicate, 22, 8, 4, 0, // Skip to: 25528 6663/* 24496 */ MCD::OPC_CheckField, 0, 1, 0, 1, 4, 0, // Skip to: 25528 6664/* 24503 */ MCD::OPC_Decode, 128, 12, 196, 1, // Opcode: MVE_VSHR_imms8 6665/* 24508 */ MCD::OPC_FilterValue, 15, 247, 3, 0, // Skip to: 25528 6666/* 24513 */ MCD::OPC_CheckPredicate, 22, 242, 3, 0, // Skip to: 25528 6667/* 24518 */ MCD::OPC_CheckField, 0, 1, 0, 235, 3, 0, // Skip to: 25528 6668/* 24525 */ MCD::OPC_Decode, 131, 12, 196, 1, // Opcode: MVE_VSHR_immu8 6669/* 24530 */ MCD::OPC_FilterValue, 9, 47, 0, 0, // Skip to: 24582 6670/* 24535 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6671/* 24538 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24560 6672/* 24543 */ MCD::OPC_CheckPredicate, 22, 212, 3, 0, // Skip to: 25528 6673/* 24548 */ MCD::OPC_CheckField, 0, 1, 0, 205, 3, 0, // Skip to: 25528 6674/* 24555 */ MCD::OPC_Decode, 212, 11, 196, 1, // Opcode: MVE_VRSHR_imms8 6675/* 24560 */ MCD::OPC_FilterValue, 15, 195, 3, 0, // Skip to: 25528 6676/* 24565 */ MCD::OPC_CheckPredicate, 22, 190, 3, 0, // Skip to: 25528 6677/* 24570 */ MCD::OPC_CheckField, 0, 1, 0, 183, 3, 0, // Skip to: 25528 6678/* 24577 */ MCD::OPC_Decode, 215, 11, 196, 1, // Opcode: MVE_VRSHR_immu8 6679/* 24582 */ MCD::OPC_FilterValue, 17, 24, 0, 0, // Skip to: 24611 6680/* 24587 */ MCD::OPC_CheckPredicate, 22, 168, 3, 0, // Skip to: 25528 6681/* 24592 */ MCD::OPC_CheckField, 28, 4, 15, 161, 3, 0, // Skip to: 25528 6682/* 24599 */ MCD::OPC_CheckField, 0, 1, 0, 154, 3, 0, // Skip to: 25528 6683/* 24606 */ MCD::OPC_Decode, 137, 12, 185, 1, // Opcode: MVE_VSRIimm8 6684/* 24611 */ MCD::OPC_FilterValue, 21, 47, 0, 0, // Skip to: 24663 6685/* 24616 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6686/* 24619 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24641 6687/* 24624 */ MCD::OPC_CheckPredicate, 22, 131, 3, 0, // Skip to: 25528 6688/* 24629 */ MCD::OPC_CheckField, 0, 1, 0, 124, 3, 0, // Skip to: 25528 6689/* 24636 */ MCD::OPC_Decode, 243, 11, 187, 1, // Opcode: MVE_VSHL_immi8 6690/* 24641 */ MCD::OPC_FilterValue, 15, 114, 3, 0, // Skip to: 25528 6691/* 24646 */ MCD::OPC_CheckPredicate, 22, 109, 3, 0, // Skip to: 25528 6692/* 24651 */ MCD::OPC_CheckField, 0, 1, 0, 102, 3, 0, // Skip to: 25528 6693/* 24658 */ MCD::OPC_Decode, 134, 12, 197, 1, // Opcode: MVE_VSLIimm8 6694/* 24663 */ MCD::OPC_FilterValue, 25, 24, 0, 0, // Skip to: 24692 6695/* 24668 */ MCD::OPC_CheckPredicate, 22, 87, 3, 0, // Skip to: 25528 6696/* 24673 */ MCD::OPC_CheckField, 28, 4, 15, 80, 3, 0, // Skip to: 25528 6697/* 24680 */ MCD::OPC_CheckField, 0, 1, 0, 73, 3, 0, // Skip to: 25528 6698/* 24687 */ MCD::OPC_Decode, 239, 10, 187, 1, // Opcode: MVE_VQSHLU_imms8 6699/* 24692 */ MCD::OPC_FilterValue, 29, 63, 3, 0, // Skip to: 25528 6700/* 24697 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6701/* 24700 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24722 6702/* 24705 */ MCD::OPC_CheckPredicate, 22, 50, 3, 0, // Skip to: 25528 6703/* 24710 */ MCD::OPC_CheckField, 0, 1, 0, 43, 3, 0, // Skip to: 25528 6704/* 24717 */ MCD::OPC_Decode, 254, 10, 187, 1, // Opcode: MVE_VQSHLimms8 6705/* 24722 */ MCD::OPC_FilterValue, 15, 33, 3, 0, // Skip to: 25528 6706/* 24727 */ MCD::OPC_CheckPredicate, 22, 28, 3, 0, // Skip to: 25528 6707/* 24732 */ MCD::OPC_CheckField, 0, 1, 0, 21, 3, 0, // Skip to: 25528 6708/* 24739 */ MCD::OPC_Decode, 129, 11, 187, 1, // Opcode: MVE_VQSHLimmu8 6709/* 24744 */ MCD::OPC_FilterValue, 1, 11, 3, 0, // Skip to: 25528 6710/* 24749 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 6711/* 24752 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 24804 6712/* 24757 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6713/* 24760 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24782 6714/* 24765 */ MCD::OPC_CheckPredicate, 22, 246, 2, 0, // Skip to: 25528 6715/* 24770 */ MCD::OPC_CheckField, 0, 1, 0, 239, 2, 0, // Skip to: 25528 6716/* 24777 */ MCD::OPC_Decode, 254, 11, 198, 1, // Opcode: MVE_VSHR_imms16 6717/* 24782 */ MCD::OPC_FilterValue, 15, 229, 2, 0, // Skip to: 25528 6718/* 24787 */ MCD::OPC_CheckPredicate, 22, 224, 2, 0, // Skip to: 25528 6719/* 24792 */ MCD::OPC_CheckField, 0, 1, 0, 217, 2, 0, // Skip to: 25528 6720/* 24799 */ MCD::OPC_Decode, 129, 12, 198, 1, // Opcode: MVE_VSHR_immu16 6721/* 24804 */ MCD::OPC_FilterValue, 9, 47, 0, 0, // Skip to: 24856 6722/* 24809 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6723/* 24812 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24834 6724/* 24817 */ MCD::OPC_CheckPredicate, 22, 194, 2, 0, // Skip to: 25528 6725/* 24822 */ MCD::OPC_CheckField, 0, 1, 0, 187, 2, 0, // Skip to: 25528 6726/* 24829 */ MCD::OPC_Decode, 210, 11, 198, 1, // Opcode: MVE_VRSHR_imms16 6727/* 24834 */ MCD::OPC_FilterValue, 15, 177, 2, 0, // Skip to: 25528 6728/* 24839 */ MCD::OPC_CheckPredicate, 22, 172, 2, 0, // Skip to: 25528 6729/* 24844 */ MCD::OPC_CheckField, 0, 1, 0, 165, 2, 0, // Skip to: 25528 6730/* 24851 */ MCD::OPC_Decode, 213, 11, 198, 1, // Opcode: MVE_VRSHR_immu16 6731/* 24856 */ MCD::OPC_FilterValue, 17, 24, 0, 0, // Skip to: 24885 6732/* 24861 */ MCD::OPC_CheckPredicate, 22, 150, 2, 0, // Skip to: 25528 6733/* 24866 */ MCD::OPC_CheckField, 28, 4, 15, 143, 2, 0, // Skip to: 25528 6734/* 24873 */ MCD::OPC_CheckField, 0, 1, 0, 136, 2, 0, // Skip to: 25528 6735/* 24880 */ MCD::OPC_Decode, 135, 12, 186, 1, // Opcode: MVE_VSRIimm16 6736/* 24885 */ MCD::OPC_FilterValue, 21, 47, 0, 0, // Skip to: 24937 6737/* 24890 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6738/* 24893 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24915 6739/* 24898 */ MCD::OPC_CheckPredicate, 22, 113, 2, 0, // Skip to: 25528 6740/* 24903 */ MCD::OPC_CheckField, 0, 1, 0, 106, 2, 0, // Skip to: 25528 6741/* 24910 */ MCD::OPC_Decode, 241, 11, 188, 1, // Opcode: MVE_VSHL_immi16 6742/* 24915 */ MCD::OPC_FilterValue, 15, 96, 2, 0, // Skip to: 25528 6743/* 24920 */ MCD::OPC_CheckPredicate, 22, 91, 2, 0, // Skip to: 25528 6744/* 24925 */ MCD::OPC_CheckField, 0, 1, 0, 84, 2, 0, // Skip to: 25528 6745/* 24932 */ MCD::OPC_Decode, 132, 12, 199, 1, // Opcode: MVE_VSLIimm16 6746/* 24937 */ MCD::OPC_FilterValue, 25, 24, 0, 0, // Skip to: 24966 6747/* 24942 */ MCD::OPC_CheckPredicate, 22, 69, 2, 0, // Skip to: 25528 6748/* 24947 */ MCD::OPC_CheckField, 28, 4, 15, 62, 2, 0, // Skip to: 25528 6749/* 24954 */ MCD::OPC_CheckField, 0, 1, 0, 55, 2, 0, // Skip to: 25528 6750/* 24961 */ MCD::OPC_Decode, 237, 10, 188, 1, // Opcode: MVE_VQSHLU_imms16 6751/* 24966 */ MCD::OPC_FilterValue, 29, 45, 2, 0, // Skip to: 25528 6752/* 24971 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6753/* 24974 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 24996 6754/* 24979 */ MCD::OPC_CheckPredicate, 22, 32, 2, 0, // Skip to: 25528 6755/* 24984 */ MCD::OPC_CheckField, 0, 1, 0, 25, 2, 0, // Skip to: 25528 6756/* 24991 */ MCD::OPC_Decode, 252, 10, 188, 1, // Opcode: MVE_VQSHLimms16 6757/* 24996 */ MCD::OPC_FilterValue, 15, 15, 2, 0, // Skip to: 25528 6758/* 25001 */ MCD::OPC_CheckPredicate, 22, 10, 2, 0, // Skip to: 25528 6759/* 25006 */ MCD::OPC_CheckField, 0, 1, 0, 3, 2, 0, // Skip to: 25528 6760/* 25013 */ MCD::OPC_Decode, 255, 10, 188, 1, // Opcode: MVE_VQSHLimmu16 6761/* 25018 */ MCD::OPC_FilterValue, 1, 249, 1, 0, // Skip to: 25528 6762/* 25023 */ MCD::OPC_ExtractField, 6, 7, // Inst{12-6} ... 6763/* 25026 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 25078 6764/* 25031 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6765/* 25034 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25056 6766/* 25039 */ MCD::OPC_CheckPredicate, 22, 228, 1, 0, // Skip to: 25528 6767/* 25044 */ MCD::OPC_CheckField, 0, 1, 0, 221, 1, 0, // Skip to: 25528 6768/* 25051 */ MCD::OPC_Decode, 255, 11, 200, 1, // Opcode: MVE_VSHR_imms32 6769/* 25056 */ MCD::OPC_FilterValue, 15, 211, 1, 0, // Skip to: 25528 6770/* 25061 */ MCD::OPC_CheckPredicate, 22, 206, 1, 0, // Skip to: 25528 6771/* 25066 */ MCD::OPC_CheckField, 0, 1, 0, 199, 1, 0, // Skip to: 25528 6772/* 25073 */ MCD::OPC_Decode, 130, 12, 200, 1, // Opcode: MVE_VSHR_immu32 6773/* 25078 */ MCD::OPC_FilterValue, 9, 47, 0, 0, // Skip to: 25130 6774/* 25083 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6775/* 25086 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25108 6776/* 25091 */ MCD::OPC_CheckPredicate, 22, 176, 1, 0, // Skip to: 25528 6777/* 25096 */ MCD::OPC_CheckField, 0, 1, 0, 169, 1, 0, // Skip to: 25528 6778/* 25103 */ MCD::OPC_Decode, 211, 11, 200, 1, // Opcode: MVE_VRSHR_imms32 6779/* 25108 */ MCD::OPC_FilterValue, 15, 159, 1, 0, // Skip to: 25528 6780/* 25113 */ MCD::OPC_CheckPredicate, 22, 154, 1, 0, // Skip to: 25528 6781/* 25118 */ MCD::OPC_CheckField, 0, 1, 0, 147, 1, 0, // Skip to: 25528 6782/* 25125 */ MCD::OPC_Decode, 214, 11, 200, 1, // Opcode: MVE_VRSHR_immu32 6783/* 25130 */ MCD::OPC_FilterValue, 17, 24, 0, 0, // Skip to: 25159 6784/* 25135 */ MCD::OPC_CheckPredicate, 22, 132, 1, 0, // Skip to: 25528 6785/* 25140 */ MCD::OPC_CheckField, 28, 4, 15, 125, 1, 0, // Skip to: 25528 6786/* 25147 */ MCD::OPC_CheckField, 0, 1, 0, 118, 1, 0, // Skip to: 25528 6787/* 25154 */ MCD::OPC_Decode, 136, 12, 201, 1, // Opcode: MVE_VSRIimm32 6788/* 25159 */ MCD::OPC_FilterValue, 21, 47, 0, 0, // Skip to: 25211 6789/* 25164 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6790/* 25167 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25189 6791/* 25172 */ MCD::OPC_CheckPredicate, 22, 95, 1, 0, // Skip to: 25528 6792/* 25177 */ MCD::OPC_CheckField, 0, 1, 0, 88, 1, 0, // Skip to: 25528 6793/* 25184 */ MCD::OPC_Decode, 242, 11, 202, 1, // Opcode: MVE_VSHL_immi32 6794/* 25189 */ MCD::OPC_FilterValue, 15, 78, 1, 0, // Skip to: 25528 6795/* 25194 */ MCD::OPC_CheckPredicate, 22, 73, 1, 0, // Skip to: 25528 6796/* 25199 */ MCD::OPC_CheckField, 0, 1, 0, 66, 1, 0, // Skip to: 25528 6797/* 25206 */ MCD::OPC_Decode, 133, 12, 203, 1, // Opcode: MVE_VSLIimm32 6798/* 25211 */ MCD::OPC_FilterValue, 25, 24, 0, 0, // Skip to: 25240 6799/* 25216 */ MCD::OPC_CheckPredicate, 22, 51, 1, 0, // Skip to: 25528 6800/* 25221 */ MCD::OPC_CheckField, 28, 4, 15, 44, 1, 0, // Skip to: 25528 6801/* 25228 */ MCD::OPC_CheckField, 0, 1, 0, 37, 1, 0, // Skip to: 25528 6802/* 25235 */ MCD::OPC_Decode, 238, 10, 202, 1, // Opcode: MVE_VQSHLU_imms32 6803/* 25240 */ MCD::OPC_FilterValue, 29, 47, 0, 0, // Skip to: 25292 6804/* 25245 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6805/* 25248 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25270 6806/* 25253 */ MCD::OPC_CheckPredicate, 22, 14, 1, 0, // Skip to: 25528 6807/* 25258 */ MCD::OPC_CheckField, 0, 1, 0, 7, 1, 0, // Skip to: 25528 6808/* 25265 */ MCD::OPC_Decode, 253, 10, 202, 1, // Opcode: MVE_VQSHLimms32 6809/* 25270 */ MCD::OPC_FilterValue, 15, 253, 0, 0, // Skip to: 25528 6810/* 25275 */ MCD::OPC_CheckPredicate, 22, 248, 0, 0, // Skip to: 25528 6811/* 25280 */ MCD::OPC_CheckField, 0, 1, 0, 241, 0, 0, // Skip to: 25528 6812/* 25287 */ MCD::OPC_Decode, 128, 11, 202, 1, // Opcode: MVE_VQSHLimmu32 6813/* 25292 */ MCD::OPC_FilterValue, 49, 61, 0, 0, // Skip to: 25358 6814/* 25297 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6815/* 25300 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 25329 6816/* 25305 */ MCD::OPC_CheckPredicate, 24, 218, 0, 0, // Skip to: 25528 6817/* 25310 */ MCD::OPC_CheckField, 20, 1, 1, 211, 0, 0, // Skip to: 25528 6818/* 25317 */ MCD::OPC_CheckField, 0, 1, 0, 204, 0, 0, // Skip to: 25528 6819/* 25324 */ MCD::OPC_Decode, 130, 7, 204, 1, // Opcode: MVE_VCVTf16s16_fix 6820/* 25329 */ MCD::OPC_FilterValue, 15, 194, 0, 0, // Skip to: 25528 6821/* 25334 */ MCD::OPC_CheckPredicate, 24, 189, 0, 0, // Skip to: 25528 6822/* 25339 */ MCD::OPC_CheckField, 20, 1, 1, 182, 0, 0, // Skip to: 25528 6823/* 25346 */ MCD::OPC_CheckField, 0, 1, 0, 175, 0, 0, // Skip to: 25528 6824/* 25353 */ MCD::OPC_Decode, 132, 7, 204, 1, // Opcode: MVE_VCVTf16u16_fix 6825/* 25358 */ MCD::OPC_FilterValue, 53, 61, 0, 0, // Skip to: 25424 6826/* 25363 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6827/* 25366 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 25395 6828/* 25371 */ MCD::OPC_CheckPredicate, 24, 152, 0, 0, // Skip to: 25528 6829/* 25376 */ MCD::OPC_CheckField, 20, 1, 1, 145, 0, 0, // Skip to: 25528 6830/* 25383 */ MCD::OPC_CheckField, 0, 1, 0, 138, 0, 0, // Skip to: 25528 6831/* 25390 */ MCD::OPC_Decode, 140, 7, 204, 1, // Opcode: MVE_VCVTs16f16_fix 6832/* 25395 */ MCD::OPC_FilterValue, 15, 128, 0, 0, // Skip to: 25528 6833/* 25400 */ MCD::OPC_CheckPredicate, 24, 123, 0, 0, // Skip to: 25528 6834/* 25405 */ MCD::OPC_CheckField, 20, 1, 1, 116, 0, 0, // Skip to: 25528 6835/* 25412 */ MCD::OPC_CheckField, 0, 1, 0, 109, 0, 0, // Skip to: 25528 6836/* 25419 */ MCD::OPC_Decode, 152, 7, 204, 1, // Opcode: MVE_VCVTu16f16_fix 6837/* 25424 */ MCD::OPC_FilterValue, 57, 47, 0, 0, // Skip to: 25476 6838/* 25429 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6839/* 25432 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25454 6840/* 25437 */ MCD::OPC_CheckPredicate, 24, 86, 0, 0, // Skip to: 25528 6841/* 25442 */ MCD::OPC_CheckField, 0, 1, 0, 79, 0, 0, // Skip to: 25528 6842/* 25449 */ MCD::OPC_Decode, 136, 7, 204, 1, // Opcode: MVE_VCVTf32s32_fix 6843/* 25454 */ MCD::OPC_FilterValue, 15, 69, 0, 0, // Skip to: 25528 6844/* 25459 */ MCD::OPC_CheckPredicate, 24, 64, 0, 0, // Skip to: 25528 6845/* 25464 */ MCD::OPC_CheckField, 0, 1, 0, 57, 0, 0, // Skip to: 25528 6846/* 25471 */ MCD::OPC_Decode, 138, 7, 204, 1, // Opcode: MVE_VCVTf32u32_fix 6847/* 25476 */ MCD::OPC_FilterValue, 61, 47, 0, 0, // Skip to: 25528 6848/* 25481 */ MCD::OPC_ExtractField, 28, 4, // Inst{31-28} ... 6849/* 25484 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 25506 6850/* 25489 */ MCD::OPC_CheckPredicate, 24, 34, 0, 0, // Skip to: 25528 6851/* 25494 */ MCD::OPC_CheckField, 0, 1, 0, 27, 0, 0, // Skip to: 25528 6852/* 25501 */ MCD::OPC_Decode, 146, 7, 204, 1, // Opcode: MVE_VCVTs32f32_fix 6853/* 25506 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 25528 6854/* 25511 */ MCD::OPC_CheckPredicate, 24, 12, 0, 0, // Skip to: 25528 6855/* 25516 */ MCD::OPC_CheckField, 0, 1, 0, 5, 0, 0, // Skip to: 25528 6856/* 25523 */ MCD::OPC_Decode, 158, 7, 204, 1, // Opcode: MVE_VCVTu32f32_fix 6857/* 25528 */ MCD::OPC_Fail, 6858 0 6859}; 6860 6861static const uint8_t DecoderTableNEONData32[] = { 6862/* 0 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 6863/* 3 */ MCD::OPC_FilterValue, 0, 182, 41, 0, // Skip to: 10686 6864/* 8 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 6865/* 11 */ MCD::OPC_FilterValue, 0, 148, 6, 0, // Skip to: 1700 6866/* 16 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 6867/* 19 */ MCD::OPC_FilterValue, 0, 127, 0, 0, // Skip to: 151 6868/* 24 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6869/* 27 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 66 6870/* 33 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6871/* 36 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 51 6872/* 41 */ MCD::OPC_CheckPredicate, 26, 225, 74, 0, // Skip to: 19215 6873/* 46 */ MCD::OPC_Decode, 234, 17, 205, 1, // Opcode: VHADDsv8i8 6874/* 51 */ MCD::OPC_FilterValue, 1, 215, 74, 0, // Skip to: 19215 6875/* 56 */ MCD::OPC_CheckPredicate, 26, 210, 74, 0, // Skip to: 19215 6876/* 61 */ MCD::OPC_Decode, 229, 17, 206, 1, // Opcode: VHADDsv16i8 6877/* 66 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 89 6878/* 72 */ MCD::OPC_CheckPredicate, 26, 194, 74, 0, // Skip to: 19215 6879/* 77 */ MCD::OPC_CheckField, 6, 1, 0, 187, 74, 0, // Skip to: 19215 6880/* 84 */ MCD::OPC_Decode, 155, 15, 207, 1, // Opcode: VADDLsv8i16 6881/* 89 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 128 6882/* 95 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6883/* 98 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 113 6884/* 103 */ MCD::OPC_CheckPredicate, 26, 163, 74, 0, // Skip to: 19215 6885/* 108 */ MCD::OPC_Decode, 240, 17, 205, 1, // Opcode: VHADDuv8i8 6886/* 113 */ MCD::OPC_FilterValue, 1, 153, 74, 0, // Skip to: 19215 6887/* 118 */ MCD::OPC_CheckPredicate, 26, 148, 74, 0, // Skip to: 19215 6888/* 123 */ MCD::OPC_Decode, 235, 17, 206, 1, // Opcode: VHADDuv16i8 6889/* 128 */ MCD::OPC_FilterValue, 231, 3, 137, 74, 0, // Skip to: 19215 6890/* 134 */ MCD::OPC_CheckPredicate, 26, 132, 74, 0, // Skip to: 19215 6891/* 139 */ MCD::OPC_CheckField, 6, 1, 0, 125, 74, 0, // Skip to: 19215 6892/* 146 */ MCD::OPC_Decode, 158, 15, 207, 1, // Opcode: VADDLuv8i16 6893/* 151 */ MCD::OPC_FilterValue, 1, 127, 0, 0, // Skip to: 283 6894/* 156 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6895/* 159 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 198 6896/* 165 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6897/* 168 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 183 6898/* 173 */ MCD::OPC_CheckPredicate, 26, 93, 74, 0, // Skip to: 19215 6899/* 178 */ MCD::OPC_Decode, 181, 24, 205, 1, // Opcode: VRHADDsv8i8 6900/* 183 */ MCD::OPC_FilterValue, 1, 83, 74, 0, // Skip to: 19215 6901/* 188 */ MCD::OPC_CheckPredicate, 26, 78, 74, 0, // Skip to: 19215 6902/* 193 */ MCD::OPC_Decode, 176, 24, 206, 1, // Opcode: VRHADDsv16i8 6903/* 198 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 221 6904/* 204 */ MCD::OPC_CheckPredicate, 26, 62, 74, 0, // Skip to: 19215 6905/* 209 */ MCD::OPC_CheckField, 6, 1, 0, 55, 74, 0, // Skip to: 19215 6906/* 216 */ MCD::OPC_Decode, 162, 15, 208, 1, // Opcode: VADDWsv8i16 6907/* 221 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 260 6908/* 227 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6909/* 230 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 245 6910/* 235 */ MCD::OPC_CheckPredicate, 26, 31, 74, 0, // Skip to: 19215 6911/* 240 */ MCD::OPC_Decode, 187, 24, 205, 1, // Opcode: VRHADDuv8i8 6912/* 245 */ MCD::OPC_FilterValue, 1, 21, 74, 0, // Skip to: 19215 6913/* 250 */ MCD::OPC_CheckPredicate, 26, 16, 74, 0, // Skip to: 19215 6914/* 255 */ MCD::OPC_Decode, 182, 24, 206, 1, // Opcode: VRHADDuv16i8 6915/* 260 */ MCD::OPC_FilterValue, 231, 3, 5, 74, 0, // Skip to: 19215 6916/* 266 */ MCD::OPC_CheckPredicate, 26, 0, 74, 0, // Skip to: 19215 6917/* 271 */ MCD::OPC_CheckField, 6, 1, 0, 249, 73, 0, // Skip to: 19215 6918/* 278 */ MCD::OPC_Decode, 165, 15, 208, 1, // Opcode: VADDWuv8i16 6919/* 283 */ MCD::OPC_FilterValue, 2, 127, 0, 0, // Skip to: 415 6920/* 288 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6921/* 291 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 330 6922/* 297 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6923/* 300 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 315 6924/* 305 */ MCD::OPC_CheckPredicate, 26, 217, 73, 0, // Skip to: 19215 6925/* 310 */ MCD::OPC_Decode, 246, 17, 205, 1, // Opcode: VHSUBsv8i8 6926/* 315 */ MCD::OPC_FilterValue, 1, 207, 73, 0, // Skip to: 19215 6927/* 320 */ MCD::OPC_CheckPredicate, 26, 202, 73, 0, // Skip to: 19215 6928/* 325 */ MCD::OPC_Decode, 241, 17, 206, 1, // Opcode: VHSUBsv16i8 6929/* 330 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 353 6930/* 336 */ MCD::OPC_CheckPredicate, 26, 186, 73, 0, // Skip to: 19215 6931/* 341 */ MCD::OPC_CheckField, 6, 1, 0, 179, 73, 0, // Skip to: 19215 6932/* 348 */ MCD::OPC_Decode, 175, 28, 207, 1, // Opcode: VSUBLsv8i16 6933/* 353 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 392 6934/* 359 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6935/* 362 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 377 6936/* 367 */ MCD::OPC_CheckPredicate, 26, 155, 73, 0, // Skip to: 19215 6937/* 372 */ MCD::OPC_Decode, 252, 17, 205, 1, // Opcode: VHSUBuv8i8 6938/* 377 */ MCD::OPC_FilterValue, 1, 145, 73, 0, // Skip to: 19215 6939/* 382 */ MCD::OPC_CheckPredicate, 26, 140, 73, 0, // Skip to: 19215 6940/* 387 */ MCD::OPC_Decode, 247, 17, 206, 1, // Opcode: VHSUBuv16i8 6941/* 392 */ MCD::OPC_FilterValue, 231, 3, 129, 73, 0, // Skip to: 19215 6942/* 398 */ MCD::OPC_CheckPredicate, 26, 124, 73, 0, // Skip to: 19215 6943/* 403 */ MCD::OPC_CheckField, 6, 1, 0, 117, 73, 0, // Skip to: 19215 6944/* 410 */ MCD::OPC_Decode, 178, 28, 207, 1, // Opcode: VSUBLuv8i16 6945/* 415 */ MCD::OPC_FilterValue, 3, 127, 0, 0, // Skip to: 547 6946/* 420 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6947/* 423 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 462 6948/* 429 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6949/* 432 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 447 6950/* 437 */ MCD::OPC_CheckPredicate, 26, 85, 73, 0, // Skip to: 19215 6951/* 442 */ MCD::OPC_Decode, 251, 15, 205, 1, // Opcode: VCGTsv8i8 6952/* 447 */ MCD::OPC_FilterValue, 1, 75, 73, 0, // Skip to: 19215 6953/* 452 */ MCD::OPC_CheckPredicate, 26, 70, 73, 0, // Skip to: 19215 6954/* 457 */ MCD::OPC_Decode, 246, 15, 206, 1, // Opcode: VCGTsv16i8 6955/* 462 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 485 6956/* 468 */ MCD::OPC_CheckPredicate, 26, 54, 73, 0, // Skip to: 19215 6957/* 473 */ MCD::OPC_CheckField, 6, 1, 0, 47, 73, 0, // Skip to: 19215 6958/* 480 */ MCD::OPC_Decode, 182, 28, 208, 1, // Opcode: VSUBWsv8i16 6959/* 485 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 524 6960/* 491 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6961/* 494 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 509 6962/* 499 */ MCD::OPC_CheckPredicate, 26, 23, 73, 0, // Skip to: 19215 6963/* 504 */ MCD::OPC_Decode, 129, 16, 205, 1, // Opcode: VCGTuv8i8 6964/* 509 */ MCD::OPC_FilterValue, 1, 13, 73, 0, // Skip to: 19215 6965/* 514 */ MCD::OPC_CheckPredicate, 26, 8, 73, 0, // Skip to: 19215 6966/* 519 */ MCD::OPC_Decode, 252, 15, 206, 1, // Opcode: VCGTuv16i8 6967/* 524 */ MCD::OPC_FilterValue, 231, 3, 253, 72, 0, // Skip to: 19215 6968/* 530 */ MCD::OPC_CheckPredicate, 26, 248, 72, 0, // Skip to: 19215 6969/* 535 */ MCD::OPC_CheckField, 6, 1, 0, 241, 72, 0, // Skip to: 19215 6970/* 542 */ MCD::OPC_Decode, 185, 28, 208, 1, // Opcode: VSUBWuv8i16 6971/* 547 */ MCD::OPC_FilterValue, 4, 127, 0, 0, // Skip to: 679 6972/* 552 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6973/* 555 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 594 6974/* 561 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6975/* 564 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 579 6976/* 569 */ MCD::OPC_CheckPredicate, 26, 209, 72, 0, // Skip to: 19215 6977/* 574 */ MCD::OPC_Decode, 214, 25, 209, 1, // Opcode: VSHLsv8i8 6978/* 579 */ MCD::OPC_FilterValue, 1, 199, 72, 0, // Skip to: 19215 6979/* 584 */ MCD::OPC_CheckPredicate, 26, 194, 72, 0, // Skip to: 19215 6980/* 589 */ MCD::OPC_Decode, 207, 25, 210, 1, // Opcode: VSHLsv16i8 6981/* 594 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 617 6982/* 600 */ MCD::OPC_CheckPredicate, 26, 178, 72, 0, // Skip to: 19215 6983/* 605 */ MCD::OPC_CheckField, 6, 1, 0, 171, 72, 0, // Skip to: 19215 6984/* 612 */ MCD::OPC_Decode, 152, 15, 211, 1, // Opcode: VADDHNv8i8 6985/* 617 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 656 6986/* 623 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 6987/* 626 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 641 6988/* 631 */ MCD::OPC_CheckPredicate, 26, 147, 72, 0, // Skip to: 19215 6989/* 636 */ MCD::OPC_Decode, 222, 25, 209, 1, // Opcode: VSHLuv8i8 6990/* 641 */ MCD::OPC_FilterValue, 1, 137, 72, 0, // Skip to: 19215 6991/* 646 */ MCD::OPC_CheckPredicate, 26, 132, 72, 0, // Skip to: 19215 6992/* 651 */ MCD::OPC_Decode, 215, 25, 210, 1, // Opcode: VSHLuv16i8 6993/* 656 */ MCD::OPC_FilterValue, 231, 3, 121, 72, 0, // Skip to: 19215 6994/* 662 */ MCD::OPC_CheckPredicate, 26, 116, 72, 0, // Skip to: 19215 6995/* 667 */ MCD::OPC_CheckField, 6, 1, 0, 109, 72, 0, // Skip to: 19215 6996/* 674 */ MCD::OPC_Decode, 153, 24, 211, 1, // Opcode: VRADDHNv8i8 6997/* 679 */ MCD::OPC_FilterValue, 5, 127, 0, 0, // Skip to: 811 6998/* 684 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 6999/* 687 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 726 7000/* 693 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7001/* 696 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 711 7002/* 701 */ MCD::OPC_CheckPredicate, 26, 77, 72, 0, // Skip to: 19215 7003/* 706 */ MCD::OPC_Decode, 240, 24, 209, 1, // Opcode: VRSHLsv8i8 7004/* 711 */ MCD::OPC_FilterValue, 1, 67, 72, 0, // Skip to: 19215 7005/* 716 */ MCD::OPC_CheckPredicate, 26, 62, 72, 0, // Skip to: 19215 7006/* 721 */ MCD::OPC_Decode, 233, 24, 210, 1, // Opcode: VRSHLsv16i8 7007/* 726 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 749 7008/* 732 */ MCD::OPC_CheckPredicate, 26, 46, 72, 0, // Skip to: 19215 7009/* 737 */ MCD::OPC_CheckField, 6, 1, 0, 39, 72, 0, // Skip to: 19215 7010/* 744 */ MCD::OPC_Decode, 217, 14, 212, 1, // Opcode: VABALsv8i16 7011/* 749 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 788 7012/* 755 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7013/* 758 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 773 7014/* 763 */ MCD::OPC_CheckPredicate, 26, 15, 72, 0, // Skip to: 19215 7015/* 768 */ MCD::OPC_Decode, 248, 24, 209, 1, // Opcode: VRSHLuv8i8 7016/* 773 */ MCD::OPC_FilterValue, 1, 5, 72, 0, // Skip to: 19215 7017/* 778 */ MCD::OPC_CheckPredicate, 26, 0, 72, 0, // Skip to: 19215 7018/* 783 */ MCD::OPC_Decode, 241, 24, 210, 1, // Opcode: VRSHLuv16i8 7019/* 788 */ MCD::OPC_FilterValue, 231, 3, 245, 71, 0, // Skip to: 19215 7020/* 794 */ MCD::OPC_CheckPredicate, 26, 240, 71, 0, // Skip to: 19215 7021/* 799 */ MCD::OPC_CheckField, 6, 1, 0, 233, 71, 0, // Skip to: 19215 7022/* 806 */ MCD::OPC_Decode, 220, 14, 212, 1, // Opcode: VABALuv8i16 7023/* 811 */ MCD::OPC_FilterValue, 6, 127, 0, 0, // Skip to: 943 7024/* 816 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7025/* 819 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 858 7026/* 825 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7027/* 828 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 843 7028/* 833 */ MCD::OPC_CheckPredicate, 26, 201, 71, 0, // Skip to: 19215 7029/* 838 */ MCD::OPC_Decode, 238, 20, 205, 1, // Opcode: VMAXsv8i8 7030/* 843 */ MCD::OPC_FilterValue, 1, 191, 71, 0, // Skip to: 19215 7031/* 848 */ MCD::OPC_CheckPredicate, 26, 186, 71, 0, // Skip to: 19215 7032/* 853 */ MCD::OPC_Decode, 233, 20, 206, 1, // Opcode: VMAXsv16i8 7033/* 858 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 881 7034/* 864 */ MCD::OPC_CheckPredicate, 26, 170, 71, 0, // Skip to: 19215 7035/* 869 */ MCD::OPC_CheckField, 6, 1, 0, 163, 71, 0, // Skip to: 19215 7036/* 876 */ MCD::OPC_Decode, 172, 28, 211, 1, // Opcode: VSUBHNv8i8 7037/* 881 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 920 7038/* 887 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7039/* 890 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 905 7040/* 895 */ MCD::OPC_CheckPredicate, 26, 139, 71, 0, // Skip to: 19215 7041/* 900 */ MCD::OPC_Decode, 244, 20, 205, 1, // Opcode: VMAXuv8i8 7042/* 905 */ MCD::OPC_FilterValue, 1, 129, 71, 0, // Skip to: 19215 7043/* 910 */ MCD::OPC_CheckPredicate, 26, 124, 71, 0, // Skip to: 19215 7044/* 915 */ MCD::OPC_Decode, 239, 20, 206, 1, // Opcode: VMAXuv16i8 7045/* 920 */ MCD::OPC_FilterValue, 231, 3, 113, 71, 0, // Skip to: 19215 7046/* 926 */ MCD::OPC_CheckPredicate, 26, 108, 71, 0, // Skip to: 19215 7047/* 931 */ MCD::OPC_CheckField, 6, 1, 0, 101, 71, 0, // Skip to: 19215 7048/* 938 */ MCD::OPC_Decode, 168, 25, 211, 1, // Opcode: VRSUBHNv8i8 7049/* 943 */ MCD::OPC_FilterValue, 7, 127, 0, 0, // Skip to: 1075 7050/* 948 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7051/* 951 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 990 7052/* 957 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7053/* 960 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 975 7054/* 965 */ MCD::OPC_CheckPredicate, 26, 69, 71, 0, // Skip to: 19215 7055/* 970 */ MCD::OPC_Decode, 248, 14, 205, 1, // Opcode: VABDsv8i8 7056/* 975 */ MCD::OPC_FilterValue, 1, 59, 71, 0, // Skip to: 19215 7057/* 980 */ MCD::OPC_CheckPredicate, 26, 54, 71, 0, // Skip to: 19215 7058/* 985 */ MCD::OPC_Decode, 243, 14, 206, 1, // Opcode: VABDsv16i8 7059/* 990 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 1013 7060/* 996 */ MCD::OPC_CheckPredicate, 26, 38, 71, 0, // Skip to: 19215 7061/* 1001 */ MCD::OPC_CheckField, 6, 1, 0, 31, 71, 0, // Skip to: 19215 7062/* 1008 */ MCD::OPC_Decode, 235, 14, 207, 1, // Opcode: VABDLsv8i16 7063/* 1013 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 1052 7064/* 1019 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7065/* 1022 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1037 7066/* 1027 */ MCD::OPC_CheckPredicate, 26, 7, 71, 0, // Skip to: 19215 7067/* 1032 */ MCD::OPC_Decode, 254, 14, 205, 1, // Opcode: VABDuv8i8 7068/* 1037 */ MCD::OPC_FilterValue, 1, 253, 70, 0, // Skip to: 19215 7069/* 1042 */ MCD::OPC_CheckPredicate, 26, 248, 70, 0, // Skip to: 19215 7070/* 1047 */ MCD::OPC_Decode, 249, 14, 206, 1, // Opcode: VABDuv16i8 7071/* 1052 */ MCD::OPC_FilterValue, 231, 3, 237, 70, 0, // Skip to: 19215 7072/* 1058 */ MCD::OPC_CheckPredicate, 26, 232, 70, 0, // Skip to: 19215 7073/* 1063 */ MCD::OPC_CheckField, 6, 1, 0, 225, 70, 0, // Skip to: 19215 7074/* 1070 */ MCD::OPC_Decode, 238, 14, 207, 1, // Opcode: VABDLuv8i16 7075/* 1075 */ MCD::OPC_FilterValue, 8, 127, 0, 0, // Skip to: 1207 7076/* 1080 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7077/* 1083 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 1122 7078/* 1089 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7079/* 1092 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1107 7080/* 1097 */ MCD::OPC_CheckPredicate, 26, 193, 70, 0, // Skip to: 19215 7081/* 1102 */ MCD::OPC_Decode, 177, 15, 205, 1, // Opcode: VADDv8i8 7082/* 1107 */ MCD::OPC_FilterValue, 1, 183, 70, 0, // Skip to: 19215 7083/* 1112 */ MCD::OPC_CheckPredicate, 26, 178, 70, 0, // Skip to: 19215 7084/* 1117 */ MCD::OPC_Decode, 170, 15, 206, 1, // Opcode: VADDv16i8 7085/* 1122 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 1145 7086/* 1128 */ MCD::OPC_CheckPredicate, 26, 162, 70, 0, // Skip to: 19215 7087/* 1133 */ MCD::OPC_CheckField, 6, 1, 0, 155, 70, 0, // Skip to: 19215 7088/* 1140 */ MCD::OPC_Decode, 141, 21, 212, 1, // Opcode: VMLALsv8i16 7089/* 1145 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 1184 7090/* 1151 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7091/* 1154 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1169 7092/* 1159 */ MCD::OPC_CheckPredicate, 26, 131, 70, 0, // Skip to: 19215 7093/* 1164 */ MCD::OPC_Decode, 197, 28, 205, 1, // Opcode: VSUBv8i8 7094/* 1169 */ MCD::OPC_FilterValue, 1, 121, 70, 0, // Skip to: 19215 7095/* 1174 */ MCD::OPC_CheckPredicate, 26, 116, 70, 0, // Skip to: 19215 7096/* 1179 */ MCD::OPC_Decode, 190, 28, 206, 1, // Opcode: VSUBv16i8 7097/* 1184 */ MCD::OPC_FilterValue, 231, 3, 105, 70, 0, // Skip to: 19215 7098/* 1190 */ MCD::OPC_CheckPredicate, 26, 100, 70, 0, // Skip to: 19215 7099/* 1195 */ MCD::OPC_CheckField, 6, 1, 0, 93, 70, 0, // Skip to: 19215 7100/* 1202 */ MCD::OPC_Decode, 144, 21, 212, 1, // Opcode: VMLALuv8i16 7101/* 1207 */ MCD::OPC_FilterValue, 9, 83, 0, 0, // Skip to: 1295 7102/* 1212 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7103/* 1215 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 1255 7104/* 1220 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7105/* 1223 */ MCD::OPC_FilterValue, 228, 3, 10, 0, 0, // Skip to: 1239 7106/* 1229 */ MCD::OPC_CheckPredicate, 26, 61, 70, 0, // Skip to: 19215 7107/* 1234 */ MCD::OPC_Decode, 163, 21, 213, 1, // Opcode: VMLAv8i8 7108/* 1239 */ MCD::OPC_FilterValue, 230, 3, 50, 70, 0, // Skip to: 19215 7109/* 1245 */ MCD::OPC_CheckPredicate, 26, 45, 70, 0, // Skip to: 19215 7110/* 1250 */ MCD::OPC_Decode, 194, 21, 213, 1, // Opcode: VMLSv8i8 7111/* 1255 */ MCD::OPC_FilterValue, 1, 35, 70, 0, // Skip to: 19215 7112/* 1260 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7113/* 1263 */ MCD::OPC_FilterValue, 228, 3, 10, 0, 0, // Skip to: 1279 7114/* 1269 */ MCD::OPC_CheckPredicate, 26, 21, 70, 0, // Skip to: 19215 7115/* 1274 */ MCD::OPC_Decode, 158, 21, 214, 1, // Opcode: VMLAv16i8 7116/* 1279 */ MCD::OPC_FilterValue, 230, 3, 10, 70, 0, // Skip to: 19215 7117/* 1285 */ MCD::OPC_CheckPredicate, 26, 5, 70, 0, // Skip to: 19215 7118/* 1290 */ MCD::OPC_Decode, 189, 21, 214, 1, // Opcode: VMLSv16i8 7119/* 1295 */ MCD::OPC_FilterValue, 10, 95, 0, 0, // Skip to: 1395 7120/* 1300 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7121/* 1303 */ MCD::OPC_FilterValue, 228, 3, 17, 0, 0, // Skip to: 1326 7122/* 1309 */ MCD::OPC_CheckPredicate, 26, 237, 69, 0, // Skip to: 19215 7123/* 1314 */ MCD::OPC_CheckField, 6, 1, 0, 230, 69, 0, // Skip to: 19215 7124/* 1321 */ MCD::OPC_Decode, 224, 22, 205, 1, // Opcode: VPMAXs8 7125/* 1326 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 1349 7126/* 1332 */ MCD::OPC_CheckPredicate, 26, 214, 69, 0, // Skip to: 19215 7127/* 1337 */ MCD::OPC_CheckField, 6, 1, 0, 207, 69, 0, // Skip to: 19215 7128/* 1344 */ MCD::OPC_Decode, 172, 21, 212, 1, // Opcode: VMLSLsv8i16 7129/* 1349 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 1372 7130/* 1355 */ MCD::OPC_CheckPredicate, 26, 191, 69, 0, // Skip to: 19215 7131/* 1360 */ MCD::OPC_CheckField, 6, 1, 0, 184, 69, 0, // Skip to: 19215 7132/* 1367 */ MCD::OPC_Decode, 227, 22, 205, 1, // Opcode: VPMAXu8 7133/* 1372 */ MCD::OPC_FilterValue, 231, 3, 173, 69, 0, // Skip to: 19215 7134/* 1378 */ MCD::OPC_CheckPredicate, 26, 168, 69, 0, // Skip to: 19215 7135/* 1383 */ MCD::OPC_CheckField, 6, 1, 0, 161, 69, 0, // Skip to: 19215 7136/* 1390 */ MCD::OPC_Decode, 175, 21, 212, 1, // Opcode: VMLSLuv8i16 7137/* 1395 */ MCD::OPC_FilterValue, 12, 49, 0, 0, // Skip to: 1449 7138/* 1400 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7139/* 1403 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 1426 7140/* 1409 */ MCD::OPC_CheckPredicate, 26, 137, 69, 0, // Skip to: 19215 7141/* 1414 */ MCD::OPC_CheckField, 6, 1, 0, 130, 69, 0, // Skip to: 19215 7142/* 1421 */ MCD::OPC_Decode, 130, 22, 207, 1, // Opcode: VMULLsv8i16 7143/* 1426 */ MCD::OPC_FilterValue, 231, 3, 119, 69, 0, // Skip to: 19215 7144/* 1432 */ MCD::OPC_CheckPredicate, 26, 114, 69, 0, // Skip to: 19215 7145/* 1437 */ MCD::OPC_CheckField, 6, 1, 0, 107, 69, 0, // Skip to: 19215 7146/* 1444 */ MCD::OPC_Decode, 133, 22, 207, 1, // Opcode: VMULLuv8i16 7147/* 1449 */ MCD::OPC_FilterValue, 13, 66, 0, 0, // Skip to: 1520 7148/* 1454 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7149/* 1457 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 1497 7150/* 1462 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7151/* 1465 */ MCD::OPC_FilterValue, 228, 3, 10, 0, 0, // Skip to: 1481 7152/* 1471 */ MCD::OPC_CheckPredicate, 26, 75, 69, 0, // Skip to: 19215 7153/* 1476 */ MCD::OPC_Decode, 166, 15, 205, 1, // Opcode: VADDfd 7154/* 1481 */ MCD::OPC_FilterValue, 230, 3, 64, 69, 0, // Skip to: 19215 7155/* 1487 */ MCD::OPC_CheckPredicate, 26, 59, 69, 0, // Skip to: 19215 7156/* 1492 */ MCD::OPC_Decode, 215, 22, 205, 1, // Opcode: VPADDf 7157/* 1497 */ MCD::OPC_FilterValue, 1, 49, 69, 0, // Skip to: 19215 7158/* 1502 */ MCD::OPC_CheckPredicate, 26, 44, 69, 0, // Skip to: 19215 7159/* 1507 */ MCD::OPC_CheckField, 23, 9, 228, 3, 36, 69, 0, // Skip to: 19215 7160/* 1515 */ MCD::OPC_Decode, 167, 15, 206, 1, // Opcode: VADDfq 7161/* 1520 */ MCD::OPC_FilterValue, 14, 104, 0, 0, // Skip to: 1629 7162/* 1525 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7163/* 1528 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 1567 7164/* 1534 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7165/* 1537 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1552 7166/* 1542 */ MCD::OPC_CheckPredicate, 26, 4, 69, 0, // Skip to: 19215 7167/* 1547 */ MCD::OPC_Decode, 196, 15, 205, 1, // Opcode: VCEQfd 7168/* 1552 */ MCD::OPC_FilterValue, 1, 250, 68, 0, // Skip to: 19215 7169/* 1557 */ MCD::OPC_CheckPredicate, 26, 245, 68, 0, // Skip to: 19215 7170/* 1562 */ MCD::OPC_Decode, 197, 15, 206, 1, // Opcode: VCEQfq 7171/* 1567 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 1590 7172/* 1573 */ MCD::OPC_CheckPredicate, 26, 229, 68, 0, // Skip to: 19215 7173/* 1578 */ MCD::OPC_CheckField, 6, 1, 0, 222, 68, 0, // Skip to: 19215 7174/* 1585 */ MCD::OPC_Decode, 251, 21, 207, 1, // Opcode: VMULLp8 7175/* 1590 */ MCD::OPC_FilterValue, 230, 3, 211, 68, 0, // Skip to: 19215 7176/* 1596 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7177/* 1599 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1614 7178/* 1604 */ MCD::OPC_CheckPredicate, 26, 198, 68, 0, // Skip to: 19215 7179/* 1609 */ MCD::OPC_Decode, 216, 15, 205, 1, // Opcode: VCGEfd 7180/* 1614 */ MCD::OPC_FilterValue, 1, 188, 68, 0, // Skip to: 19215 7181/* 1619 */ MCD::OPC_CheckPredicate, 26, 183, 68, 0, // Skip to: 19215 7182/* 1624 */ MCD::OPC_Decode, 217, 15, 206, 1, // Opcode: VCGEfq 7183/* 1629 */ MCD::OPC_FilterValue, 15, 173, 68, 0, // Skip to: 19215 7184/* 1634 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7185/* 1637 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 1677 7186/* 1642 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7187/* 1645 */ MCD::OPC_FilterValue, 228, 3, 10, 0, 0, // Skip to: 1661 7188/* 1651 */ MCD::OPC_CheckPredicate, 26, 151, 68, 0, // Skip to: 19215 7189/* 1656 */ MCD::OPC_Decode, 229, 20, 205, 1, // Opcode: VMAXfd 7190/* 1661 */ MCD::OPC_FilterValue, 230, 3, 140, 68, 0, // Skip to: 19215 7191/* 1667 */ MCD::OPC_CheckPredicate, 26, 135, 68, 0, // Skip to: 19215 7192/* 1672 */ MCD::OPC_Decode, 220, 22, 205, 1, // Opcode: VPMAXf 7193/* 1677 */ MCD::OPC_FilterValue, 1, 125, 68, 0, // Skip to: 19215 7194/* 1682 */ MCD::OPC_CheckPredicate, 26, 120, 68, 0, // Skip to: 19215 7195/* 1687 */ MCD::OPC_CheckField, 23, 9, 228, 3, 112, 68, 0, // Skip to: 19215 7196/* 1695 */ MCD::OPC_Decode, 230, 20, 206, 1, // Opcode: VMAXfq 7197/* 1700 */ MCD::OPC_FilterValue, 1, 16, 9, 0, // Skip to: 4025 7198/* 1705 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 7199/* 1708 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 1872 7200/* 1713 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7201/* 1716 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 1755 7202/* 1722 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7203/* 1725 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1740 7204/* 1730 */ MCD::OPC_CheckPredicate, 26, 72, 68, 0, // Skip to: 19215 7205/* 1735 */ MCD::OPC_Decode, 231, 17, 205, 1, // Opcode: VHADDsv4i16 7206/* 1740 */ MCD::OPC_FilterValue, 1, 62, 68, 0, // Skip to: 19215 7207/* 1745 */ MCD::OPC_CheckPredicate, 26, 57, 68, 0, // Skip to: 19215 7208/* 1750 */ MCD::OPC_Decode, 233, 17, 206, 1, // Opcode: VHADDsv8i16 7209/* 1755 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 1794 7210/* 1761 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7211/* 1764 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1779 7212/* 1769 */ MCD::OPC_CheckPredicate, 26, 33, 68, 0, // Skip to: 19215 7213/* 1774 */ MCD::OPC_Decode, 154, 15, 207, 1, // Opcode: VADDLsv4i32 7214/* 1779 */ MCD::OPC_FilterValue, 1, 23, 68, 0, // Skip to: 19215 7215/* 1784 */ MCD::OPC_CheckPredicate, 26, 18, 68, 0, // Skip to: 19215 7216/* 1789 */ MCD::OPC_Decode, 155, 21, 215, 1, // Opcode: VMLAslv4i16 7217/* 1794 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 1833 7218/* 1800 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7219/* 1803 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1818 7220/* 1808 */ MCD::OPC_CheckPredicate, 26, 250, 67, 0, // Skip to: 19215 7221/* 1813 */ MCD::OPC_Decode, 237, 17, 205, 1, // Opcode: VHADDuv4i16 7222/* 1818 */ MCD::OPC_FilterValue, 1, 240, 67, 0, // Skip to: 19215 7223/* 1823 */ MCD::OPC_CheckPredicate, 26, 235, 67, 0, // Skip to: 19215 7224/* 1828 */ MCD::OPC_Decode, 239, 17, 206, 1, // Opcode: VHADDuv8i16 7225/* 1833 */ MCD::OPC_FilterValue, 231, 3, 224, 67, 0, // Skip to: 19215 7226/* 1839 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7227/* 1842 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1857 7228/* 1847 */ MCD::OPC_CheckPredicate, 26, 211, 67, 0, // Skip to: 19215 7229/* 1852 */ MCD::OPC_Decode, 157, 15, 207, 1, // Opcode: VADDLuv4i32 7230/* 1857 */ MCD::OPC_FilterValue, 1, 201, 67, 0, // Skip to: 19215 7231/* 1862 */ MCD::OPC_CheckPredicate, 26, 196, 67, 0, // Skip to: 19215 7232/* 1867 */ MCD::OPC_Decode, 157, 21, 216, 1, // Opcode: VMLAslv8i16 7233/* 1872 */ MCD::OPC_FilterValue, 1, 159, 0, 0, // Skip to: 2036 7234/* 1877 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7235/* 1880 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 1919 7236/* 1886 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7237/* 1889 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1904 7238/* 1894 */ MCD::OPC_CheckPredicate, 26, 164, 67, 0, // Skip to: 19215 7239/* 1899 */ MCD::OPC_Decode, 178, 24, 205, 1, // Opcode: VRHADDsv4i16 7240/* 1904 */ MCD::OPC_FilterValue, 1, 154, 67, 0, // Skip to: 19215 7241/* 1909 */ MCD::OPC_CheckPredicate, 26, 149, 67, 0, // Skip to: 19215 7242/* 1914 */ MCD::OPC_Decode, 180, 24, 206, 1, // Opcode: VRHADDsv8i16 7243/* 1919 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 1958 7244/* 1925 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7245/* 1928 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1943 7246/* 1933 */ MCD::OPC_CheckPredicate, 26, 125, 67, 0, // Skip to: 19215 7247/* 1938 */ MCD::OPC_Decode, 161, 15, 208, 1, // Opcode: VADDWsv4i32 7248/* 1943 */ MCD::OPC_FilterValue, 1, 115, 67, 0, // Skip to: 19215 7249/* 1948 */ MCD::OPC_CheckPredicate, 27, 110, 67, 0, // Skip to: 19215 7250/* 1953 */ MCD::OPC_Decode, 152, 21, 215, 1, // Opcode: VMLAslhd 7251/* 1958 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 1997 7252/* 1964 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7253/* 1967 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1982 7254/* 1972 */ MCD::OPC_CheckPredicate, 26, 86, 67, 0, // Skip to: 19215 7255/* 1977 */ MCD::OPC_Decode, 184, 24, 205, 1, // Opcode: VRHADDuv4i16 7256/* 1982 */ MCD::OPC_FilterValue, 1, 76, 67, 0, // Skip to: 19215 7257/* 1987 */ MCD::OPC_CheckPredicate, 26, 71, 67, 0, // Skip to: 19215 7258/* 1992 */ MCD::OPC_Decode, 186, 24, 206, 1, // Opcode: VRHADDuv8i16 7259/* 1997 */ MCD::OPC_FilterValue, 231, 3, 60, 67, 0, // Skip to: 19215 7260/* 2003 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7261/* 2006 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2021 7262/* 2011 */ MCD::OPC_CheckPredicate, 26, 47, 67, 0, // Skip to: 19215 7263/* 2016 */ MCD::OPC_Decode, 164, 15, 208, 1, // Opcode: VADDWuv4i32 7264/* 2021 */ MCD::OPC_FilterValue, 1, 37, 67, 0, // Skip to: 19215 7265/* 2026 */ MCD::OPC_CheckPredicate, 27, 32, 67, 0, // Skip to: 19215 7266/* 2031 */ MCD::OPC_Decode, 153, 21, 216, 1, // Opcode: VMLAslhq 7267/* 2036 */ MCD::OPC_FilterValue, 2, 159, 0, 0, // Skip to: 2200 7268/* 2041 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7269/* 2044 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2083 7270/* 2050 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7271/* 2053 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2068 7272/* 2058 */ MCD::OPC_CheckPredicate, 26, 0, 67, 0, // Skip to: 19215 7273/* 2063 */ MCD::OPC_Decode, 243, 17, 205, 1, // Opcode: VHSUBsv4i16 7274/* 2068 */ MCD::OPC_FilterValue, 1, 246, 66, 0, // Skip to: 19215 7275/* 2073 */ MCD::OPC_CheckPredicate, 26, 241, 66, 0, // Skip to: 19215 7276/* 2078 */ MCD::OPC_Decode, 245, 17, 206, 1, // Opcode: VHSUBsv8i16 7277/* 2083 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2122 7278/* 2089 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7279/* 2092 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2107 7280/* 2097 */ MCD::OPC_CheckPredicate, 26, 217, 66, 0, // Skip to: 19215 7281/* 2102 */ MCD::OPC_Decode, 174, 28, 207, 1, // Opcode: VSUBLsv4i32 7282/* 2107 */ MCD::OPC_FilterValue, 1, 207, 66, 0, // Skip to: 19215 7283/* 2112 */ MCD::OPC_CheckPredicate, 26, 202, 66, 0, // Skip to: 19215 7284/* 2117 */ MCD::OPC_Decode, 136, 21, 217, 1, // Opcode: VMLALslsv4i16 7285/* 2122 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2161 7286/* 2128 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7287/* 2131 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2146 7288/* 2136 */ MCD::OPC_CheckPredicate, 26, 178, 66, 0, // Skip to: 19215 7289/* 2141 */ MCD::OPC_Decode, 249, 17, 205, 1, // Opcode: VHSUBuv4i16 7290/* 2146 */ MCD::OPC_FilterValue, 1, 168, 66, 0, // Skip to: 19215 7291/* 2151 */ MCD::OPC_CheckPredicate, 26, 163, 66, 0, // Skip to: 19215 7292/* 2156 */ MCD::OPC_Decode, 251, 17, 206, 1, // Opcode: VHSUBuv8i16 7293/* 2161 */ MCD::OPC_FilterValue, 231, 3, 152, 66, 0, // Skip to: 19215 7294/* 2167 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7295/* 2170 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2185 7296/* 2175 */ MCD::OPC_CheckPredicate, 26, 139, 66, 0, // Skip to: 19215 7297/* 2180 */ MCD::OPC_Decode, 177, 28, 207, 1, // Opcode: VSUBLuv4i32 7298/* 2185 */ MCD::OPC_FilterValue, 1, 129, 66, 0, // Skip to: 19215 7299/* 2190 */ MCD::OPC_CheckPredicate, 26, 124, 66, 0, // Skip to: 19215 7300/* 2195 */ MCD::OPC_Decode, 138, 21, 217, 1, // Opcode: VMLALsluv4i16 7301/* 2200 */ MCD::OPC_FilterValue, 3, 143, 0, 0, // Skip to: 2348 7302/* 2205 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7303/* 2208 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2247 7304/* 2214 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7305/* 2217 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2232 7306/* 2222 */ MCD::OPC_CheckPredicate, 26, 92, 66, 0, // Skip to: 19215 7307/* 2227 */ MCD::OPC_Decode, 248, 15, 205, 1, // Opcode: VCGTsv4i16 7308/* 2232 */ MCD::OPC_FilterValue, 1, 82, 66, 0, // Skip to: 19215 7309/* 2237 */ MCD::OPC_CheckPredicate, 26, 77, 66, 0, // Skip to: 19215 7310/* 2242 */ MCD::OPC_Decode, 250, 15, 206, 1, // Opcode: VCGTsv8i16 7311/* 2247 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2286 7312/* 2253 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7313/* 2256 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2271 7314/* 2261 */ MCD::OPC_CheckPredicate, 26, 53, 66, 0, // Skip to: 19215 7315/* 2266 */ MCD::OPC_Decode, 181, 28, 208, 1, // Opcode: VSUBWsv4i32 7316/* 2271 */ MCD::OPC_FilterValue, 1, 43, 66, 0, // Skip to: 19215 7317/* 2276 */ MCD::OPC_CheckPredicate, 26, 38, 66, 0, // Skip to: 19215 7318/* 2281 */ MCD::OPC_Decode, 131, 23, 217, 1, // Opcode: VQDMLALslv4i16 7319/* 2286 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2325 7320/* 2292 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7321/* 2295 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2310 7322/* 2300 */ MCD::OPC_CheckPredicate, 26, 14, 66, 0, // Skip to: 19215 7323/* 2305 */ MCD::OPC_Decode, 254, 15, 205, 1, // Opcode: VCGTuv4i16 7324/* 2310 */ MCD::OPC_FilterValue, 1, 4, 66, 0, // Skip to: 19215 7325/* 2315 */ MCD::OPC_CheckPredicate, 26, 255, 65, 0, // Skip to: 19215 7326/* 2320 */ MCD::OPC_Decode, 128, 16, 206, 1, // Opcode: VCGTuv8i16 7327/* 2325 */ MCD::OPC_FilterValue, 231, 3, 244, 65, 0, // Skip to: 19215 7328/* 2331 */ MCD::OPC_CheckPredicate, 26, 239, 65, 0, // Skip to: 19215 7329/* 2336 */ MCD::OPC_CheckField, 6, 1, 0, 232, 65, 0, // Skip to: 19215 7330/* 2343 */ MCD::OPC_Decode, 184, 28, 208, 1, // Opcode: VSUBWuv4i32 7331/* 2348 */ MCD::OPC_FilterValue, 4, 159, 0, 0, // Skip to: 2512 7332/* 2353 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7333/* 2356 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2395 7334/* 2362 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7335/* 2365 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2380 7336/* 2370 */ MCD::OPC_CheckPredicate, 26, 200, 65, 0, // Skip to: 19215 7337/* 2375 */ MCD::OPC_Decode, 211, 25, 209, 1, // Opcode: VSHLsv4i16 7338/* 2380 */ MCD::OPC_FilterValue, 1, 190, 65, 0, // Skip to: 19215 7339/* 2385 */ MCD::OPC_CheckPredicate, 26, 185, 65, 0, // Skip to: 19215 7340/* 2390 */ MCD::OPC_Decode, 213, 25, 210, 1, // Opcode: VSHLsv8i16 7341/* 2395 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2434 7342/* 2401 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7343/* 2404 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2419 7344/* 2409 */ MCD::OPC_CheckPredicate, 26, 161, 65, 0, // Skip to: 19215 7345/* 2414 */ MCD::OPC_Decode, 151, 15, 211, 1, // Opcode: VADDHNv4i16 7346/* 2419 */ MCD::OPC_FilterValue, 1, 151, 65, 0, // Skip to: 19215 7347/* 2424 */ MCD::OPC_CheckPredicate, 26, 146, 65, 0, // Skip to: 19215 7348/* 2429 */ MCD::OPC_Decode, 186, 21, 215, 1, // Opcode: VMLSslv4i16 7349/* 2434 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2473 7350/* 2440 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7351/* 2443 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2458 7352/* 2448 */ MCD::OPC_CheckPredicate, 26, 122, 65, 0, // Skip to: 19215 7353/* 2453 */ MCD::OPC_Decode, 219, 25, 209, 1, // Opcode: VSHLuv4i16 7354/* 2458 */ MCD::OPC_FilterValue, 1, 112, 65, 0, // Skip to: 19215 7355/* 2463 */ MCD::OPC_CheckPredicate, 26, 107, 65, 0, // Skip to: 19215 7356/* 2468 */ MCD::OPC_Decode, 221, 25, 210, 1, // Opcode: VSHLuv8i16 7357/* 2473 */ MCD::OPC_FilterValue, 231, 3, 96, 65, 0, // Skip to: 19215 7358/* 2479 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7359/* 2482 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2497 7360/* 2487 */ MCD::OPC_CheckPredicate, 26, 83, 65, 0, // Skip to: 19215 7361/* 2492 */ MCD::OPC_Decode, 152, 24, 211, 1, // Opcode: VRADDHNv4i16 7362/* 2497 */ MCD::OPC_FilterValue, 1, 73, 65, 0, // Skip to: 19215 7363/* 2502 */ MCD::OPC_CheckPredicate, 26, 68, 65, 0, // Skip to: 19215 7364/* 2507 */ MCD::OPC_Decode, 188, 21, 216, 1, // Opcode: VMLSslv8i16 7365/* 2512 */ MCD::OPC_FilterValue, 5, 159, 0, 0, // Skip to: 2676 7366/* 2517 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7367/* 2520 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2559 7368/* 2526 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7369/* 2529 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2544 7370/* 2534 */ MCD::OPC_CheckPredicate, 26, 36, 65, 0, // Skip to: 19215 7371/* 2539 */ MCD::OPC_Decode, 237, 24, 209, 1, // Opcode: VRSHLsv4i16 7372/* 2544 */ MCD::OPC_FilterValue, 1, 26, 65, 0, // Skip to: 19215 7373/* 2549 */ MCD::OPC_CheckPredicate, 26, 21, 65, 0, // Skip to: 19215 7374/* 2554 */ MCD::OPC_Decode, 239, 24, 210, 1, // Opcode: VRSHLsv8i16 7375/* 2559 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2598 7376/* 2565 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7377/* 2568 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2583 7378/* 2573 */ MCD::OPC_CheckPredicate, 26, 253, 64, 0, // Skip to: 19215 7379/* 2578 */ MCD::OPC_Decode, 216, 14, 212, 1, // Opcode: VABALsv4i32 7380/* 2583 */ MCD::OPC_FilterValue, 1, 243, 64, 0, // Skip to: 19215 7381/* 2588 */ MCD::OPC_CheckPredicate, 27, 238, 64, 0, // Skip to: 19215 7382/* 2593 */ MCD::OPC_Decode, 183, 21, 215, 1, // Opcode: VMLSslhd 7383/* 2598 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2637 7384/* 2604 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7385/* 2607 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2622 7386/* 2612 */ MCD::OPC_CheckPredicate, 26, 214, 64, 0, // Skip to: 19215 7387/* 2617 */ MCD::OPC_Decode, 245, 24, 209, 1, // Opcode: VRSHLuv4i16 7388/* 2622 */ MCD::OPC_FilterValue, 1, 204, 64, 0, // Skip to: 19215 7389/* 2627 */ MCD::OPC_CheckPredicate, 26, 199, 64, 0, // Skip to: 19215 7390/* 2632 */ MCD::OPC_Decode, 247, 24, 210, 1, // Opcode: VRSHLuv8i16 7391/* 2637 */ MCD::OPC_FilterValue, 231, 3, 188, 64, 0, // Skip to: 19215 7392/* 2643 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7393/* 2646 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2661 7394/* 2651 */ MCD::OPC_CheckPredicate, 26, 175, 64, 0, // Skip to: 19215 7395/* 2656 */ MCD::OPC_Decode, 219, 14, 212, 1, // Opcode: VABALuv4i32 7396/* 2661 */ MCD::OPC_FilterValue, 1, 165, 64, 0, // Skip to: 19215 7397/* 2666 */ MCD::OPC_CheckPredicate, 27, 160, 64, 0, // Skip to: 19215 7398/* 2671 */ MCD::OPC_Decode, 184, 21, 216, 1, // Opcode: VMLSslhq 7399/* 2676 */ MCD::OPC_FilterValue, 6, 159, 0, 0, // Skip to: 2840 7400/* 2681 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7401/* 2684 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2723 7402/* 2690 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7403/* 2693 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2708 7404/* 2698 */ MCD::OPC_CheckPredicate, 26, 128, 64, 0, // Skip to: 19215 7405/* 2703 */ MCD::OPC_Decode, 235, 20, 205, 1, // Opcode: VMAXsv4i16 7406/* 2708 */ MCD::OPC_FilterValue, 1, 118, 64, 0, // Skip to: 19215 7407/* 2713 */ MCD::OPC_CheckPredicate, 26, 113, 64, 0, // Skip to: 19215 7408/* 2718 */ MCD::OPC_Decode, 237, 20, 206, 1, // Opcode: VMAXsv8i16 7409/* 2723 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2762 7410/* 2729 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7411/* 2732 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2747 7412/* 2737 */ MCD::OPC_CheckPredicate, 26, 89, 64, 0, // Skip to: 19215 7413/* 2742 */ MCD::OPC_Decode, 171, 28, 211, 1, // Opcode: VSUBHNv4i16 7414/* 2747 */ MCD::OPC_FilterValue, 1, 79, 64, 0, // Skip to: 19215 7415/* 2752 */ MCD::OPC_CheckPredicate, 26, 74, 64, 0, // Skip to: 19215 7416/* 2757 */ MCD::OPC_Decode, 167, 21, 217, 1, // Opcode: VMLSLslsv4i16 7417/* 2762 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2801 7418/* 2768 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7419/* 2771 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2786 7420/* 2776 */ MCD::OPC_CheckPredicate, 26, 50, 64, 0, // Skip to: 19215 7421/* 2781 */ MCD::OPC_Decode, 241, 20, 205, 1, // Opcode: VMAXuv4i16 7422/* 2786 */ MCD::OPC_FilterValue, 1, 40, 64, 0, // Skip to: 19215 7423/* 2791 */ MCD::OPC_CheckPredicate, 26, 35, 64, 0, // Skip to: 19215 7424/* 2796 */ MCD::OPC_Decode, 243, 20, 206, 1, // Opcode: VMAXuv8i16 7425/* 2801 */ MCD::OPC_FilterValue, 231, 3, 24, 64, 0, // Skip to: 19215 7426/* 2807 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7427/* 2810 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2825 7428/* 2815 */ MCD::OPC_CheckPredicate, 26, 11, 64, 0, // Skip to: 19215 7429/* 2820 */ MCD::OPC_Decode, 167, 25, 211, 1, // Opcode: VRSUBHNv4i16 7430/* 2825 */ MCD::OPC_FilterValue, 1, 1, 64, 0, // Skip to: 19215 7431/* 2830 */ MCD::OPC_CheckPredicate, 26, 252, 63, 0, // Skip to: 19215 7432/* 2835 */ MCD::OPC_Decode, 169, 21, 217, 1, // Opcode: VMLSLsluv4i16 7433/* 2840 */ MCD::OPC_FilterValue, 7, 143, 0, 0, // Skip to: 2988 7434/* 2845 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7435/* 2848 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 2887 7436/* 2854 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7437/* 2857 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2872 7438/* 2862 */ MCD::OPC_CheckPredicate, 26, 220, 63, 0, // Skip to: 19215 7439/* 2867 */ MCD::OPC_Decode, 245, 14, 205, 1, // Opcode: VABDsv4i16 7440/* 2872 */ MCD::OPC_FilterValue, 1, 210, 63, 0, // Skip to: 19215 7441/* 2877 */ MCD::OPC_CheckPredicate, 26, 205, 63, 0, // Skip to: 19215 7442/* 2882 */ MCD::OPC_Decode, 247, 14, 206, 1, // Opcode: VABDsv8i16 7443/* 2887 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 2926 7444/* 2893 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7445/* 2896 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2911 7446/* 2901 */ MCD::OPC_CheckPredicate, 26, 181, 63, 0, // Skip to: 19215 7447/* 2906 */ MCD::OPC_Decode, 234, 14, 207, 1, // Opcode: VABDLsv4i32 7448/* 2911 */ MCD::OPC_FilterValue, 1, 171, 63, 0, // Skip to: 19215 7449/* 2916 */ MCD::OPC_CheckPredicate, 26, 166, 63, 0, // Skip to: 19215 7450/* 2921 */ MCD::OPC_Decode, 135, 23, 217, 1, // Opcode: VQDMLSLslv4i16 7451/* 2926 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 2965 7452/* 2932 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7453/* 2935 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2950 7454/* 2940 */ MCD::OPC_CheckPredicate, 26, 142, 63, 0, // Skip to: 19215 7455/* 2945 */ MCD::OPC_Decode, 251, 14, 205, 1, // Opcode: VABDuv4i16 7456/* 2950 */ MCD::OPC_FilterValue, 1, 132, 63, 0, // Skip to: 19215 7457/* 2955 */ MCD::OPC_CheckPredicate, 26, 127, 63, 0, // Skip to: 19215 7458/* 2960 */ MCD::OPC_Decode, 253, 14, 206, 1, // Opcode: VABDuv8i16 7459/* 2965 */ MCD::OPC_FilterValue, 231, 3, 116, 63, 0, // Skip to: 19215 7460/* 2971 */ MCD::OPC_CheckPredicate, 26, 111, 63, 0, // Skip to: 19215 7461/* 2976 */ MCD::OPC_CheckField, 6, 1, 0, 104, 63, 0, // Skip to: 19215 7462/* 2983 */ MCD::OPC_Decode, 237, 14, 207, 1, // Opcode: VABDLuv4i32 7463/* 2988 */ MCD::OPC_FilterValue, 8, 159, 0, 0, // Skip to: 3152 7464/* 2993 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7465/* 2996 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3035 7466/* 3002 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7467/* 3005 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3020 7468/* 3010 */ MCD::OPC_CheckPredicate, 26, 72, 63, 0, // Skip to: 19215 7469/* 3015 */ MCD::OPC_Decode, 174, 15, 205, 1, // Opcode: VADDv4i16 7470/* 3020 */ MCD::OPC_FilterValue, 1, 62, 63, 0, // Skip to: 19215 7471/* 3025 */ MCD::OPC_CheckPredicate, 26, 57, 63, 0, // Skip to: 19215 7472/* 3030 */ MCD::OPC_Decode, 176, 15, 206, 1, // Opcode: VADDv8i16 7473/* 3035 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 3074 7474/* 3041 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7475/* 3044 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3059 7476/* 3049 */ MCD::OPC_CheckPredicate, 26, 33, 63, 0, // Skip to: 19215 7477/* 3054 */ MCD::OPC_Decode, 140, 21, 212, 1, // Opcode: VMLALsv4i32 7478/* 3059 */ MCD::OPC_FilterValue, 1, 23, 63, 0, // Skip to: 19215 7479/* 3064 */ MCD::OPC_CheckPredicate, 26, 18, 63, 0, // Skip to: 19215 7480/* 3069 */ MCD::OPC_Decode, 146, 22, 218, 1, // Opcode: VMULslv4i16 7481/* 3074 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 3113 7482/* 3080 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7483/* 3083 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3098 7484/* 3088 */ MCD::OPC_CheckPredicate, 26, 250, 62, 0, // Skip to: 19215 7485/* 3093 */ MCD::OPC_Decode, 194, 28, 205, 1, // Opcode: VSUBv4i16 7486/* 3098 */ MCD::OPC_FilterValue, 1, 240, 62, 0, // Skip to: 19215 7487/* 3103 */ MCD::OPC_CheckPredicate, 26, 235, 62, 0, // Skip to: 19215 7488/* 3108 */ MCD::OPC_Decode, 196, 28, 206, 1, // Opcode: VSUBv8i16 7489/* 3113 */ MCD::OPC_FilterValue, 231, 3, 224, 62, 0, // Skip to: 19215 7490/* 3119 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7491/* 3122 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3137 7492/* 3127 */ MCD::OPC_CheckPredicate, 26, 211, 62, 0, // Skip to: 19215 7493/* 3132 */ MCD::OPC_Decode, 143, 21, 212, 1, // Opcode: VMLALuv4i32 7494/* 3137 */ MCD::OPC_FilterValue, 1, 201, 62, 0, // Skip to: 19215 7495/* 3142 */ MCD::OPC_CheckPredicate, 26, 196, 62, 0, // Skip to: 19215 7496/* 3147 */ MCD::OPC_Decode, 148, 22, 219, 1, // Opcode: VMULslv8i16 7497/* 3152 */ MCD::OPC_FilterValue, 9, 143, 0, 0, // Skip to: 3300 7498/* 3157 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7499/* 3160 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3199 7500/* 3166 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7501/* 3169 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3184 7502/* 3174 */ MCD::OPC_CheckPredicate, 26, 164, 62, 0, // Skip to: 19215 7503/* 3179 */ MCD::OPC_Decode, 160, 21, 213, 1, // Opcode: VMLAv4i16 7504/* 3184 */ MCD::OPC_FilterValue, 1, 154, 62, 0, // Skip to: 19215 7505/* 3189 */ MCD::OPC_CheckPredicate, 26, 149, 62, 0, // Skip to: 19215 7506/* 3194 */ MCD::OPC_Decode, 162, 21, 214, 1, // Opcode: VMLAv8i16 7507/* 3199 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 3238 7508/* 3205 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7509/* 3208 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3223 7510/* 3213 */ MCD::OPC_CheckPredicate, 26, 125, 62, 0, // Skip to: 19215 7511/* 3218 */ MCD::OPC_Decode, 133, 23, 212, 1, // Opcode: VQDMLALv4i32 7512/* 3223 */ MCD::OPC_FilterValue, 1, 115, 62, 0, // Skip to: 19215 7513/* 3228 */ MCD::OPC_CheckPredicate, 27, 110, 62, 0, // Skip to: 19215 7514/* 3233 */ MCD::OPC_Decode, 143, 22, 218, 1, // Opcode: VMULslhd 7515/* 3238 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 3277 7516/* 3244 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7517/* 3247 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3262 7518/* 3252 */ MCD::OPC_CheckPredicate, 26, 86, 62, 0, // Skip to: 19215 7519/* 3257 */ MCD::OPC_Decode, 191, 21, 213, 1, // Opcode: VMLSv4i16 7520/* 3262 */ MCD::OPC_FilterValue, 1, 76, 62, 0, // Skip to: 19215 7521/* 3267 */ MCD::OPC_CheckPredicate, 26, 71, 62, 0, // Skip to: 19215 7522/* 3272 */ MCD::OPC_Decode, 193, 21, 214, 1, // Opcode: VMLSv8i16 7523/* 3277 */ MCD::OPC_FilterValue, 231, 3, 60, 62, 0, // Skip to: 19215 7524/* 3283 */ MCD::OPC_CheckPredicate, 27, 55, 62, 0, // Skip to: 19215 7525/* 3288 */ MCD::OPC_CheckField, 6, 1, 1, 48, 62, 0, // Skip to: 19215 7526/* 3295 */ MCD::OPC_Decode, 144, 22, 219, 1, // Opcode: VMULslhq 7527/* 3300 */ MCD::OPC_FilterValue, 10, 127, 0, 0, // Skip to: 3432 7528/* 3305 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7529/* 3308 */ MCD::OPC_FilterValue, 228, 3, 17, 0, 0, // Skip to: 3331 7530/* 3314 */ MCD::OPC_CheckPredicate, 26, 24, 62, 0, // Skip to: 19215 7531/* 3319 */ MCD::OPC_CheckField, 6, 1, 0, 17, 62, 0, // Skip to: 19215 7532/* 3326 */ MCD::OPC_Decode, 222, 22, 205, 1, // Opcode: VPMAXs16 7533/* 3331 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 3370 7534/* 3337 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7535/* 3340 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3355 7536/* 3345 */ MCD::OPC_CheckPredicate, 26, 249, 61, 0, // Skip to: 19215 7537/* 3350 */ MCD::OPC_Decode, 171, 21, 212, 1, // Opcode: VMLSLsv4i32 7538/* 3355 */ MCD::OPC_FilterValue, 1, 239, 61, 0, // Skip to: 19215 7539/* 3360 */ MCD::OPC_CheckPredicate, 26, 234, 61, 0, // Skip to: 19215 7540/* 3365 */ MCD::OPC_Decode, 253, 21, 220, 1, // Opcode: VMULLslsv4i16 7541/* 3370 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 3393 7542/* 3376 */ MCD::OPC_CheckPredicate, 26, 218, 61, 0, // Skip to: 19215 7543/* 3381 */ MCD::OPC_CheckField, 6, 1, 0, 211, 61, 0, // Skip to: 19215 7544/* 3388 */ MCD::OPC_Decode, 225, 22, 205, 1, // Opcode: VPMAXu16 7545/* 3393 */ MCD::OPC_FilterValue, 231, 3, 200, 61, 0, // Skip to: 19215 7546/* 3399 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7547/* 3402 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3417 7548/* 3407 */ MCD::OPC_CheckPredicate, 26, 187, 61, 0, // Skip to: 19215 7549/* 3412 */ MCD::OPC_Decode, 174, 21, 212, 1, // Opcode: VMLSLuv4i32 7550/* 3417 */ MCD::OPC_FilterValue, 1, 177, 61, 0, // Skip to: 19215 7551/* 3422 */ MCD::OPC_CheckPredicate, 26, 172, 61, 0, // Skip to: 19215 7552/* 3427 */ MCD::OPC_Decode, 255, 21, 220, 1, // Opcode: VMULLsluv4i16 7553/* 3432 */ MCD::OPC_FilterValue, 11, 120, 0, 0, // Skip to: 3557 7554/* 3437 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7555/* 3440 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3479 7556/* 3446 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7557/* 3449 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3464 7558/* 3454 */ MCD::OPC_CheckPredicate, 26, 140, 61, 0, // Skip to: 19215 7559/* 3459 */ MCD::OPC_Decode, 143, 23, 205, 1, // Opcode: VQDMULHv4i16 7560/* 3464 */ MCD::OPC_FilterValue, 1, 130, 61, 0, // Skip to: 19215 7561/* 3469 */ MCD::OPC_CheckPredicate, 26, 125, 61, 0, // Skip to: 19215 7562/* 3474 */ MCD::OPC_Decode, 145, 23, 206, 1, // Opcode: VQDMULHv8i16 7563/* 3479 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 3518 7564/* 3485 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7565/* 3488 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3503 7566/* 3493 */ MCD::OPC_CheckPredicate, 26, 101, 61, 0, // Skip to: 19215 7567/* 3498 */ MCD::OPC_Decode, 137, 23, 212, 1, // Opcode: VQDMLSLv4i32 7568/* 3503 */ MCD::OPC_FilterValue, 1, 91, 61, 0, // Skip to: 19215 7569/* 3508 */ MCD::OPC_CheckPredicate, 26, 86, 61, 0, // Skip to: 19215 7570/* 3513 */ MCD::OPC_Decode, 147, 23, 220, 1, // Opcode: VQDMULLslv4i16 7571/* 3518 */ MCD::OPC_FilterValue, 230, 3, 75, 61, 0, // Skip to: 19215 7572/* 3524 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7573/* 3527 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3542 7574/* 3532 */ MCD::OPC_CheckPredicate, 26, 62, 61, 0, // Skip to: 19215 7575/* 3537 */ MCD::OPC_Decode, 186, 23, 205, 1, // Opcode: VQRDMULHv4i16 7576/* 3542 */ MCD::OPC_FilterValue, 1, 52, 61, 0, // Skip to: 19215 7577/* 3547 */ MCD::OPC_CheckPredicate, 26, 47, 61, 0, // Skip to: 19215 7578/* 3552 */ MCD::OPC_Decode, 188, 23, 206, 1, // Opcode: VQRDMULHv8i16 7579/* 3557 */ MCD::OPC_FilterValue, 12, 83, 0, 0, // Skip to: 3645 7580/* 3562 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7581/* 3565 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 3605 7582/* 3570 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7583/* 3573 */ MCD::OPC_FilterValue, 229, 3, 10, 0, 0, // Skip to: 3589 7584/* 3579 */ MCD::OPC_CheckPredicate, 26, 15, 61, 0, // Skip to: 19215 7585/* 3584 */ MCD::OPC_Decode, 129, 22, 207, 1, // Opcode: VMULLsv4i32 7586/* 3589 */ MCD::OPC_FilterValue, 231, 3, 4, 61, 0, // Skip to: 19215 7587/* 3595 */ MCD::OPC_CheckPredicate, 26, 255, 60, 0, // Skip to: 19215 7588/* 3600 */ MCD::OPC_Decode, 132, 22, 207, 1, // Opcode: VMULLuv4i32 7589/* 3605 */ MCD::OPC_FilterValue, 1, 245, 60, 0, // Skip to: 19215 7590/* 3610 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7591/* 3613 */ MCD::OPC_FilterValue, 229, 3, 10, 0, 0, // Skip to: 3629 7592/* 3619 */ MCD::OPC_CheckPredicate, 26, 231, 60, 0, // Skip to: 19215 7593/* 3624 */ MCD::OPC_Decode, 139, 23, 218, 1, // Opcode: VQDMULHslv4i16 7594/* 3629 */ MCD::OPC_FilterValue, 231, 3, 220, 60, 0, // Skip to: 19215 7595/* 3635 */ MCD::OPC_CheckPredicate, 26, 215, 60, 0, // Skip to: 19215 7596/* 3640 */ MCD::OPC_Decode, 141, 23, 219, 1, // Opcode: VQDMULHslv8i16 7597/* 3645 */ MCD::OPC_FilterValue, 13, 127, 0, 0, // Skip to: 3777 7598/* 3650 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7599/* 3653 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3692 7600/* 3659 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7601/* 3662 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3677 7602/* 3667 */ MCD::OPC_CheckPredicate, 27, 183, 60, 0, // Skip to: 19215 7603/* 3672 */ MCD::OPC_Decode, 168, 15, 205, 1, // Opcode: VADDhd 7604/* 3677 */ MCD::OPC_FilterValue, 1, 173, 60, 0, // Skip to: 19215 7605/* 3682 */ MCD::OPC_CheckPredicate, 27, 168, 60, 0, // Skip to: 19215 7606/* 3687 */ MCD::OPC_Decode, 169, 15, 206, 1, // Opcode: VADDhq 7607/* 3692 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 3731 7608/* 3698 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7609/* 3701 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3716 7610/* 3706 */ MCD::OPC_CheckPredicate, 26, 144, 60, 0, // Skip to: 19215 7611/* 3711 */ MCD::OPC_Decode, 149, 23, 207, 1, // Opcode: VQDMULLv4i32 7612/* 3716 */ MCD::OPC_FilterValue, 1, 134, 60, 0, // Skip to: 19215 7613/* 3721 */ MCD::OPC_CheckPredicate, 26, 129, 60, 0, // Skip to: 19215 7614/* 3726 */ MCD::OPC_Decode, 182, 23, 218, 1, // Opcode: VQRDMULHslv4i16 7615/* 3731 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 3754 7616/* 3737 */ MCD::OPC_CheckPredicate, 27, 113, 60, 0, // Skip to: 19215 7617/* 3742 */ MCD::OPC_CheckField, 6, 1, 0, 106, 60, 0, // Skip to: 19215 7618/* 3749 */ MCD::OPC_Decode, 216, 22, 205, 1, // Opcode: VPADDh 7619/* 3754 */ MCD::OPC_FilterValue, 231, 3, 95, 60, 0, // Skip to: 19215 7620/* 3760 */ MCD::OPC_CheckPredicate, 26, 90, 60, 0, // Skip to: 19215 7621/* 3765 */ MCD::OPC_CheckField, 6, 1, 1, 83, 60, 0, // Skip to: 19215 7622/* 3772 */ MCD::OPC_Decode, 184, 23, 219, 1, // Opcode: VQRDMULHslv8i16 7623/* 3777 */ MCD::OPC_FilterValue, 14, 127, 0, 0, // Skip to: 3909 7624/* 3782 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7625/* 3785 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3824 7626/* 3791 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7627/* 3794 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3809 7628/* 3799 */ MCD::OPC_CheckPredicate, 27, 51, 60, 0, // Skip to: 19215 7629/* 3804 */ MCD::OPC_Decode, 198, 15, 205, 1, // Opcode: VCEQhd 7630/* 3809 */ MCD::OPC_FilterValue, 1, 41, 60, 0, // Skip to: 19215 7631/* 3814 */ MCD::OPC_CheckPredicate, 27, 36, 60, 0, // Skip to: 19215 7632/* 3819 */ MCD::OPC_Decode, 199, 15, 206, 1, // Opcode: VCEQhq 7633/* 3824 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 3847 7634/* 3830 */ MCD::OPC_CheckPredicate, 28, 20, 60, 0, // Skip to: 19215 7635/* 3835 */ MCD::OPC_CheckField, 6, 1, 1, 13, 60, 0, // Skip to: 19215 7636/* 3842 */ MCD::OPC_Decode, 166, 23, 215, 1, // Opcode: VQRDMLAHslv4i16 7637/* 3847 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 3886 7638/* 3853 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7639/* 3856 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3871 7640/* 3861 */ MCD::OPC_CheckPredicate, 27, 245, 59, 0, // Skip to: 19215 7641/* 3866 */ MCD::OPC_Decode, 218, 15, 205, 1, // Opcode: VCGEhd 7642/* 3871 */ MCD::OPC_FilterValue, 1, 235, 59, 0, // Skip to: 19215 7643/* 3876 */ MCD::OPC_CheckPredicate, 27, 230, 59, 0, // Skip to: 19215 7644/* 3881 */ MCD::OPC_Decode, 219, 15, 206, 1, // Opcode: VCGEhq 7645/* 3886 */ MCD::OPC_FilterValue, 231, 3, 219, 59, 0, // Skip to: 19215 7646/* 3892 */ MCD::OPC_CheckPredicate, 28, 214, 59, 0, // Skip to: 19215 7647/* 3897 */ MCD::OPC_CheckField, 6, 1, 1, 207, 59, 0, // Skip to: 19215 7648/* 3904 */ MCD::OPC_Decode, 168, 23, 216, 1, // Opcode: VQRDMLAHslv8i16 7649/* 3909 */ MCD::OPC_FilterValue, 15, 197, 59, 0, // Skip to: 19215 7650/* 3914 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7651/* 3917 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 3956 7652/* 3923 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7653/* 3926 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3941 7654/* 3931 */ MCD::OPC_CheckPredicate, 27, 175, 59, 0, // Skip to: 19215 7655/* 3936 */ MCD::OPC_Decode, 231, 20, 205, 1, // Opcode: VMAXhd 7656/* 3941 */ MCD::OPC_FilterValue, 1, 165, 59, 0, // Skip to: 19215 7657/* 3946 */ MCD::OPC_CheckPredicate, 27, 160, 59, 0, // Skip to: 19215 7658/* 3951 */ MCD::OPC_Decode, 232, 20, 206, 1, // Opcode: VMAXhq 7659/* 3956 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 3979 7660/* 3962 */ MCD::OPC_CheckPredicate, 28, 144, 59, 0, // Skip to: 19215 7661/* 3967 */ MCD::OPC_CheckField, 6, 1, 1, 137, 59, 0, // Skip to: 19215 7662/* 3974 */ MCD::OPC_Decode, 174, 23, 215, 1, // Opcode: VQRDMLSHslv4i16 7663/* 3979 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 4002 7664/* 3985 */ MCD::OPC_CheckPredicate, 27, 121, 59, 0, // Skip to: 19215 7665/* 3990 */ MCD::OPC_CheckField, 6, 1, 0, 114, 59, 0, // Skip to: 19215 7666/* 3997 */ MCD::OPC_Decode, 221, 22, 205, 1, // Opcode: VPMAXh 7667/* 4002 */ MCD::OPC_FilterValue, 231, 3, 103, 59, 0, // Skip to: 19215 7668/* 4008 */ MCD::OPC_CheckPredicate, 28, 98, 59, 0, // Skip to: 19215 7669/* 4013 */ MCD::OPC_CheckField, 6, 1, 1, 91, 59, 0, // Skip to: 19215 7670/* 4020 */ MCD::OPC_Decode, 176, 23, 216, 1, // Opcode: VQRDMLSHslv8i16 7671/* 4025 */ MCD::OPC_FilterValue, 2, 9, 9, 0, // Skip to: 6343 7672/* 4030 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 7673/* 4033 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 4197 7674/* 4038 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7675/* 4041 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4080 7676/* 4047 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7677/* 4050 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4065 7678/* 4055 */ MCD::OPC_CheckPredicate, 26, 51, 59, 0, // Skip to: 19215 7679/* 4060 */ MCD::OPC_Decode, 230, 17, 205, 1, // Opcode: VHADDsv2i32 7680/* 4065 */ MCD::OPC_FilterValue, 1, 41, 59, 0, // Skip to: 19215 7681/* 4070 */ MCD::OPC_CheckPredicate, 26, 36, 59, 0, // Skip to: 19215 7682/* 4075 */ MCD::OPC_Decode, 232, 17, 206, 1, // Opcode: VHADDsv4i32 7683/* 4080 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4119 7684/* 4086 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7685/* 4089 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4104 7686/* 4094 */ MCD::OPC_CheckPredicate, 26, 12, 59, 0, // Skip to: 19215 7687/* 4099 */ MCD::OPC_Decode, 153, 15, 207, 1, // Opcode: VADDLsv2i64 7688/* 4104 */ MCD::OPC_FilterValue, 1, 2, 59, 0, // Skip to: 19215 7689/* 4109 */ MCD::OPC_CheckPredicate, 26, 253, 58, 0, // Skip to: 19215 7690/* 4114 */ MCD::OPC_Decode, 154, 21, 221, 1, // Opcode: VMLAslv2i32 7691/* 4119 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4158 7692/* 4125 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7693/* 4128 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4143 7694/* 4133 */ MCD::OPC_CheckPredicate, 26, 229, 58, 0, // Skip to: 19215 7695/* 4138 */ MCD::OPC_Decode, 236, 17, 205, 1, // Opcode: VHADDuv2i32 7696/* 4143 */ MCD::OPC_FilterValue, 1, 219, 58, 0, // Skip to: 19215 7697/* 4148 */ MCD::OPC_CheckPredicate, 26, 214, 58, 0, // Skip to: 19215 7698/* 4153 */ MCD::OPC_Decode, 238, 17, 206, 1, // Opcode: VHADDuv4i32 7699/* 4158 */ MCD::OPC_FilterValue, 231, 3, 203, 58, 0, // Skip to: 19215 7700/* 4164 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7701/* 4167 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4182 7702/* 4172 */ MCD::OPC_CheckPredicate, 26, 190, 58, 0, // Skip to: 19215 7703/* 4177 */ MCD::OPC_Decode, 156, 15, 207, 1, // Opcode: VADDLuv2i64 7704/* 4182 */ MCD::OPC_FilterValue, 1, 180, 58, 0, // Skip to: 19215 7705/* 4187 */ MCD::OPC_CheckPredicate, 26, 175, 58, 0, // Skip to: 19215 7706/* 4192 */ MCD::OPC_Decode, 156, 21, 222, 1, // Opcode: VMLAslv4i32 7707/* 4197 */ MCD::OPC_FilterValue, 1, 159, 0, 0, // Skip to: 4361 7708/* 4202 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7709/* 4205 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4244 7710/* 4211 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7711/* 4214 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4229 7712/* 4219 */ MCD::OPC_CheckPredicate, 26, 143, 58, 0, // Skip to: 19215 7713/* 4224 */ MCD::OPC_Decode, 177, 24, 205, 1, // Opcode: VRHADDsv2i32 7714/* 4229 */ MCD::OPC_FilterValue, 1, 133, 58, 0, // Skip to: 19215 7715/* 4234 */ MCD::OPC_CheckPredicate, 26, 128, 58, 0, // Skip to: 19215 7716/* 4239 */ MCD::OPC_Decode, 179, 24, 206, 1, // Opcode: VRHADDsv4i32 7717/* 4244 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4283 7718/* 4250 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7719/* 4253 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4268 7720/* 4258 */ MCD::OPC_CheckPredicate, 26, 104, 58, 0, // Skip to: 19215 7721/* 4263 */ MCD::OPC_Decode, 160, 15, 208, 1, // Opcode: VADDWsv2i64 7722/* 4268 */ MCD::OPC_FilterValue, 1, 94, 58, 0, // Skip to: 19215 7723/* 4273 */ MCD::OPC_CheckPredicate, 26, 89, 58, 0, // Skip to: 19215 7724/* 4278 */ MCD::OPC_Decode, 150, 21, 221, 1, // Opcode: VMLAslfd 7725/* 4283 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4322 7726/* 4289 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7727/* 4292 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4307 7728/* 4297 */ MCD::OPC_CheckPredicate, 26, 65, 58, 0, // Skip to: 19215 7729/* 4302 */ MCD::OPC_Decode, 183, 24, 205, 1, // Opcode: VRHADDuv2i32 7730/* 4307 */ MCD::OPC_FilterValue, 1, 55, 58, 0, // Skip to: 19215 7731/* 4312 */ MCD::OPC_CheckPredicate, 26, 50, 58, 0, // Skip to: 19215 7732/* 4317 */ MCD::OPC_Decode, 185, 24, 206, 1, // Opcode: VRHADDuv4i32 7733/* 4322 */ MCD::OPC_FilterValue, 231, 3, 39, 58, 0, // Skip to: 19215 7734/* 4328 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7735/* 4331 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4346 7736/* 4336 */ MCD::OPC_CheckPredicate, 26, 26, 58, 0, // Skip to: 19215 7737/* 4341 */ MCD::OPC_Decode, 163, 15, 208, 1, // Opcode: VADDWuv2i64 7738/* 4346 */ MCD::OPC_FilterValue, 1, 16, 58, 0, // Skip to: 19215 7739/* 4351 */ MCD::OPC_CheckPredicate, 26, 11, 58, 0, // Skip to: 19215 7740/* 4356 */ MCD::OPC_Decode, 151, 21, 222, 1, // Opcode: VMLAslfq 7741/* 4361 */ MCD::OPC_FilterValue, 2, 159, 0, 0, // Skip to: 4525 7742/* 4366 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7743/* 4369 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4408 7744/* 4375 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7745/* 4378 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4393 7746/* 4383 */ MCD::OPC_CheckPredicate, 26, 235, 57, 0, // Skip to: 19215 7747/* 4388 */ MCD::OPC_Decode, 242, 17, 205, 1, // Opcode: VHSUBsv2i32 7748/* 4393 */ MCD::OPC_FilterValue, 1, 225, 57, 0, // Skip to: 19215 7749/* 4398 */ MCD::OPC_CheckPredicate, 26, 220, 57, 0, // Skip to: 19215 7750/* 4403 */ MCD::OPC_Decode, 244, 17, 206, 1, // Opcode: VHSUBsv4i32 7751/* 4408 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4447 7752/* 4414 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7753/* 4417 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4432 7754/* 4422 */ MCD::OPC_CheckPredicate, 26, 196, 57, 0, // Skip to: 19215 7755/* 4427 */ MCD::OPC_Decode, 173, 28, 207, 1, // Opcode: VSUBLsv2i64 7756/* 4432 */ MCD::OPC_FilterValue, 1, 186, 57, 0, // Skip to: 19215 7757/* 4437 */ MCD::OPC_CheckPredicate, 26, 181, 57, 0, // Skip to: 19215 7758/* 4442 */ MCD::OPC_Decode, 135, 21, 223, 1, // Opcode: VMLALslsv2i32 7759/* 4447 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4486 7760/* 4453 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7761/* 4456 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4471 7762/* 4461 */ MCD::OPC_CheckPredicate, 26, 157, 57, 0, // Skip to: 19215 7763/* 4466 */ MCD::OPC_Decode, 248, 17, 205, 1, // Opcode: VHSUBuv2i32 7764/* 4471 */ MCD::OPC_FilterValue, 1, 147, 57, 0, // Skip to: 19215 7765/* 4476 */ MCD::OPC_CheckPredicate, 26, 142, 57, 0, // Skip to: 19215 7766/* 4481 */ MCD::OPC_Decode, 250, 17, 206, 1, // Opcode: VHSUBuv4i32 7767/* 4486 */ MCD::OPC_FilterValue, 231, 3, 131, 57, 0, // Skip to: 19215 7768/* 4492 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7769/* 4495 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4510 7770/* 4500 */ MCD::OPC_CheckPredicate, 26, 118, 57, 0, // Skip to: 19215 7771/* 4505 */ MCD::OPC_Decode, 176, 28, 207, 1, // Opcode: VSUBLuv2i64 7772/* 4510 */ MCD::OPC_FilterValue, 1, 108, 57, 0, // Skip to: 19215 7773/* 4515 */ MCD::OPC_CheckPredicate, 26, 103, 57, 0, // Skip to: 19215 7774/* 4520 */ MCD::OPC_Decode, 137, 21, 223, 1, // Opcode: VMLALsluv2i32 7775/* 4525 */ MCD::OPC_FilterValue, 3, 143, 0, 0, // Skip to: 4673 7776/* 4530 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7777/* 4533 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4572 7778/* 4539 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7779/* 4542 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4557 7780/* 4547 */ MCD::OPC_CheckPredicate, 26, 71, 57, 0, // Skip to: 19215 7781/* 4552 */ MCD::OPC_Decode, 247, 15, 205, 1, // Opcode: VCGTsv2i32 7782/* 4557 */ MCD::OPC_FilterValue, 1, 61, 57, 0, // Skip to: 19215 7783/* 4562 */ MCD::OPC_CheckPredicate, 26, 56, 57, 0, // Skip to: 19215 7784/* 4567 */ MCD::OPC_Decode, 249, 15, 206, 1, // Opcode: VCGTsv4i32 7785/* 4572 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4611 7786/* 4578 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7787/* 4581 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4596 7788/* 4586 */ MCD::OPC_CheckPredicate, 26, 32, 57, 0, // Skip to: 19215 7789/* 4591 */ MCD::OPC_Decode, 180, 28, 208, 1, // Opcode: VSUBWsv2i64 7790/* 4596 */ MCD::OPC_FilterValue, 1, 22, 57, 0, // Skip to: 19215 7791/* 4601 */ MCD::OPC_CheckPredicate, 26, 17, 57, 0, // Skip to: 19215 7792/* 4606 */ MCD::OPC_Decode, 130, 23, 223, 1, // Opcode: VQDMLALslv2i32 7793/* 4611 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4650 7794/* 4617 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7795/* 4620 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4635 7796/* 4625 */ MCD::OPC_CheckPredicate, 26, 249, 56, 0, // Skip to: 19215 7797/* 4630 */ MCD::OPC_Decode, 253, 15, 205, 1, // Opcode: VCGTuv2i32 7798/* 4635 */ MCD::OPC_FilterValue, 1, 239, 56, 0, // Skip to: 19215 7799/* 4640 */ MCD::OPC_CheckPredicate, 26, 234, 56, 0, // Skip to: 19215 7800/* 4645 */ MCD::OPC_Decode, 255, 15, 206, 1, // Opcode: VCGTuv4i32 7801/* 4650 */ MCD::OPC_FilterValue, 231, 3, 223, 56, 0, // Skip to: 19215 7802/* 4656 */ MCD::OPC_CheckPredicate, 26, 218, 56, 0, // Skip to: 19215 7803/* 4661 */ MCD::OPC_CheckField, 6, 1, 0, 211, 56, 0, // Skip to: 19215 7804/* 4668 */ MCD::OPC_Decode, 183, 28, 208, 1, // Opcode: VSUBWuv2i64 7805/* 4673 */ MCD::OPC_FilterValue, 4, 159, 0, 0, // Skip to: 4837 7806/* 4678 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7807/* 4681 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4720 7808/* 4687 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7809/* 4690 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4705 7810/* 4695 */ MCD::OPC_CheckPredicate, 26, 179, 56, 0, // Skip to: 19215 7811/* 4700 */ MCD::OPC_Decode, 209, 25, 209, 1, // Opcode: VSHLsv2i32 7812/* 4705 */ MCD::OPC_FilterValue, 1, 169, 56, 0, // Skip to: 19215 7813/* 4710 */ MCD::OPC_CheckPredicate, 26, 164, 56, 0, // Skip to: 19215 7814/* 4715 */ MCD::OPC_Decode, 212, 25, 210, 1, // Opcode: VSHLsv4i32 7815/* 4720 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4759 7816/* 4726 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7817/* 4729 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4744 7818/* 4734 */ MCD::OPC_CheckPredicate, 26, 140, 56, 0, // Skip to: 19215 7819/* 4739 */ MCD::OPC_Decode, 150, 15, 211, 1, // Opcode: VADDHNv2i32 7820/* 4744 */ MCD::OPC_FilterValue, 1, 130, 56, 0, // Skip to: 19215 7821/* 4749 */ MCD::OPC_CheckPredicate, 26, 125, 56, 0, // Skip to: 19215 7822/* 4754 */ MCD::OPC_Decode, 185, 21, 221, 1, // Opcode: VMLSslv2i32 7823/* 4759 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4798 7824/* 4765 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7825/* 4768 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4783 7826/* 4773 */ MCD::OPC_CheckPredicate, 26, 101, 56, 0, // Skip to: 19215 7827/* 4778 */ MCD::OPC_Decode, 217, 25, 209, 1, // Opcode: VSHLuv2i32 7828/* 4783 */ MCD::OPC_FilterValue, 1, 91, 56, 0, // Skip to: 19215 7829/* 4788 */ MCD::OPC_CheckPredicate, 26, 86, 56, 0, // Skip to: 19215 7830/* 4793 */ MCD::OPC_Decode, 220, 25, 210, 1, // Opcode: VSHLuv4i32 7831/* 4798 */ MCD::OPC_FilterValue, 231, 3, 75, 56, 0, // Skip to: 19215 7832/* 4804 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7833/* 4807 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4822 7834/* 4812 */ MCD::OPC_CheckPredicate, 26, 62, 56, 0, // Skip to: 19215 7835/* 4817 */ MCD::OPC_Decode, 151, 24, 211, 1, // Opcode: VRADDHNv2i32 7836/* 4822 */ MCD::OPC_FilterValue, 1, 52, 56, 0, // Skip to: 19215 7837/* 4827 */ MCD::OPC_CheckPredicate, 26, 47, 56, 0, // Skip to: 19215 7838/* 4832 */ MCD::OPC_Decode, 187, 21, 222, 1, // Opcode: VMLSslv4i32 7839/* 4837 */ MCD::OPC_FilterValue, 5, 159, 0, 0, // Skip to: 5001 7840/* 4842 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7841/* 4845 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 4884 7842/* 4851 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7843/* 4854 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4869 7844/* 4859 */ MCD::OPC_CheckPredicate, 26, 15, 56, 0, // Skip to: 19215 7845/* 4864 */ MCD::OPC_Decode, 235, 24, 209, 1, // Opcode: VRSHLsv2i32 7846/* 4869 */ MCD::OPC_FilterValue, 1, 5, 56, 0, // Skip to: 19215 7847/* 4874 */ MCD::OPC_CheckPredicate, 26, 0, 56, 0, // Skip to: 19215 7848/* 4879 */ MCD::OPC_Decode, 238, 24, 210, 1, // Opcode: VRSHLsv4i32 7849/* 4884 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 4923 7850/* 4890 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7851/* 4893 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4908 7852/* 4898 */ MCD::OPC_CheckPredicate, 26, 232, 55, 0, // Skip to: 19215 7853/* 4903 */ MCD::OPC_Decode, 215, 14, 212, 1, // Opcode: VABALsv2i64 7854/* 4908 */ MCD::OPC_FilterValue, 1, 222, 55, 0, // Skip to: 19215 7855/* 4913 */ MCD::OPC_CheckPredicate, 26, 217, 55, 0, // Skip to: 19215 7856/* 4918 */ MCD::OPC_Decode, 181, 21, 221, 1, // Opcode: VMLSslfd 7857/* 4923 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 4962 7858/* 4929 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7859/* 4932 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4947 7860/* 4937 */ MCD::OPC_CheckPredicate, 26, 193, 55, 0, // Skip to: 19215 7861/* 4942 */ MCD::OPC_Decode, 243, 24, 209, 1, // Opcode: VRSHLuv2i32 7862/* 4947 */ MCD::OPC_FilterValue, 1, 183, 55, 0, // Skip to: 19215 7863/* 4952 */ MCD::OPC_CheckPredicate, 26, 178, 55, 0, // Skip to: 19215 7864/* 4957 */ MCD::OPC_Decode, 246, 24, 210, 1, // Opcode: VRSHLuv4i32 7865/* 4962 */ MCD::OPC_FilterValue, 231, 3, 167, 55, 0, // Skip to: 19215 7866/* 4968 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7867/* 4971 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 4986 7868/* 4976 */ MCD::OPC_CheckPredicate, 26, 154, 55, 0, // Skip to: 19215 7869/* 4981 */ MCD::OPC_Decode, 218, 14, 212, 1, // Opcode: VABALuv2i64 7870/* 4986 */ MCD::OPC_FilterValue, 1, 144, 55, 0, // Skip to: 19215 7871/* 4991 */ MCD::OPC_CheckPredicate, 26, 139, 55, 0, // Skip to: 19215 7872/* 4996 */ MCD::OPC_Decode, 182, 21, 222, 1, // Opcode: VMLSslfq 7873/* 5001 */ MCD::OPC_FilterValue, 6, 159, 0, 0, // Skip to: 5165 7874/* 5006 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7875/* 5009 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 5048 7876/* 5015 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7877/* 5018 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5033 7878/* 5023 */ MCD::OPC_CheckPredicate, 26, 107, 55, 0, // Skip to: 19215 7879/* 5028 */ MCD::OPC_Decode, 234, 20, 205, 1, // Opcode: VMAXsv2i32 7880/* 5033 */ MCD::OPC_FilterValue, 1, 97, 55, 0, // Skip to: 19215 7881/* 5038 */ MCD::OPC_CheckPredicate, 26, 92, 55, 0, // Skip to: 19215 7882/* 5043 */ MCD::OPC_Decode, 236, 20, 206, 1, // Opcode: VMAXsv4i32 7883/* 5048 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5087 7884/* 5054 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7885/* 5057 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5072 7886/* 5062 */ MCD::OPC_CheckPredicate, 26, 68, 55, 0, // Skip to: 19215 7887/* 5067 */ MCD::OPC_Decode, 170, 28, 211, 1, // Opcode: VSUBHNv2i32 7888/* 5072 */ MCD::OPC_FilterValue, 1, 58, 55, 0, // Skip to: 19215 7889/* 5077 */ MCD::OPC_CheckPredicate, 26, 53, 55, 0, // Skip to: 19215 7890/* 5082 */ MCD::OPC_Decode, 166, 21, 223, 1, // Opcode: VMLSLslsv2i32 7891/* 5087 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 5126 7892/* 5093 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7893/* 5096 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5111 7894/* 5101 */ MCD::OPC_CheckPredicate, 26, 29, 55, 0, // Skip to: 19215 7895/* 5106 */ MCD::OPC_Decode, 240, 20, 205, 1, // Opcode: VMAXuv2i32 7896/* 5111 */ MCD::OPC_FilterValue, 1, 19, 55, 0, // Skip to: 19215 7897/* 5116 */ MCD::OPC_CheckPredicate, 26, 14, 55, 0, // Skip to: 19215 7898/* 5121 */ MCD::OPC_Decode, 242, 20, 206, 1, // Opcode: VMAXuv4i32 7899/* 5126 */ MCD::OPC_FilterValue, 231, 3, 3, 55, 0, // Skip to: 19215 7900/* 5132 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7901/* 5135 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5150 7902/* 5140 */ MCD::OPC_CheckPredicate, 26, 246, 54, 0, // Skip to: 19215 7903/* 5145 */ MCD::OPC_Decode, 166, 25, 211, 1, // Opcode: VRSUBHNv2i32 7904/* 5150 */ MCD::OPC_FilterValue, 1, 236, 54, 0, // Skip to: 19215 7905/* 5155 */ MCD::OPC_CheckPredicate, 26, 231, 54, 0, // Skip to: 19215 7906/* 5160 */ MCD::OPC_Decode, 168, 21, 223, 1, // Opcode: VMLSLsluv2i32 7907/* 5165 */ MCD::OPC_FilterValue, 7, 143, 0, 0, // Skip to: 5313 7908/* 5170 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7909/* 5173 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 5212 7910/* 5179 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7911/* 5182 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5197 7912/* 5187 */ MCD::OPC_CheckPredicate, 26, 199, 54, 0, // Skip to: 19215 7913/* 5192 */ MCD::OPC_Decode, 244, 14, 205, 1, // Opcode: VABDsv2i32 7914/* 5197 */ MCD::OPC_FilterValue, 1, 189, 54, 0, // Skip to: 19215 7915/* 5202 */ MCD::OPC_CheckPredicate, 26, 184, 54, 0, // Skip to: 19215 7916/* 5207 */ MCD::OPC_Decode, 246, 14, 206, 1, // Opcode: VABDsv4i32 7917/* 5212 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5251 7918/* 5218 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7919/* 5221 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5236 7920/* 5226 */ MCD::OPC_CheckPredicate, 26, 160, 54, 0, // Skip to: 19215 7921/* 5231 */ MCD::OPC_Decode, 233, 14, 207, 1, // Opcode: VABDLsv2i64 7922/* 5236 */ MCD::OPC_FilterValue, 1, 150, 54, 0, // Skip to: 19215 7923/* 5241 */ MCD::OPC_CheckPredicate, 26, 145, 54, 0, // Skip to: 19215 7924/* 5246 */ MCD::OPC_Decode, 134, 23, 223, 1, // Opcode: VQDMLSLslv2i32 7925/* 5251 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 5290 7926/* 5257 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7927/* 5260 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5275 7928/* 5265 */ MCD::OPC_CheckPredicate, 26, 121, 54, 0, // Skip to: 19215 7929/* 5270 */ MCD::OPC_Decode, 250, 14, 205, 1, // Opcode: VABDuv2i32 7930/* 5275 */ MCD::OPC_FilterValue, 1, 111, 54, 0, // Skip to: 19215 7931/* 5280 */ MCD::OPC_CheckPredicate, 26, 106, 54, 0, // Skip to: 19215 7932/* 5285 */ MCD::OPC_Decode, 252, 14, 206, 1, // Opcode: VABDuv4i32 7933/* 5290 */ MCD::OPC_FilterValue, 231, 3, 95, 54, 0, // Skip to: 19215 7934/* 5296 */ MCD::OPC_CheckPredicate, 26, 90, 54, 0, // Skip to: 19215 7935/* 5301 */ MCD::OPC_CheckField, 6, 1, 0, 83, 54, 0, // Skip to: 19215 7936/* 5308 */ MCD::OPC_Decode, 236, 14, 207, 1, // Opcode: VABDLuv2i64 7937/* 5313 */ MCD::OPC_FilterValue, 8, 159, 0, 0, // Skip to: 5477 7938/* 5318 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7939/* 5321 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 5360 7940/* 5327 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7941/* 5330 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5345 7942/* 5335 */ MCD::OPC_CheckPredicate, 26, 51, 54, 0, // Skip to: 19215 7943/* 5340 */ MCD::OPC_Decode, 172, 15, 205, 1, // Opcode: VADDv2i32 7944/* 5345 */ MCD::OPC_FilterValue, 1, 41, 54, 0, // Skip to: 19215 7945/* 5350 */ MCD::OPC_CheckPredicate, 26, 36, 54, 0, // Skip to: 19215 7946/* 5355 */ MCD::OPC_Decode, 175, 15, 206, 1, // Opcode: VADDv4i32 7947/* 5360 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5399 7948/* 5366 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7949/* 5369 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5384 7950/* 5374 */ MCD::OPC_CheckPredicate, 26, 12, 54, 0, // Skip to: 19215 7951/* 5379 */ MCD::OPC_Decode, 139, 21, 212, 1, // Opcode: VMLALsv2i64 7952/* 5384 */ MCD::OPC_FilterValue, 1, 2, 54, 0, // Skip to: 19215 7953/* 5389 */ MCD::OPC_CheckPredicate, 26, 253, 53, 0, // Skip to: 19215 7954/* 5394 */ MCD::OPC_Decode, 145, 22, 224, 1, // Opcode: VMULslv2i32 7955/* 5399 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 5438 7956/* 5405 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7957/* 5408 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5423 7958/* 5413 */ MCD::OPC_CheckPredicate, 26, 229, 53, 0, // Skip to: 19215 7959/* 5418 */ MCD::OPC_Decode, 192, 28, 205, 1, // Opcode: VSUBv2i32 7960/* 5423 */ MCD::OPC_FilterValue, 1, 219, 53, 0, // Skip to: 19215 7961/* 5428 */ MCD::OPC_CheckPredicate, 26, 214, 53, 0, // Skip to: 19215 7962/* 5433 */ MCD::OPC_Decode, 195, 28, 206, 1, // Opcode: VSUBv4i32 7963/* 5438 */ MCD::OPC_FilterValue, 231, 3, 203, 53, 0, // Skip to: 19215 7964/* 5444 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7965/* 5447 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5462 7966/* 5452 */ MCD::OPC_CheckPredicate, 26, 190, 53, 0, // Skip to: 19215 7967/* 5457 */ MCD::OPC_Decode, 142, 21, 212, 1, // Opcode: VMLALuv2i64 7968/* 5462 */ MCD::OPC_FilterValue, 1, 180, 53, 0, // Skip to: 19215 7969/* 5467 */ MCD::OPC_CheckPredicate, 26, 175, 53, 0, // Skip to: 19215 7970/* 5472 */ MCD::OPC_Decode, 147, 22, 225, 1, // Opcode: VMULslv4i32 7971/* 5477 */ MCD::OPC_FilterValue, 9, 143, 0, 0, // Skip to: 5625 7972/* 5482 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 7973/* 5485 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 5524 7974/* 5491 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7975/* 5494 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5509 7976/* 5499 */ MCD::OPC_CheckPredicate, 26, 143, 53, 0, // Skip to: 19215 7977/* 5504 */ MCD::OPC_Decode, 159, 21, 213, 1, // Opcode: VMLAv2i32 7978/* 5509 */ MCD::OPC_FilterValue, 1, 133, 53, 0, // Skip to: 19215 7979/* 5514 */ MCD::OPC_CheckPredicate, 26, 128, 53, 0, // Skip to: 19215 7980/* 5519 */ MCD::OPC_Decode, 161, 21, 214, 1, // Opcode: VMLAv4i32 7981/* 5524 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5563 7982/* 5530 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7983/* 5533 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5548 7984/* 5538 */ MCD::OPC_CheckPredicate, 26, 104, 53, 0, // Skip to: 19215 7985/* 5543 */ MCD::OPC_Decode, 132, 23, 212, 1, // Opcode: VQDMLALv2i64 7986/* 5548 */ MCD::OPC_FilterValue, 1, 94, 53, 0, // Skip to: 19215 7987/* 5553 */ MCD::OPC_CheckPredicate, 26, 89, 53, 0, // Skip to: 19215 7988/* 5558 */ MCD::OPC_Decode, 141, 22, 224, 1, // Opcode: VMULslfd 7989/* 5563 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 5602 7990/* 5569 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 7991/* 5572 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5587 7992/* 5577 */ MCD::OPC_CheckPredicate, 26, 65, 53, 0, // Skip to: 19215 7993/* 5582 */ MCD::OPC_Decode, 190, 21, 213, 1, // Opcode: VMLSv2i32 7994/* 5587 */ MCD::OPC_FilterValue, 1, 55, 53, 0, // Skip to: 19215 7995/* 5592 */ MCD::OPC_CheckPredicate, 26, 50, 53, 0, // Skip to: 19215 7996/* 5597 */ MCD::OPC_Decode, 192, 21, 214, 1, // Opcode: VMLSv4i32 7997/* 5602 */ MCD::OPC_FilterValue, 231, 3, 39, 53, 0, // Skip to: 19215 7998/* 5608 */ MCD::OPC_CheckPredicate, 26, 34, 53, 0, // Skip to: 19215 7999/* 5613 */ MCD::OPC_CheckField, 6, 1, 1, 27, 53, 0, // Skip to: 19215 8000/* 5620 */ MCD::OPC_Decode, 142, 22, 225, 1, // Opcode: VMULslfq 8001/* 5625 */ MCD::OPC_FilterValue, 10, 127, 0, 0, // Skip to: 5757 8002/* 5630 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8003/* 5633 */ MCD::OPC_FilterValue, 228, 3, 17, 0, 0, // Skip to: 5656 8004/* 5639 */ MCD::OPC_CheckPredicate, 26, 3, 53, 0, // Skip to: 19215 8005/* 5644 */ MCD::OPC_CheckField, 6, 1, 0, 252, 52, 0, // Skip to: 19215 8006/* 5651 */ MCD::OPC_Decode, 223, 22, 205, 1, // Opcode: VPMAXs32 8007/* 5656 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5695 8008/* 5662 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8009/* 5665 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5680 8010/* 5670 */ MCD::OPC_CheckPredicate, 26, 228, 52, 0, // Skip to: 19215 8011/* 5675 */ MCD::OPC_Decode, 170, 21, 212, 1, // Opcode: VMLSLsv2i64 8012/* 5680 */ MCD::OPC_FilterValue, 1, 218, 52, 0, // Skip to: 19215 8013/* 5685 */ MCD::OPC_CheckPredicate, 26, 213, 52, 0, // Skip to: 19215 8014/* 5690 */ MCD::OPC_Decode, 252, 21, 226, 1, // Opcode: VMULLslsv2i32 8015/* 5695 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 5718 8016/* 5701 */ MCD::OPC_CheckPredicate, 26, 197, 52, 0, // Skip to: 19215 8017/* 5706 */ MCD::OPC_CheckField, 6, 1, 0, 190, 52, 0, // Skip to: 19215 8018/* 5713 */ MCD::OPC_Decode, 226, 22, 205, 1, // Opcode: VPMAXu32 8019/* 5718 */ MCD::OPC_FilterValue, 231, 3, 179, 52, 0, // Skip to: 19215 8020/* 5724 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8021/* 5727 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5742 8022/* 5732 */ MCD::OPC_CheckPredicate, 26, 166, 52, 0, // Skip to: 19215 8023/* 5737 */ MCD::OPC_Decode, 173, 21, 212, 1, // Opcode: VMLSLuv2i64 8024/* 5742 */ MCD::OPC_FilterValue, 1, 156, 52, 0, // Skip to: 19215 8025/* 5747 */ MCD::OPC_CheckPredicate, 26, 151, 52, 0, // Skip to: 19215 8026/* 5752 */ MCD::OPC_Decode, 254, 21, 226, 1, // Opcode: VMULLsluv2i32 8027/* 5757 */ MCD::OPC_FilterValue, 11, 120, 0, 0, // Skip to: 5882 8028/* 5762 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8029/* 5765 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 5804 8030/* 5771 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8031/* 5774 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5789 8032/* 5779 */ MCD::OPC_CheckPredicate, 26, 119, 52, 0, // Skip to: 19215 8033/* 5784 */ MCD::OPC_Decode, 142, 23, 205, 1, // Opcode: VQDMULHv2i32 8034/* 5789 */ MCD::OPC_FilterValue, 1, 109, 52, 0, // Skip to: 19215 8035/* 5794 */ MCD::OPC_CheckPredicate, 26, 104, 52, 0, // Skip to: 19215 8036/* 5799 */ MCD::OPC_Decode, 144, 23, 206, 1, // Opcode: VQDMULHv4i32 8037/* 5804 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 5843 8038/* 5810 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8039/* 5813 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5828 8040/* 5818 */ MCD::OPC_CheckPredicate, 26, 80, 52, 0, // Skip to: 19215 8041/* 5823 */ MCD::OPC_Decode, 136, 23, 212, 1, // Opcode: VQDMLSLv2i64 8042/* 5828 */ MCD::OPC_FilterValue, 1, 70, 52, 0, // Skip to: 19215 8043/* 5833 */ MCD::OPC_CheckPredicate, 26, 65, 52, 0, // Skip to: 19215 8044/* 5838 */ MCD::OPC_Decode, 146, 23, 226, 1, // Opcode: VQDMULLslv2i32 8045/* 5843 */ MCD::OPC_FilterValue, 230, 3, 54, 52, 0, // Skip to: 19215 8046/* 5849 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8047/* 5852 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 5867 8048/* 5857 */ MCD::OPC_CheckPredicate, 26, 41, 52, 0, // Skip to: 19215 8049/* 5862 */ MCD::OPC_Decode, 185, 23, 205, 1, // Opcode: VQRDMULHv2i32 8050/* 5867 */ MCD::OPC_FilterValue, 1, 31, 52, 0, // Skip to: 19215 8051/* 5872 */ MCD::OPC_CheckPredicate, 26, 26, 52, 0, // Skip to: 19215 8052/* 5877 */ MCD::OPC_Decode, 187, 23, 206, 1, // Opcode: VQRDMULHv4i32 8053/* 5882 */ MCD::OPC_FilterValue, 12, 83, 0, 0, // Skip to: 5970 8054/* 5887 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8055/* 5890 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 5930 8056/* 5895 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8057/* 5898 */ MCD::OPC_FilterValue, 229, 3, 10, 0, 0, // Skip to: 5914 8058/* 5904 */ MCD::OPC_CheckPredicate, 26, 250, 51, 0, // Skip to: 19215 8059/* 5909 */ MCD::OPC_Decode, 128, 22, 207, 1, // Opcode: VMULLsv2i64 8060/* 5914 */ MCD::OPC_FilterValue, 231, 3, 239, 51, 0, // Skip to: 19215 8061/* 5920 */ MCD::OPC_CheckPredicate, 26, 234, 51, 0, // Skip to: 19215 8062/* 5925 */ MCD::OPC_Decode, 131, 22, 207, 1, // Opcode: VMULLuv2i64 8063/* 5930 */ MCD::OPC_FilterValue, 1, 224, 51, 0, // Skip to: 19215 8064/* 5935 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8065/* 5938 */ MCD::OPC_FilterValue, 229, 3, 10, 0, 0, // Skip to: 5954 8066/* 5944 */ MCD::OPC_CheckPredicate, 26, 210, 51, 0, // Skip to: 19215 8067/* 5949 */ MCD::OPC_Decode, 138, 23, 224, 1, // Opcode: VQDMULHslv2i32 8068/* 5954 */ MCD::OPC_FilterValue, 231, 3, 199, 51, 0, // Skip to: 19215 8069/* 5960 */ MCD::OPC_CheckPredicate, 26, 194, 51, 0, // Skip to: 19215 8070/* 5965 */ MCD::OPC_Decode, 140, 23, 225, 1, // Opcode: VQDMULHslv4i32 8071/* 5970 */ MCD::OPC_FilterValue, 13, 143, 0, 0, // Skip to: 6118 8072/* 5975 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8073/* 5978 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 6017 8074/* 5984 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8075/* 5987 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6002 8076/* 5992 */ MCD::OPC_CheckPredicate, 26, 162, 51, 0, // Skip to: 19215 8077/* 5997 */ MCD::OPC_Decode, 186, 28, 205, 1, // Opcode: VSUBfd 8078/* 6002 */ MCD::OPC_FilterValue, 1, 152, 51, 0, // Skip to: 19215 8079/* 6007 */ MCD::OPC_CheckPredicate, 26, 147, 51, 0, // Skip to: 19215 8080/* 6012 */ MCD::OPC_Decode, 187, 28, 206, 1, // Opcode: VSUBfq 8081/* 6017 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 6056 8082/* 6023 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8083/* 6026 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6041 8084/* 6031 */ MCD::OPC_CheckPredicate, 26, 123, 51, 0, // Skip to: 19215 8085/* 6036 */ MCD::OPC_Decode, 148, 23, 207, 1, // Opcode: VQDMULLv2i64 8086/* 6041 */ MCD::OPC_FilterValue, 1, 113, 51, 0, // Skip to: 19215 8087/* 6046 */ MCD::OPC_CheckPredicate, 26, 108, 51, 0, // Skip to: 19215 8088/* 6051 */ MCD::OPC_Decode, 181, 23, 224, 1, // Opcode: VQRDMULHslv2i32 8089/* 6056 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 6095 8090/* 6062 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8091/* 6065 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6080 8092/* 6070 */ MCD::OPC_CheckPredicate, 26, 84, 51, 0, // Skip to: 19215 8093/* 6075 */ MCD::OPC_Decode, 239, 14, 205, 1, // Opcode: VABDfd 8094/* 6080 */ MCD::OPC_FilterValue, 1, 74, 51, 0, // Skip to: 19215 8095/* 6085 */ MCD::OPC_CheckPredicate, 26, 69, 51, 0, // Skip to: 19215 8096/* 6090 */ MCD::OPC_Decode, 240, 14, 206, 1, // Opcode: VABDfq 8097/* 6095 */ MCD::OPC_FilterValue, 231, 3, 58, 51, 0, // Skip to: 19215 8098/* 6101 */ MCD::OPC_CheckPredicate, 26, 53, 51, 0, // Skip to: 19215 8099/* 6106 */ MCD::OPC_CheckField, 6, 1, 1, 46, 51, 0, // Skip to: 19215 8100/* 6113 */ MCD::OPC_Decode, 183, 23, 225, 1, // Opcode: VQRDMULHslv4i32 8101/* 6118 */ MCD::OPC_FilterValue, 14, 104, 0, 0, // Skip to: 6227 8102/* 6123 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8103/* 6126 */ MCD::OPC_FilterValue, 229, 3, 33, 0, 0, // Skip to: 6165 8104/* 6132 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8105/* 6135 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6150 8106/* 6140 */ MCD::OPC_CheckPredicate, 29, 14, 51, 0, // Skip to: 19215 8107/* 6145 */ MCD::OPC_Decode, 250, 21, 207, 1, // Opcode: VMULLp64 8108/* 6150 */ MCD::OPC_FilterValue, 1, 4, 51, 0, // Skip to: 19215 8109/* 6155 */ MCD::OPC_CheckPredicate, 28, 255, 50, 0, // Skip to: 19215 8110/* 6160 */ MCD::OPC_Decode, 165, 23, 221, 1, // Opcode: VQRDMLAHslv2i32 8111/* 6165 */ MCD::OPC_FilterValue, 230, 3, 33, 0, 0, // Skip to: 6204 8112/* 6171 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8113/* 6174 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6189 8114/* 6179 */ MCD::OPC_CheckPredicate, 26, 231, 50, 0, // Skip to: 19215 8115/* 6184 */ MCD::OPC_Decode, 242, 15, 205, 1, // Opcode: VCGTfd 8116/* 6189 */ MCD::OPC_FilterValue, 1, 221, 50, 0, // Skip to: 19215 8117/* 6194 */ MCD::OPC_CheckPredicate, 26, 216, 50, 0, // Skip to: 19215 8118/* 6199 */ MCD::OPC_Decode, 243, 15, 206, 1, // Opcode: VCGTfq 8119/* 6204 */ MCD::OPC_FilterValue, 231, 3, 205, 50, 0, // Skip to: 19215 8120/* 6210 */ MCD::OPC_CheckPredicate, 28, 200, 50, 0, // Skip to: 19215 8121/* 6215 */ MCD::OPC_CheckField, 6, 1, 1, 193, 50, 0, // Skip to: 19215 8122/* 6222 */ MCD::OPC_Decode, 167, 23, 222, 1, // Opcode: VQRDMLAHslv4i32 8123/* 6227 */ MCD::OPC_FilterValue, 15, 183, 50, 0, // Skip to: 19215 8124/* 6232 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8125/* 6235 */ MCD::OPC_FilterValue, 228, 3, 33, 0, 0, // Skip to: 6274 8126/* 6241 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8127/* 6244 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6259 8128/* 6249 */ MCD::OPC_CheckPredicate, 26, 161, 50, 0, // Skip to: 19215 8129/* 6254 */ MCD::OPC_Decode, 245, 20, 205, 1, // Opcode: VMINfd 8130/* 6259 */ MCD::OPC_FilterValue, 1, 151, 50, 0, // Skip to: 19215 8131/* 6264 */ MCD::OPC_CheckPredicate, 26, 146, 50, 0, // Skip to: 19215 8132/* 6269 */ MCD::OPC_Decode, 246, 20, 206, 1, // Opcode: VMINfq 8133/* 6274 */ MCD::OPC_FilterValue, 229, 3, 17, 0, 0, // Skip to: 6297 8134/* 6280 */ MCD::OPC_CheckPredicate, 28, 130, 50, 0, // Skip to: 19215 8135/* 6285 */ MCD::OPC_CheckField, 6, 1, 1, 123, 50, 0, // Skip to: 19215 8136/* 6292 */ MCD::OPC_Decode, 173, 23, 221, 1, // Opcode: VQRDMLSHslv2i32 8137/* 6297 */ MCD::OPC_FilterValue, 230, 3, 17, 0, 0, // Skip to: 6320 8138/* 6303 */ MCD::OPC_CheckPredicate, 26, 107, 50, 0, // Skip to: 19215 8139/* 6308 */ MCD::OPC_CheckField, 6, 1, 0, 100, 50, 0, // Skip to: 19215 8140/* 6315 */ MCD::OPC_Decode, 228, 22, 205, 1, // Opcode: VPMINf 8141/* 6320 */ MCD::OPC_FilterValue, 231, 3, 89, 50, 0, // Skip to: 19215 8142/* 6326 */ MCD::OPC_CheckPredicate, 28, 84, 50, 0, // Skip to: 19215 8143/* 6331 */ MCD::OPC_CheckField, 6, 1, 1, 77, 50, 0, // Skip to: 19215 8144/* 6338 */ MCD::OPC_Decode, 175, 23, 222, 1, // Opcode: VQRDMLSHslv4i32 8145/* 6343 */ MCD::OPC_FilterValue, 3, 67, 50, 0, // Skip to: 19215 8146/* 6348 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 8147/* 6351 */ MCD::OPC_FilterValue, 228, 3, 193, 0, 0, // Skip to: 6550 8148/* 6357 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 8149/* 6360 */ MCD::OPC_FilterValue, 4, 33, 0, 0, // Skip to: 6398 8150/* 6365 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8151/* 6368 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6383 8152/* 6373 */ MCD::OPC_CheckPredicate, 26, 37, 50, 0, // Skip to: 19215 8153/* 6378 */ MCD::OPC_Decode, 208, 25, 209, 1, // Opcode: VSHLsv1i64 8154/* 6383 */ MCD::OPC_FilterValue, 1, 27, 50, 0, // Skip to: 19215 8155/* 6388 */ MCD::OPC_CheckPredicate, 26, 22, 50, 0, // Skip to: 19215 8156/* 6393 */ MCD::OPC_Decode, 210, 25, 210, 1, // Opcode: VSHLsv2i64 8157/* 6398 */ MCD::OPC_FilterValue, 5, 33, 0, 0, // Skip to: 6436 8158/* 6403 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8159/* 6406 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6421 8160/* 6411 */ MCD::OPC_CheckPredicate, 26, 255, 49, 0, // Skip to: 19215 8161/* 6416 */ MCD::OPC_Decode, 234, 24, 209, 1, // Opcode: VRSHLsv1i64 8162/* 6421 */ MCD::OPC_FilterValue, 1, 245, 49, 0, // Skip to: 19215 8163/* 6426 */ MCD::OPC_CheckPredicate, 26, 240, 49, 0, // Skip to: 19215 8164/* 6431 */ MCD::OPC_Decode, 236, 24, 210, 1, // Opcode: VRSHLsv2i64 8165/* 6436 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 6474 8166/* 6441 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8167/* 6444 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6459 8168/* 6449 */ MCD::OPC_CheckPredicate, 26, 217, 49, 0, // Skip to: 19215 8169/* 6454 */ MCD::OPC_Decode, 171, 15, 205, 1, // Opcode: VADDv1i64 8170/* 6459 */ MCD::OPC_FilterValue, 1, 207, 49, 0, // Skip to: 19215 8171/* 6464 */ MCD::OPC_CheckPredicate, 26, 202, 49, 0, // Skip to: 19215 8172/* 6469 */ MCD::OPC_Decode, 173, 15, 206, 1, // Opcode: VADDv2i64 8173/* 6474 */ MCD::OPC_FilterValue, 13, 33, 0, 0, // Skip to: 6512 8174/* 6479 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8175/* 6482 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6497 8176/* 6487 */ MCD::OPC_CheckPredicate, 27, 179, 49, 0, // Skip to: 19215 8177/* 6492 */ MCD::OPC_Decode, 188, 28, 205, 1, // Opcode: VSUBhd 8178/* 6497 */ MCD::OPC_FilterValue, 1, 169, 49, 0, // Skip to: 19215 8179/* 6502 */ MCD::OPC_CheckPredicate, 27, 164, 49, 0, // Skip to: 19215 8180/* 6507 */ MCD::OPC_Decode, 189, 28, 206, 1, // Opcode: VSUBhq 8181/* 6512 */ MCD::OPC_FilterValue, 15, 154, 49, 0, // Skip to: 19215 8182/* 6517 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8183/* 6520 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6535 8184/* 6525 */ MCD::OPC_CheckPredicate, 27, 141, 49, 0, // Skip to: 19215 8185/* 6530 */ MCD::OPC_Decode, 247, 20, 205, 1, // Opcode: VMINhd 8186/* 6535 */ MCD::OPC_FilterValue, 1, 131, 49, 0, // Skip to: 19215 8187/* 6540 */ MCD::OPC_CheckPredicate, 27, 126, 49, 0, // Skip to: 19215 8188/* 6545 */ MCD::OPC_Decode, 248, 20, 206, 1, // Opcode: VMINhq 8189/* 6550 */ MCD::OPC_FilterValue, 229, 3, 126, 0, 0, // Skip to: 6682 8190/* 6556 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8191/* 6559 */ MCD::OPC_FilterValue, 0, 52, 0, 0, // Skip to: 6616 8192/* 6564 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 8193/* 6567 */ MCD::OPC_FilterValue, 0, 99, 49, 0, // Skip to: 19215 8194/* 6572 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6589 8195/* 6577 */ MCD::OPC_CheckField, 8, 2, 0, 5, 0, 0, // Skip to: 6589 8196/* 6584 */ MCD::OPC_Decode, 184, 17, 227, 1, // Opcode: VEXTd32 8197/* 6589 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6606 8198/* 6594 */ MCD::OPC_CheckField, 8, 1, 0, 5, 0, 0, // Skip to: 6606 8199/* 6601 */ MCD::OPC_Decode, 183, 17, 228, 1, // Opcode: VEXTd16 8200/* 6606 */ MCD::OPC_CheckPredicate, 26, 60, 49, 0, // Skip to: 19215 8201/* 6611 */ MCD::OPC_Decode, 185, 17, 229, 1, // Opcode: VEXTd8 8202/* 6616 */ MCD::OPC_FilterValue, 1, 50, 49, 0, // Skip to: 19215 8203/* 6621 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6638 8204/* 6626 */ MCD::OPC_CheckField, 8, 3, 0, 5, 0, 0, // Skip to: 6638 8205/* 6633 */ MCD::OPC_Decode, 188, 17, 230, 1, // Opcode: VEXTq64 8206/* 6638 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6655 8207/* 6643 */ MCD::OPC_CheckField, 8, 2, 0, 5, 0, 0, // Skip to: 6655 8208/* 6650 */ MCD::OPC_Decode, 187, 17, 231, 1, // Opcode: VEXTq32 8209/* 6655 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6672 8210/* 6660 */ MCD::OPC_CheckField, 8, 1, 0, 5, 0, 0, // Skip to: 6672 8211/* 6667 */ MCD::OPC_Decode, 186, 17, 232, 1, // Opcode: VEXTq16 8212/* 6672 */ MCD::OPC_CheckPredicate, 26, 250, 48, 0, // Skip to: 19215 8213/* 6677 */ MCD::OPC_Decode, 189, 17, 233, 1, // Opcode: VEXTq8 8214/* 6682 */ MCD::OPC_FilterValue, 230, 3, 215, 0, 0, // Skip to: 6903 8215/* 6688 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 8216/* 6691 */ MCD::OPC_FilterValue, 4, 33, 0, 0, // Skip to: 6729 8217/* 6696 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8218/* 6699 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6714 8219/* 6704 */ MCD::OPC_CheckPredicate, 26, 218, 48, 0, // Skip to: 19215 8220/* 6709 */ MCD::OPC_Decode, 216, 25, 209, 1, // Opcode: VSHLuv1i64 8221/* 6714 */ MCD::OPC_FilterValue, 1, 208, 48, 0, // Skip to: 19215 8222/* 6719 */ MCD::OPC_CheckPredicate, 26, 203, 48, 0, // Skip to: 19215 8223/* 6724 */ MCD::OPC_Decode, 218, 25, 210, 1, // Opcode: VSHLuv2i64 8224/* 6729 */ MCD::OPC_FilterValue, 5, 33, 0, 0, // Skip to: 6767 8225/* 6734 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8226/* 6737 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6752 8227/* 6742 */ MCD::OPC_CheckPredicate, 26, 180, 48, 0, // Skip to: 19215 8228/* 6747 */ MCD::OPC_Decode, 242, 24, 209, 1, // Opcode: VRSHLuv1i64 8229/* 6752 */ MCD::OPC_FilterValue, 1, 170, 48, 0, // Skip to: 19215 8230/* 6757 */ MCD::OPC_CheckPredicate, 26, 165, 48, 0, // Skip to: 19215 8231/* 6762 */ MCD::OPC_Decode, 244, 24, 210, 1, // Opcode: VRSHLuv2i64 8232/* 6767 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 6805 8233/* 6772 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8234/* 6775 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6790 8235/* 6780 */ MCD::OPC_CheckPredicate, 26, 142, 48, 0, // Skip to: 19215 8236/* 6785 */ MCD::OPC_Decode, 191, 28, 205, 1, // Opcode: VSUBv1i64 8237/* 6790 */ MCD::OPC_FilterValue, 1, 132, 48, 0, // Skip to: 19215 8238/* 6795 */ MCD::OPC_CheckPredicate, 26, 127, 48, 0, // Skip to: 19215 8239/* 6800 */ MCD::OPC_Decode, 193, 28, 206, 1, // Opcode: VSUBv2i64 8240/* 6805 */ MCD::OPC_FilterValue, 13, 33, 0, 0, // Skip to: 6843 8241/* 6810 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8242/* 6813 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6828 8243/* 6818 */ MCD::OPC_CheckPredicate, 27, 104, 48, 0, // Skip to: 19215 8244/* 6823 */ MCD::OPC_Decode, 241, 14, 205, 1, // Opcode: VABDhd 8245/* 6828 */ MCD::OPC_FilterValue, 1, 94, 48, 0, // Skip to: 19215 8246/* 6833 */ MCD::OPC_CheckPredicate, 27, 89, 48, 0, // Skip to: 19215 8247/* 6838 */ MCD::OPC_Decode, 242, 14, 206, 1, // Opcode: VABDhq 8248/* 6843 */ MCD::OPC_FilterValue, 14, 33, 0, 0, // Skip to: 6881 8249/* 6848 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8250/* 6851 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6866 8251/* 6856 */ MCD::OPC_CheckPredicate, 27, 66, 48, 0, // Skip to: 19215 8252/* 6861 */ MCD::OPC_Decode, 244, 15, 205, 1, // Opcode: VCGThd 8253/* 6866 */ MCD::OPC_FilterValue, 1, 56, 48, 0, // Skip to: 19215 8254/* 6871 */ MCD::OPC_CheckPredicate, 27, 51, 48, 0, // Skip to: 19215 8255/* 6876 */ MCD::OPC_Decode, 245, 15, 206, 1, // Opcode: VCGThq 8256/* 6881 */ MCD::OPC_FilterValue, 15, 41, 48, 0, // Skip to: 19215 8257/* 6886 */ MCD::OPC_CheckPredicate, 27, 36, 48, 0, // Skip to: 19215 8258/* 6891 */ MCD::OPC_CheckField, 6, 1, 0, 29, 48, 0, // Skip to: 19215 8259/* 6898 */ MCD::OPC_Decode, 229, 22, 205, 1, // Opcode: VPMINh 8260/* 6903 */ MCD::OPC_FilterValue, 231, 3, 18, 48, 0, // Skip to: 19215 8261/* 6909 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 8262/* 6912 */ MCD::OPC_FilterValue, 0, 13, 2, 0, // Skip to: 7442 8263/* 6917 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8264/* 6920 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 6988 8265/* 6925 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8266/* 6928 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 6943 8267/* 6933 */ MCD::OPC_CheckPredicate, 26, 245, 47, 0, // Skip to: 19215 8268/* 6938 */ MCD::OPC_Decode, 172, 24, 234, 1, // Opcode: VREV64d8 8269/* 6943 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6958 8270/* 6948 */ MCD::OPC_CheckPredicate, 26, 230, 47, 0, // Skip to: 19215 8271/* 6953 */ MCD::OPC_Decode, 175, 24, 235, 1, // Opcode: VREV64q8 8272/* 6958 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 6973 8273/* 6963 */ MCD::OPC_CheckPredicate, 26, 215, 47, 0, // Skip to: 19215 8274/* 6968 */ MCD::OPC_Decode, 167, 24, 234, 1, // Opcode: VREV32d8 8275/* 6973 */ MCD::OPC_FilterValue, 3, 205, 47, 0, // Skip to: 19215 8276/* 6978 */ MCD::OPC_CheckPredicate, 26, 200, 47, 0, // Skip to: 19215 8277/* 6983 */ MCD::OPC_Decode, 169, 24, 235, 1, // Opcode: VREV32q8 8278/* 6988 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 7056 8279/* 6993 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8280/* 6996 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7011 8281/* 7001 */ MCD::OPC_CheckPredicate, 26, 177, 47, 0, // Skip to: 19215 8282/* 7006 */ MCD::OPC_Decode, 139, 16, 234, 1, // Opcode: VCGTzv8i8 8283/* 7011 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7026 8284/* 7016 */ MCD::OPC_CheckPredicate, 26, 162, 47, 0, // Skip to: 19215 8285/* 7021 */ MCD::OPC_Decode, 130, 16, 235, 1, // Opcode: VCGTzv16i8 8286/* 7026 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7041 8287/* 7031 */ MCD::OPC_CheckPredicate, 26, 147, 47, 0, // Skip to: 19215 8288/* 7036 */ MCD::OPC_Decode, 241, 15, 234, 1, // Opcode: VCGEzv8i8 8289/* 7041 */ MCD::OPC_FilterValue, 3, 137, 47, 0, // Skip to: 19215 8290/* 7046 */ MCD::OPC_CheckPredicate, 26, 132, 47, 0, // Skip to: 19215 8291/* 7051 */ MCD::OPC_Decode, 232, 15, 235, 1, // Opcode: VCGEzv16i8 8292/* 7056 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 7124 8293/* 7061 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8294/* 7064 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7079 8295/* 7069 */ MCD::OPC_CheckPredicate, 26, 109, 47, 0, // Skip to: 19215 8296/* 7074 */ MCD::OPC_Decode, 198, 28, 236, 1, // Opcode: VSWPd 8297/* 7079 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7094 8298/* 7084 */ MCD::OPC_CheckPredicate, 26, 94, 47, 0, // Skip to: 19215 8299/* 7089 */ MCD::OPC_Decode, 199, 28, 237, 1, // Opcode: VSWPq 8300/* 7094 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7109 8301/* 7099 */ MCD::OPC_CheckPredicate, 26, 79, 47, 0, // Skip to: 19215 8302/* 7104 */ MCD::OPC_Decode, 238, 28, 236, 1, // Opcode: VTRNd8 8303/* 7109 */ MCD::OPC_FilterValue, 3, 69, 47, 0, // Skip to: 19215 8304/* 7114 */ MCD::OPC_CheckPredicate, 26, 64, 47, 0, // Skip to: 19215 8305/* 7119 */ MCD::OPC_Decode, 241, 28, 237, 1, // Opcode: VTRNq8 8306/* 7124 */ MCD::OPC_FilterValue, 4, 63, 0, 0, // Skip to: 7192 8307/* 7129 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8308/* 7132 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7147 8309/* 7137 */ MCD::OPC_CheckPredicate, 26, 41, 47, 0, // Skip to: 19215 8310/* 7142 */ MCD::OPC_Decode, 170, 24, 234, 1, // Opcode: VREV64d16 8311/* 7147 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7162 8312/* 7152 */ MCD::OPC_CheckPredicate, 26, 26, 47, 0, // Skip to: 19215 8313/* 7157 */ MCD::OPC_Decode, 173, 24, 235, 1, // Opcode: VREV64q16 8314/* 7162 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7177 8315/* 7167 */ MCD::OPC_CheckPredicate, 26, 11, 47, 0, // Skip to: 19215 8316/* 7172 */ MCD::OPC_Decode, 166, 24, 234, 1, // Opcode: VREV32d16 8317/* 7177 */ MCD::OPC_FilterValue, 3, 1, 47, 0, // Skip to: 19215 8318/* 7182 */ MCD::OPC_CheckPredicate, 26, 252, 46, 0, // Skip to: 19215 8319/* 7187 */ MCD::OPC_Decode, 168, 24, 235, 1, // Opcode: VREV32q16 8320/* 7192 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 7260 8321/* 7197 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8322/* 7200 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7215 8323/* 7205 */ MCD::OPC_CheckPredicate, 26, 229, 46, 0, // Skip to: 19215 8324/* 7210 */ MCD::OPC_Decode, 135, 16, 234, 1, // Opcode: VCGTzv4i16 8325/* 7215 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7230 8326/* 7220 */ MCD::OPC_CheckPredicate, 26, 214, 46, 0, // Skip to: 19215 8327/* 7225 */ MCD::OPC_Decode, 138, 16, 235, 1, // Opcode: VCGTzv8i16 8328/* 7230 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7245 8329/* 7235 */ MCD::OPC_CheckPredicate, 26, 199, 46, 0, // Skip to: 19215 8330/* 7240 */ MCD::OPC_Decode, 237, 15, 234, 1, // Opcode: VCGEzv4i16 8331/* 7245 */ MCD::OPC_FilterValue, 3, 189, 46, 0, // Skip to: 19215 8332/* 7250 */ MCD::OPC_CheckPredicate, 26, 184, 46, 0, // Skip to: 19215 8333/* 7255 */ MCD::OPC_Decode, 240, 15, 235, 1, // Opcode: VCGEzv8i16 8334/* 7260 */ MCD::OPC_FilterValue, 6, 33, 0, 0, // Skip to: 7298 8335/* 7265 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8336/* 7268 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7283 8337/* 7273 */ MCD::OPC_CheckPredicate, 26, 161, 46, 0, // Skip to: 19215 8338/* 7278 */ MCD::OPC_Decode, 236, 28, 236, 1, // Opcode: VTRNd16 8339/* 7283 */ MCD::OPC_FilterValue, 3, 151, 46, 0, // Skip to: 19215 8340/* 7288 */ MCD::OPC_CheckPredicate, 26, 146, 46, 0, // Skip to: 19215 8341/* 7293 */ MCD::OPC_Decode, 239, 28, 237, 1, // Opcode: VTRNq16 8342/* 7298 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 7336 8343/* 7303 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8344/* 7306 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7321 8345/* 7311 */ MCD::OPC_CheckPredicate, 26, 123, 46, 0, // Skip to: 19215 8346/* 7316 */ MCD::OPC_Decode, 171, 24, 234, 1, // Opcode: VREV64d32 8347/* 7321 */ MCD::OPC_FilterValue, 1, 113, 46, 0, // Skip to: 19215 8348/* 7326 */ MCD::OPC_CheckPredicate, 26, 108, 46, 0, // Skip to: 19215 8349/* 7331 */ MCD::OPC_Decode, 174, 24, 235, 1, // Opcode: VREV64q32 8350/* 7336 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 7404 8351/* 7341 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8352/* 7344 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7359 8353/* 7349 */ MCD::OPC_CheckPredicate, 26, 85, 46, 0, // Skip to: 19215 8354/* 7354 */ MCD::OPC_Decode, 132, 16, 234, 1, // Opcode: VCGTzv2i32 8355/* 7359 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7374 8356/* 7364 */ MCD::OPC_CheckPredicate, 26, 70, 46, 0, // Skip to: 19215 8357/* 7369 */ MCD::OPC_Decode, 136, 16, 235, 1, // Opcode: VCGTzv4i32 8358/* 7374 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7389 8359/* 7379 */ MCD::OPC_CheckPredicate, 26, 55, 46, 0, // Skip to: 19215 8360/* 7384 */ MCD::OPC_Decode, 234, 15, 234, 1, // Opcode: VCGEzv2i32 8361/* 7389 */ MCD::OPC_FilterValue, 3, 45, 46, 0, // Skip to: 19215 8362/* 7394 */ MCD::OPC_CheckPredicate, 26, 40, 46, 0, // Skip to: 19215 8363/* 7399 */ MCD::OPC_Decode, 238, 15, 235, 1, // Opcode: VCGEzv4i32 8364/* 7404 */ MCD::OPC_FilterValue, 10, 30, 46, 0, // Skip to: 19215 8365/* 7409 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8366/* 7412 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7427 8367/* 7417 */ MCD::OPC_CheckPredicate, 26, 17, 46, 0, // Skip to: 19215 8368/* 7422 */ MCD::OPC_Decode, 237, 28, 236, 1, // Opcode: VTRNd32 8369/* 7427 */ MCD::OPC_FilterValue, 3, 7, 46, 0, // Skip to: 19215 8370/* 7432 */ MCD::OPC_CheckPredicate, 26, 2, 46, 0, // Skip to: 19215 8371/* 7437 */ MCD::OPC_Decode, 240, 28, 237, 1, // Opcode: VTRNq32 8372/* 7442 */ MCD::OPC_FilterValue, 1, 163, 1, 0, // Skip to: 7866 8373/* 7447 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8374/* 7450 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 7488 8375/* 7455 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8376/* 7458 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7473 8377/* 7463 */ MCD::OPC_CheckPredicate, 26, 227, 45, 0, // Skip to: 19215 8378/* 7468 */ MCD::OPC_Decode, 164, 24, 234, 1, // Opcode: VREV16d8 8379/* 7473 */ MCD::OPC_FilterValue, 1, 217, 45, 0, // Skip to: 19215 8380/* 7478 */ MCD::OPC_CheckPredicate, 26, 212, 45, 0, // Skip to: 19215 8381/* 7483 */ MCD::OPC_Decode, 165, 24, 235, 1, // Opcode: VREV16q8 8382/* 7488 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 7556 8383/* 7493 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8384/* 7496 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7511 8385/* 7501 */ MCD::OPC_CheckPredicate, 26, 189, 45, 0, // Skip to: 19215 8386/* 7506 */ MCD::OPC_Decode, 215, 15, 234, 1, // Opcode: VCEQzv8i8 8387/* 7511 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7526 8388/* 7516 */ MCD::OPC_CheckPredicate, 26, 174, 45, 0, // Skip to: 19215 8389/* 7521 */ MCD::OPC_Decode, 206, 15, 235, 1, // Opcode: VCEQzv16i8 8390/* 7526 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7541 8391/* 7531 */ MCD::OPC_CheckPredicate, 26, 159, 45, 0, // Skip to: 19215 8392/* 7536 */ MCD::OPC_Decode, 149, 16, 234, 1, // Opcode: VCLEzv8i8 8393/* 7541 */ MCD::OPC_FilterValue, 3, 149, 45, 0, // Skip to: 19215 8394/* 7546 */ MCD::OPC_CheckPredicate, 26, 144, 45, 0, // Skip to: 19215 8395/* 7551 */ MCD::OPC_Decode, 140, 16, 235, 1, // Opcode: VCLEzv16i8 8396/* 7556 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 7624 8397/* 7561 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8398/* 7564 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7579 8399/* 7569 */ MCD::OPC_CheckPredicate, 26, 121, 45, 0, // Skip to: 19215 8400/* 7574 */ MCD::OPC_Decode, 134, 29, 236, 1, // Opcode: VUZPd8 8401/* 7579 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7594 8402/* 7584 */ MCD::OPC_CheckPredicate, 26, 106, 45, 0, // Skip to: 19215 8403/* 7589 */ MCD::OPC_Decode, 137, 29, 237, 1, // Opcode: VUZPq8 8404/* 7594 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7609 8405/* 7599 */ MCD::OPC_CheckPredicate, 26, 91, 45, 0, // Skip to: 19215 8406/* 7604 */ MCD::OPC_Decode, 139, 29, 236, 1, // Opcode: VZIPd8 8407/* 7609 */ MCD::OPC_FilterValue, 3, 81, 45, 0, // Skip to: 19215 8408/* 7614 */ MCD::OPC_CheckPredicate, 26, 76, 45, 0, // Skip to: 19215 8409/* 7619 */ MCD::OPC_Decode, 142, 29, 237, 1, // Opcode: VZIPq8 8410/* 7624 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 7692 8411/* 7629 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8412/* 7632 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7647 8413/* 7637 */ MCD::OPC_CheckPredicate, 26, 53, 45, 0, // Skip to: 19215 8414/* 7642 */ MCD::OPC_Decode, 211, 15, 234, 1, // Opcode: VCEQzv4i16 8415/* 7647 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7662 8416/* 7652 */ MCD::OPC_CheckPredicate, 26, 38, 45, 0, // Skip to: 19215 8417/* 7657 */ MCD::OPC_Decode, 214, 15, 235, 1, // Opcode: VCEQzv8i16 8418/* 7662 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7677 8419/* 7667 */ MCD::OPC_CheckPredicate, 26, 23, 45, 0, // Skip to: 19215 8420/* 7672 */ MCD::OPC_Decode, 145, 16, 234, 1, // Opcode: VCLEzv4i16 8421/* 7677 */ MCD::OPC_FilterValue, 3, 13, 45, 0, // Skip to: 19215 8422/* 7682 */ MCD::OPC_CheckPredicate, 26, 8, 45, 0, // Skip to: 19215 8423/* 7687 */ MCD::OPC_Decode, 148, 16, 235, 1, // Opcode: VCLEzv8i16 8424/* 7692 */ MCD::OPC_FilterValue, 6, 63, 0, 0, // Skip to: 7760 8425/* 7697 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8426/* 7700 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7715 8427/* 7705 */ MCD::OPC_CheckPredicate, 26, 241, 44, 0, // Skip to: 19215 8428/* 7710 */ MCD::OPC_Decode, 133, 29, 236, 1, // Opcode: VUZPd16 8429/* 7715 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7730 8430/* 7720 */ MCD::OPC_CheckPredicate, 26, 226, 44, 0, // Skip to: 19215 8431/* 7725 */ MCD::OPC_Decode, 135, 29, 237, 1, // Opcode: VUZPq16 8432/* 7730 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7745 8433/* 7735 */ MCD::OPC_CheckPredicate, 26, 211, 44, 0, // Skip to: 19215 8434/* 7740 */ MCD::OPC_Decode, 138, 29, 236, 1, // Opcode: VZIPd16 8435/* 7745 */ MCD::OPC_FilterValue, 3, 201, 44, 0, // Skip to: 19215 8436/* 7750 */ MCD::OPC_CheckPredicate, 26, 196, 44, 0, // Skip to: 19215 8437/* 7755 */ MCD::OPC_Decode, 140, 29, 237, 1, // Opcode: VZIPq16 8438/* 7760 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 7828 8439/* 7765 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8440/* 7768 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7783 8441/* 7773 */ MCD::OPC_CheckPredicate, 26, 173, 44, 0, // Skip to: 19215 8442/* 7778 */ MCD::OPC_Decode, 208, 15, 234, 1, // Opcode: VCEQzv2i32 8443/* 7783 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7798 8444/* 7788 */ MCD::OPC_CheckPredicate, 26, 158, 44, 0, // Skip to: 19215 8445/* 7793 */ MCD::OPC_Decode, 212, 15, 235, 1, // Opcode: VCEQzv4i32 8446/* 7798 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7813 8447/* 7803 */ MCD::OPC_CheckPredicate, 26, 143, 44, 0, // Skip to: 19215 8448/* 7808 */ MCD::OPC_Decode, 142, 16, 234, 1, // Opcode: VCLEzv2i32 8449/* 7813 */ MCD::OPC_FilterValue, 3, 133, 44, 0, // Skip to: 19215 8450/* 7818 */ MCD::OPC_CheckPredicate, 26, 128, 44, 0, // Skip to: 19215 8451/* 7823 */ MCD::OPC_Decode, 146, 16, 235, 1, // Opcode: VCLEzv4i32 8452/* 7828 */ MCD::OPC_FilterValue, 10, 118, 44, 0, // Skip to: 19215 8453/* 7833 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8454/* 7836 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7851 8455/* 7841 */ MCD::OPC_CheckPredicate, 26, 105, 44, 0, // Skip to: 19215 8456/* 7846 */ MCD::OPC_Decode, 136, 29, 237, 1, // Opcode: VUZPq32 8457/* 7851 */ MCD::OPC_FilterValue, 3, 95, 44, 0, // Skip to: 19215 8458/* 7856 */ MCD::OPC_CheckPredicate, 26, 90, 44, 0, // Skip to: 19215 8459/* 7861 */ MCD::OPC_Decode, 141, 29, 237, 1, // Opcode: VZIPq32 8460/* 7866 */ MCD::OPC_FilterValue, 2, 13, 2, 0, // Skip to: 8396 8461/* 7871 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8462/* 7874 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 7942 8463/* 7879 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8464/* 7882 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7897 8465/* 7887 */ MCD::OPC_CheckPredicate, 26, 59, 44, 0, // Skip to: 19215 8466/* 7892 */ MCD::OPC_Decode, 208, 22, 234, 1, // Opcode: VPADDLsv8i8 8467/* 7897 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7912 8468/* 7902 */ MCD::OPC_CheckPredicate, 26, 44, 44, 0, // Skip to: 19215 8469/* 7907 */ MCD::OPC_Decode, 203, 22, 235, 1, // Opcode: VPADDLsv16i8 8470/* 7912 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 7927 8471/* 7917 */ MCD::OPC_CheckPredicate, 26, 29, 44, 0, // Skip to: 19215 8472/* 7922 */ MCD::OPC_Decode, 214, 22, 234, 1, // Opcode: VPADDLuv8i8 8473/* 7927 */ MCD::OPC_FilterValue, 3, 19, 44, 0, // Skip to: 19215 8474/* 7932 */ MCD::OPC_CheckPredicate, 26, 14, 44, 0, // Skip to: 19215 8475/* 7937 */ MCD::OPC_Decode, 209, 22, 235, 1, // Opcode: VPADDLuv16i8 8476/* 7942 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 7980 8477/* 7947 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8478/* 7950 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 7965 8479/* 7955 */ MCD::OPC_CheckPredicate, 26, 247, 43, 0, // Skip to: 19215 8480/* 7960 */ MCD::OPC_Decode, 165, 16, 234, 1, // Opcode: VCLTzv8i8 8481/* 7965 */ MCD::OPC_FilterValue, 1, 237, 43, 0, // Skip to: 19215 8482/* 7970 */ MCD::OPC_CheckPredicate, 26, 232, 43, 0, // Skip to: 19215 8483/* 7975 */ MCD::OPC_Decode, 156, 16, 235, 1, // Opcode: VCLTzv16i8 8484/* 7980 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 8048 8485/* 7985 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8486/* 7988 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8003 8487/* 7993 */ MCD::OPC_CheckPredicate, 26, 209, 43, 0, // Skip to: 19215 8488/* 7998 */ MCD::OPC_Decode, 207, 21, 238, 1, // Opcode: VMOVNv8i8 8489/* 8003 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8018 8490/* 8008 */ MCD::OPC_CheckPredicate, 26, 194, 43, 0, // Skip to: 19215 8491/* 8013 */ MCD::OPC_Decode, 152, 23, 238, 1, // Opcode: VQMOVNsuv8i8 8492/* 8018 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8033 8493/* 8023 */ MCD::OPC_CheckPredicate, 26, 179, 43, 0, // Skip to: 19215 8494/* 8028 */ MCD::OPC_Decode, 155, 23, 238, 1, // Opcode: VQMOVNsv8i8 8495/* 8033 */ MCD::OPC_FilterValue, 3, 169, 43, 0, // Skip to: 19215 8496/* 8038 */ MCD::OPC_CheckPredicate, 26, 164, 43, 0, // Skip to: 19215 8497/* 8043 */ MCD::OPC_Decode, 158, 23, 238, 1, // Opcode: VQMOVNuv8i8 8498/* 8048 */ MCD::OPC_FilterValue, 4, 63, 0, 0, // Skip to: 8116 8499/* 8053 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8500/* 8056 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8071 8501/* 8061 */ MCD::OPC_CheckPredicate, 26, 141, 43, 0, // Skip to: 19215 8502/* 8066 */ MCD::OPC_Decode, 205, 22, 234, 1, // Opcode: VPADDLsv4i16 8503/* 8071 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8086 8504/* 8076 */ MCD::OPC_CheckPredicate, 26, 126, 43, 0, // Skip to: 19215 8505/* 8081 */ MCD::OPC_Decode, 207, 22, 235, 1, // Opcode: VPADDLsv8i16 8506/* 8086 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8101 8507/* 8091 */ MCD::OPC_CheckPredicate, 26, 111, 43, 0, // Skip to: 19215 8508/* 8096 */ MCD::OPC_Decode, 211, 22, 234, 1, // Opcode: VPADDLuv4i16 8509/* 8101 */ MCD::OPC_FilterValue, 3, 101, 43, 0, // Skip to: 19215 8510/* 8106 */ MCD::OPC_CheckPredicate, 26, 96, 43, 0, // Skip to: 19215 8511/* 8111 */ MCD::OPC_Decode, 213, 22, 235, 1, // Opcode: VPADDLuv8i16 8512/* 8116 */ MCD::OPC_FilterValue, 5, 33, 0, 0, // Skip to: 8154 8513/* 8121 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8514/* 8124 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8139 8515/* 8129 */ MCD::OPC_CheckPredicate, 26, 73, 43, 0, // Skip to: 19215 8516/* 8134 */ MCD::OPC_Decode, 161, 16, 234, 1, // Opcode: VCLTzv4i16 8517/* 8139 */ MCD::OPC_FilterValue, 1, 63, 43, 0, // Skip to: 19215 8518/* 8144 */ MCD::OPC_CheckPredicate, 26, 58, 43, 0, // Skip to: 19215 8519/* 8149 */ MCD::OPC_Decode, 164, 16, 235, 1, // Opcode: VCLTzv8i16 8520/* 8154 */ MCD::OPC_FilterValue, 6, 63, 0, 0, // Skip to: 8222 8521/* 8159 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8522/* 8162 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8177 8523/* 8167 */ MCD::OPC_CheckPredicate, 26, 35, 43, 0, // Skip to: 19215 8524/* 8172 */ MCD::OPC_Decode, 206, 21, 238, 1, // Opcode: VMOVNv4i16 8525/* 8177 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8192 8526/* 8182 */ MCD::OPC_CheckPredicate, 26, 20, 43, 0, // Skip to: 19215 8527/* 8187 */ MCD::OPC_Decode, 151, 23, 238, 1, // Opcode: VQMOVNsuv4i16 8528/* 8192 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8207 8529/* 8197 */ MCD::OPC_CheckPredicate, 26, 5, 43, 0, // Skip to: 19215 8530/* 8202 */ MCD::OPC_Decode, 154, 23, 238, 1, // Opcode: VQMOVNsv4i16 8531/* 8207 */ MCD::OPC_FilterValue, 3, 251, 42, 0, // Skip to: 19215 8532/* 8212 */ MCD::OPC_CheckPredicate, 26, 246, 42, 0, // Skip to: 19215 8533/* 8217 */ MCD::OPC_Decode, 157, 23, 238, 1, // Opcode: VQMOVNuv4i16 8534/* 8222 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 8290 8535/* 8227 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8536/* 8230 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8245 8537/* 8235 */ MCD::OPC_CheckPredicate, 26, 223, 42, 0, // Skip to: 19215 8538/* 8240 */ MCD::OPC_Decode, 204, 22, 234, 1, // Opcode: VPADDLsv2i32 8539/* 8245 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8260 8540/* 8250 */ MCD::OPC_CheckPredicate, 26, 208, 42, 0, // Skip to: 19215 8541/* 8255 */ MCD::OPC_Decode, 206, 22, 235, 1, // Opcode: VPADDLsv4i32 8542/* 8260 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8275 8543/* 8265 */ MCD::OPC_CheckPredicate, 26, 193, 42, 0, // Skip to: 19215 8544/* 8270 */ MCD::OPC_Decode, 210, 22, 234, 1, // Opcode: VPADDLuv2i32 8545/* 8275 */ MCD::OPC_FilterValue, 3, 183, 42, 0, // Skip to: 19215 8546/* 8280 */ MCD::OPC_CheckPredicate, 26, 178, 42, 0, // Skip to: 19215 8547/* 8285 */ MCD::OPC_Decode, 212, 22, 235, 1, // Opcode: VPADDLuv4i32 8548/* 8290 */ MCD::OPC_FilterValue, 9, 33, 0, 0, // Skip to: 8328 8549/* 8295 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8550/* 8298 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8313 8551/* 8303 */ MCD::OPC_CheckPredicate, 26, 155, 42, 0, // Skip to: 19215 8552/* 8308 */ MCD::OPC_Decode, 158, 16, 234, 1, // Opcode: VCLTzv2i32 8553/* 8313 */ MCD::OPC_FilterValue, 1, 145, 42, 0, // Skip to: 19215 8554/* 8318 */ MCD::OPC_CheckPredicate, 26, 140, 42, 0, // Skip to: 19215 8555/* 8323 */ MCD::OPC_Decode, 162, 16, 235, 1, // Opcode: VCLTzv4i32 8556/* 8328 */ MCD::OPC_FilterValue, 10, 130, 42, 0, // Skip to: 19215 8557/* 8333 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8558/* 8336 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8351 8559/* 8341 */ MCD::OPC_CheckPredicate, 26, 117, 42, 0, // Skip to: 19215 8560/* 8346 */ MCD::OPC_Decode, 205, 21, 238, 1, // Opcode: VMOVNv2i32 8561/* 8351 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8366 8562/* 8356 */ MCD::OPC_CheckPredicate, 26, 102, 42, 0, // Skip to: 19215 8563/* 8361 */ MCD::OPC_Decode, 150, 23, 238, 1, // Opcode: VQMOVNsuv2i32 8564/* 8366 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8381 8565/* 8371 */ MCD::OPC_CheckPredicate, 26, 87, 42, 0, // Skip to: 19215 8566/* 8376 */ MCD::OPC_Decode, 153, 23, 238, 1, // Opcode: VQMOVNsv2i32 8567/* 8381 */ MCD::OPC_FilterValue, 3, 77, 42, 0, // Skip to: 19215 8568/* 8386 */ MCD::OPC_CheckPredicate, 26, 72, 42, 0, // Skip to: 19215 8569/* 8391 */ MCD::OPC_Decode, 156, 23, 238, 1, // Opcode: VQMOVNuv2i32 8570/* 8396 */ MCD::OPC_FilterValue, 3, 17, 1, 0, // Skip to: 8674 8571/* 8401 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8572/* 8404 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 8472 8573/* 8409 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8574/* 8412 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8427 8575/* 8417 */ MCD::OPC_CheckPredicate, 26, 41, 42, 0, // Skip to: 19215 8576/* 8422 */ MCD::OPC_Decode, 139, 15, 234, 1, // Opcode: VABSv8i8 8577/* 8427 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8442 8578/* 8432 */ MCD::OPC_CheckPredicate, 26, 26, 42, 0, // Skip to: 19215 8579/* 8437 */ MCD::OPC_Decode, 134, 15, 235, 1, // Opcode: VABSv16i8 8580/* 8442 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8457 8581/* 8447 */ MCD::OPC_CheckPredicate, 26, 11, 42, 0, // Skip to: 19215 8582/* 8452 */ MCD::OPC_Decode, 172, 22, 234, 1, // Opcode: VNEGs8d 8583/* 8457 */ MCD::OPC_FilterValue, 3, 1, 42, 0, // Skip to: 19215 8584/* 8462 */ MCD::OPC_CheckPredicate, 26, 252, 41, 0, // Skip to: 19215 8585/* 8467 */ MCD::OPC_Decode, 173, 22, 235, 1, // Opcode: VNEGs8q 8586/* 8472 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 8494 8587/* 8477 */ MCD::OPC_CheckPredicate, 26, 237, 41, 0, // Skip to: 19215 8588/* 8482 */ MCD::OPC_CheckField, 6, 2, 0, 230, 41, 0, // Skip to: 19215 8589/* 8489 */ MCD::OPC_Decode, 192, 25, 239, 1, // Opcode: VSHLLi8 8590/* 8494 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 8562 8591/* 8499 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8592/* 8502 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8517 8593/* 8507 */ MCD::OPC_CheckPredicate, 26, 207, 41, 0, // Skip to: 19215 8594/* 8512 */ MCD::OPC_Decode, 136, 15, 234, 1, // Opcode: VABSv4i16 8595/* 8517 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8532 8596/* 8522 */ MCD::OPC_CheckPredicate, 26, 192, 41, 0, // Skip to: 19215 8597/* 8527 */ MCD::OPC_Decode, 138, 15, 235, 1, // Opcode: VABSv8i16 8598/* 8532 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8547 8599/* 8537 */ MCD::OPC_CheckPredicate, 26, 177, 41, 0, // Skip to: 19215 8600/* 8542 */ MCD::OPC_Decode, 168, 22, 234, 1, // Opcode: VNEGs16d 8601/* 8547 */ MCD::OPC_FilterValue, 3, 167, 41, 0, // Skip to: 19215 8602/* 8552 */ MCD::OPC_CheckPredicate, 26, 162, 41, 0, // Skip to: 19215 8603/* 8557 */ MCD::OPC_Decode, 169, 22, 235, 1, // Opcode: VNEGs16q 8604/* 8562 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 8584 8605/* 8567 */ MCD::OPC_CheckPredicate, 26, 147, 41, 0, // Skip to: 19215 8606/* 8572 */ MCD::OPC_CheckField, 6, 2, 0, 140, 41, 0, // Skip to: 19215 8607/* 8579 */ MCD::OPC_Decode, 190, 25, 239, 1, // Opcode: VSHLLi16 8608/* 8584 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 8652 8609/* 8589 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8610/* 8592 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8607 8611/* 8597 */ MCD::OPC_CheckPredicate, 26, 117, 41, 0, // Skip to: 19215 8612/* 8602 */ MCD::OPC_Decode, 135, 15, 234, 1, // Opcode: VABSv2i32 8613/* 8607 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8622 8614/* 8612 */ MCD::OPC_CheckPredicate, 26, 102, 41, 0, // Skip to: 19215 8615/* 8617 */ MCD::OPC_Decode, 137, 15, 235, 1, // Opcode: VABSv4i32 8616/* 8622 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8637 8617/* 8627 */ MCD::OPC_CheckPredicate, 26, 87, 41, 0, // Skip to: 19215 8618/* 8632 */ MCD::OPC_Decode, 170, 22, 234, 1, // Opcode: VNEGs32d 8619/* 8637 */ MCD::OPC_FilterValue, 3, 77, 41, 0, // Skip to: 19215 8620/* 8642 */ MCD::OPC_CheckPredicate, 26, 72, 41, 0, // Skip to: 19215 8621/* 8647 */ MCD::OPC_Decode, 171, 22, 235, 1, // Opcode: VNEGs32q 8622/* 8652 */ MCD::OPC_FilterValue, 10, 62, 41, 0, // Skip to: 19215 8623/* 8657 */ MCD::OPC_CheckPredicate, 26, 57, 41, 0, // Skip to: 19215 8624/* 8662 */ MCD::OPC_CheckField, 6, 2, 0, 50, 41, 0, // Skip to: 19215 8625/* 8669 */ MCD::OPC_Decode, 191, 25, 239, 1, // Opcode: VSHLLi32 8626/* 8674 */ MCD::OPC_FilterValue, 4, 155, 1, 0, // Skip to: 9090 8627/* 8679 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8628/* 8682 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 8750 8629/* 8687 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8630/* 8690 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8705 8631/* 8695 */ MCD::OPC_CheckPredicate, 26, 19, 41, 0, // Skip to: 19215 8632/* 8700 */ MCD::OPC_Decode, 155, 16, 234, 1, // Opcode: VCLSv8i8 8633/* 8705 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8720 8634/* 8710 */ MCD::OPC_CheckPredicate, 26, 4, 41, 0, // Skip to: 19215 8635/* 8715 */ MCD::OPC_Decode, 150, 16, 235, 1, // Opcode: VCLSv16i8 8636/* 8720 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8735 8637/* 8725 */ MCD::OPC_CheckPredicate, 26, 245, 40, 0, // Skip to: 19215 8638/* 8730 */ MCD::OPC_Decode, 171, 16, 234, 1, // Opcode: VCLZv8i8 8639/* 8735 */ MCD::OPC_FilterValue, 3, 235, 40, 0, // Skip to: 19215 8640/* 8740 */ MCD::OPC_CheckPredicate, 26, 230, 40, 0, // Skip to: 19215 8641/* 8745 */ MCD::OPC_Decode, 166, 16, 235, 1, // Opcode: VCLZv16i8 8642/* 8750 */ MCD::OPC_FilterValue, 4, 63, 0, 0, // Skip to: 8818 8643/* 8755 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8644/* 8758 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8773 8645/* 8763 */ MCD::OPC_CheckPredicate, 26, 207, 40, 0, // Skip to: 19215 8646/* 8768 */ MCD::OPC_Decode, 152, 16, 234, 1, // Opcode: VCLSv4i16 8647/* 8773 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8788 8648/* 8778 */ MCD::OPC_CheckPredicate, 26, 192, 40, 0, // Skip to: 19215 8649/* 8783 */ MCD::OPC_Decode, 154, 16, 235, 1, // Opcode: VCLSv8i16 8650/* 8788 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8803 8651/* 8793 */ MCD::OPC_CheckPredicate, 26, 177, 40, 0, // Skip to: 19215 8652/* 8798 */ MCD::OPC_Decode, 168, 16, 234, 1, // Opcode: VCLZv4i16 8653/* 8803 */ MCD::OPC_FilterValue, 3, 167, 40, 0, // Skip to: 19215 8654/* 8808 */ MCD::OPC_CheckPredicate, 26, 162, 40, 0, // Skip to: 19215 8655/* 8813 */ MCD::OPC_Decode, 170, 16, 235, 1, // Opcode: VCLZv8i16 8656/* 8818 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 8886 8657/* 8823 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8658/* 8826 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8841 8659/* 8831 */ MCD::OPC_CheckPredicate, 27, 139, 40, 0, // Skip to: 19215 8660/* 8836 */ MCD::OPC_Decode, 133, 16, 234, 1, // Opcode: VCGTzv4f16 8661/* 8841 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8856 8662/* 8846 */ MCD::OPC_CheckPredicate, 27, 124, 40, 0, // Skip to: 19215 8663/* 8851 */ MCD::OPC_Decode, 137, 16, 235, 1, // Opcode: VCGTzv8f16 8664/* 8856 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8871 8665/* 8861 */ MCD::OPC_CheckPredicate, 27, 109, 40, 0, // Skip to: 19215 8666/* 8866 */ MCD::OPC_Decode, 235, 15, 234, 1, // Opcode: VCGEzv4f16 8667/* 8871 */ MCD::OPC_FilterValue, 3, 99, 40, 0, // Skip to: 19215 8668/* 8876 */ MCD::OPC_CheckPredicate, 27, 94, 40, 0, // Skip to: 19215 8669/* 8881 */ MCD::OPC_Decode, 239, 15, 235, 1, // Opcode: VCGEzv8f16 8670/* 8886 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 8954 8671/* 8891 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8672/* 8894 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8909 8673/* 8899 */ MCD::OPC_CheckPredicate, 26, 71, 40, 0, // Skip to: 19215 8674/* 8904 */ MCD::OPC_Decode, 151, 16, 234, 1, // Opcode: VCLSv2i32 8675/* 8909 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8924 8676/* 8914 */ MCD::OPC_CheckPredicate, 26, 56, 40, 0, // Skip to: 19215 8677/* 8919 */ MCD::OPC_Decode, 153, 16, 235, 1, // Opcode: VCLSv4i32 8678/* 8924 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 8939 8679/* 8929 */ MCD::OPC_CheckPredicate, 26, 41, 40, 0, // Skip to: 19215 8680/* 8934 */ MCD::OPC_Decode, 167, 16, 234, 1, // Opcode: VCLZv2i32 8681/* 8939 */ MCD::OPC_FilterValue, 3, 31, 40, 0, // Skip to: 19215 8682/* 8944 */ MCD::OPC_CheckPredicate, 26, 26, 40, 0, // Skip to: 19215 8683/* 8949 */ MCD::OPC_Decode, 169, 16, 235, 1, // Opcode: VCLZv4i32 8684/* 8954 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 9022 8685/* 8959 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8686/* 8962 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8977 8687/* 8967 */ MCD::OPC_CheckPredicate, 26, 3, 40, 0, // Skip to: 19215 8688/* 8972 */ MCD::OPC_Decode, 131, 16, 234, 1, // Opcode: VCGTzv2f32 8689/* 8977 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 8992 8690/* 8982 */ MCD::OPC_CheckPredicate, 26, 244, 39, 0, // Skip to: 19215 8691/* 8987 */ MCD::OPC_Decode, 134, 16, 235, 1, // Opcode: VCGTzv4f32 8692/* 8992 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9007 8693/* 8997 */ MCD::OPC_CheckPredicate, 26, 229, 39, 0, // Skip to: 19215 8694/* 9002 */ MCD::OPC_Decode, 233, 15, 234, 1, // Opcode: VCGEzv2f32 8695/* 9007 */ MCD::OPC_FilterValue, 3, 219, 39, 0, // Skip to: 19215 8696/* 9012 */ MCD::OPC_CheckPredicate, 26, 214, 39, 0, // Skip to: 19215 8697/* 9017 */ MCD::OPC_Decode, 236, 15, 235, 1, // Opcode: VCGEzv4f32 8698/* 9022 */ MCD::OPC_FilterValue, 11, 204, 39, 0, // Skip to: 19215 8699/* 9027 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8700/* 9030 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9045 8701/* 9035 */ MCD::OPC_CheckPredicate, 26, 191, 39, 0, // Skip to: 19215 8702/* 9040 */ MCD::OPC_Decode, 154, 24, 234, 1, // Opcode: VRECPEd 8703/* 9045 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9060 8704/* 9050 */ MCD::OPC_CheckPredicate, 26, 176, 39, 0, // Skip to: 19215 8705/* 9055 */ MCD::OPC_Decode, 159, 24, 235, 1, // Opcode: VRECPEq 8706/* 9060 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9075 8707/* 9065 */ MCD::OPC_CheckPredicate, 26, 161, 39, 0, // Skip to: 19215 8708/* 9070 */ MCD::OPC_Decode, 140, 25, 234, 1, // Opcode: VRSQRTEd 8709/* 9075 */ MCD::OPC_FilterValue, 3, 151, 39, 0, // Skip to: 19215 8710/* 9080 */ MCD::OPC_CheckPredicate, 26, 146, 39, 0, // Skip to: 19215 8711/* 9085 */ MCD::OPC_Decode, 145, 25, 235, 1, // Opcode: VRSQRTEq 8712/* 9090 */ MCD::OPC_FilterValue, 5, 87, 1, 0, // Skip to: 9438 8713/* 9095 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8714/* 9098 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 9166 8715/* 9103 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8716/* 9106 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9121 8717/* 9111 */ MCD::OPC_CheckPredicate, 26, 115, 39, 0, // Skip to: 19215 8718/* 9116 */ MCD::OPC_Decode, 192, 16, 234, 1, // Opcode: VCNTd 8719/* 9121 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9136 8720/* 9126 */ MCD::OPC_CheckPredicate, 26, 100, 39, 0, // Skip to: 19215 8721/* 9131 */ MCD::OPC_Decode, 193, 16, 235, 1, // Opcode: VCNTq 8722/* 9136 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9151 8723/* 9141 */ MCD::OPC_CheckPredicate, 26, 85, 39, 0, // Skip to: 19215 8724/* 9146 */ MCD::OPC_Decode, 155, 22, 234, 1, // Opcode: VMVNd 8725/* 9151 */ MCD::OPC_FilterValue, 3, 75, 39, 0, // Skip to: 19215 8726/* 9156 */ MCD::OPC_CheckPredicate, 26, 70, 39, 0, // Skip to: 19215 8727/* 9161 */ MCD::OPC_Decode, 156, 22, 235, 1, // Opcode: VMVNq 8728/* 9166 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 9234 8729/* 9171 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8730/* 9174 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9189 8731/* 9179 */ MCD::OPC_CheckPredicate, 27, 47, 39, 0, // Skip to: 19215 8732/* 9184 */ MCD::OPC_Decode, 209, 15, 234, 1, // Opcode: VCEQzv4f16 8733/* 9189 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9204 8734/* 9194 */ MCD::OPC_CheckPredicate, 27, 32, 39, 0, // Skip to: 19215 8735/* 9199 */ MCD::OPC_Decode, 213, 15, 235, 1, // Opcode: VCEQzv8f16 8736/* 9204 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9219 8737/* 9209 */ MCD::OPC_CheckPredicate, 27, 17, 39, 0, // Skip to: 19215 8738/* 9214 */ MCD::OPC_Decode, 143, 16, 234, 1, // Opcode: VCLEzv4f16 8739/* 9219 */ MCD::OPC_FilterValue, 3, 7, 39, 0, // Skip to: 19215 8740/* 9224 */ MCD::OPC_CheckPredicate, 27, 2, 39, 0, // Skip to: 19215 8741/* 9229 */ MCD::OPC_Decode, 147, 16, 235, 1, // Opcode: VCLEzv8f16 8742/* 9234 */ MCD::OPC_FilterValue, 7, 63, 0, 0, // Skip to: 9302 8743/* 9239 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8744/* 9242 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9257 8745/* 9247 */ MCD::OPC_CheckPredicate, 27, 235, 38, 0, // Skip to: 19215 8746/* 9252 */ MCD::OPC_Decode, 157, 24, 234, 1, // Opcode: VRECPEhd 8747/* 9257 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9272 8748/* 9262 */ MCD::OPC_CheckPredicate, 27, 220, 38, 0, // Skip to: 19215 8749/* 9267 */ MCD::OPC_Decode, 158, 24, 235, 1, // Opcode: VRECPEhq 8750/* 9272 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9287 8751/* 9277 */ MCD::OPC_CheckPredicate, 27, 205, 38, 0, // Skip to: 19215 8752/* 9282 */ MCD::OPC_Decode, 143, 25, 234, 1, // Opcode: VRSQRTEhd 8753/* 9287 */ MCD::OPC_FilterValue, 3, 195, 38, 0, // Skip to: 19215 8754/* 9292 */ MCD::OPC_CheckPredicate, 27, 190, 38, 0, // Skip to: 19215 8755/* 9297 */ MCD::OPC_Decode, 144, 25, 235, 1, // Opcode: VRSQRTEhq 8756/* 9302 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 9370 8757/* 9307 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8758/* 9310 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9325 8759/* 9315 */ MCD::OPC_CheckPredicate, 26, 167, 38, 0, // Skip to: 19215 8760/* 9320 */ MCD::OPC_Decode, 207, 15, 234, 1, // Opcode: VCEQzv2f32 8761/* 9325 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9340 8762/* 9330 */ MCD::OPC_CheckPredicate, 26, 152, 38, 0, // Skip to: 19215 8763/* 9335 */ MCD::OPC_Decode, 210, 15, 235, 1, // Opcode: VCEQzv4f32 8764/* 9340 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9355 8765/* 9345 */ MCD::OPC_CheckPredicate, 26, 137, 38, 0, // Skip to: 19215 8766/* 9350 */ MCD::OPC_Decode, 141, 16, 234, 1, // Opcode: VCLEzv2f32 8767/* 9355 */ MCD::OPC_FilterValue, 3, 127, 38, 0, // Skip to: 19215 8768/* 9360 */ MCD::OPC_CheckPredicate, 26, 122, 38, 0, // Skip to: 19215 8769/* 9365 */ MCD::OPC_Decode, 144, 16, 235, 1, // Opcode: VCLEzv4f32 8770/* 9370 */ MCD::OPC_FilterValue, 11, 112, 38, 0, // Skip to: 19215 8771/* 9375 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8772/* 9378 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9393 8773/* 9383 */ MCD::OPC_CheckPredicate, 26, 99, 38, 0, // Skip to: 19215 8774/* 9388 */ MCD::OPC_Decode, 155, 24, 234, 1, // Opcode: VRECPEfd 8775/* 9393 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9408 8776/* 9398 */ MCD::OPC_CheckPredicate, 26, 84, 38, 0, // Skip to: 19215 8777/* 9403 */ MCD::OPC_Decode, 156, 24, 235, 1, // Opcode: VRECPEfq 8778/* 9408 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9423 8779/* 9413 */ MCD::OPC_CheckPredicate, 26, 69, 38, 0, // Skip to: 19215 8780/* 9418 */ MCD::OPC_Decode, 141, 25, 234, 1, // Opcode: VRSQRTEfd 8781/* 9423 */ MCD::OPC_FilterValue, 3, 59, 38, 0, // Skip to: 19215 8782/* 9428 */ MCD::OPC_CheckPredicate, 26, 54, 38, 0, // Skip to: 19215 8783/* 9433 */ MCD::OPC_Decode, 142, 25, 235, 1, // Opcode: VRSQRTEfq 8784/* 9438 */ MCD::OPC_FilterValue, 6, 185, 1, 0, // Skip to: 9884 8785/* 9443 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8786/* 9446 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 9514 8787/* 9451 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8788/* 9454 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9469 8789/* 9459 */ MCD::OPC_CheckPredicate, 26, 23, 38, 0, // Skip to: 19215 8790/* 9464 */ MCD::OPC_Decode, 196, 22, 240, 1, // Opcode: VPADALsv8i8 8791/* 9469 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9484 8792/* 9474 */ MCD::OPC_CheckPredicate, 26, 8, 38, 0, // Skip to: 19215 8793/* 9479 */ MCD::OPC_Decode, 191, 22, 241, 1, // Opcode: VPADALsv16i8 8794/* 9484 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9499 8795/* 9489 */ MCD::OPC_CheckPredicate, 26, 249, 37, 0, // Skip to: 19215 8796/* 9494 */ MCD::OPC_Decode, 202, 22, 240, 1, // Opcode: VPADALuv8i8 8797/* 9499 */ MCD::OPC_FilterValue, 3, 239, 37, 0, // Skip to: 19215 8798/* 9504 */ MCD::OPC_CheckPredicate, 26, 234, 37, 0, // Skip to: 19215 8799/* 9509 */ MCD::OPC_Decode, 197, 22, 241, 1, // Opcode: VPADALuv16i8 8800/* 9514 */ MCD::OPC_FilterValue, 4, 63, 0, 0, // Skip to: 9582 8801/* 9519 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8802/* 9522 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9537 8803/* 9527 */ MCD::OPC_CheckPredicate, 26, 211, 37, 0, // Skip to: 19215 8804/* 9532 */ MCD::OPC_Decode, 193, 22, 240, 1, // Opcode: VPADALsv4i16 8805/* 9537 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9552 8806/* 9542 */ MCD::OPC_CheckPredicate, 26, 196, 37, 0, // Skip to: 19215 8807/* 9547 */ MCD::OPC_Decode, 195, 22, 241, 1, // Opcode: VPADALsv8i16 8808/* 9552 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9567 8809/* 9557 */ MCD::OPC_CheckPredicate, 26, 181, 37, 0, // Skip to: 19215 8810/* 9562 */ MCD::OPC_Decode, 199, 22, 240, 1, // Opcode: VPADALuv4i16 8811/* 9567 */ MCD::OPC_FilterValue, 3, 171, 37, 0, // Skip to: 19215 8812/* 9572 */ MCD::OPC_CheckPredicate, 26, 166, 37, 0, // Skip to: 19215 8813/* 9577 */ MCD::OPC_Decode, 201, 22, 241, 1, // Opcode: VPADALuv8i16 8814/* 9582 */ MCD::OPC_FilterValue, 5, 33, 0, 0, // Skip to: 9620 8815/* 9587 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8816/* 9590 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9605 8817/* 9595 */ MCD::OPC_CheckPredicate, 27, 143, 37, 0, // Skip to: 19215 8818/* 9600 */ MCD::OPC_Decode, 159, 16, 234, 1, // Opcode: VCLTzv4f16 8819/* 9605 */ MCD::OPC_FilterValue, 1, 133, 37, 0, // Skip to: 19215 8820/* 9610 */ MCD::OPC_CheckPredicate, 27, 128, 37, 0, // Skip to: 19215 8821/* 9615 */ MCD::OPC_Decode, 163, 16, 235, 1, // Opcode: VCLTzv8f16 8822/* 9620 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 9642 8823/* 9625 */ MCD::OPC_CheckPredicate, 30, 113, 37, 0, // Skip to: 19215 8824/* 9630 */ MCD::OPC_CheckField, 6, 2, 0, 106, 37, 0, // Skip to: 19215 8825/* 9637 */ MCD::OPC_Decode, 132, 17, 238, 1, // Opcode: VCVTf2h 8826/* 9642 */ MCD::OPC_FilterValue, 7, 63, 0, 0, // Skip to: 9710 8827/* 9647 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8828/* 9650 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9665 8829/* 9655 */ MCD::OPC_CheckPredicate, 27, 83, 37, 0, // Skip to: 19215 8830/* 9660 */ MCD::OPC_Decode, 152, 17, 234, 1, // Opcode: VCVTs2hd 8831/* 9665 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9680 8832/* 9670 */ MCD::OPC_CheckPredicate, 27, 68, 37, 0, // Skip to: 19215 8833/* 9675 */ MCD::OPC_Decode, 153, 17, 235, 1, // Opcode: VCVTs2hq 8834/* 9680 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9695 8835/* 9685 */ MCD::OPC_CheckPredicate, 27, 53, 37, 0, // Skip to: 19215 8836/* 9690 */ MCD::OPC_Decode, 156, 17, 234, 1, // Opcode: VCVTu2hd 8837/* 9695 */ MCD::OPC_FilterValue, 3, 43, 37, 0, // Skip to: 19215 8838/* 9700 */ MCD::OPC_CheckPredicate, 27, 38, 37, 0, // Skip to: 19215 8839/* 9705 */ MCD::OPC_Decode, 157, 17, 235, 1, // Opcode: VCVTu2hq 8840/* 9710 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 9778 8841/* 9715 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8842/* 9718 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9733 8843/* 9723 */ MCD::OPC_CheckPredicate, 26, 15, 37, 0, // Skip to: 19215 8844/* 9728 */ MCD::OPC_Decode, 192, 22, 240, 1, // Opcode: VPADALsv2i32 8845/* 9733 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9748 8846/* 9738 */ MCD::OPC_CheckPredicate, 26, 0, 37, 0, // Skip to: 19215 8847/* 9743 */ MCD::OPC_Decode, 194, 22, 241, 1, // Opcode: VPADALsv4i32 8848/* 9748 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9763 8849/* 9753 */ MCD::OPC_CheckPredicate, 26, 241, 36, 0, // Skip to: 19215 8850/* 9758 */ MCD::OPC_Decode, 198, 22, 240, 1, // Opcode: VPADALuv2i32 8851/* 9763 */ MCD::OPC_FilterValue, 3, 231, 36, 0, // Skip to: 19215 8852/* 9768 */ MCD::OPC_CheckPredicate, 26, 226, 36, 0, // Skip to: 19215 8853/* 9773 */ MCD::OPC_Decode, 200, 22, 241, 1, // Opcode: VPADALuv4i32 8854/* 9778 */ MCD::OPC_FilterValue, 9, 33, 0, 0, // Skip to: 9816 8855/* 9783 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8856/* 9786 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9801 8857/* 9791 */ MCD::OPC_CheckPredicate, 26, 203, 36, 0, // Skip to: 19215 8858/* 9796 */ MCD::OPC_Decode, 157, 16, 234, 1, // Opcode: VCLTzv2f32 8859/* 9801 */ MCD::OPC_FilterValue, 1, 193, 36, 0, // Skip to: 19215 8860/* 9806 */ MCD::OPC_CheckPredicate, 26, 188, 36, 0, // Skip to: 19215 8861/* 9811 */ MCD::OPC_Decode, 160, 16, 235, 1, // Opcode: VCLTzv4f32 8862/* 9816 */ MCD::OPC_FilterValue, 11, 178, 36, 0, // Skip to: 19215 8863/* 9821 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8864/* 9824 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9839 8865/* 9829 */ MCD::OPC_CheckPredicate, 26, 165, 36, 0, // Skip to: 19215 8866/* 9834 */ MCD::OPC_Decode, 150, 17, 234, 1, // Opcode: VCVTs2fd 8867/* 9839 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9854 8868/* 9844 */ MCD::OPC_CheckPredicate, 26, 150, 36, 0, // Skip to: 19215 8869/* 9849 */ MCD::OPC_Decode, 151, 17, 235, 1, // Opcode: VCVTs2fq 8870/* 9854 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9869 8871/* 9859 */ MCD::OPC_CheckPredicate, 26, 135, 36, 0, // Skip to: 19215 8872/* 9864 */ MCD::OPC_Decode, 154, 17, 234, 1, // Opcode: VCVTu2fd 8873/* 9869 */ MCD::OPC_FilterValue, 3, 125, 36, 0, // Skip to: 19215 8874/* 9874 */ MCD::OPC_CheckPredicate, 26, 120, 36, 0, // Skip to: 19215 8875/* 9879 */ MCD::OPC_Decode, 155, 17, 235, 1, // Opcode: VCVTu2fq 8876/* 9884 */ MCD::OPC_FilterValue, 7, 245, 1, 0, // Skip to: 10390 8877/* 9889 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 8878/* 9892 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 9960 8879/* 9897 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8880/* 9900 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9915 8881/* 9905 */ MCD::OPC_CheckPredicate, 26, 89, 36, 0, // Skip to: 19215 8882/* 9910 */ MCD::OPC_Decode, 241, 22, 234, 1, // Opcode: VQABSv8i8 8883/* 9915 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9930 8884/* 9920 */ MCD::OPC_CheckPredicate, 26, 74, 36, 0, // Skip to: 19215 8885/* 9925 */ MCD::OPC_Decode, 236, 22, 235, 1, // Opcode: VQABSv16i8 8886/* 9930 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 9945 8887/* 9935 */ MCD::OPC_CheckPredicate, 26, 59, 36, 0, // Skip to: 19215 8888/* 9940 */ MCD::OPC_Decode, 164, 23, 234, 1, // Opcode: VQNEGv8i8 8889/* 9945 */ MCD::OPC_FilterValue, 3, 49, 36, 0, // Skip to: 19215 8890/* 9950 */ MCD::OPC_CheckPredicate, 26, 44, 36, 0, // Skip to: 19215 8891/* 9955 */ MCD::OPC_Decode, 159, 23, 235, 1, // Opcode: VQNEGv16i8 8892/* 9960 */ MCD::OPC_FilterValue, 4, 63, 0, 0, // Skip to: 10028 8893/* 9965 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8894/* 9968 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 9983 8895/* 9973 */ MCD::OPC_CheckPredicate, 26, 21, 36, 0, // Skip to: 19215 8896/* 9978 */ MCD::OPC_Decode, 238, 22, 234, 1, // Opcode: VQABSv4i16 8897/* 9983 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 9998 8898/* 9988 */ MCD::OPC_CheckPredicate, 26, 6, 36, 0, // Skip to: 19215 8899/* 9993 */ MCD::OPC_Decode, 240, 22, 235, 1, // Opcode: VQABSv8i16 8900/* 9998 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10013 8901/* 10003 */ MCD::OPC_CheckPredicate, 26, 247, 35, 0, // Skip to: 19215 8902/* 10008 */ MCD::OPC_Decode, 161, 23, 234, 1, // Opcode: VQNEGv4i16 8903/* 10013 */ MCD::OPC_FilterValue, 3, 237, 35, 0, // Skip to: 19215 8904/* 10018 */ MCD::OPC_CheckPredicate, 26, 232, 35, 0, // Skip to: 19215 8905/* 10023 */ MCD::OPC_Decode, 163, 23, 235, 1, // Opcode: VQNEGv8i16 8906/* 10028 */ MCD::OPC_FilterValue, 5, 63, 0, 0, // Skip to: 10096 8907/* 10033 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8908/* 10036 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10051 8909/* 10041 */ MCD::OPC_CheckPredicate, 27, 209, 35, 0, // Skip to: 19215 8910/* 10046 */ MCD::OPC_Decode, 132, 15, 234, 1, // Opcode: VABShd 8911/* 10051 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10066 8912/* 10056 */ MCD::OPC_CheckPredicate, 27, 194, 35, 0, // Skip to: 19215 8913/* 10061 */ MCD::OPC_Decode, 133, 15, 235, 1, // Opcode: VABShq 8914/* 10066 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10081 8915/* 10071 */ MCD::OPC_CheckPredicate, 27, 179, 35, 0, // Skip to: 19215 8916/* 10076 */ MCD::OPC_Decode, 166, 22, 234, 1, // Opcode: VNEGhd 8917/* 10081 */ MCD::OPC_FilterValue, 3, 169, 35, 0, // Skip to: 19215 8918/* 10086 */ MCD::OPC_CheckPredicate, 27, 164, 35, 0, // Skip to: 19215 8919/* 10091 */ MCD::OPC_Decode, 167, 22, 235, 1, // Opcode: VNEGhq 8920/* 10096 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 10118 8921/* 10101 */ MCD::OPC_CheckPredicate, 30, 149, 35, 0, // Skip to: 19215 8922/* 10106 */ MCD::OPC_CheckField, 6, 2, 0, 142, 35, 0, // Skip to: 19215 8923/* 10113 */ MCD::OPC_Decode, 141, 17, 242, 1, // Opcode: VCVTh2f 8924/* 10118 */ MCD::OPC_FilterValue, 7, 63, 0, 0, // Skip to: 10186 8925/* 10123 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8926/* 10126 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10141 8927/* 10131 */ MCD::OPC_CheckPredicate, 27, 119, 35, 0, // Skip to: 19215 8928/* 10136 */ MCD::OPC_Decode, 142, 17, 234, 1, // Opcode: VCVTh2sd 8929/* 10141 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10156 8930/* 10146 */ MCD::OPC_CheckPredicate, 27, 104, 35, 0, // Skip to: 19215 8931/* 10151 */ MCD::OPC_Decode, 143, 17, 235, 1, // Opcode: VCVTh2sq 8932/* 10156 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10171 8933/* 10161 */ MCD::OPC_CheckPredicate, 27, 89, 35, 0, // Skip to: 19215 8934/* 10166 */ MCD::OPC_Decode, 144, 17, 234, 1, // Opcode: VCVTh2ud 8935/* 10171 */ MCD::OPC_FilterValue, 3, 79, 35, 0, // Skip to: 19215 8936/* 10176 */ MCD::OPC_CheckPredicate, 27, 74, 35, 0, // Skip to: 19215 8937/* 10181 */ MCD::OPC_Decode, 145, 17, 235, 1, // Opcode: VCVTh2uq 8938/* 10186 */ MCD::OPC_FilterValue, 8, 63, 0, 0, // Skip to: 10254 8939/* 10191 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8940/* 10194 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10209 8941/* 10199 */ MCD::OPC_CheckPredicate, 26, 51, 35, 0, // Skip to: 19215 8942/* 10204 */ MCD::OPC_Decode, 237, 22, 234, 1, // Opcode: VQABSv2i32 8943/* 10209 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10224 8944/* 10214 */ MCD::OPC_CheckPredicate, 26, 36, 35, 0, // Skip to: 19215 8945/* 10219 */ MCD::OPC_Decode, 239, 22, 235, 1, // Opcode: VQABSv4i32 8946/* 10224 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10239 8947/* 10229 */ MCD::OPC_CheckPredicate, 26, 21, 35, 0, // Skip to: 19215 8948/* 10234 */ MCD::OPC_Decode, 160, 23, 234, 1, // Opcode: VQNEGv2i32 8949/* 10239 */ MCD::OPC_FilterValue, 3, 11, 35, 0, // Skip to: 19215 8950/* 10244 */ MCD::OPC_CheckPredicate, 26, 6, 35, 0, // Skip to: 19215 8951/* 10249 */ MCD::OPC_Decode, 162, 23, 235, 1, // Opcode: VQNEGv4i32 8952/* 10254 */ MCD::OPC_FilterValue, 9, 63, 0, 0, // Skip to: 10322 8953/* 10259 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8954/* 10262 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10277 8955/* 10267 */ MCD::OPC_CheckPredicate, 26, 239, 34, 0, // Skip to: 19215 8956/* 10272 */ MCD::OPC_Decode, 130, 15, 234, 1, // Opcode: VABSfd 8957/* 10277 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10292 8958/* 10282 */ MCD::OPC_CheckPredicate, 26, 224, 34, 0, // Skip to: 19215 8959/* 10287 */ MCD::OPC_Decode, 131, 15, 235, 1, // Opcode: VABSfq 8960/* 10292 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10307 8961/* 10297 */ MCD::OPC_CheckPredicate, 26, 209, 34, 0, // Skip to: 19215 8962/* 10302 */ MCD::OPC_Decode, 165, 22, 234, 1, // Opcode: VNEGfd 8963/* 10307 */ MCD::OPC_FilterValue, 3, 199, 34, 0, // Skip to: 19215 8964/* 10312 */ MCD::OPC_CheckPredicate, 26, 194, 34, 0, // Skip to: 19215 8965/* 10317 */ MCD::OPC_Decode, 164, 22, 235, 1, // Opcode: VNEGf32q 8966/* 10322 */ MCD::OPC_FilterValue, 11, 184, 34, 0, // Skip to: 19215 8967/* 10327 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 8968/* 10330 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10345 8969/* 10335 */ MCD::OPC_CheckPredicate, 26, 171, 34, 0, // Skip to: 19215 8970/* 10340 */ MCD::OPC_Decode, 133, 17, 234, 1, // Opcode: VCVTf2sd 8971/* 10345 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 10360 8972/* 10350 */ MCD::OPC_CheckPredicate, 26, 156, 34, 0, // Skip to: 19215 8973/* 10355 */ MCD::OPC_Decode, 134, 17, 235, 1, // Opcode: VCVTf2sq 8974/* 10360 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 10375 8975/* 10365 */ MCD::OPC_CheckPredicate, 26, 141, 34, 0, // Skip to: 19215 8976/* 10370 */ MCD::OPC_Decode, 135, 17, 234, 1, // Opcode: VCVTf2ud 8977/* 10375 */ MCD::OPC_FilterValue, 3, 131, 34, 0, // Skip to: 19215 8978/* 10380 */ MCD::OPC_CheckPredicate, 26, 126, 34, 0, // Skip to: 19215 8979/* 10385 */ MCD::OPC_Decode, 136, 17, 235, 1, // Opcode: VCVTf2uq 8980/* 10390 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 10428 8981/* 10395 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8982/* 10398 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10413 8983/* 10403 */ MCD::OPC_CheckPredicate, 26, 103, 34, 0, // Skip to: 19215 8984/* 10408 */ MCD::OPC_Decode, 200, 28, 243, 1, // Opcode: VTBL1 8985/* 10413 */ MCD::OPC_FilterValue, 1, 93, 34, 0, // Skip to: 19215 8986/* 10418 */ MCD::OPC_CheckPredicate, 26, 88, 34, 0, // Skip to: 19215 8987/* 10423 */ MCD::OPC_Decode, 206, 28, 243, 1, // Opcode: VTBX1 8988/* 10428 */ MCD::OPC_FilterValue, 9, 33, 0, 0, // Skip to: 10466 8989/* 10433 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8990/* 10436 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10451 8991/* 10441 */ MCD::OPC_CheckPredicate, 26, 65, 34, 0, // Skip to: 19215 8992/* 10446 */ MCD::OPC_Decode, 201, 28, 243, 1, // Opcode: VTBL2 8993/* 10451 */ MCD::OPC_FilterValue, 1, 55, 34, 0, // Skip to: 19215 8994/* 10456 */ MCD::OPC_CheckPredicate, 26, 50, 34, 0, // Skip to: 19215 8995/* 10461 */ MCD::OPC_Decode, 207, 28, 243, 1, // Opcode: VTBX2 8996/* 10466 */ MCD::OPC_FilterValue, 10, 33, 0, 0, // Skip to: 10504 8997/* 10471 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 8998/* 10474 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10489 8999/* 10479 */ MCD::OPC_CheckPredicate, 26, 27, 34, 0, // Skip to: 19215 9000/* 10484 */ MCD::OPC_Decode, 202, 28, 243, 1, // Opcode: VTBL3 9001/* 10489 */ MCD::OPC_FilterValue, 1, 17, 34, 0, // Skip to: 19215 9002/* 10494 */ MCD::OPC_CheckPredicate, 26, 12, 34, 0, // Skip to: 19215 9003/* 10499 */ MCD::OPC_Decode, 208, 28, 243, 1, // Opcode: VTBX3 9004/* 10504 */ MCD::OPC_FilterValue, 11, 33, 0, 0, // Skip to: 10542 9005/* 10509 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 9006/* 10512 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 10527 9007/* 10517 */ MCD::OPC_CheckPredicate, 26, 245, 33, 0, // Skip to: 19215 9008/* 10522 */ MCD::OPC_Decode, 204, 28, 243, 1, // Opcode: VTBL4 9009/* 10527 */ MCD::OPC_FilterValue, 1, 235, 33, 0, // Skip to: 19215 9010/* 10532 */ MCD::OPC_CheckPredicate, 26, 230, 33, 0, // Skip to: 19215 9011/* 10537 */ MCD::OPC_Decode, 210, 28, 243, 1, // Opcode: VTBX4 9012/* 10542 */ MCD::OPC_FilterValue, 12, 220, 33, 0, // Skip to: 19215 9013/* 10547 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 9014/* 10550 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 10618 9015/* 10555 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 9016/* 10558 */ MCD::OPC_FilterValue, 0, 40, 0, 0, // Skip to: 10603 9017/* 10563 */ MCD::OPC_ExtractField, 17, 1, // Inst{17} ... 9018/* 10566 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 10588 9019/* 10571 */ MCD::OPC_CheckPredicate, 26, 191, 33, 0, // Skip to: 19215 9020/* 10576 */ MCD::OPC_CheckField, 18, 1, 1, 184, 33, 0, // Skip to: 19215 9021/* 10583 */ MCD::OPC_Decode, 177, 17, 244, 1, // Opcode: VDUPLN32d 9022/* 10588 */ MCD::OPC_FilterValue, 1, 174, 33, 0, // Skip to: 19215 9023/* 10593 */ MCD::OPC_CheckPredicate, 26, 169, 33, 0, // Skip to: 19215 9024/* 10598 */ MCD::OPC_Decode, 175, 17, 245, 1, // Opcode: VDUPLN16d 9025/* 10603 */ MCD::OPC_FilterValue, 1, 159, 33, 0, // Skip to: 19215 9026/* 10608 */ MCD::OPC_CheckPredicate, 26, 154, 33, 0, // Skip to: 19215 9027/* 10613 */ MCD::OPC_Decode, 179, 17, 246, 1, // Opcode: VDUPLN8d 9028/* 10618 */ MCD::OPC_FilterValue, 1, 144, 33, 0, // Skip to: 19215 9029/* 10623 */ MCD::OPC_ExtractField, 16, 1, // Inst{16} ... 9030/* 10626 */ MCD::OPC_FilterValue, 0, 40, 0, 0, // Skip to: 10671 9031/* 10631 */ MCD::OPC_ExtractField, 17, 1, // Inst{17} ... 9032/* 10634 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 10656 9033/* 10639 */ MCD::OPC_CheckPredicate, 26, 123, 33, 0, // Skip to: 19215 9034/* 10644 */ MCD::OPC_CheckField, 18, 1, 1, 116, 33, 0, // Skip to: 19215 9035/* 10651 */ MCD::OPC_Decode, 178, 17, 247, 1, // Opcode: VDUPLN32q 9036/* 10656 */ MCD::OPC_FilterValue, 1, 106, 33, 0, // Skip to: 19215 9037/* 10661 */ MCD::OPC_CheckPredicate, 26, 101, 33, 0, // Skip to: 19215 9038/* 10666 */ MCD::OPC_Decode, 176, 17, 248, 1, // Opcode: VDUPLN16q 9039/* 10671 */ MCD::OPC_FilterValue, 1, 91, 33, 0, // Skip to: 19215 9040/* 10676 */ MCD::OPC_CheckPredicate, 26, 86, 33, 0, // Skip to: 19215 9041/* 10681 */ MCD::OPC_Decode, 180, 17, 249, 1, // Opcode: VDUPLN8q 9042/* 10686 */ MCD::OPC_FilterValue, 1, 76, 33, 0, // Skip to: 19215 9043/* 10691 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 9044/* 10694 */ MCD::OPC_FilterValue, 0, 120, 17, 0, // Skip to: 15171 9045/* 10699 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 9046/* 10702 */ MCD::OPC_FilterValue, 0, 108, 8, 0, // Skip to: 12863 9047/* 10707 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 9048/* 10710 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 10878 9049/* 10715 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9050/* 10718 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 10758 9051/* 10723 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9052/* 10726 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10742 9053/* 10732 */ MCD::OPC_CheckPredicate, 26, 30, 33, 0, // Skip to: 19215 9054/* 10737 */ MCD::OPC_Decode, 249, 22, 205, 1, // Opcode: VQADDsv8i8 9055/* 10742 */ MCD::OPC_FilterValue, 243, 1, 19, 33, 0, // Skip to: 19215 9056/* 10748 */ MCD::OPC_CheckPredicate, 26, 14, 33, 0, // Skip to: 19215 9057/* 10753 */ MCD::OPC_Decode, 129, 23, 205, 1, // Opcode: VQADDuv8i8 9058/* 10758 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 10798 9059/* 10763 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9060/* 10766 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10782 9061/* 10772 */ MCD::OPC_CheckPredicate, 26, 246, 32, 0, // Skip to: 19215 9062/* 10777 */ MCD::OPC_Decode, 246, 22, 205, 1, // Opcode: VQADDsv4i16 9063/* 10782 */ MCD::OPC_FilterValue, 243, 1, 235, 32, 0, // Skip to: 19215 9064/* 10788 */ MCD::OPC_CheckPredicate, 26, 230, 32, 0, // Skip to: 19215 9065/* 10793 */ MCD::OPC_Decode, 254, 22, 205, 1, // Opcode: VQADDuv4i16 9066/* 10798 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 10838 9067/* 10803 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9068/* 10806 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10822 9069/* 10812 */ MCD::OPC_CheckPredicate, 26, 206, 32, 0, // Skip to: 19215 9070/* 10817 */ MCD::OPC_Decode, 244, 22, 205, 1, // Opcode: VQADDsv2i32 9071/* 10822 */ MCD::OPC_FilterValue, 243, 1, 195, 32, 0, // Skip to: 19215 9072/* 10828 */ MCD::OPC_CheckPredicate, 26, 190, 32, 0, // Skip to: 19215 9073/* 10833 */ MCD::OPC_Decode, 252, 22, 205, 1, // Opcode: VQADDuv2i32 9074/* 10838 */ MCD::OPC_FilterValue, 3, 180, 32, 0, // Skip to: 19215 9075/* 10843 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9076/* 10846 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10862 9077/* 10852 */ MCD::OPC_CheckPredicate, 26, 166, 32, 0, // Skip to: 19215 9078/* 10857 */ MCD::OPC_Decode, 243, 22, 205, 1, // Opcode: VQADDsv1i64 9079/* 10862 */ MCD::OPC_FilterValue, 243, 1, 155, 32, 0, // Skip to: 19215 9080/* 10868 */ MCD::OPC_CheckPredicate, 26, 150, 32, 0, // Skip to: 19215 9081/* 10873 */ MCD::OPC_Decode, 251, 22, 205, 1, // Opcode: VQADDuv1i64 9082/* 10878 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 11046 9083/* 10883 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9084/* 10886 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 10926 9085/* 10891 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9086/* 10894 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10910 9087/* 10900 */ MCD::OPC_CheckPredicate, 26, 118, 32, 0, // Skip to: 19215 9088/* 10905 */ MCD::OPC_Decode, 178, 15, 205, 1, // Opcode: VANDd 9089/* 10910 */ MCD::OPC_FilterValue, 243, 1, 107, 32, 0, // Skip to: 19215 9090/* 10916 */ MCD::OPC_CheckPredicate, 26, 102, 32, 0, // Skip to: 19215 9091/* 10921 */ MCD::OPC_Decode, 181, 17, 205, 1, // Opcode: VEORd 9092/* 10926 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 10966 9093/* 10931 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9094/* 10934 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10950 9095/* 10940 */ MCD::OPC_CheckPredicate, 26, 78, 32, 0, // Skip to: 19215 9096/* 10945 */ MCD::OPC_Decode, 180, 15, 205, 1, // Opcode: VBICd 9097/* 10950 */ MCD::OPC_FilterValue, 243, 1, 67, 32, 0, // Skip to: 19215 9098/* 10956 */ MCD::OPC_CheckPredicate, 26, 62, 32, 0, // Skip to: 19215 9099/* 10961 */ MCD::OPC_Decode, 190, 15, 213, 1, // Opcode: VBSLd 9100/* 10966 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 11006 9101/* 10971 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9102/* 10974 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 10990 9103/* 10980 */ MCD::OPC_CheckPredicate, 26, 38, 32, 0, // Skip to: 19215 9104/* 10985 */ MCD::OPC_Decode, 185, 22, 205, 1, // Opcode: VORRd 9105/* 10990 */ MCD::OPC_FilterValue, 243, 1, 27, 32, 0, // Skip to: 19215 9106/* 10996 */ MCD::OPC_CheckPredicate, 26, 22, 32, 0, // Skip to: 19215 9107/* 11001 */ MCD::OPC_Decode, 188, 15, 213, 1, // Opcode: VBITd 9108/* 11006 */ MCD::OPC_FilterValue, 3, 12, 32, 0, // Skip to: 19215 9109/* 11011 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9110/* 11014 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11030 9111/* 11020 */ MCD::OPC_CheckPredicate, 26, 254, 31, 0, // Skip to: 19215 9112/* 11025 */ MCD::OPC_Decode, 183, 22, 205, 1, // Opcode: VORNd 9113/* 11030 */ MCD::OPC_FilterValue, 243, 1, 243, 31, 0, // Skip to: 19215 9114/* 11036 */ MCD::OPC_CheckPredicate, 26, 238, 31, 0, // Skip to: 19215 9115/* 11041 */ MCD::OPC_Decode, 186, 15, 213, 1, // Opcode: VBIFd 9116/* 11046 */ MCD::OPC_FilterValue, 2, 163, 0, 0, // Skip to: 11214 9117/* 11051 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9118/* 11054 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11094 9119/* 11059 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9120/* 11062 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11078 9121/* 11068 */ MCD::OPC_CheckPredicate, 26, 206, 31, 0, // Skip to: 19215 9122/* 11073 */ MCD::OPC_Decode, 142, 24, 205, 1, // Opcode: VQSUBsv8i8 9123/* 11078 */ MCD::OPC_FilterValue, 243, 1, 195, 31, 0, // Skip to: 19215 9124/* 11084 */ MCD::OPC_CheckPredicate, 26, 190, 31, 0, // Skip to: 19215 9125/* 11089 */ MCD::OPC_Decode, 150, 24, 205, 1, // Opcode: VQSUBuv8i8 9126/* 11094 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11134 9127/* 11099 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9128/* 11102 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11118 9129/* 11108 */ MCD::OPC_CheckPredicate, 26, 166, 31, 0, // Skip to: 19215 9130/* 11113 */ MCD::OPC_Decode, 139, 24, 205, 1, // Opcode: VQSUBsv4i16 9131/* 11118 */ MCD::OPC_FilterValue, 243, 1, 155, 31, 0, // Skip to: 19215 9132/* 11124 */ MCD::OPC_CheckPredicate, 26, 150, 31, 0, // Skip to: 19215 9133/* 11129 */ MCD::OPC_Decode, 147, 24, 205, 1, // Opcode: VQSUBuv4i16 9134/* 11134 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 11174 9135/* 11139 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9136/* 11142 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11158 9137/* 11148 */ MCD::OPC_CheckPredicate, 26, 126, 31, 0, // Skip to: 19215 9138/* 11153 */ MCD::OPC_Decode, 137, 24, 205, 1, // Opcode: VQSUBsv2i32 9139/* 11158 */ MCD::OPC_FilterValue, 243, 1, 115, 31, 0, // Skip to: 19215 9140/* 11164 */ MCD::OPC_CheckPredicate, 26, 110, 31, 0, // Skip to: 19215 9141/* 11169 */ MCD::OPC_Decode, 145, 24, 205, 1, // Opcode: VQSUBuv2i32 9142/* 11174 */ MCD::OPC_FilterValue, 3, 100, 31, 0, // Skip to: 19215 9143/* 11179 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9144/* 11182 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11198 9145/* 11188 */ MCD::OPC_CheckPredicate, 26, 86, 31, 0, // Skip to: 19215 9146/* 11193 */ MCD::OPC_Decode, 136, 24, 205, 1, // Opcode: VQSUBsv1i64 9147/* 11198 */ MCD::OPC_FilterValue, 243, 1, 75, 31, 0, // Skip to: 19215 9148/* 11204 */ MCD::OPC_CheckPredicate, 26, 70, 31, 0, // Skip to: 19215 9149/* 11209 */ MCD::OPC_Decode, 144, 24, 205, 1, // Opcode: VQSUBuv1i64 9150/* 11214 */ MCD::OPC_FilterValue, 3, 123, 0, 0, // Skip to: 11342 9151/* 11219 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9152/* 11222 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11262 9153/* 11227 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9154/* 11230 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11246 9155/* 11236 */ MCD::OPC_CheckPredicate, 26, 38, 31, 0, // Skip to: 19215 9156/* 11241 */ MCD::OPC_Decode, 225, 15, 205, 1, // Opcode: VCGEsv8i8 9157/* 11246 */ MCD::OPC_FilterValue, 243, 1, 27, 31, 0, // Skip to: 19215 9158/* 11252 */ MCD::OPC_CheckPredicate, 26, 22, 31, 0, // Skip to: 19215 9159/* 11257 */ MCD::OPC_Decode, 231, 15, 205, 1, // Opcode: VCGEuv8i8 9160/* 11262 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11302 9161/* 11267 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9162/* 11270 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11286 9163/* 11276 */ MCD::OPC_CheckPredicate, 26, 254, 30, 0, // Skip to: 19215 9164/* 11281 */ MCD::OPC_Decode, 222, 15, 205, 1, // Opcode: VCGEsv4i16 9165/* 11286 */ MCD::OPC_FilterValue, 243, 1, 243, 30, 0, // Skip to: 19215 9166/* 11292 */ MCD::OPC_CheckPredicate, 26, 238, 30, 0, // Skip to: 19215 9167/* 11297 */ MCD::OPC_Decode, 228, 15, 205, 1, // Opcode: VCGEuv4i16 9168/* 11302 */ MCD::OPC_FilterValue, 2, 228, 30, 0, // Skip to: 19215 9169/* 11307 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9170/* 11310 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11326 9171/* 11316 */ MCD::OPC_CheckPredicate, 26, 214, 30, 0, // Skip to: 19215 9172/* 11321 */ MCD::OPC_Decode, 221, 15, 205, 1, // Opcode: VCGEsv2i32 9173/* 11326 */ MCD::OPC_FilterValue, 243, 1, 203, 30, 0, // Skip to: 19215 9174/* 11332 */ MCD::OPC_CheckPredicate, 26, 198, 30, 0, // Skip to: 19215 9175/* 11337 */ MCD::OPC_Decode, 227, 15, 205, 1, // Opcode: VCGEuv2i32 9176/* 11342 */ MCD::OPC_FilterValue, 4, 163, 0, 0, // Skip to: 11510 9177/* 11347 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9178/* 11350 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11390 9179/* 11355 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9180/* 11358 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11374 9181/* 11364 */ MCD::OPC_CheckPredicate, 26, 166, 30, 0, // Skip to: 19215 9182/* 11369 */ MCD::OPC_Decode, 237, 23, 209, 1, // Opcode: VQSHLsv8i8 9183/* 11374 */ MCD::OPC_FilterValue, 243, 1, 155, 30, 0, // Skip to: 19215 9184/* 11380 */ MCD::OPC_CheckPredicate, 26, 150, 30, 0, // Skip to: 19215 9185/* 11385 */ MCD::OPC_Decode, 253, 23, 209, 1, // Opcode: VQSHLuv8i8 9186/* 11390 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11430 9187/* 11395 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9188/* 11398 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11414 9189/* 11404 */ MCD::OPC_CheckPredicate, 26, 126, 30, 0, // Skip to: 19215 9190/* 11409 */ MCD::OPC_Decode, 234, 23, 209, 1, // Opcode: VQSHLsv4i16 9191/* 11414 */ MCD::OPC_FilterValue, 243, 1, 115, 30, 0, // Skip to: 19215 9192/* 11420 */ MCD::OPC_CheckPredicate, 26, 110, 30, 0, // Skip to: 19215 9193/* 11425 */ MCD::OPC_Decode, 250, 23, 209, 1, // Opcode: VQSHLuv4i16 9194/* 11430 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 11470 9195/* 11435 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9196/* 11438 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11454 9197/* 11444 */ MCD::OPC_CheckPredicate, 26, 86, 30, 0, // Skip to: 19215 9198/* 11449 */ MCD::OPC_Decode, 232, 23, 209, 1, // Opcode: VQSHLsv2i32 9199/* 11454 */ MCD::OPC_FilterValue, 243, 1, 75, 30, 0, // Skip to: 19215 9200/* 11460 */ MCD::OPC_CheckPredicate, 26, 70, 30, 0, // Skip to: 19215 9201/* 11465 */ MCD::OPC_Decode, 248, 23, 209, 1, // Opcode: VQSHLuv2i32 9202/* 11470 */ MCD::OPC_FilterValue, 3, 60, 30, 0, // Skip to: 19215 9203/* 11475 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9204/* 11478 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11494 9205/* 11484 */ MCD::OPC_CheckPredicate, 26, 46, 30, 0, // Skip to: 19215 9206/* 11489 */ MCD::OPC_Decode, 231, 23, 209, 1, // Opcode: VQSHLsv1i64 9207/* 11494 */ MCD::OPC_FilterValue, 243, 1, 35, 30, 0, // Skip to: 19215 9208/* 11500 */ MCD::OPC_CheckPredicate, 26, 30, 30, 0, // Skip to: 19215 9209/* 11505 */ MCD::OPC_Decode, 247, 23, 209, 1, // Opcode: VQSHLuv1i64 9210/* 11510 */ MCD::OPC_FilterValue, 5, 163, 0, 0, // Skip to: 11678 9211/* 11515 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9212/* 11518 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11558 9213/* 11523 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9214/* 11526 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11542 9215/* 11532 */ MCD::OPC_CheckPredicate, 26, 254, 29, 0, // Skip to: 19215 9216/* 11537 */ MCD::OPC_Decode, 196, 23, 209, 1, // Opcode: VQRSHLsv8i8 9217/* 11542 */ MCD::OPC_FilterValue, 243, 1, 243, 29, 0, // Skip to: 19215 9218/* 11548 */ MCD::OPC_CheckPredicate, 26, 238, 29, 0, // Skip to: 19215 9219/* 11553 */ MCD::OPC_Decode, 204, 23, 209, 1, // Opcode: VQRSHLuv8i8 9220/* 11558 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11598 9221/* 11563 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9222/* 11566 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11582 9223/* 11572 */ MCD::OPC_CheckPredicate, 26, 214, 29, 0, // Skip to: 19215 9224/* 11577 */ MCD::OPC_Decode, 193, 23, 209, 1, // Opcode: VQRSHLsv4i16 9225/* 11582 */ MCD::OPC_FilterValue, 243, 1, 203, 29, 0, // Skip to: 19215 9226/* 11588 */ MCD::OPC_CheckPredicate, 26, 198, 29, 0, // Skip to: 19215 9227/* 11593 */ MCD::OPC_Decode, 201, 23, 209, 1, // Opcode: VQRSHLuv4i16 9228/* 11598 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 11638 9229/* 11603 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9230/* 11606 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11622 9231/* 11612 */ MCD::OPC_CheckPredicate, 26, 174, 29, 0, // Skip to: 19215 9232/* 11617 */ MCD::OPC_Decode, 191, 23, 209, 1, // Opcode: VQRSHLsv2i32 9233/* 11622 */ MCD::OPC_FilterValue, 243, 1, 163, 29, 0, // Skip to: 19215 9234/* 11628 */ MCD::OPC_CheckPredicate, 26, 158, 29, 0, // Skip to: 19215 9235/* 11633 */ MCD::OPC_Decode, 199, 23, 209, 1, // Opcode: VQRSHLuv2i32 9236/* 11638 */ MCD::OPC_FilterValue, 3, 148, 29, 0, // Skip to: 19215 9237/* 11643 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9238/* 11646 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11662 9239/* 11652 */ MCD::OPC_CheckPredicate, 26, 134, 29, 0, // Skip to: 19215 9240/* 11657 */ MCD::OPC_Decode, 190, 23, 209, 1, // Opcode: VQRSHLsv1i64 9241/* 11662 */ MCD::OPC_FilterValue, 243, 1, 123, 29, 0, // Skip to: 19215 9242/* 11668 */ MCD::OPC_CheckPredicate, 26, 118, 29, 0, // Skip to: 19215 9243/* 11673 */ MCD::OPC_Decode, 198, 23, 209, 1, // Opcode: VQRSHLuv1i64 9244/* 11678 */ MCD::OPC_FilterValue, 6, 123, 0, 0, // Skip to: 11806 9245/* 11683 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9246/* 11686 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11726 9247/* 11691 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9248/* 11694 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11710 9249/* 11700 */ MCD::OPC_CheckPredicate, 26, 86, 29, 0, // Skip to: 19215 9250/* 11705 */ MCD::OPC_Decode, 254, 20, 205, 1, // Opcode: VMINsv8i8 9251/* 11710 */ MCD::OPC_FilterValue, 243, 1, 75, 29, 0, // Skip to: 19215 9252/* 11716 */ MCD::OPC_CheckPredicate, 26, 70, 29, 0, // Skip to: 19215 9253/* 11721 */ MCD::OPC_Decode, 132, 21, 205, 1, // Opcode: VMINuv8i8 9254/* 11726 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11766 9255/* 11731 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9256/* 11734 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11750 9257/* 11740 */ MCD::OPC_CheckPredicate, 26, 46, 29, 0, // Skip to: 19215 9258/* 11745 */ MCD::OPC_Decode, 251, 20, 205, 1, // Opcode: VMINsv4i16 9259/* 11750 */ MCD::OPC_FilterValue, 243, 1, 35, 29, 0, // Skip to: 19215 9260/* 11756 */ MCD::OPC_CheckPredicate, 26, 30, 29, 0, // Skip to: 19215 9261/* 11761 */ MCD::OPC_Decode, 129, 21, 205, 1, // Opcode: VMINuv4i16 9262/* 11766 */ MCD::OPC_FilterValue, 2, 20, 29, 0, // Skip to: 19215 9263/* 11771 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9264/* 11774 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11790 9265/* 11780 */ MCD::OPC_CheckPredicate, 26, 6, 29, 0, // Skip to: 19215 9266/* 11785 */ MCD::OPC_Decode, 250, 20, 205, 1, // Opcode: VMINsv2i32 9267/* 11790 */ MCD::OPC_FilterValue, 243, 1, 251, 28, 0, // Skip to: 19215 9268/* 11796 */ MCD::OPC_CheckPredicate, 26, 246, 28, 0, // Skip to: 19215 9269/* 11801 */ MCD::OPC_Decode, 128, 21, 205, 1, // Opcode: VMINuv2i32 9270/* 11806 */ MCD::OPC_FilterValue, 7, 123, 0, 0, // Skip to: 11934 9271/* 11811 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9272/* 11814 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11854 9273/* 11819 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9274/* 11822 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11838 9275/* 11828 */ MCD::OPC_CheckPredicate, 26, 214, 28, 0, // Skip to: 19215 9276/* 11833 */ MCD::OPC_Decode, 226, 14, 213, 1, // Opcode: VABAsv8i8 9277/* 11838 */ MCD::OPC_FilterValue, 243, 1, 203, 28, 0, // Skip to: 19215 9278/* 11844 */ MCD::OPC_CheckPredicate, 26, 198, 28, 0, // Skip to: 19215 9279/* 11849 */ MCD::OPC_Decode, 232, 14, 213, 1, // Opcode: VABAuv8i8 9280/* 11854 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 11894 9281/* 11859 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9282/* 11862 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11878 9283/* 11868 */ MCD::OPC_CheckPredicate, 26, 174, 28, 0, // Skip to: 19215 9284/* 11873 */ MCD::OPC_Decode, 223, 14, 213, 1, // Opcode: VABAsv4i16 9285/* 11878 */ MCD::OPC_FilterValue, 243, 1, 163, 28, 0, // Skip to: 19215 9286/* 11884 */ MCD::OPC_CheckPredicate, 26, 158, 28, 0, // Skip to: 19215 9287/* 11889 */ MCD::OPC_Decode, 229, 14, 213, 1, // Opcode: VABAuv4i16 9288/* 11894 */ MCD::OPC_FilterValue, 2, 148, 28, 0, // Skip to: 19215 9289/* 11899 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9290/* 11902 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11918 9291/* 11908 */ MCD::OPC_CheckPredicate, 26, 134, 28, 0, // Skip to: 19215 9292/* 11913 */ MCD::OPC_Decode, 222, 14, 213, 1, // Opcode: VABAsv2i32 9293/* 11918 */ MCD::OPC_FilterValue, 243, 1, 123, 28, 0, // Skip to: 19215 9294/* 11924 */ MCD::OPC_CheckPredicate, 26, 118, 28, 0, // Skip to: 19215 9295/* 11929 */ MCD::OPC_Decode, 228, 14, 213, 1, // Opcode: VABAuv2i32 9296/* 11934 */ MCD::OPC_FilterValue, 8, 123, 0, 0, // Skip to: 12062 9297/* 11939 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9298/* 11942 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 11982 9299/* 11947 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9300/* 11950 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 11966 9301/* 11956 */ MCD::OPC_CheckPredicate, 26, 86, 28, 0, // Skip to: 19215 9302/* 11961 */ MCD::OPC_Decode, 247, 28, 205, 1, // Opcode: VTSTv8i8 9303/* 11966 */ MCD::OPC_FilterValue, 243, 1, 75, 28, 0, // Skip to: 19215 9304/* 11972 */ MCD::OPC_CheckPredicate, 26, 70, 28, 0, // Skip to: 19215 9305/* 11977 */ MCD::OPC_Decode, 205, 15, 205, 1, // Opcode: VCEQv8i8 9306/* 11982 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 12022 9307/* 11987 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9308/* 11990 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12006 9309/* 11996 */ MCD::OPC_CheckPredicate, 26, 46, 28, 0, // Skip to: 19215 9310/* 12001 */ MCD::OPC_Decode, 244, 28, 205, 1, // Opcode: VTSTv4i16 9311/* 12006 */ MCD::OPC_FilterValue, 243, 1, 35, 28, 0, // Skip to: 19215 9312/* 12012 */ MCD::OPC_CheckPredicate, 26, 30, 28, 0, // Skip to: 19215 9313/* 12017 */ MCD::OPC_Decode, 202, 15, 205, 1, // Opcode: VCEQv4i16 9314/* 12022 */ MCD::OPC_FilterValue, 2, 20, 28, 0, // Skip to: 19215 9315/* 12027 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9316/* 12030 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12046 9317/* 12036 */ MCD::OPC_CheckPredicate, 26, 6, 28, 0, // Skip to: 19215 9318/* 12041 */ MCD::OPC_Decode, 243, 28, 205, 1, // Opcode: VTSTv2i32 9319/* 12046 */ MCD::OPC_FilterValue, 243, 1, 251, 27, 0, // Skip to: 19215 9320/* 12052 */ MCD::OPC_CheckPredicate, 26, 246, 27, 0, // Skip to: 19215 9321/* 12057 */ MCD::OPC_Decode, 201, 15, 205, 1, // Opcode: VCEQv2i32 9322/* 12062 */ MCD::OPC_FilterValue, 9, 89, 0, 0, // Skip to: 12156 9323/* 12067 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9324/* 12070 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 12110 9325/* 12075 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9326/* 12078 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12094 9327/* 12084 */ MCD::OPC_CheckPredicate, 26, 214, 27, 0, // Skip to: 19215 9328/* 12089 */ MCD::OPC_Decode, 154, 22, 205, 1, // Opcode: VMULv8i8 9329/* 12094 */ MCD::OPC_FilterValue, 243, 1, 203, 27, 0, // Skip to: 19215 9330/* 12100 */ MCD::OPC_CheckPredicate, 26, 198, 27, 0, // Skip to: 19215 9331/* 12105 */ MCD::OPC_Decode, 139, 22, 205, 1, // Opcode: VMULpd 9332/* 12110 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 12133 9333/* 12115 */ MCD::OPC_CheckPredicate, 26, 183, 27, 0, // Skip to: 19215 9334/* 12120 */ MCD::OPC_CheckField, 24, 8, 242, 1, 175, 27, 0, // Skip to: 19215 9335/* 12128 */ MCD::OPC_Decode, 151, 22, 205, 1, // Opcode: VMULv4i16 9336/* 12133 */ MCD::OPC_FilterValue, 2, 165, 27, 0, // Skip to: 19215 9337/* 12138 */ MCD::OPC_CheckPredicate, 26, 160, 27, 0, // Skip to: 19215 9338/* 12143 */ MCD::OPC_CheckField, 24, 8, 242, 1, 152, 27, 0, // Skip to: 19215 9339/* 12151 */ MCD::OPC_Decode, 150, 22, 205, 1, // Opcode: VMULv2i32 9340/* 12156 */ MCD::OPC_FilterValue, 10, 123, 0, 0, // Skip to: 12284 9341/* 12161 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9342/* 12164 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 12204 9343/* 12169 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9344/* 12172 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12188 9345/* 12178 */ MCD::OPC_CheckPredicate, 26, 120, 27, 0, // Skip to: 19215 9346/* 12183 */ MCD::OPC_Decode, 232, 22, 205, 1, // Opcode: VPMINs8 9347/* 12188 */ MCD::OPC_FilterValue, 243, 1, 109, 27, 0, // Skip to: 19215 9348/* 12194 */ MCD::OPC_CheckPredicate, 26, 104, 27, 0, // Skip to: 19215 9349/* 12199 */ MCD::OPC_Decode, 235, 22, 205, 1, // Opcode: VPMINu8 9350/* 12204 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 12244 9351/* 12209 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9352/* 12212 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12228 9353/* 12218 */ MCD::OPC_CheckPredicate, 26, 80, 27, 0, // Skip to: 19215 9354/* 12223 */ MCD::OPC_Decode, 230, 22, 205, 1, // Opcode: VPMINs16 9355/* 12228 */ MCD::OPC_FilterValue, 243, 1, 69, 27, 0, // Skip to: 19215 9356/* 12234 */ MCD::OPC_CheckPredicate, 26, 64, 27, 0, // Skip to: 19215 9357/* 12239 */ MCD::OPC_Decode, 233, 22, 205, 1, // Opcode: VPMINu16 9358/* 12244 */ MCD::OPC_FilterValue, 2, 54, 27, 0, // Skip to: 19215 9359/* 12249 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9360/* 12252 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12268 9361/* 12258 */ MCD::OPC_CheckPredicate, 26, 40, 27, 0, // Skip to: 19215 9362/* 12263 */ MCD::OPC_Decode, 231, 22, 205, 1, // Opcode: VPMINs32 9363/* 12268 */ MCD::OPC_FilterValue, 243, 1, 29, 27, 0, // Skip to: 19215 9364/* 12274 */ MCD::OPC_CheckPredicate, 26, 24, 27, 0, // Skip to: 19215 9365/* 12279 */ MCD::OPC_Decode, 234, 22, 205, 1, // Opcode: VPMINu32 9366/* 12284 */ MCD::OPC_FilterValue, 11, 106, 0, 0, // Skip to: 12395 9367/* 12289 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9368/* 12292 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 12315 9369/* 12297 */ MCD::OPC_CheckPredicate, 26, 1, 27, 0, // Skip to: 19215 9370/* 12302 */ MCD::OPC_CheckField, 24, 8, 242, 1, 249, 26, 0, // Skip to: 19215 9371/* 12310 */ MCD::OPC_Decode, 219, 22, 205, 1, // Opcode: VPADDi8 9372/* 12315 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 12355 9373/* 12320 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9374/* 12323 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12339 9375/* 12329 */ MCD::OPC_CheckPredicate, 26, 225, 26, 0, // Skip to: 19215 9376/* 12334 */ MCD::OPC_Decode, 217, 22, 205, 1, // Opcode: VPADDi16 9377/* 12339 */ MCD::OPC_FilterValue, 243, 1, 214, 26, 0, // Skip to: 19215 9378/* 12345 */ MCD::OPC_CheckPredicate, 28, 209, 26, 0, // Skip to: 19215 9379/* 12350 */ MCD::OPC_Decode, 170, 23, 213, 1, // Opcode: VQRDMLAHv4i16 9380/* 12355 */ MCD::OPC_FilterValue, 2, 199, 26, 0, // Skip to: 19215 9381/* 12360 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9382/* 12363 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12379 9383/* 12369 */ MCD::OPC_CheckPredicate, 26, 185, 26, 0, // Skip to: 19215 9384/* 12374 */ MCD::OPC_Decode, 218, 22, 205, 1, // Opcode: VPADDi32 9385/* 12379 */ MCD::OPC_FilterValue, 243, 1, 174, 26, 0, // Skip to: 19215 9386/* 12385 */ MCD::OPC_CheckPredicate, 28, 169, 26, 0, // Skip to: 19215 9387/* 12390 */ MCD::OPC_Decode, 169, 23, 213, 1, // Opcode: VQRDMLAHv2i32 9388/* 12395 */ MCD::OPC_FilterValue, 12, 129, 0, 0, // Skip to: 12529 9389/* 12400 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9390/* 12403 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 12426 9391/* 12408 */ MCD::OPC_CheckPredicate, 31, 146, 26, 0, // Skip to: 19215 9392/* 12413 */ MCD::OPC_CheckField, 24, 8, 242, 1, 138, 26, 0, // Skip to: 19215 9393/* 12421 */ MCD::OPC_Decode, 197, 17, 213, 1, // Opcode: VFMAfd 9394/* 12426 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 12466 9395/* 12431 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9396/* 12434 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12450 9397/* 12440 */ MCD::OPC_CheckPredicate, 27, 114, 26, 0, // Skip to: 19215 9398/* 12445 */ MCD::OPC_Decode, 199, 17, 213, 1, // Opcode: VFMAhd 9399/* 12450 */ MCD::OPC_FilterValue, 243, 1, 103, 26, 0, // Skip to: 19215 9400/* 12456 */ MCD::OPC_CheckPredicate, 28, 98, 26, 0, // Skip to: 19215 9401/* 12461 */ MCD::OPC_Decode, 178, 23, 213, 1, // Opcode: VQRDMLSHv4i16 9402/* 12466 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 12506 9403/* 12471 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9404/* 12474 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12490 9405/* 12480 */ MCD::OPC_CheckPredicate, 31, 74, 26, 0, // Skip to: 19215 9406/* 12485 */ MCD::OPC_Decode, 208, 17, 213, 1, // Opcode: VFMSfd 9407/* 12490 */ MCD::OPC_FilterValue, 243, 1, 63, 26, 0, // Skip to: 19215 9408/* 12496 */ MCD::OPC_CheckPredicate, 28, 58, 26, 0, // Skip to: 19215 9409/* 12501 */ MCD::OPC_Decode, 177, 23, 213, 1, // Opcode: VQRDMLSHv2i32 9410/* 12506 */ MCD::OPC_FilterValue, 3, 48, 26, 0, // Skip to: 19215 9411/* 12511 */ MCD::OPC_CheckPredicate, 27, 43, 26, 0, // Skip to: 19215 9412/* 12516 */ MCD::OPC_CheckField, 24, 8, 242, 1, 35, 26, 0, // Skip to: 19215 9413/* 12524 */ MCD::OPC_Decode, 210, 17, 213, 1, // Opcode: VFMShd 9414/* 12529 */ MCD::OPC_FilterValue, 13, 129, 0, 0, // Skip to: 12663 9415/* 12534 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9416/* 12537 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 12577 9417/* 12542 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9418/* 12545 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12561 9419/* 12551 */ MCD::OPC_CheckPredicate, 26, 3, 26, 0, // Skip to: 19215 9420/* 12556 */ MCD::OPC_Decode, 146, 21, 213, 1, // Opcode: VMLAfd 9421/* 12561 */ MCD::OPC_FilterValue, 243, 1, 248, 25, 0, // Skip to: 19215 9422/* 12567 */ MCD::OPC_CheckPredicate, 26, 243, 25, 0, // Skip to: 19215 9423/* 12572 */ MCD::OPC_Decode, 135, 22, 205, 1, // Opcode: VMULfd 9424/* 12577 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 12617 9425/* 12582 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9426/* 12585 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 12601 9427/* 12591 */ MCD::OPC_CheckPredicate, 27, 219, 25, 0, // Skip to: 19215 9428/* 12596 */ MCD::OPC_Decode, 148, 21, 213, 1, // Opcode: VMLAhd 9429/* 12601 */ MCD::OPC_FilterValue, 243, 1, 208, 25, 0, // Skip to: 19215 9430/* 12607 */ MCD::OPC_CheckPredicate, 27, 203, 25, 0, // Skip to: 19215 9431/* 12612 */ MCD::OPC_Decode, 137, 22, 205, 1, // Opcode: VMULhd 9432/* 12617 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 12640 9433/* 12622 */ MCD::OPC_CheckPredicate, 26, 188, 25, 0, // Skip to: 19215 9434/* 12627 */ MCD::OPC_CheckField, 24, 8, 242, 1, 180, 25, 0, // Skip to: 19215 9435/* 12635 */ MCD::OPC_Decode, 177, 21, 213, 1, // Opcode: VMLSfd 9436/* 12640 */ MCD::OPC_FilterValue, 3, 170, 25, 0, // Skip to: 19215 9437/* 12645 */ MCD::OPC_CheckPredicate, 27, 165, 25, 0, // Skip to: 19215 9438/* 12650 */ MCD::OPC_CheckField, 24, 8, 242, 1, 157, 25, 0, // Skip to: 19215 9439/* 12658 */ MCD::OPC_Decode, 179, 21, 213, 1, // Opcode: VMLShd 9440/* 12663 */ MCD::OPC_FilterValue, 14, 95, 0, 0, // Skip to: 12763 9441/* 12668 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9442/* 12671 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 12694 9443/* 12676 */ MCD::OPC_CheckPredicate, 26, 134, 25, 0, // Skip to: 19215 9444/* 12681 */ MCD::OPC_CheckField, 24, 8, 243, 1, 126, 25, 0, // Skip to: 19215 9445/* 12689 */ MCD::OPC_Decode, 140, 15, 205, 1, // Opcode: VACGEfd 9446/* 12694 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 12717 9447/* 12699 */ MCD::OPC_CheckPredicate, 27, 111, 25, 0, // Skip to: 19215 9448/* 12704 */ MCD::OPC_CheckField, 24, 8, 243, 1, 103, 25, 0, // Skip to: 19215 9449/* 12712 */ MCD::OPC_Decode, 142, 15, 205, 1, // Opcode: VACGEhd 9450/* 12717 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 12740 9451/* 12722 */ MCD::OPC_CheckPredicate, 26, 88, 25, 0, // Skip to: 19215 9452/* 12727 */ MCD::OPC_CheckField, 24, 8, 243, 1, 80, 25, 0, // Skip to: 19215 9453/* 12735 */ MCD::OPC_Decode, 144, 15, 205, 1, // Opcode: VACGTfd 9454/* 12740 */ MCD::OPC_FilterValue, 3, 70, 25, 0, // Skip to: 19215 9455/* 12745 */ MCD::OPC_CheckPredicate, 27, 65, 25, 0, // Skip to: 19215 9456/* 12750 */ MCD::OPC_CheckField, 24, 8, 243, 1, 57, 25, 0, // Skip to: 19215 9457/* 12758 */ MCD::OPC_Decode, 146, 15, 205, 1, // Opcode: VACGThd 9458/* 12763 */ MCD::OPC_FilterValue, 15, 47, 25, 0, // Skip to: 19215 9459/* 12768 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9460/* 12771 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 12794 9461/* 12776 */ MCD::OPC_CheckPredicate, 26, 34, 25, 0, // Skip to: 19215 9462/* 12781 */ MCD::OPC_CheckField, 24, 8, 242, 1, 26, 25, 0, // Skip to: 19215 9463/* 12789 */ MCD::OPC_Decode, 160, 24, 205, 1, // Opcode: VRECPSfd 9464/* 12794 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 12817 9465/* 12799 */ MCD::OPC_CheckPredicate, 27, 11, 25, 0, // Skip to: 19215 9466/* 12804 */ MCD::OPC_CheckField, 24, 8, 242, 1, 3, 25, 0, // Skip to: 19215 9467/* 12812 */ MCD::OPC_Decode, 162, 24, 205, 1, // Opcode: VRECPShd 9468/* 12817 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 12840 9469/* 12822 */ MCD::OPC_CheckPredicate, 26, 244, 24, 0, // Skip to: 19215 9470/* 12827 */ MCD::OPC_CheckField, 24, 8, 242, 1, 236, 24, 0, // Skip to: 19215 9471/* 12835 */ MCD::OPC_Decode, 146, 25, 205, 1, // Opcode: VRSQRTSfd 9472/* 12840 */ MCD::OPC_FilterValue, 3, 226, 24, 0, // Skip to: 19215 9473/* 12845 */ MCD::OPC_CheckPredicate, 27, 221, 24, 0, // Skip to: 19215 9474/* 12850 */ MCD::OPC_CheckField, 24, 8, 242, 1, 213, 24, 0, // Skip to: 19215 9475/* 12858 */ MCD::OPC_Decode, 148, 25, 205, 1, // Opcode: VRSQRTShd 9476/* 12863 */ MCD::OPC_FilterValue, 1, 203, 24, 0, // Skip to: 19215 9477/* 12868 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 9478/* 12871 */ MCD::OPC_FilterValue, 0, 209, 7, 0, // Skip to: 14877 9479/* 12876 */ MCD::OPC_ExtractField, 25, 7, // Inst{31-25} ... 9480/* 12879 */ MCD::OPC_FilterValue, 121, 187, 24, 0, // Skip to: 19215 9481/* 12884 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 9482/* 12887 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 13031 9483/* 12892 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9484/* 12895 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 12993 9485/* 12900 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9486/* 12903 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 12955 9487/* 12908 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9488/* 12911 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 12933 9489/* 12916 */ MCD::OPC_CheckPredicate, 26, 231, 6, 0, // Skip to: 14688 9490/* 12921 */ MCD::OPC_CheckField, 19, 1, 1, 224, 6, 0, // Skip to: 14688 9491/* 12928 */ MCD::OPC_Decode, 233, 25, 250, 1, // Opcode: VSHRsv8i8 9492/* 12933 */ MCD::OPC_FilterValue, 1, 214, 6, 0, // Skip to: 14688 9493/* 12938 */ MCD::OPC_CheckPredicate, 26, 209, 6, 0, // Skip to: 14688 9494/* 12943 */ MCD::OPC_CheckField, 19, 1, 1, 202, 6, 0, // Skip to: 14688 9495/* 12950 */ MCD::OPC_Decode, 241, 25, 250, 1, // Opcode: VSHRuv8i8 9496/* 12955 */ MCD::OPC_FilterValue, 1, 192, 6, 0, // Skip to: 14688 9497/* 12960 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9498/* 12963 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 12978 9499/* 12968 */ MCD::OPC_CheckPredicate, 26, 179, 6, 0, // Skip to: 14688 9500/* 12973 */ MCD::OPC_Decode, 230, 25, 251, 1, // Opcode: VSHRsv4i16 9501/* 12978 */ MCD::OPC_FilterValue, 1, 169, 6, 0, // Skip to: 14688 9502/* 12983 */ MCD::OPC_CheckPredicate, 26, 164, 6, 0, // Skip to: 14688 9503/* 12988 */ MCD::OPC_Decode, 238, 25, 251, 1, // Opcode: VSHRuv4i16 9504/* 12993 */ MCD::OPC_FilterValue, 1, 154, 6, 0, // Skip to: 14688 9505/* 12998 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9506/* 13001 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13016 9507/* 13006 */ MCD::OPC_CheckPredicate, 26, 141, 6, 0, // Skip to: 14688 9508/* 13011 */ MCD::OPC_Decode, 228, 25, 252, 1, // Opcode: VSHRsv2i32 9509/* 13016 */ MCD::OPC_FilterValue, 1, 131, 6, 0, // Skip to: 14688 9510/* 13021 */ MCD::OPC_CheckPredicate, 26, 126, 6, 0, // Skip to: 14688 9511/* 13026 */ MCD::OPC_Decode, 236, 25, 252, 1, // Opcode: VSHRuv2i32 9512/* 13031 */ MCD::OPC_FilterValue, 1, 139, 0, 0, // Skip to: 13175 9513/* 13036 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9514/* 13039 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 13137 9515/* 13044 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9516/* 13047 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13099 9517/* 13052 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9518/* 13055 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13077 9519/* 13060 */ MCD::OPC_CheckPredicate, 26, 87, 6, 0, // Skip to: 14688 9520/* 13065 */ MCD::OPC_CheckField, 19, 1, 1, 80, 6, 0, // Skip to: 14688 9521/* 13072 */ MCD::OPC_Decode, 141, 26, 253, 1, // Opcode: VSRAsv8i8 9522/* 13077 */ MCD::OPC_FilterValue, 1, 70, 6, 0, // Skip to: 14688 9523/* 13082 */ MCD::OPC_CheckPredicate, 26, 65, 6, 0, // Skip to: 14688 9524/* 13087 */ MCD::OPC_CheckField, 19, 1, 1, 58, 6, 0, // Skip to: 14688 9525/* 13094 */ MCD::OPC_Decode, 149, 26, 253, 1, // Opcode: VSRAuv8i8 9526/* 13099 */ MCD::OPC_FilterValue, 1, 48, 6, 0, // Skip to: 14688 9527/* 13104 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9528/* 13107 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13122 9529/* 13112 */ MCD::OPC_CheckPredicate, 26, 35, 6, 0, // Skip to: 14688 9530/* 13117 */ MCD::OPC_Decode, 138, 26, 254, 1, // Opcode: VSRAsv4i16 9531/* 13122 */ MCD::OPC_FilterValue, 1, 25, 6, 0, // Skip to: 14688 9532/* 13127 */ MCD::OPC_CheckPredicate, 26, 20, 6, 0, // Skip to: 14688 9533/* 13132 */ MCD::OPC_Decode, 146, 26, 254, 1, // Opcode: VSRAuv4i16 9534/* 13137 */ MCD::OPC_FilterValue, 1, 10, 6, 0, // Skip to: 14688 9535/* 13142 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9536/* 13145 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13160 9537/* 13150 */ MCD::OPC_CheckPredicate, 26, 253, 5, 0, // Skip to: 14688 9538/* 13155 */ MCD::OPC_Decode, 136, 26, 255, 1, // Opcode: VSRAsv2i32 9539/* 13160 */ MCD::OPC_FilterValue, 1, 243, 5, 0, // Skip to: 14688 9540/* 13165 */ MCD::OPC_CheckPredicate, 26, 238, 5, 0, // Skip to: 14688 9541/* 13170 */ MCD::OPC_Decode, 144, 26, 255, 1, // Opcode: VSRAuv2i32 9542/* 13175 */ MCD::OPC_FilterValue, 2, 139, 0, 0, // Skip to: 13319 9543/* 13180 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9544/* 13183 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 13281 9545/* 13188 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9546/* 13191 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13243 9547/* 13196 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9548/* 13199 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13221 9549/* 13204 */ MCD::OPC_CheckPredicate, 26, 199, 5, 0, // Skip to: 14688 9550/* 13209 */ MCD::OPC_CheckField, 19, 1, 1, 192, 5, 0, // Skip to: 14688 9551/* 13216 */ MCD::OPC_Decode, 131, 25, 250, 1, // Opcode: VRSHRsv8i8 9552/* 13221 */ MCD::OPC_FilterValue, 1, 182, 5, 0, // Skip to: 14688 9553/* 13226 */ MCD::OPC_CheckPredicate, 26, 177, 5, 0, // Skip to: 14688 9554/* 13231 */ MCD::OPC_CheckField, 19, 1, 1, 170, 5, 0, // Skip to: 14688 9555/* 13238 */ MCD::OPC_Decode, 139, 25, 250, 1, // Opcode: VRSHRuv8i8 9556/* 13243 */ MCD::OPC_FilterValue, 1, 160, 5, 0, // Skip to: 14688 9557/* 13248 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9558/* 13251 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13266 9559/* 13256 */ MCD::OPC_CheckPredicate, 26, 147, 5, 0, // Skip to: 14688 9560/* 13261 */ MCD::OPC_Decode, 128, 25, 251, 1, // Opcode: VRSHRsv4i16 9561/* 13266 */ MCD::OPC_FilterValue, 1, 137, 5, 0, // Skip to: 14688 9562/* 13271 */ MCD::OPC_CheckPredicate, 26, 132, 5, 0, // Skip to: 14688 9563/* 13276 */ MCD::OPC_Decode, 136, 25, 251, 1, // Opcode: VRSHRuv4i16 9564/* 13281 */ MCD::OPC_FilterValue, 1, 122, 5, 0, // Skip to: 14688 9565/* 13286 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9566/* 13289 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13304 9567/* 13294 */ MCD::OPC_CheckPredicate, 26, 109, 5, 0, // Skip to: 14688 9568/* 13299 */ MCD::OPC_Decode, 254, 24, 252, 1, // Opcode: VRSHRsv2i32 9569/* 13304 */ MCD::OPC_FilterValue, 1, 99, 5, 0, // Skip to: 14688 9570/* 13309 */ MCD::OPC_CheckPredicate, 26, 94, 5, 0, // Skip to: 14688 9571/* 13314 */ MCD::OPC_Decode, 134, 25, 252, 1, // Opcode: VRSHRuv2i32 9572/* 13319 */ MCD::OPC_FilterValue, 3, 139, 0, 0, // Skip to: 13463 9573/* 13324 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9574/* 13327 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 13425 9575/* 13332 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9576/* 13335 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13387 9577/* 13340 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9578/* 13343 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13365 9579/* 13348 */ MCD::OPC_CheckPredicate, 26, 55, 5, 0, // Skip to: 14688 9580/* 13353 */ MCD::OPC_CheckField, 19, 1, 1, 48, 5, 0, // Skip to: 14688 9581/* 13360 */ MCD::OPC_Decode, 157, 25, 253, 1, // Opcode: VRSRAsv8i8 9582/* 13365 */ MCD::OPC_FilterValue, 1, 38, 5, 0, // Skip to: 14688 9583/* 13370 */ MCD::OPC_CheckPredicate, 26, 33, 5, 0, // Skip to: 14688 9584/* 13375 */ MCD::OPC_CheckField, 19, 1, 1, 26, 5, 0, // Skip to: 14688 9585/* 13382 */ MCD::OPC_Decode, 165, 25, 253, 1, // Opcode: VRSRAuv8i8 9586/* 13387 */ MCD::OPC_FilterValue, 1, 16, 5, 0, // Skip to: 14688 9587/* 13392 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9588/* 13395 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13410 9589/* 13400 */ MCD::OPC_CheckPredicate, 26, 3, 5, 0, // Skip to: 14688 9590/* 13405 */ MCD::OPC_Decode, 154, 25, 254, 1, // Opcode: VRSRAsv4i16 9591/* 13410 */ MCD::OPC_FilterValue, 1, 249, 4, 0, // Skip to: 14688 9592/* 13415 */ MCD::OPC_CheckPredicate, 26, 244, 4, 0, // Skip to: 14688 9593/* 13420 */ MCD::OPC_Decode, 162, 25, 254, 1, // Opcode: VRSRAuv4i16 9594/* 13425 */ MCD::OPC_FilterValue, 1, 234, 4, 0, // Skip to: 14688 9595/* 13430 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9596/* 13433 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13448 9597/* 13438 */ MCD::OPC_CheckPredicate, 26, 221, 4, 0, // Skip to: 14688 9598/* 13443 */ MCD::OPC_Decode, 152, 25, 255, 1, // Opcode: VRSRAsv2i32 9599/* 13448 */ MCD::OPC_FilterValue, 1, 211, 4, 0, // Skip to: 14688 9600/* 13453 */ MCD::OPC_CheckPredicate, 26, 206, 4, 0, // Skip to: 14688 9601/* 13458 */ MCD::OPC_Decode, 160, 25, 255, 1, // Opcode: VRSRAuv2i32 9602/* 13463 */ MCD::OPC_FilterValue, 4, 84, 0, 0, // Skip to: 13552 9603/* 13468 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9604/* 13471 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 13530 9605/* 13476 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9606/* 13479 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 13508 9607/* 13484 */ MCD::OPC_CheckPredicate, 26, 175, 4, 0, // Skip to: 14688 9608/* 13489 */ MCD::OPC_CheckField, 24, 1, 1, 168, 4, 0, // Skip to: 14688 9609/* 13496 */ MCD::OPC_CheckField, 19, 1, 1, 161, 4, 0, // Skip to: 14688 9610/* 13503 */ MCD::OPC_Decode, 157, 26, 253, 1, // Opcode: VSRIv8i8 9611/* 13508 */ MCD::OPC_FilterValue, 1, 151, 4, 0, // Skip to: 14688 9612/* 13513 */ MCD::OPC_CheckPredicate, 26, 146, 4, 0, // Skip to: 14688 9613/* 13518 */ MCD::OPC_CheckField, 24, 1, 1, 139, 4, 0, // Skip to: 14688 9614/* 13525 */ MCD::OPC_Decode, 154, 26, 254, 1, // Opcode: VSRIv4i16 9615/* 13530 */ MCD::OPC_FilterValue, 1, 129, 4, 0, // Skip to: 14688 9616/* 13535 */ MCD::OPC_CheckPredicate, 26, 124, 4, 0, // Skip to: 14688 9617/* 13540 */ MCD::OPC_CheckField, 24, 1, 1, 117, 4, 0, // Skip to: 14688 9618/* 13547 */ MCD::OPC_Decode, 152, 26, 255, 1, // Opcode: VSRIv2i32 9619/* 13552 */ MCD::OPC_FilterValue, 5, 139, 0, 0, // Skip to: 13696 9620/* 13557 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9621/* 13560 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 13658 9622/* 13565 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9623/* 13568 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13620 9624/* 13573 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9625/* 13576 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13598 9626/* 13581 */ MCD::OPC_CheckPredicate, 26, 78, 4, 0, // Skip to: 14688 9627/* 13586 */ MCD::OPC_CheckField, 19, 1, 1, 71, 4, 0, // Skip to: 14688 9628/* 13593 */ MCD::OPC_Decode, 206, 25, 128, 2, // Opcode: VSHLiv8i8 9629/* 13598 */ MCD::OPC_FilterValue, 1, 61, 4, 0, // Skip to: 14688 9630/* 13603 */ MCD::OPC_CheckPredicate, 26, 56, 4, 0, // Skip to: 14688 9631/* 13608 */ MCD::OPC_CheckField, 19, 1, 1, 49, 4, 0, // Skip to: 14688 9632/* 13615 */ MCD::OPC_Decode, 255, 25, 129, 2, // Opcode: VSLIv8i8 9633/* 13620 */ MCD::OPC_FilterValue, 1, 39, 4, 0, // Skip to: 14688 9634/* 13625 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9635/* 13628 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13643 9636/* 13633 */ MCD::OPC_CheckPredicate, 26, 26, 4, 0, // Skip to: 14688 9637/* 13638 */ MCD::OPC_Decode, 203, 25, 130, 2, // Opcode: VSHLiv4i16 9638/* 13643 */ MCD::OPC_FilterValue, 1, 16, 4, 0, // Skip to: 14688 9639/* 13648 */ MCD::OPC_CheckPredicate, 26, 11, 4, 0, // Skip to: 14688 9640/* 13653 */ MCD::OPC_Decode, 252, 25, 131, 2, // Opcode: VSLIv4i16 9641/* 13658 */ MCD::OPC_FilterValue, 1, 1, 4, 0, // Skip to: 14688 9642/* 13663 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9643/* 13666 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13681 9644/* 13671 */ MCD::OPC_CheckPredicate, 26, 244, 3, 0, // Skip to: 14688 9645/* 13676 */ MCD::OPC_Decode, 201, 25, 132, 2, // Opcode: VSHLiv2i32 9646/* 13681 */ MCD::OPC_FilterValue, 1, 234, 3, 0, // Skip to: 14688 9647/* 13686 */ MCD::OPC_CheckPredicate, 26, 229, 3, 0, // Skip to: 14688 9648/* 13691 */ MCD::OPC_Decode, 250, 25, 133, 2, // Opcode: VSLIv2i32 9649/* 13696 */ MCD::OPC_FilterValue, 6, 84, 0, 0, // Skip to: 13785 9650/* 13701 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9651/* 13704 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 13763 9652/* 13709 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9653/* 13712 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 13741 9654/* 13717 */ MCD::OPC_CheckPredicate, 26, 198, 3, 0, // Skip to: 14688 9655/* 13722 */ MCD::OPC_CheckField, 24, 1, 1, 191, 3, 0, // Skip to: 14688 9656/* 13729 */ MCD::OPC_CheckField, 19, 1, 1, 184, 3, 0, // Skip to: 14688 9657/* 13736 */ MCD::OPC_Decode, 229, 23, 128, 2, // Opcode: VQSHLsuv8i8 9658/* 13741 */ MCD::OPC_FilterValue, 1, 174, 3, 0, // Skip to: 14688 9659/* 13746 */ MCD::OPC_CheckPredicate, 26, 169, 3, 0, // Skip to: 14688 9660/* 13751 */ MCD::OPC_CheckField, 24, 1, 1, 162, 3, 0, // Skip to: 14688 9661/* 13758 */ MCD::OPC_Decode, 226, 23, 130, 2, // Opcode: VQSHLsuv4i16 9662/* 13763 */ MCD::OPC_FilterValue, 1, 152, 3, 0, // Skip to: 14688 9663/* 13768 */ MCD::OPC_CheckPredicate, 26, 147, 3, 0, // Skip to: 14688 9664/* 13773 */ MCD::OPC_CheckField, 24, 1, 1, 140, 3, 0, // Skip to: 14688 9665/* 13780 */ MCD::OPC_Decode, 224, 23, 132, 2, // Opcode: VQSHLsuv2i32 9666/* 13785 */ MCD::OPC_FilterValue, 7, 139, 0, 0, // Skip to: 13929 9667/* 13790 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9668/* 13793 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 13891 9669/* 13798 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9670/* 13801 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13853 9671/* 13806 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9672/* 13809 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13831 9673/* 13814 */ MCD::OPC_CheckPredicate, 26, 101, 3, 0, // Skip to: 14688 9674/* 13819 */ MCD::OPC_CheckField, 19, 1, 1, 94, 3, 0, // Skip to: 14688 9675/* 13826 */ MCD::OPC_Decode, 221, 23, 128, 2, // Opcode: VQSHLsiv8i8 9676/* 13831 */ MCD::OPC_FilterValue, 1, 84, 3, 0, // Skip to: 14688 9677/* 13836 */ MCD::OPC_CheckPredicate, 26, 79, 3, 0, // Skip to: 14688 9678/* 13841 */ MCD::OPC_CheckField, 19, 1, 1, 72, 3, 0, // Skip to: 14688 9679/* 13848 */ MCD::OPC_Decode, 245, 23, 128, 2, // Opcode: VQSHLuiv8i8 9680/* 13853 */ MCD::OPC_FilterValue, 1, 62, 3, 0, // Skip to: 14688 9681/* 13858 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9682/* 13861 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13876 9683/* 13866 */ MCD::OPC_CheckPredicate, 26, 49, 3, 0, // Skip to: 14688 9684/* 13871 */ MCD::OPC_Decode, 218, 23, 130, 2, // Opcode: VQSHLsiv4i16 9685/* 13876 */ MCD::OPC_FilterValue, 1, 39, 3, 0, // Skip to: 14688 9686/* 13881 */ MCD::OPC_CheckPredicate, 26, 34, 3, 0, // Skip to: 14688 9687/* 13886 */ MCD::OPC_Decode, 242, 23, 130, 2, // Opcode: VQSHLuiv4i16 9688/* 13891 */ MCD::OPC_FilterValue, 1, 24, 3, 0, // Skip to: 14688 9689/* 13896 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9690/* 13899 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 13914 9691/* 13904 */ MCD::OPC_CheckPredicate, 26, 11, 3, 0, // Skip to: 14688 9692/* 13909 */ MCD::OPC_Decode, 216, 23, 132, 2, // Opcode: VQSHLsiv2i32 9693/* 13914 */ MCD::OPC_FilterValue, 1, 1, 3, 0, // Skip to: 14688 9694/* 13919 */ MCD::OPC_CheckPredicate, 26, 252, 2, 0, // Skip to: 14688 9695/* 13924 */ MCD::OPC_Decode, 240, 23, 132, 2, // Opcode: VQSHLuiv2i32 9696/* 13929 */ MCD::OPC_FilterValue, 8, 139, 0, 0, // Skip to: 14073 9697/* 13934 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9698/* 13937 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 14035 9699/* 13942 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9700/* 13945 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 13997 9701/* 13950 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9702/* 13953 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 13975 9703/* 13958 */ MCD::OPC_CheckPredicate, 26, 213, 2, 0, // Skip to: 14688 9704/* 13963 */ MCD::OPC_CheckField, 19, 1, 1, 206, 2, 0, // Skip to: 14688 9705/* 13970 */ MCD::OPC_Decode, 225, 25, 134, 2, // Opcode: VSHRNv8i8 9706/* 13975 */ MCD::OPC_FilterValue, 1, 196, 2, 0, // Skip to: 14688 9707/* 13980 */ MCD::OPC_CheckPredicate, 26, 191, 2, 0, // Skip to: 14688 9708/* 13985 */ MCD::OPC_CheckField, 19, 1, 1, 184, 2, 0, // Skip to: 14688 9709/* 13992 */ MCD::OPC_Decode, 134, 24, 134, 2, // Opcode: VQSHRUNv8i8 9710/* 13997 */ MCD::OPC_FilterValue, 1, 174, 2, 0, // Skip to: 14688 9711/* 14002 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9712/* 14005 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14020 9713/* 14010 */ MCD::OPC_CheckPredicate, 26, 161, 2, 0, // Skip to: 14688 9714/* 14015 */ MCD::OPC_Decode, 224, 25, 135, 2, // Opcode: VSHRNv4i16 9715/* 14020 */ MCD::OPC_FilterValue, 1, 151, 2, 0, // Skip to: 14688 9716/* 14025 */ MCD::OPC_CheckPredicate, 26, 146, 2, 0, // Skip to: 14688 9717/* 14030 */ MCD::OPC_Decode, 133, 24, 135, 2, // Opcode: VQSHRUNv4i16 9718/* 14035 */ MCD::OPC_FilterValue, 1, 136, 2, 0, // Skip to: 14688 9719/* 14040 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9720/* 14043 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14058 9721/* 14048 */ MCD::OPC_CheckPredicate, 26, 123, 2, 0, // Skip to: 14688 9722/* 14053 */ MCD::OPC_Decode, 223, 25, 136, 2, // Opcode: VSHRNv2i32 9723/* 14058 */ MCD::OPC_FilterValue, 1, 113, 2, 0, // Skip to: 14688 9724/* 14063 */ MCD::OPC_CheckPredicate, 26, 108, 2, 0, // Skip to: 14688 9725/* 14068 */ MCD::OPC_Decode, 132, 24, 136, 2, // Opcode: VQSHRUNv2i32 9726/* 14073 */ MCD::OPC_FilterValue, 9, 139, 0, 0, // Skip to: 14217 9727/* 14078 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9728/* 14081 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 14179 9729/* 14086 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9730/* 14089 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 14141 9731/* 14094 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9732/* 14097 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 14119 9733/* 14102 */ MCD::OPC_CheckPredicate, 26, 69, 2, 0, // Skip to: 14688 9734/* 14107 */ MCD::OPC_CheckField, 19, 1, 1, 62, 2, 0, // Skip to: 14688 9735/* 14114 */ MCD::OPC_Decode, 128, 24, 134, 2, // Opcode: VQSHRNsv8i8 9736/* 14119 */ MCD::OPC_FilterValue, 1, 52, 2, 0, // Skip to: 14688 9737/* 14124 */ MCD::OPC_CheckPredicate, 26, 47, 2, 0, // Skip to: 14688 9738/* 14129 */ MCD::OPC_CheckField, 19, 1, 1, 40, 2, 0, // Skip to: 14688 9739/* 14136 */ MCD::OPC_Decode, 131, 24, 134, 2, // Opcode: VQSHRNuv8i8 9740/* 14141 */ MCD::OPC_FilterValue, 1, 30, 2, 0, // Skip to: 14688 9741/* 14146 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9742/* 14149 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14164 9743/* 14154 */ MCD::OPC_CheckPredicate, 26, 17, 2, 0, // Skip to: 14688 9744/* 14159 */ MCD::OPC_Decode, 255, 23, 135, 2, // Opcode: VQSHRNsv4i16 9745/* 14164 */ MCD::OPC_FilterValue, 1, 7, 2, 0, // Skip to: 14688 9746/* 14169 */ MCD::OPC_CheckPredicate, 26, 2, 2, 0, // Skip to: 14688 9747/* 14174 */ MCD::OPC_Decode, 130, 24, 135, 2, // Opcode: VQSHRNuv4i16 9748/* 14179 */ MCD::OPC_FilterValue, 1, 248, 1, 0, // Skip to: 14688 9749/* 14184 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9750/* 14187 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14202 9751/* 14192 */ MCD::OPC_CheckPredicate, 26, 235, 1, 0, // Skip to: 14688 9752/* 14197 */ MCD::OPC_Decode, 254, 23, 136, 2, // Opcode: VQSHRNsv2i32 9753/* 14202 */ MCD::OPC_FilterValue, 1, 225, 1, 0, // Skip to: 14688 9754/* 14207 */ MCD::OPC_CheckPredicate, 26, 220, 1, 0, // Skip to: 14688 9755/* 14212 */ MCD::OPC_Decode, 129, 24, 136, 2, // Opcode: VQSHRNuv2i32 9756/* 14217 */ MCD::OPC_FilterValue, 10, 243, 0, 0, // Skip to: 14465 9757/* 14222 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 9758/* 14225 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 14393 9759/* 14230 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 9760/* 14233 */ MCD::OPC_FilterValue, 0, 83, 0, 0, // Skip to: 14321 9761/* 14238 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9762/* 14241 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 14281 9763/* 14246 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 9764/* 14249 */ MCD::OPC_FilterValue, 1, 178, 1, 0, // Skip to: 14688 9765/* 14254 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14271 9766/* 14259 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 14271 9767/* 14266 */ MCD::OPC_Decode, 201, 21, 242, 1, // Opcode: VMOVLsv8i16 9768/* 14271 */ MCD::OPC_CheckPredicate, 26, 156, 1, 0, // Skip to: 14688 9769/* 14276 */ MCD::OPC_Decode, 195, 25, 137, 2, // Opcode: VSHLLsv8i16 9770/* 14281 */ MCD::OPC_FilterValue, 1, 146, 1, 0, // Skip to: 14688 9771/* 14286 */ MCD::OPC_ExtractField, 19, 1, // Inst{19} ... 9772/* 14289 */ MCD::OPC_FilterValue, 1, 138, 1, 0, // Skip to: 14688 9773/* 14294 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14311 9774/* 14299 */ MCD::OPC_CheckField, 16, 3, 0, 5, 0, 0, // Skip to: 14311 9775/* 14306 */ MCD::OPC_Decode, 204, 21, 242, 1, // Opcode: VMOVLuv8i16 9776/* 14311 */ MCD::OPC_CheckPredicate, 26, 116, 1, 0, // Skip to: 14688 9777/* 14316 */ MCD::OPC_Decode, 198, 25, 137, 2, // Opcode: VSHLLuv8i16 9778/* 14321 */ MCD::OPC_FilterValue, 1, 106, 1, 0, // Skip to: 14688 9779/* 14326 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9780/* 14329 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 14361 9781/* 14334 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14351 9782/* 14339 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 14351 9783/* 14346 */ MCD::OPC_Decode, 200, 21, 242, 1, // Opcode: VMOVLsv4i32 9784/* 14351 */ MCD::OPC_CheckPredicate, 26, 76, 1, 0, // Skip to: 14688 9785/* 14356 */ MCD::OPC_Decode, 194, 25, 138, 2, // Opcode: VSHLLsv4i32 9786/* 14361 */ MCD::OPC_FilterValue, 1, 66, 1, 0, // Skip to: 14688 9787/* 14366 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14383 9788/* 14371 */ MCD::OPC_CheckField, 16, 4, 0, 5, 0, 0, // Skip to: 14383 9789/* 14378 */ MCD::OPC_Decode, 203, 21, 242, 1, // Opcode: VMOVLuv4i32 9790/* 14383 */ MCD::OPC_CheckPredicate, 26, 44, 1, 0, // Skip to: 14688 9791/* 14388 */ MCD::OPC_Decode, 197, 25, 138, 2, // Opcode: VSHLLuv4i32 9792/* 14393 */ MCD::OPC_FilterValue, 1, 34, 1, 0, // Skip to: 14688 9793/* 14398 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9794/* 14401 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 14433 9795/* 14406 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14423 9796/* 14411 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 14423 9797/* 14418 */ MCD::OPC_Decode, 199, 21, 242, 1, // Opcode: VMOVLsv2i64 9798/* 14423 */ MCD::OPC_CheckPredicate, 26, 4, 1, 0, // Skip to: 14688 9799/* 14428 */ MCD::OPC_Decode, 193, 25, 139, 2, // Opcode: VSHLLsv2i64 9800/* 14433 */ MCD::OPC_FilterValue, 1, 250, 0, 0, // Skip to: 14688 9801/* 14438 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14455 9802/* 14443 */ MCD::OPC_CheckField, 16, 5, 0, 5, 0, 0, // Skip to: 14455 9803/* 14450 */ MCD::OPC_Decode, 202, 21, 242, 1, // Opcode: VMOVLuv2i64 9804/* 14455 */ MCD::OPC_CheckPredicate, 26, 228, 0, 0, // Skip to: 14688 9805/* 14460 */ MCD::OPC_Decode, 196, 25, 139, 2, // Opcode: VSHLLuv2i64 9806/* 14465 */ MCD::OPC_FilterValue, 12, 33, 0, 0, // Skip to: 14503 9807/* 14470 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9808/* 14473 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14488 9809/* 14478 */ MCD::OPC_CheckPredicate, 27, 205, 0, 0, // Skip to: 14688 9810/* 14483 */ MCD::OPC_Decode, 160, 17, 140, 2, // Opcode: VCVTxs2hd 9811/* 14488 */ MCD::OPC_FilterValue, 1, 195, 0, 0, // Skip to: 14688 9812/* 14493 */ MCD::OPC_CheckPredicate, 27, 190, 0, 0, // Skip to: 14688 9813/* 14498 */ MCD::OPC_Decode, 164, 17, 140, 2, // Opcode: VCVTxu2hd 9814/* 14503 */ MCD::OPC_FilterValue, 13, 33, 0, 0, // Skip to: 14541 9815/* 14508 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9816/* 14511 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14526 9817/* 14516 */ MCD::OPC_CheckPredicate, 27, 167, 0, 0, // Skip to: 14688 9818/* 14521 */ MCD::OPC_Decode, 146, 17, 140, 2, // Opcode: VCVTh2xsd 9819/* 14526 */ MCD::OPC_FilterValue, 1, 157, 0, 0, // Skip to: 14688 9820/* 14531 */ MCD::OPC_CheckPredicate, 27, 152, 0, 0, // Skip to: 14688 9821/* 14536 */ MCD::OPC_Decode, 148, 17, 140, 2, // Opcode: VCVTh2xud 9822/* 14541 */ MCD::OPC_FilterValue, 14, 80, 0, 0, // Skip to: 14626 9823/* 14546 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 9824/* 14549 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 14571 9825/* 14554 */ MCD::OPC_CheckPredicate, 26, 34, 0, 0, // Skip to: 14593 9826/* 14559 */ MCD::OPC_CheckField, 19, 3, 0, 27, 0, 0, // Skip to: 14593 9827/* 14566 */ MCD::OPC_Decode, 224, 21, 141, 2, // Opcode: VMOVv8i8 9828/* 14571 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 14593 9829/* 14576 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14593 9830/* 14581 */ MCD::OPC_CheckField, 19, 3, 0, 5, 0, 0, // Skip to: 14593 9831/* 14588 */ MCD::OPC_Decode, 216, 21, 141, 2, // Opcode: VMOVv1i64 9832/* 14593 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9833/* 14596 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14611 9834/* 14601 */ MCD::OPC_CheckPredicate, 26, 82, 0, 0, // Skip to: 14688 9835/* 14606 */ MCD::OPC_Decode, 158, 17, 140, 2, // Opcode: VCVTxs2fd 9836/* 14611 */ MCD::OPC_FilterValue, 1, 72, 0, 0, // Skip to: 14688 9837/* 14616 */ MCD::OPC_CheckPredicate, 26, 67, 0, 0, // Skip to: 14688 9838/* 14621 */ MCD::OPC_Decode, 162, 17, 140, 2, // Opcode: VCVTxu2fd 9839/* 14626 */ MCD::OPC_FilterValue, 15, 57, 0, 0, // Skip to: 14688 9840/* 14631 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 9841/* 14634 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14649 9842/* 14639 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 14664 9843/* 14644 */ MCD::OPC_Decode, 137, 17, 140, 2, // Opcode: VCVTf2xsd 9844/* 14649 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 14664 9845/* 14654 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 14664 9846/* 14659 */ MCD::OPC_Decode, 139, 17, 140, 2, // Opcode: VCVTf2xud 9847/* 14664 */ MCD::OPC_CheckPredicate, 26, 19, 0, 0, // Skip to: 14688 9848/* 14669 */ MCD::OPC_CheckField, 19, 3, 0, 12, 0, 0, // Skip to: 14688 9849/* 14676 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 14688 9850/* 14683 */ MCD::OPC_Decode, 217, 21, 141, 2, // Opcode: VMOVv2f32 9851/* 14688 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 9852/* 14691 */ MCD::OPC_FilterValue, 0, 88, 0, 0, // Skip to: 14784 9853/* 14696 */ MCD::OPC_ExtractField, 19, 3, // Inst{21-19} ... 9854/* 14699 */ MCD::OPC_FilterValue, 0, 159, 17, 0, // Skip to: 19215 9855/* 14704 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 9856/* 14707 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 14729 9857/* 14712 */ MCD::OPC_CheckPredicate, 26, 57, 0, 0, // Skip to: 14774 9858/* 14717 */ MCD::OPC_CheckField, 10, 2, 2, 50, 0, 0, // Skip to: 14774 9859/* 14724 */ MCD::OPC_Decode, 221, 21, 141, 2, // Opcode: VMOVv4i16 9860/* 14729 */ MCD::OPC_FilterValue, 1, 40, 0, 0, // Skip to: 14774 9861/* 14734 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 9862/* 14737 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14752 9863/* 14742 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 14774 9864/* 14747 */ MCD::OPC_Decode, 186, 22, 141, 2, // Opcode: VORRiv2i32 9865/* 14752 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 14774 9866/* 14757 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14774 9867/* 14762 */ MCD::OPC_CheckField, 10, 1, 0, 5, 0, 0, // Skip to: 14774 9868/* 14769 */ MCD::OPC_Decode, 187, 22, 141, 2, // Opcode: VORRiv4i16 9869/* 14774 */ MCD::OPC_CheckPredicate, 26, 84, 17, 0, // Skip to: 19215 9870/* 14779 */ MCD::OPC_Decode, 218, 21, 141, 2, // Opcode: VMOVv2i32 9871/* 14784 */ MCD::OPC_FilterValue, 1, 74, 17, 0, // Skip to: 19215 9872/* 14789 */ MCD::OPC_ExtractField, 19, 3, // Inst{21-19} ... 9873/* 14792 */ MCD::OPC_FilterValue, 0, 66, 17, 0, // Skip to: 19215 9874/* 14797 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 9875/* 14800 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 14822 9876/* 14805 */ MCD::OPC_CheckPredicate, 26, 57, 0, 0, // Skip to: 14867 9877/* 14810 */ MCD::OPC_CheckField, 10, 2, 2, 50, 0, 0, // Skip to: 14867 9878/* 14817 */ MCD::OPC_Decode, 158, 22, 141, 2, // Opcode: VMVNv4i16 9879/* 14822 */ MCD::OPC_FilterValue, 1, 40, 0, 0, // Skip to: 14867 9880/* 14827 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 9881/* 14830 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 14845 9882/* 14835 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 14867 9883/* 14840 */ MCD::OPC_Decode, 181, 15, 141, 2, // Opcode: VBICiv2i32 9884/* 14845 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 14867 9885/* 14850 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 14867 9886/* 14855 */ MCD::OPC_CheckField, 10, 1, 0, 5, 0, 0, // Skip to: 14867 9887/* 14862 */ MCD::OPC_Decode, 182, 15, 141, 2, // Opcode: VBICiv4i16 9888/* 14867 */ MCD::OPC_CheckPredicate, 26, 247, 16, 0, // Skip to: 19215 9889/* 14872 */ MCD::OPC_Decode, 157, 22, 141, 2, // Opcode: VMVNv2i32 9890/* 14877 */ MCD::OPC_FilterValue, 1, 237, 16, 0, // Skip to: 19215 9891/* 14882 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 9892/* 14885 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 14925 9893/* 14890 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9894/* 14893 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 14909 9895/* 14899 */ MCD::OPC_CheckPredicate, 26, 215, 16, 0, // Skip to: 19215 9896/* 14904 */ MCD::OPC_Decode, 227, 25, 142, 2, // Opcode: VSHRsv1i64 9897/* 14909 */ MCD::OPC_FilterValue, 243, 1, 204, 16, 0, // Skip to: 19215 9898/* 14915 */ MCD::OPC_CheckPredicate, 26, 199, 16, 0, // Skip to: 19215 9899/* 14920 */ MCD::OPC_Decode, 235, 25, 142, 2, // Opcode: VSHRuv1i64 9900/* 14925 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 14965 9901/* 14930 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9902/* 14933 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 14949 9903/* 14939 */ MCD::OPC_CheckPredicate, 26, 175, 16, 0, // Skip to: 19215 9904/* 14944 */ MCD::OPC_Decode, 135, 26, 143, 2, // Opcode: VSRAsv1i64 9905/* 14949 */ MCD::OPC_FilterValue, 243, 1, 164, 16, 0, // Skip to: 19215 9906/* 14955 */ MCD::OPC_CheckPredicate, 26, 159, 16, 0, // Skip to: 19215 9907/* 14960 */ MCD::OPC_Decode, 143, 26, 143, 2, // Opcode: VSRAuv1i64 9908/* 14965 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 15005 9909/* 14970 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9910/* 14973 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 14989 9911/* 14979 */ MCD::OPC_CheckPredicate, 26, 135, 16, 0, // Skip to: 19215 9912/* 14984 */ MCD::OPC_Decode, 253, 24, 142, 2, // Opcode: VRSHRsv1i64 9913/* 14989 */ MCD::OPC_FilterValue, 243, 1, 124, 16, 0, // Skip to: 19215 9914/* 14995 */ MCD::OPC_CheckPredicate, 26, 119, 16, 0, // Skip to: 19215 9915/* 15000 */ MCD::OPC_Decode, 133, 25, 142, 2, // Opcode: VRSHRuv1i64 9916/* 15005 */ MCD::OPC_FilterValue, 3, 35, 0, 0, // Skip to: 15045 9917/* 15010 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9918/* 15013 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15029 9919/* 15019 */ MCD::OPC_CheckPredicate, 26, 95, 16, 0, // Skip to: 19215 9920/* 15024 */ MCD::OPC_Decode, 151, 25, 143, 2, // Opcode: VRSRAsv1i64 9921/* 15029 */ MCD::OPC_FilterValue, 243, 1, 84, 16, 0, // Skip to: 19215 9922/* 15035 */ MCD::OPC_CheckPredicate, 26, 79, 16, 0, // Skip to: 19215 9923/* 15040 */ MCD::OPC_Decode, 159, 25, 143, 2, // Opcode: VRSRAuv1i64 9924/* 15045 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 15068 9925/* 15050 */ MCD::OPC_CheckPredicate, 26, 64, 16, 0, // Skip to: 19215 9926/* 15055 */ MCD::OPC_CheckField, 24, 8, 243, 1, 56, 16, 0, // Skip to: 19215 9927/* 15063 */ MCD::OPC_Decode, 151, 26, 143, 2, // Opcode: VSRIv1i64 9928/* 15068 */ MCD::OPC_FilterValue, 5, 35, 0, 0, // Skip to: 15108 9929/* 15073 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9930/* 15076 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15092 9931/* 15082 */ MCD::OPC_CheckPredicate, 26, 32, 16, 0, // Skip to: 19215 9932/* 15087 */ MCD::OPC_Decode, 200, 25, 144, 2, // Opcode: VSHLiv1i64 9933/* 15092 */ MCD::OPC_FilterValue, 243, 1, 21, 16, 0, // Skip to: 19215 9934/* 15098 */ MCD::OPC_CheckPredicate, 26, 16, 16, 0, // Skip to: 19215 9935/* 15103 */ MCD::OPC_Decode, 249, 25, 145, 2, // Opcode: VSLIv1i64 9936/* 15108 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 15131 9937/* 15113 */ MCD::OPC_CheckPredicate, 26, 1, 16, 0, // Skip to: 19215 9938/* 15118 */ MCD::OPC_CheckField, 24, 8, 243, 1, 249, 15, 0, // Skip to: 19215 9939/* 15126 */ MCD::OPC_Decode, 223, 23, 144, 2, // Opcode: VQSHLsuv1i64 9940/* 15131 */ MCD::OPC_FilterValue, 7, 239, 15, 0, // Skip to: 19215 9941/* 15136 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9942/* 15139 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15155 9943/* 15145 */ MCD::OPC_CheckPredicate, 26, 225, 15, 0, // Skip to: 19215 9944/* 15150 */ MCD::OPC_Decode, 215, 23, 144, 2, // Opcode: VQSHLsiv1i64 9945/* 15155 */ MCD::OPC_FilterValue, 243, 1, 214, 15, 0, // Skip to: 19215 9946/* 15161 */ MCD::OPC_CheckPredicate, 26, 209, 15, 0, // Skip to: 19215 9947/* 15166 */ MCD::OPC_Decode, 239, 23, 144, 2, // Opcode: VQSHLuiv1i64 9948/* 15171 */ MCD::OPC_FilterValue, 1, 199, 15, 0, // Skip to: 19215 9949/* 15176 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 9950/* 15179 */ MCD::OPC_FilterValue, 0, 179, 7, 0, // Skip to: 17155 9951/* 15184 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 9952/* 15187 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 15355 9953/* 15192 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9954/* 15195 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 15235 9955/* 15200 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9956/* 15203 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15219 9957/* 15209 */ MCD::OPC_CheckPredicate, 26, 161, 15, 0, // Skip to: 19215 9958/* 15214 */ MCD::OPC_Decode, 242, 22, 206, 1, // Opcode: VQADDsv16i8 9959/* 15219 */ MCD::OPC_FilterValue, 243, 1, 150, 15, 0, // Skip to: 19215 9960/* 15225 */ MCD::OPC_CheckPredicate, 26, 145, 15, 0, // Skip to: 19215 9961/* 15230 */ MCD::OPC_Decode, 250, 22, 206, 1, // Opcode: VQADDuv16i8 9962/* 15235 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 15275 9963/* 15240 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9964/* 15243 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15259 9965/* 15249 */ MCD::OPC_CheckPredicate, 26, 121, 15, 0, // Skip to: 19215 9966/* 15254 */ MCD::OPC_Decode, 248, 22, 206, 1, // Opcode: VQADDsv8i16 9967/* 15259 */ MCD::OPC_FilterValue, 243, 1, 110, 15, 0, // Skip to: 19215 9968/* 15265 */ MCD::OPC_CheckPredicate, 26, 105, 15, 0, // Skip to: 19215 9969/* 15270 */ MCD::OPC_Decode, 128, 23, 206, 1, // Opcode: VQADDuv8i16 9970/* 15275 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 15315 9971/* 15280 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9972/* 15283 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15299 9973/* 15289 */ MCD::OPC_CheckPredicate, 26, 81, 15, 0, // Skip to: 19215 9974/* 15294 */ MCD::OPC_Decode, 247, 22, 206, 1, // Opcode: VQADDsv4i32 9975/* 15299 */ MCD::OPC_FilterValue, 243, 1, 70, 15, 0, // Skip to: 19215 9976/* 15305 */ MCD::OPC_CheckPredicate, 26, 65, 15, 0, // Skip to: 19215 9977/* 15310 */ MCD::OPC_Decode, 255, 22, 206, 1, // Opcode: VQADDuv4i32 9978/* 15315 */ MCD::OPC_FilterValue, 3, 55, 15, 0, // Skip to: 19215 9979/* 15320 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9980/* 15323 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15339 9981/* 15329 */ MCD::OPC_CheckPredicate, 26, 41, 15, 0, // Skip to: 19215 9982/* 15334 */ MCD::OPC_Decode, 245, 22, 206, 1, // Opcode: VQADDsv2i64 9983/* 15339 */ MCD::OPC_FilterValue, 243, 1, 30, 15, 0, // Skip to: 19215 9984/* 15345 */ MCD::OPC_CheckPredicate, 26, 25, 15, 0, // Skip to: 19215 9985/* 15350 */ MCD::OPC_Decode, 253, 22, 206, 1, // Opcode: VQADDuv2i64 9986/* 15355 */ MCD::OPC_FilterValue, 1, 163, 0, 0, // Skip to: 15523 9987/* 15360 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 9988/* 15363 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 15403 9989/* 15368 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9990/* 15371 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15387 9991/* 15377 */ MCD::OPC_CheckPredicate, 26, 249, 14, 0, // Skip to: 19215 9992/* 15382 */ MCD::OPC_Decode, 179, 15, 206, 1, // Opcode: VANDq 9993/* 15387 */ MCD::OPC_FilterValue, 243, 1, 238, 14, 0, // Skip to: 19215 9994/* 15393 */ MCD::OPC_CheckPredicate, 26, 233, 14, 0, // Skip to: 19215 9995/* 15398 */ MCD::OPC_Decode, 182, 17, 206, 1, // Opcode: VEORq 9996/* 15403 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 15443 9997/* 15408 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 9998/* 15411 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15427 9999/* 15417 */ MCD::OPC_CheckPredicate, 26, 209, 14, 0, // Skip to: 19215 10000/* 15422 */ MCD::OPC_Decode, 185, 15, 206, 1, // Opcode: VBICq 10001/* 15427 */ MCD::OPC_FilterValue, 243, 1, 198, 14, 0, // Skip to: 19215 10002/* 15433 */ MCD::OPC_CheckPredicate, 26, 193, 14, 0, // Skip to: 19215 10003/* 15438 */ MCD::OPC_Decode, 191, 15, 214, 1, // Opcode: VBSLq 10004/* 15443 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 15483 10005/* 15448 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10006/* 15451 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15467 10007/* 15457 */ MCD::OPC_CheckPredicate, 26, 169, 14, 0, // Skip to: 19215 10008/* 15462 */ MCD::OPC_Decode, 190, 22, 206, 1, // Opcode: VORRq 10009/* 15467 */ MCD::OPC_FilterValue, 243, 1, 158, 14, 0, // Skip to: 19215 10010/* 15473 */ MCD::OPC_CheckPredicate, 26, 153, 14, 0, // Skip to: 19215 10011/* 15478 */ MCD::OPC_Decode, 189, 15, 214, 1, // Opcode: VBITq 10012/* 15483 */ MCD::OPC_FilterValue, 3, 143, 14, 0, // Skip to: 19215 10013/* 15488 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10014/* 15491 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15507 10015/* 15497 */ MCD::OPC_CheckPredicate, 26, 129, 14, 0, // Skip to: 19215 10016/* 15502 */ MCD::OPC_Decode, 184, 22, 206, 1, // Opcode: VORNq 10017/* 15507 */ MCD::OPC_FilterValue, 243, 1, 118, 14, 0, // Skip to: 19215 10018/* 15513 */ MCD::OPC_CheckPredicate, 26, 113, 14, 0, // Skip to: 19215 10019/* 15518 */ MCD::OPC_Decode, 187, 15, 214, 1, // Opcode: VBIFq 10020/* 15523 */ MCD::OPC_FilterValue, 2, 163, 0, 0, // Skip to: 15691 10021/* 15528 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10022/* 15531 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 15571 10023/* 15536 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10024/* 15539 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15555 10025/* 15545 */ MCD::OPC_CheckPredicate, 26, 81, 14, 0, // Skip to: 19215 10026/* 15550 */ MCD::OPC_Decode, 135, 24, 206, 1, // Opcode: VQSUBsv16i8 10027/* 15555 */ MCD::OPC_FilterValue, 243, 1, 70, 14, 0, // Skip to: 19215 10028/* 15561 */ MCD::OPC_CheckPredicate, 26, 65, 14, 0, // Skip to: 19215 10029/* 15566 */ MCD::OPC_Decode, 143, 24, 206, 1, // Opcode: VQSUBuv16i8 10030/* 15571 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 15611 10031/* 15576 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10032/* 15579 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15595 10033/* 15585 */ MCD::OPC_CheckPredicate, 26, 41, 14, 0, // Skip to: 19215 10034/* 15590 */ MCD::OPC_Decode, 141, 24, 206, 1, // Opcode: VQSUBsv8i16 10035/* 15595 */ MCD::OPC_FilterValue, 243, 1, 30, 14, 0, // Skip to: 19215 10036/* 15601 */ MCD::OPC_CheckPredicate, 26, 25, 14, 0, // Skip to: 19215 10037/* 15606 */ MCD::OPC_Decode, 149, 24, 206, 1, // Opcode: VQSUBuv8i16 10038/* 15611 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 15651 10039/* 15616 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10040/* 15619 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15635 10041/* 15625 */ MCD::OPC_CheckPredicate, 26, 1, 14, 0, // Skip to: 19215 10042/* 15630 */ MCD::OPC_Decode, 140, 24, 206, 1, // Opcode: VQSUBsv4i32 10043/* 15635 */ MCD::OPC_FilterValue, 243, 1, 246, 13, 0, // Skip to: 19215 10044/* 15641 */ MCD::OPC_CheckPredicate, 26, 241, 13, 0, // Skip to: 19215 10045/* 15646 */ MCD::OPC_Decode, 148, 24, 206, 1, // Opcode: VQSUBuv4i32 10046/* 15651 */ MCD::OPC_FilterValue, 3, 231, 13, 0, // Skip to: 19215 10047/* 15656 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10048/* 15659 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15675 10049/* 15665 */ MCD::OPC_CheckPredicate, 26, 217, 13, 0, // Skip to: 19215 10050/* 15670 */ MCD::OPC_Decode, 138, 24, 206, 1, // Opcode: VQSUBsv2i64 10051/* 15675 */ MCD::OPC_FilterValue, 243, 1, 206, 13, 0, // Skip to: 19215 10052/* 15681 */ MCD::OPC_CheckPredicate, 26, 201, 13, 0, // Skip to: 19215 10053/* 15686 */ MCD::OPC_Decode, 146, 24, 206, 1, // Opcode: VQSUBuv2i64 10054/* 15691 */ MCD::OPC_FilterValue, 3, 123, 0, 0, // Skip to: 15819 10055/* 15696 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10056/* 15699 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 15739 10057/* 15704 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10058/* 15707 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15723 10059/* 15713 */ MCD::OPC_CheckPredicate, 26, 169, 13, 0, // Skip to: 19215 10060/* 15718 */ MCD::OPC_Decode, 220, 15, 206, 1, // Opcode: VCGEsv16i8 10061/* 15723 */ MCD::OPC_FilterValue, 243, 1, 158, 13, 0, // Skip to: 19215 10062/* 15729 */ MCD::OPC_CheckPredicate, 26, 153, 13, 0, // Skip to: 19215 10063/* 15734 */ MCD::OPC_Decode, 226, 15, 206, 1, // Opcode: VCGEuv16i8 10064/* 15739 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 15779 10065/* 15744 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10066/* 15747 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15763 10067/* 15753 */ MCD::OPC_CheckPredicate, 26, 129, 13, 0, // Skip to: 19215 10068/* 15758 */ MCD::OPC_Decode, 224, 15, 206, 1, // Opcode: VCGEsv8i16 10069/* 15763 */ MCD::OPC_FilterValue, 243, 1, 118, 13, 0, // Skip to: 19215 10070/* 15769 */ MCD::OPC_CheckPredicate, 26, 113, 13, 0, // Skip to: 19215 10071/* 15774 */ MCD::OPC_Decode, 230, 15, 206, 1, // Opcode: VCGEuv8i16 10072/* 15779 */ MCD::OPC_FilterValue, 2, 103, 13, 0, // Skip to: 19215 10073/* 15784 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10074/* 15787 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15803 10075/* 15793 */ MCD::OPC_CheckPredicate, 26, 89, 13, 0, // Skip to: 19215 10076/* 15798 */ MCD::OPC_Decode, 223, 15, 206, 1, // Opcode: VCGEsv4i32 10077/* 15803 */ MCD::OPC_FilterValue, 243, 1, 78, 13, 0, // Skip to: 19215 10078/* 15809 */ MCD::OPC_CheckPredicate, 26, 73, 13, 0, // Skip to: 19215 10079/* 15814 */ MCD::OPC_Decode, 229, 15, 206, 1, // Opcode: VCGEuv4i32 10080/* 15819 */ MCD::OPC_FilterValue, 4, 163, 0, 0, // Skip to: 15987 10081/* 15824 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10082/* 15827 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 15867 10083/* 15832 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10084/* 15835 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15851 10085/* 15841 */ MCD::OPC_CheckPredicate, 26, 41, 13, 0, // Skip to: 19215 10086/* 15846 */ MCD::OPC_Decode, 230, 23, 210, 1, // Opcode: VQSHLsv16i8 10087/* 15851 */ MCD::OPC_FilterValue, 243, 1, 30, 13, 0, // Skip to: 19215 10088/* 15857 */ MCD::OPC_CheckPredicate, 26, 25, 13, 0, // Skip to: 19215 10089/* 15862 */ MCD::OPC_Decode, 246, 23, 210, 1, // Opcode: VQSHLuv16i8 10090/* 15867 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 15907 10091/* 15872 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10092/* 15875 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15891 10093/* 15881 */ MCD::OPC_CheckPredicate, 26, 1, 13, 0, // Skip to: 19215 10094/* 15886 */ MCD::OPC_Decode, 236, 23, 210, 1, // Opcode: VQSHLsv8i16 10095/* 15891 */ MCD::OPC_FilterValue, 243, 1, 246, 12, 0, // Skip to: 19215 10096/* 15897 */ MCD::OPC_CheckPredicate, 26, 241, 12, 0, // Skip to: 19215 10097/* 15902 */ MCD::OPC_Decode, 252, 23, 210, 1, // Opcode: VQSHLuv8i16 10098/* 15907 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 15947 10099/* 15912 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10100/* 15915 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15931 10101/* 15921 */ MCD::OPC_CheckPredicate, 26, 217, 12, 0, // Skip to: 19215 10102/* 15926 */ MCD::OPC_Decode, 235, 23, 210, 1, // Opcode: VQSHLsv4i32 10103/* 15931 */ MCD::OPC_FilterValue, 243, 1, 206, 12, 0, // Skip to: 19215 10104/* 15937 */ MCD::OPC_CheckPredicate, 26, 201, 12, 0, // Skip to: 19215 10105/* 15942 */ MCD::OPC_Decode, 251, 23, 210, 1, // Opcode: VQSHLuv4i32 10106/* 15947 */ MCD::OPC_FilterValue, 3, 191, 12, 0, // Skip to: 19215 10107/* 15952 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10108/* 15955 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 15971 10109/* 15961 */ MCD::OPC_CheckPredicate, 26, 177, 12, 0, // Skip to: 19215 10110/* 15966 */ MCD::OPC_Decode, 233, 23, 210, 1, // Opcode: VQSHLsv2i64 10111/* 15971 */ MCD::OPC_FilterValue, 243, 1, 166, 12, 0, // Skip to: 19215 10112/* 15977 */ MCD::OPC_CheckPredicate, 26, 161, 12, 0, // Skip to: 19215 10113/* 15982 */ MCD::OPC_Decode, 249, 23, 210, 1, // Opcode: VQSHLuv2i64 10114/* 15987 */ MCD::OPC_FilterValue, 5, 163, 0, 0, // Skip to: 16155 10115/* 15992 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10116/* 15995 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16035 10117/* 16000 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10118/* 16003 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16019 10119/* 16009 */ MCD::OPC_CheckPredicate, 26, 129, 12, 0, // Skip to: 19215 10120/* 16014 */ MCD::OPC_Decode, 189, 23, 210, 1, // Opcode: VQRSHLsv16i8 10121/* 16019 */ MCD::OPC_FilterValue, 243, 1, 118, 12, 0, // Skip to: 19215 10122/* 16025 */ MCD::OPC_CheckPredicate, 26, 113, 12, 0, // Skip to: 19215 10123/* 16030 */ MCD::OPC_Decode, 197, 23, 210, 1, // Opcode: VQRSHLuv16i8 10124/* 16035 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16075 10125/* 16040 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10126/* 16043 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16059 10127/* 16049 */ MCD::OPC_CheckPredicate, 26, 89, 12, 0, // Skip to: 19215 10128/* 16054 */ MCD::OPC_Decode, 195, 23, 210, 1, // Opcode: VQRSHLsv8i16 10129/* 16059 */ MCD::OPC_FilterValue, 243, 1, 78, 12, 0, // Skip to: 19215 10130/* 16065 */ MCD::OPC_CheckPredicate, 26, 73, 12, 0, // Skip to: 19215 10131/* 16070 */ MCD::OPC_Decode, 203, 23, 210, 1, // Opcode: VQRSHLuv8i16 10132/* 16075 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 16115 10133/* 16080 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10134/* 16083 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16099 10135/* 16089 */ MCD::OPC_CheckPredicate, 26, 49, 12, 0, // Skip to: 19215 10136/* 16094 */ MCD::OPC_Decode, 194, 23, 210, 1, // Opcode: VQRSHLsv4i32 10137/* 16099 */ MCD::OPC_FilterValue, 243, 1, 38, 12, 0, // Skip to: 19215 10138/* 16105 */ MCD::OPC_CheckPredicate, 26, 33, 12, 0, // Skip to: 19215 10139/* 16110 */ MCD::OPC_Decode, 202, 23, 210, 1, // Opcode: VQRSHLuv4i32 10140/* 16115 */ MCD::OPC_FilterValue, 3, 23, 12, 0, // Skip to: 19215 10141/* 16120 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10142/* 16123 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16139 10143/* 16129 */ MCD::OPC_CheckPredicate, 26, 9, 12, 0, // Skip to: 19215 10144/* 16134 */ MCD::OPC_Decode, 192, 23, 210, 1, // Opcode: VQRSHLsv2i64 10145/* 16139 */ MCD::OPC_FilterValue, 243, 1, 254, 11, 0, // Skip to: 19215 10146/* 16145 */ MCD::OPC_CheckPredicate, 26, 249, 11, 0, // Skip to: 19215 10147/* 16150 */ MCD::OPC_Decode, 200, 23, 210, 1, // Opcode: VQRSHLuv2i64 10148/* 16155 */ MCD::OPC_FilterValue, 6, 123, 0, 0, // Skip to: 16283 10149/* 16160 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10150/* 16163 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16203 10151/* 16168 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10152/* 16171 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16187 10153/* 16177 */ MCD::OPC_CheckPredicate, 26, 217, 11, 0, // Skip to: 19215 10154/* 16182 */ MCD::OPC_Decode, 249, 20, 206, 1, // Opcode: VMINsv16i8 10155/* 16187 */ MCD::OPC_FilterValue, 243, 1, 206, 11, 0, // Skip to: 19215 10156/* 16193 */ MCD::OPC_CheckPredicate, 26, 201, 11, 0, // Skip to: 19215 10157/* 16198 */ MCD::OPC_Decode, 255, 20, 206, 1, // Opcode: VMINuv16i8 10158/* 16203 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16243 10159/* 16208 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10160/* 16211 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16227 10161/* 16217 */ MCD::OPC_CheckPredicate, 26, 177, 11, 0, // Skip to: 19215 10162/* 16222 */ MCD::OPC_Decode, 253, 20, 206, 1, // Opcode: VMINsv8i16 10163/* 16227 */ MCD::OPC_FilterValue, 243, 1, 166, 11, 0, // Skip to: 19215 10164/* 16233 */ MCD::OPC_CheckPredicate, 26, 161, 11, 0, // Skip to: 19215 10165/* 16238 */ MCD::OPC_Decode, 131, 21, 206, 1, // Opcode: VMINuv8i16 10166/* 16243 */ MCD::OPC_FilterValue, 2, 151, 11, 0, // Skip to: 19215 10167/* 16248 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10168/* 16251 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16267 10169/* 16257 */ MCD::OPC_CheckPredicate, 26, 137, 11, 0, // Skip to: 19215 10170/* 16262 */ MCD::OPC_Decode, 252, 20, 206, 1, // Opcode: VMINsv4i32 10171/* 16267 */ MCD::OPC_FilterValue, 243, 1, 126, 11, 0, // Skip to: 19215 10172/* 16273 */ MCD::OPC_CheckPredicate, 26, 121, 11, 0, // Skip to: 19215 10173/* 16278 */ MCD::OPC_Decode, 130, 21, 206, 1, // Opcode: VMINuv4i32 10174/* 16283 */ MCD::OPC_FilterValue, 7, 123, 0, 0, // Skip to: 16411 10175/* 16288 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10176/* 16291 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16331 10177/* 16296 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10178/* 16299 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16315 10179/* 16305 */ MCD::OPC_CheckPredicate, 26, 89, 11, 0, // Skip to: 19215 10180/* 16310 */ MCD::OPC_Decode, 221, 14, 214, 1, // Opcode: VABAsv16i8 10181/* 16315 */ MCD::OPC_FilterValue, 243, 1, 78, 11, 0, // Skip to: 19215 10182/* 16321 */ MCD::OPC_CheckPredicate, 26, 73, 11, 0, // Skip to: 19215 10183/* 16326 */ MCD::OPC_Decode, 227, 14, 214, 1, // Opcode: VABAuv16i8 10184/* 16331 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16371 10185/* 16336 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10186/* 16339 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16355 10187/* 16345 */ MCD::OPC_CheckPredicate, 26, 49, 11, 0, // Skip to: 19215 10188/* 16350 */ MCD::OPC_Decode, 225, 14, 214, 1, // Opcode: VABAsv8i16 10189/* 16355 */ MCD::OPC_FilterValue, 243, 1, 38, 11, 0, // Skip to: 19215 10190/* 16361 */ MCD::OPC_CheckPredicate, 26, 33, 11, 0, // Skip to: 19215 10191/* 16366 */ MCD::OPC_Decode, 231, 14, 214, 1, // Opcode: VABAuv8i16 10192/* 16371 */ MCD::OPC_FilterValue, 2, 23, 11, 0, // Skip to: 19215 10193/* 16376 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10194/* 16379 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16395 10195/* 16385 */ MCD::OPC_CheckPredicate, 26, 9, 11, 0, // Skip to: 19215 10196/* 16390 */ MCD::OPC_Decode, 224, 14, 214, 1, // Opcode: VABAsv4i32 10197/* 16395 */ MCD::OPC_FilterValue, 243, 1, 254, 10, 0, // Skip to: 19215 10198/* 16401 */ MCD::OPC_CheckPredicate, 26, 249, 10, 0, // Skip to: 19215 10199/* 16406 */ MCD::OPC_Decode, 230, 14, 214, 1, // Opcode: VABAuv4i32 10200/* 16411 */ MCD::OPC_FilterValue, 8, 123, 0, 0, // Skip to: 16539 10201/* 16416 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10202/* 16419 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16459 10203/* 16424 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10204/* 16427 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16443 10205/* 16433 */ MCD::OPC_CheckPredicate, 26, 217, 10, 0, // Skip to: 19215 10206/* 16438 */ MCD::OPC_Decode, 242, 28, 206, 1, // Opcode: VTSTv16i8 10207/* 16443 */ MCD::OPC_FilterValue, 243, 1, 206, 10, 0, // Skip to: 19215 10208/* 16449 */ MCD::OPC_CheckPredicate, 26, 201, 10, 0, // Skip to: 19215 10209/* 16454 */ MCD::OPC_Decode, 200, 15, 206, 1, // Opcode: VCEQv16i8 10210/* 16459 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16499 10211/* 16464 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10212/* 16467 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16483 10213/* 16473 */ MCD::OPC_CheckPredicate, 26, 177, 10, 0, // Skip to: 19215 10214/* 16478 */ MCD::OPC_Decode, 246, 28, 206, 1, // Opcode: VTSTv8i16 10215/* 16483 */ MCD::OPC_FilterValue, 243, 1, 166, 10, 0, // Skip to: 19215 10216/* 16489 */ MCD::OPC_CheckPredicate, 26, 161, 10, 0, // Skip to: 19215 10217/* 16494 */ MCD::OPC_Decode, 204, 15, 206, 1, // Opcode: VCEQv8i16 10218/* 16499 */ MCD::OPC_FilterValue, 2, 151, 10, 0, // Skip to: 19215 10219/* 16504 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10220/* 16507 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16523 10221/* 16513 */ MCD::OPC_CheckPredicate, 26, 137, 10, 0, // Skip to: 19215 10222/* 16518 */ MCD::OPC_Decode, 245, 28, 206, 1, // Opcode: VTSTv4i32 10223/* 16523 */ MCD::OPC_FilterValue, 243, 1, 126, 10, 0, // Skip to: 19215 10224/* 16529 */ MCD::OPC_CheckPredicate, 26, 121, 10, 0, // Skip to: 19215 10225/* 16534 */ MCD::OPC_Decode, 203, 15, 206, 1, // Opcode: VCEQv4i32 10226/* 16539 */ MCD::OPC_FilterValue, 9, 89, 0, 0, // Skip to: 16633 10227/* 16544 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10228/* 16547 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16587 10229/* 16552 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10230/* 16555 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16571 10231/* 16561 */ MCD::OPC_CheckPredicate, 26, 89, 10, 0, // Skip to: 19215 10232/* 16566 */ MCD::OPC_Decode, 149, 22, 206, 1, // Opcode: VMULv16i8 10233/* 16571 */ MCD::OPC_FilterValue, 243, 1, 78, 10, 0, // Skip to: 19215 10234/* 16577 */ MCD::OPC_CheckPredicate, 26, 73, 10, 0, // Skip to: 19215 10235/* 16582 */ MCD::OPC_Decode, 140, 22, 206, 1, // Opcode: VMULpq 10236/* 16587 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 16610 10237/* 16592 */ MCD::OPC_CheckPredicate, 26, 58, 10, 0, // Skip to: 19215 10238/* 16597 */ MCD::OPC_CheckField, 24, 8, 242, 1, 50, 10, 0, // Skip to: 19215 10239/* 16605 */ MCD::OPC_Decode, 153, 22, 206, 1, // Opcode: VMULv8i16 10240/* 16610 */ MCD::OPC_FilterValue, 2, 40, 10, 0, // Skip to: 19215 10241/* 16615 */ MCD::OPC_CheckPredicate, 26, 35, 10, 0, // Skip to: 19215 10242/* 16620 */ MCD::OPC_CheckField, 24, 8, 242, 1, 27, 10, 0, // Skip to: 19215 10243/* 16628 */ MCD::OPC_Decode, 152, 22, 206, 1, // Opcode: VMULv4i32 10244/* 16633 */ MCD::OPC_FilterValue, 11, 49, 0, 0, // Skip to: 16687 10245/* 16638 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10246/* 16641 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 16664 10247/* 16646 */ MCD::OPC_CheckPredicate, 28, 4, 10, 0, // Skip to: 19215 10248/* 16651 */ MCD::OPC_CheckField, 24, 8, 243, 1, 252, 9, 0, // Skip to: 19215 10249/* 16659 */ MCD::OPC_Decode, 172, 23, 214, 1, // Opcode: VQRDMLAHv8i16 10250/* 16664 */ MCD::OPC_FilterValue, 2, 242, 9, 0, // Skip to: 19215 10251/* 16669 */ MCD::OPC_CheckPredicate, 28, 237, 9, 0, // Skip to: 19215 10252/* 16674 */ MCD::OPC_CheckField, 24, 8, 243, 1, 229, 9, 0, // Skip to: 19215 10253/* 16682 */ MCD::OPC_Decode, 171, 23, 214, 1, // Opcode: VQRDMLAHv4i32 10254/* 16687 */ MCD::OPC_FilterValue, 12, 129, 0, 0, // Skip to: 16821 10255/* 16692 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10256/* 16695 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 16718 10257/* 16700 */ MCD::OPC_CheckPredicate, 31, 206, 9, 0, // Skip to: 19215 10258/* 16705 */ MCD::OPC_CheckField, 24, 8, 242, 1, 198, 9, 0, // Skip to: 19215 10259/* 16713 */ MCD::OPC_Decode, 198, 17, 214, 1, // Opcode: VFMAfq 10260/* 16718 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16758 10261/* 16723 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10262/* 16726 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16742 10263/* 16732 */ MCD::OPC_CheckPredicate, 27, 174, 9, 0, // Skip to: 19215 10264/* 16737 */ MCD::OPC_Decode, 200, 17, 214, 1, // Opcode: VFMAhq 10265/* 16742 */ MCD::OPC_FilterValue, 243, 1, 163, 9, 0, // Skip to: 19215 10266/* 16748 */ MCD::OPC_CheckPredicate, 28, 158, 9, 0, // Skip to: 19215 10267/* 16753 */ MCD::OPC_Decode, 180, 23, 214, 1, // Opcode: VQRDMLSHv8i16 10268/* 16758 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 16798 10269/* 16763 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10270/* 16766 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16782 10271/* 16772 */ MCD::OPC_CheckPredicate, 31, 134, 9, 0, // Skip to: 19215 10272/* 16777 */ MCD::OPC_Decode, 209, 17, 214, 1, // Opcode: VFMSfq 10273/* 16782 */ MCD::OPC_FilterValue, 243, 1, 123, 9, 0, // Skip to: 19215 10274/* 16788 */ MCD::OPC_CheckPredicate, 28, 118, 9, 0, // Skip to: 19215 10275/* 16793 */ MCD::OPC_Decode, 179, 23, 214, 1, // Opcode: VQRDMLSHv4i32 10276/* 16798 */ MCD::OPC_FilterValue, 3, 108, 9, 0, // Skip to: 19215 10277/* 16803 */ MCD::OPC_CheckPredicate, 27, 103, 9, 0, // Skip to: 19215 10278/* 16808 */ MCD::OPC_CheckField, 24, 8, 242, 1, 95, 9, 0, // Skip to: 19215 10279/* 16816 */ MCD::OPC_Decode, 211, 17, 214, 1, // Opcode: VFMShq 10280/* 16821 */ MCD::OPC_FilterValue, 13, 129, 0, 0, // Skip to: 16955 10281/* 16826 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10282/* 16829 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 16869 10283/* 16834 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10284/* 16837 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16853 10285/* 16843 */ MCD::OPC_CheckPredicate, 26, 63, 9, 0, // Skip to: 19215 10286/* 16848 */ MCD::OPC_Decode, 147, 21, 214, 1, // Opcode: VMLAfq 10287/* 16853 */ MCD::OPC_FilterValue, 243, 1, 52, 9, 0, // Skip to: 19215 10288/* 16859 */ MCD::OPC_CheckPredicate, 26, 47, 9, 0, // Skip to: 19215 10289/* 16864 */ MCD::OPC_Decode, 136, 22, 206, 1, // Opcode: VMULfq 10290/* 16869 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 16909 10291/* 16874 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10292/* 16877 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 16893 10293/* 16883 */ MCD::OPC_CheckPredicate, 27, 23, 9, 0, // Skip to: 19215 10294/* 16888 */ MCD::OPC_Decode, 149, 21, 214, 1, // Opcode: VMLAhq 10295/* 16893 */ MCD::OPC_FilterValue, 243, 1, 12, 9, 0, // Skip to: 19215 10296/* 16899 */ MCD::OPC_CheckPredicate, 27, 7, 9, 0, // Skip to: 19215 10297/* 16904 */ MCD::OPC_Decode, 138, 22, 206, 1, // Opcode: VMULhq 10298/* 16909 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 16932 10299/* 16914 */ MCD::OPC_CheckPredicate, 26, 248, 8, 0, // Skip to: 19215 10300/* 16919 */ MCD::OPC_CheckField, 24, 8, 242, 1, 240, 8, 0, // Skip to: 19215 10301/* 16927 */ MCD::OPC_Decode, 178, 21, 214, 1, // Opcode: VMLSfq 10302/* 16932 */ MCD::OPC_FilterValue, 3, 230, 8, 0, // Skip to: 19215 10303/* 16937 */ MCD::OPC_CheckPredicate, 27, 225, 8, 0, // Skip to: 19215 10304/* 16942 */ MCD::OPC_CheckField, 24, 8, 242, 1, 217, 8, 0, // Skip to: 19215 10305/* 16950 */ MCD::OPC_Decode, 180, 21, 214, 1, // Opcode: VMLShq 10306/* 16955 */ MCD::OPC_FilterValue, 14, 95, 0, 0, // Skip to: 17055 10307/* 16960 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10308/* 16963 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 16986 10309/* 16968 */ MCD::OPC_CheckPredicate, 26, 194, 8, 0, // Skip to: 19215 10310/* 16973 */ MCD::OPC_CheckField, 24, 8, 243, 1, 186, 8, 0, // Skip to: 19215 10311/* 16981 */ MCD::OPC_Decode, 141, 15, 206, 1, // Opcode: VACGEfq 10312/* 16986 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 17009 10313/* 16991 */ MCD::OPC_CheckPredicate, 27, 171, 8, 0, // Skip to: 19215 10314/* 16996 */ MCD::OPC_CheckField, 24, 8, 243, 1, 163, 8, 0, // Skip to: 19215 10315/* 17004 */ MCD::OPC_Decode, 143, 15, 206, 1, // Opcode: VACGEhq 10316/* 17009 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 17032 10317/* 17014 */ MCD::OPC_CheckPredicate, 26, 148, 8, 0, // Skip to: 19215 10318/* 17019 */ MCD::OPC_CheckField, 24, 8, 243, 1, 140, 8, 0, // Skip to: 19215 10319/* 17027 */ MCD::OPC_Decode, 145, 15, 206, 1, // Opcode: VACGTfq 10320/* 17032 */ MCD::OPC_FilterValue, 3, 130, 8, 0, // Skip to: 19215 10321/* 17037 */ MCD::OPC_CheckPredicate, 27, 125, 8, 0, // Skip to: 19215 10322/* 17042 */ MCD::OPC_CheckField, 24, 8, 243, 1, 117, 8, 0, // Skip to: 19215 10323/* 17050 */ MCD::OPC_Decode, 147, 15, 206, 1, // Opcode: VACGThq 10324/* 17055 */ MCD::OPC_FilterValue, 15, 107, 8, 0, // Skip to: 19215 10325/* 17060 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10326/* 17063 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 17086 10327/* 17068 */ MCD::OPC_CheckPredicate, 26, 94, 8, 0, // Skip to: 19215 10328/* 17073 */ MCD::OPC_CheckField, 24, 8, 242, 1, 86, 8, 0, // Skip to: 19215 10329/* 17081 */ MCD::OPC_Decode, 161, 24, 206, 1, // Opcode: VRECPSfq 10330/* 17086 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 17109 10331/* 17091 */ MCD::OPC_CheckPredicate, 27, 71, 8, 0, // Skip to: 19215 10332/* 17096 */ MCD::OPC_CheckField, 24, 8, 242, 1, 63, 8, 0, // Skip to: 19215 10333/* 17104 */ MCD::OPC_Decode, 163, 24, 206, 1, // Opcode: VRECPShq 10334/* 17109 */ MCD::OPC_FilterValue, 2, 18, 0, 0, // Skip to: 17132 10335/* 17114 */ MCD::OPC_CheckPredicate, 26, 48, 8, 0, // Skip to: 19215 10336/* 17119 */ MCD::OPC_CheckField, 24, 8, 242, 1, 40, 8, 0, // Skip to: 19215 10337/* 17127 */ MCD::OPC_Decode, 147, 25, 206, 1, // Opcode: VRSQRTSfq 10338/* 17132 */ MCD::OPC_FilterValue, 3, 30, 8, 0, // Skip to: 19215 10339/* 17137 */ MCD::OPC_CheckPredicate, 27, 25, 8, 0, // Skip to: 19215 10340/* 17142 */ MCD::OPC_CheckField, 24, 8, 242, 1, 17, 8, 0, // Skip to: 19215 10341/* 17150 */ MCD::OPC_Decode, 149, 25, 206, 1, // Opcode: VRSQRTShq 10342/* 17155 */ MCD::OPC_FilterValue, 1, 7, 8, 0, // Skip to: 19215 10343/* 17160 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 10344/* 17163 */ MCD::OPC_FilterValue, 0, 217, 6, 0, // Skip to: 18921 10345/* 17168 */ MCD::OPC_ExtractField, 25, 7, // Inst{31-25} ... 10346/* 17171 */ MCD::OPC_FilterValue, 121, 247, 7, 0, // Skip to: 19215 10347/* 17176 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 10348/* 17179 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 17323 10349/* 17184 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10350/* 17187 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 17285 10351/* 17192 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10352/* 17195 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 17247 10353/* 17200 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10354/* 17203 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 17225 10355/* 17208 */ MCD::OPC_CheckPredicate, 26, 239, 5, 0, // Skip to: 18732 10356/* 17213 */ MCD::OPC_CheckField, 19, 1, 1, 232, 5, 0, // Skip to: 18732 10357/* 17220 */ MCD::OPC_Decode, 226, 25, 146, 2, // Opcode: VSHRsv16i8 10358/* 17225 */ MCD::OPC_FilterValue, 1, 222, 5, 0, // Skip to: 18732 10359/* 17230 */ MCD::OPC_CheckPredicate, 26, 217, 5, 0, // Skip to: 18732 10360/* 17235 */ MCD::OPC_CheckField, 19, 1, 1, 210, 5, 0, // Skip to: 18732 10361/* 17242 */ MCD::OPC_Decode, 234, 25, 146, 2, // Opcode: VSHRuv16i8 10362/* 17247 */ MCD::OPC_FilterValue, 1, 200, 5, 0, // Skip to: 18732 10363/* 17252 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10364/* 17255 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17270 10365/* 17260 */ MCD::OPC_CheckPredicate, 26, 187, 5, 0, // Skip to: 18732 10366/* 17265 */ MCD::OPC_Decode, 232, 25, 147, 2, // Opcode: VSHRsv8i16 10367/* 17270 */ MCD::OPC_FilterValue, 1, 177, 5, 0, // Skip to: 18732 10368/* 17275 */ MCD::OPC_CheckPredicate, 26, 172, 5, 0, // Skip to: 18732 10369/* 17280 */ MCD::OPC_Decode, 240, 25, 147, 2, // Opcode: VSHRuv8i16 10370/* 17285 */ MCD::OPC_FilterValue, 1, 162, 5, 0, // Skip to: 18732 10371/* 17290 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10372/* 17293 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17308 10373/* 17298 */ MCD::OPC_CheckPredicate, 26, 149, 5, 0, // Skip to: 18732 10374/* 17303 */ MCD::OPC_Decode, 231, 25, 148, 2, // Opcode: VSHRsv4i32 10375/* 17308 */ MCD::OPC_FilterValue, 1, 139, 5, 0, // Skip to: 18732 10376/* 17313 */ MCD::OPC_CheckPredicate, 26, 134, 5, 0, // Skip to: 18732 10377/* 17318 */ MCD::OPC_Decode, 239, 25, 148, 2, // Opcode: VSHRuv4i32 10378/* 17323 */ MCD::OPC_FilterValue, 1, 139, 0, 0, // Skip to: 17467 10379/* 17328 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10380/* 17331 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 17429 10381/* 17336 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10382/* 17339 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 17391 10383/* 17344 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10384/* 17347 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 17369 10385/* 17352 */ MCD::OPC_CheckPredicate, 26, 95, 5, 0, // Skip to: 18732 10386/* 17357 */ MCD::OPC_CheckField, 19, 1, 1, 88, 5, 0, // Skip to: 18732 10387/* 17364 */ MCD::OPC_Decode, 134, 26, 149, 2, // Opcode: VSRAsv16i8 10388/* 17369 */ MCD::OPC_FilterValue, 1, 78, 5, 0, // Skip to: 18732 10389/* 17374 */ MCD::OPC_CheckPredicate, 26, 73, 5, 0, // Skip to: 18732 10390/* 17379 */ MCD::OPC_CheckField, 19, 1, 1, 66, 5, 0, // Skip to: 18732 10391/* 17386 */ MCD::OPC_Decode, 142, 26, 149, 2, // Opcode: VSRAuv16i8 10392/* 17391 */ MCD::OPC_FilterValue, 1, 56, 5, 0, // Skip to: 18732 10393/* 17396 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10394/* 17399 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17414 10395/* 17404 */ MCD::OPC_CheckPredicate, 26, 43, 5, 0, // Skip to: 18732 10396/* 17409 */ MCD::OPC_Decode, 140, 26, 150, 2, // Opcode: VSRAsv8i16 10397/* 17414 */ MCD::OPC_FilterValue, 1, 33, 5, 0, // Skip to: 18732 10398/* 17419 */ MCD::OPC_CheckPredicate, 26, 28, 5, 0, // Skip to: 18732 10399/* 17424 */ MCD::OPC_Decode, 148, 26, 150, 2, // Opcode: VSRAuv8i16 10400/* 17429 */ MCD::OPC_FilterValue, 1, 18, 5, 0, // Skip to: 18732 10401/* 17434 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10402/* 17437 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17452 10403/* 17442 */ MCD::OPC_CheckPredicate, 26, 5, 5, 0, // Skip to: 18732 10404/* 17447 */ MCD::OPC_Decode, 139, 26, 151, 2, // Opcode: VSRAsv4i32 10405/* 17452 */ MCD::OPC_FilterValue, 1, 251, 4, 0, // Skip to: 18732 10406/* 17457 */ MCD::OPC_CheckPredicate, 26, 246, 4, 0, // Skip to: 18732 10407/* 17462 */ MCD::OPC_Decode, 147, 26, 151, 2, // Opcode: VSRAuv4i32 10408/* 17467 */ MCD::OPC_FilterValue, 2, 139, 0, 0, // Skip to: 17611 10409/* 17472 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10410/* 17475 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 17573 10411/* 17480 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10412/* 17483 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 17535 10413/* 17488 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10414/* 17491 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 17513 10415/* 17496 */ MCD::OPC_CheckPredicate, 26, 207, 4, 0, // Skip to: 18732 10416/* 17501 */ MCD::OPC_CheckField, 19, 1, 1, 200, 4, 0, // Skip to: 18732 10417/* 17508 */ MCD::OPC_Decode, 252, 24, 146, 2, // Opcode: VRSHRsv16i8 10418/* 17513 */ MCD::OPC_FilterValue, 1, 190, 4, 0, // Skip to: 18732 10419/* 17518 */ MCD::OPC_CheckPredicate, 26, 185, 4, 0, // Skip to: 18732 10420/* 17523 */ MCD::OPC_CheckField, 19, 1, 1, 178, 4, 0, // Skip to: 18732 10421/* 17530 */ MCD::OPC_Decode, 132, 25, 146, 2, // Opcode: VRSHRuv16i8 10422/* 17535 */ MCD::OPC_FilterValue, 1, 168, 4, 0, // Skip to: 18732 10423/* 17540 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10424/* 17543 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17558 10425/* 17548 */ MCD::OPC_CheckPredicate, 26, 155, 4, 0, // Skip to: 18732 10426/* 17553 */ MCD::OPC_Decode, 130, 25, 147, 2, // Opcode: VRSHRsv8i16 10427/* 17558 */ MCD::OPC_FilterValue, 1, 145, 4, 0, // Skip to: 18732 10428/* 17563 */ MCD::OPC_CheckPredicate, 26, 140, 4, 0, // Skip to: 18732 10429/* 17568 */ MCD::OPC_Decode, 138, 25, 147, 2, // Opcode: VRSHRuv8i16 10430/* 17573 */ MCD::OPC_FilterValue, 1, 130, 4, 0, // Skip to: 18732 10431/* 17578 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10432/* 17581 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17596 10433/* 17586 */ MCD::OPC_CheckPredicate, 26, 117, 4, 0, // Skip to: 18732 10434/* 17591 */ MCD::OPC_Decode, 129, 25, 148, 2, // Opcode: VRSHRsv4i32 10435/* 17596 */ MCD::OPC_FilterValue, 1, 107, 4, 0, // Skip to: 18732 10436/* 17601 */ MCD::OPC_CheckPredicate, 26, 102, 4, 0, // Skip to: 18732 10437/* 17606 */ MCD::OPC_Decode, 137, 25, 148, 2, // Opcode: VRSHRuv4i32 10438/* 17611 */ MCD::OPC_FilterValue, 3, 139, 0, 0, // Skip to: 17755 10439/* 17616 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10440/* 17619 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 17717 10441/* 17624 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10442/* 17627 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 17679 10443/* 17632 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10444/* 17635 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 17657 10445/* 17640 */ MCD::OPC_CheckPredicate, 26, 63, 4, 0, // Skip to: 18732 10446/* 17645 */ MCD::OPC_CheckField, 19, 1, 1, 56, 4, 0, // Skip to: 18732 10447/* 17652 */ MCD::OPC_Decode, 150, 25, 149, 2, // Opcode: VRSRAsv16i8 10448/* 17657 */ MCD::OPC_FilterValue, 1, 46, 4, 0, // Skip to: 18732 10449/* 17662 */ MCD::OPC_CheckPredicate, 26, 41, 4, 0, // Skip to: 18732 10450/* 17667 */ MCD::OPC_CheckField, 19, 1, 1, 34, 4, 0, // Skip to: 18732 10451/* 17674 */ MCD::OPC_Decode, 158, 25, 149, 2, // Opcode: VRSRAuv16i8 10452/* 17679 */ MCD::OPC_FilterValue, 1, 24, 4, 0, // Skip to: 18732 10453/* 17684 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10454/* 17687 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17702 10455/* 17692 */ MCD::OPC_CheckPredicate, 26, 11, 4, 0, // Skip to: 18732 10456/* 17697 */ MCD::OPC_Decode, 156, 25, 150, 2, // Opcode: VRSRAsv8i16 10457/* 17702 */ MCD::OPC_FilterValue, 1, 1, 4, 0, // Skip to: 18732 10458/* 17707 */ MCD::OPC_CheckPredicate, 26, 252, 3, 0, // Skip to: 18732 10459/* 17712 */ MCD::OPC_Decode, 164, 25, 150, 2, // Opcode: VRSRAuv8i16 10460/* 17717 */ MCD::OPC_FilterValue, 1, 242, 3, 0, // Skip to: 18732 10461/* 17722 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10462/* 17725 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17740 10463/* 17730 */ MCD::OPC_CheckPredicate, 26, 229, 3, 0, // Skip to: 18732 10464/* 17735 */ MCD::OPC_Decode, 155, 25, 151, 2, // Opcode: VRSRAsv4i32 10465/* 17740 */ MCD::OPC_FilterValue, 1, 219, 3, 0, // Skip to: 18732 10466/* 17745 */ MCD::OPC_CheckPredicate, 26, 214, 3, 0, // Skip to: 18732 10467/* 17750 */ MCD::OPC_Decode, 163, 25, 151, 2, // Opcode: VRSRAuv4i32 10468/* 17755 */ MCD::OPC_FilterValue, 4, 84, 0, 0, // Skip to: 17844 10469/* 17760 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10470/* 17763 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 17822 10471/* 17768 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10472/* 17771 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 17800 10473/* 17776 */ MCD::OPC_CheckPredicate, 26, 183, 3, 0, // Skip to: 18732 10474/* 17781 */ MCD::OPC_CheckField, 24, 1, 1, 176, 3, 0, // Skip to: 18732 10475/* 17788 */ MCD::OPC_CheckField, 19, 1, 1, 169, 3, 0, // Skip to: 18732 10476/* 17795 */ MCD::OPC_Decode, 150, 26, 149, 2, // Opcode: VSRIv16i8 10477/* 17800 */ MCD::OPC_FilterValue, 1, 159, 3, 0, // Skip to: 18732 10478/* 17805 */ MCD::OPC_CheckPredicate, 26, 154, 3, 0, // Skip to: 18732 10479/* 17810 */ MCD::OPC_CheckField, 24, 1, 1, 147, 3, 0, // Skip to: 18732 10480/* 17817 */ MCD::OPC_Decode, 156, 26, 150, 2, // Opcode: VSRIv8i16 10481/* 17822 */ MCD::OPC_FilterValue, 1, 137, 3, 0, // Skip to: 18732 10482/* 17827 */ MCD::OPC_CheckPredicate, 26, 132, 3, 0, // Skip to: 18732 10483/* 17832 */ MCD::OPC_CheckField, 24, 1, 1, 125, 3, 0, // Skip to: 18732 10484/* 17839 */ MCD::OPC_Decode, 155, 26, 151, 2, // Opcode: VSRIv4i32 10485/* 17844 */ MCD::OPC_FilterValue, 5, 139, 0, 0, // Skip to: 17988 10486/* 17849 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10487/* 17852 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 17950 10488/* 17857 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10489/* 17860 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 17912 10490/* 17865 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10491/* 17868 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 17890 10492/* 17873 */ MCD::OPC_CheckPredicate, 26, 86, 3, 0, // Skip to: 18732 10493/* 17878 */ MCD::OPC_CheckField, 19, 1, 1, 79, 3, 0, // Skip to: 18732 10494/* 17885 */ MCD::OPC_Decode, 199, 25, 152, 2, // Opcode: VSHLiv16i8 10495/* 17890 */ MCD::OPC_FilterValue, 1, 69, 3, 0, // Skip to: 18732 10496/* 17895 */ MCD::OPC_CheckPredicate, 26, 64, 3, 0, // Skip to: 18732 10497/* 17900 */ MCD::OPC_CheckField, 19, 1, 1, 57, 3, 0, // Skip to: 18732 10498/* 17907 */ MCD::OPC_Decode, 248, 25, 153, 2, // Opcode: VSLIv16i8 10499/* 17912 */ MCD::OPC_FilterValue, 1, 47, 3, 0, // Skip to: 18732 10500/* 17917 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10501/* 17920 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17935 10502/* 17925 */ MCD::OPC_CheckPredicate, 26, 34, 3, 0, // Skip to: 18732 10503/* 17930 */ MCD::OPC_Decode, 205, 25, 154, 2, // Opcode: VSHLiv8i16 10504/* 17935 */ MCD::OPC_FilterValue, 1, 24, 3, 0, // Skip to: 18732 10505/* 17940 */ MCD::OPC_CheckPredicate, 26, 19, 3, 0, // Skip to: 18732 10506/* 17945 */ MCD::OPC_Decode, 254, 25, 155, 2, // Opcode: VSLIv8i16 10507/* 17950 */ MCD::OPC_FilterValue, 1, 9, 3, 0, // Skip to: 18732 10508/* 17955 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10509/* 17958 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 17973 10510/* 17963 */ MCD::OPC_CheckPredicate, 26, 252, 2, 0, // Skip to: 18732 10511/* 17968 */ MCD::OPC_Decode, 204, 25, 156, 2, // Opcode: VSHLiv4i32 10512/* 17973 */ MCD::OPC_FilterValue, 1, 242, 2, 0, // Skip to: 18732 10513/* 17978 */ MCD::OPC_CheckPredicate, 26, 237, 2, 0, // Skip to: 18732 10514/* 17983 */ MCD::OPC_Decode, 253, 25, 157, 2, // Opcode: VSLIv4i32 10515/* 17988 */ MCD::OPC_FilterValue, 6, 84, 0, 0, // Skip to: 18077 10516/* 17993 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10517/* 17996 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 18055 10518/* 18001 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10519/* 18004 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 18033 10520/* 18009 */ MCD::OPC_CheckPredicate, 26, 206, 2, 0, // Skip to: 18732 10521/* 18014 */ MCD::OPC_CheckField, 24, 1, 1, 199, 2, 0, // Skip to: 18732 10522/* 18021 */ MCD::OPC_CheckField, 19, 1, 1, 192, 2, 0, // Skip to: 18732 10523/* 18028 */ MCD::OPC_Decode, 222, 23, 152, 2, // Opcode: VQSHLsuv16i8 10524/* 18033 */ MCD::OPC_FilterValue, 1, 182, 2, 0, // Skip to: 18732 10525/* 18038 */ MCD::OPC_CheckPredicate, 26, 177, 2, 0, // Skip to: 18732 10526/* 18043 */ MCD::OPC_CheckField, 24, 1, 1, 170, 2, 0, // Skip to: 18732 10527/* 18050 */ MCD::OPC_Decode, 228, 23, 154, 2, // Opcode: VQSHLsuv8i16 10528/* 18055 */ MCD::OPC_FilterValue, 1, 160, 2, 0, // Skip to: 18732 10529/* 18060 */ MCD::OPC_CheckPredicate, 26, 155, 2, 0, // Skip to: 18732 10530/* 18065 */ MCD::OPC_CheckField, 24, 1, 1, 148, 2, 0, // Skip to: 18732 10531/* 18072 */ MCD::OPC_Decode, 227, 23, 156, 2, // Opcode: VQSHLsuv4i32 10532/* 18077 */ MCD::OPC_FilterValue, 7, 139, 0, 0, // Skip to: 18221 10533/* 18082 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10534/* 18085 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 18183 10535/* 18090 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10536/* 18093 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 18145 10537/* 18098 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10538/* 18101 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18123 10539/* 18106 */ MCD::OPC_CheckPredicate, 26, 109, 2, 0, // Skip to: 18732 10540/* 18111 */ MCD::OPC_CheckField, 19, 1, 1, 102, 2, 0, // Skip to: 18732 10541/* 18118 */ MCD::OPC_Decode, 214, 23, 152, 2, // Opcode: VQSHLsiv16i8 10542/* 18123 */ MCD::OPC_FilterValue, 1, 92, 2, 0, // Skip to: 18732 10543/* 18128 */ MCD::OPC_CheckPredicate, 26, 87, 2, 0, // Skip to: 18732 10544/* 18133 */ MCD::OPC_CheckField, 19, 1, 1, 80, 2, 0, // Skip to: 18732 10545/* 18140 */ MCD::OPC_Decode, 238, 23, 152, 2, // Opcode: VQSHLuiv16i8 10546/* 18145 */ MCD::OPC_FilterValue, 1, 70, 2, 0, // Skip to: 18732 10547/* 18150 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10548/* 18153 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18168 10549/* 18158 */ MCD::OPC_CheckPredicate, 26, 57, 2, 0, // Skip to: 18732 10550/* 18163 */ MCD::OPC_Decode, 220, 23, 154, 2, // Opcode: VQSHLsiv8i16 10551/* 18168 */ MCD::OPC_FilterValue, 1, 47, 2, 0, // Skip to: 18732 10552/* 18173 */ MCD::OPC_CheckPredicate, 26, 42, 2, 0, // Skip to: 18732 10553/* 18178 */ MCD::OPC_Decode, 244, 23, 154, 2, // Opcode: VQSHLuiv8i16 10554/* 18183 */ MCD::OPC_FilterValue, 1, 32, 2, 0, // Skip to: 18732 10555/* 18188 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10556/* 18191 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18206 10557/* 18196 */ MCD::OPC_CheckPredicate, 26, 19, 2, 0, // Skip to: 18732 10558/* 18201 */ MCD::OPC_Decode, 219, 23, 156, 2, // Opcode: VQSHLsiv4i32 10559/* 18206 */ MCD::OPC_FilterValue, 1, 9, 2, 0, // Skip to: 18732 10560/* 18211 */ MCD::OPC_CheckPredicate, 26, 4, 2, 0, // Skip to: 18732 10561/* 18216 */ MCD::OPC_Decode, 243, 23, 156, 2, // Opcode: VQSHLuiv4i32 10562/* 18221 */ MCD::OPC_FilterValue, 8, 139, 0, 0, // Skip to: 18365 10563/* 18226 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10564/* 18229 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 18327 10565/* 18234 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10566/* 18237 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 18289 10567/* 18242 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10568/* 18245 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18267 10569/* 18250 */ MCD::OPC_CheckPredicate, 26, 221, 1, 0, // Skip to: 18732 10570/* 18255 */ MCD::OPC_CheckField, 19, 1, 1, 214, 1, 0, // Skip to: 18732 10571/* 18262 */ MCD::OPC_Decode, 251, 24, 134, 2, // Opcode: VRSHRNv8i8 10572/* 18267 */ MCD::OPC_FilterValue, 1, 204, 1, 0, // Skip to: 18732 10573/* 18272 */ MCD::OPC_CheckPredicate, 26, 199, 1, 0, // Skip to: 18732 10574/* 18277 */ MCD::OPC_CheckField, 19, 1, 1, 192, 1, 0, // Skip to: 18732 10575/* 18284 */ MCD::OPC_Decode, 213, 23, 134, 2, // Opcode: VQRSHRUNv8i8 10576/* 18289 */ MCD::OPC_FilterValue, 1, 182, 1, 0, // Skip to: 18732 10577/* 18294 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10578/* 18297 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18312 10579/* 18302 */ MCD::OPC_CheckPredicate, 26, 169, 1, 0, // Skip to: 18732 10580/* 18307 */ MCD::OPC_Decode, 250, 24, 135, 2, // Opcode: VRSHRNv4i16 10581/* 18312 */ MCD::OPC_FilterValue, 1, 159, 1, 0, // Skip to: 18732 10582/* 18317 */ MCD::OPC_CheckPredicate, 26, 154, 1, 0, // Skip to: 18732 10583/* 18322 */ MCD::OPC_Decode, 212, 23, 135, 2, // Opcode: VQRSHRUNv4i16 10584/* 18327 */ MCD::OPC_FilterValue, 1, 144, 1, 0, // Skip to: 18732 10585/* 18332 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10586/* 18335 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18350 10587/* 18340 */ MCD::OPC_CheckPredicate, 26, 131, 1, 0, // Skip to: 18732 10588/* 18345 */ MCD::OPC_Decode, 249, 24, 136, 2, // Opcode: VRSHRNv2i32 10589/* 18350 */ MCD::OPC_FilterValue, 1, 121, 1, 0, // Skip to: 18732 10590/* 18355 */ MCD::OPC_CheckPredicate, 26, 116, 1, 0, // Skip to: 18732 10591/* 18360 */ MCD::OPC_Decode, 211, 23, 136, 2, // Opcode: VQRSHRUNv2i32 10592/* 18365 */ MCD::OPC_FilterValue, 9, 139, 0, 0, // Skip to: 18509 10593/* 18370 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10594/* 18373 */ MCD::OPC_FilterValue, 0, 93, 0, 0, // Skip to: 18471 10595/* 18378 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10596/* 18381 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 18433 10597/* 18386 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10598/* 18389 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18411 10599/* 18394 */ MCD::OPC_CheckPredicate, 26, 77, 1, 0, // Skip to: 18732 10600/* 18399 */ MCD::OPC_CheckField, 19, 1, 1, 70, 1, 0, // Skip to: 18732 10601/* 18406 */ MCD::OPC_Decode, 207, 23, 134, 2, // Opcode: VQRSHRNsv8i8 10602/* 18411 */ MCD::OPC_FilterValue, 1, 60, 1, 0, // Skip to: 18732 10603/* 18416 */ MCD::OPC_CheckPredicate, 26, 55, 1, 0, // Skip to: 18732 10604/* 18421 */ MCD::OPC_CheckField, 19, 1, 1, 48, 1, 0, // Skip to: 18732 10605/* 18428 */ MCD::OPC_Decode, 210, 23, 134, 2, // Opcode: VQRSHRNuv8i8 10606/* 18433 */ MCD::OPC_FilterValue, 1, 38, 1, 0, // Skip to: 18732 10607/* 18438 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10608/* 18441 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18456 10609/* 18446 */ MCD::OPC_CheckPredicate, 26, 25, 1, 0, // Skip to: 18732 10610/* 18451 */ MCD::OPC_Decode, 206, 23, 135, 2, // Opcode: VQRSHRNsv4i16 10611/* 18456 */ MCD::OPC_FilterValue, 1, 15, 1, 0, // Skip to: 18732 10612/* 18461 */ MCD::OPC_CheckPredicate, 26, 10, 1, 0, // Skip to: 18732 10613/* 18466 */ MCD::OPC_Decode, 209, 23, 135, 2, // Opcode: VQRSHRNuv4i16 10614/* 18471 */ MCD::OPC_FilterValue, 1, 0, 1, 0, // Skip to: 18732 10615/* 18476 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10616/* 18479 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18494 10617/* 18484 */ MCD::OPC_CheckPredicate, 26, 243, 0, 0, // Skip to: 18732 10618/* 18489 */ MCD::OPC_Decode, 205, 23, 136, 2, // Opcode: VQRSHRNsv2i32 10619/* 18494 */ MCD::OPC_FilterValue, 1, 233, 0, 0, // Skip to: 18732 10620/* 18499 */ MCD::OPC_CheckPredicate, 26, 228, 0, 0, // Skip to: 18732 10621/* 18504 */ MCD::OPC_Decode, 208, 23, 136, 2, // Opcode: VQRSHRNuv2i32 10622/* 18509 */ MCD::OPC_FilterValue, 12, 33, 0, 0, // Skip to: 18547 10623/* 18514 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10624/* 18517 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18532 10625/* 18522 */ MCD::OPC_CheckPredicate, 27, 205, 0, 0, // Skip to: 18732 10626/* 18527 */ MCD::OPC_Decode, 161, 17, 158, 2, // Opcode: VCVTxs2hq 10627/* 18532 */ MCD::OPC_FilterValue, 1, 195, 0, 0, // Skip to: 18732 10628/* 18537 */ MCD::OPC_CheckPredicate, 27, 190, 0, 0, // Skip to: 18732 10629/* 18542 */ MCD::OPC_Decode, 165, 17, 158, 2, // Opcode: VCVTxu2hq 10630/* 18547 */ MCD::OPC_FilterValue, 13, 33, 0, 0, // Skip to: 18585 10631/* 18552 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10632/* 18555 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18570 10633/* 18560 */ MCD::OPC_CheckPredicate, 27, 167, 0, 0, // Skip to: 18732 10634/* 18565 */ MCD::OPC_Decode, 147, 17, 158, 2, // Opcode: VCVTh2xsq 10635/* 18570 */ MCD::OPC_FilterValue, 1, 157, 0, 0, // Skip to: 18732 10636/* 18575 */ MCD::OPC_CheckPredicate, 27, 152, 0, 0, // Skip to: 18732 10637/* 18580 */ MCD::OPC_Decode, 149, 17, 158, 2, // Opcode: VCVTh2xuq 10638/* 18585 */ MCD::OPC_FilterValue, 14, 80, 0, 0, // Skip to: 18670 10639/* 18590 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 10640/* 18593 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18615 10641/* 18598 */ MCD::OPC_CheckPredicate, 26, 34, 0, 0, // Skip to: 18637 10642/* 18603 */ MCD::OPC_CheckField, 19, 3, 0, 27, 0, 0, // Skip to: 18637 10643/* 18610 */ MCD::OPC_Decode, 215, 21, 141, 2, // Opcode: VMOVv16i8 10644/* 18615 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 18637 10645/* 18620 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 18637 10646/* 18625 */ MCD::OPC_CheckField, 19, 3, 0, 5, 0, 0, // Skip to: 18637 10647/* 18632 */ MCD::OPC_Decode, 219, 21, 141, 2, // Opcode: VMOVv2i64 10648/* 18637 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10649/* 18640 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18655 10650/* 18645 */ MCD::OPC_CheckPredicate, 26, 82, 0, 0, // Skip to: 18732 10651/* 18650 */ MCD::OPC_Decode, 159, 17, 158, 2, // Opcode: VCVTxs2fq 10652/* 18655 */ MCD::OPC_FilterValue, 1, 72, 0, 0, // Skip to: 18732 10653/* 18660 */ MCD::OPC_CheckPredicate, 26, 67, 0, 0, // Skip to: 18732 10654/* 18665 */ MCD::OPC_Decode, 163, 17, 158, 2, // Opcode: VCVTxu2fq 10655/* 18670 */ MCD::OPC_FilterValue, 15, 57, 0, 0, // Skip to: 18732 10656/* 18675 */ MCD::OPC_ExtractField, 24, 1, // Inst{24} ... 10657/* 18678 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18693 10658/* 18683 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 18708 10659/* 18688 */ MCD::OPC_Decode, 138, 17, 158, 2, // Opcode: VCVTf2xsq 10660/* 18693 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 18708 10661/* 18698 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 18708 10662/* 18703 */ MCD::OPC_Decode, 140, 17, 158, 2, // Opcode: VCVTf2xuq 10663/* 18708 */ MCD::OPC_CheckPredicate, 26, 19, 0, 0, // Skip to: 18732 10664/* 18713 */ MCD::OPC_CheckField, 19, 3, 0, 12, 0, 0, // Skip to: 18732 10665/* 18720 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 18732 10666/* 18727 */ MCD::OPC_Decode, 220, 21, 141, 2, // Opcode: VMOVv4f32 10667/* 18732 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 10668/* 18735 */ MCD::OPC_FilterValue, 0, 88, 0, 0, // Skip to: 18828 10669/* 18740 */ MCD::OPC_ExtractField, 19, 3, // Inst{21-19} ... 10670/* 18743 */ MCD::OPC_FilterValue, 0, 211, 1, 0, // Skip to: 19215 10671/* 18748 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 10672/* 18751 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18773 10673/* 18756 */ MCD::OPC_CheckPredicate, 26, 57, 0, 0, // Skip to: 18818 10674/* 18761 */ MCD::OPC_CheckField, 10, 2, 2, 50, 0, 0, // Skip to: 18818 10675/* 18768 */ MCD::OPC_Decode, 223, 21, 141, 2, // Opcode: VMOVv8i16 10676/* 18773 */ MCD::OPC_FilterValue, 1, 40, 0, 0, // Skip to: 18818 10677/* 18778 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 10678/* 18781 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18796 10679/* 18786 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 18818 10680/* 18791 */ MCD::OPC_Decode, 188, 22, 141, 2, // Opcode: VORRiv4i32 10681/* 18796 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 18818 10682/* 18801 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 18818 10683/* 18806 */ MCD::OPC_CheckField, 10, 1, 0, 5, 0, 0, // Skip to: 18818 10684/* 18813 */ MCD::OPC_Decode, 189, 22, 141, 2, // Opcode: VORRiv8i16 10685/* 18818 */ MCD::OPC_CheckPredicate, 26, 136, 1, 0, // Skip to: 19215 10686/* 18823 */ MCD::OPC_Decode, 222, 21, 141, 2, // Opcode: VMOVv4i32 10687/* 18828 */ MCD::OPC_FilterValue, 1, 126, 1, 0, // Skip to: 19215 10688/* 18833 */ MCD::OPC_ExtractField, 19, 3, // Inst{21-19} ... 10689/* 18836 */ MCD::OPC_FilterValue, 0, 118, 1, 0, // Skip to: 19215 10690/* 18841 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 10691/* 18844 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 18866 10692/* 18849 */ MCD::OPC_CheckPredicate, 26, 57, 0, 0, // Skip to: 18911 10693/* 18854 */ MCD::OPC_CheckField, 10, 2, 2, 50, 0, 0, // Skip to: 18911 10694/* 18861 */ MCD::OPC_Decode, 160, 22, 141, 2, // Opcode: VMVNv8i16 10695/* 18866 */ MCD::OPC_FilterValue, 1, 40, 0, 0, // Skip to: 18911 10696/* 18871 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 10697/* 18874 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18889 10698/* 18879 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 18911 10699/* 18884 */ MCD::OPC_Decode, 183, 15, 141, 2, // Opcode: VBICiv4i32 10700/* 18889 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 18911 10701/* 18894 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 18911 10702/* 18899 */ MCD::OPC_CheckField, 10, 1, 0, 5, 0, 0, // Skip to: 18911 10703/* 18906 */ MCD::OPC_Decode, 184, 15, 141, 2, // Opcode: VBICiv8i16 10704/* 18911 */ MCD::OPC_CheckPredicate, 26, 43, 1, 0, // Skip to: 19215 10705/* 18916 */ MCD::OPC_Decode, 159, 22, 141, 2, // Opcode: VMVNv4i32 10706/* 18921 */ MCD::OPC_FilterValue, 1, 33, 1, 0, // Skip to: 19215 10707/* 18926 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 10708/* 18929 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 18969 10709/* 18934 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10710/* 18937 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 18953 10711/* 18943 */ MCD::OPC_CheckPredicate, 26, 11, 1, 0, // Skip to: 19215 10712/* 18948 */ MCD::OPC_Decode, 229, 25, 159, 2, // Opcode: VSHRsv2i64 10713/* 18953 */ MCD::OPC_FilterValue, 243, 1, 0, 1, 0, // Skip to: 19215 10714/* 18959 */ MCD::OPC_CheckPredicate, 26, 251, 0, 0, // Skip to: 19215 10715/* 18964 */ MCD::OPC_Decode, 237, 25, 159, 2, // Opcode: VSHRuv2i64 10716/* 18969 */ MCD::OPC_FilterValue, 1, 35, 0, 0, // Skip to: 19009 10717/* 18974 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10718/* 18977 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 18993 10719/* 18983 */ MCD::OPC_CheckPredicate, 26, 227, 0, 0, // Skip to: 19215 10720/* 18988 */ MCD::OPC_Decode, 137, 26, 160, 2, // Opcode: VSRAsv2i64 10721/* 18993 */ MCD::OPC_FilterValue, 243, 1, 216, 0, 0, // Skip to: 19215 10722/* 18999 */ MCD::OPC_CheckPredicate, 26, 211, 0, 0, // Skip to: 19215 10723/* 19004 */ MCD::OPC_Decode, 145, 26, 160, 2, // Opcode: VSRAuv2i64 10724/* 19009 */ MCD::OPC_FilterValue, 2, 35, 0, 0, // Skip to: 19049 10725/* 19014 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10726/* 19017 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 19033 10727/* 19023 */ MCD::OPC_CheckPredicate, 26, 187, 0, 0, // Skip to: 19215 10728/* 19028 */ MCD::OPC_Decode, 255, 24, 159, 2, // Opcode: VRSHRsv2i64 10729/* 19033 */ MCD::OPC_FilterValue, 243, 1, 176, 0, 0, // Skip to: 19215 10730/* 19039 */ MCD::OPC_CheckPredicate, 26, 171, 0, 0, // Skip to: 19215 10731/* 19044 */ MCD::OPC_Decode, 135, 25, 159, 2, // Opcode: VRSHRuv2i64 10732/* 19049 */ MCD::OPC_FilterValue, 3, 35, 0, 0, // Skip to: 19089 10733/* 19054 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10734/* 19057 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 19073 10735/* 19063 */ MCD::OPC_CheckPredicate, 26, 147, 0, 0, // Skip to: 19215 10736/* 19068 */ MCD::OPC_Decode, 153, 25, 160, 2, // Opcode: VRSRAsv2i64 10737/* 19073 */ MCD::OPC_FilterValue, 243, 1, 136, 0, 0, // Skip to: 19215 10738/* 19079 */ MCD::OPC_CheckPredicate, 26, 131, 0, 0, // Skip to: 19215 10739/* 19084 */ MCD::OPC_Decode, 161, 25, 160, 2, // Opcode: VRSRAuv2i64 10740/* 19089 */ MCD::OPC_FilterValue, 4, 18, 0, 0, // Skip to: 19112 10741/* 19094 */ MCD::OPC_CheckPredicate, 26, 116, 0, 0, // Skip to: 19215 10742/* 19099 */ MCD::OPC_CheckField, 24, 8, 243, 1, 108, 0, 0, // Skip to: 19215 10743/* 19107 */ MCD::OPC_Decode, 153, 26, 160, 2, // Opcode: VSRIv2i64 10744/* 19112 */ MCD::OPC_FilterValue, 5, 35, 0, 0, // Skip to: 19152 10745/* 19117 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10746/* 19120 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 19136 10747/* 19126 */ MCD::OPC_CheckPredicate, 26, 84, 0, 0, // Skip to: 19215 10748/* 19131 */ MCD::OPC_Decode, 202, 25, 161, 2, // Opcode: VSHLiv2i64 10749/* 19136 */ MCD::OPC_FilterValue, 243, 1, 73, 0, 0, // Skip to: 19215 10750/* 19142 */ MCD::OPC_CheckPredicate, 26, 68, 0, 0, // Skip to: 19215 10751/* 19147 */ MCD::OPC_Decode, 251, 25, 162, 2, // Opcode: VSLIv2i64 10752/* 19152 */ MCD::OPC_FilterValue, 6, 18, 0, 0, // Skip to: 19175 10753/* 19157 */ MCD::OPC_CheckPredicate, 26, 53, 0, 0, // Skip to: 19215 10754/* 19162 */ MCD::OPC_CheckField, 24, 8, 243, 1, 45, 0, 0, // Skip to: 19215 10755/* 19170 */ MCD::OPC_Decode, 225, 23, 161, 2, // Opcode: VQSHLsuv2i64 10756/* 19175 */ MCD::OPC_FilterValue, 7, 35, 0, 0, // Skip to: 19215 10757/* 19180 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 10758/* 19183 */ MCD::OPC_FilterValue, 242, 1, 10, 0, 0, // Skip to: 19199 10759/* 19189 */ MCD::OPC_CheckPredicate, 26, 21, 0, 0, // Skip to: 19215 10760/* 19194 */ MCD::OPC_Decode, 217, 23, 161, 2, // Opcode: VQSHLsiv2i64 10761/* 19199 */ MCD::OPC_FilterValue, 243, 1, 10, 0, 0, // Skip to: 19215 10762/* 19205 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 19215 10763/* 19210 */ MCD::OPC_Decode, 241, 23, 161, 2, // Opcode: VQSHLuiv2i64 10764/* 19215 */ MCD::OPC_Fail, 10765 0 10766}; 10767 10768static const uint8_t DecoderTableNEONDup32[] = { 10769/* 0 */ MCD::OPC_ExtractField, 22, 6, // Inst{27-22} ... 10770/* 3 */ MCD::OPC_FilterValue, 56, 121, 0, 0, // Skip to: 129 10771/* 8 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 10772/* 11 */ MCD::OPC_FilterValue, 16, 61, 0, 0, // Skip to: 77 10773/* 16 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10774/* 19 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 48 10775/* 24 */ MCD::OPC_CheckPredicate, 32, 183, 1, 0, // Skip to: 468 10776/* 29 */ MCD::OPC_CheckField, 8, 4, 11, 176, 1, 0, // Skip to: 468 10777/* 36 */ MCD::OPC_CheckField, 6, 1, 0, 169, 1, 0, // Skip to: 468 10778/* 43 */ MCD::OPC_Decode, 188, 25, 163, 2, // Opcode: VSETLNi32 10779/* 48 */ MCD::OPC_FilterValue, 1, 159, 1, 0, // Skip to: 468 10780/* 53 */ MCD::OPC_CheckPredicate, 33, 154, 1, 0, // Skip to: 468 10781/* 58 */ MCD::OPC_CheckField, 8, 4, 11, 147, 1, 0, // Skip to: 468 10782/* 65 */ MCD::OPC_CheckField, 6, 1, 0, 140, 1, 0, // Skip to: 468 10783/* 72 */ MCD::OPC_Decode, 224, 17, 164, 2, // Opcode: VGETLNi32 10784/* 77 */ MCD::OPC_FilterValue, 48, 130, 1, 0, // Skip to: 468 10785/* 82 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10786/* 85 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 107 10787/* 90 */ MCD::OPC_CheckPredicate, 26, 117, 1, 0, // Skip to: 468 10788/* 95 */ MCD::OPC_CheckField, 8, 4, 11, 110, 1, 0, // Skip to: 468 10789/* 102 */ MCD::OPC_Decode, 187, 25, 165, 2, // Opcode: VSETLNi16 10790/* 107 */ MCD::OPC_FilterValue, 1, 100, 1, 0, // Skip to: 468 10791/* 112 */ MCD::OPC_CheckPredicate, 26, 95, 1, 0, // Skip to: 468 10792/* 117 */ MCD::OPC_CheckField, 8, 4, 11, 88, 1, 0, // Skip to: 468 10793/* 124 */ MCD::OPC_Decode, 225, 17, 166, 2, // Opcode: VGETLNs16 10794/* 129 */ MCD::OPC_FilterValue, 57, 61, 0, 0, // Skip to: 195 10795/* 134 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10796/* 137 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 166 10797/* 142 */ MCD::OPC_CheckPredicate, 26, 65, 1, 0, // Skip to: 468 10798/* 147 */ MCD::OPC_CheckField, 8, 4, 11, 58, 1, 0, // Skip to: 468 10799/* 154 */ MCD::OPC_CheckField, 0, 5, 16, 51, 1, 0, // Skip to: 468 10800/* 161 */ MCD::OPC_Decode, 189, 25, 167, 2, // Opcode: VSETLNi8 10801/* 166 */ MCD::OPC_FilterValue, 1, 41, 1, 0, // Skip to: 468 10802/* 171 */ MCD::OPC_CheckPredicate, 26, 36, 1, 0, // Skip to: 468 10803/* 176 */ MCD::OPC_CheckField, 8, 4, 11, 29, 1, 0, // Skip to: 468 10804/* 183 */ MCD::OPC_CheckField, 0, 5, 16, 22, 1, 0, // Skip to: 468 10805/* 190 */ MCD::OPC_Decode, 226, 17, 168, 2, // Opcode: VGETLNs8 10806/* 195 */ MCD::OPC_FilterValue, 58, 165, 0, 0, // Skip to: 365 10807/* 200 */ MCD::OPC_ExtractField, 0, 6, // Inst{5-0} ... 10808/* 203 */ MCD::OPC_FilterValue, 16, 61, 0, 0, // Skip to: 269 10809/* 208 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10810/* 211 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 240 10811/* 216 */ MCD::OPC_CheckPredicate, 26, 247, 0, 0, // Skip to: 468 10812/* 221 */ MCD::OPC_CheckField, 8, 4, 11, 240, 0, 0, // Skip to: 468 10813/* 228 */ MCD::OPC_CheckField, 6, 1, 0, 233, 0, 0, // Skip to: 468 10814/* 235 */ MCD::OPC_Decode, 171, 17, 169, 2, // Opcode: VDUP32d 10815/* 240 */ MCD::OPC_FilterValue, 2, 223, 0, 0, // Skip to: 468 10816/* 245 */ MCD::OPC_CheckPredicate, 26, 218, 0, 0, // Skip to: 468 10817/* 250 */ MCD::OPC_CheckField, 8, 4, 11, 211, 0, 0, // Skip to: 468 10818/* 257 */ MCD::OPC_CheckField, 6, 1, 0, 204, 0, 0, // Skip to: 468 10819/* 264 */ MCD::OPC_Decode, 172, 17, 170, 2, // Opcode: VDUP32q 10820/* 269 */ MCD::OPC_FilterValue, 48, 194, 0, 0, // Skip to: 468 10821/* 274 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10822/* 277 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 343 10823/* 282 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10824/* 285 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 314 10825/* 290 */ MCD::OPC_CheckPredicate, 26, 173, 0, 0, // Skip to: 468 10826/* 295 */ MCD::OPC_CheckField, 8, 4, 11, 166, 0, 0, // Skip to: 468 10827/* 302 */ MCD::OPC_CheckField, 6, 1, 0, 159, 0, 0, // Skip to: 468 10828/* 309 */ MCD::OPC_Decode, 169, 17, 169, 2, // Opcode: VDUP16d 10829/* 314 */ MCD::OPC_FilterValue, 1, 149, 0, 0, // Skip to: 468 10830/* 319 */ MCD::OPC_CheckPredicate, 26, 144, 0, 0, // Skip to: 468 10831/* 324 */ MCD::OPC_CheckField, 8, 4, 11, 137, 0, 0, // Skip to: 468 10832/* 331 */ MCD::OPC_CheckField, 6, 1, 0, 130, 0, 0, // Skip to: 468 10833/* 338 */ MCD::OPC_Decode, 170, 17, 170, 2, // Opcode: VDUP16q 10834/* 343 */ MCD::OPC_FilterValue, 1, 120, 0, 0, // Skip to: 468 10835/* 348 */ MCD::OPC_CheckPredicate, 26, 115, 0, 0, // Skip to: 468 10836/* 353 */ MCD::OPC_CheckField, 8, 4, 11, 108, 0, 0, // Skip to: 468 10837/* 360 */ MCD::OPC_Decode, 227, 17, 166, 2, // Opcode: VGETLNu16 10838/* 365 */ MCD::OPC_FilterValue, 59, 98, 0, 0, // Skip to: 468 10839/* 370 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 10840/* 373 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 439 10841/* 378 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 10842/* 381 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 410 10843/* 386 */ MCD::OPC_CheckPredicate, 26, 77, 0, 0, // Skip to: 468 10844/* 391 */ MCD::OPC_CheckField, 8, 4, 11, 70, 0, 0, // Skip to: 468 10845/* 398 */ MCD::OPC_CheckField, 0, 7, 16, 63, 0, 0, // Skip to: 468 10846/* 405 */ MCD::OPC_Decode, 173, 17, 169, 2, // Opcode: VDUP8d 10847/* 410 */ MCD::OPC_FilterValue, 1, 53, 0, 0, // Skip to: 468 10848/* 415 */ MCD::OPC_CheckPredicate, 26, 48, 0, 0, // Skip to: 468 10849/* 420 */ MCD::OPC_CheckField, 8, 4, 11, 41, 0, 0, // Skip to: 468 10850/* 427 */ MCD::OPC_CheckField, 0, 7, 16, 34, 0, 0, // Skip to: 468 10851/* 434 */ MCD::OPC_Decode, 174, 17, 170, 2, // Opcode: VDUP8q 10852/* 439 */ MCD::OPC_FilterValue, 1, 24, 0, 0, // Skip to: 468 10853/* 444 */ MCD::OPC_CheckPredicate, 26, 19, 0, 0, // Skip to: 468 10854/* 449 */ MCD::OPC_CheckField, 8, 4, 11, 12, 0, 0, // Skip to: 468 10855/* 456 */ MCD::OPC_CheckField, 0, 5, 16, 5, 0, 0, // Skip to: 468 10856/* 463 */ MCD::OPC_Decode, 228, 17, 168, 2, // Opcode: VGETLNu8 10857/* 468 */ MCD::OPC_Fail, 10858 0 10859}; 10860 10861static const uint8_t DecoderTableNEONLoadStore32[] = { 10862/* 0 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 10863/* 3 */ MCD::OPC_FilterValue, 0, 55, 1, 0, // Skip to: 319 10864/* 8 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10865/* 11 */ MCD::OPC_FilterValue, 0, 149, 0, 0, // Skip to: 165 10866/* 16 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 10867/* 19 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 124 10868/* 25 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 10869/* 28 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 60 10870/* 33 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 50 10871/* 38 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 50 10872/* 45 */ MCD::OPC_Decode, 249, 27, 171, 2, // Opcode: VST4d8 10873/* 50 */ MCD::OPC_CheckPredicate, 26, 246, 25, 0, // Skip to: 6701 10874/* 55 */ MCD::OPC_Decode, 252, 27, 171, 2, // Opcode: VST4d8_UPD 10875/* 60 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 92 10876/* 65 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 82 10877/* 70 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 82 10878/* 77 */ MCD::OPC_Decode, 241, 27, 171, 2, // Opcode: VST4d16 10879/* 82 */ MCD::OPC_CheckPredicate, 26, 214, 25, 0, // Skip to: 6701 10880/* 87 */ MCD::OPC_Decode, 244, 27, 171, 2, // Opcode: VST4d16_UPD 10881/* 92 */ MCD::OPC_FilterValue, 2, 204, 25, 0, // Skip to: 6701 10882/* 97 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 114 10883/* 102 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 114 10884/* 109 */ MCD::OPC_Decode, 245, 27, 171, 2, // Opcode: VST4d32 10885/* 114 */ MCD::OPC_CheckPredicate, 26, 182, 25, 0, // Skip to: 6701 10886/* 119 */ MCD::OPC_Decode, 248, 27, 171, 2, // Opcode: VST4d32_UPD 10887/* 124 */ MCD::OPC_FilterValue, 233, 3, 171, 25, 0, // Skip to: 6701 10888/* 130 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 10889/* 133 */ MCD::OPC_FilterValue, 0, 163, 25, 0, // Skip to: 6701 10890/* 138 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 155 10891/* 143 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 155 10892/* 150 */ MCD::OPC_Decode, 162, 26, 172, 2, // Opcode: VST1LNd8 10893/* 155 */ MCD::OPC_CheckPredicate, 26, 141, 25, 0, // Skip to: 6701 10894/* 160 */ MCD::OPC_Decode, 163, 26, 172, 2, // Opcode: VST1LNd8_UPD 10895/* 165 */ MCD::OPC_FilterValue, 2, 131, 25, 0, // Skip to: 6701 10896/* 170 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 10897/* 173 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 278 10898/* 179 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 10899/* 182 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 214 10900/* 187 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 204 10901/* 192 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 204 10902/* 199 */ MCD::OPC_Decode, 180, 20, 171, 2, // Opcode: VLD4d8 10903/* 204 */ MCD::OPC_CheckPredicate, 26, 92, 25, 0, // Skip to: 6701 10904/* 209 */ MCD::OPC_Decode, 183, 20, 171, 2, // Opcode: VLD4d8_UPD 10905/* 214 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 246 10906/* 219 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 236 10907/* 224 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 236 10908/* 231 */ MCD::OPC_Decode, 172, 20, 171, 2, // Opcode: VLD4d16 10909/* 236 */ MCD::OPC_CheckPredicate, 26, 60, 25, 0, // Skip to: 6701 10910/* 241 */ MCD::OPC_Decode, 175, 20, 171, 2, // Opcode: VLD4d16_UPD 10911/* 246 */ MCD::OPC_FilterValue, 2, 50, 25, 0, // Skip to: 6701 10912/* 251 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 268 10913/* 256 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 268 10914/* 263 */ MCD::OPC_Decode, 176, 20, 171, 2, // Opcode: VLD4d32 10915/* 268 */ MCD::OPC_CheckPredicate, 26, 28, 25, 0, // Skip to: 6701 10916/* 273 */ MCD::OPC_Decode, 179, 20, 171, 2, // Opcode: VLD4d32_UPD 10917/* 278 */ MCD::OPC_FilterValue, 233, 3, 17, 25, 0, // Skip to: 6701 10918/* 284 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 10919/* 287 */ MCD::OPC_FilterValue, 0, 9, 25, 0, // Skip to: 6701 10920/* 292 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 309 10921/* 297 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 309 10922/* 304 */ MCD::OPC_Decode, 149, 18, 173, 2, // Opcode: VLD1LNd8 10923/* 309 */ MCD::OPC_CheckPredicate, 26, 243, 24, 0, // Skip to: 6701 10924/* 314 */ MCD::OPC_Decode, 150, 18, 173, 2, // Opcode: VLD1LNd8_UPD 10925/* 319 */ MCD::OPC_FilterValue, 1, 39, 1, 0, // Skip to: 619 10926/* 324 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10927/* 327 */ MCD::OPC_FilterValue, 0, 141, 0, 0, // Skip to: 473 10928/* 332 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 10929/* 335 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 440 10930/* 341 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 10931/* 344 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 376 10932/* 349 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 366 10933/* 354 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 366 10934/* 361 */ MCD::OPC_Decode, 135, 28, 171, 2, // Opcode: VST4q8 10935/* 366 */ MCD::OPC_CheckPredicate, 26, 186, 24, 0, // Skip to: 6701 10936/* 371 */ MCD::OPC_Decode, 137, 28, 171, 2, // Opcode: VST4q8_UPD 10937/* 376 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 408 10938/* 381 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 398 10939/* 386 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 398 10940/* 393 */ MCD::OPC_Decode, 253, 27, 171, 2, // Opcode: VST4q16 10941/* 398 */ MCD::OPC_CheckPredicate, 26, 154, 24, 0, // Skip to: 6701 10942/* 403 */ MCD::OPC_Decode, 255, 27, 171, 2, // Opcode: VST4q16_UPD 10943/* 408 */ MCD::OPC_FilterValue, 2, 144, 24, 0, // Skip to: 6701 10944/* 413 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 430 10945/* 418 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 430 10946/* 425 */ MCD::OPC_Decode, 130, 28, 171, 2, // Opcode: VST4q32 10947/* 430 */ MCD::OPC_CheckPredicate, 26, 122, 24, 0, // Skip to: 6701 10948/* 435 */ MCD::OPC_Decode, 132, 28, 171, 2, // Opcode: VST4q32_UPD 10949/* 440 */ MCD::OPC_FilterValue, 233, 3, 111, 24, 0, // Skip to: 6701 10950/* 446 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 463 10951/* 451 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 463 10952/* 458 */ MCD::OPC_Decode, 254, 26, 174, 2, // Opcode: VST2LNd8 10953/* 463 */ MCD::OPC_CheckPredicate, 26, 89, 24, 0, // Skip to: 6701 10954/* 468 */ MCD::OPC_Decode, 129, 27, 174, 2, // Opcode: VST2LNd8_UPD 10955/* 473 */ MCD::OPC_FilterValue, 2, 79, 24, 0, // Skip to: 6701 10956/* 478 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 10957/* 481 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 586 10958/* 487 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 10959/* 490 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 522 10960/* 495 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 512 10961/* 500 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 512 10962/* 507 */ MCD::OPC_Decode, 194, 20, 171, 2, // Opcode: VLD4q8 10963/* 512 */ MCD::OPC_CheckPredicate, 26, 40, 24, 0, // Skip to: 6701 10964/* 517 */ MCD::OPC_Decode, 196, 20, 171, 2, // Opcode: VLD4q8_UPD 10965/* 522 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 554 10966/* 527 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 544 10967/* 532 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 544 10968/* 539 */ MCD::OPC_Decode, 184, 20, 171, 2, // Opcode: VLD4q16 10969/* 544 */ MCD::OPC_CheckPredicate, 26, 8, 24, 0, // Skip to: 6701 10970/* 549 */ MCD::OPC_Decode, 186, 20, 171, 2, // Opcode: VLD4q16_UPD 10971/* 554 */ MCD::OPC_FilterValue, 2, 254, 23, 0, // Skip to: 6701 10972/* 559 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 576 10973/* 564 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 576 10974/* 571 */ MCD::OPC_Decode, 189, 20, 171, 2, // Opcode: VLD4q32 10975/* 576 */ MCD::OPC_CheckPredicate, 26, 232, 23, 0, // Skip to: 6701 10976/* 581 */ MCD::OPC_Decode, 191, 20, 171, 2, // Opcode: VLD4q32_UPD 10977/* 586 */ MCD::OPC_FilterValue, 233, 3, 221, 23, 0, // Skip to: 6701 10978/* 592 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 609 10979/* 597 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 609 10980/* 604 */ MCD::OPC_Decode, 137, 19, 175, 2, // Opcode: VLD2LNd8 10981/* 609 */ MCD::OPC_CheckPredicate, 26, 199, 23, 0, // Skip to: 6701 10982/* 614 */ MCD::OPC_Decode, 140, 19, 175, 2, // Opcode: VLD2LNd8_UPD 10983/* 619 */ MCD::OPC_FilterValue, 2, 247, 1, 0, // Skip to: 1127 10984/* 624 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 10985/* 627 */ MCD::OPC_FilterValue, 0, 245, 0, 0, // Skip to: 877 10986/* 632 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 10987/* 635 */ MCD::OPC_FilterValue, 232, 3, 195, 0, 0, // Skip to: 836 10988/* 641 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 10989/* 644 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 692 10990/* 649 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 10991/* 652 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 667 10992/* 657 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 682 10993/* 662 */ MCD::OPC_Decode, 210, 26, 176, 2, // Opcode: VST1d8Qwb_fixed 10994/* 667 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 682 10995/* 672 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 682 10996/* 677 */ MCD::OPC_Decode, 208, 26, 176, 2, // Opcode: VST1d8Q 10997/* 682 */ MCD::OPC_CheckPredicate, 26, 126, 23, 0, // Skip to: 6701 10998/* 687 */ MCD::OPC_Decode, 211, 26, 176, 2, // Opcode: VST1d8Qwb_register 10999/* 692 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 740 11000/* 697 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11001/* 700 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 715 11002/* 705 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 730 11003/* 710 */ MCD::OPC_Decode, 173, 26, 176, 2, // Opcode: VST1d16Qwb_fixed 11004/* 715 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 730 11005/* 720 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 730 11006/* 725 */ MCD::OPC_Decode, 171, 26, 176, 2, // Opcode: VST1d16Q 11007/* 730 */ MCD::OPC_CheckPredicate, 26, 78, 23, 0, // Skip to: 6701 11008/* 735 */ MCD::OPC_Decode, 174, 26, 176, 2, // Opcode: VST1d16Qwb_register 11009/* 740 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 788 11010/* 745 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11011/* 748 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 763 11012/* 753 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 778 11013/* 758 */ MCD::OPC_Decode, 184, 26, 176, 2, // Opcode: VST1d32Qwb_fixed 11014/* 763 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 778 11015/* 768 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 778 11016/* 773 */ MCD::OPC_Decode, 182, 26, 176, 2, // Opcode: VST1d32Q 11017/* 778 */ MCD::OPC_CheckPredicate, 26, 30, 23, 0, // Skip to: 6701 11018/* 783 */ MCD::OPC_Decode, 185, 26, 176, 2, // Opcode: VST1d32Qwb_register 11019/* 788 */ MCD::OPC_FilterValue, 3, 20, 23, 0, // Skip to: 6701 11020/* 793 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11021/* 796 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 811 11022/* 801 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 826 11023/* 806 */ MCD::OPC_Decode, 197, 26, 176, 2, // Opcode: VST1d64Qwb_fixed 11024/* 811 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 826 11025/* 816 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 826 11026/* 821 */ MCD::OPC_Decode, 193, 26, 176, 2, // Opcode: VST1d64Q 11027/* 826 */ MCD::OPC_CheckPredicate, 26, 238, 22, 0, // Skip to: 6701 11028/* 831 */ MCD::OPC_Decode, 198, 26, 176, 2, // Opcode: VST1d64Qwb_register 11029/* 836 */ MCD::OPC_FilterValue, 233, 3, 227, 22, 0, // Skip to: 6701 11030/* 842 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 11031/* 845 */ MCD::OPC_FilterValue, 0, 219, 22, 0, // Skip to: 6701 11032/* 850 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 867 11033/* 855 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 867 11034/* 862 */ MCD::OPC_Decode, 182, 27, 177, 2, // Opcode: VST3LNd8 11035/* 867 */ MCD::OPC_CheckPredicate, 26, 197, 22, 0, // Skip to: 6701 11036/* 872 */ MCD::OPC_Decode, 185, 27, 177, 2, // Opcode: VST3LNd8_UPD 11037/* 877 */ MCD::OPC_FilterValue, 2, 187, 22, 0, // Skip to: 6701 11038/* 882 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11039/* 885 */ MCD::OPC_FilterValue, 232, 3, 195, 0, 0, // Skip to: 1086 11040/* 891 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11041/* 894 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 942 11042/* 899 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11043/* 902 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 917 11044/* 907 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 932 11045/* 912 */ MCD::OPC_Decode, 197, 18, 176, 2, // Opcode: VLD1d8Qwb_fixed 11046/* 917 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 932 11047/* 922 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 932 11048/* 927 */ MCD::OPC_Decode, 195, 18, 176, 2, // Opcode: VLD1d8Q 11049/* 932 */ MCD::OPC_CheckPredicate, 26, 132, 22, 0, // Skip to: 6701 11050/* 937 */ MCD::OPC_Decode, 198, 18, 176, 2, // Opcode: VLD1d8Qwb_register 11051/* 942 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 990 11052/* 947 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11053/* 950 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 965 11054/* 955 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 980 11055/* 960 */ MCD::OPC_Decode, 160, 18, 176, 2, // Opcode: VLD1d16Qwb_fixed 11056/* 965 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 980 11057/* 970 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 980 11058/* 975 */ MCD::OPC_Decode, 158, 18, 176, 2, // Opcode: VLD1d16Q 11059/* 980 */ MCD::OPC_CheckPredicate, 26, 84, 22, 0, // Skip to: 6701 11060/* 985 */ MCD::OPC_Decode, 161, 18, 176, 2, // Opcode: VLD1d16Qwb_register 11061/* 990 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 1038 11062/* 995 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11063/* 998 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1013 11064/* 1003 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1028 11065/* 1008 */ MCD::OPC_Decode, 171, 18, 176, 2, // Opcode: VLD1d32Qwb_fixed 11066/* 1013 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1028 11067/* 1018 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1028 11068/* 1023 */ MCD::OPC_Decode, 169, 18, 176, 2, // Opcode: VLD1d32Q 11069/* 1028 */ MCD::OPC_CheckPredicate, 26, 36, 22, 0, // Skip to: 6701 11070/* 1033 */ MCD::OPC_Decode, 172, 18, 176, 2, // Opcode: VLD1d32Qwb_register 11071/* 1038 */ MCD::OPC_FilterValue, 3, 26, 22, 0, // Skip to: 6701 11072/* 1043 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11073/* 1046 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1061 11074/* 1051 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1076 11075/* 1056 */ MCD::OPC_Decode, 184, 18, 176, 2, // Opcode: VLD1d64Qwb_fixed 11076/* 1061 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1076 11077/* 1066 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1076 11078/* 1071 */ MCD::OPC_Decode, 180, 18, 176, 2, // Opcode: VLD1d64Q 11079/* 1076 */ MCD::OPC_CheckPredicate, 26, 244, 21, 0, // Skip to: 6701 11080/* 1081 */ MCD::OPC_Decode, 185, 18, 176, 2, // Opcode: VLD1d64Qwb_register 11081/* 1086 */ MCD::OPC_FilterValue, 233, 3, 233, 21, 0, // Skip to: 6701 11082/* 1092 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 11083/* 1095 */ MCD::OPC_FilterValue, 0, 225, 21, 0, // Skip to: 6701 11084/* 1100 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1117 11085/* 1105 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1117 11086/* 1112 */ MCD::OPC_Decode, 217, 19, 178, 2, // Opcode: VLD3LNd8 11087/* 1117 */ MCD::OPC_CheckPredicate, 26, 203, 21, 0, // Skip to: 6701 11088/* 1122 */ MCD::OPC_Decode, 220, 19, 178, 2, // Opcode: VLD3LNd8_UPD 11089/* 1127 */ MCD::OPC_FilterValue, 3, 135, 1, 0, // Skip to: 1523 11090/* 1132 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11091/* 1135 */ MCD::OPC_FilterValue, 0, 189, 0, 0, // Skip to: 1329 11092/* 1140 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11093/* 1143 */ MCD::OPC_FilterValue, 232, 3, 147, 0, 0, // Skip to: 1296 11094/* 1149 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11095/* 1152 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 1200 11096/* 1157 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11097/* 1160 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1175 11098/* 1165 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1190 11099/* 1170 */ MCD::OPC_Decode, 172, 27, 179, 2, // Opcode: VST2q8wb_fixed 11100/* 1175 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1190 11101/* 1180 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1190 11102/* 1185 */ MCD::OPC_Decode, 168, 27, 179, 2, // Opcode: VST2q8 11103/* 1190 */ MCD::OPC_CheckPredicate, 26, 130, 21, 0, // Skip to: 6701 11104/* 1195 */ MCD::OPC_Decode, 173, 27, 179, 2, // Opcode: VST2q8wb_register 11105/* 1200 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 1248 11106/* 1205 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11107/* 1208 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1223 11108/* 1213 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1238 11109/* 1218 */ MCD::OPC_Decode, 160, 27, 179, 2, // Opcode: VST2q16wb_fixed 11110/* 1223 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1238 11111/* 1228 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1238 11112/* 1233 */ MCD::OPC_Decode, 156, 27, 179, 2, // Opcode: VST2q16 11113/* 1238 */ MCD::OPC_CheckPredicate, 26, 82, 21, 0, // Skip to: 6701 11114/* 1243 */ MCD::OPC_Decode, 161, 27, 179, 2, // Opcode: VST2q16wb_register 11115/* 1248 */ MCD::OPC_FilterValue, 2, 72, 21, 0, // Skip to: 6701 11116/* 1253 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11117/* 1256 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1271 11118/* 1261 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1286 11119/* 1266 */ MCD::OPC_Decode, 166, 27, 179, 2, // Opcode: VST2q32wb_fixed 11120/* 1271 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1286 11121/* 1276 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1286 11122/* 1281 */ MCD::OPC_Decode, 162, 27, 179, 2, // Opcode: VST2q32 11123/* 1286 */ MCD::OPC_CheckPredicate, 26, 34, 21, 0, // Skip to: 6701 11124/* 1291 */ MCD::OPC_Decode, 167, 27, 179, 2, // Opcode: VST2q32wb_register 11125/* 1296 */ MCD::OPC_FilterValue, 233, 3, 23, 21, 0, // Skip to: 6701 11126/* 1302 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1319 11127/* 1307 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1319 11128/* 1314 */ MCD::OPC_Decode, 229, 27, 180, 2, // Opcode: VST4LNd8 11129/* 1319 */ MCD::OPC_CheckPredicate, 26, 1, 21, 0, // Skip to: 6701 11130/* 1324 */ MCD::OPC_Decode, 232, 27, 180, 2, // Opcode: VST4LNd8_UPD 11131/* 1329 */ MCD::OPC_FilterValue, 2, 247, 20, 0, // Skip to: 6701 11132/* 1334 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11133/* 1337 */ MCD::OPC_FilterValue, 232, 3, 147, 0, 0, // Skip to: 1490 11134/* 1343 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11135/* 1346 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 1394 11136/* 1351 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11137/* 1354 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1369 11138/* 1359 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1384 11139/* 1364 */ MCD::OPC_Decode, 183, 19, 179, 2, // Opcode: VLD2q8wb_fixed 11140/* 1369 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1384 11141/* 1374 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1384 11142/* 1379 */ MCD::OPC_Decode, 179, 19, 179, 2, // Opcode: VLD2q8 11143/* 1384 */ MCD::OPC_CheckPredicate, 26, 192, 20, 0, // Skip to: 6701 11144/* 1389 */ MCD::OPC_Decode, 184, 19, 179, 2, // Opcode: VLD2q8wb_register 11145/* 1394 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 1442 11146/* 1399 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11147/* 1402 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1417 11148/* 1407 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1432 11149/* 1412 */ MCD::OPC_Decode, 171, 19, 179, 2, // Opcode: VLD2q16wb_fixed 11150/* 1417 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1432 11151/* 1422 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1432 11152/* 1427 */ MCD::OPC_Decode, 167, 19, 179, 2, // Opcode: VLD2q16 11153/* 1432 */ MCD::OPC_CheckPredicate, 26, 144, 20, 0, // Skip to: 6701 11154/* 1437 */ MCD::OPC_Decode, 172, 19, 179, 2, // Opcode: VLD2q16wb_register 11155/* 1442 */ MCD::OPC_FilterValue, 2, 134, 20, 0, // Skip to: 6701 11156/* 1447 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11157/* 1450 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1465 11158/* 1455 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 1480 11159/* 1460 */ MCD::OPC_Decode, 177, 19, 179, 2, // Opcode: VLD2q32wb_fixed 11160/* 1465 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1480 11161/* 1470 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 1480 11162/* 1475 */ MCD::OPC_Decode, 173, 19, 179, 2, // Opcode: VLD2q32 11163/* 1480 */ MCD::OPC_CheckPredicate, 26, 96, 20, 0, // Skip to: 6701 11164/* 1485 */ MCD::OPC_Decode, 178, 19, 179, 2, // Opcode: VLD2q32wb_register 11165/* 1490 */ MCD::OPC_FilterValue, 233, 3, 85, 20, 0, // Skip to: 6701 11166/* 1496 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1513 11167/* 1501 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1513 11168/* 1508 */ MCD::OPC_Decode, 160, 20, 181, 2, // Opcode: VLD4LNd8 11169/* 1513 */ MCD::OPC_CheckPredicate, 26, 63, 20, 0, // Skip to: 6701 11170/* 1518 */ MCD::OPC_Decode, 163, 20, 181, 2, // Opcode: VLD4LNd8_UPD 11171/* 1523 */ MCD::OPC_FilterValue, 4, 54, 1, 0, // Skip to: 1838 11172/* 1528 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11173/* 1531 */ MCD::OPC_FilterValue, 0, 149, 0, 0, // Skip to: 1685 11174/* 1536 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11175/* 1539 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 1644 11176/* 1545 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 11177/* 1548 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 1580 11178/* 1553 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1570 11179/* 1558 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1570 11180/* 1565 */ MCD::OPC_Decode, 202, 27, 182, 2, // Opcode: VST3d8 11181/* 1570 */ MCD::OPC_CheckPredicate, 26, 6, 20, 0, // Skip to: 6701 11182/* 1575 */ MCD::OPC_Decode, 205, 27, 182, 2, // Opcode: VST3d8_UPD 11183/* 1580 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 1612 11184/* 1585 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1602 11185/* 1590 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1602 11186/* 1597 */ MCD::OPC_Decode, 194, 27, 182, 2, // Opcode: VST3d16 11187/* 1602 */ MCD::OPC_CheckPredicate, 26, 230, 19, 0, // Skip to: 6701 11188/* 1607 */ MCD::OPC_Decode, 197, 27, 182, 2, // Opcode: VST3d16_UPD 11189/* 1612 */ MCD::OPC_FilterValue, 4, 220, 19, 0, // Skip to: 6701 11190/* 1617 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1634 11191/* 1622 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1634 11192/* 1629 */ MCD::OPC_Decode, 198, 27, 182, 2, // Opcode: VST3d32 11193/* 1634 */ MCD::OPC_CheckPredicate, 26, 198, 19, 0, // Skip to: 6701 11194/* 1639 */ MCD::OPC_Decode, 201, 27, 182, 2, // Opcode: VST3d32_UPD 11195/* 1644 */ MCD::OPC_FilterValue, 233, 3, 187, 19, 0, // Skip to: 6701 11196/* 1650 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11197/* 1653 */ MCD::OPC_FilterValue, 0, 179, 19, 0, // Skip to: 6701 11198/* 1658 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1675 11199/* 1663 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1675 11200/* 1670 */ MCD::OPC_Decode, 158, 26, 172, 2, // Opcode: VST1LNd16 11201/* 1675 */ MCD::OPC_CheckPredicate, 26, 157, 19, 0, // Skip to: 6701 11202/* 1680 */ MCD::OPC_Decode, 159, 26, 172, 2, // Opcode: VST1LNd16_UPD 11203/* 1685 */ MCD::OPC_FilterValue, 2, 147, 19, 0, // Skip to: 6701 11204/* 1690 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11205/* 1693 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 1798 11206/* 1699 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 11207/* 1702 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 1734 11208/* 1707 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1724 11209/* 1712 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1724 11210/* 1719 */ MCD::OPC_Decode, 237, 19, 182, 2, // Opcode: VLD3d8 11211/* 1724 */ MCD::OPC_CheckPredicate, 26, 108, 19, 0, // Skip to: 6701 11212/* 1729 */ MCD::OPC_Decode, 240, 19, 182, 2, // Opcode: VLD3d8_UPD 11213/* 1734 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 1766 11214/* 1739 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1756 11215/* 1744 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1756 11216/* 1751 */ MCD::OPC_Decode, 229, 19, 182, 2, // Opcode: VLD3d16 11217/* 1756 */ MCD::OPC_CheckPredicate, 26, 76, 19, 0, // Skip to: 6701 11218/* 1761 */ MCD::OPC_Decode, 232, 19, 182, 2, // Opcode: VLD3d16_UPD 11219/* 1766 */ MCD::OPC_FilterValue, 4, 66, 19, 0, // Skip to: 6701 11220/* 1771 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1788 11221/* 1776 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1788 11222/* 1783 */ MCD::OPC_Decode, 233, 19, 182, 2, // Opcode: VLD3d32 11223/* 1788 */ MCD::OPC_CheckPredicate, 26, 44, 19, 0, // Skip to: 6701 11224/* 1793 */ MCD::OPC_Decode, 236, 19, 182, 2, // Opcode: VLD3d32_UPD 11225/* 1798 */ MCD::OPC_FilterValue, 233, 3, 33, 19, 0, // Skip to: 6701 11226/* 1804 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1821 11227/* 1809 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1821 11228/* 1816 */ MCD::OPC_Decode, 145, 18, 173, 2, // Opcode: VLD1LNd16 11229/* 1821 */ MCD::OPC_CheckPredicate, 26, 11, 19, 0, // Skip to: 6701 11230/* 1826 */ MCD::OPC_CheckField, 5, 1, 0, 4, 19, 0, // Skip to: 6701 11231/* 1833 */ MCD::OPC_Decode, 146, 18, 173, 2, // Opcode: VLD1LNd16_UPD 11232/* 1838 */ MCD::OPC_FilterValue, 5, 137, 1, 0, // Skip to: 2236 11233/* 1843 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11234/* 1846 */ MCD::OPC_FilterValue, 0, 39, 1, 0, // Skip to: 2146 11235/* 1851 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11236/* 1854 */ MCD::OPC_FilterValue, 0, 141, 0, 0, // Skip to: 2000 11237/* 1859 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11238/* 1862 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 1967 11239/* 1868 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11240/* 1871 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 1903 11241/* 1876 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1893 11242/* 1881 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1893 11243/* 1888 */ MCD::OPC_Decode, 216, 27, 182, 2, // Opcode: VST3q8 11244/* 1893 */ MCD::OPC_CheckPredicate, 26, 195, 18, 0, // Skip to: 6701 11245/* 1898 */ MCD::OPC_Decode, 218, 27, 182, 2, // Opcode: VST3q8_UPD 11246/* 1903 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 1935 11247/* 1908 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1925 11248/* 1913 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1925 11249/* 1920 */ MCD::OPC_Decode, 206, 27, 182, 2, // Opcode: VST3q16 11250/* 1925 */ MCD::OPC_CheckPredicate, 26, 163, 18, 0, // Skip to: 6701 11251/* 1930 */ MCD::OPC_Decode, 208, 27, 182, 2, // Opcode: VST3q16_UPD 11252/* 1935 */ MCD::OPC_FilterValue, 2, 153, 18, 0, // Skip to: 6701 11253/* 1940 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1957 11254/* 1945 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1957 11255/* 1952 */ MCD::OPC_Decode, 211, 27, 182, 2, // Opcode: VST3q32 11256/* 1957 */ MCD::OPC_CheckPredicate, 26, 131, 18, 0, // Skip to: 6701 11257/* 1962 */ MCD::OPC_Decode, 213, 27, 182, 2, // Opcode: VST3q32_UPD 11258/* 1967 */ MCD::OPC_FilterValue, 233, 3, 120, 18, 0, // Skip to: 6701 11259/* 1973 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 1990 11260/* 1978 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 1990 11261/* 1985 */ MCD::OPC_Decode, 246, 26, 174, 2, // Opcode: VST2LNd16 11262/* 1990 */ MCD::OPC_CheckPredicate, 26, 98, 18, 0, // Skip to: 6701 11263/* 1995 */ MCD::OPC_Decode, 249, 26, 174, 2, // Opcode: VST2LNd16_UPD 11264/* 2000 */ MCD::OPC_FilterValue, 2, 88, 18, 0, // Skip to: 6701 11265/* 2005 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11266/* 2008 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 2113 11267/* 2014 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11268/* 2017 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 2049 11269/* 2022 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2039 11270/* 2027 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2039 11271/* 2034 */ MCD::OPC_Decode, 251, 19, 182, 2, // Opcode: VLD3q8 11272/* 2039 */ MCD::OPC_CheckPredicate, 26, 49, 18, 0, // Skip to: 6701 11273/* 2044 */ MCD::OPC_Decode, 253, 19, 182, 2, // Opcode: VLD3q8_UPD 11274/* 2049 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 2081 11275/* 2054 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2071 11276/* 2059 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2071 11277/* 2066 */ MCD::OPC_Decode, 241, 19, 182, 2, // Opcode: VLD3q16 11278/* 2071 */ MCD::OPC_CheckPredicate, 26, 17, 18, 0, // Skip to: 6701 11279/* 2076 */ MCD::OPC_Decode, 243, 19, 182, 2, // Opcode: VLD3q16_UPD 11280/* 2081 */ MCD::OPC_FilterValue, 2, 7, 18, 0, // Skip to: 6701 11281/* 2086 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2103 11282/* 2091 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2103 11283/* 2098 */ MCD::OPC_Decode, 246, 19, 182, 2, // Opcode: VLD3q32 11284/* 2103 */ MCD::OPC_CheckPredicate, 26, 241, 17, 0, // Skip to: 6701 11285/* 2108 */ MCD::OPC_Decode, 248, 19, 182, 2, // Opcode: VLD3q32_UPD 11286/* 2113 */ MCD::OPC_FilterValue, 233, 3, 230, 17, 0, // Skip to: 6701 11287/* 2119 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2136 11288/* 2124 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2136 11289/* 2131 */ MCD::OPC_Decode, 129, 19, 175, 2, // Opcode: VLD2LNd16 11290/* 2136 */ MCD::OPC_CheckPredicate, 26, 208, 17, 0, // Skip to: 6701 11291/* 2141 */ MCD::OPC_Decode, 132, 19, 175, 2, // Opcode: VLD2LNd16_UPD 11292/* 2146 */ MCD::OPC_FilterValue, 1, 198, 17, 0, // Skip to: 6701 11293/* 2151 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11294/* 2154 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 2195 11295/* 2159 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11296/* 2162 */ MCD::OPC_FilterValue, 233, 3, 181, 17, 0, // Skip to: 6701 11297/* 2168 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2185 11298/* 2173 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2185 11299/* 2180 */ MCD::OPC_Decode, 130, 27, 174, 2, // Opcode: VST2LNq16 11300/* 2185 */ MCD::OPC_CheckPredicate, 26, 159, 17, 0, // Skip to: 6701 11301/* 2190 */ MCD::OPC_Decode, 133, 27, 174, 2, // Opcode: VST2LNq16_UPD 11302/* 2195 */ MCD::OPC_FilterValue, 2, 149, 17, 0, // Skip to: 6701 11303/* 2200 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11304/* 2203 */ MCD::OPC_FilterValue, 233, 3, 140, 17, 0, // Skip to: 6701 11305/* 2209 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2226 11306/* 2214 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2226 11307/* 2221 */ MCD::OPC_Decode, 141, 19, 175, 2, // Opcode: VLD2LNq16 11308/* 2226 */ MCD::OPC_CheckPredicate, 26, 118, 17, 0, // Skip to: 6701 11309/* 2231 */ MCD::OPC_Decode, 144, 19, 175, 2, // Opcode: VLD2LNq16_UPD 11310/* 2236 */ MCD::OPC_FilterValue, 6, 108, 2, 0, // Skip to: 2861 11311/* 2241 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11312/* 2244 */ MCD::OPC_FilterValue, 0, 49, 1, 0, // Skip to: 2554 11313/* 2249 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11314/* 2252 */ MCD::OPC_FilterValue, 232, 3, 223, 0, 0, // Skip to: 2481 11315/* 2258 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11316/* 2261 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 2316 11317/* 2266 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11318/* 2269 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2284 11319/* 2274 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 2306 11320/* 2279 */ MCD::OPC_Decode, 214, 26, 176, 2, // Opcode: VST1d8Twb_fixed 11321/* 2284 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2306 11322/* 2289 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2306 11323/* 2294 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 2306 11324/* 2301 */ MCD::OPC_Decode, 212, 26, 176, 2, // Opcode: VST1d8T 11325/* 2306 */ MCD::OPC_CheckPredicate, 26, 38, 17, 0, // Skip to: 6701 11326/* 2311 */ MCD::OPC_Decode, 215, 26, 176, 2, // Opcode: VST1d8Twb_register 11327/* 2316 */ MCD::OPC_FilterValue, 1, 50, 0, 0, // Skip to: 2371 11328/* 2321 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11329/* 2324 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2339 11330/* 2329 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 2361 11331/* 2334 */ MCD::OPC_Decode, 177, 26, 176, 2, // Opcode: VST1d16Twb_fixed 11332/* 2339 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2361 11333/* 2344 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2361 11334/* 2349 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 2361 11335/* 2356 */ MCD::OPC_Decode, 175, 26, 176, 2, // Opcode: VST1d16T 11336/* 2361 */ MCD::OPC_CheckPredicate, 26, 239, 16, 0, // Skip to: 6701 11337/* 2366 */ MCD::OPC_Decode, 178, 26, 176, 2, // Opcode: VST1d16Twb_register 11338/* 2371 */ MCD::OPC_FilterValue, 2, 50, 0, 0, // Skip to: 2426 11339/* 2376 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11340/* 2379 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2394 11341/* 2384 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 2416 11342/* 2389 */ MCD::OPC_Decode, 188, 26, 176, 2, // Opcode: VST1d32Twb_fixed 11343/* 2394 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2416 11344/* 2399 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2416 11345/* 2404 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 2416 11346/* 2411 */ MCD::OPC_Decode, 186, 26, 176, 2, // Opcode: VST1d32T 11347/* 2416 */ MCD::OPC_CheckPredicate, 26, 184, 16, 0, // Skip to: 6701 11348/* 2421 */ MCD::OPC_Decode, 189, 26, 176, 2, // Opcode: VST1d32Twb_register 11349/* 2426 */ MCD::OPC_FilterValue, 3, 174, 16, 0, // Skip to: 6701 11350/* 2431 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11351/* 2434 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2449 11352/* 2439 */ MCD::OPC_CheckPredicate, 26, 27, 0, 0, // Skip to: 2471 11353/* 2444 */ MCD::OPC_Decode, 203, 26, 176, 2, // Opcode: VST1d64Twb_fixed 11354/* 2449 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2471 11355/* 2454 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2471 11356/* 2459 */ MCD::OPC_CheckField, 5, 1, 0, 5, 0, 0, // Skip to: 2471 11357/* 2466 */ MCD::OPC_Decode, 199, 26, 176, 2, // Opcode: VST1d64T 11358/* 2471 */ MCD::OPC_CheckPredicate, 26, 129, 16, 0, // Skip to: 6701 11359/* 2476 */ MCD::OPC_Decode, 204, 26, 176, 2, // Opcode: VST1d64Twb_register 11360/* 2481 */ MCD::OPC_FilterValue, 233, 3, 118, 16, 0, // Skip to: 6701 11361/* 2487 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 11362/* 2490 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 2522 11363/* 2495 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2512 11364/* 2500 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2512 11365/* 2507 */ MCD::OPC_Decode, 174, 27, 177, 2, // Opcode: VST3LNd16 11366/* 2512 */ MCD::OPC_CheckPredicate, 26, 88, 16, 0, // Skip to: 6701 11367/* 2517 */ MCD::OPC_Decode, 177, 27, 177, 2, // Opcode: VST3LNd16_UPD 11368/* 2522 */ MCD::OPC_FilterValue, 2, 78, 16, 0, // Skip to: 6701 11369/* 2527 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2544 11370/* 2532 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2544 11371/* 2539 */ MCD::OPC_Decode, 186, 27, 177, 2, // Opcode: VST3LNq16 11372/* 2544 */ MCD::OPC_CheckPredicate, 26, 56, 16, 0, // Skip to: 6701 11373/* 2549 */ MCD::OPC_Decode, 189, 27, 177, 2, // Opcode: VST3LNq16_UPD 11374/* 2554 */ MCD::OPC_FilterValue, 2, 46, 16, 0, // Skip to: 6701 11375/* 2559 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11376/* 2562 */ MCD::OPC_FilterValue, 0, 245, 0, 0, // Skip to: 2812 11377/* 2567 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11378/* 2570 */ MCD::OPC_FilterValue, 232, 3, 195, 0, 0, // Skip to: 2771 11379/* 2576 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11380/* 2579 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 2627 11381/* 2584 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11382/* 2587 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2602 11383/* 2592 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2617 11384/* 2597 */ MCD::OPC_Decode, 201, 18, 176, 2, // Opcode: VLD1d8Twb_fixed 11385/* 2602 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2617 11386/* 2607 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2617 11387/* 2612 */ MCD::OPC_Decode, 199, 18, 176, 2, // Opcode: VLD1d8T 11388/* 2617 */ MCD::OPC_CheckPredicate, 26, 239, 15, 0, // Skip to: 6701 11389/* 2622 */ MCD::OPC_Decode, 202, 18, 176, 2, // Opcode: VLD1d8Twb_register 11390/* 2627 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 2675 11391/* 2632 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11392/* 2635 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2650 11393/* 2640 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2665 11394/* 2645 */ MCD::OPC_Decode, 164, 18, 176, 2, // Opcode: VLD1d16Twb_fixed 11395/* 2650 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2665 11396/* 2655 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2665 11397/* 2660 */ MCD::OPC_Decode, 162, 18, 176, 2, // Opcode: VLD1d16T 11398/* 2665 */ MCD::OPC_CheckPredicate, 26, 191, 15, 0, // Skip to: 6701 11399/* 2670 */ MCD::OPC_Decode, 165, 18, 176, 2, // Opcode: VLD1d16Twb_register 11400/* 2675 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 2723 11401/* 2680 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11402/* 2683 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2698 11403/* 2688 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2713 11404/* 2693 */ MCD::OPC_Decode, 175, 18, 176, 2, // Opcode: VLD1d32Twb_fixed 11405/* 2698 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2713 11406/* 2703 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2713 11407/* 2708 */ MCD::OPC_Decode, 173, 18, 176, 2, // Opcode: VLD1d32T 11408/* 2713 */ MCD::OPC_CheckPredicate, 26, 143, 15, 0, // Skip to: 6701 11409/* 2718 */ MCD::OPC_Decode, 176, 18, 176, 2, // Opcode: VLD1d32Twb_register 11410/* 2723 */ MCD::OPC_FilterValue, 3, 133, 15, 0, // Skip to: 6701 11411/* 2728 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11412/* 2731 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2746 11413/* 2736 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2761 11414/* 2741 */ MCD::OPC_Decode, 190, 18, 176, 2, // Opcode: VLD1d64Twb_fixed 11415/* 2746 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2761 11416/* 2751 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2761 11417/* 2756 */ MCD::OPC_Decode, 186, 18, 176, 2, // Opcode: VLD1d64T 11418/* 2761 */ MCD::OPC_CheckPredicate, 26, 95, 15, 0, // Skip to: 6701 11419/* 2766 */ MCD::OPC_Decode, 191, 18, 176, 2, // Opcode: VLD1d64Twb_register 11420/* 2771 */ MCD::OPC_FilterValue, 233, 3, 84, 15, 0, // Skip to: 6701 11421/* 2777 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 11422/* 2780 */ MCD::OPC_FilterValue, 0, 76, 15, 0, // Skip to: 6701 11423/* 2785 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2802 11424/* 2790 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2802 11425/* 2797 */ MCD::OPC_Decode, 209, 19, 178, 2, // Opcode: VLD3LNd16 11426/* 2802 */ MCD::OPC_CheckPredicate, 26, 54, 15, 0, // Skip to: 6701 11427/* 2807 */ MCD::OPC_Decode, 212, 19, 178, 2, // Opcode: VLD3LNd16_UPD 11428/* 2812 */ MCD::OPC_FilterValue, 1, 44, 15, 0, // Skip to: 6701 11429/* 2817 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 11430/* 2820 */ MCD::OPC_FilterValue, 0, 36, 15, 0, // Skip to: 6701 11431/* 2825 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11432/* 2828 */ MCD::OPC_FilterValue, 233, 3, 27, 15, 0, // Skip to: 6701 11433/* 2834 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 2851 11434/* 2839 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 2851 11435/* 2846 */ MCD::OPC_Decode, 221, 19, 178, 2, // Opcode: VLD3LNq16 11436/* 2851 */ MCD::OPC_CheckPredicate, 26, 5, 15, 0, // Skip to: 6701 11437/* 2856 */ MCD::OPC_Decode, 224, 19, 178, 2, // Opcode: VLD3LNq16_UPD 11438/* 2861 */ MCD::OPC_FilterValue, 7, 73, 2, 0, // Skip to: 3451 11439/* 2866 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11440/* 2869 */ MCD::OPC_FilterValue, 0, 231, 1, 0, // Skip to: 3361 11441/* 2874 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11442/* 2877 */ MCD::OPC_FilterValue, 0, 237, 0, 0, // Skip to: 3119 11443/* 2882 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11444/* 2885 */ MCD::OPC_FilterValue, 232, 3, 195, 0, 0, // Skip to: 3086 11445/* 2891 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11446/* 2894 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 2942 11447/* 2899 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11448/* 2902 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2917 11449/* 2907 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2932 11450/* 2912 */ MCD::OPC_Decode, 216, 26, 176, 2, // Opcode: VST1d8wb_fixed 11451/* 2917 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2932 11452/* 2922 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2932 11453/* 2927 */ MCD::OPC_Decode, 207, 26, 176, 2, // Opcode: VST1d8 11454/* 2932 */ MCD::OPC_CheckPredicate, 26, 180, 14, 0, // Skip to: 6701 11455/* 2937 */ MCD::OPC_Decode, 217, 26, 176, 2, // Opcode: VST1d8wb_register 11456/* 2942 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 2990 11457/* 2947 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11458/* 2950 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2965 11459/* 2955 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 2980 11460/* 2960 */ MCD::OPC_Decode, 179, 26, 176, 2, // Opcode: VST1d16wb_fixed 11461/* 2965 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2980 11462/* 2970 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 2980 11463/* 2975 */ MCD::OPC_Decode, 170, 26, 176, 2, // Opcode: VST1d16 11464/* 2980 */ MCD::OPC_CheckPredicate, 26, 132, 14, 0, // Skip to: 6701 11465/* 2985 */ MCD::OPC_Decode, 180, 26, 176, 2, // Opcode: VST1d16wb_register 11466/* 2990 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 3038 11467/* 2995 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11468/* 2998 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3013 11469/* 3003 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3028 11470/* 3008 */ MCD::OPC_Decode, 190, 26, 176, 2, // Opcode: VST1d32wb_fixed 11471/* 3013 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3028 11472/* 3018 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3028 11473/* 3023 */ MCD::OPC_Decode, 181, 26, 176, 2, // Opcode: VST1d32 11474/* 3028 */ MCD::OPC_CheckPredicate, 26, 84, 14, 0, // Skip to: 6701 11475/* 3033 */ MCD::OPC_Decode, 191, 26, 176, 2, // Opcode: VST1d32wb_register 11476/* 3038 */ MCD::OPC_FilterValue, 3, 74, 14, 0, // Skip to: 6701 11477/* 3043 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11478/* 3046 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3061 11479/* 3051 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3076 11480/* 3056 */ MCD::OPC_Decode, 205, 26, 176, 2, // Opcode: VST1d64wb_fixed 11481/* 3061 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3076 11482/* 3066 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3076 11483/* 3071 */ MCD::OPC_Decode, 192, 26, 176, 2, // Opcode: VST1d64 11484/* 3076 */ MCD::OPC_CheckPredicate, 26, 36, 14, 0, // Skip to: 6701 11485/* 3081 */ MCD::OPC_Decode, 206, 26, 176, 2, // Opcode: VST1d64wb_register 11486/* 3086 */ MCD::OPC_FilterValue, 233, 3, 25, 14, 0, // Skip to: 6701 11487/* 3092 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3109 11488/* 3097 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3109 11489/* 3104 */ MCD::OPC_Decode, 221, 27, 180, 2, // Opcode: VST4LNd16 11490/* 3109 */ MCD::OPC_CheckPredicate, 26, 3, 14, 0, // Skip to: 6701 11491/* 3114 */ MCD::OPC_Decode, 224, 27, 180, 2, // Opcode: VST4LNd16_UPD 11492/* 3119 */ MCD::OPC_FilterValue, 2, 249, 13, 0, // Skip to: 6701 11493/* 3124 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11494/* 3127 */ MCD::OPC_FilterValue, 232, 3, 195, 0, 0, // Skip to: 3328 11495/* 3133 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 11496/* 3136 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 3184 11497/* 3141 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11498/* 3144 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3159 11499/* 3149 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3174 11500/* 3154 */ MCD::OPC_Decode, 203, 18, 176, 2, // Opcode: VLD1d8wb_fixed 11501/* 3159 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3174 11502/* 3164 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3174 11503/* 3169 */ MCD::OPC_Decode, 194, 18, 176, 2, // Opcode: VLD1d8 11504/* 3174 */ MCD::OPC_CheckPredicate, 26, 194, 13, 0, // Skip to: 6701 11505/* 3179 */ MCD::OPC_Decode, 204, 18, 176, 2, // Opcode: VLD1d8wb_register 11506/* 3184 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 3232 11507/* 3189 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11508/* 3192 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3207 11509/* 3197 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3222 11510/* 3202 */ MCD::OPC_Decode, 166, 18, 176, 2, // Opcode: VLD1d16wb_fixed 11511/* 3207 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3222 11512/* 3212 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3222 11513/* 3217 */ MCD::OPC_Decode, 157, 18, 176, 2, // Opcode: VLD1d16 11514/* 3222 */ MCD::OPC_CheckPredicate, 26, 146, 13, 0, // Skip to: 6701 11515/* 3227 */ MCD::OPC_Decode, 167, 18, 176, 2, // Opcode: VLD1d16wb_register 11516/* 3232 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 3280 11517/* 3237 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11518/* 3240 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3255 11519/* 3245 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3270 11520/* 3250 */ MCD::OPC_Decode, 177, 18, 176, 2, // Opcode: VLD1d32wb_fixed 11521/* 3255 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3270 11522/* 3260 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3270 11523/* 3265 */ MCD::OPC_Decode, 168, 18, 176, 2, // Opcode: VLD1d32 11524/* 3270 */ MCD::OPC_CheckPredicate, 26, 98, 13, 0, // Skip to: 6701 11525/* 3275 */ MCD::OPC_Decode, 178, 18, 176, 2, // Opcode: VLD1d32wb_register 11526/* 3280 */ MCD::OPC_FilterValue, 3, 88, 13, 0, // Skip to: 6701 11527/* 3285 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11528/* 3288 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3303 11529/* 3293 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3318 11530/* 3298 */ MCD::OPC_Decode, 192, 18, 176, 2, // Opcode: VLD1d64wb_fixed 11531/* 3303 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3318 11532/* 3308 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3318 11533/* 3313 */ MCD::OPC_Decode, 179, 18, 176, 2, // Opcode: VLD1d64 11534/* 3318 */ MCD::OPC_CheckPredicate, 26, 50, 13, 0, // Skip to: 6701 11535/* 3323 */ MCD::OPC_Decode, 193, 18, 176, 2, // Opcode: VLD1d64wb_register 11536/* 3328 */ MCD::OPC_FilterValue, 233, 3, 39, 13, 0, // Skip to: 6701 11537/* 3334 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3351 11538/* 3339 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3351 11539/* 3346 */ MCD::OPC_Decode, 152, 20, 181, 2, // Opcode: VLD4LNd16 11540/* 3351 */ MCD::OPC_CheckPredicate, 26, 17, 13, 0, // Skip to: 6701 11541/* 3356 */ MCD::OPC_Decode, 155, 20, 181, 2, // Opcode: VLD4LNd16_UPD 11542/* 3361 */ MCD::OPC_FilterValue, 1, 7, 13, 0, // Skip to: 6701 11543/* 3366 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11544/* 3369 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 3410 11545/* 3374 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11546/* 3377 */ MCD::OPC_FilterValue, 233, 3, 246, 12, 0, // Skip to: 6701 11547/* 3383 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3400 11548/* 3388 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3400 11549/* 3395 */ MCD::OPC_Decode, 233, 27, 180, 2, // Opcode: VST4LNq16 11550/* 3400 */ MCD::OPC_CheckPredicate, 26, 224, 12, 0, // Skip to: 6701 11551/* 3405 */ MCD::OPC_Decode, 236, 27, 180, 2, // Opcode: VST4LNq16_UPD 11552/* 3410 */ MCD::OPC_FilterValue, 2, 214, 12, 0, // Skip to: 6701 11553/* 3415 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11554/* 3418 */ MCD::OPC_FilterValue, 233, 3, 205, 12, 0, // Skip to: 6701 11555/* 3424 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3441 11556/* 3429 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3441 11557/* 3436 */ MCD::OPC_Decode, 164, 20, 181, 2, // Opcode: VLD4LNq16 11558/* 3441 */ MCD::OPC_CheckPredicate, 26, 183, 12, 0, // Skip to: 6701 11559/* 3446 */ MCD::OPC_Decode, 167, 20, 181, 2, // Opcode: VLD4LNq16_UPD 11560/* 3451 */ MCD::OPC_FilterValue, 8, 185, 1, 0, // Skip to: 3897 11561/* 3456 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 11562/* 3459 */ MCD::OPC_FilterValue, 0, 39, 1, 0, // Skip to: 3759 11563/* 3464 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11564/* 3467 */ MCD::OPC_FilterValue, 0, 141, 0, 0, // Skip to: 3613 11565/* 3472 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11566/* 3475 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 3580 11567/* 3481 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11568/* 3484 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 3532 11569/* 3489 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11570/* 3492 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3507 11571/* 3497 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3522 11572/* 3502 */ MCD::OPC_Decode, 154, 27, 179, 2, // Opcode: VST2d8wb_fixed 11573/* 3507 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3522 11574/* 3512 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3522 11575/* 3517 */ MCD::OPC_Decode, 153, 27, 179, 2, // Opcode: VST2d8 11576/* 3522 */ MCD::OPC_CheckPredicate, 26, 102, 12, 0, // Skip to: 6701 11577/* 3527 */ MCD::OPC_Decode, 155, 27, 179, 2, // Opcode: VST2d8wb_register 11578/* 3532 */ MCD::OPC_FilterValue, 1, 92, 12, 0, // Skip to: 6701 11579/* 3537 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11580/* 3540 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3555 11581/* 3545 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3570 11582/* 3550 */ MCD::OPC_Decode, 151, 27, 179, 2, // Opcode: VST2d32wb_fixed 11583/* 3555 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3570 11584/* 3560 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3570 11585/* 3565 */ MCD::OPC_Decode, 150, 27, 179, 2, // Opcode: VST2d32 11586/* 3570 */ MCD::OPC_CheckPredicate, 26, 54, 12, 0, // Skip to: 6701 11587/* 3575 */ MCD::OPC_Decode, 152, 27, 179, 2, // Opcode: VST2d32wb_register 11588/* 3580 */ MCD::OPC_FilterValue, 233, 3, 43, 12, 0, // Skip to: 6701 11589/* 3586 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3603 11590/* 3591 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3603 11591/* 3598 */ MCD::OPC_Decode, 160, 26, 172, 2, // Opcode: VST1LNd32 11592/* 3603 */ MCD::OPC_CheckPredicate, 26, 21, 12, 0, // Skip to: 6701 11593/* 3608 */ MCD::OPC_Decode, 161, 26, 172, 2, // Opcode: VST1LNd32_UPD 11594/* 3613 */ MCD::OPC_FilterValue, 2, 11, 12, 0, // Skip to: 6701 11595/* 3618 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11596/* 3621 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 3726 11597/* 3627 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11598/* 3630 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 3678 11599/* 3635 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11600/* 3638 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3653 11601/* 3643 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3668 11602/* 3648 */ MCD::OPC_Decode, 165, 19, 179, 2, // Opcode: VLD2d8wb_fixed 11603/* 3653 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3668 11604/* 3658 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3668 11605/* 3663 */ MCD::OPC_Decode, 164, 19, 179, 2, // Opcode: VLD2d8 11606/* 3668 */ MCD::OPC_CheckPredicate, 26, 212, 11, 0, // Skip to: 6701 11607/* 3673 */ MCD::OPC_Decode, 166, 19, 179, 2, // Opcode: VLD2d8wb_register 11608/* 3678 */ MCD::OPC_FilterValue, 1, 202, 11, 0, // Skip to: 6701 11609/* 3683 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11610/* 3686 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3701 11611/* 3691 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3716 11612/* 3696 */ MCD::OPC_Decode, 162, 19, 179, 2, // Opcode: VLD2d32wb_fixed 11613/* 3701 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3716 11614/* 3706 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3716 11615/* 3711 */ MCD::OPC_Decode, 161, 19, 179, 2, // Opcode: VLD2d32 11616/* 3716 */ MCD::OPC_CheckPredicate, 26, 164, 11, 0, // Skip to: 6701 11617/* 3721 */ MCD::OPC_Decode, 163, 19, 179, 2, // Opcode: VLD2d32wb_register 11618/* 3726 */ MCD::OPC_FilterValue, 233, 3, 153, 11, 0, // Skip to: 6701 11619/* 3732 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 3749 11620/* 3737 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 3749 11621/* 3744 */ MCD::OPC_Decode, 147, 18, 173, 2, // Opcode: VLD1LNd32 11622/* 3749 */ MCD::OPC_CheckPredicate, 26, 131, 11, 0, // Skip to: 6701 11623/* 3754 */ MCD::OPC_Decode, 148, 18, 173, 2, // Opcode: VLD1LNd32_UPD 11624/* 3759 */ MCD::OPC_FilterValue, 1, 121, 11, 0, // Skip to: 6701 11625/* 3764 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11626/* 3767 */ MCD::OPC_FilterValue, 0, 60, 0, 0, // Skip to: 3832 11627/* 3772 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11628/* 3775 */ MCD::OPC_FilterValue, 0, 105, 11, 0, // Skip to: 6701 11629/* 3780 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11630/* 3783 */ MCD::OPC_FilterValue, 232, 3, 96, 11, 0, // Skip to: 6701 11631/* 3789 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11632/* 3792 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3807 11633/* 3797 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3822 11634/* 3802 */ MCD::OPC_Decode, 148, 27, 179, 2, // Opcode: VST2d16wb_fixed 11635/* 3807 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3822 11636/* 3812 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3822 11637/* 3817 */ MCD::OPC_Decode, 147, 27, 179, 2, // Opcode: VST2d16 11638/* 3822 */ MCD::OPC_CheckPredicate, 26, 58, 11, 0, // Skip to: 6701 11639/* 3827 */ MCD::OPC_Decode, 149, 27, 179, 2, // Opcode: VST2d16wb_register 11640/* 3832 */ MCD::OPC_FilterValue, 2, 48, 11, 0, // Skip to: 6701 11641/* 3837 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11642/* 3840 */ MCD::OPC_FilterValue, 0, 40, 11, 0, // Skip to: 6701 11643/* 3845 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11644/* 3848 */ MCD::OPC_FilterValue, 232, 3, 31, 11, 0, // Skip to: 6701 11645/* 3854 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11646/* 3857 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3872 11647/* 3862 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3887 11648/* 3867 */ MCD::OPC_Decode, 159, 19, 179, 2, // Opcode: VLD2d16wb_fixed 11649/* 3872 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3887 11650/* 3877 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3887 11651/* 3882 */ MCD::OPC_Decode, 158, 19, 179, 2, // Opcode: VLD2d16 11652/* 3887 */ MCD::OPC_CheckPredicate, 26, 249, 10, 0, // Skip to: 6701 11653/* 3892 */ MCD::OPC_Decode, 160, 19, 179, 2, // Opcode: VLD2d16wb_register 11654/* 3897 */ MCD::OPC_FilterValue, 9, 27, 2, 0, // Skip to: 4441 11655/* 3902 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 11656/* 3905 */ MCD::OPC_FilterValue, 0, 55, 1, 0, // Skip to: 4221 11657/* 3910 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11658/* 3913 */ MCD::OPC_FilterValue, 0, 149, 0, 0, // Skip to: 4067 11659/* 3918 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11660/* 3921 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 4026 11661/* 3927 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11662/* 3930 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 3978 11663/* 3935 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11664/* 3938 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3953 11665/* 3943 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 3968 11666/* 3948 */ MCD::OPC_Decode, 145, 27, 179, 2, // Opcode: VST2b8wb_fixed 11667/* 3953 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3968 11668/* 3958 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 3968 11669/* 3963 */ MCD::OPC_Decode, 144, 27, 179, 2, // Opcode: VST2b8 11670/* 3968 */ MCD::OPC_CheckPredicate, 26, 168, 10, 0, // Skip to: 6701 11671/* 3973 */ MCD::OPC_Decode, 146, 27, 179, 2, // Opcode: VST2b8wb_register 11672/* 3978 */ MCD::OPC_FilterValue, 1, 158, 10, 0, // Skip to: 6701 11673/* 3983 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11674/* 3986 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4001 11675/* 3991 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4016 11676/* 3996 */ MCD::OPC_Decode, 142, 27, 179, 2, // Opcode: VST2b32wb_fixed 11677/* 4001 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4016 11678/* 4006 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4016 11679/* 4011 */ MCD::OPC_Decode, 141, 27, 179, 2, // Opcode: VST2b32 11680/* 4016 */ MCD::OPC_CheckPredicate, 26, 120, 10, 0, // Skip to: 6701 11681/* 4021 */ MCD::OPC_Decode, 143, 27, 179, 2, // Opcode: VST2b32wb_register 11682/* 4026 */ MCD::OPC_FilterValue, 233, 3, 109, 10, 0, // Skip to: 6701 11683/* 4032 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11684/* 4035 */ MCD::OPC_FilterValue, 0, 101, 10, 0, // Skip to: 6701 11685/* 4040 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4057 11686/* 4045 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4057 11687/* 4052 */ MCD::OPC_Decode, 250, 26, 174, 2, // Opcode: VST2LNd32 11688/* 4057 */ MCD::OPC_CheckPredicate, 26, 79, 10, 0, // Skip to: 6701 11689/* 4062 */ MCD::OPC_Decode, 253, 26, 174, 2, // Opcode: VST2LNd32_UPD 11690/* 4067 */ MCD::OPC_FilterValue, 2, 69, 10, 0, // Skip to: 6701 11691/* 4072 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11692/* 4075 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 4180 11693/* 4081 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11694/* 4084 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 4132 11695/* 4089 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11696/* 4092 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4107 11697/* 4097 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4122 11698/* 4102 */ MCD::OPC_Decode, 156, 19, 179, 2, // Opcode: VLD2b8wb_fixed 11699/* 4107 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4122 11700/* 4112 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4122 11701/* 4117 */ MCD::OPC_Decode, 155, 19, 179, 2, // Opcode: VLD2b8 11702/* 4122 */ MCD::OPC_CheckPredicate, 26, 14, 10, 0, // Skip to: 6701 11703/* 4127 */ MCD::OPC_Decode, 157, 19, 179, 2, // Opcode: VLD2b8wb_register 11704/* 4132 */ MCD::OPC_FilterValue, 1, 4, 10, 0, // Skip to: 6701 11705/* 4137 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11706/* 4140 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4155 11707/* 4145 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4170 11708/* 4150 */ MCD::OPC_Decode, 153, 19, 179, 2, // Opcode: VLD2b32wb_fixed 11709/* 4155 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4170 11710/* 4160 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4170 11711/* 4165 */ MCD::OPC_Decode, 152, 19, 179, 2, // Opcode: VLD2b32 11712/* 4170 */ MCD::OPC_CheckPredicate, 26, 222, 9, 0, // Skip to: 6701 11713/* 4175 */ MCD::OPC_Decode, 154, 19, 179, 2, // Opcode: VLD2b32wb_register 11714/* 4180 */ MCD::OPC_FilterValue, 233, 3, 211, 9, 0, // Skip to: 6701 11715/* 4186 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11716/* 4189 */ MCD::OPC_FilterValue, 0, 203, 9, 0, // Skip to: 6701 11717/* 4194 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4211 11718/* 4199 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4211 11719/* 4206 */ MCD::OPC_Decode, 133, 19, 175, 2, // Opcode: VLD2LNd32 11720/* 4211 */ MCD::OPC_CheckPredicate, 26, 181, 9, 0, // Skip to: 6701 11721/* 4216 */ MCD::OPC_Decode, 136, 19, 175, 2, // Opcode: VLD2LNd32_UPD 11722/* 4221 */ MCD::OPC_FilterValue, 1, 171, 9, 0, // Skip to: 6701 11723/* 4226 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11724/* 4229 */ MCD::OPC_FilterValue, 0, 101, 0, 0, // Skip to: 4335 11725/* 4234 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11726/* 4237 */ MCD::OPC_FilterValue, 232, 3, 51, 0, 0, // Skip to: 4294 11727/* 4243 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11728/* 4246 */ MCD::OPC_FilterValue, 0, 146, 9, 0, // Skip to: 6701 11729/* 4251 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11730/* 4254 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4269 11731/* 4259 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4284 11732/* 4264 */ MCD::OPC_Decode, 139, 27, 179, 2, // Opcode: VST2b16wb_fixed 11733/* 4269 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4284 11734/* 4274 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4284 11735/* 4279 */ MCD::OPC_Decode, 138, 27, 179, 2, // Opcode: VST2b16 11736/* 4284 */ MCD::OPC_CheckPredicate, 26, 108, 9, 0, // Skip to: 6701 11737/* 4289 */ MCD::OPC_Decode, 140, 27, 179, 2, // Opcode: VST2b16wb_register 11738/* 4294 */ MCD::OPC_FilterValue, 233, 3, 97, 9, 0, // Skip to: 6701 11739/* 4300 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11740/* 4303 */ MCD::OPC_FilterValue, 0, 89, 9, 0, // Skip to: 6701 11741/* 4308 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4325 11742/* 4313 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4325 11743/* 4320 */ MCD::OPC_Decode, 134, 27, 174, 2, // Opcode: VST2LNq32 11744/* 4325 */ MCD::OPC_CheckPredicate, 26, 67, 9, 0, // Skip to: 6701 11745/* 4330 */ MCD::OPC_Decode, 137, 27, 174, 2, // Opcode: VST2LNq32_UPD 11746/* 4335 */ MCD::OPC_FilterValue, 2, 57, 9, 0, // Skip to: 6701 11747/* 4340 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11748/* 4343 */ MCD::OPC_FilterValue, 232, 3, 51, 0, 0, // Skip to: 4400 11749/* 4349 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11750/* 4352 */ MCD::OPC_FilterValue, 0, 40, 9, 0, // Skip to: 6701 11751/* 4357 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11752/* 4360 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4375 11753/* 4365 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4390 11754/* 4370 */ MCD::OPC_Decode, 150, 19, 179, 2, // Opcode: VLD2b16wb_fixed 11755/* 4375 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4390 11756/* 4380 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4390 11757/* 4385 */ MCD::OPC_Decode, 149, 19, 179, 2, // Opcode: VLD2b16 11758/* 4390 */ MCD::OPC_CheckPredicate, 26, 2, 9, 0, // Skip to: 6701 11759/* 4395 */ MCD::OPC_Decode, 151, 19, 179, 2, // Opcode: VLD2b16wb_register 11760/* 4400 */ MCD::OPC_FilterValue, 233, 3, 247, 8, 0, // Skip to: 6701 11761/* 4406 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 11762/* 4409 */ MCD::OPC_FilterValue, 0, 239, 8, 0, // Skip to: 6701 11763/* 4414 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4431 11764/* 4419 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4431 11765/* 4426 */ MCD::OPC_Decode, 145, 19, 175, 2, // Opcode: VLD2LNq32 11766/* 4431 */ MCD::OPC_CheckPredicate, 26, 217, 8, 0, // Skip to: 6701 11767/* 4436 */ MCD::OPC_Decode, 148, 19, 175, 2, // Opcode: VLD2LNq32_UPD 11768/* 4441 */ MCD::OPC_FilterValue, 10, 123, 2, 0, // Skip to: 5081 11769/* 4446 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 11770/* 4449 */ MCD::OPC_FilterValue, 0, 55, 1, 0, // Skip to: 4765 11771/* 4454 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11772/* 4457 */ MCD::OPC_FilterValue, 0, 149, 0, 0, // Skip to: 4611 11773/* 4462 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11774/* 4465 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 4570 11775/* 4471 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11776/* 4474 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 4522 11777/* 4479 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11778/* 4482 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4497 11779/* 4487 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4512 11780/* 4492 */ MCD::OPC_Decode, 244, 26, 176, 2, // Opcode: VST1q8wb_fixed 11781/* 4497 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4512 11782/* 4502 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4512 11783/* 4507 */ MCD::OPC_Decode, 239, 26, 176, 2, // Opcode: VST1q8 11784/* 4512 */ MCD::OPC_CheckPredicate, 26, 136, 8, 0, // Skip to: 6701 11785/* 4517 */ MCD::OPC_Decode, 245, 26, 176, 2, // Opcode: VST1q8wb_register 11786/* 4522 */ MCD::OPC_FilterValue, 1, 126, 8, 0, // Skip to: 6701 11787/* 4527 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11788/* 4530 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4545 11789/* 4535 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4560 11790/* 4540 */ MCD::OPC_Decode, 230, 26, 176, 2, // Opcode: VST1q32wb_fixed 11791/* 4545 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4560 11792/* 4550 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4560 11793/* 4555 */ MCD::OPC_Decode, 225, 26, 176, 2, // Opcode: VST1q32 11794/* 4560 */ MCD::OPC_CheckPredicate, 26, 88, 8, 0, // Skip to: 6701 11795/* 4565 */ MCD::OPC_Decode, 231, 26, 176, 2, // Opcode: VST1q32wb_register 11796/* 4570 */ MCD::OPC_FilterValue, 233, 3, 77, 8, 0, // Skip to: 6701 11797/* 4576 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 11798/* 4579 */ MCD::OPC_FilterValue, 0, 69, 8, 0, // Skip to: 6701 11799/* 4584 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4601 11800/* 4589 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4601 11801/* 4596 */ MCD::OPC_Decode, 178, 27, 177, 2, // Opcode: VST3LNd32 11802/* 4601 */ MCD::OPC_CheckPredicate, 26, 47, 8, 0, // Skip to: 6701 11803/* 4606 */ MCD::OPC_Decode, 181, 27, 177, 2, // Opcode: VST3LNd32_UPD 11804/* 4611 */ MCD::OPC_FilterValue, 2, 37, 8, 0, // Skip to: 6701 11805/* 4616 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11806/* 4619 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 4724 11807/* 4625 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11808/* 4628 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 4676 11809/* 4633 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11810/* 4636 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4651 11811/* 4641 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4666 11812/* 4646 */ MCD::OPC_Decode, 231, 18, 176, 2, // Opcode: VLD1q8wb_fixed 11813/* 4651 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4666 11814/* 4656 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4666 11815/* 4661 */ MCD::OPC_Decode, 226, 18, 176, 2, // Opcode: VLD1q8 11816/* 4666 */ MCD::OPC_CheckPredicate, 26, 238, 7, 0, // Skip to: 6701 11817/* 4671 */ MCD::OPC_Decode, 232, 18, 176, 2, // Opcode: VLD1q8wb_register 11818/* 4676 */ MCD::OPC_FilterValue, 1, 228, 7, 0, // Skip to: 6701 11819/* 4681 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11820/* 4684 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4699 11821/* 4689 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4714 11822/* 4694 */ MCD::OPC_Decode, 217, 18, 176, 2, // Opcode: VLD1q32wb_fixed 11823/* 4699 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4714 11824/* 4704 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4714 11825/* 4709 */ MCD::OPC_Decode, 212, 18, 176, 2, // Opcode: VLD1q32 11826/* 4714 */ MCD::OPC_CheckPredicate, 26, 190, 7, 0, // Skip to: 6701 11827/* 4719 */ MCD::OPC_Decode, 218, 18, 176, 2, // Opcode: VLD1q32wb_register 11828/* 4724 */ MCD::OPC_FilterValue, 233, 3, 179, 7, 0, // Skip to: 6701 11829/* 4730 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 11830/* 4733 */ MCD::OPC_FilterValue, 0, 171, 7, 0, // Skip to: 6701 11831/* 4738 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4755 11832/* 4743 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4755 11833/* 4750 */ MCD::OPC_Decode, 213, 19, 178, 2, // Opcode: VLD3LNd32 11834/* 4755 */ MCD::OPC_CheckPredicate, 26, 149, 7, 0, // Skip to: 6701 11835/* 4760 */ MCD::OPC_Decode, 216, 19, 178, 2, // Opcode: VLD3LNd32_UPD 11836/* 4765 */ MCD::OPC_FilterValue, 1, 139, 7, 0, // Skip to: 6701 11837/* 4770 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11838/* 4773 */ MCD::OPC_FilterValue, 0, 149, 0, 0, // Skip to: 4927 11839/* 4778 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11840/* 4781 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 4886 11841/* 4787 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11842/* 4790 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 4838 11843/* 4795 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11844/* 4798 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4813 11845/* 4803 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4828 11846/* 4808 */ MCD::OPC_Decode, 223, 26, 176, 2, // Opcode: VST1q16wb_fixed 11847/* 4813 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4828 11848/* 4818 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4828 11849/* 4823 */ MCD::OPC_Decode, 218, 26, 176, 2, // Opcode: VST1q16 11850/* 4828 */ MCD::OPC_CheckPredicate, 26, 76, 7, 0, // Skip to: 6701 11851/* 4833 */ MCD::OPC_Decode, 224, 26, 176, 2, // Opcode: VST1q16wb_register 11852/* 4838 */ MCD::OPC_FilterValue, 1, 66, 7, 0, // Skip to: 6701 11853/* 4843 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11854/* 4846 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4861 11855/* 4851 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4876 11856/* 4856 */ MCD::OPC_Decode, 237, 26, 176, 2, // Opcode: VST1q64wb_fixed 11857/* 4861 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4876 11858/* 4866 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4876 11859/* 4871 */ MCD::OPC_Decode, 232, 26, 176, 2, // Opcode: VST1q64 11860/* 4876 */ MCD::OPC_CheckPredicate, 26, 28, 7, 0, // Skip to: 6701 11861/* 4881 */ MCD::OPC_Decode, 238, 26, 176, 2, // Opcode: VST1q64wb_register 11862/* 4886 */ MCD::OPC_FilterValue, 233, 3, 17, 7, 0, // Skip to: 6701 11863/* 4892 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 11864/* 4895 */ MCD::OPC_FilterValue, 0, 9, 7, 0, // Skip to: 6701 11865/* 4900 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 4917 11866/* 4905 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 4917 11867/* 4912 */ MCD::OPC_Decode, 190, 27, 177, 2, // Opcode: VST3LNq32 11868/* 4917 */ MCD::OPC_CheckPredicate, 26, 243, 6, 0, // Skip to: 6701 11869/* 4922 */ MCD::OPC_Decode, 193, 27, 177, 2, // Opcode: VST3LNq32_UPD 11870/* 4927 */ MCD::OPC_FilterValue, 2, 233, 6, 0, // Skip to: 6701 11871/* 4932 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11872/* 4935 */ MCD::OPC_FilterValue, 232, 3, 99, 0, 0, // Skip to: 5040 11873/* 4941 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 11874/* 4944 */ MCD::OPC_FilterValue, 0, 43, 0, 0, // Skip to: 4992 11875/* 4949 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11876/* 4952 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 4967 11877/* 4957 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 4982 11878/* 4962 */ MCD::OPC_Decode, 210, 18, 176, 2, // Opcode: VLD1q16wb_fixed 11879/* 4967 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 4982 11880/* 4972 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 4982 11881/* 4977 */ MCD::OPC_Decode, 205, 18, 176, 2, // Opcode: VLD1q16 11882/* 4982 */ MCD::OPC_CheckPredicate, 26, 178, 6, 0, // Skip to: 6701 11883/* 4987 */ MCD::OPC_Decode, 211, 18, 176, 2, // Opcode: VLD1q16wb_register 11884/* 4992 */ MCD::OPC_FilterValue, 1, 168, 6, 0, // Skip to: 6701 11885/* 4997 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11886/* 5000 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5015 11887/* 5005 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5030 11888/* 5010 */ MCD::OPC_Decode, 224, 18, 176, 2, // Opcode: VLD1q64wb_fixed 11889/* 5015 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5030 11890/* 5020 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5030 11891/* 5025 */ MCD::OPC_Decode, 219, 18, 176, 2, // Opcode: VLD1q64 11892/* 5030 */ MCD::OPC_CheckPredicate, 26, 130, 6, 0, // Skip to: 6701 11893/* 5035 */ MCD::OPC_Decode, 225, 18, 176, 2, // Opcode: VLD1q64wb_register 11894/* 5040 */ MCD::OPC_FilterValue, 233, 3, 119, 6, 0, // Skip to: 6701 11895/* 5046 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 11896/* 5049 */ MCD::OPC_FilterValue, 0, 111, 6, 0, // Skip to: 6701 11897/* 5054 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 5071 11898/* 5059 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 5071 11899/* 5066 */ MCD::OPC_Decode, 225, 19, 178, 2, // Opcode: VLD3LNq32 11900/* 5071 */ MCD::OPC_CheckPredicate, 26, 89, 6, 0, // Skip to: 6701 11901/* 5076 */ MCD::OPC_Decode, 228, 19, 178, 2, // Opcode: VLD3LNq32_UPD 11902/* 5081 */ MCD::OPC_FilterValue, 11, 183, 0, 0, // Skip to: 5269 11903/* 5086 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 11904/* 5089 */ MCD::OPC_FilterValue, 0, 85, 0, 0, // Skip to: 5179 11905/* 5094 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11906/* 5097 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 5138 11907/* 5102 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11908/* 5105 */ MCD::OPC_FilterValue, 233, 3, 54, 6, 0, // Skip to: 6701 11909/* 5111 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 5128 11910/* 5116 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 5128 11911/* 5123 */ MCD::OPC_Decode, 225, 27, 180, 2, // Opcode: VST4LNd32 11912/* 5128 */ MCD::OPC_CheckPredicate, 26, 32, 6, 0, // Skip to: 6701 11913/* 5133 */ MCD::OPC_Decode, 228, 27, 180, 2, // Opcode: VST4LNd32_UPD 11914/* 5138 */ MCD::OPC_FilterValue, 2, 22, 6, 0, // Skip to: 6701 11915/* 5143 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11916/* 5146 */ MCD::OPC_FilterValue, 233, 3, 13, 6, 0, // Skip to: 6701 11917/* 5152 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 5169 11918/* 5157 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 5169 11919/* 5164 */ MCD::OPC_Decode, 156, 20, 181, 2, // Opcode: VLD4LNd32 11920/* 5169 */ MCD::OPC_CheckPredicate, 26, 247, 5, 0, // Skip to: 6701 11921/* 5174 */ MCD::OPC_Decode, 159, 20, 181, 2, // Opcode: VLD4LNd32_UPD 11922/* 5179 */ MCD::OPC_FilterValue, 1, 237, 5, 0, // Skip to: 6701 11923/* 5184 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11924/* 5187 */ MCD::OPC_FilterValue, 0, 36, 0, 0, // Skip to: 5228 11925/* 5192 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11926/* 5195 */ MCD::OPC_FilterValue, 233, 3, 220, 5, 0, // Skip to: 6701 11927/* 5201 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 5218 11928/* 5206 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 5218 11929/* 5213 */ MCD::OPC_Decode, 237, 27, 180, 2, // Opcode: VST4LNq32 11930/* 5218 */ MCD::OPC_CheckPredicate, 26, 198, 5, 0, // Skip to: 6701 11931/* 5223 */ MCD::OPC_Decode, 240, 27, 180, 2, // Opcode: VST4LNq32_UPD 11932/* 5228 */ MCD::OPC_FilterValue, 2, 188, 5, 0, // Skip to: 6701 11933/* 5233 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11934/* 5236 */ MCD::OPC_FilterValue, 233, 3, 179, 5, 0, // Skip to: 6701 11935/* 5242 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 5259 11936/* 5247 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 5259 11937/* 5254 */ MCD::OPC_Decode, 168, 20, 181, 2, // Opcode: VLD4LNq32 11938/* 5259 */ MCD::OPC_CheckPredicate, 26, 157, 5, 0, // Skip to: 6701 11939/* 5264 */ MCD::OPC_Decode, 171, 20, 181, 2, // Opcode: VLD4LNq32_UPD 11940/* 5269 */ MCD::OPC_FilterValue, 12, 137, 1, 0, // Skip to: 5667 11941/* 5274 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 11942/* 5277 */ MCD::OPC_FilterValue, 0, 60, 0, 0, // Skip to: 5342 11943/* 5282 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11944/* 5285 */ MCD::OPC_FilterValue, 2, 131, 5, 0, // Skip to: 6701 11945/* 5290 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11946/* 5293 */ MCD::OPC_FilterValue, 233, 3, 122, 5, 0, // Skip to: 6701 11947/* 5299 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11948/* 5302 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5317 11949/* 5307 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5332 11950/* 5312 */ MCD::OPC_Decode, 134, 18, 183, 2, // Opcode: VLD1DUPd8wb_fixed 11951/* 5317 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5332 11952/* 5322 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5332 11953/* 5327 */ MCD::OPC_Decode, 133, 18, 183, 2, // Opcode: VLD1DUPd8 11954/* 5332 */ MCD::OPC_CheckPredicate, 26, 84, 5, 0, // Skip to: 6701 11955/* 5337 */ MCD::OPC_Decode, 135, 18, 183, 2, // Opcode: VLD1DUPd8wb_register 11956/* 5342 */ MCD::OPC_FilterValue, 1, 60, 0, 0, // Skip to: 5407 11957/* 5347 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11958/* 5350 */ MCD::OPC_FilterValue, 2, 66, 5, 0, // Skip to: 6701 11959/* 5355 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11960/* 5358 */ MCD::OPC_FilterValue, 233, 3, 57, 5, 0, // Skip to: 6701 11961/* 5364 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11962/* 5367 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5382 11963/* 5372 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5397 11964/* 5377 */ MCD::OPC_Decode, 143, 18, 183, 2, // Opcode: VLD1DUPq8wb_fixed 11965/* 5382 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5397 11966/* 5387 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5397 11967/* 5392 */ MCD::OPC_Decode, 142, 18, 183, 2, // Opcode: VLD1DUPq8 11968/* 5397 */ MCD::OPC_CheckPredicate, 26, 19, 5, 0, // Skip to: 6701 11969/* 5402 */ MCD::OPC_Decode, 144, 18, 183, 2, // Opcode: VLD1DUPq8wb_register 11970/* 5407 */ MCD::OPC_FilterValue, 2, 60, 0, 0, // Skip to: 5472 11971/* 5412 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11972/* 5415 */ MCD::OPC_FilterValue, 2, 1, 5, 0, // Skip to: 6701 11973/* 5420 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11974/* 5423 */ MCD::OPC_FilterValue, 233, 3, 248, 4, 0, // Skip to: 6701 11975/* 5429 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11976/* 5432 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5447 11977/* 5437 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5462 11978/* 5442 */ MCD::OPC_Decode, 128, 18, 183, 2, // Opcode: VLD1DUPd16wb_fixed 11979/* 5447 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5462 11980/* 5452 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5462 11981/* 5457 */ MCD::OPC_Decode, 255, 17, 183, 2, // Opcode: VLD1DUPd16 11982/* 5462 */ MCD::OPC_CheckPredicate, 26, 210, 4, 0, // Skip to: 6701 11983/* 5467 */ MCD::OPC_Decode, 129, 18, 183, 2, // Opcode: VLD1DUPd16wb_register 11984/* 5472 */ MCD::OPC_FilterValue, 3, 60, 0, 0, // Skip to: 5537 11985/* 5477 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 11986/* 5480 */ MCD::OPC_FilterValue, 2, 192, 4, 0, // Skip to: 6701 11987/* 5485 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 11988/* 5488 */ MCD::OPC_FilterValue, 233, 3, 183, 4, 0, // Skip to: 6701 11989/* 5494 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 11990/* 5497 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5512 11991/* 5502 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5527 11992/* 5507 */ MCD::OPC_Decode, 137, 18, 183, 2, // Opcode: VLD1DUPq16wb_fixed 11993/* 5512 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5527 11994/* 5517 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5527 11995/* 5522 */ MCD::OPC_Decode, 136, 18, 183, 2, // Opcode: VLD1DUPq16 11996/* 5527 */ MCD::OPC_CheckPredicate, 26, 145, 4, 0, // Skip to: 6701 11997/* 5532 */ MCD::OPC_Decode, 138, 18, 183, 2, // Opcode: VLD1DUPq16wb_register 11998/* 5537 */ MCD::OPC_FilterValue, 4, 60, 0, 0, // Skip to: 5602 11999/* 5542 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12000/* 5545 */ MCD::OPC_FilterValue, 2, 127, 4, 0, // Skip to: 6701 12001/* 5550 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12002/* 5553 */ MCD::OPC_FilterValue, 233, 3, 118, 4, 0, // Skip to: 6701 12003/* 5559 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12004/* 5562 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5577 12005/* 5567 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5592 12006/* 5572 */ MCD::OPC_Decode, 131, 18, 183, 2, // Opcode: VLD1DUPd32wb_fixed 12007/* 5577 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5592 12008/* 5582 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5592 12009/* 5587 */ MCD::OPC_Decode, 130, 18, 183, 2, // Opcode: VLD1DUPd32 12010/* 5592 */ MCD::OPC_CheckPredicate, 26, 80, 4, 0, // Skip to: 6701 12011/* 5597 */ MCD::OPC_Decode, 132, 18, 183, 2, // Opcode: VLD1DUPd32wb_register 12012/* 5602 */ MCD::OPC_FilterValue, 5, 70, 4, 0, // Skip to: 6701 12013/* 5607 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12014/* 5610 */ MCD::OPC_FilterValue, 2, 62, 4, 0, // Skip to: 6701 12015/* 5615 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12016/* 5618 */ MCD::OPC_FilterValue, 233, 3, 53, 4, 0, // Skip to: 6701 12017/* 5624 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12018/* 5627 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5642 12019/* 5632 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5657 12020/* 5637 */ MCD::OPC_Decode, 140, 18, 183, 2, // Opcode: VLD1DUPq32wb_fixed 12021/* 5642 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5657 12022/* 5647 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5657 12023/* 5652 */ MCD::OPC_Decode, 139, 18, 183, 2, // Opcode: VLD1DUPq32 12024/* 5657 */ MCD::OPC_CheckPredicate, 26, 15, 4, 0, // Skip to: 6701 12025/* 5662 */ MCD::OPC_Decode, 141, 18, 183, 2, // Opcode: VLD1DUPq32wb_register 12026/* 5667 */ MCD::OPC_FilterValue, 13, 137, 1, 0, // Skip to: 6065 12027/* 5672 */ MCD::OPC_ExtractField, 5, 3, // Inst{7-5} ... 12028/* 5675 */ MCD::OPC_FilterValue, 0, 60, 0, 0, // Skip to: 5740 12029/* 5680 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12030/* 5683 */ MCD::OPC_FilterValue, 2, 245, 3, 0, // Skip to: 6701 12031/* 5688 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12032/* 5691 */ MCD::OPC_FilterValue, 233, 3, 236, 3, 0, // Skip to: 6701 12033/* 5697 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12034/* 5700 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5715 12035/* 5705 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5730 12036/* 5710 */ MCD::OPC_Decode, 246, 18, 184, 2, // Opcode: VLD2DUPd8wb_fixed 12037/* 5715 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5730 12038/* 5720 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5730 12039/* 5725 */ MCD::OPC_Decode, 245, 18, 184, 2, // Opcode: VLD2DUPd8 12040/* 5730 */ MCD::OPC_CheckPredicate, 26, 198, 3, 0, // Skip to: 6701 12041/* 5735 */ MCD::OPC_Decode, 247, 18, 184, 2, // Opcode: VLD2DUPd8wb_register 12042/* 5740 */ MCD::OPC_FilterValue, 1, 60, 0, 0, // Skip to: 5805 12043/* 5745 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12044/* 5748 */ MCD::OPC_FilterValue, 2, 180, 3, 0, // Skip to: 6701 12045/* 5753 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12046/* 5756 */ MCD::OPC_FilterValue, 233, 3, 171, 3, 0, // Skip to: 6701 12047/* 5762 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12048/* 5765 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5780 12049/* 5770 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5795 12050/* 5775 */ MCD::OPC_Decode, 249, 18, 184, 2, // Opcode: VLD2DUPd8x2wb_fixed 12051/* 5780 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5795 12052/* 5785 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5795 12053/* 5790 */ MCD::OPC_Decode, 248, 18, 184, 2, // Opcode: VLD2DUPd8x2 12054/* 5795 */ MCD::OPC_CheckPredicate, 26, 133, 3, 0, // Skip to: 6701 12055/* 5800 */ MCD::OPC_Decode, 250, 18, 184, 2, // Opcode: VLD2DUPd8x2wb_register 12056/* 5805 */ MCD::OPC_FilterValue, 2, 60, 0, 0, // Skip to: 5870 12057/* 5810 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12058/* 5813 */ MCD::OPC_FilterValue, 2, 115, 3, 0, // Skip to: 6701 12059/* 5818 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12060/* 5821 */ MCD::OPC_FilterValue, 233, 3, 106, 3, 0, // Skip to: 6701 12061/* 5827 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12062/* 5830 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5845 12063/* 5835 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5860 12064/* 5840 */ MCD::OPC_Decode, 234, 18, 184, 2, // Opcode: VLD2DUPd16wb_fixed 12065/* 5845 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5860 12066/* 5850 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5860 12067/* 5855 */ MCD::OPC_Decode, 233, 18, 184, 2, // Opcode: VLD2DUPd16 12068/* 5860 */ MCD::OPC_CheckPredicate, 26, 68, 3, 0, // Skip to: 6701 12069/* 5865 */ MCD::OPC_Decode, 235, 18, 184, 2, // Opcode: VLD2DUPd16wb_register 12070/* 5870 */ MCD::OPC_FilterValue, 3, 60, 0, 0, // Skip to: 5935 12071/* 5875 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12072/* 5878 */ MCD::OPC_FilterValue, 2, 50, 3, 0, // Skip to: 6701 12073/* 5883 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12074/* 5886 */ MCD::OPC_FilterValue, 233, 3, 41, 3, 0, // Skip to: 6701 12075/* 5892 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12076/* 5895 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5910 12077/* 5900 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5925 12078/* 5905 */ MCD::OPC_Decode, 237, 18, 184, 2, // Opcode: VLD2DUPd16x2wb_fixed 12079/* 5910 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5925 12080/* 5915 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5925 12081/* 5920 */ MCD::OPC_Decode, 236, 18, 184, 2, // Opcode: VLD2DUPd16x2 12082/* 5925 */ MCD::OPC_CheckPredicate, 26, 3, 3, 0, // Skip to: 6701 12083/* 5930 */ MCD::OPC_Decode, 238, 18, 184, 2, // Opcode: VLD2DUPd16x2wb_register 12084/* 5935 */ MCD::OPC_FilterValue, 4, 60, 0, 0, // Skip to: 6000 12085/* 5940 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12086/* 5943 */ MCD::OPC_FilterValue, 2, 241, 2, 0, // Skip to: 6701 12087/* 5948 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12088/* 5951 */ MCD::OPC_FilterValue, 233, 3, 232, 2, 0, // Skip to: 6701 12089/* 5957 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12090/* 5960 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 5975 12091/* 5965 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 5990 12092/* 5970 */ MCD::OPC_Decode, 240, 18, 184, 2, // Opcode: VLD2DUPd32wb_fixed 12093/* 5975 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 5990 12094/* 5980 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 5990 12095/* 5985 */ MCD::OPC_Decode, 239, 18, 184, 2, // Opcode: VLD2DUPd32 12096/* 5990 */ MCD::OPC_CheckPredicate, 26, 194, 2, 0, // Skip to: 6701 12097/* 5995 */ MCD::OPC_Decode, 241, 18, 184, 2, // Opcode: VLD2DUPd32wb_register 12098/* 6000 */ MCD::OPC_FilterValue, 5, 184, 2, 0, // Skip to: 6701 12099/* 6005 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12100/* 6008 */ MCD::OPC_FilterValue, 2, 176, 2, 0, // Skip to: 6701 12101/* 6013 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12102/* 6016 */ MCD::OPC_FilterValue, 233, 3, 167, 2, 0, // Skip to: 6701 12103/* 6022 */ MCD::OPC_ExtractField, 0, 4, // Inst{3-0} ... 12104/* 6025 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 6040 12105/* 6030 */ MCD::OPC_CheckPredicate, 26, 20, 0, 0, // Skip to: 6055 12106/* 6035 */ MCD::OPC_Decode, 243, 18, 184, 2, // Opcode: VLD2DUPd32x2wb_fixed 12107/* 6040 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 6055 12108/* 6045 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 6055 12109/* 6050 */ MCD::OPC_Decode, 242, 18, 184, 2, // Opcode: VLD2DUPd32x2 12110/* 6055 */ MCD::OPC_CheckPredicate, 26, 129, 2, 0, // Skip to: 6701 12111/* 6060 */ MCD::OPC_Decode, 244, 18, 184, 2, // Opcode: VLD2DUPd32x2wb_register 12112/* 6065 */ MCD::OPC_FilterValue, 14, 41, 1, 0, // Skip to: 6367 12113/* 6070 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 12114/* 6073 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 6122 12115/* 6078 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12116/* 6081 */ MCD::OPC_FilterValue, 2, 103, 2, 0, // Skip to: 6701 12117/* 6086 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12118/* 6089 */ MCD::OPC_FilterValue, 233, 3, 94, 2, 0, // Skip to: 6701 12119/* 6095 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6112 12120/* 6100 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6112 12121/* 6107 */ MCD::OPC_Decode, 193, 19, 185, 2, // Opcode: VLD3DUPd8 12122/* 6112 */ MCD::OPC_CheckPredicate, 26, 72, 2, 0, // Skip to: 6701 12123/* 6117 */ MCD::OPC_Decode, 196, 19, 185, 2, // Opcode: VLD3DUPd8_UPD 12124/* 6122 */ MCD::OPC_FilterValue, 2, 44, 0, 0, // Skip to: 6171 12125/* 6127 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12126/* 6130 */ MCD::OPC_FilterValue, 2, 54, 2, 0, // Skip to: 6701 12127/* 6135 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12128/* 6138 */ MCD::OPC_FilterValue, 233, 3, 45, 2, 0, // Skip to: 6701 12129/* 6144 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6161 12130/* 6149 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6161 12131/* 6156 */ MCD::OPC_Decode, 205, 19, 185, 2, // Opcode: VLD3DUPq8 12132/* 6161 */ MCD::OPC_CheckPredicate, 26, 23, 2, 0, // Skip to: 6701 12133/* 6166 */ MCD::OPC_Decode, 208, 19, 185, 2, // Opcode: VLD3DUPq8_UPD 12134/* 6171 */ MCD::OPC_FilterValue, 4, 44, 0, 0, // Skip to: 6220 12135/* 6176 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12136/* 6179 */ MCD::OPC_FilterValue, 2, 5, 2, 0, // Skip to: 6701 12137/* 6184 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12138/* 6187 */ MCD::OPC_FilterValue, 233, 3, 252, 1, 0, // Skip to: 6701 12139/* 6193 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6210 12140/* 6198 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6210 12141/* 6205 */ MCD::OPC_Decode, 185, 19, 185, 2, // Opcode: VLD3DUPd16 12142/* 6210 */ MCD::OPC_CheckPredicate, 26, 230, 1, 0, // Skip to: 6701 12143/* 6215 */ MCD::OPC_Decode, 188, 19, 185, 2, // Opcode: VLD3DUPd16_UPD 12144/* 6220 */ MCD::OPC_FilterValue, 6, 44, 0, 0, // Skip to: 6269 12145/* 6225 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12146/* 6228 */ MCD::OPC_FilterValue, 2, 212, 1, 0, // Skip to: 6701 12147/* 6233 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12148/* 6236 */ MCD::OPC_FilterValue, 233, 3, 203, 1, 0, // Skip to: 6701 12149/* 6242 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6259 12150/* 6247 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6259 12151/* 6254 */ MCD::OPC_Decode, 197, 19, 185, 2, // Opcode: VLD3DUPq16 12152/* 6259 */ MCD::OPC_CheckPredicate, 26, 181, 1, 0, // Skip to: 6701 12153/* 6264 */ MCD::OPC_Decode, 200, 19, 185, 2, // Opcode: VLD3DUPq16_UPD 12154/* 6269 */ MCD::OPC_FilterValue, 8, 44, 0, 0, // Skip to: 6318 12155/* 6274 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12156/* 6277 */ MCD::OPC_FilterValue, 2, 163, 1, 0, // Skip to: 6701 12157/* 6282 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12158/* 6285 */ MCD::OPC_FilterValue, 233, 3, 154, 1, 0, // Skip to: 6701 12159/* 6291 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6308 12160/* 6296 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6308 12161/* 6303 */ MCD::OPC_Decode, 189, 19, 185, 2, // Opcode: VLD3DUPd32 12162/* 6308 */ MCD::OPC_CheckPredicate, 26, 132, 1, 0, // Skip to: 6701 12163/* 6313 */ MCD::OPC_Decode, 192, 19, 185, 2, // Opcode: VLD3DUPd32_UPD 12164/* 6318 */ MCD::OPC_FilterValue, 10, 122, 1, 0, // Skip to: 6701 12165/* 6323 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12166/* 6326 */ MCD::OPC_FilterValue, 2, 114, 1, 0, // Skip to: 6701 12167/* 6331 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12168/* 6334 */ MCD::OPC_FilterValue, 233, 3, 105, 1, 0, // Skip to: 6701 12169/* 6340 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6357 12170/* 6345 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6357 12171/* 6352 */ MCD::OPC_Decode, 201, 19, 185, 2, // Opcode: VLD3DUPq32 12172/* 6357 */ MCD::OPC_CheckPredicate, 26, 83, 1, 0, // Skip to: 6701 12173/* 6362 */ MCD::OPC_Decode, 204, 19, 185, 2, // Opcode: VLD3DUPq32_UPD 12174/* 6367 */ MCD::OPC_FilterValue, 15, 73, 1, 0, // Skip to: 6701 12175/* 6372 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 12176/* 6375 */ MCD::OPC_FilterValue, 0, 158, 0, 0, // Skip to: 6538 12177/* 6380 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 12178/* 6383 */ MCD::OPC_FilterValue, 0, 101, 0, 0, // Skip to: 6489 12179/* 6388 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 12180/* 6391 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 6440 12181/* 6396 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12182/* 6399 */ MCD::OPC_FilterValue, 2, 41, 1, 0, // Skip to: 6701 12183/* 6404 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12184/* 6407 */ MCD::OPC_FilterValue, 233, 3, 32, 1, 0, // Skip to: 6701 12185/* 6413 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6430 12186/* 6418 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6430 12187/* 6425 */ MCD::OPC_Decode, 136, 20, 186, 2, // Opcode: VLD4DUPd8 12188/* 6430 */ MCD::OPC_CheckPredicate, 26, 10, 1, 0, // Skip to: 6701 12189/* 6435 */ MCD::OPC_Decode, 139, 20, 186, 2, // Opcode: VLD4DUPd8_UPD 12190/* 6440 */ MCD::OPC_FilterValue, 1, 0, 1, 0, // Skip to: 6701 12191/* 6445 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12192/* 6448 */ MCD::OPC_FilterValue, 2, 248, 0, 0, // Skip to: 6701 12193/* 6453 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12194/* 6456 */ MCD::OPC_FilterValue, 233, 3, 239, 0, 0, // Skip to: 6701 12195/* 6462 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6479 12196/* 6467 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6479 12197/* 6474 */ MCD::OPC_Decode, 128, 20, 186, 2, // Opcode: VLD4DUPd16 12198/* 6479 */ MCD::OPC_CheckPredicate, 26, 217, 0, 0, // Skip to: 6701 12199/* 6484 */ MCD::OPC_Decode, 131, 20, 186, 2, // Opcode: VLD4DUPd16_UPD 12200/* 6489 */ MCD::OPC_FilterValue, 1, 207, 0, 0, // Skip to: 6701 12201/* 6494 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12202/* 6497 */ MCD::OPC_FilterValue, 2, 199, 0, 0, // Skip to: 6701 12203/* 6502 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12204/* 6505 */ MCD::OPC_FilterValue, 233, 3, 190, 0, 0, // Skip to: 6701 12205/* 6511 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6528 12206/* 6516 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6528 12207/* 6523 */ MCD::OPC_Decode, 132, 20, 186, 2, // Opcode: VLD4DUPd32 12208/* 6528 */ MCD::OPC_CheckPredicate, 26, 168, 0, 0, // Skip to: 6701 12209/* 6533 */ MCD::OPC_Decode, 135, 20, 186, 2, // Opcode: VLD4DUPd32_UPD 12210/* 6538 */ MCD::OPC_FilterValue, 1, 158, 0, 0, // Skip to: 6701 12211/* 6543 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 12212/* 6546 */ MCD::OPC_FilterValue, 0, 101, 0, 0, // Skip to: 6652 12213/* 6551 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 12214/* 6554 */ MCD::OPC_FilterValue, 0, 44, 0, 0, // Skip to: 6603 12215/* 6559 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12216/* 6562 */ MCD::OPC_FilterValue, 2, 134, 0, 0, // Skip to: 6701 12217/* 6567 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12218/* 6570 */ MCD::OPC_FilterValue, 233, 3, 125, 0, 0, // Skip to: 6701 12219/* 6576 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6593 12220/* 6581 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6593 12221/* 6588 */ MCD::OPC_Decode, 148, 20, 186, 2, // Opcode: VLD4DUPq8 12222/* 6593 */ MCD::OPC_CheckPredicate, 26, 103, 0, 0, // Skip to: 6701 12223/* 6598 */ MCD::OPC_Decode, 151, 20, 186, 2, // Opcode: VLD4DUPq8_UPD 12224/* 6603 */ MCD::OPC_FilterValue, 1, 93, 0, 0, // Skip to: 6701 12225/* 6608 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12226/* 6611 */ MCD::OPC_FilterValue, 2, 85, 0, 0, // Skip to: 6701 12227/* 6616 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12228/* 6619 */ MCD::OPC_FilterValue, 233, 3, 76, 0, 0, // Skip to: 6701 12229/* 6625 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6642 12230/* 6630 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6642 12231/* 6637 */ MCD::OPC_Decode, 140, 20, 186, 2, // Opcode: VLD4DUPq16 12232/* 6642 */ MCD::OPC_CheckPredicate, 26, 54, 0, 0, // Skip to: 6701 12233/* 6647 */ MCD::OPC_Decode, 143, 20, 186, 2, // Opcode: VLD4DUPq16_UPD 12234/* 6652 */ MCD::OPC_FilterValue, 1, 44, 0, 0, // Skip to: 6701 12235/* 6657 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 12236/* 6660 */ MCD::OPC_FilterValue, 2, 36, 0, 0, // Skip to: 6701 12237/* 6665 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 12238/* 6668 */ MCD::OPC_FilterValue, 233, 3, 27, 0, 0, // Skip to: 6701 12239/* 6674 */ MCD::OPC_CheckPredicate, 26, 12, 0, 0, // Skip to: 6691 12240/* 6679 */ MCD::OPC_CheckField, 0, 4, 15, 5, 0, 0, // Skip to: 6691 12241/* 6686 */ MCD::OPC_Decode, 144, 20, 186, 2, // Opcode: VLD4DUPq32 12242/* 6691 */ MCD::OPC_CheckPredicate, 26, 5, 0, 0, // Skip to: 6701 12243/* 6696 */ MCD::OPC_Decode, 147, 20, 186, 2, // Opcode: VLD4DUPq32_UPD 12244/* 6701 */ MCD::OPC_Fail, 12245 0 12246}; 12247 12248static const uint8_t DecoderTableThumb16[] = { 12249/* 0 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 12250/* 3 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 25 12251/* 8 */ MCD::OPC_CheckPredicate, 34, 181, 4, 0, // Skip to: 1218 12252/* 13 */ MCD::OPC_CheckField, 6, 6, 0, 174, 4, 0, // Skip to: 1218 12253/* 20 */ MCD::OPC_Decode, 216, 32, 187, 2, // Opcode: tMOVSr 12254/* 25 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 47 12255/* 30 */ MCD::OPC_CheckPredicate, 34, 159, 4, 0, // Skip to: 1218 12256/* 35 */ MCD::OPC_CheckField, 11, 1, 1, 152, 4, 0, // Skip to: 1218 12257/* 42 */ MCD::OPC_Decode, 192, 32, 188, 2, // Opcode: tCMPi8 12258/* 47 */ MCD::OPC_FilterValue, 4, 3, 1, 0, // Skip to: 311 12259/* 52 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12260/* 55 */ MCD::OPC_FilterValue, 0, 236, 0, 0, // Skip to: 296 12261/* 60 */ MCD::OPC_ExtractField, 8, 3, // Inst{10-8} ... 12262/* 63 */ MCD::OPC_FilterValue, 2, 48, 0, 0, // Skip to: 116 12263/* 68 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 12264/* 71 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 86 12265/* 76 */ MCD::OPC_CheckPredicate, 34, 113, 4, 0, // Skip to: 1218 12266/* 81 */ MCD::OPC_Decode, 248, 32, 187, 2, // Opcode: tTST 12267/* 86 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 101 12268/* 91 */ MCD::OPC_CheckPredicate, 34, 98, 4, 0, // Skip to: 1218 12269/* 96 */ MCD::OPC_Decode, 193, 32, 187, 2, // Opcode: tCMPr 12270/* 101 */ MCD::OPC_FilterValue, 3, 88, 4, 0, // Skip to: 1218 12271/* 106 */ MCD::OPC_CheckPredicate, 34, 83, 4, 0, // Skip to: 1218 12272/* 111 */ MCD::OPC_Decode, 190, 32, 187, 2, // Opcode: tCMNz 12273/* 116 */ MCD::OPC_FilterValue, 4, 51, 0, 0, // Skip to: 172 12274/* 121 */ MCD::OPC_CheckPredicate, 34, 12, 0, 0, // Skip to: 138 12275/* 126 */ MCD::OPC_CheckField, 3, 4, 13, 5, 0, 0, // Skip to: 138 12276/* 133 */ MCD::OPC_Decode, 169, 32, 189, 2, // Opcode: tADDrSP 12277/* 138 */ MCD::OPC_CheckPredicate, 34, 19, 0, 0, // Skip to: 162 12278/* 143 */ MCD::OPC_CheckField, 7, 1, 1, 12, 0, 0, // Skip to: 162 12279/* 150 */ MCD::OPC_CheckField, 0, 3, 5, 5, 0, 0, // Skip to: 162 12280/* 157 */ MCD::OPC_Decode, 173, 32, 189, 2, // Opcode: tADDspr 12281/* 162 */ MCD::OPC_CheckPredicate, 34, 27, 4, 0, // Skip to: 1218 12282/* 167 */ MCD::OPC_Decode, 166, 32, 190, 2, // Opcode: tADDhirr 12283/* 172 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 187 12284/* 177 */ MCD::OPC_CheckPredicate, 34, 12, 4, 0, // Skip to: 1218 12285/* 182 */ MCD::OPC_Decode, 191, 32, 191, 2, // Opcode: tCMPhir 12286/* 187 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 202 12287/* 192 */ MCD::OPC_CheckPredicate, 34, 253, 3, 0, // Skip to: 1218 12288/* 197 */ MCD::OPC_Decode, 218, 32, 191, 2, // Opcode: tMOVr 12289/* 202 */ MCD::OPC_FilterValue, 7, 243, 3, 0, // Skip to: 1218 12290/* 207 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 12291/* 210 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 248 12292/* 215 */ MCD::OPC_CheckPredicate, 35, 15, 0, 0, // Skip to: 235 12293/* 220 */ MCD::OPC_CheckField, 2, 1, 1, 8, 0, 0, // Skip to: 235 12294/* 227 */ MCD::OPC_SoftFail, 3, 0, 12295/* 230 */ MCD::OPC_Decode, 186, 32, 192, 2, // Opcode: tBXNS 12296/* 235 */ MCD::OPC_CheckPredicate, 34, 210, 3, 0, // Skip to: 1218 12297/* 240 */ MCD::OPC_SoftFail, 7, 0, 12298/* 243 */ MCD::OPC_Decode, 185, 32, 192, 2, // Opcode: tBX 12299/* 248 */ MCD::OPC_FilterValue, 1, 197, 3, 0, // Skip to: 1218 12300/* 253 */ MCD::OPC_ExtractField, 2, 1, // Inst{2} ... 12301/* 256 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 278 12302/* 261 */ MCD::OPC_CheckPredicate, 36, 184, 3, 0, // Skip to: 1218 12303/* 266 */ MCD::OPC_CheckField, 0, 2, 0, 177, 3, 0, // Skip to: 1218 12304/* 273 */ MCD::OPC_Decode, 184, 32, 192, 2, // Opcode: tBLXr 12305/* 278 */ MCD::OPC_FilterValue, 1, 167, 3, 0, // Skip to: 1218 12306/* 283 */ MCD::OPC_CheckPredicate, 35, 162, 3, 0, // Skip to: 1218 12307/* 288 */ MCD::OPC_SoftFail, 3, 0, 12308/* 291 */ MCD::OPC_Decode, 182, 32, 193, 2, // Opcode: tBLXNSr 12309/* 296 */ MCD::OPC_FilterValue, 1, 149, 3, 0, // Skip to: 1218 12310/* 301 */ MCD::OPC_CheckPredicate, 34, 144, 3, 0, // Skip to: 1218 12311/* 306 */ MCD::OPC_Decode, 209, 32, 194, 2, // Opcode: tLDRpci 12312/* 311 */ MCD::OPC_FilterValue, 5, 123, 0, 0, // Skip to: 439 12313/* 316 */ MCD::OPC_ExtractField, 9, 3, // Inst{11-9} ... 12314/* 319 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 334 12315/* 324 */ MCD::OPC_CheckPredicate, 34, 121, 3, 0, // Skip to: 1218 12316/* 329 */ MCD::OPC_Decode, 238, 32, 195, 2, // Opcode: tSTRr 12317/* 334 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 349 12318/* 339 */ MCD::OPC_CheckPredicate, 34, 106, 3, 0, // Skip to: 1218 12319/* 344 */ MCD::OPC_Decode, 236, 32, 195, 2, // Opcode: tSTRHr 12320/* 349 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 364 12321/* 354 */ MCD::OPC_CheckPredicate, 34, 91, 3, 0, // Skip to: 1218 12322/* 359 */ MCD::OPC_Decode, 234, 32, 195, 2, // Opcode: tSTRBr 12323/* 364 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 379 12324/* 369 */ MCD::OPC_CheckPredicate, 34, 76, 3, 0, // Skip to: 1218 12325/* 374 */ MCD::OPC_Decode, 206, 32, 195, 2, // Opcode: tLDRSB 12326/* 379 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 394 12327/* 384 */ MCD::OPC_CheckPredicate, 34, 61, 3, 0, // Skip to: 1218 12328/* 389 */ MCD::OPC_Decode, 210, 32, 195, 2, // Opcode: tLDRr 12329/* 394 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 409 12330/* 399 */ MCD::OPC_CheckPredicate, 34, 46, 3, 0, // Skip to: 1218 12331/* 404 */ MCD::OPC_Decode, 205, 32, 195, 2, // Opcode: tLDRHr 12332/* 409 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 424 12333/* 414 */ MCD::OPC_CheckPredicate, 34, 31, 3, 0, // Skip to: 1218 12334/* 419 */ MCD::OPC_Decode, 203, 32, 195, 2, // Opcode: tLDRBr 12335/* 424 */ MCD::OPC_FilterValue, 7, 21, 3, 0, // Skip to: 1218 12336/* 429 */ MCD::OPC_CheckPredicate, 34, 16, 3, 0, // Skip to: 1218 12337/* 434 */ MCD::OPC_Decode, 207, 32, 195, 2, // Opcode: tLDRSH 12338/* 439 */ MCD::OPC_FilterValue, 6, 33, 0, 0, // Skip to: 477 12339/* 444 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12340/* 447 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 462 12341/* 452 */ MCD::OPC_CheckPredicate, 34, 249, 2, 0, // Skip to: 1218 12342/* 457 */ MCD::OPC_Decode, 237, 32, 196, 2, // Opcode: tSTRi 12343/* 462 */ MCD::OPC_FilterValue, 1, 239, 2, 0, // Skip to: 1218 12344/* 467 */ MCD::OPC_CheckPredicate, 34, 234, 2, 0, // Skip to: 1218 12345/* 472 */ MCD::OPC_Decode, 208, 32, 196, 2, // Opcode: tLDRi 12346/* 477 */ MCD::OPC_FilterValue, 7, 33, 0, 0, // Skip to: 515 12347/* 482 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12348/* 485 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 500 12349/* 490 */ MCD::OPC_CheckPredicate, 34, 211, 2, 0, // Skip to: 1218 12350/* 495 */ MCD::OPC_Decode, 233, 32, 196, 2, // Opcode: tSTRBi 12351/* 500 */ MCD::OPC_FilterValue, 1, 201, 2, 0, // Skip to: 1218 12352/* 505 */ MCD::OPC_CheckPredicate, 34, 196, 2, 0, // Skip to: 1218 12353/* 510 */ MCD::OPC_Decode, 202, 32, 196, 2, // Opcode: tLDRBi 12354/* 515 */ MCD::OPC_FilterValue, 8, 33, 0, 0, // Skip to: 553 12355/* 520 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12356/* 523 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 538 12357/* 528 */ MCD::OPC_CheckPredicate, 34, 173, 2, 0, // Skip to: 1218 12358/* 533 */ MCD::OPC_Decode, 235, 32, 196, 2, // Opcode: tSTRHi 12359/* 538 */ MCD::OPC_FilterValue, 1, 163, 2, 0, // Skip to: 1218 12360/* 543 */ MCD::OPC_CheckPredicate, 34, 158, 2, 0, // Skip to: 1218 12361/* 548 */ MCD::OPC_Decode, 204, 32, 196, 2, // Opcode: tLDRHi 12362/* 553 */ MCD::OPC_FilterValue, 9, 33, 0, 0, // Skip to: 591 12363/* 558 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12364/* 561 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 576 12365/* 566 */ MCD::OPC_CheckPredicate, 34, 135, 2, 0, // Skip to: 1218 12366/* 571 */ MCD::OPC_Decode, 239, 32, 197, 2, // Opcode: tSTRspi 12367/* 576 */ MCD::OPC_FilterValue, 1, 125, 2, 0, // Skip to: 1218 12368/* 581 */ MCD::OPC_CheckPredicate, 34, 120, 2, 0, // Skip to: 1218 12369/* 586 */ MCD::OPC_Decode, 211, 32, 197, 2, // Opcode: tLDRspi 12370/* 591 */ MCD::OPC_FilterValue, 10, 33, 0, 0, // Skip to: 629 12371/* 596 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12372/* 599 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 614 12373/* 604 */ MCD::OPC_CheckPredicate, 34, 97, 2, 0, // Skip to: 1218 12374/* 609 */ MCD::OPC_Decode, 174, 32, 198, 2, // Opcode: tADR 12375/* 614 */ MCD::OPC_FilterValue, 1, 87, 2, 0, // Skip to: 1218 12376/* 619 */ MCD::OPC_CheckPredicate, 34, 82, 2, 0, // Skip to: 1218 12377/* 624 */ MCD::OPC_Decode, 170, 32, 198, 2, // Opcode: tADDrSPi 12378/* 629 */ MCD::OPC_FilterValue, 11, 187, 1, 0, // Skip to: 1077 12379/* 634 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 12380/* 637 */ MCD::OPC_FilterValue, 0, 148, 0, 0, // Skip to: 790 12381/* 642 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 12382/* 645 */ MCD::OPC_FilterValue, 0, 125, 0, 0, // Skip to: 775 12383/* 650 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 12384/* 653 */ MCD::OPC_FilterValue, 0, 56, 0, 0, // Skip to: 714 12385/* 658 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 12386/* 661 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 676 12387/* 666 */ MCD::OPC_CheckPredicate, 34, 35, 2, 0, // Skip to: 1218 12388/* 671 */ MCD::OPC_Decode, 172, 32, 199, 2, // Opcode: tADDspi 12389/* 676 */ MCD::OPC_FilterValue, 1, 25, 2, 0, // Skip to: 1218 12390/* 681 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 12391/* 684 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 699 12392/* 689 */ MCD::OPC_CheckPredicate, 37, 12, 2, 0, // Skip to: 1218 12393/* 694 */ MCD::OPC_Decode, 246, 32, 187, 2, // Opcode: tSXTH 12394/* 699 */ MCD::OPC_FilterValue, 1, 2, 2, 0, // Skip to: 1218 12395/* 704 */ MCD::OPC_CheckPredicate, 37, 253, 1, 0, // Skip to: 1218 12396/* 709 */ MCD::OPC_Decode, 245, 32, 187, 2, // Opcode: tSXTB 12397/* 714 */ MCD::OPC_FilterValue, 1, 243, 1, 0, // Skip to: 1218 12398/* 719 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 12399/* 722 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 737 12400/* 727 */ MCD::OPC_CheckPredicate, 34, 230, 1, 0, // Skip to: 1218 12401/* 732 */ MCD::OPC_Decode, 243, 32, 199, 2, // Opcode: tSUBspi 12402/* 737 */ MCD::OPC_FilterValue, 1, 220, 1, 0, // Skip to: 1218 12403/* 742 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 12404/* 745 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 760 12405/* 750 */ MCD::OPC_CheckPredicate, 37, 207, 1, 0, // Skip to: 1218 12406/* 755 */ MCD::OPC_Decode, 251, 32, 187, 2, // Opcode: tUXTH 12407/* 760 */ MCD::OPC_FilterValue, 1, 197, 1, 0, // Skip to: 1218 12408/* 765 */ MCD::OPC_CheckPredicate, 37, 192, 1, 0, // Skip to: 1218 12409/* 770 */ MCD::OPC_Decode, 250, 32, 187, 2, // Opcode: tUXTB 12410/* 775 */ MCD::OPC_FilterValue, 1, 182, 1, 0, // Skip to: 1218 12411/* 780 */ MCD::OPC_CheckPredicate, 38, 177, 1, 0, // Skip to: 1218 12412/* 785 */ MCD::OPC_Decode, 189, 32, 200, 2, // Opcode: tCBZ 12413/* 790 */ MCD::OPC_FilterValue, 1, 95, 0, 0, // Skip to: 890 12414/* 795 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 12415/* 798 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 813 12416/* 803 */ MCD::OPC_CheckPredicate, 34, 154, 1, 0, // Skip to: 1218 12417/* 808 */ MCD::OPC_Decode, 224, 32, 201, 2, // Opcode: tPUSH 12418/* 813 */ MCD::OPC_FilterValue, 1, 144, 1, 0, // Skip to: 1218 12419/* 818 */ MCD::OPC_ExtractField, 5, 4, // Inst{8-5} ... 12420/* 821 */ MCD::OPC_FilterValue, 0, 13, 0, 0, // Skip to: 839 12421/* 826 */ MCD::OPC_CheckPredicate, 39, 131, 1, 0, // Skip to: 1218 12422/* 831 */ MCD::OPC_SoftFail, 7, 16, 12423/* 834 */ MCD::OPC_Decode, 254, 30, 202, 2, // Opcode: t2SETPAN 12424/* 839 */ MCD::OPC_FilterValue, 2, 24, 0, 0, // Skip to: 868 12425/* 844 */ MCD::OPC_CheckPredicate, 40, 113, 1, 0, // Skip to: 1218 12426/* 849 */ MCD::OPC_CheckField, 4, 1, 1, 106, 1, 0, // Skip to: 1218 12427/* 856 */ MCD::OPC_CheckField, 0, 3, 0, 99, 1, 0, // Skip to: 1218 12428/* 863 */ MCD::OPC_Decode, 231, 32, 202, 2, // Opcode: tSETEND 12429/* 868 */ MCD::OPC_FilterValue, 3, 89, 1, 0, // Skip to: 1218 12430/* 873 */ MCD::OPC_CheckPredicate, 34, 84, 1, 0, // Skip to: 1218 12431/* 878 */ MCD::OPC_CheckField, 3, 1, 0, 77, 1, 0, // Skip to: 1218 12432/* 885 */ MCD::OPC_Decode, 194, 32, 203, 2, // Opcode: tCPS 12433/* 890 */ MCD::OPC_FilterValue, 2, 114, 0, 0, // Skip to: 1009 12434/* 895 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 12435/* 898 */ MCD::OPC_FilterValue, 0, 91, 0, 0, // Skip to: 994 12436/* 903 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 12437/* 906 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 928 12438/* 911 */ MCD::OPC_CheckPredicate, 37, 46, 1, 0, // Skip to: 1218 12439/* 916 */ MCD::OPC_CheckField, 9, 1, 1, 39, 1, 0, // Skip to: 1218 12440/* 923 */ MCD::OPC_Decode, 225, 32, 187, 2, // Opcode: tREV 12441/* 928 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 950 12442/* 933 */ MCD::OPC_CheckPredicate, 37, 24, 1, 0, // Skip to: 1218 12443/* 938 */ MCD::OPC_CheckField, 9, 1, 1, 17, 1, 0, // Skip to: 1218 12444/* 945 */ MCD::OPC_Decode, 226, 32, 187, 2, // Opcode: tREV16 12445/* 950 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 972 12446/* 955 */ MCD::OPC_CheckPredicate, 41, 2, 1, 0, // Skip to: 1218 12447/* 960 */ MCD::OPC_CheckField, 9, 1, 1, 251, 0, 0, // Skip to: 1218 12448/* 967 */ MCD::OPC_Decode, 197, 32, 204, 2, // Opcode: tHLT 12449/* 972 */ MCD::OPC_FilterValue, 3, 241, 0, 0, // Skip to: 1218 12450/* 977 */ MCD::OPC_CheckPredicate, 37, 236, 0, 0, // Skip to: 1218 12451/* 982 */ MCD::OPC_CheckField, 9, 1, 1, 229, 0, 0, // Skip to: 1218 12452/* 989 */ MCD::OPC_Decode, 227, 32, 187, 2, // Opcode: tREVSH 12453/* 994 */ MCD::OPC_FilterValue, 1, 219, 0, 0, // Skip to: 1218 12454/* 999 */ MCD::OPC_CheckPredicate, 38, 214, 0, 0, // Skip to: 1218 12455/* 1004 */ MCD::OPC_Decode, 188, 32, 200, 2, // Opcode: tCBNZ 12456/* 1009 */ MCD::OPC_FilterValue, 3, 204, 0, 0, // Skip to: 1218 12457/* 1014 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 12458/* 1017 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1032 12459/* 1022 */ MCD::OPC_CheckPredicate, 34, 191, 0, 0, // Skip to: 1218 12460/* 1027 */ MCD::OPC_Decode, 223, 32, 205, 2, // Opcode: tPOP 12461/* 1032 */ MCD::OPC_FilterValue, 1, 181, 0, 0, // Skip to: 1218 12462/* 1037 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 12463/* 1040 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1055 12464/* 1045 */ MCD::OPC_CheckPredicate, 34, 168, 0, 0, // Skip to: 1218 12465/* 1050 */ MCD::OPC_Decode, 180, 32, 206, 2, // Opcode: tBKPT 12466/* 1055 */ MCD::OPC_FilterValue, 1, 158, 0, 0, // Skip to: 1218 12467/* 1060 */ MCD::OPC_CheckPredicate, 42, 153, 0, 0, // Skip to: 1218 12468/* 1065 */ MCD::OPC_CheckField, 0, 4, 0, 146, 0, 0, // Skip to: 1218 12469/* 1072 */ MCD::OPC_Decode, 196, 32, 207, 2, // Opcode: tHINT 12470/* 1077 */ MCD::OPC_FilterValue, 12, 33, 0, 0, // Skip to: 1115 12471/* 1082 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 12472/* 1085 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1100 12473/* 1090 */ MCD::OPC_CheckPredicate, 34, 123, 0, 0, // Skip to: 1218 12474/* 1095 */ MCD::OPC_Decode, 232, 32, 208, 2, // Opcode: tSTMIA_UPD 12475/* 1100 */ MCD::OPC_FilterValue, 1, 113, 0, 0, // Skip to: 1218 12476/* 1105 */ MCD::OPC_CheckPredicate, 34, 108, 0, 0, // Skip to: 1218 12477/* 1110 */ MCD::OPC_Decode, 201, 32, 209, 2, // Opcode: tLDMIA 12478/* 1115 */ MCD::OPC_FilterValue, 13, 76, 0, 0, // Skip to: 1196 12479/* 1120 */ MCD::OPC_ExtractField, 0, 12, // Inst{11-0} ... 12480/* 1123 */ MCD::OPC_FilterValue, 249, 29, 9, 0, 0, // Skip to: 1138 12481/* 1129 */ MCD::OPC_CheckPredicate, 34, 19, 0, 0, // Skip to: 1153 12482/* 1134 */ MCD::OPC_Decode, 252, 32, 51, // Opcode: t__brkdiv0 12483/* 1138 */ MCD::OPC_FilterValue, 254, 29, 9, 0, 0, // Skip to: 1153 12484/* 1144 */ MCD::OPC_CheckPredicate, 34, 4, 0, 0, // Skip to: 1153 12485/* 1149 */ MCD::OPC_Decode, 247, 32, 51, // Opcode: tTRAP 12486/* 1153 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 12487/* 1156 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 1171 12488/* 1161 */ MCD::OPC_CheckPredicate, 34, 20, 0, 0, // Skip to: 1186 12489/* 1166 */ MCD::OPC_Decode, 249, 32, 206, 2, // Opcode: tUDF 12490/* 1171 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 1186 12491/* 1176 */ MCD::OPC_CheckPredicate, 34, 5, 0, 0, // Skip to: 1186 12492/* 1181 */ MCD::OPC_Decode, 244, 32, 206, 2, // Opcode: tSVC 12493/* 1186 */ MCD::OPC_CheckPredicate, 34, 27, 0, 0, // Skip to: 1218 12494/* 1191 */ MCD::OPC_Decode, 187, 32, 210, 2, // Opcode: tBcc 12495/* 1196 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 1218 12496/* 1201 */ MCD::OPC_CheckPredicate, 34, 12, 0, 0, // Skip to: 1218 12497/* 1206 */ MCD::OPC_CheckField, 11, 1, 0, 5, 0, 0, // Skip to: 1218 12498/* 1213 */ MCD::OPC_Decode, 178, 32, 211, 2, // Opcode: tB 12499/* 1218 */ MCD::OPC_Fail, 12500 0 12501}; 12502 12503static const uint8_t DecoderTableThumb32[] = { 12504/* 0 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 12505/* 3 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 39 12506/* 8 */ MCD::OPC_CheckPredicate, 43, 55, 0, 0, // Skip to: 68 12507/* 13 */ MCD::OPC_CheckField, 27, 5, 30, 48, 0, 0, // Skip to: 68 12508/* 20 */ MCD::OPC_CheckField, 14, 2, 3, 41, 0, 0, // Skip to: 68 12509/* 27 */ MCD::OPC_CheckField, 0, 1, 0, 34, 0, 0, // Skip to: 68 12510/* 34 */ MCD::OPC_Decode, 183, 32, 212, 2, // Opcode: tBLXi 12511/* 39 */ MCD::OPC_FilterValue, 1, 24, 0, 0, // Skip to: 68 12512/* 44 */ MCD::OPC_CheckPredicate, 34, 19, 0, 0, // Skip to: 68 12513/* 49 */ MCD::OPC_CheckField, 27, 5, 30, 12, 0, 0, // Skip to: 68 12514/* 56 */ MCD::OPC_CheckField, 14, 2, 3, 5, 0, 0, // Skip to: 68 12515/* 63 */ MCD::OPC_Decode, 181, 32, 213, 2, // Opcode: tBL 12516/* 68 */ MCD::OPC_Fail, 12517 0 12518}; 12519 12520static const uint8_t DecoderTableThumb216[] = { 12521/* 0 */ MCD::OPC_CheckPredicate, 44, 13, 0, 0, // Skip to: 18 12522/* 5 */ MCD::OPC_CheckField, 8, 8, 191, 1, 5, 0, 0, // Skip to: 18 12523/* 13 */ MCD::OPC_Decode, 224, 29, 214, 2, // Opcode: t2IT 12524/* 18 */ MCD::OPC_Fail, 12525 0 12526}; 12527 12528static const uint8_t DecoderTableThumb232[] = { 12529/* 0 */ MCD::OPC_ExtractField, 27, 5, // Inst{31-27} ... 12530/* 3 */ MCD::OPC_FilterValue, 29, 41, 9, 0, // Skip to: 2353 12531/* 8 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... 12532/* 11 */ MCD::OPC_FilterValue, 0, 11, 2, 0, // Skip to: 539 12533/* 16 */ MCD::OPC_ExtractField, 23, 4, // Inst{26-23} ... 12534/* 19 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 73 12535/* 24 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12536/* 27 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 50 12537/* 32 */ MCD::OPC_CheckPredicate, 45, 199, 34, 0, // Skip to: 8940 12538/* 37 */ MCD::OPC_CheckField, 5, 15, 128, 220, 1, 190, 34, 0, // Skip to: 8940 12539/* 46 */ MCD::OPC_Decode, 171, 31, 83, // Opcode: t2SRSDB 12540/* 50 */ MCD::OPC_FilterValue, 1, 181, 34, 0, // Skip to: 8940 12541/* 55 */ MCD::OPC_CheckPredicate, 45, 176, 34, 0, // Skip to: 8940 12542/* 60 */ MCD::OPC_CheckField, 0, 16, 128, 128, 3, 167, 34, 0, // Skip to: 8940 12543/* 69 */ MCD::OPC_Decode, 234, 30, 81, // Opcode: t2RFEDB 12544/* 73 */ MCD::OPC_FilterValue, 1, 71, 0, 0, // Skip to: 149 12545/* 78 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12546/* 81 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 110 12547/* 86 */ MCD::OPC_CheckPredicate, 44, 145, 34, 0, // Skip to: 8940 12548/* 91 */ MCD::OPC_CheckField, 15, 1, 0, 138, 34, 0, // Skip to: 8940 12549/* 98 */ MCD::OPC_CheckField, 13, 1, 0, 131, 34, 0, // Skip to: 8940 12550/* 105 */ MCD::OPC_Decode, 205, 31, 215, 2, // Opcode: t2STMIA 12551/* 110 */ MCD::OPC_FilterValue, 1, 121, 34, 0, // Skip to: 8940 12552/* 115 */ MCD::OPC_CheckPredicate, 46, 19, 0, 0, // Skip to: 139 12553/* 120 */ MCD::OPC_CheckField, 16, 4, 15, 12, 0, 0, // Skip to: 139 12554/* 127 */ MCD::OPC_CheckField, 13, 1, 0, 5, 0, 0, // Skip to: 139 12555/* 134 */ MCD::OPC_Decode, 190, 29, 216, 2, // Opcode: t2CLRM 12556/* 139 */ MCD::OPC_CheckPredicate, 44, 92, 34, 0, // Skip to: 8940 12557/* 144 */ MCD::OPC_Decode, 252, 29, 217, 2, // Opcode: t2LDMIA 12558/* 149 */ MCD::OPC_FilterValue, 2, 47, 0, 0, // Skip to: 201 12559/* 154 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12560/* 157 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 186 12561/* 162 */ MCD::OPC_CheckPredicate, 44, 69, 34, 0, // Skip to: 8940 12562/* 167 */ MCD::OPC_CheckField, 15, 1, 0, 62, 34, 0, // Skip to: 8940 12563/* 174 */ MCD::OPC_CheckField, 13, 1, 0, 55, 34, 0, // Skip to: 8940 12564/* 181 */ MCD::OPC_Decode, 203, 31, 215, 2, // Opcode: t2STMDB 12565/* 186 */ MCD::OPC_FilterValue, 1, 45, 34, 0, // Skip to: 8940 12566/* 191 */ MCD::OPC_CheckPredicate, 44, 40, 34, 0, // Skip to: 8940 12567/* 196 */ MCD::OPC_Decode, 250, 29, 217, 2, // Opcode: t2LDMDB 12568/* 201 */ MCD::OPC_FilterValue, 3, 49, 0, 0, // Skip to: 255 12569/* 206 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12570/* 209 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 232 12571/* 214 */ MCD::OPC_CheckPredicate, 45, 17, 34, 0, // Skip to: 8940 12572/* 219 */ MCD::OPC_CheckField, 5, 15, 128, 220, 1, 8, 34, 0, // Skip to: 8940 12573/* 228 */ MCD::OPC_Decode, 173, 31, 83, // Opcode: t2SRSIA 12574/* 232 */ MCD::OPC_FilterValue, 1, 255, 33, 0, // Skip to: 8940 12575/* 237 */ MCD::OPC_CheckPredicate, 45, 250, 33, 0, // Skip to: 8940 12576/* 242 */ MCD::OPC_CheckField, 0, 16, 128, 128, 3, 241, 33, 0, // Skip to: 8940 12577/* 251 */ MCD::OPC_Decode, 236, 30, 81, // Opcode: t2RFEIA 12578/* 255 */ MCD::OPC_FilterValue, 4, 93, 0, 0, // Skip to: 353 12579/* 260 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 285 12580/* 265 */ MCD::OPC_CheckField, 20, 1, 1, 13, 0, 0, // Skip to: 285 12581/* 272 */ MCD::OPC_CheckField, 4, 11, 240, 1, 5, 0, 0, // Skip to: 285 12582/* 280 */ MCD::OPC_Decode, 252, 31, 218, 2, // Opcode: t2TSTrr 12583/* 285 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 309 12584/* 290 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 309 12585/* 297 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 309 12586/* 304 */ MCD::OPC_Decode, 253, 31, 219, 2, // Opcode: t2TSTrs 12587/* 309 */ MCD::OPC_CheckPredicate, 44, 24, 0, 0, // Skip to: 338 12588/* 314 */ MCD::OPC_CheckField, 12, 3, 0, 17, 0, 0, // Skip to: 338 12589/* 321 */ MCD::OPC_CheckField, 4, 4, 0, 10, 0, 0, // Skip to: 338 12590/* 328 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12591/* 333 */ MCD::OPC_Decode, 170, 29, 220, 2, // Opcode: t2ANDrr 12592/* 338 */ MCD::OPC_CheckPredicate, 44, 149, 33, 0, // Skip to: 8940 12593/* 343 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12594/* 348 */ MCD::OPC_Decode, 171, 29, 221, 2, // Opcode: t2ANDrs 12595/* 353 */ MCD::OPC_FilterValue, 5, 93, 0, 0, // Skip to: 451 12596/* 358 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 383 12597/* 363 */ MCD::OPC_CheckField, 20, 1, 1, 13, 0, 0, // Skip to: 383 12598/* 370 */ MCD::OPC_CheckField, 4, 11, 240, 1, 5, 0, 0, // Skip to: 383 12599/* 378 */ MCD::OPC_Decode, 248, 31, 218, 2, // Opcode: t2TEQrr 12600/* 383 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 407 12601/* 388 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 407 12602/* 395 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 407 12603/* 402 */ MCD::OPC_Decode, 249, 31, 219, 2, // Opcode: t2TEQrs 12604/* 407 */ MCD::OPC_CheckPredicate, 44, 24, 0, 0, // Skip to: 436 12605/* 412 */ MCD::OPC_CheckField, 12, 3, 0, 17, 0, 0, // Skip to: 436 12606/* 419 */ MCD::OPC_CheckField, 4, 4, 0, 10, 0, 0, // Skip to: 436 12607/* 426 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12608/* 431 */ MCD::OPC_Decode, 219, 29, 220, 2, // Opcode: t2EORrr 12609/* 436 */ MCD::OPC_CheckPredicate, 44, 51, 33, 0, // Skip to: 8940 12610/* 441 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12611/* 446 */ MCD::OPC_Decode, 220, 29, 221, 2, // Opcode: t2EORrs 12612/* 451 */ MCD::OPC_FilterValue, 6, 36, 33, 0, // Skip to: 8940 12613/* 456 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 481 12614/* 461 */ MCD::OPC_CheckField, 20, 1, 1, 13, 0, 0, // Skip to: 481 12615/* 468 */ MCD::OPC_CheckField, 4, 11, 240, 1, 5, 0, 0, // Skip to: 481 12616/* 476 */ MCD::OPC_Decode, 193, 29, 222, 2, // Opcode: t2CMNzrr 12617/* 481 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 505 12618/* 486 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 505 12619/* 493 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 505 12620/* 500 */ MCD::OPC_Decode, 194, 29, 223, 2, // Opcode: t2CMNzrs 12621/* 505 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 529 12622/* 510 */ MCD::OPC_CheckField, 12, 3, 0, 12, 0, 0, // Skip to: 529 12623/* 517 */ MCD::OPC_CheckField, 4, 4, 0, 5, 0, 0, // Skip to: 529 12624/* 524 */ MCD::OPC_Decode, 164, 29, 224, 2, // Opcode: t2ADDrr 12625/* 529 */ MCD::OPC_CheckPredicate, 44, 214, 32, 0, // Skip to: 8940 12626/* 534 */ MCD::OPC_Decode, 165, 29, 225, 2, // Opcode: t2ADDrs 12627/* 539 */ MCD::OPC_FilterValue, 1, 96, 1, 0, // Skip to: 896 12628/* 544 */ MCD::OPC_ExtractField, 23, 4, // Inst{26-23} ... 12629/* 547 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 601 12630/* 552 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12631/* 555 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 578 12632/* 560 */ MCD::OPC_CheckPredicate, 45, 183, 32, 0, // Skip to: 8940 12633/* 565 */ MCD::OPC_CheckField, 5, 15, 128, 220, 1, 174, 32, 0, // Skip to: 8940 12634/* 574 */ MCD::OPC_Decode, 172, 31, 83, // Opcode: t2SRSDB_UPD 12635/* 578 */ MCD::OPC_FilterValue, 1, 165, 32, 0, // Skip to: 8940 12636/* 583 */ MCD::OPC_CheckPredicate, 45, 160, 32, 0, // Skip to: 8940 12637/* 588 */ MCD::OPC_CheckField, 0, 16, 128, 128, 3, 151, 32, 0, // Skip to: 8940 12638/* 597 */ MCD::OPC_Decode, 235, 30, 81, // Opcode: t2RFEDBW 12639/* 601 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 653 12640/* 606 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12641/* 609 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 638 12642/* 614 */ MCD::OPC_CheckPredicate, 44, 129, 32, 0, // Skip to: 8940 12643/* 619 */ MCD::OPC_CheckField, 15, 1, 0, 122, 32, 0, // Skip to: 8940 12644/* 626 */ MCD::OPC_CheckField, 13, 1, 0, 115, 32, 0, // Skip to: 8940 12645/* 633 */ MCD::OPC_Decode, 206, 31, 226, 2, // Opcode: t2STMIA_UPD 12646/* 638 */ MCD::OPC_FilterValue, 1, 105, 32, 0, // Skip to: 8940 12647/* 643 */ MCD::OPC_CheckPredicate, 44, 100, 32, 0, // Skip to: 8940 12648/* 648 */ MCD::OPC_Decode, 253, 29, 227, 2, // Opcode: t2LDMIA_UPD 12649/* 653 */ MCD::OPC_FilterValue, 2, 47, 0, 0, // Skip to: 705 12650/* 658 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12651/* 661 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 690 12652/* 666 */ MCD::OPC_CheckPredicate, 44, 77, 32, 0, // Skip to: 8940 12653/* 671 */ MCD::OPC_CheckField, 15, 1, 0, 70, 32, 0, // Skip to: 8940 12654/* 678 */ MCD::OPC_CheckField, 13, 1, 0, 63, 32, 0, // Skip to: 8940 12655/* 685 */ MCD::OPC_Decode, 204, 31, 226, 2, // Opcode: t2STMDB_UPD 12656/* 690 */ MCD::OPC_FilterValue, 1, 53, 32, 0, // Skip to: 8940 12657/* 695 */ MCD::OPC_CheckPredicate, 44, 48, 32, 0, // Skip to: 8940 12658/* 700 */ MCD::OPC_Decode, 251, 29, 227, 2, // Opcode: t2LDMDB_UPD 12659/* 705 */ MCD::OPC_FilterValue, 3, 49, 0, 0, // Skip to: 759 12660/* 710 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12661/* 713 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 736 12662/* 718 */ MCD::OPC_CheckPredicate, 45, 25, 32, 0, // Skip to: 8940 12663/* 723 */ MCD::OPC_CheckField, 5, 15, 128, 220, 1, 16, 32, 0, // Skip to: 8940 12664/* 732 */ MCD::OPC_Decode, 174, 31, 83, // Opcode: t2SRSIA_UPD 12665/* 736 */ MCD::OPC_FilterValue, 1, 7, 32, 0, // Skip to: 8940 12666/* 741 */ MCD::OPC_CheckPredicate, 45, 2, 32, 0, // Skip to: 8940 12667/* 746 */ MCD::OPC_CheckField, 0, 16, 128, 128, 3, 249, 31, 0, // Skip to: 8940 12668/* 755 */ MCD::OPC_Decode, 237, 30, 81, // Opcode: t2RFEIAW 12669/* 759 */ MCD::OPC_FilterValue, 4, 44, 0, 0, // Skip to: 808 12670/* 764 */ MCD::OPC_CheckPredicate, 44, 24, 0, 0, // Skip to: 793 12671/* 769 */ MCD::OPC_CheckField, 12, 3, 0, 17, 0, 0, // Skip to: 793 12672/* 776 */ MCD::OPC_CheckField, 4, 4, 0, 10, 0, 0, // Skip to: 793 12673/* 783 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12674/* 788 */ MCD::OPC_Decode, 183, 29, 220, 2, // Opcode: t2BICrr 12675/* 793 */ MCD::OPC_CheckPredicate, 44, 206, 31, 0, // Skip to: 8940 12676/* 798 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12677/* 803 */ MCD::OPC_Decode, 184, 29, 221, 2, // Opcode: t2BICrs 12678/* 808 */ MCD::OPC_FilterValue, 7, 191, 31, 0, // Skip to: 8940 12679/* 813 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 838 12680/* 818 */ MCD::OPC_CheckField, 20, 1, 1, 13, 0, 0, // Skip to: 838 12681/* 825 */ MCD::OPC_CheckField, 4, 11, 240, 1, 5, 0, 0, // Skip to: 838 12682/* 833 */ MCD::OPC_Decode, 196, 29, 222, 2, // Opcode: t2CMPrr 12683/* 838 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 862 12684/* 843 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 862 12685/* 850 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 862 12686/* 857 */ MCD::OPC_Decode, 197, 29, 223, 2, // Opcode: t2CMPrs 12687/* 862 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 886 12688/* 867 */ MCD::OPC_CheckField, 12, 3, 0, 12, 0, 0, // Skip to: 886 12689/* 874 */ MCD::OPC_CheckField, 4, 4, 0, 5, 0, 0, // Skip to: 886 12690/* 881 */ MCD::OPC_Decode, 235, 31, 224, 2, // Opcode: t2SUBrr 12691/* 886 */ MCD::OPC_CheckPredicate, 44, 113, 31, 0, // Skip to: 8940 12692/* 891 */ MCD::OPC_Decode, 236, 31, 225, 2, // Opcode: t2SUBrs 12693/* 896 */ MCD::OPC_FilterValue, 2, 179, 4, 0, // Skip to: 2104 12694/* 901 */ MCD::OPC_ExtractField, 24, 3, // Inst{26-24} ... 12695/* 904 */ MCD::OPC_FilterValue, 0, 212, 2, 0, // Skip to: 1633 12696/* 909 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12697/* 912 */ MCD::OPC_FilterValue, 0, 100, 1, 0, // Skip to: 1273 12698/* 917 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12699/* 920 */ MCD::OPC_FilterValue, 0, 113, 0, 0, // Skip to: 1038 12700/* 925 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 12701/* 928 */ MCD::OPC_FilterValue, 0, 20, 0, 0, // Skip to: 953 12702/* 933 */ MCD::OPC_CheckPredicate, 35, 90, 0, 0, // Skip to: 1028 12703/* 938 */ MCD::OPC_CheckField, 12, 4, 15, 83, 0, 0, // Skip to: 1028 12704/* 945 */ MCD::OPC_SoftFail, 63, 0, 12705/* 948 */ MCD::OPC_Decode, 254, 31, 228, 2, // Opcode: t2TT 12706/* 953 */ MCD::OPC_FilterValue, 1, 20, 0, 0, // Skip to: 978 12707/* 958 */ MCD::OPC_CheckPredicate, 35, 65, 0, 0, // Skip to: 1028 12708/* 963 */ MCD::OPC_CheckField, 12, 4, 15, 58, 0, 0, // Skip to: 1028 12709/* 970 */ MCD::OPC_SoftFail, 63, 0, 12710/* 973 */ MCD::OPC_Decode, 129, 32, 228, 2, // Opcode: t2TTT 12711/* 978 */ MCD::OPC_FilterValue, 2, 20, 0, 0, // Skip to: 1003 12712/* 983 */ MCD::OPC_CheckPredicate, 35, 40, 0, 0, // Skip to: 1028 12713/* 988 */ MCD::OPC_CheckField, 12, 4, 15, 33, 0, 0, // Skip to: 1028 12714/* 995 */ MCD::OPC_SoftFail, 63, 0, 12715/* 998 */ MCD::OPC_Decode, 255, 31, 228, 2, // Opcode: t2TTA 12716/* 1003 */ MCD::OPC_FilterValue, 3, 20, 0, 0, // Skip to: 1028 12717/* 1008 */ MCD::OPC_CheckPredicate, 35, 15, 0, 0, // Skip to: 1028 12718/* 1013 */ MCD::OPC_CheckField, 12, 4, 15, 8, 0, 0, // Skip to: 1028 12719/* 1020 */ MCD::OPC_SoftFail, 63, 0, 12720/* 1023 */ MCD::OPC_Decode, 128, 32, 228, 2, // Opcode: t2TTAT 12721/* 1028 */ MCD::OPC_CheckPredicate, 38, 227, 30, 0, // Skip to: 8940 12722/* 1033 */ MCD::OPC_Decode, 216, 31, 229, 2, // Opcode: t2STREX 12723/* 1038 */ MCD::OPC_FilterValue, 1, 217, 30, 0, // Skip to: 8940 12724/* 1043 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 12725/* 1046 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 1068 12726/* 1051 */ MCD::OPC_CheckPredicate, 38, 204, 30, 0, // Skip to: 8940 12727/* 1056 */ MCD::OPC_CheckField, 8, 4, 15, 197, 30, 0, // Skip to: 8940 12728/* 1063 */ MCD::OPC_Decode, 217, 31, 230, 2, // Opcode: t2STREXB 12729/* 1068 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 1090 12730/* 1073 */ MCD::OPC_CheckPredicate, 38, 182, 30, 0, // Skip to: 8940 12731/* 1078 */ MCD::OPC_CheckField, 8, 4, 15, 175, 30, 0, // Skip to: 8940 12732/* 1085 */ MCD::OPC_Decode, 219, 31, 230, 2, // Opcode: t2STREXH 12733/* 1090 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 1105 12734/* 1095 */ MCD::OPC_CheckPredicate, 45, 160, 30, 0, // Skip to: 8940 12735/* 1100 */ MCD::OPC_Decode, 218, 31, 231, 2, // Opcode: t2STREXD 12736/* 1105 */ MCD::OPC_FilterValue, 8, 24, 0, 0, // Skip to: 1134 12737/* 1110 */ MCD::OPC_CheckPredicate, 47, 145, 30, 0, // Skip to: 8940 12738/* 1115 */ MCD::OPC_CheckField, 8, 4, 15, 138, 30, 0, // Skip to: 8940 12739/* 1122 */ MCD::OPC_CheckField, 0, 4, 15, 131, 30, 0, // Skip to: 8940 12740/* 1129 */ MCD::OPC_Decode, 197, 31, 232, 2, // Opcode: t2STLB 12741/* 1134 */ MCD::OPC_FilterValue, 9, 24, 0, 0, // Skip to: 1163 12742/* 1139 */ MCD::OPC_CheckPredicate, 47, 116, 30, 0, // Skip to: 8940 12743/* 1144 */ MCD::OPC_CheckField, 8, 4, 15, 109, 30, 0, // Skip to: 8940 12744/* 1151 */ MCD::OPC_CheckField, 0, 4, 15, 102, 30, 0, // Skip to: 8940 12745/* 1158 */ MCD::OPC_Decode, 202, 31, 232, 2, // Opcode: t2STLH 12746/* 1163 */ MCD::OPC_FilterValue, 10, 24, 0, 0, // Skip to: 1192 12747/* 1168 */ MCD::OPC_CheckPredicate, 47, 87, 30, 0, // Skip to: 8940 12748/* 1173 */ MCD::OPC_CheckField, 8, 4, 15, 80, 30, 0, // Skip to: 8940 12749/* 1180 */ MCD::OPC_CheckField, 0, 4, 15, 73, 30, 0, // Skip to: 8940 12750/* 1187 */ MCD::OPC_Decode, 196, 31, 232, 2, // Opcode: t2STL 12751/* 1192 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 1214 12752/* 1197 */ MCD::OPC_CheckPredicate, 48, 58, 30, 0, // Skip to: 8940 12753/* 1202 */ MCD::OPC_CheckField, 8, 4, 15, 51, 30, 0, // Skip to: 8940 12754/* 1209 */ MCD::OPC_Decode, 199, 31, 230, 2, // Opcode: t2STLEXB 12755/* 1214 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 1236 12756/* 1219 */ MCD::OPC_CheckPredicate, 48, 36, 30, 0, // Skip to: 8940 12757/* 1224 */ MCD::OPC_CheckField, 8, 4, 15, 29, 30, 0, // Skip to: 8940 12758/* 1231 */ MCD::OPC_Decode, 201, 31, 230, 2, // Opcode: t2STLEXH 12759/* 1236 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 1258 12760/* 1241 */ MCD::OPC_CheckPredicate, 48, 14, 30, 0, // Skip to: 8940 12761/* 1246 */ MCD::OPC_CheckField, 8, 4, 15, 7, 30, 0, // Skip to: 8940 12762/* 1253 */ MCD::OPC_Decode, 198, 31, 230, 2, // Opcode: t2STLEX 12763/* 1258 */ MCD::OPC_FilterValue, 15, 253, 29, 0, // Skip to: 8940 12764/* 1263 */ MCD::OPC_CheckPredicate, 49, 248, 29, 0, // Skip to: 8940 12765/* 1268 */ MCD::OPC_Decode, 200, 31, 231, 2, // Opcode: t2STLEXD 12766/* 1273 */ MCD::OPC_FilterValue, 1, 238, 29, 0, // Skip to: 8940 12767/* 1278 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12768/* 1281 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1303 12769/* 1286 */ MCD::OPC_CheckPredicate, 38, 225, 29, 0, // Skip to: 8940 12770/* 1291 */ MCD::OPC_CheckField, 8, 4, 15, 218, 29, 0, // Skip to: 8940 12771/* 1298 */ MCD::OPC_Decode, 136, 30, 233, 2, // Opcode: t2LDREX 12772/* 1303 */ MCD::OPC_FilterValue, 1, 208, 29, 0, // Skip to: 8940 12773/* 1308 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 12774/* 1311 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 1334 12775/* 1316 */ MCD::OPC_CheckPredicate, 44, 195, 29, 0, // Skip to: 8940 12776/* 1321 */ MCD::OPC_CheckField, 8, 8, 240, 1, 187, 29, 0, // Skip to: 8940 12777/* 1329 */ MCD::OPC_Decode, 245, 31, 234, 2, // Opcode: t2TBB 12778/* 1334 */ MCD::OPC_FilterValue, 1, 18, 0, 0, // Skip to: 1357 12779/* 1339 */ MCD::OPC_CheckPredicate, 44, 172, 29, 0, // Skip to: 8940 12780/* 1344 */ MCD::OPC_CheckField, 8, 8, 240, 1, 164, 29, 0, // Skip to: 8940 12781/* 1352 */ MCD::OPC_Decode, 246, 31, 234, 2, // Opcode: t2TBH 12782/* 1357 */ MCD::OPC_FilterValue, 4, 24, 0, 0, // Skip to: 1386 12783/* 1362 */ MCD::OPC_CheckPredicate, 38, 149, 29, 0, // Skip to: 8940 12784/* 1367 */ MCD::OPC_CheckField, 8, 4, 15, 142, 29, 0, // Skip to: 8940 12785/* 1374 */ MCD::OPC_CheckField, 0, 4, 15, 135, 29, 0, // Skip to: 8940 12786/* 1381 */ MCD::OPC_Decode, 137, 30, 232, 2, // Opcode: t2LDREXB 12787/* 1386 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 1415 12788/* 1391 */ MCD::OPC_CheckPredicate, 38, 120, 29, 0, // Skip to: 8940 12789/* 1396 */ MCD::OPC_CheckField, 8, 4, 15, 113, 29, 0, // Skip to: 8940 12790/* 1403 */ MCD::OPC_CheckField, 0, 4, 15, 106, 29, 0, // Skip to: 8940 12791/* 1410 */ MCD::OPC_Decode, 139, 30, 232, 2, // Opcode: t2LDREXH 12792/* 1415 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 1437 12793/* 1420 */ MCD::OPC_CheckPredicate, 45, 91, 29, 0, // Skip to: 8940 12794/* 1425 */ MCD::OPC_CheckField, 0, 4, 15, 84, 29, 0, // Skip to: 8940 12795/* 1432 */ MCD::OPC_Decode, 138, 30, 235, 2, // Opcode: t2LDREXD 12796/* 1437 */ MCD::OPC_FilterValue, 8, 24, 0, 0, // Skip to: 1466 12797/* 1442 */ MCD::OPC_CheckPredicate, 47, 69, 29, 0, // Skip to: 8940 12798/* 1447 */ MCD::OPC_CheckField, 8, 4, 15, 62, 29, 0, // Skip to: 8940 12799/* 1454 */ MCD::OPC_CheckField, 0, 4, 15, 55, 29, 0, // Skip to: 8940 12800/* 1461 */ MCD::OPC_Decode, 228, 29, 232, 2, // Opcode: t2LDAB 12801/* 1466 */ MCD::OPC_FilterValue, 9, 24, 0, 0, // Skip to: 1495 12802/* 1471 */ MCD::OPC_CheckPredicate, 47, 40, 29, 0, // Skip to: 8940 12803/* 1476 */ MCD::OPC_CheckField, 8, 4, 15, 33, 29, 0, // Skip to: 8940 12804/* 1483 */ MCD::OPC_CheckField, 0, 4, 15, 26, 29, 0, // Skip to: 8940 12805/* 1490 */ MCD::OPC_Decode, 233, 29, 232, 2, // Opcode: t2LDAH 12806/* 1495 */ MCD::OPC_FilterValue, 10, 24, 0, 0, // Skip to: 1524 12807/* 1500 */ MCD::OPC_CheckPredicate, 47, 11, 29, 0, // Skip to: 8940 12808/* 1505 */ MCD::OPC_CheckField, 8, 4, 15, 4, 29, 0, // Skip to: 8940 12809/* 1512 */ MCD::OPC_CheckField, 0, 4, 15, 253, 28, 0, // Skip to: 8940 12810/* 1519 */ MCD::OPC_Decode, 227, 29, 232, 2, // Opcode: t2LDA 12811/* 1524 */ MCD::OPC_FilterValue, 12, 24, 0, 0, // Skip to: 1553 12812/* 1529 */ MCD::OPC_CheckPredicate, 48, 238, 28, 0, // Skip to: 8940 12813/* 1534 */ MCD::OPC_CheckField, 8, 4, 15, 231, 28, 0, // Skip to: 8940 12814/* 1541 */ MCD::OPC_CheckField, 0, 4, 15, 224, 28, 0, // Skip to: 8940 12815/* 1548 */ MCD::OPC_Decode, 230, 29, 232, 2, // Opcode: t2LDAEXB 12816/* 1553 */ MCD::OPC_FilterValue, 13, 24, 0, 0, // Skip to: 1582 12817/* 1558 */ MCD::OPC_CheckPredicate, 48, 209, 28, 0, // Skip to: 8940 12818/* 1563 */ MCD::OPC_CheckField, 8, 4, 15, 202, 28, 0, // Skip to: 8940 12819/* 1570 */ MCD::OPC_CheckField, 0, 4, 15, 195, 28, 0, // Skip to: 8940 12820/* 1577 */ MCD::OPC_Decode, 232, 29, 232, 2, // Opcode: t2LDAEXH 12821/* 1582 */ MCD::OPC_FilterValue, 14, 24, 0, 0, // Skip to: 1611 12822/* 1587 */ MCD::OPC_CheckPredicate, 48, 180, 28, 0, // Skip to: 8940 12823/* 1592 */ MCD::OPC_CheckField, 8, 4, 15, 173, 28, 0, // Skip to: 8940 12824/* 1599 */ MCD::OPC_CheckField, 0, 4, 15, 166, 28, 0, // Skip to: 8940 12825/* 1606 */ MCD::OPC_Decode, 229, 29, 232, 2, // Opcode: t2LDAEX 12826/* 1611 */ MCD::OPC_FilterValue, 15, 156, 28, 0, // Skip to: 8940 12827/* 1616 */ MCD::OPC_CheckPredicate, 49, 151, 28, 0, // Skip to: 8940 12828/* 1621 */ MCD::OPC_CheckField, 0, 4, 15, 144, 28, 0, // Skip to: 8940 12829/* 1628 */ MCD::OPC_Decode, 231, 29, 235, 2, // Opcode: t2LDAEXD 12830/* 1633 */ MCD::OPC_FilterValue, 1, 33, 0, 0, // Skip to: 1671 12831/* 1638 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12832/* 1641 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1656 12833/* 1646 */ MCD::OPC_CheckPredicate, 44, 121, 28, 0, // Skip to: 8940 12834/* 1651 */ MCD::OPC_Decode, 215, 31, 236, 2, // Opcode: t2STRDi8 12835/* 1656 */ MCD::OPC_FilterValue, 1, 111, 28, 0, // Skip to: 8940 12836/* 1661 */ MCD::OPC_CheckPredicate, 44, 106, 28, 0, // Skip to: 8940 12837/* 1666 */ MCD::OPC_Decode, 135, 30, 236, 2, // Opcode: t2LDRDi8 12838/* 1671 */ MCD::OPC_FilterValue, 2, 86, 1, 0, // Skip to: 2018 12839/* 1676 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12840/* 1679 */ MCD::OPC_FilterValue, 0, 26, 1, 0, // Skip to: 1966 12841/* 1684 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 12842/* 1687 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 1727 12843/* 1692 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 12844/* 1695 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 1761 12845/* 1700 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 1717 12846/* 1705 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 1717 12847/* 1712 */ MCD::OPC_Decode, 183, 30, 237, 2, // Opcode: t2MOVr 12848/* 1717 */ MCD::OPC_CheckPredicate, 44, 39, 0, 0, // Skip to: 1761 12849/* 1722 */ MCD::OPC_Decode, 205, 30, 220, 2, // Opcode: t2ORRrr 12850/* 1727 */ MCD::OPC_FilterValue, 3, 29, 0, 0, // Skip to: 1761 12851/* 1732 */ MCD::OPC_CheckPredicate, 44, 24, 0, 0, // Skip to: 1761 12852/* 1737 */ MCD::OPC_CheckField, 16, 4, 15, 17, 0, 0, // Skip to: 1761 12853/* 1744 */ MCD::OPC_CheckField, 12, 3, 0, 10, 0, 0, // Skip to: 1761 12854/* 1751 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12855/* 1756 */ MCD::OPC_Decode, 240, 30, 238, 2, // Opcode: t2RRX 12856/* 1761 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 12857/* 1764 */ MCD::OPC_FilterValue, 0, 101, 0, 0, // Skip to: 1870 12858/* 1769 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 12859/* 1772 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1794 12860/* 1777 */ MCD::OPC_CheckPredicate, 44, 78, 0, 0, // Skip to: 1860 12861/* 1782 */ MCD::OPC_CheckField, 16, 4, 15, 71, 0, 0, // Skip to: 1860 12862/* 1789 */ MCD::OPC_Decode, 170, 30, 239, 2, // Opcode: t2LSLri 12863/* 1794 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 1816 12864/* 1799 */ MCD::OPC_CheckPredicate, 44, 56, 0, 0, // Skip to: 1860 12865/* 1804 */ MCD::OPC_CheckField, 16, 4, 15, 49, 0, 0, // Skip to: 1860 12866/* 1811 */ MCD::OPC_Decode, 172, 30, 239, 2, // Opcode: t2LSRri 12867/* 1816 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1838 12868/* 1821 */ MCD::OPC_CheckPredicate, 44, 34, 0, 0, // Skip to: 1860 12869/* 1826 */ MCD::OPC_CheckField, 16, 4, 15, 27, 0, 0, // Skip to: 1860 12870/* 1833 */ MCD::OPC_Decode, 172, 29, 239, 2, // Opcode: t2ASRri 12871/* 1838 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 1860 12872/* 1843 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 1860 12873/* 1848 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 1860 12874/* 1855 */ MCD::OPC_Decode, 238, 30, 239, 2, // Opcode: t2RORri 12875/* 1860 */ MCD::OPC_CheckPredicate, 44, 163, 27, 0, // Skip to: 8940 12876/* 1865 */ MCD::OPC_Decode, 206, 30, 221, 2, // Opcode: t2ORRrs 12877/* 1870 */ MCD::OPC_FilterValue, 1, 153, 27, 0, // Skip to: 8940 12878/* 1875 */ MCD::OPC_ExtractField, 12, 3, // Inst{14-12} ... 12879/* 1878 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1900 12880/* 1883 */ MCD::OPC_CheckPredicate, 46, 140, 27, 0, // Skip to: 8940 12881/* 1888 */ MCD::OPC_CheckField, 20, 1, 1, 133, 27, 0, // Skip to: 8940 12882/* 1895 */ MCD::OPC_Decode, 207, 29, 240, 2, // Opcode: t2CSEL 12883/* 1900 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 1922 12884/* 1905 */ MCD::OPC_CheckPredicate, 46, 118, 27, 0, // Skip to: 8940 12885/* 1910 */ MCD::OPC_CheckField, 20, 1, 1, 111, 27, 0, // Skip to: 8940 12886/* 1917 */ MCD::OPC_Decode, 208, 29, 240, 2, // Opcode: t2CSINC 12887/* 1922 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 1944 12888/* 1927 */ MCD::OPC_CheckPredicate, 46, 96, 27, 0, // Skip to: 8940 12889/* 1932 */ MCD::OPC_CheckField, 20, 1, 1, 89, 27, 0, // Skip to: 8940 12890/* 1939 */ MCD::OPC_Decode, 209, 29, 240, 2, // Opcode: t2CSINV 12891/* 1944 */ MCD::OPC_FilterValue, 3, 79, 27, 0, // Skip to: 8940 12892/* 1949 */ MCD::OPC_CheckPredicate, 46, 74, 27, 0, // Skip to: 8940 12893/* 1954 */ MCD::OPC_CheckField, 20, 1, 1, 67, 27, 0, // Skip to: 8940 12894/* 1961 */ MCD::OPC_Decode, 210, 29, 240, 2, // Opcode: t2CSNEG 12895/* 1966 */ MCD::OPC_FilterValue, 1, 57, 27, 0, // Skip to: 8940 12896/* 1971 */ MCD::OPC_ExtractField, 4, 2, // Inst{5-4} ... 12897/* 1974 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1996 12898/* 1979 */ MCD::OPC_CheckPredicate, 50, 44, 27, 0, // Skip to: 8940 12899/* 1984 */ MCD::OPC_CheckField, 20, 1, 0, 37, 27, 0, // Skip to: 8940 12900/* 1991 */ MCD::OPC_Decode, 207, 30, 241, 2, // Opcode: t2PKHBT 12901/* 1996 */ MCD::OPC_FilterValue, 2, 27, 27, 0, // Skip to: 8940 12902/* 2001 */ MCD::OPC_CheckPredicate, 50, 22, 27, 0, // Skip to: 8940 12903/* 2006 */ MCD::OPC_CheckField, 20, 1, 0, 15, 27, 0, // Skip to: 8940 12904/* 2013 */ MCD::OPC_Decode, 208, 30, 241, 2, // Opcode: t2PKHTB 12905/* 2018 */ MCD::OPC_FilterValue, 3, 5, 27, 0, // Skip to: 8940 12906/* 2023 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12907/* 2026 */ MCD::OPC_FilterValue, 0, 34, 0, 0, // Skip to: 2065 12908/* 2031 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 2055 12909/* 2036 */ MCD::OPC_CheckField, 12, 3, 0, 12, 0, 0, // Skip to: 2055 12910/* 2043 */ MCD::OPC_CheckField, 4, 4, 0, 5, 0, 0, // Skip to: 2055 12911/* 2050 */ MCD::OPC_Decode, 160, 29, 220, 2, // Opcode: t2ADCrr 12912/* 2055 */ MCD::OPC_CheckPredicate, 44, 224, 26, 0, // Skip to: 8940 12913/* 2060 */ MCD::OPC_Decode, 161, 29, 221, 2, // Opcode: t2ADCrs 12914/* 2065 */ MCD::OPC_FilterValue, 1, 214, 26, 0, // Skip to: 8940 12915/* 2070 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 2094 12916/* 2075 */ MCD::OPC_CheckField, 12, 3, 0, 12, 0, 0, // Skip to: 2094 12917/* 2082 */ MCD::OPC_CheckField, 4, 4, 0, 5, 0, 0, // Skip to: 2094 12918/* 2089 */ MCD::OPC_Decode, 242, 30, 220, 2, // Opcode: t2RSBrr 12919/* 2094 */ MCD::OPC_CheckPredicate, 44, 185, 26, 0, // Skip to: 8940 12920/* 2099 */ MCD::OPC_Decode, 243, 30, 221, 2, // Opcode: t2RSBrs 12921/* 2104 */ MCD::OPC_FilterValue, 3, 175, 26, 0, // Skip to: 8940 12922/* 2109 */ MCD::OPC_ExtractField, 24, 3, // Inst{26-24} ... 12923/* 2112 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 2150 12924/* 2117 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12925/* 2120 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2135 12926/* 2125 */ MCD::OPC_CheckPredicate, 44, 154, 26, 0, // Skip to: 8940 12927/* 2130 */ MCD::OPC_Decode, 213, 31, 242, 2, // Opcode: t2STRD_POST 12928/* 2135 */ MCD::OPC_FilterValue, 1, 144, 26, 0, // Skip to: 8940 12929/* 2140 */ MCD::OPC_CheckPredicate, 44, 139, 26, 0, // Skip to: 8940 12930/* 2145 */ MCD::OPC_Decode, 133, 30, 243, 2, // Opcode: t2LDRD_POST 12931/* 2150 */ MCD::OPC_FilterValue, 1, 58, 0, 0, // Skip to: 2213 12932/* 2155 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 12933/* 2158 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2173 12934/* 2163 */ MCD::OPC_CheckPredicate, 44, 116, 26, 0, // Skip to: 8940 12935/* 2168 */ MCD::OPC_Decode, 214, 31, 244, 2, // Opcode: t2STRD_PRE 12936/* 2173 */ MCD::OPC_FilterValue, 1, 106, 26, 0, // Skip to: 8940 12937/* 2178 */ MCD::OPC_CheckPredicate, 51, 20, 0, 0, // Skip to: 2203 12938/* 2183 */ MCD::OPC_CheckField, 23, 1, 0, 13, 0, 0, // Skip to: 2203 12939/* 2190 */ MCD::OPC_CheckField, 0, 20, 255, 210, 63, 4, 0, 0, // Skip to: 2203 12940/* 2199 */ MCD::OPC_Decode, 255, 30, 51, // Opcode: t2SG 12941/* 2203 */ MCD::OPC_CheckPredicate, 44, 76, 26, 0, // Skip to: 8940 12942/* 2208 */ MCD::OPC_Decode, 134, 30, 245, 2, // Opcode: t2LDRD_PRE 12943/* 2213 */ MCD::OPC_FilterValue, 2, 88, 0, 0, // Skip to: 2306 12944/* 2218 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12945/* 2221 */ MCD::OPC_FilterValue, 0, 58, 26, 0, // Skip to: 8940 12946/* 2226 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 12947/* 2229 */ MCD::OPC_FilterValue, 0, 40, 0, 0, // Skip to: 2274 12948/* 2234 */ MCD::OPC_ExtractField, 12, 3, // Inst{14-12} ... 12949/* 2237 */ MCD::OPC_FilterValue, 0, 32, 0, 0, // Skip to: 2274 12950/* 2242 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2259 12951/* 2247 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 2259 12952/* 2254 */ MCD::OPC_Decode, 199, 30, 238, 2, // Opcode: t2MVNr 12953/* 2259 */ MCD::OPC_CheckPredicate, 44, 10, 0, 0, // Skip to: 2274 12954/* 2264 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12955/* 2269 */ MCD::OPC_Decode, 202, 30, 220, 2, // Opcode: t2ORNrr 12956/* 2274 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2291 12957/* 2279 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 2291 12958/* 2286 */ MCD::OPC_Decode, 200, 30, 246, 2, // Opcode: t2MVNs 12959/* 2291 */ MCD::OPC_CheckPredicate, 44, 244, 25, 0, // Skip to: 8940 12960/* 2296 */ MCD::OPC_SoftFail, 128, 128, 2 /* 0x8000 */, 0, 12961/* 2301 */ MCD::OPC_Decode, 203, 30, 221, 2, // Opcode: t2ORNrs 12962/* 2306 */ MCD::OPC_FilterValue, 3, 229, 25, 0, // Skip to: 8940 12963/* 2311 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 12964/* 2314 */ MCD::OPC_FilterValue, 0, 221, 25, 0, // Skip to: 8940 12965/* 2319 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 2343 12966/* 2324 */ MCD::OPC_CheckField, 12, 3, 0, 12, 0, 0, // Skip to: 2343 12967/* 2331 */ MCD::OPC_CheckField, 4, 4, 0, 5, 0, 0, // Skip to: 2343 12968/* 2338 */ MCD::OPC_Decode, 249, 30, 220, 2, // Opcode: t2SBCrr 12969/* 2343 */ MCD::OPC_CheckPredicate, 44, 192, 25, 0, // Skip to: 8940 12970/* 2348 */ MCD::OPC_Decode, 250, 30, 221, 2, // Opcode: t2SBCrs 12971/* 2353 */ MCD::OPC_FilterValue, 30, 225, 7, 0, // Skip to: 4375 12972/* 2358 */ MCD::OPC_ExtractField, 15, 1, // Inst{15} ... 12973/* 2361 */ MCD::OPC_FilterValue, 0, 36, 3, 0, // Skip to: 3170 12974/* 2366 */ MCD::OPC_ExtractField, 24, 2, // Inst{25-24} ... 12975/* 2369 */ MCD::OPC_FilterValue, 0, 160, 0, 0, // Skip to: 2534 12976/* 2374 */ MCD::OPC_ExtractField, 21, 3, // Inst{23-21} ... 12977/* 2377 */ MCD::OPC_FilterValue, 0, 34, 0, 0, // Skip to: 2416 12978/* 2382 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 2406 12979/* 2387 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 2406 12980/* 2394 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 2406 12981/* 2401 */ MCD::OPC_Decode, 251, 31, 247, 2, // Opcode: t2TSTri 12982/* 2406 */ MCD::OPC_CheckPredicate, 44, 129, 25, 0, // Skip to: 8940 12983/* 2411 */ MCD::OPC_Decode, 169, 29, 248, 2, // Opcode: t2ANDri 12984/* 2416 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2431 12985/* 2421 */ MCD::OPC_CheckPredicate, 44, 114, 25, 0, // Skip to: 8940 12986/* 2426 */ MCD::OPC_Decode, 182, 29, 248, 2, // Opcode: t2BICri 12987/* 2431 */ MCD::OPC_FilterValue, 2, 27, 0, 0, // Skip to: 2463 12988/* 2436 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2453 12989/* 2441 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 2453 12990/* 2448 */ MCD::OPC_Decode, 181, 30, 249, 2, // Opcode: t2MOVi 12991/* 2453 */ MCD::OPC_CheckPredicate, 44, 82, 25, 0, // Skip to: 8940 12992/* 2458 */ MCD::OPC_Decode, 204, 30, 248, 2, // Opcode: t2ORRri 12993/* 2463 */ MCD::OPC_FilterValue, 3, 27, 0, 0, // Skip to: 2495 12994/* 2468 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2485 12995/* 2473 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 2485 12996/* 2480 */ MCD::OPC_Decode, 198, 30, 249, 2, // Opcode: t2MVNi 12997/* 2485 */ MCD::OPC_CheckPredicate, 44, 50, 25, 0, // Skip to: 8940 12998/* 2490 */ MCD::OPC_Decode, 201, 30, 248, 2, // Opcode: t2ORNri 12999/* 2495 */ MCD::OPC_FilterValue, 4, 40, 25, 0, // Skip to: 8940 13000/* 2500 */ MCD::OPC_CheckPredicate, 44, 19, 0, 0, // Skip to: 2524 13001/* 2505 */ MCD::OPC_CheckField, 20, 1, 1, 12, 0, 0, // Skip to: 2524 13002/* 2512 */ MCD::OPC_CheckField, 8, 4, 15, 5, 0, 0, // Skip to: 2524 13003/* 2519 */ MCD::OPC_Decode, 247, 31, 247, 2, // Opcode: t2TEQri 13004/* 2524 */ MCD::OPC_CheckPredicate, 44, 11, 25, 0, // Skip to: 8940 13005/* 2529 */ MCD::OPC_Decode, 218, 29, 248, 2, // Opcode: t2EORri 13006/* 2534 */ MCD::OPC_FilterValue, 1, 172, 0, 0, // Skip to: 2711 13007/* 2539 */ MCD::OPC_ExtractField, 21, 3, // Inst{23-21} ... 13008/* 2542 */ MCD::OPC_FilterValue, 0, 57, 0, 0, // Skip to: 2604 13009/* 2547 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 13010/* 2550 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 2572 13011/* 2555 */ MCD::OPC_CheckPredicate, 44, 34, 0, 0, // Skip to: 2594 13012/* 2560 */ MCD::OPC_CheckField, 16, 4, 13, 27, 0, 0, // Skip to: 2594 13013/* 2567 */ MCD::OPC_Decode, 166, 29, 250, 2, // Opcode: t2ADDspImm 13014/* 2572 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2594 13015/* 2577 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2594 13016/* 2582 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 2594 13017/* 2589 */ MCD::OPC_Decode, 192, 29, 251, 2, // Opcode: t2CMNri 13018/* 2594 */ MCD::OPC_CheckPredicate, 44, 197, 24, 0, // Skip to: 8940 13019/* 2599 */ MCD::OPC_Decode, 162, 29, 252, 2, // Opcode: t2ADDri 13020/* 2604 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2619 13021/* 2609 */ MCD::OPC_CheckPredicate, 44, 182, 24, 0, // Skip to: 8940 13022/* 2614 */ MCD::OPC_Decode, 159, 29, 248, 2, // Opcode: t2ADCri 13023/* 2619 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2634 13024/* 2624 */ MCD::OPC_CheckPredicate, 44, 167, 24, 0, // Skip to: 8940 13025/* 2629 */ MCD::OPC_Decode, 248, 30, 248, 2, // Opcode: t2SBCri 13026/* 2634 */ MCD::OPC_FilterValue, 5, 57, 0, 0, // Skip to: 2696 13027/* 2639 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 13028/* 2642 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 2664 13029/* 2647 */ MCD::OPC_CheckPredicate, 44, 34, 0, 0, // Skip to: 2686 13030/* 2652 */ MCD::OPC_CheckField, 16, 4, 13, 27, 0, 0, // Skip to: 2686 13031/* 2659 */ MCD::OPC_Decode, 237, 31, 250, 2, // Opcode: t2SUBspImm 13032/* 2664 */ MCD::OPC_FilterValue, 15, 17, 0, 0, // Skip to: 2686 13033/* 2669 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 2686 13034/* 2674 */ MCD::OPC_CheckField, 20, 1, 1, 5, 0, 0, // Skip to: 2686 13035/* 2681 */ MCD::OPC_Decode, 195, 29, 251, 2, // Opcode: t2CMPri 13036/* 2686 */ MCD::OPC_CheckPredicate, 44, 105, 24, 0, // Skip to: 8940 13037/* 2691 */ MCD::OPC_Decode, 233, 31, 252, 2, // Opcode: t2SUBri 13038/* 2696 */ MCD::OPC_FilterValue, 6, 95, 24, 0, // Skip to: 8940 13039/* 2701 */ MCD::OPC_CheckPredicate, 44, 90, 24, 0, // Skip to: 8940 13040/* 2706 */ MCD::OPC_Decode, 241, 30, 248, 2, // Opcode: t2RSBri 13041/* 2711 */ MCD::OPC_FilterValue, 2, 199, 0, 0, // Skip to: 2915 13042/* 2716 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 13043/* 2719 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 2863 13044/* 2724 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13045/* 2727 */ MCD::OPC_FilterValue, 0, 64, 24, 0, // Skip to: 8940 13046/* 2732 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 13047/* 2735 */ MCD::OPC_FilterValue, 13, 61, 0, 0, // Skip to: 2801 13048/* 2740 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 13049/* 2743 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 2772 13050/* 2748 */ MCD::OPC_CheckPredicate, 44, 63, 0, 0, // Skip to: 2816 13051/* 2753 */ MCD::OPC_CheckField, 23, 1, 0, 56, 0, 0, // Skip to: 2816 13052/* 2760 */ MCD::OPC_CheckField, 8, 4, 13, 49, 0, 0, // Skip to: 2816 13053/* 2767 */ MCD::OPC_Decode, 167, 29, 250, 2, // Opcode: t2ADDspImm12 13054/* 2772 */ MCD::OPC_FilterValue, 1, 39, 0, 0, // Skip to: 2816 13055/* 2777 */ MCD::OPC_CheckPredicate, 44, 34, 0, 0, // Skip to: 2816 13056/* 2782 */ MCD::OPC_CheckField, 23, 1, 1, 27, 0, 0, // Skip to: 2816 13057/* 2789 */ MCD::OPC_CheckField, 8, 4, 13, 20, 0, 0, // Skip to: 2816 13058/* 2796 */ MCD::OPC_Decode, 238, 31, 250, 2, // Opcode: t2SUBspImm12 13059/* 2801 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 2816 13060/* 2806 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 2816 13061/* 2811 */ MCD::OPC_Decode, 168, 29, 253, 2, // Opcode: t2ADR 13062/* 2816 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 13063/* 2819 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2841 13064/* 2824 */ MCD::OPC_CheckPredicate, 44, 223, 23, 0, // Skip to: 8940 13065/* 2829 */ MCD::OPC_CheckField, 23, 1, 0, 216, 23, 0, // Skip to: 8940 13066/* 2836 */ MCD::OPC_Decode, 163, 29, 254, 2, // Opcode: t2ADDri12 13067/* 2841 */ MCD::OPC_FilterValue, 1, 206, 23, 0, // Skip to: 8940 13068/* 2846 */ MCD::OPC_CheckPredicate, 44, 201, 23, 0, // Skip to: 8940 13069/* 2851 */ MCD::OPC_CheckField, 23, 1, 1, 194, 23, 0, // Skip to: 8940 13070/* 2858 */ MCD::OPC_Decode, 234, 31, 254, 2, // Opcode: t2SUBri12 13071/* 2863 */ MCD::OPC_FilterValue, 1, 184, 23, 0, // Skip to: 8940 13072/* 2868 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13073/* 2871 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2893 13074/* 2876 */ MCD::OPC_CheckPredicate, 38, 171, 23, 0, // Skip to: 8940 13075/* 2881 */ MCD::OPC_CheckField, 20, 2, 0, 164, 23, 0, // Skip to: 8940 13076/* 2888 */ MCD::OPC_Decode, 182, 30, 255, 2, // Opcode: t2MOVi16 13077/* 2893 */ MCD::OPC_FilterValue, 1, 154, 23, 0, // Skip to: 8940 13078/* 2898 */ MCD::OPC_CheckPredicate, 38, 149, 23, 0, // Skip to: 8940 13079/* 2903 */ MCD::OPC_CheckField, 20, 2, 0, 142, 23, 0, // Skip to: 8940 13080/* 2910 */ MCD::OPC_Decode, 180, 30, 255, 2, // Opcode: t2MOVTi16 13081/* 2915 */ MCD::OPC_FilterValue, 3, 132, 23, 0, // Skip to: 8940 13082/* 2920 */ MCD::OPC_ExtractField, 22, 2, // Inst{23-22} ... 13083/* 2923 */ MCD::OPC_FilterValue, 0, 72, 0, 0, // Skip to: 3000 13084/* 2928 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 13085/* 2931 */ MCD::OPC_FilterValue, 0, 116, 23, 0, // Skip to: 8940 13086/* 2936 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13087/* 2939 */ MCD::OPC_FilterValue, 0, 108, 23, 0, // Skip to: 8940 13088/* 2944 */ MCD::OPC_ExtractField, 26, 1, // Inst{26} ... 13089/* 2947 */ MCD::OPC_FilterValue, 0, 100, 23, 0, // Skip to: 8940 13090/* 2952 */ MCD::OPC_CheckPredicate, 52, 33, 0, 0, // Skip to: 2990 13091/* 2957 */ MCD::OPC_CheckField, 21, 1, 1, 26, 0, 0, // Skip to: 2990 13092/* 2964 */ MCD::OPC_CheckField, 12, 3, 0, 19, 0, 0, // Skip to: 2990 13093/* 2971 */ MCD::OPC_CheckField, 6, 2, 0, 12, 0, 0, // Skip to: 2990 13094/* 2978 */ MCD::OPC_CheckField, 4, 1, 0, 5, 0, 0, // Skip to: 2990 13095/* 2985 */ MCD::OPC_Decode, 176, 31, 128, 3, // Opcode: t2SSAT16 13096/* 2990 */ MCD::OPC_CheckPredicate, 44, 57, 23, 0, // Skip to: 8940 13097/* 2995 */ MCD::OPC_Decode, 175, 31, 129, 3, // Opcode: t2SSAT 13098/* 3000 */ MCD::OPC_FilterValue, 1, 66, 0, 0, // Skip to: 3071 13099/* 3005 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 13100/* 3008 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3023 13101/* 3013 */ MCD::OPC_CheckPredicate, 44, 34, 23, 0, // Skip to: 8940 13102/* 3018 */ MCD::OPC_Decode, 251, 30, 130, 3, // Opcode: t2SBFX 13103/* 3023 */ MCD::OPC_FilterValue, 2, 24, 23, 0, // Skip to: 8940 13104/* 3028 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 13105/* 3031 */ MCD::OPC_FilterValue, 0, 16, 23, 0, // Skip to: 8940 13106/* 3036 */ MCD::OPC_ExtractField, 26, 1, // Inst{26} ... 13107/* 3039 */ MCD::OPC_FilterValue, 0, 8, 23, 0, // Skip to: 8940 13108/* 3044 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 3061 13109/* 3049 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 3061 13110/* 3056 */ MCD::OPC_Decode, 175, 29, 131, 3, // Opcode: t2BFC 13111/* 3061 */ MCD::OPC_CheckPredicate, 44, 242, 22, 0, // Skip to: 8940 13112/* 3066 */ MCD::OPC_Decode, 176, 29, 132, 3, // Opcode: t2BFI 13113/* 3071 */ MCD::OPC_FilterValue, 2, 72, 0, 0, // Skip to: 3148 13114/* 3076 */ MCD::OPC_ExtractField, 5, 1, // Inst{5} ... 13115/* 3079 */ MCD::OPC_FilterValue, 0, 224, 22, 0, // Skip to: 8940 13116/* 3084 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13117/* 3087 */ MCD::OPC_FilterValue, 0, 216, 22, 0, // Skip to: 8940 13118/* 3092 */ MCD::OPC_ExtractField, 26, 1, // Inst{26} ... 13119/* 3095 */ MCD::OPC_FilterValue, 0, 208, 22, 0, // Skip to: 8940 13120/* 3100 */ MCD::OPC_CheckPredicate, 52, 33, 0, 0, // Skip to: 3138 13121/* 3105 */ MCD::OPC_CheckField, 21, 1, 1, 26, 0, 0, // Skip to: 3138 13122/* 3112 */ MCD::OPC_CheckField, 12, 3, 0, 19, 0, 0, // Skip to: 3138 13123/* 3119 */ MCD::OPC_CheckField, 6, 2, 0, 12, 0, 0, // Skip to: 3138 13124/* 3126 */ MCD::OPC_CheckField, 4, 1, 0, 5, 0, 0, // Skip to: 3138 13125/* 3133 */ MCD::OPC_Decode, 154, 32, 128, 3, // Opcode: t2USAT16 13126/* 3138 */ MCD::OPC_CheckPredicate, 44, 165, 22, 0, // Skip to: 8940 13127/* 3143 */ MCD::OPC_Decode, 153, 32, 129, 3, // Opcode: t2USAT 13128/* 3148 */ MCD::OPC_FilterValue, 3, 155, 22, 0, // Skip to: 8940 13129/* 3153 */ MCD::OPC_CheckPredicate, 44, 150, 22, 0, // Skip to: 8940 13130/* 3158 */ MCD::OPC_CheckField, 20, 2, 0, 143, 22, 0, // Skip to: 8940 13131/* 3165 */ MCD::OPC_Decode, 133, 32, 130, 3, // Opcode: t2UBFX 13132/* 3170 */ MCD::OPC_FilterValue, 1, 133, 22, 0, // Skip to: 8940 13133/* 3175 */ MCD::OPC_ExtractField, 12, 1, // Inst{12} ... 13134/* 3178 */ MCD::OPC_FilterValue, 0, 146, 4, 0, // Skip to: 4353 13135/* 3183 */ MCD::OPC_ExtractField, 14, 1, // Inst{14} ... 13136/* 3186 */ MCD::OPC_FilterValue, 0, 203, 2, 0, // Skip to: 3906 13137/* 3191 */ MCD::OPC_ExtractField, 0, 12, // Inst{11-0} ... 13138/* 3194 */ MCD::OPC_FilterValue, 1, 24, 0, 0, // Skip to: 3223 13139/* 3199 */ MCD::OPC_CheckPredicate, 53, 166, 0, 0, // Skip to: 3370 13140/* 3204 */ MCD::OPC_CheckField, 16, 11, 143, 15, 158, 0, 0, // Skip to: 3370 13141/* 3212 */ MCD::OPC_CheckField, 13, 1, 0, 151, 0, 0, // Skip to: 3370 13142/* 3219 */ MCD::OPC_Decode, 212, 29, 51, // Opcode: t2DCPS1 13143/* 3223 */ MCD::OPC_FilterValue, 2, 24, 0, 0, // Skip to: 3252 13144/* 3228 */ MCD::OPC_CheckPredicate, 53, 137, 0, 0, // Skip to: 3370 13145/* 3233 */ MCD::OPC_CheckField, 16, 11, 143, 15, 129, 0, 0, // Skip to: 3370 13146/* 3241 */ MCD::OPC_CheckField, 13, 1, 0, 122, 0, 0, // Skip to: 3370 13147/* 3248 */ MCD::OPC_Decode, 213, 29, 51, // Opcode: t2DCPS2 13148/* 3252 */ MCD::OPC_FilterValue, 3, 24, 0, 0, // Skip to: 3281 13149/* 3257 */ MCD::OPC_CheckPredicate, 53, 108, 0, 0, // Skip to: 3370 13150/* 3262 */ MCD::OPC_CheckField, 16, 11, 143, 15, 100, 0, 0, // Skip to: 3370 13151/* 3270 */ MCD::OPC_CheckField, 13, 1, 0, 93, 0, 0, // Skip to: 3370 13152/* 3277 */ MCD::OPC_Decode, 214, 29, 51, // Opcode: t2DCPS3 13153/* 3281 */ MCD::OPC_FilterValue, 18, 24, 0, 0, // Skip to: 3310 13154/* 3286 */ MCD::OPC_CheckPredicate, 54, 79, 0, 0, // Skip to: 3370 13155/* 3291 */ MCD::OPC_CheckField, 16, 11, 175, 7, 71, 0, 0, // Skip to: 3370 13156/* 3299 */ MCD::OPC_CheckField, 13, 1, 0, 64, 0, 0, // Skip to: 3370 13157/* 3306 */ MCD::OPC_Decode, 250, 31, 51, // Opcode: t2TSB 13158/* 3310 */ MCD::OPC_FilterValue, 128, 30, 24, 0, 0, // Skip to: 3340 13159/* 3316 */ MCD::OPC_CheckPredicate, 45, 49, 0, 0, // Skip to: 3370 13160/* 3321 */ MCD::OPC_CheckField, 20, 7, 60, 42, 0, 0, // Skip to: 3370 13161/* 3328 */ MCD::OPC_CheckField, 13, 1, 0, 35, 0, 0, // Skip to: 3370 13162/* 3335 */ MCD::OPC_Decode, 185, 29, 133, 3, // Opcode: t2BXJ 13163/* 3340 */ MCD::OPC_FilterValue, 175, 30, 24, 0, 0, // Skip to: 3370 13164/* 3346 */ MCD::OPC_CheckPredicate, 55, 19, 0, 0, // Skip to: 3370 13165/* 3351 */ MCD::OPC_CheckField, 16, 11, 191, 7, 11, 0, 0, // Skip to: 3370 13166/* 3359 */ MCD::OPC_CheckField, 13, 1, 0, 4, 0, 0, // Skip to: 3370 13167/* 3366 */ MCD::OPC_Decode, 189, 29, 51, // Opcode: t2CLREX 13168/* 3370 */ MCD::OPC_ExtractField, 16, 11, // Inst{26-16} ... 13169/* 3373 */ MCD::OPC_FilterValue, 175, 7, 131, 0, 0, // Skip to: 3510 13170/* 3379 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13171/* 3382 */ MCD::OPC_FilterValue, 0, 68, 0, 0, // Skip to: 3455 13172/* 3387 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 13173/* 3390 */ MCD::OPC_FilterValue, 0, 24, 1, 0, // Skip to: 3675 13174/* 3395 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 13175/* 3398 */ MCD::OPC_FilterValue, 0, 16, 1, 0, // Skip to: 3675 13176/* 3403 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... 13177/* 3406 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 3438 13178/* 3411 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 3428 13179/* 3416 */ MCD::OPC_CheckField, 4, 4, 15, 5, 0, 0, // Skip to: 3428 13180/* 3423 */ MCD::OPC_Decode, 211, 29, 134, 3, // Opcode: t2DBG 13181/* 3428 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 3438 13182/* 3433 */ MCD::OPC_Decode, 221, 29, 206, 2, // Opcode: t2HINT 13183/* 3438 */ MCD::OPC_CheckPredicate, 45, 232, 0, 0, // Skip to: 3675 13184/* 3443 */ MCD::OPC_CheckField, 0, 5, 0, 225, 0, 0, // Skip to: 3675 13185/* 3450 */ MCD::OPC_Decode, 199, 29, 135, 3, // Opcode: t2CPS2p 13186/* 3455 */ MCD::OPC_FilterValue, 1, 215, 0, 0, // Skip to: 3675 13187/* 3460 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 13188/* 3463 */ MCD::OPC_FilterValue, 0, 207, 0, 0, // Skip to: 3675 13189/* 3468 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 13190/* 3471 */ MCD::OPC_FilterValue, 0, 199, 0, 0, // Skip to: 3675 13191/* 3476 */ MCD::OPC_CheckPredicate, 45, 19, 0, 0, // Skip to: 3500 13192/* 3481 */ MCD::OPC_CheckField, 9, 2, 0, 12, 0, 0, // Skip to: 3500 13193/* 3488 */ MCD::OPC_CheckField, 5, 3, 0, 5, 0, 0, // Skip to: 3500 13194/* 3495 */ MCD::OPC_Decode, 198, 29, 135, 3, // Opcode: t2CPS1p 13195/* 3500 */ MCD::OPC_CheckPredicate, 45, 170, 0, 0, // Skip to: 3675 13196/* 3505 */ MCD::OPC_Decode, 200, 29, 135, 3, // Opcode: t2CPS3p 13197/* 3510 */ MCD::OPC_FilterValue, 191, 7, 69, 0, 0, // Skip to: 3585 13198/* 3516 */ MCD::OPC_ExtractField, 4, 8, // Inst{11-4} ... 13199/* 3519 */ MCD::OPC_FilterValue, 244, 1, 16, 0, 0, // Skip to: 3541 13200/* 3525 */ MCD::OPC_CheckPredicate, 56, 145, 0, 0, // Skip to: 3675 13201/* 3530 */ MCD::OPC_CheckField, 13, 1, 0, 138, 0, 0, // Skip to: 3675 13202/* 3537 */ MCD::OPC_Decode, 217, 29, 61, // Opcode: t2DSB 13203/* 3541 */ MCD::OPC_FilterValue, 245, 1, 16, 0, 0, // Skip to: 3563 13204/* 3547 */ MCD::OPC_CheckPredicate, 56, 123, 0, 0, // Skip to: 3675 13205/* 3552 */ MCD::OPC_CheckField, 13, 1, 0, 116, 0, 0, // Skip to: 3675 13206/* 3559 */ MCD::OPC_Decode, 216, 29, 61, // Opcode: t2DMB 13207/* 3563 */ MCD::OPC_FilterValue, 246, 1, 106, 0, 0, // Skip to: 3675 13208/* 3569 */ MCD::OPC_CheckPredicate, 56, 101, 0, 0, // Skip to: 3675 13209/* 3574 */ MCD::OPC_CheckField, 13, 1, 0, 94, 0, 0, // Skip to: 3675 13210/* 3581 */ MCD::OPC_Decode, 223, 29, 62, // Opcode: t2ISB 13211/* 3585 */ MCD::OPC_FilterValue, 222, 7, 24, 0, 0, // Skip to: 3615 13212/* 3591 */ MCD::OPC_CheckPredicate, 45, 79, 0, 0, // Skip to: 3675 13213/* 3596 */ MCD::OPC_CheckField, 13, 1, 0, 72, 0, 0, // Skip to: 3675 13214/* 3603 */ MCD::OPC_CheckField, 8, 4, 15, 65, 0, 0, // Skip to: 3675 13215/* 3610 */ MCD::OPC_Decode, 232, 31, 206, 2, // Opcode: t2SUBS_PC_LR 13216/* 3615 */ MCD::OPC_FilterValue, 239, 7, 24, 0, 0, // Skip to: 3645 13217/* 3621 */ MCD::OPC_CheckPredicate, 45, 49, 0, 0, // Skip to: 3675 13218/* 3626 */ MCD::OPC_CheckField, 13, 1, 0, 42, 0, 0, // Skip to: 3675 13219/* 3633 */ MCD::OPC_CheckField, 0, 8, 0, 35, 0, 0, // Skip to: 3675 13220/* 3640 */ MCD::OPC_Decode, 190, 30, 136, 3, // Opcode: t2MRS_AR 13221/* 3645 */ MCD::OPC_FilterValue, 255, 7, 24, 0, 0, // Skip to: 3675 13222/* 3651 */ MCD::OPC_CheckPredicate, 45, 19, 0, 0, // Skip to: 3675 13223/* 3656 */ MCD::OPC_CheckField, 13, 1, 0, 12, 0, 0, // Skip to: 3675 13224/* 3663 */ MCD::OPC_CheckField, 0, 8, 0, 5, 0, 0, // Skip to: 3675 13225/* 3670 */ MCD::OPC_Decode, 193, 30, 136, 3, // Opcode: t2MRSsys_AR 13226/* 3675 */ MCD::OPC_ExtractField, 20, 7, // Inst{26-20} ... 13227/* 3678 */ MCD::OPC_FilterValue, 59, 22, 0, 0, // Skip to: 3705 13228/* 3683 */ MCD::OPC_CheckPredicate, 57, 77, 0, 0, // Skip to: 3765 13229/* 3688 */ MCD::OPC_CheckField, 4, 4, 7, 70, 0, 0, // Skip to: 3765 13230/* 3695 */ MCD::OPC_SoftFail, 143, 64 /* 0x200f */, 128, 158, 60 /* 0xf0f00 */, 13231/* 3701 */ MCD::OPC_Decode, 247, 30, 51, // Opcode: t2SB 13232/* 3705 */ MCD::OPC_FilterValue, 126, 17, 0, 0, // Skip to: 3727 13233/* 3710 */ MCD::OPC_CheckPredicate, 58, 50, 0, 0, // Skip to: 3765 13234/* 3715 */ MCD::OPC_CheckField, 13, 1, 0, 43, 0, 0, // Skip to: 3765 13235/* 3722 */ MCD::OPC_Decode, 222, 29, 137, 3, // Opcode: t2HVC 13236/* 3727 */ MCD::OPC_FilterValue, 127, 33, 0, 0, // Skip to: 3765 13237/* 3732 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 13238/* 3735 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3750 13239/* 3740 */ MCD::OPC_CheckPredicate, 59, 20, 0, 0, // Skip to: 3765 13240/* 3745 */ MCD::OPC_Decode, 134, 31, 138, 3, // Opcode: t2SMC 13241/* 3750 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 3765 13242/* 3755 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 3765 13243/* 3760 */ MCD::OPC_Decode, 134, 32, 137, 3, // Opcode: t2UDF 13244/* 3765 */ MCD::OPC_ExtractField, 21, 6, // Inst{26-21} ... 13245/* 3768 */ MCD::OPC_FilterValue, 28, 70, 0, 0, // Skip to: 3843 13246/* 3773 */ MCD::OPC_CheckPredicate, 45, 19, 0, 0, // Skip to: 3797 13247/* 3778 */ MCD::OPC_CheckField, 13, 1, 0, 12, 0, 0, // Skip to: 3797 13248/* 3785 */ MCD::OPC_CheckField, 0, 8, 0, 5, 0, 0, // Skip to: 3797 13249/* 3792 */ MCD::OPC_Decode, 194, 30, 139, 3, // Opcode: t2MSR_AR 13250/* 3797 */ MCD::OPC_CheckPredicate, 60, 26, 0, 0, // Skip to: 3828 13251/* 3802 */ MCD::OPC_CheckField, 13, 1, 0, 19, 0, 0, // Skip to: 3828 13252/* 3809 */ MCD::OPC_CheckField, 5, 3, 1, 12, 0, 0, // Skip to: 3828 13253/* 3816 */ MCD::OPC_CheckField, 0, 4, 0, 5, 0, 0, // Skip to: 3828 13254/* 3823 */ MCD::OPC_Decode, 196, 30, 140, 3, // Opcode: t2MSRbanked 13255/* 3828 */ MCD::OPC_CheckPredicate, 61, 63, 0, 0, // Skip to: 3896 13256/* 3833 */ MCD::OPC_SoftFail, 128, 198, 64 /* 0x102300 */, 0, 13257/* 3838 */ MCD::OPC_Decode, 195, 30, 141, 3, // Opcode: t2MSR_M 13258/* 3843 */ MCD::OPC_FilterValue, 31, 48, 0, 0, // Skip to: 3896 13259/* 3848 */ MCD::OPC_CheckPredicate, 60, 26, 0, 0, // Skip to: 3879 13260/* 3853 */ MCD::OPC_CheckField, 13, 1, 0, 19, 0, 0, // Skip to: 3879 13261/* 3860 */ MCD::OPC_CheckField, 5, 3, 1, 12, 0, 0, // Skip to: 3879 13262/* 3867 */ MCD::OPC_CheckField, 0, 4, 0, 5, 0, 0, // Skip to: 3879 13263/* 3874 */ MCD::OPC_Decode, 192, 30, 142, 3, // Opcode: t2MRSbanked 13264/* 3879 */ MCD::OPC_CheckPredicate, 61, 12, 0, 0, // Skip to: 3896 13265/* 3884 */ MCD::OPC_SoftFail, 128, 192, 64 /* 0x102000 */, 128, 128, 60 /* 0xf0000 */, 13266/* 3891 */ MCD::OPC_Decode, 191, 30, 143, 3, // Opcode: t2MRS_M 13267/* 3896 */ MCD::OPC_CheckPredicate, 44, 175, 19, 0, // Skip to: 8940 13268/* 3901 */ MCD::OPC_Decode, 186, 29, 144, 3, // Opcode: t2Bcc 13269/* 3906 */ MCD::OPC_FilterValue, 1, 165, 19, 0, // Skip to: 8940 13270/* 3911 */ MCD::OPC_ExtractField, 13, 1, // Inst{13} ... 13271/* 3914 */ MCD::OPC_FilterValue, 0, 144, 0, 0, // Skip to: 4063 13272/* 3919 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 13273/* 3922 */ MCD::OPC_FilterValue, 1, 149, 19, 0, // Skip to: 8940 13274/* 3927 */ MCD::OPC_ExtractField, 16, 11, // Inst{26-16} ... 13275/* 3930 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 3945 13276/* 3935 */ MCD::OPC_CheckPredicate, 62, 35, 0, 0, // Skip to: 3975 13277/* 3940 */ MCD::OPC_Decode, 169, 30, 145, 3, // Opcode: t2LEUpdate 13278/* 3945 */ MCD::OPC_FilterValue, 31, 10, 0, 0, // Skip to: 3960 13279/* 3950 */ MCD::OPC_CheckPredicate, 22, 20, 0, 0, // Skip to: 3975 13280/* 3955 */ MCD::OPC_Decode, 141, 6, 145, 3, // Opcode: MVE_LETP 13281/* 3960 */ MCD::OPC_FilterValue, 47, 10, 0, 0, // Skip to: 3975 13282/* 3965 */ MCD::OPC_CheckPredicate, 62, 5, 0, 0, // Skip to: 3975 13283/* 3970 */ MCD::OPC_Decode, 168, 30, 145, 3, // Opcode: t2LE 13284/* 3975 */ MCD::OPC_ExtractField, 20, 7, // Inst{26-20} ... 13285/* 3978 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3993 13286/* 3983 */ MCD::OPC_CheckPredicate, 22, 65, 0, 0, // Skip to: 4053 13287/* 3988 */ MCD::OPC_Decode, 220, 12, 145, 3, // Opcode: MVE_WLSTP_8 13288/* 3993 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 4008 13289/* 3998 */ MCD::OPC_CheckPredicate, 22, 50, 0, 0, // Skip to: 4053 13290/* 4003 */ MCD::OPC_Decode, 217, 12, 145, 3, // Opcode: MVE_WLSTP_16 13291/* 4008 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 4023 13292/* 4013 */ MCD::OPC_CheckPredicate, 22, 35, 0, 0, // Skip to: 4053 13293/* 4018 */ MCD::OPC_Decode, 218, 12, 145, 3, // Opcode: MVE_WLSTP_32 13294/* 4023 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 4038 13295/* 4028 */ MCD::OPC_CheckPredicate, 22, 20, 0, 0, // Skip to: 4053 13296/* 4033 */ MCD::OPC_Decode, 219, 12, 145, 3, // Opcode: MVE_WLSTP_64 13297/* 4038 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 4053 13298/* 4043 */ MCD::OPC_CheckPredicate, 62, 5, 0, 0, // Skip to: 4053 13299/* 4048 */ MCD::OPC_Decode, 164, 32, 145, 3, // Opcode: t2WLS 13300/* 4053 */ MCD::OPC_CheckPredicate, 62, 18, 19, 0, // Skip to: 8940 13301/* 4058 */ MCD::OPC_Decode, 177, 29, 146, 3, // Opcode: t2BFLi 13302/* 4063 */ MCD::OPC_FilterValue, 1, 8, 19, 0, // Skip to: 8940 13303/* 4068 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 13304/* 4071 */ MCD::OPC_FilterValue, 0, 163, 0, 0, // Skip to: 4239 13305/* 4076 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 13306/* 4079 */ MCD::OPC_FilterValue, 1, 248, 18, 0, // Skip to: 8940 13307/* 4084 */ MCD::OPC_ExtractField, 11, 1, // Inst{11} ... 13308/* 4087 */ MCD::OPC_FilterValue, 0, 107, 0, 0, // Skip to: 4199 13309/* 4092 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 13310/* 4095 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 4121 13311/* 4100 */ MCD::OPC_CheckPredicate, 22, 94, 0, 0, // Skip to: 4199 13312/* 4105 */ MCD::OPC_CheckField, 23, 4, 0, 87, 0, 0, // Skip to: 4199 13313/* 4112 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 0, 13314/* 4116 */ MCD::OPC_Decode, 139, 6, 145, 3, // Opcode: MVE_DLSTP_8 13315/* 4121 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 4147 13316/* 4126 */ MCD::OPC_CheckPredicate, 22, 68, 0, 0, // Skip to: 4199 13317/* 4131 */ MCD::OPC_CheckField, 23, 4, 0, 61, 0, 0, // Skip to: 4199 13318/* 4138 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 0, 13319/* 4142 */ MCD::OPC_Decode, 136, 6, 145, 3, // Opcode: MVE_DLSTP_16 13320/* 4147 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 4173 13321/* 4152 */ MCD::OPC_CheckPredicate, 22, 42, 0, 0, // Skip to: 4199 13322/* 4157 */ MCD::OPC_CheckField, 23, 4, 0, 35, 0, 0, // Skip to: 4199 13323/* 4164 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 0, 13324/* 4168 */ MCD::OPC_Decode, 137, 6, 145, 3, // Opcode: MVE_DLSTP_32 13325/* 4173 */ MCD::OPC_FilterValue, 3, 21, 0, 0, // Skip to: 4199 13326/* 4178 */ MCD::OPC_CheckPredicate, 22, 16, 0, 0, // Skip to: 4199 13327/* 4183 */ MCD::OPC_CheckField, 23, 4, 0, 9, 0, 0, // Skip to: 4199 13328/* 4190 */ MCD::OPC_SoftFail, 254, 15 /* 0x7fe */, 0, 13329/* 4194 */ MCD::OPC_Decode, 138, 6, 145, 3, // Opcode: MVE_DLSTP_64 13330/* 4199 */ MCD::OPC_CheckPredicate, 22, 25, 0, 0, // Skip to: 4229 13331/* 4204 */ MCD::OPC_CheckField, 23, 4, 0, 18, 0, 0, // Skip to: 4229 13332/* 4211 */ MCD::OPC_CheckField, 16, 4, 15, 11, 0, 0, // Skip to: 4229 13333/* 4218 */ MCD::OPC_SoftFail, 254, 159, 192, 1 /* 0x300ffe */, 0, 13334/* 4224 */ MCD::OPC_Decode, 140, 6, 145, 3, // Opcode: MVE_LCTP 13335/* 4229 */ MCD::OPC_CheckPredicate, 62, 98, 18, 0, // Skip to: 8940 13336/* 4234 */ MCD::OPC_Decode, 180, 29, 147, 3, // Opcode: t2BFic 13337/* 4239 */ MCD::OPC_FilterValue, 1, 88, 18, 0, // Skip to: 8940 13338/* 4244 */ MCD::OPC_ExtractField, 21, 1, // Inst{21} ... 13339/* 4247 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 4301 13340/* 4252 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 13341/* 4255 */ MCD::OPC_FilterValue, 1, 72, 18, 0, // Skip to: 8940 13342/* 4260 */ MCD::OPC_CheckPredicate, 62, 26, 0, 0, // Skip to: 4291 13343/* 4265 */ MCD::OPC_CheckField, 23, 4, 0, 19, 0, 0, // Skip to: 4291 13344/* 4272 */ MCD::OPC_CheckField, 20, 1, 0, 12, 0, 0, // Skip to: 4291 13345/* 4279 */ MCD::OPC_CheckField, 1, 11, 0, 5, 0, 0, // Skip to: 4291 13346/* 4286 */ MCD::OPC_Decode, 215, 29, 145, 3, // Opcode: t2DLS 13347/* 4291 */ MCD::OPC_CheckPredicate, 62, 36, 18, 0, // Skip to: 8940 13348/* 4296 */ MCD::OPC_Decode, 179, 29, 148, 3, // Opcode: t2BFi 13349/* 4301 */ MCD::OPC_FilterValue, 1, 26, 18, 0, // Skip to: 8940 13350/* 4306 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13351/* 4309 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4331 13352/* 4314 */ MCD::OPC_CheckPredicate, 62, 13, 18, 0, // Skip to: 8940 13353/* 4319 */ MCD::OPC_CheckField, 0, 12, 1, 6, 18, 0, // Skip to: 8940 13354/* 4326 */ MCD::OPC_Decode, 181, 29, 149, 3, // Opcode: t2BFr 13355/* 4331 */ MCD::OPC_FilterValue, 1, 252, 17, 0, // Skip to: 8940 13356/* 4336 */ MCD::OPC_CheckPredicate, 62, 247, 17, 0, // Skip to: 8940 13357/* 4341 */ MCD::OPC_CheckField, 0, 12, 1, 240, 17, 0, // Skip to: 8940 13358/* 4348 */ MCD::OPC_Decode, 178, 29, 149, 3, // Opcode: t2BFLr 13359/* 4353 */ MCD::OPC_FilterValue, 1, 230, 17, 0, // Skip to: 8940 13360/* 4358 */ MCD::OPC_CheckPredicate, 38, 225, 17, 0, // Skip to: 8940 13361/* 4363 */ MCD::OPC_CheckField, 14, 1, 0, 218, 17, 0, // Skip to: 8940 13362/* 4370 */ MCD::OPC_Decode, 174, 29, 150, 3, // Opcode: t2B 13363/* 4375 */ MCD::OPC_FilterValue, 31, 208, 17, 0, // Skip to: 8940 13364/* 4380 */ MCD::OPC_ExtractField, 21, 2, // Inst{22-21} ... 13365/* 4383 */ MCD::OPC_FilterValue, 0, 96, 6, 0, // Skip to: 6020 13366/* 4388 */ MCD::OPC_ExtractField, 24, 3, // Inst{26-24} ... 13367/* 4391 */ MCD::OPC_FilterValue, 0, 100, 1, 0, // Skip to: 4752 13368/* 4396 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13369/* 4399 */ MCD::OPC_FilterValue, 0, 125, 0, 0, // Skip to: 4529 13370/* 4404 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13371/* 4407 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 4514 13372/* 4412 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13373/* 4415 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4437 13374/* 4420 */ MCD::OPC_CheckPredicate, 44, 163, 17, 0, // Skip to: 8940 13375/* 4425 */ MCD::OPC_CheckField, 6, 4, 0, 156, 17, 0, // Skip to: 8940 13376/* 4432 */ MCD::OPC_Decode, 212, 31, 151, 3, // Opcode: t2STRBs 13377/* 4437 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 4459 13378/* 4442 */ MCD::OPC_CheckPredicate, 44, 141, 17, 0, // Skip to: 8940 13379/* 4447 */ MCD::OPC_CheckField, 8, 1, 1, 134, 17, 0, // Skip to: 8940 13380/* 4454 */ MCD::OPC_Decode, 208, 31, 152, 3, // Opcode: t2STRB_POST 13381/* 4459 */ MCD::OPC_FilterValue, 3, 124, 17, 0, // Skip to: 8940 13382/* 4464 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13383/* 4467 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 4499 13384/* 4472 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 4489 13385/* 4477 */ MCD::OPC_CheckField, 9, 1, 1, 5, 0, 0, // Skip to: 4489 13386/* 4484 */ MCD::OPC_Decode, 207, 31, 153, 3, // Opcode: t2STRBT 13387/* 4489 */ MCD::OPC_CheckPredicate, 44, 94, 17, 0, // Skip to: 8940 13388/* 4494 */ MCD::OPC_Decode, 211, 31, 154, 3, // Opcode: t2STRBi8 13389/* 4499 */ MCD::OPC_FilterValue, 1, 84, 17, 0, // Skip to: 8940 13390/* 4504 */ MCD::OPC_CheckPredicate, 44, 79, 17, 0, // Skip to: 8940 13391/* 4509 */ MCD::OPC_Decode, 209, 31, 152, 3, // Opcode: t2STRB_PRE 13392/* 4514 */ MCD::OPC_FilterValue, 1, 69, 17, 0, // Skip to: 8940 13393/* 4519 */ MCD::OPC_CheckPredicate, 44, 64, 17, 0, // Skip to: 8940 13394/* 4524 */ MCD::OPC_Decode, 210, 31, 155, 3, // Opcode: t2STRBi12 13395/* 4529 */ MCD::OPC_FilterValue, 1, 54, 17, 0, // Skip to: 8940 13396/* 4534 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13397/* 4537 */ MCD::OPC_FilterValue, 0, 143, 0, 0, // Skip to: 4685 13398/* 4542 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13399/* 4545 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 4585 13400/* 4550 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... 13401/* 4553 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 4717 13402/* 4558 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 4575 13403/* 4563 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4575 13404/* 4570 */ MCD::OPC_Decode, 215, 30, 156, 3, // Opcode: t2PLDs 13405/* 4575 */ MCD::OPC_CheckPredicate, 44, 137, 0, 0, // Skip to: 4717 13406/* 4580 */ MCD::OPC_Decode, 132, 30, 156, 3, // Opcode: t2LDRBs 13407/* 4585 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 4607 13408/* 4590 */ MCD::OPC_CheckPredicate, 44, 122, 0, 0, // Skip to: 4717 13409/* 4595 */ MCD::OPC_CheckField, 8, 1, 1, 115, 0, 0, // Skip to: 4717 13410/* 4602 */ MCD::OPC_Decode, 255, 29, 152, 3, // Opcode: t2LDRB_POST 13411/* 4607 */ MCD::OPC_FilterValue, 3, 105, 0, 0, // Skip to: 4717 13412/* 4612 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13413/* 4615 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 4670 13414/* 4620 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 13415/* 4623 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4645 13416/* 4628 */ MCD::OPC_CheckPredicate, 44, 27, 0, 0, // Skip to: 4660 13417/* 4633 */ MCD::OPC_CheckField, 12, 4, 15, 20, 0, 0, // Skip to: 4660 13418/* 4640 */ MCD::OPC_Decode, 213, 30, 157, 3, // Opcode: t2PLDi8 13419/* 4645 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 4660 13420/* 4650 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 4660 13421/* 4655 */ MCD::OPC_Decode, 254, 29, 158, 3, // Opcode: t2LDRBT 13422/* 4660 */ MCD::OPC_CheckPredicate, 44, 52, 0, 0, // Skip to: 4717 13423/* 4665 */ MCD::OPC_Decode, 130, 30, 157, 3, // Opcode: t2LDRBi8 13424/* 4670 */ MCD::OPC_FilterValue, 1, 42, 0, 0, // Skip to: 4717 13425/* 4675 */ MCD::OPC_CheckPredicate, 44, 37, 0, 0, // Skip to: 4717 13426/* 4680 */ MCD::OPC_Decode, 128, 30, 152, 3, // Opcode: t2LDRB_PRE 13427/* 4685 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 4717 13428/* 4690 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 4707 13429/* 4695 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4707 13430/* 4702 */ MCD::OPC_Decode, 212, 30, 159, 3, // Opcode: t2PLDi12 13431/* 4707 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 4717 13432/* 4712 */ MCD::OPC_Decode, 129, 30, 159, 3, // Opcode: t2LDRBi12 13433/* 4717 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 13434/* 4720 */ MCD::OPC_FilterValue, 15, 119, 16, 0, // Skip to: 8940 13435/* 4725 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 4742 13436/* 4730 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4742 13437/* 4737 */ MCD::OPC_Decode, 214, 30, 160, 3, // Opcode: t2PLDpci 13438/* 4742 */ MCD::OPC_CheckPredicate, 44, 97, 16, 0, // Skip to: 8940 13439/* 4747 */ MCD::OPC_Decode, 131, 30, 160, 3, // Opcode: t2LDRBpci 13440/* 4752 */ MCD::OPC_FilterValue, 1, 226, 0, 0, // Skip to: 4983 13441/* 4757 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13442/* 4760 */ MCD::OPC_FilterValue, 1, 79, 16, 0, // Skip to: 8940 13443/* 4765 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13444/* 4768 */ MCD::OPC_FilterValue, 0, 143, 0, 0, // Skip to: 4916 13445/* 4773 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13446/* 4776 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 4816 13447/* 4781 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... 13448/* 4784 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 4948 13449/* 4789 */ MCD::OPC_CheckPredicate, 63, 12, 0, 0, // Skip to: 4806 13450/* 4794 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4806 13451/* 4801 */ MCD::OPC_Decode, 219, 30, 156, 3, // Opcode: t2PLIs 13452/* 4806 */ MCD::OPC_CheckPredicate, 44, 137, 0, 0, // Skip to: 4948 13453/* 4811 */ MCD::OPC_Decode, 153, 30, 156, 3, // Opcode: t2LDRSBs 13454/* 4816 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 4838 13455/* 4821 */ MCD::OPC_CheckPredicate, 44, 122, 0, 0, // Skip to: 4948 13456/* 4826 */ MCD::OPC_CheckField, 8, 1, 1, 115, 0, 0, // Skip to: 4948 13457/* 4833 */ MCD::OPC_Decode, 148, 30, 152, 3, // Opcode: t2LDRSB_POST 13458/* 4838 */ MCD::OPC_FilterValue, 3, 105, 0, 0, // Skip to: 4948 13459/* 4843 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13460/* 4846 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 4901 13461/* 4851 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 13462/* 4854 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4876 13463/* 4859 */ MCD::OPC_CheckPredicate, 63, 27, 0, 0, // Skip to: 4891 13464/* 4864 */ MCD::OPC_CheckField, 12, 4, 15, 20, 0, 0, // Skip to: 4891 13465/* 4871 */ MCD::OPC_Decode, 217, 30, 157, 3, // Opcode: t2PLIi8 13466/* 4876 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 4891 13467/* 4881 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 4891 13468/* 4886 */ MCD::OPC_Decode, 147, 30, 158, 3, // Opcode: t2LDRSBT 13469/* 4891 */ MCD::OPC_CheckPredicate, 44, 52, 0, 0, // Skip to: 4948 13470/* 4896 */ MCD::OPC_Decode, 151, 30, 157, 3, // Opcode: t2LDRSBi8 13471/* 4901 */ MCD::OPC_FilterValue, 1, 42, 0, 0, // Skip to: 4948 13472/* 4906 */ MCD::OPC_CheckPredicate, 44, 37, 0, 0, // Skip to: 4948 13473/* 4911 */ MCD::OPC_Decode, 149, 30, 152, 3, // Opcode: t2LDRSB_PRE 13474/* 4916 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 4948 13475/* 4921 */ MCD::OPC_CheckPredicate, 63, 12, 0, 0, // Skip to: 4938 13476/* 4926 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4938 13477/* 4933 */ MCD::OPC_Decode, 216, 30, 159, 3, // Opcode: t2PLIi12 13478/* 4938 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 4948 13479/* 4943 */ MCD::OPC_Decode, 150, 30, 159, 3, // Opcode: t2LDRSBi12 13480/* 4948 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 13481/* 4951 */ MCD::OPC_FilterValue, 15, 144, 15, 0, // Skip to: 8940 13482/* 4956 */ MCD::OPC_CheckPredicate, 63, 12, 0, 0, // Skip to: 4973 13483/* 4961 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 4973 13484/* 4968 */ MCD::OPC_Decode, 218, 30, 160, 3, // Opcode: t2PLIpci 13485/* 4973 */ MCD::OPC_CheckPredicate, 44, 122, 15, 0, // Skip to: 8940 13486/* 4978 */ MCD::OPC_Decode, 152, 30, 160, 3, // Opcode: t2LDRSBpci 13487/* 4983 */ MCD::OPC_FilterValue, 2, 207, 2, 0, // Skip to: 5707 13488/* 4988 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 13489/* 4991 */ MCD::OPC_FilterValue, 0, 159, 1, 0, // Skip to: 5411 13490/* 4996 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 13491/* 4999 */ MCD::OPC_FilterValue, 0, 77, 0, 0, // Skip to: 5081 13492/* 5004 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13493/* 5007 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5029 13494/* 5012 */ MCD::OPC_CheckPredicate, 44, 83, 15, 0, // Skip to: 8940 13495/* 5017 */ MCD::OPC_CheckField, 12, 4, 15, 76, 15, 0, // Skip to: 8940 13496/* 5024 */ MCD::OPC_Decode, 171, 30, 220, 2, // Opcode: t2LSLrr 13497/* 5029 */ MCD::OPC_FilterValue, 1, 66, 15, 0, // Skip to: 8940 13498/* 5034 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13499/* 5037 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5059 13500/* 5042 */ MCD::OPC_CheckPredicate, 52, 53, 15, 0, // Skip to: 8940 13501/* 5047 */ MCD::OPC_CheckField, 12, 4, 15, 46, 15, 0, // Skip to: 8940 13502/* 5054 */ MCD::OPC_Decode, 245, 30, 161, 3, // Opcode: t2SADD8 13503/* 5059 */ MCD::OPC_FilterValue, 1, 36, 15, 0, // Skip to: 8940 13504/* 5064 */ MCD::OPC_CheckPredicate, 52, 31, 15, 0, // Skip to: 8940 13505/* 5069 */ MCD::OPC_CheckField, 12, 4, 15, 24, 15, 0, // Skip to: 8940 13506/* 5076 */ MCD::OPC_Decode, 244, 30, 161, 3, // Opcode: t2SADD16 13507/* 5081 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 5147 13508/* 5086 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13509/* 5089 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 5118 13510/* 5094 */ MCD::OPC_CheckPredicate, 52, 1, 15, 0, // Skip to: 8940 13511/* 5099 */ MCD::OPC_CheckField, 23, 1, 1, 250, 14, 0, // Skip to: 8940 13512/* 5106 */ MCD::OPC_CheckField, 12, 4, 15, 243, 14, 0, // Skip to: 8940 13513/* 5113 */ MCD::OPC_Decode, 222, 30, 161, 3, // Opcode: t2QADD8 13514/* 5118 */ MCD::OPC_FilterValue, 1, 233, 14, 0, // Skip to: 8940 13515/* 5123 */ MCD::OPC_CheckPredicate, 52, 228, 14, 0, // Skip to: 8940 13516/* 5128 */ MCD::OPC_CheckField, 23, 1, 1, 221, 14, 0, // Skip to: 8940 13517/* 5135 */ MCD::OPC_CheckField, 12, 4, 15, 214, 14, 0, // Skip to: 8940 13518/* 5142 */ MCD::OPC_Decode, 221, 30, 161, 3, // Opcode: t2QADD16 13519/* 5147 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 5213 13520/* 5152 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13521/* 5155 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 5184 13522/* 5160 */ MCD::OPC_CheckPredicate, 52, 191, 14, 0, // Skip to: 8940 13523/* 5165 */ MCD::OPC_CheckField, 23, 1, 1, 184, 14, 0, // Skip to: 8940 13524/* 5172 */ MCD::OPC_CheckField, 12, 4, 15, 177, 14, 0, // Skip to: 8940 13525/* 5179 */ MCD::OPC_Decode, 129, 31, 161, 3, // Opcode: t2SHADD8 13526/* 5184 */ MCD::OPC_FilterValue, 1, 167, 14, 0, // Skip to: 8940 13527/* 5189 */ MCD::OPC_CheckPredicate, 52, 162, 14, 0, // Skip to: 8940 13528/* 5194 */ MCD::OPC_CheckField, 23, 1, 1, 155, 14, 0, // Skip to: 8940 13529/* 5201 */ MCD::OPC_CheckField, 12, 4, 15, 148, 14, 0, // Skip to: 8940 13530/* 5208 */ MCD::OPC_Decode, 128, 31, 161, 3, // Opcode: t2SHADD16 13531/* 5213 */ MCD::OPC_FilterValue, 4, 61, 0, 0, // Skip to: 5279 13532/* 5218 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13533/* 5221 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 5250 13534/* 5226 */ MCD::OPC_CheckPredicate, 52, 125, 14, 0, // Skip to: 8940 13535/* 5231 */ MCD::OPC_CheckField, 23, 1, 1, 118, 14, 0, // Skip to: 8940 13536/* 5238 */ MCD::OPC_CheckField, 12, 4, 15, 111, 14, 0, // Skip to: 8940 13537/* 5245 */ MCD::OPC_Decode, 131, 32, 161, 3, // Opcode: t2UADD8 13538/* 5250 */ MCD::OPC_FilterValue, 1, 101, 14, 0, // Skip to: 8940 13539/* 5255 */ MCD::OPC_CheckPredicate, 52, 96, 14, 0, // Skip to: 8940 13540/* 5260 */ MCD::OPC_CheckField, 23, 1, 1, 89, 14, 0, // Skip to: 8940 13541/* 5267 */ MCD::OPC_CheckField, 12, 4, 15, 82, 14, 0, // Skip to: 8940 13542/* 5274 */ MCD::OPC_Decode, 130, 32, 161, 3, // Opcode: t2UADD16 13543/* 5279 */ MCD::OPC_FilterValue, 5, 61, 0, 0, // Skip to: 5345 13544/* 5284 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13545/* 5287 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 5316 13546/* 5292 */ MCD::OPC_CheckPredicate, 52, 59, 14, 0, // Skip to: 8940 13547/* 5297 */ MCD::OPC_CheckField, 23, 1, 1, 52, 14, 0, // Skip to: 8940 13548/* 5304 */ MCD::OPC_CheckField, 12, 4, 15, 45, 14, 0, // Skip to: 8940 13549/* 5311 */ MCD::OPC_Decode, 146, 32, 161, 3, // Opcode: t2UQADD8 13550/* 5316 */ MCD::OPC_FilterValue, 1, 35, 14, 0, // Skip to: 8940 13551/* 5321 */ MCD::OPC_CheckPredicate, 52, 30, 14, 0, // Skip to: 8940 13552/* 5326 */ MCD::OPC_CheckField, 23, 1, 1, 23, 14, 0, // Skip to: 8940 13553/* 5333 */ MCD::OPC_CheckField, 12, 4, 15, 16, 14, 0, // Skip to: 8940 13554/* 5340 */ MCD::OPC_Decode, 145, 32, 161, 3, // Opcode: t2UQADD16 13555/* 5345 */ MCD::OPC_FilterValue, 6, 6, 14, 0, // Skip to: 8940 13556/* 5350 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13557/* 5353 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 5382 13558/* 5358 */ MCD::OPC_CheckPredicate, 52, 249, 13, 0, // Skip to: 8940 13559/* 5363 */ MCD::OPC_CheckField, 23, 1, 1, 242, 13, 0, // Skip to: 8940 13560/* 5370 */ MCD::OPC_CheckField, 12, 4, 15, 235, 13, 0, // Skip to: 8940 13561/* 5377 */ MCD::OPC_Decode, 137, 32, 161, 3, // Opcode: t2UHADD8 13562/* 5382 */ MCD::OPC_FilterValue, 1, 225, 13, 0, // Skip to: 8940 13563/* 5387 */ MCD::OPC_CheckPredicate, 52, 220, 13, 0, // Skip to: 8940 13564/* 5392 */ MCD::OPC_CheckField, 23, 1, 1, 213, 13, 0, // Skip to: 8940 13565/* 5399 */ MCD::OPC_CheckField, 12, 4, 15, 206, 13, 0, // Skip to: 8940 13566/* 5406 */ MCD::OPC_Decode, 136, 32, 161, 3, // Opcode: t2UHADD16 13567/* 5411 */ MCD::OPC_FilterValue, 1, 196, 13, 0, // Skip to: 8940 13568/* 5416 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13569/* 5419 */ MCD::OPC_FilterValue, 0, 139, 0, 0, // Skip to: 5563 13570/* 5424 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13571/* 5427 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 5467 13572/* 5432 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 13573/* 5435 */ MCD::OPC_FilterValue, 15, 172, 13, 0, // Skip to: 8940 13574/* 5440 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 5457 13575/* 5445 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 5457 13576/* 5452 */ MCD::OPC_Decode, 244, 31, 162, 3, // Opcode: t2SXTH 13577/* 5457 */ MCD::OPC_CheckPredicate, 50, 150, 13, 0, // Skip to: 8940 13578/* 5462 */ MCD::OPC_Decode, 241, 31, 163, 3, // Opcode: t2SXTAH 13579/* 5467 */ MCD::OPC_FilterValue, 1, 140, 13, 0, // Skip to: 8940 13580/* 5472 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 13581/* 5475 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5497 13582/* 5480 */ MCD::OPC_CheckPredicate, 52, 127, 13, 0, // Skip to: 8940 13583/* 5485 */ MCD::OPC_CheckField, 12, 4, 15, 120, 13, 0, // Skip to: 8940 13584/* 5492 */ MCD::OPC_Decode, 220, 30, 164, 3, // Opcode: t2QADD 13585/* 5497 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 5519 13586/* 5502 */ MCD::OPC_CheckPredicate, 52, 105, 13, 0, // Skip to: 8940 13587/* 5507 */ MCD::OPC_CheckField, 12, 4, 15, 98, 13, 0, // Skip to: 8940 13588/* 5514 */ MCD::OPC_Decode, 224, 30, 164, 3, // Opcode: t2QDADD 13589/* 5519 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 5541 13590/* 5524 */ MCD::OPC_CheckPredicate, 52, 83, 13, 0, // Skip to: 8940 13591/* 5529 */ MCD::OPC_CheckField, 12, 4, 15, 76, 13, 0, // Skip to: 8940 13592/* 5536 */ MCD::OPC_Decode, 227, 30, 164, 3, // Opcode: t2QSUB 13593/* 5541 */ MCD::OPC_FilterValue, 3, 66, 13, 0, // Skip to: 8940 13594/* 5546 */ MCD::OPC_CheckPredicate, 52, 61, 13, 0, // Skip to: 8940 13595/* 5551 */ MCD::OPC_CheckField, 12, 4, 15, 54, 13, 0, // Skip to: 8940 13596/* 5558 */ MCD::OPC_Decode, 225, 30, 164, 3, // Opcode: t2QDSUB 13597/* 5563 */ MCD::OPC_FilterValue, 1, 44, 13, 0, // Skip to: 8940 13598/* 5568 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13599/* 5571 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 5611 13600/* 5576 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 13601/* 5579 */ MCD::OPC_FilterValue, 15, 28, 13, 0, // Skip to: 8940 13602/* 5584 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 5601 13603/* 5589 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 5601 13604/* 5596 */ MCD::OPC_Decode, 163, 32, 162, 3, // Opcode: t2UXTH 13605/* 5601 */ MCD::OPC_CheckPredicate, 50, 6, 13, 0, // Skip to: 8940 13606/* 5606 */ MCD::OPC_Decode, 160, 32, 163, 3, // Opcode: t2UXTAH 13607/* 5611 */ MCD::OPC_FilterValue, 1, 252, 12, 0, // Skip to: 8940 13608/* 5616 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 13609/* 5619 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5641 13610/* 5624 */ MCD::OPC_CheckPredicate, 44, 239, 12, 0, // Skip to: 8940 13611/* 5629 */ MCD::OPC_CheckField, 12, 4, 15, 232, 12, 0, // Skip to: 8940 13612/* 5636 */ MCD::OPC_Decode, 231, 30, 165, 3, // Opcode: t2REV 13613/* 5641 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 5663 13614/* 5646 */ MCD::OPC_CheckPredicate, 44, 217, 12, 0, // Skip to: 8940 13615/* 5651 */ MCD::OPC_CheckField, 12, 4, 15, 210, 12, 0, // Skip to: 8940 13616/* 5658 */ MCD::OPC_Decode, 232, 30, 165, 3, // Opcode: t2REV16 13617/* 5663 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 5685 13618/* 5668 */ MCD::OPC_CheckPredicate, 44, 195, 12, 0, // Skip to: 8940 13619/* 5673 */ MCD::OPC_CheckField, 12, 4, 15, 188, 12, 0, // Skip to: 8940 13620/* 5680 */ MCD::OPC_Decode, 230, 30, 165, 3, // Opcode: t2RBIT 13621/* 5685 */ MCD::OPC_FilterValue, 3, 178, 12, 0, // Skip to: 8940 13622/* 5690 */ MCD::OPC_CheckPredicate, 44, 173, 12, 0, // Skip to: 8940 13623/* 5695 */ MCD::OPC_CheckField, 12, 4, 15, 166, 12, 0, // Skip to: 8940 13624/* 5702 */ MCD::OPC_Decode, 233, 30, 165, 3, // Opcode: t2REVSH 13625/* 5707 */ MCD::OPC_FilterValue, 3, 156, 12, 0, // Skip to: 8940 13626/* 5712 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 13627/* 5715 */ MCD::OPC_FilterValue, 0, 98, 0, 0, // Skip to: 5818 13628/* 5720 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13629/* 5723 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 5778 13630/* 5728 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13631/* 5731 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 5763 13632/* 5736 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 5753 13633/* 5741 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 5753 13634/* 5748 */ MCD::OPC_Decode, 197, 30, 161, 3, // Opcode: t2MUL 13635/* 5753 */ MCD::OPC_CheckPredicate, 44, 110, 12, 0, // Skip to: 8940 13636/* 5758 */ MCD::OPC_Decode, 178, 30, 166, 3, // Opcode: t2MLA 13637/* 5763 */ MCD::OPC_FilterValue, 1, 100, 12, 0, // Skip to: 8940 13638/* 5768 */ MCD::OPC_CheckPredicate, 44, 95, 12, 0, // Skip to: 8940 13639/* 5773 */ MCD::OPC_Decode, 164, 31, 167, 3, // Opcode: t2SMULL 13640/* 5778 */ MCD::OPC_FilterValue, 1, 85, 12, 0, // Skip to: 8940 13641/* 5783 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13642/* 5786 */ MCD::OPC_FilterValue, 0, 77, 12, 0, // Skip to: 8940 13643/* 5791 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 5808 13644/* 5796 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 5808 13645/* 5803 */ MCD::OPC_Decode, 162, 31, 161, 3, // Opcode: t2SMULBB 13646/* 5808 */ MCD::OPC_CheckPredicate, 52, 55, 12, 0, // Skip to: 8940 13647/* 5813 */ MCD::OPC_Decode, 135, 31, 166, 3, // Opcode: t2SMLABB 13648/* 5818 */ MCD::OPC_FilterValue, 1, 65, 0, 0, // Skip to: 5888 13649/* 5823 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13650/* 5826 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 5848 13651/* 5831 */ MCD::OPC_CheckPredicate, 44, 32, 12, 0, // Skip to: 8940 13652/* 5836 */ MCD::OPC_CheckField, 23, 1, 0, 25, 12, 0, // Skip to: 8940 13653/* 5843 */ MCD::OPC_Decode, 179, 30, 166, 3, // Opcode: t2MLS 13654/* 5848 */ MCD::OPC_FilterValue, 1, 15, 12, 0, // Skip to: 8940 13655/* 5853 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13656/* 5856 */ MCD::OPC_FilterValue, 0, 7, 12, 0, // Skip to: 8940 13657/* 5861 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 5878 13658/* 5866 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 5878 13659/* 5873 */ MCD::OPC_Decode, 163, 31, 161, 3, // Opcode: t2SMULBT 13660/* 5878 */ MCD::OPC_CheckPredicate, 52, 241, 11, 0, // Skip to: 8940 13661/* 5883 */ MCD::OPC_Decode, 136, 31, 166, 3, // Opcode: t2SMLABT 13662/* 5888 */ MCD::OPC_FilterValue, 2, 43, 0, 0, // Skip to: 5936 13663/* 5893 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13664/* 5896 */ MCD::OPC_FilterValue, 1, 223, 11, 0, // Skip to: 8940 13665/* 5901 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13666/* 5904 */ MCD::OPC_FilterValue, 0, 215, 11, 0, // Skip to: 8940 13667/* 5909 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 5926 13668/* 5914 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 5926 13669/* 5921 */ MCD::OPC_Decode, 165, 31, 161, 3, // Opcode: t2SMULTB 13670/* 5926 */ MCD::OPC_CheckPredicate, 52, 193, 11, 0, // Skip to: 8940 13671/* 5931 */ MCD::OPC_Decode, 146, 31, 166, 3, // Opcode: t2SMLATB 13672/* 5936 */ MCD::OPC_FilterValue, 3, 43, 0, 0, // Skip to: 5984 13673/* 5941 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13674/* 5944 */ MCD::OPC_FilterValue, 1, 175, 11, 0, // Skip to: 8940 13675/* 5949 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13676/* 5952 */ MCD::OPC_FilterValue, 0, 167, 11, 0, // Skip to: 8940 13677/* 5957 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 5974 13678/* 5962 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 5974 13679/* 5969 */ MCD::OPC_Decode, 166, 31, 161, 3, // Opcode: t2SMULTT 13680/* 5974 */ MCD::OPC_CheckPredicate, 52, 145, 11, 0, // Skip to: 8940 13681/* 5979 */ MCD::OPC_Decode, 147, 31, 166, 3, // Opcode: t2SMLATT 13682/* 5984 */ MCD::OPC_FilterValue, 15, 135, 11, 0, // Skip to: 8940 13683/* 5989 */ MCD::OPC_CheckPredicate, 64, 130, 11, 0, // Skip to: 8940 13684/* 5994 */ MCD::OPC_CheckField, 23, 1, 1, 123, 11, 0, // Skip to: 8940 13685/* 6001 */ MCD::OPC_CheckField, 20, 1, 1, 116, 11, 0, // Skip to: 8940 13686/* 6008 */ MCD::OPC_CheckField, 12, 4, 15, 109, 11, 0, // Skip to: 8940 13687/* 6015 */ MCD::OPC_Decode, 252, 30, 161, 3, // Opcode: t2SDIV 13688/* 6020 */ MCD::OPC_FilterValue, 1, 129, 4, 0, // Skip to: 7178 13689/* 6025 */ MCD::OPC_ExtractField, 24, 3, // Inst{26-24} ... 13690/* 6028 */ MCD::OPC_FilterValue, 0, 82, 1, 0, // Skip to: 6371 13691/* 6033 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13692/* 6036 */ MCD::OPC_FilterValue, 0, 125, 0, 0, // Skip to: 6166 13693/* 6041 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13694/* 6044 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 6151 13695/* 6049 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13696/* 6052 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6074 13697/* 6057 */ MCD::OPC_CheckPredicate, 44, 62, 11, 0, // Skip to: 8940 13698/* 6062 */ MCD::OPC_CheckField, 6, 4, 0, 55, 11, 0, // Skip to: 8940 13699/* 6069 */ MCD::OPC_Decode, 225, 31, 151, 3, // Opcode: t2STRHs 13700/* 6074 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 6096 13701/* 6079 */ MCD::OPC_CheckPredicate, 44, 40, 11, 0, // Skip to: 8940 13702/* 6084 */ MCD::OPC_CheckField, 8, 1, 1, 33, 11, 0, // Skip to: 8940 13703/* 6091 */ MCD::OPC_Decode, 221, 31, 152, 3, // Opcode: t2STRH_POST 13704/* 6096 */ MCD::OPC_FilterValue, 3, 23, 11, 0, // Skip to: 8940 13705/* 6101 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13706/* 6104 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 6136 13707/* 6109 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 6126 13708/* 6114 */ MCD::OPC_CheckField, 9, 1, 1, 5, 0, 0, // Skip to: 6126 13709/* 6121 */ MCD::OPC_Decode, 220, 31, 153, 3, // Opcode: t2STRHT 13710/* 6126 */ MCD::OPC_CheckPredicate, 44, 249, 10, 0, // Skip to: 8940 13711/* 6131 */ MCD::OPC_Decode, 224, 31, 154, 3, // Opcode: t2STRHi8 13712/* 6136 */ MCD::OPC_FilterValue, 1, 239, 10, 0, // Skip to: 8940 13713/* 6141 */ MCD::OPC_CheckPredicate, 44, 234, 10, 0, // Skip to: 8940 13714/* 6146 */ MCD::OPC_Decode, 222, 31, 152, 3, // Opcode: t2STRH_PRE 13715/* 6151 */ MCD::OPC_FilterValue, 1, 224, 10, 0, // Skip to: 8940 13716/* 6156 */ MCD::OPC_CheckPredicate, 44, 219, 10, 0, // Skip to: 8940 13717/* 6161 */ MCD::OPC_Decode, 223, 31, 155, 3, // Opcode: t2STRHi12 13718/* 6166 */ MCD::OPC_FilterValue, 1, 209, 10, 0, // Skip to: 8940 13719/* 6171 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13720/* 6174 */ MCD::OPC_FilterValue, 0, 143, 0, 0, // Skip to: 6322 13721/* 6179 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13722/* 6182 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 6222 13723/* 6187 */ MCD::OPC_ExtractField, 6, 4, // Inst{9-6} ... 13724/* 6190 */ MCD::OPC_FilterValue, 0, 159, 0, 0, // Skip to: 6354 13725/* 6195 */ MCD::OPC_CheckPredicate, 65, 12, 0, 0, // Skip to: 6212 13726/* 6200 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 6212 13727/* 6207 */ MCD::OPC_Decode, 211, 30, 156, 3, // Opcode: t2PLDWs 13728/* 6212 */ MCD::OPC_CheckPredicate, 44, 137, 0, 0, // Skip to: 6354 13729/* 6217 */ MCD::OPC_Decode, 146, 30, 156, 3, // Opcode: t2LDRHs 13730/* 6222 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 6244 13731/* 6227 */ MCD::OPC_CheckPredicate, 44, 122, 0, 0, // Skip to: 6354 13732/* 6232 */ MCD::OPC_CheckField, 8, 1, 1, 115, 0, 0, // Skip to: 6354 13733/* 6239 */ MCD::OPC_Decode, 141, 30, 152, 3, // Opcode: t2LDRH_POST 13734/* 6244 */ MCD::OPC_FilterValue, 3, 105, 0, 0, // Skip to: 6354 13735/* 6249 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13736/* 6252 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 6307 13737/* 6257 */ MCD::OPC_ExtractField, 9, 1, // Inst{9} ... 13738/* 6260 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6282 13739/* 6265 */ MCD::OPC_CheckPredicate, 65, 27, 0, 0, // Skip to: 6297 13740/* 6270 */ MCD::OPC_CheckField, 12, 4, 15, 20, 0, 0, // Skip to: 6297 13741/* 6277 */ MCD::OPC_Decode, 210, 30, 157, 3, // Opcode: t2PLDWi8 13742/* 6282 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6297 13743/* 6287 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 6297 13744/* 6292 */ MCD::OPC_Decode, 140, 30, 158, 3, // Opcode: t2LDRHT 13745/* 6297 */ MCD::OPC_CheckPredicate, 44, 52, 0, 0, // Skip to: 6354 13746/* 6302 */ MCD::OPC_Decode, 144, 30, 157, 3, // Opcode: t2LDRHi8 13747/* 6307 */ MCD::OPC_FilterValue, 1, 42, 0, 0, // Skip to: 6354 13748/* 6312 */ MCD::OPC_CheckPredicate, 44, 37, 0, 0, // Skip to: 6354 13749/* 6317 */ MCD::OPC_Decode, 142, 30, 152, 3, // Opcode: t2LDRH_PRE 13750/* 6322 */ MCD::OPC_FilterValue, 1, 27, 0, 0, // Skip to: 6354 13751/* 6327 */ MCD::OPC_CheckPredicate, 65, 12, 0, 0, // Skip to: 6344 13752/* 6332 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 6344 13753/* 6339 */ MCD::OPC_Decode, 209, 30, 159, 3, // Opcode: t2PLDWi12 13754/* 6344 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 6354 13755/* 6349 */ MCD::OPC_Decode, 143, 30, 159, 3, // Opcode: t2LDRHi12 13756/* 6354 */ MCD::OPC_CheckPredicate, 44, 21, 10, 0, // Skip to: 8940 13757/* 6359 */ MCD::OPC_CheckField, 16, 4, 15, 14, 10, 0, // Skip to: 8940 13758/* 6366 */ MCD::OPC_Decode, 145, 30, 160, 3, // Opcode: t2LDRHpci 13759/* 6371 */ MCD::OPC_FilterValue, 1, 150, 0, 0, // Skip to: 6526 13760/* 6376 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13761/* 6379 */ MCD::OPC_FilterValue, 1, 252, 9, 0, // Skip to: 8940 13762/* 6384 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13763/* 6387 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 6494 13764/* 6392 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13765/* 6395 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6417 13766/* 6400 */ MCD::OPC_CheckPredicate, 44, 104, 0, 0, // Skip to: 6509 13767/* 6405 */ MCD::OPC_CheckField, 6, 4, 0, 97, 0, 0, // Skip to: 6509 13768/* 6412 */ MCD::OPC_Decode, 160, 30, 156, 3, // Opcode: t2LDRSHs 13769/* 6417 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 6439 13770/* 6422 */ MCD::OPC_CheckPredicate, 44, 82, 0, 0, // Skip to: 6509 13771/* 6427 */ MCD::OPC_CheckField, 8, 1, 1, 75, 0, 0, // Skip to: 6509 13772/* 6434 */ MCD::OPC_Decode, 155, 30, 152, 3, // Opcode: t2LDRSH_POST 13773/* 6439 */ MCD::OPC_FilterValue, 3, 65, 0, 0, // Skip to: 6509 13774/* 6444 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13775/* 6447 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 6479 13776/* 6452 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 6469 13777/* 6457 */ MCD::OPC_CheckField, 9, 1, 1, 5, 0, 0, // Skip to: 6469 13778/* 6464 */ MCD::OPC_Decode, 154, 30, 158, 3, // Opcode: t2LDRSHT 13779/* 6469 */ MCD::OPC_CheckPredicate, 44, 35, 0, 0, // Skip to: 6509 13780/* 6474 */ MCD::OPC_Decode, 158, 30, 157, 3, // Opcode: t2LDRSHi8 13781/* 6479 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 6509 13782/* 6484 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 6509 13783/* 6489 */ MCD::OPC_Decode, 156, 30, 152, 3, // Opcode: t2LDRSH_PRE 13784/* 6494 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 6509 13785/* 6499 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 6509 13786/* 6504 */ MCD::OPC_Decode, 157, 30, 159, 3, // Opcode: t2LDRSHi12 13787/* 6509 */ MCD::OPC_CheckPredicate, 44, 122, 9, 0, // Skip to: 8940 13788/* 6514 */ MCD::OPC_CheckField, 16, 4, 15, 115, 9, 0, // Skip to: 8940 13789/* 6521 */ MCD::OPC_Decode, 159, 30, 160, 3, // Opcode: t2LDRSHpci 13790/* 6526 */ MCD::OPC_FilterValue, 2, 156, 1, 0, // Skip to: 6943 13791/* 6531 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 13792/* 6534 */ MCD::OPC_FilterValue, 0, 242, 0, 0, // Skip to: 6781 13793/* 6539 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 13794/* 6542 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 6601 13795/* 6547 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13796/* 6550 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 6572 13797/* 6555 */ MCD::OPC_CheckPredicate, 44, 76, 9, 0, // Skip to: 8940 13798/* 6560 */ MCD::OPC_CheckField, 12, 4, 15, 69, 9, 0, // Skip to: 8940 13799/* 6567 */ MCD::OPC_Decode, 173, 30, 220, 2, // Opcode: t2LSRrr 13800/* 6572 */ MCD::OPC_FilterValue, 1, 59, 9, 0, // Skip to: 8940 13801/* 6577 */ MCD::OPC_CheckPredicate, 52, 54, 9, 0, // Skip to: 8940 13802/* 6582 */ MCD::OPC_CheckField, 20, 1, 0, 47, 9, 0, // Skip to: 8940 13803/* 6589 */ MCD::OPC_CheckField, 12, 4, 15, 40, 9, 0, // Skip to: 8940 13804/* 6596 */ MCD::OPC_Decode, 246, 30, 161, 3, // Opcode: t2SASX 13805/* 6601 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 6637 13806/* 6606 */ MCD::OPC_CheckPredicate, 52, 25, 9, 0, // Skip to: 8940 13807/* 6611 */ MCD::OPC_CheckField, 23, 1, 1, 18, 9, 0, // Skip to: 8940 13808/* 6618 */ MCD::OPC_CheckField, 20, 1, 0, 11, 9, 0, // Skip to: 8940 13809/* 6625 */ MCD::OPC_CheckField, 12, 4, 15, 4, 9, 0, // Skip to: 8940 13810/* 6632 */ MCD::OPC_Decode, 223, 30, 161, 3, // Opcode: t2QASX 13811/* 6637 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 6673 13812/* 6642 */ MCD::OPC_CheckPredicate, 52, 245, 8, 0, // Skip to: 8940 13813/* 6647 */ MCD::OPC_CheckField, 23, 1, 1, 238, 8, 0, // Skip to: 8940 13814/* 6654 */ MCD::OPC_CheckField, 20, 1, 0, 231, 8, 0, // Skip to: 8940 13815/* 6661 */ MCD::OPC_CheckField, 12, 4, 15, 224, 8, 0, // Skip to: 8940 13816/* 6668 */ MCD::OPC_Decode, 130, 31, 161, 3, // Opcode: t2SHASX 13817/* 6673 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 6709 13818/* 6678 */ MCD::OPC_CheckPredicate, 52, 209, 8, 0, // Skip to: 8940 13819/* 6683 */ MCD::OPC_CheckField, 23, 1, 1, 202, 8, 0, // Skip to: 8940 13820/* 6690 */ MCD::OPC_CheckField, 20, 1, 0, 195, 8, 0, // Skip to: 8940 13821/* 6697 */ MCD::OPC_CheckField, 12, 4, 15, 188, 8, 0, // Skip to: 8940 13822/* 6704 */ MCD::OPC_Decode, 132, 32, 161, 3, // Opcode: t2UASX 13823/* 6709 */ MCD::OPC_FilterValue, 5, 31, 0, 0, // Skip to: 6745 13824/* 6714 */ MCD::OPC_CheckPredicate, 52, 173, 8, 0, // Skip to: 8940 13825/* 6719 */ MCD::OPC_CheckField, 23, 1, 1, 166, 8, 0, // Skip to: 8940 13826/* 6726 */ MCD::OPC_CheckField, 20, 1, 0, 159, 8, 0, // Skip to: 8940 13827/* 6733 */ MCD::OPC_CheckField, 12, 4, 15, 152, 8, 0, // Skip to: 8940 13828/* 6740 */ MCD::OPC_Decode, 147, 32, 161, 3, // Opcode: t2UQASX 13829/* 6745 */ MCD::OPC_FilterValue, 6, 142, 8, 0, // Skip to: 8940 13830/* 6750 */ MCD::OPC_CheckPredicate, 52, 137, 8, 0, // Skip to: 8940 13831/* 6755 */ MCD::OPC_CheckField, 23, 1, 1, 130, 8, 0, // Skip to: 8940 13832/* 6762 */ MCD::OPC_CheckField, 20, 1, 0, 123, 8, 0, // Skip to: 8940 13833/* 6769 */ MCD::OPC_CheckField, 12, 4, 15, 116, 8, 0, // Skip to: 8940 13834/* 6776 */ MCD::OPC_Decode, 138, 32, 161, 3, // Opcode: t2UHASX 13835/* 6781 */ MCD::OPC_FilterValue, 1, 106, 8, 0, // Skip to: 8940 13836/* 6786 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13837/* 6789 */ MCD::OPC_FilterValue, 0, 72, 0, 0, // Skip to: 6866 13838/* 6794 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13839/* 6797 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 6837 13840/* 6802 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 13841/* 6805 */ MCD::OPC_FilterValue, 15, 82, 8, 0, // Skip to: 8940 13842/* 6810 */ MCD::OPC_CheckPredicate, 50, 12, 0, 0, // Skip to: 6827 13843/* 6815 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 6827 13844/* 6822 */ MCD::OPC_Decode, 243, 31, 162, 3, // Opcode: t2SXTB16 13845/* 6827 */ MCD::OPC_CheckPredicate, 50, 60, 8, 0, // Skip to: 8940 13846/* 6832 */ MCD::OPC_Decode, 240, 31, 163, 3, // Opcode: t2SXTAB16 13847/* 6837 */ MCD::OPC_FilterValue, 1, 50, 8, 0, // Skip to: 8940 13848/* 6842 */ MCD::OPC_CheckPredicate, 52, 45, 8, 0, // Skip to: 8940 13849/* 6847 */ MCD::OPC_CheckField, 12, 4, 15, 38, 8, 0, // Skip to: 8940 13850/* 6854 */ MCD::OPC_CheckField, 4, 3, 0, 31, 8, 0, // Skip to: 8940 13851/* 6861 */ MCD::OPC_Decode, 253, 30, 168, 3, // Opcode: t2SEL 13852/* 6866 */ MCD::OPC_FilterValue, 1, 21, 8, 0, // Skip to: 8940 13853/* 6871 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13854/* 6874 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 6914 13855/* 6879 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 13856/* 6882 */ MCD::OPC_FilterValue, 15, 5, 8, 0, // Skip to: 8940 13857/* 6887 */ MCD::OPC_CheckPredicate, 50, 12, 0, 0, // Skip to: 6904 13858/* 6892 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 6904 13859/* 6899 */ MCD::OPC_Decode, 162, 32, 162, 3, // Opcode: t2UXTB16 13860/* 6904 */ MCD::OPC_CheckPredicate, 50, 239, 7, 0, // Skip to: 8940 13861/* 6909 */ MCD::OPC_Decode, 159, 32, 163, 3, // Opcode: t2UXTAB16 13862/* 6914 */ MCD::OPC_FilterValue, 1, 229, 7, 0, // Skip to: 8940 13863/* 6919 */ MCD::OPC_CheckPredicate, 44, 224, 7, 0, // Skip to: 8940 13864/* 6924 */ MCD::OPC_CheckField, 12, 4, 15, 217, 7, 0, // Skip to: 8940 13865/* 6931 */ MCD::OPC_CheckField, 4, 3, 0, 210, 7, 0, // Skip to: 8940 13866/* 6938 */ MCD::OPC_Decode, 191, 29, 165, 3, // Opcode: t2CLZ 13867/* 6943 */ MCD::OPC_FilterValue, 3, 200, 7, 0, // Skip to: 8940 13868/* 6948 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 13869/* 6951 */ MCD::OPC_FilterValue, 0, 98, 0, 0, // Skip to: 7054 13870/* 6956 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13871/* 6959 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 7014 13872/* 6964 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13873/* 6967 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 6999 13874/* 6972 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 6989 13875/* 6977 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 6989 13876/* 6984 */ MCD::OPC_Decode, 160, 31, 161, 3, // Opcode: t2SMUAD 13877/* 6989 */ MCD::OPC_CheckPredicate, 52, 154, 7, 0, // Skip to: 8940 13878/* 6994 */ MCD::OPC_Decode, 137, 31, 166, 3, // Opcode: t2SMLAD 13879/* 6999 */ MCD::OPC_FilterValue, 1, 144, 7, 0, // Skip to: 8940 13880/* 7004 */ MCD::OPC_CheckPredicate, 44, 139, 7, 0, // Skip to: 8940 13881/* 7009 */ MCD::OPC_Decode, 144, 32, 167, 3, // Opcode: t2UMULL 13882/* 7014 */ MCD::OPC_FilterValue, 1, 129, 7, 0, // Skip to: 8940 13883/* 7019 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13884/* 7022 */ MCD::OPC_FilterValue, 0, 121, 7, 0, // Skip to: 8940 13885/* 7027 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 7044 13886/* 7032 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 7044 13887/* 7039 */ MCD::OPC_Decode, 167, 31, 161, 3, // Opcode: t2SMULWB 13888/* 7044 */ MCD::OPC_CheckPredicate, 52, 99, 7, 0, // Skip to: 8940 13889/* 7049 */ MCD::OPC_Decode, 148, 31, 166, 3, // Opcode: t2SMLAWB 13890/* 7054 */ MCD::OPC_FilterValue, 1, 83, 0, 0, // Skip to: 7142 13891/* 7059 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13892/* 7062 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 7102 13893/* 7067 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13894/* 7070 */ MCD::OPC_FilterValue, 0, 73, 7, 0, // Skip to: 8940 13895/* 7075 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 7092 13896/* 7080 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 7092 13897/* 7087 */ MCD::OPC_Decode, 161, 31, 161, 3, // Opcode: t2SMUADX 13898/* 7092 */ MCD::OPC_CheckPredicate, 52, 51, 7, 0, // Skip to: 8940 13899/* 7097 */ MCD::OPC_Decode, 138, 31, 166, 3, // Opcode: t2SMLADX 13900/* 7102 */ MCD::OPC_FilterValue, 1, 41, 7, 0, // Skip to: 8940 13901/* 7107 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13902/* 7110 */ MCD::OPC_FilterValue, 0, 33, 7, 0, // Skip to: 8940 13903/* 7115 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 7132 13904/* 7120 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 7132 13905/* 7127 */ MCD::OPC_Decode, 168, 31, 161, 3, // Opcode: t2SMULWT 13906/* 7132 */ MCD::OPC_CheckPredicate, 52, 11, 7, 0, // Skip to: 8940 13907/* 7137 */ MCD::OPC_Decode, 149, 31, 166, 3, // Opcode: t2SMLAWT 13908/* 7142 */ MCD::OPC_FilterValue, 15, 1, 7, 0, // Skip to: 8940 13909/* 7147 */ MCD::OPC_CheckPredicate, 64, 252, 6, 0, // Skip to: 8940 13910/* 7152 */ MCD::OPC_CheckField, 23, 1, 1, 245, 6, 0, // Skip to: 8940 13911/* 7159 */ MCD::OPC_CheckField, 20, 1, 1, 238, 6, 0, // Skip to: 8940 13912/* 7166 */ MCD::OPC_CheckField, 12, 4, 15, 231, 6, 0, // Skip to: 8940 13913/* 7173 */ MCD::OPC_Decode, 135, 32, 161, 3, // Opcode: t2UDIV 13914/* 7178 */ MCD::OPC_FilterValue, 2, 107, 5, 0, // Skip to: 8570 13915/* 7183 */ MCD::OPC_ExtractField, 24, 3, // Inst{26-24} ... 13916/* 7186 */ MCD::OPC_FilterValue, 0, 24, 1, 0, // Skip to: 7471 13917/* 7191 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13918/* 7194 */ MCD::OPC_FilterValue, 0, 125, 0, 0, // Skip to: 7324 13919/* 7199 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13920/* 7202 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 7309 13921/* 7207 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13922/* 7210 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7232 13923/* 7215 */ MCD::OPC_CheckPredicate, 44, 184, 6, 0, // Skip to: 8940 13924/* 7220 */ MCD::OPC_CheckField, 6, 4, 0, 177, 6, 0, // Skip to: 8940 13925/* 7227 */ MCD::OPC_Decode, 231, 31, 169, 3, // Opcode: t2STRs 13926/* 7232 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 7254 13927/* 7237 */ MCD::OPC_CheckPredicate, 44, 162, 6, 0, // Skip to: 8940 13928/* 7242 */ MCD::OPC_CheckField, 8, 1, 1, 155, 6, 0, // Skip to: 8940 13929/* 7249 */ MCD::OPC_Decode, 227, 31, 152, 3, // Opcode: t2STR_POST 13930/* 7254 */ MCD::OPC_FilterValue, 3, 145, 6, 0, // Skip to: 8940 13931/* 7259 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13932/* 7262 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 7294 13933/* 7267 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 7284 13934/* 7272 */ MCD::OPC_CheckField, 9, 1, 1, 5, 0, 0, // Skip to: 7284 13935/* 7279 */ MCD::OPC_Decode, 226, 31, 153, 3, // Opcode: t2STRT 13936/* 7284 */ MCD::OPC_CheckPredicate, 44, 115, 6, 0, // Skip to: 8940 13937/* 7289 */ MCD::OPC_Decode, 230, 31, 170, 3, // Opcode: t2STRi8 13938/* 7294 */ MCD::OPC_FilterValue, 1, 105, 6, 0, // Skip to: 8940 13939/* 7299 */ MCD::OPC_CheckPredicate, 44, 100, 6, 0, // Skip to: 8940 13940/* 7304 */ MCD::OPC_Decode, 228, 31, 152, 3, // Opcode: t2STR_PRE 13941/* 7309 */ MCD::OPC_FilterValue, 1, 90, 6, 0, // Skip to: 8940 13942/* 7314 */ MCD::OPC_CheckPredicate, 44, 85, 6, 0, // Skip to: 8940 13943/* 7319 */ MCD::OPC_Decode, 229, 31, 171, 3, // Opcode: t2STRi12 13944/* 7324 */ MCD::OPC_FilterValue, 1, 75, 6, 0, // Skip to: 8940 13945/* 7329 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13946/* 7332 */ MCD::OPC_FilterValue, 0, 102, 0, 0, // Skip to: 7439 13947/* 7337 */ MCD::OPC_ExtractField, 10, 2, // Inst{11-10} ... 13948/* 7340 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7362 13949/* 7345 */ MCD::OPC_CheckPredicate, 44, 104, 0, 0, // Skip to: 7454 13950/* 7350 */ MCD::OPC_CheckField, 6, 4, 0, 97, 0, 0, // Skip to: 7454 13951/* 7357 */ MCD::OPC_Decode, 167, 30, 156, 3, // Opcode: t2LDRs 13952/* 7362 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 7384 13953/* 7367 */ MCD::OPC_CheckPredicate, 44, 82, 0, 0, // Skip to: 7454 13954/* 7372 */ MCD::OPC_CheckField, 8, 1, 1, 75, 0, 0, // Skip to: 7454 13955/* 7379 */ MCD::OPC_Decode, 162, 30, 152, 3, // Opcode: t2LDR_POST 13956/* 7384 */ MCD::OPC_FilterValue, 3, 65, 0, 0, // Skip to: 7454 13957/* 7389 */ MCD::OPC_ExtractField, 8, 1, // Inst{8} ... 13958/* 7392 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 7424 13959/* 7397 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 7414 13960/* 7402 */ MCD::OPC_CheckField, 9, 1, 1, 5, 0, 0, // Skip to: 7414 13961/* 7409 */ MCD::OPC_Decode, 161, 30, 158, 3, // Opcode: t2LDRT 13962/* 7414 */ MCD::OPC_CheckPredicate, 44, 35, 0, 0, // Skip to: 7454 13963/* 7419 */ MCD::OPC_Decode, 165, 30, 157, 3, // Opcode: t2LDRi8 13964/* 7424 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 7454 13965/* 7429 */ MCD::OPC_CheckPredicate, 44, 20, 0, 0, // Skip to: 7454 13966/* 7434 */ MCD::OPC_Decode, 163, 30, 152, 3, // Opcode: t2LDR_PRE 13967/* 7439 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 7454 13968/* 7444 */ MCD::OPC_CheckPredicate, 44, 5, 0, 0, // Skip to: 7454 13969/* 7449 */ MCD::OPC_Decode, 164, 30, 159, 3, // Opcode: t2LDRi12 13970/* 7454 */ MCD::OPC_CheckPredicate, 44, 201, 5, 0, // Skip to: 8940 13971/* 7459 */ MCD::OPC_CheckField, 16, 4, 15, 194, 5, 0, // Skip to: 8940 13972/* 7466 */ MCD::OPC_Decode, 166, 30, 160, 3, // Opcode: t2LDRpci 13973/* 7471 */ MCD::OPC_FilterValue, 2, 163, 2, 0, // Skip to: 8151 13974/* 7476 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 13975/* 7479 */ MCD::OPC_FilterValue, 0, 159, 1, 0, // Skip to: 7899 13976/* 7484 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 13977/* 7487 */ MCD::OPC_FilterValue, 0, 77, 0, 0, // Skip to: 7569 13978/* 7492 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 13979/* 7495 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7517 13980/* 7500 */ MCD::OPC_CheckPredicate, 44, 155, 5, 0, // Skip to: 8940 13981/* 7505 */ MCD::OPC_CheckField, 12, 4, 15, 148, 5, 0, // Skip to: 8940 13982/* 7512 */ MCD::OPC_Decode, 173, 29, 220, 2, // Opcode: t2ASRrr 13983/* 7517 */ MCD::OPC_FilterValue, 1, 138, 5, 0, // Skip to: 8940 13984/* 7522 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13985/* 7525 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7547 13986/* 7530 */ MCD::OPC_CheckPredicate, 52, 125, 5, 0, // Skip to: 8940 13987/* 7535 */ MCD::OPC_CheckField, 12, 4, 15, 118, 5, 0, // Skip to: 8940 13988/* 7542 */ MCD::OPC_Decode, 179, 31, 161, 3, // Opcode: t2SSUB8 13989/* 7547 */ MCD::OPC_FilterValue, 1, 108, 5, 0, // Skip to: 8940 13990/* 7552 */ MCD::OPC_CheckPredicate, 52, 103, 5, 0, // Skip to: 8940 13991/* 7557 */ MCD::OPC_CheckField, 12, 4, 15, 96, 5, 0, // Skip to: 8940 13992/* 7564 */ MCD::OPC_Decode, 178, 31, 161, 3, // Opcode: t2SSUB16 13993/* 7569 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 7635 13994/* 7574 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 13995/* 7577 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 7606 13996/* 7582 */ MCD::OPC_CheckPredicate, 52, 73, 5, 0, // Skip to: 8940 13997/* 7587 */ MCD::OPC_CheckField, 23, 1, 1, 66, 5, 0, // Skip to: 8940 13998/* 7594 */ MCD::OPC_CheckField, 12, 4, 15, 59, 5, 0, // Skip to: 8940 13999/* 7601 */ MCD::OPC_Decode, 229, 30, 161, 3, // Opcode: t2QSUB8 14000/* 7606 */ MCD::OPC_FilterValue, 1, 49, 5, 0, // Skip to: 8940 14001/* 7611 */ MCD::OPC_CheckPredicate, 52, 44, 5, 0, // Skip to: 8940 14002/* 7616 */ MCD::OPC_CheckField, 23, 1, 1, 37, 5, 0, // Skip to: 8940 14003/* 7623 */ MCD::OPC_CheckField, 12, 4, 15, 30, 5, 0, // Skip to: 8940 14004/* 7630 */ MCD::OPC_Decode, 228, 30, 161, 3, // Opcode: t2QSUB16 14005/* 7635 */ MCD::OPC_FilterValue, 2, 61, 0, 0, // Skip to: 7701 14006/* 7640 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14007/* 7643 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 7672 14008/* 7648 */ MCD::OPC_CheckPredicate, 52, 7, 5, 0, // Skip to: 8940 14009/* 7653 */ MCD::OPC_CheckField, 23, 1, 1, 0, 5, 0, // Skip to: 8940 14010/* 7660 */ MCD::OPC_CheckField, 12, 4, 15, 249, 4, 0, // Skip to: 8940 14011/* 7667 */ MCD::OPC_Decode, 133, 31, 161, 3, // Opcode: t2SHSUB8 14012/* 7672 */ MCD::OPC_FilterValue, 1, 239, 4, 0, // Skip to: 8940 14013/* 7677 */ MCD::OPC_CheckPredicate, 52, 234, 4, 0, // Skip to: 8940 14014/* 7682 */ MCD::OPC_CheckField, 23, 1, 1, 227, 4, 0, // Skip to: 8940 14015/* 7689 */ MCD::OPC_CheckField, 12, 4, 15, 220, 4, 0, // Skip to: 8940 14016/* 7696 */ MCD::OPC_Decode, 132, 31, 161, 3, // Opcode: t2SHSUB16 14017/* 7701 */ MCD::OPC_FilterValue, 4, 61, 0, 0, // Skip to: 7767 14018/* 7706 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14019/* 7709 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 7738 14020/* 7714 */ MCD::OPC_CheckPredicate, 52, 197, 4, 0, // Skip to: 8940 14021/* 7719 */ MCD::OPC_CheckField, 23, 1, 1, 190, 4, 0, // Skip to: 8940 14022/* 7726 */ MCD::OPC_CheckField, 12, 4, 15, 183, 4, 0, // Skip to: 8940 14023/* 7733 */ MCD::OPC_Decode, 157, 32, 161, 3, // Opcode: t2USUB8 14024/* 7738 */ MCD::OPC_FilterValue, 1, 173, 4, 0, // Skip to: 8940 14025/* 7743 */ MCD::OPC_CheckPredicate, 52, 168, 4, 0, // Skip to: 8940 14026/* 7748 */ MCD::OPC_CheckField, 23, 1, 1, 161, 4, 0, // Skip to: 8940 14027/* 7755 */ MCD::OPC_CheckField, 12, 4, 15, 154, 4, 0, // Skip to: 8940 14028/* 7762 */ MCD::OPC_Decode, 156, 32, 161, 3, // Opcode: t2USUB16 14029/* 7767 */ MCD::OPC_FilterValue, 5, 61, 0, 0, // Skip to: 7833 14030/* 7772 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14031/* 7775 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 7804 14032/* 7780 */ MCD::OPC_CheckPredicate, 52, 131, 4, 0, // Skip to: 8940 14033/* 7785 */ MCD::OPC_CheckField, 23, 1, 1, 124, 4, 0, // Skip to: 8940 14034/* 7792 */ MCD::OPC_CheckField, 12, 4, 15, 117, 4, 0, // Skip to: 8940 14035/* 7799 */ MCD::OPC_Decode, 150, 32, 161, 3, // Opcode: t2UQSUB8 14036/* 7804 */ MCD::OPC_FilterValue, 1, 107, 4, 0, // Skip to: 8940 14037/* 7809 */ MCD::OPC_CheckPredicate, 52, 102, 4, 0, // Skip to: 8940 14038/* 7814 */ MCD::OPC_CheckField, 23, 1, 1, 95, 4, 0, // Skip to: 8940 14039/* 7821 */ MCD::OPC_CheckField, 12, 4, 15, 88, 4, 0, // Skip to: 8940 14040/* 7828 */ MCD::OPC_Decode, 149, 32, 161, 3, // Opcode: t2UQSUB16 14041/* 7833 */ MCD::OPC_FilterValue, 6, 78, 4, 0, // Skip to: 8940 14042/* 7838 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14043/* 7841 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 7870 14044/* 7846 */ MCD::OPC_CheckPredicate, 52, 65, 4, 0, // Skip to: 8940 14045/* 7851 */ MCD::OPC_CheckField, 23, 1, 1, 58, 4, 0, // Skip to: 8940 14046/* 7858 */ MCD::OPC_CheckField, 12, 4, 15, 51, 4, 0, // Skip to: 8940 14047/* 7865 */ MCD::OPC_Decode, 141, 32, 161, 3, // Opcode: t2UHSUB8 14048/* 7870 */ MCD::OPC_FilterValue, 1, 41, 4, 0, // Skip to: 8940 14049/* 7875 */ MCD::OPC_CheckPredicate, 52, 36, 4, 0, // Skip to: 8940 14050/* 7880 */ MCD::OPC_CheckField, 23, 1, 1, 29, 4, 0, // Skip to: 8940 14051/* 7887 */ MCD::OPC_CheckField, 12, 4, 15, 22, 4, 0, // Skip to: 8940 14052/* 7894 */ MCD::OPC_Decode, 140, 32, 161, 3, // Opcode: t2UHSUB16 14053/* 7899 */ MCD::OPC_FilterValue, 1, 12, 4, 0, // Skip to: 8940 14054/* 7904 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14055/* 7907 */ MCD::OPC_FilterValue, 0, 117, 0, 0, // Skip to: 8029 14056/* 7912 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14057/* 7915 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 7955 14058/* 7920 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 14059/* 7923 */ MCD::OPC_FilterValue, 15, 244, 3, 0, // Skip to: 8940 14060/* 7928 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 7945 14061/* 7933 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 7945 14062/* 7940 */ MCD::OPC_Decode, 242, 31, 162, 3, // Opcode: t2SXTB 14063/* 7945 */ MCD::OPC_CheckPredicate, 50, 222, 3, 0, // Skip to: 8940 14064/* 7950 */ MCD::OPC_Decode, 239, 31, 163, 3, // Opcode: t2SXTAB 14065/* 7955 */ MCD::OPC_FilterValue, 1, 212, 3, 0, // Skip to: 8940 14066/* 7960 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 14067/* 7963 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 7985 14068/* 7968 */ MCD::OPC_CheckPredicate, 66, 199, 3, 0, // Skip to: 8940 14069/* 7973 */ MCD::OPC_CheckField, 12, 4, 15, 192, 3, 0, // Skip to: 8940 14070/* 7980 */ MCD::OPC_Decode, 201, 29, 161, 3, // Opcode: t2CRC32B 14071/* 7985 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 8007 14072/* 7990 */ MCD::OPC_CheckPredicate, 66, 177, 3, 0, // Skip to: 8940 14073/* 7995 */ MCD::OPC_CheckField, 12, 4, 15, 170, 3, 0, // Skip to: 8940 14074/* 8002 */ MCD::OPC_Decode, 205, 29, 161, 3, // Opcode: t2CRC32H 14075/* 8007 */ MCD::OPC_FilterValue, 2, 160, 3, 0, // Skip to: 8940 14076/* 8012 */ MCD::OPC_CheckPredicate, 66, 155, 3, 0, // Skip to: 8940 14077/* 8017 */ MCD::OPC_CheckField, 12, 4, 15, 148, 3, 0, // Skip to: 8940 14078/* 8024 */ MCD::OPC_Decode, 206, 29, 161, 3, // Opcode: t2CRC32W 14079/* 8029 */ MCD::OPC_FilterValue, 1, 138, 3, 0, // Skip to: 8940 14080/* 8034 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14081/* 8037 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 8077 14082/* 8042 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 14083/* 8045 */ MCD::OPC_FilterValue, 15, 122, 3, 0, // Skip to: 8940 14084/* 8050 */ MCD::OPC_CheckPredicate, 44, 12, 0, 0, // Skip to: 8067 14085/* 8055 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 8067 14086/* 8062 */ MCD::OPC_Decode, 161, 32, 162, 3, // Opcode: t2UXTB 14087/* 8067 */ MCD::OPC_CheckPredicate, 50, 100, 3, 0, // Skip to: 8940 14088/* 8072 */ MCD::OPC_Decode, 158, 32, 163, 3, // Opcode: t2UXTAB 14089/* 8077 */ MCD::OPC_FilterValue, 1, 90, 3, 0, // Skip to: 8940 14090/* 8082 */ MCD::OPC_ExtractField, 4, 3, // Inst{6-4} ... 14091/* 8085 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 8107 14092/* 8090 */ MCD::OPC_CheckPredicate, 66, 77, 3, 0, // Skip to: 8940 14093/* 8095 */ MCD::OPC_CheckField, 12, 4, 15, 70, 3, 0, // Skip to: 8940 14094/* 8102 */ MCD::OPC_Decode, 202, 29, 161, 3, // Opcode: t2CRC32CB 14095/* 8107 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 8129 14096/* 8112 */ MCD::OPC_CheckPredicate, 66, 55, 3, 0, // Skip to: 8940 14097/* 8117 */ MCD::OPC_CheckField, 12, 4, 15, 48, 3, 0, // Skip to: 8940 14098/* 8124 */ MCD::OPC_Decode, 203, 29, 161, 3, // Opcode: t2CRC32CH 14099/* 8129 */ MCD::OPC_FilterValue, 2, 38, 3, 0, // Skip to: 8940 14100/* 8134 */ MCD::OPC_CheckPredicate, 66, 33, 3, 0, // Skip to: 8940 14101/* 8139 */ MCD::OPC_CheckField, 12, 4, 15, 26, 3, 0, // Skip to: 8940 14102/* 8146 */ MCD::OPC_Decode, 204, 29, 161, 3, // Opcode: t2CRC32CW 14103/* 8151 */ MCD::OPC_FilterValue, 3, 16, 3, 0, // Skip to: 8940 14104/* 8156 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 14105/* 8159 */ MCD::OPC_FilterValue, 0, 98, 0, 0, // Skip to: 8262 14106/* 8164 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14107/* 8167 */ MCD::OPC_FilterValue, 0, 50, 0, 0, // Skip to: 8222 14108/* 8172 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14109/* 8175 */ MCD::OPC_FilterValue, 0, 27, 0, 0, // Skip to: 8207 14110/* 8180 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8197 14111/* 8185 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 8197 14112/* 8192 */ MCD::OPC_Decode, 169, 31, 161, 3, // Opcode: t2SMUSD 14113/* 8197 */ MCD::OPC_CheckPredicate, 52, 226, 2, 0, // Skip to: 8940 14114/* 8202 */ MCD::OPC_Decode, 150, 31, 166, 3, // Opcode: t2SMLSD 14115/* 8207 */ MCD::OPC_FilterValue, 1, 216, 2, 0, // Skip to: 8940 14116/* 8212 */ MCD::OPC_CheckPredicate, 44, 211, 2, 0, // Skip to: 8940 14117/* 8217 */ MCD::OPC_Decode, 139, 31, 172, 3, // Opcode: t2SMLAL 14118/* 8222 */ MCD::OPC_FilterValue, 1, 201, 2, 0, // Skip to: 8940 14119/* 8227 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14120/* 8230 */ MCD::OPC_FilterValue, 0, 193, 2, 0, // Skip to: 8940 14121/* 8235 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8252 14122/* 8240 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 8252 14123/* 8247 */ MCD::OPC_Decode, 158, 31, 161, 3, // Opcode: t2SMMUL 14124/* 8252 */ MCD::OPC_CheckPredicate, 52, 171, 2, 0, // Skip to: 8940 14125/* 8257 */ MCD::OPC_Decode, 154, 31, 166, 3, // Opcode: t2SMMLA 14126/* 8262 */ MCD::OPC_FilterValue, 1, 83, 0, 0, // Skip to: 8350 14127/* 8267 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14128/* 8270 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 8310 14129/* 8275 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14130/* 8278 */ MCD::OPC_FilterValue, 0, 145, 2, 0, // Skip to: 8940 14131/* 8283 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8300 14132/* 8288 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 8300 14133/* 8295 */ MCD::OPC_Decode, 170, 31, 161, 3, // Opcode: t2SMUSDX 14134/* 8300 */ MCD::OPC_CheckPredicate, 52, 123, 2, 0, // Skip to: 8940 14135/* 8305 */ MCD::OPC_Decode, 151, 31, 166, 3, // Opcode: t2SMLSDX 14136/* 8310 */ MCD::OPC_FilterValue, 1, 113, 2, 0, // Skip to: 8940 14137/* 8315 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14138/* 8318 */ MCD::OPC_FilterValue, 0, 105, 2, 0, // Skip to: 8940 14139/* 8323 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8340 14140/* 8328 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 8340 14141/* 8335 */ MCD::OPC_Decode, 159, 31, 161, 3, // Opcode: t2SMMULR 14142/* 8340 */ MCD::OPC_CheckPredicate, 52, 83, 2, 0, // Skip to: 8940 14143/* 8345 */ MCD::OPC_Decode, 155, 31, 166, 3, // Opcode: t2SMMLAR 14144/* 8350 */ MCD::OPC_FilterValue, 8, 24, 0, 0, // Skip to: 8379 14145/* 8355 */ MCD::OPC_CheckPredicate, 52, 68, 2, 0, // Skip to: 8940 14146/* 8360 */ MCD::OPC_CheckField, 23, 1, 1, 61, 2, 0, // Skip to: 8940 14147/* 8367 */ MCD::OPC_CheckField, 20, 1, 0, 54, 2, 0, // Skip to: 8940 14148/* 8374 */ MCD::OPC_Decode, 140, 31, 172, 3, // Opcode: t2SMLALBB 14149/* 8379 */ MCD::OPC_FilterValue, 9, 24, 0, 0, // Skip to: 8408 14150/* 8384 */ MCD::OPC_CheckPredicate, 52, 39, 2, 0, // Skip to: 8940 14151/* 8389 */ MCD::OPC_CheckField, 23, 1, 1, 32, 2, 0, // Skip to: 8940 14152/* 8396 */ MCD::OPC_CheckField, 20, 1, 0, 25, 2, 0, // Skip to: 8940 14153/* 8403 */ MCD::OPC_Decode, 141, 31, 172, 3, // Opcode: t2SMLALBT 14154/* 8408 */ MCD::OPC_FilterValue, 10, 24, 0, 0, // Skip to: 8437 14155/* 8413 */ MCD::OPC_CheckPredicate, 52, 10, 2, 0, // Skip to: 8940 14156/* 8418 */ MCD::OPC_CheckField, 23, 1, 1, 3, 2, 0, // Skip to: 8940 14157/* 8425 */ MCD::OPC_CheckField, 20, 1, 0, 252, 1, 0, // Skip to: 8940 14158/* 8432 */ MCD::OPC_Decode, 144, 31, 172, 3, // Opcode: t2SMLALTB 14159/* 8437 */ MCD::OPC_FilterValue, 11, 24, 0, 0, // Skip to: 8466 14160/* 8442 */ MCD::OPC_CheckPredicate, 52, 237, 1, 0, // Skip to: 8940 14161/* 8447 */ MCD::OPC_CheckField, 23, 1, 1, 230, 1, 0, // Skip to: 8940 14162/* 8454 */ MCD::OPC_CheckField, 20, 1, 0, 223, 1, 0, // Skip to: 8940 14163/* 8461 */ MCD::OPC_Decode, 145, 31, 172, 3, // Opcode: t2SMLALTT 14164/* 8466 */ MCD::OPC_FilterValue, 12, 47, 0, 0, // Skip to: 8518 14165/* 8471 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14166/* 8474 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 8496 14167/* 8479 */ MCD::OPC_CheckPredicate, 52, 200, 1, 0, // Skip to: 8940 14168/* 8484 */ MCD::OPC_CheckField, 23, 1, 1, 193, 1, 0, // Skip to: 8940 14169/* 8491 */ MCD::OPC_Decode, 142, 31, 172, 3, // Opcode: t2SMLALD 14170/* 8496 */ MCD::OPC_FilterValue, 1, 183, 1, 0, // Skip to: 8940 14171/* 8501 */ MCD::OPC_CheckPredicate, 52, 178, 1, 0, // Skip to: 8940 14172/* 8506 */ MCD::OPC_CheckField, 23, 1, 1, 171, 1, 0, // Skip to: 8940 14173/* 8513 */ MCD::OPC_Decode, 152, 31, 172, 3, // Opcode: t2SMLSLD 14174/* 8518 */ MCD::OPC_FilterValue, 13, 161, 1, 0, // Skip to: 8940 14175/* 8523 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14176/* 8526 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 8548 14177/* 8531 */ MCD::OPC_CheckPredicate, 52, 148, 1, 0, // Skip to: 8940 14178/* 8536 */ MCD::OPC_CheckField, 23, 1, 1, 141, 1, 0, // Skip to: 8940 14179/* 8543 */ MCD::OPC_Decode, 143, 31, 172, 3, // Opcode: t2SMLALDX 14180/* 8548 */ MCD::OPC_FilterValue, 1, 131, 1, 0, // Skip to: 8940 14181/* 8553 */ MCD::OPC_CheckPredicate, 52, 126, 1, 0, // Skip to: 8940 14182/* 8558 */ MCD::OPC_CheckField, 23, 1, 1, 119, 1, 0, // Skip to: 8940 14183/* 8565 */ MCD::OPC_Decode, 153, 31, 172, 3, // Opcode: t2SMLSLDX 14184/* 8570 */ MCD::OPC_FilterValue, 3, 109, 1, 0, // Skip to: 8940 14185/* 8575 */ MCD::OPC_ExtractField, 4, 4, // Inst{7-4} ... 14186/* 8578 */ MCD::OPC_FilterValue, 0, 131, 0, 0, // Skip to: 8714 14187/* 8583 */ MCD::OPC_ExtractField, 23, 4, // Inst{26-23} ... 14188/* 8586 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 8608 14189/* 8591 */ MCD::OPC_CheckPredicate, 44, 88, 1, 0, // Skip to: 8940 14190/* 8596 */ MCD::OPC_CheckField, 12, 4, 15, 81, 1, 0, // Skip to: 8940 14191/* 8603 */ MCD::OPC_Decode, 239, 30, 220, 2, // Opcode: t2RORrr 14192/* 8608 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 8637 14193/* 8613 */ MCD::OPC_CheckPredicate, 52, 66, 1, 0, // Skip to: 8940 14194/* 8618 */ MCD::OPC_CheckField, 20, 1, 0, 59, 1, 0, // Skip to: 8940 14195/* 8625 */ MCD::OPC_CheckField, 12, 4, 15, 52, 1, 0, // Skip to: 8940 14196/* 8632 */ MCD::OPC_Decode, 177, 31, 161, 3, // Opcode: t2SSAX 14197/* 8637 */ MCD::OPC_FilterValue, 6, 50, 0, 0, // Skip to: 8692 14198/* 8642 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14199/* 8645 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 8660 14200/* 8650 */ MCD::OPC_CheckPredicate, 52, 29, 1, 0, // Skip to: 8940 14201/* 8655 */ MCD::OPC_Decode, 156, 31, 166, 3, // Opcode: t2SMMLS 14202/* 8660 */ MCD::OPC_FilterValue, 1, 19, 1, 0, // Skip to: 8940 14203/* 8665 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8682 14204/* 8670 */ MCD::OPC_CheckField, 12, 4, 15, 5, 0, 0, // Skip to: 8682 14205/* 8677 */ MCD::OPC_Decode, 151, 32, 161, 3, // Opcode: t2USAD8 14206/* 8682 */ MCD::OPC_CheckPredicate, 52, 253, 0, 0, // Skip to: 8940 14207/* 8687 */ MCD::OPC_Decode, 152, 32, 166, 3, // Opcode: t2USADA8 14208/* 8692 */ MCD::OPC_FilterValue, 7, 243, 0, 0, // Skip to: 8940 14209/* 8697 */ MCD::OPC_CheckPredicate, 44, 238, 0, 0, // Skip to: 8940 14210/* 8702 */ MCD::OPC_CheckField, 20, 1, 0, 231, 0, 0, // Skip to: 8940 14211/* 8709 */ MCD::OPC_Decode, 143, 32, 172, 3, // Opcode: t2UMLAL 14212/* 8714 */ MCD::OPC_FilterValue, 1, 54, 0, 0, // Skip to: 8773 14213/* 8719 */ MCD::OPC_ExtractField, 23, 4, // Inst{26-23} ... 14214/* 8722 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 8751 14215/* 8727 */ MCD::OPC_CheckPredicate, 52, 208, 0, 0, // Skip to: 8940 14216/* 8732 */ MCD::OPC_CheckField, 20, 1, 0, 201, 0, 0, // Skip to: 8940 14217/* 8739 */ MCD::OPC_CheckField, 12, 4, 15, 194, 0, 0, // Skip to: 8940 14218/* 8746 */ MCD::OPC_Decode, 226, 30, 161, 3, // Opcode: t2QSAX 14219/* 8751 */ MCD::OPC_FilterValue, 6, 184, 0, 0, // Skip to: 8940 14220/* 8756 */ MCD::OPC_CheckPredicate, 52, 179, 0, 0, // Skip to: 8940 14221/* 8761 */ MCD::OPC_CheckField, 20, 1, 0, 172, 0, 0, // Skip to: 8940 14222/* 8768 */ MCD::OPC_Decode, 157, 31, 166, 3, // Opcode: t2SMMLSR 14223/* 8773 */ MCD::OPC_FilterValue, 2, 31, 0, 0, // Skip to: 8809 14224/* 8778 */ MCD::OPC_CheckPredicate, 52, 157, 0, 0, // Skip to: 8940 14225/* 8783 */ MCD::OPC_CheckField, 23, 4, 5, 150, 0, 0, // Skip to: 8940 14226/* 8790 */ MCD::OPC_CheckField, 20, 1, 0, 143, 0, 0, // Skip to: 8940 14227/* 8797 */ MCD::OPC_CheckField, 12, 4, 15, 136, 0, 0, // Skip to: 8940 14228/* 8804 */ MCD::OPC_Decode, 131, 31, 161, 3, // Opcode: t2SHSAX 14229/* 8809 */ MCD::OPC_FilterValue, 4, 31, 0, 0, // Skip to: 8845 14230/* 8814 */ MCD::OPC_CheckPredicate, 52, 121, 0, 0, // Skip to: 8940 14231/* 8819 */ MCD::OPC_CheckField, 23, 4, 5, 114, 0, 0, // Skip to: 8940 14232/* 8826 */ MCD::OPC_CheckField, 20, 1, 0, 107, 0, 0, // Skip to: 8940 14233/* 8833 */ MCD::OPC_CheckField, 12, 4, 15, 100, 0, 0, // Skip to: 8940 14234/* 8840 */ MCD::OPC_Decode, 155, 32, 161, 3, // Opcode: t2USAX 14235/* 8845 */ MCD::OPC_FilterValue, 5, 31, 0, 0, // Skip to: 8881 14236/* 8850 */ MCD::OPC_CheckPredicate, 52, 85, 0, 0, // Skip to: 8940 14237/* 8855 */ MCD::OPC_CheckField, 23, 4, 5, 78, 0, 0, // Skip to: 8940 14238/* 8862 */ MCD::OPC_CheckField, 20, 1, 0, 71, 0, 0, // Skip to: 8940 14239/* 8869 */ MCD::OPC_CheckField, 12, 4, 15, 64, 0, 0, // Skip to: 8940 14240/* 8876 */ MCD::OPC_Decode, 148, 32, 161, 3, // Opcode: t2UQSAX 14241/* 8881 */ MCD::OPC_FilterValue, 6, 54, 0, 0, // Skip to: 8940 14242/* 8886 */ MCD::OPC_ExtractField, 23, 4, // Inst{26-23} ... 14243/* 8889 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 8918 14244/* 8894 */ MCD::OPC_CheckPredicate, 52, 41, 0, 0, // Skip to: 8940 14245/* 8899 */ MCD::OPC_CheckField, 20, 1, 0, 34, 0, 0, // Skip to: 8940 14246/* 8906 */ MCD::OPC_CheckField, 12, 4, 15, 27, 0, 0, // Skip to: 8940 14247/* 8913 */ MCD::OPC_Decode, 139, 32, 161, 3, // Opcode: t2UHSAX 14248/* 8918 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 8940 14249/* 8923 */ MCD::OPC_CheckPredicate, 52, 12, 0, 0, // Skip to: 8940 14250/* 8928 */ MCD::OPC_CheckField, 20, 1, 0, 5, 0, 0, // Skip to: 8940 14251/* 8935 */ MCD::OPC_Decode, 142, 32, 172, 3, // Opcode: t2UMAAL 14252/* 8940 */ MCD::OPC_Fail, 14253 0 14254}; 14255 14256static const uint8_t DecoderTableThumb2CoProc32[] = { 14257/* 0 */ MCD::OPC_ExtractField, 24, 8, // Inst{31-24} ... 14258/* 3 */ MCD::OPC_FilterValue, 236, 1, 175, 0, 0, // Skip to: 184 14259/* 9 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 14260/* 12 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 33 14261/* 17 */ MCD::OPC_CheckPredicate, 44, 191, 2, 0, // Skip to: 725 14262/* 22 */ MCD::OPC_CheckField, 23, 1, 1, 184, 2, 0, // Skip to: 725 14263/* 29 */ MCD::OPC_Decode, 193, 31, 90, // Opcode: t2STC_OPTION 14264/* 33 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 54 14265/* 38 */ MCD::OPC_CheckPredicate, 44, 170, 2, 0, // Skip to: 725 14266/* 43 */ MCD::OPC_CheckField, 23, 1, 1, 163, 2, 0, // Skip to: 725 14267/* 50 */ MCD::OPC_Decode, 247, 29, 90, // Opcode: t2LDC_OPTION 14268/* 54 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 68 14269/* 59 */ MCD::OPC_CheckPredicate, 44, 149, 2, 0, // Skip to: 725 14270/* 64 */ MCD::OPC_Decode, 194, 31, 90, // Opcode: t2STC_POST 14271/* 68 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 82 14272/* 73 */ MCD::OPC_CheckPredicate, 44, 135, 2, 0, // Skip to: 725 14273/* 78 */ MCD::OPC_Decode, 248, 29, 90, // Opcode: t2LDC_POST 14274/* 82 */ MCD::OPC_FilterValue, 4, 32, 0, 0, // Skip to: 119 14275/* 87 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14276/* 90 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 105 14277/* 95 */ MCD::OPC_CheckPredicate, 44, 113, 2, 0, // Skip to: 725 14278/* 100 */ MCD::OPC_Decode, 176, 30, 173, 3, // Opcode: t2MCRR 14279/* 105 */ MCD::OPC_FilterValue, 1, 103, 2, 0, // Skip to: 725 14280/* 110 */ MCD::OPC_CheckPredicate, 44, 98, 2, 0, // Skip to: 725 14281/* 115 */ MCD::OPC_Decode, 189, 31, 90, // Opcode: t2STCL_OPTION 14282/* 119 */ MCD::OPC_FilterValue, 5, 32, 0, 0, // Skip to: 156 14283/* 124 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14284/* 127 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 142 14285/* 132 */ MCD::OPC_CheckPredicate, 44, 76, 2, 0, // Skip to: 725 14286/* 137 */ MCD::OPC_Decode, 188, 30, 174, 3, // Opcode: t2MRRC 14287/* 142 */ MCD::OPC_FilterValue, 1, 66, 2, 0, // Skip to: 725 14288/* 147 */ MCD::OPC_CheckPredicate, 44, 61, 2, 0, // Skip to: 725 14289/* 152 */ MCD::OPC_Decode, 243, 29, 90, // Opcode: t2LDCL_OPTION 14290/* 156 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 170 14291/* 161 */ MCD::OPC_CheckPredicate, 44, 47, 2, 0, // Skip to: 725 14292/* 166 */ MCD::OPC_Decode, 190, 31, 90, // Opcode: t2STCL_POST 14293/* 170 */ MCD::OPC_FilterValue, 7, 38, 2, 0, // Skip to: 725 14294/* 175 */ MCD::OPC_CheckPredicate, 44, 33, 2, 0, // Skip to: 725 14295/* 180 */ MCD::OPC_Decode, 244, 29, 90, // Opcode: t2LDCL_POST 14296/* 184 */ MCD::OPC_FilterValue, 237, 1, 115, 0, 0, // Skip to: 305 14297/* 190 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 14298/* 193 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 207 14299/* 198 */ MCD::OPC_CheckPredicate, 44, 10, 2, 0, // Skip to: 725 14300/* 203 */ MCD::OPC_Decode, 192, 31, 90, // Opcode: t2STC_OFFSET 14301/* 207 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 221 14302/* 212 */ MCD::OPC_CheckPredicate, 44, 252, 1, 0, // Skip to: 725 14303/* 217 */ MCD::OPC_Decode, 246, 29, 90, // Opcode: t2LDC_OFFSET 14304/* 221 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 235 14305/* 226 */ MCD::OPC_CheckPredicate, 44, 238, 1, 0, // Skip to: 725 14306/* 231 */ MCD::OPC_Decode, 195, 31, 90, // Opcode: t2STC_PRE 14307/* 235 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 249 14308/* 240 */ MCD::OPC_CheckPredicate, 44, 224, 1, 0, // Skip to: 725 14309/* 245 */ MCD::OPC_Decode, 249, 29, 90, // Opcode: t2LDC_PRE 14310/* 249 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 263 14311/* 254 */ MCD::OPC_CheckPredicate, 44, 210, 1, 0, // Skip to: 725 14312/* 259 */ MCD::OPC_Decode, 188, 31, 90, // Opcode: t2STCL_OFFSET 14313/* 263 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 277 14314/* 268 */ MCD::OPC_CheckPredicate, 44, 196, 1, 0, // Skip to: 725 14315/* 273 */ MCD::OPC_Decode, 242, 29, 90, // Opcode: t2LDCL_OFFSET 14316/* 277 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 291 14317/* 282 */ MCD::OPC_CheckPredicate, 44, 182, 1, 0, // Skip to: 725 14318/* 287 */ MCD::OPC_Decode, 191, 31, 90, // Opcode: t2STCL_PRE 14319/* 291 */ MCD::OPC_FilterValue, 7, 173, 1, 0, // Skip to: 725 14320/* 296 */ MCD::OPC_CheckPredicate, 44, 168, 1, 0, // Skip to: 725 14321/* 301 */ MCD::OPC_Decode, 245, 29, 90, // Opcode: t2LDCL_PRE 14322/* 305 */ MCD::OPC_FilterValue, 238, 1, 53, 0, 0, // Skip to: 364 14323/* 311 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14324/* 314 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 328 14325/* 319 */ MCD::OPC_CheckPredicate, 67, 145, 1, 0, // Skip to: 725 14326/* 324 */ MCD::OPC_Decode, 187, 29, 91, // Opcode: t2CDP 14327/* 328 */ MCD::OPC_FilterValue, 1, 136, 1, 0, // Skip to: 725 14328/* 333 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14329/* 336 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 350 14330/* 341 */ MCD::OPC_CheckPredicate, 44, 123, 1, 0, // Skip to: 725 14331/* 346 */ MCD::OPC_Decode, 174, 30, 93, // Opcode: t2MCR 14332/* 350 */ MCD::OPC_FilterValue, 1, 114, 1, 0, // Skip to: 725 14333/* 355 */ MCD::OPC_CheckPredicate, 44, 109, 1, 0, // Skip to: 725 14334/* 360 */ MCD::OPC_Decode, 186, 30, 95, // Opcode: t2MRC 14335/* 364 */ MCD::OPC_FilterValue, 252, 1, 175, 0, 0, // Skip to: 545 14336/* 370 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 14337/* 373 */ MCD::OPC_FilterValue, 0, 16, 0, 0, // Skip to: 394 14338/* 378 */ MCD::OPC_CheckPredicate, 68, 86, 1, 0, // Skip to: 725 14339/* 383 */ MCD::OPC_CheckField, 23, 1, 1, 79, 1, 0, // Skip to: 725 14340/* 390 */ MCD::OPC_Decode, 185, 31, 90, // Opcode: t2STC2_OPTION 14341/* 394 */ MCD::OPC_FilterValue, 1, 16, 0, 0, // Skip to: 415 14342/* 399 */ MCD::OPC_CheckPredicate, 68, 65, 1, 0, // Skip to: 725 14343/* 404 */ MCD::OPC_CheckField, 23, 1, 1, 58, 1, 0, // Skip to: 725 14344/* 411 */ MCD::OPC_Decode, 239, 29, 90, // Opcode: t2LDC2_OPTION 14345/* 415 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 429 14346/* 420 */ MCD::OPC_CheckPredicate, 68, 44, 1, 0, // Skip to: 725 14347/* 425 */ MCD::OPC_Decode, 186, 31, 90, // Opcode: t2STC2_POST 14348/* 429 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 443 14349/* 434 */ MCD::OPC_CheckPredicate, 68, 30, 1, 0, // Skip to: 725 14350/* 439 */ MCD::OPC_Decode, 240, 29, 90, // Opcode: t2LDC2_POST 14351/* 443 */ MCD::OPC_FilterValue, 4, 32, 0, 0, // Skip to: 480 14352/* 448 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14353/* 451 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 466 14354/* 456 */ MCD::OPC_CheckPredicate, 67, 8, 1, 0, // Skip to: 725 14355/* 461 */ MCD::OPC_Decode, 177, 30, 173, 3, // Opcode: t2MCRR2 14356/* 466 */ MCD::OPC_FilterValue, 1, 254, 0, 0, // Skip to: 725 14357/* 471 */ MCD::OPC_CheckPredicate, 68, 249, 0, 0, // Skip to: 725 14358/* 476 */ MCD::OPC_Decode, 181, 31, 90, // Opcode: t2STC2L_OPTION 14359/* 480 */ MCD::OPC_FilterValue, 5, 32, 0, 0, // Skip to: 517 14360/* 485 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14361/* 488 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 503 14362/* 493 */ MCD::OPC_CheckPredicate, 67, 227, 0, 0, // Skip to: 725 14363/* 498 */ MCD::OPC_Decode, 189, 30, 174, 3, // Opcode: t2MRRC2 14364/* 503 */ MCD::OPC_FilterValue, 1, 217, 0, 0, // Skip to: 725 14365/* 508 */ MCD::OPC_CheckPredicate, 68, 212, 0, 0, // Skip to: 725 14366/* 513 */ MCD::OPC_Decode, 235, 29, 90, // Opcode: t2LDC2L_OPTION 14367/* 517 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 531 14368/* 522 */ MCD::OPC_CheckPredicate, 68, 198, 0, 0, // Skip to: 725 14369/* 527 */ MCD::OPC_Decode, 182, 31, 90, // Opcode: t2STC2L_POST 14370/* 531 */ MCD::OPC_FilterValue, 7, 189, 0, 0, // Skip to: 725 14371/* 536 */ MCD::OPC_CheckPredicate, 68, 184, 0, 0, // Skip to: 725 14372/* 541 */ MCD::OPC_Decode, 236, 29, 90, // Opcode: t2LDC2L_POST 14373/* 545 */ MCD::OPC_FilterValue, 253, 1, 115, 0, 0, // Skip to: 666 14374/* 551 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 14375/* 554 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 568 14376/* 559 */ MCD::OPC_CheckPredicate, 68, 161, 0, 0, // Skip to: 725 14377/* 564 */ MCD::OPC_Decode, 184, 31, 90, // Opcode: t2STC2_OFFSET 14378/* 568 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 582 14379/* 573 */ MCD::OPC_CheckPredicate, 68, 147, 0, 0, // Skip to: 725 14380/* 578 */ MCD::OPC_Decode, 238, 29, 90, // Opcode: t2LDC2_OFFSET 14381/* 582 */ MCD::OPC_FilterValue, 2, 9, 0, 0, // Skip to: 596 14382/* 587 */ MCD::OPC_CheckPredicate, 68, 133, 0, 0, // Skip to: 725 14383/* 592 */ MCD::OPC_Decode, 187, 31, 90, // Opcode: t2STC2_PRE 14384/* 596 */ MCD::OPC_FilterValue, 3, 9, 0, 0, // Skip to: 610 14385/* 601 */ MCD::OPC_CheckPredicate, 68, 119, 0, 0, // Skip to: 725 14386/* 606 */ MCD::OPC_Decode, 241, 29, 90, // Opcode: t2LDC2_PRE 14387/* 610 */ MCD::OPC_FilterValue, 4, 9, 0, 0, // Skip to: 624 14388/* 615 */ MCD::OPC_CheckPredicate, 68, 105, 0, 0, // Skip to: 725 14389/* 620 */ MCD::OPC_Decode, 180, 31, 90, // Opcode: t2STC2L_OFFSET 14390/* 624 */ MCD::OPC_FilterValue, 5, 9, 0, 0, // Skip to: 638 14391/* 629 */ MCD::OPC_CheckPredicate, 68, 91, 0, 0, // Skip to: 725 14392/* 634 */ MCD::OPC_Decode, 234, 29, 90, // Opcode: t2LDC2L_OFFSET 14393/* 638 */ MCD::OPC_FilterValue, 6, 9, 0, 0, // Skip to: 652 14394/* 643 */ MCD::OPC_CheckPredicate, 68, 77, 0, 0, // Skip to: 725 14395/* 648 */ MCD::OPC_Decode, 183, 31, 90, // Opcode: t2STC2L_PRE 14396/* 652 */ MCD::OPC_FilterValue, 7, 68, 0, 0, // Skip to: 725 14397/* 657 */ MCD::OPC_CheckPredicate, 68, 63, 0, 0, // Skip to: 725 14398/* 662 */ MCD::OPC_Decode, 237, 29, 90, // Opcode: t2LDC2L_PRE 14399/* 666 */ MCD::OPC_FilterValue, 254, 1, 53, 0, 0, // Skip to: 725 14400/* 672 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14401/* 675 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 689 14402/* 680 */ MCD::OPC_CheckPredicate, 67, 40, 0, 0, // Skip to: 725 14403/* 685 */ MCD::OPC_Decode, 188, 29, 91, // Opcode: t2CDP2 14404/* 689 */ MCD::OPC_FilterValue, 1, 31, 0, 0, // Skip to: 725 14405/* 694 */ MCD::OPC_ExtractField, 20, 1, // Inst{20} ... 14406/* 697 */ MCD::OPC_FilterValue, 0, 9, 0, 0, // Skip to: 711 14407/* 702 */ MCD::OPC_CheckPredicate, 67, 18, 0, 0, // Skip to: 725 14408/* 707 */ MCD::OPC_Decode, 175, 30, 93, // Opcode: t2MCR2 14409/* 711 */ MCD::OPC_FilterValue, 1, 9, 0, 0, // Skip to: 725 14410/* 716 */ MCD::OPC_CheckPredicate, 67, 4, 0, 0, // Skip to: 725 14411/* 721 */ MCD::OPC_Decode, 187, 30, 95, // Opcode: t2MRC2 14412/* 725 */ MCD::OPC_Fail, 14413 0 14414}; 14415 14416static const uint8_t DecoderTableThumbSBit16[] = { 14417/* 0 */ MCD::OPC_ExtractField, 11, 5, // Inst{15-11} ... 14418/* 3 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 18 14419/* 8 */ MCD::OPC_CheckPredicate, 34, 95, 1, 0, // Skip to: 364 14420/* 13 */ MCD::OPC_Decode, 212, 32, 175, 3, // Opcode: tLSLri 14421/* 18 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 33 14422/* 23 */ MCD::OPC_CheckPredicate, 34, 80, 1, 0, // Skip to: 364 14423/* 28 */ MCD::OPC_Decode, 214, 32, 175, 3, // Opcode: tLSRri 14424/* 33 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 48 14425/* 38 */ MCD::OPC_CheckPredicate, 34, 65, 1, 0, // Skip to: 364 14426/* 43 */ MCD::OPC_Decode, 176, 32, 175, 3, // Opcode: tASRri 14427/* 48 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 116 14428/* 53 */ MCD::OPC_ExtractField, 9, 2, // Inst{10-9} ... 14429/* 56 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 71 14430/* 61 */ MCD::OPC_CheckPredicate, 34, 42, 1, 0, // Skip to: 364 14431/* 66 */ MCD::OPC_Decode, 171, 32, 176, 3, // Opcode: tADDrr 14432/* 71 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 86 14433/* 76 */ MCD::OPC_CheckPredicate, 34, 27, 1, 0, // Skip to: 364 14434/* 81 */ MCD::OPC_Decode, 242, 32, 176, 3, // Opcode: tSUBrr 14435/* 86 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 101 14436/* 91 */ MCD::OPC_CheckPredicate, 34, 12, 1, 0, // Skip to: 364 14437/* 96 */ MCD::OPC_Decode, 167, 32, 177, 3, // Opcode: tADDi3 14438/* 101 */ MCD::OPC_FilterValue, 3, 2, 1, 0, // Skip to: 364 14439/* 106 */ MCD::OPC_CheckPredicate, 34, 253, 0, 0, // Skip to: 364 14440/* 111 */ MCD::OPC_Decode, 240, 32, 177, 3, // Opcode: tSUBi3 14441/* 116 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 131 14442/* 121 */ MCD::OPC_CheckPredicate, 34, 238, 0, 0, // Skip to: 364 14443/* 126 */ MCD::OPC_Decode, 217, 32, 188, 2, // Opcode: tMOVi8 14444/* 131 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 146 14445/* 136 */ MCD::OPC_CheckPredicate, 34, 223, 0, 0, // Skip to: 364 14446/* 141 */ MCD::OPC_Decode, 168, 32, 178, 3, // Opcode: tADDi8 14447/* 146 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 161 14448/* 151 */ MCD::OPC_CheckPredicate, 34, 208, 0, 0, // Skip to: 364 14449/* 156 */ MCD::OPC_Decode, 241, 32, 178, 3, // Opcode: tSUBi8 14450/* 161 */ MCD::OPC_FilterValue, 8, 198, 0, 0, // Skip to: 364 14451/* 166 */ MCD::OPC_ExtractField, 6, 5, // Inst{10-6} ... 14452/* 169 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 184 14453/* 174 */ MCD::OPC_CheckPredicate, 34, 185, 0, 0, // Skip to: 364 14454/* 179 */ MCD::OPC_Decode, 175, 32, 179, 3, // Opcode: tAND 14455/* 184 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 199 14456/* 189 */ MCD::OPC_CheckPredicate, 34, 170, 0, 0, // Skip to: 364 14457/* 194 */ MCD::OPC_Decode, 195, 32, 179, 3, // Opcode: tEOR 14458/* 199 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 214 14459/* 204 */ MCD::OPC_CheckPredicate, 34, 155, 0, 0, // Skip to: 364 14460/* 209 */ MCD::OPC_Decode, 213, 32, 179, 3, // Opcode: tLSLrr 14461/* 214 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 229 14462/* 219 */ MCD::OPC_CheckPredicate, 34, 140, 0, 0, // Skip to: 364 14463/* 224 */ MCD::OPC_Decode, 215, 32, 179, 3, // Opcode: tLSRrr 14464/* 229 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 244 14465/* 234 */ MCD::OPC_CheckPredicate, 34, 125, 0, 0, // Skip to: 364 14466/* 239 */ MCD::OPC_Decode, 177, 32, 179, 3, // Opcode: tASRrr 14467/* 244 */ MCD::OPC_FilterValue, 5, 10, 0, 0, // Skip to: 259 14468/* 249 */ MCD::OPC_CheckPredicate, 34, 110, 0, 0, // Skip to: 364 14469/* 254 */ MCD::OPC_Decode, 165, 32, 179, 3, // Opcode: tADC 14470/* 259 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 274 14471/* 264 */ MCD::OPC_CheckPredicate, 34, 95, 0, 0, // Skip to: 364 14472/* 269 */ MCD::OPC_Decode, 230, 32, 179, 3, // Opcode: tSBC 14473/* 274 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 289 14474/* 279 */ MCD::OPC_CheckPredicate, 34, 80, 0, 0, // Skip to: 364 14475/* 284 */ MCD::OPC_Decode, 228, 32, 179, 3, // Opcode: tROR 14476/* 289 */ MCD::OPC_FilterValue, 9, 10, 0, 0, // Skip to: 304 14477/* 294 */ MCD::OPC_CheckPredicate, 34, 65, 0, 0, // Skip to: 364 14478/* 299 */ MCD::OPC_Decode, 229, 32, 187, 2, // Opcode: tRSB 14479/* 304 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 319 14480/* 309 */ MCD::OPC_CheckPredicate, 34, 50, 0, 0, // Skip to: 364 14481/* 314 */ MCD::OPC_Decode, 221, 32, 179, 3, // Opcode: tORR 14482/* 319 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 334 14483/* 324 */ MCD::OPC_CheckPredicate, 34, 35, 0, 0, // Skip to: 364 14484/* 329 */ MCD::OPC_Decode, 219, 32, 180, 3, // Opcode: tMUL 14485/* 334 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 349 14486/* 339 */ MCD::OPC_CheckPredicate, 34, 20, 0, 0, // Skip to: 364 14487/* 344 */ MCD::OPC_Decode, 179, 32, 179, 3, // Opcode: tBIC 14488/* 349 */ MCD::OPC_FilterValue, 15, 10, 0, 0, // Skip to: 364 14489/* 354 */ MCD::OPC_CheckPredicate, 34, 5, 0, 0, // Skip to: 364 14490/* 359 */ MCD::OPC_Decode, 220, 32, 187, 2, // Opcode: tMVN 14491/* 364 */ MCD::OPC_Fail, 14492 0 14493}; 14494 14495static const uint8_t DecoderTableVFP32[] = { 14496/* 0 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 14497/* 3 */ MCD::OPC_FilterValue, 9, 112, 4, 0, // Skip to: 1144 14498/* 8 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 14499/* 11 */ MCD::OPC_FilterValue, 0, 130, 0, 0, // Skip to: 146 14500/* 16 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 14501/* 19 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 34 14502/* 24 */ MCD::OPC_CheckPredicate, 69, 222, 21, 0, // Skip to: 5627 14503/* 29 */ MCD::OPC_Decode, 148, 28, 181, 3, // Opcode: VSTRH 14504/* 34 */ MCD::OPC_FilterValue, 14, 212, 21, 0, // Skip to: 5627 14505/* 39 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14506/* 42 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 110 14507/* 47 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14508/* 50 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 88 14509/* 55 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14510/* 58 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 73 14511/* 63 */ MCD::OPC_CheckPredicate, 70, 183, 21, 0, // Skip to: 5627 14512/* 68 */ MCD::OPC_Decode, 134, 21, 182, 3, // Opcode: VMLAH 14513/* 73 */ MCD::OPC_FilterValue, 1, 173, 21, 0, // Skip to: 5627 14514/* 78 */ MCD::OPC_CheckPredicate, 70, 168, 21, 0, // Skip to: 5627 14515/* 83 */ MCD::OPC_Decode, 167, 17, 183, 3, // Opcode: VDIVH 14516/* 88 */ MCD::OPC_FilterValue, 1, 158, 21, 0, // Skip to: 5627 14517/* 93 */ MCD::OPC_CheckPredicate, 70, 153, 21, 0, // Skip to: 5627 14518/* 98 */ MCD::OPC_CheckField, 23, 1, 0, 146, 21, 0, // Skip to: 5627 14519/* 105 */ MCD::OPC_Decode, 165, 21, 182, 3, // Opcode: VMLSH 14520/* 110 */ MCD::OPC_FilterValue, 1, 136, 21, 0, // Skip to: 5627 14521/* 115 */ MCD::OPC_CheckPredicate, 69, 131, 21, 0, // Skip to: 5627 14522/* 120 */ MCD::OPC_CheckField, 22, 2, 0, 124, 21, 0, // Skip to: 5627 14523/* 127 */ MCD::OPC_CheckField, 5, 2, 0, 117, 21, 0, // Skip to: 5627 14524/* 134 */ MCD::OPC_CheckField, 0, 4, 0, 110, 21, 0, // Skip to: 5627 14525/* 141 */ MCD::OPC_Decode, 198, 21, 184, 3, // Opcode: VMOVHR 14526/* 146 */ MCD::OPC_FilterValue, 1, 146, 0, 0, // Skip to: 297 14527/* 151 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 14528/* 154 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 169 14529/* 159 */ MCD::OPC_CheckPredicate, 69, 87, 21, 0, // Skip to: 5627 14530/* 164 */ MCD::OPC_Decode, 207, 20, 181, 3, // Opcode: VLDRH 14531/* 169 */ MCD::OPC_FilterValue, 14, 77, 21, 0, // Skip to: 5627 14532/* 174 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14533/* 177 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 261 14534/* 182 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14535/* 185 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 223 14536/* 190 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14537/* 193 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 208 14538/* 198 */ MCD::OPC_CheckPredicate, 70, 48, 21, 0, // Skip to: 5627 14539/* 203 */ MCD::OPC_Decode, 178, 22, 182, 3, // Opcode: VNMLSH 14540/* 208 */ MCD::OPC_FilterValue, 1, 38, 21, 0, // Skip to: 5627 14541/* 213 */ MCD::OPC_CheckPredicate, 70, 33, 21, 0, // Skip to: 5627 14542/* 218 */ MCD::OPC_Decode, 216, 17, 182, 3, // Opcode: VFNMSH 14543/* 223 */ MCD::OPC_FilterValue, 1, 23, 21, 0, // Skip to: 5627 14544/* 228 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14545/* 231 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 246 14546/* 236 */ MCD::OPC_CheckPredicate, 70, 10, 21, 0, // Skip to: 5627 14547/* 241 */ MCD::OPC_Decode, 175, 22, 182, 3, // Opcode: VNMLAH 14548/* 246 */ MCD::OPC_FilterValue, 1, 0, 21, 0, // Skip to: 5627 14549/* 251 */ MCD::OPC_CheckPredicate, 70, 251, 20, 0, // Skip to: 5627 14550/* 256 */ MCD::OPC_Decode, 213, 17, 182, 3, // Opcode: VFNMAH 14551/* 261 */ MCD::OPC_FilterValue, 1, 241, 20, 0, // Skip to: 5627 14552/* 266 */ MCD::OPC_CheckPredicate, 69, 236, 20, 0, // Skip to: 5627 14553/* 271 */ MCD::OPC_CheckField, 22, 2, 0, 229, 20, 0, // Skip to: 5627 14554/* 278 */ MCD::OPC_CheckField, 5, 2, 0, 222, 20, 0, // Skip to: 5627 14555/* 285 */ MCD::OPC_CheckField, 0, 4, 0, 215, 20, 0, // Skip to: 5627 14556/* 292 */ MCD::OPC_Decode, 208, 21, 185, 3, // Opcode: VMOVRH 14557/* 297 */ MCD::OPC_FilterValue, 2, 107, 0, 0, // Skip to: 409 14558/* 302 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14559/* 305 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 357 14560/* 310 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14561/* 313 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 335 14562/* 318 */ MCD::OPC_CheckPredicate, 70, 184, 20, 0, // Skip to: 5627 14563/* 323 */ MCD::OPC_CheckField, 4, 1, 0, 177, 20, 0, // Skip to: 5627 14564/* 330 */ MCD::OPC_Decode, 249, 21, 183, 3, // Opcode: VMULH 14565/* 335 */ MCD::OPC_FilterValue, 29, 167, 20, 0, // Skip to: 5627 14566/* 340 */ MCD::OPC_CheckPredicate, 70, 162, 20, 0, // Skip to: 5627 14567/* 345 */ MCD::OPC_CheckField, 4, 1, 0, 155, 20, 0, // Skip to: 5627 14568/* 352 */ MCD::OPC_Decode, 191, 17, 182, 3, // Opcode: VFMAH 14569/* 357 */ MCD::OPC_FilterValue, 1, 145, 20, 0, // Skip to: 5627 14570/* 362 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14571/* 365 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 387 14572/* 370 */ MCD::OPC_CheckPredicate, 70, 132, 20, 0, // Skip to: 5627 14573/* 375 */ MCD::OPC_CheckField, 4, 1, 0, 125, 20, 0, // Skip to: 5627 14574/* 382 */ MCD::OPC_Decode, 181, 22, 183, 3, // Opcode: VNMULH 14575/* 387 */ MCD::OPC_FilterValue, 29, 115, 20, 0, // Skip to: 5627 14576/* 392 */ MCD::OPC_CheckPredicate, 70, 110, 20, 0, // Skip to: 5627 14577/* 397 */ MCD::OPC_CheckField, 4, 1, 0, 103, 20, 0, // Skip to: 5627 14578/* 404 */ MCD::OPC_Decode, 202, 17, 182, 3, // Opcode: VFMSH 14579/* 409 */ MCD::OPC_FilterValue, 3, 93, 20, 0, // Skip to: 5627 14580/* 414 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14581/* 417 */ MCD::OPC_FilterValue, 0, 54, 0, 0, // Skip to: 476 14582/* 422 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14583/* 425 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 447 14584/* 430 */ MCD::OPC_CheckPredicate, 70, 72, 20, 0, // Skip to: 5627 14585/* 435 */ MCD::OPC_CheckField, 4, 1, 0, 65, 20, 0, // Skip to: 5627 14586/* 442 */ MCD::OPC_Decode, 149, 15, 183, 3, // Opcode: VADDH 14587/* 447 */ MCD::OPC_FilterValue, 29, 55, 20, 0, // Skip to: 5627 14588/* 452 */ MCD::OPC_CheckPredicate, 70, 50, 20, 0, // Skip to: 5627 14589/* 457 */ MCD::OPC_CheckField, 7, 1, 0, 43, 20, 0, // Skip to: 5627 14590/* 464 */ MCD::OPC_CheckField, 4, 2, 0, 36, 20, 0, // Skip to: 5627 14591/* 471 */ MCD::OPC_Decode, 154, 5, 186, 3, // Opcode: FCONSTH 14592/* 476 */ MCD::OPC_FilterValue, 1, 26, 20, 0, // Skip to: 5627 14593/* 481 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14594/* 484 */ MCD::OPC_FilterValue, 28, 17, 0, 0, // Skip to: 506 14595/* 489 */ MCD::OPC_CheckPredicate, 70, 13, 20, 0, // Skip to: 5627 14596/* 494 */ MCD::OPC_CheckField, 4, 1, 0, 6, 20, 0, // Skip to: 5627 14597/* 501 */ MCD::OPC_Decode, 169, 28, 183, 3, // Opcode: VSUBH 14598/* 506 */ MCD::OPC_FilterValue, 29, 252, 19, 0, // Skip to: 5627 14599/* 511 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 14600/* 514 */ MCD::OPC_FilterValue, 0, 24, 0, 0, // Skip to: 543 14601/* 519 */ MCD::OPC_CheckPredicate, 70, 239, 19, 0, // Skip to: 5627 14602/* 524 */ MCD::OPC_CheckField, 7, 1, 1, 232, 19, 0, // Skip to: 5627 14603/* 531 */ MCD::OPC_CheckField, 4, 1, 0, 225, 19, 0, // Skip to: 5627 14604/* 538 */ MCD::OPC_Decode, 128, 15, 187, 3, // Opcode: VABSH 14605/* 543 */ MCD::OPC_FilterValue, 1, 47, 0, 0, // Skip to: 595 14606/* 548 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14607/* 551 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 573 14608/* 556 */ MCD::OPC_CheckPredicate, 70, 202, 19, 0, // Skip to: 5627 14609/* 561 */ MCD::OPC_CheckField, 4, 1, 0, 195, 19, 0, // Skip to: 5627 14610/* 568 */ MCD::OPC_Decode, 162, 22, 187, 3, // Opcode: VNEGH 14611/* 573 */ MCD::OPC_FilterValue, 1, 185, 19, 0, // Skip to: 5627 14612/* 578 */ MCD::OPC_CheckPredicate, 70, 180, 19, 0, // Skip to: 5627 14613/* 583 */ MCD::OPC_CheckField, 4, 1, 0, 173, 19, 0, // Skip to: 5627 14614/* 590 */ MCD::OPC_Decode, 132, 26, 187, 3, // Opcode: VSQRTH 14615/* 595 */ MCD::OPC_FilterValue, 4, 47, 0, 0, // Skip to: 647 14616/* 600 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14617/* 603 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 625 14618/* 608 */ MCD::OPC_CheckPredicate, 70, 150, 19, 0, // Skip to: 5627 14619/* 613 */ MCD::OPC_CheckField, 4, 1, 0, 143, 19, 0, // Skip to: 5627 14620/* 620 */ MCD::OPC_Decode, 187, 16, 187, 3, // Opcode: VCMPH 14621/* 625 */ MCD::OPC_FilterValue, 1, 133, 19, 0, // Skip to: 5627 14622/* 630 */ MCD::OPC_CheckPredicate, 70, 128, 19, 0, // Skip to: 5627 14623/* 635 */ MCD::OPC_CheckField, 4, 1, 0, 121, 19, 0, // Skip to: 5627 14624/* 642 */ MCD::OPC_Decode, 182, 16, 187, 3, // Opcode: VCMPEH 14625/* 647 */ MCD::OPC_FilterValue, 5, 47, 0, 0, // Skip to: 699 14626/* 652 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14627/* 655 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 677 14628/* 660 */ MCD::OPC_CheckPredicate, 70, 98, 19, 0, // Skip to: 5627 14629/* 665 */ MCD::OPC_CheckField, 0, 6, 0, 91, 19, 0, // Skip to: 5627 14630/* 672 */ MCD::OPC_Decode, 190, 16, 188, 3, // Opcode: VCMPZH 14631/* 677 */ MCD::OPC_FilterValue, 1, 81, 19, 0, // Skip to: 5627 14632/* 682 */ MCD::OPC_CheckPredicate, 70, 76, 19, 0, // Skip to: 5627 14633/* 687 */ MCD::OPC_CheckField, 0, 6, 0, 69, 19, 0, // Skip to: 5627 14634/* 694 */ MCD::OPC_Decode, 185, 16, 188, 3, // Opcode: VCMPEZH 14635/* 699 */ MCD::OPC_FilterValue, 6, 47, 0, 0, // Skip to: 751 14636/* 704 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14637/* 707 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 729 14638/* 712 */ MCD::OPC_CheckPredicate, 70, 46, 19, 0, // Skip to: 5627 14639/* 717 */ MCD::OPC_CheckField, 4, 1, 0, 39, 19, 0, // Skip to: 5627 14640/* 724 */ MCD::OPC_Decode, 217, 24, 187, 3, // Opcode: VRINTRH 14641/* 729 */ MCD::OPC_FilterValue, 1, 29, 19, 0, // Skip to: 5627 14642/* 734 */ MCD::OPC_CheckPredicate, 70, 24, 19, 0, // Skip to: 5627 14643/* 739 */ MCD::OPC_CheckField, 4, 1, 0, 17, 19, 0, // Skip to: 5627 14644/* 746 */ MCD::OPC_Decode, 227, 24, 187, 3, // Opcode: VRINTZH 14645/* 751 */ MCD::OPC_FilterValue, 7, 24, 0, 0, // Skip to: 780 14646/* 756 */ MCD::OPC_CheckPredicate, 70, 2, 19, 0, // Skip to: 5627 14647/* 761 */ MCD::OPC_CheckField, 7, 1, 0, 251, 18, 0, // Skip to: 5627 14648/* 768 */ MCD::OPC_CheckField, 4, 1, 0, 244, 18, 0, // Skip to: 5627 14649/* 775 */ MCD::OPC_Decode, 220, 24, 187, 3, // Opcode: VRINTXH 14650/* 780 */ MCD::OPC_FilterValue, 8, 47, 0, 0, // Skip to: 832 14651/* 785 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14652/* 788 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 810 14653/* 793 */ MCD::OPC_CheckPredicate, 70, 221, 18, 0, // Skip to: 5627 14654/* 798 */ MCD::OPC_CheckField, 4, 1, 0, 214, 18, 0, // Skip to: 5627 14655/* 805 */ MCD::OPC_Decode, 128, 29, 189, 3, // Opcode: VUITOH 14656/* 810 */ MCD::OPC_FilterValue, 1, 204, 18, 0, // Skip to: 5627 14657/* 815 */ MCD::OPC_CheckPredicate, 70, 199, 18, 0, // Skip to: 5627 14658/* 820 */ MCD::OPC_CheckField, 4, 1, 0, 192, 18, 0, // Skip to: 5627 14659/* 827 */ MCD::OPC_Decode, 246, 25, 189, 3, // Opcode: VSITOH 14660/* 832 */ MCD::OPC_FilterValue, 10, 47, 0, 0, // Skip to: 884 14661/* 837 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14662/* 840 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 862 14663/* 845 */ MCD::OPC_CheckPredicate, 70, 169, 18, 0, // Skip to: 5627 14664/* 850 */ MCD::OPC_CheckField, 4, 1, 0, 162, 18, 0, // Skip to: 5627 14665/* 857 */ MCD::OPC_Decode, 243, 25, 190, 3, // Opcode: VSHTOH 14666/* 862 */ MCD::OPC_FilterValue, 1, 152, 18, 0, // Skip to: 5627 14667/* 867 */ MCD::OPC_CheckPredicate, 70, 147, 18, 0, // Skip to: 5627 14668/* 872 */ MCD::OPC_CheckField, 4, 1, 0, 140, 18, 0, // Skip to: 5627 14669/* 879 */ MCD::OPC_Decode, 129, 26, 190, 3, // Opcode: VSLTOH 14670/* 884 */ MCD::OPC_FilterValue, 11, 47, 0, 0, // Skip to: 936 14671/* 889 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14672/* 892 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 914 14673/* 897 */ MCD::OPC_CheckPredicate, 70, 117, 18, 0, // Skip to: 5627 14674/* 902 */ MCD::OPC_CheckField, 4, 1, 0, 110, 18, 0, // Skip to: 5627 14675/* 909 */ MCD::OPC_Decode, 253, 28, 190, 3, // Opcode: VUHTOH 14676/* 914 */ MCD::OPC_FilterValue, 1, 100, 18, 0, // Skip to: 5627 14677/* 919 */ MCD::OPC_CheckPredicate, 70, 95, 18, 0, // Skip to: 5627 14678/* 924 */ MCD::OPC_CheckField, 4, 1, 0, 88, 18, 0, // Skip to: 5627 14679/* 931 */ MCD::OPC_Decode, 131, 29, 190, 3, // Opcode: VULTOH 14680/* 936 */ MCD::OPC_FilterValue, 12, 47, 0, 0, // Skip to: 988 14681/* 941 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14682/* 944 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 966 14683/* 949 */ MCD::OPC_CheckPredicate, 70, 65, 18, 0, // Skip to: 5627 14684/* 954 */ MCD::OPC_CheckField, 4, 1, 0, 58, 18, 0, // Skip to: 5627 14685/* 961 */ MCD::OPC_Decode, 228, 28, 191, 3, // Opcode: VTOUIRH 14686/* 966 */ MCD::OPC_FilterValue, 1, 48, 18, 0, // Skip to: 5627 14687/* 971 */ MCD::OPC_CheckPredicate, 70, 43, 18, 0, // Skip to: 5627 14688/* 976 */ MCD::OPC_CheckField, 4, 1, 0, 36, 18, 0, // Skip to: 5627 14689/* 983 */ MCD::OPC_Decode, 231, 28, 192, 3, // Opcode: VTOUIZH 14690/* 988 */ MCD::OPC_FilterValue, 13, 47, 0, 0, // Skip to: 1040 14691/* 993 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14692/* 996 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1018 14693/* 1001 */ MCD::OPC_CheckPredicate, 70, 13, 18, 0, // Skip to: 5627 14694/* 1006 */ MCD::OPC_CheckField, 4, 1, 0, 6, 18, 0, // Skip to: 5627 14695/* 1013 */ MCD::OPC_Decode, 216, 28, 191, 3, // Opcode: VTOSIRH 14696/* 1018 */ MCD::OPC_FilterValue, 1, 252, 17, 0, // Skip to: 5627 14697/* 1023 */ MCD::OPC_CheckPredicate, 70, 247, 17, 0, // Skip to: 5627 14698/* 1028 */ MCD::OPC_CheckField, 4, 1, 0, 240, 17, 0, // Skip to: 5627 14699/* 1035 */ MCD::OPC_Decode, 219, 28, 192, 3, // Opcode: VTOSIZH 14700/* 1040 */ MCD::OPC_FilterValue, 14, 47, 0, 0, // Skip to: 1092 14701/* 1045 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14702/* 1048 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1070 14703/* 1053 */ MCD::OPC_CheckPredicate, 70, 217, 17, 0, // Skip to: 5627 14704/* 1058 */ MCD::OPC_CheckField, 4, 1, 0, 210, 17, 0, // Skip to: 5627 14705/* 1065 */ MCD::OPC_Decode, 213, 28, 190, 3, // Opcode: VTOSHH 14706/* 1070 */ MCD::OPC_FilterValue, 1, 200, 17, 0, // Skip to: 5627 14707/* 1075 */ MCD::OPC_CheckPredicate, 70, 195, 17, 0, // Skip to: 5627 14708/* 1080 */ MCD::OPC_CheckField, 4, 1, 0, 188, 17, 0, // Skip to: 5627 14709/* 1087 */ MCD::OPC_Decode, 222, 28, 190, 3, // Opcode: VTOSLH 14710/* 1092 */ MCD::OPC_FilterValue, 15, 178, 17, 0, // Skip to: 5627 14711/* 1097 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 14712/* 1100 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1122 14713/* 1105 */ MCD::OPC_CheckPredicate, 70, 165, 17, 0, // Skip to: 5627 14714/* 1110 */ MCD::OPC_CheckField, 4, 1, 0, 158, 17, 0, // Skip to: 5627 14715/* 1117 */ MCD::OPC_Decode, 225, 28, 190, 3, // Opcode: VTOUHH 14716/* 1122 */ MCD::OPC_FilterValue, 1, 148, 17, 0, // Skip to: 5627 14717/* 1127 */ MCD::OPC_CheckPredicate, 70, 143, 17, 0, // Skip to: 5627 14718/* 1132 */ MCD::OPC_CheckField, 4, 1, 0, 136, 17, 0, // Skip to: 5627 14719/* 1139 */ MCD::OPC_Decode, 234, 28, 190, 3, // Opcode: VTOULH 14720/* 1144 */ MCD::OPC_FilterValue, 10, 105, 7, 0, // Skip to: 3046 14721/* 1149 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 14722/* 1152 */ MCD::OPC_FilterValue, 0, 189, 0, 0, // Skip to: 1346 14723/* 1157 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 14724/* 1160 */ MCD::OPC_FilterValue, 12, 54, 0, 0, // Skip to: 1219 14725/* 1165 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14726/* 1168 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1204 14727/* 1173 */ MCD::OPC_CheckPredicate, 33, 97, 17, 0, // Skip to: 5627 14728/* 1178 */ MCD::OPC_CheckField, 22, 1, 1, 90, 17, 0, // Skip to: 5627 14729/* 1185 */ MCD::OPC_CheckField, 6, 2, 0, 83, 17, 0, // Skip to: 5627 14730/* 1192 */ MCD::OPC_CheckField, 4, 1, 1, 76, 17, 0, // Skip to: 5627 14731/* 1199 */ MCD::OPC_Decode, 214, 21, 193, 3, // Opcode: VMOVSRR 14732/* 1204 */ MCD::OPC_FilterValue, 1, 66, 17, 0, // Skip to: 5627 14733/* 1209 */ MCD::OPC_CheckPredicate, 33, 61, 17, 0, // Skip to: 5627 14734/* 1214 */ MCD::OPC_Decode, 145, 28, 194, 3, // Opcode: VSTMSIA 14735/* 1219 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1234 14736/* 1224 */ MCD::OPC_CheckPredicate, 33, 46, 17, 0, // Skip to: 5627 14737/* 1229 */ MCD::OPC_Decode, 149, 28, 195, 3, // Opcode: VSTRS 14738/* 1234 */ MCD::OPC_FilterValue, 14, 36, 17, 0, // Skip to: 5627 14739/* 1239 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14740/* 1242 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 1310 14741/* 1247 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14742/* 1250 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 1288 14743/* 1255 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14744/* 1258 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1273 14745/* 1263 */ MCD::OPC_CheckPredicate, 32, 7, 17, 0, // Skip to: 5627 14746/* 1268 */ MCD::OPC_Decode, 145, 21, 196, 3, // Opcode: VMLAS 14747/* 1273 */ MCD::OPC_FilterValue, 1, 253, 16, 0, // Skip to: 5627 14748/* 1278 */ MCD::OPC_CheckPredicate, 32, 248, 16, 0, // Skip to: 5627 14749/* 1283 */ MCD::OPC_Decode, 168, 17, 197, 3, // Opcode: VDIVS 14750/* 1288 */ MCD::OPC_FilterValue, 1, 238, 16, 0, // Skip to: 5627 14751/* 1293 */ MCD::OPC_CheckPredicate, 32, 233, 16, 0, // Skip to: 5627 14752/* 1298 */ MCD::OPC_CheckField, 23, 1, 0, 226, 16, 0, // Skip to: 5627 14753/* 1305 */ MCD::OPC_Decode, 176, 21, 196, 3, // Opcode: VMLSS 14754/* 1310 */ MCD::OPC_FilterValue, 1, 216, 16, 0, // Skip to: 5627 14755/* 1315 */ MCD::OPC_CheckPredicate, 33, 211, 16, 0, // Skip to: 5627 14756/* 1320 */ MCD::OPC_CheckField, 22, 2, 0, 204, 16, 0, // Skip to: 5627 14757/* 1327 */ MCD::OPC_CheckField, 5, 2, 0, 197, 16, 0, // Skip to: 5627 14758/* 1334 */ MCD::OPC_CheckField, 0, 4, 0, 190, 16, 0, // Skip to: 5627 14759/* 1341 */ MCD::OPC_Decode, 213, 21, 198, 3, // Opcode: VMOVSR 14760/* 1346 */ MCD::OPC_FilterValue, 1, 229, 0, 0, // Skip to: 1580 14761/* 1351 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 14762/* 1354 */ MCD::OPC_FilterValue, 12, 78, 0, 0, // Skip to: 1437 14763/* 1359 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14764/* 1362 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 1398 14765/* 1367 */ MCD::OPC_CheckPredicate, 33, 159, 16, 0, // Skip to: 5627 14766/* 1372 */ MCD::OPC_CheckField, 22, 1, 1, 152, 16, 0, // Skip to: 5627 14767/* 1379 */ MCD::OPC_CheckField, 6, 2, 0, 145, 16, 0, // Skip to: 5627 14768/* 1386 */ MCD::OPC_CheckField, 4, 1, 1, 138, 16, 0, // Skip to: 5627 14769/* 1393 */ MCD::OPC_Decode, 210, 21, 199, 3, // Opcode: VMOVRRS 14770/* 1398 */ MCD::OPC_FilterValue, 1, 128, 16, 0, // Skip to: 5627 14771/* 1403 */ MCD::OPC_CheckPredicate, 71, 19, 0, 0, // Skip to: 1427 14772/* 1408 */ MCD::OPC_CheckField, 28, 4, 14, 12, 0, 0, // Skip to: 1427 14773/* 1415 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 1427 14774/* 1422 */ MCD::OPC_Decode, 170, 25, 200, 3, // Opcode: VSCCLRMS 14775/* 1427 */ MCD::OPC_CheckPredicate, 33, 99, 16, 0, // Skip to: 5627 14776/* 1432 */ MCD::OPC_Decode, 204, 20, 194, 3, // Opcode: VLDMSIA 14777/* 1437 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 1452 14778/* 1442 */ MCD::OPC_CheckPredicate, 33, 84, 16, 0, // Skip to: 5627 14779/* 1447 */ MCD::OPC_Decode, 208, 20, 195, 3, // Opcode: VLDRS 14780/* 1452 */ MCD::OPC_FilterValue, 14, 74, 16, 0, // Skip to: 5627 14781/* 1457 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14782/* 1460 */ MCD::OPC_FilterValue, 0, 79, 0, 0, // Skip to: 1544 14783/* 1465 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14784/* 1468 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 1506 14785/* 1473 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14786/* 1476 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1491 14787/* 1481 */ MCD::OPC_CheckPredicate, 32, 45, 16, 0, // Skip to: 5627 14788/* 1486 */ MCD::OPC_Decode, 179, 22, 196, 3, // Opcode: VNMLSS 14789/* 1491 */ MCD::OPC_FilterValue, 1, 35, 16, 0, // Skip to: 5627 14790/* 1496 */ MCD::OPC_CheckPredicate, 72, 30, 16, 0, // Skip to: 5627 14791/* 1501 */ MCD::OPC_Decode, 217, 17, 196, 3, // Opcode: VFNMSS 14792/* 1506 */ MCD::OPC_FilterValue, 1, 20, 16, 0, // Skip to: 5627 14793/* 1511 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 14794/* 1514 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1529 14795/* 1519 */ MCD::OPC_CheckPredicate, 32, 7, 16, 0, // Skip to: 5627 14796/* 1524 */ MCD::OPC_Decode, 176, 22, 196, 3, // Opcode: VNMLAS 14797/* 1529 */ MCD::OPC_FilterValue, 1, 253, 15, 0, // Skip to: 5627 14798/* 1534 */ MCD::OPC_CheckPredicate, 72, 248, 15, 0, // Skip to: 5627 14799/* 1539 */ MCD::OPC_Decode, 214, 17, 196, 3, // Opcode: VFNMAS 14800/* 1544 */ MCD::OPC_FilterValue, 1, 238, 15, 0, // Skip to: 5627 14801/* 1549 */ MCD::OPC_CheckPredicate, 33, 233, 15, 0, // Skip to: 5627 14802/* 1554 */ MCD::OPC_CheckField, 22, 2, 0, 226, 15, 0, // Skip to: 5627 14803/* 1561 */ MCD::OPC_CheckField, 5, 2, 0, 219, 15, 0, // Skip to: 5627 14804/* 1568 */ MCD::OPC_CheckField, 0, 4, 0, 212, 15, 0, // Skip to: 5627 14805/* 1575 */ MCD::OPC_Decode, 211, 21, 201, 3, // Opcode: VMOVRS 14806/* 1580 */ MCD::OPC_FilterValue, 2, 179, 1, 0, // Skip to: 2020 14807/* 1585 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14808/* 1588 */ MCD::OPC_FilterValue, 24, 31, 0, 0, // Skip to: 1624 14809/* 1593 */ MCD::OPC_CheckPredicate, 73, 189, 15, 0, // Skip to: 5627 14810/* 1598 */ MCD::OPC_CheckField, 22, 1, 0, 182, 15, 0, // Skip to: 5627 14811/* 1605 */ MCD::OPC_CheckField, 12, 4, 0, 175, 15, 0, // Skip to: 5627 14812/* 1612 */ MCD::OPC_CheckField, 0, 8, 0, 168, 15, 0, // Skip to: 5627 14813/* 1619 */ MCD::OPC_Decode, 228, 20, 202, 3, // Opcode: VLSTM 14814/* 1624 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 1639 14815/* 1629 */ MCD::OPC_CheckPredicate, 33, 153, 15, 0, // Skip to: 5627 14816/* 1634 */ MCD::OPC_Decode, 146, 28, 203, 3, // Opcode: VSTMSIA_UPD 14817/* 1639 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 1654 14818/* 1644 */ MCD::OPC_CheckPredicate, 33, 138, 15, 0, // Skip to: 5627 14819/* 1649 */ MCD::OPC_Decode, 144, 28, 203, 3, // Opcode: VSTMSDB_UPD 14820/* 1654 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 1706 14821/* 1659 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14822/* 1662 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 1684 14823/* 1667 */ MCD::OPC_CheckPredicate, 32, 115, 15, 0, // Skip to: 5627 14824/* 1672 */ MCD::OPC_CheckField, 4, 1, 0, 108, 15, 0, // Skip to: 5627 14825/* 1679 */ MCD::OPC_Decode, 134, 22, 197, 3, // Opcode: VMULS 14826/* 1684 */ MCD::OPC_FilterValue, 1, 98, 15, 0, // Skip to: 5627 14827/* 1689 */ MCD::OPC_CheckPredicate, 32, 93, 15, 0, // Skip to: 5627 14828/* 1694 */ MCD::OPC_CheckField, 4, 1, 0, 86, 15, 0, // Skip to: 5627 14829/* 1701 */ MCD::OPC_Decode, 182, 22, 197, 3, // Opcode: VNMULS 14830/* 1706 */ MCD::OPC_FilterValue, 29, 76, 15, 0, // Skip to: 5627 14831/* 1711 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14832/* 1714 */ MCD::OPC_FilterValue, 0, 33, 0, 0, // Skip to: 1752 14833/* 1719 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14834/* 1722 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 1737 14835/* 1727 */ MCD::OPC_CheckPredicate, 72, 55, 15, 0, // Skip to: 5627 14836/* 1732 */ MCD::OPC_Decode, 196, 17, 196, 3, // Opcode: VFMAS 14837/* 1737 */ MCD::OPC_FilterValue, 1, 45, 15, 0, // Skip to: 5627 14838/* 1742 */ MCD::OPC_CheckPredicate, 72, 40, 15, 0, // Skip to: 5627 14839/* 1747 */ MCD::OPC_Decode, 207, 17, 196, 3, // Opcode: VFMSS 14840/* 1752 */ MCD::OPC_FilterValue, 1, 30, 15, 0, // Skip to: 5627 14841/* 1757 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 14842/* 1760 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 1786 14843/* 1765 */ MCD::OPC_CheckPredicate, 32, 17, 15, 0, // Skip to: 5627 14844/* 1770 */ MCD::OPC_CheckField, 22, 1, 1, 10, 15, 0, // Skip to: 5627 14845/* 1777 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14846/* 1781 */ MCD::OPC_Decode, 245, 21, 204, 3, // Opcode: VMSR_FPSID 14847/* 1786 */ MCD::OPC_FilterValue, 1, 21, 0, 0, // Skip to: 1812 14848/* 1791 */ MCD::OPC_CheckPredicate, 33, 247, 14, 0, // Skip to: 5627 14849/* 1796 */ MCD::OPC_CheckField, 22, 1, 1, 240, 14, 0, // Skip to: 5627 14850/* 1803 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14851/* 1807 */ MCD::OPC_Decode, 238, 21, 204, 3, // Opcode: VMSR 14852/* 1812 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 1838 14853/* 1817 */ MCD::OPC_CheckPredicate, 74, 221, 14, 0, // Skip to: 5627 14854/* 1822 */ MCD::OPC_CheckField, 22, 1, 1, 214, 14, 0, // Skip to: 5627 14855/* 1829 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14856/* 1833 */ MCD::OPC_Decode, 244, 21, 204, 3, // Opcode: VMSR_FPSCR_NZCVQC 14857/* 1838 */ MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 1864 14858/* 1843 */ MCD::OPC_CheckPredicate, 32, 195, 14, 0, // Skip to: 5627 14859/* 1848 */ MCD::OPC_CheckField, 22, 1, 1, 188, 14, 0, // Skip to: 5627 14860/* 1855 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14861/* 1859 */ MCD::OPC_Decode, 241, 21, 204, 3, // Opcode: VMSR_FPEXC 14862/* 1864 */ MCD::OPC_FilterValue, 9, 21, 0, 0, // Skip to: 1890 14863/* 1869 */ MCD::OPC_CheckPredicate, 32, 169, 14, 0, // Skip to: 5627 14864/* 1874 */ MCD::OPC_CheckField, 22, 1, 1, 162, 14, 0, // Skip to: 5627 14865/* 1881 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14866/* 1885 */ MCD::OPC_Decode, 242, 21, 204, 3, // Opcode: VMSR_FPINST 14867/* 1890 */ MCD::OPC_FilterValue, 10, 21, 0, 0, // Skip to: 1916 14868/* 1895 */ MCD::OPC_CheckPredicate, 32, 143, 14, 0, // Skip to: 5627 14869/* 1900 */ MCD::OPC_CheckField, 22, 1, 1, 136, 14, 0, // Skip to: 5627 14870/* 1907 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14871/* 1911 */ MCD::OPC_Decode, 243, 21, 204, 3, // Opcode: VMSR_FPINST2 14872/* 1916 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 1942 14873/* 1921 */ MCD::OPC_CheckPredicate, 23, 117, 14, 0, // Skip to: 5627 14874/* 1926 */ MCD::OPC_CheckField, 22, 1, 1, 110, 14, 0, // Skip to: 5627 14875/* 1933 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14876/* 1937 */ MCD::OPC_Decode, 247, 21, 204, 3, // Opcode: VMSR_VPR 14877/* 1942 */ MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 1968 14878/* 1947 */ MCD::OPC_CheckPredicate, 23, 91, 14, 0, // Skip to: 5627 14879/* 1952 */ MCD::OPC_CheckField, 22, 1, 1, 84, 14, 0, // Skip to: 5627 14880/* 1959 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14881/* 1963 */ MCD::OPC_Decode, 246, 21, 204, 3, // Opcode: VMSR_P0 14882/* 1968 */ MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 1994 14883/* 1973 */ MCD::OPC_CheckPredicate, 71, 65, 14, 0, // Skip to: 5627 14884/* 1978 */ MCD::OPC_CheckField, 22, 1, 1, 58, 14, 0, // Skip to: 5627 14885/* 1985 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14886/* 1989 */ MCD::OPC_Decode, 239, 21, 204, 3, // Opcode: VMSR_FPCXTNS 14887/* 1994 */ MCD::OPC_FilterValue, 15, 44, 14, 0, // Skip to: 5627 14888/* 1999 */ MCD::OPC_CheckPredicate, 71, 39, 14, 0, // Skip to: 5627 14889/* 2004 */ MCD::OPC_CheckField, 22, 1, 1, 32, 14, 0, // Skip to: 5627 14890/* 2011 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 14891/* 2015 */ MCD::OPC_Decode, 240, 21, 204, 3, // Opcode: VMSR_FPCXTS 14892/* 2020 */ MCD::OPC_FilterValue, 3, 18, 14, 0, // Skip to: 5627 14893/* 2025 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 14894/* 2028 */ MCD::OPC_FilterValue, 24, 31, 0, 0, // Skip to: 2064 14895/* 2033 */ MCD::OPC_CheckPredicate, 73, 5, 14, 0, // Skip to: 5627 14896/* 2038 */ MCD::OPC_CheckField, 22, 1, 0, 254, 13, 0, // Skip to: 5627 14897/* 2045 */ MCD::OPC_CheckField, 12, 4, 0, 247, 13, 0, // Skip to: 5627 14898/* 2052 */ MCD::OPC_CheckField, 0, 8, 0, 240, 13, 0, // Skip to: 5627 14899/* 2059 */ MCD::OPC_Decode, 227, 20, 202, 3, // Opcode: VLLDM 14900/* 2064 */ MCD::OPC_FilterValue, 25, 10, 0, 0, // Skip to: 2079 14901/* 2069 */ MCD::OPC_CheckPredicate, 33, 225, 13, 0, // Skip to: 5627 14902/* 2074 */ MCD::OPC_Decode, 205, 20, 203, 3, // Opcode: VLDMSIA_UPD 14903/* 2079 */ MCD::OPC_FilterValue, 26, 10, 0, 0, // Skip to: 2094 14904/* 2084 */ MCD::OPC_CheckPredicate, 33, 210, 13, 0, // Skip to: 5627 14905/* 2089 */ MCD::OPC_Decode, 203, 20, 203, 3, // Opcode: VLDMSDB_UPD 14906/* 2094 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 2146 14907/* 2099 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 14908/* 2102 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2124 14909/* 2107 */ MCD::OPC_CheckPredicate, 32, 187, 13, 0, // Skip to: 5627 14910/* 2112 */ MCD::OPC_CheckField, 4, 1, 0, 180, 13, 0, // Skip to: 5627 14911/* 2119 */ MCD::OPC_Decode, 159, 15, 197, 3, // Opcode: VADDS 14912/* 2124 */ MCD::OPC_FilterValue, 1, 170, 13, 0, // Skip to: 5627 14913/* 2129 */ MCD::OPC_CheckPredicate, 32, 165, 13, 0, // Skip to: 5627 14914/* 2134 */ MCD::OPC_CheckField, 4, 1, 0, 158, 13, 0, // Skip to: 5627 14915/* 2141 */ MCD::OPC_Decode, 179, 28, 197, 3, // Opcode: VSUBS 14916/* 2146 */ MCD::OPC_FilterValue, 29, 148, 13, 0, // Skip to: 5627 14917/* 2151 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 14918/* 2154 */ MCD::OPC_FilterValue, 0, 7, 2, 0, // Skip to: 2678 14919/* 2159 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 14920/* 2162 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 2184 14921/* 2167 */ MCD::OPC_CheckPredicate, 75, 127, 13, 0, // Skip to: 5627 14922/* 2172 */ MCD::OPC_CheckField, 5, 1, 0, 120, 13, 0, // Skip to: 5627 14923/* 2179 */ MCD::OPC_Decode, 155, 5, 205, 3, // Opcode: FCONSTS 14924/* 2184 */ MCD::OPC_FilterValue, 1, 242, 0, 0, // Skip to: 2431 14925/* 2189 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 14926/* 2192 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2207 14927/* 2197 */ MCD::OPC_CheckPredicate, 33, 97, 13, 0, // Skip to: 5627 14928/* 2202 */ MCD::OPC_Decode, 212, 21, 191, 3, // Opcode: VMOVS 14929/* 2207 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2222 14930/* 2212 */ MCD::OPC_CheckPredicate, 32, 82, 13, 0, // Skip to: 5627 14931/* 2217 */ MCD::OPC_Decode, 163, 22, 191, 3, // Opcode: VNEGS 14932/* 2222 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2237 14933/* 2227 */ MCD::OPC_CheckPredicate, 76, 67, 13, 0, // Skip to: 5627 14934/* 2232 */ MCD::OPC_Decode, 210, 16, 191, 3, // Opcode: VCVTBHS 14935/* 2237 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2252 14936/* 2242 */ MCD::OPC_CheckPredicate, 76, 52, 13, 0, // Skip to: 5627 14937/* 2247 */ MCD::OPC_Decode, 211, 16, 191, 3, // Opcode: VCVTBSH 14938/* 2252 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 2267 14939/* 2257 */ MCD::OPC_CheckPredicate, 32, 37, 13, 0, // Skip to: 5627 14940/* 2262 */ MCD::OPC_Decode, 188, 16, 191, 3, // Opcode: VCMPS 14941/* 2267 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 2296 14942/* 2272 */ MCD::OPC_CheckPredicate, 32, 22, 13, 0, // Skip to: 5627 14943/* 2277 */ MCD::OPC_CheckField, 5, 1, 0, 15, 13, 0, // Skip to: 5627 14944/* 2284 */ MCD::OPC_CheckField, 0, 4, 0, 8, 13, 0, // Skip to: 5627 14945/* 2291 */ MCD::OPC_Decode, 191, 16, 206, 3, // Opcode: VCMPZS 14946/* 2296 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 2311 14947/* 2301 */ MCD::OPC_CheckPredicate, 77, 249, 12, 0, // Skip to: 5627 14948/* 2306 */ MCD::OPC_Decode, 218, 24, 191, 3, // Opcode: VRINTRS 14949/* 2311 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 2326 14950/* 2316 */ MCD::OPC_CheckPredicate, 77, 234, 12, 0, // Skip to: 5627 14951/* 2321 */ MCD::OPC_Decode, 225, 24, 191, 3, // Opcode: VRINTXS 14952/* 2326 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 2341 14953/* 2331 */ MCD::OPC_CheckPredicate, 32, 219, 12, 0, // Skip to: 5627 14954/* 2336 */ MCD::OPC_Decode, 129, 29, 191, 3, // Opcode: VUITOS 14955/* 2341 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 2356 14956/* 2346 */ MCD::OPC_CheckPredicate, 32, 204, 12, 0, // Skip to: 5627 14957/* 2351 */ MCD::OPC_Decode, 244, 25, 190, 3, // Opcode: VSHTOS 14958/* 2356 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 2371 14959/* 2361 */ MCD::OPC_CheckPredicate, 32, 189, 12, 0, // Skip to: 5627 14960/* 2366 */ MCD::OPC_Decode, 254, 28, 190, 3, // Opcode: VUHTOS 14961/* 2371 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 2386 14962/* 2376 */ MCD::OPC_CheckPredicate, 32, 174, 12, 0, // Skip to: 5627 14963/* 2381 */ MCD::OPC_Decode, 229, 28, 191, 3, // Opcode: VTOUIRS 14964/* 2386 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2401 14965/* 2391 */ MCD::OPC_CheckPredicate, 32, 159, 12, 0, // Skip to: 5627 14966/* 2396 */ MCD::OPC_Decode, 217, 28, 191, 3, // Opcode: VTOSIRS 14967/* 2401 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 2416 14968/* 2406 */ MCD::OPC_CheckPredicate, 32, 144, 12, 0, // Skip to: 5627 14969/* 2411 */ MCD::OPC_Decode, 214, 28, 190, 3, // Opcode: VTOSHS 14970/* 2416 */ MCD::OPC_FilterValue, 15, 134, 12, 0, // Skip to: 5627 14971/* 2421 */ MCD::OPC_CheckPredicate, 32, 129, 12, 0, // Skip to: 5627 14972/* 2426 */ MCD::OPC_Decode, 226, 28, 190, 3, // Opcode: VTOUHS 14973/* 2431 */ MCD::OPC_FilterValue, 3, 119, 12, 0, // Skip to: 5627 14974/* 2436 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 14975/* 2439 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 2454 14976/* 2444 */ MCD::OPC_CheckPredicate, 32, 106, 12, 0, // Skip to: 5627 14977/* 2449 */ MCD::OPC_Decode, 129, 15, 191, 3, // Opcode: VABSS 14978/* 2454 */ MCD::OPC_FilterValue, 1, 10, 0, 0, // Skip to: 2469 14979/* 2459 */ MCD::OPC_CheckPredicate, 32, 91, 12, 0, // Skip to: 5627 14980/* 2464 */ MCD::OPC_Decode, 133, 26, 191, 3, // Opcode: VSQRTS 14981/* 2469 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 2484 14982/* 2474 */ MCD::OPC_CheckPredicate, 76, 76, 12, 0, // Skip to: 5627 14983/* 2479 */ MCD::OPC_Decode, 130, 17, 191, 3, // Opcode: VCVTTHS 14984/* 2484 */ MCD::OPC_FilterValue, 3, 10, 0, 0, // Skip to: 2499 14985/* 2489 */ MCD::OPC_CheckPredicate, 76, 61, 12, 0, // Skip to: 5627 14986/* 2494 */ MCD::OPC_Decode, 131, 17, 191, 3, // Opcode: VCVTTSH 14987/* 2499 */ MCD::OPC_FilterValue, 4, 10, 0, 0, // Skip to: 2514 14988/* 2504 */ MCD::OPC_CheckPredicate, 32, 46, 12, 0, // Skip to: 5627 14989/* 2509 */ MCD::OPC_Decode, 183, 16, 191, 3, // Opcode: VCMPES 14990/* 2514 */ MCD::OPC_FilterValue, 5, 24, 0, 0, // Skip to: 2543 14991/* 2519 */ MCD::OPC_CheckPredicate, 32, 31, 12, 0, // Skip to: 5627 14992/* 2524 */ MCD::OPC_CheckField, 5, 1, 0, 24, 12, 0, // Skip to: 5627 14993/* 2531 */ MCD::OPC_CheckField, 0, 4, 0, 17, 12, 0, // Skip to: 5627 14994/* 2538 */ MCD::OPC_Decode, 186, 16, 206, 3, // Opcode: VCMPEZS 14995/* 2543 */ MCD::OPC_FilterValue, 6, 10, 0, 0, // Skip to: 2558 14996/* 2548 */ MCD::OPC_CheckPredicate, 77, 2, 12, 0, // Skip to: 5627 14997/* 2553 */ MCD::OPC_Decode, 232, 24, 191, 3, // Opcode: VRINTZS 14998/* 2558 */ MCD::OPC_FilterValue, 7, 10, 0, 0, // Skip to: 2573 14999/* 2563 */ MCD::OPC_CheckPredicate, 78, 243, 11, 0, // Skip to: 5627 15000/* 2568 */ MCD::OPC_Decode, 212, 16, 207, 3, // Opcode: VCVTDS 15001/* 2573 */ MCD::OPC_FilterValue, 8, 10, 0, 0, // Skip to: 2588 15002/* 2578 */ MCD::OPC_CheckPredicate, 32, 228, 11, 0, // Skip to: 5627 15003/* 2583 */ MCD::OPC_Decode, 247, 25, 191, 3, // Opcode: VSITOS 15004/* 2588 */ MCD::OPC_FilterValue, 10, 10, 0, 0, // Skip to: 2603 15005/* 2593 */ MCD::OPC_CheckPredicate, 32, 213, 11, 0, // Skip to: 5627 15006/* 2598 */ MCD::OPC_Decode, 130, 26, 190, 3, // Opcode: VSLTOS 15007/* 2603 */ MCD::OPC_FilterValue, 11, 10, 0, 0, // Skip to: 2618 15008/* 2608 */ MCD::OPC_CheckPredicate, 32, 198, 11, 0, // Skip to: 5627 15009/* 2613 */ MCD::OPC_Decode, 132, 29, 190, 3, // Opcode: VULTOS 15010/* 2618 */ MCD::OPC_FilterValue, 12, 10, 0, 0, // Skip to: 2633 15011/* 2623 */ MCD::OPC_CheckPredicate, 32, 183, 11, 0, // Skip to: 5627 15012/* 2628 */ MCD::OPC_Decode, 232, 28, 191, 3, // Opcode: VTOUIZS 15013/* 2633 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 2648 15014/* 2638 */ MCD::OPC_CheckPredicate, 32, 168, 11, 0, // Skip to: 5627 15015/* 2643 */ MCD::OPC_Decode, 220, 28, 191, 3, // Opcode: VTOSIZS 15016/* 2648 */ MCD::OPC_FilterValue, 14, 10, 0, 0, // Skip to: 2663 15017/* 2653 */ MCD::OPC_CheckPredicate, 32, 153, 11, 0, // Skip to: 5627 15018/* 2658 */ MCD::OPC_Decode, 223, 28, 190, 3, // Opcode: VTOSLS 15019/* 2663 */ MCD::OPC_FilterValue, 15, 143, 11, 0, // Skip to: 5627 15020/* 2668 */ MCD::OPC_CheckPredicate, 32, 138, 11, 0, // Skip to: 5627 15021/* 2673 */ MCD::OPC_Decode, 235, 28, 190, 3, // Opcode: VTOULS 15022/* 2678 */ MCD::OPC_FilterValue, 1, 128, 11, 0, // Skip to: 5627 15023/* 2683 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15024/* 2686 */ MCD::OPC_FilterValue, 0, 21, 0, 0, // Skip to: 2712 15025/* 2691 */ MCD::OPC_CheckPredicate, 32, 115, 11, 0, // Skip to: 5627 15026/* 2696 */ MCD::OPC_CheckField, 22, 1, 1, 108, 11, 0, // Skip to: 5627 15027/* 2703 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15028/* 2707 */ MCD::OPC_Decode, 232, 21, 204, 3, // Opcode: VMRS_FPSID 15029/* 2712 */ MCD::OPC_FilterValue, 1, 43, 0, 0, // Skip to: 2760 15030/* 2717 */ MCD::OPC_ExtractField, 22, 1, // Inst{22} ... 15031/* 2720 */ MCD::OPC_FilterValue, 1, 86, 11, 0, // Skip to: 5627 15032/* 2725 */ MCD::OPC_CheckPredicate, 33, 16, 0, 0, // Skip to: 2746 15033/* 2730 */ MCD::OPC_CheckField, 12, 4, 15, 9, 0, 0, // Skip to: 2746 15034/* 2737 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15035/* 2741 */ MCD::OPC_Decode, 159, 5, 204, 3, // Opcode: FMSTAT 15036/* 2746 */ MCD::OPC_CheckPredicate, 33, 60, 11, 0, // Skip to: 5627 15037/* 2751 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15038/* 2755 */ MCD::OPC_Decode, 225, 21, 204, 3, // Opcode: VMRS 15039/* 2760 */ MCD::OPC_FilterValue, 2, 21, 0, 0, // Skip to: 2786 15040/* 2765 */ MCD::OPC_CheckPredicate, 74, 41, 11, 0, // Skip to: 5627 15041/* 2770 */ MCD::OPC_CheckField, 22, 1, 1, 34, 11, 0, // Skip to: 5627 15042/* 2777 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15043/* 2781 */ MCD::OPC_Decode, 231, 21, 204, 3, // Opcode: VMRS_FPSCR_NZCVQC 15044/* 2786 */ MCD::OPC_FilterValue, 5, 21, 0, 0, // Skip to: 2812 15045/* 2791 */ MCD::OPC_CheckPredicate, 77, 15, 11, 0, // Skip to: 5627 15046/* 2796 */ MCD::OPC_CheckField, 22, 1, 1, 8, 11, 0, // Skip to: 5627 15047/* 2803 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15048/* 2807 */ MCD::OPC_Decode, 235, 21, 204, 3, // Opcode: VMRS_MVFR2 15049/* 2812 */ MCD::OPC_FilterValue, 6, 21, 0, 0, // Skip to: 2838 15050/* 2817 */ MCD::OPC_CheckPredicate, 32, 245, 10, 0, // Skip to: 5627 15051/* 2822 */ MCD::OPC_CheckField, 22, 1, 1, 238, 10, 0, // Skip to: 5627 15052/* 2829 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15053/* 2833 */ MCD::OPC_Decode, 234, 21, 204, 3, // Opcode: VMRS_MVFR1 15054/* 2838 */ MCD::OPC_FilterValue, 7, 21, 0, 0, // Skip to: 2864 15055/* 2843 */ MCD::OPC_CheckPredicate, 32, 219, 10, 0, // Skip to: 5627 15056/* 2848 */ MCD::OPC_CheckField, 22, 1, 1, 212, 10, 0, // Skip to: 5627 15057/* 2855 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15058/* 2859 */ MCD::OPC_Decode, 233, 21, 204, 3, // Opcode: VMRS_MVFR0 15059/* 2864 */ MCD::OPC_FilterValue, 8, 21, 0, 0, // Skip to: 2890 15060/* 2869 */ MCD::OPC_CheckPredicate, 32, 193, 10, 0, // Skip to: 5627 15061/* 2874 */ MCD::OPC_CheckField, 22, 1, 1, 186, 10, 0, // Skip to: 5627 15062/* 2881 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15063/* 2885 */ MCD::OPC_Decode, 228, 21, 204, 3, // Opcode: VMRS_FPEXC 15064/* 2890 */ MCD::OPC_FilterValue, 9, 21, 0, 0, // Skip to: 2916 15065/* 2895 */ MCD::OPC_CheckPredicate, 32, 167, 10, 0, // Skip to: 5627 15066/* 2900 */ MCD::OPC_CheckField, 22, 1, 1, 160, 10, 0, // Skip to: 5627 15067/* 2907 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15068/* 2911 */ MCD::OPC_Decode, 229, 21, 204, 3, // Opcode: VMRS_FPINST 15069/* 2916 */ MCD::OPC_FilterValue, 10, 21, 0, 0, // Skip to: 2942 15070/* 2921 */ MCD::OPC_CheckPredicate, 32, 141, 10, 0, // Skip to: 5627 15071/* 2926 */ MCD::OPC_CheckField, 22, 1, 1, 134, 10, 0, // Skip to: 5627 15072/* 2933 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15073/* 2937 */ MCD::OPC_Decode, 230, 21, 204, 3, // Opcode: VMRS_FPINST2 15074/* 2942 */ MCD::OPC_FilterValue, 12, 21, 0, 0, // Skip to: 2968 15075/* 2947 */ MCD::OPC_CheckPredicate, 23, 115, 10, 0, // Skip to: 5627 15076/* 2952 */ MCD::OPC_CheckField, 22, 1, 1, 108, 10, 0, // Skip to: 5627 15077/* 2959 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15078/* 2963 */ MCD::OPC_Decode, 237, 21, 204, 3, // Opcode: VMRS_VPR 15079/* 2968 */ MCD::OPC_FilterValue, 13, 21, 0, 0, // Skip to: 2994 15080/* 2973 */ MCD::OPC_CheckPredicate, 23, 89, 10, 0, // Skip to: 5627 15081/* 2978 */ MCD::OPC_CheckField, 22, 1, 1, 82, 10, 0, // Skip to: 5627 15082/* 2985 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15083/* 2989 */ MCD::OPC_Decode, 236, 21, 204, 3, // Opcode: VMRS_P0 15084/* 2994 */ MCD::OPC_FilterValue, 14, 21, 0, 0, // Skip to: 3020 15085/* 2999 */ MCD::OPC_CheckPredicate, 71, 63, 10, 0, // Skip to: 5627 15086/* 3004 */ MCD::OPC_CheckField, 22, 1, 1, 56, 10, 0, // Skip to: 5627 15087/* 3011 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15088/* 3015 */ MCD::OPC_Decode, 226, 21, 204, 3, // Opcode: VMRS_FPCXTNS 15089/* 3020 */ MCD::OPC_FilterValue, 15, 42, 10, 0, // Skip to: 5627 15090/* 3025 */ MCD::OPC_CheckPredicate, 71, 37, 10, 0, // Skip to: 5627 15091/* 3030 */ MCD::OPC_CheckField, 22, 1, 1, 30, 10, 0, // Skip to: 5627 15092/* 3037 */ MCD::OPC_SoftFail, 239, 1 /* 0xef */, 0, 15093/* 3041 */ MCD::OPC_Decode, 227, 21, 204, 3, // Opcode: VMRS_FPCXTS 15094/* 3046 */ MCD::OPC_FilterValue, 11, 252, 5, 0, // Skip to: 4583 15095/* 3051 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15096/* 3054 */ MCD::OPC_FilterValue, 0, 196, 0, 0, // Skip to: 3255 15097/* 3059 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15098/* 3062 */ MCD::OPC_FilterValue, 12, 84, 0, 0, // Skip to: 3151 15099/* 3067 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 15100/* 3070 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 3106 15101/* 3075 */ MCD::OPC_CheckPredicate, 33, 243, 9, 0, // Skip to: 5627 15102/* 3080 */ MCD::OPC_CheckField, 22, 1, 1, 236, 9, 0, // Skip to: 5627 15103/* 3087 */ MCD::OPC_CheckField, 6, 2, 0, 229, 9, 0, // Skip to: 5627 15104/* 3094 */ MCD::OPC_CheckField, 4, 1, 1, 222, 9, 0, // Skip to: 5627 15105/* 3101 */ MCD::OPC_Decode, 196, 21, 208, 3, // Opcode: VMOVDRR 15106/* 3106 */ MCD::OPC_FilterValue, 1, 212, 9, 0, // Skip to: 5627 15107/* 3111 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15108/* 3114 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3129 15109/* 3119 */ MCD::OPC_CheckPredicate, 33, 199, 9, 0, // Skip to: 5627 15110/* 3124 */ MCD::OPC_Decode, 141, 28, 209, 3, // Opcode: VSTMDIA 15111/* 3129 */ MCD::OPC_FilterValue, 1, 189, 9, 0, // Skip to: 5627 15112/* 3134 */ MCD::OPC_CheckPredicate, 33, 184, 9, 0, // Skip to: 5627 15113/* 3139 */ MCD::OPC_CheckField, 22, 1, 0, 177, 9, 0, // Skip to: 5627 15114/* 3146 */ MCD::OPC_Decode, 161, 5, 210, 3, // Opcode: FSTMXIA 15115/* 3151 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3166 15116/* 3156 */ MCD::OPC_CheckPredicate, 33, 162, 9, 0, // Skip to: 5627 15117/* 3161 */ MCD::OPC_Decode, 147, 28, 211, 3, // Opcode: VSTRD 15118/* 3166 */ MCD::OPC_FilterValue, 14, 152, 9, 0, // Skip to: 5627 15119/* 3171 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15120/* 3174 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 3226 15121/* 3179 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 15122/* 3182 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3204 15123/* 3187 */ MCD::OPC_CheckPredicate, 78, 131, 9, 0, // Skip to: 5627 15124/* 3192 */ MCD::OPC_CheckField, 4, 1, 0, 124, 9, 0, // Skip to: 5627 15125/* 3199 */ MCD::OPC_Decode, 133, 21, 212, 3, // Opcode: VMLAD 15126/* 3204 */ MCD::OPC_FilterValue, 1, 114, 9, 0, // Skip to: 5627 15127/* 3209 */ MCD::OPC_CheckPredicate, 78, 109, 9, 0, // Skip to: 5627 15128/* 3214 */ MCD::OPC_CheckField, 4, 1, 0, 102, 9, 0, // Skip to: 5627 15129/* 3221 */ MCD::OPC_Decode, 166, 17, 213, 3, // Opcode: VDIVD 15130/* 3226 */ MCD::OPC_FilterValue, 1, 92, 9, 0, // Skip to: 5627 15131/* 3231 */ MCD::OPC_CheckPredicate, 78, 87, 9, 0, // Skip to: 5627 15132/* 3236 */ MCD::OPC_CheckField, 23, 1, 0, 80, 9, 0, // Skip to: 5627 15133/* 3243 */ MCD::OPC_CheckField, 4, 1, 0, 73, 9, 0, // Skip to: 5627 15134/* 3250 */ MCD::OPC_Decode, 164, 21, 212, 3, // Opcode: VMLSD 15135/* 3255 */ MCD::OPC_FilterValue, 1, 243, 0, 0, // Skip to: 3503 15136/* 3260 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15137/* 3263 */ MCD::OPC_FilterValue, 12, 108, 0, 0, // Skip to: 3376 15138/* 3268 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 15139/* 3271 */ MCD::OPC_FilterValue, 0, 31, 0, 0, // Skip to: 3307 15140/* 3276 */ MCD::OPC_CheckPredicate, 33, 42, 9, 0, // Skip to: 5627 15141/* 3281 */ MCD::OPC_CheckField, 22, 1, 1, 35, 9, 0, // Skip to: 5627 15142/* 3288 */ MCD::OPC_CheckField, 6, 2, 0, 28, 9, 0, // Skip to: 5627 15143/* 3295 */ MCD::OPC_CheckField, 4, 1, 1, 21, 9, 0, // Skip to: 5627 15144/* 3302 */ MCD::OPC_Decode, 209, 21, 214, 3, // Opcode: VMOVRRD 15145/* 3307 */ MCD::OPC_FilterValue, 1, 11, 9, 0, // Skip to: 5627 15146/* 3312 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15147/* 3315 */ MCD::OPC_FilterValue, 0, 34, 0, 0, // Skip to: 3354 15148/* 3320 */ MCD::OPC_CheckPredicate, 71, 19, 0, 0, // Skip to: 3344 15149/* 3325 */ MCD::OPC_CheckField, 28, 4, 14, 12, 0, 0, // Skip to: 3344 15150/* 3332 */ MCD::OPC_CheckField, 16, 4, 15, 5, 0, 0, // Skip to: 3344 15151/* 3339 */ MCD::OPC_Decode, 169, 25, 200, 3, // Opcode: VSCCLRMD 15152/* 3344 */ MCD::OPC_CheckPredicate, 33, 230, 8, 0, // Skip to: 5627 15153/* 3349 */ MCD::OPC_Decode, 200, 20, 209, 3, // Opcode: VLDMDIA 15154/* 3354 */ MCD::OPC_FilterValue, 1, 220, 8, 0, // Skip to: 5627 15155/* 3359 */ MCD::OPC_CheckPredicate, 33, 215, 8, 0, // Skip to: 5627 15156/* 3364 */ MCD::OPC_CheckField, 22, 1, 0, 208, 8, 0, // Skip to: 5627 15157/* 3371 */ MCD::OPC_Decode, 157, 5, 210, 3, // Opcode: FLDMXIA 15158/* 3376 */ MCD::OPC_FilterValue, 13, 10, 0, 0, // Skip to: 3391 15159/* 3381 */ MCD::OPC_CheckPredicate, 33, 193, 8, 0, // Skip to: 5627 15160/* 3386 */ MCD::OPC_Decode, 206, 20, 211, 3, // Opcode: VLDRD 15161/* 3391 */ MCD::OPC_FilterValue, 14, 183, 8, 0, // Skip to: 5627 15162/* 3396 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15163/* 3399 */ MCD::OPC_FilterValue, 0, 47, 0, 0, // Skip to: 3451 15164/* 3404 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 15165/* 3407 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3429 15166/* 3412 */ MCD::OPC_CheckPredicate, 78, 162, 8, 0, // Skip to: 5627 15167/* 3417 */ MCD::OPC_CheckField, 4, 1, 0, 155, 8, 0, // Skip to: 5627 15168/* 3424 */ MCD::OPC_Decode, 177, 22, 212, 3, // Opcode: VNMLSD 15169/* 3429 */ MCD::OPC_FilterValue, 1, 145, 8, 0, // Skip to: 5627 15170/* 3434 */ MCD::OPC_CheckPredicate, 79, 140, 8, 0, // Skip to: 5627 15171/* 3439 */ MCD::OPC_CheckField, 4, 1, 0, 133, 8, 0, // Skip to: 5627 15172/* 3446 */ MCD::OPC_Decode, 215, 17, 212, 3, // Opcode: VFNMSD 15173/* 3451 */ MCD::OPC_FilterValue, 1, 123, 8, 0, // Skip to: 5627 15174/* 3456 */ MCD::OPC_ExtractField, 23, 1, // Inst{23} ... 15175/* 3459 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3481 15176/* 3464 */ MCD::OPC_CheckPredicate, 78, 110, 8, 0, // Skip to: 5627 15177/* 3469 */ MCD::OPC_CheckField, 4, 1, 0, 103, 8, 0, // Skip to: 5627 15178/* 3476 */ MCD::OPC_Decode, 174, 22, 212, 3, // Opcode: VNMLAD 15179/* 3481 */ MCD::OPC_FilterValue, 1, 93, 8, 0, // Skip to: 5627 15180/* 3486 */ MCD::OPC_CheckPredicate, 79, 88, 8, 0, // Skip to: 5627 15181/* 3491 */ MCD::OPC_CheckField, 4, 1, 0, 81, 8, 0, // Skip to: 5627 15182/* 3498 */ MCD::OPC_Decode, 212, 17, 212, 3, // Opcode: VFNMAD 15183/* 3503 */ MCD::OPC_FilterValue, 2, 197, 0, 0, // Skip to: 3705 15184/* 3508 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 15185/* 3511 */ MCD::OPC_FilterValue, 25, 40, 0, 0, // Skip to: 3556 15186/* 3516 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15187/* 3519 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3534 15188/* 3524 */ MCD::OPC_CheckPredicate, 33, 50, 8, 0, // Skip to: 5627 15189/* 3529 */ MCD::OPC_Decode, 142, 28, 215, 3, // Opcode: VSTMDIA_UPD 15190/* 3534 */ MCD::OPC_FilterValue, 1, 40, 8, 0, // Skip to: 5627 15191/* 3539 */ MCD::OPC_CheckPredicate, 33, 35, 8, 0, // Skip to: 5627 15192/* 3544 */ MCD::OPC_CheckField, 22, 1, 0, 28, 8, 0, // Skip to: 5627 15193/* 3551 */ MCD::OPC_Decode, 162, 5, 216, 3, // Opcode: FSTMXIA_UPD 15194/* 3556 */ MCD::OPC_FilterValue, 26, 40, 0, 0, // Skip to: 3601 15195/* 3561 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15196/* 3564 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3579 15197/* 3569 */ MCD::OPC_CheckPredicate, 33, 5, 8, 0, // Skip to: 5627 15198/* 3574 */ MCD::OPC_Decode, 140, 28, 215, 3, // Opcode: VSTMDDB_UPD 15199/* 3579 */ MCD::OPC_FilterValue, 1, 251, 7, 0, // Skip to: 5627 15200/* 3584 */ MCD::OPC_CheckPredicate, 33, 246, 7, 0, // Skip to: 5627 15201/* 3589 */ MCD::OPC_CheckField, 22, 1, 0, 239, 7, 0, // Skip to: 5627 15202/* 3596 */ MCD::OPC_Decode, 160, 5, 216, 3, // Opcode: FSTMXDB_UPD 15203/* 3601 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 3653 15204/* 3606 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15205/* 3609 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3631 15206/* 3614 */ MCD::OPC_CheckPredicate, 78, 216, 7, 0, // Skip to: 5627 15207/* 3619 */ MCD::OPC_CheckField, 4, 1, 0, 209, 7, 0, // Skip to: 5627 15208/* 3626 */ MCD::OPC_Decode, 248, 21, 213, 3, // Opcode: VMULD 15209/* 3631 */ MCD::OPC_FilterValue, 1, 199, 7, 0, // Skip to: 5627 15210/* 3636 */ MCD::OPC_CheckPredicate, 78, 194, 7, 0, // Skip to: 5627 15211/* 3641 */ MCD::OPC_CheckField, 4, 1, 0, 187, 7, 0, // Skip to: 5627 15212/* 3648 */ MCD::OPC_Decode, 180, 22, 213, 3, // Opcode: VNMULD 15213/* 3653 */ MCD::OPC_FilterValue, 29, 177, 7, 0, // Skip to: 5627 15214/* 3658 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15215/* 3661 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3683 15216/* 3666 */ MCD::OPC_CheckPredicate, 79, 164, 7, 0, // Skip to: 5627 15217/* 3671 */ MCD::OPC_CheckField, 4, 1, 0, 157, 7, 0, // Skip to: 5627 15218/* 3678 */ MCD::OPC_Decode, 190, 17, 212, 3, // Opcode: VFMAD 15219/* 3683 */ MCD::OPC_FilterValue, 1, 147, 7, 0, // Skip to: 5627 15220/* 3688 */ MCD::OPC_CheckPredicate, 79, 142, 7, 0, // Skip to: 5627 15221/* 3693 */ MCD::OPC_CheckField, 4, 1, 0, 135, 7, 0, // Skip to: 5627 15222/* 3700 */ MCD::OPC_Decode, 201, 17, 212, 3, // Opcode: VFMSD 15223/* 3705 */ MCD::OPC_FilterValue, 3, 125, 7, 0, // Skip to: 5627 15224/* 3710 */ MCD::OPC_ExtractField, 23, 5, // Inst{27-23} ... 15225/* 3713 */ MCD::OPC_FilterValue, 25, 40, 0, 0, // Skip to: 3758 15226/* 3718 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15227/* 3721 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3736 15228/* 3726 */ MCD::OPC_CheckPredicate, 33, 104, 7, 0, // Skip to: 5627 15229/* 3731 */ MCD::OPC_Decode, 201, 20, 215, 3, // Opcode: VLDMDIA_UPD 15230/* 3736 */ MCD::OPC_FilterValue, 1, 94, 7, 0, // Skip to: 5627 15231/* 3741 */ MCD::OPC_CheckPredicate, 33, 89, 7, 0, // Skip to: 5627 15232/* 3746 */ MCD::OPC_CheckField, 22, 1, 0, 82, 7, 0, // Skip to: 5627 15233/* 3753 */ MCD::OPC_Decode, 158, 5, 216, 3, // Opcode: FLDMXIA_UPD 15234/* 3758 */ MCD::OPC_FilterValue, 26, 40, 0, 0, // Skip to: 3803 15235/* 3763 */ MCD::OPC_ExtractField, 0, 1, // Inst{0} ... 15236/* 3766 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 3781 15237/* 3771 */ MCD::OPC_CheckPredicate, 33, 59, 7, 0, // Skip to: 5627 15238/* 3776 */ MCD::OPC_Decode, 199, 20, 215, 3, // Opcode: VLDMDDB_UPD 15239/* 3781 */ MCD::OPC_FilterValue, 1, 49, 7, 0, // Skip to: 5627 15240/* 3786 */ MCD::OPC_CheckPredicate, 33, 44, 7, 0, // Skip to: 5627 15241/* 3791 */ MCD::OPC_CheckField, 22, 1, 0, 37, 7, 0, // Skip to: 5627 15242/* 3798 */ MCD::OPC_Decode, 156, 5, 216, 3, // Opcode: FLDMXDB_UPD 15243/* 3803 */ MCD::OPC_FilterValue, 28, 47, 0, 0, // Skip to: 3855 15244/* 3808 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15245/* 3811 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3833 15246/* 3816 */ MCD::OPC_CheckPredicate, 78, 14, 7, 0, // Skip to: 5627 15247/* 3821 */ MCD::OPC_CheckField, 4, 1, 0, 7, 7, 0, // Skip to: 5627 15248/* 3828 */ MCD::OPC_Decode, 148, 15, 213, 3, // Opcode: VADDD 15249/* 3833 */ MCD::OPC_FilterValue, 1, 253, 6, 0, // Skip to: 5627 15250/* 3838 */ MCD::OPC_CheckPredicate, 78, 248, 6, 0, // Skip to: 5627 15251/* 3843 */ MCD::OPC_CheckField, 4, 1, 0, 241, 6, 0, // Skip to: 5627 15252/* 3850 */ MCD::OPC_Decode, 168, 28, 213, 3, // Opcode: VSUBD 15253/* 3855 */ MCD::OPC_FilterValue, 29, 231, 6, 0, // Skip to: 5627 15254/* 3860 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 15255/* 3863 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3885 15256/* 3868 */ MCD::OPC_CheckPredicate, 80, 218, 6, 0, // Skip to: 5627 15257/* 3873 */ MCD::OPC_CheckField, 4, 2, 0, 211, 6, 0, // Skip to: 5627 15258/* 3880 */ MCD::OPC_Decode, 153, 5, 217, 3, // Opcode: FCONSTD 15259/* 3885 */ MCD::OPC_FilterValue, 1, 77, 1, 0, // Skip to: 4223 15260/* 3890 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15261/* 3893 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 3915 15262/* 3898 */ MCD::OPC_CheckPredicate, 81, 188, 6, 0, // Skip to: 5627 15263/* 3903 */ MCD::OPC_CheckField, 4, 1, 0, 181, 6, 0, // Skip to: 5627 15264/* 3910 */ MCD::OPC_Decode, 195, 21, 218, 3, // Opcode: VMOVD 15265/* 3915 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 3937 15266/* 3920 */ MCD::OPC_CheckPredicate, 78, 166, 6, 0, // Skip to: 5627 15267/* 3925 */ MCD::OPC_CheckField, 4, 1, 0, 159, 6, 0, // Skip to: 5627 15268/* 3932 */ MCD::OPC_Decode, 161, 22, 218, 3, // Opcode: VNEGD 15269/* 3937 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 3959 15270/* 3942 */ MCD::OPC_CheckPredicate, 82, 144, 6, 0, // Skip to: 5627 15271/* 3947 */ MCD::OPC_CheckField, 4, 1, 0, 137, 6, 0, // Skip to: 5627 15272/* 3954 */ MCD::OPC_Decode, 209, 16, 207, 3, // Opcode: VCVTBHD 15273/* 3959 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 3981 15274/* 3964 */ MCD::OPC_CheckPredicate, 82, 122, 6, 0, // Skip to: 5627 15275/* 3969 */ MCD::OPC_CheckField, 4, 1, 0, 115, 6, 0, // Skip to: 5627 15276/* 3976 */ MCD::OPC_Decode, 208, 16, 219, 3, // Opcode: VCVTBDH 15277/* 3981 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 4003 15278/* 3986 */ MCD::OPC_CheckPredicate, 78, 100, 6, 0, // Skip to: 5627 15279/* 3991 */ MCD::OPC_CheckField, 4, 1, 0, 93, 6, 0, // Skip to: 5627 15280/* 3998 */ MCD::OPC_Decode, 180, 16, 218, 3, // Opcode: VCMPD 15281/* 4003 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 4025 15282/* 4008 */ MCD::OPC_CheckPredicate, 78, 78, 6, 0, // Skip to: 5627 15283/* 4013 */ MCD::OPC_CheckField, 0, 6, 0, 71, 6, 0, // Skip to: 5627 15284/* 4020 */ MCD::OPC_Decode, 189, 16, 220, 3, // Opcode: VCMPZD 15285/* 4025 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 4047 15286/* 4030 */ MCD::OPC_CheckPredicate, 82, 56, 6, 0, // Skip to: 5627 15287/* 4035 */ MCD::OPC_CheckField, 4, 1, 0, 49, 6, 0, // Skip to: 5627 15288/* 4042 */ MCD::OPC_Decode, 216, 24, 218, 3, // Opcode: VRINTRD 15289/* 4047 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 4069 15290/* 4052 */ MCD::OPC_CheckPredicate, 82, 34, 6, 0, // Skip to: 5627 15291/* 4057 */ MCD::OPC_CheckField, 4, 1, 0, 27, 6, 0, // Skip to: 5627 15292/* 4064 */ MCD::OPC_Decode, 219, 24, 218, 3, // Opcode: VRINTXD 15293/* 4069 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 4091 15294/* 4074 */ MCD::OPC_CheckPredicate, 78, 12, 6, 0, // Skip to: 5627 15295/* 4079 */ MCD::OPC_CheckField, 4, 1, 0, 5, 6, 0, // Skip to: 5627 15296/* 4086 */ MCD::OPC_Decode, 255, 28, 207, 3, // Opcode: VUITOD 15297/* 4091 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 4113 15298/* 4096 */ MCD::OPC_CheckPredicate, 78, 246, 5, 0, // Skip to: 5627 15299/* 4101 */ MCD::OPC_CheckField, 4, 1, 0, 239, 5, 0, // Skip to: 5627 15300/* 4108 */ MCD::OPC_Decode, 242, 25, 221, 3, // Opcode: VSHTOD 15301/* 4113 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 4135 15302/* 4118 */ MCD::OPC_CheckPredicate, 78, 224, 5, 0, // Skip to: 5627 15303/* 4123 */ MCD::OPC_CheckField, 4, 1, 0, 217, 5, 0, // Skip to: 5627 15304/* 4130 */ MCD::OPC_Decode, 252, 28, 221, 3, // Opcode: VUHTOD 15305/* 4135 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4157 15306/* 4140 */ MCD::OPC_CheckPredicate, 78, 202, 5, 0, // Skip to: 5627 15307/* 4145 */ MCD::OPC_CheckField, 4, 1, 0, 195, 5, 0, // Skip to: 5627 15308/* 4152 */ MCD::OPC_Decode, 227, 28, 219, 3, // Opcode: VTOUIRD 15309/* 4157 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 4179 15310/* 4162 */ MCD::OPC_CheckPredicate, 78, 180, 5, 0, // Skip to: 5627 15311/* 4167 */ MCD::OPC_CheckField, 4, 1, 0, 173, 5, 0, // Skip to: 5627 15312/* 4174 */ MCD::OPC_Decode, 215, 28, 219, 3, // Opcode: VTOSIRD 15313/* 4179 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 4201 15314/* 4184 */ MCD::OPC_CheckPredicate, 78, 158, 5, 0, // Skip to: 5627 15315/* 4189 */ MCD::OPC_CheckField, 4, 1, 0, 151, 5, 0, // Skip to: 5627 15316/* 4196 */ MCD::OPC_Decode, 212, 28, 221, 3, // Opcode: VTOSHD 15317/* 4201 */ MCD::OPC_FilterValue, 15, 141, 5, 0, // Skip to: 5627 15318/* 4206 */ MCD::OPC_CheckPredicate, 78, 136, 5, 0, // Skip to: 5627 15319/* 4211 */ MCD::OPC_CheckField, 4, 1, 0, 129, 5, 0, // Skip to: 5627 15320/* 4218 */ MCD::OPC_Decode, 224, 28, 221, 3, // Opcode: VTOUHD 15321/* 4223 */ MCD::OPC_FilterValue, 3, 119, 5, 0, // Skip to: 5627 15322/* 4228 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15323/* 4231 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 4253 15324/* 4236 */ MCD::OPC_CheckPredicate, 78, 106, 5, 0, // Skip to: 5627 15325/* 4241 */ MCD::OPC_CheckField, 4, 1, 0, 99, 5, 0, // Skip to: 5627 15326/* 4248 */ MCD::OPC_Decode, 255, 14, 218, 3, // Opcode: VABSD 15327/* 4253 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 4275 15328/* 4258 */ MCD::OPC_CheckPredicate, 78, 84, 5, 0, // Skip to: 5627 15329/* 4263 */ MCD::OPC_CheckField, 4, 1, 0, 77, 5, 0, // Skip to: 5627 15330/* 4270 */ MCD::OPC_Decode, 131, 26, 218, 3, // Opcode: VSQRTD 15331/* 4275 */ MCD::OPC_FilterValue, 2, 17, 0, 0, // Skip to: 4297 15332/* 4280 */ MCD::OPC_CheckPredicate, 82, 62, 5, 0, // Skip to: 5627 15333/* 4285 */ MCD::OPC_CheckField, 4, 1, 0, 55, 5, 0, // Skip to: 5627 15334/* 4292 */ MCD::OPC_Decode, 129, 17, 207, 3, // Opcode: VCVTTHD 15335/* 4297 */ MCD::OPC_FilterValue, 3, 17, 0, 0, // Skip to: 4319 15336/* 4302 */ MCD::OPC_CheckPredicate, 82, 40, 5, 0, // Skip to: 5627 15337/* 4307 */ MCD::OPC_CheckField, 4, 1, 0, 33, 5, 0, // Skip to: 5627 15338/* 4314 */ MCD::OPC_Decode, 128, 17, 219, 3, // Opcode: VCVTTDH 15339/* 4319 */ MCD::OPC_FilterValue, 4, 17, 0, 0, // Skip to: 4341 15340/* 4324 */ MCD::OPC_CheckPredicate, 78, 18, 5, 0, // Skip to: 5627 15341/* 4329 */ MCD::OPC_CheckField, 4, 1, 0, 11, 5, 0, // Skip to: 5627 15342/* 4336 */ MCD::OPC_Decode, 181, 16, 218, 3, // Opcode: VCMPED 15343/* 4341 */ MCD::OPC_FilterValue, 5, 17, 0, 0, // Skip to: 4363 15344/* 4346 */ MCD::OPC_CheckPredicate, 78, 252, 4, 0, // Skip to: 5627 15345/* 4351 */ MCD::OPC_CheckField, 0, 6, 0, 245, 4, 0, // Skip to: 5627 15346/* 4358 */ MCD::OPC_Decode, 184, 16, 220, 3, // Opcode: VCMPEZD 15347/* 4363 */ MCD::OPC_FilterValue, 6, 17, 0, 0, // Skip to: 4385 15348/* 4368 */ MCD::OPC_CheckPredicate, 82, 230, 4, 0, // Skip to: 5627 15349/* 4373 */ MCD::OPC_CheckField, 4, 1, 0, 223, 4, 0, // Skip to: 5627 15350/* 4380 */ MCD::OPC_Decode, 226, 24, 218, 3, // Opcode: VRINTZD 15351/* 4385 */ MCD::OPC_FilterValue, 7, 17, 0, 0, // Skip to: 4407 15352/* 4390 */ MCD::OPC_CheckPredicate, 78, 208, 4, 0, // Skip to: 5627 15353/* 4395 */ MCD::OPC_CheckField, 4, 1, 0, 201, 4, 0, // Skip to: 5627 15354/* 4402 */ MCD::OPC_Decode, 255, 16, 219, 3, // Opcode: VCVTSD 15355/* 4407 */ MCD::OPC_FilterValue, 8, 17, 0, 0, // Skip to: 4429 15356/* 4412 */ MCD::OPC_CheckPredicate, 78, 186, 4, 0, // Skip to: 5627 15357/* 4417 */ MCD::OPC_CheckField, 4, 1, 0, 179, 4, 0, // Skip to: 5627 15358/* 4424 */ MCD::OPC_Decode, 245, 25, 207, 3, // Opcode: VSITOD 15359/* 4429 */ MCD::OPC_FilterValue, 9, 17, 0, 0, // Skip to: 4451 15360/* 4434 */ MCD::OPC_CheckPredicate, 83, 164, 4, 0, // Skip to: 5627 15361/* 4439 */ MCD::OPC_CheckField, 4, 1, 0, 157, 4, 0, // Skip to: 5627 15362/* 4446 */ MCD::OPC_Decode, 254, 17, 219, 3, // Opcode: VJCVT 15363/* 4451 */ MCD::OPC_FilterValue, 10, 17, 0, 0, // Skip to: 4473 15364/* 4456 */ MCD::OPC_CheckPredicate, 78, 142, 4, 0, // Skip to: 5627 15365/* 4461 */ MCD::OPC_CheckField, 4, 1, 0, 135, 4, 0, // Skip to: 5627 15366/* 4468 */ MCD::OPC_Decode, 128, 26, 221, 3, // Opcode: VSLTOD 15367/* 4473 */ MCD::OPC_FilterValue, 11, 17, 0, 0, // Skip to: 4495 15368/* 4478 */ MCD::OPC_CheckPredicate, 78, 120, 4, 0, // Skip to: 5627 15369/* 4483 */ MCD::OPC_CheckField, 4, 1, 0, 113, 4, 0, // Skip to: 5627 15370/* 4490 */ MCD::OPC_Decode, 130, 29, 221, 3, // Opcode: VULTOD 15371/* 4495 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4517 15372/* 4500 */ MCD::OPC_CheckPredicate, 78, 98, 4, 0, // Skip to: 5627 15373/* 4505 */ MCD::OPC_CheckField, 4, 1, 0, 91, 4, 0, // Skip to: 5627 15374/* 4512 */ MCD::OPC_Decode, 230, 28, 219, 3, // Opcode: VTOUIZD 15375/* 4517 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 4539 15376/* 4522 */ MCD::OPC_CheckPredicate, 78, 76, 4, 0, // Skip to: 5627 15377/* 4527 */ MCD::OPC_CheckField, 4, 1, 0, 69, 4, 0, // Skip to: 5627 15378/* 4534 */ MCD::OPC_Decode, 218, 28, 219, 3, // Opcode: VTOSIZD 15379/* 4539 */ MCD::OPC_FilterValue, 14, 17, 0, 0, // Skip to: 4561 15380/* 4544 */ MCD::OPC_CheckPredicate, 78, 54, 4, 0, // Skip to: 5627 15381/* 4549 */ MCD::OPC_CheckField, 4, 1, 0, 47, 4, 0, // Skip to: 5627 15382/* 4556 */ MCD::OPC_Decode, 221, 28, 221, 3, // Opcode: VTOSLD 15383/* 4561 */ MCD::OPC_FilterValue, 15, 37, 4, 0, // Skip to: 5627 15384/* 4566 */ MCD::OPC_CheckPredicate, 78, 32, 4, 0, // Skip to: 5627 15385/* 4571 */ MCD::OPC_CheckField, 4, 1, 0, 25, 4, 0, // Skip to: 5627 15386/* 4578 */ MCD::OPC_Decode, 233, 28, 221, 3, // Opcode: VTOULD 15387/* 4583 */ MCD::OPC_FilterValue, 15, 15, 4, 0, // Skip to: 5627 15388/* 4588 */ MCD::OPC_ExtractField, 20, 3, // Inst{22-20} ... 15389/* 4591 */ MCD::OPC_FilterValue, 0, 61, 0, 0, // Skip to: 4657 15390/* 4596 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15391/* 4599 */ MCD::OPC_FilterValue, 2, 24, 0, 0, // Skip to: 4628 15392/* 4604 */ MCD::OPC_CheckPredicate, 25, 250, 3, 0, // Skip to: 5627 15393/* 4609 */ MCD::OPC_CheckField, 24, 4, 13, 243, 3, 0, // Skip to: 5627 15394/* 4616 */ MCD::OPC_CheckField, 7, 1, 1, 236, 3, 0, // Skip to: 5627 15395/* 4623 */ MCD::OPC_Decode, 159, 28, 222, 3, // Opcode: VSTR_FPSCR_off 15396/* 4628 */ MCD::OPC_FilterValue, 4, 226, 3, 0, // Skip to: 5627 15397/* 4633 */ MCD::OPC_CheckPredicate, 25, 221, 3, 0, // Skip to: 5627 15398/* 4638 */ MCD::OPC_CheckField, 24, 4, 13, 214, 3, 0, // Skip to: 5627 15399/* 4645 */ MCD::OPC_CheckField, 7, 1, 1, 207, 3, 0, // Skip to: 5627 15400/* 4652 */ MCD::OPC_Decode, 156, 28, 222, 3, // Opcode: VSTR_FPSCR_NZCVQC_off 15401/* 4657 */ MCD::OPC_FilterValue, 1, 61, 0, 0, // Skip to: 4723 15402/* 4662 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15403/* 4665 */ MCD::OPC_FilterValue, 2, 24, 0, 0, // Skip to: 4694 15404/* 4670 */ MCD::OPC_CheckPredicate, 25, 184, 3, 0, // Skip to: 5627 15405/* 4675 */ MCD::OPC_CheckField, 24, 4, 13, 177, 3, 0, // Skip to: 5627 15406/* 4682 */ MCD::OPC_CheckField, 7, 1, 1, 170, 3, 0, // Skip to: 5627 15407/* 4689 */ MCD::OPC_Decode, 218, 20, 222, 3, // Opcode: VLDR_FPSCR_off 15408/* 4694 */ MCD::OPC_FilterValue, 4, 160, 3, 0, // Skip to: 5627 15409/* 4699 */ MCD::OPC_CheckPredicate, 25, 155, 3, 0, // Skip to: 5627 15410/* 4704 */ MCD::OPC_CheckField, 24, 4, 13, 148, 3, 0, // Skip to: 5627 15411/* 4711 */ MCD::OPC_CheckField, 7, 1, 1, 141, 3, 0, // Skip to: 5627 15412/* 4718 */ MCD::OPC_Decode, 215, 20, 222, 3, // Opcode: VLDR_FPSCR_NZCVQC_off 15413/* 4723 */ MCD::OPC_FilterValue, 2, 107, 0, 0, // Skip to: 4835 15414/* 4728 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15415/* 4731 */ MCD::OPC_FilterValue, 2, 47, 0, 0, // Skip to: 4783 15416/* 4736 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15417/* 4739 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4761 15418/* 4744 */ MCD::OPC_CheckPredicate, 25, 110, 3, 0, // Skip to: 5627 15419/* 4749 */ MCD::OPC_CheckField, 7, 1, 1, 103, 3, 0, // Skip to: 5627 15420/* 4756 */ MCD::OPC_Decode, 160, 28, 223, 3, // Opcode: VSTR_FPSCR_post 15421/* 4761 */ MCD::OPC_FilterValue, 13, 93, 3, 0, // Skip to: 5627 15422/* 4766 */ MCD::OPC_CheckPredicate, 25, 88, 3, 0, // Skip to: 5627 15423/* 4771 */ MCD::OPC_CheckField, 7, 1, 1, 81, 3, 0, // Skip to: 5627 15424/* 4778 */ MCD::OPC_Decode, 161, 28, 223, 3, // Opcode: VSTR_FPSCR_pre 15425/* 4783 */ MCD::OPC_FilterValue, 4, 71, 3, 0, // Skip to: 5627 15426/* 4788 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15427/* 4791 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4813 15428/* 4796 */ MCD::OPC_CheckPredicate, 25, 58, 3, 0, // Skip to: 5627 15429/* 4801 */ MCD::OPC_CheckField, 7, 1, 1, 51, 3, 0, // Skip to: 5627 15430/* 4808 */ MCD::OPC_Decode, 157, 28, 223, 3, // Opcode: VSTR_FPSCR_NZCVQC_post 15431/* 4813 */ MCD::OPC_FilterValue, 13, 41, 3, 0, // Skip to: 5627 15432/* 4818 */ MCD::OPC_CheckPredicate, 25, 36, 3, 0, // Skip to: 5627 15433/* 4823 */ MCD::OPC_CheckField, 7, 1, 1, 29, 3, 0, // Skip to: 5627 15434/* 4830 */ MCD::OPC_Decode, 158, 28, 223, 3, // Opcode: VSTR_FPSCR_NZCVQC_pre 15435/* 4835 */ MCD::OPC_FilterValue, 3, 107, 0, 0, // Skip to: 4947 15436/* 4840 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15437/* 4843 */ MCD::OPC_FilterValue, 2, 47, 0, 0, // Skip to: 4895 15438/* 4848 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15439/* 4851 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4873 15440/* 4856 */ MCD::OPC_CheckPredicate, 25, 254, 2, 0, // Skip to: 5627 15441/* 4861 */ MCD::OPC_CheckField, 7, 1, 1, 247, 2, 0, // Skip to: 5627 15442/* 4868 */ MCD::OPC_Decode, 219, 20, 223, 3, // Opcode: VLDR_FPSCR_post 15443/* 4873 */ MCD::OPC_FilterValue, 13, 237, 2, 0, // Skip to: 5627 15444/* 4878 */ MCD::OPC_CheckPredicate, 25, 232, 2, 0, // Skip to: 5627 15445/* 4883 */ MCD::OPC_CheckField, 7, 1, 1, 225, 2, 0, // Skip to: 5627 15446/* 4890 */ MCD::OPC_Decode, 220, 20, 223, 3, // Opcode: VLDR_FPSCR_pre 15447/* 4895 */ MCD::OPC_FilterValue, 4, 215, 2, 0, // Skip to: 5627 15448/* 4900 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15449/* 4903 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 4925 15450/* 4908 */ MCD::OPC_CheckPredicate, 25, 202, 2, 0, // Skip to: 5627 15451/* 4913 */ MCD::OPC_CheckField, 7, 1, 1, 195, 2, 0, // Skip to: 5627 15452/* 4920 */ MCD::OPC_Decode, 216, 20, 223, 3, // Opcode: VLDR_FPSCR_NZCVQC_post 15453/* 4925 */ MCD::OPC_FilterValue, 13, 185, 2, 0, // Skip to: 5627 15454/* 4930 */ MCD::OPC_CheckPredicate, 25, 180, 2, 0, // Skip to: 5627 15455/* 4935 */ MCD::OPC_CheckField, 7, 1, 1, 173, 2, 0, // Skip to: 5627 15456/* 4942 */ MCD::OPC_Decode, 217, 20, 223, 3, // Opcode: VLDR_FPSCR_NZCVQC_pre 15457/* 4947 */ MCD::OPC_FilterValue, 4, 119, 0, 0, // Skip to: 5071 15458/* 4952 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15459/* 4955 */ MCD::OPC_FilterValue, 8, 24, 0, 0, // Skip to: 4984 15460/* 4960 */ MCD::OPC_CheckPredicate, 23, 150, 2, 0, // Skip to: 5627 15461/* 4965 */ MCD::OPC_CheckField, 24, 4, 13, 143, 2, 0, // Skip to: 5627 15462/* 4972 */ MCD::OPC_CheckField, 7, 1, 1, 136, 2, 0, // Skip to: 5627 15463/* 4979 */ MCD::OPC_Decode, 165, 28, 222, 3, // Opcode: VSTR_VPR_off 15464/* 4984 */ MCD::OPC_FilterValue, 10, 24, 0, 0, // Skip to: 5013 15465/* 4989 */ MCD::OPC_CheckPredicate, 23, 121, 2, 0, // Skip to: 5627 15466/* 4994 */ MCD::OPC_CheckField, 24, 4, 13, 114, 2, 0, // Skip to: 5627 15467/* 5001 */ MCD::OPC_CheckField, 7, 1, 1, 107, 2, 0, // Skip to: 5627 15468/* 5008 */ MCD::OPC_Decode, 162, 28, 222, 3, // Opcode: VSTR_P0_off 15469/* 5013 */ MCD::OPC_FilterValue, 12, 24, 0, 0, // Skip to: 5042 15470/* 5018 */ MCD::OPC_CheckPredicate, 71, 92, 2, 0, // Skip to: 5627 15471/* 5023 */ MCD::OPC_CheckField, 24, 4, 13, 85, 2, 0, // Skip to: 5627 15472/* 5030 */ MCD::OPC_CheckField, 7, 1, 1, 78, 2, 0, // Skip to: 5627 15473/* 5037 */ MCD::OPC_Decode, 150, 28, 222, 3, // Opcode: VSTR_FPCXTNS_off 15474/* 5042 */ MCD::OPC_FilterValue, 14, 68, 2, 0, // Skip to: 5627 15475/* 5047 */ MCD::OPC_CheckPredicate, 71, 63, 2, 0, // Skip to: 5627 15476/* 5052 */ MCD::OPC_CheckField, 24, 4, 13, 56, 2, 0, // Skip to: 5627 15477/* 5059 */ MCD::OPC_CheckField, 7, 1, 1, 49, 2, 0, // Skip to: 5627 15478/* 5066 */ MCD::OPC_Decode, 153, 28, 222, 3, // Opcode: VSTR_FPCXTS_off 15479/* 5071 */ MCD::OPC_FilterValue, 5, 119, 0, 0, // Skip to: 5195 15480/* 5076 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15481/* 5079 */ MCD::OPC_FilterValue, 8, 24, 0, 0, // Skip to: 5108 15482/* 5084 */ MCD::OPC_CheckPredicate, 23, 26, 2, 0, // Skip to: 5627 15483/* 5089 */ MCD::OPC_CheckField, 24, 4, 13, 19, 2, 0, // Skip to: 5627 15484/* 5096 */ MCD::OPC_CheckField, 7, 1, 1, 12, 2, 0, // Skip to: 5627 15485/* 5103 */ MCD::OPC_Decode, 224, 20, 222, 3, // Opcode: VLDR_VPR_off 15486/* 5108 */ MCD::OPC_FilterValue, 10, 24, 0, 0, // Skip to: 5137 15487/* 5113 */ MCD::OPC_CheckPredicate, 23, 253, 1, 0, // Skip to: 5627 15488/* 5118 */ MCD::OPC_CheckField, 24, 4, 13, 246, 1, 0, // Skip to: 5627 15489/* 5125 */ MCD::OPC_CheckField, 7, 1, 1, 239, 1, 0, // Skip to: 5627 15490/* 5132 */ MCD::OPC_Decode, 221, 20, 222, 3, // Opcode: VLDR_P0_off 15491/* 5137 */ MCD::OPC_FilterValue, 12, 24, 0, 0, // Skip to: 5166 15492/* 5142 */ MCD::OPC_CheckPredicate, 71, 224, 1, 0, // Skip to: 5627 15493/* 5147 */ MCD::OPC_CheckField, 24, 4, 13, 217, 1, 0, // Skip to: 5627 15494/* 5154 */ MCD::OPC_CheckField, 7, 1, 1, 210, 1, 0, // Skip to: 5627 15495/* 5161 */ MCD::OPC_Decode, 209, 20, 222, 3, // Opcode: VLDR_FPCXTNS_off 15496/* 5166 */ MCD::OPC_FilterValue, 14, 200, 1, 0, // Skip to: 5627 15497/* 5171 */ MCD::OPC_CheckPredicate, 71, 195, 1, 0, // Skip to: 5627 15498/* 5176 */ MCD::OPC_CheckField, 24, 4, 13, 188, 1, 0, // Skip to: 5627 15499/* 5183 */ MCD::OPC_CheckField, 7, 1, 1, 181, 1, 0, // Skip to: 5627 15500/* 5190 */ MCD::OPC_Decode, 212, 20, 222, 3, // Opcode: VLDR_FPCXTS_off 15501/* 5195 */ MCD::OPC_FilterValue, 6, 211, 0, 0, // Skip to: 5411 15502/* 5200 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15503/* 5203 */ MCD::OPC_FilterValue, 8, 47, 0, 0, // Skip to: 5255 15504/* 5208 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15505/* 5211 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5233 15506/* 5216 */ MCD::OPC_CheckPredicate, 23, 150, 1, 0, // Skip to: 5627 15507/* 5221 */ MCD::OPC_CheckField, 7, 1, 1, 143, 1, 0, // Skip to: 5627 15508/* 5228 */ MCD::OPC_Decode, 166, 28, 223, 3, // Opcode: VSTR_VPR_post 15509/* 5233 */ MCD::OPC_FilterValue, 13, 133, 1, 0, // Skip to: 5627 15510/* 5238 */ MCD::OPC_CheckPredicate, 23, 128, 1, 0, // Skip to: 5627 15511/* 5243 */ MCD::OPC_CheckField, 7, 1, 1, 121, 1, 0, // Skip to: 5627 15512/* 5250 */ MCD::OPC_Decode, 167, 28, 223, 3, // Opcode: VSTR_VPR_pre 15513/* 5255 */ MCD::OPC_FilterValue, 10, 47, 0, 0, // Skip to: 5307 15514/* 5260 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15515/* 5263 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5285 15516/* 5268 */ MCD::OPC_CheckPredicate, 23, 98, 1, 0, // Skip to: 5627 15517/* 5273 */ MCD::OPC_CheckField, 7, 1, 1, 91, 1, 0, // Skip to: 5627 15518/* 5280 */ MCD::OPC_Decode, 163, 28, 223, 3, // Opcode: VSTR_P0_post 15519/* 5285 */ MCD::OPC_FilterValue, 13, 81, 1, 0, // Skip to: 5627 15520/* 5290 */ MCD::OPC_CheckPredicate, 23, 76, 1, 0, // Skip to: 5627 15521/* 5295 */ MCD::OPC_CheckField, 7, 1, 1, 69, 1, 0, // Skip to: 5627 15522/* 5302 */ MCD::OPC_Decode, 164, 28, 223, 3, // Opcode: VSTR_P0_pre 15523/* 5307 */ MCD::OPC_FilterValue, 12, 47, 0, 0, // Skip to: 5359 15524/* 5312 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15525/* 5315 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5337 15526/* 5320 */ MCD::OPC_CheckPredicate, 71, 46, 1, 0, // Skip to: 5627 15527/* 5325 */ MCD::OPC_CheckField, 7, 1, 1, 39, 1, 0, // Skip to: 5627 15528/* 5332 */ MCD::OPC_Decode, 151, 28, 223, 3, // Opcode: VSTR_FPCXTNS_post 15529/* 5337 */ MCD::OPC_FilterValue, 13, 29, 1, 0, // Skip to: 5627 15530/* 5342 */ MCD::OPC_CheckPredicate, 71, 24, 1, 0, // Skip to: 5627 15531/* 5347 */ MCD::OPC_CheckField, 7, 1, 1, 17, 1, 0, // Skip to: 5627 15532/* 5354 */ MCD::OPC_Decode, 152, 28, 223, 3, // Opcode: VSTR_FPCXTNS_pre 15533/* 5359 */ MCD::OPC_FilterValue, 14, 7, 1, 0, // Skip to: 5627 15534/* 5364 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15535/* 5367 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5389 15536/* 5372 */ MCD::OPC_CheckPredicate, 71, 250, 0, 0, // Skip to: 5627 15537/* 5377 */ MCD::OPC_CheckField, 7, 1, 1, 243, 0, 0, // Skip to: 5627 15538/* 5384 */ MCD::OPC_Decode, 154, 28, 223, 3, // Opcode: VSTR_FPCXTS_post 15539/* 5389 */ MCD::OPC_FilterValue, 13, 233, 0, 0, // Skip to: 5627 15540/* 5394 */ MCD::OPC_CheckPredicate, 71, 228, 0, 0, // Skip to: 5627 15541/* 5399 */ MCD::OPC_CheckField, 7, 1, 1, 221, 0, 0, // Skip to: 5627 15542/* 5406 */ MCD::OPC_Decode, 155, 28, 223, 3, // Opcode: VSTR_FPCXTS_pre 15543/* 5411 */ MCD::OPC_FilterValue, 7, 211, 0, 0, // Skip to: 5627 15544/* 5416 */ MCD::OPC_ExtractField, 12, 4, // Inst{15-12} ... 15545/* 5419 */ MCD::OPC_FilterValue, 8, 47, 0, 0, // Skip to: 5471 15546/* 5424 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15547/* 5427 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5449 15548/* 5432 */ MCD::OPC_CheckPredicate, 23, 190, 0, 0, // Skip to: 5627 15549/* 5437 */ MCD::OPC_CheckField, 7, 1, 1, 183, 0, 0, // Skip to: 5627 15550/* 5444 */ MCD::OPC_Decode, 225, 20, 223, 3, // Opcode: VLDR_VPR_post 15551/* 5449 */ MCD::OPC_FilterValue, 13, 173, 0, 0, // Skip to: 5627 15552/* 5454 */ MCD::OPC_CheckPredicate, 23, 168, 0, 0, // Skip to: 5627 15553/* 5459 */ MCD::OPC_CheckField, 7, 1, 1, 161, 0, 0, // Skip to: 5627 15554/* 5466 */ MCD::OPC_Decode, 226, 20, 223, 3, // Opcode: VLDR_VPR_pre 15555/* 5471 */ MCD::OPC_FilterValue, 10, 47, 0, 0, // Skip to: 5523 15556/* 5476 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15557/* 5479 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5501 15558/* 5484 */ MCD::OPC_CheckPredicate, 23, 138, 0, 0, // Skip to: 5627 15559/* 5489 */ MCD::OPC_CheckField, 7, 1, 1, 131, 0, 0, // Skip to: 5627 15560/* 5496 */ MCD::OPC_Decode, 222, 20, 223, 3, // Opcode: VLDR_P0_post 15561/* 5501 */ MCD::OPC_FilterValue, 13, 121, 0, 0, // Skip to: 5627 15562/* 5506 */ MCD::OPC_CheckPredicate, 23, 116, 0, 0, // Skip to: 5627 15563/* 5511 */ MCD::OPC_CheckField, 7, 1, 1, 109, 0, 0, // Skip to: 5627 15564/* 5518 */ MCD::OPC_Decode, 223, 20, 223, 3, // Opcode: VLDR_P0_pre 15565/* 5523 */ MCD::OPC_FilterValue, 12, 47, 0, 0, // Skip to: 5575 15566/* 5528 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15567/* 5531 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5553 15568/* 5536 */ MCD::OPC_CheckPredicate, 71, 86, 0, 0, // Skip to: 5627 15569/* 5541 */ MCD::OPC_CheckField, 7, 1, 1, 79, 0, 0, // Skip to: 5627 15570/* 5548 */ MCD::OPC_Decode, 210, 20, 223, 3, // Opcode: VLDR_FPCXTNS_post 15571/* 5553 */ MCD::OPC_FilterValue, 13, 69, 0, 0, // Skip to: 5627 15572/* 5558 */ MCD::OPC_CheckPredicate, 71, 64, 0, 0, // Skip to: 5627 15573/* 5563 */ MCD::OPC_CheckField, 7, 1, 1, 57, 0, 0, // Skip to: 5627 15574/* 5570 */ MCD::OPC_Decode, 211, 20, 223, 3, // Opcode: VLDR_FPCXTNS_pre 15575/* 5575 */ MCD::OPC_FilterValue, 14, 47, 0, 0, // Skip to: 5627 15576/* 5580 */ MCD::OPC_ExtractField, 24, 4, // Inst{27-24} ... 15577/* 5583 */ MCD::OPC_FilterValue, 12, 17, 0, 0, // Skip to: 5605 15578/* 5588 */ MCD::OPC_CheckPredicate, 71, 34, 0, 0, // Skip to: 5627 15579/* 5593 */ MCD::OPC_CheckField, 7, 1, 1, 27, 0, 0, // Skip to: 5627 15580/* 5600 */ MCD::OPC_Decode, 213, 20, 223, 3, // Opcode: VLDR_FPCXTS_post 15581/* 5605 */ MCD::OPC_FilterValue, 13, 17, 0, 0, // Skip to: 5627 15582/* 5610 */ MCD::OPC_CheckPredicate, 71, 12, 0, 0, // Skip to: 5627 15583/* 5615 */ MCD::OPC_CheckField, 7, 1, 1, 5, 0, 0, // Skip to: 5627 15584/* 5622 */ MCD::OPC_Decode, 214, 20, 223, 3, // Opcode: VLDR_FPCXTS_pre 15585/* 5627 */ MCD::OPC_Fail, 15586 0 15587}; 15588 15589static const uint8_t DecoderTableVFPV832[] = { 15590/* 0 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 15591/* 3 */ MCD::OPC_FilterValue, 8, 215, 1, 0, // Skip to: 479 15592/* 8 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 15593/* 11 */ MCD::OPC_FilterValue, 0, 3, 1, 0, // Skip to: 275 15594/* 16 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15595/* 19 */ MCD::OPC_FilterValue, 0, 123, 0, 0, // Skip to: 147 15596/* 24 */ MCD::OPC_ExtractField, 25, 7, // Inst{31-25} ... 15597/* 27 */ MCD::OPC_FilterValue, 126, 77, 0, 0, // Skip to: 109 15598/* 32 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15599/* 35 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 57 15600/* 40 */ MCD::OPC_CheckPredicate, 84, 102, 10, 0, // Skip to: 2707 15601/* 45 */ MCD::OPC_CheckField, 23, 1, 1, 95, 10, 0, // Skip to: 2707 15602/* 52 */ MCD::OPC_Decode, 193, 15, 224, 3, // Opcode: VCADDv4f16 15603/* 57 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 79 15604/* 62 */ MCD::OPC_CheckPredicate, 85, 80, 10, 0, // Skip to: 2707 15605/* 67 */ MCD::OPC_CheckField, 23, 1, 1, 73, 10, 0, // Skip to: 2707 15606/* 74 */ MCD::OPC_Decode, 192, 15, 224, 3, // Opcode: VCADDv2f32 15607/* 79 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 94 15608/* 84 */ MCD::OPC_CheckPredicate, 84, 58, 10, 0, // Skip to: 2707 15609/* 89 */ MCD::OPC_Decode, 174, 16, 225, 3, // Opcode: VCMLAv4f16 15610/* 94 */ MCD::OPC_FilterValue, 3, 48, 10, 0, // Skip to: 2707 15611/* 99 */ MCD::OPC_CheckPredicate, 85, 43, 10, 0, // Skip to: 2707 15612/* 104 */ MCD::OPC_Decode, 172, 16, 225, 3, // Opcode: VCMLAv2f32 15613/* 109 */ MCD::OPC_FilterValue, 127, 33, 10, 0, // Skip to: 2707 15614/* 114 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 15615/* 117 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 132 15616/* 122 */ MCD::OPC_CheckPredicate, 84, 20, 10, 0, // Skip to: 2707 15617/* 127 */ MCD::OPC_Decode, 175, 16, 226, 3, // Opcode: VCMLAv4f16_indexed 15618/* 132 */ MCD::OPC_FilterValue, 1, 10, 10, 0, // Skip to: 2707 15619/* 137 */ MCD::OPC_CheckPredicate, 85, 5, 10, 0, // Skip to: 2707 15620/* 142 */ MCD::OPC_Decode, 173, 16, 227, 3, // Opcode: VCMLAv2f32_indexed 15621/* 147 */ MCD::OPC_FilterValue, 1, 251, 9, 0, // Skip to: 2707 15622/* 152 */ MCD::OPC_ExtractField, 25, 7, // Inst{31-25} ... 15623/* 155 */ MCD::OPC_FilterValue, 126, 77, 0, 0, // Skip to: 237 15624/* 160 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15625/* 163 */ MCD::OPC_FilterValue, 0, 17, 0, 0, // Skip to: 185 15626/* 168 */ MCD::OPC_CheckPredicate, 84, 230, 9, 0, // Skip to: 2707 15627/* 173 */ MCD::OPC_CheckField, 23, 1, 1, 223, 9, 0, // Skip to: 2707 15628/* 180 */ MCD::OPC_Decode, 195, 15, 228, 3, // Opcode: VCADDv8f16 15629/* 185 */ MCD::OPC_FilterValue, 1, 17, 0, 0, // Skip to: 207 15630/* 190 */ MCD::OPC_CheckPredicate, 85, 208, 9, 0, // Skip to: 2707 15631/* 195 */ MCD::OPC_CheckField, 23, 1, 1, 201, 9, 0, // Skip to: 2707 15632/* 202 */ MCD::OPC_Decode, 194, 15, 228, 3, // Opcode: VCADDv4f32 15633/* 207 */ MCD::OPC_FilterValue, 2, 10, 0, 0, // Skip to: 222 15634/* 212 */ MCD::OPC_CheckPredicate, 84, 186, 9, 0, // Skip to: 2707 15635/* 217 */ MCD::OPC_Decode, 178, 16, 229, 3, // Opcode: VCMLAv8f16 15636/* 222 */ MCD::OPC_FilterValue, 3, 176, 9, 0, // Skip to: 2707 15637/* 227 */ MCD::OPC_CheckPredicate, 85, 171, 9, 0, // Skip to: 2707 15638/* 232 */ MCD::OPC_Decode, 176, 16, 229, 3, // Opcode: VCMLAv4f32 15639/* 237 */ MCD::OPC_FilterValue, 127, 161, 9, 0, // Skip to: 2707 15640/* 242 */ MCD::OPC_ExtractField, 23, 2, // Inst{24-23} ... 15641/* 245 */ MCD::OPC_FilterValue, 0, 10, 0, 0, // Skip to: 260 15642/* 250 */ MCD::OPC_CheckPredicate, 84, 148, 9, 0, // Skip to: 2707 15643/* 255 */ MCD::OPC_Decode, 179, 16, 230, 3, // Opcode: VCMLAv8f16_indexed 15644/* 260 */ MCD::OPC_FilterValue, 1, 138, 9, 0, // Skip to: 2707 15645/* 265 */ MCD::OPC_CheckPredicate, 85, 133, 9, 0, // Skip to: 2707 15646/* 270 */ MCD::OPC_Decode, 177, 16, 227, 3, // Opcode: VCMLAv4f32_indexed 15647/* 275 */ MCD::OPC_FilterValue, 1, 123, 9, 0, // Skip to: 2707 15648/* 280 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15649/* 283 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 337 15650/* 288 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15651/* 291 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 314 15652/* 296 */ MCD::OPC_CheckPredicate, 86, 102, 9, 0, // Skip to: 2707 15653/* 301 */ MCD::OPC_CheckField, 23, 9, 252, 3, 94, 9, 0, // Skip to: 2707 15654/* 309 */ MCD::OPC_Decode, 193, 17, 231, 3, // Opcode: VFMALDI 15655/* 314 */ MCD::OPC_FilterValue, 1, 84, 9, 0, // Skip to: 2707 15656/* 319 */ MCD::OPC_CheckPredicate, 86, 79, 9, 0, // Skip to: 2707 15657/* 324 */ MCD::OPC_CheckField, 23, 9, 252, 3, 71, 9, 0, // Skip to: 2707 15658/* 332 */ MCD::OPC_Decode, 195, 17, 220, 1, // Opcode: VFMALQI 15659/* 337 */ MCD::OPC_FilterValue, 1, 49, 0, 0, // Skip to: 391 15660/* 342 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15661/* 345 */ MCD::OPC_FilterValue, 0, 18, 0, 0, // Skip to: 368 15662/* 350 */ MCD::OPC_CheckPredicate, 86, 48, 9, 0, // Skip to: 2707 15663/* 355 */ MCD::OPC_CheckField, 23, 9, 252, 3, 40, 9, 0, // Skip to: 2707 15664/* 363 */ MCD::OPC_Decode, 204, 17, 231, 3, // Opcode: VFMSLDI 15665/* 368 */ MCD::OPC_FilterValue, 1, 30, 9, 0, // Skip to: 2707 15666/* 373 */ MCD::OPC_CheckPredicate, 86, 25, 9, 0, // Skip to: 2707 15667/* 378 */ MCD::OPC_CheckField, 23, 9, 252, 3, 17, 9, 0, // Skip to: 2707 15668/* 386 */ MCD::OPC_Decode, 206, 17, 220, 1, // Opcode: VFMSLQI 15669/* 391 */ MCD::OPC_FilterValue, 2, 7, 9, 0, // Skip to: 2707 15670/* 396 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15671/* 399 */ MCD::OPC_FilterValue, 0, 35, 0, 0, // Skip to: 439 15672/* 404 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 15673/* 407 */ MCD::OPC_FilterValue, 248, 3, 10, 0, 0, // Skip to: 423 15674/* 413 */ MCD::OPC_CheckPredicate, 86, 241, 8, 0, // Skip to: 2707 15675/* 418 */ MCD::OPC_Decode, 192, 17, 232, 3, // Opcode: VFMALD 15676/* 423 */ MCD::OPC_FilterValue, 249, 3, 230, 8, 0, // Skip to: 2707 15677/* 429 */ MCD::OPC_CheckPredicate, 86, 225, 8, 0, // Skip to: 2707 15678/* 434 */ MCD::OPC_Decode, 203, 17, 232, 3, // Opcode: VFMSLD 15679/* 439 */ MCD::OPC_FilterValue, 1, 215, 8, 0, // Skip to: 2707 15680/* 444 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 15681/* 447 */ MCD::OPC_FilterValue, 248, 3, 10, 0, 0, // Skip to: 463 15682/* 453 */ MCD::OPC_CheckPredicate, 86, 201, 8, 0, // Skip to: 2707 15683/* 458 */ MCD::OPC_Decode, 194, 17, 207, 1, // Opcode: VFMALQ 15684/* 463 */ MCD::OPC_FilterValue, 249, 3, 190, 8, 0, // Skip to: 2707 15685/* 469 */ MCD::OPC_CheckPredicate, 86, 185, 8, 0, // Skip to: 2707 15686/* 474 */ MCD::OPC_Decode, 205, 17, 207, 1, // Opcode: VFMSLQ 15687/* 479 */ MCD::OPC_FilterValue, 9, 123, 2, 0, // Skip to: 1119 15688/* 484 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15689/* 487 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 579 15690/* 492 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15691/* 495 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 549 15692/* 500 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 15693/* 503 */ MCD::OPC_FilterValue, 252, 3, 17, 0, 0, // Skip to: 526 15694/* 509 */ MCD::OPC_CheckPredicate, 70, 145, 8, 0, // Skip to: 2707 15695/* 514 */ MCD::OPC_CheckField, 4, 1, 0, 138, 8, 0, // Skip to: 2707 15696/* 521 */ MCD::OPC_Decode, 176, 25, 233, 3, // Opcode: VSELEQH 15697/* 526 */ MCD::OPC_FilterValue, 253, 3, 127, 8, 0, // Skip to: 2707 15698/* 532 */ MCD::OPC_CheckPredicate, 70, 122, 8, 0, // Skip to: 2707 15699/* 537 */ MCD::OPC_CheckField, 4, 1, 0, 115, 8, 0, // Skip to: 2707 15700/* 544 */ MCD::OPC_Decode, 219, 17, 233, 3, // Opcode: VFP_VMAXNMH 15701/* 549 */ MCD::OPC_FilterValue, 1, 105, 8, 0, // Skip to: 2707 15702/* 554 */ MCD::OPC_CheckPredicate, 70, 100, 8, 0, // Skip to: 2707 15703/* 559 */ MCD::OPC_CheckField, 23, 9, 253, 3, 92, 8, 0, // Skip to: 2707 15704/* 567 */ MCD::OPC_CheckField, 4, 1, 0, 85, 8, 0, // Skip to: 2707 15705/* 574 */ MCD::OPC_Decode, 222, 17, 233, 3, // Opcode: VFP_VMINNMH 15706/* 579 */ MCD::OPC_FilterValue, 1, 32, 0, 0, // Skip to: 616 15707/* 584 */ MCD::OPC_CheckPredicate, 70, 70, 8, 0, // Skip to: 2707 15708/* 589 */ MCD::OPC_CheckField, 23, 9, 252, 3, 62, 8, 0, // Skip to: 2707 15709/* 597 */ MCD::OPC_CheckField, 6, 1, 0, 55, 8, 0, // Skip to: 2707 15710/* 604 */ MCD::OPC_CheckField, 4, 1, 0, 48, 8, 0, // Skip to: 2707 15711/* 611 */ MCD::OPC_Decode, 185, 25, 233, 3, // Opcode: VSELVSH 15712/* 616 */ MCD::OPC_FilterValue, 2, 32, 0, 0, // Skip to: 653 15713/* 621 */ MCD::OPC_CheckPredicate, 70, 33, 8, 0, // Skip to: 2707 15714/* 626 */ MCD::OPC_CheckField, 23, 9, 252, 3, 25, 8, 0, // Skip to: 2707 15715/* 634 */ MCD::OPC_CheckField, 6, 1, 0, 18, 8, 0, // Skip to: 2707 15716/* 641 */ MCD::OPC_CheckField, 4, 1, 0, 11, 8, 0, // Skip to: 2707 15717/* 648 */ MCD::OPC_Decode, 179, 25, 233, 3, // Opcode: VSELGEH 15718/* 653 */ MCD::OPC_FilterValue, 3, 1, 8, 0, // Skip to: 2707 15719/* 658 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15720/* 661 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 691 15721/* 666 */ MCD::OPC_CheckPredicate, 70, 244, 7, 0, // Skip to: 2707 15722/* 671 */ MCD::OPC_CheckField, 23, 9, 252, 3, 236, 7, 0, // Skip to: 2707 15723/* 679 */ MCD::OPC_CheckField, 4, 1, 0, 229, 7, 0, // Skip to: 2707 15724/* 686 */ MCD::OPC_Decode, 182, 25, 233, 3, // Opcode: VSELGTH 15725/* 691 */ MCD::OPC_FilterValue, 1, 219, 7, 0, // Skip to: 2707 15726/* 696 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15727/* 699 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 736 15728/* 704 */ MCD::OPC_CheckPredicate, 70, 206, 7, 0, // Skip to: 2707 15729/* 709 */ MCD::OPC_CheckField, 23, 9, 253, 3, 198, 7, 0, // Skip to: 2707 15730/* 717 */ MCD::OPC_CheckField, 7, 1, 0, 191, 7, 0, // Skip to: 2707 15731/* 724 */ MCD::OPC_CheckField, 4, 1, 0, 184, 7, 0, // Skip to: 2707 15732/* 731 */ MCD::OPC_Decode, 189, 24, 234, 3, // Opcode: VRINTAH 15733/* 736 */ MCD::OPC_FilterValue, 9, 32, 0, 0, // Skip to: 773 15734/* 741 */ MCD::OPC_CheckPredicate, 70, 169, 7, 0, // Skip to: 2707 15735/* 746 */ MCD::OPC_CheckField, 23, 9, 253, 3, 161, 7, 0, // Skip to: 2707 15736/* 754 */ MCD::OPC_CheckField, 7, 1, 0, 154, 7, 0, // Skip to: 2707 15737/* 761 */ MCD::OPC_CheckField, 4, 1, 0, 147, 7, 0, // Skip to: 2707 15738/* 768 */ MCD::OPC_Decode, 203, 24, 234, 3, // Opcode: VRINTNH 15739/* 773 */ MCD::OPC_FilterValue, 10, 32, 0, 0, // Skip to: 810 15740/* 778 */ MCD::OPC_CheckPredicate, 70, 132, 7, 0, // Skip to: 2707 15741/* 783 */ MCD::OPC_CheckField, 23, 9, 253, 3, 124, 7, 0, // Skip to: 2707 15742/* 791 */ MCD::OPC_CheckField, 7, 1, 0, 117, 7, 0, // Skip to: 2707 15743/* 798 */ MCD::OPC_CheckField, 4, 1, 0, 110, 7, 0, // Skip to: 2707 15744/* 805 */ MCD::OPC_Decode, 210, 24, 234, 3, // Opcode: VRINTPH 15745/* 810 */ MCD::OPC_FilterValue, 11, 32, 0, 0, // Skip to: 847 15746/* 815 */ MCD::OPC_CheckPredicate, 70, 95, 7, 0, // Skip to: 2707 15747/* 820 */ MCD::OPC_CheckField, 23, 9, 253, 3, 87, 7, 0, // Skip to: 2707 15748/* 828 */ MCD::OPC_CheckField, 7, 1, 0, 80, 7, 0, // Skip to: 2707 15749/* 835 */ MCD::OPC_CheckField, 4, 1, 0, 73, 7, 0, // Skip to: 2707 15750/* 842 */ MCD::OPC_Decode, 196, 24, 234, 3, // Opcode: VRINTMH 15751/* 847 */ MCD::OPC_FilterValue, 12, 63, 0, 0, // Skip to: 915 15752/* 852 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15753/* 855 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 885 15754/* 860 */ MCD::OPC_CheckPredicate, 70, 50, 7, 0, // Skip to: 2707 15755/* 865 */ MCD::OPC_CheckField, 23, 9, 253, 3, 42, 7, 0, // Skip to: 2707 15756/* 873 */ MCD::OPC_CheckField, 4, 1, 0, 35, 7, 0, // Skip to: 2707 15757/* 880 */ MCD::OPC_Decode, 206, 16, 235, 3, // Opcode: VCVTAUH 15758/* 885 */ MCD::OPC_FilterValue, 1, 25, 7, 0, // Skip to: 2707 15759/* 890 */ MCD::OPC_CheckPredicate, 70, 20, 7, 0, // Skip to: 2707 15760/* 895 */ MCD::OPC_CheckField, 23, 9, 253, 3, 12, 7, 0, // Skip to: 2707 15761/* 903 */ MCD::OPC_CheckField, 4, 1, 0, 5, 7, 0, // Skip to: 2707 15762/* 910 */ MCD::OPC_Decode, 203, 16, 235, 3, // Opcode: VCVTASH 15763/* 915 */ MCD::OPC_FilterValue, 13, 63, 0, 0, // Skip to: 983 15764/* 920 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15765/* 923 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 953 15766/* 928 */ MCD::OPC_CheckPredicate, 70, 238, 6, 0, // Skip to: 2707 15767/* 933 */ MCD::OPC_CheckField, 23, 9, 253, 3, 230, 6, 0, // Skip to: 2707 15768/* 941 */ MCD::OPC_CheckField, 4, 1, 0, 223, 6, 0, // Skip to: 2707 15769/* 948 */ MCD::OPC_Decode, 239, 16, 235, 3, // Opcode: VCVTNUH 15770/* 953 */ MCD::OPC_FilterValue, 1, 213, 6, 0, // Skip to: 2707 15771/* 958 */ MCD::OPC_CheckPredicate, 70, 208, 6, 0, // Skip to: 2707 15772/* 963 */ MCD::OPC_CheckField, 23, 9, 253, 3, 200, 6, 0, // Skip to: 2707 15773/* 971 */ MCD::OPC_CheckField, 4, 1, 0, 193, 6, 0, // Skip to: 2707 15774/* 978 */ MCD::OPC_Decode, 236, 16, 235, 3, // Opcode: VCVTNSH 15775/* 983 */ MCD::OPC_FilterValue, 14, 63, 0, 0, // Skip to: 1051 15776/* 988 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15777/* 991 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1021 15778/* 996 */ MCD::OPC_CheckPredicate, 70, 170, 6, 0, // Skip to: 2707 15779/* 1001 */ MCD::OPC_CheckField, 23, 9, 253, 3, 162, 6, 0, // Skip to: 2707 15780/* 1009 */ MCD::OPC_CheckField, 4, 1, 0, 155, 6, 0, // Skip to: 2707 15781/* 1016 */ MCD::OPC_Decode, 253, 16, 235, 3, // Opcode: VCVTPUH 15782/* 1021 */ MCD::OPC_FilterValue, 1, 145, 6, 0, // Skip to: 2707 15783/* 1026 */ MCD::OPC_CheckPredicate, 70, 140, 6, 0, // Skip to: 2707 15784/* 1031 */ MCD::OPC_CheckField, 23, 9, 253, 3, 132, 6, 0, // Skip to: 2707 15785/* 1039 */ MCD::OPC_CheckField, 4, 1, 0, 125, 6, 0, // Skip to: 2707 15786/* 1046 */ MCD::OPC_Decode, 250, 16, 235, 3, // Opcode: VCVTPSH 15787/* 1051 */ MCD::OPC_FilterValue, 15, 115, 6, 0, // Skip to: 2707 15788/* 1056 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15789/* 1059 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1089 15790/* 1064 */ MCD::OPC_CheckPredicate, 70, 102, 6, 0, // Skip to: 2707 15791/* 1069 */ MCD::OPC_CheckField, 23, 9, 253, 3, 94, 6, 0, // Skip to: 2707 15792/* 1077 */ MCD::OPC_CheckField, 4, 1, 0, 87, 6, 0, // Skip to: 2707 15793/* 1084 */ MCD::OPC_Decode, 225, 16, 235, 3, // Opcode: VCVTMUH 15794/* 1089 */ MCD::OPC_FilterValue, 1, 77, 6, 0, // Skip to: 2707 15795/* 1094 */ MCD::OPC_CheckPredicate, 70, 72, 6, 0, // Skip to: 2707 15796/* 1099 */ MCD::OPC_CheckField, 23, 9, 253, 3, 64, 6, 0, // Skip to: 2707 15797/* 1107 */ MCD::OPC_CheckField, 4, 1, 0, 57, 6, 0, // Skip to: 2707 15798/* 1114 */ MCD::OPC_Decode, 222, 16, 235, 3, // Opcode: VCVTMSH 15799/* 1119 */ MCD::OPC_FilterValue, 10, 191, 2, 0, // Skip to: 1827 15800/* 1124 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15801/* 1127 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 1219 15802/* 1132 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15803/* 1135 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 1189 15804/* 1140 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 15805/* 1143 */ MCD::OPC_FilterValue, 252, 3, 17, 0, 0, // Skip to: 1166 15806/* 1149 */ MCD::OPC_CheckPredicate, 77, 17, 6, 0, // Skip to: 2707 15807/* 1154 */ MCD::OPC_CheckField, 4, 1, 0, 10, 6, 0, // Skip to: 2707 15808/* 1161 */ MCD::OPC_Decode, 177, 25, 236, 3, // Opcode: VSELEQS 15809/* 1166 */ MCD::OPC_FilterValue, 253, 3, 255, 5, 0, // Skip to: 2707 15810/* 1172 */ MCD::OPC_CheckPredicate, 77, 250, 5, 0, // Skip to: 2707 15811/* 1177 */ MCD::OPC_CheckField, 4, 1, 0, 243, 5, 0, // Skip to: 2707 15812/* 1184 */ MCD::OPC_Decode, 220, 17, 236, 3, // Opcode: VFP_VMAXNMS 15813/* 1189 */ MCD::OPC_FilterValue, 1, 233, 5, 0, // Skip to: 2707 15814/* 1194 */ MCD::OPC_CheckPredicate, 77, 228, 5, 0, // Skip to: 2707 15815/* 1199 */ MCD::OPC_CheckField, 23, 9, 253, 3, 220, 5, 0, // Skip to: 2707 15816/* 1207 */ MCD::OPC_CheckField, 4, 1, 0, 213, 5, 0, // Skip to: 2707 15817/* 1214 */ MCD::OPC_Decode, 223, 17, 236, 3, // Opcode: VFP_VMINNMS 15818/* 1219 */ MCD::OPC_FilterValue, 1, 32, 0, 0, // Skip to: 1256 15819/* 1224 */ MCD::OPC_CheckPredicate, 77, 198, 5, 0, // Skip to: 2707 15820/* 1229 */ MCD::OPC_CheckField, 23, 9, 252, 3, 190, 5, 0, // Skip to: 2707 15821/* 1237 */ MCD::OPC_CheckField, 6, 1, 0, 183, 5, 0, // Skip to: 2707 15822/* 1244 */ MCD::OPC_CheckField, 4, 1, 0, 176, 5, 0, // Skip to: 2707 15823/* 1251 */ MCD::OPC_Decode, 186, 25, 236, 3, // Opcode: VSELVSS 15824/* 1256 */ MCD::OPC_FilterValue, 2, 32, 0, 0, // Skip to: 1293 15825/* 1261 */ MCD::OPC_CheckPredicate, 77, 161, 5, 0, // Skip to: 2707 15826/* 1266 */ MCD::OPC_CheckField, 23, 9, 252, 3, 153, 5, 0, // Skip to: 2707 15827/* 1274 */ MCD::OPC_CheckField, 6, 1, 0, 146, 5, 0, // Skip to: 2707 15828/* 1281 */ MCD::OPC_CheckField, 4, 1, 0, 139, 5, 0, // Skip to: 2707 15829/* 1288 */ MCD::OPC_Decode, 180, 25, 236, 3, // Opcode: VSELGES 15830/* 1293 */ MCD::OPC_FilterValue, 3, 129, 5, 0, // Skip to: 2707 15831/* 1298 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15832/* 1301 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1331 15833/* 1306 */ MCD::OPC_CheckPredicate, 77, 116, 5, 0, // Skip to: 2707 15834/* 1311 */ MCD::OPC_CheckField, 23, 9, 252, 3, 108, 5, 0, // Skip to: 2707 15835/* 1319 */ MCD::OPC_CheckField, 4, 1, 0, 101, 5, 0, // Skip to: 2707 15836/* 1326 */ MCD::OPC_Decode, 183, 25, 236, 3, // Opcode: VSELGTS 15837/* 1331 */ MCD::OPC_FilterValue, 1, 91, 5, 0, // Skip to: 2707 15838/* 1336 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15839/* 1339 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 1407 15840/* 1344 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15841/* 1347 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1377 15842/* 1352 */ MCD::OPC_CheckPredicate, 70, 70, 5, 0, // Skip to: 2707 15843/* 1357 */ MCD::OPC_CheckField, 23, 9, 253, 3, 62, 5, 0, // Skip to: 2707 15844/* 1365 */ MCD::OPC_CheckField, 4, 1, 0, 55, 5, 0, // Skip to: 2707 15845/* 1372 */ MCD::OPC_Decode, 197, 21, 237, 3, // Opcode: VMOVH 15846/* 1377 */ MCD::OPC_FilterValue, 1, 45, 5, 0, // Skip to: 2707 15847/* 1382 */ MCD::OPC_CheckPredicate, 70, 40, 5, 0, // Skip to: 2707 15848/* 1387 */ MCD::OPC_CheckField, 23, 9, 253, 3, 32, 5, 0, // Skip to: 2707 15849/* 1395 */ MCD::OPC_CheckField, 4, 1, 0, 25, 5, 0, // Skip to: 2707 15850/* 1402 */ MCD::OPC_Decode, 253, 17, 237, 3, // Opcode: VINSH 15851/* 1407 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 1444 15852/* 1412 */ MCD::OPC_CheckPredicate, 77, 10, 5, 0, // Skip to: 2707 15853/* 1417 */ MCD::OPC_CheckField, 23, 9, 253, 3, 2, 5, 0, // Skip to: 2707 15854/* 1425 */ MCD::OPC_CheckField, 7, 1, 0, 251, 4, 0, // Skip to: 2707 15855/* 1432 */ MCD::OPC_CheckField, 4, 1, 0, 244, 4, 0, // Skip to: 2707 15856/* 1439 */ MCD::OPC_Decode, 194, 24, 237, 3, // Opcode: VRINTAS 15857/* 1444 */ MCD::OPC_FilterValue, 9, 32, 0, 0, // Skip to: 1481 15858/* 1449 */ MCD::OPC_CheckPredicate, 77, 229, 4, 0, // Skip to: 2707 15859/* 1454 */ MCD::OPC_CheckField, 23, 9, 253, 3, 221, 4, 0, // Skip to: 2707 15860/* 1462 */ MCD::OPC_CheckField, 7, 1, 0, 214, 4, 0, // Skip to: 2707 15861/* 1469 */ MCD::OPC_CheckField, 4, 1, 0, 207, 4, 0, // Skip to: 2707 15862/* 1476 */ MCD::OPC_Decode, 208, 24, 237, 3, // Opcode: VRINTNS 15863/* 1481 */ MCD::OPC_FilterValue, 10, 32, 0, 0, // Skip to: 1518 15864/* 1486 */ MCD::OPC_CheckPredicate, 77, 192, 4, 0, // Skip to: 2707 15865/* 1491 */ MCD::OPC_CheckField, 23, 9, 253, 3, 184, 4, 0, // Skip to: 2707 15866/* 1499 */ MCD::OPC_CheckField, 7, 1, 0, 177, 4, 0, // Skip to: 2707 15867/* 1506 */ MCD::OPC_CheckField, 4, 1, 0, 170, 4, 0, // Skip to: 2707 15868/* 1513 */ MCD::OPC_Decode, 215, 24, 237, 3, // Opcode: VRINTPS 15869/* 1518 */ MCD::OPC_FilterValue, 11, 32, 0, 0, // Skip to: 1555 15870/* 1523 */ MCD::OPC_CheckPredicate, 77, 155, 4, 0, // Skip to: 2707 15871/* 1528 */ MCD::OPC_CheckField, 23, 9, 253, 3, 147, 4, 0, // Skip to: 2707 15872/* 1536 */ MCD::OPC_CheckField, 7, 1, 0, 140, 4, 0, // Skip to: 2707 15873/* 1543 */ MCD::OPC_CheckField, 4, 1, 0, 133, 4, 0, // Skip to: 2707 15874/* 1550 */ MCD::OPC_Decode, 201, 24, 237, 3, // Opcode: VRINTMS 15875/* 1555 */ MCD::OPC_FilterValue, 12, 63, 0, 0, // Skip to: 1623 15876/* 1560 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15877/* 1563 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1593 15878/* 1568 */ MCD::OPC_CheckPredicate, 77, 110, 4, 0, // Skip to: 2707 15879/* 1573 */ MCD::OPC_CheckField, 23, 9, 253, 3, 102, 4, 0, // Skip to: 2707 15880/* 1581 */ MCD::OPC_CheckField, 4, 1, 0, 95, 4, 0, // Skip to: 2707 15881/* 1588 */ MCD::OPC_Decode, 207, 16, 237, 3, // Opcode: VCVTAUS 15882/* 1593 */ MCD::OPC_FilterValue, 1, 85, 4, 0, // Skip to: 2707 15883/* 1598 */ MCD::OPC_CheckPredicate, 77, 80, 4, 0, // Skip to: 2707 15884/* 1603 */ MCD::OPC_CheckField, 23, 9, 253, 3, 72, 4, 0, // Skip to: 2707 15885/* 1611 */ MCD::OPC_CheckField, 4, 1, 0, 65, 4, 0, // Skip to: 2707 15886/* 1618 */ MCD::OPC_Decode, 204, 16, 237, 3, // Opcode: VCVTASS 15887/* 1623 */ MCD::OPC_FilterValue, 13, 63, 0, 0, // Skip to: 1691 15888/* 1628 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15889/* 1631 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1661 15890/* 1636 */ MCD::OPC_CheckPredicate, 77, 42, 4, 0, // Skip to: 2707 15891/* 1641 */ MCD::OPC_CheckField, 23, 9, 253, 3, 34, 4, 0, // Skip to: 2707 15892/* 1649 */ MCD::OPC_CheckField, 4, 1, 0, 27, 4, 0, // Skip to: 2707 15893/* 1656 */ MCD::OPC_Decode, 240, 16, 237, 3, // Opcode: VCVTNUS 15894/* 1661 */ MCD::OPC_FilterValue, 1, 17, 4, 0, // Skip to: 2707 15895/* 1666 */ MCD::OPC_CheckPredicate, 77, 12, 4, 0, // Skip to: 2707 15896/* 1671 */ MCD::OPC_CheckField, 23, 9, 253, 3, 4, 4, 0, // Skip to: 2707 15897/* 1679 */ MCD::OPC_CheckField, 4, 1, 0, 253, 3, 0, // Skip to: 2707 15898/* 1686 */ MCD::OPC_Decode, 237, 16, 237, 3, // Opcode: VCVTNSS 15899/* 1691 */ MCD::OPC_FilterValue, 14, 63, 0, 0, // Skip to: 1759 15900/* 1696 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15901/* 1699 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1729 15902/* 1704 */ MCD::OPC_CheckPredicate, 77, 230, 3, 0, // Skip to: 2707 15903/* 1709 */ MCD::OPC_CheckField, 23, 9, 253, 3, 222, 3, 0, // Skip to: 2707 15904/* 1717 */ MCD::OPC_CheckField, 4, 1, 0, 215, 3, 0, // Skip to: 2707 15905/* 1724 */ MCD::OPC_Decode, 254, 16, 237, 3, // Opcode: VCVTPUS 15906/* 1729 */ MCD::OPC_FilterValue, 1, 205, 3, 0, // Skip to: 2707 15907/* 1734 */ MCD::OPC_CheckPredicate, 77, 200, 3, 0, // Skip to: 2707 15908/* 1739 */ MCD::OPC_CheckField, 23, 9, 253, 3, 192, 3, 0, // Skip to: 2707 15909/* 1747 */ MCD::OPC_CheckField, 4, 1, 0, 185, 3, 0, // Skip to: 2707 15910/* 1754 */ MCD::OPC_Decode, 251, 16, 237, 3, // Opcode: VCVTPSS 15911/* 1759 */ MCD::OPC_FilterValue, 15, 175, 3, 0, // Skip to: 2707 15912/* 1764 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15913/* 1767 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 1797 15914/* 1772 */ MCD::OPC_CheckPredicate, 77, 162, 3, 0, // Skip to: 2707 15915/* 1777 */ MCD::OPC_CheckField, 23, 9, 253, 3, 154, 3, 0, // Skip to: 2707 15916/* 1785 */ MCD::OPC_CheckField, 4, 1, 0, 147, 3, 0, // Skip to: 2707 15917/* 1792 */ MCD::OPC_Decode, 226, 16, 237, 3, // Opcode: VCVTMUS 15918/* 1797 */ MCD::OPC_FilterValue, 1, 137, 3, 0, // Skip to: 2707 15919/* 1802 */ MCD::OPC_CheckPredicate, 77, 132, 3, 0, // Skip to: 2707 15920/* 1807 */ MCD::OPC_CheckField, 23, 9, 253, 3, 124, 3, 0, // Skip to: 2707 15921/* 1815 */ MCD::OPC_CheckField, 4, 1, 0, 117, 3, 0, // Skip to: 2707 15922/* 1822 */ MCD::OPC_Decode, 223, 16, 237, 3, // Opcode: VCVTMSS 15923/* 1827 */ MCD::OPC_FilterValue, 11, 123, 2, 0, // Skip to: 2467 15924/* 1832 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 15925/* 1835 */ MCD::OPC_FilterValue, 0, 87, 0, 0, // Skip to: 1927 15926/* 1840 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15927/* 1843 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 1897 15928/* 1848 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 15929/* 1851 */ MCD::OPC_FilterValue, 252, 3, 17, 0, 0, // Skip to: 1874 15930/* 1857 */ MCD::OPC_CheckPredicate, 82, 77, 3, 0, // Skip to: 2707 15931/* 1862 */ MCD::OPC_CheckField, 4, 1, 0, 70, 3, 0, // Skip to: 2707 15932/* 1869 */ MCD::OPC_Decode, 175, 25, 205, 1, // Opcode: VSELEQD 15933/* 1874 */ MCD::OPC_FilterValue, 253, 3, 59, 3, 0, // Skip to: 2707 15934/* 1880 */ MCD::OPC_CheckPredicate, 82, 54, 3, 0, // Skip to: 2707 15935/* 1885 */ MCD::OPC_CheckField, 4, 1, 0, 47, 3, 0, // Skip to: 2707 15936/* 1892 */ MCD::OPC_Decode, 218, 17, 205, 1, // Opcode: VFP_VMAXNMD 15937/* 1897 */ MCD::OPC_FilterValue, 1, 37, 3, 0, // Skip to: 2707 15938/* 1902 */ MCD::OPC_CheckPredicate, 82, 32, 3, 0, // Skip to: 2707 15939/* 1907 */ MCD::OPC_CheckField, 23, 9, 253, 3, 24, 3, 0, // Skip to: 2707 15940/* 1915 */ MCD::OPC_CheckField, 4, 1, 0, 17, 3, 0, // Skip to: 2707 15941/* 1922 */ MCD::OPC_Decode, 221, 17, 205, 1, // Opcode: VFP_VMINNMD 15942/* 1927 */ MCD::OPC_FilterValue, 1, 32, 0, 0, // Skip to: 1964 15943/* 1932 */ MCD::OPC_CheckPredicate, 82, 2, 3, 0, // Skip to: 2707 15944/* 1937 */ MCD::OPC_CheckField, 23, 9, 252, 3, 250, 2, 0, // Skip to: 2707 15945/* 1945 */ MCD::OPC_CheckField, 6, 1, 0, 243, 2, 0, // Skip to: 2707 15946/* 1952 */ MCD::OPC_CheckField, 4, 1, 0, 236, 2, 0, // Skip to: 2707 15947/* 1959 */ MCD::OPC_Decode, 184, 25, 205, 1, // Opcode: VSELVSD 15948/* 1964 */ MCD::OPC_FilterValue, 2, 32, 0, 0, // Skip to: 2001 15949/* 1969 */ MCD::OPC_CheckPredicate, 82, 221, 2, 0, // Skip to: 2707 15950/* 1974 */ MCD::OPC_CheckField, 23, 9, 252, 3, 213, 2, 0, // Skip to: 2707 15951/* 1982 */ MCD::OPC_CheckField, 6, 1, 0, 206, 2, 0, // Skip to: 2707 15952/* 1989 */ MCD::OPC_CheckField, 4, 1, 0, 199, 2, 0, // Skip to: 2707 15953/* 1996 */ MCD::OPC_Decode, 178, 25, 205, 1, // Opcode: VSELGED 15954/* 2001 */ MCD::OPC_FilterValue, 3, 189, 2, 0, // Skip to: 2707 15955/* 2006 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 15956/* 2009 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2039 15957/* 2014 */ MCD::OPC_CheckPredicate, 82, 176, 2, 0, // Skip to: 2707 15958/* 2019 */ MCD::OPC_CheckField, 23, 9, 252, 3, 168, 2, 0, // Skip to: 2707 15959/* 2027 */ MCD::OPC_CheckField, 4, 1, 0, 161, 2, 0, // Skip to: 2707 15960/* 2034 */ MCD::OPC_Decode, 181, 25, 205, 1, // Opcode: VSELGTD 15961/* 2039 */ MCD::OPC_FilterValue, 1, 151, 2, 0, // Skip to: 2707 15962/* 2044 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 15963/* 2047 */ MCD::OPC_FilterValue, 8, 32, 0, 0, // Skip to: 2084 15964/* 2052 */ MCD::OPC_CheckPredicate, 82, 138, 2, 0, // Skip to: 2707 15965/* 2057 */ MCD::OPC_CheckField, 23, 9, 253, 3, 130, 2, 0, // Skip to: 2707 15966/* 2065 */ MCD::OPC_CheckField, 7, 1, 0, 123, 2, 0, // Skip to: 2707 15967/* 2072 */ MCD::OPC_CheckField, 4, 1, 0, 116, 2, 0, // Skip to: 2707 15968/* 2079 */ MCD::OPC_Decode, 188, 24, 234, 1, // Opcode: VRINTAD 15969/* 2084 */ MCD::OPC_FilterValue, 9, 32, 0, 0, // Skip to: 2121 15970/* 2089 */ MCD::OPC_CheckPredicate, 82, 101, 2, 0, // Skip to: 2707 15971/* 2094 */ MCD::OPC_CheckField, 23, 9, 253, 3, 93, 2, 0, // Skip to: 2707 15972/* 2102 */ MCD::OPC_CheckField, 7, 1, 0, 86, 2, 0, // Skip to: 2707 15973/* 2109 */ MCD::OPC_CheckField, 4, 1, 0, 79, 2, 0, // Skip to: 2707 15974/* 2116 */ MCD::OPC_Decode, 202, 24, 234, 1, // Opcode: VRINTND 15975/* 2121 */ MCD::OPC_FilterValue, 10, 32, 0, 0, // Skip to: 2158 15976/* 2126 */ MCD::OPC_CheckPredicate, 82, 64, 2, 0, // Skip to: 2707 15977/* 2131 */ MCD::OPC_CheckField, 23, 9, 253, 3, 56, 2, 0, // Skip to: 2707 15978/* 2139 */ MCD::OPC_CheckField, 7, 1, 0, 49, 2, 0, // Skip to: 2707 15979/* 2146 */ MCD::OPC_CheckField, 4, 1, 0, 42, 2, 0, // Skip to: 2707 15980/* 2153 */ MCD::OPC_Decode, 209, 24, 234, 1, // Opcode: VRINTPD 15981/* 2158 */ MCD::OPC_FilterValue, 11, 32, 0, 0, // Skip to: 2195 15982/* 2163 */ MCD::OPC_CheckPredicate, 82, 27, 2, 0, // Skip to: 2707 15983/* 2168 */ MCD::OPC_CheckField, 23, 9, 253, 3, 19, 2, 0, // Skip to: 2707 15984/* 2176 */ MCD::OPC_CheckField, 7, 1, 0, 12, 2, 0, // Skip to: 2707 15985/* 2183 */ MCD::OPC_CheckField, 4, 1, 0, 5, 2, 0, // Skip to: 2707 15986/* 2190 */ MCD::OPC_Decode, 195, 24, 234, 1, // Opcode: VRINTMD 15987/* 2195 */ MCD::OPC_FilterValue, 12, 63, 0, 0, // Skip to: 2263 15988/* 2200 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 15989/* 2203 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2233 15990/* 2208 */ MCD::OPC_CheckPredicate, 82, 238, 1, 0, // Skip to: 2707 15991/* 2213 */ MCD::OPC_CheckField, 23, 9, 253, 3, 230, 1, 0, // Skip to: 2707 15992/* 2221 */ MCD::OPC_CheckField, 4, 1, 0, 223, 1, 0, // Skip to: 2707 15993/* 2228 */ MCD::OPC_Decode, 205, 16, 238, 3, // Opcode: VCVTAUD 15994/* 2233 */ MCD::OPC_FilterValue, 1, 213, 1, 0, // Skip to: 2707 15995/* 2238 */ MCD::OPC_CheckPredicate, 82, 208, 1, 0, // Skip to: 2707 15996/* 2243 */ MCD::OPC_CheckField, 23, 9, 253, 3, 200, 1, 0, // Skip to: 2707 15997/* 2251 */ MCD::OPC_CheckField, 4, 1, 0, 193, 1, 0, // Skip to: 2707 15998/* 2258 */ MCD::OPC_Decode, 202, 16, 238, 3, // Opcode: VCVTASD 15999/* 2263 */ MCD::OPC_FilterValue, 13, 63, 0, 0, // Skip to: 2331 16000/* 2268 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 16001/* 2271 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2301 16002/* 2276 */ MCD::OPC_CheckPredicate, 82, 170, 1, 0, // Skip to: 2707 16003/* 2281 */ MCD::OPC_CheckField, 23, 9, 253, 3, 162, 1, 0, // Skip to: 2707 16004/* 2289 */ MCD::OPC_CheckField, 4, 1, 0, 155, 1, 0, // Skip to: 2707 16005/* 2296 */ MCD::OPC_Decode, 238, 16, 238, 3, // Opcode: VCVTNUD 16006/* 2301 */ MCD::OPC_FilterValue, 1, 145, 1, 0, // Skip to: 2707 16007/* 2306 */ MCD::OPC_CheckPredicate, 82, 140, 1, 0, // Skip to: 2707 16008/* 2311 */ MCD::OPC_CheckField, 23, 9, 253, 3, 132, 1, 0, // Skip to: 2707 16009/* 2319 */ MCD::OPC_CheckField, 4, 1, 0, 125, 1, 0, // Skip to: 2707 16010/* 2326 */ MCD::OPC_Decode, 235, 16, 238, 3, // Opcode: VCVTNSD 16011/* 2331 */ MCD::OPC_FilterValue, 14, 63, 0, 0, // Skip to: 2399 16012/* 2336 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 16013/* 2339 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2369 16014/* 2344 */ MCD::OPC_CheckPredicate, 82, 102, 1, 0, // Skip to: 2707 16015/* 2349 */ MCD::OPC_CheckField, 23, 9, 253, 3, 94, 1, 0, // Skip to: 2707 16016/* 2357 */ MCD::OPC_CheckField, 4, 1, 0, 87, 1, 0, // Skip to: 2707 16017/* 2364 */ MCD::OPC_Decode, 252, 16, 238, 3, // Opcode: VCVTPUD 16018/* 2369 */ MCD::OPC_FilterValue, 1, 77, 1, 0, // Skip to: 2707 16019/* 2374 */ MCD::OPC_CheckPredicate, 82, 72, 1, 0, // Skip to: 2707 16020/* 2379 */ MCD::OPC_CheckField, 23, 9, 253, 3, 64, 1, 0, // Skip to: 2707 16021/* 2387 */ MCD::OPC_CheckField, 4, 1, 0, 57, 1, 0, // Skip to: 2707 16022/* 2394 */ MCD::OPC_Decode, 249, 16, 238, 3, // Opcode: VCVTPSD 16023/* 2399 */ MCD::OPC_FilterValue, 15, 47, 1, 0, // Skip to: 2707 16024/* 2404 */ MCD::OPC_ExtractField, 7, 1, // Inst{7} ... 16025/* 2407 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2437 16026/* 2412 */ MCD::OPC_CheckPredicate, 82, 34, 1, 0, // Skip to: 2707 16027/* 2417 */ MCD::OPC_CheckField, 23, 9, 253, 3, 26, 1, 0, // Skip to: 2707 16028/* 2425 */ MCD::OPC_CheckField, 4, 1, 0, 19, 1, 0, // Skip to: 2707 16029/* 2432 */ MCD::OPC_Decode, 224, 16, 238, 3, // Opcode: VCVTMUD 16030/* 2437 */ MCD::OPC_FilterValue, 1, 9, 1, 0, // Skip to: 2707 16031/* 2442 */ MCD::OPC_CheckPredicate, 82, 4, 1, 0, // Skip to: 2707 16032/* 2447 */ MCD::OPC_CheckField, 23, 9, 253, 3, 252, 0, 0, // Skip to: 2707 16033/* 2455 */ MCD::OPC_CheckField, 4, 1, 0, 245, 0, 0, // Skip to: 2707 16034/* 2462 */ MCD::OPC_Decode, 221, 16, 238, 3, // Opcode: VCVTMSD 16035/* 2467 */ MCD::OPC_FilterValue, 13, 235, 0, 0, // Skip to: 2707 16036/* 2472 */ MCD::OPC_ExtractField, 4, 1, // Inst{4} ... 16037/* 2475 */ MCD::OPC_FilterValue, 0, 111, 0, 0, // Skip to: 2591 16038/* 2480 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16039/* 2483 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 2537 16040/* 2488 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16041/* 2491 */ MCD::OPC_FilterValue, 248, 3, 17, 0, 0, // Skip to: 2514 16042/* 2497 */ MCD::OPC_CheckPredicate, 87, 205, 0, 0, // Skip to: 2707 16043/* 2502 */ MCD::OPC_CheckField, 20, 2, 2, 198, 0, 0, // Skip to: 2707 16044/* 2509 */ MCD::OPC_Decode, 171, 25, 213, 1, // Opcode: VSDOTD 16045/* 2514 */ MCD::OPC_FilterValue, 252, 3, 187, 0, 0, // Skip to: 2707 16046/* 2520 */ MCD::OPC_CheckPredicate, 87, 182, 0, 0, // Skip to: 2707 16047/* 2525 */ MCD::OPC_CheckField, 20, 2, 2, 175, 0, 0, // Skip to: 2707 16048/* 2532 */ MCD::OPC_Decode, 172, 25, 221, 1, // Opcode: VSDOTDI 16049/* 2537 */ MCD::OPC_FilterValue, 1, 165, 0, 0, // Skip to: 2707 16050/* 2542 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16051/* 2545 */ MCD::OPC_FilterValue, 248, 3, 17, 0, 0, // Skip to: 2568 16052/* 2551 */ MCD::OPC_CheckPredicate, 87, 151, 0, 0, // Skip to: 2707 16053/* 2556 */ MCD::OPC_CheckField, 20, 2, 2, 144, 0, 0, // Skip to: 2707 16054/* 2563 */ MCD::OPC_Decode, 173, 25, 214, 1, // Opcode: VSDOTQ 16055/* 2568 */ MCD::OPC_FilterValue, 252, 3, 133, 0, 0, // Skip to: 2707 16056/* 2574 */ MCD::OPC_CheckPredicate, 87, 128, 0, 0, // Skip to: 2707 16057/* 2579 */ MCD::OPC_CheckField, 20, 2, 2, 121, 0, 0, // Skip to: 2707 16058/* 2586 */ MCD::OPC_Decode, 174, 25, 222, 1, // Opcode: VSDOTQI 16059/* 2591 */ MCD::OPC_FilterValue, 1, 111, 0, 0, // Skip to: 2707 16060/* 2596 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16061/* 2599 */ MCD::OPC_FilterValue, 0, 49, 0, 0, // Skip to: 2653 16062/* 2604 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16063/* 2607 */ MCD::OPC_FilterValue, 248, 3, 17, 0, 0, // Skip to: 2630 16064/* 2613 */ MCD::OPC_CheckPredicate, 87, 89, 0, 0, // Skip to: 2707 16065/* 2618 */ MCD::OPC_CheckField, 20, 2, 2, 82, 0, 0, // Skip to: 2707 16066/* 2625 */ MCD::OPC_Decode, 248, 28, 213, 1, // Opcode: VUDOTD 16067/* 2630 */ MCD::OPC_FilterValue, 252, 3, 71, 0, 0, // Skip to: 2707 16068/* 2636 */ MCD::OPC_CheckPredicate, 87, 66, 0, 0, // Skip to: 2707 16069/* 2641 */ MCD::OPC_CheckField, 20, 2, 2, 59, 0, 0, // Skip to: 2707 16070/* 2648 */ MCD::OPC_Decode, 249, 28, 221, 1, // Opcode: VUDOTDI 16071/* 2653 */ MCD::OPC_FilterValue, 1, 49, 0, 0, // Skip to: 2707 16072/* 2658 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16073/* 2661 */ MCD::OPC_FilterValue, 248, 3, 17, 0, 0, // Skip to: 2684 16074/* 2667 */ MCD::OPC_CheckPredicate, 87, 35, 0, 0, // Skip to: 2707 16075/* 2672 */ MCD::OPC_CheckField, 20, 2, 2, 28, 0, 0, // Skip to: 2707 16076/* 2679 */ MCD::OPC_Decode, 250, 28, 214, 1, // Opcode: VUDOTQ 16077/* 2684 */ MCD::OPC_FilterValue, 252, 3, 17, 0, 0, // Skip to: 2707 16078/* 2690 */ MCD::OPC_CheckPredicate, 87, 12, 0, 0, // Skip to: 2707 16079/* 2695 */ MCD::OPC_CheckField, 20, 2, 2, 5, 0, 0, // Skip to: 2707 16080/* 2702 */ MCD::OPC_Decode, 251, 28, 222, 1, // Opcode: VUDOTQI 16081/* 2707 */ MCD::OPC_Fail, 16082 0 16083}; 16084 16085static const uint8_t DecoderTablev8Crypto32[] = { 16086/* 0 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 16087/* 3 */ MCD::OPC_FilterValue, 0, 77, 0, 0, // Skip to: 85 16088/* 8 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16089/* 11 */ MCD::OPC_FilterValue, 228, 3, 31, 0, 0, // Skip to: 48 16090/* 17 */ MCD::OPC_CheckPredicate, 29, 22, 2, 0, // Skip to: 556 16091/* 22 */ MCD::OPC_CheckField, 8, 4, 12, 15, 2, 0, // Skip to: 556 16092/* 29 */ MCD::OPC_CheckField, 6, 1, 1, 8, 2, 0, // Skip to: 556 16093/* 36 */ MCD::OPC_CheckField, 4, 1, 0, 1, 2, 0, // Skip to: 556 16094/* 43 */ MCD::OPC_Decode, 160, 13, 214, 1, // Opcode: SHA1C 16095/* 48 */ MCD::OPC_FilterValue, 230, 3, 246, 1, 0, // Skip to: 556 16096/* 54 */ MCD::OPC_CheckPredicate, 29, 241, 1, 0, // Skip to: 556 16097/* 59 */ MCD::OPC_CheckField, 8, 4, 12, 234, 1, 0, // Skip to: 556 16098/* 66 */ MCD::OPC_CheckField, 6, 1, 1, 227, 1, 0, // Skip to: 556 16099/* 73 */ MCD::OPC_CheckField, 4, 1, 0, 220, 1, 0, // Skip to: 556 16100/* 80 */ MCD::OPC_Decode, 166, 13, 214, 1, // Opcode: SHA256H 16101/* 85 */ MCD::OPC_FilterValue, 1, 77, 0, 0, // Skip to: 167 16102/* 90 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16103/* 93 */ MCD::OPC_FilterValue, 228, 3, 31, 0, 0, // Skip to: 130 16104/* 99 */ MCD::OPC_CheckPredicate, 29, 196, 1, 0, // Skip to: 556 16105/* 104 */ MCD::OPC_CheckField, 8, 4, 12, 189, 1, 0, // Skip to: 556 16106/* 111 */ MCD::OPC_CheckField, 6, 1, 1, 182, 1, 0, // Skip to: 556 16107/* 118 */ MCD::OPC_CheckField, 4, 1, 0, 175, 1, 0, // Skip to: 556 16108/* 125 */ MCD::OPC_Decode, 163, 13, 214, 1, // Opcode: SHA1P 16109/* 130 */ MCD::OPC_FilterValue, 230, 3, 164, 1, 0, // Skip to: 556 16110/* 136 */ MCD::OPC_CheckPredicate, 29, 159, 1, 0, // Skip to: 556 16111/* 141 */ MCD::OPC_CheckField, 8, 4, 12, 152, 1, 0, // Skip to: 556 16112/* 148 */ MCD::OPC_CheckField, 6, 1, 1, 145, 1, 0, // Skip to: 556 16113/* 155 */ MCD::OPC_CheckField, 4, 1, 0, 138, 1, 0, // Skip to: 556 16114/* 162 */ MCD::OPC_Decode, 167, 13, 214, 1, // Opcode: SHA256H2 16115/* 167 */ MCD::OPC_FilterValue, 2, 77, 0, 0, // Skip to: 249 16116/* 172 */ MCD::OPC_ExtractField, 23, 9, // Inst{31-23} ... 16117/* 175 */ MCD::OPC_FilterValue, 228, 3, 31, 0, 0, // Skip to: 212 16118/* 181 */ MCD::OPC_CheckPredicate, 29, 114, 1, 0, // Skip to: 556 16119/* 186 */ MCD::OPC_CheckField, 8, 4, 12, 107, 1, 0, // Skip to: 556 16120/* 193 */ MCD::OPC_CheckField, 6, 1, 1, 100, 1, 0, // Skip to: 556 16121/* 200 */ MCD::OPC_CheckField, 4, 1, 0, 93, 1, 0, // Skip to: 556 16122/* 207 */ MCD::OPC_Decode, 162, 13, 214, 1, // Opcode: SHA1M 16123/* 212 */ MCD::OPC_FilterValue, 230, 3, 82, 1, 0, // Skip to: 556 16124/* 218 */ MCD::OPC_CheckPredicate, 29, 77, 1, 0, // Skip to: 556 16125/* 223 */ MCD::OPC_CheckField, 8, 4, 12, 70, 1, 0, // Skip to: 556 16126/* 230 */ MCD::OPC_CheckField, 6, 1, 1, 63, 1, 0, // Skip to: 556 16127/* 237 */ MCD::OPC_CheckField, 4, 1, 0, 56, 1, 0, // Skip to: 556 16128/* 244 */ MCD::OPC_Decode, 169, 13, 214, 1, // Opcode: SHA256SU1 16129/* 249 */ MCD::OPC_FilterValue, 3, 46, 1, 0, // Skip to: 556 16130/* 254 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 16131/* 257 */ MCD::OPC_FilterValue, 2, 39, 0, 0, // Skip to: 301 16132/* 262 */ MCD::OPC_CheckPredicate, 29, 33, 1, 0, // Skip to: 556 16133/* 267 */ MCD::OPC_CheckField, 23, 9, 231, 3, 25, 1, 0, // Skip to: 556 16134/* 275 */ MCD::OPC_CheckField, 16, 4, 9, 18, 1, 0, // Skip to: 556 16135/* 282 */ MCD::OPC_CheckField, 6, 2, 3, 11, 1, 0, // Skip to: 556 16136/* 289 */ MCD::OPC_CheckField, 4, 1, 0, 4, 1, 0, // Skip to: 556 16137/* 296 */ MCD::OPC_Decode, 161, 13, 235, 1, // Opcode: SHA1H 16138/* 301 */ MCD::OPC_FilterValue, 3, 213, 0, 0, // Skip to: 519 16139/* 306 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16140/* 309 */ MCD::OPC_FilterValue, 0, 32, 0, 0, // Skip to: 346 16141/* 314 */ MCD::OPC_CheckPredicate, 29, 237, 0, 0, // Skip to: 556 16142/* 319 */ MCD::OPC_CheckField, 23, 9, 231, 3, 229, 0, 0, // Skip to: 556 16143/* 327 */ MCD::OPC_CheckField, 16, 4, 0, 222, 0, 0, // Skip to: 556 16144/* 334 */ MCD::OPC_CheckField, 4, 1, 0, 215, 0, 0, // Skip to: 556 16145/* 341 */ MCD::OPC_Decode, 228, 4, 241, 1, // Opcode: AESE 16146/* 346 */ MCD::OPC_FilterValue, 1, 32, 0, 0, // Skip to: 383 16147/* 351 */ MCD::OPC_CheckPredicate, 29, 200, 0, 0, // Skip to: 556 16148/* 356 */ MCD::OPC_CheckField, 23, 9, 231, 3, 192, 0, 0, // Skip to: 556 16149/* 364 */ MCD::OPC_CheckField, 16, 4, 0, 185, 0, 0, // Skip to: 556 16150/* 371 */ MCD::OPC_CheckField, 4, 1, 0, 178, 0, 0, // Skip to: 556 16151/* 378 */ MCD::OPC_Decode, 227, 4, 241, 1, // Opcode: AESD 16152/* 383 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 451 16153/* 388 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 16154/* 391 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 421 16155/* 396 */ MCD::OPC_CheckPredicate, 29, 155, 0, 0, // Skip to: 556 16156/* 401 */ MCD::OPC_CheckField, 23, 9, 231, 3, 147, 0, 0, // Skip to: 556 16157/* 409 */ MCD::OPC_CheckField, 4, 1, 0, 140, 0, 0, // Skip to: 556 16158/* 416 */ MCD::OPC_Decode, 230, 4, 235, 1, // Opcode: AESMC 16159/* 421 */ MCD::OPC_FilterValue, 10, 130, 0, 0, // Skip to: 556 16160/* 426 */ MCD::OPC_CheckPredicate, 29, 125, 0, 0, // Skip to: 556 16161/* 431 */ MCD::OPC_CheckField, 23, 9, 231, 3, 117, 0, 0, // Skip to: 556 16162/* 439 */ MCD::OPC_CheckField, 4, 1, 0, 110, 0, 0, // Skip to: 556 16163/* 446 */ MCD::OPC_Decode, 165, 13, 241, 1, // Opcode: SHA1SU1 16164/* 451 */ MCD::OPC_FilterValue, 3, 100, 0, 0, // Skip to: 556 16165/* 456 */ MCD::OPC_ExtractField, 16, 4, // Inst{19-16} ... 16166/* 459 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 489 16167/* 464 */ MCD::OPC_CheckPredicate, 29, 87, 0, 0, // Skip to: 556 16168/* 469 */ MCD::OPC_CheckField, 23, 9, 231, 3, 79, 0, 0, // Skip to: 556 16169/* 477 */ MCD::OPC_CheckField, 4, 1, 0, 72, 0, 0, // Skip to: 556 16170/* 484 */ MCD::OPC_Decode, 229, 4, 235, 1, // Opcode: AESIMC 16171/* 489 */ MCD::OPC_FilterValue, 10, 62, 0, 0, // Skip to: 556 16172/* 494 */ MCD::OPC_CheckPredicate, 29, 57, 0, 0, // Skip to: 556 16173/* 499 */ MCD::OPC_CheckField, 23, 9, 231, 3, 49, 0, 0, // Skip to: 556 16174/* 507 */ MCD::OPC_CheckField, 4, 1, 0, 42, 0, 0, // Skip to: 556 16175/* 514 */ MCD::OPC_Decode, 168, 13, 241, 1, // Opcode: SHA256SU0 16176/* 519 */ MCD::OPC_FilterValue, 12, 32, 0, 0, // Skip to: 556 16177/* 524 */ MCD::OPC_CheckPredicate, 29, 27, 0, 0, // Skip to: 556 16178/* 529 */ MCD::OPC_CheckField, 23, 9, 228, 3, 19, 0, 0, // Skip to: 556 16179/* 537 */ MCD::OPC_CheckField, 6, 1, 1, 12, 0, 0, // Skip to: 556 16180/* 544 */ MCD::OPC_CheckField, 4, 1, 0, 5, 0, 0, // Skip to: 556 16181/* 551 */ MCD::OPC_Decode, 164, 13, 214, 1, // Opcode: SHA1SU0 16182/* 556 */ MCD::OPC_Fail, 16183 0 16184}; 16185 16186static const uint8_t DecoderTablev8NEON32[] = { 16187/* 0 */ MCD::OPC_ExtractField, 8, 4, // Inst{11-8} ... 16188/* 3 */ MCD::OPC_FilterValue, 0, 19, 1, 0, // Skip to: 283 16189/* 8 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16190/* 11 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 79 16191/* 16 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16192/* 19 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 49 16193/* 24 */ MCD::OPC_CheckPredicate, 88, 174, 8, 0, // Skip to: 2251 16194/* 29 */ MCD::OPC_CheckField, 23, 9, 231, 3, 166, 8, 0, // Skip to: 2251 16195/* 37 */ MCD::OPC_CheckField, 4, 1, 0, 159, 8, 0, // Skip to: 2251 16196/* 44 */ MCD::OPC_Decode, 195, 16, 234, 1, // Opcode: VCVTANSDh 16197/* 49 */ MCD::OPC_FilterValue, 59, 149, 8, 0, // Skip to: 2251 16198/* 54 */ MCD::OPC_CheckPredicate, 89, 144, 8, 0, // Skip to: 2251 16199/* 59 */ MCD::OPC_CheckField, 23, 9, 231, 3, 136, 8, 0, // Skip to: 2251 16200/* 67 */ MCD::OPC_CheckField, 4, 1, 0, 129, 8, 0, // Skip to: 2251 16201/* 74 */ MCD::OPC_Decode, 194, 16, 234, 1, // Opcode: VCVTANSDf 16202/* 79 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 147 16203/* 84 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16204/* 87 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 117 16205/* 92 */ MCD::OPC_CheckPredicate, 88, 106, 8, 0, // Skip to: 2251 16206/* 97 */ MCD::OPC_CheckField, 23, 9, 231, 3, 98, 8, 0, // Skip to: 2251 16207/* 105 */ MCD::OPC_CheckField, 4, 1, 0, 91, 8, 0, // Skip to: 2251 16208/* 112 */ MCD::OPC_Decode, 197, 16, 235, 1, // Opcode: VCVTANSQh 16209/* 117 */ MCD::OPC_FilterValue, 59, 81, 8, 0, // Skip to: 2251 16210/* 122 */ MCD::OPC_CheckPredicate, 89, 76, 8, 0, // Skip to: 2251 16211/* 127 */ MCD::OPC_CheckField, 23, 9, 231, 3, 68, 8, 0, // Skip to: 2251 16212/* 135 */ MCD::OPC_CheckField, 4, 1, 0, 61, 8, 0, // Skip to: 2251 16213/* 142 */ MCD::OPC_Decode, 196, 16, 235, 1, // Opcode: VCVTANSQf 16214/* 147 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 215 16215/* 152 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16216/* 155 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 185 16217/* 160 */ MCD::OPC_CheckPredicate, 88, 38, 8, 0, // Skip to: 2251 16218/* 165 */ MCD::OPC_CheckField, 23, 9, 231, 3, 30, 8, 0, // Skip to: 2251 16219/* 173 */ MCD::OPC_CheckField, 4, 1, 0, 23, 8, 0, // Skip to: 2251 16220/* 180 */ MCD::OPC_Decode, 199, 16, 234, 1, // Opcode: VCVTANUDh 16221/* 185 */ MCD::OPC_FilterValue, 59, 13, 8, 0, // Skip to: 2251 16222/* 190 */ MCD::OPC_CheckPredicate, 89, 8, 8, 0, // Skip to: 2251 16223/* 195 */ MCD::OPC_CheckField, 23, 9, 231, 3, 0, 8, 0, // Skip to: 2251 16224/* 203 */ MCD::OPC_CheckField, 4, 1, 0, 249, 7, 0, // Skip to: 2251 16225/* 210 */ MCD::OPC_Decode, 198, 16, 234, 1, // Opcode: VCVTANUDf 16226/* 215 */ MCD::OPC_FilterValue, 3, 239, 7, 0, // Skip to: 2251 16227/* 220 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16228/* 223 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 253 16229/* 228 */ MCD::OPC_CheckPredicate, 88, 226, 7, 0, // Skip to: 2251 16230/* 233 */ MCD::OPC_CheckField, 23, 9, 231, 3, 218, 7, 0, // Skip to: 2251 16231/* 241 */ MCD::OPC_CheckField, 4, 1, 0, 211, 7, 0, // Skip to: 2251 16232/* 248 */ MCD::OPC_Decode, 201, 16, 235, 1, // Opcode: VCVTANUQh 16233/* 253 */ MCD::OPC_FilterValue, 59, 201, 7, 0, // Skip to: 2251 16234/* 258 */ MCD::OPC_CheckPredicate, 89, 196, 7, 0, // Skip to: 2251 16235/* 263 */ MCD::OPC_CheckField, 23, 9, 231, 3, 188, 7, 0, // Skip to: 2251 16236/* 271 */ MCD::OPC_CheckField, 4, 1, 0, 181, 7, 0, // Skip to: 2251 16237/* 278 */ MCD::OPC_Decode, 200, 16, 235, 1, // Opcode: VCVTANUQf 16238/* 283 */ MCD::OPC_FilterValue, 1, 19, 1, 0, // Skip to: 563 16239/* 288 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16240/* 291 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 359 16241/* 296 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16242/* 299 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 329 16243/* 304 */ MCD::OPC_CheckPredicate, 88, 150, 7, 0, // Skip to: 2251 16244/* 309 */ MCD::OPC_CheckField, 23, 9, 231, 3, 142, 7, 0, // Skip to: 2251 16245/* 317 */ MCD::OPC_CheckField, 4, 1, 0, 135, 7, 0, // Skip to: 2251 16246/* 324 */ MCD::OPC_Decode, 228, 16, 234, 1, // Opcode: VCVTNNSDh 16247/* 329 */ MCD::OPC_FilterValue, 59, 125, 7, 0, // Skip to: 2251 16248/* 334 */ MCD::OPC_CheckPredicate, 89, 120, 7, 0, // Skip to: 2251 16249/* 339 */ MCD::OPC_CheckField, 23, 9, 231, 3, 112, 7, 0, // Skip to: 2251 16250/* 347 */ MCD::OPC_CheckField, 4, 1, 0, 105, 7, 0, // Skip to: 2251 16251/* 354 */ MCD::OPC_Decode, 227, 16, 234, 1, // Opcode: VCVTNNSDf 16252/* 359 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 427 16253/* 364 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16254/* 367 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 397 16255/* 372 */ MCD::OPC_CheckPredicate, 88, 82, 7, 0, // Skip to: 2251 16256/* 377 */ MCD::OPC_CheckField, 23, 9, 231, 3, 74, 7, 0, // Skip to: 2251 16257/* 385 */ MCD::OPC_CheckField, 4, 1, 0, 67, 7, 0, // Skip to: 2251 16258/* 392 */ MCD::OPC_Decode, 230, 16, 235, 1, // Opcode: VCVTNNSQh 16259/* 397 */ MCD::OPC_FilterValue, 59, 57, 7, 0, // Skip to: 2251 16260/* 402 */ MCD::OPC_CheckPredicate, 89, 52, 7, 0, // Skip to: 2251 16261/* 407 */ MCD::OPC_CheckField, 23, 9, 231, 3, 44, 7, 0, // Skip to: 2251 16262/* 415 */ MCD::OPC_CheckField, 4, 1, 0, 37, 7, 0, // Skip to: 2251 16263/* 422 */ MCD::OPC_Decode, 229, 16, 235, 1, // Opcode: VCVTNNSQf 16264/* 427 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 495 16265/* 432 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16266/* 435 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 465 16267/* 440 */ MCD::OPC_CheckPredicate, 88, 14, 7, 0, // Skip to: 2251 16268/* 445 */ MCD::OPC_CheckField, 23, 9, 231, 3, 6, 7, 0, // Skip to: 2251 16269/* 453 */ MCD::OPC_CheckField, 4, 1, 0, 255, 6, 0, // Skip to: 2251 16270/* 460 */ MCD::OPC_Decode, 232, 16, 234, 1, // Opcode: VCVTNNUDh 16271/* 465 */ MCD::OPC_FilterValue, 59, 245, 6, 0, // Skip to: 2251 16272/* 470 */ MCD::OPC_CheckPredicate, 89, 240, 6, 0, // Skip to: 2251 16273/* 475 */ MCD::OPC_CheckField, 23, 9, 231, 3, 232, 6, 0, // Skip to: 2251 16274/* 483 */ MCD::OPC_CheckField, 4, 1, 0, 225, 6, 0, // Skip to: 2251 16275/* 490 */ MCD::OPC_Decode, 231, 16, 234, 1, // Opcode: VCVTNNUDf 16276/* 495 */ MCD::OPC_FilterValue, 3, 215, 6, 0, // Skip to: 2251 16277/* 500 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16278/* 503 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 533 16279/* 508 */ MCD::OPC_CheckPredicate, 88, 202, 6, 0, // Skip to: 2251 16280/* 513 */ MCD::OPC_CheckField, 23, 9, 231, 3, 194, 6, 0, // Skip to: 2251 16281/* 521 */ MCD::OPC_CheckField, 4, 1, 0, 187, 6, 0, // Skip to: 2251 16282/* 528 */ MCD::OPC_Decode, 234, 16, 235, 1, // Opcode: VCVTNNUQh 16283/* 533 */ MCD::OPC_FilterValue, 59, 177, 6, 0, // Skip to: 2251 16284/* 538 */ MCD::OPC_CheckPredicate, 89, 172, 6, 0, // Skip to: 2251 16285/* 543 */ MCD::OPC_CheckField, 23, 9, 231, 3, 164, 6, 0, // Skip to: 2251 16286/* 551 */ MCD::OPC_CheckField, 4, 1, 0, 157, 6, 0, // Skip to: 2251 16287/* 558 */ MCD::OPC_Decode, 233, 16, 235, 1, // Opcode: VCVTNNUQf 16288/* 563 */ MCD::OPC_FilterValue, 2, 19, 1, 0, // Skip to: 843 16289/* 568 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16290/* 571 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 639 16291/* 576 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16292/* 579 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 609 16293/* 584 */ MCD::OPC_CheckPredicate, 88, 126, 6, 0, // Skip to: 2251 16294/* 589 */ MCD::OPC_CheckField, 23, 9, 231, 3, 118, 6, 0, // Skip to: 2251 16295/* 597 */ MCD::OPC_CheckField, 4, 1, 0, 111, 6, 0, // Skip to: 2251 16296/* 604 */ MCD::OPC_Decode, 242, 16, 234, 1, // Opcode: VCVTPNSDh 16297/* 609 */ MCD::OPC_FilterValue, 59, 101, 6, 0, // Skip to: 2251 16298/* 614 */ MCD::OPC_CheckPredicate, 89, 96, 6, 0, // Skip to: 2251 16299/* 619 */ MCD::OPC_CheckField, 23, 9, 231, 3, 88, 6, 0, // Skip to: 2251 16300/* 627 */ MCD::OPC_CheckField, 4, 1, 0, 81, 6, 0, // Skip to: 2251 16301/* 634 */ MCD::OPC_Decode, 241, 16, 234, 1, // Opcode: VCVTPNSDf 16302/* 639 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 707 16303/* 644 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16304/* 647 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 677 16305/* 652 */ MCD::OPC_CheckPredicate, 88, 58, 6, 0, // Skip to: 2251 16306/* 657 */ MCD::OPC_CheckField, 23, 9, 231, 3, 50, 6, 0, // Skip to: 2251 16307/* 665 */ MCD::OPC_CheckField, 4, 1, 0, 43, 6, 0, // Skip to: 2251 16308/* 672 */ MCD::OPC_Decode, 244, 16, 235, 1, // Opcode: VCVTPNSQh 16309/* 677 */ MCD::OPC_FilterValue, 59, 33, 6, 0, // Skip to: 2251 16310/* 682 */ MCD::OPC_CheckPredicate, 89, 28, 6, 0, // Skip to: 2251 16311/* 687 */ MCD::OPC_CheckField, 23, 9, 231, 3, 20, 6, 0, // Skip to: 2251 16312/* 695 */ MCD::OPC_CheckField, 4, 1, 0, 13, 6, 0, // Skip to: 2251 16313/* 702 */ MCD::OPC_Decode, 243, 16, 235, 1, // Opcode: VCVTPNSQf 16314/* 707 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 775 16315/* 712 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16316/* 715 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 745 16317/* 720 */ MCD::OPC_CheckPredicate, 88, 246, 5, 0, // Skip to: 2251 16318/* 725 */ MCD::OPC_CheckField, 23, 9, 231, 3, 238, 5, 0, // Skip to: 2251 16319/* 733 */ MCD::OPC_CheckField, 4, 1, 0, 231, 5, 0, // Skip to: 2251 16320/* 740 */ MCD::OPC_Decode, 246, 16, 234, 1, // Opcode: VCVTPNUDh 16321/* 745 */ MCD::OPC_FilterValue, 59, 221, 5, 0, // Skip to: 2251 16322/* 750 */ MCD::OPC_CheckPredicate, 89, 216, 5, 0, // Skip to: 2251 16323/* 755 */ MCD::OPC_CheckField, 23, 9, 231, 3, 208, 5, 0, // Skip to: 2251 16324/* 763 */ MCD::OPC_CheckField, 4, 1, 0, 201, 5, 0, // Skip to: 2251 16325/* 770 */ MCD::OPC_Decode, 245, 16, 234, 1, // Opcode: VCVTPNUDf 16326/* 775 */ MCD::OPC_FilterValue, 3, 191, 5, 0, // Skip to: 2251 16327/* 780 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16328/* 783 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 813 16329/* 788 */ MCD::OPC_CheckPredicate, 88, 178, 5, 0, // Skip to: 2251 16330/* 793 */ MCD::OPC_CheckField, 23, 9, 231, 3, 170, 5, 0, // Skip to: 2251 16331/* 801 */ MCD::OPC_CheckField, 4, 1, 0, 163, 5, 0, // Skip to: 2251 16332/* 808 */ MCD::OPC_Decode, 248, 16, 235, 1, // Opcode: VCVTPNUQh 16333/* 813 */ MCD::OPC_FilterValue, 59, 153, 5, 0, // Skip to: 2251 16334/* 818 */ MCD::OPC_CheckPredicate, 89, 148, 5, 0, // Skip to: 2251 16335/* 823 */ MCD::OPC_CheckField, 23, 9, 231, 3, 140, 5, 0, // Skip to: 2251 16336/* 831 */ MCD::OPC_CheckField, 4, 1, 0, 133, 5, 0, // Skip to: 2251 16337/* 838 */ MCD::OPC_Decode, 247, 16, 235, 1, // Opcode: VCVTPNUQf 16338/* 843 */ MCD::OPC_FilterValue, 3, 19, 1, 0, // Skip to: 1123 16339/* 848 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16340/* 851 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 919 16341/* 856 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16342/* 859 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 889 16343/* 864 */ MCD::OPC_CheckPredicate, 88, 102, 5, 0, // Skip to: 2251 16344/* 869 */ MCD::OPC_CheckField, 23, 9, 231, 3, 94, 5, 0, // Skip to: 2251 16345/* 877 */ MCD::OPC_CheckField, 4, 1, 0, 87, 5, 0, // Skip to: 2251 16346/* 884 */ MCD::OPC_Decode, 214, 16, 234, 1, // Opcode: VCVTMNSDh 16347/* 889 */ MCD::OPC_FilterValue, 59, 77, 5, 0, // Skip to: 2251 16348/* 894 */ MCD::OPC_CheckPredicate, 89, 72, 5, 0, // Skip to: 2251 16349/* 899 */ MCD::OPC_CheckField, 23, 9, 231, 3, 64, 5, 0, // Skip to: 2251 16350/* 907 */ MCD::OPC_CheckField, 4, 1, 0, 57, 5, 0, // Skip to: 2251 16351/* 914 */ MCD::OPC_Decode, 213, 16, 234, 1, // Opcode: VCVTMNSDf 16352/* 919 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 987 16353/* 924 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16354/* 927 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 957 16355/* 932 */ MCD::OPC_CheckPredicate, 88, 34, 5, 0, // Skip to: 2251 16356/* 937 */ MCD::OPC_CheckField, 23, 9, 231, 3, 26, 5, 0, // Skip to: 2251 16357/* 945 */ MCD::OPC_CheckField, 4, 1, 0, 19, 5, 0, // Skip to: 2251 16358/* 952 */ MCD::OPC_Decode, 216, 16, 235, 1, // Opcode: VCVTMNSQh 16359/* 957 */ MCD::OPC_FilterValue, 59, 9, 5, 0, // Skip to: 2251 16360/* 962 */ MCD::OPC_CheckPredicate, 89, 4, 5, 0, // Skip to: 2251 16361/* 967 */ MCD::OPC_CheckField, 23, 9, 231, 3, 252, 4, 0, // Skip to: 2251 16362/* 975 */ MCD::OPC_CheckField, 4, 1, 0, 245, 4, 0, // Skip to: 2251 16363/* 982 */ MCD::OPC_Decode, 215, 16, 235, 1, // Opcode: VCVTMNSQf 16364/* 987 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 1055 16365/* 992 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16366/* 995 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 1025 16367/* 1000 */ MCD::OPC_CheckPredicate, 88, 222, 4, 0, // Skip to: 2251 16368/* 1005 */ MCD::OPC_CheckField, 23, 9, 231, 3, 214, 4, 0, // Skip to: 2251 16369/* 1013 */ MCD::OPC_CheckField, 4, 1, 0, 207, 4, 0, // Skip to: 2251 16370/* 1020 */ MCD::OPC_Decode, 218, 16, 234, 1, // Opcode: VCVTMNUDh 16371/* 1025 */ MCD::OPC_FilterValue, 59, 197, 4, 0, // Skip to: 2251 16372/* 1030 */ MCD::OPC_CheckPredicate, 89, 192, 4, 0, // Skip to: 2251 16373/* 1035 */ MCD::OPC_CheckField, 23, 9, 231, 3, 184, 4, 0, // Skip to: 2251 16374/* 1043 */ MCD::OPC_CheckField, 4, 1, 0, 177, 4, 0, // Skip to: 2251 16375/* 1050 */ MCD::OPC_Decode, 217, 16, 234, 1, // Opcode: VCVTMNUDf 16376/* 1055 */ MCD::OPC_FilterValue, 3, 167, 4, 0, // Skip to: 2251 16377/* 1060 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16378/* 1063 */ MCD::OPC_FilterValue, 55, 25, 0, 0, // Skip to: 1093 16379/* 1068 */ MCD::OPC_CheckPredicate, 88, 154, 4, 0, // Skip to: 2251 16380/* 1073 */ MCD::OPC_CheckField, 23, 9, 231, 3, 146, 4, 0, // Skip to: 2251 16381/* 1081 */ MCD::OPC_CheckField, 4, 1, 0, 139, 4, 0, // Skip to: 2251 16382/* 1088 */ MCD::OPC_Decode, 220, 16, 235, 1, // Opcode: VCVTMNUQh 16383/* 1093 */ MCD::OPC_FilterValue, 59, 129, 4, 0, // Skip to: 2251 16384/* 1098 */ MCD::OPC_CheckPredicate, 89, 124, 4, 0, // Skip to: 2251 16385/* 1103 */ MCD::OPC_CheckField, 23, 9, 231, 3, 116, 4, 0, // Skip to: 2251 16386/* 1111 */ MCD::OPC_CheckField, 4, 1, 0, 109, 4, 0, // Skip to: 2251 16387/* 1118 */ MCD::OPC_Decode, 219, 16, 235, 1, // Opcode: VCVTMNUQf 16388/* 1123 */ MCD::OPC_FilterValue, 4, 19, 1, 0, // Skip to: 1403 16389/* 1128 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16390/* 1131 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 1199 16391/* 1136 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16392/* 1139 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1169 16393/* 1144 */ MCD::OPC_CheckPredicate, 88, 78, 4, 0, // Skip to: 2251 16394/* 1149 */ MCD::OPC_CheckField, 23, 9, 231, 3, 70, 4, 0, // Skip to: 2251 16395/* 1157 */ MCD::OPC_CheckField, 4, 1, 0, 63, 4, 0, // Skip to: 2251 16396/* 1164 */ MCD::OPC_Decode, 205, 24, 234, 1, // Opcode: VRINTNNDh 16397/* 1169 */ MCD::OPC_FilterValue, 58, 53, 4, 0, // Skip to: 2251 16398/* 1174 */ MCD::OPC_CheckPredicate, 89, 48, 4, 0, // Skip to: 2251 16399/* 1179 */ MCD::OPC_CheckField, 23, 9, 231, 3, 40, 4, 0, // Skip to: 2251 16400/* 1187 */ MCD::OPC_CheckField, 4, 1, 0, 33, 4, 0, // Skip to: 2251 16401/* 1194 */ MCD::OPC_Decode, 204, 24, 234, 1, // Opcode: VRINTNNDf 16402/* 1199 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 1267 16403/* 1204 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16404/* 1207 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1237 16405/* 1212 */ MCD::OPC_CheckPredicate, 88, 10, 4, 0, // Skip to: 2251 16406/* 1217 */ MCD::OPC_CheckField, 23, 9, 231, 3, 2, 4, 0, // Skip to: 2251 16407/* 1225 */ MCD::OPC_CheckField, 4, 1, 0, 251, 3, 0, // Skip to: 2251 16408/* 1232 */ MCD::OPC_Decode, 207, 24, 235, 1, // Opcode: VRINTNNQh 16409/* 1237 */ MCD::OPC_FilterValue, 58, 241, 3, 0, // Skip to: 2251 16410/* 1242 */ MCD::OPC_CheckPredicate, 89, 236, 3, 0, // Skip to: 2251 16411/* 1247 */ MCD::OPC_CheckField, 23, 9, 231, 3, 228, 3, 0, // Skip to: 2251 16412/* 1255 */ MCD::OPC_CheckField, 4, 1, 0, 221, 3, 0, // Skip to: 2251 16413/* 1262 */ MCD::OPC_Decode, 206, 24, 235, 1, // Opcode: VRINTNNQf 16414/* 1267 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 1335 16415/* 1272 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16416/* 1275 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1305 16417/* 1280 */ MCD::OPC_CheckPredicate, 88, 198, 3, 0, // Skip to: 2251 16418/* 1285 */ MCD::OPC_CheckField, 23, 9, 231, 3, 190, 3, 0, // Skip to: 2251 16419/* 1293 */ MCD::OPC_CheckField, 4, 1, 0, 183, 3, 0, // Skip to: 2251 16420/* 1300 */ MCD::OPC_Decode, 222, 24, 234, 1, // Opcode: VRINTXNDh 16421/* 1305 */ MCD::OPC_FilterValue, 58, 173, 3, 0, // Skip to: 2251 16422/* 1310 */ MCD::OPC_CheckPredicate, 89, 168, 3, 0, // Skip to: 2251 16423/* 1315 */ MCD::OPC_CheckField, 23, 9, 231, 3, 160, 3, 0, // Skip to: 2251 16424/* 1323 */ MCD::OPC_CheckField, 4, 1, 0, 153, 3, 0, // Skip to: 2251 16425/* 1330 */ MCD::OPC_Decode, 221, 24, 234, 1, // Opcode: VRINTXNDf 16426/* 1335 */ MCD::OPC_FilterValue, 3, 143, 3, 0, // Skip to: 2251 16427/* 1340 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16428/* 1343 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1373 16429/* 1348 */ MCD::OPC_CheckPredicate, 88, 130, 3, 0, // Skip to: 2251 16430/* 1353 */ MCD::OPC_CheckField, 23, 9, 231, 3, 122, 3, 0, // Skip to: 2251 16431/* 1361 */ MCD::OPC_CheckField, 4, 1, 0, 115, 3, 0, // Skip to: 2251 16432/* 1368 */ MCD::OPC_Decode, 224, 24, 235, 1, // Opcode: VRINTXNQh 16433/* 1373 */ MCD::OPC_FilterValue, 58, 105, 3, 0, // Skip to: 2251 16434/* 1378 */ MCD::OPC_CheckPredicate, 89, 100, 3, 0, // Skip to: 2251 16435/* 1383 */ MCD::OPC_CheckField, 23, 9, 231, 3, 92, 3, 0, // Skip to: 2251 16436/* 1391 */ MCD::OPC_CheckField, 4, 1, 0, 85, 3, 0, // Skip to: 2251 16437/* 1398 */ MCD::OPC_Decode, 223, 24, 235, 1, // Opcode: VRINTXNQf 16438/* 1403 */ MCD::OPC_FilterValue, 5, 19, 1, 0, // Skip to: 1683 16439/* 1408 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16440/* 1411 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 1479 16441/* 1416 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16442/* 1419 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1449 16443/* 1424 */ MCD::OPC_CheckPredicate, 88, 54, 3, 0, // Skip to: 2251 16444/* 1429 */ MCD::OPC_CheckField, 23, 9, 231, 3, 46, 3, 0, // Skip to: 2251 16445/* 1437 */ MCD::OPC_CheckField, 4, 1, 0, 39, 3, 0, // Skip to: 2251 16446/* 1444 */ MCD::OPC_Decode, 191, 24, 234, 1, // Opcode: VRINTANDh 16447/* 1449 */ MCD::OPC_FilterValue, 58, 29, 3, 0, // Skip to: 2251 16448/* 1454 */ MCD::OPC_CheckPredicate, 89, 24, 3, 0, // Skip to: 2251 16449/* 1459 */ MCD::OPC_CheckField, 23, 9, 231, 3, 16, 3, 0, // Skip to: 2251 16450/* 1467 */ MCD::OPC_CheckField, 4, 1, 0, 9, 3, 0, // Skip to: 2251 16451/* 1474 */ MCD::OPC_Decode, 190, 24, 234, 1, // Opcode: VRINTANDf 16452/* 1479 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 1547 16453/* 1484 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16454/* 1487 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1517 16455/* 1492 */ MCD::OPC_CheckPredicate, 88, 242, 2, 0, // Skip to: 2251 16456/* 1497 */ MCD::OPC_CheckField, 23, 9, 231, 3, 234, 2, 0, // Skip to: 2251 16457/* 1505 */ MCD::OPC_CheckField, 4, 1, 0, 227, 2, 0, // Skip to: 2251 16458/* 1512 */ MCD::OPC_Decode, 193, 24, 235, 1, // Opcode: VRINTANQh 16459/* 1517 */ MCD::OPC_FilterValue, 58, 217, 2, 0, // Skip to: 2251 16460/* 1522 */ MCD::OPC_CheckPredicate, 89, 212, 2, 0, // Skip to: 2251 16461/* 1527 */ MCD::OPC_CheckField, 23, 9, 231, 3, 204, 2, 0, // Skip to: 2251 16462/* 1535 */ MCD::OPC_CheckField, 4, 1, 0, 197, 2, 0, // Skip to: 2251 16463/* 1542 */ MCD::OPC_Decode, 192, 24, 235, 1, // Opcode: VRINTANQf 16464/* 1547 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 1615 16465/* 1552 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16466/* 1555 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1585 16467/* 1560 */ MCD::OPC_CheckPredicate, 88, 174, 2, 0, // Skip to: 2251 16468/* 1565 */ MCD::OPC_CheckField, 23, 9, 231, 3, 166, 2, 0, // Skip to: 2251 16469/* 1573 */ MCD::OPC_CheckField, 4, 1, 0, 159, 2, 0, // Skip to: 2251 16470/* 1580 */ MCD::OPC_Decode, 229, 24, 234, 1, // Opcode: VRINTZNDh 16471/* 1585 */ MCD::OPC_FilterValue, 58, 149, 2, 0, // Skip to: 2251 16472/* 1590 */ MCD::OPC_CheckPredicate, 89, 144, 2, 0, // Skip to: 2251 16473/* 1595 */ MCD::OPC_CheckField, 23, 9, 231, 3, 136, 2, 0, // Skip to: 2251 16474/* 1603 */ MCD::OPC_CheckField, 4, 1, 0, 129, 2, 0, // Skip to: 2251 16475/* 1610 */ MCD::OPC_Decode, 228, 24, 234, 1, // Opcode: VRINTZNDf 16476/* 1615 */ MCD::OPC_FilterValue, 3, 119, 2, 0, // Skip to: 2251 16477/* 1620 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16478/* 1623 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1653 16479/* 1628 */ MCD::OPC_CheckPredicate, 88, 106, 2, 0, // Skip to: 2251 16480/* 1633 */ MCD::OPC_CheckField, 23, 9, 231, 3, 98, 2, 0, // Skip to: 2251 16481/* 1641 */ MCD::OPC_CheckField, 4, 1, 0, 91, 2, 0, // Skip to: 2251 16482/* 1648 */ MCD::OPC_Decode, 231, 24, 235, 1, // Opcode: VRINTZNQh 16483/* 1653 */ MCD::OPC_FilterValue, 58, 81, 2, 0, // Skip to: 2251 16484/* 1658 */ MCD::OPC_CheckPredicate, 89, 76, 2, 0, // Skip to: 2251 16485/* 1663 */ MCD::OPC_CheckField, 23, 9, 231, 3, 68, 2, 0, // Skip to: 2251 16486/* 1671 */ MCD::OPC_CheckField, 4, 1, 0, 61, 2, 0, // Skip to: 2251 16487/* 1678 */ MCD::OPC_Decode, 230, 24, 235, 1, // Opcode: VRINTZNQf 16488/* 1683 */ MCD::OPC_FilterValue, 6, 139, 0, 0, // Skip to: 1827 16489/* 1688 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16490/* 1691 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 1759 16491/* 1696 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16492/* 1699 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1729 16493/* 1704 */ MCD::OPC_CheckPredicate, 88, 30, 2, 0, // Skip to: 2251 16494/* 1709 */ MCD::OPC_CheckField, 23, 9, 231, 3, 22, 2, 0, // Skip to: 2251 16495/* 1717 */ MCD::OPC_CheckField, 4, 1, 0, 15, 2, 0, // Skip to: 2251 16496/* 1724 */ MCD::OPC_Decode, 198, 24, 234, 1, // Opcode: VRINTMNDh 16497/* 1729 */ MCD::OPC_FilterValue, 58, 5, 2, 0, // Skip to: 2251 16498/* 1734 */ MCD::OPC_CheckPredicate, 89, 0, 2, 0, // Skip to: 2251 16499/* 1739 */ MCD::OPC_CheckField, 23, 9, 231, 3, 248, 1, 0, // Skip to: 2251 16500/* 1747 */ MCD::OPC_CheckField, 4, 1, 0, 241, 1, 0, // Skip to: 2251 16501/* 1754 */ MCD::OPC_Decode, 197, 24, 234, 1, // Opcode: VRINTMNDf 16502/* 1759 */ MCD::OPC_FilterValue, 3, 231, 1, 0, // Skip to: 2251 16503/* 1764 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16504/* 1767 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1797 16505/* 1772 */ MCD::OPC_CheckPredicate, 88, 218, 1, 0, // Skip to: 2251 16506/* 1777 */ MCD::OPC_CheckField, 23, 9, 231, 3, 210, 1, 0, // Skip to: 2251 16507/* 1785 */ MCD::OPC_CheckField, 4, 1, 0, 203, 1, 0, // Skip to: 2251 16508/* 1792 */ MCD::OPC_Decode, 200, 24, 235, 1, // Opcode: VRINTMNQh 16509/* 1797 */ MCD::OPC_FilterValue, 58, 193, 1, 0, // Skip to: 2251 16510/* 1802 */ MCD::OPC_CheckPredicate, 89, 188, 1, 0, // Skip to: 2251 16511/* 1807 */ MCD::OPC_CheckField, 23, 9, 231, 3, 180, 1, 0, // Skip to: 2251 16512/* 1815 */ MCD::OPC_CheckField, 4, 1, 0, 173, 1, 0, // Skip to: 2251 16513/* 1822 */ MCD::OPC_Decode, 199, 24, 235, 1, // Opcode: VRINTMNQf 16514/* 1827 */ MCD::OPC_FilterValue, 7, 139, 0, 0, // Skip to: 1971 16515/* 1832 */ MCD::OPC_ExtractField, 6, 2, // Inst{7-6} ... 16516/* 1835 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 1903 16517/* 1840 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16518/* 1843 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1873 16519/* 1848 */ MCD::OPC_CheckPredicate, 88, 142, 1, 0, // Skip to: 2251 16520/* 1853 */ MCD::OPC_CheckField, 23, 9, 231, 3, 134, 1, 0, // Skip to: 2251 16521/* 1861 */ MCD::OPC_CheckField, 4, 1, 0, 127, 1, 0, // Skip to: 2251 16522/* 1868 */ MCD::OPC_Decode, 212, 24, 234, 1, // Opcode: VRINTPNDh 16523/* 1873 */ MCD::OPC_FilterValue, 58, 117, 1, 0, // Skip to: 2251 16524/* 1878 */ MCD::OPC_CheckPredicate, 89, 112, 1, 0, // Skip to: 2251 16525/* 1883 */ MCD::OPC_CheckField, 23, 9, 231, 3, 104, 1, 0, // Skip to: 2251 16526/* 1891 */ MCD::OPC_CheckField, 4, 1, 0, 97, 1, 0, // Skip to: 2251 16527/* 1898 */ MCD::OPC_Decode, 211, 24, 234, 1, // Opcode: VRINTPNDf 16528/* 1903 */ MCD::OPC_FilterValue, 3, 87, 1, 0, // Skip to: 2251 16529/* 1908 */ MCD::OPC_ExtractField, 16, 6, // Inst{21-16} ... 16530/* 1911 */ MCD::OPC_FilterValue, 54, 25, 0, 0, // Skip to: 1941 16531/* 1916 */ MCD::OPC_CheckPredicate, 88, 74, 1, 0, // Skip to: 2251 16532/* 1921 */ MCD::OPC_CheckField, 23, 9, 231, 3, 66, 1, 0, // Skip to: 2251 16533/* 1929 */ MCD::OPC_CheckField, 4, 1, 0, 59, 1, 0, // Skip to: 2251 16534/* 1936 */ MCD::OPC_Decode, 214, 24, 235, 1, // Opcode: VRINTPNQh 16535/* 1941 */ MCD::OPC_FilterValue, 58, 49, 1, 0, // Skip to: 2251 16536/* 1946 */ MCD::OPC_CheckPredicate, 89, 44, 1, 0, // Skip to: 2251 16537/* 1951 */ MCD::OPC_CheckField, 23, 9, 231, 3, 36, 1, 0, // Skip to: 2251 16538/* 1959 */ MCD::OPC_CheckField, 4, 1, 0, 29, 1, 0, // Skip to: 2251 16539/* 1966 */ MCD::OPC_Decode, 213, 24, 235, 1, // Opcode: VRINTPNQf 16540/* 1971 */ MCD::OPC_FilterValue, 15, 19, 1, 0, // Skip to: 2251 16541/* 1976 */ MCD::OPC_ExtractField, 20, 2, // Inst{21-20} ... 16542/* 1979 */ MCD::OPC_FilterValue, 0, 63, 0, 0, // Skip to: 2047 16543/* 1984 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16544/* 1987 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2017 16545/* 1992 */ MCD::OPC_CheckPredicate, 89, 254, 0, 0, // Skip to: 2251 16546/* 1997 */ MCD::OPC_CheckField, 23, 9, 230, 3, 246, 0, 0, // Skip to: 2251 16547/* 2005 */ MCD::OPC_CheckField, 4, 1, 1, 239, 0, 0, // Skip to: 2251 16548/* 2012 */ MCD::OPC_Decode, 225, 12, 205, 1, // Opcode: NEON_VMAXNMNDf 16549/* 2017 */ MCD::OPC_FilterValue, 1, 229, 0, 0, // Skip to: 2251 16550/* 2022 */ MCD::OPC_CheckPredicate, 89, 224, 0, 0, // Skip to: 2251 16551/* 2027 */ MCD::OPC_CheckField, 23, 9, 230, 3, 216, 0, 0, // Skip to: 2251 16552/* 2035 */ MCD::OPC_CheckField, 4, 1, 1, 209, 0, 0, // Skip to: 2251 16553/* 2042 */ MCD::OPC_Decode, 227, 12, 206, 1, // Opcode: NEON_VMAXNMNQf 16554/* 2047 */ MCD::OPC_FilterValue, 1, 63, 0, 0, // Skip to: 2115 16555/* 2052 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16556/* 2055 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2085 16557/* 2060 */ MCD::OPC_CheckPredicate, 88, 186, 0, 0, // Skip to: 2251 16558/* 2065 */ MCD::OPC_CheckField, 23, 9, 230, 3, 178, 0, 0, // Skip to: 2251 16559/* 2073 */ MCD::OPC_CheckField, 4, 1, 1, 171, 0, 0, // Skip to: 2251 16560/* 2080 */ MCD::OPC_Decode, 226, 12, 205, 1, // Opcode: NEON_VMAXNMNDh 16561/* 2085 */ MCD::OPC_FilterValue, 1, 161, 0, 0, // Skip to: 2251 16562/* 2090 */ MCD::OPC_CheckPredicate, 88, 156, 0, 0, // Skip to: 2251 16563/* 2095 */ MCD::OPC_CheckField, 23, 9, 230, 3, 148, 0, 0, // Skip to: 2251 16564/* 2103 */ MCD::OPC_CheckField, 4, 1, 1, 141, 0, 0, // Skip to: 2251 16565/* 2110 */ MCD::OPC_Decode, 228, 12, 206, 1, // Opcode: NEON_VMAXNMNQh 16566/* 2115 */ MCD::OPC_FilterValue, 2, 63, 0, 0, // Skip to: 2183 16567/* 2120 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16568/* 2123 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2153 16569/* 2128 */ MCD::OPC_CheckPredicate, 89, 118, 0, 0, // Skip to: 2251 16570/* 2133 */ MCD::OPC_CheckField, 23, 9, 230, 3, 110, 0, 0, // Skip to: 2251 16571/* 2141 */ MCD::OPC_CheckField, 4, 1, 1, 103, 0, 0, // Skip to: 2251 16572/* 2148 */ MCD::OPC_Decode, 229, 12, 205, 1, // Opcode: NEON_VMINNMNDf 16573/* 2153 */ MCD::OPC_FilterValue, 1, 93, 0, 0, // Skip to: 2251 16574/* 2158 */ MCD::OPC_CheckPredicate, 89, 88, 0, 0, // Skip to: 2251 16575/* 2163 */ MCD::OPC_CheckField, 23, 9, 230, 3, 80, 0, 0, // Skip to: 2251 16576/* 2171 */ MCD::OPC_CheckField, 4, 1, 1, 73, 0, 0, // Skip to: 2251 16577/* 2178 */ MCD::OPC_Decode, 231, 12, 206, 1, // Opcode: NEON_VMINNMNQf 16578/* 2183 */ MCD::OPC_FilterValue, 3, 63, 0, 0, // Skip to: 2251 16579/* 2188 */ MCD::OPC_ExtractField, 6, 1, // Inst{6} ... 16580/* 2191 */ MCD::OPC_FilterValue, 0, 25, 0, 0, // Skip to: 2221 16581/* 2196 */ MCD::OPC_CheckPredicate, 88, 50, 0, 0, // Skip to: 2251 16582/* 2201 */ MCD::OPC_CheckField, 23, 9, 230, 3, 42, 0, 0, // Skip to: 2251 16583/* 2209 */ MCD::OPC_CheckField, 4, 1, 1, 35, 0, 0, // Skip to: 2251 16584/* 2216 */ MCD::OPC_Decode, 230, 12, 205, 1, // Opcode: NEON_VMINNMNDh 16585/* 2221 */ MCD::OPC_FilterValue, 1, 25, 0, 0, // Skip to: 2251 16586/* 2226 */ MCD::OPC_CheckPredicate, 88, 20, 0, 0, // Skip to: 2251 16587/* 2231 */ MCD::OPC_CheckField, 23, 9, 230, 3, 12, 0, 0, // Skip to: 2251 16588/* 2239 */ MCD::OPC_CheckField, 4, 1, 1, 5, 0, 0, // Skip to: 2251 16589/* 2246 */ MCD::OPC_Decode, 232, 12, 206, 1, // Opcode: NEON_VMINNMNQh 16590/* 2251 */ MCD::OPC_Fail, 16591 0 16592}; 16593 16594static bool checkDecoderPredicate(unsigned Idx, const FeatureBitset& Bits) { 16595 switch (Idx) { 16596 default: llvm_unreachable("Invalid index!"); 16597 case 0: 16598 return (!Bits[ARM::ModeThumb]); 16599 case 1: 16600 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV6Ops]); 16601 case 2: 16602 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV8Ops] && Bits[ARM::FeatureCRC]); 16603 case 3: 16604 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV5TEOps]); 16605 case 4: 16606 return (!Bits[ARM::ModeThumb] && !Bits[ARM::HasV8Ops]); 16607 case 5: 16608 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV8Ops]); 16609 case 6: 16610 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV8Ops] && Bits[ARM::HasV8_1aOps]); 16611 case 7: 16612 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureVirtualization]); 16613 case 8: 16614 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureAcquireRelease]); 16615 case 9: 16616 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureAcquireRelease] && Bits[ARM::FeatureV7Clrex]); 16617 case 10: 16618 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV4TOps]); 16619 case 11: 16620 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV5TOps]); 16621 case 12: 16622 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureTrustZone]); 16623 case 13: 16624 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV6T2Ops]); 16625 case 14: 16626 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV8_4aOps]); 16627 case 15: 16628 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV7Ops]); 16629 case 16: 16630 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV7Ops] && Bits[ARM::FeatureMP]); 16631 case 17: 16632 return (!Bits[ARM::ModeThumb] && Bits[ARM::HasV6KOps]); 16633 case 18: 16634 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureDB]); 16635 case 19: 16636 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureSB]); 16637 case 20: 16638 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureHWDivARM]); 16639 case 21: 16640 return (!Bits[ARM::ModeThumb] && Bits[ARM::FeatureNaClTrap]); 16641 case 22: 16642 return (Bits[ARM::HasMVEIntegerOps]); 16643 case 23: 16644 return (Bits[ARM::HasV8_1MMainlineOps] && Bits[ARM::HasMVEIntegerOps]); 16645 case 24: 16646 return (Bits[ARM::HasMVEFloatOps]); 16647 case 25: 16648 return (Bits[ARM::FeatureFPRegs] && Bits[ARM::HasV8_1MMainlineOps]); 16649 case 26: 16650 return (Bits[ARM::FeatureNEON]); 16651 case 27: 16652 return (Bits[ARM::FeatureNEON] && Bits[ARM::FeatureFullFP16]); 16653 case 28: 16654 return (Bits[ARM::FeatureNEON] && Bits[ARM::HasV8_1aOps]); 16655 case 29: 16656 return (Bits[ARM::HasV8Ops] && Bits[ARM::FeatureCrypto]); 16657 case 30: 16658 return (Bits[ARM::FeatureNEON] && Bits[ARM::FeatureFP16]); 16659 case 31: 16660 return (Bits[ARM::FeatureNEON] && Bits[ARM::FeatureVFP4_D16_SP]); 16661 case 32: 16662 return (Bits[ARM::FeatureVFP2_SP]); 16663 case 33: 16664 return (Bits[ARM::FeatureFPRegs]); 16665 case 34: 16666 return (Bits[ARM::ModeThumb]); 16667 case 35: 16668 return (Bits[ARM::ModeThumb] && Bits[ARM::Feature8MSecExt]); 16669 case 36: 16670 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV5TOps]); 16671 case 37: 16672 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV6Ops]); 16673 case 38: 16674 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV8MBaselineOps]); 16675 case 39: 16676 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV8Ops] && Bits[ARM::HasV8_1aOps]); 16677 case 40: 16678 return (Bits[ARM::ModeThumb] && !Bits[ARM::FeatureMClass]); 16679 case 41: 16680 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV8Ops]); 16681 case 42: 16682 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV6MOps]); 16683 case 43: 16684 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV5TOps] && !Bits[ARM::FeatureMClass]); 16685 case 44: 16686 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2]); 16687 case 45: 16688 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && !Bits[ARM::FeatureMClass]); 16689 case 46: 16690 return (Bits[ARM::HasV8_1MMainlineOps]); 16691 case 47: 16692 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureAcquireRelease]); 16693 case 48: 16694 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureAcquireRelease] && Bits[ARM::FeatureV7Clrex]); 16695 case 49: 16696 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureAcquireRelease] && Bits[ARM::FeatureV7Clrex] && !Bits[ARM::FeatureMClass]); 16697 case 50: 16698 return (Bits[ARM::FeatureDSP] && Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2]); 16699 case 51: 16700 return (Bits[ARM::Feature8MSecExt]); 16701 case 52: 16702 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::FeatureDSP]); 16703 case 53: 16704 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV8Ops]); 16705 case 54: 16706 return (Bits[ARM::ModeThumb] && Bits[ARM::HasV8_4aOps]); 16707 case 55: 16708 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureV7Clrex]); 16709 case 56: 16710 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureDB]); 16711 case 57: 16712 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::FeatureSB]); 16713 case 58: 16714 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::FeatureVirtualization]); 16715 case 59: 16716 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::FeatureTrustZone]); 16717 case 60: 16718 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureVirtualization]); 16719 case 61: 16720 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureMClass]); 16721 case 62: 16722 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV8_1MMainlineOps] && Bits[ARM::FeatureLOB]); 16723 case 63: 16724 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV7Ops]); 16725 case 64: 16726 return (Bits[ARM::FeatureHWDivThumb] && Bits[ARM::ModeThumb] && Bits[ARM::HasV8MBaselineOps]); 16727 case 65: 16728 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV7Ops] && Bits[ARM::FeatureMP]); 16729 case 66: 16730 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && Bits[ARM::HasV8Ops] && Bits[ARM::FeatureCRC]); 16731 case 67: 16732 return (Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2] && !Bits[ARM::HasV8Ops]); 16733 case 68: 16734 return (!Bits[ARM::HasV8Ops] && Bits[ARM::ModeThumb] && Bits[ARM::FeatureThumb2]); 16735 case 69: 16736 return (Bits[ARM::FeatureFPRegs16]); 16737 case 70: 16738 return (Bits[ARM::FeatureFullFP16]); 16739 case 71: 16740 return (Bits[ARM::HasV8_1MMainlineOps] && Bits[ARM::Feature8MSecExt]); 16741 case 72: 16742 return (Bits[ARM::FeatureVFP4_D16_SP]); 16743 case 73: 16744 return (Bits[ARM::HasV8MMainlineOps] && Bits[ARM::Feature8MSecExt]); 16745 case 74: 16746 return (Bits[ARM::HasV8_1MMainlineOps] && Bits[ARM::FeatureFPRegs]); 16747 case 75: 16748 return (Bits[ARM::FeatureVFP3_D16_SP]); 16749 case 76: 16750 return (Bits[ARM::FeatureFP16]); 16751 case 77: 16752 return (Bits[ARM::FeatureFPARMv8_D16_SP]); 16753 case 78: 16754 return (Bits[ARM::FeatureVFP2_SP] && Bits[ARM::FeatureFP64]); 16755 case 79: 16756 return (Bits[ARM::FeatureVFP4_D16_SP] && Bits[ARM::FeatureFP64]); 16757 case 80: 16758 return (Bits[ARM::FeatureVFP3_D16_SP] && Bits[ARM::FeatureFP64]); 16759 case 81: 16760 return (Bits[ARM::FeatureFPRegs64]); 16761 case 82: 16762 return (Bits[ARM::FeatureFPARMv8_D16_SP] && Bits[ARM::FeatureFP64]); 16763 case 83: 16764 return (Bits[ARM::FeatureFPARMv8_D16_SP] && Bits[ARM::HasV8_3aOps]); 16765 case 84: 16766 return (Bits[ARM::FeatureNEON] && Bits[ARM::HasV8_3aOps] && Bits[ARM::FeatureFullFP16]); 16767 case 85: 16768 return (Bits[ARM::FeatureNEON] && Bits[ARM::HasV8_3aOps]); 16769 case 86: 16770 return (Bits[ARM::FeatureNEON] && Bits[ARM::FeatureFP16FML]); 16771 case 87: 16772 return (Bits[ARM::FeatureDotProd]); 16773 case 88: 16774 return (Bits[ARM::HasV8Ops] && Bits[ARM::FeatureNEON] && Bits[ARM::FeatureFullFP16]); 16775 case 89: 16776 return (Bits[ARM::HasV8Ops] && Bits[ARM::FeatureNEON]); 16777 } 16778} 16779 16780template<typename InsnType> 16781static DecodeStatus decodeToMCInst(DecodeStatus S, unsigned Idx, InsnType insn, MCInst &MI, 16782 uint64_t Address, const void *Decoder, bool &DecodeComplete) { 16783 DecodeComplete = true; 16784 InsnType tmp; 16785 switch (Idx) { 16786 default: llvm_unreachable("Invalid index!"); 16787 case 0: 16788 tmp = fieldFromInstruction(insn, 12, 4); 16789 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16790 tmp = fieldFromInstruction(insn, 16, 4); 16791 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16792 tmp = fieldFromInstruction(insn, 0, 4); 16793 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16794 tmp = fieldFromInstruction(insn, 28, 4); 16795 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16796 tmp = fieldFromInstruction(insn, 20, 1); 16797 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16798 return S; 16799 case 1: 16800 tmp = fieldFromInstruction(insn, 12, 4); 16801 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16802 tmp = fieldFromInstruction(insn, 16, 4); 16803 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16804 tmp = 0x0; 16805 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16806 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 16807 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16808 tmp = fieldFromInstruction(insn, 28, 4); 16809 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16810 tmp = fieldFromInstruction(insn, 20, 1); 16811 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16812 return S; 16813 case 2: 16814 tmp = fieldFromInstruction(insn, 12, 4); 16815 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16816 tmp = fieldFromInstruction(insn, 16, 4); 16817 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16818 tmp = 0x0; 16819 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16820 tmp |= fieldFromInstruction(insn, 5, 2) << 5; 16821 tmp |= fieldFromInstruction(insn, 8, 4) << 8; 16822 if (!Check(S, DecodeSORegRegOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16823 tmp = fieldFromInstruction(insn, 28, 4); 16824 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16825 tmp = fieldFromInstruction(insn, 20, 1); 16826 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16827 return S; 16828 case 3: 16829 tmp = fieldFromInstruction(insn, 12, 4); 16830 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16831 tmp = fieldFromInstruction(insn, 16, 4); 16832 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16833 tmp = 0x0; 16834 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16835 tmp |= fieldFromInstruction(insn, 5, 2) << 5; 16836 tmp |= fieldFromInstruction(insn, 8, 4) << 8; 16837 if (!Check(S, DecodeSORegRegOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16838 tmp = fieldFromInstruction(insn, 28, 4); 16839 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16840 tmp = fieldFromInstruction(insn, 20, 1); 16841 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16842 return S; 16843 case 4: 16844 tmp = fieldFromInstruction(insn, 16, 4); 16845 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16846 tmp = fieldFromInstruction(insn, 0, 4); 16847 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16848 tmp = fieldFromInstruction(insn, 8, 4); 16849 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16850 tmp = fieldFromInstruction(insn, 28, 4); 16851 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16852 tmp = fieldFromInstruction(insn, 20, 1); 16853 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16854 return S; 16855 case 5: 16856 tmp = fieldFromInstruction(insn, 12, 4); 16857 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16858 tmp = fieldFromInstruction(insn, 16, 4); 16859 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16860 tmp = fieldFromInstruction(insn, 0, 4); 16861 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16862 tmp = fieldFromInstruction(insn, 8, 4); 16863 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16864 tmp = fieldFromInstruction(insn, 12, 4); 16865 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16866 tmp = fieldFromInstruction(insn, 16, 4); 16867 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16868 tmp = fieldFromInstruction(insn, 28, 4); 16869 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16870 return S; 16871 case 6: 16872 tmp = fieldFromInstruction(insn, 12, 4); 16873 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16874 tmp = fieldFromInstruction(insn, 16, 4); 16875 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16876 tmp = fieldFromInstruction(insn, 0, 4); 16877 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16878 tmp = fieldFromInstruction(insn, 8, 4); 16879 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16880 tmp = fieldFromInstruction(insn, 28, 4); 16881 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16882 tmp = fieldFromInstruction(insn, 20, 1); 16883 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16884 return S; 16885 case 7: 16886 if (!Check(S, DecodeAddrMode3Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16887 return S; 16888 case 8: 16889 tmp = fieldFromInstruction(insn, 12, 4); 16890 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16891 tmp = fieldFromInstruction(insn, 16, 4); 16892 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16893 tmp = fieldFromInstruction(insn, 0, 4); 16894 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16895 return S; 16896 case 9: 16897 if (!Check(S, DecodeCPSInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16898 return S; 16899 case 10: 16900 tmp = fieldFromInstruction(insn, 9, 1); 16901 MI.addOperand(MCOperand::createImm(tmp)); 16902 return S; 16903 case 11: 16904 tmp = fieldFromInstruction(insn, 12, 4); 16905 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16906 tmp = fieldFromInstruction(insn, 28, 4); 16907 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16908 return S; 16909 case 12: 16910 if (!Check(S, DecodeQADDInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16911 return S; 16912 case 13: 16913 if (!Check(S, DecodeSMLAInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16914 return S; 16915 case 14: 16916 if (!Check(S, DecodeSwap(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16917 return S; 16918 case 15: 16919 tmp = 0x0; 16920 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16921 tmp |= fieldFromInstruction(insn, 8, 12) << 4; 16922 MI.addOperand(MCOperand::createImm(tmp)); 16923 return S; 16924 case 16: 16925 if (!Check(S, DecodeTSTInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 16926 return S; 16927 case 17: 16928 tmp = fieldFromInstruction(insn, 16, 4); 16929 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16930 tmp = 0x0; 16931 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16932 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 16933 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16934 tmp = fieldFromInstruction(insn, 28, 4); 16935 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16936 return S; 16937 case 18: 16938 tmp = fieldFromInstruction(insn, 16, 4); 16939 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16940 tmp = 0x0; 16941 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 16942 tmp |= fieldFromInstruction(insn, 5, 2) << 5; 16943 tmp |= fieldFromInstruction(insn, 8, 4) << 8; 16944 if (!Check(S, DecodeSORegRegOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16945 tmp = fieldFromInstruction(insn, 28, 4); 16946 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16947 return S; 16948 case 19: 16949 tmp = fieldFromInstruction(insn, 12, 4); 16950 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16951 tmp = fieldFromInstruction(insn, 16, 4); 16952 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16953 tmp = fieldFromInstruction(insn, 0, 4); 16954 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16955 tmp = fieldFromInstruction(insn, 8, 4); 16956 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16957 tmp = fieldFromInstruction(insn, 12, 4); 16958 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16959 tmp = fieldFromInstruction(insn, 16, 4); 16960 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16961 tmp = fieldFromInstruction(insn, 28, 4); 16962 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16963 return S; 16964 case 20: 16965 tmp = fieldFromInstruction(insn, 16, 4); 16966 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16967 tmp = fieldFromInstruction(insn, 0, 4); 16968 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16969 tmp = fieldFromInstruction(insn, 28, 4); 16970 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16971 return S; 16972 case 21: 16973 tmp = fieldFromInstruction(insn, 12, 4); 16974 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16975 tmp = fieldFromInstruction(insn, 0, 4); 16976 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16977 tmp = fieldFromInstruction(insn, 16, 4); 16978 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16979 tmp = fieldFromInstruction(insn, 28, 4); 16980 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16981 return S; 16982 case 22: 16983 tmp = fieldFromInstruction(insn, 0, 4); 16984 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16985 tmp = fieldFromInstruction(insn, 16, 4); 16986 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16987 tmp = fieldFromInstruction(insn, 28, 4); 16988 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16989 return S; 16990 case 23: 16991 tmp = fieldFromInstruction(insn, 12, 4); 16992 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16993 tmp = fieldFromInstruction(insn, 16, 4); 16994 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16995 tmp = fieldFromInstruction(insn, 28, 4); 16996 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 16997 return S; 16998 case 24: 16999 tmp = fieldFromInstruction(insn, 12, 4); 17000 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17001 tmp = fieldFromInstruction(insn, 0, 4); 17002 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17003 tmp = fieldFromInstruction(insn, 16, 4); 17004 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17005 tmp = fieldFromInstruction(insn, 28, 4); 17006 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17007 return S; 17008 case 25: 17009 tmp = fieldFromInstruction(insn, 12, 4); 17010 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17011 tmp = 0x0; 17012 tmp |= fieldFromInstruction(insn, 8, 1) << 4; 17013 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 17014 tmp |= fieldFromInstruction(insn, 22, 1) << 5; 17015 if (!Check(S, DecodeBankedReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17016 tmp = fieldFromInstruction(insn, 28, 4); 17017 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17018 return S; 17019 case 26: 17020 tmp = 0x0; 17021 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 17022 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 17023 if (!Check(S, DecodeMSRMask(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17024 tmp = fieldFromInstruction(insn, 0, 4); 17025 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17026 tmp = fieldFromInstruction(insn, 28, 4); 17027 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17028 return S; 17029 case 27: 17030 tmp = 0x0; 17031 tmp |= fieldFromInstruction(insn, 8, 1) << 4; 17032 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 17033 tmp |= fieldFromInstruction(insn, 22, 1) << 5; 17034 if (!Check(S, DecodeBankedReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17035 tmp = fieldFromInstruction(insn, 0, 4); 17036 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17037 tmp = fieldFromInstruction(insn, 28, 4); 17038 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17039 return S; 17040 case 28: 17041 tmp = fieldFromInstruction(insn, 0, 4); 17042 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17043 tmp = fieldFromInstruction(insn, 28, 4); 17044 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17045 return S; 17046 case 29: 17047 tmp = fieldFromInstruction(insn, 28, 4); 17048 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17049 return S; 17050 case 30: 17051 tmp = fieldFromInstruction(insn, 16, 4); 17052 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17053 tmp = fieldFromInstruction(insn, 0, 4); 17054 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17055 tmp = fieldFromInstruction(insn, 8, 4); 17056 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17057 tmp = fieldFromInstruction(insn, 28, 4); 17058 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17059 return S; 17060 case 31: 17061 tmp = fieldFromInstruction(insn, 12, 4); 17062 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17063 tmp = fieldFromInstruction(insn, 0, 4); 17064 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17065 tmp = fieldFromInstruction(insn, 28, 4); 17066 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17067 tmp = fieldFromInstruction(insn, 20, 1); 17068 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17069 return S; 17070 case 32: 17071 tmp = fieldFromInstruction(insn, 12, 4); 17072 if (!Check(S, DecodetcGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17073 tmp = fieldFromInstruction(insn, 0, 4); 17074 if (!Check(S, DecodetcGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17075 tmp = fieldFromInstruction(insn, 28, 4); 17076 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17077 tmp = fieldFromInstruction(insn, 20, 1); 17078 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17079 return S; 17080 case 33: 17081 tmp = fieldFromInstruction(insn, 12, 4); 17082 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17083 tmp = 0x0; 17084 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17085 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 17086 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17087 tmp = fieldFromInstruction(insn, 28, 4); 17088 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17089 tmp = fieldFromInstruction(insn, 20, 1); 17090 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17091 return S; 17092 case 34: 17093 tmp = fieldFromInstruction(insn, 0, 4); 17094 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17095 return S; 17096 case 35: 17097 tmp = fieldFromInstruction(insn, 12, 4); 17098 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17099 tmp = fieldFromInstruction(insn, 0, 4); 17100 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17101 tmp = fieldFromInstruction(insn, 28, 4); 17102 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17103 return S; 17104 case 36: 17105 tmp = fieldFromInstruction(insn, 0, 4); 17106 MI.addOperand(MCOperand::createImm(tmp)); 17107 tmp = fieldFromInstruction(insn, 28, 4); 17108 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17109 return S; 17110 case 37: 17111 tmp = fieldFromInstruction(insn, 12, 4); 17112 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17113 tmp = 0x0; 17114 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17115 tmp |= fieldFromInstruction(insn, 5, 2) << 5; 17116 tmp |= fieldFromInstruction(insn, 8, 4) << 8; 17117 if (!Check(S, DecodeSORegRegOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17118 tmp = fieldFromInstruction(insn, 28, 4); 17119 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17120 tmp = fieldFromInstruction(insn, 20, 1); 17121 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17122 return S; 17123 case 38: 17124 tmp = fieldFromInstruction(insn, 16, 4); 17125 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17126 tmp = fieldFromInstruction(insn, 0, 4); 17127 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17128 tmp = fieldFromInstruction(insn, 8, 4); 17129 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17130 tmp = fieldFromInstruction(insn, 12, 4); 17131 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17132 tmp = fieldFromInstruction(insn, 28, 4); 17133 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17134 tmp = fieldFromInstruction(insn, 20, 1); 17135 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17136 return S; 17137 case 39: 17138 tmp = fieldFromInstruction(insn, 16, 4); 17139 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17140 tmp = fieldFromInstruction(insn, 0, 4); 17141 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17142 tmp = fieldFromInstruction(insn, 8, 4); 17143 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17144 tmp = fieldFromInstruction(insn, 12, 4); 17145 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17146 tmp = fieldFromInstruction(insn, 28, 4); 17147 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17148 return S; 17149 case 40: 17150 tmp = fieldFromInstruction(insn, 12, 4); 17151 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17152 tmp = fieldFromInstruction(insn, 16, 4); 17153 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17154 tmp = fieldFromInstruction(insn, 0, 4); 17155 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17156 tmp = fieldFromInstruction(insn, 8, 4); 17157 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17158 tmp = fieldFromInstruction(insn, 12, 4); 17159 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17160 tmp = fieldFromInstruction(insn, 16, 4); 17161 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17162 tmp = fieldFromInstruction(insn, 28, 4); 17163 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17164 tmp = fieldFromInstruction(insn, 20, 1); 17165 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17166 return S; 17167 case 41: 17168 if (!Check(S, DecodeDoubleRegStore(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17169 return S; 17170 case 42: 17171 if (!Check(S, DecodeDoubleRegLoad(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17172 return S; 17173 case 43: 17174 tmp = fieldFromInstruction(insn, 16, 4); 17175 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17176 tmp = fieldFromInstruction(insn, 12, 4); 17177 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17178 tmp = fieldFromInstruction(insn, 16, 4); 17179 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17180 tmp = 0x0; 17181 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17182 tmp |= fieldFromInstruction(insn, 23, 1) << 4; 17183 if (!Check(S, DecodePostIdxReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17184 tmp = fieldFromInstruction(insn, 28, 4); 17185 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17186 return S; 17187 case 44: 17188 tmp = fieldFromInstruction(insn, 16, 4); 17189 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17190 tmp = fieldFromInstruction(insn, 12, 4); 17191 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17192 tmp = fieldFromInstruction(insn, 16, 4); 17193 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17194 tmp = 0x0; 17195 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17196 tmp |= fieldFromInstruction(insn, 8, 4) << 4; 17197 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 17198 MI.addOperand(MCOperand::createImm(tmp)); 17199 tmp = fieldFromInstruction(insn, 28, 4); 17200 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17201 return S; 17202 case 45: 17203 if (!Check(S, DecodeLDR(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17204 return S; 17205 case 46: 17206 tmp = fieldFromInstruction(insn, 12, 4); 17207 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17208 tmp = fieldFromInstruction(insn, 16, 4); 17209 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17210 tmp = fieldFromInstruction(insn, 16, 4); 17211 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17212 tmp = 0x0; 17213 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17214 tmp |= fieldFromInstruction(insn, 8, 4) << 4; 17215 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 17216 MI.addOperand(MCOperand::createImm(tmp)); 17217 tmp = fieldFromInstruction(insn, 28, 4); 17218 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17219 return S; 17220 case 47: 17221 tmp = fieldFromInstruction(insn, 12, 4); 17222 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17223 tmp = fieldFromInstruction(insn, 16, 4); 17224 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17225 tmp = fieldFromInstruction(insn, 0, 12); 17226 MI.addOperand(MCOperand::createImm(tmp)); 17227 tmp = fieldFromInstruction(insn, 28, 4); 17228 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17229 tmp = fieldFromInstruction(insn, 20, 1); 17230 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17231 return S; 17232 case 48: 17233 tmp = fieldFromInstruction(insn, 12, 4); 17234 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17235 tmp = 0x0; 17236 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 17237 tmp |= fieldFromInstruction(insn, 22, 2) << 12; 17238 MI.addOperand(MCOperand::createImm(tmp)); 17239 tmp = fieldFromInstruction(insn, 28, 4); 17240 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17241 return S; 17242 case 49: 17243 if (!Check(S, DecodeArmMOVTWInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17244 return S; 17245 case 50: 17246 tmp = fieldFromInstruction(insn, 16, 4); 17247 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17248 tmp = fieldFromInstruction(insn, 0, 12); 17249 MI.addOperand(MCOperand::createImm(tmp)); 17250 tmp = fieldFromInstruction(insn, 28, 4); 17251 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17252 return S; 17253 case 51: 17254 return S; 17255 case 52: 17256 if (!Check(S, DecodeHINTInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17257 return S; 17258 case 53: 17259 tmp = 0x0; 17260 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 17261 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 17262 if (!Check(S, DecodeMSRMask(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17263 tmp = fieldFromInstruction(insn, 0, 12); 17264 MI.addOperand(MCOperand::createImm(tmp)); 17265 tmp = fieldFromInstruction(insn, 28, 4); 17266 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17267 return S; 17268 case 54: 17269 tmp = fieldFromInstruction(insn, 12, 4); 17270 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17271 tmp = fieldFromInstruction(insn, 0, 12); 17272 MI.addOperand(MCOperand::createImm(tmp)); 17273 tmp = fieldFromInstruction(insn, 28, 4); 17274 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17275 tmp = fieldFromInstruction(insn, 20, 1); 17276 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17277 return S; 17278 case 55: 17279 if (!Check(S, DecodeAddrMode2IdxInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17280 return S; 17281 case 56: 17282 tmp = fieldFromInstruction(insn, 12, 4); 17283 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17284 tmp = 0x0; 17285 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 17286 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17287 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17288 if (!Check(S, DecodeAddrModeImm12Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17289 tmp = fieldFromInstruction(insn, 28, 4); 17290 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17291 return S; 17292 case 57: 17293 tmp = 0x0; 17294 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 17295 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17296 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17297 if (!Check(S, DecodeAddrModeImm12Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17298 return S; 17299 case 58: 17300 if (!Check(S, DecodeSTRPreImm(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17301 return S; 17302 case 59: 17303 if (!Check(S, DecodeLDRPreImm(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17304 return S; 17305 case 60: 17306 tmp = fieldFromInstruction(insn, 12, 4); 17307 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17308 tmp = 0x0; 17309 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 17310 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17311 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17312 if (!Check(S, DecodeAddrModeImm12Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17313 tmp = fieldFromInstruction(insn, 28, 4); 17314 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17315 return S; 17316 case 61: 17317 tmp = fieldFromInstruction(insn, 0, 4); 17318 if (!Check(S, DecodeMemBarrierOption(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17319 return S; 17320 case 62: 17321 tmp = fieldFromInstruction(insn, 0, 4); 17322 if (!Check(S, DecodeInstSyncBarrierOption(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17323 return S; 17324 case 63: 17325 tmp = fieldFromInstruction(insn, 12, 4); 17326 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17327 tmp = 0x0; 17328 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17329 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 17330 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17331 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17332 if (!Check(S, DecodeSORegMemOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17333 tmp = fieldFromInstruction(insn, 28, 4); 17334 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17335 return S; 17336 case 64: 17337 tmp = 0x0; 17338 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17339 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 17340 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17341 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17342 if (!Check(S, DecodeSORegMemOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17343 return S; 17344 case 65: 17345 tmp = fieldFromInstruction(insn, 12, 4); 17346 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17347 tmp = fieldFromInstruction(insn, 16, 4); 17348 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17349 tmp = fieldFromInstruction(insn, 0, 4); 17350 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17351 tmp = fieldFromInstruction(insn, 28, 4); 17352 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17353 return S; 17354 case 66: 17355 tmp = fieldFromInstruction(insn, 12, 4); 17356 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17357 tmp = fieldFromInstruction(insn, 16, 4); 17358 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17359 tmp = fieldFromInstruction(insn, 0, 4); 17360 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17361 tmp = fieldFromInstruction(insn, 7, 5); 17362 MI.addOperand(MCOperand::createImm(tmp)); 17363 tmp = fieldFromInstruction(insn, 28, 4); 17364 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17365 return S; 17366 case 67: 17367 tmp = fieldFromInstruction(insn, 16, 4); 17368 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17369 tmp = fieldFromInstruction(insn, 0, 4); 17370 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17371 tmp = fieldFromInstruction(insn, 8, 4); 17372 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17373 tmp = fieldFromInstruction(insn, 28, 4); 17374 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17375 return S; 17376 case 68: 17377 tmp = fieldFromInstruction(insn, 16, 4); 17378 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17379 tmp = fieldFromInstruction(insn, 0, 4); 17380 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17381 tmp = fieldFromInstruction(insn, 8, 4); 17382 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17383 tmp = fieldFromInstruction(insn, 12, 4); 17384 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17385 tmp = fieldFromInstruction(insn, 28, 4); 17386 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17387 return S; 17388 case 69: 17389 tmp = fieldFromInstruction(insn, 12, 4); 17390 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17391 tmp = fieldFromInstruction(insn, 16, 4); 17392 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17393 tmp = fieldFromInstruction(insn, 0, 4); 17394 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17395 tmp = fieldFromInstruction(insn, 28, 4); 17396 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17397 return S; 17398 case 70: 17399 tmp = fieldFromInstruction(insn, 12, 4); 17400 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17401 tmp = fieldFromInstruction(insn, 0, 4); 17402 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17403 tmp = fieldFromInstruction(insn, 10, 2); 17404 MI.addOperand(MCOperand::createImm(tmp)); 17405 tmp = fieldFromInstruction(insn, 28, 4); 17406 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17407 return S; 17408 case 71: 17409 tmp = fieldFromInstruction(insn, 12, 4); 17410 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17411 tmp = fieldFromInstruction(insn, 16, 4); 17412 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17413 tmp = fieldFromInstruction(insn, 0, 4); 17414 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17415 tmp = fieldFromInstruction(insn, 10, 2); 17416 MI.addOperand(MCOperand::createImm(tmp)); 17417 tmp = fieldFromInstruction(insn, 28, 4); 17418 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17419 return S; 17420 case 72: 17421 if (!Check(S, DecodeSTRPreReg(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17422 return S; 17423 case 73: 17424 if (!Check(S, DecodeLDRPreReg(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17425 return S; 17426 case 74: 17427 tmp = fieldFromInstruction(insn, 12, 4); 17428 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17429 tmp = fieldFromInstruction(insn, 16, 5); 17430 MI.addOperand(MCOperand::createImm(tmp)); 17431 tmp = fieldFromInstruction(insn, 0, 4); 17432 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17433 tmp = 0x0; 17434 tmp |= fieldFromInstruction(insn, 6, 1) << 5; 17435 tmp |= fieldFromInstruction(insn, 7, 5) << 0; 17436 MI.addOperand(MCOperand::createImm(tmp)); 17437 tmp = fieldFromInstruction(insn, 28, 4); 17438 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17439 return S; 17440 case 75: 17441 tmp = fieldFromInstruction(insn, 12, 4); 17442 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17443 tmp = fieldFromInstruction(insn, 16, 4); 17444 MI.addOperand(MCOperand::createImm(tmp)); 17445 tmp = fieldFromInstruction(insn, 0, 4); 17446 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17447 tmp = fieldFromInstruction(insn, 28, 4); 17448 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17449 return S; 17450 case 76: 17451 tmp = fieldFromInstruction(insn, 12, 4); 17452 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17453 tmp = fieldFromInstruction(insn, 0, 4); 17454 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17455 tmp = fieldFromInstruction(insn, 7, 5); 17456 MI.addOperand(MCOperand::createImm(tmp)); 17457 tmp = fieldFromInstruction(insn, 16, 5); 17458 MI.addOperand(MCOperand::createImm(tmp)); 17459 tmp = fieldFromInstruction(insn, 28, 4); 17460 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17461 return S; 17462 case 77: 17463 tmp = fieldFromInstruction(insn, 12, 4); 17464 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17465 tmp = 0x0; 17466 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 17467 tmp |= fieldFromInstruction(insn, 5, 7) << 5; 17468 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 17469 tmp |= fieldFromInstruction(insn, 23, 1) << 12; 17470 if (!Check(S, DecodeSORegMemOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17471 tmp = fieldFromInstruction(insn, 28, 4); 17472 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17473 return S; 17474 case 78: 17475 tmp = fieldFromInstruction(insn, 12, 4); 17476 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17477 tmp = fieldFromInstruction(insn, 12, 4); 17478 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17479 tmp = 0x0; 17480 tmp |= fieldFromInstruction(insn, 7, 5) << 0; 17481 tmp |= fieldFromInstruction(insn, 16, 5) << 5; 17482 if (!Check(S, DecodeBitfieldMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17483 tmp = fieldFromInstruction(insn, 28, 4); 17484 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17485 return S; 17486 case 79: 17487 tmp = fieldFromInstruction(insn, 12, 4); 17488 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17489 tmp = fieldFromInstruction(insn, 12, 4); 17490 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17491 tmp = fieldFromInstruction(insn, 0, 4); 17492 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17493 tmp = 0x0; 17494 tmp |= fieldFromInstruction(insn, 7, 5) << 0; 17495 tmp |= fieldFromInstruction(insn, 16, 5) << 5; 17496 if (!Check(S, DecodeBitfieldMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17497 tmp = fieldFromInstruction(insn, 28, 4); 17498 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17499 return S; 17500 case 80: 17501 tmp = fieldFromInstruction(insn, 16, 4); 17502 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17503 tmp = fieldFromInstruction(insn, 28, 4); 17504 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17505 tmp = fieldFromInstruction(insn, 0, 16); 17506 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17507 return S; 17508 case 81: 17509 tmp = fieldFromInstruction(insn, 16, 4); 17510 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17511 return S; 17512 case 82: 17513 if (!Check(S, DecodeMemMultipleWritebackInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17514 return S; 17515 case 83: 17516 tmp = fieldFromInstruction(insn, 0, 5); 17517 MI.addOperand(MCOperand::createImm(tmp)); 17518 return S; 17519 case 84: 17520 if (!Check(S, DecodeBranchImmInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17521 return S; 17522 case 85: 17523 tmp = 0x0; 17524 tmp |= fieldFromInstruction(insn, 0, 24) << 1; 17525 tmp |= fieldFromInstruction(insn, 24, 1) << 0; 17526 MI.addOperand(MCOperand::createImm(tmp)); 17527 return S; 17528 case 86: 17529 if (!Check(S, DecoderForMRRC2AndMCRR2(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17530 return S; 17531 case 87: 17532 tmp = fieldFromInstruction(insn, 8, 4); 17533 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17534 tmp = fieldFromInstruction(insn, 4, 4); 17535 MI.addOperand(MCOperand::createImm(tmp)); 17536 tmp = fieldFromInstruction(insn, 12, 4); 17537 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17538 tmp = fieldFromInstruction(insn, 16, 4); 17539 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17540 tmp = fieldFromInstruction(insn, 0, 4); 17541 MI.addOperand(MCOperand::createImm(tmp)); 17542 tmp = fieldFromInstruction(insn, 28, 4); 17543 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17544 return S; 17545 case 88: 17546 tmp = fieldFromInstruction(insn, 12, 4); 17547 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17548 tmp = fieldFromInstruction(insn, 16, 4); 17549 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17550 tmp = fieldFromInstruction(insn, 8, 4); 17551 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17552 tmp = fieldFromInstruction(insn, 4, 4); 17553 MI.addOperand(MCOperand::createImm(tmp)); 17554 tmp = fieldFromInstruction(insn, 0, 4); 17555 MI.addOperand(MCOperand::createImm(tmp)); 17556 tmp = fieldFromInstruction(insn, 28, 4); 17557 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17558 return S; 17559 case 89: 17560 tmp = fieldFromInstruction(insn, 0, 24); 17561 MI.addOperand(MCOperand::createImm(tmp)); 17562 tmp = fieldFromInstruction(insn, 28, 4); 17563 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17564 return S; 17565 case 90: 17566 if (!Check(S, DecodeCopMemInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17567 return S; 17568 case 91: 17569 tmp = fieldFromInstruction(insn, 8, 4); 17570 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17571 tmp = fieldFromInstruction(insn, 20, 4); 17572 MI.addOperand(MCOperand::createImm(tmp)); 17573 tmp = fieldFromInstruction(insn, 12, 4); 17574 MI.addOperand(MCOperand::createImm(tmp)); 17575 tmp = fieldFromInstruction(insn, 16, 4); 17576 MI.addOperand(MCOperand::createImm(tmp)); 17577 tmp = fieldFromInstruction(insn, 0, 4); 17578 MI.addOperand(MCOperand::createImm(tmp)); 17579 tmp = fieldFromInstruction(insn, 5, 3); 17580 MI.addOperand(MCOperand::createImm(tmp)); 17581 return S; 17582 case 92: 17583 tmp = fieldFromInstruction(insn, 8, 4); 17584 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17585 tmp = fieldFromInstruction(insn, 20, 4); 17586 MI.addOperand(MCOperand::createImm(tmp)); 17587 tmp = fieldFromInstruction(insn, 12, 4); 17588 MI.addOperand(MCOperand::createImm(tmp)); 17589 tmp = fieldFromInstruction(insn, 16, 4); 17590 MI.addOperand(MCOperand::createImm(tmp)); 17591 tmp = fieldFromInstruction(insn, 0, 4); 17592 MI.addOperand(MCOperand::createImm(tmp)); 17593 tmp = fieldFromInstruction(insn, 5, 3); 17594 MI.addOperand(MCOperand::createImm(tmp)); 17595 tmp = fieldFromInstruction(insn, 28, 4); 17596 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17597 return S; 17598 case 93: 17599 tmp = fieldFromInstruction(insn, 8, 4); 17600 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17601 tmp = fieldFromInstruction(insn, 21, 3); 17602 MI.addOperand(MCOperand::createImm(tmp)); 17603 tmp = fieldFromInstruction(insn, 12, 4); 17604 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17605 tmp = fieldFromInstruction(insn, 16, 4); 17606 MI.addOperand(MCOperand::createImm(tmp)); 17607 tmp = fieldFromInstruction(insn, 0, 4); 17608 MI.addOperand(MCOperand::createImm(tmp)); 17609 tmp = fieldFromInstruction(insn, 5, 3); 17610 MI.addOperand(MCOperand::createImm(tmp)); 17611 return S; 17612 case 94: 17613 tmp = fieldFromInstruction(insn, 8, 4); 17614 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17615 tmp = fieldFromInstruction(insn, 21, 3); 17616 MI.addOperand(MCOperand::createImm(tmp)); 17617 tmp = fieldFromInstruction(insn, 12, 4); 17618 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17619 tmp = fieldFromInstruction(insn, 16, 4); 17620 MI.addOperand(MCOperand::createImm(tmp)); 17621 tmp = fieldFromInstruction(insn, 0, 4); 17622 MI.addOperand(MCOperand::createImm(tmp)); 17623 tmp = fieldFromInstruction(insn, 5, 3); 17624 MI.addOperand(MCOperand::createImm(tmp)); 17625 tmp = fieldFromInstruction(insn, 28, 4); 17626 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17627 return S; 17628 case 95: 17629 tmp = fieldFromInstruction(insn, 12, 4); 17630 if (!Check(S, DecodeGPRwithAPSRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17631 tmp = fieldFromInstruction(insn, 8, 4); 17632 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17633 tmp = fieldFromInstruction(insn, 21, 3); 17634 MI.addOperand(MCOperand::createImm(tmp)); 17635 tmp = fieldFromInstruction(insn, 16, 4); 17636 MI.addOperand(MCOperand::createImm(tmp)); 17637 tmp = fieldFromInstruction(insn, 0, 4); 17638 MI.addOperand(MCOperand::createImm(tmp)); 17639 tmp = fieldFromInstruction(insn, 5, 3); 17640 MI.addOperand(MCOperand::createImm(tmp)); 17641 return S; 17642 case 96: 17643 tmp = fieldFromInstruction(insn, 12, 4); 17644 if (!Check(S, DecodeGPRwithAPSRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17645 tmp = fieldFromInstruction(insn, 8, 4); 17646 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17647 tmp = fieldFromInstruction(insn, 21, 3); 17648 MI.addOperand(MCOperand::createImm(tmp)); 17649 tmp = fieldFromInstruction(insn, 16, 4); 17650 MI.addOperand(MCOperand::createImm(tmp)); 17651 tmp = fieldFromInstruction(insn, 0, 4); 17652 MI.addOperand(MCOperand::createImm(tmp)); 17653 tmp = fieldFromInstruction(insn, 5, 3); 17654 MI.addOperand(MCOperand::createImm(tmp)); 17655 tmp = fieldFromInstruction(insn, 28, 4); 17656 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17657 return S; 17658 case 97: 17659 if (!Check(S, DecodeMveVCTP(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17660 return S; 17661 case 98: 17662 if (!Check(S, DecodeMVEOverlappingLongShift(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17663 return S; 17664 case 99: 17665 tmp = fieldFromInstruction(insn, 16, 4); 17666 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17667 tmp = fieldFromInstruction(insn, 16, 4); 17668 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17669 tmp = fieldFromInstruction(insn, 12, 4); 17670 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17671 return S; 17672 case 100: 17673 tmp = fieldFromInstruction(insn, 16, 4); 17674 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17675 tmp = fieldFromInstruction(insn, 16, 4); 17676 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17677 tmp = 0x0; 17678 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 17679 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 17680 if (!Check(S, DecodeLongShiftOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17681 return S; 17682 case 101: 17683 tmp = fieldFromInstruction(insn, 17, 3) << 1; 17684 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17685 tmp = fieldFromInstruction(insn, 9, 3) << 1; 17686 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17687 tmp = fieldFromInstruction(insn, 17, 3) << 1; 17688 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17689 tmp = fieldFromInstruction(insn, 9, 3) << 1; 17690 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17691 tmp = 0x0; 17692 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 17693 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 17694 if (!Check(S, DecodeLongShiftOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17695 return S; 17696 case 102: 17697 tmp = 0x0; 17698 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 17699 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 17700 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17701 tmp = 0x0; 17702 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 17703 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 17704 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17705 tmp = 0x0; 17706 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 17707 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 17708 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17709 tmp = fieldFromInstruction(insn, 24, 1); 17710 MI.addOperand(MCOperand::createImm(tmp)); 17711 tmp = 0x0; 17712 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 17713 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 17714 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17715 return S; 17716 case 103: 17717 tmp = 0x0; 17718 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 17719 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 17720 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17721 tmp = 0x0; 17722 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 17723 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 17724 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17725 tmp = 0x0; 17726 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 17727 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 17728 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17729 tmp = 0x0; 17730 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 17731 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 17732 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17733 tmp = fieldFromInstruction(insn, 23, 2); 17734 MI.addOperand(MCOperand::createImm(tmp)); 17735 return S; 17736 case 104: 17737 tmp = fieldFromInstruction(insn, 13, 3); 17738 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17739 tmp = 0x0; 17740 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 17741 tmp |= fieldFromInstruction(insn, 16, 4) << 3; 17742 if (!Check(S, DecodeMveAddrModeRQ(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17743 return S; 17744 case 105: 17745 tmp = fieldFromInstruction(insn, 13, 3); 17746 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17747 tmp = 0x0; 17748 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17749 tmp |= fieldFromInstruction(insn, 16, 3) << 8; 17750 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17751 if (!Check(S, DecodeTAddrModeImm7<0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17752 return S; 17753 case 106: 17754 tmp = fieldFromInstruction(insn, 16, 3); 17755 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17756 tmp = fieldFromInstruction(insn, 13, 3); 17757 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17758 tmp = fieldFromInstruction(insn, 16, 3); 17759 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17760 tmp = 0x0; 17761 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17762 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17763 if (!Check(S, DecodeT2Imm7<0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17764 return S; 17765 case 107: 17766 if (!Check(S, DecodeMVE_MEM_1_pre<0>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17767 return S; 17768 case 108: 17769 if (!Check(S, DecodeMVEVMOVQtoDReg(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17770 return S; 17771 case 109: 17772 tmp = fieldFromInstruction(insn, 13, 3); 17773 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17774 tmp = 0x0; 17775 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17776 tmp |= fieldFromInstruction(insn, 16, 3) << 8; 17777 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17778 if (!Check(S, DecodeTAddrModeImm7<1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17779 return S; 17780 case 110: 17781 if (!Check(S, DecodeMVEVMOVDRegtoQ(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17782 return S; 17783 case 111: 17784 tmp = fieldFromInstruction(insn, 16, 3); 17785 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17786 tmp = fieldFromInstruction(insn, 13, 3); 17787 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17788 tmp = fieldFromInstruction(insn, 16, 3); 17789 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17790 tmp = 0x0; 17791 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17792 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17793 if (!Check(S, DecodeT2Imm7<1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17794 return S; 17795 case 112: 17796 if (!Check(S, DecodeMVE_MEM_1_pre<1>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17797 return S; 17798 case 113: 17799 tmp = fieldFromInstruction(insn, 13, 3); 17800 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17801 tmp = fieldFromInstruction(insn, 16, 4); 17802 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17803 return S; 17804 case 114: 17805 tmp = fieldFromInstruction(insn, 13, 3); 17806 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17807 tmp = fieldFromInstruction(insn, 16, 4); 17808 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17809 return S; 17810 case 115: 17811 tmp = fieldFromInstruction(insn, 13, 3); 17812 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17813 tmp = 0x0; 17814 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17815 tmp |= fieldFromInstruction(insn, 16, 4) << 8; 17816 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17817 if (!Check(S, DecodeT2AddrModeImm7<0, 0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17818 return S; 17819 case 116: 17820 tmp = fieldFromInstruction(insn, 13, 3); 17821 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17822 tmp = 0x0; 17823 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17824 tmp |= fieldFromInstruction(insn, 17, 3) << 8; 17825 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17826 if (!Check(S, DecodeMveAddrModeQ<2>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17827 return S; 17828 case 117: 17829 tmp = fieldFromInstruction(insn, 13, 3); 17830 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17831 tmp = 0x0; 17832 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17833 tmp |= fieldFromInstruction(insn, 16, 4) << 8; 17834 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17835 if (!Check(S, DecodeT2AddrModeImm7<1, 0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17836 return S; 17837 case 118: 17838 tmp = fieldFromInstruction(insn, 13, 3); 17839 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17840 tmp = fieldFromInstruction(insn, 13, 3); 17841 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17842 tmp = fieldFromInstruction(insn, 16, 4); 17843 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17844 return S; 17845 case 119: 17846 tmp = fieldFromInstruction(insn, 13, 3); 17847 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17848 tmp = fieldFromInstruction(insn, 13, 3); 17849 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17850 tmp = fieldFromInstruction(insn, 16, 4); 17851 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17852 return S; 17853 case 120: 17854 tmp = fieldFromInstruction(insn, 16, 4); 17855 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17856 tmp = fieldFromInstruction(insn, 13, 3); 17857 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17858 tmp = fieldFromInstruction(insn, 16, 4); 17859 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17860 tmp = 0x0; 17861 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17862 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17863 if (!Check(S, DecodeT2Imm7<0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17864 return S; 17865 case 121: 17866 tmp = fieldFromInstruction(insn, 16, 4); 17867 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17868 tmp = fieldFromInstruction(insn, 13, 3); 17869 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17870 tmp = fieldFromInstruction(insn, 16, 4); 17871 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17872 return S; 17873 case 122: 17874 tmp = fieldFromInstruction(insn, 16, 4); 17875 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17876 tmp = fieldFromInstruction(insn, 13, 3); 17877 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17878 tmp = fieldFromInstruction(insn, 16, 4); 17879 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17880 return S; 17881 case 123: 17882 if (!Check(S, DecodeMVE_MEM_2_pre<0>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17883 return S; 17884 case 124: 17885 if (!Check(S, DecodeMVE_MEM_3_pre<2>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17886 return S; 17887 case 125: 17888 tmp = fieldFromInstruction(insn, 16, 4); 17889 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17890 tmp = fieldFromInstruction(insn, 13, 3); 17891 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17892 tmp = fieldFromInstruction(insn, 16, 4); 17893 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17894 tmp = 0x0; 17895 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17896 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17897 if (!Check(S, DecodeT2Imm7<1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17898 return S; 17899 case 126: 17900 if (!Check(S, DecodeMVE_MEM_2_pre<1>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17901 return S; 17902 case 127: 17903 tmp = fieldFromInstruction(insn, 16, 4); 17904 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17905 tmp = fieldFromInstruction(insn, 13, 3); 17906 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17907 tmp = fieldFromInstruction(insn, 16, 4); 17908 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17909 tmp = 0x0; 17910 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17911 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17912 if (!Check(S, DecodeT2Imm7<0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17913 return S; 17914 case 128: 17915 tmp = fieldFromInstruction(insn, 13, 3); 17916 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17917 tmp = fieldFromInstruction(insn, 16, 4); 17918 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17919 tmp = fieldFromInstruction(insn, 13, 3); 17920 if (!Check(S, DecodeQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17921 tmp = fieldFromInstruction(insn, 16, 4); 17922 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17923 return S; 17924 case 129: 17925 tmp = fieldFromInstruction(insn, 13, 3); 17926 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17927 tmp = fieldFromInstruction(insn, 16, 4); 17928 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17929 tmp = fieldFromInstruction(insn, 13, 3); 17930 if (!Check(S, DecodeQQQQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17931 tmp = fieldFromInstruction(insn, 16, 4); 17932 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17933 return S; 17934 case 130: 17935 tmp = fieldFromInstruction(insn, 16, 4); 17936 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17937 tmp = fieldFromInstruction(insn, 13, 3); 17938 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17939 tmp = fieldFromInstruction(insn, 16, 4); 17940 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17941 tmp = 0x0; 17942 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17943 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17944 if (!Check(S, DecodeT2Imm7<1>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17945 return S; 17946 case 131: 17947 tmp = fieldFromInstruction(insn, 13, 3); 17948 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17949 tmp = 0x0; 17950 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17951 tmp |= fieldFromInstruction(insn, 16, 4) << 8; 17952 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17953 if (!Check(S, DecodeT2AddrModeImm7<2, 0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17954 return S; 17955 case 132: 17956 tmp = fieldFromInstruction(insn, 13, 3); 17957 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17958 tmp = 0x0; 17959 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17960 tmp |= fieldFromInstruction(insn, 17, 3) << 8; 17961 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17962 if (!Check(S, DecodeMveAddrModeQ<3>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17963 return S; 17964 case 133: 17965 tmp = fieldFromInstruction(insn, 16, 4); 17966 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17967 tmp = fieldFromInstruction(insn, 13, 3); 17968 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17969 tmp = fieldFromInstruction(insn, 16, 4); 17970 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17971 tmp = 0x0; 17972 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17973 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17974 if (!Check(S, DecodeT2Imm7<2>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17975 return S; 17976 case 134: 17977 if (!Check(S, DecodeMVE_MEM_2_pre<2>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17978 return S; 17979 case 135: 17980 if (!Check(S, DecodeMVE_MEM_3_pre<3>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 17981 return S; 17982 case 136: 17983 tmp = fieldFromInstruction(insn, 16, 4); 17984 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17985 tmp = fieldFromInstruction(insn, 13, 3); 17986 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17987 tmp = fieldFromInstruction(insn, 16, 4); 17988 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17989 tmp = 0x0; 17990 tmp |= fieldFromInstruction(insn, 0, 7) << 0; 17991 tmp |= fieldFromInstruction(insn, 23, 1) << 7; 17992 if (!Check(S, DecodeT2Imm7<2>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17993 return S; 17994 case 137: 17995 tmp = 0x0; 17996 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 17997 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 17998 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 17999 tmp = 0x0; 18000 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18001 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18002 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18003 tmp = fieldFromInstruction(insn, 12, 4); 18004 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18005 tmp = 0x0; 18006 tmp |= fieldFromInstruction(insn, 16, 1) << 1; 18007 tmp |= fieldFromInstruction(insn, 21, 1) << 0; 18008 MI.addOperand(MCOperand::createImm(tmp)); 18009 return S; 18010 case 138: 18011 tmp = 0x0; 18012 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18013 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18014 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18015 tmp = 0x0; 18016 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18017 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18018 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18019 tmp = fieldFromInstruction(insn, 12, 4); 18020 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18021 tmp = 0x0; 18022 tmp |= fieldFromInstruction(insn, 6, 1) << 0; 18023 tmp |= fieldFromInstruction(insn, 16, 1) << 2; 18024 tmp |= fieldFromInstruction(insn, 21, 1) << 1; 18025 MI.addOperand(MCOperand::createImm(tmp)); 18026 return S; 18027 case 139: 18028 tmp = 0x0; 18029 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18030 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18031 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18032 tmp = 0x0; 18033 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18034 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18035 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18036 tmp = fieldFromInstruction(insn, 12, 4); 18037 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18038 tmp = 0x0; 18039 tmp |= fieldFromInstruction(insn, 5, 2) << 0; 18040 tmp |= fieldFromInstruction(insn, 16, 1) << 3; 18041 tmp |= fieldFromInstruction(insn, 21, 1) << 2; 18042 MI.addOperand(MCOperand::createImm(tmp)); 18043 return S; 18044 case 140: 18045 tmp = fieldFromInstruction(insn, 12, 4); 18046 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18047 tmp = 0x0; 18048 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18049 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18050 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18051 tmp = 0x0; 18052 tmp |= fieldFromInstruction(insn, 16, 1) << 1; 18053 tmp |= fieldFromInstruction(insn, 21, 1) << 0; 18054 MI.addOperand(MCOperand::createImm(tmp)); 18055 return S; 18056 case 141: 18057 tmp = fieldFromInstruction(insn, 12, 4); 18058 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18059 tmp = 0x0; 18060 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18061 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18062 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18063 tmp = 0x0; 18064 tmp |= fieldFromInstruction(insn, 6, 1) << 0; 18065 tmp |= fieldFromInstruction(insn, 16, 1) << 2; 18066 tmp |= fieldFromInstruction(insn, 21, 1) << 1; 18067 MI.addOperand(MCOperand::createImm(tmp)); 18068 return S; 18069 case 142: 18070 tmp = fieldFromInstruction(insn, 12, 4); 18071 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18072 tmp = 0x0; 18073 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18074 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18075 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18076 tmp = 0x0; 18077 tmp |= fieldFromInstruction(insn, 5, 2) << 0; 18078 tmp |= fieldFromInstruction(insn, 16, 1) << 3; 18079 tmp |= fieldFromInstruction(insn, 21, 1) << 2; 18080 MI.addOperand(MCOperand::createImm(tmp)); 18081 return S; 18082 case 143: 18083 tmp = 0x0; 18084 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18085 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18086 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18087 tmp = 0x0; 18088 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18089 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18090 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18091 tmp = 0x0; 18092 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18093 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18094 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18095 tmp = 0x0; 18096 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18097 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18098 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18099 return S; 18100 case 144: 18101 tmp = 0x0; 18102 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18103 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18104 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18105 tmp = 0x0; 18106 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18107 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18108 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18109 tmp = 0x0; 18110 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18111 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18112 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18113 tmp = 0x0; 18114 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18115 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18116 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18117 return S; 18118 case 145: 18119 tmp = 0x0; 18120 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18121 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18122 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18123 tmp = 0x0; 18124 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18125 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18126 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18127 tmp = 0x0; 18128 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18129 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18130 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18131 tmp = fieldFromInstruction(insn, 0, 4); 18132 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18133 return S; 18134 case 146: 18135 tmp = 0x0; 18136 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18137 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18138 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18139 tmp = 0x0; 18140 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18141 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18142 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18143 tmp = fieldFromInstruction(insn, 0, 4); 18144 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18145 tmp = 0x0; 18146 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18147 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18148 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18149 return S; 18150 case 147: 18151 tmp = 0x0; 18152 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18153 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18154 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18155 tmp = 0x0; 18156 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18157 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18158 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18159 tmp = 0x0; 18160 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18161 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18162 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18163 tmp = 0x0; 18164 tmp |= fieldFromInstruction(insn, 0, 1) << 0; 18165 tmp |= fieldFromInstruction(insn, 12, 1) << 1; 18166 MI.addOperand(MCOperand::createImm(tmp)); 18167 tmp = 0x0; 18168 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18169 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18170 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18171 return S; 18172 case 148: 18173 tmp = 0x0; 18174 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18175 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18176 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18177 tmp = 0x0; 18178 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18179 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18180 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18181 tmp = 0x0; 18182 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18183 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18184 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18185 return S; 18186 case 149: 18187 tmp = 0x0; 18188 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18189 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18190 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18191 tmp = 0x0; 18192 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18193 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18194 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18195 tmp = 0x0; 18196 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18197 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18198 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18199 return S; 18200 case 150: 18201 tmp = 0x0; 18202 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18203 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18204 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18205 tmp = 0x0; 18206 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18207 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18208 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18209 tmp = fieldFromInstruction(insn, 0, 4); 18210 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18211 return S; 18212 case 151: 18213 tmp = 0x0; 18214 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18215 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18216 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18217 tmp = 0x0; 18218 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18219 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18220 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18221 tmp = 0x0; 18222 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18223 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18224 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18225 tmp = fieldFromInstruction(insn, 12, 1); 18226 MI.addOperand(MCOperand::createImm(tmp)); 18227 tmp = 0x0; 18228 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18229 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18230 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18231 return S; 18232 case 152: 18233 if (!Check(S, DecodeMVEVCMP<false,DecodeRestrictedIPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18234 return S; 18235 case 153: 18236 tmp = 0x0; 18237 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18238 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18239 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18240 tmp = fieldFromInstruction(insn, 17, 3); 18241 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18242 tmp = 0x0; 18243 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18244 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18245 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18246 tmp = fieldFromInstruction(insn, 7, 1); 18247 if (!Check(S, DecodeRestrictedIPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18248 return S; 18249 case 154: 18250 if (!Check(S, DecodeMVEVCMP<false,DecodeRestrictedUPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18251 return S; 18252 case 155: 18253 tmp = 0x0; 18254 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18255 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18256 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18257 tmp = fieldFromInstruction(insn, 17, 3); 18258 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18259 tmp = 0x0; 18260 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18261 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18262 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18263 tmp = fieldFromInstruction(insn, 7, 1); 18264 if (!Check(S, DecodeRestrictedUPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18265 return S; 18266 case 156: 18267 if (!Check(S, DecodeMVEVCMP<false,DecodeRestrictedSPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18268 return S; 18269 case 157: 18270 tmp = 0x0; 18271 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18272 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18273 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18274 tmp = fieldFromInstruction(insn, 17, 3); 18275 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18276 tmp = 0x0; 18277 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18278 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18279 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18280 tmp = 0x0; 18281 tmp |= fieldFromInstruction(insn, 0, 1) << 1; 18282 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 18283 if (!Check(S, DecodeRestrictedSPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18284 return S; 18285 case 158: 18286 if (!Check(S, DecodeMVEVCMP<true,DecodeRestrictedIPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18287 return S; 18288 case 159: 18289 tmp = 0x0; 18290 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18291 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18292 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18293 tmp = fieldFromInstruction(insn, 17, 3); 18294 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18295 tmp = fieldFromInstruction(insn, 0, 4); 18296 if (!Check(S, DecodeGPRwithZRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18297 tmp = fieldFromInstruction(insn, 7, 1); 18298 if (!Check(S, DecodeRestrictedIPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18299 return S; 18300 case 160: 18301 tmp = 0x0; 18302 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18303 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18304 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18305 tmp = fieldFromInstruction(insn, 17, 3) << 1; 18306 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18307 tmp = fieldFromInstruction(insn, 17, 3) << 1; 18308 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18309 tmp = 0x0; 18310 tmp |= fieldFromInstruction(insn, 0, 1) << 0; 18311 tmp |= fieldFromInstruction(insn, 7, 1) << 1; 18312 if (!Check(S, DecodePowerTwoOperand<0,3>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18313 tmp = 0x0; 18314 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18315 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18316 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18317 return S; 18318 case 161: 18319 tmp = 0x0; 18320 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18321 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18322 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18323 tmp = fieldFromInstruction(insn, 17, 3) << 1; 18324 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18325 tmp = fieldFromInstruction(insn, 17, 3) << 1; 18326 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18327 tmp = fieldFromInstruction(insn, 1, 3) << 1; 18328 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18329 tmp = 0x0; 18330 tmp |= fieldFromInstruction(insn, 0, 1) << 0; 18331 tmp |= fieldFromInstruction(insn, 7, 1) << 1; 18332 if (!Check(S, DecodePowerTwoOperand<0,3>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18333 tmp = 0x0; 18334 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18335 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18336 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18337 return S; 18338 case 162: 18339 if (!Check(S, DecodeMVEVCMP<true,DecodeRestrictedUPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18340 return S; 18341 case 163: 18342 tmp = 0x0; 18343 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18344 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18345 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18346 tmp = fieldFromInstruction(insn, 17, 3); 18347 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18348 tmp = fieldFromInstruction(insn, 0, 4); 18349 if (!Check(S, DecodeGPRwithZRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18350 tmp = fieldFromInstruction(insn, 7, 1); 18351 if (!Check(S, DecodeRestrictedUPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18352 return S; 18353 case 164: 18354 if (!Check(S, DecodeMVEVCMP<true,DecodeRestrictedSPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18355 return S; 18356 case 165: 18357 tmp = 0x0; 18358 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18359 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18360 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18361 tmp = fieldFromInstruction(insn, 17, 3); 18362 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18363 tmp = fieldFromInstruction(insn, 0, 4); 18364 if (!Check(S, DecodeGPRwithZRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18365 tmp = 0x0; 18366 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 18367 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 18368 if (!Check(S, DecodeRestrictedSPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18369 return S; 18370 case 166: 18371 if (!Check(S, DecodeMVEVADCInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18372 return S; 18373 case 167: 18374 if (!Check(S, DecodeMVEVCMP<false,DecodeRestrictedFPPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18375 return S; 18376 case 168: 18377 tmp = 0x0; 18378 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18379 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18380 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18381 tmp = fieldFromInstruction(insn, 17, 3); 18382 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18383 tmp = 0x0; 18384 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18385 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18386 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18387 tmp = 0x0; 18388 tmp |= fieldFromInstruction(insn, 0, 1) << 1; 18389 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 18390 tmp |= fieldFromInstruction(insn, 12, 1) << 2; 18391 if (!Check(S, DecodeRestrictedFPPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18392 return S; 18393 case 169: 18394 tmp = 0x0; 18395 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18396 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18397 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18398 tmp = 0x0; 18399 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18400 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18401 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18402 tmp = 0x0; 18403 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18404 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18405 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18406 return S; 18407 case 170: 18408 if (!Check(S, DecodeMVEVCMP<true,DecodeRestrictedFPPredicateOperand>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18409 return S; 18410 case 171: 18411 tmp = 0x0; 18412 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18413 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18414 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18415 tmp = fieldFromInstruction(insn, 17, 3); 18416 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18417 tmp = fieldFromInstruction(insn, 0, 4); 18418 if (!Check(S, DecodeGPRwithZRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18419 tmp = 0x0; 18420 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 18421 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 18422 tmp |= fieldFromInstruction(insn, 12, 1) << 2; 18423 if (!Check(S, DecodeRestrictedFPPredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18424 return S; 18425 case 172: 18426 if (!Check(S, DecodeMVEVPNOT(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18427 return S; 18428 case 173: 18429 tmp = 0x0; 18430 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18431 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18432 if (!Check(S, DecodeVPTMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18433 return S; 18434 case 174: 18435 tmp = 0x0; 18436 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18437 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18438 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18439 tmp = fieldFromInstruction(insn, 12, 4); 18440 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18441 tmp = 0x0; 18442 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18443 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18444 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18445 return S; 18446 case 175: 18447 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18448 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18449 tmp = fieldFromInstruction(insn, 17, 3); 18450 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18451 tmp = fieldFromInstruction(insn, 1, 3); 18452 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18453 return S; 18454 case 176: 18455 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18456 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18457 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18458 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18459 tmp = fieldFromInstruction(insn, 17, 3); 18460 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18461 tmp = fieldFromInstruction(insn, 1, 3); 18462 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18463 return S; 18464 case 177: 18465 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18466 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18467 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18468 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18469 tmp = fieldFromInstruction(insn, 17, 3); 18470 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18471 tmp = fieldFromInstruction(insn, 1, 3); 18472 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18473 return S; 18474 case 178: 18475 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18476 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18477 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18478 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18479 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18480 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18481 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18482 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18483 tmp = fieldFromInstruction(insn, 17, 3); 18484 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18485 tmp = fieldFromInstruction(insn, 1, 3); 18486 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18487 return S; 18488 case 179: 18489 tmp = fieldFromInstruction(insn, 12, 4); 18490 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18491 tmp = fieldFromInstruction(insn, 12, 4); 18492 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18493 tmp = fieldFromInstruction(insn, 1, 3); 18494 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18495 return S; 18496 case 180: 18497 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18498 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18499 tmp = fieldFromInstruction(insn, 1, 3); 18500 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18501 return S; 18502 case 181: 18503 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18504 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18505 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18506 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18507 tmp = fieldFromInstruction(insn, 1, 3); 18508 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18509 return S; 18510 case 182: 18511 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18512 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18513 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18514 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18515 tmp = fieldFromInstruction(insn, 1, 3); 18516 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18517 return S; 18518 case 183: 18519 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18520 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18521 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18522 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18523 tmp = fieldFromInstruction(insn, 13, 3) << 1; 18524 if (!Check(S, DecodetGPREvenRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18525 tmp = fieldFromInstruction(insn, 20, 3) << 1; 18526 if (!Check(S, DecodetGPROddRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18527 tmp = fieldFromInstruction(insn, 1, 3); 18528 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18529 return S; 18530 case 184: 18531 tmp = fieldFromInstruction(insn, 12, 4); 18532 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18533 tmp = fieldFromInstruction(insn, 12, 4); 18534 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18535 tmp = 0x0; 18536 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18537 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18538 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18539 tmp = 0x0; 18540 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18541 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18542 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18543 return S; 18544 case 185: 18545 tmp = 0x0; 18546 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18547 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18548 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18549 tmp = 0x0; 18550 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18551 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18552 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18553 tmp = 0x0; 18554 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18555 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18556 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18557 tmp = fieldFromInstruction(insn, 16, 3); 18558 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18559 return S; 18560 case 186: 18561 tmp = 0x0; 18562 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18563 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18564 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18565 tmp = 0x0; 18566 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18567 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18568 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18569 tmp = 0x0; 18570 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18571 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18572 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18573 tmp = fieldFromInstruction(insn, 16, 4); 18574 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18575 return S; 18576 case 187: 18577 tmp = 0x0; 18578 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18579 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18580 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18581 tmp = 0x0; 18582 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18583 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18584 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18585 tmp = fieldFromInstruction(insn, 16, 3); 18586 MI.addOperand(MCOperand::createImm(tmp)); 18587 tmp = 0x0; 18588 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18589 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18590 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18591 return S; 18592 case 188: 18593 tmp = 0x0; 18594 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18595 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18596 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18597 tmp = 0x0; 18598 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18599 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18600 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18601 tmp = fieldFromInstruction(insn, 16, 4); 18602 MI.addOperand(MCOperand::createImm(tmp)); 18603 tmp = 0x0; 18604 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18605 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18606 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18607 return S; 18608 case 189: 18609 tmp = fieldFromInstruction(insn, 0, 4); 18610 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18611 tmp = 0x0; 18612 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18613 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18614 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18615 tmp = 0x0; 18616 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18617 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18618 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18619 tmp = fieldFromInstruction(insn, 0, 4); 18620 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18621 tmp = fieldFromInstruction(insn, 16, 5); 18622 if (!Check(S, DecodeLongShiftOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18623 return S; 18624 case 190: 18625 tmp = 0x0; 18626 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18627 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18628 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18629 tmp = 0x0; 18630 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18631 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18632 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18633 tmp = 0x0; 18634 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 18635 tmp |= fieldFromInstruction(insn, 17, 3) << 0; 18636 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18637 tmp = 0x0; 18638 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18639 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18640 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18641 return S; 18642 case 191: 18643 tmp = 0x0; 18644 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18645 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18646 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18647 tmp = 0x0; 18648 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18649 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18650 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18651 tmp = 0x0; 18652 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18653 tmp |= fieldFromInstruction(insn, 16, 3) << 4; 18654 tmp |= fieldFromInstruction(insn, 28, 1) << 7; 18655 if (!Check(S, DecodeExpandedImmOperand<0>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18656 return S; 18657 case 192: 18658 tmp = 0x0; 18659 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18660 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18661 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18662 tmp = 0x0; 18663 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18664 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18665 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18666 tmp = 0x0; 18667 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18668 tmp |= fieldFromInstruction(insn, 16, 3) << 4; 18669 tmp |= fieldFromInstruction(insn, 28, 1) << 7; 18670 if (!Check(S, DecodeExpandedImmOperand<8>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18671 return S; 18672 case 193: 18673 tmp = 0x0; 18674 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18675 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18676 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18677 tmp = 0x0; 18678 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18679 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18680 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18681 tmp = 0x0; 18682 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18683 tmp |= fieldFromInstruction(insn, 16, 3) << 4; 18684 tmp |= fieldFromInstruction(insn, 28, 1) << 7; 18685 if (!Check(S, DecodeExpandedImmOperand<16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18686 return S; 18687 case 194: 18688 tmp = 0x0; 18689 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18690 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18691 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18692 tmp = 0x0; 18693 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18694 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18695 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18696 tmp = 0x0; 18697 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18698 tmp |= fieldFromInstruction(insn, 16, 3) << 4; 18699 tmp |= fieldFromInstruction(insn, 28, 1) << 7; 18700 if (!Check(S, DecodeExpandedImmOperand<24>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18701 return S; 18702 case 195: 18703 if (!Check(S, DecodeMVEModImmInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18704 return S; 18705 case 196: 18706 tmp = 0x0; 18707 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18708 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18709 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18710 tmp = 0x0; 18711 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18712 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18713 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18714 tmp = fieldFromInstruction(insn, 16, 3); 18715 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18716 tmp = 0x0; 18717 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18718 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18719 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18720 return S; 18721 case 197: 18722 tmp = 0x0; 18723 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18724 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18725 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18726 tmp = 0x0; 18727 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18728 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18729 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18730 tmp = 0x0; 18731 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18732 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18733 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18734 tmp = fieldFromInstruction(insn, 16, 3); 18735 MI.addOperand(MCOperand::createImm(tmp)); 18736 return S; 18737 case 198: 18738 tmp = 0x0; 18739 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18740 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18741 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18742 tmp = 0x0; 18743 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18744 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18745 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18746 tmp = fieldFromInstruction(insn, 16, 4); 18747 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18748 tmp = 0x0; 18749 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18750 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18751 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18752 return S; 18753 case 199: 18754 tmp = 0x0; 18755 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18756 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18757 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18758 tmp = 0x0; 18759 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18760 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18761 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18762 tmp = 0x0; 18763 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18764 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18765 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18766 tmp = fieldFromInstruction(insn, 16, 4); 18767 MI.addOperand(MCOperand::createImm(tmp)); 18768 return S; 18769 case 200: 18770 tmp = 0x0; 18771 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18772 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18773 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18774 tmp = 0x0; 18775 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18776 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18777 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18778 tmp = fieldFromInstruction(insn, 16, 5); 18779 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18780 tmp = 0x0; 18781 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18782 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18783 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18784 return S; 18785 case 201: 18786 tmp = 0x0; 18787 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18788 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18789 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18790 tmp = 0x0; 18791 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18792 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18793 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18794 tmp = 0x0; 18795 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18796 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18797 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18798 tmp = fieldFromInstruction(insn, 16, 5); 18799 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18800 return S; 18801 case 202: 18802 tmp = 0x0; 18803 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18804 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18805 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18806 tmp = 0x0; 18807 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18808 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18809 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18810 tmp = fieldFromInstruction(insn, 16, 5); 18811 MI.addOperand(MCOperand::createImm(tmp)); 18812 tmp = 0x0; 18813 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18814 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18815 if (!Check(S, DecodeVpredROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18816 return S; 18817 case 203: 18818 tmp = 0x0; 18819 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18820 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18821 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18822 tmp = 0x0; 18823 tmp |= fieldFromInstruction(insn, 13, 3) << 0; 18824 tmp |= fieldFromInstruction(insn, 22, 1) << 3; 18825 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18826 tmp = 0x0; 18827 tmp |= fieldFromInstruction(insn, 1, 3) << 0; 18828 tmp |= fieldFromInstruction(insn, 5, 1) << 3; 18829 if (!Check(S, DecodeMQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18830 tmp = fieldFromInstruction(insn, 16, 5); 18831 MI.addOperand(MCOperand::createImm(tmp)); 18832 return S; 18833 case 204: 18834 if (!Check(S, DecodeMVEVCVTt1fp(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 18835 return S; 18836 case 205: 18837 tmp = 0x0; 18838 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18839 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18840 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18841 tmp = 0x0; 18842 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18843 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18844 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18845 tmp = 0x0; 18846 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18847 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18848 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18849 return S; 18850 case 206: 18851 tmp = 0x0; 18852 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18853 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18854 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18855 tmp = 0x0; 18856 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18857 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18858 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18859 tmp = 0x0; 18860 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18861 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18862 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18863 return S; 18864 case 207: 18865 tmp = 0x0; 18866 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18867 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18868 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18869 tmp = 0x0; 18870 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18871 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18872 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18873 tmp = 0x0; 18874 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18875 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18876 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18877 return S; 18878 case 208: 18879 tmp = 0x0; 18880 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18881 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18882 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18883 tmp = 0x0; 18884 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18885 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18886 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18887 tmp = 0x0; 18888 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18889 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18890 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18891 return S; 18892 case 209: 18893 tmp = 0x0; 18894 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18895 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18896 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18897 tmp = 0x0; 18898 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18899 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18900 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18901 tmp = 0x0; 18902 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18903 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18904 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18905 return S; 18906 case 210: 18907 tmp = 0x0; 18908 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18909 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18910 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18911 tmp = 0x0; 18912 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18913 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18914 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18915 tmp = 0x0; 18916 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18917 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18918 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18919 return S; 18920 case 211: 18921 tmp = 0x0; 18922 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18923 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18924 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18925 tmp = 0x0; 18926 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18927 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18928 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18929 tmp = 0x0; 18930 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18931 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18932 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18933 return S; 18934 case 212: 18935 tmp = 0x0; 18936 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18937 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18938 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18939 tmp = 0x0; 18940 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18941 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18942 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18943 tmp = 0x0; 18944 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18945 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18946 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18947 tmp = 0x0; 18948 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18949 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18950 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18951 return S; 18952 case 213: 18953 tmp = 0x0; 18954 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18955 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18956 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18957 tmp = 0x0; 18958 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18959 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18960 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18961 tmp = 0x0; 18962 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18963 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18964 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18965 tmp = 0x0; 18966 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18967 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18968 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18969 return S; 18970 case 214: 18971 tmp = 0x0; 18972 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18973 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18974 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18975 tmp = 0x0; 18976 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18977 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18978 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18979 tmp = 0x0; 18980 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18981 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 18982 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18983 tmp = 0x0; 18984 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 18985 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 18986 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18987 return S; 18988 case 215: 18989 tmp = 0x0; 18990 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18991 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18992 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18993 tmp = 0x0; 18994 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 18995 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 18996 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 18997 tmp = 0x0; 18998 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 18999 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19000 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19001 tmp = fieldFromInstruction(insn, 0, 3); 19002 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19003 tmp = 0x0; 19004 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19005 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19006 MI.addOperand(MCOperand::createImm(tmp)); 19007 return S; 19008 case 216: 19009 tmp = 0x0; 19010 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19011 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19012 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19013 tmp = 0x0; 19014 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19015 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19016 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19017 tmp = 0x0; 19018 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19019 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19020 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19021 tmp = fieldFromInstruction(insn, 0, 3); 19022 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19023 tmp = 0x0; 19024 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19025 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19026 MI.addOperand(MCOperand::createImm(tmp)); 19027 return S; 19028 case 217: 19029 tmp = 0x0; 19030 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19031 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19032 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19033 tmp = 0x0; 19034 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19035 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19036 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19037 tmp = 0x0; 19038 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19039 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19040 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19041 tmp = fieldFromInstruction(insn, 0, 3); 19042 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19043 tmp = 0x0; 19044 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19045 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19046 MI.addOperand(MCOperand::createImm(tmp)); 19047 return S; 19048 case 218: 19049 tmp = 0x0; 19050 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19051 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19052 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19053 tmp = 0x0; 19054 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19055 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19056 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19057 tmp = fieldFromInstruction(insn, 0, 3); 19058 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19059 tmp = 0x0; 19060 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19061 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19062 MI.addOperand(MCOperand::createImm(tmp)); 19063 return S; 19064 case 219: 19065 tmp = 0x0; 19066 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19067 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19068 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19069 tmp = 0x0; 19070 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19071 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19072 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19073 tmp = fieldFromInstruction(insn, 0, 3); 19074 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19075 tmp = 0x0; 19076 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19077 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19078 MI.addOperand(MCOperand::createImm(tmp)); 19079 return S; 19080 case 220: 19081 tmp = 0x0; 19082 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19083 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19084 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19085 tmp = 0x0; 19086 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19087 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19088 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19089 tmp = fieldFromInstruction(insn, 0, 3); 19090 if (!Check(S, DecodeDPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19091 tmp = 0x0; 19092 tmp |= fieldFromInstruction(insn, 3, 1) << 0; 19093 tmp |= fieldFromInstruction(insn, 5, 1) << 1; 19094 MI.addOperand(MCOperand::createImm(tmp)); 19095 return S; 19096 case 221: 19097 tmp = 0x0; 19098 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19099 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19100 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19101 tmp = 0x0; 19102 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19103 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19104 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19105 tmp = 0x0; 19106 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19107 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19108 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19109 tmp = fieldFromInstruction(insn, 0, 4); 19110 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19111 tmp = fieldFromInstruction(insn, 5, 1); 19112 MI.addOperand(MCOperand::createImm(tmp)); 19113 return S; 19114 case 222: 19115 tmp = 0x0; 19116 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19117 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19118 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19119 tmp = 0x0; 19120 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19121 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19122 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19123 tmp = 0x0; 19124 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19125 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19126 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19127 tmp = fieldFromInstruction(insn, 0, 4); 19128 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19129 tmp = fieldFromInstruction(insn, 5, 1); 19130 MI.addOperand(MCOperand::createImm(tmp)); 19131 return S; 19132 case 223: 19133 tmp = 0x0; 19134 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19135 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19136 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19137 tmp = 0x0; 19138 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19139 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19140 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19141 tmp = 0x0; 19142 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19143 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19144 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19145 tmp = fieldFromInstruction(insn, 0, 4); 19146 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19147 tmp = fieldFromInstruction(insn, 5, 1); 19148 MI.addOperand(MCOperand::createImm(tmp)); 19149 return S; 19150 case 224: 19151 tmp = 0x0; 19152 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19153 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19154 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19155 tmp = 0x0; 19156 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19157 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19158 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19159 tmp = fieldFromInstruction(insn, 0, 4); 19160 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19161 tmp = fieldFromInstruction(insn, 5, 1); 19162 MI.addOperand(MCOperand::createImm(tmp)); 19163 return S; 19164 case 225: 19165 tmp = 0x0; 19166 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19167 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19168 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19169 tmp = 0x0; 19170 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19171 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19172 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19173 tmp = fieldFromInstruction(insn, 0, 4); 19174 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19175 tmp = fieldFromInstruction(insn, 5, 1); 19176 MI.addOperand(MCOperand::createImm(tmp)); 19177 return S; 19178 case 226: 19179 tmp = 0x0; 19180 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19181 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19182 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19183 tmp = 0x0; 19184 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19185 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19186 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19187 tmp = fieldFromInstruction(insn, 0, 4); 19188 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19189 tmp = fieldFromInstruction(insn, 5, 1); 19190 MI.addOperand(MCOperand::createImm(tmp)); 19191 return S; 19192 case 227: 19193 tmp = 0x0; 19194 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19195 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19196 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19197 tmp = 0x0; 19198 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19199 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19200 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19201 tmp = 0x0; 19202 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19203 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19204 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19205 tmp = fieldFromInstruction(insn, 10, 1); 19206 MI.addOperand(MCOperand::createImm(tmp)); 19207 return S; 19208 case 228: 19209 tmp = 0x0; 19210 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19211 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19212 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19213 tmp = 0x0; 19214 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19215 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19216 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19217 tmp = 0x0; 19218 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19219 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19220 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19221 tmp = fieldFromInstruction(insn, 9, 2); 19222 MI.addOperand(MCOperand::createImm(tmp)); 19223 return S; 19224 case 229: 19225 tmp = 0x0; 19226 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19227 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19228 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19229 tmp = 0x0; 19230 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19231 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19232 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19233 tmp = 0x0; 19234 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19235 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19236 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19237 tmp = fieldFromInstruction(insn, 8, 3); 19238 MI.addOperand(MCOperand::createImm(tmp)); 19239 return S; 19240 case 230: 19241 tmp = 0x0; 19242 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19243 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19244 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19245 tmp = 0x0; 19246 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19247 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19248 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19249 tmp = 0x0; 19250 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19251 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19252 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19253 tmp = fieldFromInstruction(insn, 11, 1); 19254 MI.addOperand(MCOperand::createImm(tmp)); 19255 return S; 19256 case 231: 19257 tmp = 0x0; 19258 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19259 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19260 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19261 tmp = 0x0; 19262 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19263 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19264 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19265 tmp = 0x0; 19266 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19267 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19268 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19269 tmp = fieldFromInstruction(insn, 10, 2); 19270 MI.addOperand(MCOperand::createImm(tmp)); 19271 return S; 19272 case 232: 19273 tmp = 0x0; 19274 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19275 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19276 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19277 tmp = 0x0; 19278 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19279 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19280 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19281 tmp = 0x0; 19282 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19283 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19284 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19285 tmp = fieldFromInstruction(insn, 9, 3); 19286 MI.addOperand(MCOperand::createImm(tmp)); 19287 return S; 19288 case 233: 19289 tmp = 0x0; 19290 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19291 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19292 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19293 tmp = 0x0; 19294 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 19295 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 19296 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19297 tmp = 0x0; 19298 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19299 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19300 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19301 tmp = fieldFromInstruction(insn, 8, 4); 19302 MI.addOperand(MCOperand::createImm(tmp)); 19303 return S; 19304 case 234: 19305 tmp = 0x0; 19306 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19307 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19308 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19309 tmp = 0x0; 19310 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19311 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19312 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19313 return S; 19314 case 235: 19315 tmp = 0x0; 19316 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19317 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19318 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19319 tmp = 0x0; 19320 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19321 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19322 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19323 return S; 19324 case 236: 19325 tmp = 0x0; 19326 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19327 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19328 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19329 tmp = 0x0; 19330 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19331 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19332 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19333 tmp = 0x0; 19334 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19335 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19336 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19337 tmp = 0x0; 19338 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19339 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19340 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19341 return S; 19342 case 237: 19343 tmp = 0x0; 19344 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19345 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19346 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19347 tmp = 0x0; 19348 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19349 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19350 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19351 tmp = 0x0; 19352 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19353 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19354 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19355 tmp = 0x0; 19356 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19357 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19358 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19359 return S; 19360 case 238: 19361 tmp = 0x0; 19362 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19363 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19364 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19365 tmp = 0x0; 19366 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19367 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19368 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19369 return S; 19370 case 239: 19371 if (!Check(S, DecodeVSHLMaxInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 19372 return S; 19373 case 240: 19374 tmp = 0x0; 19375 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19376 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19377 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19378 tmp = 0x0; 19379 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19380 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19381 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19382 tmp = 0x0; 19383 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19384 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19385 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19386 return S; 19387 case 241: 19388 tmp = 0x0; 19389 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19390 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19391 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19392 tmp = 0x0; 19393 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19394 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19395 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19396 tmp = 0x0; 19397 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19398 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19399 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19400 return S; 19401 case 242: 19402 tmp = 0x0; 19403 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19404 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19405 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19406 tmp = 0x0; 19407 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19408 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19409 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19410 return S; 19411 case 243: 19412 if (!Check(S, DecodeTBLInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 19413 return S; 19414 case 244: 19415 tmp = 0x0; 19416 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19417 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19418 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19419 tmp = 0x0; 19420 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19421 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19422 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19423 tmp = fieldFromInstruction(insn, 19, 1); 19424 MI.addOperand(MCOperand::createImm(tmp)); 19425 return S; 19426 case 245: 19427 tmp = 0x0; 19428 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19429 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19430 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19431 tmp = 0x0; 19432 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19433 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19434 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19435 tmp = fieldFromInstruction(insn, 18, 2); 19436 MI.addOperand(MCOperand::createImm(tmp)); 19437 return S; 19438 case 246: 19439 tmp = 0x0; 19440 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19441 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19442 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19443 tmp = 0x0; 19444 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19445 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19446 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19447 tmp = fieldFromInstruction(insn, 17, 3); 19448 MI.addOperand(MCOperand::createImm(tmp)); 19449 return S; 19450 case 247: 19451 tmp = 0x0; 19452 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19453 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19454 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19455 tmp = 0x0; 19456 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19457 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19458 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19459 tmp = fieldFromInstruction(insn, 19, 1); 19460 MI.addOperand(MCOperand::createImm(tmp)); 19461 return S; 19462 case 248: 19463 tmp = 0x0; 19464 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19465 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19466 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19467 tmp = 0x0; 19468 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19469 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19470 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19471 tmp = fieldFromInstruction(insn, 18, 2); 19472 MI.addOperand(MCOperand::createImm(tmp)); 19473 return S; 19474 case 249: 19475 tmp = 0x0; 19476 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19477 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19478 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19479 tmp = 0x0; 19480 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19481 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19482 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19483 tmp = fieldFromInstruction(insn, 17, 3); 19484 MI.addOperand(MCOperand::createImm(tmp)); 19485 return S; 19486 case 250: 19487 tmp = 0x0; 19488 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19489 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19490 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19491 tmp = 0x0; 19492 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19493 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19494 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19495 tmp = fieldFromInstruction(insn, 16, 3); 19496 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19497 return S; 19498 case 251: 19499 tmp = 0x0; 19500 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19501 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19502 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19503 tmp = 0x0; 19504 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19505 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19506 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19507 tmp = fieldFromInstruction(insn, 16, 4); 19508 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19509 return S; 19510 case 252: 19511 tmp = 0x0; 19512 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19513 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19514 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19515 tmp = 0x0; 19516 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19517 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19518 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19519 tmp = fieldFromInstruction(insn, 16, 5); 19520 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19521 return S; 19522 case 253: 19523 tmp = 0x0; 19524 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19525 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19526 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19527 tmp = 0x0; 19528 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19529 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19530 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19531 tmp = 0x0; 19532 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19533 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19534 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19535 tmp = fieldFromInstruction(insn, 16, 3); 19536 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19537 return S; 19538 case 254: 19539 tmp = 0x0; 19540 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19541 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19542 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19543 tmp = 0x0; 19544 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19545 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19546 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19547 tmp = 0x0; 19548 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19549 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19550 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19551 tmp = fieldFromInstruction(insn, 16, 4); 19552 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19553 return S; 19554 case 255: 19555 tmp = 0x0; 19556 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19557 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19558 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19559 tmp = 0x0; 19560 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19561 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19562 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19563 tmp = 0x0; 19564 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19565 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19566 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19567 tmp = fieldFromInstruction(insn, 16, 5); 19568 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19569 return S; 19570 case 256: 19571 tmp = 0x0; 19572 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19573 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19574 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19575 tmp = 0x0; 19576 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19577 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19578 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19579 tmp = fieldFromInstruction(insn, 16, 3); 19580 MI.addOperand(MCOperand::createImm(tmp)); 19581 return S; 19582 case 257: 19583 tmp = 0x0; 19584 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19585 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19586 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19587 tmp = 0x0; 19588 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19589 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19590 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19591 tmp = 0x0; 19592 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19593 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19594 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19595 tmp = fieldFromInstruction(insn, 16, 3); 19596 MI.addOperand(MCOperand::createImm(tmp)); 19597 return S; 19598 case 258: 19599 tmp = 0x0; 19600 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19601 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19602 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19603 tmp = 0x0; 19604 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19605 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19606 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19607 tmp = fieldFromInstruction(insn, 16, 4); 19608 MI.addOperand(MCOperand::createImm(tmp)); 19609 return S; 19610 case 259: 19611 tmp = 0x0; 19612 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19613 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19614 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19615 tmp = 0x0; 19616 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19617 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19618 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19619 tmp = 0x0; 19620 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19621 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19622 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19623 tmp = fieldFromInstruction(insn, 16, 4); 19624 MI.addOperand(MCOperand::createImm(tmp)); 19625 return S; 19626 case 260: 19627 tmp = 0x0; 19628 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19629 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19630 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19631 tmp = 0x0; 19632 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19633 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19634 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19635 tmp = fieldFromInstruction(insn, 16, 5); 19636 MI.addOperand(MCOperand::createImm(tmp)); 19637 return S; 19638 case 261: 19639 tmp = 0x0; 19640 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19641 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19642 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19643 tmp = 0x0; 19644 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19645 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19646 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19647 tmp = 0x0; 19648 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19649 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19650 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19651 tmp = fieldFromInstruction(insn, 16, 5); 19652 MI.addOperand(MCOperand::createImm(tmp)); 19653 return S; 19654 case 262: 19655 tmp = 0x0; 19656 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19657 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19658 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19659 tmp = 0x0; 19660 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19661 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19662 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19663 tmp = fieldFromInstruction(insn, 16, 3); 19664 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19665 return S; 19666 case 263: 19667 tmp = 0x0; 19668 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19669 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19670 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19671 tmp = 0x0; 19672 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19673 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19674 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19675 tmp = fieldFromInstruction(insn, 16, 4); 19676 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19677 return S; 19678 case 264: 19679 tmp = 0x0; 19680 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19681 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19682 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19683 tmp = 0x0; 19684 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19685 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19686 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19687 tmp = fieldFromInstruction(insn, 16, 5); 19688 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19689 return S; 19690 case 265: 19691 tmp = 0x0; 19692 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19693 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19694 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19695 tmp = 0x0; 19696 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19697 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19698 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19699 tmp = fieldFromInstruction(insn, 16, 3); 19700 MI.addOperand(MCOperand::createImm(tmp)); 19701 return S; 19702 case 266: 19703 tmp = 0x0; 19704 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19705 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19706 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19707 tmp = 0x0; 19708 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19709 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19710 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19711 tmp = fieldFromInstruction(insn, 16, 4); 19712 MI.addOperand(MCOperand::createImm(tmp)); 19713 return S; 19714 case 267: 19715 tmp = 0x0; 19716 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19717 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19718 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19719 tmp = 0x0; 19720 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19721 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19722 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19723 tmp = fieldFromInstruction(insn, 16, 5); 19724 MI.addOperand(MCOperand::createImm(tmp)); 19725 return S; 19726 case 268: 19727 if (!Check(S, DecodeVCVTD(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 19728 return S; 19729 case 269: 19730 if (!Check(S, DecodeVMOVModImmInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 19731 return S; 19732 case 270: 19733 tmp = 0x0; 19734 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19735 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19736 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19737 tmp = 0x0; 19738 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19739 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19740 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19741 tmp = fieldFromInstruction(insn, 16, 6); 19742 if (!Check(S, DecodeShiftRight64Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19743 return S; 19744 case 271: 19745 tmp = 0x0; 19746 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19747 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19748 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19749 tmp = 0x0; 19750 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19751 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19752 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19753 tmp = 0x0; 19754 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19755 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19756 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19757 tmp = fieldFromInstruction(insn, 16, 6); 19758 if (!Check(S, DecodeShiftRight64Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19759 return S; 19760 case 272: 19761 tmp = 0x0; 19762 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19763 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19764 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19765 tmp = 0x0; 19766 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19767 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19768 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19769 tmp = fieldFromInstruction(insn, 16, 6); 19770 MI.addOperand(MCOperand::createImm(tmp)); 19771 return S; 19772 case 273: 19773 tmp = 0x0; 19774 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19775 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19776 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19777 tmp = 0x0; 19778 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19779 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19780 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19781 tmp = 0x0; 19782 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19783 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19784 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19785 tmp = fieldFromInstruction(insn, 16, 6); 19786 MI.addOperand(MCOperand::createImm(tmp)); 19787 return S; 19788 case 274: 19789 tmp = 0x0; 19790 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19791 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19792 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19793 tmp = 0x0; 19794 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19795 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19796 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19797 tmp = fieldFromInstruction(insn, 16, 3); 19798 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19799 return S; 19800 case 275: 19801 tmp = 0x0; 19802 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19803 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19804 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19805 tmp = 0x0; 19806 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19807 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19808 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19809 tmp = fieldFromInstruction(insn, 16, 4); 19810 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19811 return S; 19812 case 276: 19813 tmp = 0x0; 19814 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19815 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19816 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19817 tmp = 0x0; 19818 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19819 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19820 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19821 tmp = fieldFromInstruction(insn, 16, 5); 19822 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19823 return S; 19824 case 277: 19825 tmp = 0x0; 19826 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19827 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19828 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19829 tmp = 0x0; 19830 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19831 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19832 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19833 tmp = 0x0; 19834 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19835 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19836 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19837 tmp = fieldFromInstruction(insn, 16, 3); 19838 if (!Check(S, DecodeShiftRight8Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19839 return S; 19840 case 278: 19841 tmp = 0x0; 19842 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19843 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19844 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19845 tmp = 0x0; 19846 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19847 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19848 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19849 tmp = 0x0; 19850 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19851 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19852 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19853 tmp = fieldFromInstruction(insn, 16, 4); 19854 if (!Check(S, DecodeShiftRight16Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19855 return S; 19856 case 279: 19857 tmp = 0x0; 19858 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19859 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19860 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19861 tmp = 0x0; 19862 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19863 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19864 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19865 tmp = 0x0; 19866 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19867 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19868 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19869 tmp = fieldFromInstruction(insn, 16, 5); 19870 if (!Check(S, DecodeShiftRight32Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19871 return S; 19872 case 280: 19873 tmp = 0x0; 19874 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19875 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19876 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19877 tmp = 0x0; 19878 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19879 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19880 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19881 tmp = fieldFromInstruction(insn, 16, 3); 19882 MI.addOperand(MCOperand::createImm(tmp)); 19883 return S; 19884 case 281: 19885 tmp = 0x0; 19886 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19887 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19888 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19889 tmp = 0x0; 19890 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19891 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19892 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19893 tmp = 0x0; 19894 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19895 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19896 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19897 tmp = fieldFromInstruction(insn, 16, 3); 19898 MI.addOperand(MCOperand::createImm(tmp)); 19899 return S; 19900 case 282: 19901 tmp = 0x0; 19902 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19903 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19904 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19905 tmp = 0x0; 19906 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19907 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19908 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19909 tmp = fieldFromInstruction(insn, 16, 4); 19910 MI.addOperand(MCOperand::createImm(tmp)); 19911 return S; 19912 case 283: 19913 tmp = 0x0; 19914 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19915 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19916 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19917 tmp = 0x0; 19918 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19919 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19920 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19921 tmp = 0x0; 19922 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19923 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19924 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19925 tmp = fieldFromInstruction(insn, 16, 4); 19926 MI.addOperand(MCOperand::createImm(tmp)); 19927 return S; 19928 case 284: 19929 tmp = 0x0; 19930 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19931 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19932 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19933 tmp = 0x0; 19934 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19935 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19936 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19937 tmp = fieldFromInstruction(insn, 16, 5); 19938 MI.addOperand(MCOperand::createImm(tmp)); 19939 return S; 19940 case 285: 19941 tmp = 0x0; 19942 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19943 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19944 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19945 tmp = 0x0; 19946 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19947 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19948 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19949 tmp = 0x0; 19950 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19951 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19952 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19953 tmp = fieldFromInstruction(insn, 16, 5); 19954 MI.addOperand(MCOperand::createImm(tmp)); 19955 return S; 19956 case 286: 19957 if (!Check(S, DecodeVCVTQ(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 19958 return S; 19959 case 287: 19960 tmp = 0x0; 19961 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19962 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19963 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19964 tmp = 0x0; 19965 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19966 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19967 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19968 tmp = fieldFromInstruction(insn, 16, 6); 19969 if (!Check(S, DecodeShiftRight64Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19970 return S; 19971 case 288: 19972 tmp = 0x0; 19973 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19974 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19975 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19976 tmp = 0x0; 19977 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19978 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19979 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19980 tmp = 0x0; 19981 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19982 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19983 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19984 tmp = fieldFromInstruction(insn, 16, 6); 19985 if (!Check(S, DecodeShiftRight64Imm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19986 return S; 19987 case 289: 19988 tmp = 0x0; 19989 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 19990 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 19991 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19992 tmp = 0x0; 19993 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 19994 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 19995 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 19996 tmp = fieldFromInstruction(insn, 16, 6); 19997 MI.addOperand(MCOperand::createImm(tmp)); 19998 return S; 19999 case 290: 20000 tmp = 0x0; 20001 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 20002 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 20003 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20004 tmp = 0x0; 20005 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 20006 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 20007 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20008 tmp = 0x0; 20009 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20010 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 20011 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20012 tmp = fieldFromInstruction(insn, 16, 6); 20013 MI.addOperand(MCOperand::createImm(tmp)); 20014 return S; 20015 case 291: 20016 tmp = 0x0; 20017 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20018 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20019 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20020 tmp = 0x0; 20021 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20022 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20023 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20024 tmp = fieldFromInstruction(insn, 12, 4); 20025 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20026 tmp = fieldFromInstruction(insn, 21, 1); 20027 MI.addOperand(MCOperand::createImm(tmp)); 20028 tmp = fieldFromInstruction(insn, 28, 4); 20029 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20030 return S; 20031 case 292: 20032 tmp = fieldFromInstruction(insn, 12, 4); 20033 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20034 tmp = 0x0; 20035 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20036 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20037 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20038 tmp = fieldFromInstruction(insn, 21, 1); 20039 MI.addOperand(MCOperand::createImm(tmp)); 20040 tmp = fieldFromInstruction(insn, 28, 4); 20041 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20042 return S; 20043 case 293: 20044 tmp = 0x0; 20045 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20046 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20047 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20048 tmp = 0x0; 20049 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20050 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20051 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20052 tmp = fieldFromInstruction(insn, 12, 4); 20053 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20054 tmp = 0x0; 20055 tmp |= fieldFromInstruction(insn, 6, 1) << 0; 20056 tmp |= fieldFromInstruction(insn, 21, 1) << 1; 20057 MI.addOperand(MCOperand::createImm(tmp)); 20058 tmp = fieldFromInstruction(insn, 28, 4); 20059 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20060 return S; 20061 case 294: 20062 tmp = fieldFromInstruction(insn, 12, 4); 20063 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20064 tmp = 0x0; 20065 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20066 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20067 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20068 tmp = 0x0; 20069 tmp |= fieldFromInstruction(insn, 6, 1) << 0; 20070 tmp |= fieldFromInstruction(insn, 21, 1) << 1; 20071 MI.addOperand(MCOperand::createImm(tmp)); 20072 tmp = fieldFromInstruction(insn, 28, 4); 20073 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20074 return S; 20075 case 295: 20076 tmp = 0x0; 20077 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20078 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20079 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20080 tmp = 0x0; 20081 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20082 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20083 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20084 tmp = fieldFromInstruction(insn, 12, 4); 20085 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20086 tmp = 0x0; 20087 tmp |= fieldFromInstruction(insn, 5, 2) << 0; 20088 tmp |= fieldFromInstruction(insn, 21, 1) << 2; 20089 MI.addOperand(MCOperand::createImm(tmp)); 20090 tmp = fieldFromInstruction(insn, 28, 4); 20091 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20092 return S; 20093 case 296: 20094 tmp = fieldFromInstruction(insn, 12, 4); 20095 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20096 tmp = 0x0; 20097 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20098 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20099 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20100 tmp = 0x0; 20101 tmp |= fieldFromInstruction(insn, 5, 2) << 0; 20102 tmp |= fieldFromInstruction(insn, 21, 1) << 2; 20103 MI.addOperand(MCOperand::createImm(tmp)); 20104 tmp = fieldFromInstruction(insn, 28, 4); 20105 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20106 return S; 20107 case 297: 20108 tmp = 0x0; 20109 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20110 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20111 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20112 tmp = fieldFromInstruction(insn, 12, 4); 20113 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20114 tmp = fieldFromInstruction(insn, 28, 4); 20115 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20116 return S; 20117 case 298: 20118 tmp = 0x0; 20119 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 20120 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20121 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20122 tmp = fieldFromInstruction(insn, 12, 4); 20123 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20124 tmp = fieldFromInstruction(insn, 28, 4); 20125 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20126 return S; 20127 case 299: 20128 if (!Check(S, DecodeVLDST4Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20129 return S; 20130 case 300: 20131 if (!Check(S, DecodeVST1LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20132 return S; 20133 case 301: 20134 if (!Check(S, DecodeVLD1LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20135 return S; 20136 case 302: 20137 if (!Check(S, DecodeVST2LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20138 return S; 20139 case 303: 20140 if (!Check(S, DecodeVLD2LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20141 return S; 20142 case 304: 20143 if (!Check(S, DecodeVLDST1Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20144 return S; 20145 case 305: 20146 if (!Check(S, DecodeVST3LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20147 return S; 20148 case 306: 20149 if (!Check(S, DecodeVLD3LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20150 return S; 20151 case 307: 20152 if (!Check(S, DecodeVLDST2Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20153 return S; 20154 case 308: 20155 if (!Check(S, DecodeVST4LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20156 return S; 20157 case 309: 20158 if (!Check(S, DecodeVLD4LN(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20159 return S; 20160 case 310: 20161 if (!Check(S, DecodeVLDST3Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20162 return S; 20163 case 311: 20164 if (!Check(S, DecodeVLD1DupInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20165 return S; 20166 case 312: 20167 if (!Check(S, DecodeVLD2DupInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20168 return S; 20169 case 313: 20170 if (!Check(S, DecodeVLD3DupInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20171 return S; 20172 case 314: 20173 if (!Check(S, DecodeVLD4DupInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20174 return S; 20175 case 315: 20176 tmp = fieldFromInstruction(insn, 0, 3); 20177 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20178 tmp = fieldFromInstruction(insn, 3, 3); 20179 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20180 return S; 20181 case 316: 20182 tmp = fieldFromInstruction(insn, 8, 3); 20183 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20184 tmp = fieldFromInstruction(insn, 0, 8); 20185 MI.addOperand(MCOperand::createImm(tmp)); 20186 return S; 20187 case 317: 20188 if (!Check(S, DecodeThumbAddSPReg(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20189 return S; 20190 case 318: 20191 tmp = 0x0; 20192 tmp |= fieldFromInstruction(insn, 0, 3) << 0; 20193 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 20194 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20195 tmp = 0x0; 20196 tmp |= fieldFromInstruction(insn, 0, 3) << 0; 20197 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 20198 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20199 tmp = fieldFromInstruction(insn, 3, 4); 20200 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20201 return S; 20202 case 319: 20203 tmp = 0x0; 20204 tmp |= fieldFromInstruction(insn, 0, 3) << 0; 20205 tmp |= fieldFromInstruction(insn, 7, 1) << 3; 20206 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20207 tmp = fieldFromInstruction(insn, 3, 4); 20208 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20209 return S; 20210 case 320: 20211 tmp = fieldFromInstruction(insn, 3, 4); 20212 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20213 return S; 20214 case 321: 20215 tmp = fieldFromInstruction(insn, 3, 4); 20216 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20217 return S; 20218 case 322: 20219 tmp = fieldFromInstruction(insn, 8, 3); 20220 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20221 tmp = fieldFromInstruction(insn, 0, 8); 20222 if (!Check(S, DecodeThumbAddrModePC(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20223 return S; 20224 case 323: 20225 tmp = fieldFromInstruction(insn, 0, 3); 20226 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20227 tmp = fieldFromInstruction(insn, 3, 6); 20228 if (!Check(S, DecodeThumbAddrModeRR(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20229 return S; 20230 case 324: 20231 tmp = fieldFromInstruction(insn, 0, 3); 20232 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20233 tmp = fieldFromInstruction(insn, 3, 8); 20234 if (!Check(S, DecodeThumbAddrModeIS(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20235 return S; 20236 case 325: 20237 tmp = fieldFromInstruction(insn, 8, 3); 20238 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20239 tmp = fieldFromInstruction(insn, 0, 8); 20240 if (!Check(S, DecodeThumbAddrModeSP(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20241 return S; 20242 case 326: 20243 if (!Check(S, DecodeThumbAddSpecialReg(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20244 return S; 20245 case 327: 20246 if (!Check(S, DecodeThumbAddSPImm(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20247 return S; 20248 case 328: 20249 tmp = fieldFromInstruction(insn, 0, 3); 20250 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20251 tmp = 0x0; 20252 tmp |= fieldFromInstruction(insn, 3, 5) << 0; 20253 tmp |= fieldFromInstruction(insn, 9, 1) << 5; 20254 if (!Check(S, DecodeThumbCmpBROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20255 return S; 20256 case 329: 20257 tmp = 0x0; 20258 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20259 tmp |= fieldFromInstruction(insn, 8, 1) << 14; 20260 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20261 return S; 20262 case 330: 20263 tmp = fieldFromInstruction(insn, 3, 1); 20264 MI.addOperand(MCOperand::createImm(tmp)); 20265 return S; 20266 case 331: 20267 if (!Check(S, DecodeThumbCPS(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20268 return S; 20269 case 332: 20270 tmp = fieldFromInstruction(insn, 0, 6); 20271 MI.addOperand(MCOperand::createImm(tmp)); 20272 return S; 20273 case 333: 20274 tmp = 0x0; 20275 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20276 tmp |= fieldFromInstruction(insn, 8, 1) << 15; 20277 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20278 return S; 20279 case 334: 20280 tmp = fieldFromInstruction(insn, 0, 8); 20281 MI.addOperand(MCOperand::createImm(tmp)); 20282 return S; 20283 case 335: 20284 tmp = fieldFromInstruction(insn, 4, 4); 20285 MI.addOperand(MCOperand::createImm(tmp)); 20286 return S; 20287 case 336: 20288 tmp = fieldFromInstruction(insn, 8, 3); 20289 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20290 tmp = fieldFromInstruction(insn, 8, 3); 20291 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20292 tmp = fieldFromInstruction(insn, 0, 8); 20293 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20294 return S; 20295 case 337: 20296 tmp = fieldFromInstruction(insn, 8, 3); 20297 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20298 tmp = fieldFromInstruction(insn, 0, 8); 20299 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20300 return S; 20301 case 338: 20302 tmp = fieldFromInstruction(insn, 0, 8); 20303 if (!Check(S, DecodeThumbBCCTargetOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20304 tmp = fieldFromInstruction(insn, 8, 4); 20305 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20306 return S; 20307 case 339: 20308 tmp = fieldFromInstruction(insn, 0, 11); 20309 if (!Check(S, DecodeThumbBROperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20310 return S; 20311 case 340: 20312 tmp = 0x0; 20313 tmp |= fieldFromInstruction(insn, 1, 10) << 1; 20314 tmp |= fieldFromInstruction(insn, 11, 1) << 21; 20315 tmp |= fieldFromInstruction(insn, 13, 1) << 22; 20316 tmp |= fieldFromInstruction(insn, 16, 10) << 11; 20317 tmp |= fieldFromInstruction(insn, 26, 1) << 23; 20318 if (!Check(S, DecodeThumbBLXOffset(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20319 return S; 20320 case 341: 20321 tmp = 0x0; 20322 tmp |= fieldFromInstruction(insn, 0, 11) << 0; 20323 tmp |= fieldFromInstruction(insn, 11, 1) << 21; 20324 tmp |= fieldFromInstruction(insn, 13, 1) << 22; 20325 tmp |= fieldFromInstruction(insn, 16, 10) << 11; 20326 tmp |= fieldFromInstruction(insn, 26, 1) << 23; 20327 if (!Check(S, DecodeThumbBLTargetOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20328 return S; 20329 case 342: 20330 if (!Check(S, DecodeIT(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20331 return S; 20332 case 343: 20333 tmp = fieldFromInstruction(insn, 16, 4); 20334 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20335 tmp = 0x0; 20336 tmp |= fieldFromInstruction(insn, 0, 13) << 0; 20337 tmp |= fieldFromInstruction(insn, 14, 1) << 14; 20338 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20339 return S; 20340 case 344: 20341 tmp = 0x0; 20342 tmp |= fieldFromInstruction(insn, 0, 13) << 0; 20343 tmp |= fieldFromInstruction(insn, 14, 2) << 14; 20344 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20345 return S; 20346 case 345: 20347 tmp = fieldFromInstruction(insn, 16, 4); 20348 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20349 tmp = fieldFromInstruction(insn, 0, 16); 20350 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20351 return S; 20352 case 346: 20353 tmp = fieldFromInstruction(insn, 16, 4); 20354 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20355 tmp = fieldFromInstruction(insn, 0, 4); 20356 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20357 return S; 20358 case 347: 20359 tmp = fieldFromInstruction(insn, 16, 4); 20360 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20361 tmp = 0x0; 20362 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20363 tmp |= fieldFromInstruction(insn, 4, 4) << 5; 20364 tmp |= fieldFromInstruction(insn, 12, 3) << 9; 20365 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20366 return S; 20367 case 348: 20368 tmp = fieldFromInstruction(insn, 8, 4); 20369 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20370 tmp = fieldFromInstruction(insn, 16, 4); 20371 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20372 tmp = fieldFromInstruction(insn, 0, 4); 20373 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20374 tmp = fieldFromInstruction(insn, 20, 1); 20375 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20376 return S; 20377 case 349: 20378 tmp = fieldFromInstruction(insn, 8, 4); 20379 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20380 tmp = fieldFromInstruction(insn, 16, 4); 20381 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20382 tmp = 0x0; 20383 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20384 tmp |= fieldFromInstruction(insn, 4, 4) << 5; 20385 tmp |= fieldFromInstruction(insn, 12, 3) << 9; 20386 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20387 tmp = fieldFromInstruction(insn, 20, 1); 20388 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20389 return S; 20390 case 350: 20391 tmp = fieldFromInstruction(insn, 16, 4); 20392 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20393 tmp = fieldFromInstruction(insn, 0, 4); 20394 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20395 return S; 20396 case 351: 20397 tmp = fieldFromInstruction(insn, 16, 4); 20398 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20399 tmp = 0x0; 20400 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20401 tmp |= fieldFromInstruction(insn, 4, 4) << 5; 20402 tmp |= fieldFromInstruction(insn, 12, 3) << 9; 20403 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20404 return S; 20405 case 352: 20406 tmp = fieldFromInstruction(insn, 8, 4); 20407 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20408 tmp = fieldFromInstruction(insn, 16, 4); 20409 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20410 tmp = fieldFromInstruction(insn, 0, 4); 20411 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20412 tmp = fieldFromInstruction(insn, 20, 1); 20413 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20414 return S; 20415 case 353: 20416 tmp = fieldFromInstruction(insn, 8, 4); 20417 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20418 tmp = fieldFromInstruction(insn, 16, 4); 20419 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20420 tmp = 0x0; 20421 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20422 tmp |= fieldFromInstruction(insn, 4, 4) << 5; 20423 tmp |= fieldFromInstruction(insn, 12, 3) << 9; 20424 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20425 tmp = fieldFromInstruction(insn, 20, 1); 20426 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20427 return S; 20428 case 354: 20429 tmp = fieldFromInstruction(insn, 16, 4); 20430 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20431 tmp = fieldFromInstruction(insn, 16, 4); 20432 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20433 tmp = 0x0; 20434 tmp |= fieldFromInstruction(insn, 0, 13) << 0; 20435 tmp |= fieldFromInstruction(insn, 14, 1) << 14; 20436 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20437 return S; 20438 case 355: 20439 tmp = fieldFromInstruction(insn, 16, 4); 20440 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20441 tmp = fieldFromInstruction(insn, 16, 4); 20442 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20443 tmp = fieldFromInstruction(insn, 0, 16); 20444 if (!Check(S, DecodeRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20445 return S; 20446 case 356: 20447 tmp = fieldFromInstruction(insn, 8, 4); 20448 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20449 tmp = fieldFromInstruction(insn, 16, 4); 20450 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20451 return S; 20452 case 357: 20453 tmp = fieldFromInstruction(insn, 8, 4); 20454 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20455 tmp = fieldFromInstruction(insn, 12, 4); 20456 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20457 tmp = 0x0; 20458 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20459 tmp |= fieldFromInstruction(insn, 16, 4) << 8; 20460 if (!Check(S, DecodeT2AddrModeImm0_1020s4(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20461 return S; 20462 case 358: 20463 tmp = fieldFromInstruction(insn, 0, 4); 20464 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20465 tmp = fieldFromInstruction(insn, 12, 4); 20466 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20467 tmp = fieldFromInstruction(insn, 16, 4); 20468 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20469 return S; 20470 case 359: 20471 tmp = fieldFromInstruction(insn, 0, 4); 20472 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20473 tmp = fieldFromInstruction(insn, 12, 4); 20474 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20475 tmp = fieldFromInstruction(insn, 8, 4); 20476 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20477 tmp = fieldFromInstruction(insn, 16, 4); 20478 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20479 return S; 20480 case 360: 20481 tmp = fieldFromInstruction(insn, 12, 4); 20482 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20483 tmp = fieldFromInstruction(insn, 16, 4); 20484 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20485 return S; 20486 case 361: 20487 tmp = fieldFromInstruction(insn, 12, 4); 20488 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20489 tmp = 0x0; 20490 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20491 tmp |= fieldFromInstruction(insn, 16, 4) << 8; 20492 if (!Check(S, DecodeT2AddrModeImm0_1020s4(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20493 return S; 20494 case 362: 20495 if (!Check(S, DecodeThumbTableBranch(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20496 return S; 20497 case 363: 20498 tmp = fieldFromInstruction(insn, 12, 4); 20499 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20500 tmp = fieldFromInstruction(insn, 8, 4); 20501 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20502 tmp = fieldFromInstruction(insn, 16, 4); 20503 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20504 return S; 20505 case 364: 20506 tmp = fieldFromInstruction(insn, 12, 4); 20507 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20508 tmp = fieldFromInstruction(insn, 8, 4); 20509 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20510 tmp = 0x0; 20511 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20512 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 20513 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 20514 if (!Check(S, DecodeT2AddrModeImm8s4(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20515 return S; 20516 case 365: 20517 tmp = fieldFromInstruction(insn, 8, 4); 20518 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20519 tmp = fieldFromInstruction(insn, 0, 4); 20520 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20521 tmp = fieldFromInstruction(insn, 20, 1); 20522 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20523 return S; 20524 case 366: 20525 tmp = fieldFromInstruction(insn, 8, 4); 20526 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20527 tmp = fieldFromInstruction(insn, 0, 4); 20528 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20529 tmp = fieldFromInstruction(insn, 20, 1); 20530 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20531 return S; 20532 case 367: 20533 tmp = fieldFromInstruction(insn, 8, 4); 20534 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20535 tmp = fieldFromInstruction(insn, 0, 4); 20536 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20537 tmp = 0x0; 20538 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20539 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20540 MI.addOperand(MCOperand::createImm(tmp)); 20541 tmp = fieldFromInstruction(insn, 20, 1); 20542 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20543 return S; 20544 case 368: 20545 tmp = fieldFromInstruction(insn, 8, 4); 20546 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20547 tmp = fieldFromInstruction(insn, 16, 4); 20548 if (!Check(S, DecodeGPRwithZRnospRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20549 tmp = fieldFromInstruction(insn, 0, 4); 20550 if (!Check(S, DecodeGPRwithZRnospRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20551 tmp = fieldFromInstruction(insn, 4, 4); 20552 if (!Check(S, DecodePredNoALOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20553 return S; 20554 case 369: 20555 tmp = fieldFromInstruction(insn, 8, 4); 20556 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20557 tmp = fieldFromInstruction(insn, 16, 4); 20558 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20559 tmp = fieldFromInstruction(insn, 0, 4); 20560 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20561 tmp = 0x0; 20562 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20563 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20564 MI.addOperand(MCOperand::createImm(tmp)); 20565 return S; 20566 case 370: 20567 tmp = fieldFromInstruction(insn, 16, 4); 20568 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20569 tmp = fieldFromInstruction(insn, 12, 4); 20570 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20571 tmp = fieldFromInstruction(insn, 8, 4); 20572 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20573 tmp = fieldFromInstruction(insn, 16, 4); 20574 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20575 tmp = 0x0; 20576 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20577 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 20578 if (!Check(S, DecodeT2Imm8S4(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20579 return S; 20580 case 371: 20581 tmp = fieldFromInstruction(insn, 12, 4); 20582 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20583 tmp = fieldFromInstruction(insn, 8, 4); 20584 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20585 tmp = fieldFromInstruction(insn, 16, 4); 20586 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20587 tmp = fieldFromInstruction(insn, 16, 4); 20588 if (!Check(S, DecodeAddrMode7Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20589 tmp = 0x0; 20590 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20591 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 20592 if (!Check(S, DecodeT2Imm8S4(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20593 return S; 20594 case 372: 20595 if (!Check(S, DecodeT2STRDPreInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20596 return S; 20597 case 373: 20598 if (!Check(S, DecodeT2LDRDPreInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20599 return S; 20600 case 374: 20601 tmp = fieldFromInstruction(insn, 8, 4); 20602 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20603 tmp = 0x0; 20604 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20605 tmp |= fieldFromInstruction(insn, 4, 4) << 5; 20606 tmp |= fieldFromInstruction(insn, 12, 3) << 9; 20607 if (!Check(S, DecodeSORegImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20608 tmp = fieldFromInstruction(insn, 20, 1); 20609 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20610 return S; 20611 case 375: 20612 tmp = fieldFromInstruction(insn, 16, 4); 20613 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20614 tmp = 0x0; 20615 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20616 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20617 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20618 if (!Check(S, DecodeT2SOImm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20619 return S; 20620 case 376: 20621 tmp = fieldFromInstruction(insn, 8, 4); 20622 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20623 tmp = fieldFromInstruction(insn, 16, 4); 20624 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20625 tmp = 0x0; 20626 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20627 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20628 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20629 if (!Check(S, DecodeT2SOImm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20630 tmp = fieldFromInstruction(insn, 20, 1); 20631 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20632 return S; 20633 case 377: 20634 tmp = fieldFromInstruction(insn, 8, 4); 20635 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20636 tmp = 0x0; 20637 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20638 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20639 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20640 if (!Check(S, DecodeT2SOImm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20641 tmp = fieldFromInstruction(insn, 20, 1); 20642 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20643 return S; 20644 case 378: 20645 if (!Check(S, DecodeT2AddSubSPImm(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20646 return S; 20647 case 379: 20648 tmp = fieldFromInstruction(insn, 16, 4); 20649 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20650 tmp = 0x0; 20651 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20652 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20653 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20654 if (!Check(S, DecodeT2SOImm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20655 return S; 20656 case 380: 20657 tmp = fieldFromInstruction(insn, 8, 4); 20658 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20659 tmp = fieldFromInstruction(insn, 16, 4); 20660 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20661 tmp = 0x0; 20662 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20663 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20664 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20665 if (!Check(S, DecodeT2SOImm(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20666 tmp = fieldFromInstruction(insn, 20, 1); 20667 if (!Check(S, DecodeCCOutOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20668 return S; 20669 case 381: 20670 if (!Check(S, DecodeT2Adr(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20671 return S; 20672 case 382: 20673 tmp = fieldFromInstruction(insn, 8, 4); 20674 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20675 tmp = fieldFromInstruction(insn, 16, 4); 20676 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20677 tmp = 0x0; 20678 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20679 tmp |= fieldFromInstruction(insn, 12, 3) << 8; 20680 tmp |= fieldFromInstruction(insn, 26, 1) << 11; 20681 MI.addOperand(MCOperand::createImm(tmp)); 20682 return S; 20683 case 383: 20684 if (!Check(S, DecodeT2MOVTWInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20685 return S; 20686 case 384: 20687 tmp = fieldFromInstruction(insn, 8, 4); 20688 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20689 tmp = fieldFromInstruction(insn, 0, 4); 20690 MI.addOperand(MCOperand::createImm(tmp)); 20691 tmp = fieldFromInstruction(insn, 16, 4); 20692 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20693 return S; 20694 case 385: 20695 tmp = fieldFromInstruction(insn, 8, 4); 20696 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20697 tmp = fieldFromInstruction(insn, 0, 5); 20698 MI.addOperand(MCOperand::createImm(tmp)); 20699 tmp = fieldFromInstruction(insn, 16, 4); 20700 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20701 tmp = 0x0; 20702 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20703 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20704 tmp |= fieldFromInstruction(insn, 21, 1) << 5; 20705 if (!Check(S, DecodeT2ShifterImmOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20706 return S; 20707 case 386: 20708 tmp = fieldFromInstruction(insn, 8, 4); 20709 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20710 tmp = fieldFromInstruction(insn, 16, 4); 20711 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20712 tmp = 0x0; 20713 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20714 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20715 MI.addOperand(MCOperand::createImm(tmp)); 20716 tmp = fieldFromInstruction(insn, 0, 5); 20717 MI.addOperand(MCOperand::createImm(tmp)); 20718 return S; 20719 case 387: 20720 tmp = fieldFromInstruction(insn, 8, 4); 20721 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20722 tmp = fieldFromInstruction(insn, 8, 4); 20723 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20724 tmp = 0x0; 20725 tmp |= fieldFromInstruction(insn, 0, 5) << 5; 20726 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20727 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20728 if (!Check(S, DecodeBitfieldMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20729 return S; 20730 case 388: 20731 tmp = fieldFromInstruction(insn, 8, 4); 20732 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20733 tmp = fieldFromInstruction(insn, 8, 4); 20734 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20735 tmp = fieldFromInstruction(insn, 16, 4); 20736 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20737 tmp = 0x0; 20738 tmp |= fieldFromInstruction(insn, 0, 5) << 5; 20739 tmp |= fieldFromInstruction(insn, 6, 2) << 0; 20740 tmp |= fieldFromInstruction(insn, 12, 3) << 2; 20741 if (!Check(S, DecodeBitfieldMaskOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20742 return S; 20743 case 389: 20744 tmp = fieldFromInstruction(insn, 16, 4); 20745 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20746 return S; 20747 case 390: 20748 tmp = fieldFromInstruction(insn, 0, 4); 20749 MI.addOperand(MCOperand::createImm(tmp)); 20750 return S; 20751 case 391: 20752 if (!Check(S, DecodeT2CPSInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20753 return S; 20754 case 392: 20755 tmp = fieldFromInstruction(insn, 8, 4); 20756 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20757 return S; 20758 case 393: 20759 tmp = 0x0; 20760 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 20761 tmp |= fieldFromInstruction(insn, 16, 4) << 12; 20762 MI.addOperand(MCOperand::createImm(tmp)); 20763 return S; 20764 case 394: 20765 tmp = fieldFromInstruction(insn, 16, 4); 20766 MI.addOperand(MCOperand::createImm(tmp)); 20767 return S; 20768 case 395: 20769 tmp = 0x0; 20770 tmp |= fieldFromInstruction(insn, 8, 4) << 0; 20771 tmp |= fieldFromInstruction(insn, 20, 1) << 4; 20772 if (!Check(S, DecodeMSRMask(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20773 tmp = fieldFromInstruction(insn, 16, 4); 20774 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20775 return S; 20776 case 396: 20777 tmp = 0x0; 20778 tmp |= fieldFromInstruction(insn, 4, 1) << 4; 20779 tmp |= fieldFromInstruction(insn, 8, 4) << 0; 20780 tmp |= fieldFromInstruction(insn, 20, 1) << 5; 20781 if (!Check(S, DecodeBankedReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20782 tmp = fieldFromInstruction(insn, 16, 4); 20783 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20784 return S; 20785 case 397: 20786 tmp = 0x0; 20787 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20788 tmp |= fieldFromInstruction(insn, 10, 2) << 10; 20789 if (!Check(S, DecodeMSRMask(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20790 tmp = fieldFromInstruction(insn, 16, 4); 20791 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20792 return S; 20793 case 398: 20794 tmp = fieldFromInstruction(insn, 8, 4); 20795 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20796 tmp = 0x0; 20797 tmp |= fieldFromInstruction(insn, 4, 1) << 4; 20798 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20799 tmp |= fieldFromInstruction(insn, 20, 1) << 5; 20800 if (!Check(S, DecodeBankedReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20801 return S; 20802 case 399: 20803 tmp = fieldFromInstruction(insn, 8, 4); 20804 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20805 tmp = fieldFromInstruction(insn, 0, 8); 20806 if (!Check(S, DecodeMSRMask(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20807 return S; 20808 case 400: 20809 if (!Check(S, DecodeThumb2BCCInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20810 return S; 20811 case 401: 20812 if (!Check(S, DecodeLOLoop(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20813 return S; 20814 case 402: 20815 tmp = fieldFromInstruction(insn, 23, 4); 20816 if (!Check(S, DecodeBFLabelOperand<false, false, false, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20817 tmp = 0x0; 20818 tmp |= fieldFromInstruction(insn, 1, 10) << 1; 20819 tmp |= fieldFromInstruction(insn, 11, 1) << 0; 20820 tmp |= fieldFromInstruction(insn, 16, 7) << 11; 20821 if (!Check(S, DecodeBFLabelOperand<true, false, true, 18>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20822 return S; 20823 case 403: 20824 tmp = fieldFromInstruction(insn, 23, 4); 20825 if (!Check(S, DecodeBFLabelOperand<false, false, false, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20826 tmp = 0x0; 20827 tmp |= fieldFromInstruction(insn, 1, 10) << 1; 20828 tmp |= fieldFromInstruction(insn, 11, 1) << 0; 20829 tmp |= fieldFromInstruction(insn, 16, 1) << 11; 20830 if (!Check(S, DecodeBFLabelOperand<true, false, true, 12>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20831 tmp = fieldFromInstruction(insn, 17, 1); 20832 if (!Check(S, DecodeBFAfterTargetOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20833 tmp = fieldFromInstruction(insn, 18, 4); 20834 if (!Check(S, DecodePredNoALOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20835 return S; 20836 case 404: 20837 tmp = fieldFromInstruction(insn, 23, 4); 20838 if (!Check(S, DecodeBFLabelOperand<false, false, false, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20839 tmp = 0x0; 20840 tmp |= fieldFromInstruction(insn, 1, 10) << 1; 20841 tmp |= fieldFromInstruction(insn, 11, 1) << 0; 20842 tmp |= fieldFromInstruction(insn, 16, 5) << 11; 20843 if (!Check(S, DecodeBFLabelOperand<true, false, true, 16>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20844 return S; 20845 case 405: 20846 tmp = fieldFromInstruction(insn, 23, 4); 20847 if (!Check(S, DecodeBFLabelOperand<false, false, false, 4>(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20848 tmp = fieldFromInstruction(insn, 16, 4); 20849 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20850 return S; 20851 case 406: 20852 if (!Check(S, DecodeT2BInstruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20853 return S; 20854 case 407: 20855 tmp = fieldFromInstruction(insn, 12, 4); 20856 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20857 tmp = 0x0; 20858 tmp |= fieldFromInstruction(insn, 0, 4) << 2; 20859 tmp |= fieldFromInstruction(insn, 4, 2) << 0; 20860 tmp |= fieldFromInstruction(insn, 16, 4) << 6; 20861 if (!Check(S, DecodeT2AddrModeSOReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20862 return S; 20863 case 408: 20864 if (!Check(S, DecodeT2LdStPre(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20865 return S; 20866 case 409: 20867 tmp = fieldFromInstruction(insn, 12, 4); 20868 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20869 tmp = 0x0; 20870 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20871 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 20872 if (!Check(S, DecodeT2AddrModeImm8(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20873 return S; 20874 case 410: 20875 tmp = fieldFromInstruction(insn, 12, 4); 20876 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20877 tmp = 0x0; 20878 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20879 tmp |= fieldFromInstruction(insn, 9, 1) << 8; 20880 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 20881 if (!Check(S, DecodeT2AddrModeImm8(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20882 return S; 20883 case 411: 20884 tmp = fieldFromInstruction(insn, 12, 4); 20885 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20886 tmp = 0x1000; 20887 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 20888 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 20889 if (!Check(S, DecodeT2AddrModeImm12(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20890 return S; 20891 case 412: 20892 if (!Check(S, DecodeT2LoadShift(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20893 return S; 20894 case 413: 20895 if (!Check(S, DecodeT2LoadImm8(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20896 return S; 20897 case 414: 20898 if (!Check(S, DecodeT2LoadT(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20899 return S; 20900 case 415: 20901 if (!Check(S, DecodeT2LoadImm12(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20902 return S; 20903 case 416: 20904 if (!Check(S, DecodeT2LoadLabel(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 20905 return S; 20906 case 417: 20907 tmp = fieldFromInstruction(insn, 8, 4); 20908 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20909 tmp = fieldFromInstruction(insn, 16, 4); 20910 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20911 tmp = fieldFromInstruction(insn, 0, 4); 20912 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20913 return S; 20914 case 418: 20915 tmp = fieldFromInstruction(insn, 8, 4); 20916 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20917 tmp = fieldFromInstruction(insn, 0, 4); 20918 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20919 tmp = fieldFromInstruction(insn, 4, 2); 20920 MI.addOperand(MCOperand::createImm(tmp)); 20921 return S; 20922 case 419: 20923 tmp = fieldFromInstruction(insn, 8, 4); 20924 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20925 tmp = fieldFromInstruction(insn, 16, 4); 20926 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20927 tmp = fieldFromInstruction(insn, 0, 4); 20928 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20929 tmp = fieldFromInstruction(insn, 4, 2); 20930 MI.addOperand(MCOperand::createImm(tmp)); 20931 return S; 20932 case 420: 20933 tmp = fieldFromInstruction(insn, 8, 4); 20934 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20935 tmp = fieldFromInstruction(insn, 0, 4); 20936 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20937 tmp = fieldFromInstruction(insn, 16, 4); 20938 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20939 return S; 20940 case 421: 20941 tmp = fieldFromInstruction(insn, 8, 4); 20942 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20943 tmp = 0x0; 20944 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 20945 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 20946 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20947 return S; 20948 case 422: 20949 tmp = fieldFromInstruction(insn, 8, 4); 20950 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20951 tmp = fieldFromInstruction(insn, 16, 4); 20952 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20953 tmp = fieldFromInstruction(insn, 0, 4); 20954 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20955 tmp = fieldFromInstruction(insn, 12, 4); 20956 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20957 return S; 20958 case 423: 20959 tmp = fieldFromInstruction(insn, 12, 4); 20960 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20961 tmp = fieldFromInstruction(insn, 8, 4); 20962 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20963 tmp = fieldFromInstruction(insn, 16, 4); 20964 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20965 tmp = fieldFromInstruction(insn, 0, 4); 20966 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20967 return S; 20968 case 424: 20969 tmp = fieldFromInstruction(insn, 8, 4); 20970 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20971 tmp = fieldFromInstruction(insn, 16, 4); 20972 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20973 tmp = fieldFromInstruction(insn, 0, 4); 20974 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20975 return S; 20976 case 425: 20977 tmp = fieldFromInstruction(insn, 12, 4); 20978 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20979 tmp = 0x0; 20980 tmp |= fieldFromInstruction(insn, 0, 4) << 2; 20981 tmp |= fieldFromInstruction(insn, 4, 2) << 0; 20982 tmp |= fieldFromInstruction(insn, 16, 4) << 6; 20983 if (!Check(S, DecodeT2AddrModeSOReg(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20984 return S; 20985 case 426: 20986 tmp = fieldFromInstruction(insn, 12, 4); 20987 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20988 tmp = 0x0; 20989 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 20990 tmp |= fieldFromInstruction(insn, 9, 1) << 8; 20991 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 20992 if (!Check(S, DecodeT2AddrModeImm8(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20993 return S; 20994 case 427: 20995 tmp = fieldFromInstruction(insn, 12, 4); 20996 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 20997 tmp = 0x1000; 20998 tmp |= fieldFromInstruction(insn, 0, 12) << 0; 20999 tmp |= fieldFromInstruction(insn, 16, 4) << 13; 21000 if (!Check(S, DecodeT2AddrModeImm12(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21001 return S; 21002 case 428: 21003 tmp = fieldFromInstruction(insn, 12, 4); 21004 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21005 tmp = fieldFromInstruction(insn, 8, 4); 21006 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21007 tmp = fieldFromInstruction(insn, 16, 4); 21008 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21009 tmp = fieldFromInstruction(insn, 0, 4); 21010 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21011 tmp = fieldFromInstruction(insn, 12, 4); 21012 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21013 tmp = fieldFromInstruction(insn, 8, 4); 21014 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21015 return S; 21016 case 429: 21017 tmp = fieldFromInstruction(insn, 8, 4); 21018 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21019 tmp = fieldFromInstruction(insn, 4, 4); 21020 MI.addOperand(MCOperand::createImm(tmp)); 21021 tmp = fieldFromInstruction(insn, 12, 4); 21022 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21023 tmp = fieldFromInstruction(insn, 16, 4); 21024 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21025 tmp = fieldFromInstruction(insn, 0, 4); 21026 MI.addOperand(MCOperand::createImm(tmp)); 21027 return S; 21028 case 430: 21029 tmp = fieldFromInstruction(insn, 12, 4); 21030 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21031 tmp = fieldFromInstruction(insn, 16, 4); 21032 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21033 tmp = fieldFromInstruction(insn, 8, 4); 21034 if (!Check(S, DecodeCoprocessor(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21035 tmp = fieldFromInstruction(insn, 4, 4); 21036 MI.addOperand(MCOperand::createImm(tmp)); 21037 tmp = fieldFromInstruction(insn, 0, 4); 21038 MI.addOperand(MCOperand::createImm(tmp)); 21039 return S; 21040 case 431: 21041 tmp = fieldFromInstruction(insn, 0, 3); 21042 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21043 tmp = fieldFromInstruction(insn, 3, 3); 21044 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21045 tmp = fieldFromInstruction(insn, 6, 5); 21046 MI.addOperand(MCOperand::createImm(tmp)); 21047 return S; 21048 case 432: 21049 tmp = fieldFromInstruction(insn, 0, 3); 21050 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21051 tmp = fieldFromInstruction(insn, 3, 3); 21052 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21053 tmp = fieldFromInstruction(insn, 6, 3); 21054 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21055 return S; 21056 case 433: 21057 tmp = fieldFromInstruction(insn, 0, 3); 21058 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21059 tmp = fieldFromInstruction(insn, 3, 3); 21060 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21061 tmp = fieldFromInstruction(insn, 6, 3); 21062 MI.addOperand(MCOperand::createImm(tmp)); 21063 return S; 21064 case 434: 21065 tmp = fieldFromInstruction(insn, 8, 3); 21066 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21067 tmp = fieldFromInstruction(insn, 8, 3); 21068 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21069 tmp = fieldFromInstruction(insn, 0, 8); 21070 MI.addOperand(MCOperand::createImm(tmp)); 21071 return S; 21072 case 435: 21073 tmp = fieldFromInstruction(insn, 0, 3); 21074 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21075 tmp = fieldFromInstruction(insn, 0, 3); 21076 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21077 tmp = fieldFromInstruction(insn, 3, 3); 21078 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21079 return S; 21080 case 436: 21081 tmp = fieldFromInstruction(insn, 0, 3); 21082 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21083 tmp = fieldFromInstruction(insn, 3, 3); 21084 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21085 tmp = fieldFromInstruction(insn, 0, 3); 21086 if (!Check(S, DecodetGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21087 return S; 21088 case 437: 21089 tmp = 0x0; 21090 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21091 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21092 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21093 tmp = 0x0; 21094 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 21095 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 21096 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 21097 if (!Check(S, DecodeAddrMode5FP16Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21098 tmp = fieldFromInstruction(insn, 28, 4); 21099 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21100 return S; 21101 case 438: 21102 tmp = 0x0; 21103 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21104 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21105 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21106 tmp = 0x0; 21107 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21108 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21109 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21110 tmp = 0x0; 21111 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21112 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21113 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21114 tmp = 0x0; 21115 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21116 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21117 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21118 tmp = fieldFromInstruction(insn, 28, 4); 21119 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21120 return S; 21121 case 439: 21122 tmp = 0x0; 21123 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21124 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21125 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21126 tmp = 0x0; 21127 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21128 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21129 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21130 tmp = 0x0; 21131 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21132 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21133 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21134 tmp = fieldFromInstruction(insn, 28, 4); 21135 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21136 return S; 21137 case 440: 21138 tmp = 0x0; 21139 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21140 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21141 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21142 tmp = fieldFromInstruction(insn, 12, 4); 21143 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21144 tmp = fieldFromInstruction(insn, 28, 4); 21145 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21146 return S; 21147 case 441: 21148 tmp = fieldFromInstruction(insn, 12, 4); 21149 if (!Check(S, DecoderGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21150 tmp = 0x0; 21151 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21152 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21153 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21154 tmp = fieldFromInstruction(insn, 28, 4); 21155 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21156 return S; 21157 case 442: 21158 tmp = 0x0; 21159 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21160 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21161 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21162 tmp = 0x0; 21163 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21164 tmp |= fieldFromInstruction(insn, 16, 4) << 4; 21165 MI.addOperand(MCOperand::createImm(tmp)); 21166 tmp = fieldFromInstruction(insn, 28, 4); 21167 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21168 return S; 21169 case 443: 21170 tmp = 0x0; 21171 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21172 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21173 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21174 tmp = 0x0; 21175 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21176 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21177 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21178 tmp = fieldFromInstruction(insn, 28, 4); 21179 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21180 return S; 21181 case 444: 21182 tmp = 0x0; 21183 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21184 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21185 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21186 tmp = fieldFromInstruction(insn, 28, 4); 21187 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21188 return S; 21189 case 445: 21190 tmp = 0x0; 21191 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21192 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21193 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21194 tmp = 0x0; 21195 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21196 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21197 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21198 tmp = fieldFromInstruction(insn, 28, 4); 21199 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21200 return S; 21201 case 446: 21202 tmp = 0x0; 21203 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21204 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21205 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21206 tmp = 0x0; 21207 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21208 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21209 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21210 tmp = 0x0; 21211 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21212 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21213 MI.addOperand(MCOperand::createImm(tmp)); 21214 tmp = fieldFromInstruction(insn, 28, 4); 21215 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21216 return S; 21217 case 447: 21218 tmp = 0x0; 21219 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21220 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21221 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21222 tmp = 0x0; 21223 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21224 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21225 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21226 tmp = fieldFromInstruction(insn, 28, 4); 21227 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21228 return S; 21229 case 448: 21230 tmp = 0x0; 21231 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21232 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21233 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21234 tmp = 0x0; 21235 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21236 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21237 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21238 tmp = fieldFromInstruction(insn, 28, 4); 21239 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21240 return S; 21241 case 449: 21242 if (!Check(S, DecodeVMOVSRR(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21243 return S; 21244 case 450: 21245 tmp = fieldFromInstruction(insn, 16, 4); 21246 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21247 tmp = fieldFromInstruction(insn, 28, 4); 21248 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21249 tmp = 0x0; 21250 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 21251 tmp |= fieldFromInstruction(insn, 12, 4) << 9; 21252 tmp |= fieldFromInstruction(insn, 22, 1) << 8; 21253 if (!Check(S, DecodeSPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21254 return S; 21255 case 451: 21256 tmp = 0x0; 21257 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21258 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21259 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21260 tmp = 0x0; 21261 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 21262 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 21263 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 21264 if (!Check(S, DecodeAddrMode5Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21265 tmp = fieldFromInstruction(insn, 28, 4); 21266 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21267 return S; 21268 case 452: 21269 tmp = 0x0; 21270 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21271 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21272 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21273 tmp = 0x0; 21274 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21275 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21276 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21277 tmp = 0x0; 21278 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21279 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21280 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21281 tmp = 0x0; 21282 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21283 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21284 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21285 tmp = fieldFromInstruction(insn, 28, 4); 21286 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21287 return S; 21288 case 453: 21289 tmp = 0x0; 21290 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21291 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21292 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21293 tmp = 0x0; 21294 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21295 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21296 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21297 tmp = 0x0; 21298 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21299 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21300 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21301 tmp = fieldFromInstruction(insn, 28, 4); 21302 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21303 return S; 21304 case 454: 21305 tmp = 0x0; 21306 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21307 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21308 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21309 tmp = fieldFromInstruction(insn, 12, 4); 21310 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21311 tmp = fieldFromInstruction(insn, 28, 4); 21312 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21313 return S; 21314 case 455: 21315 if (!Check(S, DecodeVMOVRRS(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21316 return S; 21317 case 456: 21318 if (!Check(S, DecodeVSCCLRM(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21319 return S; 21320 case 457: 21321 tmp = fieldFromInstruction(insn, 12, 4); 21322 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21323 tmp = 0x0; 21324 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21325 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21326 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21327 tmp = fieldFromInstruction(insn, 28, 4); 21328 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21329 return S; 21330 case 458: 21331 tmp = fieldFromInstruction(insn, 16, 4); 21332 if (!Check(S, DecodeGPRnopcRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21333 tmp = fieldFromInstruction(insn, 28, 4); 21334 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21335 return S; 21336 case 459: 21337 tmp = fieldFromInstruction(insn, 16, 4); 21338 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21339 tmp = fieldFromInstruction(insn, 16, 4); 21340 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21341 tmp = fieldFromInstruction(insn, 28, 4); 21342 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21343 tmp = 0x0; 21344 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 21345 tmp |= fieldFromInstruction(insn, 12, 4) << 9; 21346 tmp |= fieldFromInstruction(insn, 22, 1) << 8; 21347 if (!Check(S, DecodeSPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21348 return S; 21349 case 460: 21350 if (!Check(S, DecodeForVMRSandVMSR(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21351 return S; 21352 case 461: 21353 tmp = 0x0; 21354 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21355 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21356 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21357 tmp = 0x0; 21358 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21359 tmp |= fieldFromInstruction(insn, 16, 4) << 4; 21360 MI.addOperand(MCOperand::createImm(tmp)); 21361 tmp = fieldFromInstruction(insn, 28, 4); 21362 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21363 return S; 21364 case 462: 21365 tmp = 0x0; 21366 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21367 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21368 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21369 tmp = fieldFromInstruction(insn, 28, 4); 21370 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21371 return S; 21372 case 463: 21373 tmp = 0x0; 21374 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21375 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21376 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21377 tmp = 0x0; 21378 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21379 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21380 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21381 tmp = fieldFromInstruction(insn, 28, 4); 21382 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21383 return S; 21384 case 464: 21385 tmp = 0x0; 21386 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21387 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21388 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21389 tmp = fieldFromInstruction(insn, 12, 4); 21390 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21391 tmp = fieldFromInstruction(insn, 16, 4); 21392 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21393 tmp = fieldFromInstruction(insn, 28, 4); 21394 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21395 return S; 21396 case 465: 21397 tmp = fieldFromInstruction(insn, 16, 4); 21398 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21399 tmp = fieldFromInstruction(insn, 28, 4); 21400 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21401 tmp = 0x0; 21402 tmp |= fieldFromInstruction(insn, 1, 7) << 1; 21403 tmp |= fieldFromInstruction(insn, 12, 4) << 8; 21404 tmp |= fieldFromInstruction(insn, 22, 1) << 12; 21405 if (!Check(S, DecodeDPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21406 return S; 21407 case 466: 21408 tmp = fieldFromInstruction(insn, 16, 4); 21409 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21410 tmp = fieldFromInstruction(insn, 28, 4); 21411 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21412 tmp = 0x0; 21413 tmp |= fieldFromInstruction(insn, 1, 7) << 1; 21414 tmp |= fieldFromInstruction(insn, 12, 4) << 8; 21415 if (!Check(S, DecodeDPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21416 return S; 21417 case 467: 21418 tmp = 0x0; 21419 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21420 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21421 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21422 tmp = 0x0; 21423 tmp |= fieldFromInstruction(insn, 0, 8) << 0; 21424 tmp |= fieldFromInstruction(insn, 16, 4) << 9; 21425 tmp |= fieldFromInstruction(insn, 23, 1) << 8; 21426 if (!Check(S, DecodeAddrMode5Operand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21427 tmp = fieldFromInstruction(insn, 28, 4); 21428 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21429 return S; 21430 case 468: 21431 tmp = 0x0; 21432 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21433 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21434 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21435 tmp = 0x0; 21436 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21437 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21438 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21439 tmp = 0x0; 21440 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21441 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21442 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21443 tmp = 0x0; 21444 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21445 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21446 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21447 tmp = fieldFromInstruction(insn, 28, 4); 21448 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21449 return S; 21450 case 469: 21451 tmp = 0x0; 21452 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21453 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21454 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21455 tmp = 0x0; 21456 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21457 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21458 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21459 tmp = 0x0; 21460 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21461 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21462 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21463 tmp = fieldFromInstruction(insn, 28, 4); 21464 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21465 return S; 21466 case 470: 21467 tmp = fieldFromInstruction(insn, 12, 4); 21468 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21469 tmp = fieldFromInstruction(insn, 16, 4); 21470 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21471 tmp = 0x0; 21472 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21473 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21474 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21475 tmp = fieldFromInstruction(insn, 28, 4); 21476 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21477 return S; 21478 case 471: 21479 tmp = fieldFromInstruction(insn, 16, 4); 21480 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21481 tmp = fieldFromInstruction(insn, 16, 4); 21482 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21483 tmp = fieldFromInstruction(insn, 28, 4); 21484 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21485 tmp = 0x0; 21486 tmp |= fieldFromInstruction(insn, 1, 7) << 1; 21487 tmp |= fieldFromInstruction(insn, 12, 4) << 8; 21488 tmp |= fieldFromInstruction(insn, 22, 1) << 12; 21489 if (!Check(S, DecodeDPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21490 return S; 21491 case 472: 21492 tmp = fieldFromInstruction(insn, 16, 4); 21493 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21494 tmp = fieldFromInstruction(insn, 16, 4); 21495 if (!Check(S, DecodeGPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21496 tmp = fieldFromInstruction(insn, 28, 4); 21497 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21498 tmp = 0x0; 21499 tmp |= fieldFromInstruction(insn, 1, 7) << 1; 21500 tmp |= fieldFromInstruction(insn, 12, 4) << 8; 21501 if (!Check(S, DecodeDPRRegListOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21502 return S; 21503 case 473: 21504 tmp = 0x0; 21505 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21506 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21507 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21508 tmp = 0x0; 21509 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21510 tmp |= fieldFromInstruction(insn, 16, 4) << 4; 21511 MI.addOperand(MCOperand::createImm(tmp)); 21512 tmp = fieldFromInstruction(insn, 28, 4); 21513 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21514 return S; 21515 case 474: 21516 tmp = 0x0; 21517 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21518 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21519 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21520 tmp = 0x0; 21521 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21522 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21523 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21524 tmp = fieldFromInstruction(insn, 28, 4); 21525 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21526 return S; 21527 case 475: 21528 tmp = 0x0; 21529 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21530 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21531 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21532 tmp = 0x0; 21533 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21534 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21535 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21536 tmp = fieldFromInstruction(insn, 28, 4); 21537 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21538 return S; 21539 case 476: 21540 tmp = 0x0; 21541 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21542 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21543 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21544 tmp = fieldFromInstruction(insn, 28, 4); 21545 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21546 return S; 21547 case 477: 21548 tmp = 0x0; 21549 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21550 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21551 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21552 tmp = 0x0; 21553 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21554 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21555 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21556 tmp = 0x0; 21557 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21558 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21559 MI.addOperand(MCOperand::createImm(tmp)); 21560 tmp = fieldFromInstruction(insn, 28, 4); 21561 if (!Check(S, DecodePredicateOperand(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21562 return S; 21563 case 478: 21564 if (!Check(S, DecodeVSTRVLDR_SYSREG<false>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21565 return S; 21566 case 479: 21567 if (!Check(S, DecodeVSTRVLDR_SYSREG<true>(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21568 return S; 21569 case 480: 21570 tmp = 0x0; 21571 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21572 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21573 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21574 tmp = 0x0; 21575 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21576 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21577 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21578 tmp = 0x0; 21579 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21580 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21581 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21582 tmp = fieldFromInstruction(insn, 24, 1); 21583 MI.addOperand(MCOperand::createImm(tmp)); 21584 return S; 21585 case 481: 21586 tmp = 0x0; 21587 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21588 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21589 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21590 tmp = 0x0; 21591 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21592 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21593 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21594 tmp = 0x0; 21595 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21596 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21597 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21598 tmp = 0x0; 21599 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21600 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21601 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21602 tmp = fieldFromInstruction(insn, 23, 2); 21603 MI.addOperand(MCOperand::createImm(tmp)); 21604 return S; 21605 case 482: 21606 tmp = 0x0; 21607 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21608 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21609 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21610 tmp = 0x0; 21611 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21612 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21613 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21614 tmp = 0x0; 21615 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21616 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21617 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21618 tmp = fieldFromInstruction(insn, 0, 4); 21619 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21620 tmp = fieldFromInstruction(insn, 5, 1); 21621 MI.addOperand(MCOperand::createImm(tmp)); 21622 tmp = fieldFromInstruction(insn, 20, 2); 21623 MI.addOperand(MCOperand::createImm(tmp)); 21624 return S; 21625 case 483: 21626 if (!Check(S, DecodeNEONComplexLane64Instruction(MI, insn, Address, Decoder))) { return MCDisassembler::Fail; } 21627 return S; 21628 case 484: 21629 tmp = 0x0; 21630 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21631 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21632 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21633 tmp = 0x0; 21634 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21635 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21636 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21637 tmp = 0x0; 21638 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21639 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21640 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21641 tmp = fieldFromInstruction(insn, 24, 1); 21642 MI.addOperand(MCOperand::createImm(tmp)); 21643 return S; 21644 case 485: 21645 tmp = 0x0; 21646 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21647 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21648 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21649 tmp = 0x0; 21650 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21651 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21652 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21653 tmp = 0x0; 21654 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21655 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21656 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21657 tmp = 0x0; 21658 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21659 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21660 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21661 tmp = fieldFromInstruction(insn, 23, 2); 21662 MI.addOperand(MCOperand::createImm(tmp)); 21663 return S; 21664 case 486: 21665 tmp = 0x0; 21666 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21667 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21668 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21669 tmp = 0x0; 21670 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21671 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21672 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21673 tmp = 0x0; 21674 tmp |= fieldFromInstruction(insn, 7, 1) << 4; 21675 tmp |= fieldFromInstruction(insn, 16, 4) << 0; 21676 if (!Check(S, DecodeQPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21677 tmp = fieldFromInstruction(insn, 0, 4); 21678 if (!Check(S, DecodeDPR_VFP2RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21679 tmp = fieldFromInstruction(insn, 5, 1); 21680 MI.addOperand(MCOperand::createImm(tmp)); 21681 tmp = fieldFromInstruction(insn, 20, 2); 21682 MI.addOperand(MCOperand::createImm(tmp)); 21683 return S; 21684 case 487: 21685 tmp = 0x0; 21686 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21687 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21688 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21689 tmp = 0x0; 21690 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21691 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21692 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21693 tmp = 0x0; 21694 tmp |= fieldFromInstruction(insn, 0, 3) << 1; 21695 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21696 if (!Check(S, DecodeSPR_8RegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21697 tmp = fieldFromInstruction(insn, 3, 1); 21698 MI.addOperand(MCOperand::createImm(tmp)); 21699 return S; 21700 case 488: 21701 tmp = 0x0; 21702 tmp |= fieldFromInstruction(insn, 12, 4) << 0; 21703 tmp |= fieldFromInstruction(insn, 22, 1) << 4; 21704 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21705 tmp = 0x0; 21706 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21707 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21708 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21709 tmp = 0x0; 21710 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21711 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21712 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21713 return S; 21714 case 489: 21715 tmp = 0x0; 21716 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21717 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21718 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21719 tmp = 0x0; 21720 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21721 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21722 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21723 tmp = 0x0; 21724 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21725 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21726 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21727 return S; 21728 case 490: 21729 tmp = 0x0; 21730 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21731 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21732 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21733 tmp = 0x0; 21734 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21735 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21736 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21737 return S; 21738 case 491: 21739 tmp = 0x0; 21740 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21741 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21742 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21743 tmp = 0x0; 21744 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21745 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21746 if (!Check(S, DecodeHPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21747 return S; 21748 case 492: 21749 tmp = 0x0; 21750 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21751 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21752 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21753 tmp = 0x0; 21754 tmp |= fieldFromInstruction(insn, 7, 1) << 0; 21755 tmp |= fieldFromInstruction(insn, 16, 4) << 1; 21756 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21757 tmp = 0x0; 21758 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21759 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21760 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21761 return S; 21762 case 493: 21763 tmp = 0x0; 21764 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21765 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21766 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21767 tmp = 0x0; 21768 tmp |= fieldFromInstruction(insn, 0, 4) << 1; 21769 tmp |= fieldFromInstruction(insn, 5, 1) << 0; 21770 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21771 return S; 21772 case 494: 21773 tmp = 0x0; 21774 tmp |= fieldFromInstruction(insn, 12, 4) << 1; 21775 tmp |= fieldFromInstruction(insn, 22, 1) << 0; 21776 if (!Check(S, DecodeSPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21777 tmp = 0x0; 21778 tmp |= fieldFromInstruction(insn, 0, 4) << 0; 21779 tmp |= fieldFromInstruction(insn, 5, 1) << 4; 21780 if (!Check(S, DecodeDPRRegisterClass(MI, tmp, Address, Decoder))) { return MCDisassembler::Fail; } 21781 return S; 21782 } 21783} 21784 21785template<typename InsnType> 21786static DecodeStatus decodeInstruction(const uint8_t DecodeTable[], MCInst &MI, 21787 InsnType insn, uint64_t Address, 21788 const void *DisAsm, 21789 const MCSubtargetInfo &STI) { 21790 const FeatureBitset& Bits = STI.getFeatureBits(); 21791 21792 const uint8_t *Ptr = DecodeTable; 21793 InsnType CurFieldValue = 0; 21794 DecodeStatus S = MCDisassembler::Success; 21795 while (true) { 21796 ptrdiff_t Loc = Ptr - DecodeTable; 21797 switch (*Ptr) { 21798 default: 21799 errs() << Loc << ": Unexpected decode table opcode!\n"; 21800 return MCDisassembler::Fail; 21801 case MCD::OPC_ExtractField: { 21802 unsigned Start = *++Ptr; 21803 unsigned Len = *++Ptr; 21804 ++Ptr; 21805 CurFieldValue = fieldFromInstruction(insn, Start, Len); 21806 LLVM_DEBUG(dbgs() << Loc << ": OPC_ExtractField(" << Start << ", " 21807 << Len << "): " << CurFieldValue << "\n"); 21808 break; 21809 } 21810 case MCD::OPC_FilterValue: { 21811 // Decode the field value. 21812 unsigned Len; 21813 InsnType Val = decodeULEB128(++Ptr, &Len); 21814 Ptr += Len; 21815 // NumToSkip is a plain 24-bit integer. 21816 unsigned NumToSkip = *Ptr++; 21817 NumToSkip |= (*Ptr++) << 8; 21818 NumToSkip |= (*Ptr++) << 16; 21819 21820 // Perform the filter operation. 21821 if (Val != CurFieldValue) 21822 Ptr += NumToSkip; 21823 LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip 21824 << "): " << ((Val != CurFieldValue) ? "FAIL:" : "PASS:") 21825 << " continuing at " << (Ptr - DecodeTable) << "\n"); 21826 21827 break; 21828 } 21829 case MCD::OPC_CheckField: { 21830 unsigned Start = *++Ptr; 21831 unsigned Len = *++Ptr; 21832 InsnType FieldValue = fieldFromInstruction(insn, Start, Len); 21833 // Decode the field value. 21834 InsnType ExpectedValue = decodeULEB128(++Ptr, &Len); 21835 Ptr += Len; 21836 // NumToSkip is a plain 24-bit integer. 21837 unsigned NumToSkip = *Ptr++; 21838 NumToSkip |= (*Ptr++) << 8; 21839 NumToSkip |= (*Ptr++) << 16; 21840 21841 // If the actual and expected values don't match, skip. 21842 if (ExpectedValue != FieldValue) 21843 Ptr += NumToSkip; 21844 LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckField(" << Start << ", " 21845 << Len << ", " << ExpectedValue << ", " << NumToSkip 21846 << "): FieldValue = " << FieldValue << ", ExpectedValue = " 21847 << ExpectedValue << ": " 21848 << ((ExpectedValue == FieldValue) ? "PASS\n" : "FAIL\n")); 21849 break; 21850 } 21851 case MCD::OPC_CheckPredicate: { 21852 unsigned Len; 21853 // Decode the Predicate Index value. 21854 unsigned PIdx = decodeULEB128(++Ptr, &Len); 21855 Ptr += Len; 21856 // NumToSkip is a plain 24-bit integer. 21857 unsigned NumToSkip = *Ptr++; 21858 NumToSkip |= (*Ptr++) << 8; 21859 NumToSkip |= (*Ptr++) << 16; 21860 // Check the predicate. 21861 bool Pred; 21862 if (!(Pred = checkDecoderPredicate(PIdx, Bits))) 21863 Ptr += NumToSkip; 21864 (void)Pred; 21865 LLVM_DEBUG(dbgs() << Loc << ": OPC_CheckPredicate(" << PIdx << "): " 21866 << (Pred ? "PASS\n" : "FAIL\n")); 21867 21868 break; 21869 } 21870 case MCD::OPC_Decode: { 21871 unsigned Len; 21872 // Decode the Opcode value. 21873 unsigned Opc = decodeULEB128(++Ptr, &Len); 21874 Ptr += Len; 21875 unsigned DecodeIdx = decodeULEB128(Ptr, &Len); 21876 Ptr += Len; 21877 21878 MI.clear(); 21879 MI.setOpcode(Opc); 21880 bool DecodeComplete; 21881 S = decodeToMCInst(S, DecodeIdx, insn, MI, Address, DisAsm, DecodeComplete); 21882 assert(DecodeComplete); 21883 21884 LLVM_DEBUG(dbgs() << Loc << ": OPC_Decode: opcode " << Opc 21885 << ", using decoder " << DecodeIdx << ": " 21886 << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n"); 21887 return S; 21888 } 21889 case MCD::OPC_TryDecode: { 21890 unsigned Len; 21891 // Decode the Opcode value. 21892 unsigned Opc = decodeULEB128(++Ptr, &Len); 21893 Ptr += Len; 21894 unsigned DecodeIdx = decodeULEB128(Ptr, &Len); 21895 Ptr += Len; 21896 // NumToSkip is a plain 24-bit integer. 21897 unsigned NumToSkip = *Ptr++; 21898 NumToSkip |= (*Ptr++) << 8; 21899 NumToSkip |= (*Ptr++) << 16; 21900 21901 // Perform the decode operation. 21902 MCInst TmpMI; 21903 TmpMI.setOpcode(Opc); 21904 bool DecodeComplete; 21905 S = decodeToMCInst(S, DecodeIdx, insn, TmpMI, Address, DisAsm, DecodeComplete); 21906 LLVM_DEBUG(dbgs() << Loc << ": OPC_TryDecode: opcode " << Opc 21907 << ", using decoder " << DecodeIdx << ": "); 21908 21909 if (DecodeComplete) { 21910 // Decoding complete. 21911 LLVM_DEBUG(dbgs() << (S != MCDisassembler::Fail ? "PASS" : "FAIL") << "\n"); 21912 MI = TmpMI; 21913 return S; 21914 } else { 21915 assert(S == MCDisassembler::Fail); 21916 // If the decoding was incomplete, skip. 21917 Ptr += NumToSkip; 21918 LLVM_DEBUG(dbgs() << "FAIL: continuing at " << (Ptr - DecodeTable) << "\n"); 21919 // Reset decode status. This also drops a SoftFail status that could be 21920 // set before the decode attempt. 21921 S = MCDisassembler::Success; 21922 } 21923 break; 21924 } 21925 case MCD::OPC_SoftFail: { 21926 // Decode the mask values. 21927 unsigned Len; 21928 InsnType PositiveMask = decodeULEB128(++Ptr, &Len); 21929 Ptr += Len; 21930 InsnType NegativeMask = decodeULEB128(Ptr, &Len); 21931 Ptr += Len; 21932 bool Fail = (insn & PositiveMask) || (~insn & NegativeMask); 21933 if (Fail) 21934 S = MCDisassembler::SoftFail; 21935 LLVM_DEBUG(dbgs() << Loc << ": OPC_SoftFail: " << (Fail ? "FAIL\n":"PASS\n")); 21936 break; 21937 } 21938 case MCD::OPC_Fail: { 21939 LLVM_DEBUG(dbgs() << Loc << ": OPC_Fail\n"); 21940 return MCDisassembler::Fail; 21941 } 21942 } 21943 } 21944 llvm_unreachable("bogosity detected in disassembler state machine!"); 21945} 21946 21947 21948} // end namespace llvm 21949