LLVM 22.0.0git
MachO_x86_64.h
Go to the documentation of this file.
1//===--- MachO_x86_64.h - JIT link functions for MachO/x86-64 ---*- 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// jit-link functions for MachO/x86-64.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_X86_64_H
14#define LLVM_EXECUTIONENGINE_JITLINK_MACHO_X86_64_H
15
18
19namespace llvm {
20namespace jitlink {
21
22/// Create a LinkGraph from a MachO/x86-64 relocatable object.
23///
24/// Note: The graph does not take ownership of the underlying buffer, nor copy
25/// its contents. The caller is responsible for ensuring that the object buffer
26/// outlives the graph.
27LLVM_ABI Expected<std::unique_ptr<LinkGraph>>
29 MemoryBufferRef ObjectBuffer, std::shared_ptr<orc::SymbolStringPool> SSP);
30
31/// jit-link the given LinkGraph.
32///
33/// If PrePrunePasses is empty then a default mark-live pass will be inserted
34/// that will mark all exported atoms live. If PrePrunePasses is not empty, the
35/// caller is responsible for including a pass to mark atoms as live.
36///
37/// If PostPrunePasses is empty then a default GOT-and-stubs insertion pass will
38/// be inserted. If PostPrunePasses is not empty then the caller is responsible
39/// for including a pass to insert GOT and stub edges.
40LLVM_ABI void link_MachO_x86_64(std::unique_ptr<LinkGraph> G,
41 std::unique_ptr<JITLinkContext> Ctx);
42
43/// Returns a pass suitable for splitting __eh_frame sections in MachO/x86-64
44/// objects.
46
47/// Returns a pass suitable for fixing missing edges in an __eh_frame section
48/// in a MachO/x86-64 object.
50
51} // end namespace jitlink
52} // end namespace llvm
53
54#endif // LLVM_EXECUTIONENGINE_JITLINK_MACHO_X86_64_H
#define LLVM_ABI
Definition Compiler.h:213
#define G(x, y, z)
Definition MD5.cpp:56
This is an optimization pass for GlobalISel generic memory operations.