TestInvokeJWarmupViaJcmd.java 9.0 KB
Newer Older
Y
Yifei Zhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
/*
 * Copyright (c) 2019 Alibaba Group Holding Limited. All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation. Alibaba designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */

import com.oracle.java.testlibrary.*;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.lang.reflect.Field;
import static com.oracle.java.testlibrary.Asserts.assertTrue;

/*
 * @test TestInvokeJWarmupViaJcmd
 * @library /testlibrary
 * @build TestInvokeJWarmupViaJcmd
 * @run main TestInvokeJWarmupViaJcmd
 * @run main/othervm TestInvokeJWarmupViaJcmd
 * @summary test invoking JWarmup APIs via jcmd
 */
public class TestInvokeJWarmupViaJcmd {
    public static void main(String[] args) throws Exception {
        Recording.run();
        CheckNotifyStartup.run();
        CheckCompilationSuccess.run();
        CheckCompilationFail.run();
        CheckDeopt.run();
    }
}

class Main {
    public static void main(String[] args) throws Exception {
        Main main = new Main();
        for (int i = 0; i < 20000; i++) {
            main.foo();
        }
        // Waiting for recording or jcmd.
        Thread.sleep(12000);
        System.out.println("done!");
    }

    public void foo() {}
}

/**
 * JWarmup command
 */
class JCMDArg {
    public static final String notify = "-notify";
    public static final String check = "-check";
    public static final String deopt = "-deopt";

}

class ProgramArg {
    public static final String Recording = "Recording";
    public static final String NotifyStartup = "NotifyStartup";
    public static final String CheckCompilationSuccess = "CheckCompilationSuccess";
    public static final String CheckCompilationFail = "CheckCompilationFail";
    public static final String Deopt = "Deopt";
}

/**
 * JVM options
 */
class JVMArg {
    public static final List<String> Recording = new ArrayList(Arrays.asList(
            "-XX:-ClassUnloading",
            "-XX:-CMSClassUnloadingEnabled",
            "-XX:-ClassUnloadingWithConcurrentMark",
            "-XX:CompilationWarmUpLogfile=jwarmup.log",
            "-XX:+CompilationWarmUpRecording",
            "-XX:CompilationWarmUpRecordTime=10"
    ));

    public static final List<String> Running = new ArrayList(Arrays.asList(
            "-XX:+CompilationWarmUp",
            "-XX:+CompilationWarmUpExplicitDeopt",
            "-XX:-TieredCompilation",
            "-XX:CompilationWarmUpLogfile=jwarmup.log",
            "-XX:CompilationWarmUpDeoptTime=0"
    ));
}

class Recording {
    public static void run() throws Exception {
        System.out.println("Test Jwarmup recording.");
        ProcessBuilderFactory.create(ProgramArg.Recording, JVMArg.Recording).start();
        Thread.sleep(15000);
        File logFile = new File("./jwarmup.log");
        assertTrue(logFile.exists() && logFile.isFile());
    }
}

class CheckNotifyStartup {
    public static void run() throws Exception {
        System.out.println("Test JWarmup notifyStartup.");
        ProcessBuilder processBuilder = ProcessBuilderFactory.create(ProgramArg.NotifyStartup, JVMArg.Running);
        Process p = processBuilder.start();
        Thread.sleep(5000);
        String pid = PID.get(p);
        assert pid != null;
        JcmdCaller.callJcmd(ProgramArg.NotifyStartup, pid);
    }
}

class CheckCompilationSuccess {
    public static void run() throws Exception {
        System.out.println("Test JWarmup checkCompilation.");
        ProcessBuilder processBuilder = ProcessBuilderFactory.create(ProgramArg.CheckCompilationSuccess, JVMArg.Running);
        Process p = processBuilder.start();
        Thread.sleep(5000);
        String pid = PID.get(p);
        assert pid != null;
        JcmdCaller.callJcmd(ProgramArg.CheckCompilationSuccess, pid);
    }
}

/**
 * Excluding compiling com.alibaba.jwarmup.JWarmUp.dummy() to test a unfinished compilation task.
 */
