mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
7088020: SEGV in JNIHandleBlock::release_block
Reviewed-by: kvn, twisti
This commit is contained in:
parent
92b2b44b18
commit
1ebca30d26
8 changed files with 104 additions and 67 deletions
|
@ -128,8 +128,6 @@ class StubRoutines: AllStatic {
|
|||
static address _catch_exception_entry;
|
||||
static address _throw_AbstractMethodError_entry;
|
||||
static address _throw_IncompatibleClassChangeError_entry;
|
||||
static address _throw_ArithmeticException_entry;
|
||||
static address _throw_NullPointerException_entry;
|
||||
static address _throw_NullPointerException_at_call_entry;
|
||||
static address _throw_StackOverflowError_entry;
|
||||
static address _throw_WrongMethodTypeException_entry;
|
||||
|
@ -254,8 +252,6 @@ class StubRoutines: AllStatic {
|
|||
// Implicit exceptions
|
||||
static address throw_AbstractMethodError_entry() { return _throw_AbstractMethodError_entry; }
|
||||
static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; }
|
||||
static address throw_ArithmeticException_entry() { return _throw_ArithmeticException_entry; }
|
||||
static address throw_NullPointerException_entry() { return _throw_NullPointerException_entry; }
|
||||
static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; }
|
||||
static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; }
|
||||
static address throw_WrongMethodTypeException_entry() { return _throw_WrongMethodTypeException_entry; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue