comparison src/share/vm/runtime/stubRoutines.hpp @ 3451:38fa55e5e792

7055355: JSR 292: crash while throwing WrongMethodTypeException Reviewed-by: jrose, twisti, bdelsart
author never
date Thu, 16 Jun 2011 13:46:55 -0700
parents 13bc79b5c9c8
children baf763f388e6
comparison
equal deleted inserted replaced
3450:3275a6560cf7 3451:38fa55e5e792
130 static address _throw_IncompatibleClassChangeError_entry; 130 static address _throw_IncompatibleClassChangeError_entry;
131 static address _throw_ArithmeticException_entry; 131 static address _throw_ArithmeticException_entry;
132 static address _throw_NullPointerException_entry; 132 static address _throw_NullPointerException_entry;
133 static address _throw_NullPointerException_at_call_entry; 133 static address _throw_NullPointerException_at_call_entry;
134 static address _throw_StackOverflowError_entry; 134 static address _throw_StackOverflowError_entry;
135 static address _throw_WrongMethodTypeException_entry;
135 static address _handler_for_unsafe_access_entry; 136 static address _handler_for_unsafe_access_entry;
136 137
137 static address _atomic_xchg_entry; 138 static address _atomic_xchg_entry;
138 static address _atomic_xchg_ptr_entry; 139 static address _atomic_xchg_ptr_entry;
139 static address _atomic_store_entry; 140 static address _atomic_store_entry;
252 static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; } 253 static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; }
253 static address throw_ArithmeticException_entry() { return _throw_ArithmeticException_entry; } 254 static address throw_ArithmeticException_entry() { return _throw_ArithmeticException_entry; }
254 static address throw_NullPointerException_entry() { return _throw_NullPointerException_entry; } 255 static address throw_NullPointerException_entry() { return _throw_NullPointerException_entry; }
255 static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; } 256 static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; }
256 static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; } 257 static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; }
258 static address throw_WrongMethodTypeException_entry() { return _throw_WrongMethodTypeException_entry; }
257 259
258 // Exceptions during unsafe access - should throw Java exception rather 260 // Exceptions during unsafe access - should throw Java exception rather
259 // than crash. 261 // than crash.
260 static address handler_for_unsafe_access() { return _handler_for_unsafe_access_entry; } 262 static address handler_for_unsafe_access() { return _handler_for_unsafe_access_entry; }
261 263