RFR: 8319048: Monitor deflation unlink phase prolongs time to safepoint [v3]
Y. Srinivas Ramakrishna
ysr at openjdk.org
Mon Nov 13 19:54:46 UTC 2023
On Thu, 9 Nov 2023 17:15:26 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:
>> 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.
>
> This does not work, unfortunately.
>
> There is a hidden invariant: we need to unlink *all* deflated monitors. Otherwise, we would see deflated marker in downstream code that uses the monitor lists, which would break the protocol. (There are asserts that check this.) So if we bypass the first OM _and it turns out to be deflated_, we need to deflate that OM too. But inserts can happen meanwhile, and we would lose that initial OM somewhere in the middle of the list, which means we would need to go and search for it, at very least because we would need to figure out its prev.
>
> Took me a while to understand this. Current code avoids this by carefully tracking `head` updates and searching for new `prev` directly. I will add more verification code in this method to capture the invariant.
What you say makes sense. Thanks for finding this unwritten post-condition, and for asserting it below!
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/16412#discussion_r1391621021
More information about the hotspot-runtime-dev
mailing list