On Wed, 19 Aug 2026 04:45:40 GMT, Dean Long <[email protected]> wrote:

>> This PR removes the last traces of the obsolete thread transition states 
>> such as _thread_new_trans, _thread_blocked_trans, etc.  These states have 
>> not been needed ever since the JVM switched safepoints from doing forced 
>> suspend to cooperative self-suspend.  Most were no longer used thanks to 
>> previous work by @pchilano , but there remained uses of 
>> _thread_in_native_trans that are now safely converted into _thread_in_vm.
>> 
>> ---------
>> - [x] I confirm that I make this contribution in accordance with the 
>> [OpenJDK Interim AI Policy](https://openjdk.org/legal/ai).
>
> Dean Long has updated the pull request incrementally with one additional 
> commit since the last revision:
> 
>   remove comment about transitioning between states

Looks good, thanks for the cleanup.

A grep search only found 
[this](https://github.com/openjdk/jdk/blob/d4bfdf70a2752f048c26a27eafc6fd5496703b22/src/hotspot/share/runtime/vframe.inline.hpp#L239)
 other mention of `in_Java_trans`, plus the one marked below in the ppc file.

src/hotspot/cpu/ppc/templateInterpreterGenerator_ppc.cpp line 1530:

> 1528:   // <<<<<< Back in Interpreter Frame >>>>>
> 1529: 
> 1530:   // We are in thread_in_native_trans here and back in the normal

Nit: `thread_in_native_trans`

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

Marked as reviewed by pchilanomate (Reviewer).

PR Review: https://git.openjdk.org/jdk/pull/32415#pullrequestreview-4976532675
PR Review Comment: https://git.openjdk.org/jdk/pull/32415#discussion_r3816534514

Reply via email to