Commit 238c51e authored and committed Jun 16, 2023
1 parent 8c9b85a commit 238c51e Copy full SHA for 238c51e
File tree 3 files changed +3
-9
lines changed
3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -1318,13 +1318,7 @@ void ciEnv::record_best_dyno_loc(const InstanceKlass* ik) {
1318
1318
return ;
1319
1319
}
1320
1320
const char *loc0;
1321
- if (dyno_loc (ik, loc0)) {
1322
- // TODO: found multiple references, see if we can improve
1323
- if (Verbose) {
1324
- tty->print_cr (" existing call site @ %s for %s" ,
1325
- loc0, ik->external_name ());
1326
- }
1327
- } else {
1321
+ if (!dyno_loc (ik, loc0)) {
1328
1322
set_dyno_loc (ik);
1329
1323
}
1330
1324
}
Original file line number Diff line number Diff line change @@ -1931,7 +1931,7 @@ void Compile::process_for_unstable_if_traps(PhaseIterGVN& igvn) {
1931
1931
if (!live_locals.at (i) && !local->is_top () && local != lhs && local!= rhs) {
1932
1932
uint idx = jvms->locoff () + i;
1933
1933
#ifdef ASSERT
1934
- if (Verbose) {
1934
+ if (PrintOpto && Verbose) {
1935
1935
tty->print (" [unstable_if] kill local#%d: " , idx);
1936
1936
local->dump ();
1937
1937
tty->cr ();
Original file line number Diff line number Diff line change @@ -854,7 +854,7 @@ void Parse::catch_call_exceptions(ciExceptionHandlerStream& handlers) {
854
854
#ifndef PRODUCT
855
855
// We do not expect the same handler bci to take both cold unloaded
856
856
// and hot loaded exceptions. But, watch for it.
857
- if ((Verbose || WizardMode) && extype->is_loaded ()) {
857
+ if (PrintOpto && (Verbose || WizardMode) && extype->is_loaded ()) {
858
858
tty->print (" Warning: Handler @%d takes mixed loaded/unloaded exceptions in " , bci ());
859
859
method ()->print_name (); tty->cr ();
860
860
} else if (PrintOpto && (Verbose || WizardMode)) {
You can’t perform that action at this time.
0 commit comments