| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ArrayRef.h | 27 template<typename T> class [[nodiscard]] MutableArrayRef; variable 176 template <typename Allocator> MutableArrayRef<T> copy(Allocator &A) { in copy() 179 return MutableArrayRef<T>(Buff, Length); in copy() 303 class [[nodiscard]] MutableArrayRef : public ArrayRef<T> { 318 /*implicit*/ MutableArrayRef() = default; 322 MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() function 325 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function 328 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function 332 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function 343 /*implicit*/ constexpr MutableArrayRef(const C &V) : ArrayRef<T>(V) {} in MutableArrayRef() function [all …]
|
| /freebsd/contrib/llvm-project/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);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOBuilder.h | 28 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, in write() 133 size_t write(MutableArrayRef<char> Buf, size_t Offset, 281 size_t write(MutableArrayRef<char> Buf, size_t Offset, 439 void write(MutableArrayRef<char> Buffer) { 467 size_t writeHeader(MutableArrayRef<char> Buf, size_t Offset) { 472 size_t writeSegments(MutableArrayRef<char> Buf, size_t Offset) { 478 size_t writeLoadCommands(MutableArrayRef<char> Buf, size_t Offset) { [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | TrailingObjects.h | 336 template <typename T> MutableArrayRef<T> getTrailingObjects(size_t N) { in getTrailingObjects() 337 return MutableArrayRef(getTrailingObjects<T>(), N); in getTrailingObjects() 344 MutableArrayRef<FirstTrailingType> getTrailingObjects(size_t N) { in getTrailingObjects() 345 return MutableArrayRef(getTrailingObjects(), N); in getTrailingObjects() 368 MutableArrayRef<T> getTrailingObjectsNonStrict(size_t N) { in getTrailingObjectsNonStrict() 369 return MutableArrayRef(getTrailingObjectsNonStrict<T>(), N); in getTrailingObjectsNonStrict()
|
| 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; 196 MutableArrayRef<uint8_t> data() { return Data; } 208 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/ |
| H A D | Transformer.h | 48 llvm::MutableArrayRef<AtomicChange> Changes; 53 llvm::MutableArrayRef<AtomicChange> Changes; 67 Expected<llvm::MutableArrayRef<AtomicChange>> Changes)>; 184 RewriteResult.Changes = llvm::MutableArrayRef<AtomicChange>(Changes);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFrameLowering.h | 41 MutableArrayRef<CalleeSavedInfo> CSI, 98 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc, 108 MutableArrayRef<CalleeSavedInfo> CSI,
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclOpenMP.h | 35 MutableArrayRef<OMPClause *> getClauses() { in getClauses() 124 MutableArrayRef<Expr *> getVars() { 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() 502 typedef MutableArrayRef<Expr *>::iterator varlist_iterator; 506 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
|
| H A D | OpenMPClause.h | 297 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs() 310 using varlist_iterator = MutableArrayRef<Expr *>::iterator; 382 MutableArrayRef<OpenMPDirectiveKind> getDirectiveKinds() { in getDirectiveKinds() 1001 MutableArrayRef<Expr *> getSizesRefs() { in getSizesRefs() 1013 MutableArrayRef<Expr *> Sizes = getSizesRefs(); in children() 1098 MutableArrayRef<Expr *> getArgsRefs() { return getTrailingObjects(NumLoops); } in getArgsRefs() 1103 MutableArrayRef<Expr *> Args = getArgsRefs(); in children() 3176 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies() 3203 using private_copies_iterator = MutableArrayRef<Expr *>::iterator; 3285 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies() [all …]
|
| /freebsd/contrib/llvm-project/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);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMappingWriter.h | 45 MutableArrayRef<CounterMappingRegion> MappingRegions; 50 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | RegisterContextMinidump_x86_64.cpp | 19 static llvm::MutableArrayRef<uint8_t> getDestRegister(uint8_t *context, in getDestRegister() 43 llvm::MutableArrayRef<uint8_t> reg_dest = getDestRegister(context, reg); in writeRegister() 54 llvm::MutableArrayRef<uint8_t> reg_dest = bytes.take_front(8); in writeBaseRegister()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | AssumptionCache.h | 151 MutableArrayRef<ResultElem> assumptions() { in assumptions() 158 MutableArrayRef<ResultElem> assumptionsFor(const Value *V) { in assumptionsFor() 164 return MutableArrayRef<ResultElem>(); in assumptionsFor()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | DataBuffer.h | 110 llvm::MutableArrayRef<uint8_t> GetData() { 111 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);
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | IndirectCallPromotionAnalysis.cpp | 90 MutableArrayRef<InstrProfValueData> 97 return MutableArrayRef<InstrProfValueData>(); in getPromotionCandidatesForInstruction()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | LLVM.h | 32 template<typename T> class MutableArrayRef; variable 67 using llvm::MutableArrayRef;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| H A D | WebAssemblyAsmBackend.cpp | 42 MutableArrayRef<char> Data, uint64_t Value, bool) override; 84 MutableArrayRef<char> Data, in applyFixup()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 199 Block(Section &Parent, MutableArrayRef<char> Content, in Block() 267 MutableArrayRef<char> getMutableContent(LinkGraph &G); 274 MutableArrayRef<char> getAlreadyMutableContent() { in getAlreadyMutableContent() 277 return MutableArrayRef<char>(const_cast<char *>(Data), Size); in getAlreadyMutableContent() 284 void setMutableContent(MutableArrayRef<char> MutableContent) { in setMutableContent() 1069 MutableArrayRef<char> allocateBuffer(size_t Size) { in allocateBuffer() 1076 MutableArrayRef<char> allocateContent(ArrayRef<char> Source) { in allocateContent() 1079 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent() 1089 MutableArrayRef<char> allocateContent(Twine Source) { in allocateContent() 1094 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateContent() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/ |
| H A D | MSP430AsmBackend.cpp | 39 MutableArrayRef<char> Data, uint64_t Value, 109 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
| /freebsd/contrib/llvm-project/lld/include/lld/Common/ |
| H A D | LLVM.h | 33 template <typename T> class MutableArrayRef; variable 70 using llvm::MutableArrayRef;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-private-types.h | 78 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data() 79 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/ |
| H A D | LanaiAsmBackend.cpp | 51 MutableArrayRef<char> Data, uint64_t Value, 76 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenFunctionInfo.h | 134 llvm::MutableArrayRef<CanQualType> argTypes() { in argTypes() 135 return llvm::MutableArrayRef<CanQualType>(argTypesBegin(), numArgs); in argTypes()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 32 template <typename T> class MutableArrayRef; variable 212 LLVM_ABI void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets, 219 LLVM_ABI void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
|