Home
last modified time | relevance | path

Searched refs:ArgIndices (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h242 : TypeRecord(Kind), ArgIndices(Indices) {} in ArgListRecord()
244 ArrayRef<TypeIndex> getIndices() const { return ArgIndices; } in getIndices()
246 std::vector<TypeIndex> ArgIndices; variable
671 BuildInfoRecord(ArrayRef<TypeIndex> ArgIndices) in BuildInfoRecord() argument
672 : TypeRecord(TypeRecordKind::BuildInfo), ArgIndices(ArgIndices) {} in BuildInfoRecord()
674 ArrayRef<TypeIndex> getArgs() const { return ArgIndices; } in getArgs()
686 SmallVector<TypeIndex, MaxArgs> ArgIndices; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DWrapperFunctionUtils.h214 using ArgIndices = std::make_index_sequence<std::tuple_size<ArgTuple>::value>; variable
220 if (!deserialize(ArgData, ArgSize, Args, ArgIndices{})) in apply()
225 std::forward<HandlerT>(H), Args, ArgIndices{}); in apply()
277 using ArgIndices = std::make_index_sequence<std::tuple_size<ArgTuple>::value>; variable
284 if (!deserialize(ArgData, ArgSize, Args, ArgIndices{})) { in applyAsync()
297 ArgIndices{}); in applyAsync()
H A DSimplePackedSerialization.h424 using ArgIndices = std::make_index_sequence<sizeof...(Ts)>; variable
445 return size(T, ArgIndices{}); in size()
449 return serialize(OB, T, ArgIndices{}); in serialize()
453 return deserialize(IB, T, ArgIndices{}); in deserialize()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp76 cci.m_build_info.assign(bir.ArgIndices.begin(), bir.ArgIndices.end()); in ParseBuildInfo()
H A DPdbAstBuilder.cpp1194 llvm::ArrayRef<TypeIndex> arg_indices = llvm::ArrayRef(args.ArgIndices); in CreateFunctionType()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dsimple_packed_serialization.h400 using ArgIndices = std::make_index_sequence<sizeof...(Ts)>; variable
421 return size(T, ArgIndices{}); in size()
425 return serialize(OB, T, ArgIndices{}); in serialize()
429 return deserialize(IB, T, ArgIndices{}); in deserialize()
H A Dwrapper_function_utils.h160 using ArgIndices = std::make_index_sequence<std::tuple_size<ArgTuple>::value>; variable
166 if (!deserialize(ArgData, ArgSize, Args, ArgIndices{})) in apply()
171 std::forward<HandlerT>(H), Args, ArgIndices{}); in apply()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBase.td87 class Callback<list<int> ArgIndices> : MultiIndexAttribute<"C", ArgIndices>;
H A DAttr.td4818 VariadicUnsignedArgument<"ArgIndices">];
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp140 /* copy */ ArgList.ArgIndices); in findChildren()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp360 Record.ArgIndices, in visitKnownRecord()
591 Record.ArgIndices, in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp435 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
592 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp492 auto Indices = BI.ArgIndices; in visitKnownRecord()