Re: Question about Doloop

2010-09-06 Thread Zdenek Dvorak
Hi, > Doloop optimization fails to be applied on the following inner loop > when compiling for PowerPC (GCC -r162294) due to: > > Doloop: number of iterations too costly to compute. strength reduction is performed in ivopts, introducing new variable: for (p = inptr; p < something; p += 3) ..

Question about Doloop

2010-09-05 Thread Revital1 Eres
Hello, Doloop optimization fails to be applied on the following inner loop when compiling for PowerPC (GCC -r162294) due to: Doloop: number of iterations too costly to compute. I do not understand why as the number of iterations is max_cols and I appreciate an explanation. Thanks, Revital 1

Re: A question about doloop

2010-07-26 Thread Alexander Monakov
On Mon, 26 Jul 2010, Revital1 Eres wrote: > > Hello, > > Doloop optimization fails to be applied on the following kernel from > tescase sms-4.c with mainline (-r 162294) due to 'Possible infinite > iteration > case' message; taken from the loop2_doloop dump. (please see below). > With an older

A question about doloop

2010-07-26 Thread Revital1 Eres
Hello, Doloop optimization fails to be applied on the following kernel from tescase sms-4.c with mainline (-r 162294) due to 'Possible infinite iteration case' message; taken from the loop2_doloop dump. (please see below). With an older version of gcc (-r 146278) doloop succeeded to be applied an