Skip to content

Commit

Permalink
ignore JVMCI in CheckGraalInvariants and remove checks related to API…
Browse files Browse the repository at this point in the history
… hidden from Graal
  • Loading branch information
dougxc committed Feb 23, 2021
1 parent 79ebd0d commit 03bb864
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 97 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected boolean shouldProcess(String classpathEntry) {
}
if (classpathEntry.endsWith(".jar")) {
String name = new File(classpathEntry).getName();
return name.contains("jvmci") || name.contains("graal") || name.contains("jdk.internal.vm.compiler");
return name.contains("graal") || name.contains("jdk.internal.vm.compiler");
}
return false;
}
Expand Down Expand Up @@ -345,7 +345,6 @@ public static void runTest(InvariantsTool tool) {
verifiers.add(new VerifyUsageWithEquals(ArithmeticOpTable.Op.class));

verifiers.add(new VerifyDebugUsage());
verifiers.add(new VerifyCallerSensitiveMethods());
verifiers.add(new VerifyVirtualizableUsage());
verifiers.add(new VerifyUpdateUsages());
verifiers.add(new VerifyBailoutUsage());
Expand Down

This file was deleted.

0 comments on commit 03bb864

Please sign in to comment.