IVOPT improvement patch

Zdenek Dvorak rakdver@kam.mff.cuni.cz
Thu May 27 22:48:00 GMT 2010


Hi,

> >> patch-2:
> >>
> >> This patch address PR31792 -- sinking computation of replaced IV out
> >> of the loop when it is live outside loop only.
> >
> > ivopts seems like a wrong place for this optimization; it is already quite
> > complicated as it is, and should not do things that are only marginally
> > related.  Won't scheduling pass_sink_code after ivopts do the same thing?
> 
> There are reasons pass_sink_code can not do this -- the RHS of the
> computation that can be sinked are loop variant

that should not be a problem, it suffices that the computed value is only
used on the exit edge.

> -- though only the
> value from last iteration matters.
> 
> What is more important is that this has impact on the cost computation
> and iv selection -- without this, the use (nonlinear) cost of  the
> live out only ivs can be high and the IVOPT may end up keeping the
> original induction variable in the loop.

Well, you can just adjust the cost for the expected sinking, and let
pass_sink_code do it; that is the simple part of the patch.  Btw.

+
+  if (use->use_pos == IU_OUTSIDE_LOOP_ONLY && !infinite_cost_p (cost))
+    cost.cost /= AVG_LOOP_NITER (data->current_loop);

This causes the loop invariant parts of the cost to be divided by AVG_LOOP_NITER
twice.

Zdenek



More information about the Gcc-patches mailing list