RFR: 8317007: Add bulk removal of dead nmethods during class unloading [v5]

Albert Mingkun Yang ayang at openjdk.org
Wed Dec 13 20:28:38 UTC 2023


On Wed, 13 Dec 2023 13:08:58 GMT, Thomas Schatzl <tschatzl at openjdk.org> wrote:

>> src/hotspot/share/code/nmethod.cpp line 1447:
>> 
>>> 1445: }
>>> 1446: 
>>> 1447: void nmethod::purge(bool free_code_cache_data, bool unregister_nmethod) {
>> 
>> When will `free_code_cache_data` be ~`false`~ `true`? I thought with the sort-before-free patch, freeing is always delayed after purging.
>
> The compiler eagerly allocates code blobs, so it can give them back if not needed any more (e.g. compiler thread stops due to dynamic adjustment, when shutting down the compilers, when the compiler fails to install an nmethod, ...).
> 
> Only when code unloading we always delay freeing (as this code shows).

Do those take this path? AFAICS, they are subclasses of `RuntimeBlob`. I added `assert(!free_code_cache_data)` at the beginning of this method and it didn't crash right away.

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

PR Review Comment: https://git.openjdk.org/jdk/pull/16767#discussion_r1425849391


More information about the hotspot-gc-dev mailing list