blob: 5dee1c80e0b36e2bfd5862bb5a67ad8192f20d2a [file] [log] [blame]
Lang Hames4caa2f72018-05-23 21:27:01 +00001//===--------------- IRCompileLayer.cpp - IR Compiling Layer --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/ExecutionEngine/Orc/IRCompileLayer.h"
11
12namespace llvm {
13namespace orc {
14
15IRCompileLayer2::IRCompileLayer2(ExecutionSession &ES, ObjectLayer &BaseLayer,
16 CompileFunction Compile)
17 : IRLayer(ES), BaseLayer(BaseLayer), Compile(std::move(Compile)) {}
18
19void IRCompileLayer2::setNotifyCompiled(NotifyCompiledFunction NotifyCompiled) {
20 std::lock_guard<std::mutex> Lock(IRLayerMutex);
21 this->NotifyCompiled = std::move(NotifyCompiled);
22}
23
24void IRCompileLayer2::emit(MaterializationResponsibility R, VModuleKey K,
Lang Hames8d76c712018-09-26 01:24:12 +000025 ThreadSafeModule TSM) {
26 assert(TSM.getModule() && "Module must not be null");
Lang Hames4caa2f72018-05-23 21:27:01 +000027
Lang Hames8d76c712018-09-26 01:24:12 +000028 if (auto Obj = Compile(*TSM.getModule())) {
Lang Hames4caa2f72018-05-23 21:27:01 +000029 {
30 std::lock_guard<std::mutex> Lock(IRLayerMutex);
31 if (NotifyCompiled)
Lang Hames8d76c712018-09-26 01:24:12 +000032 NotifyCompiled(K, std::move(TSM));
Lang Hames4caa2f72018-05-23 21:27:01 +000033 else
Lang Hames8d76c712018-09-26 01:24:12 +000034 TSM = ThreadSafeModule();
Lang Hames4caa2f72018-05-23 21:27:01 +000035 }
36 BaseLayer.emit(std::move(R), std::move(K), std::move(*Obj));
37 } else {
38 R.failMaterialization();
39 getExecutionSession().reportError(Obj.takeError());
40 }
41}
42
43} // End namespace orc.
44} // End namespace llvm.