comparison src/share/vm/runtime/sharedRuntime.cpp @ 14957:4062efea018b

Remove compiled method call intrinsic.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 03 Apr 2014 17:47:29 +0200
parents 954c9df6ac79
children 05397227b8d4
comparison
equal deleted inserted replaced
14953:5a87cbdd8a09 14957:4062efea018b
748 JRT_END 748 JRT_END
749 749
750 JRT_ENTRY(void, SharedRuntime::throw_IncompatibleClassChangeError(JavaThread* thread)) 750 JRT_ENTRY(void, SharedRuntime::throw_IncompatibleClassChangeError(JavaThread* thread))
751 // These errors occur only at call sites 751 // These errors occur only at call sites
752 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError(), "vtable stub"); 752 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_IncompatibleClassChangeError(), "vtable stub");
753 JRT_END
754
755 JRT_ENTRY(void, SharedRuntime::throw_InvalidInstalledCodeException(JavaThread* thread))
756 // These errors occur only at call sites
757 throw_and_post_jvmti_exception(thread, vmSymbols::com_oracle_graal_api_code_InvalidInstalledCodeException());
758 JRT_END 753 JRT_END
759 754
760 JRT_ENTRY(void, SharedRuntime::throw_ArithmeticException(JavaThread* thread)) 755 JRT_ENTRY(void, SharedRuntime::throw_ArithmeticException(JavaThread* thread))
761 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero"); 756 throw_and_post_jvmti_exception(thread, vmSymbols::java_lang_ArithmeticException(), "/ by zero");
762 JRT_END 757 JRT_END