23#define GET_INSTRINFO_CTOR_DTOR
24#include "R600GenDFAPacketizer.inc"
26#define GET_INSTRINFO_CTOR_DTOR
27#define GET_INSTRMAP_INFO
28#define GET_INSTRINFO_NAMED_OPS
29#include "R600GenInstrInfo.inc"
42 bool RenamableDest,
bool RenamableSrc)
const {
43 unsigned VectorComponents = 0;
44 if ((R600::R600_Reg128RegClass.
contains(DestReg) ||
45 R600::R600_Reg128VerticalRegClass.
contains(DestReg)) &&
46 (R600::R600_Reg128RegClass.
contains(SrcReg) ||
47 R600::R600_Reg128VerticalRegClass.
contains(SrcReg))) {
49 }
else if((R600::R600_Reg64RegClass.
contains(DestReg) ||
50 R600::R600_Reg64VerticalRegClass.
contains(DestReg)) &&
51 (R600::R600_Reg64RegClass.
contains(SrcReg) ||
52 R600::R600_Reg64VerticalRegClass.
contains(SrcReg))) {
56 if (VectorComponents > 0) {
57 for (
unsigned I = 0;
I < VectorComponents;
I++) {
60 RI.getSubReg(DestReg, SubRegIndex),
61 RI.getSubReg(SrcReg, SubRegIndex))
87 case R600::MOV_IMM_F32:
88 case R600::MOV_IMM_I32:
99 default:
return false;
100 case R600::CUBE_r600_pseudo:
101 case R600::CUBE_r600_real:
102 case R600::CUBE_eg_pseudo:
103 case R600::CUBE_eg_real:
109 unsigned TargetFlags =
get(Opcode).TSFlags;
115 unsigned TargetFlags =
get(Opcode).TSFlags;
123 unsigned TargetFlags =
get(Opcode).TSFlags;
139 switch (
MI.getOpcode()) {
141 case R600::INTERP_PAIR_XY:
142 case R600::INTERP_PAIR_ZW:
143 case R600::INTERP_VEC_LOAD:
155 return (
get(Opcode).getSchedClass() == R600::Sched::TransALU);
163 return (
get(Opcode).getSchedClass() == R600::Sched::VecALU);
198 case R600::GROUP_BARRIER:
206 return MI.findRegisterUseOperandIdx(R600::AR_X, &RI,
false) != -1;
210 return MI.findRegisterDefOperandIdx(R600::AR_X, &RI,
false,
false) != -1;
218 if (MO.getReg().isPhysical() &&
219 R600::R600_LDS_SRC_REGRegClass.contains(MO.getReg()))
225 static const unsigned SrcSelTable[][2] = {
226 {R600::OpName::src0, R600::OpName::src0_sel},
227 {R600::OpName::src1, R600::OpName::src1_sel},
228 {R600::OpName::src2, R600::OpName::src2_sel},
229 {R600::OpName::src0_X, R600::OpName::src0_sel_X},
230 {R600::OpName::src0_Y, R600::OpName::src0_sel_Y},
231 {R600::OpName::src0_Z, R600::OpName::src0_sel_Z},
232 {R600::OpName::src0_W, R600::OpName::src0_sel_W},
233 {R600::OpName::src1_X, R600::OpName::src1_sel_X},
234 {R600::OpName::src1_Y, R600::OpName::src1_sel_Y},
235 {R600::OpName::src1_Z, R600::OpName::src1_sel_Z},
236 {R600::OpName::src1_W, R600::OpName::src1_sel_W}
239 for (
const auto &Row : SrcSelTable) {
251 if (
MI.getOpcode() == R600::DOT_4) {
252 static const unsigned OpTable[8][2] = {
253 {R600::OpName::src0_X, R600::OpName::src0_sel_X},
254 {R600::OpName::src0_Y, R600::OpName::src0_sel_Y},
255 {R600::OpName::src0_Z, R600::OpName::src0_sel_Z},
256 {R600::OpName::src0_W, R600::OpName::src0_sel_W},
257 {R600::OpName::src1_X, R600::OpName::src1_sel_X},
258 {R600::OpName::src1_Y, R600::OpName::src1_sel_Y},
259 {R600::OpName::src1_Z, R600::OpName::src1_sel_Z},
260 {R600::OpName::src1_W, R600::OpName::src1_sel_W},
263 for (
const auto &
Op : OpTable) {
266 if (Reg == R600::ALU_CONST) {
269 Result.push_back(std::pair(&MO, Sel.
getImm()));
276 static const unsigned OpTable[3][2] = {
277 {R600::OpName::src0, R600::OpName::src0_sel},
278 {R600::OpName::src1, R600::OpName::src1_sel},
279 {R600::OpName::src2, R600::OpName::src2_sel},
282 for (
const auto &
Op : OpTable) {
288 if (Reg == R600::ALU_CONST) {
290 Result.push_back(std::pair(&MO, Sel.
getImm()));
293 if (Reg == R600::ALU_LITERAL_X) {
296 if (Operand.
isImm()) {
297 Result.push_back(std::pair(&MO, Operand.
getImm()));
302 Result.push_back(std::pair(&MO, 0));
307std::vector<std::pair<int, unsigned>>
310 unsigned &ConstCount)
const {
312 const std::pair<int, unsigned> DummyPair(-1, 0);
313 std::vector<std::pair<int, unsigned>> Result;
318 int Index = RI.getEncodingValue(Reg) & 0xff;
319 if (Reg == R600::OQAP) {
320 Result.emplace_back(Index, 0U);
324 Result.emplace_back(255, 0U);
329 Result.push_back(DummyPair);
333 Result.emplace_back(Index, Chan);
336 Result.push_back(DummyPair);
340static std::vector<std::pair<int, unsigned>>
341Swizzle(std::vector<std::pair<int, unsigned>> Src,
343 if (Src[0] == Src[1])
370 assert(
Op < 3 &&
"Out of range swizzle index");
373 unsigned Cycles[3] = { 2, 1, 0};
377 unsigned Cycles[3] = { 1, 2, 2};
381 unsigned Cycles[3] = { 2, 1, 2};
385 unsigned Cycles[3] = { 2, 2, 1};
397 const std::vector<std::vector<std::pair<int, unsigned>>> &IGSrcs,
398 const std::vector<R600InstrInfo::BankSwizzle> &Swz,
399 const std::vector<std::pair<int, unsigned>> &TransSrcs,
403 for (
unsigned i = 0, e = IGSrcs.size(); i < e; i++) {
404 const std::vector<std::pair<int, unsigned>> &Srcs =
406 for (
unsigned j = 0; j < 3; j++) {
407 const std::pair<int, unsigned> &Src = Srcs[j];
408 if (Src.first < 0 || Src.first == 255)
410 if (Src.first ==
GET_REG_INDEX(RI.getEncodingValue(R600::OQAP))) {
420 if (
Vector[Src.second][j] < 0)
421 Vector[Src.second][j] = Src.first;
422 if (
Vector[Src.second][j] != Src.first)
427 for (
unsigned i = 0, e = TransSrcs.size(); i < e; ++i) {
428 const std::pair<int, unsigned> &Src = TransSrcs[i];
432 if (Src.first == 255)
437 return IGSrcs.size() - 1;
439 return IGSrcs.size();
447 std::vector<R600InstrInfo::BankSwizzle> &SwzCandidate,
453 for (
unsigned i = ResetIdx + 1, e = SwzCandidate.size(); i < e; i++) {
458 int NextSwizzle = SwzCandidate[ResetIdx] + 1;
466 const std::vector<std::vector<std::pair<int, unsigned>>> &IGSrcs,
467 std::vector<R600InstrInfo::BankSwizzle> &SwzCandidate,
468 const std::vector<std::pair<int, unsigned>> &TransSrcs,
470 unsigned ValidUpTo = 0;
472 ValidUpTo =
isLegalUpTo(IGSrcs, SwzCandidate, TransSrcs, TransSwz);
473 if (ValidUpTo == IGSrcs.size())
483 const std::vector<std::pair<int, unsigned>> &TransOps,
484 unsigned ConstCount) {
488 for (
unsigned i = 0, e = TransOps.size(); i < e; ++i) {
489 const std::pair<int, unsigned> &Src = TransOps[i];
493 if (ConstCount > 0 &&
Cycle == 0)
495 if (ConstCount > 1 &&
Cycle == 1)
504 std::vector<BankSwizzle> &ValidSwizzle,
509 std::vector<std::vector<std::pair<int, unsigned>>> IGSrcs;
510 ValidSwizzle.clear();
514 IGSrcs.push_back(ExtractSrcs(*
MI, PV, ConstCount));
516 ValidSwizzle.push_back(
519 std::vector<std::pair<int, unsigned>> TransOps;
523 TransOps = std::move(IGSrcs.back());
525 ValidSwizzle.pop_back();
539 ValidSwizzle.push_back(TransBS);
550 assert (Consts.size() <= 12 &&
"Too many operands in instructions group");
551 unsigned Pair1 = 0, Pair2 = 0;
552 for (
unsigned Const : Consts) {
553 unsigned ReadConstHalf = Const & 2;
554 unsigned ReadConstIndex = Const & (~3);
555 unsigned ReadHalfConst = ReadConstIndex | ReadConstHalf;
557 Pair1 = ReadHalfConst;
560 if (Pair1 == ReadHalfConst)
563 Pair2 = ReadHalfConst;
566 if (Pair2 != ReadHalfConst)
575 std::vector<unsigned> Consts;
582 if (Src.first->getReg() == R600::ALU_LITERAL_X)
583 Literals.
insert(Src.second);
584 if (Literals.
size() > 4)
586 if (Src.first->getReg() == R600::ALU_CONST)
587 Consts.push_back(Src.second);
588 if (R600::R600_KC0RegClass.
contains(Src.first->getReg()) ||
589 R600::R600_KC1RegClass.contains(Src.first->getReg())) {
590 unsigned Index = RI.getEncodingValue(Src.first->getReg()) & 0xff;
592 Consts.push_back((Index << 2) | Chan);
602 return static_cast<const R600Subtarget &
>(STI).createDFAPacketizer(
II);
630 return Opcode == R600::JUMP || Opcode == R600::JUMP_COND;
634 return Opcode == R600::BRANCH || Opcode == R600::BRANCH_COND_i32 ||
635 Opcode == R600::BRANCH_COND_f32;
642 bool AllowModify)
const {
659 while (
I !=
MBB.
begin() && std::prev(
I)->getOpcode() == R600::JUMP) {
662 I->removeFromParent();
670 if (LastOpc == R600::JUMP) {
674 if (LastOpc == R600::JUMP_COND) {
680 Cond.push_back(predSet->getOperand(1));
681 Cond.push_back(predSet->getOperand(2));
690 unsigned SecondLastOpc = SecondLastInst.
getOpcode();
693 if (SecondLastOpc == R600::JUMP_COND && LastOpc == R600::JUMP) {
700 Cond.push_back(predSet->getOperand(1));
701 Cond.push_back(predSet->getOperand(2));
714 if (It->getOpcode() == R600::CF_ALU ||
715 It->getOpcode() == R600::CF_ALU_PUSH_BEFORE)
726 int *BytesAdded)
const {
727 assert(
TBB &&
"insertBranch must not be told to insert a fallthrough");
728 assert(!BytesAdded &&
"code size not handled");
736 assert(PredSet &&
"No previous predicate !");
746 assert (CfAlu->getOpcode() == R600::CF_ALU);
747 CfAlu->setDesc(
get(R600::CF_ALU_PUSH_BEFORE));
751 assert(PredSet &&
"No previous predicate !");
761 assert(CfAlu->getOpcode() == R600::CF_ALU);
762 CfAlu->setDesc(
get(R600::CF_ALU_PUSH_BEFORE));
767 int *BytesRemoved)
const {
768 assert(!BytesRemoved &&
"code size not handled");
779 switch (
I->getOpcode()) {
782 case R600::JUMP_COND: {
785 I->eraseFromParent();
789 assert (CfAlu->getOpcode() == R600::CF_ALU_PUSH_BEFORE);
790 CfAlu->setDesc(
get(R600::CF_ALU));
794 I->eraseFromParent();
803 switch (
I->getOpcode()) {
807 case R600::JUMP_COND: {
810 I->eraseFromParent();
814 assert (CfAlu->getOpcode() == R600::CF_ALU_PUSH_BEFORE);
815 CfAlu->setDesc(
get(R600::CF_ALU));
819 I->eraseFromParent();
826 int idx =
MI.findFirstPredOperandIdx();
832 default:
return false;
833 case R600::PRED_SEL_ONE:
834 case R600::PRED_SEL_ZERO:
835 case R600::PREDICATE_BIT:
846 if (
MI.getOpcode() == R600::KILLGT)
848 if (
MI.getOpcode() == R600::CF_ALU) {
854 return MI.getOperand(3).getImm() == 0 &&
MI.getOperand(4).getImm() == 0;
864 unsigned ExtraPredCycles,
872 unsigned ExtraTCycles,
875 unsigned ExtraFCycles,
898 case R600::PRED_SETE_INT:
899 MO.
setImm(R600::PRED_SETNE_INT);
901 case R600::PRED_SETNE_INT:
902 MO.
setImm(R600::PRED_SETE_INT);
904 case R600::PRED_SETE:
905 MO.
setImm(R600::PRED_SETNE);
907 case R600::PRED_SETNE:
908 MO.
setImm(R600::PRED_SETE);
916 case R600::PRED_SEL_ZERO:
917 MO2.
setReg(R600::PRED_SEL_ONE);
919 case R600::PRED_SEL_ONE:
920 MO2.
setReg(R600::PRED_SEL_ZERO);
929 std::vector<MachineOperand> &Pred,
930 bool SkipDead)
const {
936 int PIdx =
MI.findFirstPredOperandIdx();
938 if (
MI.getOpcode() == R600::CF_ALU) {
939 MI.getOperand(8).setImm(0);
943 if (
MI.getOpcode() == R600::DOT_4) {
945 .setReg(Pred[2].
getReg());
947 .setReg(Pred[2].
getReg());
949 .setReg(Pred[2].
getReg());
951 .setReg(Pred[2].
getReg());
974 unsigned *PredCost)
const {
981 unsigned Channel)
const {
987 switch (
MI.getOpcode()) {
991 R600::getNamedOperandIdx(
MI.getOpcode(), R600::OpName::addr);
994 int RegOpIdx = OffsetOpIdx + 1;
996 R600::getNamedOperandIdx(
MI.getOpcode(), R600::OpName::chan);
999 R600::getNamedOperandIdx(
MI.getOpcode(), R600::OpName::dst);
1000 unsigned RegIndex =
MI.getOperand(RegOpIdx).getImm();
1001 unsigned Channel =
MI.getOperand(ChanOpIdx).getImm();
1003 Register OffsetReg =
MI.getOperand(OffsetOpIdx).getReg();
1004 if (OffsetReg == R600::INDIRECT_BASE_ADDR) {
1008 buildIndirectRead(
MBB,
MI,
MI.getOperand(DstOpIdx).getReg(),
Address,
1013 R600::getNamedOperandIdx(
MI.getOpcode(), R600::OpName::val);
1014 unsigned RegIndex =
MI.getOperand(RegOpIdx).getImm();
1015 unsigned Channel =
MI.getOperand(ChanOpIdx).getImm();
1017 Register OffsetReg =
MI.getOperand(OffsetOpIdx).getReg();
1018 if (OffsetReg == R600::INDIRECT_BASE_ADDR) {
1020 MI.getOperand(ValOpIdx).getReg());
1022 buildIndirectWrite(
MBB,
MI,
MI.getOperand(ValOpIdx).getReg(),
1033 case R600::R600_EXTRACT_ELT_V2:
1034 case R600::R600_EXTRACT_ELT_V4:
1035 buildIndirectRead(
MI.getParent(),
MI,
MI.getOperand(0).getReg(),
1037 MI.getOperand(2).getReg(),
1040 case R600::R600_INSERT_ELT_V2:
1041 case R600::R600_INSERT_ELT_V4:
1042 buildIndirectWrite(
MI.getParent(),
MI,
MI.getOperand(2).getReg(),
1044 MI.getOperand(3).getReg(),
1048 MI.eraseFromParent();
1058 unsigned StackWidth = TFL->getStackWidth(MF);
1065 for (
unsigned Chan = 0; Chan < StackWidth; ++Chan) {
1066 unsigned Reg = R600::R600_TReg32RegClass.getRegister((4 * Index) + Chan);
1073 return &R600::R600_TReg32_XRegClass;
1078 unsigned ValueReg,
unsigned Address,
1079 unsigned OffsetReg)
const {
1080 return buildIndirectWrite(
MBB,
I, ValueReg,
Address, OffsetReg, 0);
1085 unsigned ValueReg,
unsigned Address,
1087 unsigned AddrChan)
const {
1091 case 0: AddrReg = R600::R600_AddrRegClass.getRegister(
Address);
break;
1092 case 1: AddrReg = R600::R600_Addr_YRegClass.getRegister(
Address);
break;
1093 case 2: AddrReg = R600::R600_Addr_ZRegClass.getRegister(
Address);
break;
1094 case 3: AddrReg = R600::R600_Addr_WRegClass.getRegister(
Address);
break;
1097 R600::AR_X, OffsetReg);
1110 unsigned ValueReg,
unsigned Address,
1111 unsigned OffsetReg)
const {
1112 return buildIndirectRead(
MBB,
I, ValueReg,
Address, OffsetReg, 0);
1117 unsigned ValueReg,
unsigned Address,
1119 unsigned AddrChan)
const {
1123 case 0: AddrReg = R600::R600_AddrRegClass.getRegister(
Address);
break;
1124 case 1: AddrReg = R600::R600_Addr_YRegClass.getRegister(
Address);
break;
1125 case 2: AddrReg = R600::R600_Addr_ZRegClass.getRegister(
Address);
break;
1126 case 3: AddrReg = R600::R600_Addr_WRegClass.getRegister(
Address);
break;
1151 if (
MRI.livein_empty()) {
1156 for (std::pair<MCRegister, Register> LI :
MRI.liveins()) {
1158 if (Reg.isVirtual() || !IndirectRC->
contains(Reg))
1163 for (RegIndex = 0, RegEnd = IndirectRC->
getNumRegs(); RegIndex != RegEnd;
1165 if (IndirectRC->
getRegister(RegIndex) == (
unsigned)Reg)
1191 Offset = TFL->getFrameIndexReference(MF, -1, IgnoredFrameReg).getFixed();
1205 unsigned Src1Reg)
const {
1234 .
addReg(R600::PRED_SEL_OFF)
1241#define OPERAND_CASE(Label) \
1243 static const unsigned Ops[] = \
1282 assert (
MI->getOpcode() == R600::DOT_4 &&
"Not Implemented");
1285 Opcode = R600::DOT4_r600;
1287 Opcode = R600::DOT4_eg;
1295 static const unsigned Operands[14] = {
1296 R600::OpName::update_exec_mask,
1297 R600::OpName::update_pred,
1298 R600::OpName::write,
1300 R600::OpName::dst_rel,
1301 R600::OpName::clamp,
1302 R600::OpName::src0_neg,
1303 R600::OpName::src0_rel,
1304 R600::OpName::src0_abs,
1305 R600::OpName::src0_sel,
1306 R600::OpName::src1_neg,
1307 R600::OpName::src1_rel,
1308 R600::OpName::src1_abs,
1309 R600::OpName::src1_sel,
1317 for (
unsigned Operand :
Operands) {
1332 R600::ALU_LITERAL_X);
1339 unsigned DstReg,
unsigned SrcReg)
const {
1348 return R600::getNamedOperandIdx(Opcode,
Op);
1352 int64_t Imm)
const {
1354 assert(
Idx != -1 &&
"Operand not supported for this instruction.");
1356 MI.getOperand(
Idx).setImm(Imm);
1364 unsigned Flag)
const {
1365 unsigned TargetFlags =
get(
MI.getOpcode()).TSFlags;
1399 assert(!IsOP3 &&
"Cannot set absolute value modifier for OP3 "
1416 assert(FlagIndex != -1 &&
"Flag not supported for this instruction");
1420 "Instruction flags not supported for this instruction");
1429 unsigned Flag)
const {
1430 unsigned TargetFlags =
get(
MI.getOpcode()).TSFlags;
1450 unsigned Flag)
const {
1451 unsigned TargetFlags =
get(
MI.getOpcode()).TSFlags;
1457 unsigned InstFlags = FlagOp.
getImm();
1459 FlagOp.
setImm(InstFlags);
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
mir Rename Register Operands
unsigned const TargetRegisterInfo * TRI
static unsigned getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
uint64_t IntrinsicInst * II
#define GET_REG_INDEX(reg)
#define HAS_NATIVE_OPERANDS(Flags)
#define GET_FLAG_OPERAND_IDX(Flags)
Helper for getting the operand index for the instruction flags operand.
static MachineInstr * findFirstPredicateSetterFrom(MachineBasicBlock &MBB, MachineBasicBlock::iterator I)
static bool isBranch(unsigned Opcode)
static MachineBasicBlock::iterator FindLastAluClause(MachineBasicBlock &MBB)
#define OPERAND_CASE(Label)
static std::vector< std::pair< int, unsigned > > Swizzle(std::vector< std::pair< int, unsigned > > Src, R600InstrInfo::BankSwizzle Swz)
static unsigned getTransSwizzle(R600InstrInfo::BankSwizzle Swz, unsigned Op)
static bool isConstCompatible(R600InstrInfo::BankSwizzle TransSwz, const std::vector< std::pair< int, unsigned > > &TransOps, unsigned ConstCount)
Instructions in Trans slot can't read gpr at cycle 0 if they also read a const, and can't read a gpr ...
static bool isPredicateSetter(unsigned Opcode)
static bool NextPossibleSolution(std::vector< R600InstrInfo::BankSwizzle > &SwzCandidate, unsigned Idx)
Given a swizzle sequence SwzCandidate and an index Idx, returns the next (in lexicographic term) swiz...
static unsigned getSlotedOps(unsigned Op, unsigned Slot)
static bool isJump(unsigned Opcode)
Interface definition for R600InstrInfo.
Provides R600 specific target descriptions.
AMDGPU R600 specific subclass of TargetSubtarget.
const SmallVectorImpl< MachineOperand > MachineBasicBlock * TBB
const SmallVectorImpl< MachineOperand > & Cond
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
This file defines the SmallSet class.
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
This class represents an Operation in the Expression.
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
A possibly irreducible generalization of a Loop.
Itinerary data supplied by a subtarget to be used by a target.
Wrapper class representing physical registers. Should be passed by value.
DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
iterator getLastNonDebugInstr(bool SkipPseudoOp=true)
Returns an iterator to the last non-debug instruction in the basic block, or end().
instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
reverse_iterator rbegin()
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool hasVarSizedObjects() const
This method may be called any time after instruction selection is complete to determine if the stack ...
unsigned getNumObjects() const
Return the number of objects.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
reverse_iterator getReverse() const
Get a reverse iterator to the same node.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
void setImm(int64_t immVal)
MachineBasicBlock * getMBB() const
void setReg(Register Reg)
Change the register this operand corresponds to.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
void setIsKill(bool Val=true)
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
Register getReg() const
getReg - Returns the register number.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
bool usesVertexCache(unsigned Opcode) const
MachineInstrBuilder buildDefaultInstruction(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, unsigned Opcode, unsigned DstReg, unsigned Src0Reg, unsigned Src1Reg=0) const
buildDefaultInstruction - This function returns a MachineInstr with all the instruction modifiers ini...
bool reverseBranchCondition(SmallVectorImpl< MachineOperand > &Cond) const override
bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB, SmallVectorImpl< MachineOperand > &Cond, bool AllowModify) const override
bool usesAddressRegister(MachineInstr &MI) const
unsigned calculateIndirectAddress(unsigned RegIndex, unsigned Channel) const
Calculate the "Indirect Address" for the given RegIndex and Channel.
bool hasInstrModifiers(unsigned Opcode) const
R600InstrInfo(const R600Subtarget &)
bool isMov(unsigned Opcode) const
bool isRegisterLoad(const MachineInstr &MI) const
int getIndirectIndexBegin(const MachineFunction &MF) const
bool isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, BranchProbability Probability) const override
bool usesTextureCache(unsigned Opcode) const
unsigned isLegalUpTo(const std::vector< std::vector< std::pair< int, unsigned > > > &IGSrcs, const std::vector< R600InstrInfo::BankSwizzle > &Swz, const std::vector< std::pair< int, unsigned > > &TransSrcs, R600InstrInfo::BankSwizzle TransSwz) const
returns how many MIs (whose inputs are represented by IGSrcs) can be packed in the same Instruction G...
unsigned int getInstrLatency(const InstrItineraryData *ItinData, const MachineInstr &MI, unsigned *PredCost=nullptr) const override
const TargetRegisterClass * getIndirectAddrRegClass() const
MachineInstr * buildMovImm(MachineBasicBlock &BB, MachineBasicBlock::iterator I, unsigned DstReg, uint64_t Imm) const
bool definesAddressRegister(MachineInstr &MI) const
unsigned getMaxAlusPerClause() const
bool PredicateInstruction(MachineInstr &MI, ArrayRef< MachineOperand > Pred) const override
bool isLegalToSplitMBBAt(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI) const override
bool canBeConsideredALU(const MachineInstr &MI) const
bool isProfitableToUnpredicate(MachineBasicBlock &TMBB, MachineBasicBlock &FMBB) const override
bool fitsConstReadLimitations(const std::vector< MachineInstr * > &) const
An instruction group can only access 2 channel pair (either [XY] or [ZW]) from KCache bank on R700+.
void addFlag(MachineInstr &MI, unsigned Operand, unsigned Flag) const
Add one of the MO_FLAG* flags to the specified Operand.
bool isVector(const MachineInstr &MI) const
Vector instructions are instructions that must fill all instruction slots within an instruction group...
unsigned removeBranch(MachineBasicBlock &MBB, int *BytesRemoved=nullptr) const override
bool mustBeLastInClause(unsigned Opcode) const
unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, MachineBasicBlock *FBB, ArrayRef< MachineOperand > Cond, const DebugLoc &DL, int *BytesAdded=nullptr) const override
int getIndirectIndexEnd(const MachineFunction &MF) const
bool isTransOnly(unsigned Opcode) const
DFAPacketizer * CreateTargetScheduleState(const TargetSubtargetInfo &) const override
bool isReductionOp(unsigned opcode) const
bool isRegisterStore(const MachineInstr &MI) const
bool isCubeOp(unsigned opcode) const
bool isLDSInstr(unsigned Opcode) const
void reserveIndirectRegisters(BitVector &Reserved, const MachineFunction &MF, const R600RegisterInfo &TRI) const
Reserve the registers that may be accessed using indirect addressing.
bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, BranchProbability Probability) const override
bool isPredicable(const MachineInstr &MI) const override
bool isPredicated(const MachineInstr &MI) const override
bool expandPostRAPseudo(MachineInstr &MI) const override
bool isLDSRetInstr(unsigned Opcode) const
int getSelIdx(unsigned Opcode, unsigned SrcIdx) const
MachineOperand & getFlagOp(MachineInstr &MI, unsigned SrcIdx=0, unsigned Flag=0) const
unsigned int getPredicationCost(const MachineInstr &) const override
MachineInstr * buildSlotOfVectorInstruction(MachineBasicBlock &MBB, MachineInstr *MI, unsigned Slot, unsigned DstReg) const
bool readsLDSSrcReg(const MachineInstr &MI) const
bool FindSwizzleForVectorSlot(const std::vector< std::vector< std::pair< int, unsigned > > > &IGSrcs, std::vector< R600InstrInfo::BankSwizzle > &SwzCandidate, const std::vector< std::pair< int, unsigned > > &TransSrcs, R600InstrInfo::BankSwizzle TransSwz) const
Enumerate all possible Swizzle sequence to find one that can meet all read port requirements.
bool fitsReadPortLimitations(const std::vector< MachineInstr * > &MIs, const DenseMap< unsigned, unsigned > &PV, std::vector< BankSwizzle > &BS, bool isLastAluTrans) const
Given the order VEC_012 < VEC_021 < VEC_120 < VEC_102 < VEC_201 < VEC_210 returns true and the first ...
bool ClobbersPredicate(MachineInstr &MI, std::vector< MachineOperand > &Pred, bool SkipDead) const override
bool isALUInstr(unsigned Opcode) const
bool isVectorOnly(unsigned Opcode) const
bool isExport(unsigned Opcode) const
int getOperandIdx(const MachineInstr &MI, unsigned Op) const
Get the index of Op in the MachineInstr.
SmallVector< std::pair< MachineOperand *, int64_t >, 3 > getSrcs(MachineInstr &MI) const
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
void setImmOperand(MachineInstr &MI, unsigned Op, int64_t Imm) const
Helper function for setting instruction flag values.
MachineInstr * buildMovInstr(MachineBasicBlock *MBB, MachineBasicBlock::iterator I, unsigned DstReg, unsigned SrcReg) const
void clearFlag(MachineInstr &MI, unsigned Operand, unsigned Flag) const
Clear the specified flag on the instruction.
bool hasVertexCache() const
bool hasCaymanISA() const
Generation getGeneration() const
Wrapper class representing virtual and physical registers.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
virtual bool isPredicable(const MachineInstr &MI) const
Return true if the specified instruction can be predicated.
unsigned getNumRegs() const
Return the number of registers in this class.
bool contains(Register Reg) const
Return true if the specified register is included in this register class.
MCRegister getRegister(unsigned i) const
Return the specified register in the class.
TargetSubtargetInfo - Generic base class for all target subtargets.
virtual const InstrItineraryData * getInstrItineraryData() const
getInstrItineraryData - Returns instruction itinerary data for the target or specific subtarget.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
bool isCompute(CallingConv::ID cc)
@ Implicit
Not emitted register (e.g. carry, or temporary result).
@ Define
Register definition.
@ Kill
The last use of a register.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
DWARFExpression::Operation Op
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
unsigned getHWRegIndex(unsigned Reg) const
unsigned getHWRegChan(unsigned reg) const
get the HW encoding for a register's channel.
static unsigned getSubRegFromChannel(unsigned Channel)
bool isPhysRegLiveAcrossClauses(Register Reg) const