mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
7188911: nightly failures after JSR 292 lazy method handle update (round 2)
Reviewed-by: kvn, jrose
This commit is contained in:
parent
e409ee94ae
commit
e622fcdc27
11 changed files with 147 additions and 109 deletions
|
@ -874,11 +874,20 @@ JNI_ENTRY(void, throw_unsatisfied_link_error(JNIEnv* env, ...))
|
|||
}
|
||||
JNI_END
|
||||
|
||||
JNI_ENTRY(void, throw_unsupported_operation_exception(JNIEnv* env, ...))
|
||||
{
|
||||
THROW(vmSymbols::java_lang_UnsupportedOperationException());
|
||||
}
|
||||
JNI_END
|
||||
|
||||
address SharedRuntime::native_method_throw_unsatisfied_link_error_entry() {
|
||||
return CAST_FROM_FN_PTR(address, &throw_unsatisfied_link_error);
|
||||
}
|
||||
|
||||
address SharedRuntime::native_method_throw_unsupported_operation_exception_entry() {
|
||||
return CAST_FROM_FN_PTR(address, &throw_unsupported_operation_exception);
|
||||
}
|
||||
|
||||
|
||||
#ifndef PRODUCT
|
||||
JRT_ENTRY(intptr_t, SharedRuntime::trace_bytecode(JavaThread* thread, intptr_t preserve_this_value, intptr_t tos, intptr_t tos2))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue