< prev index next > src/hotspot/cpu/s390/continuationFreezeThaw_s390.inline.hpp
Print this page
void FreezeBase::adjust_interpreted_frame_unextended_sp(frame& f) {
Unimplemented();
}
+ inline void FreezeBase::prepare_freeze_interpreted_top_frame(const frame& f) {
+ 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) {
inline void ThawBase::patch_pd(frame& f, const frame& caller) {
Unimplemented();
}
+ inline void ThawBase::patch_pd(frame& f, intptr_t* caller_sp) {
+ Unimplemented();
+ }
+
+ inline intptr_t* ThawBase::possibly_adjust_frame(frame& top) {
+ Unimplemented();
+ return nullptr;
+ }
+
+ inline intptr_t* ThawBase::push_cleanup_continuation() {
+ Unimplemented();
+ return nullptr;
+ }
+
template <typename ConfigT>
inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
Unimplemented();
}
< prev index next >