RFR: 8272480: Remove Mutex::access rank
Coleen Phillimore
coleenp at openjdk.java.net
Wed Aug 25 18:52:39 UTC 2021
This change removes the 'access' rank since the last oop access lock has been removed (Shared_DirtyCardQ_lock). It might make sense to have a very low level access lock for oops but it should be added along with locks that might be introduced at that time, so that the rank is in the right place.
With this I moved tty back down in the rank hierarchy and added stackwatermark ranks. The latter is above tty, not below, and other locks like Service_lock are taken while holding the stackwatermark lock. There's one tty-1 ranked lock that is actually taken while the tty lock is held.
I moved MonitorDeflation_lock back to special rank because its low level was just copied from Service_lock, but that's not needed.
With this I removed most of the out-of-date comment above the rank enum. New comment to follow in future RFE.
Tested with tier1-6.
-------------
Commit messages:
- 8272480: Remove Mutex::access rank
Changes: https://git.openjdk.java.net/jdk/pull/5256/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=5256&range=00
Issue: https://bugs.openjdk.java.net/browse/JDK-8272480
Stats: 47 lines in 5 files changed: 12 ins; 16 del; 19 mod
Patch: https://git.openjdk.java.net/jdk/pull/5256.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/5256/head:pull/5256
PR: https://git.openjdk.java.net/jdk/pull/5256
More information about the hotspot-runtime-dev
mailing list