//===-- RemoteJITUtils.h - Utilities for remote-JITing with LLI -*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Utilities for remote-JITing with LLI. // //===----------------------------------------------------------------------===// #ifndef LLVM_TOOLS_LLI_FORWARDINGMEMORYMANAGER_H #define LLVM_TOOLS_LLI_FORWARDINGMEMORYMANAGER_H #include "llvm/ExecutionEngine/Orc/EPCGenericDylibManager.h" #include "llvm/ExecutionEngine/RTDyldMemoryManager.h" namespace llvm { // ForwardingMM - Adapter to connect MCJIT to Orc's Remote // memory manager. class ForwardingMemoryManager : public llvm::RTDyldMemoryManager { … }; class RemoteResolver : public LegacyJITSymbolResolver { … }; } // namespace llvm #endif // LLVM_TOOLS_LLI_FORWARDINGMEMORYMANAGER_H