[9] RFR(S): 8061817: Whitebox.deoptimizeMethod() does not deoptimize all OSR versions of method
Tobias Hartmann
tobias.hartmann at oracle.com
Mon Oct 27 14:45:30 UTC 2014
Hi Igor,
thanks for the review.
On 24.10.2014 15:06, Igor Ignatyev wrote:
> Hi Tobias,
>
> DeoptimizeMultipleOSRTest:
> 1. could you please make 'method' an instance field?
Done.
> 2. use AssertionError instead of RuntimeException
Done.
> 3. have you tried to run this test w/ Xcomp?
Yes, it works fine (OSR compilations are still triggered and deoptimized).
However, I found another bug and filed 8062169.
New webrev: http://cr.openjdk.java.net/~thartmann/8061817/webrev.01/
Thanks,
Tobias
>
> Thanks,
> Igor
>
> On 10/24/2014 04:39 PM, Tobias Hartmann wrote:
>> Hi,
>>
>> please review the following patch.
>>
>> Bug: https://bugs.openjdk.java.net/browse/JDK-8061817
>> Webrev: http://cr.openjdk.java.net/~thartmann/8061817/webrev.00/
>>
>> Problem
>> 'WhiteBox.deoptimizeMethod' does not deoptimize all OSR compiled versions of the
>> given method but only one. The problem lies in'WB_DeoptimizeMethod'. The call to
>> 'lookup_osr_nmethod_for' only returns the best fitting OSR nmethod. Incrementing
>> the bci (see line 395) does not help.
>>
>> Solution
>> I changed the implementation to deoptimize all OSR versions and added a
>> regression test that triggers two OSR compilations and checks that both are
>> deoptimized ('DeoptimizeMultipleOSRTest').
>>
>> Testing
>> New test on JPRT
>>
>> Best,
>> Tobias
>>
More information about the hotspot-compiler-dev
mailing list