hotspot/test/compiler/c1/Test7123108.java
author vdeshpande
Fri, 26 Aug 2016 12:20:09 -0700
changeset 41362 e09e871860a7
parent 40059 c2304140ed64
child 41705 332239c052cc
permissions -rw-r--r--
8154122: Intrinsify fused mac operations Summary: added FMA intrinsics on x86 Reviewed-by: kvn, aph, darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11432
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     1
/*
c731e8d846ce 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.
c731e8d846ce 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.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     4
 *
c731e8d846ce 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
c731e8d846ce 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
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
     8
 *
c731e8d846ce 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
c731e8d846ce 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
c731e8d846ce 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
c731e8d846ce 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
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    13
 * accompanied this code).
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    14
 *
c731e8d846ce 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
c731e8d846ce 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,
c731e8d846ce 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.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    18
 *
c731e8d846ce 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
c731e8d846ce 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
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    21
 * questions.
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    22
 *
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    23
 */
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    24
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    25
/**
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    26
 * @test
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    27
 * @bug 7123108
c731e8d846ce 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
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    29
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    30
 * @run main/othervm -Xcomp compiler.c1.Test7123108
11432
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    31
 */
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    32
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    33
package compiler.c1;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    34
11432
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    35
public class Test7123108 {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    36
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    37
    static class Test_Class_0 {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    38
        final static byte var_2 = 67;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    39
        byte var_3;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    40
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    41
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    42
    Object var_25 = "kgfpyhcms";
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    43
    static long var_27 = 6899666748616086528L;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    44
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    45
    static float func_1()
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    46
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    47
        return 0.0F;
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    48
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    49
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    50
    private void test()
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    51
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    52
        "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');
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    53
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    54
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    55
    public static void main(String[] args)
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    56
    {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    57
        Test7123108 t = new Test7123108();
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    58
        try {
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    59
            t.test();
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    60
        } catch (Throwable e) { }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    61
    }
c731e8d846ce 7123108: C1: assert(if_state != NULL) failed: states do not match up
roland
parents:
diff changeset
    62
}