test/hotspot/jtreg/compiler/c2/Test7041100.java
author iignatyev
Mon, 18 Feb 2019 09:31:07 -0800
changeset 53791 bec6c8739833
parent 47216 71c04702a3d5
permissions -rw-r--r--
8219157: vm/mlvm/mixed/stress/java/findDeadlock should be problem-listed only on mac Reviewed-by: thartmann
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9438
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     1
/*
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     2
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     4
 *
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     7
 * published by the Free Software Foundation.
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     8
 *
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    13
 * accompanied this code).
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    14
 *
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    18
 *
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    21
 * questions.
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    22
 */
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    23
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    24
/**
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    25
 * @test
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    26
 * @bug 7041100
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    27
 * @summary The load in String.equals intrinsic executed before null check
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    28
 *
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    29
 * @run main/othervm -Xbatch compiler.c2.Test7041100 abc def
9438
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    30
 */
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    31
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    32
package compiler.c2;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 27699
diff changeset
    33
9438
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    34
public class Test7041100 {
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    35
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    36
    static String n = null;
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    37
    public static void main(String[] args) throws Exception {
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    38
        for (int i = 0; i < 10000; i++) {
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    39
            stringEQ(args[0], args[1]);
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    40
            stringEQ(args[0], args[0]);
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    41
            stringEQ(args[0], n);
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    42
            stringEQ(n, args[0]);
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    43
        }
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    44
    }
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    45
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    46
    public static boolean stringEQ(String a, String b) {
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    47
        if (a == b)
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    48
            return true;
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    49
        if (a == null || b == null)
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    50
            return false;
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    51
        else
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    52
            return a.equals(b);
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    53
    }
287ac3395f02 7041100: The load in String.equals intrinsic executed before null check
kvn
parents:
diff changeset
    54
}