blob: 9564d4e9a5e3209e55732048b04ed49486d70ee0 [file] [log] [blame]
Matt Arsenaultdf90c022013-10-15 23:44:45 +00001//===-- SIInstrInfo.h - SI Instruction Info Interface -----------*- C++ -*-===//
Tom Stellard75aadc22012-12-11 21:25:42 +00002//
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
22namespace llvm {
23
24class SIInstrInfo : public AMDGPUInstrInfo {
25private:
26 const SIRegisterInfo RI;
27
Tom Stellard15834092014-03-21 15:51:57 +000028 unsigned buildExtractSubReg(MachineBasicBlock::iterator MI,
29 MachineRegisterInfo &MRI,
30 MachineOperand &SuperReg,
31 const TargetRegisterClass *SuperRC,
32 unsigned SubIdx,
33 const TargetRegisterClass *SubRC) const;
Matt Arsenault248b7b62014-03-24 20:08:09 +000034 MachineOperand buildExtractSubRegOrImm(MachineBasicBlock::iterator MI,
35 MachineRegisterInfo &MRI,
36 MachineOperand &SuperReg,
37 const TargetRegisterClass *SuperRC,
38 unsigned SubIdx,
39 const TargetRegisterClass *SubRC) const;
Tom Stellard15834092014-03-21 15:51:57 +000040
Matt Arsenaultbd995802014-03-24 18:26:52 +000041 unsigned split64BitImm(SmallVectorImpl<MachineInstr *> &Worklist,
42 MachineBasicBlock::iterator MI,
43 MachineRegisterInfo &MRI,
44 const TargetRegisterClass *RC,
45 const MachineOperand &Op) const;
46
Matt Arsenault689f3252014-06-09 16:36:31 +000047 void splitScalar64BitUnaryOp(SmallVectorImpl<MachineInstr *> &Worklist,
48 MachineInstr *Inst, unsigned Opcode) const;
49
50 void splitScalar64BitBinaryOp(SmallVectorImpl<MachineInstr *> &Worklist,
51 MachineInstr *Inst, unsigned Opcode) const;
Matt Arsenaultf35182c2014-03-24 20:08:05 +000052
Matt Arsenault8333e432014-06-10 19:18:24 +000053 void splitScalar64BitBCNT(SmallVectorImpl<MachineInstr *> &Worklist,
54 MachineInstr *Inst) const;
55
Matt Arsenault27cc9582014-04-18 01:53:18 +000056 void addDescImplicitUseDef(const MCInstrDesc &Desc, MachineInstr *MI) const;
Matt Arsenaultf35182c2014-03-24 20:08:05 +000057
Tom Stellard75aadc22012-12-11 21:25:42 +000058public:
Tom Stellard2e59a452014-06-13 01:32:00 +000059 explicit SIInstrInfo(const AMDGPUSubtarget &st);
Tom Stellard75aadc22012-12-11 21:25:42 +000060
Craig Topper5656db42014-04-29 07:57:24 +000061 const SIRegisterInfo &getRegisterInfo() const override {
Matt Arsenault6dde3032014-03-11 00:01:34 +000062 return RI;
63 }
Tom Stellard75aadc22012-12-11 21:25:42 +000064
Matt Arsenault1acc72f2014-07-29 21:34:55 +000065 bool getLdStBaseRegImmOfs(MachineInstr *LdSt,
66 unsigned &BaseReg, unsigned &Offset,
67 const TargetRegisterInfo *TRI) const final;
68
Craig Topper5656db42014-04-29 07:57:24 +000069 void copyPhysReg(MachineBasicBlock &MBB,
70 MachineBasicBlock::iterator MI, DebugLoc DL,
71 unsigned DestReg, unsigned SrcReg,
72 bool KillSrc) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000073
Tom Stellardc149dc02013-11-27 21:23:35 +000074 void storeRegToStackSlot(MachineBasicBlock &MBB,
75 MachineBasicBlock::iterator MI,
76 unsigned SrcReg, bool isKill, int FrameIndex,
77 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +000078 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +000079
80 void loadRegFromStackSlot(MachineBasicBlock &MBB,
81 MachineBasicBlock::iterator MI,
82 unsigned DestReg, int FrameIndex,
83 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +000084 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +000085
Tom Stellardeba61072014-05-02 15:41:42 +000086 virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const;
87
Christian Konig3c145802013-03-27 09:12:59 +000088 unsigned commuteOpcode(unsigned Opcode) const;
89
Craig Topper5656db42014-04-29 07:57:24 +000090 MachineInstr *commuteInstruction(MachineInstr *MI,
91 bool NewMI=false) const override;
Christian Konig76edd4f2013-02-26 17:52:29 +000092
Tom Stellard30f59412014-03-31 14:01:56 +000093 bool isTriviallyReMaterializable(const MachineInstr *MI,
Craig Toppere73658d2014-04-28 04:05:08 +000094 AliasAnalysis *AA = nullptr) const;
Tom Stellard30f59412014-03-31 14:01:56 +000095
Tom Stellard26a3b672013-10-22 18:19:10 +000096 MachineInstr *buildMovInstr(MachineBasicBlock *MBB,
97 MachineBasicBlock::iterator I,
Craig Topper5656db42014-04-29 07:57:24 +000098 unsigned DstReg, unsigned SrcReg) const override;
99 bool isMov(unsigned Opcode) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +0000100
Craig Topper5656db42014-04-29 07:57:24 +0000101 bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const override;
Tom Stellard5d7aaae2014-02-10 16:58:30 +0000102 bool isDS(uint16_t Opcode) const;
Matt Arsenaultb9f46ee2014-07-28 17:59:38 +0000103 bool isMIMG(uint16_t Opcode) const;
104 bool isSMRD(uint16_t Opcode) const;
Matt Arsenaulte2fabd32014-07-29 18:51:56 +0000105 bool isMUBUF(uint16_t Opcode) const;
106 bool isMTBUF(uint16_t Opcode) const;
Tom Stellard93fabce2013-10-10 17:11:55 +0000107 bool isVOP1(uint16_t Opcode) const;
108 bool isVOP2(uint16_t Opcode) const;
109 bool isVOP3(uint16_t Opcode) const;
110 bool isVOPC(uint16_t Opcode) const;
Matt Arsenaultd7bdcc42014-03-31 19:54:27 +0000111 bool isInlineConstant(const APInt &Imm) const;
Tom Stellard93fabce2013-10-10 17:11:55 +0000112 bool isInlineConstant(const MachineOperand &MO) const;
113 bool isLiteralConstant(const MachineOperand &MO) const;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000114
Tom Stellardb02094e2014-07-21 15:45:01 +0000115 bool isImmOperandLegal(const MachineInstr *MI, unsigned OpNo,
116 const MachineOperand &MO) const;
117
Tom Stellard86d12eb2014-08-01 00:32:28 +0000118 /// \brief Return true if this 64-bit VALU instruction has a 32-bit encoding.
119 /// This function will return false if you pass it a 32-bit instruction.
120 bool hasVALU32BitEncoding(unsigned Opcode) const;
121
Tom Stellardb4a313a2014-08-01 00:32:39 +0000122 /// \brief Return true if this instruction has any modifiers.
123 /// e.g. src[012]_mod, omod, clamp.
124 bool hasModifiers(unsigned Opcode) const;
Craig Topper5656db42014-04-29 07:57:24 +0000125 bool verifyInstruction(const MachineInstr *MI,
126 StringRef &ErrInfo) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000127
Tom Stellard82166022013-11-13 23:36:37 +0000128 bool isSALUInstr(const MachineInstr &MI) const;
Matt Arsenaultf14032a2013-11-15 22:02:28 +0000129 static unsigned getVALUOp(const MachineInstr &MI);
Matt Arsenaultf35182c2014-03-24 20:08:05 +0000130
Tom Stellard82166022013-11-13 23:36:37 +0000131 bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const;
132
133 /// \brief Return the correct register class for \p OpNo. For target-specific
134 /// instructions, this will return the register class that has been defined
135 /// in tablegen. For generic instructions, like REG_SEQUENCE it will return
136 /// the register class of its machine operand.
137 /// to infer the correct register class base on the other operands.
138 const TargetRegisterClass *getOpRegClass(const MachineInstr &MI,
139 unsigned OpNo) const;\
140
141 /// \returns true if it is legal for the operand at index \p OpNo
142 /// to read a VGPR.
143 bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const;
144
145 /// \brief Legalize the \p OpIndex operand of this instruction by inserting
146 /// a MOV. For example:
147 /// ADD_I32_e32 VGPR0, 15
148 /// to
149 /// MOV VGPR1, 15
150 /// ADD_I32_e32 VGPR0, VGPR1
151 ///
152 /// If the operand being legalized is a register, then a COPY will be used
153 /// instead of MOV.
154 void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const;
155
Tom Stellard0e975cf2014-08-01 00:32:35 +0000156 /// \brief Check if \p MO is a legal operand if it was the \p OpIdx Operand
157 /// for \p MI.
158 bool isOperandLegal(const MachineInstr *MI, unsigned OpIdx,
159 const MachineOperand *MO = nullptr) const;
160
Tom Stellard82166022013-11-13 23:36:37 +0000161 /// \brief Legalize all operands in this instruction. This function may
162 /// create new instruction and insert them before \p MI.
163 void legalizeOperands(MachineInstr *MI) const;
164
Tom Stellard0c354f22014-04-30 15:31:29 +0000165 void moveSMRDToVALU(MachineInstr *MI, MachineRegisterInfo &MRI) const;
166
Tom Stellard82166022013-11-13 23:36:37 +0000167 /// \brief Replace this instruction's opcode with the equivalent VALU
168 /// opcode. This function will also move the users of \p MI to the
169 /// VALU if necessary.
170 void moveToVALU(MachineInstr &MI) const;
171
Craig Topper5656db42014-04-29 07:57:24 +0000172 unsigned calculateIndirectAddress(unsigned RegIndex,
173 unsigned Channel) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000174
Craig Topper5656db42014-04-29 07:57:24 +0000175 const TargetRegisterClass *getIndirectAddrRegClass() const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000176
Craig Topper5656db42014-04-29 07:57:24 +0000177 MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
178 MachineBasicBlock::iterator I,
179 unsigned ValueReg,
180 unsigned Address,
181 unsigned OffsetReg) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000182
Craig Topper5656db42014-04-29 07:57:24 +0000183 MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
184 MachineBasicBlock::iterator I,
185 unsigned ValueReg,
186 unsigned Address,
187 unsigned OffsetReg) const override;
Tom Stellard81d871d2013-11-13 23:36:50 +0000188 void reserveIndirectRegisters(BitVector &Reserved,
189 const MachineFunction &MF) const;
190
191 void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I,
192 unsigned SavReg, unsigned IndexReg) const;
Tom Stellardeba61072014-05-02 15:41:42 +0000193
194 void insertNOPs(MachineBasicBlock::iterator MI, int Count) const;
Tom Stellard1aaad692014-07-21 16:55:33 +0000195
196 /// \brief Returns the operand named \p Op. If \p MI does not have an
197 /// operand named \c Op, this function returns nullptr.
Tom Stellard6407e1e2014-08-01 00:32:33 +0000198 MachineOperand *getNamedOperand(MachineInstr &MI, unsigned OperandName) const;
Tom Stellard81d871d2013-11-13 23:36:50 +0000199};
Tom Stellard75aadc22012-12-11 21:25:42 +0000200
Christian Konigf741fbf2013-02-26 17:52:42 +0000201namespace AMDGPU {
202
203 int getVOPe64(uint16_t Opcode);
Tom Stellard1aaad692014-07-21 16:55:33 +0000204 int getVOPe32(uint16_t Opcode);
Christian Konig3c145802013-03-27 09:12:59 +0000205 int getCommuteRev(uint16_t Opcode);
206 int getCommuteOrig(uint16_t Opcode);
Tom Stellardc721a232014-05-16 20:56:47 +0000207 int getMCOpcode(uint16_t Opcode, unsigned Gen);
Christian Konigf741fbf2013-02-26 17:52:42 +0000208
Tom Stellard15834092014-03-21 15:51:57 +0000209 const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL;
Tom Stellardb02094e2014-07-21 15:45:01 +0000210 const uint64_t RSRC_TID_ENABLE = 1LL << 55;
Tom Stellard15834092014-03-21 15:51:57 +0000211
Christian Konigf741fbf2013-02-26 17:52:42 +0000212} // End namespace AMDGPU
213
Tom Stellard75aadc22012-12-11 21:25:42 +0000214} // End namespace llvm
215
216namespace SIInstrFlags {
217 enum Flags {
218 // First 4 bits are the instruction encoding
Tom Stellard1c822a82013-02-07 19:39:45 +0000219 VM_CNT = 1 << 0,
220 EXP_CNT = 1 << 1,
221 LGKM_CNT = 1 << 2
Tom Stellard75aadc22012-12-11 21:25:42 +0000222 };
223}
224
Tom Stellardb4a313a2014-08-01 00:32:39 +0000225namespace SISrcMods {
226 enum {
227 NEG = 1 << 0,
228 ABS = 1 << 1
229 };
230}
231
Tom Stellard75aadc22012-12-11 21:25:42 +0000232#endif //SIINSTRINFO_H