8138810: rework tests for CompilerToVM::allocateCompiledId

Reviewed-by: twisti
This commit is contained in:
Tatiana Pivovarova 2015-11-11 15:04:15 +03:00
parent bace7d99aa
commit e0d743ff05

View File

@ -34,7 +34,6 @@
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:.
* -XX:-BackgroundCompilation * -XX:-BackgroundCompilation
-XX:+LogCompilation
* compiler.jvmci.compilerToVM.AllocateCompileIdTest * compiler.jvmci.compilerToVM.AllocateCompileIdTest
*/ */
@ -45,22 +44,21 @@ import compiler.jvmci.common.CTVMUtilities;
import java.lang.reflect.Executable; import java.lang.reflect.Executable;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map;
import java.util.HashSet; import java.util.HashSet;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import compiler.jvmci.common.testcases.TestCase;
import jdk.vm.ci.hotspot.CompilerToVMHelper; import jdk.vm.ci.hotspot.CompilerToVMHelper;
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod; import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
import jdk.test.lib.Asserts; import jdk.test.lib.Asserts;
import jdk.test.lib.Pair; import jdk.test.lib.Pair;
import jdk.test.lib.Utils; import jdk.test.lib.Utils;
import sun.hotspot.WhiteBox;
import sun.hotspot.code.NMethod; import sun.hotspot.code.NMethod;
public class AllocateCompileIdTest { public class AllocateCompileIdTest {
private static final int SOME_REPEAT_VALUE = 5;
private final HashSet<Integer> ids = new HashSet<>(); private final HashSet<Integer> ids = new HashSet<>();
public static void main(String[] args) { public static void main(String[] args) {
@ -69,7 +67,6 @@ public class AllocateCompileIdTest {
createTestCasesIncorrectBci().forEach(test::runSanityIncorrectTest); createTestCasesIncorrectBci().forEach(test::runSanityIncorrectTest);
} }
private static List<CompileCodeTestCase> createTestCasesCorrectBci() { private static List<CompileCodeTestCase> createTestCasesCorrectBci() {
List<CompileCodeTestCase> result = new ArrayList<>(); List<CompileCodeTestCase> result = new ArrayList<>();
try { try {
@ -84,29 +81,29 @@ public class AllocateCompileIdTest {
return result; return result;
} }
private static List<Pair<CompileCodeTestCase, Class<? extends Throwable>>> private static List<Pair<CompileCodeTestCase, Class<? extends Throwable>>>
createTestCasesIncorrectBci() { createTestCasesIncorrectBci() {
List<Pair<CompileCodeTestCase, Class<? extends Throwable>>> result List<Pair<CompileCodeTestCase, Class<? extends Throwable>>> result
= new ArrayList<>(); = new ArrayList<>();
try { try {
Class<?> aClass = DummyClass.class; Class<?> aClass = DummyClass.class;
Object receiver = new DummyClass(); Object receiver = new DummyClass();
Method method = aClass.getMethod("dummyInstanceFunction"); Method method = aClass.getMethod("dummyInstanceFunction");
// greater than bytecode.length // greater than bytecode.length
int[] bcis = new int[] {30, 50, 200}; byte[] bytecode = CompilerToVMHelper.getBytecode(CTVMUtilities
for (int bci : bcis) { .getResolvedMethod(method));
result.add(new Pair<>( Stream.of(
new CompileCodeTestCase(receiver, method, bci), // greater than bytecode.length
IllegalArgumentException.class)); bytecode.length + 4,
} bytecode.length + 50,
bcis = new int[] {-4, -50, -200}; bytecode.length + 200,
for (int bci : bcis) { // negative cases
result.add(new Pair<>( -4, -50, -200)
new CompileCodeTestCase(receiver, method, bci), .map(bci -> new Pair<CompileCodeTestCase,
IllegalArgumentException.class)); Class<? extends Throwable>>(
} new CompileCodeTestCase(receiver, method, bci),
IllegalArgumentException.class))
.collect(Collectors.toList());
} catch (NoSuchMethodException e) { } catch (NoSuchMethodException e) {
throw new Error("TEST BUG : " + e.getMessage(), e); throw new Error("TEST BUG : " + e.getMessage(), e);
} }
@ -117,27 +114,20 @@ public class AllocateCompileIdTest {
System.out.println(testCase); System.out.println(testCase);
Executable aMethod = testCase.executable; Executable aMethod = testCase.executable;
// to generate ciTypeFlow // to generate ciTypeFlow
System.out.println(testCase.invoke(Utils.getNullValues(aMethod.getParameterTypes()))); testCase.invoke(Utils.getNullValues(aMethod.getParameterTypes()));
int bci = testCase.bci; int bci = testCase.bci;
HotSpotResolvedJavaMethod method = CTVMUtilities HotSpotResolvedJavaMethod method = CTVMUtilities
.getResolvedMethod(aMethod); .getResolvedMethod(aMethod);
int wbCompileID = getWBCompileID(testCase); for (int i = 0; i < SOME_REPEAT_VALUE; ++i) {
int id = CompilerToVMHelper.allocateCompileId(method, bci); int wbCompileID = getWBCompileID(testCase);
Asserts.assertNE(id, 0, testCase + " : zero compile id"); int id = CompilerToVMHelper.allocateCompileId(method, bci);
Asserts.assertNE(id, 0, testCase + " : zero compile id");
if (wbCompileID > 0) {
Asserts.assertGT(id, wbCompileID, testCase Asserts.assertGT(id, wbCompileID, testCase
+ " : allocated 'compile id' not greater than existed"); + " : allocated 'compile id' not greater than existed");
if (!ids.add(wbCompileID)) { Asserts.assertTrue(ids.add(wbCompileID), testCase
throw new AssertionError(String.format( + " : vm compilation allocated existing id " + id);
"%s : vm compilation allocated existed id -- %d", Asserts.assertTrue(ids.add(id), testCase
testCase, id)); + " : allocateCompileId returned existing id " + id);
}
}
if (!ids.add(id)) {
throw new AssertionError(String.format(
"%s : allocateCompileId returned existed id %d",
testCase, id));
} }
} }
@ -156,8 +146,8 @@ public class AllocateCompileIdTest {
private int getWBCompileID(CompileCodeTestCase testCase) { private int getWBCompileID(CompileCodeTestCase testCase) {
NMethod nm = testCase.deoptimizeAndCompile(); NMethod nm = testCase.deoptimizeAndCompile();
if (nm == null) { if (nm == null || nm.compile_id <= 0) {
throw new Error("[TEST BUG] cannot compile method " + testCase); throw new Error("TEST BUG : cannot compile method " + testCase);
} }
return nm.compile_id; return nm.compile_id;
} }