//===--------------- IRCompileLayer.cpp - IR Compiling Layer --------------===// // // 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 // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/Orc/IRCompileLayer.h" namespace llvm { namespace orc { IRCompileLayer::IRCompiler::~IRCompiler() = default; IRCompileLayer::IRCompileLayer(ExecutionSession &ES, ObjectLayer &BaseLayer, std::unique_ptr<IRCompiler> Compile) : … { … } void IRCompileLayer::setNotifyCompiled(NotifyCompiledFunction NotifyCompiled) { … } void IRCompileLayer::emit(std::unique_ptr<MaterializationResponsibility> R, ThreadSafeModule TSM) { … } } // End namespace orc. } // End namespace llvm.