comparison src/share/vm/interpreter/linkResolver.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 b2e698d2276c
children 36b97be47bde
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
1382 &resolved_appendix, 1382 &resolved_appendix,
1383 &resolved_method_type, 1383 &resolved_method_type,
1384 THREAD); 1384 THREAD);
1385 if (HAS_PENDING_EXCEPTION) { 1385 if (HAS_PENDING_EXCEPTION) {
1386 if (TraceMethodHandles) { 1386 if (TraceMethodHandles) {
1387 tty->print_cr("invokedynamic throws BSME for "INTPTR_FORMAT, PENDING_EXCEPTION); 1387 tty->print_cr("invokedynamic throws BSME for "INTPTR_FORMAT, (void *)PENDING_EXCEPTION);
1388 PENDING_EXCEPTION->print(); 1388 PENDING_EXCEPTION->print();
1389 } 1389 }
1390 if (PENDING_EXCEPTION->is_a(SystemDictionary::BootstrapMethodError_klass())) { 1390 if (PENDING_EXCEPTION->is_a(SystemDictionary::BootstrapMethodError_klass())) {
1391 // throw these guys, since they are already wrapped 1391 // throw these guys, since they are already wrapped
1392 return; 1392 return;