Lines Matching defs:LookupBB
6779 BasicBlock *LookupBB = BasicBlock::Create(
6831 Builder.CreateBr(LookupBB);
6833 Updates.push_back({DominatorTree::Insert, BB, LookupBB});
6840 Builder.CreateCondBr(Cmp, LookupBB, SI->getDefaultDest());
6842 Updates.push_back({DominatorTree::Insert, BB, LookupBB});
6846 Builder.SetInsertPoint(LookupBB);
6849 // Before doing the lookup, we do the hole check. The LookupBB is therefore
6850 // re-purposed to do the hole check, and we create a new LookupBB.
6851 BasicBlock *MaskBB = LookupBB;
6853 LookupBB = BasicBlock::Create(Mod.getContext(), "switch.lookup",
6879 Builder.CreateCondBr(LoBit, LookupBB, SI->getDefaultDest());
6881 Updates.push_back({DominatorTree::Insert, MaskBB, LookupBB});
6884 Builder.SetInsertPoint(LookupBB);
6919 PHI->addIncoming(Result, LookupBB);
6924 Updates.push_back({DominatorTree::Insert, LookupBB, CommonDest});