# HG changeset patch # User Doug Simon # Date 1424095866 -3600 # Node ID a9ff83864e8c58a7c7334c9c59c3046c8def333d # Parent 7d924ac67522659e6a2694d13e568e4c7e19a8a6 rename: tryUsingInvocationPlugin -> tryInvocationPlugin diff -r 7d924ac67522 -r a9ff83864e8c graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java --- a/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Mon Feb 16 14:32:53 2015 +0100 +++ b/graal/com.oracle.graal.java/src/com/oracle/graal/java/GraphBuilderPhase.java Mon Feb 16 15:11:06 2015 +0100 @@ -859,7 +859,7 @@ } } - if (tryUsingInvocationPlugin(args, targetMethod, resultType)) { + if (tryInvocationPlugin(args, targetMethod, resultType)) { if (GraalOptions.TraceInlineDuringParsing.getValue()) { for (int i = 0; i < this.currentDepth; ++i) { TTY.print(' '); @@ -887,7 +887,7 @@ } } - private boolean tryUsingInvocationPlugin(ValueNode[] args, ResolvedJavaMethod targetMethod, Kind resultType) { + private boolean tryInvocationPlugin(ValueNode[] args, ResolvedJavaMethod targetMethod, Kind resultType) { InvocationPlugin plugin = graphBuilderConfig.getInvocationPlugins().lookupInvocation(targetMethod); if (plugin != null) { int beforeStackSize = frameState.stackSize; @@ -935,8 +935,6 @@ plugin.postInline(inlinedMethod); } return true; - } else { - System.out.println("Could not inline invoke " + targetMethod.format("%H.%n(%p)")); } return false;