--- old/src/hotspot/cpu/aarch64/vtableStubs_aarch64.cpp 2019-03-26 15:45:39.135066904 +0000 +++ new/src/hotspot/cpu/aarch64/vtableStubs_aarch64.cpp 2019-03-26 15:45:38.239029609 +0000 @@ -116,7 +116,7 @@ if (DebugVtables) { Label L; __ cbz(rmethod, L); - __ ldr(rscratch1, Address(rmethod, Method::from_compiled_offset())); + __ ldr(rscratch1, Address(rmethod, Method::from_compiled_value_ro_offset())); __ cbnz(rscratch1, L); __ stop("Vtable entry is NULL"); __ bind(L); @@ -127,7 +127,7 @@ // rmethod: Method* // r2: receiver address ame_addr = __ pc(); - __ ldr(rscratch1, Address(rmethod, Method::from_compiled_offset())); + __ ldr(rscratch1, Address(rmethod, Method::from_compiled_value_ro_offset())); __ br(rscratch1); masm->flush();