2013-10-16 07:44:45 +08:00
|
|
|
//===-- SIInstrInfo.h - SI Instruction Info Interface -----------*- C++ -*-===//
|
2012-12-12 05:25:42 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief Interface definition for SIInstrInfo.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SIINSTRINFO_H
|
|
|
|
#define SIINSTRINFO_H
|
|
|
|
|
|
|
|
#include "AMDGPUInstrInfo.h"
|
|
|
|
#include "SIRegisterInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class SIInstrInfo : public AMDGPUInstrInfo {
|
|
|
|
private:
|
|
|
|
const SIRegisterInfo RI;
|
|
|
|
|
2014-03-21 23:51:57 +08:00
|
|
|
unsigned buildExtractSubReg(MachineBasicBlock::iterator MI,
|
|
|
|
MachineRegisterInfo &MRI,
|
|
|
|
MachineOperand &SuperReg,
|
|
|
|
const TargetRegisterClass *SuperRC,
|
|
|
|
unsigned SubIdx,
|
|
|
|
const TargetRegisterClass *SubRC) const;
|
2014-03-25 04:08:09 +08:00
|
|
|
MachineOperand buildExtractSubRegOrImm(MachineBasicBlock::iterator MI,
|
|
|
|
MachineRegisterInfo &MRI,
|
|
|
|
MachineOperand &SuperReg,
|
|
|
|
const TargetRegisterClass *SuperRC,
|
|
|
|
unsigned SubIdx,
|
|
|
|
const TargetRegisterClass *SubRC) const;
|
2014-03-21 23:51:57 +08:00
|
|
|
|
2014-03-25 02:26:52 +08:00
|
|
|
unsigned split64BitImm(SmallVectorImpl<MachineInstr *> &Worklist,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
MachineRegisterInfo &MRI,
|
|
|
|
const TargetRegisterClass *RC,
|
|
|
|
const MachineOperand &Op) const;
|
|
|
|
|
2014-03-25 04:08:09 +08:00
|
|
|
void splitScalar64BitOp(SmallVectorImpl<MachineInstr *> & Worklist,
|
2014-03-25 04:08:05 +08:00
|
|
|
MachineInstr *Inst, unsigned Opcode) const;
|
|
|
|
|
2014-04-18 09:53:18 +08:00
|
|
|
void addDescImplicitUseDef(const MCInstrDesc &Desc, MachineInstr *MI) const;
|
2014-03-25 04:08:05 +08:00
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
public:
|
|
|
|
explicit SIInstrInfo(AMDGPUTargetMachine &tm);
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
const SIRegisterInfo &getRegisterInfo() const override {
|
2014-03-11 08:01:34 +08:00
|
|
|
return RI;
|
|
|
|
}
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
void copyPhysReg(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI, DebugLoc DL,
|
|
|
|
unsigned DestReg, unsigned SrcReg,
|
|
|
|
bool KillSrc) const override;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2013-11-28 05:23:35 +08:00
|
|
|
void storeRegToStackSlot(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
unsigned SrcReg, bool isKill, int FrameIndex,
|
|
|
|
const TargetRegisterClass *RC,
|
2014-04-29 15:57:24 +08:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2013-11-28 05:23:35 +08:00
|
|
|
|
|
|
|
void loadRegFromStackSlot(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
unsigned DestReg, int FrameIndex,
|
|
|
|
const TargetRegisterClass *RC,
|
2014-04-29 15:57:24 +08:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2013-11-28 05:23:35 +08:00
|
|
|
|
2013-03-27 17:12:59 +08:00
|
|
|
unsigned commuteOpcode(unsigned Opcode) const;
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
MachineInstr *commuteInstruction(MachineInstr *MI,
|
|
|
|
bool NewMI=false) const override;
|
2013-02-27 01:52:29 +08:00
|
|
|
|
2014-03-31 22:01:56 +08:00
|
|
|
bool isTriviallyReMaterializable(const MachineInstr *MI,
|
2014-04-28 12:05:08 +08:00
|
|
|
AliasAnalysis *AA = nullptr) const;
|
2014-03-31 22:01:56 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
unsigned getIEQOpcode() const override {
|
2013-12-11 05:37:42 +08:00
|
|
|
llvm_unreachable("Unimplemented");
|
|
|
|
}
|
|
|
|
|
2013-10-23 02:19:10 +08:00
|
|
|
MachineInstr *buildMovInstr(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
2014-04-29 15:57:24 +08:00
|
|
|
unsigned DstReg, unsigned SrcReg) const override;
|
|
|
|
bool isMov(unsigned Opcode) const override;
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const override;
|
2014-02-11 00:58:30 +08:00
|
|
|
bool isDS(uint16_t Opcode) const;
|
2013-08-15 07:24:17 +08:00
|
|
|
int isMIMG(uint16_t Opcode) const;
|
2013-08-17 00:19:24 +08:00
|
|
|
int isSMRD(uint16_t Opcode) const;
|
2013-10-11 01:11:55 +08:00
|
|
|
bool isVOP1(uint16_t Opcode) const;
|
|
|
|
bool isVOP2(uint16_t Opcode) const;
|
|
|
|
bool isVOP3(uint16_t Opcode) const;
|
|
|
|
bool isVOPC(uint16_t Opcode) const;
|
2014-04-01 03:54:27 +08:00
|
|
|
bool isInlineConstant(const APInt &Imm) const;
|
2013-10-11 01:11:55 +08:00
|
|
|
bool isInlineConstant(const MachineOperand &MO) const;
|
|
|
|
bool isLiteralConstant(const MachineOperand &MO) const;
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
bool verifyInstruction(const MachineInstr *MI,
|
|
|
|
StringRef &ErrInfo) const override;
|
2013-02-07 01:32:29 +08:00
|
|
|
|
2013-11-14 07:36:37 +08:00
|
|
|
bool isSALUInstr(const MachineInstr &MI) const;
|
2013-11-16 06:02:28 +08:00
|
|
|
static unsigned getVALUOp(const MachineInstr &MI);
|
2014-03-25 04:08:05 +08:00
|
|
|
|
2013-11-14 07:36:37 +08:00
|
|
|
bool isSALUOpSupportedOnVALU(const MachineInstr &MI) const;
|
|
|
|
|
|
|
|
/// \brief Return the correct register class for \p OpNo. For target-specific
|
|
|
|
/// instructions, this will return the register class that has been defined
|
|
|
|
/// in tablegen. For generic instructions, like REG_SEQUENCE it will return
|
|
|
|
/// the register class of its machine operand.
|
|
|
|
/// to infer the correct register class base on the other operands.
|
|
|
|
const TargetRegisterClass *getOpRegClass(const MachineInstr &MI,
|
|
|
|
unsigned OpNo) const;\
|
|
|
|
|
|
|
|
/// \returns true if it is legal for the operand at index \p OpNo
|
|
|
|
/// to read a VGPR.
|
|
|
|
bool canReadVGPR(const MachineInstr &MI, unsigned OpNo) const;
|
|
|
|
|
|
|
|
/// \brief Legalize the \p OpIndex operand of this instruction by inserting
|
|
|
|
/// a MOV. For example:
|
|
|
|
/// ADD_I32_e32 VGPR0, 15
|
|
|
|
/// to
|
|
|
|
/// MOV VGPR1, 15
|
|
|
|
/// ADD_I32_e32 VGPR0, VGPR1
|
|
|
|
///
|
|
|
|
/// If the operand being legalized is a register, then a COPY will be used
|
|
|
|
/// instead of MOV.
|
|
|
|
void legalizeOpWithMove(MachineInstr *MI, unsigned OpIdx) const;
|
|
|
|
|
|
|
|
/// \brief Legalize all operands in this instruction. This function may
|
|
|
|
/// create new instruction and insert them before \p MI.
|
|
|
|
void legalizeOperands(MachineInstr *MI) const;
|
|
|
|
|
|
|
|
/// \brief Replace this instruction's opcode with the equivalent VALU
|
|
|
|
/// opcode. This function will also move the users of \p MI to the
|
|
|
|
/// VALU if necessary.
|
|
|
|
void moveToVALU(MachineInstr &MI) const;
|
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
unsigned calculateIndirectAddress(unsigned RegIndex,
|
|
|
|
unsigned Channel) const override;
|
2013-02-07 01:32:29 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
const TargetRegisterClass *getIndirectAddrRegClass() const override;
|
2013-02-07 01:32:29 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
|
|
|
unsigned ValueReg,
|
|
|
|
unsigned Address,
|
|
|
|
unsigned OffsetReg) const override;
|
2013-02-07 01:32:29 +08:00
|
|
|
|
2014-04-29 15:57:24 +08:00
|
|
|
MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
|
|
|
unsigned ValueReg,
|
|
|
|
unsigned Address,
|
|
|
|
unsigned OffsetReg) const override;
|
2013-11-14 07:36:50 +08:00
|
|
|
void reserveIndirectRegisters(BitVector &Reserved,
|
|
|
|
const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
void LoadM0(MachineInstr *MoveRel, MachineBasicBlock::iterator I,
|
|
|
|
unsigned SavReg, unsigned IndexReg) const;
|
|
|
|
};
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2013-02-27 01:52:42 +08:00
|
|
|
namespace AMDGPU {
|
|
|
|
|
|
|
|
int getVOPe64(uint16_t Opcode);
|
2013-03-27 17:12:59 +08:00
|
|
|
int getCommuteRev(uint16_t Opcode);
|
|
|
|
int getCommuteOrig(uint16_t Opcode);
|
2013-02-27 01:52:42 +08:00
|
|
|
|
2014-03-21 23:51:57 +08:00
|
|
|
const uint64_t RSRC_DATA_FORMAT = 0xf00000000000LL;
|
|
|
|
|
|
|
|
|
2013-02-27 01:52:42 +08:00
|
|
|
} // End namespace AMDGPU
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
} // End namespace llvm
|
|
|
|
|
|
|
|
namespace SIInstrFlags {
|
|
|
|
enum Flags {
|
|
|
|
// First 4 bits are the instruction encoding
|
2013-02-08 03:39:45 +08:00
|
|
|
VM_CNT = 1 << 0,
|
|
|
|
EXP_CNT = 1 << 1,
|
|
|
|
LGKM_CNT = 1 << 2
|
2012-12-12 05:25:42 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //SIINSTRINFO_H
|