mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
6664627: Merge changes made only in hotspot 11 forward to jdk 7
Reviewed-by: jcoomes
This commit is contained in:
parent
dcbf4ea9ee
commit
5fa349cc42
12 changed files with 101 additions and 112 deletions
|
@ -84,6 +84,7 @@ class StubRoutines: AllStatic {
|
|||
static address _forward_exception_entry;
|
||||
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;
|
||||
|
@ -184,6 +185,7 @@ class StubRoutines: AllStatic {
|
|||
static address forward_exception_entry() { return _forward_exception_entry; }
|
||||
// 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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue