mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-07 13:38:49 +00:00
8005672: Clean up some changes to GC logging with GCCause's
Reviewed-by: johnc, ysr
This commit is contained in:
parent
cca092892b
commit
7fb60025ee
@ -827,10 +827,10 @@ void ConcurrentMarkSweepGeneration::printOccupancy(const char *s) {
|
||||
GenCollectedHeap* gch = GenCollectedHeap::heap();
|
||||
if (PrintGCDetails) {
|
||||
if (Verbose) {
|
||||
gclog_or_tty->print(" [%d %s-%s: "SIZE_FORMAT"("SIZE_FORMAT")]",
|
||||
gclog_or_tty->print("[%d %s-%s: "SIZE_FORMAT"("SIZE_FORMAT")]",
|
||||
level(), short_name(), s, used(), capacity());
|
||||
} else {
|
||||
gclog_or_tty->print(" [%d %s-%s: "SIZE_FORMAT"K("SIZE_FORMAT"K)]",
|
||||
gclog_or_tty->print("[%d %s-%s: "SIZE_FORMAT"K("SIZE_FORMAT"K)]",
|
||||
level(), short_name(), s, used() / K, capacity() / K);
|
||||
}
|
||||
}
|
||||
|
||||
@ -3668,7 +3668,7 @@ void G1CollectedHeap::log_gc_header() {
|
||||
gclog_or_tty->stamp(PrintGCTimeStamps);
|
||||
|
||||
GCCauseString gc_cause_str = GCCauseString("GC pause", gc_cause())
|
||||
.append(g1_policy()->gcs_are_young() ? " (young)" : " (mixed)")
|
||||
.append(g1_policy()->gcs_are_young() ? "(young)" : "(mixed)")
|
||||
.append(g1_policy()->during_initial_mark_pause() ? " (initial-mark)" : "");
|
||||
|
||||
gclog_or_tty->print("[%s", (const char*)gc_cause_str);
|
||||
|
||||
@ -808,8 +808,9 @@ void PSYoungGen::print_on(outputStream* st) const {
|
||||
st->print(" to "); to_space()->print_on(st);
|
||||
}
|
||||
|
||||
// Note that a space is not printed before the [NAME:
|
||||
void PSYoungGen::print_used_change(size_t prev_used) const {
|
||||
gclog_or_tty->print(" [%s:", name());
|
||||
gclog_or_tty->print("[%s:", name());
|
||||
gclog_or_tty->print(" " SIZE_FORMAT "K"
|
||||
"->" SIZE_FORMAT "K"
|
||||
"(" SIZE_FORMAT "K)",
|
||||
|
||||
@ -99,9 +99,9 @@ class GCCauseString : StackObj {
|
||||
public:
|
||||
GCCauseString(const char* prefix, GCCause::Cause cause) {
|
||||
if (PrintGCCause) {
|
||||
_position = jio_snprintf(_buffer, _length, "%s (%s)", prefix, GCCause::to_string(cause));
|
||||
_position = jio_snprintf(_buffer, _length, "%s (%s) ", prefix, GCCause::to_string(cause));
|
||||
} else {
|
||||
_position = jio_snprintf(_buffer, _length, "%s", prefix);
|
||||
_position = jio_snprintf(_buffer, _length, "%s ", prefix);
|
||||
}
|
||||
assert(_position >= 0 && _position <= _length,
|
||||
err_msg("Need to increase the buffer size in GCCauseString? %d", _position));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user