Home
last modified time | relevance | path

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

1234567891011

/freebsd-src/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()
294 /// MutableArrayRef - Represent a mutable reference to an array (0 or more
301 /// extends past that of the MutableArrayRef. For this reason, it is not in
302 /// general safe to store a MutableArrayRef.
307 class [[nodiscard]] MutableArrayRef : public ArrayRef<T> {
321 /// Construct an empty MutableArrayRef.
322 /*implicit*/ MutableArrayRef() = default;
324 /// Construct an empty MutableArrayRef fro
325 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} MutableArrayRef() function
328 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} MutableArrayRef() function
331 /*implicit*/ MutableArrayRef(T *data, size_t length) MutableArrayRef() function
335 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} MutableArrayRef() function
338 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) MutableArrayRef() function
342 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) MutableArrayRef() function
347 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) MutableArrayRef() function
352 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} MutableArrayRef() function
[all...]
/freebsd-src/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-src/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<cha
[all...]
/freebsd-src/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 private_copies()
2680 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in private_copies()
2706 using private_copies_iterator = MutableArrayRef<Expr *>::iterator;
2788 MutableArrayRef<Exp
[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<OMPClaus
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Sema/
H A DOwnership.h258 using MultiExprArg = MutableArrayRef<Expr *>;
259 using MultiStmtArg = MutableArrayRef<Stmt *>;
260 using ASTTemplateArgsPtr = MutableArrayRef<ParsedTemplateArgument>;
261 using MultiTypeArg = MutableArrayRef<ParsedType>;
262 using MultiTemplateParamsArg = MutableArrayRef<TemplateParameterList *>;
/freebsd-src/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-src/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; } in data()
208 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/freebsd-src/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-src/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/freebsd-src/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-src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBuffer.h110 llvm::MutableArrayRef<uint8_t> GetData() { in 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-src/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 allocateContent()
1054 MutableArrayRef<char> allocateContent(ArrayRef<char> Source) {
1057 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()
1067 MutableArrayRef<char> allocateContent(Twine Source) {
1072 return MutableArrayRef<cha in allocateCString()
[all...]
/freebsd-src/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-src/contrib/llvm-project/clang/include/clang/Basic/
H A DLLVM.h32 template<typename T> class MutableArrayRef; variable
67 using llvm::MutableArrayRef;
/freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
91 MutableArrayRef<char> Data, in writeNopData()
/freebsd-src/contrib/llvm-project/lld/include/lld/Common/
H A DLLVM.h33 template <typename T> class MutableArrayRef; variable
73 using llvm::MutableArrayRef;
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMFrameLowering.h41 MutableArrayRef<CalleeSavedInfo> CSI,
96 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h31 template <typename T> class MutableArrayRef;
211 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
218 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
30 template <typename T> class MutableArrayRef; global() variable
/freebsd-src/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-src/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()
/freebsd-src/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 writeNopData()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.h81 MutableArrayRef<CalleeSavedInfo> CSI,
140 MutableArrayRef<CalleeSavedInfo> CSI,
/freebsd-src/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp41 const MCValue &Target, MutableArrayRef<char> Data,
122 MutableArrayRef<char> Data, in adjustFixupValue()

1234567891011