Lines Matching refs:PredPredBB
1572 BasicBlock *PredPredBB, in evaluateOnPredecessorEdge() argument
1584 return LVI->getConstantOnEdge(V, PredPredBB, PredBB, nullptr); in evaluateOnPredecessorEdge()
1590 return dyn_cast<Constant>(PHI->getIncomingValueForBlock(PredPredBB)); in evaluateOnPredecessorEdge()
1598 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(0)); in evaluateOnPredecessorEdge()
1600 evaluateOnPredecessorEdge(BB, PredPredBB, CondCmp->getOperand(1)); in evaluateOnPredecessorEdge()
2188 BasicBlock *PredPredBB; in maybethreadThroughTwoBasicBlocks() local
2190 PredPredBB = ZeroPred; in maybethreadThroughTwoBasicBlocks()
2192 PredPredBB = OnePred; in maybethreadThroughTwoBasicBlocks()
2197 BasicBlock *SuccBB = CondBr->getSuccessor(PredPredBB == ZeroPred); in maybethreadThroughTwoBasicBlocks()
2240 threadThroughTwoBasicBlocks(PredPredBB, PredBB, BB, SuccBB); in maybethreadThroughTwoBasicBlocks()
2244 void JumpThreadingPass::threadThroughTwoBasicBlocks(BasicBlock *PredPredBB, in threadThroughTwoBasicBlocks() argument
2261 auto NewBBFreq = BFI->getBlockFreq(PredPredBB) * in threadThroughTwoBasicBlocks()
2262 BPI->getEdgeProbability(PredPredBB, PredBB); in threadThroughTwoBasicBlocks()
2270 cloneInstructions(PredBB->begin(), PredBB->end(), NewBB, PredPredBB); in threadThroughTwoBasicBlocks()
2279 Instruction *PredPredTerm = PredPredBB->getTerminator(); in threadThroughTwoBasicBlocks()
2282 PredBB->removePredecessor(PredPredBB, true); in threadThroughTwoBasicBlocks()
2294 {DominatorTree::Insert, PredPredBB, NewBB}, in threadThroughTwoBasicBlocks()
2295 {DominatorTree::Delete, PredPredBB, PredBB}}); in threadThroughTwoBasicBlocks()