< prev index next >

src/hotspot/cpu/aarch64/continuationHelper_aarch64.inline.hpp

Print this page

 23  */
 24 
 25 #ifndef CPU_AARCH64_CONTINUATIONHELPER_AARCH64_INLINE_HPP
 26 #define CPU_AARCH64_CONTINUATIONHELPER_AARCH64_INLINE_HPP
 27 
 28 #include "runtime/continuationHelper.hpp"
 29 
 30 #include "runtime/continuationEntry.inline.hpp"
 31 #include "runtime/frame.inline.hpp"
 32 #include "runtime/registerMap.hpp"
 33 #include "utilities/macros.hpp"
 34 
 35 template<typename FKind>
 36 static inline intptr_t** link_address(const frame& f) {
 37   assert(FKind::is_instance(f), "");
 38   return FKind::interpreted
 39             ? (intptr_t**)(f.fp() + frame::link_offset)
 40             : (intptr_t**)(f.unextended_sp() + f.cb()->frame_size() - frame::sender_sp_offset);
 41 }
 42 
















 43 inline int ContinuationHelper::frame_align_words(int size) {
 44 #ifdef _LP64
 45   return size & 1;
 46 #else
 47   return 0;
 48 #endif
 49 }
 50 
 51 inline intptr_t* ContinuationHelper::frame_align_pointer(intptr_t* sp) {
 52 #ifdef _LP64
 53   sp = align_down(sp, frame::frame_alignment);
 54 #endif
 55   return sp;
 56 }
 57 
 58 template<typename FKind>
 59 inline void ContinuationHelper::update_register_map(const frame& f, RegisterMap* map) {
 60   frame::update_map_with_saved_link(map, link_address<FKind>(f));
 61 }
 62 

 66 
 67 inline void ContinuationHelper::push_pd(const frame& f) {
 68   *(intptr_t**)(f.sp() - frame::sender_sp_offset) = f.fp();
 69 }
 70 
 71 #define CPU_OVERRIDES_RETURN_ADDRESS_ACCESSORS
 72 
 73 inline address ContinuationHelper::return_address_at(intptr_t* sp) {
 74   return pauth_strip_verifiable(*(address*)sp);
 75 }
 76 
 77 inline void ContinuationHelper::patch_return_address_at(intptr_t* sp,
 78                                                         address pc) {
 79   *(address*)sp = pauth_sign_return_address(pc);
 80 }
 81 
 82 inline void ContinuationHelper::set_anchor_to_entry_pd(JavaFrameAnchor* anchor, ContinuationEntry* entry) {
 83   anchor->set_last_Java_fp(entry->entry_fp());
 84 }
 85 
 86 #ifdef ASSERT
 87 inline void ContinuationHelper::set_anchor_pd(JavaFrameAnchor* anchor, intptr_t* sp) {
 88   intptr_t* fp = *(intptr_t**)(sp - frame::sender_sp_offset);
 89   anchor->set_last_Java_fp(fp);
 90 }
 91 

 92 inline bool ContinuationHelper::Frame::assert_frame_laid_out(frame f) {
 93   intptr_t* sp = f.sp();
 94   address pc = ContinuationHelper::return_address_at(
 95                  sp - frame::sender_sp_ret_address_offset());
 96   intptr_t* fp = *(intptr_t**)(sp - frame::sender_sp_offset);
 97   assert(f.raw_pc() == pc, "f.ra_pc: " INTPTR_FORMAT " actual: " INTPTR_FORMAT, p2i(f.raw_pc()), p2i(pc));
 98   assert(f.fp() == fp, "f.fp: " INTPTR_FORMAT " actual: " INTPTR_FORMAT, p2i(f.fp()), p2i(fp));
 99   return f.raw_pc() == pc && f.fp() == fp;
100 }
101 #endif
102 
103 inline intptr_t** ContinuationHelper::Frame::callee_link_address(const frame& f) {
104   return (intptr_t**)(f.sp() - frame::sender_sp_offset);
105 }
106 
107 inline address* ContinuationHelper::Frame::return_pc_address(const frame& f) {
108   return (address*)(f.real_fp() - 1);
109 }
110 
111 inline address* ContinuationHelper::InterpretedFrame::return_pc_address(const frame& f) {

 23  */
 24 
 25 #ifndef CPU_AARCH64_CONTINUATIONHELPER_AARCH64_INLINE_HPP
 26 #define CPU_AARCH64_CONTINUATIONHELPER_AARCH64_INLINE_HPP
 27 
 28 #include "runtime/continuationHelper.hpp"
 29 
 30 #include "runtime/continuationEntry.inline.hpp"
 31 #include "runtime/frame.inline.hpp"
 32 #include "runtime/registerMap.hpp"
 33 #include "utilities/macros.hpp"
 34 
 35 template<typename FKind>
 36 static inline intptr_t** link_address(const frame& f) {
 37   assert(FKind::is_instance(f), "");
 38   return FKind::interpreted
 39             ? (intptr_t**)(f.fp() + frame::link_offset)
 40             : (intptr_t**)(f.unextended_sp() + f.cb()->frame_size() - frame::sender_sp_offset);
 41 }
 42 
 43 static inline void patch_return_pc_with_preempt_stub(frame& f) {
 44   if (f.is_runtime_frame()) {
 45     // Unlike x86 we don't know where in the callee frame the return pc is
 46     // saved so we can't patch the return from the VM call back to Java.
 47     // Instead, we will patch the return from the runtime stub back to the
 48     // compiled method so that the target returns to the preempt cleanup stub.
 49     intptr_t* caller_sp = f.sp() + f.cb()->frame_size();
 50     caller_sp[-1] = (intptr_t)StubRoutines::cont_preempt_stub();
 51   } else {
 52     // The target will check for preemption once it returns to the interpreter
 53     // or the native wrapper code and will manually jump to the preempt stub.
 54     JavaThread *thread = JavaThread::current();
 55     thread->set_preempt_alternate_return(StubRoutines::cont_preempt_stub());
 56   }
 57 }
 58 
 59 inline int ContinuationHelper::frame_align_words(int size) {
 60 #ifdef _LP64
 61   return size & 1;
 62 #else
 63   return 0;
 64 #endif
 65 }
 66 
 67 inline intptr_t* ContinuationHelper::frame_align_pointer(intptr_t* sp) {
 68 #ifdef _LP64
 69   sp = align_down(sp, frame::frame_alignment);
 70 #endif
 71   return sp;
 72 }
 73 
 74 template<typename FKind>
 75 inline void ContinuationHelper::update_register_map(const frame& f, RegisterMap* map) {
 76   frame::update_map_with_saved_link(map, link_address<FKind>(f));
 77 }
 78 

 82 
 83 inline void ContinuationHelper::push_pd(const frame& f) {
 84   *(intptr_t**)(f.sp() - frame::sender_sp_offset) = f.fp();
 85 }
 86 
 87 #define CPU_OVERRIDES_RETURN_ADDRESS_ACCESSORS
 88 
 89 inline address ContinuationHelper::return_address_at(intptr_t* sp) {
 90   return pauth_strip_verifiable(*(address*)sp);
 91 }
 92 
 93 inline void ContinuationHelper::patch_return_address_at(intptr_t* sp,
 94                                                         address pc) {
 95   *(address*)sp = pauth_sign_return_address(pc);
 96 }
 97 
 98 inline void ContinuationHelper::set_anchor_to_entry_pd(JavaFrameAnchor* anchor, ContinuationEntry* entry) {
 99   anchor->set_last_Java_fp(entry->entry_fp());
100 }
101 

102 inline void ContinuationHelper::set_anchor_pd(JavaFrameAnchor* anchor, intptr_t* sp) {
103   intptr_t* fp = *(intptr_t**)(sp - frame::sender_sp_offset);
104   anchor->set_last_Java_fp(fp);
105 }
106 
107 #ifdef ASSERT
108 inline bool ContinuationHelper::Frame::assert_frame_laid_out(frame f) {
109   intptr_t* sp = f.sp();
110   address pc = ContinuationHelper::return_address_at(
111                  sp - frame::sender_sp_ret_address_offset());
112   intptr_t* fp = *(intptr_t**)(sp - frame::sender_sp_offset);
113   assert(f.raw_pc() == pc, "f.ra_pc: " INTPTR_FORMAT " actual: " INTPTR_FORMAT, p2i(f.raw_pc()), p2i(pc));
114   assert(f.fp() == fp, "f.fp: " INTPTR_FORMAT " actual: " INTPTR_FORMAT, p2i(f.fp()), p2i(fp));
115   return f.raw_pc() == pc && f.fp() == fp;
116 }
117 #endif
118 
119 inline intptr_t** ContinuationHelper::Frame::callee_link_address(const frame& f) {
120   return (intptr_t**)(f.sp() - frame::sender_sp_offset);
121 }
122 
123 inline address* ContinuationHelper::Frame::return_pc_address(const frame& f) {
124   return (address*)(f.real_fp() - 1);
125 }
126 
127 inline address* ContinuationHelper::InterpretedFrame::return_pc_address(const frame& f) {
< prev index next >