Commit 5e59d472 by Tom de Vries Committed by Tom de Vries

re PR middle-end/45098 (Missed induction variable optimization)

2011-06-14  Tom de Vries  <tom@codesourcery.com>

	PR target/45098
	* gcc.target/arm/ivopts-3.c: New test.
	* gcc.target/arm/ivopts-4.c: New test.
	* gcc.target/arm/ivopts-5.c: New test.

From-SVN: r175025
parent 8a76c4a0
2011-06-14 Tom de Vries <tom@codesourcery.com>
PR target/45098
* gcc.target/arm/ivopts-3.c: New test.
* gcc.target/arm/ivopts-4.c: New test.
* gcc.target/arm/ivopts-5.c: New test.
2011-06-14 Jakub Jelinek <jakub@redhat.com> 2011-06-14 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/49390 PR rtl-optimization/49390
......
/* { dg-do assemble } */
/* { dg-options "-Os -mthumb -fdump-tree-ivopts -save-temps" } */
extern unsigned int foo2 (short*) __attribute__((pure));
unsigned int
tr3 (short array[], unsigned int n)
{
int sum = 0;
unsigned int x;
x = 0;
while (1)
{
sum += foo2 (&array[x]);
if (!(x < n))
break;
x++;
}
return sum;
}
/* { dg-final { scan-tree-dump-times "PHI <ivtmp" 1 "ivopts"} } */
/* { dg-final { scan-tree-dump-times "PHI <x" 0 "ivopts"} } */
/* { dg-final { scan-tree-dump-times ", x" 0 "ivopts"} } */
/* { dg-final { object-size text <= 30 { target arm_thumb2_ok } } } */
/* { dg-final { cleanup-tree-dump "ivopts" } } */
/* { dg-do assemble } */
/* { dg-options "-mthumb -Os -fdump-tree-ivopts -save-temps" } */
extern unsigned int foo (int*) __attribute__((pure));
unsigned int
tr2 (int array[], int n)
{
unsigned int sum = 0;
int x;
if (n > 0)
for (x = 0; x < n; x++)
sum += foo (&array[x]);
return sum;
}
/* { dg-final { scan-tree-dump-times "PHI <ivtmp" 1 "ivopts"} } */
/* { dg-final { scan-tree-dump-times "PHI <x" 0 "ivopts"} } */
/* { dg-final { scan-tree-dump-times ", x" 0 "ivopts"} } */
/* { dg-final { object-size text <= 36 { target arm_thumb2_ok } } } */
/* { dg-final { cleanup-tree-dump "ivopts" } } */
/* { dg-do assemble } */
/* { dg-options "-Os -mthumb -fdump-tree-ivopts -save-temps" } */
extern unsigned int foo (int*) __attribute__((pure));
unsigned int
tr1 (int array[], unsigned int n)
{
int sum = 0;
unsigned int x;
x = 0;
while (1)
{
sum += foo (&array[x]);
if (!(x < n))
break;
x++;
}
return sum;
}
/* { dg-final { scan-tree-dump-times "PHI <ivtmp" 1 "ivopts"} } */
/* { dg-final { scan-tree-dump-times "PHI <x" 0 "ivopts"} } */
/* { dg-final { scan-tree-dump-times ", x" 0 "ivopts"} } */
/* { dg-final { object-size text <= 30 { target arm_thumb2_ok } } } */
/* { dg-final { cleanup-tree-dump "ivopts" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment