@@ -47,8 +47,9 @@ class WeakProcessor : AllStatic {
47
47
// Visit all oop*s and apply the given closure.
48
48
static void oops_do (OopClosure* closure);
49
49
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.
52
53
// IsAlive must be derived from BoolObjectClosure.
53
54
// KeepAlive must be derived from OopClosure.
54
55
template <typename IsAlive, typename KeepAlive>
@@ -57,8 +58,9 @@ class WeakProcessor : AllStatic {
57
58
KeepAlive* keep_alive,
58
59
WeakProcessorPhaseTimes* phase_times);
59
60
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.
62
64
// IsAlive must be derived from BoolObjectClosure.
63
65
// KeepAlive must be derived from OopClosure.
64
66
template <typename IsAlive, typename KeepAlive>
@@ -67,7 +69,10 @@ class WeakProcessor : AllStatic {
67
69
KeepAlive* keep_alive,
68
70
uint indent_log);
69
71
72
+ // Uses the total number of weak references and ReferencesPerThread to
73
+ // determine the number of threads to use, limited by max_workers.
70
74
static uint ergo_workers (uint max_workers);
75
+
71
76
class Task ;
72
77
73
78
private:
0 commit comments