public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/47148] New: likely wrong code bug
@ 2011-01-01 18:40 regehr at cs dot utah.edu
  2011-01-01 20:07 ` [Bug tree-optimization/47148] [4.6 Regression] " jakub at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: regehr at cs dot utah.edu @ 2011-01-01 18:40 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: likely wrong code bug
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: regehr@cs.utah.edu
                CC: chenyang@cs.utah.edu
              Host: x86_64-unknown-linux-gnu
            Target: x86_64-unknown-linux-gnu
             Build: x86_64-unknown-linux-gnu


[regehr@gamow tmp436]$ current-gcc -O1 small.c -o small 
[regehr@gamow tmp436]$ ./small
0
[regehr@gamow tmp436]$ current-gcc -O2 small.c -o small
[regehr@gamow tmp436]$ ./small
1
[regehr@gamow tmp436]$ current-gcc -v
Using built-in specs.
COLLECT_GCC=current-gcc
COLLECT_LTO_WRAPPER=/uusoc/exports/scratch/regehr/z/compiler-install/gcc-r168380-install/bin/../libexec/gcc/x86_64-unknown-linux-gnu/4.6.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../configure --with-libelf=/usr/local --enable-lto
--prefix=/home/regehr/z/compiler-install/gcc-r168380-install
--program-prefix=r168380- --enable-languages=c,c++
Thread model: posix
gcc version 4.6.0 20101231 (experimental) (GCC) 
[regehr@gamow tmp436]$ cat small.c


int printf(const char *format, ...);

static unsigned div(unsigned p1, unsigned p2)
{
  return p1 / p2;
}

static unsigned rshift (unsigned p1, unsigned p2)
{
  if (p2 >= 32)
    return p1;
  else
    return p1 >> p2;
}

static unsigned g_26 = 1;
static unsigned g_78 = 1;

static void func_28 (unsigned char p_30, unsigned p_31)
{
  if (p_31) {
    unsigned l1 = div (0x7000, p_30-2) ^ g_26;
    unsigned l2 = rshift (g_26, g_26);
    unsigned l4 = g_26 - l2;
    g_78 &= (l4 && (g_26-1)) + l1;
  } 
}

static void func_2 (void)
{
  func_28 (1, 1);
}

int main(void)
{
  func_2();
  func_28 (-1, 1);
  printf("%d\n", g_78);
  return 0;
}


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

* [Bug tree-optimization/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
@ 2011-01-01 20:07 ` jakub at gcc dot gnu.org
  2011-01-01 20:17 ` hjl.tools at gmail dot com
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-01 20:07 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
           Keywords|                            |wrong-code
   Last reconfirmed|                            |2011.01.01 20:07:21
          Component|c                           |tree-optimization
                 CC|                            |hubicka at gcc dot gnu.org,
                   |                            |jakub at gcc dot gnu.org
     Ever Confirmed|0                           |1
            Summary|likely wrong code bug       |[4.6 Regression] likely
                   |                            |wrong code bug
   Target Milestone|---                         |4.6.0

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-01 20:07:21 UTC ---
/* PR tree-optimization/47148 */

static inline unsigned
bar (unsigned x, unsigned y)
{
  if (y >= 32)
    return x;
  else
    return x >> y;
}

static unsigned a = 1, b = 1;

static inline void
foo (unsigned char x, unsigned y)
{
  if (!y)
    return;
  unsigned c = (0x7000U / (x - 2)) ^ a;
  unsigned d = bar (a, a);
  b &= ((a - d) && (a - 1)) + c;
}

int
main (void)
{
  foo (1, 1);
  foo (-1, 1);
  if (b && ((unsigned char) -1) == 255)
    __builtin_abort ();
  return 0;
}

Indeed, seems to be caused by partial inlining.  With -fno-partial-inlining it
works fine.


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

* [Bug tree-optimization/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
  2011-01-01 20:07 ` [Bug tree-optimization/47148] [4.6 Regression] " jakub at gcc dot gnu.org
@ 2011-01-01 20:17 ` hjl.tools at gmail dot com
  2011-01-01 20:54 ` [Bug target/47148] " jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: hjl.tools at gmail dot com @ 2011-01-01 20:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> 2011-01-01 20:17:26 UTC ---
It is caused by revision 161433:

http://gcc.gnu.org/ml/gcc-cvs/2010-06/msg01351.html


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
  2011-01-01 20:07 ` [Bug tree-optimization/47148] [4.6 Regression] " jakub at gcc dot gnu.org
  2011-01-01 20:17 ` hjl.tools at gmail dot com
@ 2011-01-01 20:54 ` jakub at gcc dot gnu.org
  2011-01-01 21:03 ` hjl.tools at gmail dot com
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-01 20:54 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|tree-optimization           |target

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-01 20:53:39 UTC ---
It seems this is very much related to the PR46942 ABI screw up.
Apparently sometimes on x86_64 we actually rely on the sign/zero extensions
done by the caller, not to DImode, but just to SImode, not by setting
SUBREG_PROMOTED_P bit in the subregs, but at least in combine.c's
setup_incoming_promotions and thus the zero extension is optimized away.

Normally, e.g. when compiling
static unsigned a = 1, b = 1;

