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
|
/*
* 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 8254108
* @library / /test/lib
* @summary Testing of ciReplay with incremental inlining.
* @requires vm.flightRecorder != true & vm.compMode != "Xint" & vm.compMode != "Xcomp" & vm.debug == true & vm.compiler2.enabled
* @modules java.base/jdk.internal.misc
* @build jdk.test.whitebox.WhiteBox
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
* compiler.ciReplay.TestIncrementalInlining
*/
package compiler.ciReplay;
import jdk.test.lib.Asserts;
import jdk.test.lib.Utils;
import jdk.test.whitebox.WhiteBox;
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.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class TestIncrementalInlining extends InliningBase {
private List<InlineEntry> inlineesNormal;
private List<InlineEntry> inlineesReplay;
public static void main(String[] args) {
new TestIncrementalInlining();
}
TestIncrementalInlining() {
super(IncrementalInliningTest.class);
// Enable Whitebox access for test VM.
commandLineNormal.add("-Dtest.jdk=" + Utils.TEST_JDK);
commandLineNormal.add("-cp");
commandLineNormal.add(Utils.TEST_CLASS_PATH);
commandLineNormal.add("-Xbootclasspath/a:.");
commandLineNormal.add("-XX:+UnlockDiagnosticVMOptions");
commandLineNormal.add("-XX:+WhiteBoxAPI");
commandLineNormal.add("-XX:MaxInlineLevel=2");
commandLineNormal.add("-XX:-AlwaysIncrementalInline");
commandLineNormal.add("-XX:-StressIncrementalInlining");
runTest();
}
@Override
public void testAction() {
positiveTest(commandLineReplay);
inlineesNormal = parseLogFile(LOG_FILE_NORMAL, getTestClass() + " " + "test", "compile_id='" + getCompileIdFromFile(getReplayFileName()), 5);
verify(true);
// Incremental inlining is supported in version 2+
// Test replay file version 1.
removeIncrementalInlineInfo();
setNewVersionInReplayFile(1);
positiveTest(commandLineReplay);
verify(false);
// Test replay file without version.
removeVersionFromReplayFile();
positiveTest(commandLineReplay);
verify(false);
}
private void verify(boolean isNewFormat) {
inlineesReplay = parseLogFile(LOG_FILE_REPLAY, getTestClass() + " " + "test", "test ()V", 5);
verifyLists(inlineesNormal, inlineesReplay, 5);
checkInlining(isNewFormat);
}
// Check if inlining is done correctly in ciReplay.
private void checkInlining(boolean isNewFormat) {
String klass = getTestClass();
Asserts.assertTrue(inlineesNormal.get(0).compare(klass, "level0", inlineesNormal.get(0).isForcedInline()));
Asserts.assertTrue(inlineesReplay.get(0).compare(klass, "level0", inlineesReplay.get(0).isForcedByReplay()));
Asserts.assertTrue(inlineesNormal.get(1).compare(klass, "level1", inlineesNormal.get(1).isNormalInline()));
Asserts.assertTrue(inlineesReplay.get(1).compare(klass, "level1", inlineesReplay.get(1).isForcedByReplay()));
Asserts.assertTrue(inlineesNormal.get(2).compare(klass, "level2", inlineesNormal.get(2).isForcedInline()));
Asserts.assertTrue(inlineesReplay.get(2).compare(klass, "level2", inlineesReplay.get(2).isForcedByReplay()));
Asserts.assertTrue(inlineesNormal.get(3).compare(klass, "late", inlineesNormal.get(3).isForcedInline()));
Asserts.assertTrue(inlineesReplay.get(3).compare(klass, "late", isNewFormat ?
inlineesReplay.get(3).isForcedIncrementalInlineByReplay()
: inlineesReplay.get(3).isForcedByReplay()));
Asserts.assertTrue(inlineesNormal.get(4).compare(klass, "level4", inlineesNormal.get(4).isTooDeep()));
Asserts.assertTrue(inlineesReplay.get(4).compare(klass, "level4", inlineesReplay.get(4).isDisallowedByReplay()));
}
private void removeIncrementalInlineInfo() {
try {
Path replayFilePath = Paths.get(getReplayFileName());
List<String> replayContent = Files.readAllLines(replayFilePath);
for (int i = 0; i < replayContent.size(); i++) {
String line = replayContent.get(i);
if (line.startsWith("compile ")) {
int lastIndex = 0;
StringBuilder newLine = new StringBuilder();
Pattern p = Pattern.compile("(\\d (-?\\d)) \\d compiler");
Matcher m = p.matcher(line);
boolean firstMatch = true;
while (m.find()) {
newLine.append(line, lastIndex, m.start())
.append(m.group(1))
.append(" compiler");
lastIndex = m.end();
String bci = m.group(2);
Asserts.assertTrue(firstMatch ? bci.equals("-1") : bci.equals("0"), "only root has -1");
firstMatch = false;
}
Asserts.assertLessThan(lastIndex, line.length(), "not reached end of line, yet");
newLine.append(line, lastIndex, line.length());
replayContent.set(i, newLine.toString());
}
}
Files.write(replayFilePath, replayContent, StandardOpenOption.TRUNCATE_EXISTING);
} catch (IOException ioe) {
throw new Error("Failed to read/write replay data: " + ioe, ioe);
}
}
}
class IncrementalInliningTest {
private static final WhiteBox WB = WhiteBox.getWhiteBox();
private static String s;
public static void main(String[] args) throws NoSuchMethodException {
WB.testSetForceInlineMethod(IncrementalInliningTest.class.getDeclaredMethod("level0"), true);
WB.testSetForceInlineMethod(IncrementalInliningTest.class.getDeclaredMethod("level2"), true);
WB.testSetForceInlineMethod(IncrementalInliningTest.class.getDeclaredMethod("late"), true);
for (int i = 0; i < 10000; i++) {
test();
}
}
private static void test() {
level0();
}
public static void level0() {
level1();
}
public static void level1() {
level2();
}
public static void level2() {
late();
}
// Reached max inline level but forced to be inlined -> inline late.
public static void late() {
level4();
}
// Reached max inline level and not forced to be inlined -> no inline.
public static void level4() {
s = "HelloWorld";
}
}
|