--- old/src/share/vm/classfile/protectionDomainCache.cpp 2017-07-21 13:43:18.169937632 -0400 +++ new/src/share/vm/classfile/protectionDomainCache.cpp 2017-07-21 13:43:17.941982725 -0400 @@ -85,14 +85,14 @@ for (ProtectionDomainCacheEntry* probe = bucket(index); probe != NULL; probe = probe->next()) { + tty->print("%4d: ", index); probe->print(); } } } void ProtectionDomainCacheEntry::print() { - tty->print_cr("entry " PTR_FORMAT " value " PTR_FORMAT " next " PTR_FORMAT, - p2i(this), p2i(literal()), p2i(next())); + tty->print_cr("protection_domain: " PTR_FORMAT, p2i(literal())); } #endif