static __attribute__((noinline)) void
foo (unsigned char x)
{
  unsigned c = (0x7000U / (x - 2)) ^ 1;
  b &= c;
}

int
main (void)
{
  foo (1);
  foo (-1);
  if (b && ((unsigned char) -1) == 255)
    __builtin_abort ();
  return 0;
}

the caller indeed does the needed promotions, as CALL_EXPR's argument has int
type rather than unsigned char.  But when calling the artificial foo.part.0,
the
argument passed to it is unsigned char 255 rather than int 255 and it sets a
QImode %rdi register to -1 (i.e. 255) instead of setting SImode %rdi register
to 255, which means it is incorrectly sign extended instead of zero extended.


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
                   ` (2 preceding siblings ...)
  2011-01-01 20:54 ` [Bug target/47148] " jakub at gcc dot gnu.org
@ 2011-01-01 21:03 ` hjl.tools at gmail dot com
  2011-01-01 21:09 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: hjl.tools at gmail dot com @ 2011-01-01 21:03 UTC (permalink / raw)
  To: gcc-bugs

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

H.J. Lu <hjl.tools at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hjl.tools at gmail dot com

--- Comment #4 from H.J. Lu <hjl.tools at gmail dot com> 2011-01-01 21:03:08 UTC ---
(In reply to comment #3)
> the caller indeed does the needed promotions, as CALL_EXPR's argument has int
> type rather than unsigned char.  But when calling the artificial foo.part.0,
> the
> argument passed to it is unsigned char 255 rather than int 255 and it sets a
> QImode %rdi register to -1 (i.e. 255) instead of setting SImode %rdi register
> to 255, which means it is incorrectly sign extended instead of zero extended.

I proposed to update x86-64 psABI to

---
When a value of type _Bool is returned in a register, bit 0 contains the truth
value and bits 1 to 7 shall be zero. When an argument of type _Bool is passed
in a register or on the stack, bit 0 contains the truth value and bits
1 to 31 shall be
zero.

When a value of type signed/unsigned char or short is returned in a register,
bits 0 to 7 for char and bits 0 to 15 for short contain the value and other
bits are left unspecified. When an argument of signed/unsigned type char or
short is passed in a register or on the stack, it shall be sign/zero extended
to
signed/unsigned int.
---

http://gcc.gnu.org/ml/gcc/2010-12/msg00525.html


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
                   ` (3 preceding siblings ...)
  2011-01-01 21:03 ` hjl.tools at gmail dot com
@ 2011-01-01 21:09 ` jakub at gcc dot gnu.org
  2011-01-02 11:29 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-01 21:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-01 21:08:40 UTC ---
Maybe it is fnsplit fault, it might want to look at DECL_ARG_TYPE of the
PARM_DECL in question (partial inlining means it always has a fndecl, so can
look at its DECL_ARGUMENTS to find that type) and use that type instead of
the type in TYPE_ARG_TYPES.


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
                   ` (4 preceding siblings ...)
  2011-01-01 21:09 ` jakub at gcc dot gnu.org
@ 2011-01-02 11:29 ` jakub at gcc dot gnu.org
  2011-01-03 21:10 ` jakub at gcc dot gnu.org
  2011-01-03 21:13 ` jakub at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-02 11:29 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at gcc dot       |jakub at gcc dot gnu.org
                   |gnu.org                     |

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-02 11:29:08 UTC ---
Created attachment 22879
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22879
gcc46-pr47148.patch

Untested fix on the fnsplit side.


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
                   ` (5 preceding siblings ...)
  2011-01-02 11:29 ` jakub at gcc dot gnu.org
@ 2011-01-03 21:10 ` jakub at gcc dot gnu.org
  2011-01-03 21:13 ` jakub at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-03 21:10 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-03 21:10:33 UTC ---
Author: jakub
Date: Mon Jan  3 21:10:31 2011
New Revision: 168441

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=168441
Log:
    PR tree-optimization/47148
    * ipa-split.c (split_function): Convert arguments to
    DECL_ARG_TYPE if possible.

    * gcc.c-torture/execute/pr47148.c: New test.

Added:
    trunk/gcc/testsuite/gcc.c-torture/execute/pr47148.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-split.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug target/47148] [4.6 Regression] likely wrong code bug
  2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
                   ` (6 preceding siblings ...)
  2011-01-03 21:10 ` jakub at gcc dot gnu.org
@ 2011-01-03 21:13 ` jakub at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-03 21:13 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-01-03 21:13:00 UTC ---
Fixed.


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

end of thread, other threads:[~2011-01-03 21:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-01 18:40 [Bug c/47148] New: likely wrong code bug regehr at cs dot utah.edu
2011-01-01 20:07 ` [Bug tree-optimization/47148] [4.6 Regression] " jakub at gcc dot gnu.org
2011-01-01 20:17 ` hjl.tools at gmail dot com
2011-01-01 20:54 ` [Bug target/47148] " jakub at gcc dot gnu.org
2011-01-01 21:03 ` hjl.tools at gmail dot com
2011-01-01 21:09 ` jakub at gcc dot gnu.org
2011-01-02 11:29 ` jakub at gcc dot gnu.org
2011-01-03 21:10 ` jakub at gcc dot gnu.org
2011-01-03 21:13 ` jakub at gcc dot gnu.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).