Lines Matching refs:Arg
913 /// on to \arg Dest.
1562 /// EmitBlock - Emit the given block \arg BB and set it as the insert point,
2033 void EmitParmDecl(const VarDecl &D, llvm::Value *Arg, unsigned ArgNo);
2054 /// EmitStmt - Emit the code for the statement \arg S. It is legal to call
2711 /// ExpandTypeFromArgs - Reconstruct a structure of type \arg Ty
2712 /// from function arguments into \arg Dst. See ABIArgInfo::Expand.
2721 /// ExpandTypeToArgs - Expand an RValue \arg Src, with the LLVM type for \arg
2722 /// Ty, into individual arguments on the provided vector \arg Args. See
2742 CallExpr::const_arg_iterator Arg = ArgBeg;
2747 E = CallArgTypeInfo->arg_type_end(); I != E; ++I, ++Arg) {
2748 assert(Arg != ArgEnd && "Running over edge of argument list!");
2751 QualType ActualArgType = Arg->getType();
2770 EmitCallArg(Args, *Arg, ArgType);
2775 assert((Arg == ArgEnd || CallArgTypeInfo->isVariadic()) &&
2781 for (; Arg != ArgEnd; ++Arg)
2782 EmitCallArg(Args, *Arg, Arg->getType());