LLVM 22.0.0git
ELF_x86.h
Go to the documentation of this file.
1//===------- ELF_x86.h - JIT link functions for ELF/x86 ------*- C++ -*----===//
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//
9//===----------------------------------------------------------------------===//
10//
11// jit-link functions for ELF/x86.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_EXECUTIONENGINE_JITLINK_ELF_X86_H
16#define LLVM_EXECUTIONENGINE_JITLINK_ELF_X86_H
17
19
20namespace llvm {
21namespace jitlink {
22
23/// Create a LinkGraph from an ELF/x86 relocatable object
24///
25/// Note: The graph does not take ownership of the underlying buffer, nor copy
26/// its contents. The caller is responsible for ensuring that the object buffer
27/// outlives the graph.
28Expected<std::unique_ptr<LinkGraph>>
29createLinkGraphFromELFObject_x86(MemoryBufferRef ObjectBuffer,
30 std::shared_ptr<orc::SymbolStringPool> SSP);
31
32/// jit-link the given object buffer, which must be a ELF x86 relocatable
33/// object file.
34void link_ELF_x86(std::unique_ptr<LinkGraph> G,
35 std::unique_ptr<JITLinkContext> Ctx);
36
37} // end namespace jitlink
38} // end namespace llvm
39
40#endif // LLVM_EXECUTIONENGINE_JITLINK_ELF_X86_H
#define G(x, y, z)
Definition MD5.cpp:56
This is an optimization pass for GlobalISel generic memory operations.