< prev index next >

src/hotspot/cpu/zero/frame_zero.cpp

Print this page
@@ -428,5 +428,22 @@
  frame::frame(void* sp, void* fp, void* pc) {
    Unimplemented();
  }
  
  #endif
+ 
+ intptr_t* frame::repair_sender_sp(intptr_t* sender_sp, intptr_t** saved_fp_addr) const {
+   // Only called for nmethods, which Zero does not have.
+   ShouldNotReachHere();
+   return nullptr;
+ }
+ 
+ intptr_t* frame::repair_sender_sp(nmethod* nm, intptr_t* sp, intptr_t** saved_fp_addr) {
+   // Only called for nmethods, which Zero does not have.
+   ShouldNotReachHere();
+   return nullptr;
+ }
+ 
+ bool frame::was_augmented_on_entry(int& real_size) const {
+   ShouldNotReachHere();
+   return false;
+ }
< prev index next >