Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 1 | //===-- 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 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 15 | #ifndef LLVM_LIB_TARGET_R600_R600INSTRINFO_H |
| 16 | #define LLVM_LIB_TARGET_R600_R600INSTRINFO_H |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 17 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 18 | #include "AMDGPUInstrInfo.h" |
| 19 | #include "R600Defines.h" |
| 20 | #include "R600RegisterInfo.h" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 21 | #include <map> |
| 22 | |
| 23 | namespace 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; |
| 35 | |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 36 | std::vector<std::pair<int, unsigned> > |
Vincent Lejeune | bb8a8721 | 2013-06-29 19:32:29 +0000 | [diff] [blame] | 37 | ExtractSrcs(MachineInstr *MI, const DenseMap<unsigned, unsigned> &PV, unsigned &ConstCount) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 38 | |
Tom Stellard | 880a80a | 2014-06-17 16:53:14 +0000 | [diff] [blame] | 39 | |
| 40 | MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB, |
| 41 | MachineBasicBlock::iterator I, |
| 42 | unsigned ValueReg, unsigned Address, |
| 43 | unsigned OffsetReg, |
| 44 | unsigned AddrChan) const; |
| 45 | |
| 46 | MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB, |
| 47 | MachineBasicBlock::iterator I, |
| 48 | unsigned ValueReg, unsigned Address, |
| 49 | unsigned OffsetReg, |
| 50 | unsigned AddrChan) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 51 | public: |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 52 | enum BankSwizzle { |
Vincent Lejeune | bb8a8721 | 2013-06-29 19:32:29 +0000 | [diff] [blame] | 53 | ALU_VEC_012_SCL_210 = 0, |
| 54 | ALU_VEC_021_SCL_122, |
| 55 | ALU_VEC_120_SCL_212, |
| 56 | ALU_VEC_102_SCL_221, |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 57 | ALU_VEC_201, |
| 58 | ALU_VEC_210 |
| 59 | }; |
| 60 | |
Tom Stellard | 2e59a45 | 2014-06-13 01:32:00 +0000 | [diff] [blame] | 61 | explicit R600InstrInfo(const AMDGPUSubtarget &st); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 62 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 63 | const R600RegisterInfo &getRegisterInfo() const override; |
| 64 | void copyPhysReg(MachineBasicBlock &MBB, |
| 65 | MachineBasicBlock::iterator MI, DebugLoc DL, |
| 66 | unsigned DestReg, unsigned SrcReg, |
| 67 | bool KillSrc) const override; |
Tom Stellard | cd6b0a6 | 2013-11-22 00:41:08 +0000 | [diff] [blame] | 68 | bool isLegalToSplitMBBAt(MachineBasicBlock &MBB, |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 69 | MachineBasicBlock::iterator MBBI) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 70 | |
| 71 | bool isTrig(const MachineInstr &MI) const; |
| 72 | bool isPlaceHolderOpcode(unsigned opcode) const; |
| 73 | bool isReductionOp(unsigned opcode) const; |
| 74 | bool isCubeOp(unsigned opcode) const; |
| 75 | |
| 76 | /// \returns true if this \p Opcode represents an ALU instruction. |
| 77 | bool isALUInstr(unsigned Opcode) const; |
Tom Stellard | c026e8b | 2013-06-28 15:47:08 +0000 | [diff] [blame] | 78 | bool hasInstrModifiers(unsigned Opcode) const; |
| 79 | bool isLDSInstr(unsigned Opcode) const; |
Tom Stellard | 8f9fc20 | 2013-11-15 00:12:45 +0000 | [diff] [blame] | 80 | bool isLDSNoRetInstr(unsigned Opcode) const; |
| 81 | bool isLDSRetInstr(unsigned Opcode) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 82 | |
Vincent Lejeune | a4da6fb | 2013-10-01 19:32:58 +0000 | [diff] [blame] | 83 | /// \returns true if this \p Opcode represents an ALU instruction or an |
| 84 | /// instruction that will be lowered in ExpandSpecialInstrs Pass. |
| 85 | bool canBeConsideredALU(const MachineInstr *MI) const; |
| 86 | |
Vincent Lejeune | 076c0b2 | 2013-04-30 00:14:17 +0000 | [diff] [blame] | 87 | bool isTransOnly(unsigned Opcode) const; |
| 88 | bool isTransOnly(const MachineInstr *MI) const; |
Vincent Lejeune | 4d5c5e5 | 2013-09-04 19:53:30 +0000 | [diff] [blame] | 89 | bool isVectorOnly(unsigned Opcode) const; |
| 90 | bool isVectorOnly(const MachineInstr *MI) const; |
Tom Stellard | 676c16d | 2013-08-16 01:11:51 +0000 | [diff] [blame] | 91 | bool isExport(unsigned Opcode) const; |
Vincent Lejeune | 076c0b2 | 2013-04-30 00:14:17 +0000 | [diff] [blame] | 92 | |
Vincent Lejeune | c299164 | 2013-04-30 00:13:39 +0000 | [diff] [blame] | 93 | bool usesVertexCache(unsigned Opcode) const; |
| 94 | bool usesVertexCache(const MachineInstr *MI) const; |
| 95 | bool usesTextureCache(unsigned Opcode) const; |
| 96 | bool usesTextureCache(const MachineInstr *MI) const; |
| 97 | |
Tom Stellard | ce54033 | 2013-06-28 15:46:59 +0000 | [diff] [blame] | 98 | bool mustBeLastInClause(unsigned Opcode) const; |
Tom Stellard | 26a3b67 | 2013-10-22 18:19:10 +0000 | [diff] [blame] | 99 | bool usesAddressRegister(MachineInstr *MI) const; |
| 100 | bool definesAddressRegister(MachineInstr *MI) const; |
Tom Stellard | 7f6fa4c | 2013-09-12 02:55:06 +0000 | [diff] [blame] | 101 | bool readsLDSSrcReg(const MachineInstr *MI) const; |
Tom Stellard | ce54033 | 2013-06-28 15:46:59 +0000 | [diff] [blame] | 102 | |
Tom Stellard | 8402144 | 2013-07-23 01:48:24 +0000 | [diff] [blame] | 103 | /// \returns The operand index for the given source number. Legal values |
| 104 | /// for SrcNum are 0, 1, and 2. |
| 105 | int getSrcIdx(unsigned Opcode, unsigned SrcNum) const; |
| 106 | /// \returns The operand Index for the Sel operand given an index to one |
| 107 | /// of the instruction's src operands. |
| 108 | int getSelIdx(unsigned Opcode, unsigned SrcIdx) const; |
| 109 | |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 110 | /// \returns a pair for each src of an ALU instructions. |
| 111 | /// The first member of a pair is the register id. |
| 112 | /// If register is ALU_CONST, second member is SEL. |
| 113 | /// If register is ALU_LITERAL, second member is IMM. |
| 114 | /// Otherwise, second member value is undefined. |
| 115 | SmallVector<std::pair<MachineOperand *, int64_t>, 3> |
| 116 | getSrcs(MachineInstr *MI) const; |
| 117 | |
Vincent Lejeune | 77a8352 | 2013-06-29 19:32:43 +0000 | [diff] [blame] | 118 | unsigned isLegalUpTo( |
| 119 | const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs, |
| 120 | const std::vector<R600InstrInfo::BankSwizzle> &Swz, |
| 121 | const std::vector<std::pair<int, unsigned> > &TransSrcs, |
| 122 | R600InstrInfo::BankSwizzle TransSwz) const; |
| 123 | |
| 124 | bool FindSwizzleForVectorSlot( |
| 125 | const std::vector<std::vector<std::pair<int, unsigned> > > &IGSrcs, |
| 126 | std::vector<R600InstrInfo::BankSwizzle> &SwzCandidate, |
| 127 | const std::vector<std::pair<int, unsigned> > &TransSrcs, |
| 128 | R600InstrInfo::BankSwizzle TransSwz) const; |
Tom Stellard | c026e8b | 2013-06-28 15:47:08 +0000 | [diff] [blame] | 129 | |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 130 | /// Given the order VEC_012 < VEC_021 < VEC_120 < VEC_102 < VEC_201 < VEC_210 |
| 131 | /// returns true and the first (in lexical order) BankSwizzle affectation |
| 132 | /// starting from the one already provided in the Instruction Group MIs that |
| 133 | /// fits Read Port limitations in BS if available. Otherwise returns false |
| 134 | /// and undefined content in BS. |
Vincent Lejeune | 77a8352 | 2013-06-29 19:32:43 +0000 | [diff] [blame] | 135 | /// isLastAluTrans should be set if the last Alu of MIs will be executed on |
| 136 | /// Trans ALU. In this case, ValidTSwizzle returns the BankSwizzle value to |
| 137 | /// apply to the last instruction. |
Vincent Lejeune | 0fca91d | 2013-05-17 16:50:02 +0000 | [diff] [blame] | 138 | /// PV holds GPR to PV registers in the Instruction Group MIs. |
| 139 | bool fitsReadPortLimitations(const std::vector<MachineInstr *> &MIs, |
| 140 | const DenseMap<unsigned, unsigned> &PV, |
Vincent Lejeune | 77a8352 | 2013-06-29 19:32:43 +0000 | [diff] [blame] | 141 | std::vector<BankSwizzle> &BS, |
| 142 | bool isLastAluTrans) const; |
| 143 | |
| 144 | /// An instruction group can only access 2 channel pair (either [XY] or [ZW]) |
| 145 | /// from KCache bank on R700+. This function check if MI set in input meet |
| 146 | /// this limitations |
| 147 | bool fitsConstReadLimitations(const std::vector<MachineInstr *> &) const; |
| 148 | /// Same but using const index set instead of MI set. |
Vincent Lejeune | 0a22bc4 | 2013-03-14 15:50:45 +0000 | [diff] [blame] | 149 | bool fitsConstReadLimitations(const std::vector<unsigned>&) const; |
Vincent Lejeune | 0a22bc4 | 2013-03-14 15:50:45 +0000 | [diff] [blame] | 150 | |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 151 | /// \brief Vector instructions are instructions that must fill all |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 152 | /// instruction slots within an instruction group. |
| 153 | bool isVector(const MachineInstr &MI) const; |
| 154 | |
Tom Stellard | 2ff7262 | 2016-01-28 16:04:37 +0000 | [diff] [blame^] | 155 | bool isMov(unsigned Opcode) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 156 | |
Eric Christopher | 143f02c | 2014-10-09 01:59:35 +0000 | [diff] [blame] | 157 | DFAPacketizer * |
| 158 | CreateTargetScheduleState(const TargetSubtargetInfo &) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 159 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 160 | bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 161 | |
| 162 | bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 163 | SmallVectorImpl<MachineOperand> &Cond, bool AllowModify) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 164 | |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 165 | unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
| 166 | MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond, |
| 167 | DebugLoc DL) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 168 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 169 | unsigned RemoveBranch(MachineBasicBlock &MBB) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 170 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 171 | bool isPredicated(const MachineInstr *MI) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 172 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 173 | bool isPredicable(MachineInstr *MI) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 174 | |
| 175 | bool |
| 176 | isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCyles, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 177 | BranchProbability Probability) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 178 | |
| 179 | bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCyles, |
| 180 | unsigned ExtraPredCycles, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 181 | BranchProbability Probability) const override ; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 182 | |
| 183 | bool |
| 184 | isProfitableToIfCvt(MachineBasicBlock &TMBB, |
| 185 | unsigned NumTCycles, unsigned ExtraTCycles, |
| 186 | MachineBasicBlock &FMBB, |
| 187 | unsigned NumFCycles, unsigned ExtraFCycles, |
Cong Hou | c536bd9 | 2015-09-10 23:10:42 +0000 | [diff] [blame] | 188 | BranchProbability Probability) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 189 | |
| 190 | bool DefinesPredicate(MachineInstr *MI, |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 191 | std::vector<MachineOperand> &Pred) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 192 | |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 193 | bool SubsumesPredicate(ArrayRef<MachineOperand> Pred1, |
| 194 | ArrayRef<MachineOperand> Pred2) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 195 | |
| 196 | bool isProfitableToUnpredicate(MachineBasicBlock &TMBB, |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 197 | MachineBasicBlock &FMBB) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 198 | |
| 199 | bool PredicateInstruction(MachineInstr *MI, |
Ahmed Bougacha | c88bf54 | 2015-06-11 19:30:37 +0000 | [diff] [blame] | 200 | ArrayRef<MachineOperand> Pred) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 201 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 202 | unsigned int getPredicationCost(const MachineInstr *) const override; |
Arnold Schwaighofer | d2f96b9 | 2013-09-30 15:28:56 +0000 | [diff] [blame] | 203 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 204 | unsigned int getInstrLatency(const InstrItineraryData *ItinData, |
| 205 | const MachineInstr *MI, |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 206 | unsigned *PredCost = nullptr) const override; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 207 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 208 | int getInstrLatency(const InstrItineraryData *ItinData, |
| 209 | SDNode *Node) const override { return 1;} |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 210 | |
Benjamin Kramer | 8c90fd7 | 2014-09-03 11:41:21 +0000 | [diff] [blame] | 211 | bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const override; |
Tom Stellard | 880a80a | 2014-06-17 16:53:14 +0000 | [diff] [blame] | 212 | |
Tom Stellard | 81d871d | 2013-11-13 23:36:50 +0000 | [diff] [blame] | 213 | /// \brief Reserve the registers that may be accesed using indirect addressing. |
| 214 | void reserveIndirectRegisters(BitVector &Reserved, |
| 215 | const MachineFunction &MF) const; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 216 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 217 | unsigned calculateIndirectAddress(unsigned RegIndex, |
| 218 | unsigned Channel) const override; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 219 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 220 | const TargetRegisterClass *getIndirectAddrRegClass() const override; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 221 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 222 | MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB, |
| 223 | MachineBasicBlock::iterator I, |
| 224 | unsigned ValueReg, unsigned Address, |
| 225 | unsigned OffsetReg) const override; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 226 | |
Craig Topper | 5656db4 | 2014-04-29 07:57:24 +0000 | [diff] [blame] | 227 | MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB, |
| 228 | MachineBasicBlock::iterator I, |
| 229 | unsigned ValueReg, unsigned Address, |
| 230 | unsigned OffsetReg) const override; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 231 | |
Vincent Lejeune | 80031d9f | 2013-04-03 16:49:34 +0000 | [diff] [blame] | 232 | unsigned getMaxAlusPerClause() const; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 233 | |
| 234 | ///buildDefaultInstruction - This function returns a MachineInstr with |
| 235 | /// all the instruction modifiers initialized to their default values. |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 236 | /// You can use this function to avoid manually specifying each instruction |
| 237 | /// modifier operand when building a new instruction. |
| 238 | /// |
| 239 | /// \returns a MachineInstr with all the instruction modifiers initialized |
| 240 | /// to their default values. |
| 241 | MachineInstrBuilder buildDefaultInstruction(MachineBasicBlock &MBB, |
| 242 | MachineBasicBlock::iterator I, |
| 243 | unsigned Opcode, |
| 244 | unsigned DstReg, |
| 245 | unsigned Src0Reg, |
| 246 | unsigned Src1Reg = 0) const; |
| 247 | |
Vincent Lejeune | 519f21e | 2013-05-17 16:50:32 +0000 | [diff] [blame] | 248 | MachineInstr *buildSlotOfVectorInstruction(MachineBasicBlock &MBB, |
| 249 | MachineInstr *MI, |
| 250 | unsigned Slot, |
| 251 | unsigned DstReg) const; |
| 252 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 253 | MachineInstr *buildMovImm(MachineBasicBlock &BB, |
| 254 | MachineBasicBlock::iterator I, |
| 255 | unsigned DstReg, |
| 256 | uint64_t Imm) const; |
| 257 | |
Tom Stellard | 26a3b67 | 2013-10-22 18:19:10 +0000 | [diff] [blame] | 258 | MachineInstr *buildMovInstr(MachineBasicBlock *MBB, |
| 259 | MachineBasicBlock::iterator I, |
Tom Stellard | 2ff7262 | 2016-01-28 16:04:37 +0000 | [diff] [blame^] | 260 | unsigned DstReg, unsigned SrcReg) const; |
Tom Stellard | 26a3b67 | 2013-10-22 18:19:10 +0000 | [diff] [blame] | 261 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 262 | /// \brief Get the index of Op in the MachineInstr. |
| 263 | /// |
| 264 | /// \returns -1 if the Instruction does not contain the specified \p Op. |
Tom Stellard | 02661d9 | 2013-06-25 21:22:18 +0000 | [diff] [blame] | 265 | int getOperandIdx(const MachineInstr &MI, unsigned Op) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 266 | |
| 267 | /// \brief Get the index of \p Op for the given Opcode. |
| 268 | /// |
| 269 | /// \returns -1 if the Instruction does not contain the specified \p Op. |
Tom Stellard | 02661d9 | 2013-06-25 21:22:18 +0000 | [diff] [blame] | 270 | int getOperandIdx(unsigned Opcode, unsigned Op) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 271 | |
| 272 | /// \brief Helper function for setting instruction flag values. |
Tom Stellard | 02661d9 | 2013-06-25 21:22:18 +0000 | [diff] [blame] | 273 | void setImmOperand(MachineInstr *MI, unsigned Op, int64_t Imm) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 274 | |
| 275 | /// \returns true if this instruction has an operand for storing target flags. |
| 276 | bool hasFlagOperand(const MachineInstr &MI) const; |
| 277 | |
| 278 | ///\brief Add one of the MO_FLAG* flags to the specified \p Operand. |
| 279 | void addFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const; |
| 280 | |
| 281 | ///\brief Determine if the specified \p Flag is set on this \p Operand. |
| 282 | bool isFlagSet(const MachineInstr &MI, unsigned Operand, unsigned Flag) const; |
| 283 | |
| 284 | /// \param SrcIdx The register source to set the flag on (e.g src0, src1, src2) |
| 285 | /// \param Flag The flag being set. |
| 286 | /// |
| 287 | /// \returns the operand containing the flags for this instruction. |
| 288 | MachineOperand &getFlagOp(MachineInstr *MI, unsigned SrcIdx = 0, |
| 289 | unsigned Flag = 0) const; |
| 290 | |
| 291 | /// \brief Clear the specified flag on the instruction. |
| 292 | void clearFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const; |
Tom Stellard | 2ff7262 | 2016-01-28 16:04:37 +0000 | [diff] [blame^] | 293 | |
| 294 | // Helper functions that check the opcode for status information |
| 295 | bool isRegisterStore(const MachineInstr &MI) const; |
| 296 | bool isRegisterLoad(const MachineInstr &MI) const; |
| 297 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 298 | }; |
| 299 | |
Tom Stellard | 13c68ef | 2013-09-05 18:38:09 +0000 | [diff] [blame] | 300 | namespace AMDGPU { |
| 301 | |
| 302 | int getLDSNoRetOp(uint16_t Opcode); |
| 303 | |
| 304 | } //End namespace AMDGPU |
| 305 | |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 306 | } // End llvm namespace |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 307 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 308 | #endif |