Searched refs:processedGraphs (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/walker/
H A DMethodInvocation.java52 private int processedGraphs; field in class:MethodInvocation
89 processedGraphs++;
90 assert processedGraphs <= callee.numberOfMethods();
93 public int processedGraphs() { method in class:MethodInvocation
94 assert processedGraphs <= callee.numberOfMethods();
95 return processedGraphs;
H A DInliningData.java713 int remainingGraphs = currentInvocation.totalGraphs() - currentInvocation.processedGraphs();
734 if (currentInvocation.processedGraphs() == currentInvocation.totalGraphs()) {
770 final int remainingGraphs = currentInvocation().totalGraphs() - currentInvocation().processedGraphs();

Completed in 35 milliseconds