127 int _offset_fp; // relative frame pointer for use in stack-chunk frames
128 };
129 // The interpreter and adapters will extend the frame of the caller.
130 // Since oopMaps are based on the sp of the caller before extension
131 // we need to know that value. However in order to compute the address
132 // of the return address we need the real "raw" sp. By convention we
133 // use sp() to mean "raw" sp and unextended_sp() to mean the caller's
134 // original sp.
135
136 union {
137 intptr_t* _unextended_sp;
138 int _offset_unextended_sp; // for use in stack-chunk frames
139 };
140
141 void adjust_unextended_sp() NOT_DEBUG_RETURN;
142
143 intptr_t* ptr_at_addr(int offset) const {
144 return (intptr_t*) addr_at(offset);
145 }
146
147 #ifdef ASSERT
148 // Used in frame::sender_for_{interpreter,compiled}_frame
149 static void verify_deopt_original_pc(nmethod* nm, intptr_t* unextended_sp);
150 #endif
151
152 public:
153 // Constructors
154
155 frame(intptr_t* sp, intptr_t* fp, address pc);
156
157 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc);
158
159 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc, CodeBlob* cb);
160 // used for heap frame construction by continuations
161 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc, CodeBlob* cb, const ImmutableOopMap* oop_map, bool relative);
162
163 frame(intptr_t* sp, intptr_t* fp);
164
165 void init(intptr_t* sp, intptr_t* fp, address pc);
166 void setup(address pc);
|
127 int _offset_fp; // relative frame pointer for use in stack-chunk frames
128 };
129 // The interpreter and adapters will extend the frame of the caller.
130 // Since oopMaps are based on the sp of the caller before extension
131 // we need to know that value. However in order to compute the address
132 // of the return address we need the real "raw" sp. By convention we
133 // use sp() to mean "raw" sp and unextended_sp() to mean the caller's
134 // original sp.
135
136 union {
137 intptr_t* _unextended_sp;
138 int _offset_unextended_sp; // for use in stack-chunk frames
139 };
140
141 void adjust_unextended_sp() NOT_DEBUG_RETURN;
142
143 intptr_t* ptr_at_addr(int offset) const {
144 return (intptr_t*) addr_at(offset);
145 }
146
147 // Support for scalarized inline type calling convention
148 intptr_t* repair_sender_sp(intptr_t* sender_sp, intptr_t** saved_fp_addr) const;
149
150 #ifdef ASSERT
151 // Used in frame::sender_for_{interpreter,compiled}_frame
152 static void verify_deopt_original_pc(nmethod* nm, intptr_t* unextended_sp);
153 #endif
154
155 public:
156 // Constructors
157
158 frame(intptr_t* sp, intptr_t* fp, address pc);
159
160 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc);
161
162 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc, CodeBlob* cb);
163 // used for heap frame construction by continuations
164 frame(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, address pc, CodeBlob* cb, const ImmutableOopMap* oop_map, bool relative);
165
166 frame(intptr_t* sp, intptr_t* fp);
167
168 void init(intptr_t* sp, intptr_t* fp, address pc);
169 void setup(address pc);
|