mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2026-01-08 09:31:42 +01:00
8293069: Make -XX:+Verbose less verbose
Reviewed-by: thartmann, chagedorn
This commit is contained in:
committed by
Roberto Castañeda Lozano
parent
8c9b85a990
commit
238c51e621
@@ -1318,13 +1318,7 @@ void ciEnv::record_best_dyno_loc(const InstanceKlass* ik) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const char *loc0;
|
const char *loc0;
|
||||||
if (dyno_loc(ik, loc0)) {
|
if (!dyno_loc(ik, loc0)) {
|
||||||
// TODO: found multiple references, see if we can improve
|
|
||||||
if (Verbose) {
|
|
||||||
tty->print_cr("existing call site @ %s for %s",
|
|
||||||
loc0, ik->external_name());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
set_dyno_loc(ik);
|
set_dyno_loc(ik);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1931,7 +1931,7 @@ void Compile::process_for_unstable_if_traps(PhaseIterGVN& igvn) {
|
|||||||
if (!live_locals.at(i) && !local->is_top() && local != lhs && local!= rhs) {
|
if (!live_locals.at(i) && !local->is_top() && local != lhs && local!= rhs) {
|
||||||
uint idx = jvms->locoff() + i;
|
uint idx = jvms->locoff() + i;
|
||||||
#ifdef ASSERT
|
#ifdef ASSERT
|
||||||
if (Verbose) {
|
if (PrintOpto && Verbose) {
|
||||||
tty->print("[unstable_if] kill local#%d: ", idx);
|
tty->print("[unstable_if] kill local#%d: ", idx);
|
||||||
local->dump();
|
local->dump();
|
||||||
tty->cr();
|
tty->cr();
|
||||||
|
|||||||
@@ -854,7 +854,7 @@ void Parse::catch_call_exceptions(ciExceptionHandlerStream& handlers) {
|
|||||||
#ifndef PRODUCT
|
#ifndef PRODUCT
|
||||||
// We do not expect the same handler bci to take both cold unloaded
|
// We do not expect the same handler bci to take both cold unloaded
|
||||||
// and hot loaded exceptions. But, watch for it.
|
// and hot loaded exceptions. But, watch for it.
|
||||||
if ((Verbose || WizardMode) && extype->is_loaded()) {
|
if (PrintOpto && (Verbose || WizardMode) && extype->is_loaded()) {
|
||||||
tty->print("Warning: Handler @%d takes mixed loaded/unloaded exceptions in ", bci());
|
tty->print("Warning: Handler @%d takes mixed loaded/unloaded exceptions in ", bci());
|
||||||
method()->print_name(); tty->cr();
|
method()->print_name(); tty->cr();
|
||||||
} else if (PrintOpto && (Verbose || WizardMode)) {
|
} else if (PrintOpto && (Verbose || WizardMode)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user