comparison src/share/vm/runtime/stubRoutines.hpp @ 14957:4062efea018b

Remove compiled method call intrinsic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 03 Apr 2014 17:47:29 +0200
parents 4ca6dc0799b6
children 52b4284cb496
comparison
equal deleted inserted replaced
14953:5a87cbdd8a09 14957:4062efea018b
126 static address _call_stub_entry; 126 static address _call_stub_entry;
127 static address _forward_exception_entry; 127 static address _forward_exception_entry;
128 static address _catch_exception_entry; 128 static address _catch_exception_entry;
129 static address _throw_AbstractMethodError_entry; 129 static address _throw_AbstractMethodError_entry;
130 static address _throw_IncompatibleClassChangeError_entry; 130 static address _throw_IncompatibleClassChangeError_entry;
131 static address _throw_InvalidInstalledCodeException_entry;
132 static address _throw_NullPointerException_at_call_entry; 131 static address _throw_NullPointerException_at_call_entry;
133 static address _throw_StackOverflowError_entry; 132 static address _throw_StackOverflowError_entry;
134 static address _handler_for_unsafe_access_entry; 133 static address _handler_for_unsafe_access_entry;
135 134
136 static address _atomic_xchg_entry; 135 static address _atomic_xchg_entry;
271 // Exceptions 270 // Exceptions
272 static address forward_exception_entry() { return _forward_exception_entry; } 271 static address forward_exception_entry() { return _forward_exception_entry; }
273 // Implicit exceptions 272 // Implicit exceptions
274 static address throw_AbstractMethodError_entry() { return _throw_AbstractMethodError_entry; } 273 static address throw_AbstractMethodError_entry() { return _throw_AbstractMethodError_entry; }
275 static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; } 274 static address throw_IncompatibleClassChangeError_entry(){ return _throw_IncompatibleClassChangeError_entry; }
276 static address throw_InvalidInstalledCodeException_entry(){ return _throw_InvalidInstalledCodeException_entry; }
277 static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; } 275 static address throw_NullPointerException_at_call_entry(){ return _throw_NullPointerException_at_call_entry; }
278 static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; } 276 static address throw_StackOverflowError_entry() { return _throw_StackOverflowError_entry; }
279 277
280 // Exceptions during unsafe access - should throw Java exception rather 278 // Exceptions during unsafe access - should throw Java exception rather
281 // than crash. 279 // than crash.