Lines Matching refs:NewCaller
4224 Instruction *NewCaller; in transformCallThroughTrampoline() local
4226 NewCaller = InvokeInst::Create(NewFTy, NestF, II->getNormalDest(), in transformCallThroughTrampoline()
4228 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv()); in transformCallThroughTrampoline()
4229 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4231 NewCaller = in transformCallThroughTrampoline()
4234 cast<CallBrInst>(NewCaller)->setCallingConv(CBI->getCallingConv()); in transformCallThroughTrampoline()
4235 cast<CallBrInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4237 NewCaller = CallInst::Create(NewFTy, NestF, NewArgs, OpBundles); in transformCallThroughTrampoline()
4238 cast<CallInst>(NewCaller)->setTailCallKind( in transformCallThroughTrampoline()
4240 cast<CallInst>(NewCaller)->setCallingConv( in transformCallThroughTrampoline()
4242 cast<CallInst>(NewCaller)->setAttributes(NewPAL); in transformCallThroughTrampoline()
4244 NewCaller->setDebugLoc(Call.getDebugLoc()); in transformCallThroughTrampoline()
4246 return NewCaller; in transformCallThroughTrampoline()