-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simple llvm kaleidoscope jit setup for testing
- Loading branch information
1 parent
379a0fa
commit 73690b7
Showing
4 changed files
with
1,574 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
//===- KaleidoscopeJIT.h - A simple JIT for Kaleidoscope --------*- 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// Contains a simple JIT definition for use in the kaleidoscope tutorials. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_EXECUTIONENGINE_ORC_KALEIDOSCOPEJIT_H | ||
#define LLVM_EXECUTIONENGINE_ORC_KALEIDOSCOPEJIT_H | ||
|
||
#include <llvm/ADT/StringRef.h> | ||
#include <llvm/ExecutionEngine/Orc/CompileUtils.h> | ||
#include <llvm/ExecutionEngine/Orc/Core.h> | ||
#include <llvm/ExecutionEngine/Orc/ExecutionUtils.h> | ||
#include <llvm/ExecutionEngine/Orc/ExecutorProcessControl.h> | ||
#include <llvm/ExecutionEngine/Orc/IRCompileLayer.h> | ||
#include <llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h> | ||
#include <llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h> | ||
#include <llvm/ExecutionEngine/Orc/Shared/ExecutorSymbolDef.h> | ||
#include <llvm/ExecutionEngine/SectionMemoryManager.h> | ||
#include <llvm/IR/DataLayout.h> | ||
#include <llvm/IR/LLVMContext.h> | ||
|
||
#include <memory> | ||
|
||
namespace llvm { | ||
namespace orc { | ||
|
||
class KaleidoscopeJIT { | ||
private: | ||
std::unique_ptr<ExecutionSession> ES; | ||
|
||
DataLayout DL; | ||
MangleAndInterner Mangle; | ||
|
||
RTDyldObjectLinkingLayer ObjectLayer; | ||
IRCompileLayer CompileLayer; | ||
|
||
JITDylib &MainJD; | ||
|
||
public: | ||
KaleidoscopeJIT(std::unique_ptr<ExecutionSession> ES, | ||
JITTargetMachineBuilder JTMB, DataLayout DL) | ||
: ES(std::move(ES)), DL(std::move(DL)), Mangle(*this->ES, this->DL), | ||
ObjectLayer(*this->ES, | ||
[]() { return std::make_unique<SectionMemoryManager>(); }), | ||
CompileLayer(*this->ES, ObjectLayer, | ||
std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))), | ||
MainJD(this->ES->createBareJITDylib("<main>")) { | ||
MainJD.addGenerator( | ||
cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess( | ||
DL.getGlobalPrefix()))); | ||
} | ||
|
||
~KaleidoscopeJIT() { | ||
if (auto Err = ES->endSession()) | ||
ES->reportError(std::move(Err)); | ||
} | ||
|
||
static Expected<std::unique_ptr<KaleidoscopeJIT>> Create() { | ||
auto EPC = SelfExecutorProcessControl::Create(); | ||
if (!EPC) | ||
return EPC.takeError(); | ||
|
||
auto ES = std::make_unique<ExecutionSession>(std::move(*EPC)); | ||
|
||
JITTargetMachineBuilder JTMB( | ||
ES->getExecutorProcessControl().getTargetTriple()); | ||
|
||
auto DL = JTMB.getDefaultDataLayoutForTarget(); | ||
if (!DL) | ||
return DL.takeError(); | ||
|
||
return std::make_unique<KaleidoscopeJIT>(std::move(ES), std::move(JTMB), | ||
std::move(*DL)); | ||
} | ||
|
||
const DataLayout &getDataLayout() const { return DL; } | ||
|
||
JITDylib &getMainJITDylib() { return MainJD; } | ||
|
||
Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { | ||
if (!RT) | ||
RT = MainJD.getDefaultResourceTracker(); | ||
return CompileLayer.add(RT, std::move(TSM)); | ||
} | ||
|
||
Expected<ExecutorSymbolDef> lookup(StringRef Name) { | ||
return ES->lookup({&MainJD}, Mangle(Name.str())); | ||
} | ||
}; | ||
|
||
} // end namespace orc | ||
} // end namespace llvm | ||
|
||
#endif // LLVM_EXECUTIONENGINE_ORC_KALEIDOSCOPEJIT_H |
Oops, something went wrong.