blob: 9b4ba029122aa483bdb6373545acd8f521cc0147 [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
Benjamin Kramera7c40ef2014-08-13 16:26:38 +000016#ifndef LLVM_LIB_TARGET_R600_SIINSTRINFO_H
17#define LLVM_LIB_TARGET_R600_SIINSTRINFO_H
Tom Stellard75aadc22012-12-11 21:25:42 +000018
19#include "AMDGPUInstrInfo.h"
Matt Arsenaultc5f174d2014-12-01 15:52:46 +000020#include "SIDefines.h"
Tom Stellard75aadc22012-12-11 21:25:42 +000021#include "SIRegisterInfo.h"
22
23namespace llvm {
24
25class SIInstrInfo : public AMDGPUInstrInfo {
26private:
27 const SIRegisterInfo RI;
28
Tom Stellard15834092014-03-21 15:51:57 +000029 unsigned buildExtractSubReg(MachineBasicBlock::iterator MI,
30 MachineRegisterInfo &MRI,
31 MachineOperand &SuperReg,
32 const TargetRegisterClass *SuperRC,
33 unsigned SubIdx,
34 const TargetRegisterClass *SubRC) const;
Matt Arsenault248b7b62014-03-24 20:08:09 +000035 MachineOperand buildExtractSubRegOrImm(MachineBasicBlock::iterator MI,
36 MachineRegisterInfo &MRI,
37 MachineOperand &SuperReg,
38 const TargetRegisterClass *SuperRC,
39 unsigned SubIdx,
40 const TargetRegisterClass *SubRC) const;
Tom Stellard15834092014-03-21 15:51:57 +000041
Marek Olsakbe047802014-12-07 12:19:03 +000042 void swapOperands(MachineBasicBlock::iterator Inst) const;
43
Matt Arsenault689f3252014-06-09 16:36:31 +000044 void splitScalar64BitUnaryOp(SmallVectorImpl<MachineInstr *> &Worklist,
45 MachineInstr *Inst, unsigned Opcode) const;
46
47 void splitScalar64BitBinaryOp(SmallVectorImpl<MachineInstr *> &Worklist,
48 MachineInstr *Inst, unsigned Opcode) const;
Matt Arsenaultf35182c2014-03-24 20:08:05 +000049
Matt Arsenault8333e432014-06-10 19:18:24 +000050 void splitScalar64BitBCNT(SmallVectorImpl<MachineInstr *> &Worklist,
51 MachineInstr *Inst) const;
Matt Arsenault94812212014-11-14 18:18:16 +000052 void splitScalar64BitBFE(SmallVectorImpl<MachineInstr *> &Worklist,
53 MachineInstr *Inst) const;
Matt Arsenault8333e432014-06-10 19:18:24 +000054
Matt Arsenaultf003c382015-08-26 20:47:50 +000055 void addUsersToMoveToVALUWorklist(
56 unsigned Reg, MachineRegisterInfo &MRI,
57 SmallVectorImpl<MachineInstr *> &Worklist) const;
58
Matt Arsenaultc09cc3c2014-11-19 00:01:31 +000059 bool checkInstOffsetsDoNotOverlap(MachineInstr *MIa,
60 MachineInstr *MIb) const;
61
Matt Arsenaultee522bf2014-09-26 17:55:06 +000062 unsigned findUsedSGPR(const MachineInstr *MI, int OpIndices[3]) const;
63
Tom Stellard75aadc22012-12-11 21:25:42 +000064public:
Tom Stellard2e59a452014-06-13 01:32:00 +000065 explicit SIInstrInfo(const AMDGPUSubtarget &st);
Tom Stellard75aadc22012-12-11 21:25:42 +000066
Craig Topper5656db42014-04-29 07:57:24 +000067 const SIRegisterInfo &getRegisterInfo() const override {
Matt Arsenault6dde3032014-03-11 00:01:34 +000068 return RI;
69 }
Tom Stellard75aadc22012-12-11 21:25:42 +000070
Matt Arsenaulta48b8662015-04-23 23:34:48 +000071 bool isReallyTriviallyReMaterializable(const MachineInstr *MI,
72 AliasAnalysis *AA) const override;
73
Matt Arsenaultc10853f2014-08-06 00:29:43 +000074 bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
75 int64_t &Offset1,
76 int64_t &Offset2) const override;
77
Sanjoy Dasb666ea32015-06-15 18:44:14 +000078 bool getMemOpBaseRegImmOfs(MachineInstr *LdSt, unsigned &BaseReg,
79 unsigned &Offset,
80 const TargetRegisterInfo *TRI) const final;
Matt Arsenault1acc72f2014-07-29 21:34:55 +000081
Matt Arsenault0e75a062014-09-17 17:48:30 +000082 bool shouldClusterLoads(MachineInstr *FirstLdSt,
83 MachineInstr *SecondLdSt,
84 unsigned NumLoads) const final;
85
Craig Topper5656db42014-04-29 07:57:24 +000086 void copyPhysReg(MachineBasicBlock &MBB,
87 MachineBasicBlock::iterator MI, DebugLoc DL,
88 unsigned DestReg, unsigned SrcReg,
89 bool KillSrc) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000090
Tom Stellard96468902014-09-24 01:33:17 +000091 unsigned calculateLDSSpillAddress(MachineBasicBlock &MBB,
92 MachineBasicBlock::iterator MI,
93 RegScavenger *RS,
94 unsigned TmpReg,
95 unsigned Offset,
96 unsigned Size) const;
97
Tom Stellardc149dc02013-11-27 21:23:35 +000098 void storeRegToStackSlot(MachineBasicBlock &MBB,
99 MachineBasicBlock::iterator MI,
100 unsigned SrcReg, bool isKill, int FrameIndex,
101 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +0000102 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +0000103
104 void loadRegFromStackSlot(MachineBasicBlock &MBB,
105 MachineBasicBlock::iterator MI,
106 unsigned DestReg, int FrameIndex,
107 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +0000108 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +0000109
Benjamin Kramer8c90fd72014-09-03 11:41:21 +0000110 bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const override;
Tom Stellardeba61072014-05-02 15:41:42 +0000111
Tom Stellardef3b8642015-01-07 19:56:17 +0000112 // \brief Returns an opcode that can be used to move a value to a \p DstRC
113 // register. If there is no hardware instruction that can store to \p
114 // DstRC, then AMDGPU::COPY is returned.
115 unsigned getMovOpcode(const TargetRegisterClass *DstRC) const;
Marek Olsakcfbdba22015-06-26 20:29:10 +0000116 int commuteOpcode(const MachineInstr &MI) const;
Christian Konig3c145802013-03-27 09:12:59 +0000117
Craig Topper5656db42014-04-29 07:57:24 +0000118 MachineInstr *commuteInstruction(MachineInstr *MI,
Matt Arsenault92befe72014-09-26 17:54:54 +0000119 bool NewMI = false) const override;
120 bool findCommutedOpIndices(MachineInstr *MI,
121 unsigned &SrcOpIdx1,
122 unsigned &SrcOpIdx2) const override;
Christian Konig76edd4f2013-02-26 17:52:29 +0000123
Matt Arsenaultc09cc3c2014-11-19 00:01:31 +0000124 bool areMemAccessesTriviallyDisjoint(
125 MachineInstr *MIa, MachineInstr *MIb,
126 AliasAnalysis *AA = nullptr) const override;
127
Tom Stellard26a3b672013-10-22 18:19:10 +0000128 MachineInstr *buildMovInstr(MachineBasicBlock *MBB,
129 MachineBasicBlock::iterator I,
Craig Topper5656db42014-04-29 07:57:24 +0000130 unsigned DstReg, unsigned SrcReg) const override;
131 bool isMov(unsigned Opcode) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +0000132
Matt Arsenault0325d3d2015-02-21 21:29:07 +0000133 bool FoldImmediate(MachineInstr *UseMI, MachineInstr *DefMI,
134 unsigned Reg, MachineRegisterInfo *MRI) const final;
135
Tom Stellardf01af292015-05-09 00:56:07 +0000136 unsigned getMachineCSELookAheadLimit() const override { return 500; }
137
Tom Stellarddb5a11f2015-07-13 15:47:57 +0000138 MachineInstr *convertToThreeAddress(MachineFunction::iterator &MBB,
139 MachineBasicBlock::iterator &MI,
140 LiveVariables *LV) const override;
141
Matt Arsenaultc5f174d2014-12-01 15:52:46 +0000142 bool isSALU(uint16_t Opcode) const {
143 return get(Opcode).TSFlags & SIInstrFlags::SALU;
144 }
145
146 bool isVALU(uint16_t Opcode) const {
147 return get(Opcode).TSFlags & SIInstrFlags::VALU;
148 }
149
150 bool isSOP1(uint16_t Opcode) const {
151 return get(Opcode).TSFlags & SIInstrFlags::SOP1;
152 }
153
154 bool isSOP2(uint16_t Opcode) const {
155 return get(Opcode).TSFlags & SIInstrFlags::SOP2;
156 }
157
158 bool isSOPC(uint16_t Opcode) const {
159 return get(Opcode).TSFlags & SIInstrFlags::SOPC;
160 }
161
162 bool isSOPK(uint16_t Opcode) const {
163 return get(Opcode).TSFlags & SIInstrFlags::SOPK;
164 }
165
166 bool isSOPP(uint16_t Opcode) const {
167 return get(Opcode).TSFlags & SIInstrFlags::SOPP;
168 }
169
170 bool isVOP1(uint16_t Opcode) const {
171 return get(Opcode).TSFlags & SIInstrFlags::VOP1;
172 }
173
174 bool isVOP2(uint16_t Opcode) const {
175 return get(Opcode).TSFlags & SIInstrFlags::VOP2;
176 }
177
178 bool isVOP3(uint16_t Opcode) const {
179 return get(Opcode).TSFlags & SIInstrFlags::VOP3;
180 }
181
182 bool isVOPC(uint16_t Opcode) const {
183 return get(Opcode).TSFlags & SIInstrFlags::VOPC;
184 }
185
186 bool isMUBUF(uint16_t Opcode) const {
187 return get(Opcode).TSFlags & SIInstrFlags::MUBUF;
188 }
189
190 bool isMTBUF(uint16_t Opcode) const {
191 return get(Opcode).TSFlags & SIInstrFlags::MTBUF;
192 }
193
194 bool isSMRD(uint16_t Opcode) const {
195 return get(Opcode).TSFlags & SIInstrFlags::SMRD;
196 }
197
198 bool isDS(uint16_t Opcode) const {
199 return get(Opcode).TSFlags & SIInstrFlags::DS;
200 }
201
202 bool isMIMG(uint16_t Opcode) const {
203 return get(Opcode).TSFlags & SIInstrFlags::MIMG;
204 }
205
206 bool isFLAT(uint16_t Opcode) const {
207 return get(Opcode).TSFlags & SIInstrFlags::FLAT;
208 }
Matt Arsenaultc09cc3c2014-11-19 00:01:31 +0000209
Michel Danzer494391b2015-02-06 02:51:20 +0000210 bool isWQM(uint16_t Opcode) const {
211 return get(Opcode).TSFlags & SIInstrFlags::WQM;
212 }
213
Tom Stellarda77c3f72015-05-12 18:59:17 +0000214 bool isVGPRSpill(uint16_t Opcode) const {
215 return get(Opcode).TSFlags & SIInstrFlags::VGPRSpill;
216 }
217
Matt Arsenaultd7bdcc42014-03-31 19:54:27 +0000218 bool isInlineConstant(const APInt &Imm) const;
Matt Arsenault11a4d672015-02-13 19:05:03 +0000219 bool isInlineConstant(const MachineOperand &MO, unsigned OpSize) const;
220 bool isLiteralConstant(const MachineOperand &MO, unsigned OpSize) const;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000221
Tom Stellardb02094e2014-07-21 15:45:01 +0000222 bool isImmOperandLegal(const MachineInstr *MI, unsigned OpNo,
223 const MachineOperand &MO) const;
224
Tom Stellard86d12eb2014-08-01 00:32:28 +0000225 /// \brief Return true if this 64-bit VALU instruction has a 32-bit encoding.
226 /// This function will return false if you pass it a 32-bit instruction.
227 bool hasVALU32BitEncoding(unsigned Opcode) const;
228
Tom Stellard73ae1cb2014-09-23 21:26:25 +0000229 /// \brief Returns true if this operand uses the constant bus.
230 bool usesConstantBus(const MachineRegisterInfo &MRI,
Matt Arsenault11a4d672015-02-13 19:05:03 +0000231 const MachineOperand &MO,
232 unsigned OpSize) const;
Tom Stellard73ae1cb2014-09-23 21:26:25 +0000233
Tom Stellardb4a313a2014-08-01 00:32:39 +0000234 /// \brief Return true if this instruction has any modifiers.
235 /// e.g. src[012]_mod, omod, clamp.
236 bool hasModifiers(unsigned Opcode) const;
Matt Arsenaultace5b762014-10-17 18:00:43 +0000237
238 bool hasModifiersSet(const MachineInstr &MI,
239 unsigned OpName) const;
240
Craig Topper5656db42014-04-29 07:57:24 +0000241 bool verifyInstruction(const MachineInstr *MI,
242 StringRef &ErrInfo) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000243
Matt Arsenaultf14032a2013-11-15 22:02:28 +0000244 static unsigned getVALUOp(const MachineInstr &MI);
Matt Arsenaultf35182c2014-03-24 20:08:05 +0000245
Tom Stellard82166022013-11-13 23:36:37 +0000246 bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const;
247
248 /// \brief Return the correct register class for \p OpNo. For target-specific
249 /// instructions, this will return the register class that has been defined
250 /// in tablegen. For generic instructions, like REG_SEQUENCE it will return
251 /// the register class of its machine operand.
252 /// to infer the correct register class base on the other operands.
253 const TargetRegisterClass *getOpRegClass(const MachineInstr &MI,
Matt Arsenault11a4d672015-02-13 19:05:03 +0000254 unsigned OpNo) const;
255
256 /// \brief Return the size in bytes of the operand OpNo on the given
257 // instruction opcode.
258 unsigned getOpSize(uint16_t Opcode, unsigned OpNo) const {
259 const MCOperandInfo &OpInfo = get(Opcode).OpInfo[OpNo];
Matt Arsenault657b1cb2015-02-21 21:29:04 +0000260
261 if (OpInfo.RegClass == -1) {
262 // If this is an immediate operand, this must be a 32-bit literal.
263 assert(OpInfo.OperandType == MCOI::OPERAND_IMMEDIATE);
264 return 4;
265 }
266
Matt Arsenault11a4d672015-02-13 19:05:03 +0000267 return RI.getRegClass(OpInfo.RegClass)->getSize();
268 }
269
270 /// \brief This form should usually be preferred since it handles operands
271 /// with unknown register classes.
272 unsigned getOpSize(const MachineInstr &MI, unsigned OpNo) const {
273 return getOpRegClass(MI, OpNo)->getSize();
274 }
Tom Stellard82166022013-11-13 23:36:37 +0000275
276 /// \returns true if it is legal for the operand at index \p OpNo
277 /// to read a VGPR.
278 bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const;
279
280 /// \brief Legalize the \p OpIndex operand of this instruction by inserting
281 /// a MOV. For example:
282 /// ADD_I32_e32 VGPR0, 15
283 /// to
284 /// MOV VGPR1, 15
285 /// ADD_I32_e32 VGPR0, VGPR1
286 ///
287 /// If the operand being legalized is a register, then a COPY will be used
288 /// instead of MOV.
289 void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const;
290
Tom Stellard0e975cf2014-08-01 00:32:35 +0000291 /// \brief Check if \p MO is a legal operand if it was the \p OpIdx Operand
292 /// for \p MI.
293 bool isOperandLegal(const MachineInstr *MI, unsigned OpIdx,
294 const MachineOperand *MO = nullptr) const;
295
Tom Stellard82166022013-11-13 23:36:37 +0000296 /// \brief Legalize all operands in this instruction. This function may
297 /// create new instruction and insert them before \p MI.
298 void legalizeOperands(MachineInstr *MI) const;
299
Tom Stellard745f2ed2014-08-21 20:41:00 +0000300 /// \brief Split an SMRD instruction into two smaller loads of half the
301 // size storing the results in \p Lo and \p Hi.
302 void splitSMRD(MachineInstr *MI, const TargetRegisterClass *HalfRC,
303 unsigned HalfImmOp, unsigned HalfSGPROp,
304 MachineInstr *&Lo, MachineInstr *&Hi) const;
305
Tom Stellard0c354f22014-04-30 15:31:29 +0000306 void moveSMRDToVALU(MachineInstr *MI, MachineRegisterInfo &MRI) const;
307
Tom Stellard82166022013-11-13 23:36:37 +0000308 /// \brief Replace this instruction's opcode with the equivalent VALU
309 /// opcode. This function will also move the users of \p MI to the
310 /// VALU if necessary.
311 void moveToVALU(MachineInstr &MI) const;
312
Craig Topper5656db42014-04-29 07:57:24 +0000313 unsigned calculateIndirectAddress(unsigned RegIndex,
314 unsigned Channel) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000315
Craig Topper5656db42014-04-29 07:57:24 +0000316 const TargetRegisterClass *getIndirectAddrRegClass() const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000317
Craig Topper5656db42014-04-29 07:57:24 +0000318 MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
319 MachineBasicBlock::iterator I,
320 unsigned ValueReg,
321 unsigned Address,
322 unsigned OffsetReg) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000323
Craig Topper5656db42014-04-29 07:57:24 +0000324 MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
325 MachineBasicBlock::iterator I,
326 unsigned ValueReg,
327 unsigned Address,
328 unsigned OffsetReg) const override;
Tom Stellard81d871d2013-11-13 23:36:50 +0000329 void reserveIndirectRegisters(BitVector &Reserved,
330 const MachineFunction &MF) const;
331
332 void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I,
333 unsigned SavReg, unsigned IndexReg) const;
Tom Stellardeba61072014-05-02 15:41:42 +0000334
335 void insertNOPs(MachineBasicBlock::iterator MI, int Count) const;
Tom Stellard1aaad692014-07-21 16:55:33 +0000336
337 /// \brief Returns the operand named \p Op. If \p MI does not have an
338 /// operand named \c Op, this function returns nullptr.
Tom Stellard6407e1e2014-08-01 00:32:33 +0000339 MachineOperand *getNamedOperand(MachineInstr &MI, unsigned OperandName) const;
Matt Arsenaultace5b762014-10-17 18:00:43 +0000340
341 const MachineOperand *getNamedOperand(const MachineInstr &MI,
342 unsigned OpName) const {
343 return getNamedOperand(const_cast<MachineInstr &>(MI), OpName);
344 }
Tom Stellard794c8c02014-12-02 17:05:41 +0000345
346 uint64_t getDefaultRsrcDataFormat() const;
347
Tom Stellard81d871d2013-11-13 23:36:50 +0000348};
Tom Stellard75aadc22012-12-11 21:25:42 +0000349
Christian Konigf741fbf2013-02-26 17:52:42 +0000350namespace AMDGPU {
351
352 int getVOPe64(uint16_t Opcode);
Tom Stellard1aaad692014-07-21 16:55:33 +0000353 int getVOPe32(uint16_t Opcode);
Christian Konig3c145802013-03-27 09:12:59 +0000354 int getCommuteRev(uint16_t Opcode);
355 int getCommuteOrig(uint16_t Opcode);
Tom Stellard155bbb72014-08-11 22:18:17 +0000356 int getAddr64Inst(uint16_t Opcode);
Matt Arsenault9903ccf2014-09-08 15:07:27 +0000357 int getAtomicRetOp(uint16_t Opcode);
358 int getAtomicNoRetOp(uint16_t Opcode);
Christian Konigf741fbf2013-02-26 17:52:42 +0000359
Tom Stellard15834092014-03-21 15:51:57 +0000360 const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL;
Tom Stellardb02094e2014-07-21 15:45:01 +0000361 const uint64_t RSRC_TID_ENABLE = 1LL << 55;
Tom Stellard15834092014-03-21 15:51:57 +0000362
Christian Konigf741fbf2013-02-26 17:52:42 +0000363} // End namespace AMDGPU
364
Tom Stellardec2e43c2014-09-22 15:35:29 +0000365namespace SI {
366namespace KernelInputOffsets {
367
368/// Offsets in bytes from the start of the input buffer
369enum Offsets {
370 NGROUPS_X = 0,
371 NGROUPS_Y = 4,
372 NGROUPS_Z = 8,
373 GLOBAL_SIZE_X = 12,
374 GLOBAL_SIZE_Y = 16,
375 GLOBAL_SIZE_Z = 20,
376 LOCAL_SIZE_X = 24,
377 LOCAL_SIZE_Y = 28,
378 LOCAL_SIZE_Z = 32
379};
380
381} // End namespace KernelInputOffsets
382} // End namespace SI
383
Tom Stellard75aadc22012-12-11 21:25:42 +0000384} // End namespace llvm
385
Benjamin Kramera7c40ef2014-08-13 16:26:38 +0000386#endif