Lines Matching refs:PredPredBB

1587                                                        BasicBlock *PredPredBB,  in evaluateOnPredecessorEdge()  argument
1599 return LVI->getConstantOnEdge(V, PredPredBB, PredBB, nullptr); in evaluateOnPredecessorEdge()
1605 return dyn_cast<Constant>(PHI->getIncomingValueForBlock(PredPredBB)); in evaluateOnPredecessorEdge()
1613 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(0)); in evaluateOnPredecessorEdge()
1615 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(1)); in evaluateOnPredecessorEdge()
2203 BasicBlock *PredPredBB; in maybethreadThroughTwoBasicBlocks() local
2205 PredPredBB = ZeroPred; in maybethreadThroughTwoBasicBlocks()
2207 PredPredBB = OnePred; in maybethreadThroughTwoBasicBlocks()
2212 BasicBlock *SuccBB = CondBr->getSuccessor(PredPredBB == ZeroPred); in maybethreadThroughTwoBasicBlocks()
2255 threadThroughTwoBasicBlocks(PredPredBB, PredBB, BB, SuccBB); in maybethreadThroughTwoBasicBlocks()
2259 void JumpThreadingPass::threadThroughTwoBasicBlocks(BasicBlock *PredPredBB, in threadThroughTwoBasicBlocks() argument
2276 auto NewBBFreq = BFI->getBlockFreq(PredPredBB) * in threadThroughTwoBasicBlocks()
2277 BPI->getEdgeProbability(PredPredBB, PredBB); in threadThroughTwoBasicBlocks()
2285 cloneInstructions(PredBB->begin(), PredBB->end(), NewBB, PredPredBB); in threadThroughTwoBasicBlocks()
2294 Instruction *PredPredTerm = PredPredBB->getTerminator(); in threadThroughTwoBasicBlocks()
2297 PredBB->removePredecessor(PredPredBB, true); in threadThroughTwoBasicBlocks()
2309 {DominatorTree::Insert, PredPredBB, NewBB}, in threadThroughTwoBasicBlocks()
2310 {DominatorTree::Delete, PredPredBB, PredBB}}); in threadThroughTwoBasicBlocks()