Searched defs:ActualArgs (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp89 ArrayRef<GenericValue> ActualArgs = local
93 callFunction(F, ActualArgs);
/external/clang/include/clang/Lex/
H A DTokenLexer.h35 /// ActualArgs - The actual arguments specified for a function-like macro, or
37 MacroArgs *ActualArgs; member in class:clang::TokenLexer
106 /// arguments. Note that this ctor takes ownership of the ActualArgs pointer.
110 MacroArgs *ActualArgs, Preprocessor &pp)
111 : Macro(nullptr), ActualArgs(nullptr), PP(pp), OwnsTokens(false) {
112 Init(Tok, ILEnd, MI, ActualArgs);
117 /// ownership of the ActualArgs pointer. ILEnd specifies the location of the
120 MacroArgs *ActualArgs);
127 : Macro(nullptr), ActualArgs(nullptr), PP(pp), OwnsTokens(false) {
109 TokenLexer(Token &Tok, SourceLocation ILEnd, MacroInfo *MI, MacroArgs *ActualArgs, Preprocessor &pp) argument
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2322 /// can't evaluate it. ActualArgs contains the formal arguments for the
2325 const SmallVectorImpl<Constant*> &ActualArgs);
2759 /// can't evaluate it. ActualArgs contains the formal arguments for the
2762 const SmallVectorImpl<Constant*> &ActualArgs) {
2774 setVal(&*AI, ActualArgs[ArgNo]);
2761 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs) argument
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1252 CallArgList ActualArgs; local
1254 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1255 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1256 ActualArgs.addFrom(CallArgs);
1258 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1330 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs,
1404 CallArgList ActualArgs; local
1405 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1406 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1407 ActualArgs
[all...]
H A DCGObjCMac.cpp1870 CallArgList ActualArgs; local
1873 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1874 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
1875 ActualArgs.addFrom(CallArgs);
1878 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1949 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs,

Completed in 647 milliseconds