This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Loop optimizer issues


On Tue, Jun 03, 2003 at 10:47:26AM +0200, Zdenek Dvorak wrote:
> 
> and one more of mine that I have added due to iv analysis :-( I
> just cannot cope with other rtl simplifiers that hapily "simplify"
> 2*3*4*x to (((x << 2) * 3) << 1).

Note that fold-const.c contains the folder that does what we need:
it turns the "x = 2*3*4*x" into "x = x * 24".

> (also I need to do stuff like using distributive law, which definitely
> is not what other rtl simplifiers want).
> 
We'll have to handle the distributivity law apart, and do the folding then.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]