Home | History | Annotate | Download | only in Utils

Lines Matching defs:NewBB

2727   BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), "switch.edge",
2744 SI->addCase(Cst, NewBB);
2746 // NewBB branches to the phi block, add the uncond branch and the phi entry.
2747 Builder.SetInsertPoint(NewBB);
2750 PHIUse->addIncoming(NewCst, NewBB);
2814 BasicBlock *NewBB = BB->splitBasicBlock(BI, "switch.early.test");
2820 Builder.CreateCondBr(ExtraCase, EdgeBB, NewBB);
2822 Builder.CreateCondBr(ExtraCase, NewBB, EdgeBB);
2828 AddPredecessorToBlock(EdgeBB, BB, NewBB);
2832 BB = NewBB;