Home
last modified time | relevance | path

Searched refs:MutableArrayRef (Results 1 – 25 of 269) sorted by relevance

1234567891011

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h27 template<typename T> class [[nodiscard]] MutableArrayRef; variable
180 template <typename Allocator> MutableArrayRef<T> copy(Allocator &A) { in copy()
183 return MutableArrayRef<T>(Buff, Length); in copy()
307 class [[nodiscard]] MutableArrayRef : public ArrayRef<T> {
322 /*implicit*/ MutableArrayRef() = default;
325 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() function
328 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
331 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
335 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
338 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h218 MutableArrayRef<unsigned> UsedPhysRegs);
223 MutableArrayRef<unsigned> FreedPhysRegs);
255 void addRegisterWrite(WriteRef Write, MutableArrayRef<unsigned> UsedPhysRegs);
265 MutableArrayRef<unsigned> FreedPhysRegs);
278 bool tryEliminateMoveOrSwap(MutableArrayRef<WriteState> Writes,
279 MutableArrayRef<ReadState> Reads);
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h28 size_t writeMachOStruct(MutableArrayRef<char> Buf, size_t Offset, MachOStruct S, in writeMachOStruct()
41 virtual size_t write(MutableArrayRef<char> Buf, size_t Offset,
63 size_t write(MutableArrayRef<char> Buf, size_t Offset, \
97 size_t write(MutableArrayRef<char> Buf, size_t Offset,
120 size_t write(MutableArrayRef<char> Buf, size_t Offset,
138 size_t write(MutableArrayRef<char> Buf, size_t Offset,
286 size_t write(MutableArrayRef<char> Buf, size_t Offset,
444 void write(MutableArrayRef<char> Buffer) {
472 size_t writeHeader(MutableArrayRef<char> Buf, size_t Offset) {
477 size_t writeSegments(MutableArrayRef<char> Buf, size_t Offset) {
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h297 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
298 return MutableArrayRef<Expr *>( in getVarRefs()
311 using varlist_iterator = MutableArrayRef<Expr *>::iterator;
831 MutableArrayRef<Expr *> getSizesRefs() { in getSizesRefs()
832 return MutableArrayRef<Expr *>(static_cast<OMPSizesClause *>(this) in getSizesRefs()
851 MutableArrayRef<Expr *> Sizes = getSizesRefs(); in children()
2679 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
2680 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
2706 using private_copies_iterator = MutableArrayRef<Expr *>::iterator;
2788 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
[all …]
H A DDeclOpenMP.h35 MutableArrayRef<OMPClause *> getClauses() { in getClauses()
124 MutableArrayRef<Expr *> getVars() { in getVars()
126 return llvm::MutableArrayRef(Storage, Data->getNumChildren()); in getVars()
138 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
324 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
434 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
488 MutableArrayRef<Expr *> getVars() { in getVars()
490 return llvm::MutableArrayRef(Storage, Data->getNumChildren()); in getVars()
502 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
506 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
H A DOpenACCClause.h379 MutableArrayRef<Expr *> Exprs;
388 void setExprs(MutableArrayRef<Expr *> NewExprs) { in setExprs()
429 MutableArrayRef(getTrailingObjects<Expr *>(), QueueIdExprs.size() + 1)); in OpenACCWaitClause()
464 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), IntExprs.size())); in OpenACCNumGangsClause()
496 setExprs(MutableArrayRef<Expr *>{&this->IntExpr, 1}); in OpenACCClauseWithSingleIntExpr()
576 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), VarList.size())); in OpenACCPrivateClause()
598 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), VarList.size())); in OpenACCFirstPrivateClause()
620 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), VarList.size())); in OpenACCDevicePtrClause()
642 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), VarList.size())); in OpenACCAttachClause()
664 setExprs(MutableArrayRef(getTrailingObjects<Expr *>(), VarList.size())); in OpenACCNoCreateClause()
[all …]
H A DStmtOpenACC.h40 MutableArrayRef<const OpenACCClause *> Clauses;
50 void setClauseList(MutableArrayRef<const OpenACCClause *> NewClauses) { in setClauseList()
147 setClauseList(MutableArrayRef(getTrailingObjects<const OpenACCClause *>(),
165 setClauseList(MutableArrayRef(getTrailingObjects<const OpenACCClause *>(), in OpenACCComputeConstruct()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DTransformer.h53 llvm::MutableArrayRef<AtomicChange> Changes;
58 llvm::MutableArrayRef<AtomicChange> Changes;
72 Expected<llvm::MutableArrayRef<AtomicChange>> Changes)>;
189 RewriteResult.Changes = llvm::MutableArrayRef<AtomicChange>(Changes);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryByteStream.h91 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream()
125 MutableArrayRef<uint8_t> data() const { return Data; } in data()
128 MutableArrayRef<uint8_t> Data;
196 MutableArrayRef<uint8_t> data() { return Data; }
208 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/freebsd/contrib/llvm-project/lld/COFF/
H A DDebugTypes.h70 void remapRecord(MutableArrayRef<uint8_t> rec,
97 bool remapTypesInSymbolRecord(MutableArrayRef<uint8_t> rec);
99 void remapTypesInTypeRecord(MutableArrayRef<uint8_t> rec);
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAssumptionCache.h150 MutableArrayRef<ResultElem> assumptions() { in assumptions()
157 MutableArrayRef<ResultElem> assumptionsFor(const Value *V) { in assumptionsFor()
163 return MutableArrayRef<ResultElem>(); in assumptionsFor()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h198 Block(Section &Parent, MutableArrayRef<char> Content, in Block()
260 MutableArrayRef<char> getMutableContent(LinkGraph &G);
267 MutableArrayRef<char> getAlreadyMutableContent() { in getAlreadyMutableContent()
270 return MutableArrayRef<char>(const_cast<char *>(Data), Size); in getAlreadyMutableContent()
277 void setMutableContent(MutableArrayRef<char> MutableContent) { in setMutableContent()
1047 MutableArrayRef<char> allocateBuffer(size_t Size) { in allocateBuffer()
1054 MutableArrayRef<char> allocateContent(ArrayRef<char> Source) { in allocateContent()
1057 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()
1067 MutableArrayRef<char> allocateContent(Twine Source) { in allocateContent()
1072 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateContent()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIndirectCallPromotionAnalysis.cpp84 MutableArrayRef<InstrProfValueData>
91 return MutableArrayRef<InstrProfValueData>(); in getPromotionCandidatesForInstruction()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBuffer.h110 llvm::MutableArrayRef<uint8_t> GetData() {
111 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
H A DStringExtractor.h87 size_t GetHexBytes(llvm::MutableArrayRef<uint8_t> dest,
90 size_t GetHexBytesAvail(llvm::MutableArrayRef<uint8_t> dest);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLLVM.h32 template<typename T> class MutableArrayRef; variable
67 using llvm::MutableArrayRef;
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
91 MutableArrayRef<char> Data, in applyFixup()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h75 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data()
76 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h31 template <typename T> class MutableArrayRef; variable
211 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
218 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h33 template <typename T> class MutableArrayRef; variable
73 using llvm::MutableArrayRef;
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.h41 MutableArrayRef<CalleeSavedInfo> CSI,
96 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp52 const MCValue &Target, MutableArrayRef<char> Data,
82 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h114 MutableArrayRef<AsmToken> Buf(Tok);
124 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h189 MutableArrayRef<Entry> getMutableRows() { in getMutableRows()
190 return MutableArrayRef(Rows.get(), Header.NumBuckets); in getMutableRows()

1234567891011