Lines Matching refs:NewCaller
4452 Instruction *NewCaller; in transformCallThroughTrampoline() local
4454 NewCaller = InvokeInst::Create(NewFTy, NestF, II->getNormalDest(), in transformCallThroughTrampoline()
4456 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv()); in transformCallThroughTrampoline()
4457 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4459 NewCaller = in transformCallThroughTrampoline()
4462 cast<CallBrInst>(NewCaller)->setCallingConv(CBI->getCallingConv()); in transformCallThroughTrampoline()
4463 cast<CallBrInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4465 NewCaller = CallInst::Create(NewFTy, NestF, NewArgs, OpBundles); in transformCallThroughTrampoline()
4466 cast<CallInst>(NewCaller)->setTailCallKind( in transformCallThroughTrampoline()
4468 cast<CallInst>(NewCaller)->setCallingConv( in transformCallThroughTrampoline()
4470 cast<CallInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4472 NewCaller->setDebugLoc(Call.getDebugLoc()); in transformCallThroughTrampoline()
4474 return NewCaller; in transformCallThroughTrampoline()