1 //===------- MachO.h - Generic JIT link function for MachO ------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // Generic jit-link functions for MachO.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
14 #define LLVM_EXECUTIONENGINE_JITLINK_MACHO_H
16 #include "llvm/ExecutionEngine/JITLink/JITLink.h"
21 /// jit-link the given ObjBuffer, which must be a MachO object file.
23 /// Uses conservative defaults for GOT and stub handling based on the target
25 void jitLink_MachO(std::unique_ptr
<JITLinkContext
> Ctx
);
27 } // end namespace jitlink
28 } // end namespace llvm
30 #endif // LLVM_EXECUTIONENGINE_JITLINK_MACHO_H