hotspot/src/share/vm/runtime/reflection.cpp
changeset 31019 d05fcdd70109
parent 29081 c61eb4914428
child 31615 e48d94b97b6c
equal deleted inserted replaced
30886:d2a0ec86d6ef 31019:d05fcdd70109
   829   assert(!method.is_null() , "method should not be null");
   829   assert(!method.is_null() , "method should not be null");
   830 
   830 
   831   CallInfo info;
   831   CallInfo info;
   832   Symbol*  signature  = method->signature();
   832   Symbol*  signature  = method->signature();
   833   Symbol*  name       = method->name();
   833   Symbol*  name       = method->name();
   834   LinkResolver::resolve_interface_call(info, receiver, recv_klass, klass,
   834   LinkResolver::resolve_interface_call(info, receiver, recv_klass,
   835                                        name, signature,
   835                                        LinkInfo(klass, name, signature, KlassHandle(), false),
   836                                        KlassHandle(), false, true,
   836                                        true,
   837                                        CHECK_(methodHandle()));
   837                                        CHECK_(methodHandle()));
   838   return info.selected_method();
   838   return info.selected_method();
   839 }
   839 }
   840 
   840 
   841 
   841