RFR: 8173300: [TESTBUG]compiler/tiered/NonTieredLevelsTest.java fails with compiler.whitebox.SimpleTestCaseHelper(int) must be compiled
Vladimir Kozlov
vladimir.kozlov at oracle.com
Tue Jan 24 22:14:03 UTC 2017
Got it. Looks good.
Thanks,
Vladimir
On 1/24/17 2:03 PM, Jamsheed C m wrote:
> WhiteBox::compile_method compiles at level CompLevel_highest_tier at max.
>
> CompLevel_highest_tier is CompLevel_simple for client builds. and other levels are not available.
>
> } else if (Platform.isClient() || Platform.isMinimal() || Platform.isEmulatedClient()) {
> AVAILABLE_COMP_LEVEL = COMP_LEVEL_SIMPLE;
> - IS_AVAILABLE_COMPLEVEL = x -> x >= COMP_LEVEL_SIMPLE
> - && x <= COMP_LEVEL_FULL_PROFILE;
> + IS_AVAILABLE_COMPLEVEL = x -> x == COMP_LEVEL_SIMPLE;
> } else {
>
>
> Best Regards,
>
> Jamsheed
>
>
> On 1/25/2017 3:18 AM, Vladimir Kozlov wrote:
>> Jamsheed,
>>
>> Please, explain what was the problem and the fix.
>>
>> Thanks,
>> Vladimir
>>
>> On 1/24/17 1:19 PM, Jamsheed C m wrote:
>>> bugid: https://bugs.openjdk.java.net/browse/JDK-8173300
>>>
>>> webrev: http://cr.openjdk.java.net/~jcm/8173300/webrev.00/
>>>
>>> test correction, please review.
>>>
>>> Best Regards,
>>>
>>> Jamsheed
>>>
>
More information about the hotspot-compiler-dev
mailing list