comparison src/share/vm/code/dependencies.cpp @ 6740:75f33eecc1b3

7196681: NPG: Some JSR 292 tests crash in Windows exception handler Summary: There was a rogue os::breakpoint() call in log_dependency left over from the jsr292 merge. Also changed verify_oop() calls for metadata to verify_{method,klass}_ptr. Reviewed-by: kvn, twisti
author coleenp
date Tue, 11 Sep 2012 20:20:38 -0400
parents da91efe96a93
children 9a9b6e05ffb4
comparison
equal deleted inserted replaced
6739:8a02ca5e5576 6740:75f33eecc1b3
565 } 565 }
566 } 566 }
567 567
568 void Dependencies::DepStream::log_dependency(Klass* witness) { 568 void Dependencies::DepStream::log_dependency(Klass* witness) {
569 if (_deps == NULL && xtty == NULL) return; // fast cutout for runtime 569 if (_deps == NULL && xtty == NULL) return; // fast cutout for runtime
570 if (type() == call_site_target_value) {
571 os::breakpoint();
572 }
573 int nargs = argument_count(); 570 int nargs = argument_count();
574 DepArgument args[max_arg_count]; 571 DepArgument args[max_arg_count];
575 for (int j = 0; j < nargs; j++) { 572 for (int j = 0; j < nargs; j++) {
576 if (type() == call_site_target_value) { 573 if (type() == call_site_target_value) {
577 args[j] = argument_oop(j); 574 args[j] = argument_oop(j);