LLVM  8.0.1
SparcMCCodeEmitter.cpp
Go to the documentation of this file.
1 //===-- SparcMCCodeEmitter.cpp - Convert Sparc code to machine code -------===//
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 SparcMCCodeEmitter class.
11 //
12 //===----------------------------------------------------------------------===//
13 
15 #include "SparcMCExpr.h"
16 #include "SparcMCTargetDesc.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/Statistic.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/MC/MCCodeEmitter.h"
21 #include "llvm/MC/MCContext.h"
22 #include "llvm/MC/MCExpr.h"
23 #include "llvm/MC/MCFixup.h"
24 #include "llvm/MC/MCInst.h"
25 #include "llvm/MC/MCInstrInfo.h"
26 #include "llvm/MC/MCRegisterInfo.h"
28 #include "llvm/MC/MCSymbol.h"
30 #include "llvm/Support/Casting.h"
31 #include "llvm/Support/Endian.h"
35 #include <cassert>
36 #include <cstdint>
37 
38 using namespace llvm;
39 
40 #define DEBUG_TYPE "mccodeemitter"
41 
42 STATISTIC(MCNumEmitted, "Number of MC instructions emitted");
43 
44 namespace {
45 
46 class SparcMCCodeEmitter : public MCCodeEmitter {
47  const MCInstrInfo &MCII;
48  MCContext &Ctx;
49 
50 public:
51  SparcMCCodeEmitter(const MCInstrInfo &mcii, MCContext &ctx)
52  : MCII(mcii), Ctx(ctx) {}
53  SparcMCCodeEmitter(const SparcMCCodeEmitter &) = delete;
54  SparcMCCodeEmitter &operator=(const SparcMCCodeEmitter &) = delete;
55  ~SparcMCCodeEmitter() override = default;
56 
57  void encodeInstruction(const MCInst &MI, raw_ostream &OS,
59  const MCSubtargetInfo &STI) const override;
60 
61  // getBinaryCodeForInstr - TableGen'erated function for getting the
62  // binary encoding for an instruction.
63  uint64_t getBinaryCodeForInstr(const MCInst &MI,
65  const MCSubtargetInfo &STI) const;
66 
67  /// getMachineOpValue - Return binary encoding of operand. If the machine
68  /// operand requires relocation, record the relocation and return zero.
69  unsigned getMachineOpValue(const MCInst &MI, const MCOperand &MO,
71  const MCSubtargetInfo &STI) const;
72 
73  unsigned getCallTargetOpValue(const MCInst &MI, unsigned OpNo,
75  const MCSubtargetInfo &STI) const;
76  unsigned getBranchTargetOpValue(const MCInst &MI, unsigned OpNo,
78  const MCSubtargetInfo &STI) const;
79  unsigned getBranchPredTargetOpValue(const MCInst &MI, unsigned OpNo,
81  const MCSubtargetInfo &STI) const;
82  unsigned getBranchOnRegTargetOpValue(const MCInst &MI, unsigned OpNo,
84  const MCSubtargetInfo &STI) const;
85 
86 private:
87  uint64_t computeAvailableFeatures(const FeatureBitset &FB) const;
88  void verifyInstructionPredicates(const MCInst &MI,
89  uint64_t AvailableFeatures) const;
90 };
91 
92 } // end anonymous namespace
93 
94 void SparcMCCodeEmitter::encodeInstruction(const MCInst &MI, raw_ostream &OS,
96  const MCSubtargetInfo &STI) const {
97  verifyInstructionPredicates(MI,
98  computeAvailableFeatures(STI.getFeatureBits()));
99 
100  unsigned Bits = getBinaryCodeForInstr(MI, Fixups, STI);
101  support::endian::write(OS, Bits,
102  Ctx.getAsmInfo()->isLittleEndian() ? support::little
103  : support::big);
104  unsigned tlsOpNo = 0;
105  switch (MI.getOpcode()) {
106  default: break;
107  case SP::TLS_CALL: tlsOpNo = 1; break;
108  case SP::TLS_ADDrr:
109  case SP::TLS_ADDXrr:
110  case SP::TLS_LDrr:
111  case SP::TLS_LDXrr: tlsOpNo = 3; break;
112  }
113  if (tlsOpNo != 0) {
114  const MCOperand &MO = MI.getOperand(tlsOpNo);
115  uint64_t op = getMachineOpValue(MI, MO, Fixups, STI);
116  assert(op == 0 && "Unexpected operand value!");
117  (void)op; // suppress warning.
118  }
119 
120  ++MCNumEmitted; // Keep track of the # of mi's emitted.
121 }
122 
123 unsigned SparcMCCodeEmitter::
124 getMachineOpValue(const MCInst &MI, const MCOperand &MO,
125  SmallVectorImpl<MCFixup> &Fixups,
126  const MCSubtargetInfo &STI) const {
127  if (MO.isReg())
128  return Ctx.getRegisterInfo()->getEncodingValue(MO.getReg());
129 
130  if (MO.isImm())
131  return MO.getImm();
132 
133  assert(MO.isExpr());
134  const MCExpr *Expr = MO.getExpr();
135  if (const SparcMCExpr *SExpr = dyn_cast<SparcMCExpr>(Expr)) {
136  MCFixupKind Kind = (MCFixupKind)SExpr->getFixupKind();
137  Fixups.push_back(MCFixup::create(0, Expr, Kind));
138  return 0;
139  }
140 
141  int64_t Res;
142  if (Expr->evaluateAsAbsolute(Res))
143  return Res;
144 
145  llvm_unreachable("Unhandled expression!");
146  return 0;
147 }
148 
149 unsigned SparcMCCodeEmitter::
150 getCallTargetOpValue(const MCInst &MI, unsigned OpNo,
151  SmallVectorImpl<MCFixup> &Fixups,
152  const MCSubtargetInfo &STI) const {
153  const MCOperand &MO = MI.getOperand(OpNo);
154  if (MO.isReg() || MO.isImm())
155  return getMachineOpValue(MI, MO, Fixups, STI);
156 
157  if (MI.getOpcode() == SP::TLS_CALL) {
158  // No fixups for __tls_get_addr. Will emit for fixups for tls_symbol in
159  // encodeInstruction.
160 #ifndef NDEBUG
161  // Verify that the callee is actually __tls_get_addr.
162  const SparcMCExpr *SExpr = dyn_cast<SparcMCExpr>(MO.getExpr());
163  assert(SExpr && SExpr->getSubExpr()->getKind() == MCExpr::SymbolRef &&
164  "Unexpected expression in TLS_CALL");
165  const MCSymbolRefExpr *SymExpr = cast<MCSymbolRefExpr>(SExpr->getSubExpr());
166  assert(SymExpr->getSymbol().getName() == "__tls_get_addr" &&
167  "Unexpected function for TLS_CALL");
168 #endif
169  return 0;
170  }
171 
173 
174  if (const SparcMCExpr *SExpr = dyn_cast<SparcMCExpr>(MO.getExpr())) {
175  if (SExpr->getKind() == SparcMCExpr::VK_Sparc_WPLT30)
177  }
178 
179  Fixups.push_back(MCFixup::create(0, MO.getExpr(), fixupKind));
180 
181  return 0;
182 }
183 
184 unsigned SparcMCCodeEmitter::
185 getBranchTargetOpValue(const MCInst &MI, unsigned OpNo,
186  SmallVectorImpl<MCFixup> &Fixups,
187  const MCSubtargetInfo &STI) const {
188  const MCOperand &MO = MI.getOperand(OpNo);
189  if (MO.isReg() || MO.isImm())
190  return getMachineOpValue(MI, MO, Fixups, STI);
191 
192  Fixups.push_back(MCFixup::create(0, MO.getExpr(),
194  return 0;
195 }
196 
197 unsigned SparcMCCodeEmitter::
198 getBranchPredTargetOpValue(const MCInst &MI, unsigned OpNo,
199  SmallVectorImpl<MCFixup> &Fixups,
200  const MCSubtargetInfo &STI) const {
201  const MCOperand &MO = MI.getOperand(OpNo);
202  if (MO.isReg() || MO.isImm())
203  return getMachineOpValue(MI, MO, Fixups, STI);
204 
205  Fixups.push_back(MCFixup::create(0, MO.getExpr(),
207  return 0;
208 }
209 
210 unsigned SparcMCCodeEmitter::
211 getBranchOnRegTargetOpValue(const MCInst &MI, unsigned OpNo,
212  SmallVectorImpl<MCFixup> &Fixups,
213  const MCSubtargetInfo &STI) const {
214  const MCOperand &MO = MI.getOperand(OpNo);
215  if (MO.isReg() || MO.isImm())
216  return getMachineOpValue(MI, MO, Fixups, STI);
217 
218  Fixups.push_back(MCFixup::create(0, MO.getExpr(),
220  Fixups.push_back(MCFixup::create(0, MO.getExpr(),
222 
223  return 0;
224 }
225 
226 #define ENABLE_INSTR_PREDICATE_VERIFIER
227 #include "SparcGenMCCodeEmitter.inc"
228 
230  const MCRegisterInfo &MRI,
231  MCContext &Ctx) {
232  return new SparcMCCodeEmitter(MCII, Ctx);
233 }
bool isImm() const
Definition: MCInst.h:59
MCCodeEmitter * createSparcMCCodeEmitter(const MCInstrInfo &MCII, const MCRegisterInfo &MRI, MCContext &Ctx)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
bool isReg() const
Definition: MCInst.h:58
STATISTIC(NumFunctions, "Total number of functions")
#define op(i)
const FeatureBitset & getFeatureBits() const
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: APFloat.h:42
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
Represent a reference to a symbol from inside an expression.
Definition: MCExpr.h:166
unsigned getReg() const
Returns the register number.
Definition: MCInst.h:65
Context object for machine code objects.
Definition: MCContext.h:63
const MCExpr * getExpr() const
Definition: MCInst.h:96
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
fixup_sparc_br19 - 19-bit PC relative relocation for branches on icc/xcc
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
void write(void *memory, value_type value, endianness endian)
Write a value to memory with a particular endianness.
Definition: Endian.h:100
int64_t getImm() const
Definition: MCInst.h:76
unsigned const MachineRegisterInfo * MRI
Container class for subtarget features.
MCCodeEmitter - Generic instruction encoding interface.
Definition: MCCodeEmitter.h:22
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:24
MCFixupKind
Extensible enumeration to represent the type of a fixup.
Definition: MCFixup.h:23
bool isExpr() const
Definition: MCInst.h:61
const MCExpr * getSubExpr() const
getSubExpr - Get the child of this expression.
Definition: SparcMCExpr.h:84
static MCFixup create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc=SMLoc())
Definition: MCFixup.h:90
fixup_sparc_bpr - 16-bit fixup for bpr
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
ExprKind getKind() const
Definition: MCExpr.h:73
const MCOperand & getOperand(unsigned i) const
Definition: MCInst.h:182
Generic base class for all target subtargets.
References to labels and assigned expressions.
Definition: MCExpr.h:41
LLVM_NODISCARD std::enable_if<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type >::type dyn_cast(const Y &Val)
Definition: Casting.h:323
static uint32_t getBranchTargetOpValue(const MCInst &MI, unsigned OpIdx, unsigned FixupKind, SmallVectorImpl< MCFixup > &Fixups, const MCSubtargetInfo &STI)
getBranchTargetOpValue - Helper function to get the branch target operand, which is either an immedia...
const unsigned Kind
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
fixup_sparc_br22 - 22-bit PC relative relocation for branches
VariantKind getKind() const
getOpcode - Get the kind of this expression.
Definition: SparcMCExpr.h:81
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
IRTranslator LLVM IR MI
unsigned getOpcode() const
Definition: MCInst.h:174
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:35