25#define DEBUG_TYPE "machine-scheduler"
29 if (
S1.size() != S2.
size())
32 for (
const auto &
P :
S1) {
34 if (
I == S2.
end() ||
I->second !=
P.second)
58 if (NewNumCoveredRegs == PrevNumCoveredRegs)
62 if (NewMask < PrevMask) {
64 std::swap(NewNumCoveredRegs, PrevNumCoveredRegs);
67 assert(PrevMask < NewMask && PrevNumCoveredRegs < NewNumCoveredRegs &&
68 "prev mask should always be lesser than new");
74 if (
TRI->getRegSizeInBits(*RC) != 32) {
76 if (PrevMask.
none()) {
78 Value[TupleIdx] += Sign *
TRI->getRegClassWeight(RC).RegWeight;
98 Sign *= NewNumCoveredRegs - PrevNumCoveredRegs;
107 unsigned ArchVGPR = 0;
110 bool anyExcess()
const {
return SGPR || VGPR || ArchVGPR || AGPR; }
111 bool hasVectorRegisterExcess()
const {
return VGPR || ArchVGPR || AGPR; }
114 : RegExcess(MF,
RP, GCNRPTarget(MF,
RP)) {}
116 const GCNRPTarget &Target) {
117 unsigned MaxSGPRs =
Target.getMaxSGPRs();
118 unsigned MaxVGPRs =
Target.getMaxVGPRs();
121 SGPR = std::max(
static_cast<int>(
RP.getSGPRNum() - MaxSGPRs), 0);
124 unsigned WaveSize =
ST.getWavefrontSize();
125 unsigned VGPRForSGPRSpills =
divideCeil(SGPR, WaveSize);
127 unsigned MaxArchVGPRs =
ST.getAddressableNumArchVGPRs();
131 VGPR = std::max(
static_cast<int>(
RP.getVGPRNum(
ST.hasGFX90AInsts()) +
132 VGPRForSGPRSpills - MaxVGPRs),
135 unsigned ArchVGPRLimit =
ST.hasGFX90AInsts() ? MaxArchVGPRs : MaxVGPRs;
138 ArchVGPR = std::max(
static_cast<int>(
RP.getArchVGPRNum() +
139 VGPRForSGPRSpills - ArchVGPRLimit),
143 AGPR = std::max(
static_cast<int>(
RP.getAGPRNum() - ArchVGPRLimit), 0);
149 unsigned MaxOccupancy)
const {
151 unsigned DynamicVGPRBlockSize =
154 const auto SGPROcc = std::min(MaxOccupancy,
156 const auto VGPROcc = std::min(
157 MaxOccupancy, ST.getOccupancyWithNumVGPRs(
getVGPRNum(ST.hasGFX90AInsts()),
158 DynamicVGPRBlockSize));
159 const auto OtherSGPROcc = std::min(MaxOccupancy,
160 ST.getOccupancyWithNumSGPRs(O.getSGPRNum()));
161 const auto OtherVGPROcc =
162 std::min(MaxOccupancy,
163 ST.getOccupancyWithNumVGPRs(O.getVGPRNum(ST.hasGFX90AInsts()),
164 DynamicVGPRBlockSize));
166 const auto Occ = std::min(SGPROcc, VGPROcc);
167 const auto OtherOcc = std::min(OtherSGPROcc, OtherVGPROcc);
171 return Occ > OtherOcc;
173 unsigned MaxVGPRs = ST.getMaxNumVGPRs(MF);
175 RegExcess Excess(MF, *
this);
176 RegExcess OtherExcess(MF, O);
178 unsigned MaxArchVGPRs = ST.getAddressableNumArchVGPRs();
180 bool ExcessRP = Excess.anyExcess();
181 bool OtherExcessRP = OtherExcess.anyExcess();
185 if (ExcessRP || OtherExcessRP) {
189 ((OtherExcess.VGPR + OtherExcess.ArchVGPR + OtherExcess.AGPR) -
190 (Excess.VGPR + Excess.ArchVGPR + Excess.AGPR));
192 int SGPRDiff = OtherExcess.SGPR - Excess.SGPR;
197 unsigned PureExcessVGPR =
198 std::max(
static_cast<int>(
getVGPRNum(ST.hasGFX90AInsts()) - MaxVGPRs),
200 std::max(
static_cast<int>(
getVGPRNum(
false) - MaxArchVGPRs), 0);
201 unsigned OtherPureExcessVGPR =
203 static_cast<int>(O.getVGPRNum(ST.hasGFX90AInsts()) - MaxVGPRs),
205 std::max(
static_cast<int>(O.getVGPRNum(
false) - MaxArchVGPRs), 0);
210 if (PureExcessVGPR != OtherPureExcessVGPR)
218 bool SGPRImportant = SGPROcc < VGPROcc;
219 const bool OtherSGPRImportant = OtherSGPROcc < OtherVGPROcc;
222 if (SGPRImportant != OtherSGPRImportant) {
223 SGPRImportant =
false;
227 bool SGPRFirst = SGPRImportant;
228 for (
int I = 2;
I > 0; --
I, SGPRFirst = !SGPRFirst) {
231 auto OtherSW = O.getSGPRTuplesWeight();
236 auto OtherVW = O.getVGPRTuplesWeight();
243 return SGPRImportant ? (
getSGPRNum() < O.getSGPRNum()):
245 O.getVGPRNum(ST.hasGFX90AInsts()));
249 unsigned DynamicVGPRBlockSize) {
251 OS <<
"VGPRs: " << RP.getArchVGPRNum() <<
' '
252 <<
"AGPRs: " << RP.getAGPRNum();
255 << ST->getOccupancyWithNumVGPRs(RP.getVGPRNum(ST->hasGFX90AInsts()),
256 DynamicVGPRBlockSize)
258 OS <<
", SGPRs: " << RP.getSGPRNum();
260 OS <<
"(O" << ST->getOccupancyWithNumSGPRs(RP.getSGPRNum()) <<
')';
261 OS <<
", LVGPR WT: " << RP.getVGPRTuplesWeight()
262 <<
", LSGPR WT: " << RP.getSGPRTuplesWeight();
264 OS <<
" -> Occ: " << RP.getOccupancy(*ST, DynamicVGPRBlockSize);
287 for (
const auto &MO :
MI.operands()) {
288 if (!MO.isReg() || !MO.getReg().isVirtual())
290 if (!MO.isUse() || !MO.readsReg())
295 return RM.VRegOrUnit.asVirtualReg() ==
Reg;
298 auto &
P =
I == VRegMaskOrUnits.
end()
303 P.LaneMask |= MO.getSubReg() ?
TRI.getSubRegIndexLaneMask(MO.getSubReg())
308 for (
auto &
P : VRegMaskOrUnits) {
309 auto &LI = LIS.
getInterval(
P.VRegOrUnit.asVirtualReg());
310 if (!LI.hasSubRanges())
333 if (Property(SR, Pos))
334 Result |= SR.LaneMask;
336 }
else if (Property(LI, Pos)) {
353 bool Upward =
false) {
358 SlotIndex InstSlot =
LIS->getInstructionIndex(*MI).getRegSlot();
359 bool InRange = Upward ? (InstSlot > PriorUseIdx && InstSlot <= NextUseIdx)
360 : (InstSlot >= PriorUseIdx && InstSlot < NextUseIdx);
364 unsigned SubRegIdx = MO.getSubReg();
366 LastUseMask &= ~UseMask;
367 if (LastUseMask.
none())
380 setTarget(ST.getMaxNumSGPRs(
F), ST.getMaxNumVGPRs(
F));
393 unsigned DynamicVGPRBlockSize =
395 setTarget(ST.getMaxNumSGPRs(Occupancy,
false),
396 ST.getMaxNumVGPRs(Occupancy, DynamicVGPRBlockSize));
401 MaxSGPRs = std::min(ST.getAddressableNumSGPRs(), NumSGPRs);
402 MaxVGPRs = std::min(ST.getAddressableNumArchVGPRs(), NumVGPRs);
404 unsigned DynamicVGPRBlockSize =
407 std::min(ST.getAddressableNumVGPRs(DynamicVGPRBlockSize), NumVGPRs);
419 RegExcess Excess(MF, RP, *
this);
425 return (UnifiedRF && Excess.VGPR) || Excess.AGPR;
427 return (UnifiedRF && Excess.VGPR) || Excess.ArchVGPR;
431 RegExcess Excess(MF, RP, *
this);
432 if (SaveRP.
getSGPRNum() != 0 && Excess.SGPR != 0)
436 if (SaveRP.
getAGPRNum() != 0 && Excess.AGPR != 0)
438 if (UnifiedRF && Excess.VGPR != 0)
444 RegExcess Excess(MF, RP, *
this);
445 const unsigned NumVGPRAboveAddrLimit =
448 unsigned NumRegsSaved =
449 std::min(Excess.SGPR, SaveRP.
getSGPRNum()) + NumVGPRAboveAddrLimit;
451 if (UnifiedRF && Excess.VGPR) {
460 if (NumVGPRAboveAddrLimit < VGPRSave)
461 NumRegsSaved += std::min(Excess.VGPR, VGPRSave - NumVGPRAboveAddrLimit);
470 if (UnifiedRF && TestRP.
getVGPRNum(
true) > MaxUnifiedVGPRs)
476 RegExcess Excess(MF, RP, *
this);
477 return Excess.hasVectorRegisterExcess();
496 if ((S.LaneMask & LaneMaskFilter).any() && S.liveAt(
SI)) {
497 LiveMask |= S.LaneMask;
503 LiveMask &= LaneMaskFilter;
528 if (!
MI.isDebugInstr()) {
531 SI =
SI.getDeadSlot();
538 MBBEnd =
MI.getParent()->end();
541 if (NonDbgMI == MBBEnd) {
556 :
LIS.getMBBStartIdx(&
MBB);
581 const LiveRange::Segment *S = LR.getSegmentContaining(Pos);
582 return S != nullptr && S->end == Pos.getRegSlot();
594 if (
MI.isDebugInstr())
599 bool HasECDefs =
false;
601 if (!MO.getReg().isVirtual())
608 if (MO.isEarlyClobber()) {
620 LiveMask &= ~DefMask;
629 DefPressure += ECDefPressure;
638 LiveMask |= U.LaneMask;
639 CurPressure.inc(U.VRegOrUnit.asVirtualReg(), PrevMask, LiveMask, *
MRI);
655 MBBEnd =
MI.getParent()->end();
656 assert((End == MBBEnd || End->getParent()->end() == MBBEnd) &&
657 "end unrelated to MI block");
667 else if (NextMI != MBBEnd)
671 return NextMI != End;
675 bool UseInternalIterator) {
679 if (UseInternalIterator) {
681 return NextMI == MBBEnd;
683 assert(NextMI == MBBEnd || !NextMI->isDebugInstr());
686 SI = NextMI == MBBEnd
687 ?
LIS.getInstructionIndex(*LastTrackedMI).getDeadSlot()
688 :
LIS.getInstructionIndex(*NextMI).getBaseIndex();
690 SI =
LIS.getInstructionIndex(*MI).getBaseIndex();
698 for (
auto &MO : CurrMI->
operands()) {
699 if (!MO.isReg() || !MO.getReg().isVirtual())
701 if (MO.isUse() && !MO.readsReg())
703 if (!UseInternalIterator && MO.isDef())
705 if (!SeenRegs.
insert(MO.getReg()).second)
717 auto PrevMask = It->second;
718 It->second &= ~S.LaneMask;
722 if (It !=
LiveRegs.end() && It->second.none())
725 auto It =
LiveRegs.find(MO.getReg());
737 return UseInternalIterator && (NextMI == MBBEnd);
741 bool UseInternalIterator) {
742 if (UseInternalIterator) {
752 for (
const auto &MO : CurrMI->
all_defs()) {
754 if (!Reg.isVirtual())
757 auto PrevMask = LiveMask;
766 if (UseInternalIterator && NextMI == MBBEnd)
771 if (!UseInternalIterator) {
785 bool AnyAdvance =
false;
786 while (NextMI != End &&
advance())
794 if (!
reset(*Begin, End, LiveRegsCopy))
803 for (
auto const &
P : TrackedLR) {
804 auto I = LISLR.
find(
P.first);
805 if (
I == LISLR.
end()) {
807 <<
" isn't found in LIS reported set\n";
808 }
else if (
I->second !=
P.second) {
810 <<
" masks doesn't match: LIS reported " <<
PrintLaneMask(
I->second)
814 for (
auto const &
P : LISLR) {
815 auto I = TrackedLR.find(
P.first);
816 if (
I == TrackedLR.end()) {
818 <<
" isn't found in tracked set\n";
827 assert(!
MI->isDebugOrPseudoInstr() &&
"Expect a nondebug instruction.");
830 SlotIdx =
LIS.getInstructionIndex(*MI).getRegSlot();
838 if (IdxPos ==
MBB->end()) {
839 CurrIdx =
LIS.getMBBEndIdx(
MBB);
841 CurrIdx =
LIS.getInstructionIndex(*IdxPos).getRegSlot();
853 if (!
Use.VRegOrUnit.isVirtualReg())
857 if (LastUseMask.
none())
866 if (LastUseMask.
none())
872 PostUseMask[Reg] = NewMask;
873 TempPressure.
inc(Reg, LiveMask, NewMask, *
MRI);
878 if (!Def.VRegOrUnit.isVirtualReg())
880 Register Reg = Def.VRegOrUnit.asVirtualReg();
881 auto PostIt = PostUseMask.
find(Reg);
883 if (PostIt != PostUseMask.
end()) {
884 LiveMask = PostIt->second;
891 TempPressure.
inc(Reg, LiveMask, NewMask, *
MRI);
898 const auto &
SI =
LIS.getInstructionIndex(*LastTrackedMI).getBaseIndex();
902 if (!
isEqual(LISLR, TrackedLR)) {
903 dbgs() <<
"\nGCNUpwardRPTracker error: Tracked and"
904 " LIS reported livesets mismatch:\n"
912 dbgs() <<
"GCNUpwardRPTracker error: Pressure sets different\nTracked: "
926 if (It !=
LiveRegs.end() && It->second.any())
936 "amdgpu-print-rp-downward",
937 cl::desc(
"Use GCNDownwardRPTracker for GCNRegPressurePrinter pass"),
952 auto IsInOneSegment = [Begin, End](
const LiveRange &LR) ->
bool {
954 return Segment && Segment->
contains(End);
960 for (auto &SR : LI.subranges()) {
961 if ((SR.LaneMask & Mask) == SR.LaneMask && IsInOneSegment(SR))
962 LiveThroughMask |= SR.LaneMask;
966 if ((RegMask & Mask) == RegMask && IsInOneSegment(LI))
967 LiveThroughMask = RegMask;
970 return LiveThroughMask;
983 OS <<
"---\nname: " << MF.
getName() <<
"\nbody: |\n";
987 OS <<
format(
PFX " %-5d", RP.getSGPRNum())
988 <<
format(
" %-5d", RP.getVGPRNum(
false));
994 if (LISLR != TrackedLR) {
1003 for (
auto &
MBB : MF) {
1005 RP.reserve(
MBB.size());
1019 LiveIn = LiveOut =
getLiveRegs(MBBStartSlot, LIS, MRI);
1038 RPT.
reset(MRI, MBBLastSlot);
1046 if (!
MI.isDebugInstr())
1055 ReportLISMismatchIfAny(LiveIn,
getLiveRegs(MBBStartSlot, LIS, MRI));
1057 OS <<
PFX " SGPR VGPR\n";
1059 for (
auto &
MI :
MBB) {
1060 if (!
MI.isDebugInstr()) {
1061 auto &[RPBeforeInstr, RPAtInstr] =
1064 OS << printRP(RPBeforeInstr) <<
'\n' << printRP(RPAtInstr) <<
" ";
1069 OS << printRP(RPAtMBBEnd) <<
'\n';
1073 ReportLISMismatchIfAny(LiveOut,
getLiveRegs(MBBLastSlot, LIS, MRI));
1076 for (
auto [Reg, Mask] : LiveIn) {
1078 if (MaskIntersection.
any()) {
1080 MRI, LIS, Reg, MBBStartSlot, MBBLastSlot, MaskIntersection);
1082 LiveThrough[Reg] = LTMask;
1094#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1105 unsigned MaxNumRegs = 0;
1113 if (NumRegs > MaxNumRegs) {
1114 MaxNumRegs = NumRegs;
1115 MaxPressureMI = &
MI;
1132 ECNumRegs > RNumRegs ? &ECLiveSet : &RLiveSet;
1133 SlotIndex MaxPressureSlot = ECNumRegs > RNumRegs ? ECSlot : RSlot;
1139 for (
auto [Reg, LaneMask] : *LiveSet) {
1145 return SR.getNumValNums() == 1;
1154 unsigned SDefNumRegs = SDefPressure.
getNumRegs(Kind);
1155 unsigned MDefNumRegs = MDefPressure.
getNumRegs(Kind);
1156 assert(SDefNumRegs + MDefNumRegs == MaxNumRegs);
1164 <<
", Depth " <<
ML->getLoopDepth() <<
")";
1173 <<
PrintLaneMask(LiveMask) <<
" (" << RegPressure.getNumRegs(Kind) <<
' '
1177 std::map<SlotIndex, const MachineInstr *> Instrs;
1182 for (
const auto &[
SI,
MI] : Instrs) {
1184 if (
MI->definesRegister(Reg,
TRI))
1186 if (
MI->readsRegister(Reg,
TRI))
1188 OS << printLoc(
MI->getParent(),
SI) <<
": " << *
MI;
1192 OS <<
"\n*** Register pressure info (" <<
RegName <<
"s) for " << MF.
getName()
1194 OS <<
"Max pressure is " << MaxNumRegs <<
' ' <<
RegName <<
"s at "
1195 << printLoc(MaxPressureMI->
getParent(), MaxPressureSlot) <<
": "
1198 OS <<
"\nLive registers with single definition (" << SDefNumRegs <<
' '
1207 for (
const Register Reg : SDefRegs) {
1208 PrintRegInfo(Reg, LiveSet->
lookup(Reg));
1211 OS <<
"\nLive registers with multiple definitions (" << MDefNumRegs <<
' '
1213 for (
const Register Reg : MDefRegs) {
1214 PrintRegInfo(Reg, LiveSet->
lookup(Reg));
1228 auto checkAndCollect = [&](
Register VReg) {
1233 if (!
TRI.hasVGPRs(RC))
1241 for (
const auto &[RegNum, LaneMask] : LiveIns) {
1248 if (!MO.isReg() || !MO.isDef())
1250 checkAndCollect(MO.getReg());
1256 return LHS->beginIndex() < RHS->beginIndex();
1260 std::vector<LiveIntervalUnion> RegFile;
1261 unsigned MaxRegsUsed = 0;
1268 std::max<unsigned>(1,
TRI.getRegSizeInBits(*RC).getFixedValue() / 32);
1269 unsigned Alignment =
1270 std::max<unsigned>(1,
TRI.getRegClassAlignmentNumBits(RC) / 32);
1274 unsigned End = Start + Width;
1275 if (RegFile.size() < End)
1279 for (
unsigned Idx = Start; Idx < End; Idx++) {
1282 Start =
alignTo(Idx + 1, Alignment);
1289 for (
unsigned Idx = Start; Idx < End; Idx++)
1290 RegFile[Idx].unify(*LI, *LI);
1291 MaxRegsUsed = std::max(MaxRegsUsed, End);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
static void collectVirtualRegUses(SmallVectorImpl< VRegMaskOrUnit > &VRegMaskOrUnits, const MachineInstr &MI, const LiveIntervals &LIS, const MachineRegisterInfo &MRI)
static cl::opt< bool > UseDownwardTracker("amdgpu-print-rp-downward", cl::desc("Use GCNDownwardRPTracker for GCNRegPressurePrinter pass"), cl::init(false), cl::Hidden)
static LaneBitmask getDefRegMask(const MachineOperand &MO, const MachineRegisterInfo &MRI)
static LaneBitmask getRegLiveThroughMask(const MachineRegisterInfo &MRI, const LiveIntervals &LIS, Register Reg, SlotIndex Begin, SlotIndex End, LaneBitmask Mask=LaneBitmask::getAll())
This file defines the GCNRegPressure class, which tracks registry pressure by bookkeeping number of S...
Register const TargetRegisterInfo * TRI
Promote Memory to Register
static bool InRange(int64_t Value, unsigned short Shift, int LBound, int HBound)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
static LaneBitmask getLanesWithProperty(const LiveIntervals &LIS, const MachineRegisterInfo &MRI, bool TrackLaneMasks, VirtRegOrUnit VRegOrUnit, SlotIndex Pos, LaneBitmask SafeDefault, bool(*Property)(const LiveRange &LR, SlotIndex Pos))
static LaneBitmask findUseBetween(VirtRegOrUnit VRegOrUnit, LaneBitmask LastUseMask, SlotIndex PriorUseIdx, SlotIndex NextUseIdx, const MachineRegisterInfo &MRI, const LiveIntervals *LIS)
Helper to find a vreg use between two indices [PriorUseIdx, NextUseIdx).
This file implements a set that has insertion order iteration characteristics.
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
iterator find(const_arg_type_t< KeyT > Val)
bool reset(const MachineInstr &MI, MachineBasicBlock::const_iterator End, const LiveRegSet *LiveRegs=nullptr)
Reset tracker to the point before the MI filling LiveRegs upon this point using LIS.
bool advanceBeforeNext(MachineInstr *MI=nullptr, bool UseInternalIterator=true)
Move to the state right before the next MI or after the end of MBB.
bool advance(MachineInstr *MI=nullptr, bool UseInternalIterator=true)
Move to the state at the next MI.
GCNRegPressure bumpDownwardPressure(const MachineInstr *MI, const SIRegisterInfo *TRI) const
Mostly copy/paste from CodeGen/RegisterPressure.cpp Calculate the impact MI will have on CurPressure ...
void advanceToNext(MachineInstr *MI=nullptr, bool UseInternalIterator=true)
Move to the state at the MI, advanceBeforeNext has to be called first.
GCNRPTarget(const MachineFunction &MF, const GCNRegPressure &RP)
Sets up the target such that the register pressure starting at RP does not show register spilling on ...
bool isSaveBeneficial(Register Reg) const
Determines whether saving virtual register Reg will be beneficial towards achieving the RP target.
bool hasVectorRegisterExcess() const
bool satisfied() const
Whether the current RP is at or below the defined pressure target.
void setTarget(unsigned NumSGPRs, unsigned NumVGPRs)
Changes the target (same semantics as constructor).
unsigned getNumRegsBenefit(const GCNRegPressure &SaveRP) const
Returns the benefit towards achieving the RP target that saving SaveRP represents,...
GCNRegPressure getPressure() const
const decltype(LiveRegs) & getLiveRegs() const
const MachineInstr * LastTrackedMI
GCNRegPressure CurPressure
DenseMap< unsigned, LaneBitmask > LiveRegSet
LaneBitmask getLastUsedLanes(Register Reg, SlotIndex Pos) const
Mostly copy/paste from CodeGen/RegisterPressure.cpp.
GCNRegPressure MaxPressure
const MachineRegisterInfo * MRI
const LiveIntervals & LIS
void reset(const MachineInstr &MI, bool After)
Resets tracker before or After the provided MI, which can be a debug instruction.
void recede(const MachineInstr &MI)
Move to the state of RP just before the MI .
const GCNRegPressure & getMaxPressure() const
bool isValid() const
returns whether the tracker's state after receding MI corresponds to reported by LIS.
void reset(const MachineInstr &MI)
Resets tracker to the point just after MI (in program order), which can be a debug instruction.
Query interferences between a single live virtual register and a live interval union.
Union of live intervals that are strong candidates for coalescing into a single register (either phys...
LiveSegments::Allocator Allocator
A live range for subregisters.
LiveInterval - This class represents the liveness of a register, or stack slot.
bool hasSubRanges() const
Returns true if subregister liveness information is available.
iterator_range< subrange_iterator > subranges()
bool hasInterval(Register Reg) const
SlotIndexes * getSlotIndexes() const
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
LiveInterval & getInterval(Register Reg)
This class represents the liveness of a register, stack slot, etc.
const Segment * getSegmentContaining(SlotIndex Idx) const
Return the segment that contains the specified index, or null if there is none.
bool liveAt(SlotIndex index) const
unsigned getNumValNums() const
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
MachineInstrBundleIterator< const MachineInstr > const_iterator
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Representation of each machine instruction.
const MachineBasicBlock * getParent() const
filtered_mop_range all_defs()
Returns an iterator range over all operands that are (explicit or implicit) register defs.
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
use_nodbg_iterator use_nodbg_begin(Register RegNo) const
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
static use_nodbg_iterator use_nodbg_end()
const TargetRegisterInfo * getTargetRegisterInfo() const
LLVM_ABI LaneBitmask getMaxLaneMaskForVReg(Register Reg) const
Returns a mask covering all bits that can appear in lane masks of subregisters of the virtual registe...
unsigned getNumVirtRegs() const
getNumVirtRegs - Return the number of virtual registers created.
iterator_range< reg_instr_nodbg_iterator > reg_nodbg_instructions(Register Reg) const
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
Simple wrapper around std::function<void(raw_ostream&)>.
List of registers defined and used by a machine instruction.
LLVM_ABI void adjustLaneLiveness(const LiveIntervals &LIS, const MachineRegisterInfo &MRI, SlotIndex Pos)
Use liveness information to find out which uses/defs are partially undefined/dead at Pos and adjust t...
SmallVector< VRegMaskOrUnit, 8 > Defs
List of virtual registers and register units defined by the instruction which are not dead.
LLVM_ABI void collect(const MachineInstr &MI, const TargetRegisterInfo &TRI, const MachineRegisterInfo &MRI, bool TrackLaneMasks, bool IgnoreDead)
Analyze the given instruction MI and fill in the Uses, Defs and DeadDefs list based on the MachineOpe...
SmallVector< VRegMaskOrUnit, 8 > Uses
List of virtual registers and register units read by the instruction.
Wrapper class representing virtual and physical registers.
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
unsigned getDynamicVGPRBlockSize() const
static unsigned getNumCoveredRegs(LaneBitmask LM)
bool isVectorSuperClass(const TargetRegisterClass *RC) const
static bool isSGPRClass(const TargetRegisterClass *RC)
static bool isAGPRClass(const TargetRegisterClass *RC)
A vector that has set insertion semantics.
void reserve(size_type Size)
Reserve space in the SetVector if supported by the underlying containers.
Vector takeVector()
Clear the SetVector and return the underlying vector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
SlotIndex - An opaque wrapper around machine indexes.
SlotIndex getBaseIndex() const
Returns the base index for associated with this index.
SlotIndex getPrevSlot() const
Returns the previous slot in the index list.
SlotIndex getRegSlot(bool EC=false) const
Returns the register use/def slot in the current instruction for a normal or early-clobber def.
SlotIndex getMBBLastIdx(const MachineBasicBlock *MBB) const
Returns the last valid index in the given basic block.
SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const
Returns the index past the last valid index in the given basic block.
SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const
Returns the first index in the given basic block.
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...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
LaneBitmask getSubRegIndexLaneMask(unsigned SubIdx) const
Return a bitmask representing the parts of a register that are covered by SubIdx.
A Use represents the edge between a Value definition and its users.
Wrapper class representing a virtual register or register unit.
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ VGPR
Address space for VGPRs.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LaneBitmask getLiveLaneMask(unsigned Reg, SlotIndex SI, const LiveIntervals &LIS, const MachineRegisterInfo &MRI, LaneBitmask LaneMaskFilter=LaneBitmask::getAll())
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr, unsigned DynamicVGPRBlockSize=0)
GCNRPTracker::LiveRegSet getLiveRegs(SlotIndex SI, const LiveIntervals &LIS, const MachineRegisterInfo &MRI, GCNRegPressure::RegKind RegKind=GCNRegPressure::TOTAL_KINDS)
GCNRegPressure getRegPressure(const MachineRegisterInfo &MRI, Range &&LiveRegs)
Printable PrintLaneMask(LaneBitmask LaneMask)
Create Printable object to print LaneBitmasks on a raw_ostream.
IterT skipDebugInstructionsForward(IterT It, IterT End, bool SkipPseudoOp=true)
Increment It until it points to a non-debug instruction or to End and return the resulting iterator.
auto reverse(ContainerTy &&C)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
constexpr NextUseDistance max(NextUseDistance A, NextUseDistance B)
char & GCNRegPressurePrinterID
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void dumpMaxRegPressure(MachineFunction &MF, GCNRegPressure::RegKind Kind, LiveIntervals &LIS, const MachineLoopInfo *MLI)
unsigned estimateGreedyVGPRPressure(MachineBasicBlock::const_iterator RegionBegin, MachineBasicBlock::const_iterator RegionEnd, const GCNRPTracker::LiveRegSet &LiveIns, const LiveIntervals &LIS, const MachineRegisterInfo &MRI, const SIRegisterInfo &TRI)
Estimate VGPR pressure using greedy, non-splitting register allocation simulation,...
LLVM_ABI Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
Printable reportMismatch(const GCNRPTracker::LiveRegSet &LISLR, const GCNRPTracker::LiveRegSet &TrackedL, const TargetRegisterInfo *TRI, StringRef Pfx=" ")
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
MCRegisterClass TargetRegisterClass
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
static RegKind getRegKind(unsigned Reg, const MachineRegisterInfo &MRI)
static constexpr const char * getName(RegKind Kind)
unsigned getNumRegs(RegKind Kind) const
unsigned getVGPRTuplesWeight() const
unsigned getVGPRNum(bool UnifiedVGPRFile) const
friend Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST, unsigned DynamicVGPRBlockSize)
void inc(unsigned Reg, LaneBitmask PrevMask, LaneBitmask NewMask, const MachineRegisterInfo &MRI)
unsigned getArchVGPRNum() const
unsigned getAGPRNum() const
unsigned getSGPRNum() const
unsigned getSGPRTuplesWeight() const
bool less(const MachineFunction &MF, const GCNRegPressure &O, unsigned MaxOccupancy=std::numeric_limits< unsigned >::max()) const
Compares this GCNRegpressure to O, returning true if this is less.
static constexpr LaneBitmask getAll()
constexpr bool none() const
constexpr bool any() const
static constexpr LaneBitmask getNone()
bool contains(SlotIndex I) const
Return true if the index is covered by this segment.