Skip to content

Commit dd73e3c

Browse files
author
Kim Barrett
committedDec 1, 2021
8277814: ConcurrentRefineThread should report rate when deactivating
Reviewed-by: tschatzl, sjohanss
1 parent 65251f7 commit dd73e3c

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed
 

‎src/hotspot/share/gc/g1/g1ConcurrentRefineStats.cpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -32,6 +32,12 @@ G1ConcurrentRefineStats::G1ConcurrentRefineStats() :
3232
_dirtied_cards(0)
3333
{}
3434

35+
double G1ConcurrentRefineStats::refinement_rate_ms() const {
36+
// Report 0 when no time recorded because no refinement performed.
37+
double secs = refinement_time().seconds();
38+
return (secs > 0) ? (refined_cards() / (secs * MILLIUNITS)) : 0.0;
39+
}
40+
3541
G1ConcurrentRefineStats&
3642
G1ConcurrentRefineStats::operator+=(const G1ConcurrentRefineStats& other) {
3743
_refinement_time += other._refinement_time;

‎src/hotspot/share/gc/g1/g1ConcurrentRefineStats.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -47,6 +47,9 @@ class G1ConcurrentRefineStats : public CHeapObj<mtGC> {
4747
// Number of refined cards.
4848
size_t refined_cards() const { return _refined_cards; }
4949

50+
// Refinement rate, in cards per ms.
51+
double refinement_rate_ms() const;
52+
5053
// Number of cards for which refinement was skipped because some other
5154
// thread had already refined them.
5255
size_t precleaned_cards() const { return _precleaned_cards; }

‎src/hotspot/share/gc/g1/g1ConcurrentRefineThread.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ void G1ConcurrentRefineThread::run_service() {
131131
}
132132

133133
total_stats += *_refinement_stats - start_stats;
134-
log_debug(gc, refine)("Deactivated worker %d, off threshold: " SIZE_FORMAT
135-
", current: " SIZE_FORMAT
136-
", refined cards: " SIZE_FORMAT,
134+
log_debug(gc, refine)("Deactivated worker %d, off threshold: %zu, "
135+
"cards: %zu, refined %zu, rate %1.2fc/ms",
137136
_worker_id, _cr->deactivation_threshold(_worker_id),
138137
G1BarrierSet::dirty_card_queue_set().num_cards(),
139-
total_stats.refined_cards());
138+
total_stats.refined_cards(),
139+
total_stats.refinement_rate_ms());
140140

141141
if (os::supports_vtime()) {
142142
_vtime_accum = (os::elapsedVTime() - _vtime_start);

0 commit comments

Comments
 (0)
Please sign in to comment.