test/compiler/whitebox/CompilerWhiteBoxTest.java

changeset 9479
b4ee249eb1c4
parent 7321
f5f752e74840
child 9572
624a0741915c
child 9689
89dcef434423
     1.1 --- a/test/compiler/whitebox/CompilerWhiteBoxTest.java	Thu Aug 02 03:54:51 2018 -0700
     1.2 +++ b/test/compiler/whitebox/CompilerWhiteBoxTest.java	Tue Aug 07 11:55:44 2018 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -84,8 +84,8 @@
    1.11              BACKEDGE_THRESHOLD = THRESHOLD = 150000;
    1.12          } else {
    1.13              THRESHOLD = COMPILE_THRESHOLD;
    1.14 -            BACKEDGE_THRESHOLD = COMPILE_THRESHOLD * Long.parseLong(getVMOption(
    1.15 -                    "OnStackReplacePercentage"));
    1.16 +            BACKEDGE_THRESHOLD = Math.max(10000, COMPILE_THRESHOLD *
    1.17 +                    Long.parseLong(getVMOption("OnStackReplacePercentage")));
    1.18          }
    1.19      }
    1.20  

mercurial