Skip to content

Commit b50b99d

Browse files
author
Kim Barrett
committedNov 23, 2020
8256825: Cleanup WeakProcessorPhaseTimes
Reviewed-by: sjohanss, stefank
1 parent 47a78e8 commit b50b99d

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed
 

‎src/hotspot/share/gc/shared/weakProcessorPhaseTimes.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -172,27 +172,27 @@ static const char* indent_str(size_t i) {
172172

173173
#define TIME_FORMAT "%.1lfms"
174174

175-
void WeakProcessorPhaseTimes::log_mt_phase_summary(WeakProcessorPhase phase,
176-
uint indent) const {
175+
void WeakProcessorPhaseTimes::log_phase_summary(WeakProcessorPhase phase,
176+
uint indent) const {
177177
LogTarget(Debug, gc, phases) lt;
178178
LogStream ls(lt);
179179
ls.print("%s", indents[indent]);
180180
worker_data(phase)->print_summary_on(&ls, true);
181-
log_mt_phase_details(worker_data(phase), indent + 1);
181+
log_phase_details(worker_data(phase), indent + 1);
182182

183183
for (uint i = 0; i < worker_data(phase)->MaxThreadWorkItems; i++) {
184184
WorkerDataArray<size_t>* work_items = worker_data(phase)->thread_work_items(i);
185185
if (work_items != NULL) {
186186
ls.print("%s", indents[indent + 1]);
187187
work_items->print_summary_on(&ls, true);
188-
log_mt_phase_details(work_items, indent + 1);
188+
log_phase_details(work_items, indent + 1);
189189
}
190190
}
191191
}
192192

193193
template <typename T>
194-
void WeakProcessorPhaseTimes::log_mt_phase_details(WorkerDataArray<T>* data,
195-
uint indent) const {
194+
void WeakProcessorPhaseTimes::log_phase_details(WorkerDataArray<T>* data,
195+
uint indent) const {
196196
LogTarget(Trace, gc, phases) lt;
197197
if (lt.is_enabled()) {
198198
LogStream ls(lt);
@@ -205,7 +205,7 @@ void WeakProcessorPhaseTimes::log_print_phases(uint indent) const {
205205
if (log_is_enabled(Debug, gc, phases)) {
206206
typedef WeakProcessorPhases::Iterator Iterator;
207207
for (Iterator it = WeakProcessorPhases::oopstorage_iterator(); !it.is_end(); ++it) {
208-
log_mt_phase_summary(*it, indent);
208+
log_phase_summary(*it, indent);
209209
}
210210
}
211211
}

‎src/hotspot/share/gc/shared/weakProcessorPhaseTimes.hpp

+3-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
template<typename T> class WorkerDataArray;
3434

35-
class WeakProcessorPhaseTimes : public CHeapObj<mtGC> {
35+
class WeakProcessorPhaseTimes {
3636
enum {
3737
DeadItems,
3838
TotalItems
@@ -49,10 +49,9 @@ class WeakProcessorPhaseTimes : public CHeapObj<mtGC> {
4949

5050
WorkerDataArray<double>* worker_data(WeakProcessorPhase phase) const;
5151

52-
void log_st_phase(WeakProcessorPhase phase, uint indent) const;
53-
void log_mt_phase_summary(WeakProcessorPhase phase, uint indent) const;
52+
void log_phase_summary(WeakProcessorPhase phase, uint indent) const;
5453
template <typename T>
55-
void log_mt_phase_details(WorkerDataArray<T>* data, uint indent) const;
54+
void log_phase_details(WorkerDataArray<T>* data, uint indent) const;
5655

5756
public:
5857
WeakProcessorPhaseTimes(uint max_threads);
@@ -63,12 +62,9 @@ class WeakProcessorPhaseTimes : public CHeapObj<mtGC> {
6362
void set_active_workers(uint n);
6463

6564
double total_time_sec() const;
66-
double phase_time_sec(WeakProcessorPhase phase) const;
6765
double worker_time_sec(uint worker_id, WeakProcessorPhase phase) const;
6866

6967
void record_total_time_sec(double time_sec);
70-
void record_phase_time_sec(WeakProcessorPhase phase, double time_sec);
71-
void record_phase_items(WeakProcessorPhase phase, size_t num_dead, size_t num_total);
7268
void record_worker_time_sec(uint worker_id, WeakProcessorPhase phase, double time_sec);
7369
void record_worker_items(uint worker_id, WeakProcessorPhase phase, size_t num_dead, size_t num_total);
7470

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 23, 2020

@openjdk-notifier[bot]
Please sign in to comment.