Home
last modified time | relevance | path

Searched refs:MBBEnd (Results 1 – 22 of 22) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DGCNRegPressure.cpp358 MBBEnd = MI.getParent()->end(); in reset()
360 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd); in reset()
361 if (NextMI == MBBEnd) in reset()
370 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd); in advanceBeforeNext()
371 if (NextMI == MBBEnd) in advanceBeforeNext()
423 if ((NextMI == MBBEnd) || (LastTrackedMI && !advanceBeforeNext())) in advance()
DGCNRegPressure.h156 MachineBasicBlock::const_iterator MBBEnd; variable
/external/llvm-project/llvm/lib/Target/AMDGPU/
DGCNRegPressure.cpp360 MBBEnd = MI.getParent()->end(); in reset()
362 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd); in reset()
363 if (NextMI == MBBEnd) in reset()
372 NextMI = skipDebugInstructionsForward(NextMI, MBBEnd); in advanceBeforeNext()
373 if (NextMI == MBBEnd) in advanceBeforeNext()
425 if ((NextMI == MBBEnd) || (LastTrackedMI && !advanceBeforeNext())) in advance()
DGCNRegPressure.h164 MachineBasicBlock::const_iterator MBBEnd; variable
/external/llvm/lib/CodeGen/
DLiveIntervalAnalysis.cpp592 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB); in pruneValue() local
595 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
602 LR.removeSegment(Kill, MBBEnd); in pruneValue()
603 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
619 SlotIndex MBBStart, MBBEnd; in pruneValue() local
620 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB); in pruneValue()
629 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
637 LR.removeSegment(MBBStart, MBBEnd); in pruneValue()
638 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
DLiveDebugVariables.cpp997 SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues() local
999 DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); in emitDebugValues()
1003 while(Stop > MBBEnd) { in emitDebugValues()
1005 Start = MBBEnd; in emitDebugValues()
1008 MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues()
1009 DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); in emitDebugValues()
DSplitKit.cpp53 SlotIndex MBBEnd = LIS.getMBBEndIdx(&MBB); in computeLastInsertPoint() local
65 LIP.first = MBBEnd; in computeLastInsertPoint()
95 const VNInfo *VNI = CurLI.getVNInfoBefore(MBBEnd); in computeLastInsertPoint()
103 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
DRegisterCoalescer.cpp2261 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB); in taintExtent() local
2270 if (End >= MBBEnd) { in taintExtent()
2284 if (++OtherI == Other.LR.end() || OtherI->start >= MBBEnd) in taintExtent()
DMachineScheduler.cpp421 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end(); in scheduleRegions() local
422 MBB != MBBEnd; ++MBB) { in scheduleRegions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DCSEMIRBuilder.cpp21 auto MBBEnd = getMBB().end(); in dominates() local
22 if (B == MBBEnd) in dominates()
/external/llvm-project/llvm/lib/CodeGen/
DLiveIntervals.cpp647 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB); in pruneValue() local
650 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
657 LR.removeSegment(Kill, MBBEnd); in pruneValue()
658 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
672 SlotIndex MBBStart, MBBEnd; in pruneValue() local
673 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB); in pruneValue()
682 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
690 LR.removeSegment(MBBStart, MBBEnd); in pruneValue()
691 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
DLiveDebugVariables.cpp1417 SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues() local
1419 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); in emitDebugValues()
1424 while (Stop > MBBEnd) { in emitDebugValues()
1426 Start = MBBEnd; in emitDebugValues()
1429 MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues()
1430 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); in emitDebugValues()
DSplitKit.cpp68 SlotIndex MBBEnd = LIS.getMBBEndIdx(&MBB); in computeLastInsertPoint() local
85 LIP.first = MBBEnd; in computeLastInsertPoint()
117 const VNInfo *VNI = CurLI.getVNInfoBefore(MBBEnd); in computeLastInsertPoint()
125 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
DRegAllocFast.cpp313 auto MBBEnd = MBB.end(); in dominates() local
314 if (B == MBBEnd) in dominates()
DRegisterCoalescer.cpp2851 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB); in taintExtent() local
2860 if (End >= MBBEnd) { in taintExtent()
2874 if (++OtherI == Other.LR.end() || OtherI->start >= MBBEnd) in taintExtent()
DMachineScheduler.cpp535 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end(); in scheduleRegions() local
536 MBB != MBBEnd; ++MBB) { in scheduleRegions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveIntervals.cpp640 SlotIndex MBBEnd = Indexes->getMBBEndIdx(KillMBB); in pruneValue() local
643 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
650 LR.removeSegment(Kill, MBBEnd); in pruneValue()
651 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
665 SlotIndex MBBStart, MBBEnd; in pruneValue() local
666 std::tie(MBBStart, MBBEnd) = Indexes->getMBBRange(MBB); in pruneValue()
675 if (LRQ.endPoint() < MBBEnd) { in pruneValue()
683 LR.removeSegment(MBBStart, MBBEnd); in pruneValue()
684 if (EndPoints) EndPoints->push_back(MBBEnd); in pruneValue()
DLiveDebugVariables.cpp1387 SlotIndex MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues() local
1389 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); in emitDebugValues()
1394 while (Stop > MBBEnd) { in emitDebugValues()
1396 Start = MBBEnd; in emitDebugValues()
1399 MBBEnd = LIS.getMBBEndIdx(&*MBB); in emitDebugValues()
1400 LLVM_DEBUG(dbgs() << ' ' << printMBBReference(*MBB) << '-' << MBBEnd); in emitDebugValues()
DSplitKit.cpp80 SlotIndex MBBEnd = LIS.getMBBEndIdx(&MBB); in computeLastInsertPoint() local
92 LIP.first = MBBEnd; in computeLastInsertPoint()
122 const VNInfo *VNI = CurLI.getVNInfoBefore(MBBEnd); in computeLastInsertPoint()
130 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
DRegisterCoalescer.cpp2830 SlotIndex MBBEnd = Indexes->getMBBEndIdx(MBB); in taintExtent() local
2839 if (End >= MBBEnd) { in taintExtent()
2853 if (++OtherI == Other.LR.end() || OtherI->start >= MBBEnd) in taintExtent()
DMachineScheduler.cpp518 for (MachineFunction::iterator MBB = MF->begin(), MBBEnd = MF->end(); in scheduleRegions() local
519 MBB != MBBEnd; ++MBB) { in scheduleRegions()
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DCSEMIRBuilder.cpp22 auto MBBEnd = getMBB().end(); in dominates() local
23 if (B == MBBEnd) in dominates()