annotate test/compiler/7123108/Test7123108.java @ 4764:e5ac210043cd

7123108: C1: assert(if_state != NULL) failed: states do not match up Summary: In CEE, ensure if and common successor state are at the same inline level Reviewed-by: never
author roland
date Thu, 22 Dec 2011 10:55:53 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4764
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
1 /*
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
2 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
4 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
7 * published by the Free Software Foundation.
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
8 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
13 * accompanied this code).
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
14 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
18 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
21 * questions.
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
22 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
23 */
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
24
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
25 /**
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
26 * @test
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
27 * @bug 7123108
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
28 * @summary C1 crashes with assert(if_state != NULL) failed: states do not match up
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
29 *
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
30 * @run main/othervm -Xcomp Test7123108
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
31 */
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
32
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
33 public class Test7123108 {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
34
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
35 static class Test_Class_0 {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
36 final static byte var_2 = 67;
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
37 byte var_3;
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
38 }
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
39
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
40 Object var_25 = "kgfpyhcms";
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
41 static long var_27 = 6899666748616086528L;
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
42
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
43 static float func_1()
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
44 {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
45 return 0.0F;
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
46 }
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
47
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
48 private void test()
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
49 {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
50 "dlwq".charAt(((short)'x' > var_27 | func_1() <= (((Test_Class_0)var_25).var_3) ? true : true) ? Test_Class_0.var_2 & (short)-1.1173839E38F : 'Y');
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
51 }
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
52
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
53 public static void main(String[] args)
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
54 {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
55 Test7123108 t = new Test7123108();
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
56 try {
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
57 t.test();
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
58 } catch (Throwable e) { }
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
59 }
e5ac210043cd 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
60 }