Lines Matching refs:Args
37 CallArgList Args;
40 Args.add(RValue::get(This), MD->getThisType(getContext()));
45 Args.add(RValue::get(VTT), T);
48 // And the rest of the call args
49 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
52 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args,
54 Callee, ReturnValue, Args, MD);
313 CallArgList Args;
319 Args.add(RValue::get(This), ThisType);
321 // And the rest of the call args
322 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
323 return EmitCall(CGM.getTypes().getFunctionInfo(Args, FPT), Callee,
324 ReturnValue, Args);
1033 // Either we've emitted all the call args, or we have a call to a
1299 CallArgList Args;
1305 Args.add(RValue::get(DeletePtr), VoidPtrTy);
1328 Args.add(RValue::get(Size), size_t);
1332 CGF.EmitCall(CGF.getTypes().getFunctionInfo(Args, DeleteFTy),
1334 ReturnValueSlot(), Args, OperatorDelete);
1529 llvm::Type *Args[4] = { Int8PtrTy, Int8PtrTy, Int8PtrTy, PtrDiffTy };
1532 llvm::FunctionType::get(Int8PtrTy, Args, false);