LLVM
15.0.0git
include
llvm
ExecutionEngine
JITLink
MachO.h
Go to the documentation of this file.
1
//===------- MachO.h - Generic JIT link function for MachO ------*- 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
// Generic jit-link functions for MachO.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
14
#define LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
15
16
#include "
llvm/ExecutionEngine/JITLink/JITLink.h
"
17
18
namespace
llvm
{
19
namespace
jitlink {
20
21
/// Create a LinkGraph from a MachO relocatable object.
22
///
23
/// Note: The graph does not take ownership of the underlying buffer, nor copy
24
/// its contents. The caller is responsible for ensuring that the object buffer
25
/// outlives the graph.
26
Expected<std::unique_ptr<LinkGraph>>
27
createLinkGraphFromMachOObject
(MemoryBufferRef ObjectBuffer);
28
29
/// jit-link the given ObjBuffer, which must be a MachO object file.
30
///
31
/// Uses conservative defaults for GOT and stub handling based on the target
32
/// platform.
33
void
link_MachO
(std::unique_ptr<LinkGraph>
G
,
34
std::unique_ptr<JITLinkContext> Ctx);
35
36
}
// end namespace jitlink
37
}
// end namespace llvm
38
39
#endif // LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:17
llvm::jitlink::link_MachO
void link_MachO(std::unique_ptr< LinkGraph > G, std::unique_ptr< JITLinkContext > Ctx)
jit-link the given ObjBuffer, which must be a MachO object file.
Definition:
MachO.cpp:75
JITLink.h
G
const DataFlowGraph & G
Definition:
RDFGraph.cpp:200
llvm::jitlink::createLinkGraphFromMachOObject
Expected< std::unique_ptr< LinkGraph > > createLinkGraphFromMachOObject(MemoryBufferRef ObjectBuffer)
Create a LinkGraph from a MachO relocatable object.
Definition:
MachO.cpp:30
Generated on Sat Jul 2 2022 13:17:35 for LLVM by
1.8.17