Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:InvokeInst

755 // InvokeInst simplification
757 Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
913 cast<InvokeInst>(OldCall)->setCalledFunction(
925 if (isa<InvokeInst>(CS.getInstruction())) {
1031 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
1202 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1206 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1207 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1227 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1379 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1380 NewCaller = InvokeInst::Create(NewCallee,
1383 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
1384 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);