2013-10-15 23:44:45 +00:00
|
|
|
//===-- SIInstrInfo.h - SI Instruction Info Interface -----------*- C++ -*-===//
|
2012-12-11 21:25:42 +00: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;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SIInstrInfo(AMDGPUTargetMachine &tm);
|
|
|
|
|
|
|
|
const SIRegisterInfo &getRegisterInfo() const;
|
|
|
|
|
|
|
|
virtual void copyPhysReg(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI, DebugLoc DL,
|
|
|
|
unsigned DestReg, unsigned SrcReg,
|
|
|
|
bool KillSrc) const;
|
|
|
|
|
2013-03-27 09:12:59 +00:00
|
|
|
unsigned commuteOpcode(unsigned Opcode) const;
|
|
|
|
|
2013-02-26 17:52:29 +00:00
|
|
|
virtual MachineInstr *commuteInstruction(MachineInstr *MI,
|
|
|
|
bool NewMI=false) const;
|
|
|
|
|
2012-12-11 21:25:42 +00:00
|
|
|
virtual MachineInstr * getMovImmInstr(MachineFunction *MF, unsigned DstReg,
|
|
|
|
int64_t Imm) const;
|
|
|
|
|
|
|
|
virtual unsigned getIEQOpcode() const { assert(!"Implement"); return 0;}
|
|
|
|
virtual bool isMov(unsigned Opcode) const;
|
|
|
|
|
|
|
|
virtual bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const;
|
2013-08-14 23:24:17 +00:00
|
|
|
int isMIMG(uint16_t Opcode) const;
|
2013-08-16 16:19:24 +00:00
|
|
|
int isSMRD(uint16_t Opcode) const;
|
2013-10-10 17:11:55 +00: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;
|
|
|
|
bool isInlineConstant(const MachineOperand &MO) const;
|
|
|
|
bool isLiteralConstant(const MachineOperand &MO) const;
|
|
|
|
|
|
|
|
virtual bool verifyInstruction(const MachineInstr *MI,
|
|
|
|
StringRef &ErrInfo) const;
|
2013-02-06 17:32:29 +00:00
|
|
|
virtual int getIndirectIndexBegin(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
virtual int getIndirectIndexEnd(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
virtual unsigned calculateIndirectAddress(unsigned RegIndex,
|
|
|
|
unsigned Channel) const;
|
|
|
|
|
|
|
|
virtual const TargetRegisterClass *getIndirectAddrStoreRegClass(
|
|
|
|
unsigned SourceReg) const;
|
|
|
|
|
|
|
|
virtual const TargetRegisterClass *getIndirectAddrLoadRegClass() const;
|
|
|
|
|
|
|
|
virtual MachineInstrBuilder buildIndirectWrite(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
|
|
|
unsigned ValueReg,
|
|
|
|
unsigned Address,
|
|
|
|
unsigned OffsetReg) const;
|
|
|
|
|
|
|
|
virtual MachineInstrBuilder buildIndirectRead(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator I,
|
|
|
|
unsigned ValueReg,
|
|
|
|
unsigned Address,
|
|
|
|
unsigned OffsetReg) const;
|
|
|
|
|
|
|
|
virtual const TargetRegisterClass *getSuperIndirectRegClass() const;
|
2012-12-11 21:25:42 +00:00
|
|
|
};
|
|
|
|
|
2013-02-26 17:52:42 +00:00
|
|
|
namespace AMDGPU {
|
|
|
|
|
|
|
|
int getVOPe64(uint16_t Opcode);
|
2013-03-27 09:12:59 +00:00
|
|
|
int getCommuteRev(uint16_t Opcode);
|
|
|
|
int getCommuteOrig(uint16_t Opcode);
|
2013-02-26 17:52:42 +00:00
|
|
|
|
|
|
|
} // End namespace AMDGPU
|
|
|
|
|
2012-12-11 21:25:42 +00:00
|
|
|
} // End namespace llvm
|
|
|
|
|
|
|
|
namespace SIInstrFlags {
|
|
|
|
enum Flags {
|
|
|
|
// First 4 bits are the instruction encoding
|
2013-02-07 19:39:45 +00:00
|
|
|
VM_CNT = 1 << 0,
|
|
|
|
EXP_CNT = 1 << 1,
|
|
|
|
LGKM_CNT = 1 << 2
|
2012-12-11 21:25:42 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //SIINSTRINFO_H
|