30#define DEBUG_TYPE "jitlink"
41 return File->getHeader().e_machine;
43 return File.takeError();
47 return File->getHeader().e_machine;
49 return File.takeError();
57 return File->getHeader().e_machine;
59 return File.takeError();
63 return File->getHeader().e_machine;
65 return File.takeError();
77 return make_error<JITLinkError>(
"Truncated ELF buffer");
80 return make_error<JITLinkError>(
"ELF magic not valid");
84 if (!TargetMachineArch)
87 switch (*TargetMachineArch) {
107 return make_error<JITLinkError>(
108 "Unsupported target machine architecture in ELF object " +
114 std::unique_ptr<JITLinkContext> Ctx) {
115 switch (
G->getTargetTriple().getArch()) {
146 Ctx->notifyFailed(make_error<JITLinkError>(
147 "Unsupported target machine architecture in ELF link graph " +
Merge contiguous icmps into a memcmp
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
StringRef getBufferIdentifier() const
StringRef getBuffer() const
StringRef - Represent a constant reference to a string, i.e.
constexpr size_t size() const
size - Get the string size.
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
static Expected< ELFFile > create(StringRef Object)
static const char ElfMagic[]
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_x86_64(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/x86-64 relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_i386(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/i386 relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_ppc64le(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/ppc64le relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_ppc64(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/ppc64 relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_loongarch(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/loongarch relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_aarch32(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/arm relocatable object.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_riscv(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/riscv relocatable object.
void link_ELF_ppc64le(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF ppc64le object file.
void link_ELF_i386(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF i386 relocatable object file.
void link_ELF(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
Link the given graph.
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromELFObject_aarch64(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from an ELF/aarch64 relocatable object.
void link_ELF_aarch64(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF aarch64 relocatable object file.
void link_ELF_ppc64(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF ppc64le object file.
void link_ELF_riscv(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF riscv object file.
Expected< uint16_t > readTargetMachineArch(StringRef Buffer)
void link_ELF_x86_64(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be a ELF x86-64 object file.
void link_ELF_loongarch(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be an ELF loongarch object file.
void link_ELF_aarch32(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given object buffer, which must be an ELF arm/thumb object file.
This is an optimization pass for GlobalISel generic memory operations.