On Thu, 8 May 2025 22:07:40 GMT, Serguei Spitsyn <sspit...@openjdk.org> wrote:

>> This is a minor cleanup for the JVMTI `interp_only_mode` implementation 
>> which includes the following changes:
>>  - The `interp_only_mode` in `JavaThread` is represented with a counter 
>> which is incremented and decremented. This is confusing because this value 
>> should only take values `0` or `1`. Asserts are placed to make sure it is 
>> never going out of bounds. The `interp_only_mode` in a `JavaThread` is 
>> checked by the interpreter chunks which expect it to be an `integer`. This 
>> cleanup has no intention to make it a boolean.
>>  - The function `JvmtiThreadState::process_pending_interp_only()` does a 
>> sync on the `JvmtiThreadState_lock` which is not really needed and is being 
>> removed. It is called in a `VTMS` transition and so, can not clash with the 
>> `SetEventNotificationMode` because it sets a `JvmtiVTMSTransitionDisabler`.
>>  
>>  Testing:
>>   - TBD: Mach5 tiers 1-6
>
> Serguei Spitsyn has updated the pull request incrementally with one 
> additional commit since the last revision:
> 
>   review: added comment with clarification

Thank you for review, Chris and Leonid!

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

PR Comment: https://git.openjdk.org/jdk/pull/25060#issuecomment-2865679917

Reply via email to