comparison src/share/vm/runtime/sharedRuntime.cpp @ 6271:93c71eb28866

7188911: nightly failures after JSR 292 lazy method handle update (round 2) Reviewed-by: kvn, jrose
author twisti
date Tue, 07 Aug 2012 14:32:08 -0700
parents 1d7922586cf6
children 957c266d8bc5 da91efe96a93
comparison
equal deleted inserted replaced
6270:b72784e722ff 6271:93c71eb28866
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))