test/hotspot/jtreg/vmTestbase/jit/regression/b4446672/b4446672.java
author jlahoda
Tue, 12 Nov 2019 06:32:13 +0000
changeset 59021 cfc7bb9a5a92
parent 50366 4d85990f9c4a
permissions -rw-r--r--
8232684: Make switch expressions final Reviewed-by: alanb, mcimadamore, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50366
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     1
/*
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     2
 * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     4
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     8
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    13
 * accompanied this code).
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    14
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    18
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    21
 * questions.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    22
 */
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    23
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    24
/*
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    25
 * @test
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    26
 * @bug 4446672
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    27
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    28
 * @summary converted from VM Testbase jit/regression/b4446672.
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    29
 * VM Testbase keywords: [jit, quick]
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    30
 *
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    31
 * @library /vmTestbase
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    32
 *          /test/lib
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    33
 * @run driver jdk.test.lib.FileInstaller . .
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    34
 * @run main/othervm jit.regression.b4446672.b4446672
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    35
 */
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    36
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    37
package jit.regression.b4446672;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    38
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    39
import nsk.share.TestFailure;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    40
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    41
public class b4446672 {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    42
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    43
  public static void main(String[] args) {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    44
    new b4446672().run();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    45
  }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    46
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    47
  private void run() {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    48
    new GCThread().start();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    49
    new TestThreadStarter().start();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    50
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    51
    while (!gcing) Thread.yield();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    52
    while (!starting) Thread.yield();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    53
      done = true;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    54
    while (!testing) Thread.yield();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    55
  }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    56
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    57
  class TestThread extends Thread {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    58
    public void run() {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    59
      System.out.println ("TestThread.");
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    60
      testing = true;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    61
    }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    62
  }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    63
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    64
  class TestThreadStarter extends Thread {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    65
    public void run() {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    66
      System.out.println ("TestThreadStarter.");
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    67
      starting=true;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    68
      testThread.start();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    69
    }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    70
  }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    71
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    72
  class GCThread extends Thread {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    73
    public void run() {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    74
      System.out.println ("GCThread run.");
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    75
      synchronized (testThread) {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    76
        System.out.println ("GCThread synchronized.");
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    77
              while (!done) {
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    78
                gcing=true;
59021
cfc7bb9a5a92 8232684: Make switch expressions final
jlahoda
parents: 50366
diff changeset
    79
                Thread.yield();
50366
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    80
                System.gc();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    81
              }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    82
            }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    83
        System.out.println ("GCThread done.");
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    84
    }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    85
  }
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    86
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    87
  TestThread testThread = new TestThread();
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    88
  boolean done = false;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    89
  boolean gcing = false;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    90
  boolean testing = false;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    91
  boolean starting = false;
4d85990f9c4a 8202812: [TESTBUG] Open source VM testbase compiler tests
iignatyev
parents:
diff changeset
    92
}