Integrated: 8283641: Large value for CompileThresholdScaling causes assert

Ioi Lam iklam at openjdk.java.net
Thu Mar 24 21:45:49 UTC 2022


On Thu, 24 Mar 2022 16:34:07 GMT, Ioi Lam <iklam at openjdk.org> wrote:

> Please review this trivial fix that checks for overflow of `(intx)(threshold * scale)`
> 
> Before:
> 
> $ java -XX:CompileThresholdScaling=12345678901234567890.0 -version
> ...
> # Internal Error (/jdk/open/src/hotspot/share/utilities/powerOfTwo.hpp:54), pid=4147940, tid=4147941
> # assert(value > T(0)) failed: value must be > 0
> 
> 
> After:
> 
> 
> $ java -XX:CompileThresholdScaling=12345678901234567890.0 -version
> intx Tier0InvokeNotifyFreqLog=32 is outside the allowed range [ 0 ... 30 ]
> ...
> OnStackReplacePercentage cannot be validated because CompileThreshold value is invalid
> CompileThreshold (9223372036854775807) must be between 0 and 1073741823
> Error: Could not create the Java Virtual Machine.
> Error: A fatal exception has occurred. Program will exit.
> 
> 
> Tested with tiers 1-2.

This pull request has now been integrated.

Changeset: c1048021
Author:    Ioi Lam <iklam at openjdk.org>
URL:       https://git.openjdk.java.net/jdk/commit/c1048021fe57b78bb1f300b977588e1a93a284b6
Stats:     8 lines in 1 file changed: 7 ins; 0 del; 1 mod

8283641: Large value for CompileThresholdScaling causes assert

Reviewed-by: kvn

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

PR: https://git.openjdk.java.net/jdk/pull/7944


More information about the hotspot-compiler-dev mailing list