# HG changeset patch # User Miguel Garcia # Date 1400593507 -7200 # Node ID 066ed90d15a7288596e4c1e860903f3d4ab30500 # Parent f9591dd0b780d1fc9498d20042b2e1b6f850fbd5 [inlining] another renaming to avoid misleading type suggestion (1 of 2) diff -r f9591dd0b780 -r 066ed90d15a7 graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/walker/InliningData.java --- a/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/walker/InliningData.java Tue May 20 15:42:10 2014 +0200 +++ b/graal/com.oracle.graal.phases.common/src/com/oracle/graal/phases/common/inlining/walker/InliningData.java Tue May 20 15:45:07 2014 +0200 @@ -338,15 +338,15 @@ return new ExactInlineInfo(invoke, targetMethod); } - private void doInline(CallsiteHolder callerCallsiteHolder, MethodInvocation calleeInfo, Assumptions callerAssumptions) { + private void doInline(CallsiteHolder callerCallsiteHolder, MethodInvocation calleeInvocation, Assumptions callerAssumptions) { StructuredGraph callerGraph = callerCallsiteHolder.graph(); Graph.Mark markBeforeInlining = callerGraph.getMark(); - InlineInfo callee = calleeInfo.callee(); + InlineInfo callee = calleeInvocation.callee(); try { try (Debug.Scope scope = Debug.scope("doInline", callerGraph)) { List invokeUsages = callee.invoke().asNode().usages().snapshot(); callee.inline(new Providers(context), callerAssumptions); - callerAssumptions.record(calleeInfo.assumptions()); + callerAssumptions.record(calleeInvocation.assumptions()); metricInliningRuns.increment(); Debug.dump(callerGraph, "after %s", callee);