hotspot/test/compiler/codegen/C1NullCheckOfNullStore.java
author ppunegov
Tue, 24 Nov 2015 21:03:39 +0300
changeset 34218 4b22b04519e6
parent 23530 b0fb0c2df62b
child 40059 c2304140ed64
permissions -rw-r--r--
8142967: [TESTBUG] Compiler control tests get NullPointerException Summary: Fix incoorect build jtreg tags Reviewed-by: iignatyev, neliasso
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23530
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     1
/*
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     4
 *
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     8
 *
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    13
 * accompanied this code).
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    14
 *
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    18
 *
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    21
 * questions.
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    22
 */
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    23
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    24
/*
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    25
 * @test
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    26
 * @bug 8039043
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    27
 * @summary Null check is placed in a wrong place when storing a null to an object field on x64 with compressed oops off
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    28
 * @run main/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -XX:CompileCommand=compileonly,C1NullCheckOfNullStore::test -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:-UseCompressedOops C1NullCheckOfNullStore
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    29
 *
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    30
 */
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    31
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    32
public class C1NullCheckOfNullStore {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    33
  private static class Foo {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    34
    Object bar;
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    35
  }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    36
  static private void test(Foo x) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    37
    x.bar = null;
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    38
  }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    39
  static public void main(String args[]) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    40
    Foo x = new Foo();
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    41
    for (int i = 0; i < 10000; i++) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    42
      test(x);
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    43
    }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    44
    boolean gotNPE = false;
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    45
    try {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    46
      for (int i = 0; i < 10000; i++) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    47
        test(null);
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    48
      }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    49
    }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    50
    catch(NullPointerException e) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    51
      gotNPE = true;
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    52
    }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    53
    if (!gotNPE) {
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    54
      throw new Error("Expecting a NullPointerException");
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    55
    }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    56
  }
b0fb0c2df62b 8039043: Implicit null check is in the wrong place in C1 -UseCompressedOops
iveresov
parents:
diff changeset
    57
}