66#define DEBUG_TYPE "regalloc"
68STATISTIC(numJoins,
"Number of interval joins performed");
69STATISTIC(numCrossRCs,
"Number of cross class joins performed");
70STATISTIC(numCommutes,
"Number of instruction commuting performed");
72STATISTIC(NumReMats,
"Number of instructions re-materialized");
73STATISTIC(NumInflated,
"Number of register classes inflated");
74STATISTIC(NumLaneConflicts,
"Number of dead lane conflicts tested");
75STATISTIC(NumLaneResolves,
"Number of dead lane conflicts resolved");
76STATISTIC(NumShrinkToUses,
"Number of shrinkToUses called");
79 cl::desc(
"Coalesce copies (default=true)"),
94 cl::desc(
"Coalesce copies that span blocks (default=subtarget)"),
99 cl::desc(
"Verify machine instrs before and after register coalescing"),
104 cl::desc(
"During rematerialization for a copy, if the def instruction has "
105 "many other copy uses to be rematerialized, delay the multiple "
106 "separate live interval update work and do them all at once after "
107 "all those rematerialization are done. It will save a lot of "
113 cl::desc(
"If the valnos size of an interval is larger than the threshold, "
114 "it is regarded as a large interval. "),
119 cl::desc(
"For a large interval, if it is coalesced with other live "
120 "intervals many times more than the threshold, stop its "
121 "coalescing to control the compile time. "),
146 DenseMap<unsigned, PHIValPos> PHIValToPos;
150 DenseMap<Register, SmallVector<unsigned, 2>> RegToPHIIdx;
155 using DbgValueLoc = std::pair<SlotIndex, MachineInstr *>;
156 DenseMap<Register, std::vector<DbgValueLoc>> DbgVRegToValues;
160 LaneBitmask ShrinkMask;
164 bool ShrinkMainRange =
false;
168 bool JoinGlobalCopies =
false;
172 bool JoinSplitEdges =
false;
175 SmallVector<MachineInstr *, 8> WorkList;
176 SmallVector<MachineInstr *, 8> LocalWorkList;
180 SmallPtrSet<MachineInstr *, 8> ErasedInstrs;
183 SmallVector<MachineInstr *, 8> DeadDefs;
191 DenseSet<Register> ToBeUpdated;
195 DenseMap<Register, unsigned long> LargeLIVisitCounter;
198 void eliminateDeadDefs(LiveRangeEdit *Edit =
nullptr);
201 void LRE_WillEraseInstruction(MachineInstr *
MI)
override;
204 void coalesceLocals();
207 void joinAllIntervals();
211 void copyCoalesceInMBB(MachineBasicBlock *
MBB);
222 void lateLiveIntervalUpdate();
227 bool copyValueUndefInPredecessors(
LiveRange &S,
const MachineBasicBlock *
MBB,
228 LiveQueryResult SLRQ);
232 void setUndefOnPrunedSubRegUses(LiveInterval &LI,
Register Reg,
233 LaneBitmask PrunedLanes);
240 enum class JoinResult { Joined, Deferred, Rejected };
244 JoinResult joinCopy(MachineInstr *CopyMI,
245 SmallPtrSetImpl<MachineInstr *> &CurrentErasedInstrs);
251 JoinResult joinIntervals(CoalescerPair &CP);
254 JoinResult joinVirtRegs(CoalescerPair &CP);
259 bool isHighCostLiveInterval(LiveInterval &LI);
262 bool joinReservedPhysReg(CoalescerPair &CP);
269 void mergeSubRangeInto(LiveInterval &LI,
const LiveRange &ToMerge,
270 LaneBitmask LaneMask, CoalescerPair &CP,
276 LaneBitmask LaneMask,
const CoalescerPair &CP);
282 bool adjustCopiesBackFrom(
const CoalescerPair &CP, MachineInstr *CopyMI);
286 bool hasOtherReachingDefs(LiveInterval &IntA, LiveInterval &IntB,
287 VNInfo *AValNo, VNInfo *BValNo);
297 std::pair<bool, bool> removeCopyByCommutingDef(
const CoalescerPair &CP,
298 MachineInstr *CopyMI);
301 bool removePartialRedundancy(
const CoalescerPair &CP, MachineInstr &CopyMI);
305 bool reMaterializeDef(
const CoalescerPair &CP, MachineInstr *CopyMI,
309 bool canJoinPhys(
const CoalescerPair &CP);
324 void addUndefFlag(
const LiveInterval &
Int, SlotIndex UseIdx,
325 MachineOperand &MO,
unsigned SubRegIdx);
331 MachineInstr *eliminateUndefCopy(MachineInstr *CopyMI);
345 bool applyTerminalRule(
const MachineInstr &Copy)
const;
351 SmallVectorImpl<MachineInstr *> *
Dead =
nullptr) {
353 if (LIS->shrinkToUses(LI,
Dead)) {
357 LIS->splitSeparateComponents(*LI, SplitLIs);
365 void deleteInstr(MachineInstr *
MI) {
366 ErasedInstrs.insert(
MI);
367 LIS->RemoveMachineInstrFromMaps(*
MI);
368 MI->eraseFromParent();
377 void checkMergingChangesDbgValues(CoalescerPair &CP,
LiveRange &
LHS,
386 RegisterCoalescer() =
default;
387 RegisterCoalescer &operator=(RegisterCoalescer &&
Other) =
default;
389 RegisterCoalescer(LiveIntervals *LIS, SlotIndexes *SI,
390 const MachineLoopInfo *Loops)
391 : LIS(LIS), SI(SI), Loops(Loops) {}
393 bool run(MachineFunction &MF);
400 RegisterCoalescerLegacy() : MachineFunctionPass(ID) {}
402 void getAnalysisUsage(AnalysisUsage &AU)
const override;
404 MachineFunctionProperties getClearedProperties()
const override {
405 return MachineFunctionProperties().setIsSSA();
409 bool runOnMachineFunction(MachineFunction &)
override;
414char RegisterCoalescerLegacy::ID = 0;
419 "Register Coalescer",
false,
false)
431 Dst = MI->getOperand(0).getReg();
432 DstSub = MI->getOperand(0).getSubReg();
433 Src = MI->getOperand(1).getReg();
434 SrcSub = MI->getOperand(1).getSubReg();
435 }
else if (
MI->isSubregToReg()) {
436 Dst = MI->getOperand(0).getReg();
437 DstSub = tri.composeSubRegIndices(MI->getOperand(0).getSubReg(),
438 MI->getOperand(2).getImm());
439 Src = MI->getOperand(1).getReg();
440 SrcSub = MI->getOperand(1).getSubReg();
452 if (
MBB->pred_size() != 1 ||
MBB->succ_size() != 1)
455 for (
const auto &
MI : *
MBB) {
456 if (!
MI.isCopyLike() && !
MI.isUnconditionalBranch())
466 Flipped = CrossClass =
false;
469 unsigned SrcSub = 0, DstSub = 0;
472 Partial = SrcSub || DstSub;
475 if (Src.isPhysical()) {
476 if (Dst.isPhysical())
486 if (Dst.isPhysical()) {
489 Dst = TRI.getSubReg(Dst, DstSub);
497 Dst = TRI.getMatchingSuperReg(Dst, SrcSub, SrcRC);
508 if (SrcSub && DstSub) {
510 if (Src == Dst && SrcSub != DstSub)
513 NewRC = TRI.getCommonSuperRegClass(SrcRC, SrcSub, DstRC, DstSub, SrcIdx,
520 NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub);
524 NewRC = TRI.getMatchingSuperRegClass(SrcRC, DstRC, SrcSub);
527 NewRC = TRI.getCommonSubClass(DstRC, SrcRC);
536 if (DstIdx && !SrcIdx) {
542 CrossClass = NewRC != DstRC || NewRC != SrcRC;
545 assert(Src.isVirtual() &&
"Src must be virtual");
546 assert(!(Dst.isPhysical() && DstSub) &&
"Cannot have a physical SubIdx");
553 if (DstReg.isPhysical())
565 unsigned SrcSub = 0, DstSub = 0;
573 }
else if (Src != SrcReg) {
578 if (DstReg.isPhysical()) {
579 if (!Dst.isPhysical())
581 assert(!DstIdx && !SrcIdx &&
"Inconsistent CoalescerPair state.");
584 Dst = TRI.getSubReg(Dst, DstSub);
587 return DstReg == Dst;
589 return Register(TRI.getSubReg(DstReg, SrcSub)) == Dst;
596 return TRI.composeSubRegIndices(SrcIdx, SrcSub) ==
597 TRI.composeSubRegIndices(DstIdx, DstSub);
600void RegisterCoalescerLegacy::getAnalysisUsage(
AnalysisUsage &AU)
const {
612void RegisterCoalescer::eliminateDeadDefs(
LiveRangeEdit *Edit) {
622void RegisterCoalescer::LRE_WillEraseInstruction(
MachineInstr *
MI) {
627bool RegisterCoalescer::adjustCopiesBackFrom(
const CoalescerPair &CP,
630 assert(!CP.
isPhys() &&
"This doesn't work for physreg copies.");
655 if (BS == IntB.
end())
657 VNInfo *BValNo = BS->valno;
662 if (BValNo->
def != CopyIdx)
669 if (AS == IntA.
end())
671 VNInfo *AValNo = AS->valno;
683 if (ValS == IntB.
end())
701 SlotIndex FillerStart = ValS->end, FillerEnd = BS->start;
705 BValNo->
def = FillerStart;
713 if (BValNo != ValS->valno)
722 S.removeSegment(*SS,
true);
726 if (!S.getVNInfoAt(FillerStart)) {
729 S.extendInBlock(BBStart, FillerStart);
731 VNInfo *SubBValNo = S.getVNInfoAt(CopyIdx);
734 if (SubBValNo != SubValSNo)
735 S.MergeValueNumberInto(SubBValNo, SubValSNo);
752 bool RecomputeLiveRange = AS->end == CopyIdx;
753 if (!RecomputeLiveRange) {
756 if (SS != S.end() &&
SS->end == CopyIdx) {
757 RecomputeLiveRange =
true;
762 if (RecomputeLiveRange)
769bool RegisterCoalescer::hasOtherReachingDefs(
LiveInterval &IntA,
778 if (ASeg.
valno != AValNo)
781 if (BI != IntB.
begin())
783 for (; BI != IntB.
end() && ASeg.
end >= BI->start; ++BI) {
784 if (BI->valno == BValNo)
786 if (BI->start <= ASeg.
start && BI->end > ASeg.
start)
788 if (BI->start > ASeg.
start && BI->start < ASeg.
end)
802 bool MergedWithDead =
false;
804 if (S.
valno != SrcValNo)
815 MergedWithDead =
true;
818 return std::make_pair(
Changed, MergedWithDead);
822RegisterCoalescer::removeCopyByCommutingDef(
const CoalescerPair &CP,
855 assert(BValNo !=
nullptr && BValNo->
def == CopyIdx);
861 return {
false,
false};
864 return {
false,
false};
866 return {
false,
false};
873 return {
false,
false};
879 return DefMO.getReg() == IntA.reg() && !DefMO.getSubReg();
881 return {
false,
false};
893 if (!
TII->findCommutedOpIndices(*
DefMI, UseOpIdx, NewDstIdx))
894 return {
false,
false};
899 return {
false,
false};
903 if (hasOtherReachingDefs(IntA, IntB, AValNo, BValNo))
904 return {
false,
false};
913 if (US == IntA.
end() || US->valno != AValNo)
917 return {
false,
false};
927 TII->commuteInstruction(*
DefMI,
false, UseOpIdx, NewDstIdx);
929 return {
false,
false};
932 return {
false,
false};
933 if (NewMI !=
DefMI) {
958 UseMO.setReg(NewReg);
963 assert(US != IntA.
end() &&
"Use must be live");
964 if (US->valno != AValNo)
967 UseMO.setIsKill(
false);
969 UseMO.substPhysReg(NewReg, *
TRI);
971 UseMO.setReg(NewReg);
990 VNInfo *SubDVNI = S.getVNInfoAt(DefIdx);
993 VNInfo *SubBValNo = S.getVNInfoAt(CopyIdx);
995 S.MergeValueNumberInto(SubDVNI, SubBValNo);
1003 bool ShrinkB =
false;
1017 VNInfo *ASubValNo = SA.getVNInfoAt(AIdx);
1026 MaskA |= SA.LaneMask;
1032 VNInfo *BSubValNo = SR.empty() ? SR.getNextValue(CopyIdx, Allocator)
1033 : SR.getVNInfoAt(CopyIdx);
1034 assert(BSubValNo != nullptr);
1035 auto P = addSegmentsWithValNo(SR, BSubValNo, SA, ASubValNo);
1036 ShrinkB |= P.second;
1038 BSubValNo->def = ASubValNo->def;
1046 if ((SB.LaneMask & MaskA).any())
1050 SB.removeSegment(*S,
true);
1054 BValNo->
def = AValNo->
def;
1056 ShrinkB |=
P.second;
1063 return {
true, ShrinkB};
1113bool RegisterCoalescer::removePartialRedundancy(
const CoalescerPair &CP,
1146 bool FoundReverseCopy =
false;
1165 bool ValB_Changed =
false;
1166 for (
auto *VNI : IntB.
valnos) {
1167 if (VNI->isUnused())
1170 ValB_Changed =
true;
1178 FoundReverseCopy =
true;
1182 if (!FoundReverseCopy)
1192 if (CopyLeftBB && CopyLeftBB->
succ_size() > 1)
1203 if (InsPos != CopyLeftBB->
end()) {
1209 LLVM_DEBUG(
dbgs() <<
"\tremovePartialRedundancy: Move the copy to "
1214 TII->get(TargetOpcode::COPY), IntB.
reg())
1225 ErasedInstrs.
erase(NewCopyMI);
1227 LLVM_DEBUG(
dbgs() <<
"\tremovePartialRedundancy: Remove the copy from "
1238 deleteInstr(&CopyMI);
1254 if (!IntB.
liveAt(UseIdx))
1255 MO.setIsUndef(
true);
1265 VNInfo *BValNo = SR.Query(CopyIdx).valueOutOrDead();
1266 assert(BValNo &&
"All sublanes should be live");
1275 for (
unsigned I = 0;
I != EndPoints.
size();) {
1277 EndPoints[
I] = EndPoints.
back();
1296bool RegisterCoalescer::reMaterializeDef(
const CoalescerPair &CP,
1324 if (!
TII->isReMaterializable(*
DefMI))
1327 bool SawStore =
false;
1331 if (
MCID.getNumDefs() != 1)
1339 if (SrcIdx && DstIdx)
1355 for (MCRegUnit Unit :
TRI->regunits(DstReg)) {
1374 unsigned NewDstIdx =
TRI->composeSubRegIndices(CP.
getSrcIdx(), DefSubIdx);
1376 NewDstReg =
TRI->getSubReg(DstReg, NewDstIdx);
1386 "Only expect to deal with virtual or physical registers");
1400 LiveRangeEdit Edit(&SrcInt, NewRegs, *MF, *LIS,
nullptr,
this);
1415 "Shouldn't have SrcIdx+DstIdx at this point");
1418 TRI->getCommonSubClass(DefRC, DstRC);
1419 if (CommonRC !=
nullptr) {
1427 if (MO.isReg() && MO.getReg() == DstReg && MO.getSubReg() == DstIdx) {
1449 "No explicit operands after implicit operands.");
1452 "unexpected implicit virtual register def");
1458 ErasedInstrs.
insert(CopyMI);
1482 ((
TRI->getSubReg(MO.
getReg(), DefSubIdx) ==
1496 "subrange update for implicit-def of super register may not be "
1497 "properly handled");
1505 if (DefRC !=
nullptr) {
1507 NewRC =
TRI->getMatchingSuperRegClass(NewRC, DefRC, NewIdx);
1509 NewRC =
TRI->getCommonSubClass(NewRC, DefRC);
1510 assert(NewRC &&
"subreg chosen for remat incompatible with instruction");
1516 SR.LaneMask =
TRI->composeSubRegIndexLaneMask(DstIdx, SR.LaneMask);
1521 updateRegDefsUses(DstReg, DstReg, DstIdx);
1570 if (!SR.liveAt(DefIndex))
1571 SR.createDeadDef(DefIndex,
Alloc);
1572 MaxMask &= ~SR.LaneMask;
1574 if (MaxMask.
any()) {
1592 bool UpdatedSubRanges =
false;
1607 if (!SR.
liveAt(DefIndex))
1613 if ((SR.
LaneMask & DstMask).none()) {
1615 <<
"Removing undefined SubRange "
1628 UpdatedSubRanges =
true;
1631 if (UpdatedSubRanges)
1638 "Only expect virtual or physical registers in remat");
1646 bool HasDefMatchingCopy =
false;
1647 for (
auto [OpIndex,
Reg] : NewMIImplDefs) {
1653 if (DstReg != CopyDstReg)
1656 HasDefMatchingCopy =
true;
1660 if (!HasDefMatchingCopy)
1662 CopyDstReg,
true ,
true ,
false ));
1710 UseMO.substPhysReg(DstReg, *
TRI);
1712 UseMO.setReg(DstReg);
1721 if (ToBeUpdated.
count(SrcReg))
1724 unsigned NumCopyUses = 0;
1726 if (UseMO.getParent()->isCopyLike())
1732 if (!DeadDefs.
empty())
1733 eliminateDeadDefs(&Edit);
1735 ToBeUpdated.
insert(SrcReg);
1753 unsigned SrcSubIdx = 0, DstSubIdx = 0;
1754 if (!
isMoveInstr(*
TRI, CopyMI, SrcReg, DstReg, SrcSubIdx, DstSubIdx))
1763 if ((SR.
LaneMask & SrcMask).none())
1768 }
else if (SrcLI.
liveAt(Idx))
1776 assert(Seg !=
nullptr &&
"No segment for defining instruction");
1781 if (((V &&
V->isPHIDef()) || (!V && !DstLI.
liveAt(Idx)))) {
1789 CopyMI->
getOpcode() == TargetOpcode::SUBREG_TO_REG);
1794 CopyMI->
setDesc(
TII->get(TargetOpcode::IMPLICIT_DEF));
1811 if ((SR.
LaneMask & DstMask).none())
1833 if ((SR.
LaneMask & UseMask).none())
1841 isLive = DstLI.
liveAt(UseIdx);
1854 if (MO.
getReg() == DstReg)
1866 bool IsUndef =
true;
1868 if ((S.LaneMask & Mask).none())
1870 if (S.liveAt(UseIdx)) {
1883 ShrinkMainRange =
true;
1892 if (DstInt && DstReg != SrcReg) {
1898 if (SubReg == 0 && MO.
isDef())
1904 addUndefFlag(*DstInt, UseIdx, MO, SubReg);
1905 }
else if (MO.
isUse() && SubReg == 0 && !DstInt->
liveAt(UseIdx)) {
1927 if (SrcReg == DstReg && !Visited.
insert(
UseMI).second)
1940 for (
unsigned Op :
Ops) {
1946 if (SubIdx && MO.
isDef())
1952 unsigned SubUseIdx =
TRI->composeSubRegIndices(SubIdx, MO.
getSubReg());
1970 addUndefFlag(*DstInt, UseIdx, MO, SubUseIdx);
1981 dbgs() <<
"\t\tupdated: ";
1989bool RegisterCoalescer::canJoinPhys(
const CoalescerPair &CP) {
1994 LLVM_DEBUG(
dbgs() <<
"\tCan only merge into reserved registers.\n");
2003 dbgs() <<
"\tCannot join complex intervals into reserved register.\n");
2007bool RegisterCoalescer::copyValueUndefInPredecessors(
2021void RegisterCoalescer::setUndefOnPrunedSubRegUses(
LiveInterval &LI,
2028 if (SubRegIdx == 0 || MO.
isUndef())
2034 if (!S.
liveAt(Pos) && (PrunedLanes & SubRegMask).any()) {
2050RegisterCoalescer::JoinResult RegisterCoalescer::joinCopy(
2058 return JoinResult::Rejected;
2064 <<
"are available for allocation\n");
2065 return JoinResult::Rejected;
2076 if (!
TRI->shouldCoalesce(CopyMI, SrcRC, SrcIdx, DstRC, DstIdx,
2079 return JoinResult::Rejected;
2089 eliminateDeadDefs();
2090 return JoinResult::Joined;
2096 if (
MachineInstr *UndefMI = eliminateUndefCopy(CopyMI)) {
2097 if (UndefMI->isImplicitDef())
2098 return JoinResult::Rejected;
2099 deleteInstr(CopyMI);
2100 return JoinResult::Rejected;
2109 LLVM_DEBUG(
dbgs() <<
"\tCopy already coalesced: " << LI <<
'\n');
2114 assert(ReadVNI &&
"No value before copy and no <undef> flag.");
2115 assert(ReadVNI != DefVNI &&
"Cannot read and define the same value.");
2130 if (copyValueUndefInPredecessors(S,
MBB, SLRQ)) {
2131 LLVM_DEBUG(
dbgs() <<
"Incoming sublane value is undef at copy\n");
2132 PrunedLanes |= S.LaneMask;
2139 if (PrunedLanes.
any()) {
2140 LLVM_DEBUG(
dbgs() <<
"Pruning undef incoming lanes: " << PrunedLanes
2142 setUndefOnPrunedSubRegUses(LI, CP.
getSrcReg(), PrunedLanes);
2147 deleteInstr(CopyMI);
2148 return JoinResult::Joined;
2156 if (!canJoinPhys(CP)) {
2159 bool IsDefCopy =
false;
2160 if (reMaterializeDef(CP, CopyMI, IsDefCopy))
2161 return JoinResult::Joined;
2163 return JoinResult::Deferred;
2164 return JoinResult::Rejected;
2173 dbgs() <<
"\tConsidering merging to "
2174 <<
TRI->getRegClassName(CP.
getNewRC()) <<
" with ";
2187 ShrinkMainRange =
false;
2193 JoinResult
Result = joinIntervals(CP);
2194 if (Result != JoinResult::Joined) {
2198 bool IsDefCopy =
false;
2199 if (reMaterializeDef(CP, CopyMI, IsDefCopy))
2200 return JoinResult::Joined;
2205 bool Changed = adjustCopiesBackFrom(CP, CopyMI);
2206 bool Shrink =
false;
2208 std::tie(
Changed, Shrink) = removeCopyByCommutingDef(CP, CopyMI);
2210 deleteInstr(CopyMI);
2218 return JoinResult::Joined;
2225 if (removePartialRedundancy(CP, *CopyMI))
2226 return JoinResult::Joined;
2233 if (Result == JoinResult::Deferred)
2253 if (ErasedInstrs.
erase(CopyMI))
2255 CurrentErasedInstrs.
insert(CopyMI);
2264 if (ShrinkMask.
any()) {
2267 if ((S.LaneMask & ShrinkMask).none())
2272 ShrinkMainRange =
true;
2281 ShrinkMainRange =
true;
2283 if (ShrinkMainRange) {
2298 dbgs() <<
"\tResult = ";
2307 return JoinResult::Joined;
2310bool RegisterCoalescer::joinReservedPhysReg(
CoalescerPair &CP) {
2318 assert(
RHS.containsOneValue() &&
"Invalid join with reserved register");
2328 for (MCRegUnit Unit :
TRI->regunits(DstReg)) {
2344 !RegMaskUsable.
test(DstReg.
id())) {
2366 deleteInstr(CopyMI);
2398 if (
MI->readsRegister(DstReg,
TRI)) {
2408 <<
printReg(DstReg,
TRI) <<
" at " << CopyRegIdx <<
"\n");
2411 deleteInstr(CopyMI);
2414 for (MCRegUnit Unit :
TRI->regunits(DstReg)) {
2506 const unsigned SubIdx;
2510 const LaneBitmask LaneMask;
2514 const bool SubRangeJoin;
2517 const bool TrackSubRegLiveness;
2520 SmallVectorImpl<VNInfo *> &NewVNInfo;
2522 const CoalescerPair &CP;
2524 SlotIndexes *Indexes;
2525 const TargetRegisterInfo *
TRI;
2529 SmallVector<int, 8> Assignments;
2533 enum ConflictResolution {
2565 ConflictResolution Resolution = CR_Keep;
2568 LaneBitmask WriteLanes;
2572 LaneBitmask ValidLanes;
2575 VNInfo *RedefVNI =
nullptr;
2578 VNInfo *OtherVNI =
nullptr;
2591 bool ErasableImplicitDef =
false;
2595 bool Pruned =
false;
2598 bool PrunedComputed =
false;
2605 bool Identical =
false;
2609 bool isAnalyzed()
const {
return WriteLanes.
any(); }
2613 void mustKeepImplicitDef(
const TargetRegisterInfo &
TRI,
2614 const MachineInstr &ImpDef) {
2616 ErasableImplicitDef =
false;
2627 LaneBitmask computeWriteLanes(
const MachineInstr *
DefMI,
bool &Redef)
const;
2630 std::pair<const VNInfo *, Register> followCopyChain(
const VNInfo *VNI)
const;
2632 bool valuesIdentical(VNInfo *Value0, VNInfo *Value1,
2633 const JoinVals &
Other)
const;
2642 ConflictResolution analyzeValue(
unsigned ValNo, JoinVals &
Other);
2647 void computeAssignment(
unsigned ValNo, JoinVals &
Other);
2665 taintExtent(
unsigned ValNo, LaneBitmask TaintedLanes, JoinVals &
Other,
2666 SmallVectorImpl<std::pair<SlotIndex, LaneBitmask>> &TaintExtent);
2670 bool usesLanes(
const MachineInstr &
MI,
Register,
unsigned, LaneBitmask)
const;
2678 bool isPrunedValue(
unsigned ValNo, JoinVals &
Other);
2682 SmallVectorImpl<VNInfo *> &newVNInfo,
const CoalescerPair &cp,
2683 LiveIntervals *lis,
const TargetRegisterInfo *
TRI,
bool SubRangeJoin,
2684 bool TrackSubRegLiveness)
2685 : LR(LR),
Reg(
Reg), SubIdx(SubIdx), LaneMask(LaneMask),
2686 SubRangeJoin(SubRangeJoin), TrackSubRegLiveness(TrackSubRegLiveness),
2687 NewVNInfo(newVNInfo), CP(cp), LIS(lis), Indexes(LIS->getSlotIndexes()),
2688 TRI(
TRI), Assignments(LR.getNumValNums(), -1),
2689 Vals(LR.getNumValNums()) {}
2693 bool mapValues(JoinVals &
Other);
2697 bool resolveConflicts(JoinVals &
Other);
2702 void pruneValues(JoinVals &
Other, SmallVectorImpl<SlotIndex> &EndPoints,
2708 void pruneSubRegValues(LiveInterval &LI, LaneBitmask &ShrinkMask);
2717 void pruneMainSegments(LiveInterval &LI,
bool &ShrinkMainRange);
2723 void eraseInstrs(SmallPtrSetImpl<MachineInstr *> &ErasedInstrs,
2724 SmallVectorImpl<Register> &ShrinkRegs,
2725 LiveInterval *LI =
nullptr);
2728 void removeImplicitDefs();
2731 const int *getAssignments()
const {
return Assignments.
data(); }
2734 ConflictResolution getResolution(
unsigned Num)
const {
2735 return Vals[Num].Resolution;
2742 bool &Redef)
const {
2747 L |=
TRI->getSubRegIndexLaneMask(
2755std::pair<const VNInfo *, Register>
2756JoinVals::followCopyChain(
const VNInfo *VNI)
const {
2762 assert(
MI &&
"No defining instruction");
2763 if (!
MI->isFullCopy())
2764 return std::make_pair(VNI, TrackReg);
2765 Register SrcReg =
MI->getOperand(1).getReg();
2767 return std::make_pair(VNI, TrackReg);
2781 LaneBitmask SMask =
TRI->composeSubRegIndexLaneMask(SubIdx, S.LaneMask);
2782 if ((SMask & LaneMask).
none())
2790 return std::make_pair(VNI, TrackReg);
2793 if (ValueIn ==
nullptr) {
2800 return std::make_pair(
nullptr, SrcReg);
2805 return std::make_pair(VNI, TrackReg);
2808bool JoinVals::valuesIdentical(
VNInfo *Value0,
VNInfo *Value1,
2809 const JoinVals &
Other)
const {
2812 std::tie(Orig0, Reg0) = followCopyChain(Value0);
2813 if (Orig0 == Value1 && Reg0 ==
Other.Reg)
2818 std::tie(Orig1, Reg1) =
Other.followCopyChain(Value1);
2822 if (Orig0 ==
nullptr || Orig1 ==
nullptr)
2823 return Orig0 == Orig1 && Reg0 == Reg1;
2829 return Orig0->
def == Orig1->
def && Reg0 == Reg1;
2832JoinVals::ConflictResolution JoinVals::analyzeValue(
unsigned ValNo,
2834 Val &
V = Vals[ValNo];
2835 assert(!
V.isAnalyzed() &&
"Value has already been analyzed!");
2847 :
TRI->getSubRegIndexLaneMask(SubIdx);
2848 V.ValidLanes =
V.WriteLanes = Lanes;
2857 V.ErasableImplicitDef =
true;
2861 V.ValidLanes =
V.WriteLanes = computeWriteLanes(
DefMI, Redef);
2880 assert((TrackSubRegLiveness ||
V.RedefVNI) &&
2881 "Instruction is reading nonexistent value");
2882 if (
V.RedefVNI !=
nullptr) {
2883 computeAssignment(
V.RedefVNI->id,
Other);
2884 V.ValidLanes |= Vals[
V.RedefVNI->id].ValidLanes;
2896 V.ErasableImplicitDef =
true;
2913 if (OtherVNI->
def < VNI->
def)
2914 Other.computeAssignment(OtherVNI->
id, *
this);
2919 return CR_Impossible;
2921 V.OtherVNI = OtherVNI;
2922 Val &OtherV =
Other.Vals[OtherVNI->
id];
2926 if (!OtherV.isAnalyzed() ||
Other.Assignments[OtherVNI->
id] == -1)
2933 if ((
V.ValidLanes & OtherV.ValidLanes).any())
2935 return CR_Impossible;
2949 Other.computeAssignment(
V.OtherVNI->id, *
this);
2950 Val &OtherV =
Other.Vals[
V.OtherVNI->id];
2952 if (OtherV.ErasableImplicitDef) {
2972 <<
", keeping it.\n");
2973 OtherV.mustKeepImplicitDef(*
TRI, *OtherImpDef);
2980 dbgs() <<
"IMPLICIT_DEF defined at " <<
V.OtherVNI->def
2981 <<
" may be live into EH pad successors, keeping it.\n");
2982 OtherV.mustKeepImplicitDef(*
TRI, *OtherImpDef);
2985 OtherV.ValidLanes &= ~OtherV.WriteLanes;
3003 V.ValidLanes &= ~V.WriteLanes | OtherV.ValidLanes;
3018 valuesIdentical(VNI,
V.OtherVNI,
Other)) {
3041 if ((
V.WriteLanes & OtherV.ValidLanes).none())
3054 "Only early clobber defs can overlap a kill");
3055 return CR_Impossible;
3062 if ((
TRI->getSubRegIndexLaneMask(
Other.SubIdx) & ~
V.WriteLanes).none())
3063 return CR_Impossible;
3065 if (TrackSubRegLiveness) {
3070 if (!OtherLI.hasSubRanges()) {
3072 return (OtherMask &
V.WriteLanes).none() ? CR_Replace : CR_Impossible;
3080 TRI->composeSubRegIndexLaneMask(
Other.SubIdx, OtherSR.LaneMask);
3081 if ((OtherMask &
V.WriteLanes).none())
3084 auto OtherSRQ = OtherSR.Query(VNI->
def);
3085 if (OtherSRQ.valueIn() && OtherSRQ.endPoint() > VNI->
def) {
3087 return CR_Impossible;
3100 return CR_Impossible;
3109 return CR_Unresolved;
3112void JoinVals::computeAssignment(
unsigned ValNo, JoinVals &
Other) {
3113 Val &
V = Vals[ValNo];
3114 if (
V.isAnalyzed()) {
3117 assert(Assignments[ValNo] != -1 &&
"Bad recursion?");
3120 switch ((
V.Resolution = analyzeValue(ValNo,
Other))) {
3124 assert(
V.OtherVNI &&
"OtherVNI not assigned, can't merge.");
3125 assert(
Other.Vals[
V.OtherVNI->id].isAnalyzed() &&
"Missing recursion");
3126 Assignments[ValNo] =
Other.Assignments[
V.OtherVNI->id];
3130 <<
V.OtherVNI->def <<
" --> @"
3131 << NewVNInfo[Assignments[ValNo]]->def <<
'\n');
3134 case CR_Unresolved: {
3136 assert(
V.OtherVNI &&
"OtherVNI not assigned, can't prune");
3137 Val &OtherV =
Other.Vals[
V.OtherVNI->id];
3138 OtherV.Pruned =
true;
3143 Assignments[ValNo] = NewVNInfo.
size();
3149bool JoinVals::mapValues(JoinVals &
Other) {
3151 computeAssignment(i,
Other);
3152 if (Vals[i].Resolution == CR_Impossible) {
3161bool JoinVals::taintExtent(
3170 assert(OtherI !=
Other.LR.end() &&
"No conflict?");
3175 if (End >= MBBEnd) {
3177 << OtherI->valno->id <<
'@' << OtherI->start <<
'\n');
3181 << OtherI->valno->id <<
'@' << OtherI->start <<
" to "
3186 TaintExtent.push_back(std::make_pair(End, TaintedLanes));
3189 if (++OtherI ==
Other.LR.end() || OtherI->start >= MBBEnd)
3193 const Val &OV =
Other.Vals[OtherI->valno->id];
3194 TaintedLanes &= ~OV.WriteLanes;
3197 }
while (TaintedLanes.
any());
3203 if (
MI.isDebugOrPseudoInstr())
3210 unsigned S =
TRI->composeSubRegIndices(SubIdx, MO.
getSubReg());
3211 if ((Lanes &
TRI->getSubRegIndexLaneMask(S)).any())
3217bool JoinVals::resolveConflicts(JoinVals &
Other) {
3220 assert(
V.Resolution != CR_Impossible &&
"Unresolvable conflict");
3221 if (
V.Resolution != CR_Unresolved)
3230 assert(
V.OtherVNI &&
"Inconsistent conflict resolution.");
3232 const Val &OtherV =
Other.Vals[
V.OtherVNI->id];
3237 LaneBitmask TaintedLanes =
V.WriteLanes & OtherV.ValidLanes;
3239 if (!taintExtent(i, TaintedLanes,
Other, TaintExtent))
3243 assert(!TaintExtent.
empty() &&
"There should be at least one conflict.");
3256 "Interference ends on VNI->def. Should have been handled earlier");
3259 assert(LastMI &&
"Range must end at a proper instruction");
3260 unsigned TaintNum = 0;
3263 if (usesLanes(*
MI,
Other.Reg,
Other.SubIdx, TaintedLanes)) {
3268 if (&*
MI == LastMI) {
3269 if (++TaintNum == TaintExtent.
size())
3272 assert(LastMI &&
"Range must end at a proper instruction");
3273 TaintedLanes = TaintExtent[TaintNum].second;
3279 V.Resolution = CR_Replace;
3285bool JoinVals::isPrunedValue(
unsigned ValNo, JoinVals &
Other) {
3286 Val &
V = Vals[ValNo];
3287 if (
V.Pruned ||
V.PrunedComputed)
3290 if (
V.Resolution != CR_Erase &&
V.Resolution != CR_Merge)
3295 V.PrunedComputed =
true;
3296 V.Pruned =
Other.isPrunedValue(
V.OtherVNI->id, *
this);
3300void JoinVals::pruneValues(JoinVals &
Other,
3302 bool changeInstrs) {
3305 switch (Vals[i].Resolution) {
3315 Val &OtherV =
Other.Vals[Vals[i].OtherVNI->id];
3317 OtherV.ErasableImplicitDef && OtherV.Resolution == CR_Keep;
3318 if (!
Def.isBlock()) {
3338 <<
": " <<
Other.LR <<
'\n');
3343 if (isPrunedValue(i,
Other)) {
3348 Val &OtherV =
Other.Vals[Vals[i].OtherVNI->id];
3350 OtherV.ErasableImplicitDef && OtherV.Resolution == CR_Keep;
3353 LIS->
pruneValue(LR, Def, EraseImpDef ?
nullptr : &EndPoints);
3355 << Def <<
": " << LR <<
'\n');
3413 bool DidPrune =
false;
3418 if (
V.Resolution != CR_Erase &&
3419 (
V.Resolution != CR_Keep || !
V.ErasableImplicitDef || !
V.Pruned))
3426 OtherDef =
V.OtherVNI->def;
3429 LLVM_DEBUG(
dbgs() <<
"\t\tExpecting instruction removal at " << Def
3437 if (ValueOut !=
nullptr &&
3439 (
V.Identical &&
V.Resolution == CR_Erase && ValueOut->
def == Def))) {
3441 <<
" at " << Def <<
"\n");
3446 if (ValueOut->
def == Def)
3449 if (
V.Identical && S.Query(OtherDef).valueOutOrDead()) {
3459 ShrinkMask |= S.LaneMask;
3473 ShrinkMask |= S.LaneMask;
3485 if (VNI->
def == Def)
3491void JoinVals::pruneMainSegments(
LiveInterval &LI,
bool &ShrinkMainRange) {
3495 if (Vals[i].Resolution != CR_Keep)
3500 Vals[i].Pruned =
true;
3501 ShrinkMainRange =
true;
3505void JoinVals::removeImplicitDefs() {
3508 if (
V.Resolution != CR_Keep || !
V.ErasableImplicitDef || !
V.Pruned)
3524 switch (Vals[i].Resolution) {
3529 if (!Vals[i].ErasableImplicitDef || !Vals[i].Pruned)
3541 if (LI !=
nullptr) {
3566 ED = ED.
isValid() ? std::min(ED,
I->start) :
I->start;
3568 LE =
LE.isValid() ? std::max(LE,
I->end) :
I->
end;
3571 NewEnd = std::min(NewEnd, LE);
3573 NewEnd = std::min(NewEnd, ED);
3579 if (S != LR.
begin())
3580 std::prev(S)->end = NewEnd;
3584 dbgs() <<
"\t\tremoved " << i <<
'@' <<
Def <<
": " << LR <<
'\n';
3586 dbgs() <<
"\t\t LHS = " << *LI <<
'\n';
3593 assert(
MI &&
"No instruction to erase");
3602 MI->eraseFromParent();
3616 CP, LIS,
TRI,
true,
true);
3618 CP, LIS,
TRI,
true,
true);
3625 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals)) {
3630 if (!LHSVals.resolveConflicts(RHSVals) ||
3631 !RHSVals.resolveConflicts(LHSVals)) {
3642 LHSVals.pruneValues(RHSVals, EndPoints,
false);
3643 RHSVals.pruneValues(LHSVals, EndPoints,
false);
3645 LHSVals.removeImplicitDefs();
3646 RHSVals.removeImplicitDefs();
3651 LRange.
join(RRange, LHSVals.getAssignments(), RHSVals.getAssignments(),
3656 if (EndPoints.
empty())
3662 dbgs() <<
"\t\trestoring liveness to " << EndPoints.
size() <<
" points: ";
3663 for (
unsigned i = 0, n = EndPoints.
size(); i != n; ++i) {
3664 dbgs() << EndPoints[i];
3668 dbgs() <<
": " << LRange <<
'\n';
3673void RegisterCoalescer::mergeSubRangeInto(
LiveInterval &LI,
3677 unsigned ComposeSubRegIdx) {
3687 joinSubRegRanges(SR, RangeCopy, SR.
LaneMask, CP);
3693bool RegisterCoalescer::isHighCostLiveInterval(
LiveInterval &LI) {
3696 auto &Counter = LargeLIVisitCounter[LI.
reg()];
3704RegisterCoalescer::JoinResult
3711 NewVNInfo, CP, LIS,
TRI,
false, TrackSubRegLiveness);
3713 NewVNInfo, CP, LIS,
TRI,
false, TrackSubRegLiveness);
3717 if (isHighCostLiveInterval(
LHS) || isHighCostLiveInterval(
RHS)) {
3719 <<
RHS.valnos.size() <<
", segments=" <<
RHS.size()
3720 <<
"; LHS valnos=" <<
LHS.valnos.size()
3721 <<
", segments=" <<
LHS.size() <<
'\n');
3722 return JoinResult::Rejected;
3728 if (!LHSVals.mapValues(RHSVals) || !RHSVals.mapValues(LHSVals))
3729 return JoinResult::Deferred;
3733 if (!LHSVals.resolveConflicts(RHSVals) || !RHSVals.resolveConflicts(LHSVals))
3734 return JoinResult::Deferred;
3737 if (
RHS.hasSubRanges() ||
LHS.hasSubRanges()) {
3743 if (!
LHS.hasSubRanges()) {
3745 :
TRI->getSubRegIndexLaneMask(DstIdx);
3749 }
else if (DstIdx != 0) {
3761 if (!
RHS.hasSubRanges()) {
3763 :
TRI->getSubRegIndexLaneMask(SrcIdx);
3764 mergeSubRangeInto(
LHS,
RHS, Mask, CP, DstIdx);
3769 mergeSubRangeInto(
LHS, R, Mask, CP, DstIdx);
3776 LHSVals.pruneMainSegments(
LHS, ShrinkMainRange);
3778 LHSVals.pruneSubRegValues(
LHS, ShrinkMask);
3779 RHSVals.pruneSubRegValues(
LHS, ShrinkMask);
3785 LHSVals.pruneMainSegments(
LHS, ShrinkMainRange);
3786 LHSVals.pruneSubRegValues(
LHS, ShrinkMask);
3794 LHSVals.pruneValues(RHSVals, EndPoints,
true);
3795 RHSVals.pruneValues(LHSVals, EndPoints,
true);
3800 LHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs, &
LHS);
3801 RHSVals.eraseInstrs(ErasedInstrs, ShrinkRegs);
3802 while (!ShrinkRegs.
empty())
3806 checkMergingChangesDbgValues(CP,
LHS, LHSVals,
RHS, RHSVals);
3811 if (RegIt != RegToPHIIdx.
end()) {
3813 for (
unsigned InstID : RegIt->second) {
3814 auto PHIIt = PHIValToPos.
find(InstID);
3819 auto LII =
RHS.find(
SI);
3820 if (LII ==
RHS.end() || LII->start >
SI)
3838 if (PHIIt->second.SubReg && PHIIt->second.SubReg != CP.
getSrcIdx())
3853 auto InstrNums = RegIt->second;
3854 RegToPHIIdx.
erase(RegIt);
3859 if (RegIt != RegToPHIIdx.
end())
3866 LHS.join(
RHS, LHSVals.getAssignments(), RHSVals.getAssignments(), NewVNInfo);
3874 if (!EndPoints.
empty()) {
3878 dbgs() <<
"\t\trestoring liveness to " << EndPoints.
size() <<
" points: ";
3879 for (
unsigned i = 0, n = EndPoints.
size(); i != n; ++i) {
3880 dbgs() << EndPoints[i];
3884 dbgs() <<
": " <<
LHS <<
'\n';
3889 return JoinResult::Joined;
3892RegisterCoalescer::JoinResult
3895 return joinReservedPhysReg(CP) ? JoinResult::Joined : JoinResult::Deferred;
3896 return joinVirtRegs(CP);
3906 for (
auto *
X : ToInsert) {
3907 for (
const auto &
Op :
X->debug_operands()) {
3908 if (
Op.isReg() &&
Op.getReg().isVirtual())
3909 DbgVRegToValues[
Op.getReg()].push_back({
Slot,
X});
3919 for (
auto &
MBB : MF) {
3922 for (
auto &
MI :
MBB) {
3923 if (
MI.isDebugValue()) {
3925 return MO.isReg() && MO.getReg().isVirtual();
3927 ToInsert.push_back(&
MI);
3928 }
else if (!
MI.isDebugOrPseudoInstr()) {
3930 CloseNewDVRange(CurrentSlot);
3939 for (
auto &Pair : DbgVRegToValues)
3943void RegisterCoalescer::checkMergingChangesDbgValues(
CoalescerPair &CP,
3947 JoinVals &RHSVals) {
3949 checkMergingChangesDbgValuesImpl(
Reg,
RHS,
LHS, LHSVals);
3953 checkMergingChangesDbgValuesImpl(
Reg,
LHS,
RHS, RHSVals);
3961void RegisterCoalescer::checkMergingChangesDbgValuesImpl(
Register Reg,
3964 JoinVals &RegVals) {
3966 auto VRegMapIt = DbgVRegToValues.
find(
Reg);
3967 if (VRegMapIt == DbgVRegToValues.
end())
3970 auto &DbgValueSet = VRegMapIt->second;
3971 auto DbgValueSetIt = DbgValueSet.begin();
3972 auto SegmentIt = OtherLR.
begin();
3974 bool LastUndefResult =
false;
3979 auto ShouldUndef = [&RegVals, &
RegLR, &LastUndefResult,
3984 if (LastUndefIdx == Idx)
3985 return LastUndefResult;
3991 auto OtherIt =
RegLR.find(Idx);
3992 if (OtherIt ==
RegLR.end())
4001 auto Resolution = RegVals.getResolution(OtherIt->valno->id);
4003 Resolution != JoinVals::CR_Keep && Resolution != JoinVals::CR_Erase;
4005 return LastUndefResult;
4011 while (DbgValueSetIt != DbgValueSet.end() && SegmentIt != OtherLR.
end()) {
4012 if (DbgValueSetIt->first < SegmentIt->end) {
4015 if (DbgValueSetIt->first >= SegmentIt->start) {
4016 bool HasReg = DbgValueSetIt->second->hasDebugOperandForReg(
Reg);
4017 bool ShouldUndefReg = ShouldUndef(DbgValueSetIt->first);
4018 if (HasReg && ShouldUndefReg) {
4020 DbgValueSetIt->second->setDebugValueUndef();
4034struct MBBPriorityInfo {
4035 MachineBasicBlock *
MBB;
4039 MBBPriorityInfo(MachineBasicBlock *mbb,
unsigned depth,
bool issplit)
4040 :
MBB(mbb),
Depth(depth), IsSplit(issplit) {}
4050 const MBBPriorityInfo *
RHS) {
4052 if (
LHS->Depth !=
RHS->Depth)
4053 return LHS->Depth >
RHS->Depth ? -1 : 1;
4056 if (
LHS->IsSplit !=
RHS->IsSplit)
4057 return LHS->IsSplit ? -1 : 1;
4061 unsigned cl =
LHS->MBB->pred_size() +
LHS->MBB->succ_size();
4062 unsigned cr =
RHS->MBB->pred_size() +
RHS->MBB->succ_size();
4064 return cl > cr ? -1 : 1;
4067 return LHS->MBB->getNumber() <
RHS->MBB->getNumber() ? -1 : 1;
4072 if (!Copy->isCopy())
4075 if (Copy->getOperand(1).isUndef())
4078 Register SrcReg = Copy->getOperand(1).getReg();
4079 Register DstReg = Copy->getOperand(0).getReg();
4087void RegisterCoalescer::lateLiveIntervalUpdate() {
4093 if (!DeadDefs.
empty())
4094 eliminateDeadDefs();
4096 ToBeUpdated.
clear();
4099bool RegisterCoalescer::copyCoalesceWorkList(
4101 bool Progress =
false;
4112 JoinResult
Result = joinCopy(
MI, CurrentErasedInstrs);
4113 Progress |=
Result == JoinResult::Joined;
4114 if (Result != JoinResult::Deferred)
4118 if (!CurrentErasedInstrs.
empty()) {
4120 if (
MI && CurrentErasedInstrs.
count(
MI))
4124 if (
MI && CurrentErasedInstrs.
count(
MI))
4135 assert(Copy.isCopyLike());
4138 if (&
MI != &Copy &&
MI.isCopyLike())
4143bool RegisterCoalescer::applyTerminalRule(
const MachineInstr &Copy)
const {
4148 unsigned SrcSubReg = 0, DstSubReg = 0;
4149 if (!
isMoveInstr(*
TRI, &Copy, SrcReg, DstReg, SrcSubReg, DstSubReg))
4170 if (&
MI == &Copy || !
MI.isCopyLike() ||
MI.getParent() != OrigBB)
4173 unsigned OtherSrcSubReg = 0, OtherSubReg = 0;
4177 if (OtherReg == SrcReg)
4178 OtherReg = OtherSrcReg;
4197 const unsigned PrevSize = WorkList.
size();
4198 if (JoinGlobalCopies) {
4204 if (!
MI.isCopyLike())
4206 bool ApplyTerminalRule = applyTerminalRule(
MI);
4208 if (ApplyTerminalRule)
4213 if (ApplyTerminalRule)
4220 LocalWorkList.
append(LocalTerminals.
begin(), LocalTerminals.
end());
4227 if (MII.isCopyLike()) {
4228 if (applyTerminalRule(MII))
4241 if (copyCoalesceWorkList(CurrList))
4243 std::remove(WorkList.
begin() + PrevSize, WorkList.
end(),
nullptr),
4247void RegisterCoalescer::coalesceLocals() {
4248 copyCoalesceWorkList(LocalWorkList);
4253 LocalWorkList.clear();
4256void RegisterCoalescer::joinAllIntervals() {
4257 LLVM_DEBUG(
dbgs() <<
"********** JOINING INTERVALS ***********\n");
4258 assert(WorkList.
empty() && LocalWorkList.empty() &&
"Old data still around.");
4260 std::vector<MBBPriorityInfo> MBBs;
4261 MBBs.reserve(MF->size());
4263 MBBs.push_back(MBBPriorityInfo(&
MBB,
Loops->getLoopDepth(&
MBB),
4269 unsigned CurrDepth = std::numeric_limits<unsigned>::max();
4270 for (MBBPriorityInfo &
MBB : MBBs) {
4272 if (JoinGlobalCopies &&
MBB.Depth < CurrDepth) {
4274 CurrDepth =
MBB.Depth;
4276 copyCoalesceInMBB(
MBB.MBB);
4278 lateLiveIntervalUpdate();
4283 while (copyCoalesceWorkList(WorkList))
4285 lateLiveIntervalUpdate();
4295 RegisterCoalescer Impl(&LIS,
SI, &
Loops);
4307bool RegisterCoalescerLegacy::runOnMachineFunction(
MachineFunction &MF) {
4308 auto *LIS = &getAnalysis<LiveIntervalsWrapperPass>().getLIS();
4309 auto *
Loops = &getAnalysis<MachineLoopInfoWrapperPass>().getLI();
4310 auto *SIWrapper = getAnalysisIfAvailable<SlotIndexesWrapperPass>();
4311 SlotIndexes *
SI = SIWrapper ? &SIWrapper->getSI() :
nullptr;
4312 RegisterCoalescer Impl(LIS,
SI,
Loops);
4313 return Impl.run(MF);
4317 LLVM_DEBUG(
dbgs() <<
"********** REGISTER COALESCER **********\n"
4318 <<
"********** Function: " << fn.
getName() <<
'\n');
4330 dbgs() <<
"* Skipped as it exposes functions that returns twice.\n");
4350 unsigned SubReg = DebugPHI.second.SubReg;
4352 PHIValPos
P = {
SI,
Reg, SubReg};
4353 PHIValToPos.
insert(std::make_pair(DebugPHI.first,
P));
4354 RegToPHIIdx[
Reg].push_back(DebugPHI.first);
4363 MF->
verify(LIS,
SI,
"Before register coalescing", &
errs());
4365 DbgVRegToValues.
clear();
4401 assert((S.LaneMask & ~MaxMask).none());
4412 auto it = PHIValToPos.
find(
p.first);
4414 p.second.Reg = it->second.Reg;
4415 p.second.SubReg = it->second.SubReg;
4418 PHIValToPos.
clear();
4419 RegToPHIIdx.
clear();
4424 MF->
verify(LIS,
SI,
"After register coalescing", &
errs());
MachineInstrBuilder & UseMI
MachineInstrBuilder MachineInstrBuilder & DefMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file implements the BitVector class.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file defines the DenseSet and SmallDenseSet classes.
const HexagonInstrInfo * TII
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
A common definition of LaneBitmask for use in TableGen and CodeGen.
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 cl::opt< bool > UseTerminalRule("terminal-rule", cl::desc("Apply the terminal rule"), cl::init(true), cl::Hidden)
static bool isLocalCopy(MachineInstr *Copy, const LiveIntervals *LIS)
static bool isSplitEdge(const MachineBasicBlock *MBB)
Return true if this block should be vacated by the coalescer to eliminate branches.
static int compareMBBPriority(const MBBPriorityInfo *LHS, const MBBPriorityInfo *RHS)
C-style comparator that sorts first based on the loop depth of the basic block (the unsigned),...
static cl::opt< unsigned > LargeIntervalSizeThreshold("large-interval-size-threshold", cl::Hidden, cl::desc("If the valnos size of an interval is larger than the threshold, " "it is regarded as a large interval. "), cl::init(100))
static bool isDefInSubRange(LiveInterval &LI, SlotIndex Def)
Check if any of the subranges of LI contain a definition at Def.
static std::pair< bool, bool > addSegmentsWithValNo(LiveRange &Dst, VNInfo *DstValNo, const LiveRange &Src, const VNInfo *SrcValNo)
Copy segments with value number SrcValNo from liverange Src to live range @Dst and use value number D...
static bool isLiveThrough(const LiveQueryResult Q)
static bool isTerminalReg(Register DstReg, const MachineInstr &Copy, const MachineRegisterInfo *MRI)
Check if DstReg is a terminal node.
static cl::opt< bool > VerifyCoalescing("verify-coalescing", cl::desc("Verify machine instrs before and after register coalescing"), cl::Hidden)
register Register static false bool isMoveInstr(const TargetRegisterInfo &tri, const MachineInstr *MI, Register &Src, Register &Dst, unsigned &SrcSub, unsigned &DstSub)
static cl::opt< bool > EnableJoinSplits("join-splitedges", cl::desc("Coalesce copies on split edges (default=subtarget)"), cl::Hidden)
Temporary flag to test critical edge unsplitting.
static cl::opt< bool > EnableJoining("join-liveintervals", cl::desc("Coalesce copies (default=true)"), cl::init(true), cl::Hidden)
static cl::opt< unsigned > LargeIntervalFreqThreshold("large-interval-freq-threshold", cl::Hidden, cl::desc("For a large interval, if it is coalesced with other live " "intervals many times more than the threshold, stop its " "coalescing to control the compile time. "), cl::init(256))
static cl::opt< unsigned > LateRematUpdateThreshold("late-remat-update-threshold", cl::Hidden, cl::desc("During rematerialization for a copy, if the def instruction has " "many other copy uses to be rematerialized, delay the multiple " "separate live interval update work and do them all at once after " "all those rematerialization are done. It will save a lot of " "repeated work. "), cl::init(100))
static cl::opt< cl::boolOrDefault > EnableGlobalCopies("join-globalcopies", cl::desc("Coalesce copies that span blocks (default=subtarget)"), cl::init(cl::boolOrDefault::BOU_UNSET), cl::Hidden)
Temporary flag to test global copy optimization.
SI Optimize VGPR LiveRange
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static DenseMap< Register, std::vector< std::pair< SlotIndex, MachineInstr * > > > buildVRegToDbgValueMap(MachineFunction &MF, const LiveIntervals *Liveness)
static void shrinkToUses(LiveInterval &LI, LiveIntervals &LIS)
PassT::Result * getCachedResult(IRUnitT &IR) const
Get the cached result of an analysis pass for a given IR unit.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addPreservedID(const void *ID)
AnalysisUsage & addUsedIfAvailable()
Add the specified Pass class to the set of analyses used by this pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
bool test(unsigned Idx) const
Returns true if bit Idx is set.
Represents analyses that only rely on functions' control flow.
A helper class for register coalescers.
unsigned getDstIdx() const
Return the subregister index that DstReg will be coalesced into, or 0.
bool isFlipped() const
Return true when getSrcReg is the register being defined by the original copy instruction.
bool isPartial() const
Return true if the original copy instruction did not copy the full register, but was a subreg operati...
bool flip()
Swap SrcReg and DstReg.
bool isPhys() const
Return true if DstReg is a physical register.
bool isCrossClass() const
Return true if DstReg is virtual and NewRC is a smaller register class than DstReg's.
Register getDstReg() const
Return the register (virtual or physical) that will remain after coalescing.
bool isCoalescable(const MachineInstr *) const
Return true if MI is a copy instruction that will become an identity copy after coalescing.
const TargetRegisterClass * getNewRC() const
Return the register class of the coalesced register.
bool setRegisters(const MachineInstr *)
Set registers to match the copy instruction MI.
unsigned getSrcIdx() const
Return the subregister index that SrcReg will be coalesced into, or 0.
Register getSrcReg() const
Return the virtual register that will be coalesced away.
iterator find(const_arg_type_t< KeyT > Val)
bool erase(const KeyT &Val)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
bool isAsCheapAsAMove(const MachineInstr &MI) const override
A live range for subregisters.
LiveInterval - This class represents the liveness of a register, or stack slot.
LLVM_ABI void removeEmptySubRanges()
Removes all subranges without any segments (subranges without segments are not considered valid and s...
bool hasSubRanges() const
Returns true if subregister liveness information is available.
SubRange * createSubRangeFrom(BumpPtrAllocator &Allocator, LaneBitmask LaneMask, const LiveRange &CopyFrom)
Like createSubRange() but the new range is filled with a copy of the liveness information in CopyFrom...
iterator_range< subrange_iterator > subranges()
LLVM_ABI void refineSubRanges(BumpPtrAllocator &Allocator, LaneBitmask LaneMask, std::function< void(LiveInterval::SubRange &)> Apply, const SlotIndexes &Indexes, const TargetRegisterInfo &TRI, unsigned ComposeSubRegIdx=0)
Refines the subranges to support LaneMask.
LLVM_ABI void computeSubRangeUndefs(SmallVectorImpl< SlotIndex > &Undefs, LaneBitmask LaneMask, const MachineRegisterInfo &MRI, const SlotIndexes &Indexes) const
For a given lane mask LaneMask, compute indexes at which the lane is marked undefined by subregister ...
SubRange * createSubRange(BumpPtrAllocator &Allocator, LaneBitmask LaneMask)
Creates a new empty subregister live range.
LLVM_ABI void clearSubRanges()
Removes all subregister liveness information.
bool hasInterval(Register Reg) const
SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const
Return the first index in the given basic block.
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction associated with the given index.
LLVM_ABI bool hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const
Returns true if VNI is killed by any PHI-def values in LI.
SlotIndex InsertMachineInstrInMaps(MachineInstr &MI)
LLVM_ABI bool checkRegMaskInterference(const LiveInterval &LI, BitVector &UsableRegs)
Test if LI is live across any register mask instructions, and compute a bit mask of physical register...
SlotIndexes * getSlotIndexes() const
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
void RemoveMachineInstrFromMaps(MachineInstr &MI)
VNInfo::Allocator & getVNInfoAllocator()
SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const
Return the last index in the given basic block.
LiveInterval & getInterval(Register Reg)
LLVM_ABI void pruneValue(LiveRange &LR, SlotIndex Kill, SmallVectorImpl< SlotIndex > *EndPoints)
If LR has a live value at Kill, prune its live range by removing any liveness reachable from Kill.
void removeInterval(Register Reg)
Interval removal.
LiveRange & getRegUnit(MCRegUnit Unit)
Return the live range for register unit Unit.
LLVM_ABI MachineBasicBlock * intervalIsInOneMBB(const LiveInterval &LI) const
If LI is confined to a single basic block, return a pointer to that block.
LiveRange * getCachedRegUnit(MCRegUnit Unit)
Return the live range for register unit Unit if it has already been computed, or nullptr if it hasn't...
LLVM_ABI void removeVRegDefAt(LiveInterval &LI, SlotIndex Pos)
Remove value number and related live segments of LI and its subranges that start at position Pos.
LLVM_ABI bool shrinkToUses(LiveInterval *li, SmallVectorImpl< MachineInstr * > *dead=nullptr)
After removing some uses of a register, shrink its live range to just the remaining uses.
LLVM_ABI void extendToIndices(LiveRange &LR, ArrayRef< SlotIndex > Indices, ArrayRef< SlotIndex > Undefs)
Extend the live range LR to reach all points in Indices.
LLVM_ABI void dump() const
LLVM_ABI void removePhysRegDefAt(MCRegister Reg, SlotIndex Pos)
Remove value numbers and related live segments starting at position Pos that are part of any liverang...
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
bool isLiveInToMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const
SlotIndex ReplaceMachineInstrInMaps(MachineInstr &MI, MachineInstr &NewMI)
Result of a LiveRange query.
VNInfo * valueOutOrDead() const
Returns the value alive at the end of the instruction, if any.
VNInfo * valueIn() const
Return the value that is live-in to the instruction.
VNInfo * valueOut() const
Return the value leaving the instruction, if any.
VNInfo * valueDefined() const
Return the value defined by this instruction, if any.
SlotIndex endPoint() const
Return the end point of the last live range segment to interact with the instruction,...
bool isKill() const
Return true if the live-in value is killed by this instruction.
Callback methods for LiveRangeEdit owners.
SlotIndex rematerializeAt(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, Register DestReg, const Remat &RM, const TargetRegisterInfo &, bool Late=false, unsigned SubIdx=0, MachineInstr *ReplaceIndexMI=nullptr, LaneBitmask UsedLanes=LaneBitmask::getAll())
rematerializeAt - Rematerialize RM.ParentVNI into DestReg by inserting an instruction into MBB before...
void eliminateDeadDefs(SmallVectorImpl< MachineInstr * > &Dead, ArrayRef< Register > RegsBeingSpilled={})
eliminateDeadDefs - Try to delete machine instructions that are now dead (allDefsAreDead returns true...
This class represents the liveness of a register, stack slot, etc.
VNInfo * getValNumInfo(unsigned ValNo)
getValNumInfo - Returns pointer to the specified val#.
LLVM_ABI iterator addSegment(Segment S)
Add the specified Segment to this range, merging segments as appropriate.
Segments::iterator iterator
const Segment * getSegmentContaining(SlotIndex Idx) const
Return the segment that contains the specified index, or null if there is none.
LLVM_ABI void join(LiveRange &Other, const int *ValNoAssignments, const int *RHSValNoAssignments, SmallVectorImpl< VNInfo * > &NewVNInfo)
join - Join two live ranges (this, and other) together.
bool liveAt(SlotIndex index) const
LLVM_ABI VNInfo * createDeadDef(SlotIndex Def, VNInfo::Allocator &VNIAlloc)
createDeadDef - Make sure the range has a value defined at Def.
LLVM_ABI void removeValNo(VNInfo *ValNo)
removeValNo - Remove all the segments defined by the specified value#.
bool overlaps(const LiveRange &other) const
overlaps - Return true if the intersection of the two live ranges is not empty.
LiveQueryResult Query(SlotIndex Idx) const
Query Liveness at Idx.
VNInfo * getVNInfoBefore(SlotIndex Idx) const
getVNInfoBefore - Return the VNInfo that is live up to but not necessarily including Idx,...
bool verify() const
Walk the range and assert if any invariants fail to hold.
LLVM_ABI VNInfo * MergeValueNumberInto(VNInfo *V1, VNInfo *V2)
MergeValueNumberInto - This method is called when two value numbers are found to be equivalent.
unsigned getNumValNums() const
bool containsOneValue() const
iterator FindSegmentContaining(SlotIndex Idx)
Return an iterator to the segment that contains the specified index, or end() if there is none.
void assign(const LiveRange &Other, BumpPtrAllocator &Allocator)
Copies values numbers and live segments from Other into this range.
VNInfo * getVNInfoAt(SlotIndex Idx) const
getVNInfoAt - Return the VNInfo that is live at Idx, or NULL.
LLVM_ABI iterator find(SlotIndex Pos)
find - Return an iterator pointing to the first segment that ends after Pos, or end().
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
MCRegUnitRootIterator enumerates the root registers of a register unit.
bool isValid() const
Check if the iterator is at the end of the list.
LaneBitmask getLaneMask() const
Returns the combination of all lane masks of register in this class.
bool contains(MCRegister Reg) const
contains - Return true if the specified register is included in this register class.
Wrapper class representing physical registers. Should be passed by value.
An RAII based helper class to modify MachineFunctionProperties when running pass.
bool isInlineAsmBrIndirectTarget() const
Returns true if this is the indirect dest of an INLINEASM_BR.
unsigned pred_size() const
LLVM_ABI bool hasEHPadSuccessor() const
bool isEHPad() const
Returns true if the block is a landing pad.
LLVM_ABI instr_iterator insert(instr_iterator I, MachineInstr *M)
Insert MI into the instruction list before I, possibly inside a bundle.
LLVM_ABI iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
unsigned succ_size() const
LLVM_ABI instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
iterator_range< pred_iterator > predecessors()
void splice(iterator Where, MachineBasicBlock *Other, iterator From)
Take an instruction from MBB 'Other' at the position From, and insert it into this MBB right before '...
MachineInstrBundleIterator< MachineInstr > iterator
LLVM_ABI StringRef getName() const
Return the name of the corresponding LLVM basic block, or an empty string.
Analysis pass which computes a MachineDominatorTree.
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.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
bool exposesReturnsTwice() const
exposesReturnsTwice - Returns true if the function calls setjmp or any other similar functions with a...
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
bool verify(Pass *p=nullptr, const char *Banner=nullptr, raw_ostream *OS=nullptr, bool AbortOnError=true) const
Run the current MachineFunction through the machine code verifier, useful for debugger use.
DenseMap< unsigned, DebugPHIRegallocPos > DebugPHIPositions
Map of debug instruction numbers to the position of their PHI instructions during register allocation...
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
LLVM_ABI void setRegisterDefReadUndef(Register Reg, bool IsUndef=true)
Mark all subregister defs of register Reg with the undef flag.
bool isImplicitDef() const
const MachineBasicBlock * getParent() const
bool isCopyLike() const
Return true if the instruction behaves like a copy.
filtered_mop_range all_defs()
Returns an iterator range over all operands that are (explicit or implicit) register defs.
LLVM_ABI std::pair< bool, bool > readsWritesVirtualRegister(Register Reg, SmallVectorImpl< unsigned > *Ops=nullptr) const
Return a pair of bools (reads, writes) indicating if this instruction reads or writes Reg.
bool isRegTiedToDefOperand(unsigned UseOpIdx, unsigned *DefOpIdx=nullptr) const
Return true if the use operand of the specified index is tied to a def operand.
LLVM_ABI bool isSafeToMove(bool &SawStore) const
Return true if it is safe to move this instruction.
bool isDebugInstr() const
unsigned getNumOperands() const
Retuns the total number of operands.
LLVM_ABI void addOperand(MachineFunction &MF, const MachineOperand &Op)
Add the specified operand to the instruction.
bool isRegTiedToUseOperand(unsigned DefOpIdx, unsigned *UseOpIdx=nullptr) const
Given the index of a register def operand, check if the register def is tied to a source operand,...
LLVM_ABI int findRegisterUseOperandIdx(Register Reg, const TargetRegisterInfo *TRI, bool isKill=false) const
Returns the operand index that is a use of the specific register or -1 if it is not found.
const MCInstrDesc & getDesc() const
Returns the target instruction descriptor of this MachineInstr.
bool isCommutable(QueryType Type=IgnoreBundle) const
Return true if this may be a 2- or 3-address instruction (of the form "X = op Y, Z,...
LLVM_ABI void setDesc(const MCInstrDesc &TID)
Replace the instruction descriptor (thus opcode) of the current instruction with a new one.
LLVM_ABI void substituteRegister(Register FromReg, Register ToReg, unsigned SubIdx, const TargetRegisterInfo &RegInfo)
Replace all occurrences of FromReg with ToReg:SubIdx, properly composing subreg indices where necessa...
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
LLVM_ABI void removeOperand(unsigned OpNo)
Erase an operand from an instruction, leaving it with one fewer operand than it started with.
const MachineOperand & getOperand(unsigned i) const
LLVM_ABI int findRegisterDefOperandIdx(Register Reg, const TargetRegisterInfo *TRI, bool isDead=false, bool Overlap=false) const
Returns the operand index that is a def of the specified register or -1 if it is not found.
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
void setDebugLoc(DebugLoc DL)
Replace current source information with new such.
LLVM_ABI bool allDefsAreDead() const
Return true if all the defs of this instruction are dead.
Analysis pass that exposes the MachineLoopInfo for a machine function.
MachineOperand class - Representation of each machine instruction operand.
void setSubReg(unsigned subReg)
unsigned getSubReg() const
LLVM_ABI void substVirtReg(Register Reg, unsigned SubIdx, const TargetRegisterInfo &)
substVirtReg - Substitute the current register with the virtual subregister Reg:SubReg.
bool readsReg() const
readsReg - Returns true if this operand reads the previous value of its register.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
void setIsDead(bool Val=true)
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
void setIsKill(bool Val=true)
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
LLVM_ABI void substPhysReg(MCRegister Reg, const TargetRegisterInfo &)
substPhysReg - Substitute the current register with the physical register Reg, taking any existing Su...
void setIsUndef(bool Val=true)
bool isEarlyClobber() const
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,...
LLVM_ABI bool hasOneNonDBGUse(Register RegNo) const
hasOneNonDBGUse - Return true if there is exactly one non-Debug use of the specified register.
LLVM_ABI bool recomputeRegClass(Register Reg)
recomputeRegClass - Try to find a legal super-class of Reg's register class that still satisfies the ...
reg_instr_iterator reg_instr_begin(Register RegNo) const
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...
LLVM_ABI MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
iterator_range< use_nodbg_iterator > use_nodbg_operands(Register Reg) const
static reg_instr_iterator reg_instr_end()
bool use_nodbg_empty(Register RegNo) const
use_nodbg_empty - Return true if there are no non-Debug instructions using the specified register.
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
bool reg_nodbg_empty(Register RegNo) const
reg_nodbg_empty - Return true if the only instructions using or defining Reg are Debug instructions.
use_instr_nodbg_iterator use_instr_nodbg_begin(Register RegNo) const
bool shouldTrackSubRegLiveness(const TargetRegisterClass &RC) const
Returns true if liveness for register class RC should be tracked at the subregister level.
LLVM_ABI void setRegClass(Register Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
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...
LLVM_ABI bool isConstantPhysReg(MCRegister PhysReg) const
Returns true if PhysReg is unallocatable and constant throughout the function.
iterator_range< reg_nodbg_iterator > reg_nodbg_operands(Register Reg) const
defusechain_instr_iterator< true, true, false, true > reg_instr_iterator
reg_instr_iterator/reg_instr_begin/reg_instr_end - Walk all defs and uses of the specified register,...
LLVM_ABI const TargetRegisterClass * constrainRegClass(Register Reg, const TargetRegisterClass *RC, unsigned MinNumRegs=0)
constrainRegClass - Constrain the register class of the specified virtual register to be a common sub...
iterator_range< use_iterator > use_operands(Register Reg) const
iterator_range< reg_instr_nodbg_iterator > reg_nodbg_instructions(Register Reg) const
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
bool isProperSubClass(const TargetRegisterClass *RC) const
isProperSubClass - Returns true if RC has a legal super-class with more allocatable registers.
unsigned getNumAllocatableRegs(const TargetRegisterClass *RC) const
getNumAllocatableRegs - Returns the number of actually allocatable registers in RC in the current fun...
LLVM_ABI void runOnMachineFunction(const MachineFunction &MF, bool Rev=false)
runOnFunction - Prepare to answer questions about MF.
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
Wrapper class representing virtual and physical registers.
MCRegister asMCReg() const
Utility to check-convert this value to a MCRegister.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
constexpr unsigned id() const
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
SlotIndex - An opaque wrapper around machine indexes.
static bool isSameInstr(SlotIndex A, SlotIndex B)
isSameInstr - Return true if A and B refer to the same instruction.
bool isEarlyClobber() const
isEarlyClobber - Returns true if this is an early-clobber slot.
bool isValid() const
Returns true if this is a valid index.
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.
bool isDead() const
isDead - Returns true if this is a dead def kill slot.
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
Returns the basic block which the given index falls in.
SlotIndex getMBBEndIdx(unsigned Num) const
Returns the index past the last valid index in the given basic block.
SlotIndex getNextNonNullIndex(SlotIndex Index)
Returns the next non-null index, if one exists.
SlotIndex getInstructionIndex(const MachineInstr &MI, bool IgnoreBundle=false) const
Returns the base index for the given instruction.
SlotIndex getMBBStartIdx(unsigned Num) const
Returns the first index in the given basic block number.
SlotIndex getIndexBefore(const MachineInstr &MI) const
getIndexBefore - Returns the index of the last indexed instruction before MI, or the start index of i...
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction for the given index, or null if the given index has no instruction associated...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
bool erase(PtrType Ptr)
Remove pointer from the set.
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.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
iterator erase(const_iterator CI)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
pointer data()
Return a pointer to the vector's buffer, even if empty().
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.
static const unsigned CommuteAnyOperandIndex
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
virtual bool enableJoinGlobalCopies() const
True if the subtarget should enable joining global copies.
virtual const TargetInstrInfo * getInstrInfo() const
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
VNInfo - Value Number Information.
void markUnused()
Mark this value as unused.
BumpPtrAllocator Allocator
bool isUnused() const
Returns true if this value is unused.
unsigned id
The ID number of this value.
SlotIndex def
The index of the defining instruction.
bool isPHIDef() const
Returns true if this value is defined by a PHI instruction (or was, PHI instructions may have been el...
static LLVM_ABI bool allUsesAvailableAt(const MachineInstr *MI, SlotIndex UseIdx, const LiveIntervals &LIS, const MachineRegisterInfo &MRI, const TargetInstrInfo &TII)
std::pair< iterator, bool > insert(const ValueT &V)
size_type count(const_arg_type_t< ValueT > V) const
Return 1 if the specified key is in the set, 0 otherwise.
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
This namespace contains all of the command line option processing machinery.
initializer< Ty > init(const Ty &Val)
DXILDebugInfoMap run(Module &M)
NodeAddr< DefNode * > Def
UseMask
Specifies the way the mask should be analyzed for undefs/poisonous elements in the shuffle mask.
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.
LLVM_ABI char & RegisterCoalescerID
RegisterCoalescer - This pass merges live ranges to eliminate copies.
LLVM_ABI char & MachineDominatorsID
MachineDominators - This pass is a machine dominators analysis pass.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Printable PrintLaneMask(LaneBitmask LaneMask)
Create Printable object to print LaneBitmasks on a raw_ostream.
LLVM_ABI Printable printRegUnit(MCRegUnit Unit, const TargetRegisterInfo *TRI)
Create Printable object to print register units on a raw_ostream.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
auto unique(Range &&R, Predicate P)
auto upper_bound(R &&Range, T &&Value)
Provide wrappers to std::upper_bound which take ranges instead of having to pass begin/end explicitly...
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.
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
MutableArrayRef(T &OneElt) -> MutableArrayRef< T >
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
DWARFExpression::Operation Op
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI void eraseInstrs(ArrayRef< MachineInstr * > DeadInstrs, MachineRegisterInfo &MRI, LostDebugLocObserver *LocObserver=nullptr)
void array_pod_sort(IteratorTy Start, IteratorTy End)
array_pod_sort - This sorts an array with the specified start and end extent.
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
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.
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.
static constexpr LaneBitmask getLane(unsigned Lane)
static constexpr LaneBitmask getAll()
constexpr bool any() const
static constexpr LaneBitmask getNone()
Remat - Information needed to rematerialize at a specific location.
This represents a simple continuous liveness interval for a value.