comparison src/cpu/sparc/vm/stubGenerator_sparc.cpp @ 10479:40b8c383bc31

Throw InvalidInstalledCodeException directly in the stubs.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 23 Jun 2013 15:49:01 +0200
parents 291ffc492eb6
children 6b0fd0964b87
comparison
equal deleted inserted replaced
10478:dd3333e4f182 10479:40b8c383bc31
3410 // UseZeroBaseCompressedOops which is defined after heap initialization. 3410 // UseZeroBaseCompressedOops which is defined after heap initialization.
3411 StubRoutines::Sparc::_partial_subtype_check = generate_partial_subtype_check(); 3411 StubRoutines::Sparc::_partial_subtype_check = generate_partial_subtype_check();
3412 // These entry points require SharedInfo::stack0 to be set up in non-core builds 3412 // These entry points require SharedInfo::stack0 to be set up in non-core builds
3413 StubRoutines::_throw_AbstractMethodError_entry = generate_throw_exception("AbstractMethodError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_AbstractMethodError)); 3413 StubRoutines::_throw_AbstractMethodError_entry = generate_throw_exception("AbstractMethodError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_AbstractMethodError));
3414 StubRoutines::_throw_IncompatibleClassChangeError_entry= generate_throw_exception("IncompatibleClassChangeError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_IncompatibleClassChangeError)); 3414 StubRoutines::_throw_IncompatibleClassChangeError_entry= generate_throw_exception("IncompatibleClassChangeError throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_IncompatibleClassChangeError));
3415 StubRoutines::_throw_InvalidInstalledCodeException_entry= generate_throw_exception("InvalidInstalledCodeException throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_InvalidInstalledCodeException));
3415 StubRoutines::_throw_NullPointerException_at_call_entry= generate_throw_exception("NullPointerException at call throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException_at_call)); 3416 StubRoutines::_throw_NullPointerException_at_call_entry= generate_throw_exception("NullPointerException at call throw_exception", CAST_FROM_FN_PTR(address, SharedRuntime::throw_NullPointerException_at_call));
3416 3417
3417 StubRoutines::_handler_for_unsafe_access_entry = 3418 StubRoutines::_handler_for_unsafe_access_entry =
3418 generate_handler_for_unsafe_access(); 3419 generate_handler_for_unsafe_access();
3419 3420