blob: 7672fea5d95ba8464af2a415a0c5c2440d43f7e3 [file] [log] [blame]
Alex Bradbury6b2cca72016-11-01 23:47:30 +00001//===-- RISCVAsmBackend.cpp - RISCV Assembler Backend ---------------------===//
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
Alex Bradbury9c03e4c2018-11-12 14:25:07 +000010#include "RISCVAsmBackend.h"
Alex Bradburyeb3a64a2018-12-20 14:52:15 +000011#include "RISCVMCExpr.h"
Alex Bradbury9d3f1252017-09-28 08:26:24 +000012#include "llvm/ADT/APInt.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000013#include "llvm/MC/MCAssembler.h"
Alex Bradbury9d3f1252017-09-28 08:26:24 +000014#include "llvm/MC/MCContext.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000015#include "llvm/MC/MCDirectives.h"
16#include "llvm/MC/MCELFObjectWriter.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000017#include "llvm/MC/MCExpr.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000018#include "llvm/MC/MCObjectWriter.h"
Alex Bradbury6b2cca72016-11-01 23:47:30 +000019#include "llvm/MC/MCSymbol.h"
20#include "llvm/Support/ErrorHandling.h"
21#include "llvm/Support/raw_ostream.h"
22
23using namespace llvm;
24
Alex Bradburyeb3a64a2018-12-20 14:52:15 +000025// If linker relaxation is enabled, or the relax option had previously been
26// enabled, always emit relocations even if the fixup can be resolved. This is
27// necessary for correctness as offsets may change during relaxation.
28bool RISCVAsmBackend::shouldForceRelocation(const MCAssembler &Asm,
29 const MCFixup &Fixup,
30 const MCValue &Target) {
31 bool ShouldForce = false;
32
33 switch ((unsigned)Fixup.getKind()) {
34 default:
35 break;
36 case RISCV::fixup_riscv_pcrel_lo12_i:
37 case RISCV::fixup_riscv_pcrel_lo12_s:
38 // For pcrel_lo12, force a relocation if the target of the corresponding
39 // pcrel_hi20 is not in the same fragment.
40 const MCFixup *T = cast<RISCVMCExpr>(Fixup.getValue())->getPCRelHiFixup();
41 if (!T) {
42 Asm.getContext().reportError(Fixup.getLoc(),
43 "could not find corresponding %pcrel_hi");
44 return false;
45 }
46
47 switch ((unsigned)T->getKind()) {
48 default:
49 llvm_unreachable("Unexpected fixup kind for pcrel_lo12");
50 break;
51 case RISCV::fixup_riscv_pcrel_hi20:
52 ShouldForce = T->getValue()->findAssociatedFragment() !=
53 Fixup.getValue()->findAssociatedFragment();
54 break;
55 }
56 break;
57 }
58
59 return ShouldForce || STI.getFeatureBits()[RISCV::FeatureRelax] ||
60 ForceRelocs;
61}
62
Shiva Chen6e07dfb2018-05-18 06:42:21 +000063bool RISCVAsmBackend::fixupNeedsRelaxationAdvanced(const MCFixup &Fixup,
64 bool Resolved,
65 uint64_t Value,
66 const MCRelaxableFragment *DF,
67 const MCAsmLayout &Layout,
68 const bool WasForced) const {
69 // Return true if the symbol is actually unresolved.
70 // Resolved could be always false when shouldForceRelocation return true.
71 // We use !WasForced to indicate that the symbol is unresolved and not forced
72 // by shouldForceRelocation.
73 if (!Resolved && !WasForced)
74 return true;
75
Sameer AbuAsal2646a412018-03-02 22:04:12 +000076 int64_t Offset = int64_t(Value);
77 switch ((unsigned)Fixup.getKind()) {
78 default:
79 return false;
80 case RISCV::fixup_riscv_rvc_branch:
81 // For compressed branch instructions the immediate must be
82 // in the range [-256, 254].
83 return Offset > 254 || Offset < -256;
84 case RISCV::fixup_riscv_rvc_jump:
85 // For compressed jump instructions the immediate must be
86 // in the range [-2048, 2046].
87 return Offset > 2046 || Offset < -2048;
88 }
89}
90
91void RISCVAsmBackend::relaxInstruction(const MCInst &Inst,
92 const MCSubtargetInfo &STI,
93 MCInst &Res) const {
94 // TODO: replace this with call to auto generated uncompressinstr() function.
95 switch (Inst.getOpcode()) {
96 default:
97 llvm_unreachable("Opcode not expected!");
98 case RISCV::C_BEQZ:
99 // c.beqz $rs1, $imm -> beq $rs1, X0, $imm.
100 Res.setOpcode(RISCV::BEQ);
101 Res.addOperand(Inst.getOperand(0));
102 Res.addOperand(MCOperand::createReg(RISCV::X0));
103 Res.addOperand(Inst.getOperand(1));
104 break;
105 case RISCV::C_BNEZ:
106 // c.bnez $rs1, $imm -> bne $rs1, X0, $imm.
107 Res.setOpcode(RISCV::BNE);
108 Res.addOperand(Inst.getOperand(0));
109 Res.addOperand(MCOperand::createReg(RISCV::X0));
110 Res.addOperand(Inst.getOperand(1));
111 break;
112 case RISCV::C_J:
113 // c.j $imm -> jal X0, $imm.
114 Res.setOpcode(RISCV::JAL);
115 Res.addOperand(MCOperand::createReg(RISCV::X0));
116 Res.addOperand(Inst.getOperand(0));
117 break;
118 case RISCV::C_JAL:
119 // c.jal $imm -> jal X1, $imm.
120 Res.setOpcode(RISCV::JAL);
121 Res.addOperand(MCOperand::createReg(RISCV::X1));
122 Res.addOperand(Inst.getOperand(0));
123 break;
124 }
125}
126
127// Given a compressed control flow instruction this function returns
128// the expanded instruction.
129unsigned RISCVAsmBackend::getRelaxedOpcode(unsigned Op) const {
130 switch (Op) {
131 default:
132 return Op;
133 case RISCV::C_BEQZ:
134 return RISCV::BEQ;
135 case RISCV::C_BNEZ:
136 return RISCV::BNE;
137 case RISCV::C_J:
138 case RISCV::C_JAL: // fall through.
139 return RISCV::JAL;
140 }
141}
142
Ilya Biryukov3c9c1062018-06-06 10:57:50 +0000143bool RISCVAsmBackend::mayNeedRelaxation(const MCInst &Inst,
144 const MCSubtargetInfo &STI) const {
Sameer AbuAsal2646a412018-03-02 22:04:12 +0000145 return getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode();
146}
147
Peter Collingbourne571a3302018-05-21 17:57:19 +0000148bool RISCVAsmBackend::writeNopData(raw_ostream &OS, uint64_t Count) const {
Alex Bradburyd93f8892018-01-17 14:17:12 +0000149 bool HasStdExtC = STI.getFeatureBits()[RISCV::FeatureStdExtC];
150 unsigned MinNopLen = HasStdExtC ? 2 : 4;
151
152 if ((Count % MinNopLen) != 0)
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000153 return false;
154
Alex Bradburyd93f8892018-01-17 14:17:12 +0000155 // The canonical nop on RISC-V is addi x0, x0, 0.
156 uint64_t Nop32Count = Count / 4;
157 for (uint64_t i = Nop32Count; i != 0; --i)
Peter Collingbourne571a3302018-05-21 17:57:19 +0000158 OS.write("\x13\0\0\0", 4);
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000159
Alex Bradburyd93f8892018-01-17 14:17:12 +0000160 // The canonical nop on RVC is c.nop.
161 if (HasStdExtC) {
162 uint64_t Nop16Count = (Count - Nop32Count * 4) / 2;
163 for (uint64_t i = Nop16Count; i != 0; --i)
Peter Collingbourne571a3302018-05-21 17:57:19 +0000164 OS.write("\x01\0", 2);
Alex Bradburyd93f8892018-01-17 14:17:12 +0000165 }
166
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000167 return true;
168}
169
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000170static uint64_t adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
171 MCContext &Ctx) {
172 unsigned Kind = Fixup.getKind();
173 switch (Kind) {
174 default:
175 llvm_unreachable("Unknown fixup kind!");
176 case FK_Data_1:
177 case FK_Data_2:
178 case FK_Data_4:
179 case FK_Data_8:
180 return Value;
181 case RISCV::fixup_riscv_lo12_i:
Ahmed Charles646ab872018-02-06 00:55:23 +0000182 case RISCV::fixup_riscv_pcrel_lo12_i:
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000183 return Value & 0xfff;
184 case RISCV::fixup_riscv_lo12_s:
Ahmed Charles646ab872018-02-06 00:55:23 +0000185 case RISCV::fixup_riscv_pcrel_lo12_s:
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000186 return (((Value >> 5) & 0x7f) << 25) | ((Value & 0x1f) << 7);
187 case RISCV::fixup_riscv_hi20:
188 case RISCV::fixup_riscv_pcrel_hi20:
189 // Add 1 if bit 11 is 1, to compensate for low 12 bits being negative.
190 return ((Value + 0x800) >> 12) & 0xfffff;
191 case RISCV::fixup_riscv_jal: {
192 if (!isInt<21>(Value))
193 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
194 if (Value & 0x1)
195 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned");
196 // Need to produce imm[19|10:1|11|19:12] from the 21-bit Value.
197 unsigned Sbit = (Value >> 20) & 0x1;
198 unsigned Hi8 = (Value >> 12) & 0xff;
199 unsigned Mid1 = (Value >> 11) & 0x1;
200 unsigned Lo10 = (Value >> 1) & 0x3ff;
201 // Inst{31} = Sbit;
202 // Inst{30-21} = Lo10;
203 // Inst{20} = Mid1;
204 // Inst{19-12} = Hi8;
205 Value = (Sbit << 19) | (Lo10 << 9) | (Mid1 << 8) | Hi8;
206 return Value;
207 }
208 case RISCV::fixup_riscv_branch: {
209 if (!isInt<13>(Value))
210 Ctx.reportError(Fixup.getLoc(), "fixup value out of range");
211 if (Value & 0x1)
212 Ctx.reportError(Fixup.getLoc(), "fixup value must be 2-byte aligned");
213 // Need to extract imm[12], imm[10:5], imm[4:1], imm[11] from the 13-bit
214 // Value.
215 unsigned Sbit = (Value >> 12) & 0x1;
216 unsigned Hi1 = (Value >> 11) & 0x1;
217 unsigned Mid6 = (Value >> 5) & 0x3f;
218 unsigned Lo4 = (Value >> 1) & 0xf;
219 // Inst{31} = Sbit;
220 // Inst{30-25} = Mid6;
221 // Inst{11-8} = Lo4;
222 // Inst{7} = Hi1;
223 Value = (Sbit << 31) | (Mid6 << 25) | (Lo4 << 8) | (Hi1 << 7);
224 return Value;
225 }
Shiva Chenc3d0e892018-05-30 01:16:36 +0000226 case RISCV::fixup_riscv_call: {
227 // Jalr will add UpperImm with the sign-extended 12-bit LowerImm,
228 // we need to add 0x800ULL before extract upper bits to reflect the
229 // effect of the sign extension.
230 uint64_t UpperImm = (Value + 0x800ULL) & 0xfffff000ULL;
231 uint64_t LowerImm = Value & 0xfffULL;
232 return UpperImm | ((LowerImm << 20) << 32);
233 }
Alex Bradburyf8f4b902017-12-07 13:19:57 +0000234 case RISCV::fixup_riscv_rvc_jump: {
235 // Need to produce offset[11|4|9:8|10|6|7|3:1|5] from the 11-bit Value.
236 unsigned Bit11 = (Value >> 11) & 0x1;
237 unsigned Bit4 = (Value >> 4) & 0x1;
238 unsigned Bit9_8 = (Value >> 8) & 0x3;
239 unsigned Bit10 = (Value >> 10) & 0x1;
240 unsigned Bit6 = (Value >> 6) & 0x1;
241 unsigned Bit7 = (Value >> 7) & 0x1;
242 unsigned Bit3_1 = (Value >> 1) & 0x7;
243 unsigned Bit5 = (Value >> 5) & 0x1;
244 Value = (Bit11 << 10) | (Bit4 << 9) | (Bit9_8 << 7) | (Bit10 << 6) |
245 (Bit6 << 5) | (Bit7 << 4) | (Bit3_1 << 1) | Bit5;
246 return Value;
247 }
248 case RISCV::fixup_riscv_rvc_branch: {
249 // Need to produce offset[8|4:3], [reg 3 bit], offset[7:6|2:1|5]
250 unsigned Bit8 = (Value >> 8) & 0x1;
251 unsigned Bit7_6 = (Value >> 6) & 0x3;
252 unsigned Bit5 = (Value >> 5) & 0x1;
253 unsigned Bit4_3 = (Value >> 3) & 0x3;
254 unsigned Bit2_1 = (Value >> 1) & 0x3;
255 Value = (Bit8 << 12) | (Bit4_3 << 10) | (Bit7_6 << 5) | (Bit2_1 << 3) |
256 (Bit5 << 2);
257 return Value;
258 }
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000259
260 }
261}
262
Rafael Espindola801b42d2017-06-23 22:52:36 +0000263void RISCVAsmBackend::applyFixup(const MCAssembler &Asm, const MCFixup &Fixup,
264 const MCValue &Target,
Rafael Espindola88d9e372017-06-21 23:06:53 +0000265 MutableArrayRef<char> Data, uint64_t Value,
Ilya Biryukov3c9c1062018-06-06 10:57:50 +0000266 bool IsResolved,
267 const MCSubtargetInfo *STI) const {
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000268 MCContext &Ctx = Asm.getContext();
Mandeep Singh Grang5f043ae2017-11-10 19:09:28 +0000269 MCFixupKindInfo Info = getFixupKindInfo(Fixup.getKind());
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000270 if (!Value)
271 return; // Doesn't change encoding.
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000272 // Apply any target-specific value adjustments.
273 Value = adjustFixupValue(Fixup, Value, Ctx);
274
275 // Shift the value into position.
276 Value <<= Info.TargetOffset;
277
278 unsigned Offset = Fixup.getOffset();
Alex Bradbury1c010d02018-05-23 10:53:56 +0000279 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8;
Mandeep Singh Grang5f043ae2017-11-10 19:09:28 +0000280
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000281 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
282
283 // For each byte of the fragment that the fixup touches, mask in the
284 // bits from the fixup value.
Alex Bradbury1c010d02018-05-23 10:53:56 +0000285 for (unsigned i = 0; i != NumBytes; ++i) {
Alex Bradbury9d3f1252017-09-28 08:26:24 +0000286 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
287 }
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000288}
289
Peter Collingbournedcd7d6c2018-05-21 19:20:29 +0000290std::unique_ptr<MCObjectTargetWriter>
291RISCVAsmBackend::createObjectTargetWriter() const {
292 return createRISCVELFObjectWriter(OSABI, Is64Bit);
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000293}
294
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000295MCAsmBackend *llvm::createRISCVAsmBackend(const Target &T,
Alex Bradburyb22f7512018-01-03 08:53:05 +0000296 const MCSubtargetInfo &STI,
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000297 const MCRegisterInfo &MRI,
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000298 const MCTargetOptions &Options) {
Alex Bradburyb22f7512018-01-03 08:53:05 +0000299 const Triple &TT = STI.getTargetTriple();
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000300 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TT.getOS());
Alex Bradburyd93f8892018-01-17 14:17:12 +0000301 return new RISCVAsmBackend(STI, OSABI, TT.isArch64Bit());
Alex Bradbury6b2cca72016-11-01 23:47:30 +0000302}