LLVM  8.0.1
RISCVAsmBackend.cpp
Go to the documentation of this file.
1 //===-- 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 
10 #include "RISCVAsmBackend.h"
11 #include "RISCVMCExpr.h"
12 #include "llvm/ADT/APInt.h"
13 #include "llvm/MC/MCAssembler.h"
14 #include "llvm/MC/MCContext.h"
15 #include "llvm/MC/MCDirectives.h"
17 #include "llvm/MC/MCExpr.h"
18 #include "llvm/MC/MCObjectWriter.h"
19 #include "llvm/MC/MCSymbol.h"
22 
23 using namespace llvm;
24 
25 // 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.
29  const MCFixup &Fixup,
30  const MCValue &Target) {
31  bool ShouldForce = false;
32 
33  switch ((unsigned)Fixup.getKind()) {
34  default:
35  break;
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;
52  ShouldForce = T->getValue()->findAssociatedFragment() !=
54  break;
55  }
56  break;
57  }
58 
59  return ShouldForce || STI.getFeatureBits()[RISCV::FeatureRelax] ||
60  ForceRelocs;
61 }
62 
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 
76  int64_t Offset = int64_t(Value);
77  switch ((unsigned)Fixup.getKind()) {
78  default:
79  return false;
81  // For compressed branch instructions the immediate must be
82  // in the range [-256, 254].
83  return Offset > 254 || Offset < -256;
85  // For compressed jump instructions the immediate must be
86  // in the range [-2048, 2046].
87  return Offset > 2046 || Offset < -2048;
88  }
89 }
90 
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.
129 unsigned 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 
144  const MCSubtargetInfo &STI) const {
145  return getRelaxedOpcode(Inst.getOpcode()) != Inst.getOpcode();
146 }
147 
148 bool RISCVAsmBackend::writeNopData(raw_ostream &OS, uint64_t Count) const {
149  bool HasStdExtC = STI.getFeatureBits()[RISCV::FeatureStdExtC];
150  unsigned MinNopLen = HasStdExtC ? 2 : 4;
151 
152  if ((Count % MinNopLen) != 0)
153  return false;
154 
155  // 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)
158  OS.write("\x13\0\0\0", 4);
159 
160  // 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)
164  OS.write("\x01\0", 2);
165  }
166 
167  return true;
168 }
169 
170 static 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;
183  return Value & 0xfff;
186  return (((Value >> 5) & 0x7f) << 25) | ((Value & 0x1f) << 7);
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  }
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  }
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  }
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  }
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  }
259 
260  }
261 }
262 
264  const MCValue &Target,
265  MutableArrayRef<char> Data, uint64_t Value,
266  bool IsResolved,
267  const MCSubtargetInfo *STI) const {
268  MCContext &Ctx = Asm.getContext();
270  if (!Value)
271  return; // Doesn't change encoding.
272  // 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();
279  unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8;
280 
281  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.
285  for (unsigned i = 0; i != NumBytes; ++i) {
286  Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
287  }
288 }
289 
290 std::unique_ptr<MCObjectTargetWriter>
292  return createRISCVELFObjectWriter(OSABI, Is64Bit);
293 }
294 
296  const MCSubtargetInfo &STI,
297  const MCRegisterInfo &MRI,
298  const MCTargetOptions &Options) {
299  const Triple &TT = STI.getTargetTriple();
300  uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TT.getOS());
301  return new RISCVAsmBackend(STI, OSABI, TT.isArch64Bit());
302 }
std::unique_ptr< MCObjectTargetWriter > createRISCVELFObjectWriter(uint8_t OSABI, bool Is64Bit)
MCAsmBackend * createRISCVAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
This represents an "assembler immediate".
Definition: MCValue.h:40
OSType getOS() const
getOS - Get the parsed operating system type of this triple.
Definition: Triple.h:299
uint64_t alignTo(uint64_t Value, uint64_t Align, uint64_t Skew=0)
Returns the next integer (mod 2**64) that is greater than or equal to Value and is a multiple of Alig...
Definition: MathExtras.h:685
bool fixupNeedsRelaxationAdvanced(const MCFixup &Fixup, bool Resolved, uint64_t Value, const MCRelaxableFragment *DF, const MCAsmLayout &Layout, const bool WasForced) const override
Target specific predicate for whether a given fixup requires the associated instruction to be relaxed...
unsigned TargetOffset
The bit offset to write the relocation into.
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition: MCFixup.h:74
const Triple & getTargetTriple() const
MCContext & getContext() const
Definition: MCAssembler.h:285
static MCOperand createReg(unsigned Reg)
Definition: MCInst.h:116
const FeatureBitset & getFeatureBits() const
Encapsulates the layout of an assembly file at a particular point in time.
Definition: MCAsmLayout.h:29
This file implements a class to represent arbitrary precision integral constant values and operations...
RISCVAsmBackend(const MCSubtargetInfo &STI, uint8_t OSABI, bool Is64Bit)
A four-byte fixup.
Definition: MCFixup.h:26
Context object for machine code objects.
Definition: MCContext.h:63
unsigned getRelaxedOpcode(unsigned Op) const
bool writeNopData(raw_ostream &OS, uint64_t Count) const override
Write an (optimal) nop sequence of Count bytes to the given output.
void applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef< char > Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const override
Apply the Value for given Fixup into the provided data fragment, at the offset specified by the fixup...
Analysis containing CSE Info
Definition: CSEInfo.cpp:21
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
A relaxable fragment holds on to its MCInst, since it may need to be relaxed during the assembler lay...
Definition: MCFragment.h:271
unsigned const MachineRegisterInfo * MRI
static uint64_t adjustFixupValue(const MCFixup &Fixup, uint64_t Value, MCContext &Ctx)
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:291
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:149
void reportError(SMLoc L, const Twine &Msg)
Definition: MCContext.cpp:612
uint32_t getOffset() const
Definition: MCFixup.h:125
std::unique_ptr< MCObjectTargetWriter > createObjectTargetWriter() const override
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
A one-byte fixup.
Definition: MCFixup.h:24
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
raw_ostream & write(unsigned char C)
SMLoc getLoc() const
Definition: MCFixup.h:166
void setOpcode(unsigned Op)
Definition: MCInst.h:173
const MCOperand & getOperand(unsigned i) const
Definition: MCInst.h:182
unsigned TargetSize
The number of bits written by this fixup.
MCFragment * findAssociatedFragment() const
Find the "associated section" for this expression, which is currently defined as the absolute section...
Definition: MCExpr.cpp:867
Target - Wrapper for Target specific information.
bool isArch64Bit() const
Test whether the architecture is 64-bit.
Definition: Triple.cpp:1269
Generic base class for all target subtargets.
A eight-byte fixup.
Definition: MCFixup.h:27
void relaxInstruction(const MCInst &Inst, const MCSubtargetInfo &STI, MCInst &Res) const override
Relax the instruction in the given fragment to the next wider instruction.
Target independent information on a fixup kind.
const unsigned Kind
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
LLVM Value Representation.
Definition: Value.h:73
Generic interface to target specific assembler backends.
Definition: MCAsmBackend.h:42
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
const MCExpr * getValue() const
Definition: MCFixup.h:128
void addOperand(const MCOperand &Op)
Definition: MCInst.h:186
bool shouldForceRelocation(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target) override
Hook to check if a relocation is needed for some target specific reason.
bool mayNeedRelaxation(const MCInst &Inst, const MCSubtargetInfo &STI) const override
Check whether the given instruction may need relaxation.
unsigned getOpcode() const
Definition: MCInst.h:174
const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const override
Get information on a fixup kind.
A two-byte fixup.
Definition: MCFixup.h:25
MCFixupKind getKind() const
Definition: MCFixup.h:123