Searched refs:SuccMBB (Results 1 - 7 of 7) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DPHIEliminationUtils.h17 /// SrcReg when following the CFG edge to SuccMBB. This needs to be after
21 findPHICopyInsertPoint(MachineBasicBlock* MBB, MachineBasicBlock* SuccMBB,
H A DPHIEliminationUtils.cpp18 // when following the CFG edge to SuccMBB. This needs to be after any def of
22 llvm::findPHICopyInsertPoint(MachineBasicBlock* MBB, MachineBasicBlock* SuccMBB, argument
31 if (!SuccMBB->isEHPad())
H A DLiveVariables.cpp604 MachineBasicBlock *SuccMBB = *SI; local
605 if (SuccMBB->isEHPad())
607 for (const auto &LI : SuccMBB->liveins()) {
748 for (const MachineBasicBlock *SuccMBB : MBB.successors()) {
750 unsigned SuccIdx = SuccMBB->getNumber();
754 if (Kills.count(SuccMBB))
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp448 MachineBasicBlock *SuccMBB = nullptr;
449 if (parseMBBReference(SuccMBB))
462 MBB.addSuccessor(SuccMBB, BranchProbability::getRaw(Weight));
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp2009 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; local
2013 if (!SuccsHandled.insert(SuccMBB).second)
2016 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
H A DSelectionDAGBuilder.h559 /// has not been created yet (i.e. if SuccMBB = 0), then the machine basic
564 MachineBasicBlock *SuccMBB = nullptr);
H A DSelectionDAGBuilder.cpp7605 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
7609 if (!SuccsHandled.insert(SuccMBB).second)
7612 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
7668 /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB
7675 MachineBasicBlock *SuccMBB) {
7677 if (!SuccMBB) {
7680 SuccMBB = MF->CreateMachineBasicBlock(BB);
7681 MF->insert(++BBI, SuccMBB);
7685 SuccMBB, BranchProbabilityInfo::getBranchProbStackProtector(IsLikely));
7686 return SuccMBB;
[all...]

Completed in 53 milliseconds