src/hotspot/share/code/compiledMethod.cpp
changeset 48557 2e867226b914
parent 48007 ab3959df2115
child 48955 e22914003cf0
equal deleted inserted replaced
48556:d44d912ea9bb 48557:2e867226b914
   402   if (ic->is_icholder_call()) {
   402   if (ic->is_icholder_call()) {
   403     // The only exception is compiledICHolder oops which may
   403     // The only exception is compiledICHolder oops which may
   404     // yet be marked below. (We check this further below).
   404     // yet be marked below. (We check this further below).
   405     CompiledICHolder* cichk_oop = ic->cached_icholder();
   405     CompiledICHolder* cichk_oop = ic->cached_icholder();
   406 
   406 
   407     if (cichk_oop->holder_method()->method_holder()->is_loader_alive(is_alive) &&
   407     if (cichk_oop->is_loader_alive(is_alive)) {
   408         cichk_oop->holder_klass()->is_loader_alive(is_alive)) {
       
   409       return;
   408       return;
   410     }
   409     }
   411   } else {
   410   } else {
   412     Metadata* ic_oop = ic->cached_metadata();
   411     Metadata* ic_oop = ic->cached_metadata();
   413     if (ic_oop != NULL) {
   412     if (ic_oop != NULL) {