diff a/src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp b/src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp --- a/src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp +++ b/src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp @@ -1,7 +1,7 @@ /* - * Copyright (c) 2019, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2019, 2026, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. @@ -37,11 +37,11 @@ inline frame FreezeBase::sender(const frame& f) { Unimplemented(); return frame(); } -template frame FreezeBase::new_heap_frame(frame& f, frame& caller) { +template frame FreezeBase::new_heap_frame(frame& f, frame& caller, int size_adjust) { Unimplemented(); return frame(); } void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) { @@ -54,11 +54,11 @@ inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) { Unimplemented(); } -inline void FreezeBase::patch_pd(frame& hf, const frame& caller) { +inline void FreezeBase::patch_pd(frame& hf, const frame& caller, bool is_bottom_frame) { Unimplemented(); } inline void FreezeBase::patch_pd_unused(intptr_t* sp) { Unimplemented(); @@ -80,11 +80,11 @@ inline frame ThawBase::new_entry_frame() { Unimplemented(); return frame(); } -template frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) { +template frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom, int size_adjust) { Unimplemented(); return frame(); } inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {