77#define DEBUG_TYPE "si-fix-sgpr-copies"
80 "amdgpu-enable-merge-m0",
81 cl::desc(
"Merge and hoist M0 initializations"),
94 unsigned NumSVCopies = 0;
99 unsigned NumReadfirstlanes = 0;
101 bool NeedToBeConvertedToVALU =
false;
109 unsigned SiblingPenalty = 0;
111 V2SCopyInfo() : Copy(nullptr), ID(0){};
112 V2SCopyInfo(
unsigned Id, MachineInstr *
C,
unsigned Width)
113 : Copy(
C), NumReadfirstlanes(Width / 32), ID(
Id){};
114#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
116 dbgs() << ID <<
" : " << *Copy <<
"\n\tS:" << SChain.size()
117 <<
"\n\tSV:" << NumSVCopies <<
"\n\tSP: " << SiblingPenalty
118 <<
"\nScore: " << Score <<
"\n";
123class SIFixSGPRCopies {
124 MachineDominatorTree *MDT;
125 SmallVector<MachineInstr*, 4> SCCCopies;
126 SmallVector<MachineInstr*, 4> RegSequences;
127 SmallVector<MachineInstr*, 4> PHINodes;
128 SmallVector<MachineInstr*, 4> S2VCopies;
129 unsigned NextVGPRToSGPRCopyID = 0;
130 MapVector<unsigned, V2SCopyInfo> V2SCopies;
131 DenseMap<MachineInstr *, SetVector<unsigned>> SiblingPenalty;
132 DenseSet<MachineInstr *> PHISources;
135 MachineRegisterInfo *MRI;
136 const SIRegisterInfo *TRI;
137 const SIInstrInfo *TII;
139 SIFixSGPRCopies(MachineDominatorTree *MDT) : MDT(MDT) {}
143 unsigned getNextVGPRToSGPRCopyId() {
return ++NextVGPRToSGPRCopyID; }
144 bool needToBeConvertedToVALU(V2SCopyInfo *
I);
145 void analyzeVGPRToSGPRCopy(MachineInstr *
MI);
153 void processPHINode(MachineInstr &
MI);
158 bool tryMoveVGPRConstToSGPR(MachineOperand &MO,
Register NewDst,
159 MachineBasicBlock *BlockToInsertTo,
168 SIFixSGPRCopiesLegacy() : MachineFunctionPass(ID) {}
171 MachineDominatorTree *MDT =
172 &getAnalysis<MachineDominatorTreeWrapperPass>().getDomTree();
173 SIFixSGPRCopies Impl(MDT);
177 StringRef getPassName()
const override {
return "SI Fix SGPR copies"; }
179 void getAnalysisUsage(AnalysisUsage &AU)
const override {
187 MachineFunctionProperties getClearedProperties()
const override {
188 return MachineFunctionProperties().setNoPHIs();
200char SIFixSGPRCopiesLegacy::ID = 0;
205 return new SIFixSGPRCopiesLegacy();
208static std::pair<const TargetRegisterClass *, const TargetRegisterClass *>
212 Register DstReg = Copy.getOperand(0).getReg();
213 Register SrcReg = Copy.getOperand(1).getReg();
217 :
TRI.getPhysRegBaseClass(SrcReg);
224 :
TRI.getPhysRegBaseClass(DstReg);
226 return std::pair(SrcRC, DstRC);
232 return SrcRC != &AMDGPU::VReg_1RegClass &&
TRI.isSGPRClass(DstRC) &&
233 TRI.hasVectorRegisters(SrcRC);
239 return DstRC != &AMDGPU::VReg_1RegClass &&
TRI.isSGPRClass(SrcRC) &&
240 TRI.hasVectorRegisters(DstRC);
247 auto &Src =
MI.getOperand(1);
254 const auto *
UseMI = MO.getParent();
257 if (MO.isDef() ||
UseMI->getParent() !=
MI.getParent() ||
258 UseMI->getOpcode() <= TargetOpcode::GENERIC_OP_END)
261 unsigned OpIdx = MO.getOperandNo();
262 if (OpIdx >=
UseMI->getDesc().getNumOperands() ||
263 !
TII->isOperandLegal(*
UseMI, OpIdx, &Src))
316 if (SubReg != AMDGPU::NoSubRegister)
330 bool IsAGPR =
TRI->isAGPRClass(DstRC);
332 for (
unsigned I = 1,
N =
MI.getNumOperands();
I !=
N;
I += 2) {
334 TRI->getRegClassForOperandReg(MRI,
MI.getOperand(
I));
336 "Expected SGPR REG_SEQUENCE to only have SGPR inputs");
348 unsigned Opc = NewSrcRC == &AMDGPU::AGPR_32RegClass ?
349 AMDGPU::V_ACCVGPR_WRITE_B32_e64 : AMDGPU::COPY;
356 MI.getOperand(
I).setReg(TmpReg);
368 if (Copy->getOpcode() != AMDGPU::COPY)
371 if (!MoveImm || !MoveImm->isMoveImmediate())
375 TII->getNamedOperand(*MoveImm, AMDGPU::OpName::src0);
380 if (Copy->getOperand(1).getSubReg())
383 switch (MoveImm->getOpcode()) {
386 case AMDGPU::V_MOV_B32_e32:
387 case AMDGPU::AV_MOV_B32_IMM_PSEUDO:
388 SMovOp = AMDGPU::S_MOV_B32;
390 case AMDGPU::V_MOV_B64_e32:
391 case AMDGPU::V_MOV_B64_PSEUDO:
392 SMovOp = AMDGPU::S_MOV_B64_IMM_PSEUDO;
399template <
class UnaryPredicate>
409 while (!Worklist.
empty()) {
449 while (
I !=
MBB->end() &&
TII->isBasicBlockPrologue(*
I))
465 using InitListMap = std::map<unsigned, std::list<MachineInstr *>>;
476 for (
auto &MO :
MI.operands()) {
477 if ((MO.isReg() && ((MO.isDef() && MO.getReg() !=
Reg) || !MO.isDef())) ||
478 (!MO.isImm() && !MO.isReg()) || (MO.isImm() &&
Imm)) {
486 Inits[
Imm->getImm()].push_front(&
MI);
491 for (
auto &
Init : Inits) {
492 auto &Defs =
Init.second;
494 for (
auto I1 = Defs.begin(),
E = Defs.end(); I1 !=
E; ) {
497 for (
auto I2 = std::next(I1); I2 !=
E; ) {
506 auto interferes = [&MDT, From, To](
MachineInstr* &Clobber) ->
bool {
509 bool MayClobberFrom =
isReachable(Clobber, &*From, MBBTo, MDT);
510 bool MayClobberTo =
isReachable(Clobber, &*To, MBBTo, MDT);
511 if (!MayClobberFrom && !MayClobberTo)
513 if ((MayClobberFrom && !MayClobberTo) ||
514 (!MayClobberFrom && MayClobberTo))
520 return !((MBBFrom == MBBTo &&
528 return C.first !=
Init.first &&
534 if (!interferes(MI2, MI1)) {
544 if (!interferes(MI1, MI2)) {
562 if (!interferes(MI1,
I) && !interferes(MI2,
I)) {
566 <<
"and moving from "
583 for (
auto &
Init : Inits) {
584 auto &Defs =
Init.second;
585 auto I = Defs.begin();
586 while (
I != Defs.end()) {
587 if (MergedInstrs.
count(*
I)) {
588 (*I)->eraseFromParent();
596 for (
auto &
Init : Inits) {
597 auto &Defs =
Init.second;
598 for (
auto *
MI : Defs) {
599 auto *
MBB =
MI->getParent();
604 if (!
TII->isBasicBlockPrologue(*
B))
607 auto R = std::next(
MI->getReverseIterator());
608 const unsigned Threshold = 50;
610 for (
unsigned I = 0; R !=
B &&
I < Threshold; ++R, ++
I)
611 if (R->readsRegister(
Reg,
TRI) || R->definesRegister(
Reg,
TRI) ||
612 TII->isSchedulingBoundary(*R,
MBB, *
MBB->getParent()))
634 TRI =
ST.getRegisterInfo();
635 TII =
ST.getInstrInfo();
638 SmallVector<MachineInstr *, 8> Relegalize;
640 for (MachineBasicBlock &
MBB : MF) {
643 MachineInstr &
MI = *
I;
645 switch (
MI.getOpcode()) {
649 if (
TII->isWMMA(
MI) &&
670 if (lowerSpecialCase(
MI,
I))
673 analyzeVGPRToSGPRCopy(&
MI);
678 case AMDGPU::STRICT_WQM:
679 case AMDGPU::SOFT_WQM:
680 case AMDGPU::STRICT_WWM:
681 case AMDGPU::INSERT_SUBREG:
683 case AMDGPU::REG_SEQUENCE: {
684 if (
TRI->isSGPRClass(
TII->getOpRegClass(
MI, 0))) {
685 for (MachineOperand &MO :
MI.operands()) {
686 if (!MO.isReg() || !MO.getReg().isVirtual())
689 if (SrcRC == &AMDGPU::VReg_1RegClass)
692 if (
TRI->hasVectorRegisters(SrcRC)) {
694 TRI->getEquivalentSGPRClass(SrcRC);
695 Register NewDst = MRI->createVirtualRegister(DestRC);
696 MachineBasicBlock *BlockToInsertCopy =
697 MI.isPHI() ?
MI.getOperand(MO.getOperandNo() + 1).getMBB()
703 if (!tryMoveVGPRConstToSGPR(MO, NewDst, BlockToInsertCopy,
704 PointToInsertCopy,
DL)) {
705 MachineInstr *NewCopy =
706 BuildMI(*BlockToInsertCopy, PointToInsertCopy,
DL,
707 TII->get(AMDGPU::COPY), NewDst)
710 analyzeVGPRToSGPRCopy(NewCopy);
711 PHISources.
insert(NewCopy);
719 else if (
MI.isRegSequence())
724 case AMDGPU::V_WRITELANE_B32: {
727 if (
ST.getConstantBusLimit(
MI.getOpcode()) != 1)
737 AMDGPU::getNamedOperandIdx(
MI.getOpcode(), AMDGPU::OpName::src0);
739 AMDGPU::getNamedOperandIdx(
MI.getOpcode(), AMDGPU::OpName::src1);
740 MachineOperand &Src0 =
MI.getOperand(Src0Idx);
741 MachineOperand &Src1 =
MI.getOperand(Src1Idx);
745 Src0.
getReg() != AMDGPU::M0) &&
747 Src1.
getReg() != AMDGPU::M0)) {
754 for (MachineOperand *MO : {&Src0, &Src1}) {
755 if (MO->getReg().isVirtual()) {
756 MachineInstr *
DefMI = MRI->getVRegDef(MO->getReg());
760 MO->getReg() ==
Def.getReg() &&
761 MO->getSubReg() ==
Def.getSubReg()) {
763 if (Copied.
isImm() &&
764 TII->isInlineConstant(APInt(64, Copied.
getImm(),
true))) {
765 MO->ChangeToImmediate(Copied.
getImm());
778 TII->get(AMDGPU::COPY), AMDGPU::M0)
789 lowerVGPR2SGPRCopies(MF);
792 for (
auto *
MI : S2VCopies) {
801 for (
auto *
MI : RegSequences) {
803 if (
MI->isRegSequence())
806 for (
auto *
MI : PHINodes) {
809 while (!Relegalize.
empty())
812 if (MF.getTarget().getOptLevel() > CodeGenOptLevel::None &&
EnableM0Merge)
815 SiblingPenalty.clear();
818 RegSequences.clear();
826void SIFixSGPRCopies::processPHINode(MachineInstr &
MI) {
827 bool AllAGPRUses =
true;
828 SetVector<const MachineInstr *> worklist;
829 SmallPtrSet<const MachineInstr *, 4> Visited;
830 SetVector<MachineInstr *> PHIOperands;
834 bool HasUses =
false;
835 while (!worklist.
empty()) {
838 for (
const auto &Use : MRI->use_operands(
Reg)) {
840 const MachineInstr *
UseMI =
Use.getParent();
843 TRI->isAGPR(*MRI,
Use.getReg());
855 if (HasUses && AllAGPRUses && !
TRI->isAGPRClass(RC0)) {
857 MRI->setRegClass(PHIRes,
TRI->getEquivalentAGPRClass(RC0));
858 for (
unsigned I = 1,
N =
MI.getNumOperands();
I !=
N;
I += 2) {
859 MachineInstr *
DefMI = MRI->getVRegDef(
MI.getOperand(
I).getReg());
865 if (
TRI->hasVectorRegisters(MRI->getRegClass(PHIRes)) ||
866 RC0 == &AMDGPU::VReg_1RegClass) {
868 TII->legalizeOperands(
MI, MDT);
872 while (!PHIOperands.
empty()) {
877bool SIFixSGPRCopies::tryMoveVGPRConstToSGPR(
878 MachineOperand &MaybeVGPRConstMO,
Register DstReg,
879 MachineBasicBlock *BlockToInsertTo,
882 MachineInstr *
DefMI = MRI->getVRegDef(MaybeVGPRConstMO.
getReg());
886 MachineOperand *SrcConst =
TII->getNamedOperand(*
DefMI, AMDGPU::OpName::src0);
887 if (SrcConst->
isReg())
891 MRI->getRegClass(MaybeVGPRConstMO.
getReg());
892 unsigned MoveSize =
TRI->getRegSizeInBits(*SrcRC);
894 MoveSize == 64 ? AMDGPU::S_MOV_B64_IMM_PSEUDO : AMDGPU::S_MOV_B32;
895 BuildMI(*BlockToInsertTo, PointToInsertTo,
DL,
TII->get(MoveOp), DstReg)
897 if (MRI->hasOneUse(MaybeVGPRConstMO.
getReg()))
899 MaybeVGPRConstMO.
setReg(DstReg);
903bool SIFixSGPRCopies::lowerSpecialCase(MachineInstr &
MI,
913 if (DstReg == AMDGPU::M0 &&
TRI->hasVectorRegisters(SrcRC)) {
915 MRI->createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
917 const MCInstrDesc &ReadFirstLaneDesc =
918 TII->get(AMDGPU::V_READFIRSTLANE_B32);
919 BuildMI(*
MI.getParent(),
MI,
MI.getDebugLoc(), ReadFirstLaneDesc, TmpReg)
920 .
add(
MI.getOperand(1));
922 unsigned SubReg =
MI.getOperand(1).getSubReg();
923 MI.getOperand(1).setReg(TmpReg);
924 MI.getOperand(1).setSubReg(AMDGPU::NoSubRegister);
928 SubReg == AMDGPU::NoSubRegister
930 :
TRI->getMatchingSuperRegClass(SrcRC, OpRC, SubReg);
932 if (!MRI->constrainRegClass(SrcReg, ConstrainRC))
937 if (tryMoveVGPRConstToSGPR(
MI.getOperand(1), DstReg,
MI.getParent(),
MI,
939 I =
MI.eraseFromParent();
947 SIInstrWorklist worklist;
949 TII->moveToVALU(worklist, MDT);
958 MI.getOperand(1).ChangeToImmediate(
Imm);
959 MI.addImplicitDefUseOperands(*
MI.getMF());
960 MI.setDesc(
TII->get(SMovOp));
966void SIFixSGPRCopies::analyzeVGPRToSGPRCopy(MachineInstr*
MI) {
972 V2SCopyInfo
Info(getNextVGPRToSGPRCopyId(),
MI,
973 TRI->getRegSizeInBits(*DstRC));
974 SmallVector<MachineInstr *, 8> AnalysisWorklist;
977 DenseSet<MachineInstr *> Visited;
979 while (!AnalysisWorklist.
empty()) {
983 if (!Visited.
insert(Inst).second)
1003 SiblingPenalty[Inst].insert(
Info.ID);
1005 SmallVector<MachineInstr *, 4>
Users;
1011 !
I->findRegisterDefOperand(AMDGPU::SCC,
nullptr)) {
1012 if (
I->readsRegister(AMDGPU::SCC,
nullptr))
1018 !
TII->isVALU(*Inst,
true)) {
1019 for (
auto &U : MRI->use_instructions(
Reg))
1020 Users.push_back(&U);
1023 for (
auto *U :
Users) {
1024 if (
TII->isSALU(*U))
1025 Info.SChain.insert(U);
1029 V2SCopies[
Info.ID] = std::move(Info);
1034bool SIFixSGPRCopies::needToBeConvertedToVALU(V2SCopyInfo *Info) {
1035 if (
Info->SChain.empty()) {
1040 Info->SChain, [&](MachineInstr *
A, MachineInstr *
B) ->
bool {
1041 return SiblingPenalty[A].size() < SiblingPenalty[B].size();
1043 Info->Siblings.remove_if([&](
unsigned ID) {
return ID ==
Info->ID; });
1049 SmallSet<std::pair<Register, unsigned>, 4> SrcRegs;
1050 for (
auto J :
Info->Siblings) {
1051 auto *InfoIt = V2SCopies.find(J);
1052 if (InfoIt != V2SCopies.end()) {
1053 MachineInstr *SiblingCopy = InfoIt->second.Copy;
1062 Info->SiblingPenalty = SrcRegs.
size();
1065 Info->NumSVCopies +
Info->SiblingPenalty +
Info->NumReadfirstlanes;
1066 unsigned Profit =
Info->SChain.size();
1067 Info->Score = Penalty > Profit ? 0 : Profit - Penalty;
1068 Info->NeedToBeConvertedToVALU =
Info->Score < 3;
1069 return Info->NeedToBeConvertedToVALU;
1074 SmallVector<unsigned, 8> LoweringWorklist;
1075 for (
auto &
C : V2SCopies) {
1076 if (needToBeConvertedToVALU(&
C.second))
1084 while (!LoweringWorklist.
empty()) {
1086 auto *CurInfoIt = V2SCopies.find(CurID);
1087 if (CurInfoIt != V2SCopies.end() && !CurInfoIt->second.Erased) {
1088 V2SCopyInfo &
C = CurInfoIt->second;
1090 for (
auto S :
C.Siblings) {
1091 auto *SibInfoIt = V2SCopies.find(S);
1092 if (SibInfoIt != V2SCopies.end() && !SibInfoIt->second.Erased) {
1093 V2SCopyInfo &
SI = SibInfoIt->second;
1095 if (!
SI.NeedToBeConvertedToVALU) {
1096 SI.SChain.set_subtract(
C.SChain);
1097 if (needToBeConvertedToVALU(&SI))
1100 SI.Siblings.remove_if([&](
unsigned ID) {
return ID ==
C.ID; });
1104 <<
" is being turned to VALU\n");
1109 V2SCopies.remove_if([](
const auto &
P) {
return P.second.Erased; });
1115 for (
auto C : V2SCopies) {
1116 MachineInstr *
MI =
C.second.Copy;
1121 <<
" is being turned to v_readfirstlane_b32"
1122 <<
" Score: " <<
C.second.Score <<
"\n");
1123 Register DstReg =
MI->getOperand(0).getReg();
1124 MRI->constrainRegClass(DstReg, &AMDGPU::SReg_32_XM0RegClass);
1126 Register SrcReg =
MI->getOperand(1).getReg();
1127 unsigned SubReg =
MI->getOperand(1).getSubReg();
1129 TRI->getRegClassForOperandReg(*MRI,
MI->getOperand(1));
1130 size_t SrcSize =
TRI->getRegSizeInBits(*SrcRC);
1131 if (SrcSize == 16) {
1133 "We do not expect to see 16-bit copies from VGPR to SGPR unless "
1134 "we have 16-bit VGPRs");
1135 assert(MRI->getRegClass(DstReg) == &AMDGPU::SReg_32RegClass ||
1136 MRI->getRegClass(DstReg) == &AMDGPU::SReg_32_XM0RegClass);
1138 MRI->setRegClass(DstReg, &AMDGPU::SReg_32_XM0RegClass);
1139 Register VReg32 = MRI->createVirtualRegister(&AMDGPU::VGPR_32RegClass);
1141 Register Undef = MRI->createVirtualRegister(&AMDGPU::VGPR_16RegClass);
1144 .
addReg(SrcReg, {}, SubReg)
1145 .addImm(AMDGPU::lo16)
1150 }
else if (SrcSize == 32) {
1151 const MCInstrDesc &ReadFirstLaneDesc =
1152 TII->get(AMDGPU::V_READFIRSTLANE_B32);
1155 .
addReg(SrcReg, {}, SubReg);
1158 SubReg == AMDGPU::NoSubRegister
1160 :
TRI->getMatchingSuperRegClass(MRI->getRegClass(SrcReg), OpRC,
1163 if (!MRI->constrainRegClass(SrcReg, ConstrainRC))
1167 TII->get(AMDGPU::REG_SEQUENCE), DstReg);
1168 int N =
TRI->getRegSizeInBits(*SrcRC) / 32;
1169 for (
int i = 0; i <
N; i++) {
1171 Result, *MRI,
MI->getOperand(1), SrcRC,
1172 TRI->getSubRegFromChannel(i), &AMDGPU::VGPR_32RegClass);
1174 MRI->createVirtualRegister(&AMDGPU::SReg_32_XM0RegClass);
1176 TII->get(AMDGPU::V_READFIRSTLANE_B32), PartialDst)
1178 Result.addReg(PartialDst).addImm(
TRI->getSubRegFromChannel(i));
1181 MI->eraseFromParent();
1186 const AMDGPU::LaneMaskConstants &LMC =
1188 for (MachineBasicBlock &
MBB : MF) {
1191 MachineInstr &
MI = *
I;
1197 if (SrcReg == AMDGPU::SCC) {
1199 MRI->createVirtualRegister(
TRI->getWaveMaskRegClass());
1204 I =
BuildMI(*
MI.getParent(), std::next(
I),
I->getDebugLoc(),
1205 TII->get(AMDGPU::COPY), DstReg)
1207 MI.eraseFromParent();
1210 if (DstReg == AMDGPU::SCC) {
1211 Register Tmp = MRI->createVirtualRegister(
TRI->getBoolRC());
1217 MI.eraseFromParent();
1227 SIFixSGPRCopies Impl(&MDT);
MachineInstrBuilder & UseMI
MachineInstrBuilder MachineInstrBuilder & DefMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
AMD GCN specific subclass of TargetSubtarget.
const HexagonInstrInfo * TII
iv Induction Variable Users
Register const TargetRegisterInfo * TRI
Promote Memory to Register
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
static std::pair< const TargetRegisterClass *, const TargetRegisterClass * > getCopyRegClasses(const MachineInstr &Copy, const SIRegisterInfo &TRI, const MachineRegisterInfo &MRI)
static cl::opt< bool > EnableM0Merge("amdgpu-enable-merge-m0", cl::desc("Merge and hoist M0 initializations"), cl::init(true))
static bool hoistAndMergeSGPRInits(unsigned Reg, const MachineRegisterInfo &MRI, const TargetRegisterInfo *TRI, MachineDominatorTree &MDT, const TargetInstrInfo *TII)
static bool foldVGPRCopyIntoRegSequence(MachineInstr &MI, const SIRegisterInfo *TRI, const SIInstrInfo *TII, MachineRegisterInfo &MRI)
bool searchPredecessors(const MachineBasicBlock *MBB, const MachineBasicBlock *CutOff, UnaryPredicate Predicate)
static bool isReachable(const MachineInstr *From, const MachineInstr *To, const MachineBasicBlock *CutOff, MachineDominatorTree &MDT)
static bool isVGPRToSGPRCopy(const TargetRegisterClass *SrcRC, const TargetRegisterClass *DstRC, const SIRegisterInfo &TRI)
static bool tryChangeVGPRtoSGPRinCopy(MachineInstr &MI, const SIRegisterInfo *TRI, const SIInstrInfo *TII)
static bool isSGPRToVGPRCopy(const TargetRegisterClass *SrcRC, const TargetRegisterClass *DstRC, const SIRegisterInfo &TRI)
static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy, const MachineInstr *MoveImm, const SIInstrInfo *TII, unsigned &SMovOp, int64_t &Imm)
static MachineBasicBlock::iterator getFirstNonPrologue(MachineBasicBlock *MBB, const TargetInstrInfo *TII)
const unsigned CSelectOpc
static const LaneMaskConstants & get(const GCNSubtarget &ST)
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Implements a dense probed hash-table based set.
NodeT * findNearestCommonDominator(NodeT *A, NodeT *B) const
Find nearest common dominator basic block for basic block A and B.
bool properlyDominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
properlyDominates - Returns true iff A dominates B and A != B.
FunctionPass class - This class is used to implement most global optimizations.
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
LLVM_ABI instr_iterator getFirstInstrTerminator()
Same getFirstTerminator but it ignores bundles and return an instr_iterator instead.
MachineInstrBundleIterator< MachineInstr > iterator
Analysis pass which computes a MachineDominatorTree.
Analysis pass which computes a MachineDominatorTree.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
bool dominates(const MachineInstr *A, const MachineInstr *B) const
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
Representation of each machine instruction.
bool isImplicitDef() const
const MachineBasicBlock * getParent() const
bool isCompare(QueryType Type=IgnoreBundle) const
Return true if this instruction is a comparison.
bool isRegSequence() const
LLVM_ABI unsigned getNumExplicitDefs() const
Returns the number of non-implicit definitions.
bool isMoveImmediate(QueryType Type=IgnoreBundle) const
Return true if this instruction is a move immediate (including conditional moves) instruction.
const MachineOperand & getOperand(unsigned i) const
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
LLVM_ABI void ChangeToRegister(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isDebug=false)
ChangeToRegister - Replace this operand with a new register operand of the specified value.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
LLVM_ABI void clearKillFlags(Register Reg) const
clearKillFlags - Iterate over all the uses of the given register and clear the kill flag from the Mac...
iterator_range< def_instr_iterator > def_instructions(Register Reg) const
use_instr_iterator use_instr_begin(Register RegNo) const
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
bool hasOneUse(Register RegNo) const
hasOneUse - Return true if there is exactly one instruction using the specified register.
LLVM_ABI void setRegClass(Register Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
iterator_range< reg_nodbg_iterator > reg_nodbg_operands(Register Reg) const
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Wrapper class representing virtual and physical registers.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
A vector that has set insertion semantics.
bool empty() const
Determine if the SetVector is empty or not.
bool insert(const value_type &X)
Insert a new element into the SetVector.
value_type pop_back_val()
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
std::pair< iterator, bool > insert(const ValueT &V)
bool contains(const_arg_type_t< ValueT > V) const
Check if the set contains the given element.
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_READONLY bool hasNamedOperand(uint64_t Opcode, OpName NamedIdx)
initializer< Ty > init(const Ty &Val)
PointerTypeMap run(const Module &M)
Compute the PointerTypeMap for the module M.
@ Resolved
Queried, materialization begun.
NodeAddr< DefNode * > Def
NodeAddr< InstrNode * > Instr
NodeAddr< UseNode * > Use
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
@ Kill
The last use of a register.
@ Undef
Value of the register doesn't matter.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
constexpr RegState getDefRegState(bool B)
auto max_element(R &&Range)
Provide wrappers to std::max_element which take ranges instead of having to pass begin/end explicitly...
char & SIFixSGPRCopiesLegacyID
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
FunctionPass * createSIFixSGPRCopiesLegacyPass()
MCRegisterClass TargetRegisterClass
void insert(MachineInstr *MI)