author | stsmirno |
Mon, 17 Oct 2016 18:54:12 -0400 | |
changeset 41705 | 332239c052cc |
parent 40059 | c2304140ed64 |
permissions | -rw-r--r-- |
35097
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
1 |
/* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
2 |
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
4 |
* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
8 |
* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
13 |
* accompanied this code). |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
14 |
* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
18 |
* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
21 |
* questions. |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
22 |
*/ |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
23 |
|
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
24 |
/* |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
25 |
* @test |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
26 |
* @bug 8134883 |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
27 |
* @summary C1's range check elimination breaks with a non-natural loop that an exception handler as one entry |
40059 | 28 |
* |
35097
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
29 |
* @compile TestRangeCheckExceptionHandlerLoop.jasm |
40059 | 30 |
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement |
31 |
* compiler.rangechecks.TestRangeCheckExceptionHandlerLoopMain |
|
35097
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
32 |
*/ |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
33 |
|
40059 | 34 |
package compiler.rangechecks; |
35 |
||
35097
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
36 |
public class TestRangeCheckExceptionHandlerLoopMain { |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
37 |
public static void main(String[] args) throws Exception { |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
38 |
Exception exception = new Exception(); |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
39 |
int[] array = new int[10]; |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
40 |
for (int i = 0; i < 20000; i++) { |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
41 |
TestRangeCheckExceptionHandlerLoop.test(false, array, exception); |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
42 |
} |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
43 |
} |
cd29ef2a189d
8134883: C1 hard crash in range check elimination in Nashorn test262parallel
roland
parents:
diff
changeset
|
44 |
} |