< prev index next >

src/hotspot/cpu/x86/interp_masm_x86.hpp

Print this page

145   void pop(Register r) { ((MacroAssembler*)this)->pop(r); }
146   void push(Register r) { ((MacroAssembler*)this)->push(r); }
147   void push(int32_t imm ) { ((MacroAssembler*)this)->push(imm); }
148 
149   void pop(TosState state);        // transition vtos -> state
150   void push(TosState state);       // transition state -> vtos
151 
152   void empty_expression_stack() {
153     movptr(rcx, Address(rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize));
154     lea(rsp, Address(rbp, rcx, Address::times_ptr));
155     // null last_sp until next java call
156     movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), NULL_WORD);
157   }
158 
159   // Helpers for swap and dup
160   void load_ptr(int n, Register val);
161   void store_ptr(int n, Register val);
162 
163   // Generate a subtype check: branch to ok_is_subtype if sub_klass is
164   // a subtype of super_klass.
165   void gen_subtype_check( Register sub_klass, Label &ok_is_subtype );
166 
167   // Dispatching
168   void dispatch_prolog(TosState state, int step = 0);
169   void dispatch_epilog(TosState state, int step = 0);
170   // dispatch via rbx (assume rbx is loaded already)
171   void dispatch_only(TosState state, bool generate_poll = false);
172   // dispatch normal table via rbx (assume rbx is loaded already)
173   void dispatch_only_normal(TosState state);
174   void dispatch_only_noverify(TosState state);
175   // load rbx from [_bcp_register + step] and dispatch via rbx
176   void dispatch_next(TosState state, int step = 0, bool generate_poll = false);
177   // load rbx from [_bcp_register] and dispatch via rbx and table
178   void dispatch_via (TosState state, address* table);
179 
180   // jump to an invoked target
181   void prepare_to_jump_from_interpreted();
182   void jump_from_interpreted(Register method, Register temp);
183 
184   // narrow int return value
185   void narrow(Register result);
186 
187   // Returning from interpreted functions
188   //
189   // Removes the current activation (incl. unlocking of monitors)
190   // and sets up the return address.  This code is also used for
191   // exception unwindwing. In that case, we do not want to throw
192   // IllegalMonitorStateExceptions, since that might get us into an
193   // infinite rethrow exception loop.
194   // Additionally this code is used for popFrame and earlyReturn.
195   // In popFrame case we want to skip throwing an exception,
196   // installing an exception, and notifying jvmdi.
197   // In earlyReturn case we only want to skip throwing an exception
198   // and installing an exception.
199   void remove_activation(TosState state, Register ret_addr,
200                          bool throw_monitor_exception = true,
201                          bool install_monitor_exception = true,
202                          bool notify_jvmdi = true);
203   void get_method_counters(Register method, Register mcs, Label& skip);
204 














205   // Object locking
206   void lock_object  (Register lock_reg);
207   void unlock_object(Register lock_reg);
208 
209   // Interpreter profiling operations
210   void set_method_data_pointer_for_bcp();
211   void test_method_data_pointer(Register mdp, Label& zero_continue);
212   void verify_method_data_pointer();
213 
214   void set_mdp_data_at(Register mdp_in, int constant, Register value);
215   void increment_mdp_data_at(Register mdp_in, int constant);
216   void increment_mdp_data_at(Register mdp_in, Register index, int constant);
217   void increment_mask_and_jump(Address counter_addr, Address mask,
218                                Register scratch, Label* where);
219   void set_mdp_flag_at(Register mdp_in, int flag_constant);
220   void test_mdp_data_at(Register mdp_in, int offset, Register value,
221                         Register test_value_out,
222                         Label& not_equal_continue);
223 
224   void record_klass_in_profile(Register receiver, Register mdp,
225                                Register reg2, bool is_virtual_call);
226   void record_klass_in_profile_helper(Register receiver, Register mdp,
227                                       Register reg2, int start_row,
228                                       Label& done, bool is_virtual_call);
229   void record_item_in_profile_helper(Register item, Register mdp, Register reg2, int start_row,
230                                      Label& done, int total_rows,
231                                      OffsetFunction item_offset_fn,
232                                      OffsetFunction item_count_offset_fn);
233 
234   void update_mdp_by_offset(Register mdp_in, int offset_of_offset);
235   void update_mdp_by_offset(Register mdp_in, Register reg, int offset_of_disp);
236   void update_mdp_by_constant(Register mdp_in, int constant);
237   void update_mdp_for_ret(Register return_bci);
238 
239   void profile_taken_branch(Register mdp, Register bumped_count);
240   void profile_not_taken_branch(Register mdp);
241   void profile_call(Register mdp);
242   void profile_final_call(Register mdp);
243   void profile_virtual_call(Register receiver, Register mdp,
244                             Register scratch2,
245                             bool receiver_can_be_null = false);
246   void profile_ret(Register return_bci, Register mdp);
247   void profile_null_seen(Register mdp);
248   void profile_typecheck(Register mdp, Register klass, Register scratch);
249 
250   void profile_switch_default(Register mdp);
251   void profile_switch_case(Register index_in_scratch, Register mdp,
252                            Register scratch2);





