Home
last modified time | relevance | path

Searched refs:ActualArgs (Results 1 – 7 of 7) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/Lex/
HDTokenLexer.h37 MacroArgs *ActualArgs; variable
110 MacroArgs *ActualArgs, Preprocessor &pp) in TokenLexer() argument
111 : Macro(nullptr), ActualArgs(nullptr), PP(pp), OwnsTokens(false) { in TokenLexer()
112 Init(Tok, ILEnd, MI, ActualArgs); in TokenLexer()
120 MacroArgs *ActualArgs);
127 : Macro(nullptr), ActualArgs(nullptr), PP(pp), OwnsTokens(false) { in TokenLexer()
/NextBSD/sys/contrib/dev/acpica/compiler/
HDaslmethod.c93 UINT8 ActualArgs = 0; in MtMethodAnalysisWalkBegin() local
189 MethodInfo->ValidArgTypes[ActualArgs] |= AnMapObjTypeToBtype (NextParamType); in MtMethodAnalysisWalkBegin()
196 MethodInfo->ValidArgTypes[ActualArgs] = in MtMethodAnalysisWalkBegin()
199 ActualArgs++; in MtMethodAnalysisWalkBegin()
206 (MethodInfo->NumArguments != ActualArgs)) in MtMethodAnalysisWalkBegin()
213 if ((!MethodInfo->NumArguments) && (ActualArgs)) in MtMethodAnalysisWalkBegin()
215 MethodInfo->NumArguments = ActualArgs; in MtMethodAnalysisWalkBegin()
216 ArgNode->Asl.Value.Integer |= ActualArgs; in MtMethodAnalysisWalkBegin()
/NextBSD/contrib/llvm/tools/clang/lib/Lex/
HDTokenLexer.cpp33 ActualArgs = Actuals; in Init()
90 ActualArgs = nullptr; in Init()
121 if (ActualArgs) ActualArgs->destroy(PP); in destroy()
199 Res = ActualArgs->getStringifiedArgument(ArgNo, PP, in ExpandFunctionArguments()
204 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo), in ExpandFunctionArguments()
255 if (!PasteBefore && ActualArgs->isVarargsElidedUse() && in ExpandFunctionArguments()
269 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo); in ExpandFunctionArguments()
270 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP)) in ExpandFunctionArguments()
271 ResultArgToks = &ActualArgs->getPreExpArgument(ArgNo, Macro, PP)[0]; in ExpandFunctionArguments()
315 const Token *ArgToks = ActualArgs->getUnexpArgument(ArgNo); in ExpandFunctionArguments()
[all …]
/NextBSD/contrib/llvm/lib/ExecutionEngine/Interpreter/
HDInterpreter.cpp90 ArrayRef<GenericValue> ActualArgs = in runFunction() local
94 callFunction(F, ActualArgs); in runFunction()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGObjCGNU.cpp1235 CallArgList ActualArgs; in GenerateMessageSendSuper() local
1237 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy); in GenerateMessageSendSuper()
1238 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType()); in GenerateMessageSendSuper()
1239 ActualArgs.addFrom(CallArgs); in GenerateMessageSendSuper()
1241 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); in GenerateMessageSendSuper()
1309 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, nullptr, in GenerateMessageSendSuper()
1383 CallArgList ActualArgs; in GenerateMessageSend() local
1384 ActualArgs.add(RValue::get(Receiver), ASTIdTy); in GenerateMessageSend()
1385 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType()); in GenerateMessageSend()
1386 ActualArgs.addFrom(CallArgs); in GenerateMessageSend()
[all …]
HDCGObjCMac.cpp1860 CallArgList ActualArgs; in EmitMessageSend() local
1863 ActualArgs.add(RValue::get(Arg0), Arg0Ty); in EmitMessageSend()
1864 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType()); in EmitMessageSend()
1865 ActualArgs.addFrom(CallArgs); in EmitMessageSend()
1868 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); in EmitMessageSend()
1909 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs); in EmitMessageSend()
/NextBSD/contrib/llvm/lib/Transforms/IPO/
HDGlobalOpt.cpp2187 const SmallVectorImpl<Constant*> &ActualArgs);
2622 const SmallVectorImpl<Constant*> &ActualArgs) { in EvaluateFunction() argument
2634 setVal(AI, ActualArgs[ArgNo]); in EvaluateFunction()