blob: eafa09d56315d853cdcab9f1715e7e4b0aaa6aa0 [file] [log] [blame]
Alex Bradbury8ab4a962017-09-17 14:36:28 +00001//===-- RISCVDisassembler.cpp - Disassembler for RISCV --------------------===//
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 implements the RISCVDisassembler class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "MCTargetDesc/RISCVMCTargetDesc.h"
Ana Pazos9d6c5532018-10-04 21:50:54 +000015#include "Utils/RISCVBaseInfo.h"
Alex Bradbury8ab4a962017-09-17 14:36:28 +000016#include "llvm/MC/MCContext.h"
17#include "llvm/MC/MCDisassembler/MCDisassembler.h"
18#include "llvm/MC/MCFixedLenDisassembler.h"
19#include "llvm/MC/MCInst.h"
20#include "llvm/MC/MCRegisterInfo.h"
21#include "llvm/MC/MCSubtargetInfo.h"
22#include "llvm/Support/Endian.h"
23#include "llvm/Support/TargetRegistry.h"
24
25using namespace llvm;
26
27#define DEBUG_TYPE "riscv-disassembler"
28
29typedef MCDisassembler::DecodeStatus DecodeStatus;
30
31namespace {
32class RISCVDisassembler : public MCDisassembler {
33
34public:
35 RISCVDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
36 : MCDisassembler(STI, Ctx) {}
37
38 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
39 ArrayRef<uint8_t> Bytes, uint64_t Address,
40 raw_ostream &VStream,
41 raw_ostream &CStream) const override;
42};
43} // end anonymous namespace
44
45static MCDisassembler *createRISCVDisassembler(const Target &T,
46 const MCSubtargetInfo &STI,
47 MCContext &Ctx) {
48 return new RISCVDisassembler(STI, Ctx);
49}
50
51extern "C" void LLVMInitializeRISCVDisassembler() {
52 // Register the disassembler for each target.
53 TargetRegistry::RegisterMCDisassembler(getTheRISCV32Target(),
54 createRISCVDisassembler);
55 TargetRegistry::RegisterMCDisassembler(getTheRISCV64Target(),
56 createRISCVDisassembler);
57}
58
59static const unsigned GPRDecoderTable[] = {
Alex Bradburyee7c7ec2017-10-19 14:29:03 +000060 RISCV::X0, RISCV::X1, RISCV::X2, RISCV::X3,
61 RISCV::X4, RISCV::X5, RISCV::X6, RISCV::X7,
62 RISCV::X8, RISCV::X9, RISCV::X10, RISCV::X11,
63 RISCV::X12, RISCV::X13, RISCV::X14, RISCV::X15,
64 RISCV::X16, RISCV::X17, RISCV::X18, RISCV::X19,
65 RISCV::X20, RISCV::X21, RISCV::X22, RISCV::X23,
66 RISCV::X24, RISCV::X25, RISCV::X26, RISCV::X27,
67 RISCV::X28, RISCV::X29, RISCV::X30, RISCV::X31
Alex Bradbury8ab4a962017-09-17 14:36:28 +000068};
69
70static DecodeStatus DecodeGPRRegisterClass(MCInst &Inst, uint64_t RegNo,
71 uint64_t Address,
72 const void *Decoder) {
Alex Bradbury60714f92017-12-13 09:32:55 +000073 if (RegNo > sizeof(GPRDecoderTable))
74 return MCDisassembler::Fail;
Alex Bradbury8ab4a962017-09-17 14:36:28 +000075
Alex Bradbury60714f92017-12-13 09:32:55 +000076 // We must define our own mapping from RegNo to register identifier.
77 // Accessing index RegNo in the register class will work in the case that
78 // registers were added in ascending order, but not in general.
79 unsigned Reg = GPRDecoderTable[RegNo];
80 Inst.addOperand(MCOperand::createReg(Reg));
81 return MCDisassembler::Success;
Alex Bradbury8ab4a962017-09-17 14:36:28 +000082}
83
Alex Bradbury0d6cf902017-12-07 10:26:05 +000084static const unsigned FPR32DecoderTable[] = {
85 RISCV::F0_32, RISCV::F1_32, RISCV::F2_32, RISCV::F3_32,
86 RISCV::F4_32, RISCV::F5_32, RISCV::F6_32, RISCV::F7_32,
87 RISCV::F8_32, RISCV::F9_32, RISCV::F10_32, RISCV::F11_32,
88 RISCV::F12_32, RISCV::F13_32, RISCV::F14_32, RISCV::F15_32,
89 RISCV::F16_32, RISCV::F17_32, RISCV::F18_32, RISCV::F19_32,
90 RISCV::F20_32, RISCV::F21_32, RISCV::F22_32, RISCV::F23_32,
91 RISCV::F24_32, RISCV::F25_32, RISCV::F26_32, RISCV::F27_32,
92 RISCV::F28_32, RISCV::F29_32, RISCV::F30_32, RISCV::F31_32
93};
94
95static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, uint64_t RegNo,
96 uint64_t Address,
97 const void *Decoder) {
98 if (RegNo > sizeof(FPR32DecoderTable))
99 return MCDisassembler::Fail;
100
101 // We must define our own mapping from RegNo to register identifier.
102 // Accessing index RegNo in the register class will work in the case that
103 // registers were added in ascending order, but not in general.
104 unsigned Reg = FPR32DecoderTable[RegNo];
105 Inst.addOperand(MCOperand::createReg(Reg));
106 return MCDisassembler::Success;
107}
108
Alex Bradbury60714f92017-12-13 09:32:55 +0000109static DecodeStatus DecodeFPR32CRegisterClass(MCInst &Inst, uint64_t RegNo,
110 uint64_t Address,
111 const void *Decoder) {
112 if (RegNo > 8) {
113 return MCDisassembler::Fail;
114 }
115 unsigned Reg = FPR32DecoderTable[RegNo + 8];
116 Inst.addOperand(MCOperand::createReg(Reg));
117 return MCDisassembler::Success;
118}
119
Alex Bradbury7bc2a952017-12-07 10:46:23 +0000120static const unsigned FPR64DecoderTable[] = {
121 RISCV::F0_64, RISCV::F1_64, RISCV::F2_64, RISCV::F3_64,
122 RISCV::F4_64, RISCV::F5_64, RISCV::F6_64, RISCV::F7_64,
123 RISCV::F8_64, RISCV::F9_64, RISCV::F10_64, RISCV::F11_64,
124 RISCV::F12_64, RISCV::F13_64, RISCV::F14_64, RISCV::F15_64,
125 RISCV::F16_64, RISCV::F17_64, RISCV::F18_64, RISCV::F19_64,
126 RISCV::F20_64, RISCV::F21_64, RISCV::F22_64, RISCV::F23_64,
127 RISCV::F24_64, RISCV::F25_64, RISCV::F26_64, RISCV::F27_64,
128 RISCV::F28_64, RISCV::F29_64, RISCV::F30_64, RISCV::F31_64
129};
130
131static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, uint64_t RegNo,
132 uint64_t Address,
133 const void *Decoder) {
134 if (RegNo > sizeof(FPR64DecoderTable))
135 return MCDisassembler::Fail;
136
137 // We must define our own mapping from RegNo to register identifier.
138 // Accessing index RegNo in the register class will work in the case that
139 // registers were added in ascending order, but not in general.
140 unsigned Reg = FPR64DecoderTable[RegNo];
141 Inst.addOperand(MCOperand::createReg(Reg));
142 return MCDisassembler::Success;
143}
144
Alex Bradbury60714f92017-12-13 09:32:55 +0000145static DecodeStatus DecodeFPR64CRegisterClass(MCInst &Inst, uint64_t RegNo,
146 uint64_t Address,
147 const void *Decoder) {
148 if (RegNo > 8) {
149 return MCDisassembler::Fail;
150 }
151 unsigned Reg = FPR64DecoderTable[RegNo + 8];
152 Inst.addOperand(MCOperand::createReg(Reg));
153 return MCDisassembler::Success;
154}
155
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000156static DecodeStatus DecodeGPRNoX0RegisterClass(MCInst &Inst, uint64_t RegNo,
157 uint64_t Address,
158 const void *Decoder) {
Alex Bradbury60714f92017-12-13 09:32:55 +0000159 if (RegNo == 0) {
160 return MCDisassembler::Fail;
161 }
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000162
Alex Bradbury60714f92017-12-13 09:32:55 +0000163 return DecodeGPRRegisterClass(Inst, RegNo, Address, Decoder);
164}
165
166static DecodeStatus DecodeGPRNoX0X2RegisterClass(MCInst &Inst, uint64_t RegNo,
167 uint64_t Address,
168 const void *Decoder) {
169 if (RegNo == 2) {
170 return MCDisassembler::Fail;
171 }
172
173 return DecodeGPRNoX0RegisterClass(Inst, RegNo, Address, Decoder);
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000174}
175
176static DecodeStatus DecodeGPRCRegisterClass(MCInst &Inst, uint64_t RegNo,
177 uint64_t Address,
178 const void *Decoder) {
179 if (RegNo > 8)
180 return MCDisassembler::Fail;
181
182 unsigned Reg = GPRDecoderTable[RegNo + 8];
183 Inst.addOperand(MCOperand::createReg(Reg));
184 return MCDisassembler::Success;
185}
186
187// Add implied SP operand for instructions *SP compressed instructions. The SP
188// operand isn't explicitly encoded in the instruction.
189static void addImplySP(MCInst &Inst, int64_t Address, const void *Decoder) {
Alex Bradbury19c93142017-12-13 09:57:25 +0000190 if (Inst.getOpcode() == RISCV::C_LWSP || Inst.getOpcode() == RISCV::C_SWSP ||
191 Inst.getOpcode() == RISCV::C_LDSP || Inst.getOpcode() == RISCV::C_SDSP ||
192 Inst.getOpcode() == RISCV::C_FLWSP ||
193 Inst.getOpcode() == RISCV::C_FSWSP ||
194 Inst.getOpcode() == RISCV::C_FLDSP ||
195 Inst.getOpcode() == RISCV::C_FSDSP ||
196 Inst.getOpcode() == RISCV::C_ADDI4SPN) {
Alex Bradbury60714f92017-12-13 09:32:55 +0000197 DecodeGPRRegisterClass(Inst, 2, Address, Decoder);
198 }
Alex Bradbury19c93142017-12-13 09:57:25 +0000199 if (Inst.getOpcode() == RISCV::C_ADDI16SP) {
Alex Bradbury60714f92017-12-13 09:32:55 +0000200 DecodeGPRRegisterClass(Inst, 2, Address, Decoder);
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000201 DecodeGPRRegisterClass(Inst, 2, Address, Decoder);
202 }
203}
204
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000205template <unsigned N>
206static DecodeStatus decodeUImmOperand(MCInst &Inst, uint64_t Imm,
207 int64_t Address, const void *Decoder) {
208 assert(isUInt<N>(Imm) && "Invalid immediate");
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000209 addImplySP(Inst, Address, Decoder);
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000210 Inst.addOperand(MCOperand::createImm(Imm));
211 return MCDisassembler::Success;
212}
213
214template <unsigned N>
Ana Pazosb0799dd2018-09-13 18:21:19 +0000215static DecodeStatus decodeUImmNonZeroOperand(MCInst &Inst, uint64_t Imm,
216 int64_t Address,
217 const void *Decoder) {
218 if (Imm == 0)
219 return MCDisassembler::Fail;
220 return decodeUImmOperand<N>(Inst, Imm, Address, Decoder);
221}
222
223template <unsigned N>
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000224static DecodeStatus decodeSImmOperand(MCInst &Inst, uint64_t Imm,
225 int64_t Address, const void *Decoder) {
226 assert(isUInt<N>(Imm) && "Invalid immediate");
Alex Bradbury60714f92017-12-13 09:32:55 +0000227 addImplySP(Inst, Address, Decoder);
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000228 // Sign-extend the number in the bottom N bits of Imm
229 Inst.addOperand(MCOperand::createImm(SignExtend64<N>(Imm)));
230 return MCDisassembler::Success;
231}
232
233template <unsigned N>
Ana Pazosb0799dd2018-09-13 18:21:19 +0000234static DecodeStatus decodeSImmNonZeroOperand(MCInst &Inst, uint64_t Imm,
235 int64_t Address,
236 const void *Decoder) {
237 if (Imm == 0)
238 return MCDisassembler::Fail;
239 return decodeSImmOperand<N>(Inst, Imm, Address, Decoder);
240}
241
242template <unsigned N>
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000243static DecodeStatus decodeSImmOperandAndLsl1(MCInst &Inst, uint64_t Imm,
244 int64_t Address,
245 const void *Decoder) {
246 assert(isUInt<N>(Imm) && "Invalid immediate");
247 // Sign-extend the number in the bottom N bits of Imm after accounting for
248 // the fact that the N bit immediate is stored in N-1 bits (the LSB is
249 // always zero)
250 Inst.addOperand(MCOperand::createImm(SignExtend64<N>(Imm << 1)));
251 return MCDisassembler::Success;
252}
253
Shiva Chen7c172422018-02-22 15:02:28 +0000254static DecodeStatus decodeCLUIImmOperand(MCInst &Inst, uint64_t Imm,
255 int64_t Address,
256 const void *Decoder) {
257 assert(isUInt<6>(Imm) && "Invalid immediate");
258 if (Imm > 31) {
259 Imm = (SignExtend64<6>(Imm) & 0xfffff);
260 }
261 Inst.addOperand(MCOperand::createImm(Imm));
262 return MCDisassembler::Success;
263}
264
Ana Pazosb2ed11a2018-09-07 18:43:43 +0000265static DecodeStatus decodeFRMArg(MCInst &Inst, uint64_t Imm,
266 int64_t Address,
267 const void *Decoder) {
268 assert(isUInt<3>(Imm) && "Invalid immediate");
269 if (!llvm::RISCVFPRndMode::isValidRoundingMode(Imm))
270 return MCDisassembler::Fail;
271
272 Inst.addOperand(MCOperand::createImm(Imm));
273 return MCDisassembler::Success;
274}
275
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000276#include "RISCVGenDisassemblerTables.inc"
277
278DecodeStatus RISCVDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
279 ArrayRef<uint8_t> Bytes,
280 uint64_t Address,
281 raw_ostream &OS,
282 raw_ostream &CS) const {
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000283 // TODO: This will need modification when supporting instruction set
284 // extensions with instructions > 32-bits (up to 176 bits wide).
285 uint32_t Insn;
286 DecodeStatus Result;
287
288 // It's a 32 bit instruction if bit 0 and 1 are 1.
289 if ((Bytes[0] & 0x3) == 0x3) {
Ana Pazosb97d1892018-09-07 18:23:19 +0000290 if (Bytes.size() < 4) {
291 Size = 0;
292 return MCDisassembler::Fail;
293 }
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000294 Insn = support::endian::read32le(Bytes.data());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000295 LLVM_DEBUG(dbgs() << "Trying RISCV32 table :\n");
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000296 Result = decodeInstruction(DecoderTable32, MI, Insn, Address, this, STI);
297 Size = 4;
298 } else {
Ana Pazosb97d1892018-09-07 18:23:19 +0000299 if (Bytes.size() < 2) {
300 Size = 0;
301 return MCDisassembler::Fail;
302 }
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000303 Insn = support::endian::read16le(Bytes.data());
Alex Bradbury60714f92017-12-13 09:32:55 +0000304
305 if (!STI.getFeatureBits()[RISCV::Feature64Bit]) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000306 LLVM_DEBUG(
307 dbgs() << "Trying RISCV32Only_16 table (16-bit Instruction):\n");
Alex Bradbury60714f92017-12-13 09:32:55 +0000308 // Calling the auto-generated decoder function.
309 Result = decodeInstruction(DecoderTableRISCV32Only_16, MI, Insn, Address,
310 this, STI);
311 if (Result != MCDisassembler::Fail) {
312 Size = 2;
313 return Result;
314 }
315 }
316
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000317 LLVM_DEBUG(dbgs() << "Trying RISCV_C table (16-bit Instruction):\n");
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000318 // Calling the auto-generated decoder function.
319 Result = decodeInstruction(DecoderTable16, MI, Insn, Address, this, STI);
320 Size = 2;
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000321 }
322
Alex Bradbury9f6aec42017-12-07 12:50:32 +0000323 return Result;
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000324}