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
|
/*
* Copyright Amazon.com Inc. 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 TestOnSpinWaitAArch64
* @summary Checks that java.lang.Thread.onSpinWait is intrinsified with instructions specified with '-XX:OnSpinWaitInst' and '-XX:OnSpinWaitInstCount'
* @bug 8186670
* @library /test/lib
*
* @requires vm.flagless
* @requires os.arch=="aarch64"
*
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c2 nop 7
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c2 isb 3
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c2 yield 1
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c1 nop 7
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c1 isb 3
* @run driver compiler.onSpinWait.TestOnSpinWaitAArch64 c1 yield
*/
package compiler.onSpinWait;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.ListIterator;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;
public class TestOnSpinWaitAArch64 {
public static void main(String[] args) throws Exception {
String compiler = args[0];
String spinWaitInst = args[1];
String spinWaitInstCount = (args.length == 3) ? args[2] : "1";
ArrayList<String> command = new ArrayList<String>();
command.add("-XX:+IgnoreUnrecognizedVMOptions");
command.add("-showversion");
command.add("-XX:-BackgroundCompilation");
command.add("-XX:+UnlockDiagnosticVMOptions");
command.add("-XX:+PrintAssembly");
if (compiler.equals("c2")) {
command.add("-XX:-TieredCompilation");
} else if (compiler.equals("c1")) {
command.add("-XX:+TieredCompilation");
command.add("-XX:TieredStopAtLevel=1");
} else {
throw new RuntimeException("Unknown compiler: " + compiler);
}
command.add("-Xbatch");
command.add("-XX:OnSpinWaitInst=" + spinWaitInst);
command.add("-XX:OnSpinWaitInstCount=" + spinWaitInstCount);
command.add("-XX:CompileCommand=compileonly," + Launcher.class.getName() + "::" + "test");
command.add(Launcher.class.getName());
ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(command);
OutputAnalyzer analyzer = new OutputAnalyzer(pb.start());
analyzer.shouldHaveExitValue(0);
System.out.println(analyzer.getOutput());
checkOutput(analyzer, spinWaitInst, Integer.parseInt(spinWaitInstCount));
}
private static String getSpinWaitInstHex(String spinWaitInst) {
if ("nop".equals(spinWaitInst)) {
return "1f20 03d5";
} else if ("isb".equals(spinWaitInst)) {
return "df3f 03d5";
} else if ("yield".equals(spinWaitInst)) {
return "3f20 03d5";
} else {
throw new RuntimeException("Unknown spin wait instruction: " + spinWaitInst);
}
}
private static void addInstrs(String line, ArrayList<String> instrs) {
for (String instr : line.split("\\|")) {
instrs.add(instr.trim());
}
}
// The expected output of PrintAssembly for example for a spin wait with three NOPs:
//
// # {method} {0x0000ffff6ac00370} 'test' '()V' in 'compiler/onSpinWait/TestOnSpinWaitAArch64$Launcher'
// # [sp+0x40] (sp of caller)
// 0x0000ffff9d557680: 1f20 03d5 | e953 40d1 | 3f01 00f9 | ff03 01d1 | fd7b 03a9 | 1f20 03d5 | 1f20 03d5
//
// 0x0000ffff9d5576ac: ;*invokestatic onSpinWait {reexecute=0 rethrow=0 return_oop=0}
// ; - compiler.onSpinWait.TestOnSpinWaitAArch64$Launcher::test@0 (line 161)
// 0x0000ffff9d5576ac: 1f20 03d5 | fd7b 43a9 | ff03 0191
//
// The checkOutput method adds hex instructions before 'invokestatic onSpinWait' and from the line after
// it to a list. The list is traversed from the end to count spin wait instructions.
//
// If JVM finds the hsdis library the output is like:
//
// # {method} {0x0000ffff63000370} 'test' '()V' in 'compiler/onSpinWait/TestOnSpinWaitAArch64$Launcher'
// # [sp+0x20] (sp of caller)
// 0x0000ffffa409da80: nop
// 0x0000ffffa409da84: sub sp, sp, #0x20
// 0x0000ffffa409da88: stp x29, x30, [sp, #16] ;*synchronization entry
// ; - compiler.onSpinWait.TestOnSpinWaitAArch64$Launcher::test@-1 (line 187)
// 0x0000ffffa409da8c: nop
// 0x0000ffffa409da90: nop
// 0x0000ffffa409da94: nop
// 0x0000ffffa409da98: nop
// 0x0000ffffa409da9c: nop
// 0x0000ffffa409daa0: nop
// 0x0000ffffa409daa4: nop ;*invokestatic onSpinWait {reexecute=0 rethrow=0 return_oop=0}
// ; - compiler.onSpinWait.TestOnSpinWaitAArch64$Launcher::test@0 (line 187)
private static void checkOutput(OutputAnalyzer output, String spinWaitInst, int spinWaitInstCount) {
Iterator<String> iter = output.asLines().listIterator();
String match = skipTo(iter, "'test' '()V' in 'compiler/onSpinWait/TestOnSpinWaitAArch64$Launcher'");
if (match == null) {
throw new RuntimeException("Missing compiler output for the method compiler.onSpinWait.TestOnSpinWaitAArch64$Launcher::test");
}
ArrayList<String> instrs = new ArrayList<String>();
String line = null;
boolean hasHexInstInOutput = false;
while (iter.hasNext()) {
line = iter.next();
if (line.contains("*invokestatic onSpinWait")) {
break;
}
if (!hasHexInstInOutput) {
hasHexInstInOutput = line.contains("|");
}
if (line.contains("0x") && !line.contains(";")) {
addInstrs(line, instrs);
}
}
if (!iter.hasNext() || !iter.next().contains("- compiler.onSpinWait.TestOnSpinWaitAArch64$Launcher::test@0") || !iter.hasNext()) {
throw new RuntimeException("Missing compiler output for Thread.onSpinWait intrinsic");
}
String strToSearch = null;
if (!hasHexInstInOutput) {
instrs.add(line.split(";")[0].trim());
strToSearch = spinWaitInst;
} else {
line = iter.next();
if (!line.contains("0x") || line.contains(";")) {
throw new RuntimeException("Expected hex instructions");
}
addInstrs(line, instrs);
strToSearch = getSpinWaitInstHex(spinWaitInst);
}
int foundInstCount = 0;
ListIterator<String> instrReverseIter = instrs.listIterator(instrs.size());
while (instrReverseIter.hasPrevious()) {
if (instrReverseIter.previous().endsWith(strToSearch)) {
foundInstCount = 1;
break;
}
}
while (instrReverseIter.hasPrevious()) {
if (!instrReverseIter.previous().endsWith(strToSearch)) {
break;
}
++foundInstCount;
}
if (foundInstCount != spinWaitInstCount) {
throw new RuntimeException("Wrong instruction " + strToSearch + " count " + foundInstCount + "!\n -- expecting " + spinWaitInstCount);
}
}
private static String skipTo(Iterator<String> iter, String substring) {
while (iter.hasNext()) {
String nextLine = iter.next();
if (nextLine.contains(substring)) {
return nextLine;
}
}
return null;
}
static class Launcher {
public static void main(final String[] args) throws Exception {
int end = 20_000;
for (int i=0; i < end; i++) {
test();
}
}
static void test() {
java.lang.Thread.onSpinWait();
}
}
}
|