hotspot/src/share/vm/interpreter/interpreterRuntime.cpp
changeset 35913 928548a43408
parent 35606 d873b64009cc
parent 35901 f5028c67e7cb
child 36392 f2f1892bfa98
equal deleted inserted replaced
35607:d73b0b6a24e6 35913:928548a43408
   761   // check if link resolution caused cpCache to be updated
   761   // check if link resolution caused cpCache to be updated
   762   ConstantPoolCacheEntry* cp_cache_entry = cache_entry(thread);
   762   ConstantPoolCacheEntry* cp_cache_entry = cache_entry(thread);
   763   if (cp_cache_entry->is_resolved(bytecode)) return;
   763   if (cp_cache_entry->is_resolved(bytecode)) return;
   764 
   764 
   765   if (bytecode == Bytecodes::_invokeinterface) {
   765   if (bytecode == Bytecodes::_invokeinterface) {
   766     if (develop_log_is_enabled(Trace, itables)) {
   766     if (log_develop_is_enabled(Trace, itables)) {
   767       ResourceMark rm(thread);
   767       ResourceMark rm(thread);
   768       log_develop_trace(itables)("Resolving: klass: %s to method: %s",
   768       log_develop_trace(itables)("Resolving: klass: %s to method: %s",
   769                                  info.resolved_klass()->name()->as_C_string(),
   769                                  info.resolved_klass()->name()->as_C_string(),
   770                                  info.resolved_method()->name()->as_C_string());
   770                                  info.resolved_method()->name()->as_C_string());
   771     }
   771     }