hotspot/test/compiler/6973329/Test.java
author jjg
Fri, 07 Nov 2014 14:51:35 -0800
changeset 27547 d07b3dcbc707
parent 6188 95ea4d66089a
permissions -rw-r--r--
8063145: ToolBox should support extracting classes from a JavaFileManager/Location Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6188
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     1
/*
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     2
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     4
 *
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     7
 * published by the Free Software Foundation.
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     8
 *
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    13
 * accompanied this code).
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    14
 *
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    18
 *
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    21
 * questions.
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    22
 */
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    23
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    24
/**
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    25
 * @test
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    26
 * @bug 6973329
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    27
 * @summary C2 with Zero based COOP produces code with broken anti-dependency on x86
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    28
 *
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    29
 * @run main/othervm -Xbatch -Xcomp -XX:CompileOnly=Test Test
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    30
 */
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    31
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    32
class A {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    33
  A next;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    34
  int n;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    35
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    36
  public int get_n() {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    37
    return n+1;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    38
  }
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    39
}
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    40
public class Test {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    41
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    42
  A a;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    43
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    44
  void test (A new_next) {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    45
    A prev_next = a.next;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    46
    a.next = new_next;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    47
    if (prev_next == null) {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    48
      a.n = a.get_n();
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    49
    }
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    50
  }
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    51
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    52
  public static void main(String args[]) {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    53
    Test t = new Test();
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    54
    t.a = new A();
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    55
    t.a.n = 1;
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    56
    t.test(new A());
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    57
    if (t.a.n != 2) {
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    58
      System.out.println("Wrong value: " + t.a.n + " expected: 2");
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    59
      System.exit(97);
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    60
    }
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    61
  }
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    62
}
95ea4d66089a 6973329: C2 with Zero based COOP produces code with broken anti-dependency on x86
kvn
parents:
diff changeset
    63