JIT compiler for ARMv8 (#125)

JIT compiler for ARMv8
This commit is contained in:
SChernykh
2019-09-22 21:06:22 +02:00
committed by tevador
parent 5fb26fc607
commit c6468a3816
8 changed files with 1794 additions and 28 deletions

View File

@@ -119,7 +119,7 @@ namespace randomx {
class JitCompilerX86;
using JitCompiler = JitCompilerX86;
#elif defined(__aarch64__)
#define RANDOMX_HAVE_COMPILER 0
#define RANDOMX_HAVE_COMPILER 1
class JitCompilerA64;
using JitCompiler = JitCompilerA64;
#else