author | stsmirno |
Mon, 17 Oct 2016 18:54:12 -0400 | |
changeset 41705 | 332239c052cc |
parent 40059 | c2304140ed64 |
permissions | -rw-r--r-- |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
1 |
/* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3915
diff
changeset
|
2 |
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
4 |
* |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
8 |
* |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
13 |
* accompanied this code). |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
14 |
* |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
18 |
* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3915
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3915
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3915
diff
changeset
|
21 |
* questions. |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
22 |
*/ |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
23 |
|
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
24 |
/* |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
25 |
* @test |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
26 |
* @bug 6823453 |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
27 |
* @summary DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph") |
40059 | 28 |
* |
29 |
* @run main/othervm -Xcomp -XX:+IgnoreUnrecognizedVMOptions -XX:+DeoptimizeALot |
|
30 |
* -XX:CompileCommand=compileonly,compiler.c2.Test6823453::* |
|
31 |
* compiler.c2.Test6823453 |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
32 |
*/ |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
33 |
|
40059 | 34 |
package compiler.c2; |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
35 |
|
40059 | 36 |
public class Test6823453 { |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
37 |
|
40059 | 38 |
static long vara_1 = 1L; |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
39 |
|
40059 | 40 |
static void testa() { |
41 |
short var_2 = (byte) 1.0E10; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
42 |
|
40059 | 43 |
for (Object temp = new byte[(byte) 1.0E10]; true; |
44 |
var_2 = "1".equals("0") ? ((byte) vara_1) : 1) { |
|
45 |
} |
|
46 |
} |
|
47 |
||
48 |
static void testb() { |
|
49 |
long var_1 = -1L; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
50 |
|
40059 | 51 |
short var_2 = (byte) 1.0E10; |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
52 |
|
40059 | 53 |
for (Object temp = new byte[(byte) 1.0E10]; true; |
54 |
var_2 = "1".equals("0") ? ((byte) var_1) : 1) { |
|
55 |
} |
|
56 |
} |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
57 |
|
40059 | 58 |
static void testc() { |
59 |
long var_1 = -1L; |
|
60 |
if (vara_1 > 0) var_1 = 1L; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
61 |
|
40059 | 62 |
int var_2 = (byte) var_1 - 128; |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
63 |
|
40059 | 64 |
for (Object temp = new byte[var_2]; true; |
65 |
var_2 = "1".equals("0") ? 2 : 1) { |
|
66 |
} |
|
67 |
} |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
68 |
|
40059 | 69 |
static void testd() { |
70 |
long var_1 = 0L; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
71 |
|
40059 | 72 |
int var_2 = (byte) var_1 + 1; |
73 |
for (int i = 0; i < 2; i++) var_2 = var_2 - 1; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
74 |
|
40059 | 75 |
for (Object temp = new byte[var_2]; true; |
76 |
var_2 = "1".equals("0") ? 2 : 1) { |
|
77 |
} |
|
78 |
} |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
79 |
|
40059 | 80 |
public static void main(String[] args) throws Exception { |
81 |
int nex = 0; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
82 |
|
40059 | 83 |
try { |
84 |
testa(); |
|
85 |
} catch (java.lang.NegativeArraySizeException ex) { |
|
86 |
nex++; |
|
87 |
} |
|
88 |
try { |
|
89 |
testb(); |
|
90 |
} catch (java.lang.NegativeArraySizeException ex) { |
|
91 |
nex++; |
|
92 |
} |
|
93 |
try { |
|
94 |
testc(); |
|
95 |
} catch (java.lang.NegativeArraySizeException ex) { |
|
96 |
nex++; |
|
97 |
} |
|
98 |
try { |
|
99 |
testd(); |
|
100 |
} catch (java.lang.NegativeArraySizeException ex) { |
|
101 |
nex++; |
|
102 |
} |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
103 |
|
40059 | 104 |
if (nex != 4) |
105 |
System.exit(97); |
|
106 |
} |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
107 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
diff
changeset
|
108 |