40#include "llvm/Config/llvm-config.h"
61#define DEBUG_TYPE "regalloc"
77 OS <<
"Live intervals for machine function: " << MF.
getName() <<
":\n";
85 "Live Interval Analysis",
false,
false)
102 cl::desc(
"Eagerly compute live intervals for all physreg units."));
110 "Use segment set for the computation of the live ranges of physregs."));
130 MachineFunctionAnalysisManager::Invalidator &Inv) {
142void LiveIntervals::clear() {
144 for (
unsigned i = 0, e = VirtRegIntervals.size(); i != e; ++i)
146 VirtRegIntervals.clear();
147 RegMaskSlots.clear();
149 RegMaskBlocks.
clear();
153 RegUnitRanges.clear();
156 VNInfoAllocator.Reset();
166 LICalc = std::make_unique<LiveIntervalCalc>();
173 computeLiveInRegUnits();
178 for (MCRegUnit Unit :
TRI->regunits())
184 OS <<
"********** INTERVALS **********\n";
187 for (
unsigned Unit = 0, UnitE = RegUnitRanges.size(); Unit != UnitE; ++Unit)
189 OS << printRegUnit(static_cast<MCRegUnit>(Unit), TRI) <<
' ' << *LR
193 for (
unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
207void LiveIntervals::printInstrs(
raw_ostream &OS)
const {
208 OS <<
"********** MACHINEINSTRS **********\n";
209 MF->
print(OS, Indexes);
212#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
218#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
228bool LiveIntervals::computeVirtRegInterval(
LiveInterval &LI) {
229 assert(LICalc &&
"LICalc not initialized.");
230 assert(LI.
empty() &&
"Should only compute empty intervals.");
233 return computeDeadValues(LI,
nullptr);
236void LiveIntervals::computeVirtRegs() {
237 for (
unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
239 if (MRI->reg_nodbg_empty(
Reg))
242 bool NeedSplit = computeVirtRegInterval(LI);
250void LiveIntervals::computeRegMasks() {
251 RegMaskBlocks.resize(MF->getNumBlockIDs());
254 for (
const MachineBasicBlock &
MBB : *MF) {
255 std::pair<unsigned, unsigned> &RMB = RegMaskBlocks[
MBB.
getNumber()];
256 RMB.first = RegMaskSlots.size();
260 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&
MBB));
261 RegMaskBits.push_back(Mask);
268 if (
auto *Mask = TRI->getCustomEHPadPreservedMask(*
MBB.
getParent())) {
269 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&
MBB));
270 RegMaskBits.push_back(Mask);
273 for (
const MachineInstr &
MI :
MBB) {
274 for (
const MachineOperand &MO :
MI.operands()) {
277 RegMaskSlots.push_back(Indexes->getInstructionIndex(
MI).getRegSlot());
278 RegMaskBits.push_back(MO.getRegMask());
287 RegMaskSlots.push_back(
288 Indexes->getInstructionIndex(
MBB.
back()).getRegSlot());
289 RegMaskBits.push_back(Mask);
293 RMB.second = RegMaskSlots.size() - RMB.first;
299 assert(&Orig != &SplitBB &&
"expected distinct blocks");
300 std::pair<unsigned, unsigned> &OrigRMB = RegMaskBlocks[Orig.
getNumber()];
301 std::pair<unsigned, unsigned> &SplitRMB = RegMaskBlocks[SplitBB.
getNumber()];
309 if (KeptCount == OrigRMB.second)
312 SplitRMB.first = OrigRMB.first + KeptCount;
313 SplitRMB.second = OrigRMB.second - KeptCount;
314 OrigRMB.second = KeptCount;
317void LiveIntervals::insertMBBInMapsImpl(
319#ifdef EXPENSIVE_CHECKS
320 assert((!AssumeRegMaskEmpty ||
322 [](
const MachineInstr &
MI) {
323 return any_of(
MI.operands(), [](
const MachineOperand &MO) {
324 return MO.isRegMask();
327 "insertMBBInMaps expects a block with no regmask operands; use "
328 "LiveIntervals::splitAt() to split a block containing calls");
330 Indexes->insertMBBInMaps(
MBB);
332 "Blocks must be added in order.");
333 RegMaskBlocks.push_back(std::make_pair(RegMaskSlots.size(), 0));
350void LiveIntervals::computeRegUnitRange(
LiveRange &LR, MCRegUnit Unit) {
351 assert(LICalc &&
"LICalc not initialized.");
359 bool IsReserved =
false;
360 for (MCRegUnitRootIterator Root(Unit, TRI); Root.isValid(); ++Root) {
361 bool IsRootReserved =
true;
363 if (!MRI->reg_empty(
Reg))
364 LICalc->createDeadDefs(LR,
Reg);
367 if (!MRI->isReserved(
Reg))
368 IsRootReserved =
false;
370 IsReserved |= IsRootReserved;
372 assert(IsReserved == MRI->isReservedRegUnit(Unit) &&
373 "reserved computation mismatch");
378 for (MCRegUnitRootIterator Root(Unit, TRI); Root.isValid(); ++Root) {
380 if (!MRI->reg_empty(
Reg))
381 LICalc->extendToUses(LR,
Reg);
394void LiveIntervals::computeLiveInRegUnits() {
395 RegUnitRanges.resize(TRI->getNumRegUnits());
396 LLVM_DEBUG(
dbgs() <<
"Computing live-in reg-units in ABI blocks.\n");
402 for (
const MachineBasicBlock &
MBB : *MF) {
408 SlotIndex Begin = Indexes->getMBBStartIdx(&
MBB);
411 for (MCRegUnit Unit : TRI->regunits(LI.PhysReg)) {
415 LR = RegUnitRanges[
static_cast<unsigned>(
Unit)] =
429 for (MCRegUnit Unit : NewRanges)
430 computeRegUnitRange(*RegUnitRanges[
static_cast<unsigned>(Unit)], Unit);
435 for (
VNInfo *VNI : VNIs) {
443void LiveIntervals::extendSegmentsToUses(
LiveRange &Segments,
444 ShrinkToUsesWorkList &WorkList,
447 SmallPtrSet<VNInfo*, 8> UsedPHIs;
449 SmallPtrSet<const MachineBasicBlock*, 16> LiveOut;
451 auto getSubRange = [](
const LiveInterval &
I, LaneBitmask
M)
455 for (
const LiveInterval::SubRange &SR :
I.subranges()) {
456 if ((SR.LaneMask & M).any()) {
457 assert(SR.LaneMask == M &&
"Expecting lane masks to match exactly");
465 const LiveRange &OldRange = getSubRange(LI, LaneMask);
468 while (!WorkList.empty()) {
469 SlotIndex Idx = WorkList.back().first;
470 VNInfo *VNI = WorkList.back().second;
472 const MachineBasicBlock *
MBB = Indexes->getMBBFromIndex(Idx.
getPrevSlot());
473 SlotIndex BlockStart = Indexes->getMBBStartIdx(
MBB);
476 if (VNInfo *ExtVNI =
Segments.extendInBlock(BlockStart, Idx)) {
477 assert(ExtVNI == VNI &&
"Unexpected existing value number");
481 !UsedPHIs.
insert(VNI).second)
485 if (!LiveOut.
insert(Pred).second)
487 SlotIndex Stop = Indexes->getMBBEndIdx(Pred);
490 WorkList.push_back(std::make_pair(Stop, PVNI));
497 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
501 if (!LiveOut.
insert(Pred).second)
503 SlotIndex Stop = Indexes->getMBBEndIdx(Pred);
505 assert(OldVNI == VNI &&
"Wrong value out of predecessor");
507 WorkList.push_back(std::make_pair(Stop, VNI));
513 "Missing value out of predecessor for main range");
517 "Missing value out of predecessor for subrange");
530 bool NeedsCleanup =
false;
540 ShrinkToUsesWorkList WorkList;
545 if (
UseMI.isDebugInstr() || !
UseMI.readsVirtualRegister(Reg))
556 <<
"Warning: Instr claims to read non-existent value in "
565 WorkList.
push_back(std::make_pair(Idx, VNI));
577 bool CanSeparate = computeDeadValues(*li, dead);
584 bool MayHaveSplitComponents =
false;
591 assert(
I != LI.
end() &&
"Missing segment for VNI");
597 if ((
I == LI.
begin() || std::prev(
I)->end < Def) && !VNI->
isPHIDef()) {
599 MI->setRegisterDefReadUndef(VReg);
603 if (
I->end !=
Def.getDeadSlot())
609 LLVM_DEBUG(
dbgs() <<
"Dead PHI at " << Def <<
" may separate interval\n");
613 assert(
MI &&
"No instruction defining live value");
614 MI->addRegisterDead(LI.
reg(), TRI);
616 if (dead &&
MI->allDefsAreDead()) {
621 MayHaveSplitComponents =
true;
623 return MayHaveSplitComponents;
628 assert(Reg.isVirtual() &&
"Can only shrink virtual registers");
630 ShrinkToUsesWorkList WorkList;
639 unsigned SubReg = MO.getSubReg();
641 LaneBitmask LaneMask = TRI->getSubRegIndexLaneMask(SubReg);
642 if ((LaneMask & SR.
LaneMask).none())
664 WorkList.
push_back(std::make_pair(Idx, VNI));
670 extendSegmentsToUses(NewLR, WorkList, Reg, SR.
LaneMask);
680 assert(Segment !=
nullptr &&
"Missing segment for VNI");
686 <<
" may separate interval\n");
698 assert(LICalc &&
"LICalc not initialized.");
701 LICalc->extend(LR, Idx, 0, Undefs);
715 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB);
726 if (EndPoints) EndPoints->
push_back(MBBEnd);
741 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(
MBB);
759 if (EndPoints) EndPoints->
push_back(MBBEnd);
773 for (
unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
775 if (MRI->reg_nodbg_empty(Reg))
791 auto [Unit, Bitmask] = *UI;
793 if (TRI->isArtificialRegUnit(Unit))
794 ArtificialLanes |= Bitmask;
805 if (RI->end.isBlock())
819 for (
auto &RUP : RU) {
822 if (
I == RURange.
end())
825 if (
I == RURange.
end() ||
I->start >= RI->end)
831 if (MRI->subRegLivenessEnabled()) {
850 DefinedLanesMask = ArtificialLanes;
853 if (Segment.
start >= RI->end)
855 if (Segment.
end == RI->end) {
856 DefinedLanesMask |= SR.LaneMask;
863 bool IsFullWrite =
false;
865 if (!MO.isReg() || MO.getReg() != Reg)
869 unsigned SubReg = MO.getSubReg();
870 LaneBitmask UseMask = SubReg ? TRI->getSubRegIndexLaneMask(SubReg)
871 : MRI->getMaxLaneMaskForVReg(Reg);
872 if ((UseMask & ~DefinedLanesMask).any())
874 }
else if (MO.getSubReg() == 0) {
888 if (
N != LI.
end() &&
N->start == RI->end)
893 MI->addRegisterKilled(Reg,
nullptr);
896 MI->clearRegisterKills(Reg,
nullptr);
924 return MBB1 == MBB2 ? MBB1 :
nullptr;
930 if (
PHI->isUnused() || !
PHI->isPHIDef())
954 const auto *MF =
MBB->getParent();
969 float Weight = isDef + isUse;
997 if (
MI->getOpcode() != TargetOpcode::STATEPOINT)
1039 auto unionBitMask = [&](
unsigned Idx) {
1043 UsableRegs.
resize(TRI->getNumRegs(),
true);
1050 assert(*SlotI >= LiveI->start);
1052 while (*SlotI < LiveI->end) {
1054 unionBitMask(SlotI - Slots.
begin());
1055 if (++SlotI == SlotE)
1059 if (*SlotI == LiveI->end)
1062 unionBitMask(SlotI++ - Slots.
begin());
1065 if (++LiveI == LiveE || SlotI == SlotE || *SlotI > LI.
endIndex())
1067 while (LiveI->end < *SlotI)
1070 while (*SlotI < LiveI->start)
1071 if (++SlotI == SlotE)
1095 : LIS(LIS), MRI(MRI), TRI(TRI), OldIdx(OldIdx), NewIdx(NewIdx),
1096 UpdateFlags(UpdateFlags) {}
1103 if (UpdateFlags && !MRI.isReservedRegUnit(Unit))
1104 return &LIS.getRegUnit(Unit);
1105 return LIS.getCachedRegUnit(Unit);
1111 LLVM_DEBUG(
dbgs() <<
"handleMove " << OldIdx <<
" -> " << NewIdx <<
": "
1113 bool hasRegMask =
false;
1124 MO.setIsKill(
false);
1130 if (Reg.isVirtual()) {
1133 unsigned SubReg = MO.getSubReg();
1134 LaneBitmask LaneMask = SubReg ? TRI.getSubRegIndexLaneMask(SubReg)
1135 : MRI.getMaxLaneMaskForVReg(Reg);
1137 if ((S.LaneMask & LaneMask).none())
1150 unsigned SubReg = MO.getSubReg();
1151 LaneBitmask LaneMask = SubReg ? TRI.getSubRegIndexLaneMask(SubReg)
1152 : MRI.getMaxLaneMaskForVReg(Reg);
1154 if ((S.LaneMask & LaneMask).none() || LI.
covers(S))
1157 LIS.constructMainRangeFromSubranges(LI);
1167 for (MCRegUnit Unit : TRI.regunits(Reg.asMCReg()))
1172 updateRegMaskSlots();
1180 if (!Updated.
insert(&LR).second)
1191 dbgs() <<
":\t" << LR <<
'\n';
1196 handleMoveUp(LR, VRegOrUnit, LaneMask);
1221 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(OldIdxIn->end))
1223 if (MOP.isReg() && MOP.isUse())
1224 MOP.setIsKill(
false);
1235 if (NewIdxIn ==
E ||
1238 Prev->end = NewIdx.getRegSlot();
1241 OldIdxIn->end =
Next->start;
1248 OldIdxIn->end = NewIdx.getRegSlot(OldIdxIn->end.isEarlyClobber());
1258 OldIdxOut = OldIdxIn;
1265 VNInfo *OldIdxVNI = OldIdxOut->valno;
1266 assert(OldIdxVNI->
def == OldIdxOut->start &&
"Inconsistent def");
1270 SlotIndex NewIdxDef = NewIdx.getRegSlot(OldIdxOut->start.isEarlyClobber());
1272 OldIdxVNI->
def = NewIdxDef;
1273 OldIdxOut->start = OldIdxVNI->
def;
1282 = LR.
advanceTo(OldIdxOut, NewIdx.getRegSlot());
1283 bool OldIdxDefIsDead = OldIdxOut->end.isDead();
1284 if (!OldIdxDefIsDead &&
1288 if (OldIdxOut != LR.
begin() &&
1290 OldIdxOut->start)) {
1295 IPrev->end = OldIdxOut->end;
1299 assert(INext !=
E &&
"Must have following segment");
1305 INext->start = OldIdxOut->end;
1306 INext->valno->def = INext->start;
1309 if (AfterNewIdx ==
E) {
1314 std::copy(std::next(OldIdxOut),
E, OldIdxOut);
1317 *NewSegment = LiveRange::Segment(NewIdxDef, NewIdxDef.
getDeadSlot(),
1319 DefVNI->
def = NewIdxDef;
1322 Prev->end = NewIdxDef;
1328 std::copy(std::next(OldIdxOut), std::next(AfterNewIdx), OldIdxOut);
1335 *NewSegment = LiveRange::Segment(NewIdxDef, Prev->end, Prev->valno);
1336 Prev->valno->def = NewIdxDef;
1338 *Prev = LiveRange::Segment(Prev->start, NewIdxDef, DefVNI);
1339 DefVNI->
def = Prev->start;
1343 *Prev = LiveRange::Segment(NewIdxDef, AfterNewIdx->start, DefVNI);
1344 DefVNI->
def = NewIdxDef;
1345 assert(DefVNI != AfterNewIdx->valno);
1351 if (AfterNewIdx !=
E &&
1355 assert(AfterNewIdx->valno != OldIdxVNI &&
"Multiple defs of value?");
1363 assert(AfterNewIdx != OldIdxOut &&
"Inconsistent iterators");
1364 std::copy(std::next(OldIdxOut), AfterNewIdx, OldIdxOut);
1367 VNInfo *NewSegmentVNI = OldIdxVNI;
1368 NewSegmentVNI->
def = NewIdxDef;
1369 *NewSegment = LiveRange::Segment(NewIdxDef, NewIdxDef.
getDeadSlot(),
1376 void handleMoveUp(
LiveRange &LR, VirtRegOrUnit VRegOrUnit,
1377 LaneBitmask LaneMask) {
1398 SlotIndex DefBeforeOldIdx
1399 = std::max(OldIdxIn->start.getDeadSlot(),
1400 NewIdx.getRegSlot(OldIdxIn->end.isEarlyClobber()));
1401 OldIdxIn->end = findLastUseBefore(DefBeforeOldIdx, VRegOrUnit, LaneMask);
1404 OldIdxOut = std::next(OldIdxIn);
1408 OldIdxOut = OldIdxIn;
1409 OldIdxIn = OldIdxOut != LR.
begin() ? std::prev(OldIdxOut) :
E;
1416 VNInfo *OldIdxVNI = OldIdxOut->valno;
1417 assert(OldIdxVNI->
def == OldIdxOut->start &&
"Inconsistent def");
1418 bool OldIdxDefIsDead = OldIdxOut->end.isDead();
1421 SlotIndex NewIdxDef = NewIdx.
getRegSlot(OldIdxOut->start.isEarlyClobber());
1424 assert(NewIdxOut->valno != OldIdxVNI &&
1425 "Same value defined more than once?");
1427 if (!OldIdxDefIsDead) {
1430 OldIdxVNI->
def = NewIdxDef;
1431 OldIdxOut->start = NewIdxDef;
1440 if (!OldIdxDefIsDead) {
1442 if (OldIdxIn !=
E &&
1446 assert(NewIdxIn == LR.
find(NewIdx.getBaseIndex()));
1447 const SlotIndex SplitPos = NewIdxDef;
1448 OldIdxVNI = OldIdxIn->valno;
1450 SlotIndex NewDefEndPoint = std::next(NewIdxIn)->end;
1452 if (OldIdxIn != LR.
begin() &&
1460 NewDefEndPoint = std::min(OldIdxIn->start,
1461 std::next(NewIdxOut)->start);
1465 OldIdxOut->valno->def = OldIdxIn->start;
1466 *OldIdxOut = LiveRange::Segment(OldIdxIn->start, OldIdxOut->end,
1472 std::copy_backward(NewIdxIn, OldIdxIn, OldIdxOut);
1479 *NewSegment = LiveRange::Segment(
Next->start, SplitPos,
1482 *
Next = LiveRange::Segment(SplitPos, NewDefEndPoint, OldIdxVNI);
1483 Next->valno->def = SplitPos;
1487 *NewSegment = LiveRange::Segment(SplitPos,
Next->start, OldIdxVNI);
1488 NewSegment->valno->def = SplitPos;
1492 OldIdxOut->start = NewIdxDef;
1493 OldIdxVNI->
def = NewIdxDef;
1495 OldIdxIn->end = NewIdxDef;
1497 }
else if (OldIdxIn !=
E
1508 std::copy_backward(NewIdxOut, OldIdxOut, std::next(OldIdxOut));
1512 *NewIdxOut = LiveRange::Segment(
1513 NewIdxOut->start, NewIdxDef.
getRegSlot(), NewIdxOut->valno);
1514 *(NewIdxOut + 1) = LiveRange::Segment(
1515 NewIdxDef.
getRegSlot(), (NewIdxOut + 1)->end, OldIdxVNI);
1516 OldIdxVNI->
def = NewIdxDef;
1522 const SlotIndex RetagEnd = OldIdxOut->end;
1524 Idx != LR.
end() && Idx->start < RetagEnd;) {
1525 Idx->valno = OldIdxVNI;
1531 if (MachineInstr *KillMI = LIS.getInstructionFromIndex(NewIdx))
1532 for (MIBundleOperands MO(*KillMI); MO.isValid(); ++MO)
1533 if (MO->isReg() && !MO->isUse())
1534 MO->setIsDead(
false);
1541 std::copy_backward(NewIdxOut, OldIdxOut, std::next(OldIdxOut));
1544 VNInfo *NewSegmentVNI = OldIdxVNI;
1545 *NewSegment = LiveRange::Segment(NewIdxDef, NewIdxDef.
getDeadSlot(),
1547 NewSegmentVNI->
def = NewIdxDef;
1552 void updateRegMaskSlots() {
1555 assert(RI != LIS.RegMaskSlots.end() && *RI == OldIdx.getRegSlot() &&
1556 "No RegMask at OldIdx.");
1557 *RI = NewIdx.getRegSlot();
1558 assert((RI == LIS.RegMaskSlots.begin() ||
1560 "Cannot move regmask instruction above another call");
1561 assert((std::next(RI) == LIS.RegMaskSlots.end() ||
1563 "Cannot move regmask instruction below another call");
1567 SlotIndex findLastUseBefore(SlotIndex Before, VirtRegOrUnit VRegOrUnit,
1568 LaneBitmask LaneMask) {
1570 SlotIndex LastUse = Before;
1571 for (MachineOperand &MO :
1575 unsigned SubReg = MO.getSubReg();
1576 if (SubReg != 0 && LaneMask.
any()
1577 && (TRI.getSubRegIndexLaneMask(SubReg) & LaneMask).none())
1580 const MachineInstr &
MI = *MO.getParent();
1581 SlotIndex InstSlot = LIS.getSlotIndexes()->getInstructionIndex(
MI);
1582 if (InstSlot > LastUse && InstSlot < OldIdx)
1590 assert(Before < OldIdx &&
"Expected upwards move");
1591 SlotIndexes *Indexes = LIS.getSlotIndexes();
1599 if (
MI->getParent() ==
MBB)
1603 while (MII != Begin) {
1604 if ((--MII)->isDebugOrPseudoInstr())
1613 for (MIBundleOperands MO(*MII); MO.isValid(); ++MO)
1614 if (MO->isReg() && !MO->isUndef() && MO->getReg().isPhysical() &&
1615 TRI.hasRegUnit(MO->getReg(), VRegOrUnit.
asMCRegUnit()))
1626 assert((!
MI.isBundled() ||
MI.getOpcode() == TargetOpcode::BUNDLE) &&
1627 "Cannot move instruction in bundle");
1628 SlotIndex OldIndex = Indexes->getInstructionIndex(
MI);
1629 Indexes->removeMachineInstrFromMaps(
MI);
1630 SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(
MI);
1633 "Cannot handle moves across basic block boundaries.");
1635 HMEditor HME(*
this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
1642 "Bundle start is not a bundle");
1644 const SlotIndex NewIndex = Indexes->insertMachineInstrInMaps(BundleStart);
1649 while (
I != BundleEnd) {
1650 if (!Indexes->hasIndex(*
I))
1652 SlotIndex OldIndex = Indexes->getInstructionIndex(*
I,
true);
1654 Indexes->removeMachineInstrFromMaps(*
I,
true);
1658 HMEditor HME(*
this, *MRI, *TRI, OldIndex, NewIndex, UpdateFlags);
1668 if (Reg.isVirtual() &&
hasInterval(Reg) && !MO.isUndef()) {
1684 if (LII != LR.
end() && LII->start < EndIdx) {
1685 lastUseIdx = LII->end;
1686 }
else if (LII == LR.
begin()) {
1695 MachineInstr &
MI = *
I;
1696 if (
MI.isDebugOrPseudoInstr())
1705 for (
const MachineOperand &MO :
MI.operands()) {
1706 if (!MO.isReg() || MO.getReg() !=
Reg)
1709 unsigned SubReg = MO.getSubReg();
1710 LaneBitmask
Mask = TRI->getSubRegIndexLaneMask(SubReg);
1711 if ((Mask & LaneMask).
none())
1715 if (!isStartValid) {
1716 if (LII->end.isDead()) {
1718 if (LII != LR.
begin())
1723 if (MO.getSubReg() && !MO.isUndef())
1726 lastUseIdx = SlotIndex();
1736 }
else if (LII->start != instrIdx.
getRegSlot()) {
1738 LiveRange::Segment S(instrIdx.
getRegSlot(), lastUseIdx, VNI);
1742 if (MO.getSubReg() && !MO.isUndef())
1745 lastUseIdx = SlotIndex();
1746 }
else if (MO.isUse()) {
1750 if (!isEndValid && !LII->end.isBlock())
1759 if (!isStartValid && LII->end.isDead())
1770 while (Begin !=
MBB->begin() && !Indexes->hasIndex(*std::prev(Begin)))
1772 while (End !=
MBB->end() && !Indexes->hasIndex(*End))
1776 if (End ==
MBB->end())
1781 Indexes->repairIndexesInRange(
MBB, Begin, End);
1788 if (
MI.isDebugOrPseudoInstr())
1791 if (MO.isReg() && MO.getReg().isVirtual()) {
1794 MRI->shouldTrackSubRegLiveness(Reg)) {
1801 }
else if (MO.isDef()) {
1804 unsigned SubReg = MO.getSubReg();
1805 LaneBitmask Mask = TRI->getSubRegIndexLaneMask(SubReg);
1808 return SR.LaneMask == Mask;
1823 for (
Register Reg : RegsToRepair) {
1824 if (!Reg.isVirtual())
1833 repairOldRegInRange(Begin, End, EndIdx, S, Reg, S.LaneMask);
1836 repairOldRegInRange(Begin, End, EndIdx, LI, Reg);
1841 for (MCRegUnit Unit : TRI->regunits(Reg)) {
1852 if (VNI !=
nullptr) {
1859 if (
VNInfo *SVNI = S.getVNInfoAt(Pos))
1861 S.removeValNo(SVNI);
1869 unsigned NumComp = ConEQ.
Classify(LI);
1872 LLVM_DEBUG(
dbgs() <<
" Split " << NumComp <<
" components: " << LI <<
'\n');
1874 for (
unsigned I = 1;
I < NumComp; ++
I) {
1875 Register NewVReg = MRI->cloneVirtualRegister(Reg);
1883 assert(LICalc &&
"LICalc not initialized.");
1885 LICalc->constructMainRangeFromSubranges(LI);
MachineInstrBuilder & UseMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
This file builds on the ADT/GraphTraits.h file to build generic depth first graph iterator.
const HexagonInstrInfo * TII
A common definition of LaneBitmask for use in TableGen and CodeGen.
static cl::opt< bool > EnablePrecomputePhysRegs("precompute-phys-liveness", cl::Hidden, cl::desc("Eagerly compute live intervals for all physreg units."))
static bool hasLiveThroughUse(const MachineInstr *MI, Register Reg)
Check whether use of reg in MI is live-through.
static void createSegmentsForValues(LiveRange &LR, iterator_range< LiveInterval::vni_iterator > VNIs)
Register const TargetRegisterInfo * TRI
std::pair< uint64_t, uint64_t > Interval
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)
SI Optimize VGPR LiveRange
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
Toolkit used by handleMove to trim or extend live intervals.
HMEditor(LiveIntervals &LIS, const MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI, SlotIndex OldIdx, SlotIndex NewIdx, bool UpdateFlags)
LiveRange * getRegUnitLI(MCRegUnit Unit)
void updateAllRanges(MachineInstr *MI)
Update all live ranges touched by MI, assuming a move from OldIdx to NewIdx.
This templated class represents "all analyses that operate over <aparticular IR unit>" (e....
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.
LLVM_ABI AnalysisUsage & addRequiredTransitiveID(char &ID)
AnalysisUsage & addPreservedID(const void *ID)
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:
AnalysisUsage & addRequiredTransitive()
Represent a constant reference to an array (0 or more elements consecutively in memory),...
void resize(unsigned N, bool t=false)
Grow or shrink the bitvector.
void clear()
Removes all bits from the bitvector.
void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Clear a bit in this vector for every '0' bit in Mask.
ConnectedVNInfoEqClasses - Helper class that can divide VNInfos in a LiveInterval into equivalence cl...
LLVM_ABI void Distribute(LiveInterval &LI, LiveInterval *LIV[], MachineRegisterInfo &MRI)
Distribute values in LI into a separate LiveIntervals for each connected component.
LLVM_ABI unsigned Classify(const LiveRange &LR)
Classify the values in LR into connected components.
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.
iterator_range< subrange_iterator > subranges()
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 ...
LLVM_ABI Result run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
bool runOnMachineFunction(MachineFunction &) override
Pass entry point; Calculates LiveIntervals.
LiveIntervalsWrapperPass()
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
LLVM_ABI ~LiveIntervals()
LLVM_ABI void repairIntervalsInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, ArrayRef< Register > OrigRegs)
Update live intervals for instructions in a range of iterators.
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.
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...
LLVM_ABI void handleMove(MachineInstr &MI, bool UpdateFlags=false)
Call this method to notify LiveIntervals that instruction MI has been moved within a basic block.
SlotIndexes * getSlotIndexes() const
ArrayRef< const uint32_t * > getRegMaskBits() const
Returns an array of register mask pointers corresponding to getRegMaskSlots().
LiveInterval & getOrCreateEmptyInterval(Register Reg)
Return an existing interval for Reg.
LLVM_ABI void addKillFlags(const VirtRegMap *)
Add kill flags to any instruction that kills a virtual register.
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
LLVM_ABI bool invalidate(MachineFunction &MF, const PreservedAnalyses &PA, MachineFunctionAnalysisManager::Invalidator &Inv)
VNInfo::Allocator & getVNInfoAllocator()
ArrayRef< const uint32_t * > getRegMaskBitsInBlock(unsigned MBBNum) const
Returns an array of mask pointers corresponding to getRegMaskSlotsInBlock(MBBNum).
SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const
Return the last index in the given basic block.
static LLVM_ABI float getSpillWeight(bool isDef, bool isUse, const MachineBlockFrequencyInfo *MBFI, const MachineInstr &MI, ProfileSummaryInfo *PSI=nullptr)
Calculate the spill weight to assign to a single instruction.
ArrayRef< SlotIndex > getRegMaskSlots() const
Returns a sorted array of slot indices of all instructions with register mask operands.
ArrayRef< SlotIndex > getRegMaskSlotsInBlock(unsigned MBBNum) const
Returns a sorted array of slot indices of all instructions with register mask operands in the basic b...
LiveInterval & getInterval(Register Reg)
friend class LiveIntervalsAnalysis
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.
LLVM_ABI void handleMoveIntoNewBundle(MachineInstr &BundleStart, bool UpdateFlags=false)
Update intervals of operands of all instructions in the newly created bundle specified by BundleStart...
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 LiveInterval::Segment addSegmentToEndOfBlock(Register Reg, MachineInstr &startInst)
Given a register and an instruction, adds a live segment from that instruction to the end of its MBB.
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 constructMainRangeFromSubranges(LiveInterval &LI)
For live interval LI with correct SubRanges construct matching information for the main live range.
LiveInterval & createEmptyInterval(Register Reg)
Interval creation.
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 print(raw_ostream &O) const
Implement the dump method.
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...
LLVM_ABI void splitSeparateComponents(LiveInterval &LI, SmallVectorImpl< LiveInterval * > &SplitLIs)
Split separate components in LiveInterval LI into separate intervals.
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
LiveInterval & createAndComputeVirtRegInterval(Register Reg)
Result of a LiveRange query.
VNInfo * valueOutOrDead() const
Returns the value alive at the end of the instruction, if any.
bool isDeadDef() const
Return true if this instruction has a dead def.
VNInfo * valueIn() const
Return the value that is live-in to the instruction.
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,...
static LLVM_ABI bool isJointlyDominated(const MachineBasicBlock *MBB, ArrayRef< SlotIndex > Defs, const SlotIndexes &Indexes)
A diagnostic function to check if the end of the block MBB is jointly dominated by the blocks corresp...
This class represents the liveness of a register, stack slot, etc.
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.
iterator_range< vni_iterator > vnis()
Segments::const_iterator const_iterator
LLVM_ABI VNInfo * createDeadDef(SlotIndex Def, VNInfo::Allocator &VNIAlloc)
createDeadDef - Make sure the range has a value defined at Def.
LLVM_ABI iterator mergeAdjacentSegments(iterator I)
Merge the segment pointed to by I with its immediate neighbors when they use the same value number an...
LLVM_ABI bool covers(const LiveRange &Other) const
Returns true if all segments of the Other live range are completely covered by this live range.
iterator advanceTo(iterator I, SlotIndex Pos)
advanceTo - Advance the specified iterator to point to the Segment containing the specified position,...
LLVM_ABI void removeValNo(VNInfo *ValNo)
removeValNo - Remove all the segments defined by the specified value#.
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.
SlotIndex beginIndex() const
beginIndex - Return the lowest numbered slot covered.
SlotIndex endIndex() const
endNumber - return the maximum point of the range of the whole, exclusive.
bool hasAtLeastOneValue() const
VNInfo * getNextValue(SlotIndex Def, VNInfo::Allocator &VNInfoAllocator)
getNextValue - Create a new value number and return it.
iterator FindSegmentContaining(SlotIndex Idx)
Return an iterator to the segment that contains the specified index, or end() if there is none.
LLVM_ABI void removeSegment(SlotIndex Start, SlotIndex End, bool RemoveDeadValNo=false)
Remove the specified interval from this live range.
LLVM_ABI void flushSegmentSet()
Flush segment set into the regular segment vector.
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().
MCRegUnitMaskIterator enumerates a list of register units and their associated lane masks for Reg.
bool isValid() const
Returns true if this iterator is not yet at the end.
Wrapper class representing physical registers. Should be passed by value.
unsigned pred_size() const
bool isEHPad() const
Returns true if the block is a landing pad.
iterator_range< livein_iterator > liveins() const
int getNumber() const
MachineBasicBlocks are uniquely numbered at the function level, unless they're not in a MachineFuncti...
bool livein_empty() const
LLVM_ABI const uint32_t * getBeginClobberMask(const TargetRegisterInfo *TRI) const
Get the clobber mask for the start of this basic block.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
iterator_range< succ_iterator > successors()
iterator_range< pred_iterator > predecessors()
MachineInstrBundleIterator< MachineInstr > iterator
LLVM_ABI const uint32_t * getEndClobberMask(const TargetRegisterInfo *TRI) const
Get the clobber mask for the end of the basic block.
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
double getBlockFreqRelativeToEntryBlock(const MachineBasicBlock *MBB) const
Compute the frequency of the block, relative to the entry block.
Analysis pass which computes a MachineDominatorTree.
Analysis pass which computes a MachineDominatorTree.
MachineFunctionPass(char &ID)
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.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
void print(raw_ostream &OS, const SlotIndexes *=nullptr) const
print - Print out the MachineFunction in a format suitable for debugging to the specified stream.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
MachineOperand class - Representation of each machine instruction operand.
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,...
bool shouldTrackSubRegLiveness(const TargetRegisterClass &RC) const
Returns true if liveness for register class RC should be tracked at the subregister level.
unsigned getNumVirtRegs() const
getNumVirtRegs - Return the number of virtual registers created.
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
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.
PreservedAnalysisChecker getChecker() const
Build a checker for this PreservedAnalyses and the specified analysis type.
Analysis providing profile information.
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.
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 isBlock() const
isBlock - Returns true if this is a block boundary slot.
SlotIndex getDeadSlot() const
Returns the dead def kill slot for the current instruction.
static bool isEarlierInstr(SlotIndex A, SlotIndex B)
isEarlierInstr - Return true if A refers to an instruction earlier than B.
bool isValid() const
Returns true if this is a valid index.
static bool isEarlierEqualInstr(SlotIndex A, SlotIndex B)
Return true if A refers to the same instruction as B or an earlier one.
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.
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
Returns the basic block which the given index falls in.
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.
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction for the given index, or null if the given index has no instruction associated...
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 swap(SmallVectorImpl &RHS)
typename SuperClass::iterator iterator
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.
MI-level Statepoint operands.
unsigned getNumDeoptArgsIdx() const
Get index of Number Deopt Arguments operand.
uint64_t getFlags() const
Return the statepoint flags.
LLVM_ABI unsigned getNumGCPtrIdx()
Get index of number of GC pointers.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
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.
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...
MCRegister getPhys(Register virtReg) const
returns the physical register mapped to the specified virtual register
Wrapper class representing a virtual register or register unit.
constexpr bool isVirtualReg() const
constexpr MCRegUnit asMCRegUnit() const
constexpr Register asVirtualReg() const
self_iterator getIterator()
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#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.
initializer< Ty > init(const Ty &Val)
NodeAddr< DefNode * > Def
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr, unsigned DynamicVGPRBlockSize=0)
LLVM_ABI cl::opt< bool > UseSegmentSetForPhysRegs
@ Kill
The last use of a register.
LLVM_ABI char & MachineDominatorsID
MachineDominators - This pass is a machine dominators analysis pass.
LLVM_ABI bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
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
void erase(Container &C, ValueType V)
Wrapper function to remove a value from a container:
LLVM_ABI char & MachineLoopInfoID
MachineLoopInfo - This pass is a loop analysis pass.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
df_ext_iterator< T, SetTy > df_ext_begin(const T &G, SetTy &S)
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
MachineBasicBlock::instr_iterator getBundleEnd(MachineBasicBlock::instr_iterator I)
Returns an iterator pointing beyond the bundle containing I.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI const float huge_valf
Use this rather than HUGE_VALF; the latter causes warnings on MSVC.
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
ArrayRef(const T &OneElt) -> ArrayRef< T >
@ DeoptLiveIn
Mark the deopt arguments associated with the statepoint as only being "live-in".
iterator_range< MIBundleOperands > mi_bundle_ops(MachineInstr &MI)
df_ext_iterator< T, SetTy > df_ext_end(const T &G, SetTy &S)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
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 char & LiveIntervalsID
LiveIntervals - This analysis keeps track of the live ranges of virtual and physical registers.
LLVM_ABI Printable printMBBReference(const MachineBasicBlock &MBB)
Prints a machine basic block reference.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static constexpr LaneBitmask getAll()
constexpr bool any() const
static constexpr LaneBitmask getNone()
This represents a simple continuous liveness interval for a value.