< prev index next > src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp
Print this page
/*
! * Copyright (c) 2019, 2025, 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.
/*
! * 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.
inline frame FreezeBase::sender(const frame& f) {
Unimplemented();
return frame();
}
! template<typename FKind> frame FreezeBase::new_heap_frame(frame& f, frame& caller) {
Unimplemented();
return frame();
}
void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
inline frame FreezeBase::sender(const frame& f) {
Unimplemented();
return frame();
}
! template<typename FKind> frame FreezeBase::new_heap_frame(frame& f, frame& caller, int size_adjust) {
Unimplemented();
return frame();
}
void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
Unimplemented();
}
! inline void FreezeBase::patch_pd(frame& hf, const frame& caller) {
Unimplemented();
}
inline void FreezeBase::patch_pd_unused(intptr_t* sp) {
Unimplemented();
inline void FreezeBase::relativize_interpreted_frame_metadata(const frame& f, const frame& hf) {
Unimplemented();
}
! 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();
inline frame ThawBase::new_entry_frame() {
Unimplemented();
return frame();
}
! template<typename FKind> frame ThawBase::new_stack_frame(const frame& hf, frame& caller, bool bottom) {
Unimplemented();
return frame();
}
inline void ThawBase::derelativize_interpreted_frame_metadata(const frame& hf, const frame& f) {
inline frame ThawBase::new_entry_frame() {
Unimplemented();
return frame();
}
! template<typename FKind> 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) {
< prev index next >