/hg/openjdk6-mips: 2 new changesets
liuqi at icedtea.classpath.org
liuqi at icedtea.classpath.org
Sun Oct 24 01:29:53 PDT 2010
changeset 7eeee95a5a53 in /hg/openjdk6-mips
details: http://icedtea.classpath.org/hg/openjdk6-mips?cmd=changeset;node=7eeee95a5a53
author: YANG Yongqiang <yangyongqiang at loongson.cn>
date: Sat Oct 23 21:08:56 2010 +0000
Fix five bugs related to safepoint_poll, double-precision operand,
verify_oop operation and safepoint_return respectively.
1. pc_offset for oopMap at safepoint_poll used by
add_debug_info_branch must be the offset of the instruction which
causes an exception.
2. To avoid the failure of type-checking, when value of LIRConst,
which is single-precision or double-precision, is got through a
common path. However, as_jint_lo_bits and as_jint_hi_bits, which
are much more general, should be used.
3. In the stack2reg function, when operand is double-precision, two
float registers are filled with content of the same stack address.
We should not do that. Fix it.
4. In the verify_oop_addr function, the address of the object to be
verified may use SP, so the object must be loaded before changing
SP.
5. Let safepoint_return use AT.
6. Do some codes cleaning work.
changeset d3aee0aef6b6 in /hg/openjdk6-mips
details: http://icedtea.classpath.org/hg/openjdk6-mips?cmd=changeset;node=d3aee0aef6b6
author: YANG Yongqiang <yangyongqiang at loongson.cn>
date: Sun Oct 24 14:32:13 2010 +0000
Avoid anti-dependency when moving long operand between
registers(reg2reg) and enable the safepoint return.
1. Avoid anti-dependency when moving long operand between
registers(reg2reg) 2. Enable the safepoint return. 3. Do some
codes cleaning work.
diffstat:
11 files changed, 1904 insertions(+), 3672 deletions(-)
hotspot/src/cpu/mips/vm/assembler_mips.cpp | 84
hotspot/src/cpu/mips/vm/c1_CodeStubs_mips.cpp | 38
hotspot/src/cpu/mips/vm/c1_LIRAssembler_mips.cpp | 3048 ++++++++++------------
hotspot/src/cpu/mips/vm/c1_Runtime1_mips.cpp | 436 ---
hotspot/src/cpu/mips/vm/sharedRuntime_mips.cpp | 434 ---
hotspot/src/cpu/mips/vm/stubGenerator_mips.cpp | 1483 +---------
hotspot/src/cpu/mips/vm/templateTable_mips.cpp | 20
hotspot/src/share/vm/oops/oop.inline.hpp | 4
hotspot/src/share/vm/runtime/frame.cpp | 2
hotspot/src/share/vm/runtime/reflection.cpp | 4
hotspot/src/share/vm/runtime/sharedRuntime.cpp | 23
diffs (truncated from 7425 to 500 lines):
diff -r 3713353e23db -r d3aee0aef6b6 hotspot/src/cpu/mips/vm/assembler_mips.cpp
--- a/hotspot/src/cpu/mips/vm/assembler_mips.cpp Fri Oct 15 20:37:51 2010 +0000
+++ b/hotspot/src/cpu/mips/vm/assembler_mips.cpp Sun Oct 24 14:32:13 2010 +0000
@@ -2051,44 +2051,11 @@ void MacroAssembler::verify_oop(Register
void MacroAssembler::verify_oop_addr(Address addr, const char* s) {
-/*
- if (!VerifyOops) return;
-
- // Address adjust(addr.base(), addr.index(), addr.scale(), addr.disp() + BytesPerWord);
- // Pass register number to verify_oop_subroutine
- char* b = new char[strlen(s) + 50];
- sprintf(b, "verify_oop_addr: %s", s);
-
- push(rax); // save rax,
- // addr may contain rsp so we will have to adjust it based on the push
- // we just did
- // NOTE: 64bit seemed to have had a bug in that it did movq(addr, rax); which
- // stores rax into addr which is backwards of what was intended.
- if (addr.uses(rsp)) {
- lea(rax, addr);
- pushptr(Address(rax, BytesPerWord));
- } else {
- pushptr(addr);
- }
-
- ExternalAddress buffer((address) b);
- // pass msg argument
- // avoid using pushptr, as it modifies scratch registers
- // and our contract is not to modify anything
- movptr(rax, buffer.addr());
- push(rax);
-
- // call indirectly to solve generation ordering problem
- movptr(rax, ExternalAddress(StubRoutines::verify_oop_subroutine_entry_address()));
- call(rax);
- // Caller pops the arguments and restores rax, from the stack
-*/
if (!VerifyOops) {
nop();
return;
}
// Pass register number to verify_oop_subroutine
- Address adjust(addr.base(),addr.disp()+BytesPerWord);
char* b = new char[strlen(s) + 50];
sprintf(b, "verify_oop_addr: %s", s);
@@ -2099,10 +2066,10 @@ void MacroAssembler::verify_oop_addr(Add
sw(A1, SP, - 5*wordSize);
sw(AT, SP, - 6*wordSize);
sw(T9, SP, - 7*wordSize);
+ lw(A1, addr); // addr may use SP, so load from it before change SP
addiu(SP, SP, - 7 * wordSize);
move(A0, (int)b);
- lw(A1, adjust);
// call indirectly to solve generation ordering problem
move(AT, (int)StubRoutines::verify_oop_subroutine_entry_address());
lw(T9, AT, 0);
@@ -2120,11 +2087,11 @@ void MacroAssembler::verify_oop_addr(Add
// used registers : T5, T6
void MacroAssembler::verify_oop_subroutine() {
- // [sp - 1]: ra
- // [sp + 0]: char* error message A0
- // [sp + 1]: oop object to verify A1
+ // RA: ra
+ // A0: char* error message
+ // A1: oop object to verify
- Label exit, error, error1,error2,error3,error4;
+ Label exit, error;
// increment counter
move(T5, (int)StubRoutines::verify_oop_count_addr());
lw(AT, T5, 0);
@@ -2141,18 +2108,13 @@ void MacroAssembler::verify_oop_subrouti
move(AT, oop_mask);
andr(T5, A1, AT);
move(AT, oop_bits);
- /*
- //jerome_for_debug
bne(T5, AT, error);
delayed()->nop();
- */
+
// make sure klass is 'reasonable'
lw(T5, A1, oopDesc::klass_offset_in_bytes()); // get klass
- /*
- //jerome_for_debug
- beq(T5, ZERO, error1); // if klass is NULL it is broken
+ beq(T5, ZERO, error); // if klass is NULL it is broken
delayed()->nop();
- */
// Check if the klass is in the right area of memory
const int klass_mask = Universe::verify_klass_mask();
const int klass_bits = Universe::verify_klass_bits();
@@ -2160,18 +2122,17 @@ void MacroAssembler::verify_oop_subrouti
move(AT, klass_mask);
andr(T6, T5, AT);
move(AT, klass_bits);
- bne(T6, AT, error2);
+ bne(T6, AT, error);
delayed()->nop();
-
// make sure klass' klass is 'reasonable'
lw(T5, T5, oopDesc::klass_offset_in_bytes()); // get klass' klass
- beq(T5, ZERO, error3); // if klass' klass is NULL it is broken
+ beq(T5, ZERO, error); // if klass' klass is NULL it is broken
delayed()->nop();
move(AT, klass_mask);
andr(T6, T5, AT);
move(AT, klass_bits);
- bne(T6, AT, error4);
+ bne(T6, AT, error);
delayed()->nop(); // if klass not in right area of memory it is broken too.
// return if everything seems ok
@@ -2182,35 +2143,14 @@ void MacroAssembler::verify_oop_subrouti
// handle errors
bind(error);
- lw(AT, ZERO, 16);
- sw(RA, SP, (-1) * wordSize);
- sw(FP, SP, (-2) * wordSize);
- //save_frame(::round_to(sizeof(RegistersForDebugging) / BytesPerWord, 2) + 2);
- //RegistersForDebugging::save_registers(this);
- //move(A1, SP);
- //addi(SP, SP, (-2) * wordSize);
pushad();
- addi(SP, SP, (-3) * wordSize);
+ addi(SP, SP, (-1) * wordSize);
call(CAST_FROM_FN_PTR(address, MacroAssembler::debug), relocInfo::runtime_call_type);
delayed()->nop();
- //addi(SP, SP, 2 * wordSize);
- addiu(SP, SP, 3 * wordSize);
+ addiu(SP, SP, 1 * wordSize);
popad();
- //RegistersForDebugging::restore_registers(this, SP);
- //restore();
- lw(RA, SP, (-1) * wordSize);
- lw(FP, SP, (-2) * wordSize);
jr(RA);
delayed()->nop();
- //jerome_for_debug
- bind(error1);
- stop("error1");
- bind(error2);
- stop("error2");
- bind(error3);
- stop("error3");
- bind(error4);
- stop("error4");
}
void MacroAssembler::verify_tlab(Register t1, Register t2) {
diff -r 3713353e23db -r d3aee0aef6b6 hotspot/src/cpu/mips/vm/c1_CodeStubs_mips.cpp
--- a/hotspot/src/cpu/mips/vm/c1_CodeStubs_mips.cpp Fri Oct 15 20:37:51 2010 +0000
+++ b/hotspot/src/cpu/mips/vm/c1_CodeStubs_mips.cpp Sun Oct 24 14:32:13 2010 +0000
@@ -33,42 +33,6 @@ double ConversionStub::double_zero = 0.0
double ConversionStub::double_zero = 0.0;
void ConversionStub::emit_code(LIR_Assembler* ce) {
- /*
- __ bind(_entry);
- assert(bytecode() == Bytecodes::_f2i || bytecode() == Bytecodes::_d2i, "other conversions do not require stub");
-
-
- if (input()->is_single_xmm()) {
- __ comiss(input()->as_xmm_float_reg(),
- ExternalAddress((address)&float_zero));
- } else if (input()->is_double_xmm()) {
- __ comisd(input()->as_xmm_double_reg(),
- ExternalAddress((address)&double_zero));
- } else {
- LP64_ONLY(ShouldNotReachHere());
- __ push(rax);
- __ ftst();
- __ fnstsw_ax();
- __ sahf();
- __ pop(rax);
- }
-
- Label NaN, do_return;
- __ jccb(Assembler::parity, NaN);
- __ jccb(Assembler::below, do_return);
-
- // input is > 0 -> return maxInt
- // result register already contains 0x80000000, so subtracting 1 gives 0x7fffffff
- __ decrement(result()->as_register());
- __ jmpb(do_return);
-
- // input is NaN -> return 0
- __ bind(NaN);
- __ xorptr(result()->as_register(), result()->as_register());
-
- __ bind(do_return);
- __ jmp(_continuation);
- */
__ bind(_entry);
assert(bytecode() == Bytecodes::_f2i || bytecode() == Bytecodes::_d2i, "other conversions do not require stub");
}
@@ -471,7 +435,6 @@ void ImplicitNullCheckStub::emit_code(LI
void ImplicitNullCheckStub::emit_code(LIR_Assembler* ce) {
ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
__ bind(_entry);
- //__ call(RuntimeAddress(Runtime1::entry_for(Runtime1::throw_null_pointer_exception_id)));
__ call(Runtime1::entry_for(Runtime1::throw_null_pointer_exception_id), relocInfo::runtime_call_type);
__ delayed()->nop();
ce->add_call_info_here(_info);
@@ -488,7 +451,6 @@ void SimpleExceptionStub::emit_code(LIR_
if (_obj->is_cpu_register()) {
ce->store_parameter(_obj->as_register(), 0);
}
- //__ call(RuntimeAddress(Runtime1::entry_for(_stub)));
__ call(Runtime1::entry_for(_stub), relocInfo::runtime_call_type);
__ delayed()->nop();
ce->add_call_info_here(_info);
diff -r 3713353e23db -r d3aee0aef6b6 hotspot/src/cpu/mips/vm/c1_LIRAssembler_mips.cpp
--- a/hotspot/src/cpu/mips/vm/c1_LIRAssembler_mips.cpp Fri Oct 15 20:37:51 2010 +0000
+++ b/hotspot/src/cpu/mips/vm/c1_LIRAssembler_mips.cpp Sun Oct 24 14:32:13 2010 +0000
@@ -53,7 +53,6 @@ static void select_different_registers(R
assert_different_registers(tmp1, tmp2, tmp3, extra);
tmp1 = extra;
} else if (tmp2 == preserve) {
- //////assert_different_registers(tmp1, tmp2, tmp3, extra);
tmp2 = extra;
} else if (tmp3 == preserve) {
assert_different_registers(tmp1, tmp2, tmp3, extra);
@@ -79,7 +78,6 @@ bool LIR_Assembler::is_small_constant(LI
}
//FIXME, which register should be used?
LIR_Opr LIR_Assembler::receiverOpr() {
- //return FrameMap::ecx_oop_opr;
return FrameMap::_t0_oop_opr;
}
@@ -165,7 +163,6 @@ void LIR_Assembler::push(LIR_Opr opr) {
} else {
ShouldNotReachHere();
}
-
} else {
ShouldNotReachHere();
}
@@ -173,7 +170,6 @@ void LIR_Assembler::push(LIR_Opr opr) {
void LIR_Assembler::pop(LIR_Opr opr) {
if (opr->is_single_cpu() ) {
- // __ pop(opr->rinfo().as_register());
__ pop(opr->as_register());
} else {
assert(false, "Must be single word register or floating-point register");
@@ -184,7 +180,6 @@ Address LIR_Assembler::as_Address(LIR_Ad
Address LIR_Assembler::as_Address(LIR_Address* addr) {
Register reg = addr->base()->as_register();
// now we need this for parameter pass
- //assert(reg != SP && reg != FP, "address must be in heap, not stack");
return Address(reg, addr->disp());
}
@@ -244,7 +239,7 @@ void LIR_Assembler::osr_entry() {
Register OSR_buf = osrBufferPointer()->as_register();
- // note: we do osr only if the expression stack at the loop beginning is empty,
+ // note: we do osr only if the expression stack at the loop beginning is empty,
// in which case the spill area is empty too and we don't have to setup
// spilled locals
//
@@ -320,11 +315,8 @@ void LIR_Assembler::monitorexit(LIR_Opr
Address lock_addr = frame_map()->address_for_monitor_lock(monitor_no);
__ lea(lock_reg, lock_addr);
// unlock object
- // MonitorAccessStub* slow_case = new MonitorExitStub(lock_, true, monitor_no);
MonitorAccessStub* slow_case = new MonitorExitStub(lock_opr, true, monitor_no);
- // _slow_case_stubs->append(slow_case);
// temporary fix: must be created after exceptionhandler, therefore as call stub
- //_call_stubs->append(slow_case);
_slow_case_stubs->append(slow_case);
if (UseFastLocking) {
// try inlined fast unlocking first, revert to slow locking if it fails
@@ -368,13 +360,11 @@ void LIR_Assembler::emit_exception_handl
// but since this never gets executed it doesn't really make
// much difference.
//
-// for (int i = 0; i < (NativeCall::instruction_size/4 + 1) ; i++ ) {
- for (int i = 0; i < (NativeCall::instruction_size/2+1) ; i++ ) {
+ for (int i = 0; i < (NativeCall::instruction_size/4 + 1) ; i++ ) {
__ nop();
}
// generate code for exception handler
- //address handler_base = __ start_a_stub(1*K);//by_css
address handler_base = __ start_a_stub(exception_handler_size);
if (handler_base == NULL) {
//no enough space
@@ -390,8 +380,6 @@ void LIR_Assembler::emit_exception_handl
if (compilation()->has_exception_handlers() || JvmtiExport::can_post_exceptions()) {
// the exception oop and pc are in V0 and V1
// no other registers need to be preserved, so invalidate them
-// __ invalidate_registers(false, true, true, false, true, true);
-
// check that there is really an exception
__ verify_not_null_oop(V0);
@@ -405,8 +393,6 @@ void LIR_Assembler::emit_exception_handl
// the exception oop is in V0
// no other registers need to be preserved, so invalidate them
-// __ invalidate_registers(false, true, true, true, true, true);
-
// check that there is really an exception
__ verify_not_null_oop(V0);
@@ -419,19 +405,11 @@ void LIR_Assembler::emit_exception_handl
// unwind activation and forward exception to caller
// V0: exception
- /*if (compilation()->jvmpi_event_method_exit_enabled()) {
- __ jmp(Runtime1::entry_for(Runtime1::jvmpi_unwind_exception_id),
- relocInfo::runtime_call_type);
- } else*/ {
- __ jmp(Runtime1::entry_for(Runtime1::unwind_exception_id),
- relocInfo::runtime_call_type);
- }
+ __ jmp(Runtime1::entry_for(Runtime1::unwind_exception_id),
+ relocInfo::runtime_call_type);
__ delayed()->nop();
__ end_a_stub();
-
-
-
- }
+}
void LIR_Assembler::emit_deopt_handler() {
// if the last instruction is a call (typically to do a throw which
@@ -459,11 +437,6 @@ void LIR_Assembler::emit_deopt_handler()
//FIXE:: may be wrong, Address_Literal
__ lw(AT, __ as_Address(here) );
__ push(AT);
-
- //XXXXX:FIXE need jump
-
-// __ jr(RuntimeAddress(SharedRuntime::deopt_blob()->unpack()));
-
assert(code_offset() - offset <= deopt_handler_size, "overflow");
__ end_a_stub();
@@ -478,12 +451,6 @@ void LIR_Assembler::emit_string_compare(
// get two string object in T0&T1
//receiver already in T0
__ lw(T1, arg1->as_register());
-
- // Get addresses of first characters from both Strings
- {
- // CodeEmitInfo* info = new CodeEmitInfo(scope, 0, NULL);
- // add_debug_info_for_null_check_here(info);
- }
__ lw (T2, T0, java_lang_String::value_offset_in_bytes()); //value, T_CHAR array
__ lw (AT, T0, java_lang_String::offset_offset_in_bytes()); //offset
__ shl(AT, 1);
@@ -491,10 +458,7 @@ void LIR_Assembler::emit_string_compare(
__ addi(T2, T2, arrayOopDesc::base_offset_in_bytes(T_CHAR));
// Now T2 is the address of the first char in first string(T0)
- {
- // CodeEmitInfo* info = new CodeEmitInfo(scope, 0, NULL);
- add_debug_info_for_null_check_here(info);
- }
+ add_debug_info_for_null_check_here(info);
__ lw (T3, T1, java_lang_String::value_offset_in_bytes());
__ lw (AT, T1, java_lang_String::offset_offset_in_bytes());
__ shl(AT, 1);
@@ -537,44 +501,36 @@ void LIR_Assembler::emit_string_compare(
__ subu(V0, T5, T6);
__ bind(LoopEnd);
- //return_op(FrameMap::_v0RInfo, false);
- //FIXME
return_op(FrameMap::_v0_opr);
}
-//void LIR_Assembler::return_op(RInfo result, bool result_is_oop) {
void LIR_Assembler::return_op(LIR_Opr result) {
assert(result->is_illegal() || !result->is_single_cpu() || result->as_register() == V0, "word returns are in V0");
// Pop the stack before the safepoint code
__ leave();
- //FIXME I have no idea it is safe to use A0
- __ lui(A0, Assembler::split_high((intptr_t)os::get_polling_page()
+ __ lui(AT, Assembler::split_high((intptr_t)os::get_polling_page()
+ (SafepointPollOffset % os::vm_page_size())));
__ relocate(relocInfo::poll_return_type);
- __ lw(AT, A0, Assembler::split_low((intptr_t)os::get_polling_page()
+ __ lw(AT, AT, Assembler::split_low((intptr_t)os::get_polling_page()
+ (SafepointPollOffset % os::vm_page_size())));
+
__ jr(RA);
__ delayed()->nop();
}
//read protect mem to ZERO won't cause the exception only in godson-2e, So I modify ZERO to AT . at jerome,11/25,2006
int LIR_Assembler::safepoint_poll(LIR_Opr tmp, CodeEmitInfo* info) {
- if (info != NULL) {
- add_debug_info_for_branch(info);
- }else{
- ShouldNotReachHere();
- }
+ assert(info != NULL, "info must not be null for safepoint poll");
int offset = __ offset();
Register r = tmp->as_register();
__ lui(r, Assembler::split_high((intptr_t)os::get_polling_page()
+ (SafepointPollOffset % os::vm_page_size())));
+ add_debug_info_for_branch(info);
__ relocate(relocInfo::poll_type);
__ lw(AT, r, Assembler::split_low((intptr_t)os::get_polling_page()
+ (SafepointPollOffset % os::vm_page_size())));
-
return offset;
-
}
void LIR_Assembler::move_regs(Register from_reg, Register to_reg) {
@@ -593,161 +549,151 @@ void LIR_Assembler::const2reg(LIR_Opr sr
assert(dest->is_register(), "should not call otherwise");
LIR_Const* c = src->as_constant_ptr();
switch (c->type()) {
- case T_INT:
- {
- jint con = c->as_jint();
- if (dest->is_single_cpu()) {
- assert(patch_code == lir_patch_none, "no patching handled here");
- __ move(dest->as_register(), con);
- } else {
- assert(dest->is_single_fpu(), "wrong register kind");
- __ move(AT, con);
- __ mtc1(AT, dest->as_float_reg());
- }
- }
- break;
-
- case T_LONG:
- {
- jlong con = c->as_jlong();
- jint* conhi = (jint*)&con + 1;
- jint* conlow = (jint*)&con;
-
- if (dest->is_double_cpu()) {
- __ move(dest->as_register_lo(), *conlow);
- __ move(dest->as_register_hi(), *conhi);
- } else {
- // assert(dest->is_double(), "wrong register kind");
- __ move(AT, *conlow);
- __ mtc1(AT, dest->as_double_reg());
- __ move(AT, *conhi);
- __ mtc1(AT, dest->as_double_reg()+1);
- }
- }
- break;
-
- case T_OBJECT:
- {
- if (patch_code == lir_patch_none) {
- if (c->as_jobject() == NULL) {
- NEEDS_CLEANUP
- int oop_index = __ oop_recorder()->allocate_index(c->as_jobject());
- RelocationHolder rspec = oop_Relocation::spec(oop_index);
- __ relocate(rspec);
- __ lui(dest->as_register(), Assembler::split_high((int) c->as_jobject() ));
- __ addiu( dest->as_register() , dest->as_register() , Assembler::split_low((int) c->as_jobject()));
-
-
- //__ move(dest->as_register(), ZERO);
- } else {
- int oop_index = __ oop_recorder()->find_index(c->as_jobject());
- RelocationHolder rspec = oop_Relocation::spec(oop_index);
- __ relocate(rspec);
- __ lui(dest->as_register(), Assembler::split_high((int)c->as_jobject()));
- __ addiu(dest->as_register(), dest->as_register(), Assembler::split_low((int)c->as_jobject()));
- }
- } else {
- jobject2reg_with_patching(dest->as_register(), info);
- }
- }
- break;
-
- case T_FLOAT:
- {
- address const_addr = float_constant(c->as_jfloat());
- assert (const_addr != NULL, "must create float constant in the constant table");
-
- if (dest->is_single_fpu()) {
- __ relocate(relocInfo::internal_pc_type);
- __ lui(AT, Assembler::split_high((int)const_addr));
- __ addiu(AT, AT, Assembler::split_low((int)const_addr));
- __ lwc1(dest->as_float_reg(), AT, 0);
-
More information about the distro-pkg-dev
mailing list