Searched refs:MBBEnd (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.cpp358 MBBEnd = MI.getParent()->end();
360 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd);
361 if (NextMI == MBBEnd)
370 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd);
371 if (NextMI == MBBEnd)
423 if ((NextMI == MBBEnd) || (LastTrackedMI && !advanceBeforeNext()))
H A DGCNRegPressure.h156 MachineBasicBlock::const_iterator MBBEnd; member in class:llvm::GCNDownwardRPTracker
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCSEMIRBuilder.cpp21 auto MBBEnd = getMBB().end(); local
22 if (B == MBBEnd)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervals.cpp640 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB); local
643 if (LRQ.endPoint() < MBBEnd) {
650 LR.removeSegment(Kill, MBBEnd);
651 if (EndPoints) EndPoints->push_back(MBBEnd);
665 SlotIndex MBBStart, MBBEnd; local
666 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB);
675 if (LRQ.endPoint() < MBBEnd) {
683 LR.removeSegment(MBBStart, MBBEnd);
684 if (EndPoints) EndPoints->push_back(MBBEnd);
H A DLiveDebugVariables.cpp1387 SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB); local
1389 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd);
1394 while (Stop > MBBEnd) {
1396 Start = MBBEnd;
1399 MBBEnd = LIS.getMBBEndIdx(&*MBB);
1400 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd);
H A DSplitKit.cpp80 SlotIndex MBBEnd = LIS.getMBBEndIdx(&MBB); local
92 LIP.first = MBBEnd;
122 const VNInfo *VNI = CurLI.getVNInfoBefore(MBBEnd);
130 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd)
H A DRegisterCoalescer.cpp2830 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB); local
2832 // Scan Other.LR from VNI.def to MBBEnd.
2839 if (End >= MBBEnd) {
2853 if (++OtherI == Other.LR.end() || OtherI->start >= MBBEnd)
H A DMachineScheduler.cpp518 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end();
519 MBB != MBBEnd; ++MBB) {

Completed in 234 milliseconds