1 /*
   2  * Copyright (c) 2019, SAP SE. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import jdk.test.lib.*;
  25 import jdk.test.lib.process.*;
  26 
  27 /*
  28  * @test TestAbortVMOnSafepointTimeout
  29  * @summary Check if VM can kill thread which doesn't reach safepoint.
  30  * @bug 8219584
  31  * @requires vm.compiler2.enabled
  32  * @library /test/lib
  33  * @modules java.base/jdk.internal.misc
  34  *          java.management
  35  */
  36 
  37 public class TestAbortVMOnSafepointTimeout {
  38 
  39     public static void main(String[] args) throws Exception {
  40         if (args.length > 0) {
  41             int result = test_loop(3);
  42             System.out.println("This message would occur after some time with result " + result);
  43             return;
  44         }
  45 
  46         testWith(500, 500);
  47     }
  48 
  49     static int test_loop(int x) {
  50         int sum = 0;
  51         if (x != 0) {
  52             // Long running loop without safepoint.
  53             for (int y = 1; y < Integer.MAX_VALUE; ++y) {
  54                 if (y % x == 0) ++sum;
  55             }
  56         }
  57         return sum;
  58     }
  59 
  60     public static void testWith(int sfpt_interval, int timeout_delay) throws Exception {
  61         ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
  62                 "-XX:+UnlockDiagnosticVMOptions",
  63                 "-XX:-UseBiasedLocking",
  64                 "-XX:+SafepointTimeout",
  65                 "-XX:+SafepointALot",
  66                 "-XX:+AbortVMOnSafepointTimeout",
  67                 "-XX:SafepointTimeoutDelay=" + timeout_delay,
  68                 "-XX:GuaranteedSafepointInterval=" + sfpt_interval,
  69                 "-XX:-TieredCompilation",
  70                 "-XX:-UseCountedLoopSafepoints",
  71                 "-XX:LoopStripMiningIter=0",
  72                 "-XX:LoopUnrollLimit=0",
  73                 "-XX:CompileCommand=compileonly,TestAbortVMOnSafepointTimeout::test_loop",
  74                 "-Xcomp",
  75                 "-XX:-CreateCoredumpOnCrash",
  76                 "-Xms64m",
  77                 "TestAbortVMOnSafepointTimeout",
  78                 "runTestLoop"
  79         );
  80 
  81         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  82         if (Platform.isWindows()) {
  83             output.shouldMatch("Safepoint sync time longer than");
  84         } else {
  85             output.shouldMatch("SIGILL");
  86             if (Platform.isLinux()) {
  87                 output.shouldMatch("(sent by kill)");
  88             }
  89             output.shouldMatch("TestAbortVMOnSafepointTimeout.test_loop");
  90         }
  91         output.shouldNotHaveExitValue(0);
  92     }
  93 }