@@ -821,24 +821,17 @@ void InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code byte
821
821
CallInfo info;
822
822
constantPoolHandle pool (thread, last_frame.method ()->constants ());
823
823
824
+ methodHandle resolved_method;
825
+
824
826
{
825
827
JvmtiHideSingleStepping jhss (thread);
826
828
LinkResolver::resolve_invoke (info, receiver, pool,
827
829
last_frame.get_index_u2_cpcache (bytecode), bytecode,
828
830
CHECK);
829
- if (JvmtiExport::can_hotswap_or_post_breakpoint ()) {
830
- int retry_count = 0 ;
831
- while (info.resolved_method ()->is_old ()) {
832
- // It is very unlikely that method is redefined more than 100 times
833
- // in the middle of resolve. If it is looping here more than 100 times
834
- // means then there could be a bug here.
835
- guarantee ((retry_count++ < 100 ),
836
- " Could not resolve to latest version of redefined method" );
837
- // method is redefined in the middle of resolve so re-try.
838
- LinkResolver::resolve_invoke (info, receiver, pool,
839
- last_frame.get_index_u2_cpcache (bytecode), bytecode,
840
- CHECK);
841
- }
831
+ if (JvmtiExport::can_hotswap_or_post_breakpoint () && info.resolved_method ()->is_old ()) {
832
+ resolved_method = methodHandle (THREAD, info.resolved_method ()->get_new_method ());
833
+ } else {
834
+ resolved_method = methodHandle (THREAD, info.resolved_method ());
842
835
}
843
836
} // end JvmtiHideSingleStepping
844
837
@@ -848,22 +841,20 @@ void InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code byte
848
841
849
842
#ifdef ASSERT
850
843
if (bytecode == Bytecodes::_invokeinterface) {
851
- if (info.resolved_method ()->method_holder () ==
852
- SystemDictionary::Object_klass ()) {
844
+ if (resolved_method->method_holder () == SystemDictionary::Object_klass ()) {
853
845
// NOTE: THIS IS A FIX FOR A CORNER CASE in the JVM spec
854
846
// (see also CallInfo::set_interface for details)
855
847
assert (info.call_kind () == CallInfo::vtable_call ||
856
848
info.call_kind () == CallInfo::direct_call, " " );
857
- Method* rm = info.resolved_method ();
858
- assert (rm->is_final () || info.has_vtable_index (),
849
+ assert (resolved_method->is_final () || info.has_vtable_index (),
859
850
" should have been set already" );
860
- } else if (!info. resolved_method () ->has_itable_index ()) {
851
+ } else if (!resolved_method->has_itable_index ()) {
861
852
// Resolved something like CharSequence.toString. Use vtable not itable.
862
853
assert (info.call_kind () != CallInfo::itable_call, " " );
863
854
} else {
864
855
// Setup itable entry
865
856
assert (info.call_kind () == CallInfo::itable_call, " " );
866
- int index = info. resolved_method () ->itable_index ();
857
+ int index = resolved_method->itable_index ();
867
858
assert (info.itable_index () == index , " " );
868
859
}
869
860
} else if (bytecode == Bytecodes::_invokespecial) {
@@ -878,7 +869,6 @@ void InterpreterRuntime::resolve_invoke(JavaThread* thread, Bytecodes::Code byte
878
869
// methods must be checked for every call.
879
870
InstanceKlass* sender = pool->pool_holder ();
880
871
sender = sender->is_unsafe_anonymous () ? sender->unsafe_anonymous_host () : sender;
881
- methodHandle resolved_method (THREAD, info.resolved_method ());
882
872
883
873
switch (info.call_kind ()) {
884
874
case CallInfo::direct_call:
1 commit comments
openjdk-notifier[bot] commentedon Dec 9, 2020
Review
Issues