Skip to content

Commit efc36be

Browse files
author
Kim Barrett
committedJan 13, 2021
8258985: Parallel WeakProcessor may use too few threads
Use total workers rather than active. Reviewed-by: tschatzl, ayang, sjohanss
1 parent 417e1d1 commit efc36be

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed
 

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

+9-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ class WeakProcessor : AllStatic {
4747
// Visit all oop*s and apply the given closure.
4848
static void oops_do(OopClosure* closure);
4949

50-
// Parallel version. Uses ergo_workers(), active workers, and
51-
// phase_time's max_threads to determine the number of threads to use.
50+
// Parallel version. Uses ergo_workers() to determine the number of
51+
// threads to use, limited by the total workers and phase_times'
52+
// max_threads.
5253
// IsAlive must be derived from BoolObjectClosure.
5354
// KeepAlive must be derived from OopClosure.
5455
template<typename IsAlive, typename KeepAlive>
@@ -57,8 +58,9 @@ class WeakProcessor : AllStatic {
5758
KeepAlive* keep_alive,
5859
WeakProcessorPhaseTimes* phase_times);
5960

60-
// Convenience parallel version. Uses ergo_workers() and active workers
61-
// to determine the number of threads to run. Implicitly logs phase times.
61+
// Convenience parallel version. Uses ergo_workers() to determine the
62+
// number of threads to use, limited by the total workers. Implicitly
63+
// logs phase times.
6264
// IsAlive must be derived from BoolObjectClosure.
6365
// KeepAlive must be derived from OopClosure.
6466
template<typename IsAlive, typename KeepAlive>
@@ -67,7 +69,10 @@ class WeakProcessor : AllStatic {
6769
KeepAlive* keep_alive,
6870
uint indent_log);
6971

72+
// Uses the total number of weak references and ReferencesPerThread to
73+
// determine the number of threads to use, limited by max_workers.
7074
static uint ergo_workers(uint max_workers);
75+
7176
class Task;
7277

7378
private:

‎src/hotspot/share/gc/shared/weakProcessor.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void WeakProcessor::weak_oops_do(WorkGang* workers,
134134
WeakProcessorPhaseTimes* phase_times) {
135135
WeakProcessorTimeTracker tt(phase_times);
136136

137-
uint nworkers = ergo_workers(MIN2(workers->active_workers(),
137+
uint nworkers = ergo_workers(MIN2(workers->total_workers(),
138138
phase_times->max_threads()));
139139

140140
GangTask task("Weak Processor", is_alive, keep_alive, phase_times, nworkers);
@@ -147,7 +147,7 @@ void WeakProcessor::weak_oops_do(WorkGang* workers,
147147
IsAlive* is_alive,
148148
KeepAlive* keep_alive,
149149
uint indent_log) {
150-
uint nworkers = ergo_workers(workers->active_workers());
150+
uint nworkers = ergo_workers(workers->total_workers());
151151
WeakProcessorPhaseTimes pt(nworkers);
152152
weak_oops_do(workers, is_alive, keep_alive, &pt);
153153
pt.log_print_phases(indent_log);

0 commit comments

Comments
 (0)
Please sign in to comment.