Home
last modified time | relevance | path

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

1234567891011

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DArrayRef.h27 template<typename T> class [[nodiscard]] MutableArrayRef; variable
178 template <typename Allocator> MutableArrayRef<T> copy(Allocator &A) { in copy()
181 return MutableArrayRef<T>(Buff, Length); in copy()
305 class [[nodiscard]] MutableArrayRef : public ArrayRef<T> {
320 /*implicit*/ MutableArrayRef() = default;
323 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() function
326 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function
329 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function
333 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function
336 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function
[all …]
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/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()
2556 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
2557 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
2583 using private_copies_iterator = MutableArrayRef<Expr *>::iterator;
2665 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;
433 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
487 MutableArrayRef<Expr *> getVars() { in getVars()
489 return llvm::MutableArrayRef(Storage, Data->getNumChildren()); in getVars()
501 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
505 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DOwnership.h272 using MultiExprArg = MutableArrayRef<Expr *>;
273 using MultiStmtArg = MutableArrayRef<Stmt *>;
274 using ASTTemplateArgsPtr = MutableArrayRef<ParsedTemplateArgument>;
275 using MultiTypeArg = MutableArrayRef<ParsedType>;
276 using MultiTemplateParamsArg = MutableArrayRef<TemplateParameterList *>;
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/openbsd-src/gnu/llvm/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;
197 MutableArrayRef<uint8_t> data() { return Data; } in data()
209 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-private-types.h70 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data()
71 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DDataBuffer.h111 llvm::MutableArrayRef<uint8_t> GetData() { in GetData()
112 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);
/openbsd-src/gnu/llvm/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
98 MutableArrayRef<char> Data, in applyFixup()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLLVM.h35 template<typename T> class MutableArrayRef; variable
71 using llvm::MutableArrayRef;
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMFrameLowering.h41 MutableArrayRef<CalleeSavedInfo> CSI,
88 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
/openbsd-src/gnu/llvm/lld/include/lld/Common/
H A DLLVM.h33 template <typename T> class MutableArrayRef; variable
73 using llvm::MutableArrayRef;
/openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h30 template <typename T> class MutableArrayRef; variable
211 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
218 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
/openbsd-src/gnu/llvm/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp30 const MCValue &Target, MutableArrayRef<char> Data,
65 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/openbsd-src/gnu/llvm/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp52 const MCValue &Target, MutableArrayRef<char> Data,
89 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h189 MutableArrayRef<Entry> getMutableRows() { in getMutableRows()
190 return MutableArrayRef(Rows.get(), Header.NumBuckets); in getMutableRows()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h114 MutableArrayRef<AsmToken> Buf(Tok);
124 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
/openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp41 const MCValue &Target, MutableArrayRef<char> Data,
128 MutableArrayRef<char> Data, in applyFixup()
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.h69 MutableArrayRef<CalleeSavedInfo> CSI,
123 MutableArrayRef<CalleeSavedInfo> CSI,
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h192 Block(Section &Parent, MutableArrayRef<char> Content, in Block()
254 MutableArrayRef<char> getMutableContent(LinkGraph &G);
261 MutableArrayRef<char> getAlreadyMutableContent() { in getAlreadyMutableContent()
264 return MutableArrayRef<char>(const_cast<char *>(Data), Size); in getAlreadyMutableContent()
271 void setMutableContent(MutableArrayRef<char> MutableContent) { in setMutableContent()
979 MutableArrayRef<char> allocateBuffer(size_t Size) { in allocateBuffer()
986 MutableArrayRef<char> allocateContent(ArrayRef<char> Source) { in allocateContent()
989 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()
999 MutableArrayRef<char> allocateString(Twine Source) { in allocateString()
1004 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateString()
[all …]

1234567891011