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

@ -116,6 +116,12 @@ endif()
# ARMv8
if (ARM_ID STREQUAL "aarch64" OR ARM_ID STREQUAL "arm64" OR ARM_ID STREQUAL "armv8-a")
list(APPEND randomx_sources
src/jit_compiler_a64_static.S
src/jit_compiler_a64.cpp)
# cheat because cmake and ccache hate each other
set_property(SOURCE src/jit_compiler_a64_static.S PROPERTY LANGUAGE C)
if(ARCH STREQUAL "native")
add_flag("-march=native")
else()