Searched defs:PBB (Results 1 - 5 of 5) sorted by relevance

/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp94 const BasicBlock *PBB = I->getParent(); local
95 const Function *PF = PBB->getParent();
102 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB)));
105 std::advance(RI, std::distance(PBB->begin(), BasicBlock::const_iterator(I)));
/external/llvm/lib/CodeGen/
H A DShrinkWrapping.cpp1019 MachineBasicBlock* PBB = *BI; local
1020 if (PBB == MBB)
1024 if (CSRRestore[PBB].intersects(restored) &&
1025 !spilled.contains(CSRRestore[PBB] & restored))
1029 if (CSRSave[PBB].intersects(restored))
1030 spilled |= (CSRSave[PBB] & restored);
H A DBranchFolding.cpp848 // Look at blocks (IBB) with multiple predecessors (PBB).
877 MachineBasicBlock *PBB = *P; local
878 if (TriedMerging.count(PBB))
882 if (PBB == IBB)
886 if (!UniquePreds.insert(PBB))
890 if (PBB->getLandingPadSuccessor())
895 if (!TII->AnalyzeBranch(*PBB, TBB, FBB, Cond, true)) {
904 FBB = llvm::next(MachineFunction::iterator(PBB));
907 // Failing case: the only way IBB can be reached from PBB is via
911 MachineFunction::iterator IP = PBB; I
[all...]
H A DIfConversion.cpp1137 MachineBasicBlock *PBB = *PI; local
1138 if (PBB == BBI.BB)
1140 BBInfo &PBBI = BBAnalysis[PBB->getNumber()];
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp263 BasicBlock *PBB = I->getParent(); local
267 if (PBB == BB) return false;
272 BranchInst *BI = dyn_cast<BranchInst>(PBB->getTerminator());

Completed in 155 milliseconds