Home
last modified time | relevance | path

Searched refs:UseMBB (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp93 MachineBasicBlock *UseMBB = Indexes->getMBBFromIndex(Use.getPrevSlot()); in extend() local
94 assert(UseMBB && "No MBB at Use"); in extend()
97 auto EP = LR.extendInBlock(Undefs, Indexes->getMBBStartIdx(UseMBB), Use); in extend()
105 if (findReachingDefs(LR, *UseMBB, Use, PhysReg, Undefs)) in extend()
191 bool LiveRangeCalc::findReachingDefs(LiveRange &LR, MachineBasicBlock &UseMBB, in findReachingDefs() argument
194 unsigned UseMBBNum = UseMBB.getNumber(); in findReachingDefs()
260 if (Pred != &UseMBB) in findReachingDefs()
318 if (MBB == &UseMBB) in findReachingDefs()
H A DPeepholeOptimizer.cpp536 MachineBasicBlock *UseMBB = UseMI->getParent(); in INITIALIZE_PASS_DEPENDENCY() local
537 if (UseMBB == &MBB) { in INITIALIZE_PASS_DEPENDENCY()
541 } else if (ReachedBBs.count(UseMBB)) { in INITIALIZE_PASS_DEPENDENCY()
545 } else if (Aggressive && DT->dominates(&MBB, UseMBB)) { in INITIALIZE_PASS_DEPENDENCY()
577 MachineBasicBlock *UseMBB = UseMI->getParent(); in INITIALIZE_PASS_DEPENDENCY() local
578 if (PHIBBs.count(UseMBB)) in INITIALIZE_PASS_DEPENDENCY()
605 BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(), in INITIALIZE_PASS_DEPENDENCY()
/openbsd/gnu/llvm/llvm/lib/Target/X86/
H A DX86FlagsCopyLowering.cpp548 MachineBasicBlock &UseMBB = *Blocks.pop_back_val(); in runOnMachineFunction() local
562 for (auto MII = (&UseMBB == &MBB && !VisitedBlocks.count(&UseMBB)) in runOnMachineFunction()
564 : UseMBB.instr_begin(), in runOnMachineFunction()
565 MIE = UseMBB.instr_end(); in runOnMachineFunction()
573 assert(&UseMBB == &MBB && VisitedBlocks.count(&MBB) && in runOnMachineFunction()
614 } while (JmpIt != UseMBB.instr_end() && in runOnMachineFunction()
658 for (MachineBasicBlock *SuccMBB : UseMBB.successors()) in runOnMachineFunction()
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIOptimizeVGPRLiveRange.cpp306 auto *UseMBB = UseMI->getParent(); in collectCandidateRegisters() local
307 if (UseMBB == Flow || UseMBB == Endif) { in collectCandidateRegisters()
314 if ((UseMBB == Flow && IncomingMBB != If) || in collectCandidateRegisters()
315 (UseMBB == Endif && IncomingMBB == Flow)) in collectCandidateRegisters()
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveRangeCalc.h149 bool findReachingDefs(LiveRange &LR, MachineBasicBlock &UseMBB, SlotIndex Use,