#pragma once #ifdef LLVM_AVAILABLE #include #include #include #include "types.h" #include "mutex.h" #include "restore_new.h" #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 #include "define_new_memleakdetect.h" // Temporary compiler interface class jit_compiler final { // Local LLVM context llvm::LLVMContext m_context; // JIT Event Listener std::unique_ptr m_jit_el; // Execution instance std::unique_ptr m_engine; // Link table std::unordered_map m_link; // Arch std::string m_cpu; public: jit_compiler(const std::unordered_map& _link, std::string _cpu); ~jit_compiler(); // Get LLVM context auto& get_context() { return m_context; } // Add module (path to obj cache dir) void add(std::unique_ptr module, const std::string& path); // Add object (path to obj file) void add(const std::string& path); // Finalize void fin(); // Get compiled function address u64 get(const std::string& name); // Add functions directly to the memory manager (name -> code) static std::unordered_map add(std::unordered_map); // Get CPU info const std::string& cpu() const { return m_cpu; } // Check JIT purpose bool is_primary() const { return !m_link.empty(); } }; #endif