< prev index next >

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

Print this page
@@ -62,10 +62,19 @@
  
  inline void FreezeBase::patch_stack_pd(intptr_t* frame_sp, intptr_t* heap_sp) {
    Unimplemented();
  }
  
+ inline intptr_t* AnchorMark::anchor_mark_set_pd() {
+   Unimplemented();
+   return nullptr;
+ }
+ 
+ inline void AnchorMark::anchor_mark_clear_pd() {
+   Unimplemented();
+ }
+ 
  inline frame ThawBase::new_entry_frame() {
    Unimplemented();
    return frame();
  }
  

@@ -94,10 +103,15 @@
  inline intptr_t* ThawBase::push_cleanup_continuation() {
    Unimplemented();
    return nullptr;
  }
  
+ inline intptr_t* ThawBase::push_preempt_adapter() {
+   Unimplemented();
+   return nullptr;
+ }
+ 
  template <typename ConfigT>
  inline void Thaw<ConfigT>::patch_caller_links(intptr_t* sp, intptr_t* bottom) {
    Unimplemented();
  }
  
< prev index next >