mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
6829194: JSR 292 needs to support compressed oops
Reviewed-by: kvn, jrose
This commit is contained in:
parent
a10ec19a4d
commit
0e4ed251b8
16 changed files with 141 additions and 127 deletions
|
@ -3094,11 +3094,10 @@ void MacroAssembler::check_klass_subtype_slow_path(Register sub_klass,
|
||||||
void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_reg,
|
void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_reg,
|
||||||
Register temp_reg,
|
Register temp_reg,
|
||||||
Label& wrong_method_type) {
|
Label& wrong_method_type) {
|
||||||
if (UseCompressedOops) unimplemented("coop"); // field accesses must decode
|
|
||||||
assert_different_registers(mtype_reg, mh_reg, temp_reg);
|
assert_different_registers(mtype_reg, mh_reg, temp_reg);
|
||||||
// compare method type against that of the receiver
|
// compare method type against that of the receiver
|
||||||
RegisterOrConstant mhtype_offset = delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg);
|
RegisterOrConstant mhtype_offset = delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg);
|
||||||
ld_ptr(mh_reg, mhtype_offset, temp_reg);
|
load_heap_oop(mh_reg, mhtype_offset, temp_reg);
|
||||||
cmp(temp_reg, mtype_reg);
|
cmp(temp_reg, mtype_reg);
|
||||||
br(Assembler::notEqual, false, Assembler::pn, wrong_method_type);
|
br(Assembler::notEqual, false, Assembler::pn, wrong_method_type);
|
||||||
delayed()->nop();
|
delayed()->nop();
|
||||||
|
@ -3112,15 +3111,14 @@ void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_re
|
||||||
void MacroAssembler::load_method_handle_vmslots(Register vmslots_reg, Register mh_reg,
|
void MacroAssembler::load_method_handle_vmslots(Register vmslots_reg, Register mh_reg,
|
||||||
Register temp_reg) {
|
Register temp_reg) {
|
||||||
assert_different_registers(vmslots_reg, mh_reg, temp_reg);
|
assert_different_registers(vmslots_reg, mh_reg, temp_reg);
|
||||||
if (UseCompressedOops) unimplemented("coop"); // field accesses must decode
|
|
||||||
// load mh.type.form.vmslots
|
// load mh.type.form.vmslots
|
||||||
if (java_dyn_MethodHandle::vmslots_offset_in_bytes() != 0) {
|
if (java_dyn_MethodHandle::vmslots_offset_in_bytes() != 0) {
|
||||||
// hoist vmslots into every mh to avoid dependent load chain
|
// hoist vmslots into every mh to avoid dependent load chain
|
||||||
ld( Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmslots_offset_in_bytes, temp_reg)), vmslots_reg);
|
ld( Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmslots_offset_in_bytes, temp_reg)), vmslots_reg);
|
||||||
} else {
|
} else {
|
||||||
Register temp2_reg = vmslots_reg;
|
Register temp2_reg = vmslots_reg;
|
||||||
ld_ptr(Address(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg)), temp2_reg);
|
load_heap_oop(Address(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg)), temp2_reg);
|
||||||
ld_ptr(Address(temp2_reg, delayed_value(java_dyn_MethodType::form_offset_in_bytes, temp_reg)), temp2_reg);
|
load_heap_oop(Address(temp2_reg, delayed_value(java_dyn_MethodType::form_offset_in_bytes, temp_reg)), temp2_reg);
|
||||||
ld( Address(temp2_reg, delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, temp_reg)), vmslots_reg);
|
ld( Address(temp2_reg, delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, temp_reg)), vmslots_reg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3130,9 +3128,8 @@ void MacroAssembler::jump_to_method_handle_entry(Register mh_reg, Register temp_
|
||||||
assert(mh_reg == G3_method_handle, "caller must put MH object in G3");
|
assert(mh_reg == G3_method_handle, "caller must put MH object in G3");
|
||||||
assert_different_registers(mh_reg, temp_reg);
|
assert_different_registers(mh_reg, temp_reg);
|
||||||
|
|
||||||
if (UseCompressedOops) unimplemented("coop"); // field accesses must decode
|
|
||||||
|
|
||||||
// pick out the interpreted side of the handler
|
// pick out the interpreted side of the handler
|
||||||
|
// NOTE: vmentry is not an oop!
|
||||||
ld_ptr(mh_reg, delayed_value(java_dyn_MethodHandle::vmentry_offset_in_bytes, temp_reg), temp_reg);
|
ld_ptr(mh_reg, delayed_value(java_dyn_MethodHandle::vmentry_offset_in_bytes, temp_reg), temp_reg);
|
||||||
|
|
||||||
// off we go...
|
// off we go...
|
||||||
|
@ -4653,6 +4650,11 @@ void MacroAssembler::load_heap_oop(Register s1, int simm13a, Register d) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MacroAssembler::load_heap_oop(Register s1, RegisterOrConstant s2, Register d) {
|
||||||
|
if (s2.is_constant()) load_heap_oop(s1, s2.as_constant(), d);
|
||||||
|
else load_heap_oop(s1, s2.as_register(), d);
|
||||||
|
}
|
||||||
|
|
||||||
void MacroAssembler::store_heap_oop(Register d, Register s1, Register s2) {
|
void MacroAssembler::store_heap_oop(Register d, Register s1, Register s2) {
|
||||||
if (UseCompressedOops) {
|
if (UseCompressedOops) {
|
||||||
assert(s1 != d && s2 != d, "not enough registers");
|
assert(s1 != d && s2 != d, "not enough registers");
|
||||||
|
|
|
@ -2103,6 +2103,7 @@ public:
|
||||||
void load_heap_oop(const Address& s, Register d);
|
void load_heap_oop(const Address& s, Register d);
|
||||||
void load_heap_oop(Register s1, Register s2, Register d);
|
void load_heap_oop(Register s1, Register s2, Register d);
|
||||||
void load_heap_oop(Register s1, int simm13a, Register d);
|
void load_heap_oop(Register s1, int simm13a, Register d);
|
||||||
|
void load_heap_oop(Register s1, RegisterOrConstant s2, Register d);
|
||||||
void store_heap_oop(Register d, Register s1, Register s2);
|
void store_heap_oop(Register d, Register s1, Register s2);
|
||||||
void store_heap_oop(Register d, Register s1, int simm13a);
|
void store_heap_oop(Register d, Register s1, int simm13a);
|
||||||
void store_heap_oop(Register d, const Address& a, int offset = 0);
|
void store_heap_oop(Register d, const Address& a, int offset = 0);
|
||||||
|
@ -2225,7 +2226,7 @@ public:
|
||||||
void stop(const char* msg); // prints msg, dumps registers and stops execution
|
void stop(const char* msg); // prints msg, dumps registers and stops execution
|
||||||
void warn(const char* msg); // prints msg, but don't stop
|
void warn(const char* msg); // prints msg, but don't stop
|
||||||
void untested(const char* what = "");
|
void untested(const char* what = "");
|
||||||
void unimplemented(const char* what = "") { char* b = new char[1024]; sprintf(b, "unimplemented: %s", what); stop(b); }
|
void unimplemented(const char* what = "") { char* b = new char[1024]; jio_snprintf(b, 1024, "unimplemented: %s", what); stop(b); }
|
||||||
void should_not_reach_here() { stop("should not reach here"); }
|
void should_not_reach_here() { stop("should not reach here"); }
|
||||||
void print_CPU_state();
|
void print_CPU_state();
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@ address MethodHandles::generate_method_handle_interpreter_entry(MacroAssembler*
|
||||||
}
|
}
|
||||||
|
|
||||||
// given the MethodType, find out where the MH argument is buried
|
// given the MethodType, find out where the MH argument is buried
|
||||||
__ ld_ptr(Address(G5_method_type, __ delayed_value(java_dyn_MethodType::form_offset_in_bytes, O1_scratch)), O0_argslot);
|
__ load_heap_oop(Address(G5_method_type, __ delayed_value(java_dyn_MethodType::form_offset_in_bytes, O1_scratch)), O0_argslot);
|
||||||
__ ldsw( Address(O0_argslot, __ delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, O1_scratch)), O0_argslot);
|
__ ldsw( Address(O0_argslot, __ delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, O1_scratch)), O0_argslot);
|
||||||
__ ld_ptr(__ argument_address(O0_argslot), G3_method_handle);
|
__ ld_ptr(__ argument_address(O0_argslot), G3_method_handle);
|
||||||
|
|
||||||
|
@ -348,7 +348,6 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
}
|
}
|
||||||
|
|
||||||
address interp_entry = __ pc();
|
address interp_entry = __ pc();
|
||||||
if (UseCompressedOops) __ unimplemented("UseCompressedOops");
|
|
||||||
|
|
||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
if (TraceMethodHandles) {
|
if (TraceMethodHandles) {
|
||||||
|
@ -413,7 +412,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
case _invokestatic_mh:
|
case _invokestatic_mh:
|
||||||
case _invokespecial_mh:
|
case _invokespecial_mh:
|
||||||
{
|
{
|
||||||
__ ld_ptr(G3_mh_vmtarget, G5_method); // target is a methodOop
|
__ load_heap_oop(G3_mh_vmtarget, G5_method); // target is a methodOop
|
||||||
__ verify_oop(G5_method);
|
__ verify_oop(G5_method);
|
||||||
// Same as TemplateTable::invokestatic or invokespecial,
|
// Same as TemplateTable::invokestatic or invokespecial,
|
||||||
// minus the CP setup and profiling:
|
// minus the CP setup and profiling:
|
||||||
|
@ -468,7 +467,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
// minus the CP setup and profiling:
|
// minus the CP setup and profiling:
|
||||||
__ load_method_handle_vmslots(O0_argslot, G3_method_handle, O1_scratch);
|
__ load_method_handle_vmslots(O0_argslot, G3_method_handle, O1_scratch);
|
||||||
Register O1_intf = O1_scratch;
|
Register O1_intf = O1_scratch;
|
||||||
__ ld_ptr(G3_mh_vmtarget, O1_intf);
|
__ load_heap_oop(G3_mh_vmtarget, O1_intf);
|
||||||
__ ldsw(G3_dmh_vmindex, G5_index);
|
__ ldsw(G3_dmh_vmindex, G5_index);
|
||||||
__ ld_ptr(__ argument_address(O0_argslot, -1), G3_method_handle);
|
__ ld_ptr(__ argument_address(O0_argslot, -1), G3_method_handle);
|
||||||
__ null_check(G3_method_handle, oopDesc::klass_offset_in_bytes());
|
__ null_check(G3_method_handle, oopDesc::klass_offset_in_bytes());
|
||||||
|
@ -523,7 +522,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
insert_arg_slots(_masm, arg_slots * stack_move_unit(), arg_mask, O0_argslot, O1_scratch, O2_scratch, G5_index);
|
insert_arg_slots(_masm, arg_slots * stack_move_unit(), arg_mask, O0_argslot, O1_scratch, O2_scratch, G5_index);
|
||||||
|
|
||||||
// Store bound argument into the new stack slot:
|
// Store bound argument into the new stack slot:
|
||||||
__ ld_ptr(G3_bmh_argument, O1_scratch);
|
__ load_heap_oop(G3_bmh_argument, O1_scratch);
|
||||||
if (arg_type == T_OBJECT) {
|
if (arg_type == T_OBJECT) {
|
||||||
__ st_ptr(O1_scratch, Address(O0_argslot, 0));
|
__ st_ptr(O1_scratch, Address(O0_argslot, 0));
|
||||||
} else {
|
} else {
|
||||||
|
@ -541,12 +540,12 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
}
|
}
|
||||||
|
|
||||||
if (direct_to_method) {
|
if (direct_to_method) {
|
||||||
__ ld_ptr(G3_mh_vmtarget, G5_method); // target is a methodOop
|
__ load_heap_oop(G3_mh_vmtarget, G5_method); // target is a methodOop
|
||||||
__ verify_oop(G5_method);
|
__ verify_oop(G5_method);
|
||||||
__ jump_indirect_to(G5_method_fie, O1_scratch);
|
__ jump_indirect_to(G5_method_fie, O1_scratch);
|
||||||
__ delayed()->nop();
|
__ delayed()->nop();
|
||||||
} else {
|
} else {
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle); // target is a methodOop
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle); // target is a methodOop
|
||||||
__ verify_oop(G3_method_handle);
|
__ verify_oop(G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
|
@ -556,7 +555,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
case _adapter_retype_only:
|
case _adapter_retype_only:
|
||||||
case _adapter_retype_raw:
|
case _adapter_retype_raw:
|
||||||
// Immediately jump to the next MH layer:
|
// Immediately jump to the next MH layer:
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
// This is OK when all parameter types widen.
|
// This is OK when all parameter types widen.
|
||||||
// It is also OK when a return type narrows.
|
// It is also OK when a return type narrows.
|
||||||
|
@ -572,8 +571,8 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
Address vmarg = __ argument_address(O0_argslot);
|
Address vmarg = __ argument_address(O0_argslot);
|
||||||
|
|
||||||
// What class are we casting to?
|
// What class are we casting to?
|
||||||
__ ld_ptr(G3_amh_argument, G5_klass); // This is a Class object!
|
__ load_heap_oop(G3_amh_argument, G5_klass); // This is a Class object!
|
||||||
__ ld_ptr(Address(G5_klass, java_lang_Class::klass_offset_in_bytes()), G5_klass);
|
__ load_heap_oop(Address(G5_klass, java_lang_Class::klass_offset_in_bytes()), G5_klass);
|
||||||
|
|
||||||
Label done;
|
Label done;
|
||||||
__ ld_ptr(vmarg, O1_scratch);
|
__ ld_ptr(vmarg, O1_scratch);
|
||||||
|
@ -590,14 +589,14 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
// If we get here, the type check failed!
|
// If we get here, the type check failed!
|
||||||
__ ldsw(G3_amh_vmargslot, O0_argslot); // reload argslot field
|
__ ldsw(G3_amh_vmargslot, O0_argslot); // reload argslot field
|
||||||
__ ld_ptr(G3_amh_argument, O3_scratch); // required class
|
__ load_heap_oop(G3_amh_argument, O3_scratch); // required class
|
||||||
__ ld_ptr(vmarg, O2_scratch); // bad object
|
__ ld_ptr(vmarg, O2_scratch); // bad object
|
||||||
__ jump_to(AddressLiteral(from_interpreted_entry(_raise_exception)), O0_argslot);
|
__ jump_to(AddressLiteral(from_interpreted_entry(_raise_exception)), O0_argslot);
|
||||||
__ delayed()->mov(Bytecodes::_checkcast, O1_scratch); // who is complaining?
|
__ delayed()->mov(Bytecodes::_checkcast, O1_scratch); // who is complaining?
|
||||||
|
|
||||||
__ bind(done);
|
__ bind(done);
|
||||||
// Get the new MH:
|
// Get the new MH:
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -676,7 +675,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
__ st(O1_scratch, vmarg);
|
__ st(O1_scratch, vmarg);
|
||||||
|
|
||||||
// Get the new MH:
|
// Get the new MH:
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -721,7 +720,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
ShouldNotReachHere();
|
ShouldNotReachHere();
|
||||||
}
|
}
|
||||||
|
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -851,7 +850,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -895,7 +894,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
__ brx(Assembler::less, false, Assembler::pt, loop);
|
__ brx(Assembler::less, false, Assembler::pt, loop);
|
||||||
__ delayed()->nop(); // FILLME
|
__ delayed()->nop(); // FILLME
|
||||||
|
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -913,7 +912,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
remove_arg_slots(_masm, G5_stack_move, O0_argslot, O1_scratch, O2_scratch, O3_scratch);
|
remove_arg_slots(_masm, G5_stack_move, O0_argslot, O1_scratch, O2_scratch, O3_scratch);
|
||||||
|
|
||||||
__ ld_ptr(G3_mh_vmtarget, G3_method_handle);
|
__ load_heap_oop(G3_mh_vmtarget, G3_method_handle);
|
||||||
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
__ jump_to_method_handle_entry(G3_method_handle, O1_scratch);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -43,7 +43,7 @@ enum /* platform_dependent_constants */ {
|
||||||
|
|
||||||
// MethodHandles adapters
|
// MethodHandles adapters
|
||||||
enum method_handles_platform_dependent_constants {
|
enum method_handles_platform_dependent_constants {
|
||||||
method_handles_adapters_code_size = 12000
|
method_handles_adapters_code_size = 15000
|
||||||
};
|
};
|
||||||
|
|
||||||
class Sparc {
|
class Sparc {
|
||||||
|
|
|
@ -3273,7 +3273,7 @@ void TemplateTable::invokedynamic(int byte_no) {
|
||||||
__ sll(Rret, LogBytesPerWord, Rret);
|
__ sll(Rret, LogBytesPerWord, Rret);
|
||||||
__ ld_ptr(Rtemp, Rret, Rret); // get return address
|
__ ld_ptr(Rtemp, Rret, Rret); // get return address
|
||||||
|
|
||||||
__ ld_ptr(G5_callsite, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, Rscratch), G3_method_handle);
|
__ load_heap_oop(G5_callsite, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, Rscratch), G3_method_handle);
|
||||||
__ null_check(G3_method_handle);
|
__ null_check(G3_method_handle);
|
||||||
|
|
||||||
// Adjust Rret first so Llast_SP can be same as Rret
|
// Adjust Rret first so Llast_SP can be same as Rret
|
||||||
|
|
|
@ -7709,9 +7709,14 @@ RegisterOrConstant MacroAssembler::delayed_value_impl(intptr_t* delayed_value_ad
|
||||||
void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_reg,
|
void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_reg,
|
||||||
Register temp_reg,
|
Register temp_reg,
|
||||||
Label& wrong_method_type) {
|
Label& wrong_method_type) {
|
||||||
if (UseCompressedOops) unimplemented(); // field accesses must decode
|
Address type_addr(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg));
|
||||||
// compare method type against that of the receiver
|
// compare method type against that of the receiver
|
||||||
cmpptr(mtype_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg)));
|
if (UseCompressedOops) {
|
||||||
|
load_heap_oop(temp_reg, type_addr);
|
||||||
|
cmpptr(mtype_reg, temp_reg);
|
||||||
|
} else {
|
||||||
|
cmpptr(mtype_reg, type_addr);
|
||||||
|
}
|
||||||
jcc(Assembler::notEqual, wrong_method_type);
|
jcc(Assembler::notEqual, wrong_method_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7723,15 +7728,14 @@ void MacroAssembler::check_method_handle_type(Register mtype_reg, Register mh_re
|
||||||
void MacroAssembler::load_method_handle_vmslots(Register vmslots_reg, Register mh_reg,
|
void MacroAssembler::load_method_handle_vmslots(Register vmslots_reg, Register mh_reg,
|
||||||
Register temp_reg) {
|
Register temp_reg) {
|
||||||
assert_different_registers(vmslots_reg, mh_reg, temp_reg);
|
assert_different_registers(vmslots_reg, mh_reg, temp_reg);
|
||||||
if (UseCompressedOops) unimplemented(); // field accesses must decode
|
|
||||||
// load mh.type.form.vmslots
|
// load mh.type.form.vmslots
|
||||||
if (java_dyn_MethodHandle::vmslots_offset_in_bytes() != 0) {
|
if (java_dyn_MethodHandle::vmslots_offset_in_bytes() != 0) {
|
||||||
// hoist vmslots into every mh to avoid dependent load chain
|
// hoist vmslots into every mh to avoid dependent load chain
|
||||||
movl(vmslots_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmslots_offset_in_bytes, temp_reg)));
|
movl(vmslots_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmslots_offset_in_bytes, temp_reg)));
|
||||||
} else {
|
} else {
|
||||||
Register temp2_reg = vmslots_reg;
|
Register temp2_reg = vmslots_reg;
|
||||||
movptr(temp2_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg)));
|
load_heap_oop(temp2_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::type_offset_in_bytes, temp_reg)));
|
||||||
movptr(temp2_reg, Address(temp2_reg, delayed_value(java_dyn_MethodType::form_offset_in_bytes, temp_reg)));
|
load_heap_oop(temp2_reg, Address(temp2_reg, delayed_value(java_dyn_MethodType::form_offset_in_bytes, temp_reg)));
|
||||||
movl(vmslots_reg, Address(temp2_reg, delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, temp_reg)));
|
movl(vmslots_reg, Address(temp2_reg, delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, temp_reg)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7745,9 +7749,8 @@ void MacroAssembler::jump_to_method_handle_entry(Register mh_reg, Register temp_
|
||||||
assert(mh_reg == rcx, "caller must put MH object in rcx");
|
assert(mh_reg == rcx, "caller must put MH object in rcx");
|
||||||
assert_different_registers(mh_reg, temp_reg);
|
assert_different_registers(mh_reg, temp_reg);
|
||||||
|
|
||||||
if (UseCompressedOops) unimplemented(); // field accesses must decode
|
|
||||||
|
|
||||||
// pick out the interpreted side of the handler
|
// pick out the interpreted side of the handler
|
||||||
|
// NOTE: vmentry is not an oop!
|
||||||
movptr(temp_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmentry_offset_in_bytes, temp_reg)));
|
movptr(temp_reg, Address(mh_reg, delayed_value(java_dyn_MethodHandle::vmentry_offset_in_bytes, temp_reg)));
|
||||||
|
|
||||||
// off we go...
|
// off we go...
|
||||||
|
@ -8238,6 +8241,40 @@ void MacroAssembler::store_klass(Register dst, Register src) {
|
||||||
movptr(Address(dst, oopDesc::klass_offset_in_bytes()), src);
|
movptr(Address(dst, oopDesc::klass_offset_in_bytes()), src);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MacroAssembler::load_heap_oop(Register dst, Address src) {
|
||||||
|
#ifdef _LP64
|
||||||
|
if (UseCompressedOops) {
|
||||||
|
movl(dst, src);
|
||||||
|
decode_heap_oop(dst);
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
movptr(dst, src);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MacroAssembler::store_heap_oop(Address dst, Register src) {
|
||||||
|
#ifdef _LP64
|
||||||
|
if (UseCompressedOops) {
|
||||||
|
assert(!dst.uses(src), "not enough registers");
|
||||||
|
encode_heap_oop(src);
|
||||||
|
movl(dst, src);
|
||||||
|
} else
|
||||||
|
#endif
|
||||||
|
movptr(dst, src);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Used for storing NULLs.
|
||||||
|
void MacroAssembler::store_heap_oop_null(Address dst) {
|
||||||
|
#ifdef _LP64
|
||||||
|
if (UseCompressedOops) {
|
||||||
|
movl(dst, (int32_t)NULL_WORD);
|
||||||
|
} else {
|
||||||
|
movslq(dst, (int32_t)NULL_WORD);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
movl(dst, (int32_t)NULL_WORD);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef _LP64
|
#ifdef _LP64
|
||||||
void MacroAssembler::store_klass_gap(Register dst, Register src) {
|
void MacroAssembler::store_klass_gap(Register dst, Register src) {
|
||||||
if (UseCompressedOops) {
|
if (UseCompressedOops) {
|
||||||
|
@ -8246,34 +8283,6 @@ void MacroAssembler::store_klass_gap(Register dst, Register src) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MacroAssembler::load_heap_oop(Register dst, Address src) {
|
|
||||||
if (UseCompressedOops) {
|
|
||||||
movl(dst, src);
|
|
||||||
decode_heap_oop(dst);
|
|
||||||
} else {
|
|
||||||
movq(dst, src);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void MacroAssembler::store_heap_oop(Address dst, Register src) {
|
|
||||||
if (UseCompressedOops) {
|
|
||||||
assert(!dst.uses(src), "not enough registers");
|
|
||||||
encode_heap_oop(src);
|
|
||||||
movl(dst, src);
|
|
||||||
} else {
|
|
||||||
movq(dst, src);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Used for storing NULLs.
|
|
||||||
void MacroAssembler::store_heap_oop_null(Address dst) {
|
|
||||||
if (UseCompressedOops) {
|
|
||||||
movl(dst, (int32_t)NULL_WORD);
|
|
||||||
} else {
|
|
||||||
movslq(dst, (int32_t)NULL_WORD);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef ASSERT
|
#ifdef ASSERT
|
||||||
void MacroAssembler::verify_heapbase(const char* msg) {
|
void MacroAssembler::verify_heapbase(const char* msg) {
|
||||||
assert (UseCompressedOops, "should be compressed");
|
assert (UseCompressedOops, "should be compressed");
|
||||||
|
|
|
@ -1682,24 +1682,24 @@ class MacroAssembler: public Assembler {
|
||||||
void load_klass(Register dst, Register src);
|
void load_klass(Register dst, Register src);
|
||||||
void store_klass(Register dst, Register src);
|
void store_klass(Register dst, Register src);
|
||||||
|
|
||||||
|
void load_heap_oop(Register dst, Address src);
|
||||||
|
void store_heap_oop(Address dst, Register src);
|
||||||
|
|
||||||
|
// Used for storing NULL. All other oop constants should be
|
||||||
|
// stored using routines that take a jobject.
|
||||||
|
void store_heap_oop_null(Address dst);
|
||||||
|
|
||||||
void load_prototype_header(Register dst, Register src);
|
void load_prototype_header(Register dst, Register src);
|
||||||
|
|
||||||
#ifdef _LP64
|
#ifdef _LP64
|
||||||
void store_klass_gap(Register dst, Register src);
|
void store_klass_gap(Register dst, Register src);
|
||||||
|
|
||||||
void load_heap_oop(Register dst, Address src);
|
|
||||||
void store_heap_oop(Address dst, Register src);
|
|
||||||
|
|
||||||
// This dummy is to prevent a call to store_heap_oop from
|
// This dummy is to prevent a call to store_heap_oop from
|
||||||
// converting a zero (like NULL) into a Register by giving
|
// converting a zero (like NULL) into a Register by giving
|
||||||
// the compiler two choices it can't resolve
|
// the compiler two choices it can't resolve
|
||||||
|
|
||||||
void store_heap_oop(Address dst, void* dummy);
|
void store_heap_oop(Address dst, void* dummy);
|
||||||
|
|
||||||
// Used for storing NULL. All other oop constants should be
|
|
||||||
// stored using routines that take a jobject.
|
|
||||||
void store_heap_oop_null(Address dst);
|
|
||||||
|
|
||||||
void encode_heap_oop(Register r);
|
void encode_heap_oop(Register r);
|
||||||
void decode_heap_oop(Register r);
|
void decode_heap_oop(Register r);
|
||||||
void encode_heap_oop_not_null(Register r);
|
void encode_heap_oop_not_null(Register r);
|
||||||
|
@ -1927,7 +1927,7 @@ class MacroAssembler: public Assembler {
|
||||||
|
|
||||||
void untested() { stop("untested"); }
|
void untested() { stop("untested"); }
|
||||||
|
|
||||||
void unimplemented(const char* what = "") { char* b = new char[1024]; jio_snprintf(b, sizeof(b), "unimplemented: %s", what); stop(b); }
|
void unimplemented(const char* what = "") { char* b = new char[1024]; jio_snprintf(b, 1024, "unimplemented: %s", what); stop(b); }
|
||||||
|
|
||||||
void should_not_reach_here() { stop("should not reach here"); }
|
void should_not_reach_here() { stop("should not reach here"); }
|
||||||
|
|
||||||
|
|
|
@ -123,11 +123,9 @@ address MethodHandles::generate_method_handle_interpreter_entry(MacroAssembler*
|
||||||
}
|
}
|
||||||
|
|
||||||
// given the MethodType, find out where the MH argument is buried
|
// given the MethodType, find out where the MH argument is buried
|
||||||
__ movptr(rdx_temp, Address(rax_mtype,
|
__ load_heap_oop(rdx_temp, Address(rax_mtype, __ delayed_value(java_dyn_MethodType::form_offset_in_bytes, rdi_temp)));
|
||||||
__ delayed_value(java_dyn_MethodType::form_offset_in_bytes, rdi_temp)));
|
|
||||||
Register rdx_vmslots = rdx_temp;
|
Register rdx_vmslots = rdx_temp;
|
||||||
__ movl(rdx_vmslots, Address(rdx_temp,
|
__ movl(rdx_vmslots, Address(rdx_temp, __ delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, rdi_temp)));
|
||||||
__ delayed_value(java_dyn_MethodTypeForm::vmslots_offset_in_bytes, rdi_temp)));
|
|
||||||
__ movptr(rcx_recv, __ argument_address(rdx_vmslots));
|
__ movptr(rcx_recv, __ argument_address(rdx_vmslots));
|
||||||
|
|
||||||
trace_method_handle(_masm, "invokeExact");
|
trace_method_handle(_masm, "invokeExact");
|
||||||
|
@ -154,20 +152,18 @@ address MethodHandles::generate_method_handle_interpreter_entry(MacroAssembler*
|
||||||
rcx_argslot, rbx_temp, rdx_temp);
|
rcx_argslot, rbx_temp, rdx_temp);
|
||||||
|
|
||||||
// load up an adapter from the calling type (Java weaves this)
|
// load up an adapter from the calling type (Java weaves this)
|
||||||
__ movptr(rdx_temp, Address(rax_mtype,
|
__ load_heap_oop(rdx_temp, Address(rax_mtype, __ delayed_value(java_dyn_MethodType::form_offset_in_bytes, rdi_temp)));
|
||||||
__ delayed_value(java_dyn_MethodType::form_offset_in_bytes, rdi_temp)));
|
|
||||||
Register rdx_adapter = rdx_temp;
|
Register rdx_adapter = rdx_temp;
|
||||||
// movptr(rdx_adapter, Address(rdx_temp, java_dyn_MethodTypeForm::genericInvoker_offset_in_bytes()));
|
// __ load_heap_oop(rdx_adapter, Address(rdx_temp, java_dyn_MethodTypeForm::genericInvoker_offset_in_bytes()));
|
||||||
// deal with old JDK versions:
|
// deal with old JDK versions:
|
||||||
__ lea(rdi_temp, Address(rdx_temp,
|
__ lea(rdi_temp, Address(rdx_temp, __ delayed_value(java_dyn_MethodTypeForm::genericInvoker_offset_in_bytes, rdi_temp)));
|
||||||
__ delayed_value(java_dyn_MethodTypeForm::genericInvoker_offset_in_bytes, rdi_temp)));
|
|
||||||
__ cmpptr(rdi_temp, rdx_temp);
|
__ cmpptr(rdi_temp, rdx_temp);
|
||||||
Label sorry_no_invoke_generic;
|
Label sorry_no_invoke_generic;
|
||||||
__ jccb(Assembler::below, sorry_no_invoke_generic);
|
__ jcc(Assembler::below, sorry_no_invoke_generic);
|
||||||
|
|
||||||
__ movptr(rdx_adapter, Address(rdi_temp, 0));
|
__ load_heap_oop(rdx_adapter, Address(rdi_temp, 0));
|
||||||
__ testptr(rdx_adapter, rdx_adapter);
|
__ testptr(rdx_adapter, rdx_adapter);
|
||||||
__ jccb(Assembler::zero, sorry_no_invoke_generic);
|
__ jcc(Assembler::zero, sorry_no_invoke_generic);
|
||||||
__ movptr(Address(rcx_argslot, 1 * Interpreter::stackElementSize), rdx_adapter);
|
__ movptr(Address(rcx_argslot, 1 * Interpreter::stackElementSize), rdx_adapter);
|
||||||
// As a trusted first argument, pass the type being called, so the adapter knows
|
// As a trusted first argument, pass the type being called, so the adapter knows
|
||||||
// the actual types of the arguments and return values.
|
// the actual types of the arguments and return values.
|
||||||
|
@ -431,7 +427,6 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
}
|
}
|
||||||
|
|
||||||
address interp_entry = __ pc();
|
address interp_entry = __ pc();
|
||||||
if (UseCompressedOops) __ unimplemented("UseCompressedOops");
|
|
||||||
|
|
||||||
trace_method_handle(_masm, entry_name(ek));
|
trace_method_handle(_masm, entry_name(ek));
|
||||||
|
|
||||||
|
@ -489,7 +484,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
case _invokespecial_mh:
|
case _invokespecial_mh:
|
||||||
{
|
{
|
||||||
Register rbx_method = rbx_temp;
|
Register rbx_method = rbx_temp;
|
||||||
__ movptr(rbx_method, rcx_mh_vmtarget); // target is a methodOop
|
__ load_heap_oop(rbx_method, rcx_mh_vmtarget); // target is a methodOop
|
||||||
__ verify_oop(rbx_method);
|
__ verify_oop(rbx_method);
|
||||||
// same as TemplateTable::invokestatic or invokespecial,
|
// same as TemplateTable::invokestatic or invokespecial,
|
||||||
// minus the CP setup and profiling:
|
// minus the CP setup and profiling:
|
||||||
|
@ -546,7 +541,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
__ load_method_handle_vmslots(rax_argslot, rcx_recv, rdx_temp);
|
__ load_method_handle_vmslots(rax_argslot, rcx_recv, rdx_temp);
|
||||||
Register rdx_intf = rdx_temp;
|
Register rdx_intf = rdx_temp;
|
||||||
Register rbx_index = rbx_temp;
|
Register rbx_index = rbx_temp;
|
||||||
__ movptr(rdx_intf, rcx_mh_vmtarget);
|
__ load_heap_oop(rdx_intf, rcx_mh_vmtarget);
|
||||||
__ movl(rbx_index, rcx_dmh_vmindex);
|
__ movl(rbx_index, rcx_dmh_vmindex);
|
||||||
__ movptr(rcx_recv, __ argument_address(rax_argslot, -1));
|
__ movptr(rcx_recv, __ argument_address(rax_argslot, -1));
|
||||||
__ null_check(rcx_recv, oopDesc::klass_offset_in_bytes());
|
__ null_check(rcx_recv, oopDesc::klass_offset_in_bytes());
|
||||||
|
@ -602,7 +597,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
rax_argslot, rbx_temp, rdx_temp);
|
rax_argslot, rbx_temp, rdx_temp);
|
||||||
|
|
||||||
// store bound argument into the new stack slot:
|
// store bound argument into the new stack slot:
|
||||||
__ movptr(rbx_temp, rcx_bmh_argument);
|
__ load_heap_oop(rbx_temp, rcx_bmh_argument);
|
||||||
Address prim_value_addr(rbx_temp, java_lang_boxing_object::value_offset_in_bytes(arg_type));
|
Address prim_value_addr(rbx_temp, java_lang_boxing_object::value_offset_in_bytes(arg_type));
|
||||||
if (arg_type == T_OBJECT) {
|
if (arg_type == T_OBJECT) {
|
||||||
__ movptr(Address(rax_argslot, 0), rbx_temp);
|
__ movptr(Address(rax_argslot, 0), rbx_temp);
|
||||||
|
@ -620,11 +615,11 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
if (direct_to_method) {
|
if (direct_to_method) {
|
||||||
Register rbx_method = rbx_temp;
|
Register rbx_method = rbx_temp;
|
||||||
__ movptr(rbx_method, rcx_mh_vmtarget);
|
__ load_heap_oop(rbx_method, rcx_mh_vmtarget);
|
||||||
__ verify_oop(rbx_method);
|
__ verify_oop(rbx_method);
|
||||||
__ jmp(rbx_method_fie);
|
__ jmp(rbx_method_fie);
|
||||||
} else {
|
} else {
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ verify_oop(rcx_recv);
|
__ verify_oop(rcx_recv);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
|
@ -634,7 +629,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
case _adapter_retype_only:
|
case _adapter_retype_only:
|
||||||
case _adapter_retype_raw:
|
case _adapter_retype_raw:
|
||||||
// immediately jump to the next MH layer:
|
// immediately jump to the next MH layer:
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ verify_oop(rcx_recv);
|
__ verify_oop(rcx_recv);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
// This is OK when all parameter types widen.
|
// This is OK when all parameter types widen.
|
||||||
|
@ -651,13 +646,13 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
vmarg = __ argument_address(rax_argslot);
|
vmarg = __ argument_address(rax_argslot);
|
||||||
|
|
||||||
// What class are we casting to?
|
// What class are we casting to?
|
||||||
__ movptr(rbx_klass, rcx_amh_argument); // this is a Class object!
|
__ load_heap_oop(rbx_klass, rcx_amh_argument); // this is a Class object!
|
||||||
__ movptr(rbx_klass, Address(rbx_klass, java_lang_Class::klass_offset_in_bytes()));
|
__ load_heap_oop(rbx_klass, Address(rbx_klass, java_lang_Class::klass_offset_in_bytes()));
|
||||||
|
|
||||||
Label done;
|
Label done;
|
||||||
__ movptr(rdx_temp, vmarg);
|
__ movptr(rdx_temp, vmarg);
|
||||||
__ testptr(rdx_temp, rdx_temp);
|
__ testptr(rdx_temp, rdx_temp);
|
||||||
__ jccb(Assembler::zero, done); // no cast if null
|
__ jcc(Assembler::zero, done); // no cast if null
|
||||||
__ load_klass(rdx_temp, rdx_temp);
|
__ load_klass(rdx_temp, rdx_temp);
|
||||||
|
|
||||||
// live at this point:
|
// live at this point:
|
||||||
|
@ -672,14 +667,15 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
__ movl(rax_argslot, rcx_amh_vmargslot); // reload argslot field
|
__ movl(rax_argslot, rcx_amh_vmargslot); // reload argslot field
|
||||||
__ movptr(rdx_temp, vmarg);
|
__ movptr(rdx_temp, vmarg);
|
||||||
|
|
||||||
__ pushptr(rcx_amh_argument); // required class
|
__ load_heap_oop(rbx_klass, rcx_amh_argument); // required class
|
||||||
|
__ push(rbx_klass);
|
||||||
__ push(rdx_temp); // bad object
|
__ push(rdx_temp); // bad object
|
||||||
__ push((int)Bytecodes::_checkcast); // who is complaining?
|
__ push((int)Bytecodes::_checkcast); // who is complaining?
|
||||||
__ jump(ExternalAddress(from_interpreted_entry(_raise_exception)));
|
__ jump(ExternalAddress(from_interpreted_entry(_raise_exception)));
|
||||||
|
|
||||||
__ bind(done);
|
__ bind(done);
|
||||||
// get the new MH:
|
// get the new MH:
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -741,7 +737,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
assert(CONV_VMINFO_SHIFT == 0, "preshifted");
|
assert(CONV_VMINFO_SHIFT == 0, "preshifted");
|
||||||
|
|
||||||
// get the new MH:
|
// get the new MH:
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
// (now we are done with the old MH)
|
// (now we are done with the old MH)
|
||||||
|
|
||||||
// original 32-bit vmdata word must be of this form:
|
// original 32-bit vmdata word must be of this form:
|
||||||
|
@ -816,7 +812,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
ShouldNotReachHere();
|
ShouldNotReachHere();
|
||||||
}
|
}
|
||||||
|
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -858,7 +854,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
rax_argslot, rbx_temp, rdx_temp);
|
rax_argslot, rbx_temp, rdx_temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -969,7 +965,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1029,7 +1025,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
__ pop(rdi); // restore temp
|
__ pop(rdi); // restore temp
|
||||||
|
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1052,7 +1048,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
__ pop(rdi); // restore temp
|
__ pop(rdi); // restore temp
|
||||||
|
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1103,8 +1099,8 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
// Check the array type.
|
// Check the array type.
|
||||||
Register rbx_klass = rbx_temp;
|
Register rbx_klass = rbx_temp;
|
||||||
__ movptr(rbx_klass, rcx_amh_argument); // this is a Class object!
|
__ load_heap_oop(rbx_klass, rcx_amh_argument); // this is a Class object!
|
||||||
__ movptr(rbx_klass, Address(rbx_klass, java_lang_Class::klass_offset_in_bytes()));
|
__ load_heap_oop(rbx_klass, Address(rbx_klass, java_lang_Class::klass_offset_in_bytes()));
|
||||||
|
|
||||||
Label ok_array_klass, bad_array_klass, bad_array_length;
|
Label ok_array_klass, bad_array_klass, bad_array_length;
|
||||||
__ check_klass_subtype(rdx_array_klass, rbx_klass, rdi, ok_array_klass);
|
__ check_klass_subtype(rdx_array_klass, rbx_klass, rdi, ok_array_klass);
|
||||||
|
@ -1186,7 +1182,7 @@ void MethodHandles::generate_method_handle_stub(MacroAssembler* _masm, MethodHan
|
||||||
|
|
||||||
// Arguments are spread. Move to next method handle.
|
// Arguments are spread. Move to next method handle.
|
||||||
UNPUSH_RSI_RDI;
|
UNPUSH_RSI_RDI;
|
||||||
__ movptr(rcx_recv, rcx_mh_vmtarget);
|
__ load_heap_oop(rcx_recv, rcx_mh_vmtarget);
|
||||||
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
__ jump_to_method_handle_entry(rcx_recv, rdx_temp);
|
||||||
|
|
||||||
__ bind(bad_array_klass);
|
__ bind(bad_array_klass);
|
||||||
|
|
|
@ -35,7 +35,7 @@ enum platform_dependent_constants {
|
||||||
|
|
||||||
// MethodHandles adapters
|
// MethodHandles adapters
|
||||||
enum method_handles_platform_dependent_constants {
|
enum method_handles_platform_dependent_constants {
|
||||||
method_handles_adapters_code_size = 26000
|
method_handles_adapters_code_size = 40000
|
||||||
};
|
};
|
||||||
|
|
||||||
class x86 {
|
class x86 {
|
||||||
|
|
|
@ -3111,19 +3111,22 @@ void TemplateTable::invokedynamic(int byte_no) {
|
||||||
|
|
||||||
// rax: CallSite object (f1)
|
// rax: CallSite object (f1)
|
||||||
// rbx: unused (f2)
|
// rbx: unused (f2)
|
||||||
|
// rcx: receiver address
|
||||||
// rdx: flags (unused)
|
// rdx: flags (unused)
|
||||||
|
|
||||||
|
Register rax_callsite = rax;
|
||||||
|
Register rcx_method_handle = rcx;
|
||||||
|
|
||||||
if (ProfileInterpreter) {
|
if (ProfileInterpreter) {
|
||||||
Label L;
|
|
||||||
// %%% should make a type profile for any invokedynamic that takes a ref argument
|
// %%% should make a type profile for any invokedynamic that takes a ref argument
|
||||||
// profile this call
|
// profile this call
|
||||||
__ profile_call(rsi);
|
__ profile_call(rsi);
|
||||||
}
|
}
|
||||||
|
|
||||||
__ movptr(rcx, Address(rax, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, rcx)));
|
__ movptr(rcx_method_handle, Address(rax_callsite, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, rcx)));
|
||||||
__ null_check(rcx);
|
__ null_check(rcx_method_handle);
|
||||||
__ prepare_to_jump_from_interpreted();
|
__ prepare_to_jump_from_interpreted();
|
||||||
__ jump_to_method_handle_entry(rcx, rdx);
|
__ jump_to_method_handle_entry(rcx_method_handle, rdx);
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -3120,17 +3120,19 @@ void TemplateTable::invokedynamic(int byte_no) {
|
||||||
// rcx: receiver address
|
// rcx: receiver address
|
||||||
// rdx: flags (unused)
|
// rdx: flags (unused)
|
||||||
|
|
||||||
|
Register rax_callsite = rax;
|
||||||
|
Register rcx_method_handle = rcx;
|
||||||
|
|
||||||
if (ProfileInterpreter) {
|
if (ProfileInterpreter) {
|
||||||
Label L;
|
|
||||||
// %%% should make a type profile for any invokedynamic that takes a ref argument
|
// %%% should make a type profile for any invokedynamic that takes a ref argument
|
||||||
// profile this call
|
// profile this call
|
||||||
__ profile_call(r13);
|
__ profile_call(r13);
|
||||||
}
|
}
|
||||||
|
|
||||||
__ movptr(rcx, Address(rax, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, rcx)));
|
__ load_heap_oop(rcx_method_handle, Address(rax_callsite, __ delayed_value(java_dyn_CallSite::target_offset_in_bytes, rcx)));
|
||||||
__ null_check(rcx);
|
__ null_check(rcx_method_handle);
|
||||||
__ prepare_to_jump_from_interpreted();
|
__ prepare_to_jump_from_interpreted();
|
||||||
__ jump_to_method_handle_entry(rcx, rdx);
|
__ jump_to_method_handle_entry(rcx_method_handle, rdx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -168,8 +168,8 @@ class CodeSection VALUE_OBJ_CLASS_SPEC {
|
||||||
bool allocates(address pc) const { return pc >= _start && pc < _limit; }
|
bool allocates(address pc) const { return pc >= _start && pc < _limit; }
|
||||||
bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
|
bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
|
||||||
|
|
||||||
void set_end(address pc) { assert(allocates2(pc),""); _end = pc; }
|
void set_end(address pc) { assert(allocates2(pc), err_msg("not in CodeBuffer memory: " PTR_FORMAT " <= " PTR_FORMAT " <= " PTR_FORMAT, _start, pc, _limit)); _end = pc; }
|
||||||
void set_mark(address pc) { assert(contains2(pc),"not in codeBuffer");
|
void set_mark(address pc) { assert(contains2(pc), "not in codeBuffer");
|
||||||
_mark = pc; }
|
_mark = pc; }
|
||||||
void set_mark_off(int offset) { assert(contains2(offset+_start),"not in codeBuffer");
|
void set_mark_off(int offset) { assert(contains2(offset+_start),"not in codeBuffer");
|
||||||
_mark = offset + _start; }
|
_mark = offset + _start; }
|
||||||
|
|
|
@ -471,7 +471,7 @@ int ciInstanceKlass::compute_nonstatic_fields() {
|
||||||
ciField* field = fields->at(i);
|
ciField* field = fields->at(i);
|
||||||
int offset = field->offset_in_bytes();
|
int offset = field->offset_in_bytes();
|
||||||
int size = (field->_type == NULL) ? heapOopSize : field->size_in_bytes();
|
int size = (field->_type == NULL) ? heapOopSize : field->size_in_bytes();
|
||||||
assert(last_offset <= offset, "no field overlap");
|
assert(last_offset <= offset, err_msg("no field overlap: %d <= %d", last_offset, offset));
|
||||||
if (last_offset > (int)sizeof(oopDesc))
|
if (last_offset > (int)sizeof(oopDesc))
|
||||||
assert((offset - last_offset) < BytesPerLong, "no big holes");
|
assert((offset - last_offset) < BytesPerLong, "no big holes");
|
||||||
// Note: Two consecutive T_BYTE fields will be separated by wordSize-1
|
// Note: Two consecutive T_BYTE fields will be separated by wordSize-1
|
||||||
|
|
|
@ -1945,7 +1945,7 @@ ciTypeFlow::ciTypeFlow(ciEnv* env, ciMethod* method, int osr_bci) {
|
||||||
_has_irreducible_entry = false;
|
_has_irreducible_entry = false;
|
||||||
_osr_bci = osr_bci;
|
_osr_bci = osr_bci;
|
||||||
_failure_reason = NULL;
|
_failure_reason = NULL;
|
||||||
assert(start_bci() >= 0 && start_bci() < code_size() , "correct osr_bci argument");
|
assert(0 <= start_bci() && start_bci() < code_size() , err_msg("correct osr_bci argument: 0 <= %d < %d", start_bci(), code_size()));
|
||||||
_work_list = NULL;
|
_work_list = NULL;
|
||||||
|
|
||||||
_ciblock_count = _methodBlocks->num_blocks();
|
_ciblock_count = _methodBlocks->num_blocks();
|
||||||
|
|
|
@ -2702,13 +2702,15 @@ void ClassFileParser::java_dyn_MethodHandle_fix_pre(constantPoolHandle cp,
|
||||||
// Adjust the field type from byte to an unmanaged pointer.
|
// Adjust the field type from byte to an unmanaged pointer.
|
||||||
assert(fac_ptr->nonstatic_byte_count > 0, "");
|
assert(fac_ptr->nonstatic_byte_count > 0, "");
|
||||||
fac_ptr->nonstatic_byte_count -= 1;
|
fac_ptr->nonstatic_byte_count -= 1;
|
||||||
(*fields_ptr)->ushort_at_put(i + instanceKlass::signature_index_offset,
|
|
||||||
word_sig_index);
|
(*fields_ptr)->ushort_at_put(i + instanceKlass::signature_index_offset, word_sig_index);
|
||||||
fac_ptr->nonstatic_word_count += 1;
|
if (UseCompressedOops) fac_ptr->nonstatic_double_count += 1;
|
||||||
|
else fac_ptr->nonstatic_word_count += 1;
|
||||||
|
|
||||||
FieldAllocationType atype = (FieldAllocationType) (*fields_ptr)->ushort_at(i + instanceKlass::low_offset);
|
FieldAllocationType atype = (FieldAllocationType) (*fields_ptr)->ushort_at(i + instanceKlass::low_offset);
|
||||||
assert(atype == NONSTATIC_BYTE, "");
|
assert(atype == NONSTATIC_BYTE, "");
|
||||||
FieldAllocationType new_atype = NONSTATIC_WORD;
|
FieldAllocationType new_atype = (wordSize == longSize) ? NONSTATIC_DOUBLE : NONSTATIC_WORD;
|
||||||
|
assert(wordSize == longSize || wordSize == jintSize, "ILP32 or LP64");
|
||||||
(*fields_ptr)->ushort_at_put(i + instanceKlass::low_offset, new_atype);
|
(*fields_ptr)->ushort_at_put(i + instanceKlass::low_offset, new_atype);
|
||||||
|
|
||||||
found_vmentry = true;
|
found_vmentry = true;
|
||||||
|
|
|
@ -173,7 +173,7 @@ inline oop oopDesc::decode_heap_oop_not_null(narrowOop v) {
|
||||||
address base = Universe::narrow_oop_base();
|
address base = Universe::narrow_oop_base();
|
||||||
int shift = Universe::narrow_oop_shift();
|
int shift = Universe::narrow_oop_shift();
|
||||||
oop result = (oop)(void*)((uintptr_t)base + ((uintptr_t)v << shift));
|
oop result = (oop)(void*)((uintptr_t)base + ((uintptr_t)v << shift));
|
||||||
assert(check_obj_alignment(result), "Address not aligned");
|
assert(check_obj_alignment(result), err_msg("address not aligned: " PTR_FORMAT, (void*) result));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue