NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 1 | //===-- HexagonDisassembler.cpp - Disassembler for Hexagon ISA ------------===// |
| 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 | |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 10 | #include "Hexagon.h" |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 11 | #include "MCTargetDesc/HexagonBaseInfo.h" |
Colin LeMahieu | 1174fea | 2015-02-19 21:10:50 +0000 | [diff] [blame] | 12 | #include "MCTargetDesc/HexagonMCInstrInfo.h" |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 13 | #include "MCTargetDesc/HexagonMCTargetDesc.h" |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 14 | |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCContext.h" |
| 16 | #include "llvm/MC/MCDisassembler.h" |
| 17 | #include "llvm/MC/MCExpr.h" |
| 18 | #include "llvm/MC/MCFixedLenDisassembler.h" |
| 19 | #include "llvm/MC/MCInst.h" |
| 20 | #include "llvm/MC/MCInstrDesc.h" |
| 21 | #include "llvm/MC/MCSubtargetInfo.h" |
| 22 | #include "llvm/Support/Debug.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Endian.h" |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" |
| 25 | #include "llvm/Support/LEB128.h" |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 26 | #include "llvm/Support/TargetRegistry.h" |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 28 | #include <array> |
Chandler Carruth | d990388 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 29 | #include <vector> |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 30 | |
| 31 | using namespace llvm; |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 32 | using namespace Hexagon; |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 33 | |
| 34 | #define DEBUG_TYPE "hexagon-disassembler" |
| 35 | |
| 36 | // Pull DecodeStatus and its enum values into the global namespace. |
| 37 | typedef llvm::MCDisassembler::DecodeStatus DecodeStatus; |
| 38 | |
| 39 | namespace { |
| 40 | /// \brief Hexagon disassembler for all Hexagon platforms. |
| 41 | class HexagonDisassembler : public MCDisassembler { |
| 42 | public: |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 43 | std::unique_ptr<MCInst *> CurrentBundle; |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 44 | HexagonDisassembler(MCSubtargetInfo const &STI, MCContext &Ctx) |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 45 | : MCDisassembler(STI, Ctx), CurrentBundle(new MCInst *) {} |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 46 | |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 47 | DecodeStatus getSingleInstruction(MCInst &Instr, MCInst &MCB, |
| 48 | ArrayRef<uint8_t> Bytes, uint64_t Address, |
| 49 | raw_ostream &VStream, raw_ostream &CStream, |
| 50 | bool &Complete) const; |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 51 | DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 52 | ArrayRef<uint8_t> Bytes, uint64_t Address, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 53 | raw_ostream &VStream, |
| 54 | raw_ostream &CStream) const override; |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 55 | }; |
Alexander Kornienko | 70bc5f1 | 2015-06-19 15:57:42 +0000 | [diff] [blame] | 56 | } // namespace |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 57 | |
Colin LeMahieu | ff370ed | 2014-12-26 20:30:58 +0000 | [diff] [blame] | 58 | static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 59 | uint64_t Address, |
| 60 | const void *Decoder); |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 61 | static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 62 | uint64_t Address, |
| 63 | const void *Decoder); |
Colin LeMahieu | 404d5b2 | 2015-02-10 16:59:36 +0000 | [diff] [blame] | 64 | static DecodeStatus DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 65 | uint64_t Address, |
| 66 | void const *Decoder); |
| 67 | |
| 68 | static unsigned GetSubinstOpcode(unsigned IClass, unsigned inst, unsigned &op, |
| 69 | raw_ostream &os); |
| 70 | static void AddSubinstOperands(MCInst *MI, unsigned opcode, unsigned inst); |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 71 | |
Colin LeMahieu | 1e9d1d7 | 2015-06-10 16:52:32 +0000 | [diff] [blame] | 72 | static DecodeStatus s16ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 73 | const void *Decoder); |
| 74 | static DecodeStatus s12ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 75 | const void *Decoder); |
| 76 | static DecodeStatus s11_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 77 | const void *Decoder); |
| 78 | static DecodeStatus s11_1ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 79 | const void *Decoder); |
| 80 | static DecodeStatus s11_2ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 81 | const void *Decoder); |
| 82 | static DecodeStatus s11_3ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 83 | const void *Decoder); |
| 84 | static DecodeStatus s10ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 85 | const void *Decoder); |
| 86 | static DecodeStatus s8ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 87 | const void *Decoder); |
| 88 | static DecodeStatus s6_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 89 | const void *Decoder); |
| 90 | static DecodeStatus s4_0ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 91 | const void *Decoder); |
| 92 | static DecodeStatus s4_1ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 93 | const void *Decoder); |
| 94 | static DecodeStatus s4_2ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 95 | const void *Decoder); |
| 96 | static DecodeStatus s4_3ImmDecoder(MCInst &MI, unsigned tmp, uint64_t Address, |
| 97 | const void *Decoder); |
| 98 | |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 99 | static const uint16_t IntRegDecoderTable[] = { |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 100 | Hexagon::R0, Hexagon::R1, Hexagon::R2, Hexagon::R3, Hexagon::R4, |
| 101 | Hexagon::R5, Hexagon::R6, Hexagon::R7, Hexagon::R8, Hexagon::R9, |
| 102 | Hexagon::R10, Hexagon::R11, Hexagon::R12, Hexagon::R13, Hexagon::R14, |
| 103 | Hexagon::R15, Hexagon::R16, Hexagon::R17, Hexagon::R18, Hexagon::R19, |
| 104 | Hexagon::R20, Hexagon::R21, Hexagon::R22, Hexagon::R23, Hexagon::R24, |
| 105 | Hexagon::R25, Hexagon::R26, Hexagon::R27, Hexagon::R28, Hexagon::R29, |
| 106 | Hexagon::R30, Hexagon::R31}; |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 107 | |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 108 | static const uint16_t PredRegDecoderTable[] = {Hexagon::P0, Hexagon::P1, |
| 109 | Hexagon::P2, Hexagon::P3}; |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 110 | |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 111 | static DecodeStatus DecodeRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 112 | const uint16_t Table[], size_t Size) { |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 113 | if (RegNo < Size) { |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 114 | Inst.addOperand(MCOperand::createReg(Table[RegNo])); |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 115 | return MCDisassembler::Success; |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 116 | } else |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 117 | return MCDisassembler::Fail; |
| 118 | } |
| 119 | |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 120 | static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 121 | uint64_t /*Address*/, |
| 122 | void const *Decoder) { |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 123 | if (RegNo > 31) |
| 124 | return MCDisassembler::Fail; |
| 125 | |
| 126 | unsigned Register = IntRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 127 | Inst.addOperand(MCOperand::createReg(Register)); |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 128 | return MCDisassembler::Success; |
| 129 | } |
| 130 | |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 131 | static DecodeStatus DecodeCtrRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 132 | uint64_t /*Address*/, |
| 133 | const void *Decoder) { |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 134 | static const uint16_t CtrlRegDecoderTable[] = { |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 135 | Hexagon::SA0, Hexagon::LC0, Hexagon::SA1, Hexagon::LC1, |
| 136 | Hexagon::P3_0, Hexagon::NoRegister, Hexagon::C6, Hexagon::C7, |
| 137 | Hexagon::USR, Hexagon::PC, Hexagon::UGP, Hexagon::GP, |
| 138 | Hexagon::CS0, Hexagon::CS1, Hexagon::UPCL, Hexagon::UPCH}; |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 139 | |
| 140 | if (RegNo >= sizeof(CtrlRegDecoderTable) / sizeof(CtrlRegDecoderTable[0])) |
| 141 | return MCDisassembler::Fail; |
| 142 | |
| 143 | if (CtrlRegDecoderTable[RegNo] == Hexagon::NoRegister) |
| 144 | return MCDisassembler::Fail; |
| 145 | |
| 146 | unsigned Register = CtrlRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 147 | Inst.addOperand(MCOperand::createReg(Register)); |
Colin LeMahieu | f3db884 | 2014-12-19 19:06:32 +0000 | [diff] [blame] | 148 | return MCDisassembler::Success; |
| 149 | } |
| 150 | |
Colin LeMahieu | 404d5b2 | 2015-02-10 16:59:36 +0000 | [diff] [blame] | 151 | static DecodeStatus DecodeCtrRegs64RegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 152 | uint64_t /*Address*/, |
| 153 | void const *Decoder) { |
Colin LeMahieu | 404d5b2 | 2015-02-10 16:59:36 +0000 | [diff] [blame] | 154 | static const uint16_t CtrlReg64DecoderTable[] = { |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 155 | Hexagon::C1_0, Hexagon::NoRegister, Hexagon::C3_2, |
| 156 | Hexagon::NoRegister, Hexagon::NoRegister, Hexagon::NoRegister, |
| 157 | Hexagon::C7_6, Hexagon::NoRegister, Hexagon::C9_8, |
| 158 | Hexagon::NoRegister, Hexagon::C11_10, Hexagon::NoRegister, |
| 159 | Hexagon::CS, Hexagon::NoRegister, Hexagon::UPC, |
| 160 | Hexagon::NoRegister}; |
Colin LeMahieu | 404d5b2 | 2015-02-10 16:59:36 +0000 | [diff] [blame] | 161 | |
| 162 | if (RegNo >= sizeof(CtrlReg64DecoderTable) / sizeof(CtrlReg64DecoderTable[0])) |
| 163 | return MCDisassembler::Fail; |
| 164 | |
| 165 | if (CtrlReg64DecoderTable[RegNo] == Hexagon::NoRegister) |
| 166 | return MCDisassembler::Fail; |
| 167 | |
| 168 | unsigned Register = CtrlReg64DecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 169 | Inst.addOperand(MCOperand::createReg(Register)); |
Colin LeMahieu | 404d5b2 | 2015-02-10 16:59:36 +0000 | [diff] [blame] | 170 | return MCDisassembler::Success; |
| 171 | } |
| 172 | |
Colin LeMahieu | ff370ed | 2014-12-26 20:30:58 +0000 | [diff] [blame] | 173 | static DecodeStatus DecodeModRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 174 | uint64_t /*Address*/, |
| 175 | const void *Decoder) { |
Colin LeMahieu | ff370ed | 2014-12-26 20:30:58 +0000 | [diff] [blame] | 176 | unsigned Register = 0; |
| 177 | switch (RegNo) { |
| 178 | case 0: |
| 179 | Register = Hexagon::M0; |
| 180 | break; |
| 181 | case 1: |
| 182 | Register = Hexagon::M1; |
| 183 | break; |
| 184 | default: |
| 185 | return MCDisassembler::Fail; |
| 186 | } |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 187 | Inst.addOperand(MCOperand::createReg(Register)); |
Colin LeMahieu | ff370ed | 2014-12-26 20:30:58 +0000 | [diff] [blame] | 188 | return MCDisassembler::Success; |
| 189 | } |
| 190 | |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 191 | static DecodeStatus DecodeDoubleRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 192 | uint64_t /*Address*/, |
| 193 | const void *Decoder) { |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 194 | static const uint16_t DoubleRegDecoderTable[] = { |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 195 | Hexagon::D0, Hexagon::D1, Hexagon::D2, Hexagon::D3, |
| 196 | Hexagon::D4, Hexagon::D5, Hexagon::D6, Hexagon::D7, |
| 197 | Hexagon::D8, Hexagon::D9, Hexagon::D10, Hexagon::D11, |
| 198 | Hexagon::D12, Hexagon::D13, Hexagon::D14, Hexagon::D15}; |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 199 | |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 200 | return (DecodeRegisterClass(Inst, RegNo >> 1, DoubleRegDecoderTable, |
| 201 | sizeof(DoubleRegDecoderTable))); |
Colin LeMahieu | 383c36e | 2014-12-05 18:24:06 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 204 | static DecodeStatus DecodePredRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 205 | uint64_t /*Address*/, |
| 206 | void const *Decoder) { |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 207 | if (RegNo > 3) |
| 208 | return MCDisassembler::Fail; |
| 209 | |
| 210 | unsigned Register = PredRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 211 | Inst.addOperand(MCOperand::createReg(Register)); |
Colin LeMahieu | efa74e0 | 2014-11-18 20:28:11 +0000 | [diff] [blame] | 212 | return MCDisassembler::Success; |
| 213 | } |
| 214 | |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 215 | #include "HexagonGenDisassemblerTables.inc" |
| 216 | |
| 217 | static MCDisassembler *createHexagonDisassembler(Target const &T, |
| 218 | MCSubtargetInfo const &STI, |
| 219 | MCContext &Ctx) { |
| 220 | return new HexagonDisassembler(STI, Ctx); |
| 221 | } |
| 222 | |
| 223 | extern "C" void LLVMInitializeHexagonDisassembler() { |
| 224 | TargetRegistry::RegisterMCDisassembler(TheHexagonTarget, |
| 225 | createHexagonDisassembler); |
| 226 | } |
| 227 | |
| 228 | DecodeStatus HexagonDisassembler::getInstruction(MCInst &MI, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 229 | ArrayRef<uint8_t> Bytes, |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 230 | uint64_t Address, |
| 231 | raw_ostream &os, |
| 232 | raw_ostream &cs) const { |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 233 | DecodeStatus Result = DecodeStatus::Success; |
| 234 | bool Complete = false; |
| 235 | Size = 0; |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 236 | |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 237 | *CurrentBundle = &MI; |
| 238 | MI.setOpcode(Hexagon::BUNDLE); |
| 239 | MI.addOperand(MCOperand::createImm(0)); |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 240 | while (Result == Success && Complete == false) { |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 241 | if (Bytes.size() < HEXAGON_INSTR_SIZE) |
| 242 | return MCDisassembler::Fail; |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 243 | MCInst *Inst = new (getContext()) MCInst; |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 244 | Result = getSingleInstruction(*Inst, MI, Bytes, Address, os, cs, Complete); |
| 245 | MI.addOperand(MCOperand::createInst(Inst)); |
| 246 | Size += HEXAGON_INSTR_SIZE; |
| 247 | Bytes = Bytes.slice(HEXAGON_INSTR_SIZE); |
| 248 | } |
| 249 | return Result; |
| 250 | } |
| 251 | |
| 252 | DecodeStatus HexagonDisassembler::getSingleInstruction( |
| 253 | MCInst &MI, MCInst &MCB, ArrayRef<uint8_t> Bytes, uint64_t Address, |
| 254 | raw_ostream &os, raw_ostream &cs, bool &Complete) const { |
| 255 | assert(Bytes.size() >= HEXAGON_INSTR_SIZE); |
| 256 | |
| 257 | uint32_t Instruction = |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 258 | llvm::support::endian::read<uint32_t, llvm::support::little, |
| 259 | llvm::support::unaligned>(Bytes.data()); |
| 260 | |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 261 | auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB); |
| 262 | if ((Instruction & HexagonII::INST_PARSE_MASK) == |
| 263 | HexagonII::INST_PARSE_LOOP_END) { |
| 264 | if (BundleSize == 0) |
| 265 | HexagonMCInstrInfo::setInnerLoop(MCB); |
| 266 | else if (BundleSize == 1) |
| 267 | HexagonMCInstrInfo::setOuterLoop(MCB); |
| 268 | else |
| 269 | return DecodeStatus::Fail; |
| 270 | } |
| 271 | |
| 272 | DecodeStatus Result = DecodeStatus::Success; |
| 273 | if ((Instruction & HexagonII::INST_PARSE_MASK) == |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 274 | HexagonII::INST_PARSE_DUPLEX) { |
| 275 | // Determine the instruction class of each instruction in the duplex. |
| 276 | unsigned duplexIClass, IClassLow, IClassHigh; |
| 277 | |
| 278 | duplexIClass = ((Instruction >> 28) & 0xe) | ((Instruction >> 13) & 0x1); |
| 279 | switch (duplexIClass) { |
| 280 | default: |
| 281 | return MCDisassembler::Fail; |
| 282 | case 0: |
| 283 | IClassLow = HexagonII::HSIG_L1; |
| 284 | IClassHigh = HexagonII::HSIG_L1; |
| 285 | break; |
| 286 | case 1: |
| 287 | IClassLow = HexagonII::HSIG_L2; |
| 288 | IClassHigh = HexagonII::HSIG_L1; |
| 289 | break; |
| 290 | case 2: |
| 291 | IClassLow = HexagonII::HSIG_L2; |
| 292 | IClassHigh = HexagonII::HSIG_L2; |
| 293 | break; |
| 294 | case 3: |
| 295 | IClassLow = HexagonII::HSIG_A; |
| 296 | IClassHigh = HexagonII::HSIG_A; |
| 297 | break; |
| 298 | case 4: |
| 299 | IClassLow = HexagonII::HSIG_L1; |
| 300 | IClassHigh = HexagonII::HSIG_A; |
| 301 | break; |
| 302 | case 5: |
| 303 | IClassLow = HexagonII::HSIG_L2; |
| 304 | IClassHigh = HexagonII::HSIG_A; |
| 305 | break; |
| 306 | case 6: |
| 307 | IClassLow = HexagonII::HSIG_S1; |
| 308 | IClassHigh = HexagonII::HSIG_A; |
| 309 | break; |
| 310 | case 7: |
| 311 | IClassLow = HexagonII::HSIG_S2; |
| 312 | IClassHigh = HexagonII::HSIG_A; |
| 313 | break; |
| 314 | case 8: |
| 315 | IClassLow = HexagonII::HSIG_S1; |
| 316 | IClassHigh = HexagonII::HSIG_L1; |
| 317 | break; |
| 318 | case 9: |
| 319 | IClassLow = HexagonII::HSIG_S1; |
| 320 | IClassHigh = HexagonII::HSIG_L2; |
| 321 | break; |
| 322 | case 10: |
| 323 | IClassLow = HexagonII::HSIG_S1; |
| 324 | IClassHigh = HexagonII::HSIG_S1; |
| 325 | break; |
| 326 | case 11: |
| 327 | IClassLow = HexagonII::HSIG_S2; |
| 328 | IClassHigh = HexagonII::HSIG_S1; |
| 329 | break; |
| 330 | case 12: |
| 331 | IClassLow = HexagonII::HSIG_S2; |
| 332 | IClassHigh = HexagonII::HSIG_L1; |
| 333 | break; |
| 334 | case 13: |
| 335 | IClassLow = HexagonII::HSIG_S2; |
| 336 | IClassHigh = HexagonII::HSIG_L2; |
| 337 | break; |
| 338 | case 14: |
| 339 | IClassLow = HexagonII::HSIG_S2; |
| 340 | IClassHigh = HexagonII::HSIG_S2; |
| 341 | break; |
| 342 | } |
| 343 | |
| 344 | // Set the MCInst to be a duplex instruction. Which one doesn't matter. |
| 345 | MI.setOpcode(Hexagon::DuplexIClass0); |
| 346 | |
| 347 | // Decode each instruction in the duplex. |
| 348 | // Create an MCInst for each instruction. |
| 349 | unsigned instLow = Instruction & 0x1fff; |
| 350 | unsigned instHigh = (Instruction >> 16) & 0x1fff; |
| 351 | unsigned opLow; |
| 352 | if (GetSubinstOpcode(IClassLow, instLow, opLow, os) != |
| 353 | MCDisassembler::Success) |
| 354 | return MCDisassembler::Fail; |
| 355 | unsigned opHigh; |
| 356 | if (GetSubinstOpcode(IClassHigh, instHigh, opHigh, os) != |
| 357 | MCDisassembler::Success) |
| 358 | return MCDisassembler::Fail; |
| 359 | MCInst *MILow = new (getContext()) MCInst; |
| 360 | MILow->setOpcode(opLow); |
| 361 | MCInst *MIHigh = new (getContext()) MCInst; |
| 362 | MIHigh->setOpcode(opHigh); |
| 363 | AddSubinstOperands(MILow, opLow, instLow); |
| 364 | AddSubinstOperands(MIHigh, opHigh, instHigh); |
| 365 | // see ConvertToSubInst() in |
| 366 | // lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp |
| 367 | |
| 368 | // Add the duplex instruction MCInsts as operands to the passed in MCInst. |
| 369 | MCOperand OPLow = MCOperand::createInst(MILow); |
| 370 | MCOperand OPHigh = MCOperand::createInst(MIHigh); |
| 371 | MI.addOperand(OPLow); |
| 372 | MI.addOperand(OPHigh); |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 373 | Complete = true; |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 374 | } else { |
| 375 | if ((Instruction & HexagonII::INST_PARSE_MASK) == |
| 376 | HexagonII::INST_PARSE_PACKET_END) |
| 377 | Complete = true; |
| 378 | // Calling the auto-generated decoder function. |
| 379 | Result = |
| 380 | decodeInstruction(DecoderTable32, MI, Instruction, Address, this, STI); |
| 381 | } |
Colin LeMahieu | 68d967d | 2015-05-29 14:44:13 +0000 | [diff] [blame] | 382 | |
Colin LeMahieu | 5d6f03b | 2014-12-04 03:41:21 +0000 | [diff] [blame] | 383 | return Result; |
NAKAMURA Takumi | 729be14 | 2014-10-27 12:37:26 +0000 | [diff] [blame] | 384 | } |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 385 | |
Colin LeMahieu | 1e9d1d7 | 2015-06-10 16:52:32 +0000 | [diff] [blame] | 386 | static DecodeStatus s16ImmDecoder(MCInst &MI, unsigned tmp, |
| 387 | uint64_t /*Address*/, const void *Decoder) { |
| 388 | uint64_t imm = SignExtend64<16>(tmp); |
| 389 | MI.addOperand(MCOperand::createImm(imm)); |
| 390 | return MCDisassembler::Success; |
| 391 | } |
| 392 | |
| 393 | static DecodeStatus s12ImmDecoder(MCInst &MI, unsigned tmp, |
| 394 | uint64_t /*Address*/, const void *Decoder) { |
| 395 | uint64_t imm = SignExtend64<12>(tmp); |
| 396 | MI.addOperand(MCOperand::createImm(imm)); |
| 397 | return MCDisassembler::Success; |
| 398 | } |
| 399 | |
| 400 | static DecodeStatus s11_0ImmDecoder(MCInst &MI, unsigned tmp, |
| 401 | uint64_t /*Address*/, const void *Decoder) { |
| 402 | uint64_t imm = SignExtend64<11>(tmp); |
| 403 | MI.addOperand(MCOperand::createImm(imm)); |
| 404 | return MCDisassembler::Success; |
| 405 | } |
| 406 | |
| 407 | static DecodeStatus s11_1ImmDecoder(MCInst &MI, unsigned tmp, |
| 408 | uint64_t /*Address*/, const void *Decoder) { |
| 409 | uint64_t imm = SignExtend64<12>(tmp); |
| 410 | MI.addOperand(MCOperand::createImm(imm)); |
| 411 | return MCDisassembler::Success; |
| 412 | } |
| 413 | |
| 414 | static DecodeStatus s11_2ImmDecoder(MCInst &MI, unsigned tmp, |
| 415 | uint64_t /*Address*/, const void *Decoder) { |
| 416 | uint64_t imm = SignExtend64<13>(tmp); |
| 417 | MI.addOperand(MCOperand::createImm(imm)); |
| 418 | return MCDisassembler::Success; |
| 419 | } |
| 420 | |
| 421 | static DecodeStatus s11_3ImmDecoder(MCInst &MI, unsigned tmp, |
| 422 | uint64_t /*Address*/, const void *Decoder) { |
| 423 | uint64_t imm = SignExtend64<14>(tmp); |
| 424 | MI.addOperand(MCOperand::createImm(imm)); |
| 425 | return MCDisassembler::Success; |
| 426 | } |
| 427 | |
| 428 | static DecodeStatus s10ImmDecoder(MCInst &MI, unsigned tmp, |
| 429 | uint64_t /*Address*/, const void *Decoder) { |
| 430 | uint64_t imm = SignExtend64<10>(tmp); |
| 431 | MI.addOperand(MCOperand::createImm(imm)); |
| 432 | return MCDisassembler::Success; |
| 433 | } |
| 434 | |
| 435 | static DecodeStatus s8ImmDecoder(MCInst &MI, unsigned tmp, uint64_t /*Address*/, |
| 436 | const void *Decoder) { |
| 437 | uint64_t imm = SignExtend64<8>(tmp); |
| 438 | MI.addOperand(MCOperand::createImm(imm)); |
| 439 | return MCDisassembler::Success; |
| 440 | } |
| 441 | |
| 442 | static DecodeStatus s6_0ImmDecoder(MCInst &MI, unsigned tmp, |
| 443 | uint64_t /*Address*/, const void *Decoder) { |
| 444 | uint64_t imm = SignExtend64<6>(tmp); |
| 445 | MI.addOperand(MCOperand::createImm(imm)); |
| 446 | return MCDisassembler::Success; |
| 447 | } |
| 448 | |
| 449 | static DecodeStatus s4_0ImmDecoder(MCInst &MI, unsigned tmp, |
| 450 | uint64_t /*Address*/, const void *Decoder) { |
| 451 | uint64_t imm = SignExtend64<4>(tmp); |
| 452 | MI.addOperand(MCOperand::createImm(imm)); |
| 453 | return MCDisassembler::Success; |
| 454 | } |
| 455 | |
| 456 | static DecodeStatus s4_1ImmDecoder(MCInst &MI, unsigned tmp, |
| 457 | uint64_t /*Address*/, const void *Decoder) { |
| 458 | uint64_t imm = SignExtend64<5>(tmp); |
| 459 | MI.addOperand(MCOperand::createImm(imm)); |
| 460 | return MCDisassembler::Success; |
| 461 | } |
| 462 | |
| 463 | static DecodeStatus s4_2ImmDecoder(MCInst &MI, unsigned tmp, |
| 464 | uint64_t /*Address*/, const void *Decoder) { |
| 465 | uint64_t imm = SignExtend64<6>(tmp); |
| 466 | MI.addOperand(MCOperand::createImm(imm)); |
| 467 | return MCDisassembler::Success; |
| 468 | } |
| 469 | |
| 470 | static DecodeStatus s4_3ImmDecoder(MCInst &MI, unsigned tmp, |
| 471 | uint64_t /*Address*/, const void *Decoder) { |
| 472 | uint64_t imm = SignExtend64<7>(tmp); |
| 473 | MI.addOperand(MCOperand::createImm(imm)); |
| 474 | return MCDisassembler::Success; |
| 475 | } |
| 476 | |
Colin LeMahieu | be8c453 | 2015-06-05 16:00:11 +0000 | [diff] [blame] | 477 | // These values are from HexagonGenMCCodeEmitter.inc and HexagonIsetDx.td |
| 478 | enum subInstBinaryValues { |
| 479 | V4_SA1_addi_BITS = 0x0000, |
| 480 | V4_SA1_addi_MASK = 0x1800, |
| 481 | V4_SA1_addrx_BITS = 0x1800, |
| 482 | V4_SA1_addrx_MASK = 0x1f00, |
| 483 | V4_SA1_addsp_BITS = 0x0c00, |
| 484 | V4_SA1_addsp_MASK = 0x1c00, |
| 485 | V4_SA1_and1_BITS = 0x1200, |
| 486 | V4_SA1_and1_MASK = 0x1f00, |
| 487 | V4_SA1_clrf_BITS = 0x1a70, |
| 488 | V4_SA1_clrf_MASK = 0x1e70, |
| 489 | V4_SA1_clrfnew_BITS = 0x1a50, |
| 490 | V4_SA1_clrfnew_MASK = 0x1e70, |
| 491 | V4_SA1_clrt_BITS = 0x1a60, |
| 492 | V4_SA1_clrt_MASK = 0x1e70, |
| 493 | V4_SA1_clrtnew_BITS = 0x1a40, |
| 494 | V4_SA1_clrtnew_MASK = 0x1e70, |
| 495 | V4_SA1_cmpeqi_BITS = 0x1900, |
| 496 | V4_SA1_cmpeqi_MASK = 0x1f00, |
| 497 | V4_SA1_combine0i_BITS = 0x1c00, |
| 498 | V4_SA1_combine0i_MASK = 0x1d18, |
| 499 | V4_SA1_combine1i_BITS = 0x1c08, |
| 500 | V4_SA1_combine1i_MASK = 0x1d18, |
| 501 | V4_SA1_combine2i_BITS = 0x1c10, |
| 502 | V4_SA1_combine2i_MASK = 0x1d18, |
| 503 | V4_SA1_combine3i_BITS = 0x1c18, |
| 504 | V4_SA1_combine3i_MASK = 0x1d18, |
| 505 | V4_SA1_combinerz_BITS = 0x1d08, |
| 506 | V4_SA1_combinerz_MASK = 0x1d08, |
| 507 | V4_SA1_combinezr_BITS = 0x1d00, |
| 508 | V4_SA1_combinezr_MASK = 0x1d08, |
| 509 | V4_SA1_dec_BITS = 0x1300, |
| 510 | V4_SA1_dec_MASK = 0x1f00, |
| 511 | V4_SA1_inc_BITS = 0x1100, |
| 512 | V4_SA1_inc_MASK = 0x1f00, |
| 513 | V4_SA1_seti_BITS = 0x0800, |
| 514 | V4_SA1_seti_MASK = 0x1c00, |
| 515 | V4_SA1_setin1_BITS = 0x1a00, |
| 516 | V4_SA1_setin1_MASK = 0x1e40, |
| 517 | V4_SA1_sxtb_BITS = 0x1500, |
| 518 | V4_SA1_sxtb_MASK = 0x1f00, |
| 519 | V4_SA1_sxth_BITS = 0x1400, |
| 520 | V4_SA1_sxth_MASK = 0x1f00, |
| 521 | V4_SA1_tfr_BITS = 0x1000, |
| 522 | V4_SA1_tfr_MASK = 0x1f00, |
| 523 | V4_SA1_zxtb_BITS = 0x1700, |
| 524 | V4_SA1_zxtb_MASK = 0x1f00, |
| 525 | V4_SA1_zxth_BITS = 0x1600, |
| 526 | V4_SA1_zxth_MASK = 0x1f00, |
| 527 | V4_SL1_loadri_io_BITS = 0x0000, |
| 528 | V4_SL1_loadri_io_MASK = 0x1000, |
| 529 | V4_SL1_loadrub_io_BITS = 0x1000, |
| 530 | V4_SL1_loadrub_io_MASK = 0x1000, |
| 531 | V4_SL2_deallocframe_BITS = 0x1f00, |
| 532 | V4_SL2_deallocframe_MASK = 0x1fc0, |
| 533 | V4_SL2_jumpr31_BITS = 0x1fc0, |
| 534 | V4_SL2_jumpr31_MASK = 0x1fc4, |
| 535 | V4_SL2_jumpr31_f_BITS = 0x1fc5, |
| 536 | V4_SL2_jumpr31_f_MASK = 0x1fc7, |
| 537 | V4_SL2_jumpr31_fnew_BITS = 0x1fc7, |
| 538 | V4_SL2_jumpr31_fnew_MASK = 0x1fc7, |
| 539 | V4_SL2_jumpr31_t_BITS = 0x1fc4, |
| 540 | V4_SL2_jumpr31_t_MASK = 0x1fc7, |
| 541 | V4_SL2_jumpr31_tnew_BITS = 0x1fc6, |
| 542 | V4_SL2_jumpr31_tnew_MASK = 0x1fc7, |
| 543 | V4_SL2_loadrb_io_BITS = 0x1000, |
| 544 | V4_SL2_loadrb_io_MASK = 0x1800, |
| 545 | V4_SL2_loadrd_sp_BITS = 0x1e00, |
| 546 | V4_SL2_loadrd_sp_MASK = 0x1f00, |
| 547 | V4_SL2_loadrh_io_BITS = 0x0000, |
| 548 | V4_SL2_loadrh_io_MASK = 0x1800, |
| 549 | V4_SL2_loadri_sp_BITS = 0x1c00, |
| 550 | V4_SL2_loadri_sp_MASK = 0x1e00, |
| 551 | V4_SL2_loadruh_io_BITS = 0x0800, |
| 552 | V4_SL2_loadruh_io_MASK = 0x1800, |
| 553 | V4_SL2_return_BITS = 0x1f40, |
| 554 | V4_SL2_return_MASK = 0x1fc4, |
| 555 | V4_SL2_return_f_BITS = 0x1f45, |
| 556 | V4_SL2_return_f_MASK = 0x1fc7, |
| 557 | V4_SL2_return_fnew_BITS = 0x1f47, |
| 558 | V4_SL2_return_fnew_MASK = 0x1fc7, |
| 559 | V4_SL2_return_t_BITS = 0x1f44, |
| 560 | V4_SL2_return_t_MASK = 0x1fc7, |
| 561 | V4_SL2_return_tnew_BITS = 0x1f46, |
| 562 | V4_SL2_return_tnew_MASK = 0x1fc7, |
| 563 | V4_SS1_storeb_io_BITS = 0x1000, |
| 564 | V4_SS1_storeb_io_MASK = 0x1000, |
| 565 | V4_SS1_storew_io_BITS = 0x0000, |
| 566 | V4_SS1_storew_io_MASK = 0x1000, |
| 567 | V4_SS2_allocframe_BITS = 0x1c00, |
| 568 | V4_SS2_allocframe_MASK = 0x1e00, |
| 569 | V4_SS2_storebi0_BITS = 0x1200, |
| 570 | V4_SS2_storebi0_MASK = 0x1f00, |
| 571 | V4_SS2_storebi1_BITS = 0x1300, |
| 572 | V4_SS2_storebi1_MASK = 0x1f00, |
| 573 | V4_SS2_stored_sp_BITS = 0x0a00, |
| 574 | V4_SS2_stored_sp_MASK = 0x1e00, |
| 575 | V4_SS2_storeh_io_BITS = 0x0000, |
| 576 | V4_SS2_storeh_io_MASK = 0x1800, |
| 577 | V4_SS2_storew_sp_BITS = 0x0800, |
| 578 | V4_SS2_storew_sp_MASK = 0x1e00, |
| 579 | V4_SS2_storewi0_BITS = 0x1000, |
| 580 | V4_SS2_storewi0_MASK = 0x1f00, |
| 581 | V4_SS2_storewi1_BITS = 0x1100, |
| 582 | V4_SS2_storewi1_MASK = 0x1f00 |
| 583 | }; |
| 584 | |
| 585 | static unsigned GetSubinstOpcode(unsigned IClass, unsigned inst, unsigned &op, |
| 586 | raw_ostream &os) { |
| 587 | switch (IClass) { |
| 588 | case HexagonII::HSIG_L1: |
| 589 | if ((inst & V4_SL1_loadri_io_MASK) == V4_SL1_loadri_io_BITS) |
| 590 | op = Hexagon::V4_SL1_loadri_io; |
| 591 | else if ((inst & V4_SL1_loadrub_io_MASK) == V4_SL1_loadrub_io_BITS) |
| 592 | op = Hexagon::V4_SL1_loadrub_io; |
| 593 | else { |
| 594 | os << "<unknown subinstruction>"; |
| 595 | return MCDisassembler::Fail; |
| 596 | } |
| 597 | break; |
| 598 | case HexagonII::HSIG_L2: |
| 599 | if ((inst & V4_SL2_deallocframe_MASK) == V4_SL2_deallocframe_BITS) |
| 600 | op = Hexagon::V4_SL2_deallocframe; |
| 601 | else if ((inst & V4_SL2_jumpr31_MASK) == V4_SL2_jumpr31_BITS) |
| 602 | op = Hexagon::V4_SL2_jumpr31; |
| 603 | else if ((inst & V4_SL2_jumpr31_f_MASK) == V4_SL2_jumpr31_f_BITS) |
| 604 | op = Hexagon::V4_SL2_jumpr31_f; |
| 605 | else if ((inst & V4_SL2_jumpr31_fnew_MASK) == V4_SL2_jumpr31_fnew_BITS) |
| 606 | op = Hexagon::V4_SL2_jumpr31_fnew; |
| 607 | else if ((inst & V4_SL2_jumpr31_t_MASK) == V4_SL2_jumpr31_t_BITS) |
| 608 | op = Hexagon::V4_SL2_jumpr31_t; |
| 609 | else if ((inst & V4_SL2_jumpr31_tnew_MASK) == V4_SL2_jumpr31_tnew_BITS) |
| 610 | op = Hexagon::V4_SL2_jumpr31_tnew; |
| 611 | else if ((inst & V4_SL2_loadrb_io_MASK) == V4_SL2_loadrb_io_BITS) |
| 612 | op = Hexagon::V4_SL2_loadrb_io; |
| 613 | else if ((inst & V4_SL2_loadrd_sp_MASK) == V4_SL2_loadrd_sp_BITS) |
| 614 | op = Hexagon::V4_SL2_loadrd_sp; |
| 615 | else if ((inst & V4_SL2_loadrh_io_MASK) == V4_SL2_loadrh_io_BITS) |
| 616 | op = Hexagon::V4_SL2_loadrh_io; |
| 617 | else if ((inst & V4_SL2_loadri_sp_MASK) == V4_SL2_loadri_sp_BITS) |
| 618 | op = Hexagon::V4_SL2_loadri_sp; |
| 619 | else if ((inst & V4_SL2_loadruh_io_MASK) == V4_SL2_loadruh_io_BITS) |
| 620 | op = Hexagon::V4_SL2_loadruh_io; |
| 621 | else if ((inst & V4_SL2_return_MASK) == V4_SL2_return_BITS) |
| 622 | op = Hexagon::V4_SL2_return; |
| 623 | else if ((inst & V4_SL2_return_f_MASK) == V4_SL2_return_f_BITS) |
| 624 | op = Hexagon::V4_SL2_return_f; |
| 625 | else if ((inst & V4_SL2_return_fnew_MASK) == V4_SL2_return_fnew_BITS) |
| 626 | op = Hexagon::V4_SL2_return_fnew; |
| 627 | else if ((inst & V4_SL2_return_t_MASK) == V4_SL2_return_t_BITS) |
| 628 | op = Hexagon::V4_SL2_return_t; |
| 629 | else if ((inst & V4_SL2_return_tnew_MASK) == V4_SL2_return_tnew_BITS) |
| 630 | op = Hexagon::V4_SL2_return_tnew; |
| 631 | else { |
| 632 | os << "<unknown subinstruction>"; |
| 633 | return MCDisassembler::Fail; |
| 634 | } |
| 635 | break; |
| 636 | case HexagonII::HSIG_A: |
| 637 | if ((inst & V4_SA1_addi_MASK) == V4_SA1_addi_BITS) |
| 638 | op = Hexagon::V4_SA1_addi; |
| 639 | else if ((inst & V4_SA1_addrx_MASK) == V4_SA1_addrx_BITS) |
| 640 | op = Hexagon::V4_SA1_addrx; |
| 641 | else if ((inst & V4_SA1_addsp_MASK) == V4_SA1_addsp_BITS) |
| 642 | op = Hexagon::V4_SA1_addsp; |
| 643 | else if ((inst & V4_SA1_and1_MASK) == V4_SA1_and1_BITS) |
| 644 | op = Hexagon::V4_SA1_and1; |
| 645 | else if ((inst & V4_SA1_clrf_MASK) == V4_SA1_clrf_BITS) |
| 646 | op = Hexagon::V4_SA1_clrf; |
| 647 | else if ((inst & V4_SA1_clrfnew_MASK) == V4_SA1_clrfnew_BITS) |
| 648 | op = Hexagon::V4_SA1_clrfnew; |
| 649 | else if ((inst & V4_SA1_clrt_MASK) == V4_SA1_clrt_BITS) |
| 650 | op = Hexagon::V4_SA1_clrt; |
| 651 | else if ((inst & V4_SA1_clrtnew_MASK) == V4_SA1_clrtnew_BITS) |
| 652 | op = Hexagon::V4_SA1_clrtnew; |
| 653 | else if ((inst & V4_SA1_cmpeqi_MASK) == V4_SA1_cmpeqi_BITS) |
| 654 | op = Hexagon::V4_SA1_cmpeqi; |
| 655 | else if ((inst & V4_SA1_combine0i_MASK) == V4_SA1_combine0i_BITS) |
| 656 | op = Hexagon::V4_SA1_combine0i; |
| 657 | else if ((inst & V4_SA1_combine1i_MASK) == V4_SA1_combine1i_BITS) |
| 658 | op = Hexagon::V4_SA1_combine1i; |
| 659 | else if ((inst & V4_SA1_combine2i_MASK) == V4_SA1_combine2i_BITS) |
| 660 | op = Hexagon::V4_SA1_combine2i; |
| 661 | else if ((inst & V4_SA1_combine3i_MASK) == V4_SA1_combine3i_BITS) |
| 662 | op = Hexagon::V4_SA1_combine3i; |
| 663 | else if ((inst & V4_SA1_combinerz_MASK) == V4_SA1_combinerz_BITS) |
| 664 | op = Hexagon::V4_SA1_combinerz; |
| 665 | else if ((inst & V4_SA1_combinezr_MASK) == V4_SA1_combinezr_BITS) |
| 666 | op = Hexagon::V4_SA1_combinezr; |
| 667 | else if ((inst & V4_SA1_dec_MASK) == V4_SA1_dec_BITS) |
| 668 | op = Hexagon::V4_SA1_dec; |
| 669 | else if ((inst & V4_SA1_inc_MASK) == V4_SA1_inc_BITS) |
| 670 | op = Hexagon::V4_SA1_inc; |
| 671 | else if ((inst & V4_SA1_seti_MASK) == V4_SA1_seti_BITS) |
| 672 | op = Hexagon::V4_SA1_seti; |
| 673 | else if ((inst & V4_SA1_setin1_MASK) == V4_SA1_setin1_BITS) |
| 674 | op = Hexagon::V4_SA1_setin1; |
| 675 | else if ((inst & V4_SA1_sxtb_MASK) == V4_SA1_sxtb_BITS) |
| 676 | op = Hexagon::V4_SA1_sxtb; |
| 677 | else if ((inst & V4_SA1_sxth_MASK) == V4_SA1_sxth_BITS) |
| 678 | op = Hexagon::V4_SA1_sxth; |
| 679 | else if ((inst & V4_SA1_tfr_MASK) == V4_SA1_tfr_BITS) |
| 680 | op = Hexagon::V4_SA1_tfr; |
| 681 | else if ((inst & V4_SA1_zxtb_MASK) == V4_SA1_zxtb_BITS) |
| 682 | op = Hexagon::V4_SA1_zxtb; |
| 683 | else if ((inst & V4_SA1_zxth_MASK) == V4_SA1_zxth_BITS) |
| 684 | op = Hexagon::V4_SA1_zxth; |
| 685 | else { |
| 686 | os << "<unknown subinstruction>"; |
| 687 | return MCDisassembler::Fail; |
| 688 | } |
| 689 | break; |
| 690 | case HexagonII::HSIG_S1: |
| 691 | if ((inst & V4_SS1_storeb_io_MASK) == V4_SS1_storeb_io_BITS) |
| 692 | op = Hexagon::V4_SS1_storeb_io; |
| 693 | else if ((inst & V4_SS1_storew_io_MASK) == V4_SS1_storew_io_BITS) |
| 694 | op = Hexagon::V4_SS1_storew_io; |
| 695 | else { |
| 696 | os << "<unknown subinstruction>"; |
| 697 | return MCDisassembler::Fail; |
| 698 | } |
| 699 | break; |
| 700 | case HexagonII::HSIG_S2: |
| 701 | if ((inst & V4_SS2_allocframe_MASK) == V4_SS2_allocframe_BITS) |
| 702 | op = Hexagon::V4_SS2_allocframe; |
| 703 | else if ((inst & V4_SS2_storebi0_MASK) == V4_SS2_storebi0_BITS) |
| 704 | op = Hexagon::V4_SS2_storebi0; |
| 705 | else if ((inst & V4_SS2_storebi1_MASK) == V4_SS2_storebi1_BITS) |
| 706 | op = Hexagon::V4_SS2_storebi1; |
| 707 | else if ((inst & V4_SS2_stored_sp_MASK) == V4_SS2_stored_sp_BITS) |
| 708 | op = Hexagon::V4_SS2_stored_sp; |
| 709 | else if ((inst & V4_SS2_storeh_io_MASK) == V4_SS2_storeh_io_BITS) |
| 710 | op = Hexagon::V4_SS2_storeh_io; |
| 711 | else if ((inst & V4_SS2_storew_sp_MASK) == V4_SS2_storew_sp_BITS) |
| 712 | op = Hexagon::V4_SS2_storew_sp; |
| 713 | else if ((inst & V4_SS2_storewi0_MASK) == V4_SS2_storewi0_BITS) |
| 714 | op = Hexagon::V4_SS2_storewi0; |
| 715 | else if ((inst & V4_SS2_storewi1_MASK) == V4_SS2_storewi1_BITS) |
| 716 | op = Hexagon::V4_SS2_storewi1; |
| 717 | else { |
| 718 | os << "<unknown subinstruction>"; |
| 719 | return MCDisassembler::Fail; |
| 720 | } |
| 721 | break; |
| 722 | default: |
| 723 | os << "<unknown>"; |
| 724 | return MCDisassembler::Fail; |
| 725 | } |
| 726 | return MCDisassembler::Success; |
| 727 | } |
| 728 | |
| 729 | static unsigned getRegFromSubinstEncoding(unsigned encoded_reg) { |
| 730 | if (encoded_reg < 8) |
| 731 | return Hexagon::R0 + encoded_reg; |
| 732 | else if (encoded_reg < 16) |
| 733 | return Hexagon::R0 + encoded_reg + 8; |
| 734 | return Hexagon::NoRegister; |
| 735 | } |
| 736 | |
| 737 | static unsigned getDRegFromSubinstEncoding(unsigned encoded_dreg) { |
| 738 | if (encoded_dreg < 4) |
| 739 | return Hexagon::D0 + encoded_dreg; |
| 740 | else if (encoded_dreg < 8) |
| 741 | return Hexagon::D0 + encoded_dreg + 4; |
| 742 | return Hexagon::NoRegister; |
| 743 | } |
| 744 | |
| 745 | static void AddSubinstOperands(MCInst *MI, unsigned opcode, unsigned inst) { |
| 746 | int64_t operand; |
| 747 | MCOperand Op; |
| 748 | switch (opcode) { |
| 749 | case Hexagon::V4_SL2_deallocframe: |
| 750 | case Hexagon::V4_SL2_jumpr31: |
| 751 | case Hexagon::V4_SL2_jumpr31_f: |
| 752 | case Hexagon::V4_SL2_jumpr31_fnew: |
| 753 | case Hexagon::V4_SL2_jumpr31_t: |
| 754 | case Hexagon::V4_SL2_jumpr31_tnew: |
| 755 | case Hexagon::V4_SL2_return: |
| 756 | case Hexagon::V4_SL2_return_f: |
| 757 | case Hexagon::V4_SL2_return_fnew: |
| 758 | case Hexagon::V4_SL2_return_t: |
| 759 | case Hexagon::V4_SL2_return_tnew: |
| 760 | // no operands for these instructions |
| 761 | break; |
| 762 | case Hexagon::V4_SS2_allocframe: |
| 763 | // u 8-4{5_3} |
| 764 | operand = ((inst & 0x1f0) >> 4) << 3; |
| 765 | Op = MCOperand::createImm(operand); |
| 766 | MI->addOperand(Op); |
| 767 | break; |
| 768 | case Hexagon::V4_SL1_loadri_io: |
| 769 | // Rd 3-0, Rs 7-4, u 11-8{4_2} |
| 770 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 771 | Op = MCOperand::createReg(operand); |
| 772 | MI->addOperand(Op); |
| 773 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 774 | Op = MCOperand::createReg(operand); |
| 775 | MI->addOperand(Op); |
| 776 | operand = (inst & 0xf00) >> 6; |
| 777 | Op = MCOperand::createImm(operand); |
| 778 | MI->addOperand(Op); |
| 779 | break; |
| 780 | case Hexagon::V4_SL1_loadrub_io: |
| 781 | // Rd 3-0, Rs 7-4, u 11-8 |
| 782 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 783 | Op = MCOperand::createReg(operand); |
| 784 | MI->addOperand(Op); |
| 785 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 786 | Op = MCOperand::createReg(operand); |
| 787 | MI->addOperand(Op); |
| 788 | operand = (inst & 0xf00) >> 8; |
| 789 | Op = MCOperand::createImm(operand); |
| 790 | MI->addOperand(Op); |
| 791 | break; |
| 792 | case Hexagon::V4_SL2_loadrb_io: |
| 793 | // Rd 3-0, Rs 7-4, u 10-8 |
| 794 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 795 | Op = MCOperand::createReg(operand); |
| 796 | MI->addOperand(Op); |
| 797 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 798 | Op = MCOperand::createReg(operand); |
| 799 | MI->addOperand(Op); |
| 800 | operand = (inst & 0x700) >> 8; |
| 801 | Op = MCOperand::createImm(operand); |
| 802 | MI->addOperand(Op); |
| 803 | break; |
| 804 | case Hexagon::V4_SL2_loadrh_io: |
| 805 | case Hexagon::V4_SL2_loadruh_io: |
| 806 | // Rd 3-0, Rs 7-4, u 10-8{3_1} |
| 807 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 808 | Op = MCOperand::createReg(operand); |
| 809 | MI->addOperand(Op); |
| 810 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 811 | Op = MCOperand::createReg(operand); |
| 812 | MI->addOperand(Op); |
| 813 | operand = ((inst & 0x700) >> 8) << 1; |
| 814 | Op = MCOperand::createImm(operand); |
| 815 | MI->addOperand(Op); |
| 816 | break; |
| 817 | case Hexagon::V4_SL2_loadrd_sp: |
| 818 | // Rdd 2-0, u 7-3{5_3} |
| 819 | operand = getDRegFromSubinstEncoding(inst & 0x7); |
| 820 | Op = MCOperand::createReg(operand); |
| 821 | MI->addOperand(Op); |
| 822 | operand = ((inst & 0x0f8) >> 3) << 3; |
| 823 | Op = MCOperand::createImm(operand); |
| 824 | MI->addOperand(Op); |
| 825 | break; |
| 826 | case Hexagon::V4_SL2_loadri_sp: |
| 827 | // Rd 3-0, u 8-4{5_2} |
| 828 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 829 | Op = MCOperand::createReg(operand); |
| 830 | MI->addOperand(Op); |
| 831 | operand = ((inst & 0x1f0) >> 4) << 2; |
| 832 | Op = MCOperand::createImm(operand); |
| 833 | MI->addOperand(Op); |
| 834 | break; |
| 835 | case Hexagon::V4_SA1_addi: |
| 836 | // Rx 3-0 (x2), s7 10-4 |
| 837 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 838 | Op = MCOperand::createReg(operand); |
| 839 | MI->addOperand(Op); |
| 840 | MI->addOperand(Op); |
| 841 | operand = SignExtend64<7>((inst & 0x7f0) >> 4); |
| 842 | Op = MCOperand::createImm(operand); |
| 843 | MI->addOperand(Op); |
| 844 | break; |
| 845 | case Hexagon::V4_SA1_addrx: |
| 846 | // Rx 3-0 (x2), Rs 7-4 |
| 847 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 848 | Op = MCOperand::createReg(operand); |
| 849 | MI->addOperand(Op); |
| 850 | MI->addOperand(Op); |
| 851 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 852 | Op = MCOperand::createReg(operand); |
| 853 | MI->addOperand(Op); |
| 854 | case Hexagon::V4_SA1_and1: |
| 855 | case Hexagon::V4_SA1_dec: |
| 856 | case Hexagon::V4_SA1_inc: |
| 857 | case Hexagon::V4_SA1_sxtb: |
| 858 | case Hexagon::V4_SA1_sxth: |
| 859 | case Hexagon::V4_SA1_tfr: |
| 860 | case Hexagon::V4_SA1_zxtb: |
| 861 | case Hexagon::V4_SA1_zxth: |
| 862 | // Rd 3-0, Rs 7-4 |
| 863 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 864 | Op = MCOperand::createReg(operand); |
| 865 | MI->addOperand(Op); |
| 866 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 867 | Op = MCOperand::createReg(operand); |
| 868 | MI->addOperand(Op); |
| 869 | break; |
| 870 | case Hexagon::V4_SA1_addsp: |
| 871 | // Rd 3-0, u 9-4{6_2} |
| 872 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 873 | Op = MCOperand::createReg(operand); |
| 874 | MI->addOperand(Op); |
| 875 | operand = ((inst & 0x3f0) >> 4) << 2; |
| 876 | Op = MCOperand::createImm(operand); |
| 877 | MI->addOperand(Op); |
| 878 | break; |
| 879 | case Hexagon::V4_SA1_seti: |
| 880 | // Rd 3-0, u 9-4 |
| 881 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 882 | Op = MCOperand::createReg(operand); |
| 883 | MI->addOperand(Op); |
| 884 | operand = (inst & 0x3f0) >> 4; |
| 885 | Op = MCOperand::createImm(operand); |
| 886 | MI->addOperand(Op); |
| 887 | break; |
| 888 | case Hexagon::V4_SA1_clrf: |
| 889 | case Hexagon::V4_SA1_clrfnew: |
| 890 | case Hexagon::V4_SA1_clrt: |
| 891 | case Hexagon::V4_SA1_clrtnew: |
| 892 | case Hexagon::V4_SA1_setin1: |
| 893 | // Rd 3-0 |
| 894 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 895 | Op = MCOperand::createReg(operand); |
| 896 | MI->addOperand(Op); |
| 897 | break; |
| 898 | case Hexagon::V4_SA1_cmpeqi: |
| 899 | // Rs 7-4, u 1-0 |
| 900 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 901 | Op = MCOperand::createReg(operand); |
| 902 | MI->addOperand(Op); |
| 903 | operand = inst & 0x3; |
| 904 | Op = MCOperand::createImm(operand); |
| 905 | MI->addOperand(Op); |
| 906 | break; |
| 907 | case Hexagon::V4_SA1_combine0i: |
| 908 | case Hexagon::V4_SA1_combine1i: |
| 909 | case Hexagon::V4_SA1_combine2i: |
| 910 | case Hexagon::V4_SA1_combine3i: |
| 911 | // Rdd 2-0, u 6-5 |
| 912 | operand = getDRegFromSubinstEncoding(inst & 0x7); |
| 913 | Op = MCOperand::createReg(operand); |
| 914 | MI->addOperand(Op); |
| 915 | operand = (inst & 0x060) >> 5; |
| 916 | Op = MCOperand::createImm(operand); |
| 917 | MI->addOperand(Op); |
| 918 | break; |
| 919 | case Hexagon::V4_SA1_combinerz: |
| 920 | case Hexagon::V4_SA1_combinezr: |
| 921 | // Rdd 2-0, Rs 7-4 |
| 922 | operand = getDRegFromSubinstEncoding(inst & 0x7); |
| 923 | Op = MCOperand::createReg(operand); |
| 924 | MI->addOperand(Op); |
| 925 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 926 | Op = MCOperand::createReg(operand); |
| 927 | MI->addOperand(Op); |
| 928 | break; |
| 929 | case Hexagon::V4_SS1_storeb_io: |
| 930 | // Rs 7-4, u 11-8, Rt 3-0 |
| 931 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 932 | Op = MCOperand::createReg(operand); |
| 933 | MI->addOperand(Op); |
| 934 | operand = (inst & 0xf00) >> 8; |
| 935 | Op = MCOperand::createImm(operand); |
| 936 | MI->addOperand(Op); |
| 937 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 938 | Op = MCOperand::createReg(operand); |
| 939 | MI->addOperand(Op); |
| 940 | break; |
| 941 | case Hexagon::V4_SS1_storew_io: |
| 942 | // Rs 7-4, u 11-8{4_2}, Rt 3-0 |
| 943 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 944 | Op = MCOperand::createReg(operand); |
| 945 | MI->addOperand(Op); |
| 946 | operand = ((inst & 0xf00) >> 8) << 2; |
| 947 | Op = MCOperand::createImm(operand); |
| 948 | MI->addOperand(Op); |
| 949 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 950 | Op = MCOperand::createReg(operand); |
| 951 | MI->addOperand(Op); |
| 952 | break; |
| 953 | case Hexagon::V4_SS2_storebi0: |
| 954 | case Hexagon::V4_SS2_storebi1: |
| 955 | // Rs 7-4, u 3-0 |
| 956 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 957 | Op = MCOperand::createReg(operand); |
| 958 | MI->addOperand(Op); |
| 959 | operand = inst & 0xf; |
| 960 | Op = MCOperand::createImm(operand); |
| 961 | MI->addOperand(Op); |
| 962 | break; |
| 963 | case Hexagon::V4_SS2_storewi0: |
| 964 | case Hexagon::V4_SS2_storewi1: |
| 965 | // Rs 7-4, u 3-0{4_2} |
| 966 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 967 | Op = MCOperand::createReg(operand); |
| 968 | MI->addOperand(Op); |
| 969 | operand = (inst & 0xf) << 2; |
| 970 | Op = MCOperand::createImm(operand); |
| 971 | MI->addOperand(Op); |
| 972 | break; |
| 973 | case Hexagon::V4_SS2_stored_sp: |
| 974 | // s 8-3{6_3}, Rtt 2-0 |
| 975 | operand = SignExtend64<9>(((inst & 0x1f8) >> 3) << 3); |
| 976 | Op = MCOperand::createImm(operand); |
| 977 | MI->addOperand(Op); |
| 978 | operand = getDRegFromSubinstEncoding(inst & 0x7); |
| 979 | Op = MCOperand::createReg(operand); |
| 980 | MI->addOperand(Op); |
| 981 | case Hexagon::V4_SS2_storeh_io: |
| 982 | // Rs 7-4, u 10-8{3_1}, Rt 3-0 |
| 983 | operand = getRegFromSubinstEncoding((inst & 0xf0) >> 4); |
| 984 | Op = MCOperand::createReg(operand); |
| 985 | MI->addOperand(Op); |
| 986 | operand = ((inst & 0x700) >> 8) << 1; |
| 987 | Op = MCOperand::createImm(operand); |
| 988 | MI->addOperand(Op); |
| 989 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 990 | Op = MCOperand::createReg(operand); |
| 991 | MI->addOperand(Op); |
| 992 | break; |
| 993 | case Hexagon::V4_SS2_storew_sp: |
| 994 | // u 8-4{5_2}, Rd 3-0 |
| 995 | operand = ((inst & 0x1f0) >> 4) << 2; |
| 996 | Op = MCOperand::createImm(operand); |
| 997 | MI->addOperand(Op); |
| 998 | operand = getRegFromSubinstEncoding(inst & 0xf); |
| 999 | Op = MCOperand::createReg(operand); |
| 1000 | MI->addOperand(Op); |
| 1001 | break; |
| 1002 | default: |
| 1003 | // don't crash with an invalid subinstruction |
| 1004 | // llvm_unreachable("Invalid subinstruction in duplex instruction"); |
| 1005 | break; |
| 1006 | } |
| 1007 | } |