# HG changeset patch # User Thomas Wuerthinger # Date 1447753191 -3600 # Node ID e383595f122b36fd663bef32831356b4b15cc4eb # Parent 4c616f79b858bc1b11158072c7333283f1d31dad Re-add RemoveValueProxyPhase in LowTier. diff -r 4c616f79b858 -r e383595f122b graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java Tue Nov 17 01:37:53 2015 +0100 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java Tue Nov 17 10:39:51 2015 +0100 @@ -39,6 +39,7 @@ import com.oracle.graal.phases.common.IterativeConditionalEliminationPhase; import com.oracle.graal.phases.common.LoweringPhase; import com.oracle.graal.phases.common.ProfileCompiledMethodsPhase; +import com.oracle.graal.phases.common.RemoveValueProxyPhase; import com.oracle.graal.phases.common.UseTrappingNullChecksPhase; import com.oracle.graal.phases.common.instrumentation.InlineInstrumentationPhase; import com.oracle.graal.phases.tiers.LowTierContext; @@ -69,6 +70,8 @@ appendPhase(new InlineInstrumentationPhase()); } + appendPhase(new RemoveValueProxyPhase()); + appendPhase(new ExpandLogicPhase()); /* Cleanup IsNull checks resulting from MID_TIER/LOW_TIER lowering and ExpandLogic phase. */