| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | ArrayRef.h | 27 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 D | RegisterFile.h | 218 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 D | OpenMPClause.h | 297 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 D | DeclOpenMP.h | 35 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 D | Ownership.h | 272 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 D | Transformer.h | 53 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 D | CoverageMappingWriter.h | 44 MutableArrayRef<CounterMappingRegion> MappingRegions; 49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | BinaryByteStream.h | 91 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 D | DebugTypes.h | 70 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 D | AssumptionCache.h | 150 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 D | lldb-private-types.h | 70 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 D | DataBuffer.h | 111 llvm::MutableArrayRef<uint8_t> GetData() { in GetData() 112 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
|
| H A D | StringExtractor.h | 87 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 D | WebAssemblyAsmBackend.cpp | 48 const MCValue &Target, MutableArrayRef<char> Data, 98 MutableArrayRef<char> Data, in applyFixup()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | LLVM.h | 35 template<typename T> class MutableArrayRef; variable 71 using llvm::MutableArrayRef;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.h | 41 MutableArrayRef<CalleeSavedInfo> CSI, 88 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
|
| /openbsd-src/gnu/llvm/lld/include/lld/Common/ |
| H A D | LLVM.h | 33 template <typename T> class MutableArrayRef; variable 73 using llvm::MutableArrayRef;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 30 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 D | BPFAsmBackend.cpp | 30 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 D | LanaiAsmBackend.cpp | 52 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 D | DWARFUnitIndex.h | 189 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 D | MCAsmLexer.h | 114 MutableArrayRef<AsmToken> Buf(Tok); 124 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/MSP430/MCTargetDesc/ |
| H A D | MSP430AsmBackend.cpp | 41 const MCValue &Target, MutableArrayRef<char> Data, 128 MutableArrayRef<char> Data, in applyFixup()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZFrameLowering.h | 69 MutableArrayRef<CalleeSavedInfo> CSI, 123 MutableArrayRef<CalleeSavedInfo> CSI,
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 192 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 …]
|