Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslmethod.c205 UINT8 ActualArgs = 0; in MtMethodAnalysisWalkBegin() local
308 ActualArgs = MethodInfo->NumArguments; in MtMethodAnalysisWalkBegin()
312 ActualArgs = MtProcessParameterTypeList (NextType, in MtMethodAnalysisWalkBegin()
314 MethodInfo->NumArguments = ActualArgs; in MtMethodAnalysisWalkBegin()
315 ArgNode->Asl.Value.Integer |= ActualArgs; in MtMethodAnalysisWalkBegin()
319 (MethodInfo->NumArguments != ActualArgs)) in MtMethodAnalysisWalkBegin()
322 "Length = %u", ActualArgs); in MtMethodAnalysisWalkBegin()
329 if ((!MethodInfo->NumArguments) && (ActualArgs)) in MtMethodAnalysisWalkBegin()
331 MethodInfo->NumArguments = ActualArgs; in MtMethodAnalysisWalkBegin()
332 ArgNode->Asl.Value.Integer |= ActualArgs; in MtMethodAnalysisWalkBegin()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DTokenLexer.h38 MacroArgs *ActualArgs = nullptr; variable
109 MacroArgs *ActualArgs, Preprocessor &pp) in TokenLexer() argument
111 Init(Tok, ILEnd, MI, ActualArgs); in TokenLexer()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DTokenLexer.cpp47 ActualArgs = Actuals; in Init()
105 ActualArgs = nullptr; in Init()
136 if (ActualArgs) ActualArgs->destroy(PP); in destroy()
302 ActualArgs->invokedWithVariadicArgument(Macro, PP); in ExpandFunctionArguments()
389 const Token *UnexpArg = ActualArgs->getUnexpArgument(ArgNo); in ExpandFunctionArguments()
441 if (!PasteBefore && ActualArgs->isVarargsElidedUse() && in ExpandFunctionArguments()
455 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo); in ExpandFunctionArguments()
456 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP)) in ExpandFunctionArguments()
457 ResultArgToks = &ActualArgs->getPreExpArgument(ArgNo, PP)[0]; in ExpandFunctionArguments()
511 const Token *ArgToks = ActualArgs->getUnexpArgument(ArgNo); in ExpandFunctionArguments()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp92 ArrayRef<GenericValue> ActualArgs = in runFunction() local
96 callFunction(F, ActualArgs); in runFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DEvaluator.h100 const SmallVectorImpl<Constant*> &ActualArgs);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp630 const SmallVectorImpl<Constant*> &ActualArgs) { in EvaluateFunction() argument
631 assert(ActualArgs.size() == F->arg_size() && "wrong number of arguments"); in EvaluateFunction()
642 setVal(&Arg, ActualArgs[ArgNo]); in EvaluateFunction()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp2653 CallArgList ActualArgs; in GenerateMessageSendSuper() local
2655 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy); in GenerateMessageSendSuper()
2656 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType()); in GenerateMessageSendSuper()
2657 ActualArgs.addFrom(CallArgs); in GenerateMessageSendSuper()
2659 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); in GenerateMessageSendSuper()
2791 CallArgList ActualArgs; in GenerateMessageSend() local
2792 ActualArgs.add(RValue::get(Receiver), ASTIdTy); in GenerateMessageSend()
2794 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType()); in GenerateMessageSend()
2795 ActualArgs.addFrom(CallArgs); in GenerateMessageSend()
2797 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); in GenerateMessageSend()
[all …]
H A DCGObjCMac.cpp2139 CallArgList ActualArgs; in EmitMessageSend() local
2142 ActualArgs.add(RValue::get(Arg0), Arg0Ty); in EmitMessageSend()
2144 ActualArgs.add(RValue::get(SelValue), selTy); in EmitMessageSend()
2145 ActualArgs.addFrom(CallArgs); in EmitMessageSend()
2148 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); in EmitMessageSend()
2208 ActualArgs[1] = CallArg(RValue::get(SelValue), selTy); in EmitMessageSend()
2213 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Callee, Return, ActualArgs, in EmitMessageSend()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp222 llvm::SmallVector<Expr *, 4> ActualArgs; in instantiateDependentAnnotationAttr() local
223 ActualArgs.insert(ActualArgs.begin(), Args.begin() + 1, Args.end()); in instantiateDependentAnnotationAttr()
224 std::swap(Args, ActualArgs); in instantiateDependentAnnotationAttr()