Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 1 | //===- SparcDisassembler.cpp - Disassembler for Sparc -----------*- 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 | // This file is part of the Sparc Disassembler. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 14 | #include "Sparc.h" |
| 15 | #include "SparcRegisterInfo.h" |
| 16 | #include "SparcSubtarget.h" |
| 17 | #include "llvm/MC/MCDisassembler.h" |
| 18 | #include "llvm/MC/MCFixedLenDisassembler.h" |
Pete Cooper | 3de83e4 | 2015-05-15 21:58:42 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCInst.h" |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCContext.h" |
| 21 | #include "llvm/MC/MCAsmInfo.h" |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 22 | #include "llvm/Support/TargetRegistry.h" |
| 23 | |
| 24 | using namespace llvm; |
| 25 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 26 | #define DEBUG_TYPE "sparc-disassembler" |
| 27 | |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 28 | typedef MCDisassembler::DecodeStatus DecodeStatus; |
| 29 | |
| 30 | namespace { |
| 31 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 32 | /// A disassembler class for Sparc. |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 33 | class SparcDisassembler : public MCDisassembler { |
| 34 | public: |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 35 | SparcDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx) |
| 36 | : MCDisassembler(STI, Ctx) {} |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 37 | virtual ~SparcDisassembler() {} |
| 38 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 39 | DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 40 | ArrayRef<uint8_t> Bytes, uint64_t Address, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 41 | raw_ostream &VStream, |
| 42 | raw_ostream &CStream) const override; |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 43 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame^] | 44 | } |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 45 | |
| 46 | namespace llvm { |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 47 | extern Target TheSparcTarget, TheSparcV9Target, TheSparcelTarget; |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 50 | static MCDisassembler *createSparcDisassembler(const Target &T, |
| 51 | const MCSubtargetInfo &STI, |
| 52 | MCContext &Ctx) { |
Lang Hames | a1bc0f5 | 2014-04-15 04:40:56 +0000 | [diff] [blame] | 53 | return new SparcDisassembler(STI, Ctx); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | |
| 57 | extern "C" void LLVMInitializeSparcDisassembler() { |
| 58 | // Register the disassembler. |
| 59 | TargetRegistry::RegisterMCDisassembler(TheSparcTarget, |
| 60 | createSparcDisassembler); |
| 61 | TargetRegistry::RegisterMCDisassembler(TheSparcV9Target, |
| 62 | createSparcDisassembler); |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 63 | TargetRegistry::RegisterMCDisassembler(TheSparcelTarget, |
| 64 | createSparcDisassembler); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 67 | static const unsigned IntRegDecoderTable[] = { |
| 68 | SP::G0, SP::G1, SP::G2, SP::G3, |
| 69 | SP::G4, SP::G5, SP::G6, SP::G7, |
| 70 | SP::O0, SP::O1, SP::O2, SP::O3, |
| 71 | SP::O4, SP::O5, SP::O6, SP::O7, |
| 72 | SP::L0, SP::L1, SP::L2, SP::L3, |
| 73 | SP::L4, SP::L5, SP::L6, SP::L7, |
| 74 | SP::I0, SP::I1, SP::I2, SP::I3, |
| 75 | SP::I4, SP::I5, SP::I6, SP::I7 }; |
| 76 | |
| 77 | static const unsigned FPRegDecoderTable[] = { |
| 78 | SP::F0, SP::F1, SP::F2, SP::F3, |
| 79 | SP::F4, SP::F5, SP::F6, SP::F7, |
| 80 | SP::F8, SP::F9, SP::F10, SP::F11, |
| 81 | SP::F12, SP::F13, SP::F14, SP::F15, |
| 82 | SP::F16, SP::F17, SP::F18, SP::F19, |
| 83 | SP::F20, SP::F21, SP::F22, SP::F23, |
| 84 | SP::F24, SP::F25, SP::F26, SP::F27, |
| 85 | SP::F28, SP::F29, SP::F30, SP::F31 }; |
| 86 | |
| 87 | static const unsigned DFPRegDecoderTable[] = { |
| 88 | SP::D0, SP::D16, SP::D1, SP::D17, |
| 89 | SP::D2, SP::D18, SP::D3, SP::D19, |
| 90 | SP::D4, SP::D20, SP::D5, SP::D21, |
| 91 | SP::D6, SP::D22, SP::D7, SP::D23, |
| 92 | SP::D8, SP::D24, SP::D9, SP::D25, |
| 93 | SP::D10, SP::D26, SP::D11, SP::D27, |
| 94 | SP::D12, SP::D28, SP::D13, SP::D29, |
| 95 | SP::D14, SP::D30, SP::D15, SP::D31 }; |
| 96 | |
| 97 | static const unsigned QFPRegDecoderTable[] = { |
Venkatraman Govindaraju | 0b9debf | 2014-01-12 04:34:31 +0000 | [diff] [blame] | 98 | SP::Q0, SP::Q8, ~0U, ~0U, |
| 99 | SP::Q1, SP::Q9, ~0U, ~0U, |
| 100 | SP::Q2, SP::Q10, ~0U, ~0U, |
| 101 | SP::Q3, SP::Q11, ~0U, ~0U, |
| 102 | SP::Q4, SP::Q12, ~0U, ~0U, |
| 103 | SP::Q5, SP::Q13, ~0U, ~0U, |
| 104 | SP::Q6, SP::Q14, ~0U, ~0U, |
| 105 | SP::Q7, SP::Q15, ~0U, ~0U } ; |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 106 | |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 107 | static const unsigned FCCRegDecoderTable[] = { |
| 108 | SP::FCC0, SP::FCC1, SP::FCC2, SP::FCC3 }; |
| 109 | |
James Y Knight | 807563d | 2015-05-18 16:29:48 +0000 | [diff] [blame] | 110 | static const unsigned ASRRegDecoderTable[] = { |
| 111 | SP::Y, SP::ASR1, SP::ASR2, SP::ASR3, |
| 112 | SP::ASR4, SP::ASR5, SP::ASR6, SP::ASR7, |
| 113 | SP::ASR8, SP::ASR9, SP::ASR10, SP::ASR11, |
| 114 | SP::ASR12, SP::ASR13, SP::ASR14, SP::ASR15, |
| 115 | SP::ASR16, SP::ASR17, SP::ASR18, SP::ASR19, |
| 116 | SP::ASR20, SP::ASR21, SP::ASR22, SP::ASR23, |
| 117 | SP::ASR24, SP::ASR25, SP::ASR26, SP::ASR27, |
| 118 | SP::ASR28, SP::ASR29, SP::ASR30, SP::ASR31}; |
| 119 | |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 120 | static DecodeStatus DecodeIntRegsRegisterClass(MCInst &Inst, |
| 121 | unsigned RegNo, |
| 122 | uint64_t Address, |
| 123 | const void *Decoder) { |
| 124 | if (RegNo > 31) |
| 125 | return MCDisassembler::Fail; |
| 126 | unsigned Reg = IntRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 127 | Inst.addOperand(MCOperand::createReg(Reg)); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 128 | return MCDisassembler::Success; |
| 129 | } |
| 130 | |
| 131 | static DecodeStatus DecodeI64RegsRegisterClass(MCInst &Inst, |
| 132 | unsigned RegNo, |
| 133 | uint64_t Address, |
| 134 | const void *Decoder) { |
| 135 | if (RegNo > 31) |
| 136 | return MCDisassembler::Fail; |
| 137 | unsigned Reg = IntRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 138 | Inst.addOperand(MCOperand::createReg(Reg)); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 139 | return MCDisassembler::Success; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | static DecodeStatus DecodeFPRegsRegisterClass(MCInst &Inst, |
| 144 | unsigned RegNo, |
| 145 | uint64_t Address, |
| 146 | const void *Decoder) { |
| 147 | if (RegNo > 31) |
| 148 | return MCDisassembler::Fail; |
| 149 | unsigned Reg = FPRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 150 | Inst.addOperand(MCOperand::createReg(Reg)); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 151 | return MCDisassembler::Success; |
| 152 | } |
| 153 | |
| 154 | |
| 155 | static DecodeStatus DecodeDFPRegsRegisterClass(MCInst &Inst, |
| 156 | unsigned RegNo, |
| 157 | uint64_t Address, |
| 158 | const void *Decoder) { |
| 159 | if (RegNo > 31) |
| 160 | return MCDisassembler::Fail; |
| 161 | unsigned Reg = DFPRegDecoderTable[RegNo]; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 162 | Inst.addOperand(MCOperand::createReg(Reg)); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 163 | return MCDisassembler::Success; |
| 164 | } |
| 165 | |
| 166 | |
| 167 | static DecodeStatus DecodeQFPRegsRegisterClass(MCInst &Inst, |
| 168 | unsigned RegNo, |
| 169 | uint64_t Address, |
| 170 | const void *Decoder) { |
| 171 | if (RegNo > 31) |
| 172 | return MCDisassembler::Fail; |
| 173 | |
| 174 | unsigned Reg = QFPRegDecoderTable[RegNo]; |
Venkatraman Govindaraju | 0b9debf | 2014-01-12 04:34:31 +0000 | [diff] [blame] | 175 | if (Reg == ~0U) |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 176 | return MCDisassembler::Fail; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 177 | Inst.addOperand(MCOperand::createReg(Reg)); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 178 | return MCDisassembler::Success; |
| 179 | } |
| 180 | |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 181 | static DecodeStatus DecodeFCCRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
| 182 | uint64_t Address, |
| 183 | const void *Decoder) { |
| 184 | if (RegNo > 3) |
| 185 | return MCDisassembler::Fail; |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 186 | Inst.addOperand(MCOperand::createReg(FCCRegDecoderTable[RegNo])); |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 187 | return MCDisassembler::Success; |
| 188 | } |
| 189 | |
James Y Knight | 807563d | 2015-05-18 16:29:48 +0000 | [diff] [blame] | 190 | static DecodeStatus DecodeASRRegsRegisterClass(MCInst &Inst, unsigned RegNo, |
| 191 | uint64_t Address, |
| 192 | const void *Decoder) { |
| 193 | if (RegNo > 31) |
| 194 | return MCDisassembler::Fail; |
| 195 | Inst.addOperand(MCOperand::createReg(ASRRegDecoderTable[RegNo])); |
| 196 | return MCDisassembler::Success; |
| 197 | } |
| 198 | |
Venkatraman Govindaraju | 81aae57 | 2014-03-02 03:39:39 +0000 | [diff] [blame] | 199 | |
Venkatraman Govindaraju | fb54821 | 2014-03-01 07:46:33 +0000 | [diff] [blame] | 200 | static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, |
| 201 | const void *Decoder); |
| 202 | static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 203 | const void *Decoder); |
| 204 | static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 205 | const void *Decoder); |
| 206 | static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 207 | const void *Decoder); |
| 208 | static DecodeStatus DecodeStoreInt(MCInst &Inst, unsigned insn, |
| 209 | uint64_t Address, const void *Decoder); |
| 210 | static DecodeStatus DecodeStoreFP(MCInst &Inst, unsigned insn, |
| 211 | uint64_t Address, const void *Decoder); |
| 212 | static DecodeStatus DecodeStoreDFP(MCInst &Inst, unsigned insn, |
| 213 | uint64_t Address, const void *Decoder); |
| 214 | static DecodeStatus DecodeStoreQFP(MCInst &Inst, unsigned insn, |
| 215 | uint64_t Address, const void *Decoder); |
Venkatraman Govindaraju | 78df2de | 2014-03-01 08:30:58 +0000 | [diff] [blame] | 216 | static DecodeStatus DecodeCall(MCInst &Inst, unsigned insn, |
| 217 | uint64_t Address, const void *Decoder); |
Venkatraman Govindaraju | 484ca1a | 2014-03-01 09:11:57 +0000 | [diff] [blame] | 218 | static DecodeStatus DecodeSIMM13(MCInst &Inst, unsigned insn, |
| 219 | uint64_t Address, const void *Decoder); |
Venkatraman Govindaraju | 4fa2ab2 | 2014-03-02 21:17:44 +0000 | [diff] [blame] | 220 | static DecodeStatus DecodeJMPL(MCInst &Inst, unsigned insn, uint64_t Address, |
| 221 | const void *Decoder); |
Venkatraman Govindaraju | 07d3af2 | 2014-03-02 22:55:53 +0000 | [diff] [blame] | 222 | static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address, |
| 223 | const void *Decoder); |
Venkatraman Govindaraju | f703132 | 2014-03-09 23:32:07 +0000 | [diff] [blame] | 224 | static DecodeStatus DecodeSWAP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 225 | const void *Decoder); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 226 | |
| 227 | #include "SparcGenDisassemblerTables.inc" |
| 228 | |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 229 | /// Read four bytes from the ArrayRef and return 32 bit word. |
| 230 | static DecodeStatus readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 231 | uint64_t &Size, uint32_t &Insn, |
| 232 | bool IsLittleEndian) { |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 233 | // We want to read exactly 4 Bytes of data. |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 234 | if (Bytes.size() < 4) { |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 235 | Size = 0; |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 236 | return MCDisassembler::Fail; |
| 237 | } |
| 238 | |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 239 | Insn = IsLittleEndian |
| 240 | ? (Bytes[0] << 0) | (Bytes[1] << 8) | (Bytes[2] << 16) | |
| 241 | (Bytes[3] << 24) |
| 242 | : (Bytes[3] << 0) | (Bytes[2] << 8) | (Bytes[1] << 16) | |
| 243 | (Bytes[0] << 24); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 244 | |
| 245 | return MCDisassembler::Success; |
| 246 | } |
| 247 | |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 248 | DecodeStatus SparcDisassembler::getInstruction(MCInst &Instr, uint64_t &Size, |
Rafael Espindola | 7fc5b87 | 2014-11-12 02:04:27 +0000 | [diff] [blame] | 249 | ArrayRef<uint8_t> Bytes, |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 250 | uint64_t Address, |
| 251 | raw_ostream &VStream, |
| 252 | raw_ostream &CStream) const { |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 253 | uint32_t Insn; |
Douglas Katzman | 9160e78 | 2015-04-29 20:30:57 +0000 | [diff] [blame] | 254 | bool isLittleEndian = getContext().getAsmInfo()->isLittleEndian(); |
| 255 | DecodeStatus Result = |
| 256 | readInstruction32(Bytes, Address, Size, Insn, isLittleEndian); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 257 | if (Result == MCDisassembler::Fail) |
| 258 | return MCDisassembler::Fail; |
| 259 | |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 260 | // Calling the auto-generated decoder function. |
Rafael Espindola | 4aa6bea | 2014-11-10 18:11:10 +0000 | [diff] [blame] | 261 | Result = |
| 262 | decodeInstruction(DecoderTableSparc32, Instr, Insn, Address, this, STI); |
Venkatraman Govindaraju | dfcccc7 | 2014-01-06 08:08:58 +0000 | [diff] [blame] | 263 | |
| 264 | if (Result != MCDisassembler::Fail) { |
| 265 | Size = 4; |
| 266 | return Result; |
| 267 | } |
| 268 | |
| 269 | return MCDisassembler::Fail; |
| 270 | } |
Venkatraman Govindaraju | fb54821 | 2014-03-01 07:46:33 +0000 | [diff] [blame] | 271 | |
| 272 | |
| 273 | typedef DecodeStatus (*DecodeFunc)(MCInst &MI, unsigned insn, uint64_t Address, |
| 274 | const void *Decoder); |
| 275 | |
| 276 | static DecodeStatus DecodeMem(MCInst &MI, unsigned insn, uint64_t Address, |
| 277 | const void *Decoder, |
| 278 | bool isLoad, DecodeFunc DecodeRD) { |
| 279 | unsigned rd = fieldFromInstruction(insn, 25, 5); |
| 280 | unsigned rs1 = fieldFromInstruction(insn, 14, 5); |
| 281 | bool isImm = fieldFromInstruction(insn, 13, 1); |
James Y Knight | 24060be | 2015-05-18 16:35:04 +0000 | [diff] [blame] | 282 | bool hasAsi = fieldFromInstruction(insn, 23, 1); // (in op3 field) |
| 283 | unsigned asi = fieldFromInstruction(insn, 5, 8); |
Venkatraman Govindaraju | fb54821 | 2014-03-01 07:46:33 +0000 | [diff] [blame] | 284 | unsigned rs2 = 0; |
| 285 | unsigned simm13 = 0; |
| 286 | if (isImm) |
| 287 | simm13 = SignExtend32<13>(fieldFromInstruction(insn, 0, 13)); |
| 288 | else |
| 289 | rs2 = fieldFromInstruction(insn, 0, 5); |
| 290 | |
| 291 | DecodeStatus status; |
| 292 | if (isLoad) { |
| 293 | status = DecodeRD(MI, rd, Address, Decoder); |
| 294 | if (status != MCDisassembler::Success) |
| 295 | return status; |
| 296 | } |
| 297 | |
| 298 | // Decode rs1. |
| 299 | status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); |
| 300 | if (status != MCDisassembler::Success) |
| 301 | return status; |
| 302 | |
| 303 | // Decode imm|rs2. |
| 304 | if (isImm) |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 305 | MI.addOperand(MCOperand::createImm(simm13)); |
Venkatraman Govindaraju | fb54821 | 2014-03-01 07:46:33 +0000 | [diff] [blame] | 306 | else { |
| 307 | status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); |
| 308 | if (status != MCDisassembler::Success) |
| 309 | return status; |
| 310 | } |
| 311 | |
James Y Knight | 24060be | 2015-05-18 16:35:04 +0000 | [diff] [blame] | 312 | if (hasAsi) |
| 313 | MI.addOperand(MCOperand::createImm(asi)); |
| 314 | |
Venkatraman Govindaraju | fb54821 | 2014-03-01 07:46:33 +0000 | [diff] [blame] | 315 | if (!isLoad) { |
| 316 | status = DecodeRD(MI, rd, Address, Decoder); |
| 317 | if (status != MCDisassembler::Success) |
| 318 | return status; |
| 319 | } |
| 320 | return MCDisassembler::Success; |
| 321 | } |
| 322 | |
| 323 | static DecodeStatus DecodeLoadInt(MCInst &Inst, unsigned insn, uint64_t Address, |
| 324 | const void *Decoder) { |
| 325 | return DecodeMem(Inst, insn, Address, Decoder, true, |
| 326 | DecodeIntRegsRegisterClass); |
| 327 | } |
| 328 | |
| 329 | static DecodeStatus DecodeLoadFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 330 | const void *Decoder) { |
| 331 | return DecodeMem(Inst, insn, Address, Decoder, true, |
| 332 | DecodeFPRegsRegisterClass); |
| 333 | } |
| 334 | |
| 335 | static DecodeStatus DecodeLoadDFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 336 | const void *Decoder) { |
| 337 | return DecodeMem(Inst, insn, Address, Decoder, true, |
| 338 | DecodeDFPRegsRegisterClass); |
| 339 | } |
| 340 | |
| 341 | static DecodeStatus DecodeLoadQFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 342 | const void *Decoder) { |
| 343 | return DecodeMem(Inst, insn, Address, Decoder, true, |
| 344 | DecodeQFPRegsRegisterClass); |
| 345 | } |
| 346 | |
| 347 | static DecodeStatus DecodeStoreInt(MCInst &Inst, unsigned insn, |
| 348 | uint64_t Address, const void *Decoder) { |
| 349 | return DecodeMem(Inst, insn, Address, Decoder, false, |
| 350 | DecodeIntRegsRegisterClass); |
| 351 | } |
| 352 | |
| 353 | static DecodeStatus DecodeStoreFP(MCInst &Inst, unsigned insn, uint64_t Address, |
| 354 | const void *Decoder) { |
| 355 | return DecodeMem(Inst, insn, Address, Decoder, false, |
| 356 | DecodeFPRegsRegisterClass); |
| 357 | } |
| 358 | |
| 359 | static DecodeStatus DecodeStoreDFP(MCInst &Inst, unsigned insn, |
| 360 | uint64_t Address, const void *Decoder) { |
| 361 | return DecodeMem(Inst, insn, Address, Decoder, false, |
| 362 | DecodeDFPRegsRegisterClass); |
| 363 | } |
| 364 | |
| 365 | static DecodeStatus DecodeStoreQFP(MCInst &Inst, unsigned insn, |
| 366 | uint64_t Address, const void *Decoder) { |
| 367 | return DecodeMem(Inst, insn, Address, Decoder, false, |
| 368 | DecodeQFPRegsRegisterClass); |
| 369 | } |
Venkatraman Govindaraju | 78df2de | 2014-03-01 08:30:58 +0000 | [diff] [blame] | 370 | |
| 371 | static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, |
| 372 | uint64_t Address, uint64_t Offset, |
| 373 | uint64_t Width, MCInst &MI, |
| 374 | const void *Decoder) { |
| 375 | const MCDisassembler *Dis = static_cast<const MCDisassembler*>(Decoder); |
| 376 | return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch, |
| 377 | Offset, Width); |
| 378 | } |
| 379 | |
| 380 | static DecodeStatus DecodeCall(MCInst &MI, unsigned insn, |
| 381 | uint64_t Address, const void *Decoder) { |
| 382 | unsigned tgt = fieldFromInstruction(insn, 0, 30); |
| 383 | tgt <<= 2; |
| 384 | if (!tryAddingSymbolicOperand(tgt+Address, false, Address, |
| 385 | 0, 30, MI, Decoder)) |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 386 | MI.addOperand(MCOperand::createImm(tgt)); |
Venkatraman Govindaraju | 78df2de | 2014-03-01 08:30:58 +0000 | [diff] [blame] | 387 | return MCDisassembler::Success; |
| 388 | } |
Venkatraman Govindaraju | 484ca1a | 2014-03-01 09:11:57 +0000 | [diff] [blame] | 389 | |
| 390 | static DecodeStatus DecodeSIMM13(MCInst &MI, unsigned insn, |
| 391 | uint64_t Address, const void *Decoder) { |
| 392 | unsigned tgt = SignExtend32<13>(fieldFromInstruction(insn, 0, 13)); |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 393 | MI.addOperand(MCOperand::createImm(tgt)); |
Venkatraman Govindaraju | 484ca1a | 2014-03-01 09:11:57 +0000 | [diff] [blame] | 394 | return MCDisassembler::Success; |
| 395 | } |
Venkatraman Govindaraju | 4fa2ab2 | 2014-03-02 21:17:44 +0000 | [diff] [blame] | 396 | |
| 397 | static DecodeStatus DecodeJMPL(MCInst &MI, unsigned insn, uint64_t Address, |
| 398 | const void *Decoder) { |
| 399 | |
| 400 | unsigned rd = fieldFromInstruction(insn, 25, 5); |
| 401 | unsigned rs1 = fieldFromInstruction(insn, 14, 5); |
| 402 | unsigned isImm = fieldFromInstruction(insn, 13, 1); |
| 403 | unsigned rs2 = 0; |
| 404 | unsigned simm13 = 0; |
| 405 | if (isImm) |
| 406 | simm13 = SignExtend32<13>(fieldFromInstruction(insn, 0, 13)); |
| 407 | else |
| 408 | rs2 = fieldFromInstruction(insn, 0, 5); |
| 409 | |
| 410 | // Decode RD. |
| 411 | DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder); |
| 412 | if (status != MCDisassembler::Success) |
| 413 | return status; |
| 414 | |
| 415 | // Decode RS1. |
| 416 | status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); |
| 417 | if (status != MCDisassembler::Success) |
| 418 | return status; |
| 419 | |
| 420 | // Decode RS1 | SIMM13. |
| 421 | if (isImm) |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 422 | MI.addOperand(MCOperand::createImm(simm13)); |
Venkatraman Govindaraju | 4fa2ab2 | 2014-03-02 21:17:44 +0000 | [diff] [blame] | 423 | else { |
| 424 | status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); |
| 425 | if (status != MCDisassembler::Success) |
| 426 | return status; |
| 427 | } |
| 428 | return MCDisassembler::Success; |
| 429 | } |
Venkatraman Govindaraju | 07d3af2 | 2014-03-02 22:55:53 +0000 | [diff] [blame] | 430 | |
| 431 | static DecodeStatus DecodeReturn(MCInst &MI, unsigned insn, uint64_t Address, |
| 432 | const void *Decoder) { |
| 433 | |
| 434 | unsigned rs1 = fieldFromInstruction(insn, 14, 5); |
| 435 | unsigned isImm = fieldFromInstruction(insn, 13, 1); |
| 436 | unsigned rs2 = 0; |
| 437 | unsigned simm13 = 0; |
| 438 | if (isImm) |
| 439 | simm13 = SignExtend32<13>(fieldFromInstruction(insn, 0, 13)); |
| 440 | else |
| 441 | rs2 = fieldFromInstruction(insn, 0, 5); |
| 442 | |
| 443 | // Decode RS1. |
| 444 | DecodeStatus status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); |
| 445 | if (status != MCDisassembler::Success) |
| 446 | return status; |
| 447 | |
| 448 | // Decode RS2 | SIMM13. |
| 449 | if (isImm) |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 450 | MI.addOperand(MCOperand::createImm(simm13)); |
Venkatraman Govindaraju | 07d3af2 | 2014-03-02 22:55:53 +0000 | [diff] [blame] | 451 | else { |
| 452 | status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); |
| 453 | if (status != MCDisassembler::Success) |
| 454 | return status; |
| 455 | } |
| 456 | return MCDisassembler::Success; |
| 457 | } |
Venkatraman Govindaraju | f703132 | 2014-03-09 23:32:07 +0000 | [diff] [blame] | 458 | |
| 459 | static DecodeStatus DecodeSWAP(MCInst &MI, unsigned insn, uint64_t Address, |
| 460 | const void *Decoder) { |
| 461 | |
| 462 | unsigned rd = fieldFromInstruction(insn, 25, 5); |
| 463 | unsigned rs1 = fieldFromInstruction(insn, 14, 5); |
| 464 | unsigned isImm = fieldFromInstruction(insn, 13, 1); |
James Y Knight | 24060be | 2015-05-18 16:35:04 +0000 | [diff] [blame] | 465 | bool hasAsi = fieldFromInstruction(insn, 23, 1); // (in op3 field) |
| 466 | unsigned asi = fieldFromInstruction(insn, 5, 8); |
Venkatraman Govindaraju | f703132 | 2014-03-09 23:32:07 +0000 | [diff] [blame] | 467 | unsigned rs2 = 0; |
| 468 | unsigned simm13 = 0; |
| 469 | if (isImm) |
| 470 | simm13 = SignExtend32<13>(fieldFromInstruction(insn, 0, 13)); |
| 471 | else |
| 472 | rs2 = fieldFromInstruction(insn, 0, 5); |
| 473 | |
| 474 | // Decode RD. |
| 475 | DecodeStatus status = DecodeIntRegsRegisterClass(MI, rd, Address, Decoder); |
| 476 | if (status != MCDisassembler::Success) |
| 477 | return status; |
| 478 | |
| 479 | // Decode RS1. |
| 480 | status = DecodeIntRegsRegisterClass(MI, rs1, Address, Decoder); |
| 481 | if (status != MCDisassembler::Success) |
| 482 | return status; |
| 483 | |
| 484 | // Decode RS1 | SIMM13. |
| 485 | if (isImm) |
Jim Grosbach | e9119e4 | 2015-05-13 18:37:00 +0000 | [diff] [blame] | 486 | MI.addOperand(MCOperand::createImm(simm13)); |
Venkatraman Govindaraju | f703132 | 2014-03-09 23:32:07 +0000 | [diff] [blame] | 487 | else { |
| 488 | status = DecodeIntRegsRegisterClass(MI, rs2, Address, Decoder); |
| 489 | if (status != MCDisassembler::Success) |
| 490 | return status; |
| 491 | } |
James Y Knight | 24060be | 2015-05-18 16:35:04 +0000 | [diff] [blame] | 492 | |
| 493 | if (hasAsi) |
| 494 | MI.addOperand(MCOperand::createImm(asi)); |
| 495 | |
Venkatraman Govindaraju | f703132 | 2014-03-09 23:32:07 +0000 | [diff] [blame] | 496 | return MCDisassembler::Success; |
| 497 | } |