Searched refs:ActualArgs (Results 1 - 9 of 9) sorted by relevance

/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/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp86 std::vector<GenericValue> ActualArgs; local
89 ActualArgs.push_back(ArgValues[i]);
92 callFunction(F, ActualArgs);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp89 ArrayRef<GenericValue> ActualArgs = local
93 callFunction(F, ActualArgs);
/external/clang/lib/Lex/
H A DTokenLexer.cpp25 /// arguments. Note that this ctor takes ownership of the ActualArgs pointer.
33 ActualArgs = Actuals;
88 ActualArgs = nullptr;
118 if (ActualArgs) ActualArgs->destroy(PP);
200 Res = ActualArgs->getStringifiedArgument(ArgNo, PP,
205 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
256 if (!PasteBefore && ActualArgs->isVarargsElidedUse() &&
270 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
271 if (ActualArgs
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DEvaluator.h54 /// can't evaluate it. ActualArgs contains the formal arguments for the
57 const SmallVectorImpl<Constant*> &ActualArgs);
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1283 CallArgList ActualArgs; local
1285 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1286 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1287 ActualArgs.addFrom(CallArgs);
1289 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1361 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs,
1435 CallArgList ActualArgs; local
1436 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1437 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1438 ActualArgs
[all...]
H A DCGObjCMac.cpp1877 CallArgList ActualArgs; local
1880 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1881 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
1882 ActualArgs.addFrom(CallArgs);
1885 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1956 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs,
/external/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp534 /// can't evaluate it. ActualArgs contains the formal arguments for the
537 const SmallVectorImpl<Constant*> &ActualArgs) {
549 setVal(&*AI, ActualArgs[ArgNo]);
536 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs) argument
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp2299 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2302 const SmallVectorImpl<Constant*> &ActualArgs,
2322 Values[AI] = ActualArgs[ArgNo];
2301 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs, std::vector<Function*> &CallStack, DenseMap<Constant*, Constant*> &MutatedMemory, std::vector<GlobalVariable*> &AllocaTmps, SmallPtrSet<Constant*, 8> &SimpleConstants, const TargetData *TD) argument

Completed in 288 milliseconds