We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c19e5 commit 24adb5aCopy full SHA for 24adb5a
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/meta/HostedUniverse.java
@@ -34,6 +34,8 @@
34
import java.util.Map;
35
import java.util.Optional;
36
import java.util.TreeSet;
37
+import java.util.function.Predicate;
38
+import java.util.stream.Collectors;
39
40
import org.graalvm.compiler.api.replacements.SnippetReflectionProvider;
41
import org.graalvm.compiler.nodes.StructuredGraph;
@@ -438,7 +440,9 @@ public Collection<HostedField> getFields() {
438
440
}
439
441
442
public Collection<HostedMethod> getMethods() {
- return orderedMethods;
443
+ return orderedMethods.stream()
444
+ .filter(Predicate.not(HostedMethod::isDeoptTarget))
445
+ .collect(Collectors.toList());
446
447
448
public Inflation getBigBang() {
0 commit comments