Searched refs:Arguments (Results 26 - 50 of 51) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp322 if (Arguments)
333 Arguments = std::allocator<Argument>().allocate(NumArgs);
337 new (Arguments + i) Argument(ArgTy, "", const_cast<Function *>(this), i);
365 for (Argument &A : makeArgArray(Arguments, NumArgs)) {
369 std::allocator<Argument>().deallocate(Arguments, NumArgs);
370 Arguments = nullptr;
378 assert(llvm::all_of(makeArgArray(Arguments, NumArgs),
391 Arguments = Src.Arguments;
392 Src.Arguments
[all...]
H A DMDBuilder.cpp108 ArrayRef<int> Arguments,
115 for (int ArgNo : Arguments)
107 createCallbackEncoding(unsigned CalleeArgNo, ArrayRef<int> Arguments, bool VarArgArePassed) argument
H A DLegacyPassManager.cpp49 Disabled, Arguments, Structure, Executions, Details enumerator in enum:__anon3686::PassDebugLevel
58 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
910 if (PassDebugging < Arguments)
913 dbgs() << "Pass Arguments: ";
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DTemplateName.cpp37 return TemplateArgument(llvm::makeArrayRef(Arguments, size()));
H A DType.cpp3523 Replaced(Param), Arguments(ArgPack.pack_begin()) {
3528 return TemplateArgument(llvm::makeArrayRef(Arguments, getNumArgs()));
4339 ArrayRef<TemplateArgument> Arguments) {
4344 for (const TemplateArgument &Arg : Arguments)
4336 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, QualType Deduced, AutoTypeKeyword Keyword, bool IsDependent, ConceptDecl *CD, ArrayRef<TemplateArgument> Arguments) argument
H A DExprCXX.cpp1537 Param(Param), Arguments(ArgPack.pack_begin()),
1544 return TemplateArgument(llvm::makeArrayRef(Arguments, NumArguments));
H A DDeclTemplate.cpp830 : Arguments(getTrailingObjects<TemplateArgument>()),
H A DExprConstant.cpp505 /// Arguments - Parameter bindings for this function call, indexed by
507 APValue *Arguments; member in class:__anon1579::CallStackFrame
553 APValue *Arguments);
1381 APValue *Arguments)
1383 Arguments(Arguments), CallLoc(CallLoc), Index(Info.NextCallIndex++) {
1857 const APValue &Arg = Arguments[ArgIndex];
3027 if (!Frame || !Frame->Arguments) {
3031 Result = &Frame->Arguments[PVD->getFunctionScopeIndex()];
9539 return HandleConstructorCall(E, This, Info.CurrentCall->Arguments,
1379 CallStackFrame(EvalInfo &Info, SourceLocation CallLoc, const FunctionDecl *Callee, const LValue *This, APValue *Arguments) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallLowering.cpp360 const SmallVectorImpl<T> &Arguments) {
364 Arguments[i].VT, Arguments[i].ArgVT, Arguments[i].Flags);
359 setLocInfo(SmallVectorImpl<CCValAssign> &ArgLocs, const SmallVectorImpl<T> &Arguments) argument
/freebsd-13-stable/stand/i386/gptboot/
H A Dgptldr.S37 .set MEM_ARG,0x900 # Arguments
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutosi.c594 StringDesc = WalkState->Arguments[0].Object;
/freebsd-13-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbmethod.c360 ObjDesc = WalkState->Arguments[Index].Object;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeDumpVisitor.cpp228 ListScope Arguments(*W, "Arguments");
239 ListScope Arguments(*W, "Strings");
428 ListScope Arguments(*W, "Arguments");
/freebsd-13-stable/stand/i386/cdboot/
H A Dcdboot.S45 .set MEM_ARG,0x900 # Arguments at start
/freebsd-13-stable/stand/i386/zfsboot/
H A Dzfsldr.S19 .set MEM_ARG,0x900 # Arguments
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h115 SmallVector<const Value *, 4> Arguments; member in class:llvm::IntrinsicCostAttributes
157 const SmallVectorImpl<const Value *> &getArgs() const { return Arguments; }
161 return Arguments.empty();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h242 const TemplateArgument *Arguments;
272 : Arguments(Args.data()), NumArguments(Args.size()) {}
281 : Arguments(Other->data()), NumArguments(Other->size()) {}
302 const TemplateArgument *data() const { return Arguments; }
H A DType.h1724 /// The number of template arguments in \c Arguments, which is
4902 const TemplateArgument *Arguments;
5035 ArrayRef<TemplateArgument> Arguments);
H A DExprCXX.h4265 const TemplateArgument *Arguments; member in class:clang::SubstNonTypeTemplateParmPackExpr
4267 /// The number of template arguments in \c Arguments.
/freebsd-13-stable/stand/i386/boot2/
H A Dboot1.S20 .set MEM_ARG,0x900 # Arguments
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h1535 * Arguments to be passed to method for the commands Threads and
1545 char *Arguments[ACPI_METHOD_NUM_ARGS]; member in struct:acpi_db_method_info
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc-queries.sql1204 * Arguments:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp11156 const TemplateArgument *Arguments = nullptr;
11166 Arguments = Specialization->getTemplateArgs().data();
11171 Arguments = TST->getArgs();
11201 *Element = Arguments[0].getAsType();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2123 E->Arguments = ArgPack.pack_begin();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp73 STATS_DECLTRACK(NAME, Arguments, BUILD_STAT_MSG_IR_ATTR(arguments, NAME))
1125 // Arguments are mapped to call site operands and we begin the traversal

Completed in 393 milliseconds

123