blob: 2649f1b37296a513f30f50589fd8e44a1219974f [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"
15#include "llvm/MC/MCContext.h"
16#include "llvm/MC/MCDisassembler/MCDisassembler.h"
17#include "llvm/MC/MCFixedLenDisassembler.h"
18#include "llvm/MC/MCInst.h"
19#include "llvm/MC/MCRegisterInfo.h"
20#include "llvm/MC/MCSubtargetInfo.h"
21#include "llvm/Support/Endian.h"
22#include "llvm/Support/TargetRegistry.h"
23
24using namespace llvm;
25
26#define DEBUG_TYPE "riscv-disassembler"
27
28typedef MCDisassembler::DecodeStatus DecodeStatus;
29
30namespace {
31class RISCVDisassembler : public MCDisassembler {
32
33public:
34 RISCVDisassembler(const MCSubtargetInfo &STI, MCContext &Ctx)
35 : MCDisassembler(STI, Ctx) {}
36
37 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
38 ArrayRef<uint8_t> Bytes, uint64_t Address,
39 raw_ostream &VStream,
40 raw_ostream &CStream) const override;
41};
42} // end anonymous namespace
43
44static MCDisassembler *createRISCVDisassembler(const Target &T,
45 const MCSubtargetInfo &STI,
46 MCContext &Ctx) {
47 return new RISCVDisassembler(STI, Ctx);
48}
49
50extern "C" void LLVMInitializeRISCVDisassembler() {
51 // Register the disassembler for each target.
52 TargetRegistry::RegisterMCDisassembler(getTheRISCV32Target(),
53 createRISCVDisassembler);
54 TargetRegistry::RegisterMCDisassembler(getTheRISCV64Target(),
55 createRISCVDisassembler);
56}
57
58static const unsigned GPRDecoderTable[] = {
Alex Bradburyee7c7ec2017-10-19 14:29:03 +000059 RISCV::X0, RISCV::X1, RISCV::X2, RISCV::X3,
60 RISCV::X4, RISCV::X5, RISCV::X6, RISCV::X7,
61 RISCV::X8, RISCV::X9, RISCV::X10, RISCV::X11,
62 RISCV::X12, RISCV::X13, RISCV::X14, RISCV::X15,
63 RISCV::X16, RISCV::X17, RISCV::X18, RISCV::X19,
64 RISCV::X20, RISCV::X21, RISCV::X22, RISCV::X23,
65 RISCV::X24, RISCV::X25, RISCV::X26, RISCV::X27,
66 RISCV::X28, RISCV::X29, RISCV::X30, RISCV::X31
Alex Bradbury8ab4a962017-09-17 14:36:28 +000067};
68
69static DecodeStatus DecodeGPRRegisterClass(MCInst &Inst, uint64_t RegNo,
70 uint64_t Address,
71 const void *Decoder) {
Alex Bradburye2f664e2017-11-21 12:41:41 +000072 if (RegNo > sizeof(GPRDecoderTable))
Alex Bradbury8ab4a962017-09-17 14:36:28 +000073 return MCDisassembler::Fail;
Alex Bradbury8ab4a962017-09-17 14:36:28 +000074
75 // We must define our own mapping from RegNo to register identifier.
76 // Accessing index RegNo in the register class will work in the case that
77 // registers were added in ascending order, but not in general.
78 unsigned Reg = GPRDecoderTable[RegNo];
79 Inst.addOperand(MCOperand::createReg(Reg));
80 return MCDisassembler::Success;
81}
82
Alex Bradbury0d6cf902017-12-07 10:26:05 +000083static const unsigned FPR32DecoderTable[] = {
84 RISCV::F0_32, RISCV::F1_32, RISCV::F2_32, RISCV::F3_32,
85 RISCV::F4_32, RISCV::F5_32, RISCV::F6_32, RISCV::F7_32,
86 RISCV::F8_32, RISCV::F9_32, RISCV::F10_32, RISCV::F11_32,
87 RISCV::F12_32, RISCV::F13_32, RISCV::F14_32, RISCV::F15_32,
88 RISCV::F16_32, RISCV::F17_32, RISCV::F18_32, RISCV::F19_32,
89 RISCV::F20_32, RISCV::F21_32, RISCV::F22_32, RISCV::F23_32,
90 RISCV::F24_32, RISCV::F25_32, RISCV::F26_32, RISCV::F27_32,
91 RISCV::F28_32, RISCV::F29_32, RISCV::F30_32, RISCV::F31_32
92};
93
94static DecodeStatus DecodeFPR32RegisterClass(MCInst &Inst, uint64_t RegNo,
95 uint64_t Address,
96 const void *Decoder) {
97 if (RegNo > sizeof(FPR32DecoderTable))
98 return MCDisassembler::Fail;
99
100 // We must define our own mapping from RegNo to register identifier.
101 // Accessing index RegNo in the register class will work in the case that
102 // registers were added in ascending order, but not in general.
103 unsigned Reg = FPR32DecoderTable[RegNo];
104 Inst.addOperand(MCOperand::createReg(Reg));
105 return MCDisassembler::Success;
106}
107
Alex Bradbury7bc2a952017-12-07 10:46:23 +0000108static const unsigned FPR64DecoderTable[] = {
109 RISCV::F0_64, RISCV::F1_64, RISCV::F2_64, RISCV::F3_64,
110 RISCV::F4_64, RISCV::F5_64, RISCV::F6_64, RISCV::F7_64,
111 RISCV::F8_64, RISCV::F9_64, RISCV::F10_64, RISCV::F11_64,
112 RISCV::F12_64, RISCV::F13_64, RISCV::F14_64, RISCV::F15_64,
113 RISCV::F16_64, RISCV::F17_64, RISCV::F18_64, RISCV::F19_64,
114 RISCV::F20_64, RISCV::F21_64, RISCV::F22_64, RISCV::F23_64,
115 RISCV::F24_64, RISCV::F25_64, RISCV::F26_64, RISCV::F27_64,
116 RISCV::F28_64, RISCV::F29_64, RISCV::F30_64, RISCV::F31_64
117};
118
119static DecodeStatus DecodeFPR64RegisterClass(MCInst &Inst, uint64_t RegNo,
120 uint64_t Address,
121 const void *Decoder) {
122 if (RegNo > sizeof(FPR64DecoderTable))
123 return MCDisassembler::Fail;
124
125 // We must define our own mapping from RegNo to register identifier.
126 // Accessing index RegNo in the register class will work in the case that
127 // registers were added in ascending order, but not in general.
128 unsigned Reg = FPR64DecoderTable[RegNo];
129 Inst.addOperand(MCOperand::createReg(Reg));
130 return MCDisassembler::Success;
131}
132
Alex Bradbury8ab4a962017-09-17 14:36:28 +0000133template <unsigned N>
134static DecodeStatus decodeUImmOperand(MCInst &Inst, uint64_t Imm,
135 int64_t Address, const void *Decoder) {
136 assert(isUInt<N>(Imm) && "Invalid immediate");
137 Inst.addOperand(MCOperand::createImm(Imm));
138 return MCDisassembler::Success;
139}
140
141template <unsigned N>
142static DecodeStatus decodeSImmOperand(MCInst &Inst, uint64_t Imm,
143 int64_t Address, const void *Decoder) {
144 assert(isUInt<N>(Imm) && "Invalid immediate");
145 // Sign-extend the number in the bottom N bits of Imm
146 Inst.addOperand(MCOperand::createImm(SignExtend64<N>(Imm)));
147 return MCDisassembler::Success;
148}
149
150template <unsigned N>
151static DecodeStatus decodeSImmOperandAndLsl1(MCInst &Inst, uint64_t Imm,
152 int64_t Address,
153 const void *Decoder) {
154 assert(isUInt<N>(Imm) && "Invalid immediate");
155 // Sign-extend the number in the bottom N bits of Imm after accounting for
156 // the fact that the N bit immediate is stored in N-1 bits (the LSB is
157 // always zero)
158 Inst.addOperand(MCOperand::createImm(SignExtend64<N>(Imm << 1)));
159 return MCDisassembler::Success;
160}
161
162#include "RISCVGenDisassemblerTables.inc"
163
164DecodeStatus RISCVDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
165 ArrayRef<uint8_t> Bytes,
166 uint64_t Address,
167 raw_ostream &OS,
168 raw_ostream &CS) const {
169 // TODO: although assuming 4-byte instructions is sufficient for RV32 and
170 // RV64, this will need modification when supporting the compressed
171 // instruction set extension (RVC) which uses 16-bit instructions. Other
172 // instruction set extensions have the option of defining instructions up to
173 // 176 bits wide.
174 Size = 4;
175 if (Bytes.size() < 4) {
176 Size = 0;
177 return MCDisassembler::Fail;
178 }
179
180 // Get the four bytes of the instruction.
181 uint32_t Inst = support::endian::read32le(Bytes.data());
182
183 return decodeInstruction(DecoderTable32, MI, Inst, Address, this, STI);
184}