Lines Matching refs:PredPredBB

1514                                                        BasicBlock *PredPredBB,  in evaluateOnPredecessorEdge()  argument
1526 return LVI->getConstantOnEdge(V, PredPredBB, PredBB, nullptr); in evaluateOnPredecessorEdge()
1532 return dyn_cast<Constant>(PHI->getIncomingValueForBlock(PredPredBB)); in evaluateOnPredecessorEdge()
1540 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(0)); in evaluateOnPredecessorEdge()
1542 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(1)); in evaluateOnPredecessorEdge()
2214 BasicBlock *PredPredBB; in maybethreadThroughTwoBasicBlocks() local
2216 PredPredBB = ZeroPred; in maybethreadThroughTwoBasicBlocks()
2218 PredPredBB = OnePred; in maybethreadThroughTwoBasicBlocks()
2223 BasicBlock *SuccBB = CondBr->getSuccessor(PredPredBB == ZeroPred); in maybethreadThroughTwoBasicBlocks()
2266 threadThroughTwoBasicBlocks(PredPredBB, PredBB, BB, SuccBB); in maybethreadThroughTwoBasicBlocks()
2270 void JumpThreadingPass::threadThroughTwoBasicBlocks(BasicBlock *PredPredBB, in threadThroughTwoBasicBlocks() argument
2293 auto NewBBFreq = BFI->getBlockFreq(PredPredBB) * in threadThroughTwoBasicBlocks()
2294 BPI->getEdgeProbability(PredPredBB, PredBB); in threadThroughTwoBasicBlocks()
2302 cloneInstructions(PredBB->begin(), PredBB->end(), NewBB, PredPredBB); in threadThroughTwoBasicBlocks()
2311 Instruction *PredPredTerm = PredPredBB->getTerminator(); in threadThroughTwoBasicBlocks()
2314 PredBB->removePredecessor(PredPredBB, true); in threadThroughTwoBasicBlocks()
2326 {DominatorTree::Insert, PredPredBB, NewBB}, in threadThroughTwoBasicBlocks()
2327 {DominatorTree::Delete, PredPredBB, PredBB}}); in threadThroughTwoBasicBlocks()