< prev index next >
src/hotspot/share/classfile/dictionary.cpp
Print this page
*** 590,601 ****
void Dictionary::print_on(outputStream* st) const {
ResourceMark rm;
assert(loader_data() != NULL, "loader data should not be null");
! st->print_cr("Java dictionary (table_size=%d, classes=%d)",
! table_size(), number_of_entries());
st->print_cr("^ indicates that initiating loader is different from defining loader");
for (int index = 0; index < table_size(); index++) {
for (DictionaryEntry* probe = bucket(index);
probe != NULL;
--- 590,601 ----
void Dictionary::print_on(outputStream* st) const {
ResourceMark rm;
assert(loader_data() != NULL, "loader data should not be null");
! st->print_cr("Java dictionary (table_size=%d, classes=%d, resizable=%s)",
! table_size(), number_of_entries(), BOOL_TO_STR(_resizable));
st->print_cr("^ indicates that initiating loader is different from defining loader");
for (int index = 0; index < table_size(); index++) {
for (DictionaryEntry* probe = bucket(index);
probe != NULL;
< prev index next >