comparison src/share/vm/oops/constantPool.cpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents 084b21cd0228
children cefad50507d8 b4a4fdc1f464
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
1916 } 1916 }
1917 if (pool_holder() != NULL) { 1917 if (pool_holder() != NULL) {
1918 st->print_cr(" - holder: " INTPTR_FORMAT, pool_holder()); 1918 st->print_cr(" - holder: " INTPTR_FORMAT, pool_holder());
1919 } 1919 }
1920 st->print_cr(" - cache: " INTPTR_FORMAT, cache()); 1920 st->print_cr(" - cache: " INTPTR_FORMAT, cache());
1921 st->print_cr(" - resolved_references: " INTPTR_FORMAT, resolved_references()); 1921 st->print_cr(" - resolved_references: " INTPTR_FORMAT, (void *)resolved_references());
1922 st->print_cr(" - reference_map: " INTPTR_FORMAT, reference_map()); 1922 st->print_cr(" - reference_map: " INTPTR_FORMAT, reference_map());
1923 1923
1924 for (int index = 1; index < length(); index++) { // Index 0 is unused 1924 for (int index = 1; index < length(); index++) { // Index 0 is unused
1925 ((ConstantPool*)this)->print_entry_on(index, st); 1925 ((ConstantPool*)this)->print_entry_on(index, st);
1926 switch (tag_at(index).value()) { 1926 switch (tag_at(index).value()) {