< prev index next > src/hotspot/cpu/aarch64/frame_aarch64.hpp
Print this page
intptr_t* ptr_at_addr(int offset) const {
return (intptr_t*) addr_at(offset);
}
+ public:
+ // Support for scalarized inline type calling convention
+ intptr_t* repair_sender_sp(intptr_t* sender_sp, intptr_t** saved_fp_addr) const;
+ static intptr_t* repair_sender_sp(nmethod* nm, intptr_t* sp, intptr_t** saved_fp_addr);
+ bool was_augmented_on_entry(int& real_size) const;
+
+ private:
+
#ifdef ASSERT
// Used in frame::sender_for_{interpreter,compiled}_frame
static void verify_deopt_original_pc(nmethod* nm, intptr_t* unextended_sp);
#endif
< prev index next >