LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SIInstrInfo.h
Go to the documentation of this file.
1 //===-- SIInstrInfo.h - SI Instruction Info Interface -----------*- C++ -*-===//
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 /// \brief Interface definition for SIInstrInfo.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 
16 #ifndef SIINSTRINFO_H
17 #define SIINSTRINFO_H
18 
19 #include "AMDGPUInstrInfo.h"
20 #include "SIRegisterInfo.h"
21 
22 namespace llvm {
23 
24 class SIInstrInfo : public AMDGPUInstrInfo {
25 private:
26  const SIRegisterInfo RI;
27 
28  MachineInstrBuilder buildIndirectIndexLoop(MachineBasicBlock &MBB,
30  unsigned OffsetVGPR,
31  unsigned MovRelOp,
32  unsigned Dst,
33  unsigned Src0) const;
34  // If you add or remove instructions from this function, you will
35 
36 public:
37  explicit SIInstrInfo(AMDGPUTargetMachine &tm);
38 
39  const SIRegisterInfo &getRegisterInfo() const;
40 
41  virtual void copyPhysReg(MachineBasicBlock &MBB,
43  unsigned DestReg, unsigned SrcReg,
44  bool KillSrc) const;
45 
46  unsigned commuteOpcode(unsigned Opcode) const;
47 
49  bool NewMI=false) const;
50 
51  virtual unsigned getIEQOpcode() const { assert(!"Implement"); return 0;}
54  unsigned DstReg, unsigned SrcReg) const;
55  virtual bool isMov(unsigned Opcode) const;
56 
57  virtual bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const;
58  int isMIMG(uint16_t Opcode) const;
59  int isSMRD(uint16_t Opcode) const;
60  bool isVOP1(uint16_t Opcode) const;
61  bool isVOP2(uint16_t Opcode) const;
62  bool isVOP3(uint16_t Opcode) const;
63  bool isVOPC(uint16_t Opcode) const;
64  bool isInlineConstant(const MachineOperand &MO) const;
65  bool isLiteralConstant(const MachineOperand &MO) const;
66 
67  virtual bool verifyInstruction(const MachineInstr *MI,
68  StringRef &ErrInfo) const;
69 
70  bool isSALUInstr(const MachineInstr &MI) const;
71  static unsigned getVALUOp(const MachineInstr &MI);
72  bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const;
73 
74  /// \brief Return the correct register class for \p OpNo. For target-specific
75  /// instructions, this will return the register class that has been defined
76  /// in tablegen. For generic instructions, like REG_SEQUENCE it will return
77  /// the register class of its machine operand.
78  /// to infer the correct register class base on the other operands.
80  unsigned OpNo) const;\
81 
82  /// \returns true if it is legal for the operand at index \p OpNo
83  /// to read a VGPR.
84  bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const;
85 
86  /// \brief Legalize the \p OpIndex operand of this instruction by inserting
87  /// a MOV. For example:
88  /// ADD_I32_e32 VGPR0, 15
89  /// to
90  /// MOV VGPR1, 15
91  /// ADD_I32_e32 VGPR0, VGPR1
92  ///
93  /// If the operand being legalized is a register, then a COPY will be used
94  /// instead of MOV.
95  void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const;
96 
97  /// \brief Legalize all operands in this instruction. This function may
98  /// create new instruction and insert them before \p MI.
99  void legalizeOperands(MachineInstr *MI) const;
100 
101  /// \brief Replace this instruction's opcode with the equivalent VALU
102  /// opcode. This function will also move the users of \p MI to the
103  /// VALU if necessary.
104  void moveToVALU(MachineInstr &MI) const;
105 
106  virtual unsigned calculateIndirectAddress(unsigned RegIndex,
107  unsigned Channel) const;
108 
109  virtual const TargetRegisterClass *getIndirectAddrRegClass() const;
110 
113  unsigned ValueReg,
114  unsigned Address,
115  unsigned OffsetReg) const;
116 
119  unsigned ValueReg,
120  unsigned Address,
121  unsigned OffsetReg) const;
122  void reserveIndirectRegisters(BitVector &Reserved,
123  const MachineFunction &MF) const;
124 
126  unsigned SavReg, unsigned IndexReg) const;
127 };
128 
129 namespace AMDGPU {
130 
131  int getVOPe64(uint16_t Opcode);
132  int getCommuteRev(uint16_t Opcode);
133  int getCommuteOrig(uint16_t Opcode);
134 
135 } // End namespace AMDGPU
136 
137 } // End namespace llvm
138 
139 namespace SIInstrFlags {
140  enum Flags {
141  // First 4 bits are the instruction encoding
142  VM_CNT = 1 << 0,
143  EXP_CNT = 1 << 1,
144  LGKM_CNT = 1 << 2
145  };
146 }
147 
148 #endif //SIINSTRINFO_H
Interface definition for SIRegisterInfo.
int getVOPe64(uint16_t Opcode)
void moveToVALU(MachineInstr &MI) const
Replace this instruction's opcode with the equivalent VALU opcode. This function will also move the u...
virtual bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const
bool isLiteralConstant(const MachineOperand &MO) const
virtual MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, unsigned ValueReg, unsigned Address, unsigned OffsetReg) const
Build instruction(s) for an indirect register read.
int getCommuteOrig(uint16_t Opcode)
SIInstrInfo(AMDGPUTargetMachine &tm)
Definition: SIInstrInfo.cpp:25
int isMIMG(uint16_t Opcode) const
bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const
virtual void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, DebugLoc DL, unsigned DestReg, unsigned SrcReg, bool KillSrc) const
Definition: SIInstrInfo.cpp:39
virtual bool verifyInstruction(const MachineInstr *MI, StringRef &ErrInfo) const
virtual MachineInstr * commuteInstruction(MachineInstr *MI, bool NewMI=false) const
bundle_iterator< MachineInstr, instr_iterator > iterator
bool isSALUInstr(const MachineInstr &MI) const
virtual const TargetRegisterClass * getIndirectAddrRegClass() const
virtual unsigned calculateIndirectAddress(unsigned RegIndex, unsigned Channel) const
Calculate the "Indirect Address" for the given RegIndex and Channel.
void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const
Legalize the OpIndex operand of this instruction by inserting a MOV. For example: ADD_I32_e32 VGPR0...
virtual bool isMov(unsigned Opcode) const
MachineInstr * buildMovInstr(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, unsigned DstReg, unsigned SrcReg) const
Build a MOV instruction.
bool isVOP1(uint16_t Opcode) const
bool isVOP3(uint16_t Opcode) const
void reserveIndirectRegisters(BitVector &Reserved, const MachineFunction &MF) const
Contains the definition of a TargetInstrInfo class that is common to all AMD GPUs.
unsigned commuteOpcode(unsigned Opcode) const
bool isVOPC(uint16_t Opcode) const
void legalizeOperands(MachineInstr *MI) const
Legalize all operands in this instruction. This function may create new instruction and insert them b...
#define I(x, y, z)
Definition: MD5.cpp:54
int getCommuteRev(uint16_t Opcode)
void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I, unsigned SavReg, unsigned IndexReg) const
const SIRegisterInfo & getRegisterInfo() const
Definition: SIInstrInfo.cpp:30
static unsigned getVALUOp(const MachineInstr &MI)
bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const
virtual MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, unsigned ValueReg, unsigned Address, unsigned OffsetReg) const
Build instruction(s) for an indirect register write.
virtual unsigned getIEQOpcode() const
Definition: SIInstrInfo.h:51
bool isInlineConstant(const MachineOperand &MO) const
const TargetRegisterClass * getOpRegClass(const MachineInstr &MI, unsigned OpNo) const
Return the correct register class for OpNo. For target-specific instructions, this will return the re...
int isSMRD(uint16_t Opcode) const
bool isVOP2(uint16_t Opcode) const