Lines Matching refs:BlockPtr
2823 static void insertBlockAfter(VPBlockBase *NewBlock, VPBlockBase *BlockPtr) {
2827 NewBlock->setParent(BlockPtr->getParent());
2828 SmallVector<VPBlockBase *> Succs(BlockPtr->successors());
2830 disconnectBlocks(BlockPtr, Succ);
2833 connectBlocks(BlockPtr, NewBlock);
2843 VPBlockBase *BlockPtr) {
2848 BlockPtr->setTwoSuccessors(IfTrue, IfFalse);
2849 IfTrue->setPredecessors({BlockPtr});
2850 IfFalse->setPredecessors({BlockPtr});
2851 IfTrue->setParent(BlockPtr->getParent());
2852 IfFalse->setParent(BlockPtr->getParent());