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

/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp89 std::vector<GenericValue> ActualArgs; local
92 ActualArgs.push_back(ArgValues[i]);
95 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.cpp2195 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2198 const SmallVectorImpl<Constant*> &ActualArgs);
2619 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2622 const SmallVectorImpl<Constant*> &ActualArgs) {
2634 setVal(AI, ActualArgs[ArgNo]);
2621 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs) argument
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1235 CallArgList ActualArgs; local
1237 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1238 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1239 ActualArgs.addFrom(CallArgs);
1241 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1307 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, nullptr,
1382 CallArgList ActualArgs; local
1383 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1384 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1385 ActualArgs
[all...]
H A DCGObjCMac.cpp1865 CallArgList ActualArgs; local
1868 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1869 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
1870 ActualArgs.addFrom(CallArgs);
1873 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1914 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs);

Completed in 2169 milliseconds