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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
/*
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. 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.
*
* 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.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package compiler.ciReplay;
import compiler.whitebox.CompilerWhiteBoxTest;
import jdk.test.lib.Asserts;
import jdk.test.lib.Platform;
import jdk.test.lib.Utils;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;
import jdk.test.lib.util.CoreUtils;
import jdk.test.whitebox.WhiteBox;
import jtreg.SkippedException;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
public abstract class CiReplayBase {
public static final String REPLAY_FILE_NAME = "test_replay.txt";
public static final boolean CLIENT_VM_AVAILABLE;
public static final boolean SERVER_VM_AVAILABLE;
public static final String TIERED_ENABLED_VM_OPTION = "-XX:+TieredCompilation";
public static final String TIERED_DISABLED_VM_OPTION = "-XX:-TieredCompilation";
public static final String ENABLE_COREDUMP_ON_CRASH = "-XX:+CreateCoredumpOnCrash";
public static final String DISABLE_COREDUMP_ON_CRASH = "-XX:-CreateCoredumpOnCrash";
public static final String CLIENT_VM_OPTION = "-client";
public static final String SERVER_VM_OPTION = "-server";
public static final String TEST_CORE_FILE_NAME = "test_core";
public static final String RUN_SHELL_NO_LIMIT = "ulimit -c unlimited && ";
private static final String REPLAY_FILE_OPTION = "-XX:ReplayDataFile=" + REPLAY_FILE_NAME;
private static final String LOCATIONS_STRING = "location: ";
private static final String HS_ERR_NAME = "hs_err_pid";
private static final String RUN_SHELL_ZERO_LIMIT = "ulimit -S -c 0 && ";
private static final String VERSION_OPTION = "-version";
private static final String[] REPLAY_GENERATION_OPTIONS = new String[]{"-Xms128m", "-Xmx128m",
"-XX:MetaspaceSize=4m", "-XX:MaxMetaspaceSize=16m", "-XX:InitialCodeCacheSize=512k",
"-XX:ReservedCodeCacheSize=4m", "-XX:ThreadStackSize=512", "-XX:VMThreadStackSize=512",
"-XX:CompilerThreadStackSize=512", "-XX:ParallelGCThreads=1", "-XX:CICompilerCount=2",
"-XX:-BackgroundCompilation", "-XX:CompileCommand=inline,java.io.PrintStream::*",
"-XX:+IgnoreUnrecognizedVMOptions", "-XX:TypeProfileLevel=222", // extra profile data as a stress test
"-XX:+CICountNative", "-XX:CICrashAt=1", "-XX:+DumpReplayDataOnError",
"-XX:-SegmentedCodeCache",
REPLAY_FILE_OPTION};
private static final String[] REPLAY_OPTIONS = new String[]{DISABLE_COREDUMP_ON_CRASH,
"-XX:+IgnoreUnrecognizedVMOptions", "-XX:TypeProfileLevel=222",
"-XX:+ReplayCompiles"};
protected final Optional<Boolean> runServer;
private static int dummy;
static interface Lambda {
int value();
}
public static class TestMain {
private static final String emptyString;
static {
emptyString = "";
}
public static void main(String[] args) {
// explicitly trigger native compilation
Lambda start = () -> 0;
for (int i = start.value(); i < 20_000; i++) {
test(i);
}
}
static void test(int i) {
i += ((Lambda)(() -> 0)).value();
if ((i % 1000) == 0) {
System.out.println("Hello World!");
}
}
}
static {
try {
CLIENT_VM_AVAILABLE = ProcessTools.executeTestJava(CLIENT_VM_OPTION, VERSION_OPTION)
.getOutput().contains("Client");
SERVER_VM_AVAILABLE = ProcessTools.executeTestJava(SERVER_VM_OPTION, VERSION_OPTION)
.getOutput().contains("Server");
} catch(Throwable t) {
throw new Error("Initialization failed: " + t, t);
}
}
public CiReplayBase() {
runServer = Optional.empty();
}
public CiReplayBase(String args[]) {
if (args.length != 1 || (!"server".equals(args[0]) && !"client".equals(args[0]))) {
throw new Error("Expected 1 argument: [server|client]");
}
runServer = Optional.of("server".equals(args[0]));
}
public void runTest(boolean needCoreDump, String... args) {
// The CiReplay tests don't work properly when CDS is disabled
boolean cdsEnabled = WhiteBox.getWhiteBox().isSharingEnabled();
if (!cdsEnabled) {
throw new SkippedException("CDS is not available for this JDK.");
}
cleanup();
if (generateReplay(needCoreDump, args)) {
testAction();
cleanup();
} else {
throw new Error("Host is not configured to generate cores");
}
}
public abstract void testAction();
public static void remove(String item) {
File toDelete = new File(item);
toDelete.delete();
if (Platform.isWindows()) {
Utils.waitForCondition(() -> !toDelete.exists());
}
}
private static void removeFromCurrentDirectoryStartingWith(String prefix) {
Arrays.stream(new File(".").listFiles())
.filter(f -> f.getName().startsWith(prefix))
.forEach(File::delete);
}
public void cleanup() {
removeFromCurrentDirectoryStartingWith("core");
removeFromCurrentDirectoryStartingWith("replay");
removeFromCurrentDirectoryStartingWith(HS_ERR_NAME);
remove(TEST_CORE_FILE_NAME);
remove(REPLAY_FILE_NAME);
}
public String getReplayFileName() {
return REPLAY_FILE_NAME;
}
public boolean generateReplay(boolean needCoreDump, String... vmopts) {
OutputAnalyzer crashOut;
String crashOutputString;
try {
List<String> options = new ArrayList<>();
options.addAll(Arrays.asList(REPLAY_GENERATION_OPTIONS));
options.addAll(Arrays.asList(vmopts));
options.add(needCoreDump ? ENABLE_COREDUMP_ON_CRASH : DISABLE_COREDUMP_ON_CRASH);
if (needCoreDump) {
// CiReplayBase$TestMain needs to be quoted because of shell eval
options.add("-XX:CompileOnly='" + getTestClass() + "::" + getTestMethod() + "'");
options.add("'" + getTestClass() + "'");
crashOut = ProcessTools.executeProcess(
CoreUtils.addCoreUlimitCommand(
ProcessTools.createTestJavaProcessBuilder(options.toArray(new String[0]))));
} else {
options.add("-XX:CompileOnly=" + getTestClass() + "::" + getTestMethod());
options.add(getTestClass());
crashOut = ProcessTools.executeProcess(ProcessTools.createTestJavaProcessBuilder(options));
}
crashOutputString = crashOut.getOutput();
Asserts.assertNotEquals(crashOut.getExitValue(), 0, "Crash JVM exits gracefully");
Files.write(Paths.get("crash.out"), crashOutputString.getBytes(),
StandardOpenOption.CREATE, StandardOpenOption.WRITE,
StandardOpenOption.TRUNCATE_EXISTING);
} catch (Throwable t) {
throw new Error("Can't create replay: " + t, t);
}
if (needCoreDump) {
try {
String coreFileLocation = CoreUtils.getCoreFileLocation(crashOutputString, crashOut.pid());
Files.move(Paths.get(coreFileLocation), Paths.get(TEST_CORE_FILE_NAME));
} catch (IOException ioe) {
throw new Error("Can't move core file: " + ioe, ioe);
}
}
removeFromCurrentDirectoryStartingWith(HS_ERR_NAME);
return true;
}
public String getTestClass() {
return TestMain.class.getName();
}
public String getTestMethod() {
return "test";
}
public void commonTests() {
positiveTest();
if (Platform.isTieredSupported()) {
positiveTest(TIERED_ENABLED_VM_OPTION);
}
}
public int startTest(String... additionalVmOpts) {
try {
List<String> allAdditionalOpts = new ArrayList<>();
allAdditionalOpts.addAll(Arrays.asList(REPLAY_OPTIONS));
allAdditionalOpts.add("-XX:ReplayDataFile=" + getReplayFileName());
allAdditionalOpts.addAll(Arrays.asList(additionalVmOpts));
OutputAnalyzer oa = ProcessTools.executeProcess(getTestJvmCommandlineWithPrefix(
RUN_SHELL_ZERO_LIMIT, allAdditionalOpts.toArray(new String[0])));
return oa.getExitValue();
} catch (Throwable t) {
throw new Error("Can't run replay process: " + t, t);
}
}
public void runVmTests() {
boolean runServerValue = runServer.orElseThrow(() -> new Error("runServer must be set"));
if (runServerValue) {
if (CLIENT_VM_AVAILABLE) {
negativeTest(CLIENT_VM_OPTION);
}
} else {
if (SERVER_VM_AVAILABLE) {
negativeTest(TIERED_DISABLED_VM_OPTION, SERVER_VM_OPTION);
if (Platform.isTieredSupported()) {
positiveTest(TIERED_ENABLED_VM_OPTION, SERVER_VM_OPTION);
}
}
}
nonTieredTests(runServerValue ? CompilerWhiteBoxTest.COMP_LEVEL_FULL_OPTIMIZATION
: CompilerWhiteBoxTest.COMP_LEVEL_SIMPLE);
}
public int getCompLevelFromReplay() {
return getCompLevelFromReplay(REPLAY_FILE_NAME);
}
public int getCompLevelFromReplay(String replayFile) {
try (BufferedReader br = new BufferedReader(new FileReader(replayFile))) {
return br.lines()
.filter(s -> s.startsWith("compile "))
.map(s -> s.split("\\s+")[5])
.map(Integer::parseInt)
.findAny()
.orElseThrow();
} catch (IOException ioe) {
throw new Error("Failed to read replay data: " + ioe, ioe);
}
}
public void positiveTest(String... additionalVmOpts) {
Asserts.assertEQ(startTest(additionalVmOpts), 0, "Unexpected exit code for positive case: "
+ Arrays.toString(additionalVmOpts));
}
public void negativeTest(String... additionalVmOpts) {
Asserts.assertNE(startTest(additionalVmOpts), 0, "Unexpected exit code for negative case: "
+ Arrays.toString(additionalVmOpts));
}
public void nonTieredTests(int compLevel) {
int replayDataCompLevel = getCompLevelFromReplay();
if (replayDataCompLevel == compLevel) {
positiveTest(TIERED_DISABLED_VM_OPTION);
} else {
negativeTest(TIERED_DISABLED_VM_OPTION);
}
}
private String[] getTestJvmCommandlineWithPrefix(String prefix, String... args) {
try {
String cmd = ProcessTools.getCommandLine(ProcessTools.createTestJavaProcessBuilder(args));
return new String[]{"sh", "-c", prefix
+ (Platform.isWindows() ? cmd.replace('\\', '/').replace(";", "\\;").replace("|", "\\|") : cmd)};
} catch(Throwable t) {
throw new Error("Can't create process builder: " + t, t);
}
}
protected void removeVersionFromReplayFile() {
setNewVersionLineInReplayFile(null);
}
protected void setNewVersionInReplayFile(int newVersionNumber) {
setNewVersionLineInReplayFile("version " + newVersionNumber);
}
private void setNewVersionLineInReplayFile(String firstLineString) {
List<String> newLines = new ArrayList<>();
Path replayFilePath = Paths.get(getReplayFileName());
try (var br = Files.newBufferedReader(replayFilePath)) {
String line;
boolean firstLine = true;
while ((line = br.readLine()) != null) {
if (firstLine) {
firstLine = false;
Asserts.assertTrue(line.startsWith("version"), "version number must exist in a proper replay file");
if (firstLineString != null) {
newLines.add(firstLineString);
}
// Else: Remove first line by skipping it.
} else {
newLines.add(line);
}
}
Asserts.assertFalse(firstLine, replayFilePath + " should not be empty");
} catch (IOException e) {
throw new Error("Failed to read replay data: " + e, e);
}
try {
Files.write(replayFilePath, newLines, StandardOpenOption.TRUNCATE_EXISTING);
} catch (IOException e) {
throw new Error("Failed to write replay data: " + e, e);
}
}
}
|