You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: substratevm/src/com.oracle.svm.graal/src/com/oracle/svm/graal/hosted/runtimecompilation/RuntimeCompilationFeature.java
for (Infopointinfopoint : result.getInfopoints()) {
297
297
if (infopoint.debugInfo != null) {
@@ -500,29 +500,28 @@ public static Collection<ResolvedJavaMethod> registerDeoptEntries(StructuredGrap
500
500
* We also do not allow class initialization at run time to ensure the partial evaluator does
501
501
* not constant fold uninitialized fields.
502
502
*/
503
-
publicstaticfinalNodePredicateruntimeCompilationInvalidNodes = n -> NodePredicates.isA(StackValueNode.class).or(NodePredicates.isA(EnsureClassInitializedNode.class)).test(n);
503
+
publicstaticfinalNodePredicateRUNTIME_COMPILATION_INVALID_NODES = n -> NodePredicates.isA(StackValueNode.class).or(NodePredicates.isA(EnsureClassInitializedNode.class)).test(n);
504
504
505
-
privatestaticfinalNodePredicatestackOnly = n -> NodePredicates.isA(StackValueNode.class).test(n);
505
+
publicstaticfinalNodePredicateAOT_COMPILATION_INVALID_NODES = n -> NodePredicates.isA(StackValueNode.class).test(n);
506
506
507
507
/**
508
-
* @return Supplier which returns true if the graph contains invalid nodes.
508
+
* @return Supplier which returns true if the graph does not violate the checks.
0 commit comments