src/cpu/x86/vm/interp_masm_x86_64.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6829192 Cdiff src/cpu/x86/vm/interp_masm_x86_64.hpp

src/cpu/x86/vm/interp_masm_x86_64.hpp

Print this page
rev 1022 : 6829192: JSR 292 needs to support 64-bit x86
Summary: changes for method handles and invokedynamic
Reviewed-by: ?, ?

*** 93,105 **** movptr(tags, Address(cpool, constantPoolOopDesc::tags_offset_in_bytes())); } void get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset); void get_cache_and_index_at_bcp(Register cache, Register index, ! int bcp_offset); void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, ! int bcp_offset); void pop_ptr(Register r = rax); void pop_i(Register r = rax); void pop_l(Register r = rax); --- 93,106 ---- movptr(tags, Address(cpool, constantPoolOopDesc::tags_offset_in_bytes())); } void get_unsigned_2_byte_index_at_bcp(Register reg, int bcp_offset); void get_cache_and_index_at_bcp(Register cache, Register index, ! int bcp_offset, bool giant_index = false); void get_cache_entry_pointer_at_bcp(Register cache, Register tmp, ! int bcp_offset, bool giant_index = false); ! void get_cache_index_at_bcp(Register index, int bcp_offset, bool giant_index = false); void pop_ptr(Register r = rax); void pop_i(Register r = rax); void pop_l(Register r = rax);
*** 234,244 **** void profile_taken_branch(Register mdp, Register bumped_count); void profile_not_taken_branch(Register mdp); void profile_call(Register mdp); void profile_final_call(Register mdp); void profile_virtual_call(Register receiver, Register mdp, ! Register scratch2); void profile_ret(Register return_bci, Register mdp); void profile_null_seen(Register mdp); void profile_typecheck(Register mdp, Register klass, Register scratch); void profile_typecheck_failed(Register mdp); void profile_switch_default(Register mdp); --- 235,246 ---- void profile_taken_branch(Register mdp, Register bumped_count); void profile_not_taken_branch(Register mdp); void profile_call(Register mdp); void profile_final_call(Register mdp); void profile_virtual_call(Register receiver, Register mdp, ! Register scratch2, ! bool receiver_can_be_null = false); void profile_ret(Register return_bci, Register mdp); void profile_null_seen(Register mdp); void profile_typecheck(Register mdp, Register klass, Register scratch); void profile_typecheck_failed(Register mdp); void profile_switch_default(Register mdp);
src/cpu/x86/vm/interp_masm_x86_64.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File