Home
last modified time | relevance | path

Searched refs:ArrayRef (Results 1 – 25 of 1870) sorted by relevance

12345678910>>...75

/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DEnumTables.h21 ArrayRef<EnumEntry<SymbolKind>> getSymbolTypeNames();
22 ArrayRef<EnumEntry<TypeLeafKind>> getTypeLeafNames();
25 ArrayRef<EnumEntry<uint8_t>> getProcSymFlagNames();
26 ArrayRef<EnumEntry<uint16_t>> getLocalFlagNames();
32 ArrayRef<EnumEntry<unsigned>> getCPUTypeNames();
37 ArrayRef<EnumEntry<uint16_t>> getTrampolineNames();
38 ArrayRef<EnumEntry<COFF::SectionCharacteristics>>
43 ArrayRef<EnumEntry<uint16_t>> getMemberKindNames();
44 ArrayRef<EnumEntry<uint8_t>> getPtrKindNames();
45 ArrayRef<EnumEntry<uint8_t>> getPtrModeNames();
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DArrayRef.h124 ArrayRef(const ArrayRef<U *> &A,
472 template <typename T> ArrayRef(const T &OneElt) -> ArrayRef<T>;
485 ArrayRef(const SmallVector<T, N> &Vec) -> ArrayRef<T>;
492 ArrayRef(const std::array<T, N> &Vec) -> ArrayRef<T>;
495 template <typename T> ArrayRef(const ArrayRef<T> &Vec) -> ArrayRef<T>;
498 template <typename T> ArrayRef(ArrayRef<T> &Vec) -> ArrayRef<T>;
559 ArrayRef<T> makeArrayRef(const ArrayRef<T> &Vec) { in makeArrayRef()
566 ArrayRef<T> &makeArrayRef(ArrayRef<T> &Vec) { in makeArrayRef()
668 inline bool operator==(ArrayRef<T> LHS, ArrayRef<T> RHS) {
678 inline bool operator!=(ArrayRef<T> LHS, ArrayRef<T> RHS) {
[all …]
H A DCombinationGenerator.h44 const ArrayRef<value_type> Range;
63 WrappingIterator(ArrayRef<value_type> Range_) : Range(Range_) { in WrappingIterator()
69 const ArrayRef<choices_storage_type> VariablesChoices;
72 const function_ref<bool(ArrayRef<choice_type>)> Callback) const { in performGeneration()
96 for (ArrayRef<choice_type> VC : VariablesChoices) in performGeneration()
117 CombinationGenerator(ArrayRef<choices_storage_type> VariablesChoices_) in CombinationGenerator()
121 llvm::for_each(VariablesChoices, [](ArrayRef<choice_type> VariableChoices) { in CombinationGenerator()
132 for (ArrayRef<choice_type> VariableChoices : VariablesChoices) in numCombinations()
141 void generate(const function_ref<bool(ArrayRef<choice_type>)> Callback) { in generate()
H A Dedit_distance.h46 unsigned ComputeMappedEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
61 typename ArrayRef<T>::size_type m = FromArray.size();
62 typename ArrayRef<T>::size_type n = ToArray.size();
68 typename ArrayRef<T>::size_type AbsDiff = m > n ? m - n : n - m;
85 for (typename ArrayRef<T>::size_type y = 1; y <= m; ++y) {
91 for (typename ArrayRef<T>::size_type x = 1; x <= n; ++x) {
115 unsigned ComputeEditDistance(ArrayRef<T> FromArray, ArrayRef<T> ToArray,
/openbsd/gnu/llvm/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h51 ArrayRef<Value *> Cur, ArrayRef<Type *> BaseTypes)>;
61 Make = [Pred](ArrayRef<Value *> Cur, ArrayRef<Type *> BaseTypes) { in SourcePred()
98 auto Make = [Only](ArrayRef<Value *>, ArrayRef<Type *>) { in onlyType()
105 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyType()
113 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyIntType()
121 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyFloatType()
129 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyPtrType()
132 auto Make = [](ArrayRef<Value *>, ArrayRef<Type *> Ts) { in anyPtrType()
152 auto Make = [](ArrayRef<Value *>, ArrayRef<Type *> Ts) { in sizedPtrType()
199 auto Make = [](ArrayRef<Value *> Cur, ArrayRef<Type *>) { in matchFirstType()
[all …]
H A DRandomIRBuilder.h36 RandomIRBuilder(int Seed, ArrayRef<Type *> AllowedTypes) in RandomIRBuilder()
44 Value *findOrCreateSource(BasicBlock &BB, ArrayRef<Instruction *> Insts);
50 Value *findOrCreateSource(BasicBlock &BB, ArrayRef<Instruction *> Insts,
51 ArrayRef<Value *> Srcs, fuzzerop::SourcePred Pred,
54 Value *newSource(BasicBlock &BB, ArrayRef<Instruction *> Insts,
55 ArrayRef<Value *> Srcs, fuzzerop::SourcePred Pred,
59 void connectToSink(BasicBlock &BB, ArrayRef<Instruction *> Insts, Value *V);
61 void newSink(BasicBlock &BB, ArrayRef<Instruction *> Insts, Value *V);
62 Value *findPointer(BasicBlock &BB, ArrayRef<Instruction *> Insts,
63 ArrayRef<Value *> Srcs, fuzzerop::SourcePred Pred);
[all …]
/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp440 return ArrayRef(SymbolTypeNames); in getSymbolTypeNames()
444 return ArrayRef(TypeLeafNames); in getTypeLeafNames()
461 return ArrayRef(ProcSymFlagNames); in getProcSymFlagNames()
465 return ArrayRef(LocalFlags); in getLocalFlagNames()
473 return ArrayRef(SourceLanguages); in getSourceLanguageNames()
489 return ArrayRef(CPUTypeNames); in getCPUTypeNames()
509 return ArrayRef(TrampolineNames); in getTrampolineNames()
530 return ArrayRef(MemberKindNames); in getMemberKindNames()
534 return ArrayRef(PtrKindNames); in getPtrKindNames()
538 return ArrayRef(PtrModeNames); in getPtrModeNames()
[all …]
H A DTypeStreamMerger.cpp83 ArrayRef<TypeIndex> TypeSourceToDest,
92 ArrayRef<GloballyHashedType> Hashes,
95 ArrayRef<TypeIndex> TypeSourceToDest,
97 ArrayRef<GloballyHashedType> Hashes);
136 ArrayRef<uint8_t> remapIndices(const CVType &OriginalType,
186 ArrayRef<GloballyHashedType> GlobalHashes;
190 ArrayRef<TypeIndex> TypeLookup;
274 ArrayRef<GloballyHashedType> Hashes, in mergeTypeRecords()
344 ArrayRef<uint8_t> Buffer; in remapAllTypes()
387 ArrayRef<uint8_t>
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Object/
H A DMinidump.h45 std::optional<ArrayRef<uint8_t>>
50 Expected<ArrayRef<uint8_t>>
72 Expected<ArrayRef<minidump::Module>> getModuleList() const { in getModuleList()
131 ArrayRef<uint8_t> Storage;
155 static Expected<ArrayRef<uint8_t>> getDataSlice(ArrayRef<uint8_t> Data,
162 static Expected<ArrayRef<T>> getDataSliceAs(ArrayRef<uint8_t> Data,
166 ArrayRef<minidump::Directory> Streams, in MinidumpFile()
171 ArrayRef<uint8_t> getData() const { in getData()
186 ArrayRef<minidump::Directory> Streams;
201 Expected<ArrayRef<T>> MinidumpFile::getDataSliceAs(ArrayRef<uint8_t> Data, in getDataSliceAs()
[all …]
/openbsd/gnu/llvm/llvm/lib/Support/
H A DARMAttributeParser.cpp117 return parseStringAttribute("ARM_ISA_use", tag, ArrayRef(strings)); in ARM_ISA_use()
129 return parseStringAttribute("FP_arch", tag, ArrayRef(strings)); in FP_arch()
134 return parseStringAttribute("WMMX_arch", tag, ArrayRef(strings)); in WMMX_arch()
146 return parseStringAttribute("MVE_arch", tag, ArrayRef(strings)); in MVE_arch()
153 return parseStringAttribute("PCS_config", tag, ArrayRef(strings)); in PCS_config()
282 ArrayRef(strings)); in ABI_FP_optimization_goals()
333 return parseStringAttribute("DIV_use", tag, ArrayRef(strings)); in DIV_use()
343 return parseStringAttribute("T2EE_use", tag, ArrayRef(strings)); in T2EE_use()
367 return parseStringAttribute("PACRET_use", tag, ArrayRef(strings)); in PACRET_use()
372 return parseStringAttribute("BTI_use", tag, ArrayRef(strings)); in BTI_use()
[all …]
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress()
107 void zlib::compress(ArrayRef<uint8_t> Input, in compress()
123 Error zlib::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress()
135 Error zlib::decompress(ArrayRef<uint8_t> Input, in decompress()
147 void zlib::compress(ArrayRef<uint8_t> Input, in compress()
155 Error zlib::decompress(ArrayRef<uint8_t> Input, in decompress()
166 void zstd::compress(ArrayRef<uint8_t> Input, in compress()
182 Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output, in decompress()
195 Error zstd::decompress(ArrayRef<uint8_t> Input, in decompress()
207 void zstd::compress(ArrayRef<uint8_t> Input, in compress()
[all …]
H A DProgram.cpp26 ArrayRef<StringRef> Args,
27 std::optional<ArrayRef<StringRef>> Env,
28 ArrayRef<std::optional<StringRef>> Redirects,
32 int sys::ExecuteAndWait(StringRef Program, ArrayRef<StringRef> Args, in ExecuteAndWait()
33 std::optional<ArrayRef<StringRef>> Env, in ExecuteAndWait()
34 ArrayRef<std::optional<StringRef>> Redirects, in ExecuteAndWait()
57 ProcessInfo sys::ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args, in ExecuteNoWait()
58 std::optional<ArrayRef<StringRef>> Env, in ExecuteNoWait()
59 ArrayRef<std::optional<StringRef>> Redirects, in ExecuteNoWait()
75 ArrayRef<const char *> Args) { in commandLineFitsWithinSystemLimits()
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DExecutorProcessControl.h123 Error writeUInt8s(ArrayRef<tpctypes::UInt8Write> Ws) { in writeUInt8s()
131 Error writeUInt16s(ArrayRef<tpctypes::UInt16Write> Ws) { in writeUInt16s()
139 Error writeUInt32s(ArrayRef<tpctypes::UInt32Write> Ws) { in writeUInt32s()
147 Error writeUInt64s(ArrayRef<tpctypes::UInt64Write> Ws) { in writeUInt64s()
155 Error writeBuffers(ArrayRef<tpctypes::BufferWrite> Ws) { in writeBuffers()
256 lookupSymbols(ArrayRef<LookupRequest> Request) = 0;
296 ArrayRef<char> ArgBuffer) { in callWrapperAsync()
400 lookupSymbols(ArrayRef<LookupRequest> Request) override { in lookupSymbols()
449 lookupSymbols(ArrayRef<LookupRequest> Request) override;
460 ArrayRef<char> ArgBuffer) override;
[all …]
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenSchedule.h146 bool isKeyEqual(Record *IC, ArrayRef<unsigned> W, in isKeyEqual()
147 ArrayRef<unsigned> R) const { in isKeyEqual()
148 return ItinClassDef == IC && ArrayRef(Writes) == W && ArrayRef(Reads) == R; in isKeyEqual()
564 ArrayRef<unsigned> OperReads,
565 ArrayRef<unsigned> ProcIndices);
570 ArrayRef<SMLoc> Loc) const;
618 void inferFromRW(ArrayRef<unsigned> OperWrites, ArrayRef<unsigned> OperReads,
631 ArrayRef<unsigned> ProcIndices);
633 void collectRWResources(ArrayRef<unsigned> Writes, ArrayRef<unsigned> Reads,
634 ArrayRef<unsigned> ProcIndices);
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.h40 llvm::ArrayRef<uint8_t> range_ref;
42 Range(lldb::addr_t start, llvm::ArrayRef<uint8_t> range_ref) in Range()
55 llvm::ArrayRef<uint8_t> GetData();
57 llvm::ArrayRef<uint8_t> GetStream(StreamType stream_type);
61 llvm::ArrayRef<minidump::Thread> GetThreads();
63 llvm::ArrayRef<uint8_t> GetThreadContext(const LocationDescriptor &location);
65 llvm::ArrayRef<uint8_t> GetThreadContext(const minidump::Thread &td);
67 llvm::ArrayRef<uint8_t> GetThreadContextWow64(const minidump::Thread &td);
77 llvm::ArrayRef<minidump::Module> GetModuleList();
89 llvm::ArrayRef<uint8_t> GetMemory(lldb::addr_t addr, size_t size);
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DModuleUtils.h26 template <typename T> class ArrayRef; variable
52 ArrayRef<Type *> InitArgTypes,
65 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
77 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
86 void appendToUsed(Module &M, ArrayRef<GlobalValue *> Values);
89 void appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values);
144 Module &M, ArrayRef<GlobalIFunc *> IFuncsToLower = {});
150 void setVectorVariantNames(CallInst *CI, ArrayRef<std::string> VariantMappings);
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DProgram.h79 findProgramByName(StringRef Name, ArrayRef<StringRef> Paths = {});
107 ArrayRef<StringRef> Args, ///< An array of strings that are passed to the
110 std::optional<ArrayRef<StringRef>> Env =
115 ArrayRef<std::optional<StringRef>> Redirects = {}, ///<
149 ProcessInfo ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args,
150 std::optional<ArrayRef<StringRef>> Env,
151 ArrayRef<std::optional<StringRef>> Redirects = {},
160 ArrayRef<StringRef> Args);
165 ArrayRef<const char *> Args);
239 ErrorOr<std::wstring> flattenWindowsCommandLine(ArrayRef<StringRef> Args);
H A DCompression.h43 void compress(ArrayRef<uint8_t> Input,
47 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output,
50 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output,
64 void compress(ArrayRef<uint8_t> Input,
68 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output,
71 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output,
113 void compress(Params P, ArrayRef<uint8_t> Input,
117 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
119 Error decompress(Format F, ArrayRef<uint8_t> Input,
121 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
H A DBinaryByteStream.h41 ArrayRef<uint8_t> &Buffer) override { in readBytes()
49 ArrayRef<uint8_t> &Buffer) override { in readLongestContiguousChunk()
58 ArrayRef<uint8_t> data() const { return Data; } in data()
67 ArrayRef<uint8_t> Data;
100 ArrayRef<uint8_t> &Buffer) override { in readBytes()
148 ArrayRef<uint8_t> &Buffer) override { in readBytes()
152 Buffer = ArrayRef(Data).slice(Offset, Size); in readBytes()
156 void insert(uint64_t Offset, ArrayRef<uint8_t> Bytes) { in insert()
165 Buffer = ArrayRef(Data).slice(Offset); in readLongestContiguousChunk()
241 ArrayRef<uint8_t> &Buffer) override { in readBytes()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/MCA/
H A DHWEventListener.h67 HWInstructionIssuedEvent(const InstRef &IR, ArrayRef<ResourceUse> UR) in HWInstructionIssuedEvent()
70 ArrayRef<ResourceUse> UsedResources;
75 HWInstructionDispatchedEvent(const InstRef &IR, ArrayRef<unsigned> Regs, in HWInstructionDispatchedEvent()
81 ArrayRef<unsigned> UsedPhysRegs;
96 HWInstructionRetiredEvent(const InstRef &IR, ArrayRef<unsigned> Regs) in HWInstructionRetiredEvent()
101 ArrayRef<unsigned> FreedPhysRegs;
146 HWPressureEvent(GenericReason reason, ArrayRef<InstRef> Insts,
154 ArrayRef<InstRef> AffectedInstructions;
175 ArrayRef<unsigned> Buffers) {} in onReservedBuffers()
177 ArrayRef<unsigned> Buffers) {} in onReleasedBuffers()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h2913 ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps,
3286 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
3287 ArrayRef<Expr *> ReductionOps, ArrayRef<Expr *> CopyOps,
3561 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
3805 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
4383 ArrayRef<Expr *> DstExprs, ArrayRef<Expr *> AssignmentOps);
5642 ArrayRef<ValueDecl *>(), ArrayRef<unsigned>(), ArrayRef<unsigned>(), in component_lists_end()
5891 ArrayRef<Expr *> Vars, ArrayRef<ValueDecl *> Declarations,
7065 ArrayRef<Expr *> Vars, ArrayRef<ValueDecl *> Declarations,
7235 ArrayRef<Expr *> Vars, ArrayRef<Expr *> PrivateVars,
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DCallLowering.h55 ArrayRef<ISD::ArgFlagsTy> Flags = ArrayRef<ISD::ArgFlagsTy>(),
81 ArgInfo(ArrayRef<Register> Regs, Type *Ty, unsigned OrigIndex,
82 ArrayRef<ISD::ArgFlagsTy> Flags = ArrayRef<ISD::ArgFlagsTy>(),
95 ArrayRef<ISD::ArgFlagsTy> Flags = ArrayRef<ISD::ArgFlagsTy>(),
402 ArrayRef<Register> ThisReturnRegs = std::nullopt) const;
411 ArrayRef<Register> ThisReturnRegs = std::nullopt) const;
451 ArrayRef<Register> VRegs, Register DemoteReg,
521 ArrayRef<Register> VRegs, in lowerReturn()
542 ArrayRef<ArrayRef<Register>> VRegs, in lowerFormalArguments()
582 ArrayRef<Register> ResRegs,
[all …]
H A DCSEMIRBuilder.h58 void profileDstOps(ArrayRef<DstOp> Ops, GISelInstProfileBuilder &B) const { in profileDstOps()
65 void profileSrcOps(ArrayRef<SrcOp> Ops, GISelInstProfileBuilder &B) const { in profileSrcOps()
72 void profileEverything(unsigned Opc, ArrayRef<DstOp> DstOps,
73 ArrayRef<SrcOp> SrcOps, std::optional<unsigned> Flags,
82 MachineInstrBuilder generateCopiesIfRequired(ArrayRef<DstOp> DstOps,
88 bool checkCopyToDefsPossible(ArrayRef<DstOp> DstOps);
95 buildInstr(unsigned Opc, ArrayRef<DstOp> DstOps, ArrayRef<SrcOp> SrcOps,
/openbsd/gnu/llvm/clang/include/clang/Tooling/Syntax/
H A DTokens.h190 llvm::ArrayRef<syntax::Token> expandedTokens() const { in expandedTokens()
231 std::optional<llvm::ArrayRef<syntax::Token>>
232 spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const;
261 llvm::SmallVector<llvm::ArrayRef<syntax::Token>, 1>
262 expandedForSpelled(llvm::ArrayRef<syntax::Token> Spelled) const;
274 llvm::ArrayRef<syntax::Token> Spelled;
275 llvm::ArrayRef<syntax::Token> Expanded;
293 llvm::ArrayRef<syntax::Token> spelledTokens(FileID FID) const;
383 llvm::ArrayRef<syntax::Token>
385 llvm::ArrayRef<syntax::Token>
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Option/
H A DOptTable.h46 ArrayRef<StringLiteral> Prefixes;
62 ArrayRef<Info> OptionInfos;
80 virtual ArrayRef<StringLiteral> getPrefixesUnion() const = 0;
95 OptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
230 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
271 GenericOptTable(ArrayRef<Info> OptionInfos, bool IgnoreCase = false);
272 ArrayRef<StringLiteral> getPrefixesUnion() const final { in getPrefixesUnion()
278 ArrayRef<StringLiteral> PrefixesUnion;
281 PrecomputedOptTable(ArrayRef<Info> OptionInfos,
282 ArrayRef<StringLiteral> PrefixesTable,
[all …]

12345678910>>...75