253 
254   // Debugging
255   // only if +VerifyOops && state == atos
256 #define interp_verify_oop(reg, state) _interp_verify_oop(reg, state, __FILE__, __LINE__);
257   void _interp_verify_oop(Register reg, TosState state, const char* file, int line);
258 
259   typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode;
260 
261   // support for jvmti/dtrace
262   void notify_method_entry();
263   void notify_method_exit(TosState state, NotifyMethodExitMode mode);
264 
265   JFR_ONLY(void enter_jfr_critical_section();)
266   JFR_ONLY(void leave_jfr_critical_section();)
267 
268  private:
269 
270   Register _locals_register; // register that contains the pointer to the locals
271   Register _bcp_register; // register that contains the bcp
272 

145   void pop(Register r) { ((MacroAssembler*)this)->pop(r); }
146   void push(Register r) { ((MacroAssembler*)this)->push(r); }
147   void push(int32_t imm ) { ((MacroAssembler*)this)->push(imm); }
148 
149   void pop(TosState state);        // transition vtos -> state
150   void push(TosState state);       // transition state -> vtos
151 
152   void empty_expression_stack() {
153     movptr(rcx, Address(rbp, frame::interpreter_frame_monitor_block_top_offset * wordSize));
154     lea(rsp, Address(rbp, rcx, Address::times_ptr));
155     // null last_sp until next java call
156     movptr(Address(rbp, frame::interpreter_frame_last_sp_offset * wordSize), NULL_WORD);
157   }
158 
159   // Helpers for swap and dup
160   void load_ptr(int n, Register val);
161   void store_ptr(int n, Register val);
162 
163   // Generate a subtype check: branch to ok_is_subtype if sub_klass is
164   // a subtype of super_klass.
165   void gen_subtype_check(Register sub_klass, Label &ok_is_subtype, bool profile = true);
166 
167   // Dispatching
168   void dispatch_prolog(TosState state, int step = 0);
169   void dispatch_epilog(TosState state, int step = 0);
170   // dispatch via rbx (assume rbx is loaded already)
171   void dispatch_only(TosState state, bool generate_poll = false);
172   // dispatch normal table via rbx (assume rbx is loaded already)
173   void dispatch_only_normal(TosState state);
174   void dispatch_only_noverify(TosState state);
175   // load rbx from [_bcp_register + step] and dispatch via rbx
176   void dispatch_next(TosState state, int step = 0, bool generate_poll = false);
177   // load rbx from [_bcp_register] and dispatch via rbx and table
178   void dispatch_via (TosState state, address* table);
179 
180   // jump to an invoked target
181   void prepare_to_jump_from_interpreted();
182   void jump_from_interpreted(Register method, Register temp);
183 
184   // narrow int return value
185   void narrow(Register result);
186 
187   // Returning from interpreted functions
188   //
189   // Removes the current activation (incl. unlocking of monitors)
190   // and sets up the return address.  This code is also used for
191   // exception unwindwing. In that case, we do not want to throw
192   // IllegalMonitorStateExceptions, since that might get us into an
193   // infinite rethrow exception loop.
194   // Additionally this code is used for popFrame and earlyReturn.
195   // In popFrame case we want to skip throwing an exception,
196   // installing an exception, and notifying jvmdi.
197   // In earlyReturn case we only want to skip throwing an exception
198   // and installing an exception.
199   void remove_activation(TosState state, Register ret_addr,
200                          bool throw_monitor_exception = true,
201                          bool install_monitor_exception = true,
202                          bool notify_jvmdi = true);
203   void get_method_counters(Register method, Register mcs, Label& skip);
204 
205   // Kills t1 and t2, preserves klass, return allocation in new_obj
206   void allocate_instance(Register klass, Register new_obj,
207                          Register t1, Register t2,
208                          bool clear_fields, Label& alloc_failed);
209 
210   // Allocate instance in "obj" and read in the content of the inline field
211   // NOTES:
212   //   - input holder object via "obj", which must be rax,
213   //     will return new instance via the same reg
214   //   - assumes holder_klass and valueKlass field klass have both been resolved
215   void read_flat_field(Register entry,
216                        Register tmp1, Register tmp2,
217                        Register obj = rax);
218 
219   // Object locking
220   void lock_object  (Register lock_reg);
221   void unlock_object(Register lock_reg);
222 
223   // Interpreter profiling operations
224   void set_method_data_pointer_for_bcp();
225   void test_method_data_pointer(Register mdp, Label& zero_continue);
226   void verify_method_data_pointer();
227 
228   void set_mdp_data_at(Register mdp_in, int constant, Register value);
229   void increment_mdp_data_at(Register mdp_in, int constant);
230   void increment_mdp_data_at(Register mdp_in, Register index, int constant);
231   void increment_mask_and_jump(Address counter_addr, Address mask,
232                                Register scratch, Label* where);
233   void set_mdp_flag_at(Register mdp_in, int flag_constant);
234   void test_mdp_data_at(Register mdp_in, int offset, Register value,
235                         Register test_value_out,
236                         Label& not_equal_continue);
237 
238   void record_klass_in_profile(Register receiver, Register mdp, Register reg2);
239   void record_klass_in_profile_helper(Register receiver, Register mdp, Register reg2, int start_row, Label &done);



