blob: 2e36f05aa2fff75dcef0bc494ce079405595de11 [file] [log] [blame]
Tom Stellard75aadc22012-12-11 21:25:42 +00001//===-- R600InstrInfo.h - R600 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 R600InstrInfo
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef R600INSTRUCTIONINFO_H_
16#define R600INSTRUCTIONINFO_H_
17
Tom Stellard75aadc22012-12-11 21:25:42 +000018#include "AMDGPUInstrInfo.h"
19#include "R600Defines.h"
20#include "R600RegisterInfo.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000021#include <map>
22
23namespace llvm {
24
25 class AMDGPUTargetMachine;
26 class DFAPacketizer;
27 class ScheduleDAG;
28 class MachineFunction;
29 class MachineInstr;
30 class MachineInstrBuilder;
31
32 class R600InstrInfo : public AMDGPUInstrInfo {
33 private:
34 const R600RegisterInfo RI;
Vincent Lejeunec2991642013-04-30 00:13:39 +000035 const AMDGPUSubtarget &ST;
Tom Stellard75aadc22012-12-11 21:25:42 +000036
37 int getBranchInstr(const MachineOperand &op) const;
Vincent Lejeune0fca91d2013-05-17 16:50:02 +000038 std::vector<std::pair<int, unsigned> >
Vincent Lejeunebb8a87212013-06-29 19:32:29 +000039 ExtractSrcs(MachineInstr *MI, const DenseMap<unsigned, unsigned> &PV, unsigned &ConstCount) const;
Tom Stellard75aadc22012-12-11 21:25:42 +000040
41 public:
Vincent Lejeune0fca91d2013-05-17 16:50:02 +000042 enum BankSwizzle {
Vincent Lejeunebb8a87212013-06-29 19:32:29 +000043 ALU_VEC_012_SCL_210 = 0,
44 ALU_VEC_021_SCL_122,
45 ALU_VEC_120_SCL_212,
46 ALU_VEC_102_SCL_221,
Vincent Lejeune0fca91d2013-05-17 16:50:02 +000047 ALU_VEC_201,
48 ALU_VEC_210
49 };
50
Tom Stellard75aadc22012-12-11 21:25:42 +000051 explicit R600InstrInfo(AMDGPUTargetMachine &tm);
52
53 const R600RegisterInfo &getRegisterInfo() const;
54 virtual void copyPhysReg(MachineBasicBlock &MBB,
55 MachineBasicBlock::iterator MI, DebugLoc DL,
56 unsigned DestReg, unsigned SrcReg,
57 bool KillSrc) const;
58
59 bool isTrig(const MachineInstr &MI) const;
60 bool isPlaceHolderOpcode(unsigned opcode) const;
61 bool isReductionOp(unsigned opcode) const;
62 bool isCubeOp(unsigned opcode) const;
63
64 /// \returns true if this \p Opcode represents an ALU instruction.
65 bool isALUInstr(unsigned Opcode) const;
Tom Stellardc026e8b2013-06-28 15:47:08 +000066 bool hasInstrModifiers(unsigned Opcode) const;
67 bool isLDSInstr(unsigned Opcode) const;
Tom Stellard75aadc22012-12-11 21:25:42 +000068
Vincent Lejeunea4da6fb2013-10-01 19:32:58 +000069 /// \returns true if this \p Opcode represents an ALU instruction or an
70 /// instruction that will be lowered in ExpandSpecialInstrs Pass.
71 bool canBeConsideredALU(const MachineInstr *MI) const;
72
Vincent Lejeune076c0b22013-04-30 00:14:17 +000073 bool isTransOnly(unsigned Opcode) const;
74 bool isTransOnly(const MachineInstr *MI) const;
Vincent Lejeune4d5c5e52013-09-04 19:53:30 +000075 bool isVectorOnly(unsigned Opcode) const;
76 bool isVectorOnly(const MachineInstr *MI) const;
Tom Stellard676c16d2013-08-16 01:11:51 +000077 bool isExport(unsigned Opcode) const;
Vincent Lejeune076c0b22013-04-30 00:14:17 +000078
Vincent Lejeunec2991642013-04-30 00:13:39 +000079 bool usesVertexCache(unsigned Opcode) const;
80 bool usesVertexCache(const MachineInstr *MI) const;
81 bool usesTextureCache(unsigned Opcode) const;
82 bool usesTextureCache(const MachineInstr *MI) const;
83
Tom Stellardce540332013-06-28 15:46:59 +000084 bool mustBeLastInClause(unsigned Opcode) const;
Tom Stellard7f6fa4c2013-09-12 02:55:06 +000085 bool readsLDSSrcReg(const MachineInstr *MI) const;
Tom Stellardce540332013-06-28 15:46:59 +000086
Tom Stellard84021442013-07-23 01:48:24 +000087 /// \returns The operand index for the given source number. Legal values
88 /// for SrcNum are 0, 1, and 2.
89 int getSrcIdx(unsigned Opcode, unsigned SrcNum) const;
90 /// \returns The operand Index for the Sel operand given an index to one
91 /// of the instruction's src operands.
92 int getSelIdx(unsigned Opcode, unsigned SrcIdx) const;
93
Vincent Lejeune0fca91d2013-05-17 16:50:02 +000094 /// \returns a pair for each src of an ALU instructions.
95 /// The first member of a pair is the register id.
96 /// If register is ALU_CONST, second member is SEL.
97 /// If register is ALU_LITERAL, second member is IMM.
98 /// Otherwise, second member value is undefined.
99 SmallVector<std::pair<MachineOperand *, int64_t>, 3>
100 getSrcs(MachineInstr *MI) const;
101
Vincent Lejeune77a83522013-06-29 19:32:43 +0000102 unsigned isLegalUpTo(
103 const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs,
104 const std::vector<R600InstrInfo::BankSwizzle> &Swz,
105 const std::vector<std::pair<int, unsigned> > &TransSrcs,
106 R600InstrInfo::BankSwizzle TransSwz) const;
107
108 bool FindSwizzleForVectorSlot(
109 const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs,
110 std::vector<R600InstrInfo::BankSwizzle> &SwzCandidate,
111 const std::vector<std::pair<int, unsigned> > &TransSrcs,
112 R600InstrInfo::BankSwizzle TransSwz) const;
Tom Stellardc026e8b2013-06-28 15:47:08 +0000113
Vincent Lejeune0fca91d2013-05-17 16:50:02 +0000114 /// Given the order VEC_012 < VEC_021 < VEC_120 < VEC_102 < VEC_201 < VEC_210
115 /// returns true and the first (in lexical order) BankSwizzle affectation
116 /// starting from the one already provided in the Instruction Group MIs that
117 /// fits Read Port limitations in BS if available. Otherwise returns false
118 /// and undefined content in BS.
Vincent Lejeune77a83522013-06-29 19:32:43 +0000119 /// isLastAluTrans should be set if the last Alu of MIs will be executed on
120 /// Trans ALU. In this case, ValidTSwizzle returns the BankSwizzle value to
121 /// apply to the last instruction.
Vincent Lejeune0fca91d2013-05-17 16:50:02 +0000122 /// PV holds GPR to PV registers in the Instruction Group MIs.
123 bool fitsReadPortLimitations(const std::vector<MachineInstr *> &MIs,
124 const DenseMap<unsigned, unsigned> &PV,
Vincent Lejeune77a83522013-06-29 19:32:43 +0000125 std::vector<BankSwizzle> &BS,
126 bool isLastAluTrans) const;
127
128 /// An instruction group can only access 2 channel pair (either [XY] or [ZW])
129 /// from KCache bank on R700+. This function check if MI set in input meet
130 /// this limitations
131 bool fitsConstReadLimitations(const std::vector<MachineInstr *> &) const;
132 /// Same but using const index set instead of MI set.
Vincent Lejeune0a22bc42013-03-14 15:50:45 +0000133 bool fitsConstReadLimitations(const std::vector<unsigned>&) const;
Vincent Lejeune0a22bc42013-03-14 15:50:45 +0000134
Tom Stellard75aadc22012-12-11 21:25:42 +0000135 /// \breif Vector instructions are instructions that must fill all
136 /// instruction slots within an instruction group.
137 bool isVector(const MachineInstr &MI) const;
138
Tom Stellard75aadc22012-12-11 21:25:42 +0000139 virtual unsigned getIEQOpcode() const;
140 virtual bool isMov(unsigned Opcode) const;
141
142 DFAPacketizer *CreateTargetScheduleState(const TargetMachine *TM,
143 const ScheduleDAG *DAG) const;
144
145 bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const;
146
147 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
148 SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const;
149
150 unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, const SmallVectorImpl<MachineOperand> &Cond, DebugLoc DL) const;
151
152 unsigned RemoveBranch(MachineBasicBlock &MBB) const;
153
154 bool isPredicated(const MachineInstr *MI) const;
155
156 bool isPredicable(MachineInstr *MI) const;
157
158 bool
159 isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
160 const BranchProbability &Probability) const;
161
162 bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCyles,
163 unsigned ExtraPredCycles,
164 const BranchProbability &Probability) const ;
165
166 bool
167 isProfitableToIfCvt(MachineBasicBlock &TMBB,
168 unsigned NumTCycles, unsigned ExtraTCycles,
169 MachineBasicBlock &FMBB,
170 unsigned NumFCycles, unsigned ExtraFCycles,
171 const BranchProbability &Probability) const;
172
173 bool DefinesPredicate(MachineInstr *MI,
174 std::vector<MachineOperand> &Pred) const;
175
176 bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
177 const SmallVectorImpl<MachineOperand> &Pred2) const;
178
179 bool isProfitableToUnpredicate(MachineBasicBlock &TMBB,
180 MachineBasicBlock &FMBB) const;
181
182 bool PredicateInstruction(MachineInstr *MI,
183 const SmallVectorImpl<MachineOperand> &Pred) const;
184
Arnold Schwaighoferd2f96b92013-09-30 15:28:56 +0000185 unsigned int getPredicationCost(const MachineInstr *) const;
186
Tom Stellard75aadc22012-12-11 21:25:42 +0000187 unsigned int getInstrLatency(const InstrItineraryData *ItinData,
188 const MachineInstr *MI,
189 unsigned *PredCost = 0) const;
190
191 virtual int getInstrLatency(const InstrItineraryData *ItinData,
192 SDNode *Node) const { return 1;}
193
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000194 /// \returns a list of all the registers that may be accesed using indirect
195 /// addressing.
196 std::vector<unsigned> getIndirectReservedRegs(const MachineFunction &MF) const;
197
198 virtual int getIndirectIndexBegin(const MachineFunction &MF) const;
199
200 virtual int getIndirectIndexEnd(const MachineFunction &MF) const;
201
202
203 virtual unsigned calculateIndirectAddress(unsigned RegIndex,
204 unsigned Channel) const;
205
206 virtual const TargetRegisterClass *getIndirectAddrStoreRegClass(
207 unsigned SourceReg) const;
208
209 virtual const TargetRegisterClass *getIndirectAddrLoadRegClass() const;
210
211 virtual MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
212 MachineBasicBlock::iterator I,
213 unsigned ValueReg, unsigned Address,
214 unsigned OffsetReg) const;
215
216 virtual MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
217 MachineBasicBlock::iterator I,
218 unsigned ValueReg, unsigned Address,
219 unsigned OffsetReg) const;
220
221 virtual const TargetRegisterClass *getSuperIndirectRegClass() const;
222
Vincent Lejeune80031d9f2013-04-03 16:49:34 +0000223 unsigned getMaxAlusPerClause() const;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000224
225 ///buildDefaultInstruction - This function returns a MachineInstr with
226 /// all the instruction modifiers initialized to their default values.
Tom Stellard75aadc22012-12-11 21:25:42 +0000227 /// You can use this function to avoid manually specifying each instruction
228 /// modifier operand when building a new instruction.
229 ///
230 /// \returns a MachineInstr with all the instruction modifiers initialized
231 /// to their default values.
232 MachineInstrBuilder buildDefaultInstruction(MachineBasicBlock &MBB,
233 MachineBasicBlock::iterator I,
234 unsigned Opcode,
235 unsigned DstReg,
236 unsigned Src0Reg,
237 unsigned Src1Reg = 0) const;
238
Vincent Lejeune519f21e2013-05-17 16:50:32 +0000239 MachineInstr *buildSlotOfVectorInstruction(MachineBasicBlock &MBB,
240 MachineInstr *MI,
241 unsigned Slot,
242 unsigned DstReg) const;
243
Tom Stellard75aadc22012-12-11 21:25:42 +0000244 MachineInstr *buildMovImm(MachineBasicBlock &BB,
245 MachineBasicBlock::iterator I,
246 unsigned DstReg,
247 uint64_t Imm) const;
248
249 /// \brief Get the index of Op in the MachineInstr.
250 ///
251 /// \returns -1 if the Instruction does not contain the specified \p Op.
Tom Stellard02661d92013-06-25 21:22:18 +0000252 int getOperandIdx(const MachineInstr &MI, unsigned Op) const;
Tom Stellard75aadc22012-12-11 21:25:42 +0000253
254 /// \brief Get the index of \p Op for the given Opcode.
255 ///
256 /// \returns -1 if the Instruction does not contain the specified \p Op.
Tom Stellard02661d92013-06-25 21:22:18 +0000257 int getOperandIdx(unsigned Opcode, unsigned Op) const;
Tom Stellard75aadc22012-12-11 21:25:42 +0000258
259 /// \brief Helper function for setting instruction flag values.
Tom Stellard02661d92013-06-25 21:22:18 +0000260 void setImmOperand(MachineInstr *MI, unsigned Op, int64_t Imm) const;
Tom Stellard75aadc22012-12-11 21:25:42 +0000261
262 /// \returns true if this instruction has an operand for storing target flags.
263 bool hasFlagOperand(const MachineInstr &MI) const;
264
265 ///\brief Add one of the MO_FLAG* flags to the specified \p Operand.
266 void addFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const;
267
268 ///\brief Determine if the specified \p Flag is set on this \p Operand.
269 bool isFlagSet(const MachineInstr &MI, unsigned Operand, unsigned Flag) const;
270
271 /// \param SrcIdx The register source to set the flag on (e.g src0, src1, src2)
272 /// \param Flag The flag being set.
273 ///
274 /// \returns the operand containing the flags for this instruction.
275 MachineOperand &getFlagOp(MachineInstr *MI, unsigned SrcIdx = 0,
276 unsigned Flag = 0) const;
277
278 /// \brief Clear the specified flag on the instruction.
279 void clearFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const;
280};
281
Tom Stellard13c68ef2013-09-05 18:38:09 +0000282namespace AMDGPU {
283
284int getLDSNoRetOp(uint16_t Opcode);
285
286} //End namespace AMDGPU
287
Tom Stellard75aadc22012-12-11 21:25:42 +0000288} // End llvm namespace
289
290#endif // R600INSTRINFO_H_