Commit 9910c53c by Joey Ye Committed by Joey Ye

PR target/PR60169

2014-02-28  Joey Ye  <joey.ye@arm.com>

        PR target/PR60169
	* config/arm/arm.c (thumb_far_jump_used_p): Don't change
	if reload in progress or completed.

testsuite:
	* gcc.target/arm/thumb1-far-jump-3.c: New case.

From-SVN: r208217
parent 070f0309
2014-02-28 Joey Ye <joey.ye@arm.com>
PR target/PR60169
* config/arm/arm.c (thumb_far_jump_used_p): Don't change
if reload in progress or completed.
2014-02-28 Tobias Burnus <burnus@net-b.de>
PR middle-end/60147
......
......@@ -26255,6 +26255,11 @@ thumb_far_jump_used_p (void)
return 0;
}
/* We should not change far_jump_used during or after reload, as there is
no chance to change stack frame layout. */
if (reload_in_progress || reload_completed)
return 0;
/* Check to see if the function contains a branch
insn with the far jump attribute set. */
for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
......
2014-02-28 Joey Ye <joey.ye@arm.com>
PR target/PR60169
* gcc.target/arm/thumb1-far-jump-3.c: New case.
2014-02-27 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/60253
......
/* Catch reload ICE on target thumb1 with far jump optimization.
* It is also a valid case for non-thumb1 target. */
/* Add -mno-lra option as it is only reproducable with reload. It will
be removed after reload is completely removed. */
/* { dg-options "-mno-lra -fomit-frame-pointer" } */
/* { dg-do compile } */
#define C 2
#define A 4
#define RGB (C | A)
#define GRAY (A)
typedef unsigned long uint_32;
typedef unsigned char byte;
typedef byte * bytep;
typedef struct ss
{
uint_32 w;
uint_32 r;
byte c;
byte b;
byte p;
} info;
typedef info * infop;
void
foo(infop info, bytep row)
{
uint_32 iw = info->w;
if (info->c == RGB)
{
if (info->b == 8)
{
bytep sp = row + info->r;
bytep dp = sp;
byte save;
uint_32 i;
for (i = 0; i < iw; i++)
{
save = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = save;
}
}
else
{
bytep sp = row + info->r;
bytep dp = sp;
byte save[2];
uint_32 i;
for (i = 0; i < iw; i++)
{
save[0] = *(--sp);
save[1] = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = save[0];
*(--dp) = save[1];
}
}
}
else if (info->c == GRAY)
{
if (info->b == 8)
{
bytep sp = row + info->r;
bytep dp = sp;
byte save;
uint_32 i;
for (i = 0; i < iw; i++)
{
save = *(--sp);
*(--dp) = *(--sp);
*(--dp) = save;
}
}
else
{
bytep sp = row + info->r;
bytep dp = sp;
byte save[2];
uint_32 i;
for (i = 0; i < iw; i++)
{
save[0] = *(--sp);
save[1] = *(--sp);
*(--dp) = *(--sp);
*(--dp) = *(--sp);
*(--dp) = save[0];
*(--dp) = save[1];
}
}
}
}
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