public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/30665]  New: peephole2 misapplied on postinc mem
@ 2007-02-01 11:34 hp at gcc dot gnu dot org
  2007-02-01 11:35 ` [Bug target/30665] " hp at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hp at gcc dot gnu dot org @ 2007-02-01 11:34 UTC (permalink / raw)
  To: gcc-bugs

This testcase is miscompiled on all versions of GCC (visible on r111226):
int  __attribute__ ((__noinline__)) f (unsigned *p, int *x)
{
  int y = *p++ & 0xfff;
  *x++ = y;
  *x = *p;
  return y;
}

int main (void)
{
  unsigned u[2] = { 0xbaad, 0xdad1 };
  int x[2] = {17689, 23456};

  if (f (u, x) != 0xaad || x[0] != 0xaad || x[1] != 0xdad1)
    abort ();
  exit (0);
}

It's caused by the cris.md peephole2 marked "andu (casesi+45)" allowing
post-inc memory in operand 1, effectively "shrinking" the post-inc.
The fix is to replace all "(GET_CODE (operands[1]) != MEM || ! MEM_VOLATILE_P
(operands[1]))" with "!side_effects_p (operands[1])" everywhere.


-- 
           Summary: peephole2 misapplied on postinc mem
           Product: gcc
           Version: 3.2.1
            Status: UNCONFIRMED
          Keywords: wrong-code
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: hp at gcc dot gnu dot org
        ReportedBy: hp at gcc dot gnu dot org
GCC target triplet: cris-*


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30665


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-02-05 21:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-01 11:34 [Bug target/30665] New: peephole2 misapplied on postinc mem hp at gcc dot gnu dot org
2007-02-01 11:35 ` [Bug target/30665] " hp at gcc dot gnu dot org
2007-02-05 21:21 ` hp at gcc dot gnu dot org
2007-02-05 21:22 ` hp at gcc dot gnu dot org
2007-02-05 21:44 ` hp at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).