LLVM 22.0.0git
OffloadEmitter.cpp
Go to the documentation of this file.
1//===- OffloadEmitter.cpp -------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
13
14using namespace llvm;
15using namespace OffloadYAML;
16
17namespace llvm {
18namespace yaml {
19
21 for (const auto &Member : Doc.Members) {
23 if (Member.ImageKind)
24 Image.TheImageKind = *Member.ImageKind;
25 if (Member.OffloadKind)
26 Image.TheOffloadKind = *Member.OffloadKind;
27 if (Member.Flags)
28 Image.Flags = *Member.Flags;
29
30 if (Member.StringEntries)
31 for (const auto &Entry : *Member.StringEntries)
32 Image.StringData[Entry.Key] = Entry.Value;
33
36 if (Member.Content)
37 Member.Content->writeAsBinary(OS);
38 Image.Image = MemoryBuffer::getMemBufferCopy(OS.str());
39
40 // Copy the data to a new buffer so we can modify the bytes directly.
41 auto Buffer = object::OffloadBinary::write(Image);
42 auto *TheHeader =
43 reinterpret_cast<object::OffloadBinary::Header *>(&Buffer[0]);
44 if (Doc.Version)
45 TheHeader->Version = *Doc.Version;
46 if (Doc.Size)
47 TheHeader->Size = *Doc.Size;
48 if (Doc.EntryOffset)
49 TheHeader->EntryOffset = *Doc.EntryOffset;
50 if (Doc.EntrySize)
51 TheHeader->EntrySize = *Doc.EntrySize;
52
53 Out.write(Buffer.begin(), Buffer.size());
54 }
55
56 return true;
57}
58
59} // namespace yaml
60} // namespace llvm
This file declares classes for handling the YAML representation of offloading binaries.
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.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
static LLVM_ABI SmallString< 0 > write(const OffloadingImage &)
Serialize the contents of File to a binary buffer to be read later.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
raw_ostream & write(unsigned char C)
A raw_ostream that writes to an SmallVector or SmallString.
StringRef str() const
Return a StringRef for the vector contents.
llvm::function_ref< void(const Twine &Msg)> ErrorHandler
Definition yaml2obj.h:68
LLVM_ABI bool yaml2offload(OffloadYAML::Binary &Doc, raw_ostream &Out, ErrorHandler EH)
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr uintptr_t uintptr_t Data
Definition InstrProf.h:189
std::optional< uint32_t > Version
Definition OffloadYAML.h:40
std::optional< uint64_t > EntryOffset
Definition OffloadYAML.h:42
std::optional< uint64_t > Size
Definition OffloadYAML.h:41
std::optional< uint64_t > EntrySize
Definition OffloadYAML.h:43
std::vector< Member > Members
Definition OffloadYAML.h:44
The offloading metadata that will be serialized to a memory buffer.
Common declarations for yaml2obj.