RFR: 8319778: Remove unreachable code in ObjectSynchronizer::exit

Axel Boldt-Christmas aboldtch at openjdk.org
Fri Nov 10 12:12:11 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.

## Testing
  - `linux-x64`, `linux-x64-debug`
    - `LM_LEGACY`
      - [X] tier 1-5
    - `LM_LIGHTWEIGHT`
      - [X] tier 1-5
  - [X] GitHub actions

-------------

PR Comment: https://git.openjdk.org/jdk/pull/16602#issuecomment-1805621568


More information about the hotspot-runtime-dev mailing list