comparison src/share/vm/classfile/symbolTable.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 63147986a428
children a5ac0873476c
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
838 oop str2 = e_ptr2->literal(); 838 oop str2 = e_ptr2->literal();
839 839
840 if (str1 == str2) { 840 if (str1 == str2) {
841 tty->print_cr("ERROR: identical oop values (0x" PTR_FORMAT ") " 841 tty->print_cr("ERROR: identical oop values (0x" PTR_FORMAT ") "
842 "in entry @ bucket[%d][%d] and entry @ bucket[%d][%d]", 842 "in entry @ bucket[%d][%d] and entry @ bucket[%d][%d]",
843 str1, bkt1, e_cnt1, bkt2, e_cnt2); 843 (void *)str1, bkt1, e_cnt1, bkt2, e_cnt2);
844 return _verify_fail_continue; 844 return _verify_fail_continue;
845 } 845 }
846 846
847 if (java_lang_String::equals(str1, str2)) { 847 if (java_lang_String::equals(str1, str2)) {
848 tty->print_cr("ERROR: identical String values in entry @ " 848 tty->print_cr("ERROR: identical String values in entry @ "