hotspot/src/share/vm/runtime/sharedRuntime.cpp
changeset 13396 1b2b5f740ee0
parent 13391 30245956af37
child 13728 882756847a04
equal deleted inserted replaced
13395:edf37d840190 13396:1b2b5f740ee0
   872 {
   872 {
   873   THROW(vmSymbols::java_lang_UnsatisfiedLinkError());
   873   THROW(vmSymbols::java_lang_UnsatisfiedLinkError());
   874 }
   874 }
   875 JNI_END
   875 JNI_END
   876 
   876 
       
   877 JNI_ENTRY(void, throw_unsupported_operation_exception(JNIEnv* env, ...))
       
   878 {
       
   879   THROW(vmSymbols::java_lang_UnsupportedOperationException());
       
   880 }
       
   881 JNI_END
   877 
   882 
   878 address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
   883 address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
   879   return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
   884   return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
       
   885 }
       
   886 
       
   887 address SharedRuntime::native_method_throw_unsupported_operation_exception_entry() {
       
   888   return CAST_FROM_FN_PTR(address, &throw_unsupported_operation_exception);
   880 }
   889 }
   881 
   890 
   882 
   891 
   883 #ifndef PRODUCT
   892 #ifndef PRODUCT
   884 JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
   893 JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))