Lines Matching refs:Args
36 CallArgList Args;
39 Args.add(RValue::get(This), MD->getThisType(getContext()));
44 Args.add(RValue::get(VTT), T);
48 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
50 // And the rest of the call args.
51 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
53 return EmitCall(CGM.getTypes().arrangeFunctionCall(FPT->getResultType(), Args,
56 Callee, ReturnValue, Args, MD);
315 CallArgList Args;
321 Args.add(RValue::get(This), ThisType);
323 // And the rest of the call args
324 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
325 return EmitCall(CGM.getTypes().arrangeFunctionCall(Args, FPT), Callee,
326 ReturnValue, Args);
1164 // Either we've emitted all the call args, or we have a call to a
1432 CallArgList Args;
1438 Args.add(RValue::get(DeletePtr), VoidPtrTy);
1461 Args.add(RValue::get(Size), size_t);
1465 CGF.EmitCall(CGF.getTypes().arrangeFunctionCall(Args, DeleteFTy),
1467 ReturnValueSlot(), Args, OperatorDelete);
1659 llvm::Type *Args[4] = { Int8PtrTy, Int8PtrTy, Int8PtrTy, PtrDiffTy };
1662 llvm::FunctionType::get(Int8PtrTy, Args, false);