test/compiler/6912517/Test.java

Tue, 08 Aug 2017 15:57:29 +0800

author
aoqi
date
Tue, 08 Aug 2017 15:57:29 +0800
changeset 6876
710a3c8b516e
parent 1907
c18cbe5936b8
parent 0
f90c822e73f8
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright 2009 D.E. Shaw. All Rights Reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 */
aoqi@0 23
aoqi@0 24 /**
aoqi@0 25 * @test
aoqi@0 26 * @bug 6912517
aoqi@0 27 * @summary JIT bug compiles out (and stops running) code that needs to be run. Causes NPE.
aoqi@0 28 *
aoqi@0 29 * @run main/othervm -Xbatch -XX:CompileThreshold=100 -XX:+IgnoreUnrecognizedVMOptions -XX:-UseCompressedOops Test
aoqi@0 30 */
aoqi@0 31
aoqi@0 32 /**
aoqi@0 33 * Highlights a bug with the JIT compiler.
aoqi@0 34 * @author Matt Bruce m b r u c e __\at/__ g m a i l DOT c o m
aoqi@0 35 */
aoqi@0 36 public class Test implements Runnable
aoqi@0 37 {
aoqi@0 38 private final Thread myThread;
aoqi@0 39 private Thread myInitialThread;
aoqi@0 40 private boolean myShouldCheckThreads;
aoqi@0 41
aoqi@0 42 /**
aoqi@0 43 * Sets up the running thread, and starts it.
aoqi@0 44 */
aoqi@0 45 public Test(int id)
aoqi@0 46 {
aoqi@0 47 myThread = new Thread(this);
aoqi@0 48 myThread.setName("Runner: " + id);
aoqi@0 49 myThread.start();
aoqi@0 50 myShouldCheckThreads = false;
aoqi@0 51 }
aoqi@0 52
aoqi@0 53 /**
aoqi@0 54 * @param shouldCheckThreads the shouldCheckThreads to set
aoqi@0 55 */
aoqi@0 56 public void setShouldCheckThreads(boolean shouldCheckThreads)
aoqi@0 57 {
aoqi@0 58 myShouldCheckThreads = shouldCheckThreads;
aoqi@0 59 }
aoqi@0 60
aoqi@0 61 /**
aoqi@0 62 * Starts up the two threads with enough delay between them for JIT to
aoqi@0 63 * kick in.
aoqi@0 64 * @param args
aoqi@0 65 * @throws InterruptedException
aoqi@0 66 */
aoqi@0 67 public static void main(String[] args) throws InterruptedException
aoqi@0 68 {
aoqi@0 69 // let this run for a bit, so the "run" below is JITTed.
aoqi@0 70 for (int id = 0; id < 20; id++) {
aoqi@0 71 System.out.println("Starting thread: " + id);
aoqi@0 72 Test bug = new Test(id);
aoqi@0 73 bug.setShouldCheckThreads(true);
aoqi@0 74 Thread.sleep(2500);
aoqi@0 75 }
aoqi@0 76 }
aoqi@0 77
aoqi@0 78 /**
aoqi@0 79 * @see java.lang.Runnable#run()
aoqi@0 80 */
aoqi@0 81 public void run()
aoqi@0 82 {
aoqi@0 83 long runNumber = 0;
aoqi@0 84 while (true) {
aoqi@0 85 // run hot for a little while, give JIT time to kick in to this loop.
aoqi@0 86 // then run less hot.
aoqi@0 87 if (runNumber > 15000) {
aoqi@0 88 try {
aoqi@0 89 Thread.sleep(5);
aoqi@0 90 }
aoqi@0 91 catch (InterruptedException e) {
aoqi@0 92 e.printStackTrace();
aoqi@0 93 }
aoqi@0 94 }
aoqi@0 95 runNumber++;
aoqi@0 96 ensureProperCallingThread();
aoqi@0 97 }
aoqi@0 98 }
aoqi@0 99
aoqi@0 100 private void ensureProperCallingThread()
aoqi@0 101 {
aoqi@0 102 // this should never be null. but with the JIT bug, it will be.
aoqi@0 103 // JIT BUG IS HERE ==>>>>>
aoqi@0 104 if (myShouldCheckThreads) {
aoqi@0 105 if (myInitialThread == null) {
aoqi@0 106 myInitialThread = Thread.currentThread();
aoqi@0 107 }
aoqi@0 108 else if (myInitialThread != Thread.currentThread()) {
aoqi@0 109 System.out.println("Not working: " + myInitialThread.getName());
aoqi@0 110 }
aoqi@0 111 }
aoqi@0 112 }
aoqi@0 113 }

mercurial