hotspot/src/share/vm/oops/klass.hpp
changeset 18439 725ce18186b3
parent 17826 9ad5cd464a75
child 18687 5a0543c157c9
equal deleted inserted replaced
18438:9ea6bbfe0b83 18439:725ce18186b3
   701   virtual void oop_print_on      (oop obj, outputStream* st);
   701   virtual void oop_print_on      (oop obj, outputStream* st);
   702 
   702 
   703   virtual const char* internal_name() const = 0;
   703   virtual const char* internal_name() const = 0;
   704 
   704 
   705   // Verification
   705   // Verification
   706   virtual void verify_on(outputStream* st);
   706   virtual void verify_on(outputStream* st, bool check_dictionary);
   707   void verify() { verify_on(tty); }
   707   void verify(bool check_dictionary = true) { verify_on(tty, check_dictionary); }
   708 
   708 
   709 #ifndef PRODUCT
   709 #ifndef PRODUCT
   710   void verify_vtable_index(int index);
   710   void verify_vtable_index(int index);
   711 #endif
   711 #endif
   712 
   712