Lines Matching refs:args

501     CallArgList args;
509 args,
521 FunctionArgList args;
531 args.push_back(OMD->getSelfDecl());
532 args.push_back(OMD->getCmdDecl());
534 args.append(OMD->param_begin(), OMD->param_end());
539 StartFunction(OMD, OMD->getReturnType(), Fn, FI, args,
579 CallArgList args;
582 args.add(RValue::get(dest.getPointer()), Context.VoidPtrTy);
585 args.add(RValue::get(src.getPointer()), Context.VoidPtrTy);
588 args.add(RValue::get(CGF.CGM.getSize(size)), Context.getSizeType());
589 args.add(RValue::get(CGF.Builder.getInt1(isAtomic)), Context.BoolTy);
590 args.add(RValue::get(CGF.Builder.getInt1(hasStrong)), Context.BoolTy);
593 CGF.EmitCall(CGF.getTypes().arrangeFreeFunctionCall(Context.VoidTy, args,
596 fn, ReturnValueSlot(), args);
842 CallArgList args;
845 args.add(RValue::get(returnAddr), CGF.getContext().VoidPtrTy);
852 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
855 args.add(RValue::get(AtomicHelperFn), CGF.getContext().VoidPtrTy);
860 args,
863 copyCppAtomicObjectFn, ReturnValueSlot(), args);
942 CallArgList args;
943 args.add(RValue::get(self), getContext().getObjCIdType());
944 args.add(RValue::get(cmd), getContext().getObjCSelType());
945 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
946 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
954 propType, args, FunctionType::ExtInfo(), RequiredArgs::All),
955 getPropertyFn, ReturnValueSlot(), args, CGCalleeInfo(),
1040 CallArgList args;
1047 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
1055 args.add(RValue::get(argAddr), CGF.getContext().VoidPtrTy);
1060 args.add(RValue::get(size), CGF.getContext().getSizeType());
1063 args.add(RValue::get(CGF.Builder.getTrue()), CGF.getContext().BoolTy);
1067 args.add(RValue::get(CGF.Builder.getFalse()), CGF.getContext().BoolTy);
1071 args,
1074 copyStructFn, ReturnValueSlot(), args);
1086 CallArgList args;
1093 args.add(RValue::get(ivarAddr), CGF.getContext().VoidPtrTy);
1101 args.add(RValue::get(argAddr), CGF.getContext().VoidPtrTy);
1104 args.add(RValue::get(AtomicHelperFn), CGF.getContext().VoidPtrTy);
1109 args,
1112 copyCppAtomicObjectFn, ReturnValueSlot(), args);
1235 CallArgList args;
1236 args.add(RValue::get(self), getContext().getObjCIdType());
1237 args.add(RValue::get(cmd), getContext().getObjCSelType());
1239 args.add(RValue::get(arg), getContext().getObjCIdType());
1240 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
1241 EmitCall(getTypes().arrangeFreeFunctionCall(getContext().VoidTy, args,
1244 setOptimizedPropertyFn, ReturnValueSlot(), args);
1246 args.add(RValue::get(ivarOffset), getContext().getPointerDiffType());
1247 args.add(RValue::get(arg), getContext().getObjCIdType());
1248 args.add(RValue::get(Builder.getInt1(strategy.isAtomic())),
1250 args.add(RValue::get(Builder.getInt1(strategy.isCopy())),
1254 EmitCall(getTypes().arrangeFreeFunctionCall(getContext().VoidTy, args,
1257 setPropertyFn, ReturnValueSlot(), args);
1901 llvm::Value *args[] = {
1905 llvm::CallInst *result = CGF.EmitNounwindRuntimeCall(fn, args);
1929 llvm::Value *args[] = {
1933 CGF.EmitNounwindRuntimeCall(fn, args);
2095 llvm::Value *args[] = {
2099 EmitNounwindRuntimeCall(fn, args);
2932 FunctionArgList args;
2934 args.push_back(&dstDecl);
2936 args.push_back(&srcDecl);
2939 C.VoidTy, args, FunctionType::ExtInfo(), RequiredArgs::All);
2950 StartFunction(FD, C.VoidTy, Fn, FI, args);
3013 FunctionArgList args;
3015 args.push_back(&dstDecl);
3017 args.push_back(&srcDecl);
3020 C.VoidTy, args, FunctionType::ExtInfo(), RequiredArgs::All);
3030 StartFunction(FD, C.VoidTy, Fn, FI, args);