2016-06-22 13:37:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-12-23 15:03:48 +00:00
|
|
|
#include "util/types.hpp"
|
|
|
|
|
2019-11-29 23:11:28 +00:00
|
|
|
// Include asmjit with warnings ignored
|
2018-06-12 18:03:53 +00:00
|
|
|
#define ASMJIT_EMBED
|
2021-12-28 19:25:36 +00:00
|
|
|
#define ASMJIT_STATIC
|
|
|
|
#define ASMJIT_BUILD_DEBUG
|
|
|
|
#undef Bool
|
2018-05-14 20:06:17 +00:00
|
|
|
|
2019-11-29 23:11:28 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 0)
|
|
|
|
#include <asmjit/asmjit.h>
|
|
|
|
#pragma warning(pop)
|
|
|
|
#else
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wall"
|
|
|
|
#pragma GCC diagnostic ignored "-Wextra"
|
|
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
2021-03-05 19:05:37 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
2021-03-08 20:41:23 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
|
2021-03-23 19:32:50 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
2021-04-03 16:38:02 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
|
2021-03-30 15:31:46 +00:00
|
|
|
#pragma GCC diagnostic ignored "-Weffc++"
|
2021-03-13 15:03:08 +00:00
|
|
|
#ifndef __clang__
|
|
|
|
#pragma GCC diagnostic ignored "-Wduplicated-branches"
|
|
|
|
#endif
|
2018-06-12 18:03:53 +00:00
|
|
|
#include <asmjit/asmjit.h>
|
2019-11-29 23:11:28 +00:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2018-05-16 23:38:14 +00:00
|
|
|
#include <array>
|
2018-05-14 20:06:17 +00:00
|
|
|
#include <functional>
|
2021-12-23 15:03:48 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
|
|
|
#include <unordered_map>
|
2018-05-14 20:06:17 +00:00
|
|
|
|
2021-12-24 17:33:32 +00:00
|
|
|
void jit_announce(uptr func, usz size, std::string_view name);
|
|
|
|
|
|
|
|
void jit_announce(auto* func, usz size, std::string_view name)
|
|
|
|
{
|
|
|
|
jit_announce(uptr(func), size, name);
|
|
|
|
}
|
|
|
|
|
2019-01-28 17:23:26 +00:00
|
|
|
enum class jit_class
|
|
|
|
{
|
|
|
|
ppu_code,
|
|
|
|
ppu_data,
|
|
|
|
spu_code,
|
|
|
|
spu_data,
|
|
|
|
};
|
|
|
|
|
2021-12-28 19:25:36 +00:00
|
|
|
struct jit_runtime_base
|
|
|
|
{
|
|
|
|
jit_runtime_base() noexcept = default;
|
|
|
|
virtual ~jit_runtime_base() = default;
|
|
|
|
|
|
|
|
jit_runtime_base(const jit_runtime_base&) = delete;
|
|
|
|
jit_runtime_base& operator=(const jit_runtime_base&) = delete;
|
|
|
|
|
|
|
|
const asmjit::Environment& environment() const noexcept;
|
|
|
|
void* _add(asmjit::CodeHolder* code) noexcept;
|
|
|
|
virtual uchar* _alloc(usz size, usz align) noexcept = 0;
|
|
|
|
};
|
|
|
|
|
2019-01-26 20:15:45 +00:00
|
|
|
// ASMJIT runtime for emitting code in a single 2G region
|
2021-12-28 19:25:36 +00:00
|
|
|
struct jit_runtime final : jit_runtime_base
|
2019-01-26 20:15:45 +00:00
|
|
|
{
|
|
|
|
jit_runtime();
|
|
|
|
~jit_runtime() override;
|
|
|
|
|
|
|
|
// Allocate executable memory
|
2021-12-28 19:25:36 +00:00
|
|
|
uchar* _alloc(usz size, usz align) noexcept override;
|
2019-01-26 20:15:45 +00:00
|
|
|
|
|
|
|
// Allocate memory
|
2020-12-18 07:39:54 +00:00
|
|
|
static u8* alloc(usz size, uint align, bool exec = true) noexcept;
|
2019-01-26 20:15:45 +00:00
|
|
|
|
|
|
|
// Should be called at least once after global initialization
|
|
|
|
static void initialize();
|
|
|
|
|
|
|
|
// Deallocate all memory
|
|
|
|
static void finalize() noexcept;
|
|
|
|
};
|
|
|
|
|
2018-05-14 20:06:17 +00:00
|
|
|
namespace asmjit
|
|
|
|
{
|
|
|
|
// Should only be used to build global functions
|
2021-12-28 19:25:36 +00:00
|
|
|
jit_runtime_base& get_global_runtime();
|
2018-05-14 20:06:17 +00:00
|
|
|
|
2021-12-22 16:27:20 +00:00
|
|
|
// Don't use directly
|
2021-12-28 19:25:36 +00:00
|
|
|
class inline_runtime : public jit_runtime_base
|
2021-12-22 16:27:20 +00:00
|
|
|
{
|
|
|
|
uchar* m_data;
|
|
|
|
usz m_size;
|
|
|
|
|
|
|
|
public:
|
2021-12-28 19:25:36 +00:00
|
|
|
inline_runtime(uchar* data, usz size);
|
2021-12-22 16:27:20 +00:00
|
|
|
|
|
|
|
~inline_runtime();
|
2021-12-28 19:25:36 +00:00
|
|
|
|
|
|
|
uchar* _alloc(usz size, usz align) noexcept override;
|
2021-12-22 16:27:20 +00:00
|
|
|
};
|
|
|
|
|
2020-10-20 05:22:25 +00:00
|
|
|
// Emit xbegin and adjacent loop, return label at xbegin (don't use xabort please)
|
2020-10-29 02:01:45 +00:00
|
|
|
template <typename F>
|
2021-12-28 19:25:36 +00:00
|
|
|
[[nodiscard]] inline asmjit::Label build_transaction_enter(asmjit::x86::Assembler& c, asmjit::Label fallback, F func)
|
2020-10-29 02:01:45 +00:00
|
|
|
{
|
|
|
|
Label fall = c.newLabel();
|
|
|
|
Label begin = c.newLabel();
|
|
|
|
c.jmp(begin);
|
|
|
|
c.bind(fall);
|
|
|
|
|
|
|
|
// Don't repeat on zero status (may indicate syscall or interrupt)
|
|
|
|
c.test(x86::eax, x86::eax);
|
|
|
|
c.jz(fallback);
|
|
|
|
|
2020-10-30 22:52:24 +00:00
|
|
|
// First invoked after failure (can fallback to proceed, or jump anywhere else)
|
|
|
|
func();
|
|
|
|
|
2020-10-29 02:01:45 +00:00
|
|
|
// Other bad statuses are ignored regardless of repeat flag (TODO)
|
2021-12-28 19:25:36 +00:00
|
|
|
c.align(AlignMode::kCode, 16);
|
2020-10-29 02:01:45 +00:00
|
|
|
c.bind(begin);
|
|
|
|
return fall;
|
|
|
|
|
|
|
|
// xbegin should be issued manually, allows to add more check before entering transaction
|
|
|
|
}
|
2020-10-30 22:52:24 +00:00
|
|
|
|
|
|
|
// Helper to spill RDX (EDX) register for RDTSC
|
2021-12-28 19:25:36 +00:00
|
|
|
inline void build_swap_rdx_with(asmjit::x86::Assembler& c, std::array<x86::Gp, 4>& args, const asmjit::x86::Gp& with)
|
2020-10-30 22:52:24 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
c.xchg(args[1], with);
|
|
|
|
args[1] = with;
|
|
|
|
#else
|
|
|
|
c.xchg(args[2], with);
|
|
|
|
args[2] = with;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get full RDTSC value into chosen register (clobbers rax/rdx or saves only rax with other target)
|
2021-12-28 19:25:36 +00:00
|
|
|
inline void build_get_tsc(asmjit::x86::Assembler& c, const asmjit::x86::Gp& to = asmjit::x86::rax)
|
2020-10-30 22:52:24 +00:00
|
|
|
{
|
|
|
|
if (&to != &x86::rax && &to != &x86::rdx)
|
|
|
|
{
|
|
|
|
// Swap to save its contents
|
|
|
|
c.xchg(x86::rax, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
c.rdtsc();
|
|
|
|
c.shl(x86::rdx, 32);
|
|
|
|
|
|
|
|
if (&to == &x86::rax)
|
|
|
|
{
|
|
|
|
c.or_(x86::rax, x86::rdx);
|
|
|
|
}
|
|
|
|
else if (&to == &x86::rdx)
|
|
|
|
{
|
|
|
|
c.or_(x86::rdx, x86::rax);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Swap back, maybe there is more effective way to do it
|
|
|
|
c.xchg(x86::rax, to);
|
|
|
|
c.mov(to.r32(), to.r32());
|
|
|
|
c.or_(to.r64(), x86::rdx);
|
|
|
|
}
|
|
|
|
}
|
2021-12-28 19:25:36 +00:00
|
|
|
|
|
|
|
using imm_ptr = Imm;
|
2018-05-14 20:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Build runtime function with asmjit::X86Assembler
|
|
|
|
template <typename FT, typename F>
|
2021-12-24 17:33:32 +00:00
|
|
|
inline FT build_function_asm(std::string_view name, F&& builder)
|
2018-05-14 20:06:17 +00:00
|
|
|
{
|
|
|
|
using namespace asmjit;
|
|
|
|
|
|
|
|
auto& rt = get_global_runtime();
|
|
|
|
|
|
|
|
CodeHolder code;
|
2021-12-28 19:25:36 +00:00
|
|
|
code.init(rt.environment());
|
2018-05-14 20:06:17 +00:00
|
|
|
|
2021-12-28 19:25:36 +00:00
|
|
|
std::array<x86::Gp, 4> args;
|
2018-05-14 20:06:17 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
args[0] = x86::rcx;
|
|
|
|
args[1] = x86::rdx;
|
|
|
|
args[2] = x86::r8;
|
|
|
|
args[3] = x86::r9;
|
|
|
|
#else
|
|
|
|
args[0] = x86::rdi;
|
|
|
|
args[1] = x86::rsi;
|
|
|
|
args[2] = x86::rdx;
|
|
|
|
args[3] = x86::rcx;
|
|
|
|
#endif
|
|
|
|
|
2021-12-28 19:25:36 +00:00
|
|
|
x86::Assembler compiler(&code);
|
|
|
|
compiler.addEncodingOptions(EncodingOptions::kOptimizedAlign);
|
2018-05-14 20:06:17 +00:00
|
|
|
builder(std::ref(compiler), args);
|
2021-12-28 19:25:36 +00:00
|
|
|
const auto result = rt._add(&code);
|
|
|
|
jit_announce(result, code.codeSize(), name);
|
|
|
|
return reinterpret_cast<FT>(uptr(result));
|
2018-05-14 20:06:17 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 14:37:28 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
template <typename FT, usz = 4096>
|
|
|
|
class built_function
|
|
|
|
{
|
|
|
|
FT m_func;
|
|
|
|
|
|
|
|
public:
|
|
|
|
built_function(const built_function&) = delete;
|
|
|
|
|
|
|
|
built_function& operator=(const built_function&) = delete;
|
|
|
|
|
|
|
|
template <typename F>
|
2021-12-24 17:33:32 +00:00
|
|
|
built_function(std::string_view name, F&& builder)
|
|
|
|
: m_func(ensure(build_function_asm<FT>(name, std::forward<F>(builder))))
|
2021-12-24 14:37:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
operator FT() const noexcept
|
|
|
|
{
|
|
|
|
return m_func;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
auto operator()(Args&&... args) const noexcept
|
|
|
|
{
|
|
|
|
return m_func(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#else
|
2021-12-22 16:27:20 +00:00
|
|
|
template <typename FT, usz Size = 4096>
|
|
|
|
class built_function
|
|
|
|
{
|
|
|
|
alignas(4096) uchar m_data[Size];
|
|
|
|
|
|
|
|
public:
|
|
|
|
built_function(const built_function&) = delete;
|
|
|
|
|
|
|
|
built_function& operator=(const built_function&) = delete;
|
|
|
|
|
|
|
|
template <typename F>
|
2021-12-24 17:33:32 +00:00
|
|
|
built_function(std::string_view name, F&& builder)
|
2021-12-22 16:27:20 +00:00
|
|
|
{
|
|
|
|
using namespace asmjit;
|
|
|
|
|
|
|
|
inline_runtime rt(m_data, Size);
|
|
|
|
|
|
|
|
CodeHolder code;
|
2021-12-28 19:25:36 +00:00
|
|
|
code.init(rt.environment());
|
2021-12-22 16:27:20 +00:00
|
|
|
|
2021-12-28 19:25:36 +00:00
|
|
|
std::array<x86::Gp, 4> args;
|
2021-12-22 16:27:20 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
args[0] = x86::rcx;
|
|
|
|
args[1] = x86::rdx;
|
|
|
|
args[2] = x86::r8;
|
|
|
|
args[3] = x86::r9;
|
|
|
|
#else
|
|
|
|
args[0] = x86::rdi;
|
|
|
|
args[1] = x86::rsi;
|
|
|
|
args[2] = x86::rdx;
|
|
|
|
args[3] = x86::rcx;
|
|
|
|
#endif
|
|
|
|
|
2021-12-28 19:25:36 +00:00
|
|
|
x86::Assembler compiler(&code);
|
|
|
|
compiler.addEncodingOptions(EncodingOptions::kOptimizedAlign);
|
2021-12-22 16:27:20 +00:00
|
|
|
builder(std::ref(compiler), args);
|
2021-12-28 19:25:36 +00:00
|
|
|
jit_announce(rt._add(&code), code.codeSize(), name);
|
2021-12-22 16:27:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
operator FT() const noexcept
|
|
|
|
{
|
|
|
|
return FT(+m_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
auto operator()(Args&&... args) const noexcept
|
|
|
|
{
|
|
|
|
return FT(+m_data)(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
2021-12-24 14:37:28 +00:00
|
|
|
#endif
|
2021-12-22 16:27:20 +00:00
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
#ifdef LLVM_AVAILABLE
|
|
|
|
|
2021-12-23 15:03:48 +00:00
|
|
|
namespace llvm
|
|
|
|
{
|
|
|
|
class LLVMContext;
|
|
|
|
class ExecutionEngine;
|
|
|
|
class Module;
|
|
|
|
}
|
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
|
2021-12-23 15:03:48 +00:00
|
|
|
std::unique_ptr<llvm::LLVMContext> m_context{};
|
2017-06-24 15:36:49 +00:00
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
// Execution instance
|
2021-04-03 16:38:02 +00:00
|
|
|
std::unique_ptr<llvm::ExecutionEngine> m_engine{};
|
2016-06-22 13:37:51 +00:00
|
|
|
|
2017-02-26 15:56:31 +00:00
|
|
|
// Arch
|
2021-04-03 16:38:02 +00:00
|
|
|
std::string m_cpu{};
|
2017-02-26 15:56:31 +00:00
|
|
|
|
2016-06-22 13:37:51 +00:00
|
|
|
public:
|
2019-03-18 16:24:55 +00:00
|
|
|
jit_compiler(const std::unordered_map<std::string, u64>& _link, const std::string& _cpu, u32 flags = 0);
|
2016-06-22 13:37:51 +00:00
|
|
|
~jit_compiler();
|
|
|
|
|
2017-06-24 15:36:49 +00:00
|
|
|
// Get LLVM context
|
|
|
|
auto& get_context()
|
|
|
|
{
|
2021-12-23 15:03:48 +00:00
|
|
|
return *m_context;
|
2017-06-24 15:36:49 +00:00
|
|
|
}
|
|
|
|
|
2018-05-01 10:20:36 +00:00
|
|
|
auto& get_engine() const
|
|
|
|
{
|
|
|
|
return *m_engine;
|
|
|
|
}
|
|
|
|
|
2017-07-15 09:20:40 +00:00
|
|
|
// Add module (path to obj cache dir)
|
2020-05-06 15:18:30 +00:00
|
|
|
void add(std::unique_ptr<llvm::Module> _module, const std::string& path);
|
2017-06-22 21:52:09 +00:00
|
|
|
|
2018-05-01 10:20:36 +00:00
|
|
|
// Add module (not cached)
|
2020-05-06 15:18:30 +00:00
|
|
|
void add(std::unique_ptr<llvm::Module> _module);
|
2018-05-01 10:20:36 +00:00
|
|
|
|
2017-07-15 09:20:40 +00:00
|
|
|
// Add object (path to obj file)
|
|
|
|
void add(const std::string& path);
|
|
|
|
|
2020-04-07 13:09:47 +00:00
|
|
|
// Check object file
|
|
|
|
static bool check(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);
|
|
|
|
|
2017-02-26 15:56:31 +00:00
|
|
|
// Get CPU info
|
2018-03-17 17:41:35 +00:00
|
|
|
static std::string cpu(const std::string& _cpu);
|
2016-06-22 13:37:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|