Matt Arsenault | df90c02 | 2013-10-15 23:44:45 +0000 | [diff] [blame] | 1 | //===-- SIInstrInfo.h - SI Instruction Info Interface -----------*- C++ -*-===// |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 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 SIInstrInfo. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | |
| 16 | #ifndef SIINSTRINFO_H |
| 17 | #define SIINSTRINFO_H |
| 18 | |
| 19 | #include "AMDGPUInstrInfo.h" |
| 20 | #include "SIRegisterInfo.h" |
| 21 | |
| 22 | namespace llvm { |
| 23 | |
| 24 | class SIInstrInfo : public AMDGPUInstrInfo { |
| 25 | private: |
| 26 | const SIRegisterInfo RI; |
| 27 | |
Tom Stellard | 1583409 | 2014-03-21 15:51:57 +0000 | [diff] [blame] | 28 | unsigned buildExtractSubReg(MachineBasicBlock::iterator MI, |
| 29 | MachineRegisterInfo &MRI, |
| 30 | MachineOperand &SuperReg, |
| 31 | const TargetRegisterClass *SuperRC, |
| 32 | unsigned SubIdx, |
| 33 | const TargetRegisterClass *SubRC) const; |
| 34 | |
Matt Arsenault | bd99580 | 2014-03-24 18:26:52 +0000 | [diff] [blame^] | 35 | unsigned split64BitImm(SmallVectorImpl<MachineInstr *> &Worklist, |
| 36 | MachineBasicBlock::iterator MI, |
| 37 | MachineRegisterInfo &MRI, |
| 38 | const TargetRegisterClass *RC, |
| 39 | const MachineOperand &Op) const; |
| 40 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 41 | public: |
| 42 | explicit SIInstrInfo(AMDGPUTargetMachine &tm); |
| 43 | |
Matt Arsenault | 6dde303 | 2014-03-11 00:01:34 +0000 | [diff] [blame] | 44 | const SIRegisterInfo &getRegisterInfo() const { |
| 45 | return RI; |
| 46 | } |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 47 | |
| 48 | virtual void copyPhysReg(MachineBasicBlock &MBB, |
| 49 | MachineBasicBlock::iterator MI, DebugLoc DL, |
| 50 | unsigned DestReg, unsigned SrcReg, |
| 51 | bool KillSrc) const; |
| 52 | |
Tom Stellard | c149dc0 | 2013-11-27 21:23:35 +0000 | [diff] [blame] | 53 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 54 | MachineBasicBlock::iterator MI, |
| 55 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 56 | const TargetRegisterClass *RC, |
| 57 | const TargetRegisterInfo *TRI) const; |
| 58 | |
| 59 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 60 | MachineBasicBlock::iterator MI, |
| 61 | unsigned DestReg, int FrameIndex, |
| 62 | const TargetRegisterClass *RC, |
| 63 | const TargetRegisterInfo *TRI) const; |
| 64 | |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 65 | unsigned commuteOpcode(unsigned Opcode) const; |
| 66 | |
Christian Konig | 76edd4f | 2013-02-26 17:52:29 +0000 | [diff] [blame] | 67 | virtual MachineInstr *commuteInstruction(MachineInstr *MI, |
| 68 | bool NewMI=false) const; |
| 69 | |
Matt Arsenault | eaa3a7e | 2013-12-10 21:37:42 +0000 | [diff] [blame] | 70 | virtual unsigned getIEQOpcode() const { |
| 71 | llvm_unreachable("Unimplemented"); |
| 72 | } |
| 73 | |
Tom Stellard | 26a3b67 | 2013-10-22 18:19:10 +0000 | [diff] [blame] | 74 | MachineInstr *buildMovInstr(MachineBasicBlock *MBB, |
| 75 | MachineBasicBlock::iterator I, |
| 76 | unsigned DstReg, unsigned SrcReg) const; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 77 | virtual bool isMov(unsigned Opcode) const; |
| 78 | |
| 79 | virtual bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const; |
Tom Stellard | 5d7aaae | 2014-02-10 16:58:30 +0000 | [diff] [blame] | 80 | bool isDS(uint16_t Opcode) const; |
Tom Stellard | 16a9a20 | 2013-08-14 23:24:17 +0000 | [diff] [blame] | 81 | int isMIMG(uint16_t Opcode) const; |
Michel Danzer | 20680b1 | 2013-08-16 16:19:24 +0000 | [diff] [blame] | 82 | int isSMRD(uint16_t Opcode) const; |
Tom Stellard | 93fabce | 2013-10-10 17:11:55 +0000 | [diff] [blame] | 83 | bool isVOP1(uint16_t Opcode) const; |
| 84 | bool isVOP2(uint16_t Opcode) const; |
| 85 | bool isVOP3(uint16_t Opcode) const; |
| 86 | bool isVOPC(uint16_t Opcode) const; |
| 87 | bool isInlineConstant(const MachineOperand &MO) const; |
| 88 | bool isLiteralConstant(const MachineOperand &MO) const; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 89 | |
Tom Stellard | 93fabce | 2013-10-10 17:11:55 +0000 | [diff] [blame] | 90 | virtual bool verifyInstruction(const MachineInstr *MI, |
| 91 | StringRef &ErrInfo) const; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 92 | |
Tom Stellard | 8216602 | 2013-11-13 23:36:37 +0000 | [diff] [blame] | 93 | bool isSALUInstr(const MachineInstr &MI) const; |
Matt Arsenault | f14032a | 2013-11-15 22:02:28 +0000 | [diff] [blame] | 94 | static unsigned getVALUOp(const MachineInstr &MI); |
Tom Stellard | 8216602 | 2013-11-13 23:36:37 +0000 | [diff] [blame] | 95 | bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const; |
| 96 | |
| 97 | /// \brief Return the correct register class for \p OpNo. For target-specific |
| 98 | /// instructions, this will return the register class that has been defined |
| 99 | /// in tablegen. For generic instructions, like REG_SEQUENCE it will return |
| 100 | /// the register class of its machine operand. |
| 101 | /// to infer the correct register class base on the other operands. |
| 102 | const TargetRegisterClass *getOpRegClass(const MachineInstr &MI, |
| 103 | unsigned OpNo) const;\ |
| 104 | |
| 105 | /// \returns true if it is legal for the operand at index \p OpNo |
| 106 | /// to read a VGPR. |
| 107 | bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const; |
| 108 | |
| 109 | /// \brief Legalize the \p OpIndex operand of this instruction by inserting |
| 110 | /// a MOV. For example: |
| 111 | /// ADD_I32_e32 VGPR0, 15 |
| 112 | /// to |
| 113 | /// MOV VGPR1, 15 |
| 114 | /// ADD_I32_e32 VGPR0, VGPR1 |
| 115 | /// |
| 116 | /// If the operand being legalized is a register, then a COPY will be used |
| 117 | /// instead of MOV. |
| 118 | void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const; |
| 119 | |
| 120 | /// \brief Legalize all operands in this instruction. This function may |
| 121 | /// create new instruction and insert them before \p MI. |
| 122 | void legalizeOperands(MachineInstr *MI) const; |
| 123 | |
| 124 | /// \brief Replace this instruction's opcode with the equivalent VALU |
| 125 | /// opcode. This function will also move the users of \p MI to the |
| 126 | /// VALU if necessary. |
| 127 | void moveToVALU(MachineInstr &MI) const; |
| 128 | |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 129 | virtual unsigned calculateIndirectAddress(unsigned RegIndex, |
| 130 | unsigned Channel) const; |
| 131 | |
Tom Stellard | 26a3b67 | 2013-10-22 18:19:10 +0000 | [diff] [blame] | 132 | virtual const TargetRegisterClass *getIndirectAddrRegClass() const; |
Tom Stellard | f3b2a1e | 2013-02-06 17:32:29 +0000 | [diff] [blame] | 133 | |
| 134 | virtual MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB, |
| 135 | MachineBasicBlock::iterator I, |
| 136 | unsigned ValueReg, |
| 137 | unsigned Address, |
| 138 | unsigned OffsetReg) const; |
| 139 | |
| 140 | virtual MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB, |
| 141 | MachineBasicBlock::iterator I, |
| 142 | unsigned ValueReg, |
| 143 | unsigned Address, |
| 144 | unsigned OffsetReg) const; |
Tom Stellard | 81d871d | 2013-11-13 23:36:50 +0000 | [diff] [blame] | 145 | void reserveIndirectRegisters(BitVector &Reserved, |
| 146 | const MachineFunction &MF) const; |
| 147 | |
| 148 | void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I, |
| 149 | unsigned SavReg, unsigned IndexReg) const; |
| 150 | }; |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 151 | |
Christian Konig | f741fbf | 2013-02-26 17:52:42 +0000 | [diff] [blame] | 152 | namespace AMDGPU { |
| 153 | |
| 154 | int getVOPe64(uint16_t Opcode); |
Christian Konig | 3c14580 | 2013-03-27 09:12:59 +0000 | [diff] [blame] | 155 | int getCommuteRev(uint16_t Opcode); |
| 156 | int getCommuteOrig(uint16_t Opcode); |
Christian Konig | f741fbf | 2013-02-26 17:52:42 +0000 | [diff] [blame] | 157 | |
Tom Stellard | 1583409 | 2014-03-21 15:51:57 +0000 | [diff] [blame] | 158 | const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL; |
| 159 | |
| 160 | |
Christian Konig | f741fbf | 2013-02-26 17:52:42 +0000 | [diff] [blame] | 161 | } // End namespace AMDGPU |
| 162 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 163 | } // End namespace llvm |
| 164 | |
| 165 | namespace SIInstrFlags { |
| 166 | enum Flags { |
| 167 | // First 4 bits are the instruction encoding |
Tom Stellard | 1c822a8 | 2013-02-07 19:39:45 +0000 | [diff] [blame] | 168 | VM_CNT = 1 << 0, |
| 169 | EXP_CNT = 1 << 1, |
| 170 | LGKM_CNT = 1 << 2 |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 171 | }; |
| 172 | } |
| 173 | |
| 174 | #endif //SIINSTRINFO_H |