RFR: 8319778: Remove unreachable code in ObjectSynchronizer::exit
Roman Kennke
rkennke at openjdk.org
Fri Nov 10 12:35:57 UTC 2023
On Fri, 10 Nov 2023 12:04:37 GMT, Axel Boldt-Christmas <aboldtch at openjdk.org> wrote:
> In `ObjectSynchronizer::exit` when unlocking on an inflated monitor with `LM_LIGHTWEIGHT` there is a check if the owner is anonymous. That branch should never be take and would indicate that something is wrong with either `ObjectSynchronizer::inflate` or that `ObjectSynchronizer::exit` is trying to unlock a monitor not owned by the `current` thread.
>
> Changes this to an assert instead. Did not condition the assert on `LM_LIGHTWEIGHT` as this property should hold regardless of locking mode.
Looks good!
-------------
Marked as reviewed by rkennke (Reviewer).
PR Review: https://git.openjdk.org/jdk/pull/16602#pullrequestreview-1724689817
More information about the hotspot-runtime-dev
mailing list