Integrated: 8204686: Dynamic parallel reference processing support for Parallel GC
Leo Korinth
lkorinth at openjdk.java.net
Mon Jun 7 08:06:03 UTC 2021
On Fri, 28 May 2021 15:26:51 GMT, Leo Korinth <lkorinth at openjdk.org> wrote:
> The first part:
> 1) sets `ParallelRefProcEnabled` to true if we have multiple threads (in Parallel)
> 2) removes the field `_adjust_no_of_processing_threads` so that Parallel and G1 handles dynamic resizing the same
> 3) removes an early return --- `ergo_proc_thread_count()` already adjusts for `ReferencesPerThread == 0`
>
> The second part tries something else. It makes `ParallelRefProcEnabled` default to true for all GCs and does not take into consideration the amount of gc threads. I have talked to Thomas Schatzl before posting this and we will probably *not* use part two. Reasons include that we can then no longer read the flag ParallelRefProcEnabled to see if we are going to do parallel ref processing as it will be true even if we only have one thread (or are running Serial GC). I still want to show the possibility.
>
> Part three shows the impact on test cases when part two is applied. I will need to adjust part three if we remove Part 2.
>
> Please take an extra look at the removal of the early return, it looks valid to me and `hotspot_gc` passes.
>
> I will try to get this into 17, but if review and CSR takes time I will postpone it to 18. I suggest dropping part 2 and will do so if no one objects.
This pull request has now been integrated.
Changeset: 9fc914b9
Author: Leo Korinth <lkorinth at openjdk.org>
URL: https://git.openjdk.java.net/jdk/commit/9fc914b96321c24e14f1b52246df0b816cb7dafa
Stats: 25 lines in 6 files changed: 4 ins; 15 del; 6 mod
8204686: Dynamic parallel reference processing support for Parallel GC
Reviewed-by: ayang, tschatzl, kbarrett
-------------
PR: https://git.openjdk.java.net/jdk/pull/4253
More information about the hotspot-gc-dev
mailing list