240   void record_item_in_profile_helper(Register item, Register mdp, Register reg2, int start_row,
241                                      Label& done, int total_rows,
242                                      OffsetFunction item_offset_fn,
243                                      OffsetFunction item_count_offset_fn);
244 
245   void update_mdp_by_offset(Register mdp_in, int offset_of_offset);
246   void update_mdp_by_offset(Register mdp_in, Register reg, int offset_of_disp);
247   void update_mdp_by_constant(Register mdp_in, int constant);
248   void update_mdp_for_ret(Register return_bci);
249 
250   void profile_taken_branch(Register mdp, Register bumped_count);
251   void profile_not_taken_branch(Register mdp, bool acmp = false);
252   void profile_call(Register mdp);
253   void profile_final_call(Register mdp);
254   void profile_virtual_call(Register receiver, Register mdp,
255                             Register scratch2,
256                             bool receiver_can_be_null = false);
257   void profile_ret(Register return_bci, Register mdp);
258   void profile_null_seen(Register mdp);
259   void profile_typecheck(Register mdp, Register klass, Register scratch);
260 
261   void profile_switch_default(Register mdp);
262   void profile_switch_case(Register index_in_scratch, Register mdp,
263                            Register scratch2);
264   template <class ArrayData> void profile_array_type(Register mdp, Register array, Register tmp);
265 
266   void profile_multiple_element_types(Register mdp, Register element, Register tmp, const Register tmp2);
267   void profile_element_type(Register mdp, Register element, Register tmp);
268   void profile_acmp(Register mdp, Register left, Register right, Register tmp);
269 
270   // Debugging
271   // only if +VerifyOops && state == atos
272 #define interp_verify_oop(reg, state) _interp_verify_oop(reg, state, __FILE__, __LINE__);
273   void _interp_verify_oop(Register reg, TosState state, const char* file, int line);
274 
275   typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode;
276 
277   // support for jvmti/dtrace
278   void notify_method_entry();
279   void notify_method_exit(TosState state, NotifyMethodExitMode mode);
280 
281   JFR_ONLY(void enter_jfr_critical_section();)
282   JFR_ONLY(void leave_jfr_critical_section();)
283 
284  private:
285 
286   Register _locals_register; // register that contains the pointer to the locals
287   Register _bcp_register; // register that contains the bcp
288 
< prev index next >