< prev index next >

src/hotspot/cpu/arm/continuationFreezeThaw_arm.inline.hpp

Print this page
@@ -46,10 +46,14 @@
  
  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) {

@@ -81,10 +85,24 @@
  
  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::push_preempt_rerun_adapter(frame top, bool is_interpreted_frame) {
+   Unimplemented();
+   return nullptr;
+ }
+ 
+ inline intptr_t* ThawBase::push_preempt_monitorenter_redo(stackChunkOop chunk) {
+   Unimplemented();
+   return nullptr;
+ }
+ 
  template <typename ConfigT>
  inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
    Unimplemented();
  }
  
< prev index next >