Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 1 | //===------ PPCDisassembler.cpp - Disassembler for PowerPC ------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "PPC.h" |
| 11 | #include "llvm/MC/MCDisassembler.h" |
| 12 | #include "llvm/MC/MCFixedLenDisassembler.h" |
| 13 | #include "llvm/MC/MCInst.h" |
| 14 | #include "llvm/MC/MCSubtargetInfo.h" |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 15 | #include "llvm/Support/TargetRegistry.h" |
| 16 | |
| 17 | using namespace llvm; |
| 18 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 19 | #define DEBUG_TYPE "ppc-disassembler" |
| 20 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 21 | typedef MCDisassembler::DecodeStatus DecodeStatus; |
| 22 | |
| 23 | namespace { |
| 24 | class PPCDisassembler : public MCDisassembler { |
| 25 | public: |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 26 | PPCDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx) |
| 27 | : MCDisassembler(STI, Ctx) {} |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 28 | virtual ~PPCDisassembler() {} |
| 29 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 30 | DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 31 | ArrayRef<uint8_t> Bytes, uint64_t Address, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 32 | raw_ostream &VStream, |
| 33 | raw_ostream &CStream) const override; |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 34 | }; |
| 35 | } // end anonymous namespace |
| 36 | |
| 37 | static MCDisassembler *createPPCDisassembler(const Target &T, |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 38 | const MCSubtargetInfo &STI, |
| 39 | MCContext &Ctx) { |
| 40 | return new PPCDisassembler(STI, Ctx); |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | extern "C" void LLVMInitializePowerPCDisassembler() { |
| 44 | // Register the disassembler for each target. |
| 45 | TargetRegistry::RegisterMCDisassembler(ThePPC32Target, |
| 46 | createPPCDisassembler); |
| 47 | TargetRegistry::RegisterMCDisassembler(ThePPC64Target, |
| 48 | createPPCDisassembler); |
| 49 | TargetRegistry::RegisterMCDisassembler(ThePPC64LETarget, |
| 50 | createPPCDisassembler); |
| 51 | } |
| 52 | |
| 53 | // FIXME: These can be generated by TableGen from the existing register |
| 54 | // encoding values! |
| 55 | |
| 56 | static const unsigned CRRegs[] = { |
| 57 | PPC::CR0, PPC::CR1, PPC::CR2, PPC::CR3, |
| 58 | PPC::CR4, PPC::CR5, PPC::CR6, PPC::CR7 |
| 59 | }; |
| 60 | |
| 61 | static const unsigned CRBITRegs[] = { |
| 62 | PPC::CR0LT, PPC::CR0GT, PPC::CR0EQ, PPC::CR0UN, |
| 63 | PPC::CR1LT, PPC::CR1GT, PPC::CR1EQ, PPC::CR1UN, |
| 64 | PPC::CR2LT, PPC::CR2GT, PPC::CR2EQ, PPC::CR2UN, |
| 65 | PPC::CR3LT, PPC::CR3GT, PPC::CR3EQ, PPC::CR3UN, |
| 66 | PPC::CR4LT, PPC::CR4GT, PPC::CR4EQ, PPC::CR4UN, |
| 67 | PPC::CR5LT, PPC::CR5GT, PPC::CR5EQ, PPC::CR5UN, |
| 68 | PPC::CR6LT, PPC::CR6GT, PPC::CR6EQ, PPC::CR6UN, |
| 69 | PPC::CR7LT, PPC::CR7GT, PPC::CR7EQ, PPC::CR7UN |
| 70 | }; |
| 71 | |
| 72 | static const unsigned FRegs[] = { |
| 73 | PPC::F0, PPC::F1, PPC::F2, PPC::F3, |
| 74 | PPC::F4, PPC::F5, PPC::F6, PPC::F7, |
| 75 | PPC::F8, PPC::F9, PPC::F10, PPC::F11, |
| 76 | PPC::F12, PPC::F13, PPC::F14, PPC::F15, |
| 77 | PPC::F16, PPC::F17, PPC::F18, PPC::F19, |
| 78 | PPC::F20, PPC::F21, PPC::F22, PPC::F23, |
| 79 | PPC::F24, PPC::F25, PPC::F26, PPC::F27, |
| 80 | PPC::F28, PPC::F29, PPC::F30, PPC::F31 |
| 81 | }; |
| 82 | |
| 83 | static const unsigned VRegs[] = { |
| 84 | PPC::V0, PPC::V1, PPC::V2, PPC::V3, |
| 85 | PPC::V4, PPC::V5, PPC::V6, PPC::V7, |
| 86 | PPC::V8, PPC::V9, PPC::V10, PPC::V11, |
| 87 | PPC::V12, PPC::V13, PPC::V14, PPC::V15, |
| 88 | PPC::V16, PPC::V17, PPC::V18, PPC::V19, |
| 89 | PPC::V20, PPC::V21, PPC::V22, PPC::V23, |
| 90 | PPC::V24, PPC::V25, PPC::V26, PPC::V27, |
| 91 | PPC::V28, PPC::V29, PPC::V30, PPC::V31 |
| 92 | }; |
| 93 | |
Hal Finkel | 27774d9 | 2014-03-13 07:58:58 +0000 | [diff] [blame] | 94 | static const unsigned VSRegs[] = { |
| 95 | PPC::VSL0, PPC::VSL1, PPC::VSL2, PPC::VSL3, |
| 96 | PPC::VSL4, PPC::VSL5, PPC::VSL6, PPC::VSL7, |
| 97 | PPC::VSL8, PPC::VSL9, PPC::VSL10, PPC::VSL11, |
| 98 | PPC::VSL12, PPC::VSL13, PPC::VSL14, PPC::VSL15, |
| 99 | PPC::VSL16, PPC::VSL17, PPC::VSL18, PPC::VSL19, |
| 100 | PPC::VSL20, PPC::VSL21, PPC::VSL22, PPC::VSL23, |
| 101 | PPC::VSL24, PPC::VSL25, PPC::VSL26, PPC::VSL27, |
| 102 | PPC::VSL28, PPC::VSL29, PPC::VSL30, PPC::VSL31, |
| 103 | |
| 104 | PPC::VSH0, PPC::VSH1, PPC::VSH2, PPC::VSH3, |
| 105 | PPC::VSH4, PPC::VSH5, PPC::VSH6, PPC::VSH7, |
| 106 | PPC::VSH8, PPC::VSH9, PPC::VSH10, PPC::VSH11, |
| 107 | PPC::VSH12, PPC::VSH13, PPC::VSH14, PPC::VSH15, |
| 108 | PPC::VSH16, PPC::VSH17, PPC::VSH18, PPC::VSH19, |
| 109 | PPC::VSH20, PPC::VSH21, PPC::VSH22, PPC::VSH23, |
| 110 | PPC::VSH24, PPC::VSH25, PPC::VSH26, PPC::VSH27, |
| 111 | PPC::VSH28, PPC::VSH29, PPC::VSH30, PPC::VSH31 |
| 112 | }; |
| 113 | |
Hal Finkel | 19be506 | 2014-03-29 05:29:01 +0000 | [diff] [blame] | 114 | static const unsigned VSFRegs[] = { |
| 115 | PPC::F0, PPC::F1, PPC::F2, PPC::F3, |
| 116 | PPC::F4, PPC::F5, PPC::F6, PPC::F7, |
| 117 | PPC::F8, PPC::F9, PPC::F10, PPC::F11, |
| 118 | PPC::F12, PPC::F13, PPC::F14, PPC::F15, |
| 119 | PPC::F16, PPC::F17, PPC::F18, PPC::F19, |
| 120 | PPC::F20, PPC::F21, PPC::F22, PPC::F23, |
| 121 | PPC::F24, PPC::F25, PPC::F26, PPC::F27, |
| 122 | PPC::F28, PPC::F29, PPC::F30, PPC::F31, |
| 123 | |
| 124 | PPC::VF0, PPC::VF1, PPC::VF2, PPC::VF3, |
| 125 | PPC::VF4, PPC::VF5, PPC::VF6, PPC::VF7, |
| 126 | PPC::VF8, PPC::VF9, PPC::VF10, PPC::VF11, |
| 127 | PPC::VF12, PPC::VF13, PPC::VF14, PPC::VF15, |
| 128 | PPC::VF16, PPC::VF17, PPC::VF18, PPC::VF19, |
| 129 | PPC::VF20, PPC::VF21, PPC::VF22, PPC::VF23, |
| 130 | PPC::VF24, PPC::VF25, PPC::VF26, PPC::VF27, |
| 131 | PPC::VF28, PPC::VF29, PPC::VF30, PPC::VF31 |
| 132 | }; |
| 133 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 134 | static const unsigned GPRegs[] = { |
| 135 | PPC::R0, PPC::R1, PPC::R2, PPC::R3, |
| 136 | PPC::R4, PPC::R5, PPC::R6, PPC::R7, |
| 137 | PPC::R8, PPC::R9, PPC::R10, PPC::R11, |
| 138 | PPC::R12, PPC::R13, PPC::R14, PPC::R15, |
| 139 | PPC::R16, PPC::R17, PPC::R18, PPC::R19, |
| 140 | PPC::R20, PPC::R21, PPC::R22, PPC::R23, |
| 141 | PPC::R24, PPC::R25, PPC::R26, PPC::R27, |
| 142 | PPC::R28, PPC::R29, PPC::R30, PPC::R31 |
| 143 | }; |
| 144 | |
| 145 | static const unsigned GP0Regs[] = { |
| 146 | PPC::ZERO, PPC::R1, PPC::R2, PPC::R3, |
| 147 | PPC::R4, PPC::R5, PPC::R6, PPC::R7, |
| 148 | PPC::R8, PPC::R9, PPC::R10, PPC::R11, |
| 149 | PPC::R12, PPC::R13, PPC::R14, PPC::R15, |
| 150 | PPC::R16, PPC::R17, PPC::R18, PPC::R19, |
| 151 | PPC::R20, PPC::R21, PPC::R22, PPC::R23, |
| 152 | PPC::R24, PPC::R25, PPC::R26, PPC::R27, |
| 153 | PPC::R28, PPC::R29, PPC::R30, PPC::R31 |
| 154 | }; |
| 155 | |
| 156 | static const unsigned G8Regs[] = { |
| 157 | PPC::X0, PPC::X1, PPC::X2, PPC::X3, |
| 158 | PPC::X4, PPC::X5, PPC::X6, PPC::X7, |
| 159 | PPC::X8, PPC::X9, PPC::X10, PPC::X11, |
| 160 | PPC::X12, PPC::X13, PPC::X14, PPC::X15, |
| 161 | PPC::X16, PPC::X17, PPC::X18, PPC::X19, |
| 162 | PPC::X20, PPC::X21, PPC::X22, PPC::X23, |
| 163 | PPC::X24, PPC::X25, PPC::X26, PPC::X27, |
| 164 | PPC::X28, PPC::X29, PPC::X30, PPC::X31 |
| 165 | }; |
| 166 | |
Hal Finkel | c93a9a2 | 2015-02-25 01:06:45 +0000 | [diff] [blame] | 167 | static const unsigned QFRegs[] = { |
| 168 | PPC::QF0, PPC::QF1, PPC::QF2, PPC::QF3, |
| 169 | PPC::QF4, PPC::QF5, PPC::QF6, PPC::QF7, |
| 170 | PPC::QF8, PPC::QF9, PPC::QF10, PPC::QF11, |
| 171 | PPC::QF12, PPC::QF13, PPC::QF14, PPC::QF15, |
| 172 | PPC::QF16, PPC::QF17, PPC::QF18, PPC::QF19, |
| 173 | PPC::QF20, PPC::QF21, PPC::QF22, PPC::QF23, |
| 174 | PPC::QF24, PPC::QF25, PPC::QF26, PPC::QF27, |
| 175 | PPC::QF28, PPC::QF29, PPC::QF30, PPC::QF31 |
| 176 | }; |
| 177 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 178 | template <std::size_t N> |
| 179 | static DecodeStatus decodeRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 180 | const unsigned (&Regs)[N]) { |
| 181 | assert(RegNo < N && "Invalid register number"); |
| 182 | Inst.addOperand(MCOperand::CreateReg(Regs[RegNo])); |
| 183 | return MCDisassembler::Success; |
| 184 | } |
| 185 | |
| 186 | static DecodeStatus DecodeCRRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 187 | uint64_t Address, |
| 188 | const void *Decoder) { |
| 189 | return decodeRegisterClass(Inst, RegNo, CRRegs); |
| 190 | } |
| 191 | |
Kit Barton | 535e69d | 2015-03-25 19:36:23 +0000 | [diff] [blame^] | 192 | static DecodeStatus DecodeCRRC0RegisterClass(MCInst &Inst, uint64_t RegNo, |
| 193 | uint64_t Address, |
| 194 | const void *Decoder) { |
| 195 | return decodeRegisterClass(Inst, RegNo, CRRegs); |
| 196 | } |
| 197 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 198 | static DecodeStatus DecodeCRBITRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 199 | uint64_t Address, |
| 200 | const void *Decoder) { |
| 201 | return decodeRegisterClass(Inst, RegNo, CRBITRegs); |
| 202 | } |
| 203 | |
| 204 | static DecodeStatus DecodeF4RCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 205 | uint64_t Address, |
| 206 | const void *Decoder) { |
| 207 | return decodeRegisterClass(Inst, RegNo, FRegs); |
| 208 | } |
| 209 | |
| 210 | static DecodeStatus DecodeF8RCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 211 | uint64_t Address, |
| 212 | const void *Decoder) { |
| 213 | return decodeRegisterClass(Inst, RegNo, FRegs); |
| 214 | } |
| 215 | |
| 216 | static DecodeStatus DecodeVRRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 217 | uint64_t Address, |
| 218 | const void *Decoder) { |
| 219 | return decodeRegisterClass(Inst, RegNo, VRegs); |
| 220 | } |
| 221 | |
Hal Finkel | 27774d9 | 2014-03-13 07:58:58 +0000 | [diff] [blame] | 222 | static DecodeStatus DecodeVSRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 223 | uint64_t Address, |
| 224 | const void *Decoder) { |
| 225 | return decodeRegisterClass(Inst, RegNo, VSRegs); |
| 226 | } |
| 227 | |
Hal Finkel | 19be506 | 2014-03-29 05:29:01 +0000 | [diff] [blame] | 228 | static DecodeStatus DecodeVSFRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 229 | uint64_t Address, |
| 230 | const void *Decoder) { |
| 231 | return decodeRegisterClass(Inst, RegNo, VSFRegs); |
| 232 | } |
| 233 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 234 | static DecodeStatus DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 235 | uint64_t Address, |
| 236 | const void *Decoder) { |
| 237 | return decodeRegisterClass(Inst, RegNo, GPRegs); |
| 238 | } |
| 239 | |
| 240 | static DecodeStatus DecodeGPRC_NOR0RegisterClass(MCInst &Inst, uint64_t RegNo, |
| 241 | uint64_t Address, |
| 242 | const void *Decoder) { |
| 243 | return decodeRegisterClass(Inst, RegNo, GP0Regs); |
| 244 | } |
| 245 | |
| 246 | static DecodeStatus DecodeG8RCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 247 | uint64_t Address, |
| 248 | const void *Decoder) { |
| 249 | return decodeRegisterClass(Inst, RegNo, G8Regs); |
| 250 | } |
| 251 | |
| 252 | #define DecodePointerLikeRegClass0 DecodeGPRCRegisterClass |
| 253 | #define DecodePointerLikeRegClass1 DecodeGPRC_NOR0RegisterClass |
| 254 | |
Hal Finkel | c93a9a2 | 2015-02-25 01:06:45 +0000 | [diff] [blame] | 255 | static DecodeStatus DecodeQFRCRegisterClass(MCInst &Inst, uint64_t RegNo, |
| 256 | uint64_t Address, |
| 257 | const void *Decoder) { |
| 258 | return decodeRegisterClass(Inst, RegNo, QFRegs); |
| 259 | } |
| 260 | |
| 261 | #define DecodeQSRCRegisterClass DecodeQFRCRegisterClass |
| 262 | #define DecodeQBRCRegisterClass DecodeQFRCRegisterClass |
| 263 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 264 | template<unsigned N> |
| 265 | static DecodeStatus decodeUImmOperand(MCInst &Inst, uint64_t Imm, |
| 266 | int64_t Address, const void *Decoder) { |
| 267 | assert(isUInt<N>(Imm) && "Invalid immediate"); |
| 268 | Inst.addOperand(MCOperand::CreateImm(Imm)); |
| 269 | return MCDisassembler::Success; |
| 270 | } |
| 271 | |
| 272 | template<unsigned N> |
| 273 | static DecodeStatus decodeSImmOperand(MCInst &Inst, uint64_t Imm, |
| 274 | int64_t Address, const void *Decoder) { |
| 275 | assert(isUInt<N>(Imm) && "Invalid immediate"); |
| 276 | Inst.addOperand(MCOperand::CreateImm(SignExtend64<N>(Imm))); |
| 277 | return MCDisassembler::Success; |
| 278 | } |
| 279 | |
| 280 | static DecodeStatus decodeMemRIOperands(MCInst &Inst, uint64_t Imm, |
| 281 | int64_t Address, const void *Decoder) { |
| 282 | // Decode the memri field (imm, reg), which has the low 16-bits as the |
| 283 | // displacement and the next 5 bits as the register #. |
| 284 | |
| 285 | uint64_t Base = Imm >> 16; |
| 286 | uint64_t Disp = Imm & 0xFFFF; |
| 287 | |
| 288 | assert(Base < 32 && "Invalid base register"); |
| 289 | |
| 290 | switch (Inst.getOpcode()) { |
| 291 | default: break; |
| 292 | case PPC::LBZU: |
| 293 | case PPC::LHAU: |
| 294 | case PPC::LHZU: |
| 295 | case PPC::LWZU: |
| 296 | case PPC::LFSU: |
| 297 | case PPC::LFDU: |
| 298 | // Add the tied output operand. |
| 299 | Inst.addOperand(MCOperand::CreateReg(GP0Regs[Base])); |
| 300 | break; |
| 301 | case PPC::STBU: |
| 302 | case PPC::STHU: |
| 303 | case PPC::STWU: |
| 304 | case PPC::STFSU: |
| 305 | case PPC::STFDU: |
| 306 | Inst.insert(Inst.begin(), MCOperand::CreateReg(GP0Regs[Base])); |
| 307 | break; |
| 308 | } |
| 309 | |
| 310 | Inst.addOperand(MCOperand::CreateImm(SignExtend64<16>(Disp))); |
| 311 | Inst.addOperand(MCOperand::CreateReg(GP0Regs[Base])); |
| 312 | return MCDisassembler::Success; |
| 313 | } |
| 314 | |
| 315 | static DecodeStatus decodeMemRIXOperands(MCInst &Inst, uint64_t Imm, |
| 316 | int64_t Address, const void *Decoder) { |
| 317 | // Decode the memrix field (imm, reg), which has the low 14-bits as the |
| 318 | // displacement and the next 5 bits as the register #. |
| 319 | |
| 320 | uint64_t Base = Imm >> 14; |
| 321 | uint64_t Disp = Imm & 0x3FFF; |
| 322 | |
| 323 | assert(Base < 32 && "Invalid base register"); |
| 324 | |
| 325 | if (Inst.getOpcode() == PPC::LDU) |
| 326 | // Add the tied output operand. |
| 327 | Inst.addOperand(MCOperand::CreateReg(GP0Regs[Base])); |
| 328 | else if (Inst.getOpcode() == PPC::STDU) |
| 329 | Inst.insert(Inst.begin(), MCOperand::CreateReg(GP0Regs[Base])); |
| 330 | |
| 331 | Inst.addOperand(MCOperand::CreateImm(SignExtend64<16>(Disp << 2))); |
| 332 | Inst.addOperand(MCOperand::CreateReg(GP0Regs[Base])); |
| 333 | return MCDisassembler::Success; |
| 334 | } |
| 335 | |
| 336 | static DecodeStatus decodeCRBitMOperand(MCInst &Inst, uint64_t Imm, |
| 337 | int64_t Address, const void *Decoder) { |
| 338 | // The cr bit encoding is 0x80 >> cr_reg_num. |
| 339 | |
| 340 | unsigned Zeros = countTrailingZeros(Imm); |
| 341 | assert(Zeros < 8 && "Invalid CR bit value"); |
| 342 | |
| 343 | Inst.addOperand(MCOperand::CreateReg(CRRegs[7 - Zeros])); |
| 344 | return MCDisassembler::Success; |
| 345 | } |
| 346 | |
| 347 | #include "PPCGenDisassemblerTables.inc" |
| 348 | |
| 349 | DecodeStatus PPCDisassembler::getInstruction(MCInst &MI, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 350 | ArrayRef<uint8_t> Bytes, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 351 | uint64_t Address, raw_ostream &OS, |
| 352 | raw_ostream &CS) const { |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 353 | // Get the four bytes of the instruction. |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 354 | Size = 4; |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 355 | if (Bytes.size() < 4) { |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 356 | Size = 0; |
| 357 | return MCDisassembler::Fail; |
| 358 | } |
| 359 | |
| 360 | // The instruction is big-endian encoded. |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 361 | uint32_t Inst = |
| 362 | (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 8) | (Bytes[3] << 0); |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 363 | |
Michael Kuperstein | 29704e7 | 2015-03-24 12:56:59 +0000 | [diff] [blame] | 364 | if ((STI.getFeatureBits() & PPC::FeatureQPX) != 0) { |
Hal Finkel | c93a9a2 | 2015-02-25 01:06:45 +0000 | [diff] [blame] | 365 | DecodeStatus result = |
| 366 | decodeInstruction(DecoderTableQPX32, MI, Inst, Address, this, STI); |
| 367 | if (result != MCDisassembler::Fail) |
| 368 | return result; |
| 369 | |
| 370 | MI.clear(); |
| 371 | } |
| 372 | |
Hal Finkel | 2345347 | 2013-12-19 16:13:01 +0000 | [diff] [blame] | 373 | return decodeInstruction(DecoderTable32, MI, Inst, Address, this, STI); |
| 374 | } |
| 375 | |