8276044: ciReplay: C1 does not dump a replay file when using DumpReplay as compile command option

Reviewed-by: kvn, thartmann, dlong
This commit is contained in:
Christian Hagedorn 2021-11-03 08:44:03 +00:00
parent 87b926ebb7
commit 7439b59b5a
3 changed files with 108 additions and 6 deletions

View File

@ -399,6 +399,11 @@ int Compilation::compile_java_method() {
}
CHECK_BAILOUT_(no_frame_size);
// Dump compilation data to replay it.
if (_directive->DumpReplayOption) {
env()->dump_replay_data(env()->compile_id());
}
{
PhaseTraceTime timeit(_t_codeemit);
return emit_code_body();

View File

@ -252,13 +252,17 @@ public abstract class CiReplayBase {
}
public int getCompLevelFromReplay() {
try(BufferedReader br = new BufferedReader(new FileReader(REPLAY_FILE_NAME))) {
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()
.get();
.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);
}

View File

@ -0,0 +1,93 @@
/*
* Copyright (c) 2021, 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.
*/
/*
* @test
* @bug 8276044
* @library / /test/lib
* @summary Testing that a replay file is dumped for C1 and C2 when using the DumpReplay compile command option.
* @requires vm.flightRecorder != true & vm.compMode != "Xint" & vm.compMode != "Xcomp" & vm.debug == true
* & vm.compiler1.enabled & vm.compiler2.enabled
* @modules java.base/jdk.internal.misc
* @build sun.hotspot.WhiteBox
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:+TieredCompilation
* compiler.ciReplay.TestDumpReplayCommandLine
*/
package compiler.ciReplay;
import jdk.test.lib.Asserts;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class TestDumpReplayCommandLine extends DumpReplayBase {
public static void main(String[] args) {
new TestDumpReplayCommandLine().runTest(TIERED_ENABLED_VM_OPTION);
}
@Override
public void testAction() {
List<File> replayFiles = getReplayFiles();
Asserts.assertEQ(2, replayFiles.size(), "should find a C1 and a C2 replay file");
String replayFile1 = replayFiles.get(0).getName();
String replayFile2 = replayFiles.get(1).getName();
int compileId1 = getCompileIdFromFile(replayFile1);
int compileId2 = getCompileIdFromFile(replayFile2);
int compLevel1 = getCompLevelFromReplay(replayFile1);
int compLevel2 = getCompLevelFromReplay(replayFile2);
Asserts.assertEQ(compileId1 < compileId2 ? compLevel1 : compLevel2, 3, "Must be C1 replay file");
Asserts.assertEQ(compileId1 < compileId2 ? compLevel2 : compLevel1, 4, "Must be C2 replay file");
}
@Override
public String getTestClass() {
return TestDumpReplayCommandFoo.class.getName();
}
}
class TestDumpReplayCommandFoo {
public static int iFld;
public static void main(String[] args) {
for (int i = 0; i < 10000; i++) {
test();
}
}
public static void test() {
for (int i = 0; i < 1; i++) {
iFld = 3;
}
}
}