< prev index next >

src/hotspot/cpu/x86/interp_masm_x86.hpp

Print this page

  1 /*
  2  * Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *

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














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





266 
267   // Debugging
268   // only if +VerifyOops && state == atos
269 #define interp_verify_oop(reg, state) _interp_verify_oop(reg, state, __FILE__, __LINE__);
270   void _interp_verify_oop(Register reg, TosState state, const char* file, int line);
271   // only if +VerifyFPU  && (state == ftos || state == dtos)
272   void verify_FPU(int stack_depth, TosState state = ftos);
273 
274   typedef enum { NotifyJVMTI, SkipNotifyJVMTI } NotifyMethodExitMode;
275 
276   // support for jvmti/dtrace
277   void notify_method_entry();
278   void notify_method_exit(TosState state, NotifyMethodExitMode mode);
279 
280  private:
281 
282   Register _locals_register; // register that contains the pointer to the locals
283   Register _bcp_register; // register that contains the bcp
284 
285  public:

  1 /*
  2  * Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved.
  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *

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



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