src/hotspot/share/oops/instanceKlass.cpp
changeset 50746 85789fb05154
parent 50735 2f2af62dfac7
child 50752 9d62da00bf15
equal deleted inserted replaced
50745:a390cbb82d47 50746:85789fb05154
  3623 #endif
  3623 #endif
  3624     current = current->next();
  3624     current = current->next();
  3625   }
  3625   }
  3626 }
  3626 }
  3627 
  3627 
  3628 oop InstanceKlass::holder_phantom() const {
       
  3629   return class_loader_data()->holder_phantom();
       
  3630 }
       
  3631 
       
  3632 #ifdef ASSERT
  3628 #ifdef ASSERT
  3633 void InstanceKlass::set_init_state(ClassState state) {
  3629 void InstanceKlass::set_init_state(ClassState state) {
  3634   bool good_state = is_shared() ? (_init_state <= state)
  3630   bool good_state = is_shared() ? (_init_state <= state)
  3635                                                : (_init_state < state);
  3631                                                : (_init_state < state);
  3636   assert(good_state || state == allocated, "illegal state transition");
  3632   assert(good_state || state == allocated, "illegal state transition");