Searched refs:ArrayRef (Results 501 - 525 of 1734) sorted by relevance

<<21222324252627282930>>

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h14 #include "llvm/ADT/ArrayRef.h"
217 ArrayRef<uint8_t> Data);
281 void writeSection(const SectionBase *Sec, ArrayRef<uint8_t> Data);
282 virtual void writeData(uint8_t Type, uint16_t Addr, ArrayRef<uint8_t> Data);
300 void writeData(uint8_t Type, uint16_t Addr, ArrayRef<uint8_t> Data) override;
408 ArrayRef<uint8_t> OriginalData;
457 ArrayRef<uint8_t> Contents;
460 explicit Segment(ArrayRef<uint8_t> Data) : Contents(Data) {}
472 ArrayRef<uint8_t> getContents() const { return Contents; }
478 ArrayRef<uint8_
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp19 void OMPExecutableDirective::setClauses(ArrayRef<OMPClause *> Clauses) {
112 void OMPLoopDirective::setCounters(ArrayRef<Expr *> A) {
118 void OMPLoopDirective::setPrivateCounters(ArrayRef<Expr *> A) {
125 void OMPLoopDirective::setInits(ArrayRef<Expr *> A) {
131 void OMPLoopDirective::setUpdates(ArrayRef<Expr *> A) {
137 void OMPLoopDirective::setFinals(ArrayRef<Expr *> A) {
143 void OMPLoopDirective::setDependentCounters(ArrayRef<Expr *> A) {
150 void OMPLoopDirective::setDependentInits(ArrayRef<Expr *> A) {
156 void OMPLoopDirective::setFinalsConditions(ArrayRef<Expr *> A) {
164 ArrayRef<OMPClaus
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclTemplate.h28 #include "llvm/ADT/ArrayRef.h"
95 SourceLocation LAngleLoc, ArrayRef<NamedDecl *> Params,
114 ArrayRef<NamedDecl *> Params,
131 ArrayRef<NamedDecl*> asArray() {
134 ArrayRef<const NamedDecl*> asArray() const {
228 ArrayRef<NamedDecl *> Params,
250 TemplateArgumentList(ArrayRef<TemplateArgument> Args);
265 ArrayRef<TemplateArgument> Args);
271 explicit TemplateArgumentList(OnStackType, ArrayRef<TemplateArgument> Args)
293 ArrayRef<TemplateArgumen
[all...]
H A DTemplateBase.h25 #include "llvm/ADT/ArrayRef.h"
218 explicit TemplateArgument(ArrayRef<TemplateArgument> Args) {
231 ArrayRef<TemplateArgument> Args);
355 ArrayRef<TemplateArgument> pack_elements() const {
367 ArrayRef<TemplateArgument> getPackAsArray() const {
584 llvm::ArrayRef<TemplateArgumentLoc> arguments() const {
633 llvm::ArrayRef<TemplateArgumentLoc> arguments() const {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h319 ArrayRef<llvm::Type *>getCoerceAndExpandTypeSequence() const {
561 ArrayRef<ExtParameterInfo> paramInfos,
563 ArrayRef<CanQualType> argTypes,
583 ArrayRef<ArgInfo> arguments() const {
584 return ArrayRef<ArgInfo>(arg_begin(), NumArgs);
652 ArrayRef<ExtParameterInfo> getExtParameterInfos() const {
700 ArrayRef<ExtParameterInfo> paramInfos,
703 ArrayRef<CanQualType> argTypes) {
721 for (ArrayRef<CanQualType>::iterator
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp94 void adjustColumnWidths(ArrayRef<StringRef> Files,
95 ArrayRef<StringRef> Functions) {
105 void renderDivider(ArrayRef<size_t> ColumnWidths, raw_ostream &OS) {
122 unsigned getNumRedundantPathComponents(ArrayRef<std::string> Paths) {
152 unsigned getRedundantPrefixLen(ArrayRef<std::string> Paths) {
279 void CoverageReport::renderFunctionReports(ArrayRef<std::string> Files,
352 ArrayRef<std::string> Files, const CoverageViewOptions &Options,
393 raw_ostream &OS, ArrayRef<std::string> Files) const {
398 raw_ostream &OS, ArrayRef<std::string> Files,
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.h18 #include "llvm/ADT/ArrayRef.h"
136 void setConcatenationOf(ArrayRef<CodeGenSubRegIndex*> Parts);
211 ArrayRef<CodeGenRegister*> getExplicitAliases() const {
236 ArrayRef<LaneBitmask> getRegUnitLaneMasks() const {
352 ArrayRef<ValueTypeByHwMode> getValueTypes() const { return VTs; }
423 ArrayRef<CodeGenRegisterClass*> getSuperClasses() const {
430 ArrayRef<Record*> getOrder(unsigned No = 0) const {
506 ArrayRef<const CodeGenRegister*> getRoots() const {
779 ArrayRef<unsigned> getRCPressureSetIDs(unsigned RCIdx) const {
793 BitVector computeCoveredRegisters(ArrayRef<Recor
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallLowering.cpp39 bool MipsCallLowering::MipsHandler::assignVRegs(ArrayRef<Register> VRegs,
40 ArrayRef<CCValAssign> ArgLocs,
56 ArrayRef<CCValAssign> ArgLocs, ArrayRef<CallLowering::ArgInfo> Args) {
105 ArrayRef<CCValAssign> ArgLocs, unsigned ArgLocsStartIndex,
201 ArrayRef<CCValAssign> ArgLocs,
228 ArrayRef<CCValAssign> ArgLocs, unsigned ArgLocsStartIndex,
312 ArrayRef<CCValAssign> ArgLocs,
377 ArrayRef<Register> VRegs) const {
417 ArrayRef<ArrayRe
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp10 #include "llvm/ADT/ArrayRef.h"
144 ArrayRef<unsigned>
200 ArrayRef<unsigned> PredPRDepths = getProcResourceDepths(PredNum);
201 ArrayRef<unsigned> PredPRCycles = MTM.getProcResourceCycles(PredNum);
216 ArrayRef<unsigned> PRCycles = MTM.getProcResourceCycles(MBB->getNumber());
234 ArrayRef<unsigned> SuccPRHeights = getProcResourceHeights(SuccNum);
263 ArrayRef<unsigned>
276 ArrayRef<unsigned>
870 ArrayRef<unsigned> PRDepths = getProcResourceDepths(MBB->getNumber());
980 ArrayRef<cons
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTinyPtrVector.h12 #include "llvm/ADT/ArrayRef.h"
120 /// Constructor from an ArrayRef.
123 /// element constructor for ArrayRef.
124 explicit TinyPtrVector(ArrayRef<EltTy> Elts)
136 // implicit conversion operator to ArrayRef.
137 operator ArrayRef<EltTy>() const {
154 // Implicit conversion to ArrayRef<U> if EltTy* implicitly converts to U*.
157 std::enable_if_t<std::is_convertible<ArrayRef<EltTy>, ArrayRef<U>>::value,
159 operator ArrayRef<
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h335 unsigned getFirstUnallocated(ArrayRef<MCPhysReg> Regs) const {
364 MCPhysReg AllocateReg(ArrayRef<MCPhysReg> Regs) {
378 MCPhysReg AllocateRegBlock(ArrayRef<MCPhysReg> Regs, unsigned RegsRequired) {
405 MCRegister AllocateReg(ArrayRef<MCPhysReg> Regs, const MCPhysReg *ShadowRegs) {
452 ArrayRef<MCPhysReg> ShadowRegs) {
530 SmallVectorImpl<ForwardedRegister> &Forwards, ArrayRef<MVT> RegParmTypes,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexingContext.cpp54 ArrayRef<SymbolRelation> Relations) {
60 ArrayRef<SymbolRelation> Relations,
78 ArrayRef<SymbolRelation> Relations,
95 ArrayRef<SourceLocation> IdLocs,
314 bool IsRef, SymbolRoleSet Roles, ArrayRef<SymbolRelation> Relations) {
363 ArrayRef<SymbolRelation> Relations,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DMDBuilder.cpp42 MDNode *MDBuilder::createBranchWeights(ArrayRef<uint32_t> Weights) {
100 MDNode *MDBuilder::createCallees(ArrayRef<Function *> Callees) {
108 ArrayRef<int> Arguments,
201 MDNode *MDBuilder::createTBAAStructNode(ArrayRef<TBAAStructField> Fields) {
215 StringRef Name, ArrayRef<std::pair<MDNode *, uint64_t>> Fields) {
250 ArrayRef<TBAAStructField> Fields) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.cpp102 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data,
115 void LinePrinter::formatBinary(StringRef Label, ArrayRef<uint8_t> Data,
144 ArrayRef<support::ulittle32_t> Blocks = Layout.Blocks;
165 static std::pair<Run, uint32_t> findRun(uint32_t Offset, ArrayRef<Run> Runs) {
231 ArrayRef<uint8_t> Data;
256 ArrayRef<uint8_t> BlockData =
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp50 static uint32_t getLargeSlotValue(ArrayRef<UnwindCode> UC) {
219 void Dumper::printUnwindCode(const UnwindInfo& UI, ArrayRef<UnwindCode> UC) {
294 ArrayRef<UnwindCode> UC(&UI.UnwindCodes[0], UI.NumCodes);
340 ArrayRef<uint8_t> Contents;
366 ArrayRef<uint8_t> Contents;
376 ArrayRef<RuntimeFunction> RuntimeFunctions(Entries, Count);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h17 #include "llvm/ADT/ArrayRef.h"
311 using data_type = ArrayRef<NamedInstrProfRecord>;
352 virtual Error getRecords(ArrayRef<NamedInstrProfRecord> &Data) = 0;
356 ArrayRef<NamedInstrProfRecord> &Data) = 0;
388 Error getRecords(ArrayRef<NamedInstrProfRecord> &Data) override;
390 ArrayRef<NamedInstrProfRecord> &Data) override;
422 ArrayRef<NamedInstrProfRecord> &Data) = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp68 DT->applyUpdates(ArrayRef<DominatorTree::UpdateType>(I, E));
90 PDT->applyUpdates(ArrayRef<DominatorTree::UpdateType>(I, E));
231 void DomTreeUpdater::applyUpdates(ArrayRef<DominatorTree::UpdateType> Updates) {
250 ArrayRef<DominatorTree::UpdateType> Updates) {
454 [&](ArrayRef<DominatorTree::UpdateType>::const_iterator begin,
455 ArrayRef<DominatorTree::UpdateType>::const_iterator end) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc164 static ArrayRef<ProcessorGroup> getProcessorGroups() {
212 return ArrayRef<ProcessorGroup>(Groups);
243 ArrayRef<ProcessorGroup> Groups = getProcessorGroups();
269 ArrayRef<ProcessorGroup> Groups = getProcessorGroups();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/
H A DARCDisassembler.cpp44 ArrayRef<uint8_t> Bytes, uint64_t Address,
50 static bool readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address,
59 static bool readInstruction64(ArrayRef<uint8_t> Bytes, uint64_t Address,
69 static bool readInstruction48(ArrayRef<uint8_t> Bytes, uint64_t Address,
78 static bool readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address,
297 ArrayRef<uint8_t> Bytes,
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp23 #include "llvm/ADT/ArrayRef.h"
54 ArrayRef<DynTypedMatcher> InnerMatchers);
58 ArrayRef<DynTypedMatcher> InnerMatchers);
62 ArrayRef<DynTypedMatcher> InnerMatchers);
66 ArrayRef<DynTypedMatcher> InnerMatchers);
71 ArrayRef<DynTypedMatcher> InnerMatchers);
109 BoundNodesTreeBuilder *Builder, ArrayRef<DynTypedMatcher> InnerMatchers);
346 ArrayRef<DynTypedMatcher> InnerMatchers) {
366 ArrayRef<DynTypedMatcher> InnerMatchers) {
377 ArrayRef<DynTypedMatche
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp20 #include "llvm/ADT/ArrayRef.h"
40 llvm::ArrayRef<syntax::Token>
41 getTokensCovering(llvm::ArrayRef<syntax::Token> Toks, SourceRange R,
186 llvm::ArrayRef<syntax::Token> TokenBuffer::expandedTokens(SourceRange R) const {
248 llvm::SmallVector<llvm::ArrayRef<syntax::Token>, 1>
249 TokenBuffer::expandedForSpelled(llvm::ArrayRef<syntax::Token> Spelled) const {
321 llvm::ArrayRef<syntax::Token> TokenBuffer::spelledTokens(FileID FID) const {
343 llvm::Optional<llvm::ArrayRef<syntax::Token>>
344 TokenBuffer::spelledForExpanded(llvm::ArrayRef<syntax::Token> Expanded) const {
423 llvm::ArrayRef<synta
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp18 #include "llvm/ADT/ArrayRef.h"
281 ArrayRef<MDNode *> Types) {
305 ArrayRef<MDNode *> types() const {
313 ArrayRef<GlobalTypeMember *> Targets,
327 ArrayRef<GlobalTypeMember *> targets() const {
461 ArrayRef<Metadata *> TypeIds, Constant *CombinedGlobalAddr,
466 void buildBitSetsFromGlobalVariables(ArrayRef<Metadata *> TypeIds,
467 ArrayRef<GlobalTypeMember *> Globals);
474 void buildBitSetsFromFunctions(ArrayRef<Metadata *> TypeIds,
475 ArrayRef<GlobalTypeMembe
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DDWARF.cpp30 ArrayRef<typename ELFT::Shdr> objSections =
103 ArrayRef<RelTy> rels) const {
H A DEhFrame.cpp38 EhReader(InputSectionBase *s, ArrayRef<uint8_t> d) : isec(s), d(d) {}
55 ArrayRef<uint8_t> d;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DABI.h17 #include "llvm/ADT/ArrayRef.h"
47 llvm::ArrayRef<lldb::addr_t> args) const = 0;
63 llvm::ArrayRef<CallArgument> args) const;

Completed in 183 milliseconds

<<21222324252627282930>>