class CheckCompilationFail {
    public static void run() throws Exception {
        System.out.println("Test JWarmup checkCompilation.");
        List<String> jvmArgs = new ArrayList<>();
        jvmArgs.addAll(JVMArg.Running);
        jvmArgs.add("-XX:CompileCommand=exclude,com/alibaba/jwarmup/JWarmUp,dummy");
        ProcessBuilder processBuilder = ProcessBuilderFactory.create(ProgramArg.CheckCompilationFail, jvmArgs);
        Process p = processBuilder.start();
        String pid = PID.get(p);
        assert pid != null;
        Thread.sleep(5000);
        JcmdCaller.callJcmd(ProgramArg.CheckCompilationFail, pid);
    }
}

class CheckDeopt {
    public static void run() throws Exception {
        System.out.println("Test JWarmup de-optimization.");
        ProcessBuilder processBuilder =  ProcessBuilderFactory.create(ProgramArg.Deopt, JVMArg.Running);
        Process p = processBuilder.start();
        Thread.sleep(5000);
        JcmdCaller.callJcmd(ProgramArg.Deopt, PID.get(p));
    }
}

class ProcessBuilderFactory {
    public static ProcessBuilder create(String programArg, final List<String> jvmArgs) throws Exception {
        assert jvmArgs != null && jvmArgs.size() != 0;
        List<String> _jvmArgs = new ArrayList<>(jvmArgs);
        _jvmArgs.addAll(Arrays.asList(
                Main.class.getName(),
                programArg
        ));
        return ProcessTools.createJavaProcessBuilder(_jvmArgs.stream().toArray(String[]::new));
    }
}

class JcmdCaller {
    public static void callJcmd(String arg, String pid) throws Exception {
        if (ProgramArg.Recording.equals(arg)) {
            return;
        } else if (ProgramArg.NotifyStartup.equals(arg)) {
            ProcessBuilder processBuilder = notifyStartup(pid);
            OutputAnalyzer output = new OutputAnalyzer(processBuilder.start());
            output.shouldContain("Command executed successfully");
        } else if (ProgramArg.CheckCompilationSuccess.equals(arg)) {
            ProcessBuilder processBuilder = checkCompilation(pid);
            OutputAnalyzer output = new OutputAnalyzer(processBuilder.start());
            output.shouldContain("Last compilation task is completed.");
        } else if (ProgramArg.CheckCompilationFail.equals(arg)) {
            ProcessBuilder processBuilder = checkCompilation(pid);
            OutputAnalyzer output = new OutputAnalyzer(processBuilder.start());
            output.shouldContain("Last compilation task is not completed.");
        } else if (ProgramArg.Deopt.equals(arg)) {
            ProcessBuilder processBuilder = deopt(pid);
            OutputAnalyzer output = new OutputAnalyzer(processBuilder.start());
            output.shouldContain("Command executed successfully");
        } else {
            throw new RuntimeException(String.format("Unrecognized argument: %s", arg));
        }
    }

    private static ProcessBuilder notifyStartup(String pid) {
        JDKToolLauncher notify = JDKToolLauncher.create("jcmd")
                .addToolArg(pid)
                .addToolArg("JWarmup")
                .addToolArg(JCMDArg.notify);
        return new ProcessBuilder(notify.getCommand());
    }

    private static ProcessBuilder checkCompilation(String pid) throws Exception {
        // Invoke notifyStartup() before checkCompilation().
        ProcessBuilder processBuilder = notifyStartup(pid);
        Process p = processBuilder.start();
        p.waitFor();
        JDKToolLauncher check = JDKToolLauncher.create("jcmd")
                .addToolArg(pid)
                .addToolArg("JWarmup")
                .addToolArg(JCMDArg.check);
        return new ProcessBuilder(check.getCommand());
    }

    private static ProcessBuilder deopt(String pid) {
        JDKToolLauncher deopt = JDKToolLauncher.create("jcmd")
                .addToolArg(pid)
                .addToolArg("JWarmup")
                .addToolArg(JCMDArg.deopt);
        return new ProcessBuilder(deopt.getCommand());
    }
}

class PID {
    public static String get(Process p) throws Exception {
        if ("java.lang.UNIXProcess".equals(p.getClass().getName())) {
            Field f = p.getClass().getDeclaredField("pid");
            f.setAccessible(true);
            long pid = f.getLong(p);
            f.setAccessible(false);
            return Long.toString(pid);
        } else {
            throw new RuntimeException("Unable to obtain pid.");
        }
    }
}