Lines Matching refs:LiveInts

193     LiveIntervals *LiveInts;
334 LiveInts = nullptr;
338 LiveInts = PASS->getAnalysisIfAvailable<LiveIntervals>();
340 if (!LiveInts)
429 if (LiveInts != nullptr)
430 LiveInts->print(errs());
868 if (LiveInts) {
869 bool mapped = !LiveInts->isNotInMIMap(*MI);
1066 LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1069 SlotIndex Idx = LiveInts->getInstructionIndex(*MI);
1154 // Check that, if the dead def flag is present, LiveInts agree.
1206 // Check LiveInts liveness and kill.
1207 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1208 SlotIndex UseIdx = LiveInts->getInstructionIndex(*MI);
1212 if (const LiveRange *LR = LiveInts->getCachedRegUnit(*Units))
1218 if (LiveInts->hasInterval(Reg)) {
1220 const LiveInterval &LI = LiveInts->getInterval(Reg);
1314 // Check LiveInts for a live segment, but only for virtual registers.
1315 if (LiveInts && !LiveInts->isNotInMIMap(*MI)) {
1316 SlotIndex DefIdx = LiveInts->getInstructionIndex(*MI);
1320 if (LiveInts->hasInterval(Reg)) {
1321 const LiveInterval &LI = LiveInts->getInterval(Reg);
1525 if (LiveInts)
1556 assert(LiveInts && "Don't call verifyLiveIntervals without LiveInts");
1564 if (!LiveInts->hasInterval(Reg)) {
1570 const LiveInterval &LI = LiveInts->getInterval(Reg);
1577 if (const LiveRange *LR = LiveInts->getCachedRegUnit(i))
1603 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(VNI->def);
1612 if (VNI->def != LiveInts->getMBBStartIdx(MBB)) {
1621 const MachineInstr *MI = LiveInts->getInstructionFromIndex(VNI->def);
1694 const MachineBasicBlock *MBB = LiveInts->getMBBFromIndex(S.start);
1701 SlotIndex MBBStartIdx = LiveInts->getMBBStartIdx(MBB);
1709 LiveInts->getMBBFromIndex(S.end.getPrevSlot());
1718 if (S.end == LiveInts->getMBBEndIdx(EndMBB))
1728 LiveInts->getInstructionFromIndex(S.end.getPrevSlot());
1823 assert(LiveInts->isLiveInToMBB(LR, &*MFI));
1835 VNI->def == LiveInts->getMBBStartIdx(&*MFI);
1840 SlotIndex PEnd = LiveInts->getMBBEndIdx(*PI);
1850 << '@' << LiveInts->getMBBStartIdx(&*MFI) << ", not live before "
1862 << LiveInts->getMBBStartIdx(&*MFI) << '\n';
1909 ConnectedVNInfoEqClasses ConEQ(*LiveInts);