Home
last modified time | relevance | path

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

123456789

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DArrayRef.h307 class LLVM_NODISCARD MutableArrayRef : public ArrayRef<T> {
322 /*implicit*/ MutableArrayRef() = default;
325 /*implicit*/ MutableArrayRef(NoneType) : 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
342 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function
347 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function
352 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
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-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOpenMPClause.h213 MutableArrayRef<Expr *> getVarRefs() { in getVarRefs()
214 return MutableArrayRef<Expr *>( in getVarRefs()
227 using varlist_iterator = MutableArrayRef<Expr *>::iterator;
849 MutableArrayRef<Expr *> getSizesRefs() { in getSizesRefs()
850 return MutableArrayRef<Expr *>(static_cast<OMPSizesClause *>(this) in getSizesRefs()
869 MutableArrayRef<Expr *> Sizes = getSizesRefs(); in children()
2397 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
2398 return MutableArrayRef<Expr *>(varlist_end(), varlist_size()); in getPrivateCopies()
2424 using private_copies_iterator = MutableArrayRef<Expr *>::iterator;
2506 MutableArrayRef<Expr *> getPrivateCopies() { in getPrivateCopies()
[all …]
DDeclOpenMP.h35 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;
433 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
487 MutableArrayRef<Expr *> getVars() { in getVars()
501 typedef MutableArrayRef<Expr *>::iterator varlist_iterator;
505 using clauselist_iterator = MutableArrayRef<OMPClause *>::iterator;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
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 *>;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DBinaryByteStream.h92 MutableBinaryByteStream(MutableArrayRef<uint8_t> Data, in MutableBinaryByteStream()
126 MutableArrayRef<uint8_t> data() const { return Data; } in data()
129 MutableArrayRef<uint8_t> Data;
200 MutableArrayRef<uint8_t> data() { return Data; } in data()
212 MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in StreamImpl()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
DCoverageMappingWriter.h44 MutableArrayRef<CounterMappingRegion> MappingRegions;
49 MutableArrayRef<CounterMappingRegion> MappingRegions) in CoverageMappingWriter()
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
DDebugTypes.h72 void remapRecord(MutableArrayRef<uint8_t> rec,
97 bool remapTypesInSymbolRecord(MutableArrayRef<uint8_t> rec);
99 void remapTypesInTypeRecord(MutableArrayRef<uint8_t> rec);
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
DDataBuffer.h77 llvm::MutableArrayRef<uint8_t> GetData() { in GetData()
78 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize()); in GetData()
DStringExtractor.h87 size_t GetHexBytes(llvm::MutableArrayRef<uint8_t> dest,
90 size_t GetHexBytesAvail(llvm::MutableArrayRef<uint8_t> dest);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
DAssumptionCache.h146 MutableArrayRef<ResultElem> assumptions() { in assumptions()
153 MutableArrayRef<ResultElem> assumptionsFor(const Value *V) { in assumptionsFor()
159 return MutableArrayRef<ResultElem>(); in assumptionsFor()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/
Dlldb-private-types.h72 llvm::MutableArrayRef<uint8_t> mutable_data(uint8_t *context_base) const { in mutable_data()
73 return llvm::MutableArrayRef<uint8_t>(context_base + byte_offset, in mutable_data()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DLLVM.h35 template<typename T> class MutableArrayRef; variable
68 using llvm::MutableArrayRef;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
97 MutableArrayRef<char> Data, in applyFixup()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
DWholeProgramDevirt.h29 template <typename T> class MutableArrayRef; variable
210 void setBeforeReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
217 void setAfterReturnValues(MutableArrayRef<VirtualCallTarget> Targets,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
DARMFrameLowering.h41 MutableArrayRef<CalleeSavedInfo> CSI,
87 MutableArrayRef<CalleeSavedInfo> CSI, unsigned LdmOpc,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DIntelPTDecoder.cpp181 MutableArrayRef<uint8_t> buffer) { in DecodeInMemoryTrace()
221 MutableArrayRef<uint8_t> trace_data( in DecodeTraceFile()
239 MutableArrayRef<uint8_t>(*buffer)); in DecodeLiveThread()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
DBPFAsmBackend.cpp30 const MCValue &Target, MutableArrayRef<char> Data,
63 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h190 Block(Section &Parent, MutableArrayRef<char> Content, in Block()
246 MutableArrayRef<char> getMutableContent(LinkGraph &G);
253 MutableArrayRef<char> getAlreadyMutableContent() { in getAlreadyMutableContent()
255 return MutableArrayRef<char>(const_cast<char *>(Data), Size); in getAlreadyMutableContent()
262 void setMutableContent(MutableArrayRef<char> MutableContent) { in setMutableContent()
936 MutableArrayRef<char> allocateBuffer(size_t Size) { in allocateBuffer()
943 MutableArrayRef<char> allocateContent(ArrayRef<char> Source) { in allocateContent()
946 return MutableArrayRef<char>(AllocatedBuffer, Source.size()); in allocateContent()
956 MutableArrayRef<char> allocateString(Twine Source) { in allocateString()
961 return MutableArrayRef<char>(AllocatedBuffer, SourceStr.size()); in allocateString()
[all …]
/freebsd-12-stable/contrib/llvm-project/lld/include/lld/Common/
DLLVM.h33 template <typename T> class MutableArrayRef; variable
74 using llvm::MutableArrayRef;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
DLanaiAsmBackend.cpp52 const MCValue &Target, MutableArrayRef<char> Data,
87 MutableArrayRef<char> Data, uint64_t Value, in applyFixup()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
DMSP430AsmBackend.cpp41 const MCValue &Target, MutableArrayRef<char> Data,
127 MutableArrayRef<char> Data, in applyFixup()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
DMCAsmLexer.h116 MutableArrayRef<AsmToken> Buf(Tok);
126 virtual size_t peekTokens(MutableArrayRef<AsmToken> Buf,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
DRegisterFile.cpp199 MutableArrayRef<unsigned> UsedPhysRegs) { in allocatePhysRegs()
214 MutableArrayRef<unsigned> FreedPhysRegs) { in freePhysRegs()
229 MutableArrayRef<unsigned> UsedPhysRegs) { in addRegisterWrite()
320 const WriteState &WS, MutableArrayRef<unsigned> FreedPhysRegs) { in removeRegisterWrite()
413 bool RegisterFile::tryEliminateMoveOrSwap(MutableArrayRef<WriteState> Writes, in tryEliminateMoveOrSwap()
414 MutableArrayRef<ReadState> Reads) { in tryEliminateMoveOrSwap()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
DRegisterContextMinidump_x86_64.cpp19 static llvm::MutableArrayRef<uint8_t> getDestRegister(uint8_t *context, in getDestRegister()
43 llvm::MutableArrayRef<uint8_t> reg_dest = getDestRegister(context, reg); in writeRegister()

123456789