src/hotspot/share/classfile/dictionary.cpp
changeset 51523 73523d329966
parent 51334 cc2c79d22508
child 51530 1f0b605bdc28
equal deleted inserted replaced
51522:b426c75da4b9 51523:73523d329966
   590 
   590 
   591 void Dictionary::print_on(outputStream* st) const {
   591 void Dictionary::print_on(outputStream* st) const {
   592   ResourceMark rm;
   592   ResourceMark rm;
   593 
   593 
   594   assert(loader_data() != NULL, "loader data should not be null");
   594   assert(loader_data() != NULL, "loader data should not be null");
   595   st->print_cr("Java dictionary (table_size=%d, classes=%d)",
   595   st->print_cr("Java dictionary (table_size=%d, classes=%d, resizable=%s)",
   596                table_size(), number_of_entries());
   596                table_size(), number_of_entries(), BOOL_TO_STR(_resizable));
   597   st->print_cr("^ indicates that initiating loader is different from defining loader");
   597   st->print_cr("^ indicates that initiating loader is different from defining loader");
   598 
   598 
   599   for (int index = 0; index < table_size(); index++) {
   599   for (int index = 0; index < table_size(); index++) {
   600     for (DictionaryEntry* probe = bucket(index);
   600     for (DictionaryEntry* probe = bucket(index);
   601                           probe != NULL;
   601                           probe != NULL;