blob: 13ab4843fdad36c056746518ef28eb1ad2f14c3f [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
Craig Topper5656db42014-04-29 07:57:24 +000065 void copyPhysReg(MachineBasicBlock &MBB,
66 MachineBasicBlock::iterator MI, DebugLoc DL,
67 unsigned DestReg, unsigned SrcReg,
68 bool KillSrc) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000069
Tom Stellardc149dc02013-11-27 21:23:35 +000070 void storeRegToStackSlot(MachineBasicBlock &MBB,
71 MachineBasicBlock::iterator MI,
72 unsigned SrcReg, bool isKill, int FrameIndex,
73 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +000074 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +000075
76 void loadRegFromStackSlot(MachineBasicBlock &MBB,
77 MachineBasicBlock::iterator MI,
78 unsigned DestReg, int FrameIndex,
79 const TargetRegisterClass *RC,
Craig Topper5656db42014-04-29 07:57:24 +000080 const TargetRegisterInfo *TRI) const override;
Tom Stellardc149dc02013-11-27 21:23:35 +000081
Tom Stellardeba61072014-05-02 15:41:42 +000082 virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const;
83
Christian Konig3c145802013-03-27 09:12:59 +000084 unsigned commuteOpcode(unsigned Opcode) const;
85
Craig Topper5656db42014-04-29 07:57:24 +000086 MachineInstr *commuteInstruction(MachineInstr *MI,
87 bool NewMI=false) const override;
Christian Konig76edd4f2013-02-26 17:52:29 +000088
Tom Stellard30f59412014-03-31 14:01:56 +000089 bool isTriviallyReMaterializable(const MachineInstr *MI,
Craig Toppere73658d2014-04-28 04:05:08 +000090 AliasAnalysis *AA = nullptr) const;
Tom Stellard30f59412014-03-31 14:01:56 +000091
Tom Stellard26a3b672013-10-22 18:19:10 +000092 MachineInstr *buildMovInstr(MachineBasicBlock *MBB,
93 MachineBasicBlock::iterator I,
Craig Topper5656db42014-04-29 07:57:24 +000094 unsigned DstReg, unsigned SrcReg) const override;
95 bool isMov(unsigned Opcode) const override;
Tom Stellard75aadc22012-12-11 21:25:42 +000096
Craig Topper5656db42014-04-29 07:57:24 +000097 bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const override;
Tom Stellard5d7aaae2014-02-10 16:58:30 +000098 bool isDS(uint16_t Opcode) const;
Tom Stellard16a9a202013-08-14 23:24:17 +000099 int isMIMG(uint16_t Opcode) const;
Michel Danzer20680b12013-08-16 16:19:24 +0000100 int isSMRD(uint16_t Opcode) const;
Tom Stellard93fabce2013-10-10 17:11:55 +0000101 bool isVOP1(uint16_t Opcode) const;
102 bool isVOP2(uint16_t Opcode) const;
103 bool isVOP3(uint16_t Opcode) const;
104 bool isVOPC(uint16_t Opcode) const;
Matt Arsenaultd7bdcc42014-03-31 19:54:27 +0000105 bool isInlineConstant(const APInt &Imm) const;
Tom Stellard93fabce2013-10-10 17:11:55 +0000106 bool isInlineConstant(const MachineOperand &MO) const;
107 bool isLiteralConstant(const MachineOperand &MO) const;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000108
Tom Stellardb02094e2014-07-21 15:45:01 +0000109 bool isImmOperandLegal(const MachineInstr *MI, unsigned OpNo,
110 const MachineOperand &MO) const;
111
Craig Topper5656db42014-04-29 07:57:24 +0000112 bool verifyInstruction(const MachineInstr *MI,
113 StringRef &ErrInfo) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000114
Tom Stellard82166022013-11-13 23:36:37 +0000115 bool isSALUInstr(const MachineInstr &MI) const;
Matt Arsenaultf14032a2013-11-15 22:02:28 +0000116 static unsigned getVALUOp(const MachineInstr &MI);
Matt Arsenaultf35182c2014-03-24 20:08:05 +0000117
Tom Stellard82166022013-11-13 23:36:37 +0000118 bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const;
119
120 /// \brief Return the correct register class for \p OpNo. For target-specific
121 /// instructions, this will return the register class that has been defined
122 /// in tablegen. For generic instructions, like REG_SEQUENCE it will return
123 /// the register class of its machine operand.
124 /// to infer the correct register class base on the other operands.
125 const TargetRegisterClass *getOpRegClass(const MachineInstr &MI,
126 unsigned OpNo) const;\
127
128 /// \returns true if it is legal for the operand at index \p OpNo
129 /// to read a VGPR.
130 bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const;
131
132 /// \brief Legalize the \p OpIndex operand of this instruction by inserting
133 /// a MOV. For example:
134 /// ADD_I32_e32 VGPR0, 15
135 /// to
136 /// MOV VGPR1, 15
137 /// ADD_I32_e32 VGPR0, VGPR1
138 ///
139 /// If the operand being legalized is a register, then a COPY will be used
140 /// instead of MOV.
141 void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const;
142
143 /// \brief Legalize all operands in this instruction. This function may
144 /// create new instruction and insert them before \p MI.
145 void legalizeOperands(MachineInstr *MI) const;
146
Tom Stellard0c354f22014-04-30 15:31:29 +0000147 void moveSMRDToVALU(MachineInstr *MI, MachineRegisterInfo &MRI) const;
148
Tom Stellard82166022013-11-13 23:36:37 +0000149 /// \brief Replace this instruction's opcode with the equivalent VALU
150 /// opcode. This function will also move the users of \p MI to the
151 /// VALU if necessary.
152 void moveToVALU(MachineInstr &MI) const;
153
Craig Topper5656db42014-04-29 07:57:24 +0000154 unsigned calculateIndirectAddress(unsigned RegIndex,
155 unsigned Channel) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000156
Craig Topper5656db42014-04-29 07:57:24 +0000157 const TargetRegisterClass *getIndirectAddrRegClass() const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000158
Craig Topper5656db42014-04-29 07:57:24 +0000159 MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
160 MachineBasicBlock::iterator I,
161 unsigned ValueReg,
162 unsigned Address,
163 unsigned OffsetReg) const override;
Tom Stellardf3b2a1e2013-02-06 17:32:29 +0000164
Craig Topper5656db42014-04-29 07:57:24 +0000165 MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
166 MachineBasicBlock::iterator I,
167 unsigned ValueReg,
168 unsigned Address,
169 unsigned OffsetReg) const override;
Tom Stellard81d871d2013-11-13 23:36:50 +0000170 void reserveIndirectRegisters(BitVector &Reserved,
171 const MachineFunction &MF) const;
172
173 void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I,
174 unsigned SavReg, unsigned IndexReg) const;
Tom Stellardeba61072014-05-02 15:41:42 +0000175
176 void insertNOPs(MachineBasicBlock::iterator MI, int Count) const;
Tom Stellard1aaad692014-07-21 16:55:33 +0000177
178 /// \brief Returns the operand named \p Op. If \p MI does not have an
179 /// operand named \c Op, this function returns nullptr.
180 const MachineOperand *getNamedOperand(const MachineInstr& MI,
181 unsigned OperandName) const;
Tom Stellard81d871d2013-11-13 23:36:50 +0000182};
Tom Stellard75aadc22012-12-11 21:25:42 +0000183
Christian Konigf741fbf2013-02-26 17:52:42 +0000184namespace AMDGPU {
185
186 int getVOPe64(uint16_t Opcode);
Tom Stellard1aaad692014-07-21 16:55:33 +0000187 int getVOPe32(uint16_t Opcode);
Christian Konig3c145802013-03-27 09:12:59 +0000188 int getCommuteRev(uint16_t Opcode);
189 int getCommuteOrig(uint16_t Opcode);
Tom Stellardc721a232014-05-16 20:56:47 +0000190 int getMCOpcode(uint16_t Opcode, unsigned Gen);
Christian Konigf741fbf2013-02-26 17:52:42 +0000191
Tom Stellard15834092014-03-21 15:51:57 +0000192 const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL;
Tom Stellardb02094e2014-07-21 15:45:01 +0000193 const uint64_t RSRC_TID_ENABLE = 1LL << 55;
Tom Stellard15834092014-03-21 15:51:57 +0000194
Christian Konigf741fbf2013-02-26 17:52:42 +0000195} // End namespace AMDGPU
196
Tom Stellard75aadc22012-12-11 21:25:42 +0000197} // End namespace llvm
198
199namespace SIInstrFlags {
200 enum Flags {
201 // First 4 bits are the instruction encoding
Tom Stellard1c822a82013-02-07 19:39:45 +0000202 VM_CNT = 1 << 0,
203 EXP_CNT = 1 << 1,
204 LGKM_CNT = 1 << 2
Tom Stellard75aadc22012-12-11 21:25:42 +0000205 };
206}
207
208#endif //SIINSTRINFO_H