--- old/src/hotspot/cpu/arm/frame_arm.inline.hpp 2018-09-17 10:29:56.465405196 -0400 +++ new/src/hotspot/cpu/arm/frame_arm.inline.hpp 2018-09-17 10:29:55.832368222 -0400 @@ -83,7 +83,6 @@ } } -#ifndef AARCH64 inline frame::frame(intptr_t* sp, intptr_t* fp) { _sp = sp; @@ -104,7 +103,6 @@ } } -#endif // !AARCH64 // Accessors @@ -148,11 +146,9 @@ return (intptr_t**)addr_at(interpreter_frame_locals_offset); } -#ifndef AARCH64 inline intptr_t* frame::interpreter_frame_last_sp() const { return *(intptr_t**)addr_at(interpreter_frame_last_sp_offset); } -#endif // !AARCH64 inline intptr_t* frame::interpreter_frame_bcp_addr() const { return (intptr_t*)addr_at(interpreter_frame_bcp_offset); @@ -181,12 +177,6 @@ // top of expression stack inline intptr_t* frame::interpreter_frame_tos_address() const { -#ifdef AARCH64 - intptr_t* stack_top = (intptr_t*)*addr_at(interpreter_frame_stack_top_offset); - assert(stack_top != NULL, "should be stored before call"); - assert(stack_top <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos"); - return stack_top; -#else intptr_t* last_sp = interpreter_frame_last_sp(); if (last_sp == NULL ) { return sp(); @@ -197,7 +187,6 @@ assert(last_sp <= (intptr_t*) interpreter_frame_monitor_end(), "bad tos"); return last_sp; } -#endif // AARCH64 } inline oop* frame::interpreter_frame_temp_oop_addr() const {