RFR: 8351640: Print reason for making method not entrant [v3]

Aleksey Shipilev shade at openjdk.org
Wed Mar 12 17:39:35 UTC 2025


> A simple quality of life improvement. We are studying compiler dynamics in Leyden, and it would be convenient to know why the particular methods are marked as not entrant. We just need to pass the extra string argument to `nmethod::make_not_entrant` and print it out. 
> 
> Sample log excerpt for mainline:
> 
> 
> $ grep com.sun.tools.javac.util.IntHashTable::lookup print-compilation.log 
> 987   780       3       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)
> 1019  877       4       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)
> 1024  780       3       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)   made not entrant: not used
> 4995  877       4       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)   made not entrant: uncommon trap
> 5287 3734       3       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)
> 6615 5472       4       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)
> 6626 3734       3       com.sun.tools.javac.util.IntHashTable::lookup (100 bytes)   made not entrant: not used
> 
> 
> You can now clearly see the method lifecycle. 1 second in app lifetime, the method was initially compiled at level 3. Shortly after, it got compiled at level 4, turning level 3 method unused. 4 seconds later, level 4 method encountered uncommon trap, so we are back to level 3. After 1.3 seconds more, the final compilation at level 4 completed, and second level 3 compilation was removed as unused.
> 
> Additional testing:
>  - [x] Linux x86_64 server fastdebug, `hotspot:tier1`
>  - [x] Linux x86_64 server fastdebug, `all`

Aleksey Shipilev has updated the pull request incrementally with one additional commit since the last revision:

  Add LogCompilation support

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

Changes:
  - all: https://git.openjdk.org/jdk/pull/23980/files
  - new: https://git.openjdk.org/jdk/pull/23980/files/38491fb2..5da9766d

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=23980&range=02
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=23980&range=01-02

  Stats: 30 lines in 2 files changed: 27 ins; 0 del; 3 mod
  Patch: https://git.openjdk.org/jdk/pull/23980.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/23980/head:pull/23980

PR: https://git.openjdk.org/jdk/pull/23980


More information about the hotspot-dev mailing list