Commit eefe4e49 by Hale Wang Committed by Xuepeng Guo

re PR rtl-optimization/64818 (User specified register don't work correctly in inline-asm operands.)

gcc/ChangeLog:
2015-04-22  Hale Wang  <hale.wang@arm.com>
            Terry Guo  <terry.guo@arm.com>

       PR rtl-optimization/64818
       * combine.c (can_combine_p): Don't combine user-specified
       register if it is in an asm input.

gcc/testsuite/ChangeLog
2015-04-22  Hale Wang  <hale.wang@arm.com>
            Terry Guo  <terry.guo@arm.com>

       PR rtl-optimization/64818
       * gcc.target/arm/pr64818.c: New test.

Co-Authored-By: Terry Guo <terry.guo@arm.com>

From-SVN: r222306
parent 5a33401e
2015-04-22 Hale Wang <hale.wang@arm.com>
Terry Guo <terry.guo@arm.com>
PR rtl-optimization/64818
* combine.c (can_combine_p): Don't combine user-specified
register if it is in an asm input.
2015-04-21 Jan Hubicka <hubicka@ucw.cz>
PR ipa/65076
......
......@@ -1910,6 +1910,15 @@ can_combine_p (rtx_insn *insn, rtx_insn *i3, rtx_insn *pred ATTRIBUTE_UNUSED,
set = expand_field_assignment (set);
src = SET_SRC (set), dest = SET_DEST (set);
/* Do not eliminate user-specified register if it is in an
asm input because we may break the register asm usage defined
in GCC manual if allow to do so.
Be aware that this may cover more cases than we expect but this
should be harmless. */
if (REG_P (dest) && REG_USERVAR_P (dest) && HARD_REGISTER_P (dest)
&& extract_asm_operands (PATTERN (i3)))
return 0;
/* Don't eliminate a store in the stack pointer. */
if (dest == stack_pointer_rtx
/* Don't combine with an insn that sets a register to itself if it has
......
2015-04-22 Hale Wang <hale.wang@arm.com>
Terry Guo <terry.guo@arm.com>
PR rtl-optimization/64818
* gcc.target/arm/pr64818.c: New test.
2015-04-21 Jan Hubicka <hubicka@ucw.cz>
PR ipa/65076
......
/* { dg-do compile } */
/* { dg-options "-O1" } */
char temp[16];
extern int foo1 (void);
void foo (void)
{
int i;
int len;
while (1)
{
len = foo1 ();
register int a asm ("r0") = 5;
register char *b asm ("r1") = temp;
register int c asm ("r2") = len;
asm volatile ("mov %[r0], %[r0]\n mov %[r1], %[r1]\n mov %[r2], %[r2]\n"
: "+m"(*b)
: [r0]"r"(a), [r1]"r"(b), [r2]"r"(c));
for (i = 0; i < len; i++)
{
if (temp[i] == 10)
return;
}
}
}
/* { dg-final { scan-assembler "\[\\t \]+mov\ r1,\ r1" } } */
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