RFR: 8358339: Handle MethodCounters::_method backlinks after JDK-8355003

Aleksey Shipilev shade at openjdk.org
Mon Jun 2 18:51:51 UTC 2025


On Mon, 2 Jun 2025 18:41:42 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:

> Found this when reading mainline-vs-premain webrev. [JDK-8355003](https://bugs.openjdk.org/browse/JDK-8355003) introduced a backlink to `Method*` in `MethodCounters`. I believe we need to handle that backlink at least in `CodeBuffer::finalize_oop_references()`. premain does this, while mainline does not. Also, amusingly, we have `MethodCounters::is_methodCounters`, but not the super-class `Metadata::is_methodCounters`. 
> 
> I pulled in the hunks that use `is_methodCounters()` and `MethodCounters::method()` from premain into this PR.
> 
> Additional testing:
>  - [x] Linux x86_64 server fastdebug, `runtime/cds`
>  - [ ] Linux x86_64 server fastdebug, `tier1`
>  - [ ] Linux x86_64 server fastdebug, `all`

Actually, I am not sure if it is even a bug, because mainline is using `MethodCounters::method()` any reasonably only in `MethodCounters::metaspace_pointers_do()`. But I guess it would be good to make sure we handle this backlink consistently.

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

PR Comment: https://git.openjdk.org/jdk/pull/25599#issuecomment-2932037261


More information about the hotspot-dev mailing list