2016-06-22 13:37:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef LLVM_AVAILABLE
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
#include "types.h"
|
2017-06-24 15:36:49 +00:00
|
|
|
#include "mutex.h"
|
2016-06-22 13:37:51 +00:00
|
|
|
|
2017-01-28 12:32:45 +00:00
|
|
|
#include "restore_new.h"
|
2016-06-22 13:37:51 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 0)
|
|
|
|
#endif
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
2017-01-28 12:32:45 +00:00
|
|
|
#include "define_new_memleakdetect.h"
|
2016-06-22 13:37:51 +00:00
|
|
|
|
|
|
|
// Temporary compiler interface
|
|
|
|
class jit_compiler final
|
|
|
|
{
|
2017-06-24 15:36:49 +00:00
|
|
|
// Local LLVM context
|
|
|
|
llvm::LLVMContext m_context;
|
|
|
|
|
|
|
|
// JIT Event Listener
|
|
|
|
std::unique_ptr<struct EventListener> m_jit_el;
|
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
// Execution instance
|
|
|
|
std::unique_ptr<llvm::ExecutionEngine> m_engine;
|
|
|
|
|
2017-06-24 15:36:49 +00:00
|
|
|
// Link table
|
2017-06-22 21:52:09 +00:00
|
|
|
std::unordered_map<std::string, u64> m_link;
|
|
|
|
|
2017-02-26 15:56:31 +00:00
|
|
|
// Arch
|
|
|
|
std::string m_cpu;
|
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
public:
|
2017-06-24 15:36:49 +00:00
|
|
|
jit_compiler(const std::unordered_map<std::string, u64>& _link, std::string _cpu);
|
2016-06-22 13:37:51 +00:00
|
|
|
~jit_compiler();
|
|
|
|
|
2017-06-24 15:36:49 +00:00
|
|
|
// Get LLVM context
|
|
|
|
auto& get_context()
|
|
|
|
{
|
|
|
|
return m_context;
|
|
|
|
}
|
|
|
|
|
2017-07-15 09:20:40 +00:00
|
|
|
// Add module (path to obj cache dir)
|
2017-06-22 21:52:09 +00:00
|
|
|
void add(std::unique_ptr<llvm::Module> module, const std::string& path);
|
|
|
|
|
2017-07-15 09:20:40 +00:00
|
|
|
// Add object (path to obj file)
|
|
|
|
void add(const std::string& path);
|
|
|
|
|
2017-06-22 21:52:09 +00:00
|
|
|
// Finalize
|
2017-06-24 15:36:49 +00:00
|
|
|
void fin();
|
2017-02-26 15:56:31 +00:00
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
// Get compiled function address
|
2017-06-24 15:36:49 +00:00
|
|
|
u64 get(const std::string& name);
|
|
|
|
|
|
|
|
// Add functions directly to the memory manager (name -> code)
|
|
|
|
static std::unordered_map<std::string, u64> add(std::unordered_map<std::string, std::string>);
|
2017-02-26 15:56:31 +00:00
|
|
|
|
|
|
|
// Get CPU info
|
|
|
|
const std::string& cpu() const
|
|
|
|
{
|
|
|
|
return m_cpu;
|
|
|
|
}
|
2017-06-29 14:25:39 +00:00
|
|
|
|
|
|
|
// Check JIT purpose
|
|
|
|
bool is_primary() const
|
|
|
|
{
|
|
|
|
return !m_link.empty();
|
|
|
|
}
|
2016-06-22 13:37:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|