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

/external/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->isLandingPad())
H A DLiveVariables.cpp601 MachineBasicBlock *SuccMBB = *SI; local
602 if (SuccMBB->isLandingPad())
604 for (MachineBasicBlock::livein_iterator LI = SuccMBB->livein_begin(),
605 LE = SuccMBB->livein_end(); LI != LE; ++LI) {
746 MachineBasicBlock *SuccMBB = *SI; local
749 unsigned SuccIdx = SuccMBB->getNumber();
752 OpSuccBlocks.push_back(SuccMBB);
759 MachineBasicBlock *SuccMBB = OpSuccBlocks[0]; local
761 if (VI.Kills[i]->getParent() == SuccMBB)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h485 /// has not been created yet (i.e. if SuccMBB = 0), then the machine basic
490 MachineBasicBlock *SuccMBB = nullptr);
H A DFastISel.cpp1987 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB]; local
1991 if (!SuccsHandled.insert(SuccMBB).second)
1994 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
H A DSelectionDAGBuilder.cpp7716 MachineBasicBlock *SuccMBB = FuncInfo.MBBMap[SuccBB];
7720 if (!SuccsHandled.insert(SuccMBB).second)
7723 MachineBasicBlock::iterator MBBI = SuccMBB->begin();
7779 /// Add a successor MBB to ParentMBB< creating a new MachineBB for BB if SuccMBB
7786 MachineBasicBlock *SuccMBB) {
7788 if (!SuccMBB) {
7791 SuccMBB = MF->CreateMachineBasicBlock(BB);
7792 MF->insert(++BBI, SuccMBB);
7796 SuccMBB, BranchProbabilityInfo::getBranchWeightStackProtector(IsLikely));
7797 return SuccMBB;
[all...]

Completed in 2078 milliseconds