@@ -172,27 +172,27 @@ static const char* indent_str(size_t i) {
172
172
173
173
#define TIME_FORMAT " %.1lfms"
174
174
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 {
177
177
LogTarget (Debug, gc, phases) lt;
178
178
LogStream ls (lt);
179
179
ls.print (" %s" , indents[indent]);
180
180
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 );
182
182
183
183
for (uint i = 0 ; i < worker_data (phase)->MaxThreadWorkItems ; i++) {
184
184
WorkerDataArray<size_t >* work_items = worker_data (phase)->thread_work_items (i);
185
185
if (work_items != NULL ) {
186
186
ls.print (" %s" , indents[indent + 1 ]);
187
187
work_items->print_summary_on (&ls, true );
188
- log_mt_phase_details (work_items, indent + 1 );
188
+ log_phase_details (work_items, indent + 1 );
189
189
}
190
190
}
191
191
}
192
192
193
193
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 {
196
196
LogTarget (Trace, gc, phases) lt;
197
197
if (lt.is_enabled ()) {
198
198
LogStream ls (lt);
@@ -205,7 +205,7 @@ void WeakProcessorPhaseTimes::log_print_phases(uint indent) const {
205
205
if (log_is_enabled (Debug, gc, phases)) {
206
206
typedef WeakProcessorPhases::Iterator Iterator;
207
207
for (Iterator it = WeakProcessorPhases::oopstorage_iterator (); !it.is_end (); ++it) {
208
- log_mt_phase_summary (*it, indent);
208
+ log_phase_summary (*it, indent);
209
209
}
210
210
}
211
211
}
1 commit comments
openjdk-notifier[bot] commentedon Nov 23, 2020
Review
Issues