LLVM  8.0.1
R600MCCodeEmitter.cpp
Go to the documentation of this file.
1 //===- R600MCCodeEmitter.cpp - Code Emitter for R600->Cayman GPU families -===//
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 /// \file
11 ///
12 /// The R600 code emitter produces machine code that can be executed
13 /// directly on the GPU device.
14 //
15 //===----------------------------------------------------------------------===//
16 
19 #include "R600Defines.h"
20 #include "llvm/MC/MCCodeEmitter.h"
21 #include "llvm/MC/MCContext.h"
22 #include "llvm/MC/MCFixup.h"
23 #include "llvm/MC/MCInst.h"
24 #include "llvm/MC/MCInstrDesc.h"
25 #include "llvm/MC/MCInstrInfo.h"
26 #include "llvm/MC/MCRegisterInfo.h"
28 #include "llvm/Support/Endian.h"
31 #include <cassert>
32 #include <cstdint>
33 
34 using namespace llvm;
35 
36 namespace {
37 
38 class R600MCCodeEmitter : public MCCodeEmitter {
39  const MCRegisterInfo &MRI;
40  const MCInstrInfo &MCII;
41 
42 public:
43  R600MCCodeEmitter(const MCInstrInfo &mcii, const MCRegisterInfo &mri)
44  : MRI(mri), MCII(mcii) {}
45  R600MCCodeEmitter(const R600MCCodeEmitter &) = delete;
46  R600MCCodeEmitter &operator=(const R600MCCodeEmitter &) = delete;
47 
48  /// Encode the instruction and write it to the OS.
49  void encodeInstruction(const MCInst &MI, raw_ostream &OS,
51  const MCSubtargetInfo &STI) const;
52 
53  /// \returns the encoding for an MCOperand.
54  uint64_t getMachineOpValue(const MCInst &MI, const MCOperand &MO,
56  const MCSubtargetInfo &STI) const;
57 
58 private:
59 
60  void Emit(uint32_t value, raw_ostream &OS) const;
61  void Emit(uint64_t value, raw_ostream &OS) const;
62 
63  unsigned getHWReg(unsigned regNo) const;
64 
65  uint64_t getBinaryCodeForInstr(const MCInst &MI,
67  const MCSubtargetInfo &STI) const;
68  uint64_t computeAvailableFeatures(const FeatureBitset &FB) const;
69  void verifyInstructionPredicates(const MCInst &MI,
70  uint64_t AvailableFeatures) const;
71 
72 };
73 
74 } // end anonymous namespace
75 
76 enum RegElement {
77  ELEMENT_X = 0,
81 };
82 
83 enum FCInstr {
91 };
92 
94  const MCRegisterInfo &MRI,
95  MCContext &Ctx) {
96  return new R600MCCodeEmitter(MCII, MRI);
97 }
98 
99 void R600MCCodeEmitter::encodeInstruction(const MCInst &MI, raw_ostream &OS,
101  const MCSubtargetInfo &STI) const {
102  verifyInstructionPredicates(MI,
103  computeAvailableFeatures(STI.getFeatureBits()));
104 
105  const MCInstrDesc &Desc = MCII.get(MI.getOpcode());
106  if (MI.getOpcode() == R600::RETURN ||
107  MI.getOpcode() == R600::FETCH_CLAUSE ||
108  MI.getOpcode() == R600::ALU_CLAUSE ||
109  MI.getOpcode() == R600::BUNDLE ||
110  MI.getOpcode() == R600::KILL) {
111  return;
112  } else if (IS_VTX(Desc)) {
113  uint64_t InstWord01 = getBinaryCodeForInstr(MI, Fixups, STI);
114  uint32_t InstWord2 = MI.getOperand(2).getImm(); // Offset
115  if (!(STI.getFeatureBits()[R600::FeatureCaymanISA])) {
116  InstWord2 |= 1 << 19; // Mega-Fetch bit
117  }
118 
119  Emit(InstWord01, OS);
120  Emit(InstWord2, OS);
121  Emit((uint32_t) 0, OS);
122  } else if (IS_TEX(Desc)) {
123  int64_t Sampler = MI.getOperand(14).getImm();
124 
125  int64_t SrcSelect[4] = {
126  MI.getOperand(2).getImm(),
127  MI.getOperand(3).getImm(),
128  MI.getOperand(4).getImm(),
129  MI.getOperand(5).getImm()
130  };
131  int64_t Offsets[3] = {
132  MI.getOperand(6).getImm() & 0x1F,
133  MI.getOperand(7).getImm() & 0x1F,
134  MI.getOperand(8).getImm() & 0x1F
135  };
136 
137  uint64_t Word01 = getBinaryCodeForInstr(MI, Fixups, STI);
138  uint32_t Word2 = Sampler << 15 | SrcSelect[ELEMENT_X] << 20 |
139  SrcSelect[ELEMENT_Y] << 23 | SrcSelect[ELEMENT_Z] << 26 |
140  SrcSelect[ELEMENT_W] << 29 | Offsets[0] << 0 | Offsets[1] << 5 |
141  Offsets[2] << 10;
142 
143  Emit(Word01, OS);
144  Emit(Word2, OS);
145  Emit((uint32_t) 0, OS);
146  } else {
147  uint64_t Inst = getBinaryCodeForInstr(MI, Fixups, STI);
148  if ((STI.getFeatureBits()[R600::FeatureR600ALUInst]) &&
149  ((Desc.TSFlags & R600_InstFlag::OP1) ||
150  Desc.TSFlags & R600_InstFlag::OP2)) {
151  uint64_t ISAOpCode = Inst & (0x3FFULL << 39);
152  Inst &= ~(0x3FFULL << 39);
153  Inst |= ISAOpCode << 1;
154  }
155  Emit(Inst, OS);
156  }
157 }
158 
159 void R600MCCodeEmitter::Emit(uint32_t Value, raw_ostream &OS) const {
161 }
162 
163 void R600MCCodeEmitter::Emit(uint64_t Value, raw_ostream &OS) const {
165 }
166 
167 unsigned R600MCCodeEmitter::getHWReg(unsigned RegNo) const {
168  return MRI.getEncodingValue(RegNo) & HW_REG_MASK;
169 }
170 
171 uint64_t R600MCCodeEmitter::getMachineOpValue(const MCInst &MI,
172  const MCOperand &MO,
173  SmallVectorImpl<MCFixup> &Fixups,
174  const MCSubtargetInfo &STI) const {
175  if (MO.isReg()) {
176  if (HAS_NATIVE_OPERANDS(MCII.get(MI.getOpcode()).TSFlags))
177  return MRI.getEncodingValue(MO.getReg());
178  return getHWReg(MO.getReg());
179  }
180 
181  if (MO.isExpr()) {
182  // We put rodata at the end of code section, then map the entire
183  // code secetion as vtx buf. Thus the section relative address is the
184  // correct one.
185  // Each R600 literal instruction has two operands
186  // We can't easily get the order of the current one, so compare against
187  // the first one and adjust offset.
188  const unsigned offset = (&MO == &MI.getOperand(0)) ? 0 : 4;
189  Fixups.push_back(MCFixup::create(offset, MO.getExpr(), FK_SecRel_4, MI.getLoc()));
190  return 0;
191  }
192 
193  assert(MO.isImm());
194  return MO.getImm();
195 }
196 
197 #define ENABLE_INSTR_PREDICATE_VERIFIER
198 #include "R600GenMCCodeEmitter.inc"
bool isImm() const
Definition: MCInst.h:59
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Describe properties that are true of each instruction in the target description file.
Definition: MCInstrDesc.h:164
bool isReg() const
Definition: MCInst.h:58
Offsets
Offsets in bytes from the start of the input buffer.
Definition: SIInstrInfo.h:1025
MCCodeEmitter * createR600MCCodeEmitter(const MCInstrInfo &MCII, const MCRegisterInfo &MRI, MCContext &Ctx)
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
A four-byte section relative fixup.
Definition: MCFixup.h:42
#define HAS_NATIVE_OPERANDS(Flags)
Definition: R600Defines.h:53
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
#define HW_REG_MASK
Defines for extracting register information from register encoding.
Definition: R600Defines.h:56
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
bool isExpr() const
Definition: MCInst.h:61
static MCFixup create(uint32_t Offset, const MCExpr *Value, MCFixupKind Kind, SMLoc Loc=SMLoc())
Definition: MCFixup.h:90
const MCOperand & getOperand(unsigned i) const
Definition: MCInst.h:182
#define IS_TEX(desc)
Definition: R600Defines.h:63
SMLoc getLoc() const
Definition: MCInst.h:180
Provides AMDGPU specific target descriptions.
Generic base class for all target subtargets.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
LLVM Value Representation.
Definition: Value.h:73
#define IS_VTX(desc)
Definition: R600Defines.h:62
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
static unsigned getHWReg(const SIInstrInfo *TII, const MachineInstr &RegInstr)
unsigned getOpcode() const
Definition: MCInst.h:174
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:35