17#ifndef LLVM_OBJECT_OFFLOADBINARY_H
18#define LLVM_OBJECT_OFFLOADBINARY_H
85 std::unique_ptr<MemoryBuffer>
Image;
152 return StringRef(&Buffer[TheEntry->ImageOffset], TheEntry->ImageSize);
164 const Entry *TheEntry,
const uint64_t Index = 0)
166 TheHeader(TheHeader), TheEntry(TheEntry), Index(Index) {
169 const char *StringMapBegin = &Buffer[TheEntry->StringOffset];
170 const size_t StringEntrySize =
171 TheHeader->Version == 1 ?
sizeof(StringEntryV1) :
sizeof(
StringEntry);
172 for (
uint64_t I = 0,
E = TheEntry->NumStrings;
I !=
E; ++
I) {
173 const char *StringEntryPtr = StringMapBegin + I * StringEntrySize;
174 const StringEntryV1 *EntryV1 =
175 reinterpret_cast<const StringEntryV1 *>(StringEntryPtr);
176 StringRef Key = &Buffer[EntryV1->KeyOffset];
177 if (TheHeader->Version == 1) {
178 StringData[Key] = &Buffer[EntryV1->ValueOffset];
180 const StringEntry *Entry =
181 reinterpret_cast<const StringEntry *>(StringEntryPtr);
183 StringRef(&Buffer[Entry->ValueOffset], Entry->ValueSize);
188 OffloadBinary(
const OffloadBinary &
Other) =
delete;
195 const Header *TheHeader;
197 const Entry *TheEntry;
210 std::unique_ptr<MemoryBuffer> Buffer)
216 getBinary()->getMemoryBufferRef().getBuffer(),
217 getBinary()->getMemoryBufferRef().getBufferIdentifier());
220 auto NewBinaryOrErr =
222 assert(NewBinaryOrErr &&
"Failed to parse a copy of the binary?");
225 return OffloadFile(std::move((*NewBinaryOrErr)[0]), std::move(Buffer));
261LLVM_ABI bool areTargetsCompatible(
const OffloadFile::TargetID &
LHS,
262 const OffloadFile::TargetID &
RHS);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file implements a map that provides insertion order iteration.
This file defines the SmallString class.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Lightweight error class with error context and mandatory checking.
Tagged union holding either a T or a Error.
This class implements a map that also provides access to all stored values in a deterministic order.
typename VectorType::const_iterator const_iterator
static std::unique_ptr< MemoryBuffer > getMemBufferCopy(StringRef InputData, const Twine &BufferName="")
Open the specified memory range as a MemoryBuffer, copying the contents and taking ownership of it.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
StringRef - Represent a constant reference to a string, i.e.
A range adaptor for a pair of iterators.
OffloadBinary * getBinary()
Binary(unsigned int Type, MemoryBufferRef Source)
A simple binary serialization of an offloading file.
static uint64_t getAlignment()
OffloadKind getOffloadKind() const
iterator_range< string_iterator > string_iterator_range
static LLVM_ABI Expected< SmallVector< std::unique_ptr< OffloadBinary > > > create(MemoryBufferRef Buf, std::optional< uint64_t > Index=std::nullopt)
Attempt to parse the offloading binary stored in Buf.
static LLVM_ABI SmallString< 0 > write(ArrayRef< OffloadingImage > OffloadingData)
Serialize the contents of OffloadingData to a binary buffer to be read later.
StringRef getString(StringRef Key) const
uint32_t getVersion() const
StringRef getImage() const
static LLVM_ABI Expected< const Header * > extractHeader(MemoryBufferRef Buf)
Attempt to extract and validate the header from the offloading binary in Buf.
uint32_t getFlags() const
uint64_t getIndex() const
StringRef getTriple() const
ImageKind getImageKind() const
static bool classof(const Binary *V)
string_iterator_range strings() const
StringRef getArch() const
static const uint32_t Version
The current version of the binary used for backwards compatibility.
MapVector< StringRef, StringRef >::const_iterator string_iterator
std::pair< StringRef, StringRef > TargetID
OffloadFile copy() const
Make a deep copy of this offloading file.
OffloadFile(std::unique_ptr< OffloadBinary > Binary, std::unique_ptr< MemoryBuffer > Buffer)
StringMapEntry< EmptyStringSetTag > StringEntry
StringEntry keeps data of the string: the length, external offset and a string body which is placed r...
OffloadEntryFlags
Flags associated with the Entry.
OffloadKind
The producer of the associated offloading image.
ImageKind
The type of contents the offloading image contains.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
void consumeError(Error Err)
Consume a Error without doing anything.
Implement std::hash so that hash_code can be used in STL containers.
OffloadKind TheOffloadKind
The offloading metadata that will be serialized to a memory buffer.
OffloadKind TheOffloadKind
std::unique_ptr< MemoryBuffer > Image
MapVector< StringRef, StringRef > StringData