Skip to content

Instantly share code, notes, and snippets.

@Themaister
Created January 29, 2019 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Themaister/026859b1e2c73398b409ea1e17bfcdab to your computer and use it in GitHub Desktop.
Save Themaister/026859b1e2c73398b409ea1e17bfcdab to your computer and use it in GitHub Desktop.
// License: MIT
#pragma once
#include "llvm/ExecutionEngine/Orc/CompileUtils.h"
#include "llvm/ExecutionEngine/Orc/Core.h"
#include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
#include "llvm/ExecutionEngine/Orc/IRCompileLayer.h"
#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
#include <memory>
#include <unordered_map>
namespace JITTIR
{
class Jitter
{
public:
Jitter();
static void init_global();
using ModuleHandle = llvm::orc::VModuleKey;
ModuleHandle add_module(std::unique_ptr<llvm::Module> module);
void remove_module(ModuleHandle handle);
llvm::JITSymbol find_symbol(const std::string &name);
llvm::JITTargetAddress get_symbol_address(const std::string &name);
std::unique_ptr<llvm::Module> create_module(const std::string &name);
template <typename T>
void add_external_symbol(const std::string &name, T sym)
{
add_external_symbol_generic(name, (uint64_t) sym);
}
void add_external_symbol_generic(const std::string &name, uint64_t symbol);
void set_external_ir_dump_directory(const std::string &dir);
private:
#ifdef JITTER_LLVM_VERSION_LEGACY
llvm::LLVMContext context;
#else
llvm::orc::ThreadSafeContext context;
#endif
std::unique_ptr<llvm::orc::ExecutionSession> execution_session;
#ifdef JITTER_LLVM_VERSION_LEGACY
std::unique_ptr<llvm::orc::RTDyldObjectLinkingLayer> object_layer;
std::unique_ptr<llvm::orc::IRCompileLayer<
llvm::orc::RTDyldObjectLinkingLayer,
llvm::orc::SimpleCompiler>> compile_layer;
#else
std::unique_ptr<llvm::orc::LegacyRTDyldObjectLinkingLayer> object_layer;
std::unique_ptr<llvm::orc::LegacyIRCompileLayer<
llvm::orc::LegacyRTDyldObjectLinkingLayer,
llvm::orc::SimpleCompiler>> compile_layer;
#endif
std::unique_ptr<llvm::TargetMachine> target_machine;
std::unique_ptr<llvm::orc::MangleAndInterner> mangler;
std::unique_ptr<llvm::DataLayout> data_layout;
std::unordered_map<std::string, uint64_t> externals;
std::string ir_dump_dir;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment