Lines Matching refs:MergedInvoke

2634   InvokeInst *MergedInvoke = [&Invokes, HasNormalDest]() {  in MergeCompatibleInvokesImpl()  local
2645 auto *MergedInvoke = cast<InvokeInst>(II0->clone()); in MergeCompatibleInvokesImpl() local
2647 MergedInvoke->insertInto(MergedInvokeBB, MergedInvokeBB->end()); in MergeCompatibleInvokesImpl()
2655 MergedInvoke->setNormalDest(MergedNormalDest); in MergeCompatibleInvokesImpl()
2660 return MergedInvoke; in MergeCompatibleInvokesImpl()
2668 {DominatorTree::Insert, II->getParent(), MergedInvoke->getParent()}); in MergeCompatibleInvokesImpl()
2672 for (BasicBlock *SuccBBOfMergedInvoke : successors(MergedInvoke)) in MergeCompatibleInvokesImpl()
2673 Updates.push_back({DominatorTree::Insert, MergedInvoke->getParent(), in MergeCompatibleInvokesImpl()
2687 for (Use &U : MergedInvoke->operands()) { in MergeCompatibleInvokesImpl()
2689 if (MergedInvoke->isCallee(&U)) { in MergeCompatibleInvokesImpl()
2692 } else if (!MergedInvoke->isDataOperand(&U)) in MergeCompatibleInvokesImpl()
2704 U->getType(), /*NumReservedValues=*/Invokes.size(), "", MergedInvoke->getIterator()); in MergeCompatibleInvokesImpl()
2714 for (BasicBlock *Succ : successors(MergedInvoke)) in MergeCompatibleInvokesImpl()
2715 AddPredecessorToBlock(Succ, /*NewPred=*/MergedInvoke->getParent(), in MergeCompatibleInvokesImpl()
2734 BranchInst::Create(MergedInvoke->getParent(), II->getParent()); in MergeCompatibleInvokesImpl()
2735 II->replaceAllUsesWith(MergedInvoke); in MergeCompatibleInvokesImpl()
2739 MergedInvoke->setDebugLoc(MergedDebugLoc); in MergeCompatibleInvokesImpl()