RFR: 8319048: Monitor deflation unlink phase prolongs time to safepoint [v3]
Aleksey Shipilev
shade at openjdk.org
Wed Nov 8 12:25:59 UTC 2023
On Wed, 8 Nov 2023 08:49:36 GMT, Y. Srinivas Ramakrishna <ysr at openjdk.org> wrote:
>> Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Fix test after recent test infra renames
>
> src/hotspot/share/runtime/synchronizer.cpp line 152:
>
>> 150: break;
>> 151: }
>> 152: if (prev == nullptr && Atomic::load(&_head) != m) {
>
> If the only concurrent activity is list inserts that we are protecting against when processing the first batch, why not just let head stay intact, and commence the batch at the second element in the list (i.e. at head->next_om()) and save some of this effort to bound the walk for prev as prev (i.e. head) won't change while we walk the first (or any) batch. I realize then that one might be left with one element in the list. May be that's not a big deal especially if there are lots of inserts happening (so it won't remain at the head). When inserts are never happening, may be this isn't a big deal? (Not sure.)
Oh, this is an interesting idea, it did not occur to me. Let me see if we can make it work. I think we can even go back to the `head` and check if `head` can be deflated in one last shot. The benefit of doing all this would be guaranteeing that we only update the `head` once, regardless of how many batches we do, and we would not have additional branch in the gathering loop.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/16412#discussion_r1386533730
More information about the hotspot-runtime-dev
mailing list