--- old/src/share/vm/code/compiledIC.hpp 2021-01-25 19:30:28.289757070 +0000 +++ new/src/share/vm/code/compiledIC.hpp 2021-01-25 19:30:28.167755788 +0000 @@ -30,6 +30,9 @@ #ifdef TARGET_ARCH_x86 # include "nativeInst_x86.hpp" #endif +#ifdef TARGET_ARCH_aarch64 +# include "nativeInst_aarch64.hpp" +#endif #ifdef TARGET_ARCH_sparc # include "nativeInst_sparc.hpp" #endif @@ -320,7 +323,11 @@ friend CompiledStaticCall* compiledStaticCall_at(Relocation* call_site); // Code +#if defined(AARCH64) && !defined(ZERO) + static address emit_to_interp_stub(CodeBuffer &cbuf, address mark); +#else static address emit_to_interp_stub(CodeBuffer &cbuf); +#endif static int to_interp_stub_size(); static int reloc_to_interp_stub();