public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite
@ 2007-07-01 22:07 drh at sqlite dot org
2007-07-01 22:16 ` [Bug tree-optimization/32575] " pinskia at gcc dot gnu dot org
` (23 more replies)
0 siblings, 24 replies; 26+ messages in thread
From: drh at sqlite dot org @ 2007-07-01 22:07 UTC (permalink / raw)
To: gcc-bugs
A bug reported against SQLite appears to be a case of GCC 4.3.0
miscompiling a single line of code within SQLite. The problem only
appears with -O2 or -Os. The problem goes away if we add the
-fno-tree-vrp option. The original bug report can be found at
http://www.sqlite.org/cvstrac/tktview?tn=2469
The line of code that is miscompiled is found in the source file
named vdbe.c (version 1.635) on line 4309.
4308 for(j=0; j<nRoot; j++){
4309 aRoot[j] = pTos[-j].u.i;
4310 }
4311 aRoot[j] = 0;
By setting a breakpoint on line 4311 and examining the values
of aRoot[] one finds that all nRoot entries of aRoot[] are being
filled from pTos[0].u.i instead of being filled from pTos[0].u.i,
pTos[-1].u.i, pTos[-2].u.i, and so forth as the loop intends.
I will be happy to supply any additional debugging information
that might help in fixing this problem (such as vdbe.s files
compiled both with and without -fno-tree-vrp). I regret that
I have so far been unable to replicate this problem in a small
test program.
--
Summary: GCC 4.3.0 with -ftree-vrp miscompiles a single line of
code in SQLite
Product: gcc
Version: 4.3.0
Status: UNCONFIRMED
Severity: critical
Priority: P3
Component: c
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: drh at sqlite dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
@ 2007-07-01 22:16 ` pinskia at gcc dot gnu dot org
2007-07-01 22:52 ` [Bug c/32575] " drh at sqlite dot org
` (22 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-07-01 22:16 UTC (permalink / raw)
To: gcc-bugs
------- Comment #1 from pinskia at gcc dot gnu dot org 2007-07-01 22:16 -------
Can you at least provide the preprocessed source of vdbe.c ?
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|c |tree-optimization
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
2007-07-01 22:16 ` [Bug tree-optimization/32575] " pinskia at gcc dot gnu dot org
@ 2007-07-01 22:52 ` drh at sqlite dot org
2007-07-01 23:01 ` [Bug c/32575] GCC 4.2.0 " pinskia at gcc dot gnu dot org
` (21 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: drh at sqlite dot org @ 2007-07-01 22:52 UTC (permalink / raw)
To: gcc-bugs
------- Comment #2 from drh at sqlite dot org 2007-07-01 22:52 -------
(In reply to comment #1)
> Can you at least provide the preprocessed source of vdbe.c ?
>
Certainly. But before I do, I just noticed that I gave the
wrong GCC version number in the bug report. The error is
in GCC 4.2.0, not 4.3.0 as reported. I have not attempted
to compile or test version 4.3.0.
I have prepared a tarball containing the complete SQLite
source code that can be compiled using a single command
such as:
gcc *.c -ldl -lpthread
There is a README file in the tarball that describes this
compilation step and which tells how to test (with a second
command) whether or not the bug is present in your build.
You can download the tarball from:
http://www.sqlite.org/gccbug32575.tar.gz
--
drh at sqlite dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |drh at sqlite dot org
Component|tree-optimization |c
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] GCC 4.2.0 with -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
2007-07-01 22:16 ` [Bug tree-optimization/32575] " pinskia at gcc dot gnu dot org
2007-07-01 22:52 ` [Bug c/32575] " drh at sqlite dot org
@ 2007-07-01 23:01 ` pinskia at gcc dot gnu dot org
2007-07-22 11:43 ` drh at sqlite dot org
` (20 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-07-01 23:01 UTC (permalink / raw)
To: gcc-bugs
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |pinskia at gcc dot gnu dot
| |org
Severity|critical |normal
Keywords| |wrong-code
Summary|GCC 4.3.0 with -ftree-vrp |GCC 4.2.0 with -ftree-vrp
|miscompiles a single line of|miscompiles a single line of
|code in SQLite |code in SQLite
Version|4.3.0 |4.2.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] GCC 4.2.0 with -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (2 preceding siblings ...)
2007-07-01 23:01 ` [Bug c/32575] GCC 4.2.0 " pinskia at gcc dot gnu dot org
@ 2007-07-22 11:43 ` drh at sqlite dot org
2007-08-28 14:55 ` [Bug c/32575] [4.2/4.3 regression] With " jakub at gcc dot gnu dot org
` (19 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: drh at sqlite dot org @ 2007-07-22 11:43 UTC (permalink / raw)
To: gcc-bugs
------- Comment #3 from drh at sqlite dot org 2007-07-22 11:43 -------
Follow-up comments to the original bug report in SQLite
(see the link shown above) report that the same problem
exists in GCC 4.2.1. A work-around for SQLite was
devised, which was to change a single line of code:
- aRoot[j] = pTos[-j].u.i;
+ aRoot[j] = (pTos-j)->u.i;
There are many other places in the SQLite code that
have similar constructs, but this one instance seems
to be the only one that gives GCC trouble.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (3 preceding siblings ...)
2007-07-22 11:43 ` drh at sqlite dot org
@ 2007-08-28 14:55 ` jakub at gcc dot gnu dot org
2007-08-28 15:16 ` jakub at gcc dot gnu dot org
` (18 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-08-28 14:55 UTC (permalink / raw)
To: gcc-bugs
------- Comment #4 from jakub at gcc dot gnu dot org 2007-08-28 14:55 -------
On the trunk I'm just seeing
*** in database main ***
Page 2 is never used
That seems to be because of miscompiled sqlite3SelectNew function with
-O2 -fstrict-aliasing, with -O2 -fno-strict-aliasing that works.
Here is a reduced self-contained testcase for that:
extern void abort (void);
struct S
{
void *s1;
unsigned char s2, s3, s4, s5, s6, s7;
char s8;
void *s9, *s10, *s11, *s12, *s13;
struct S *s14, *s15;
void *s16, *s17;
int s18, s19, s20[3];
};
__attribute__((noinline))
void *foo (int x, int y)
{
static struct S s;
if (x != sizeof (struct S) || y != 1)
abort ();
return &s;
}
__attribute__((noinline))
void bar (struct S *p)
{
asm volatile ("" : "=m" (*p) : "m" (*p));
}
__attribute__((noinline))
void *baz1 (void *x, void *y,void *z)
{
if (y || z)
abort ();
return x;
}
__attribute__((noinline))
void *baz2 (int x, void *y, void *z, void *a)
{
if (x || y || z || a)
abort ();
return (void *) 0;
}
__attribute__((noinline))
struct S *test (void *a, void *b, void *c, void *d, void *e, void *f, int g,
void *h, void *i)
{
struct S *p, q;
p = foo (sizeof (*p), 1);
if (p == 0)
{
p = &q;
__builtin_memset (p, 0, sizeof (*p));
}
if (a == 0)
a = baz1(0, baz2(107,0,0,0), 0);
p->s1 = a;
p->s9 = b;
p->s10 = c;
p->s11 = d;
p->s12 = e;
p->s13 = f;
p->s3 = g;
p->s2 = 110;
p->s16 = h;
p->s17 = i;
p->s18 = -1;
p->s19 = -1;
p->s20[0] = -1;
p->s20[1] = -1;
p->s20[2] = -1;
if (p == &q)
{
bar(p);
p = 0;
}
return p;
}
int
main (void)
{
int a;
int b;
struct S *z = test ((void *) &a, (void *) &b, 0, 0, 0, 0, 0, 0, 0);
if (z == 0)
abort ();
if (z->s1 != (void *) &a || z->s2 != 110 || z->s3 || z->s4)
abort ();
if (z->s5 || z->s6 || z->s7 || z->s8)
abort ();
if (z->s9 != (void *) &b || z->s10 || z->s11 || z->s12)
abort ();
if (z->s13 || z->s14 || z->s15 || z->s16)
abort ();
if (z->s17 || z->s18 != -1 || z->s19 != -1)
abort ();
if (z->s20[0] != -1 || z->s20[1] != -1 || z->s20[2] != -1)
abort ();
return 0;
}
--
jakub at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|GCC 4.2.0 with -ftree-vrp |[4.2/4.3 regression] With -
|miscompiles a single line of|ftree-vrp miscompiles a
|code in SQLite |single line of code in
| |SQLite
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (4 preceding siblings ...)
2007-08-28 14:55 ` [Bug c/32575] [4.2/4.3 regression] With " jakub at gcc dot gnu dot org
@ 2007-08-28 15:16 ` jakub at gcc dot gnu dot org
2007-08-28 15:58 ` jakub at gcc dot gnu dot org
` (17 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-08-28 15:16 UTC (permalink / raw)
To: gcc-bugs
------- Comment #5 from jakub at gcc dot gnu dot org 2007-08-28 15:16 -------
Even more simplified testcase:
extern void abort (void);
struct S
{
void *s1, *s2;
unsigned char s3, s4, s5;
};
__attribute__((noinline))
void *foo (void)
{
static struct S s;
return &s;
}
__attribute__((noinline))
void *bar ()
{
return (void *) 0;
}
__attribute__((noinline))
struct S *test (void *a, void *b)
{
struct S *p, q;
p = foo ();
if (p == 0)
{
p = &q;
__builtin_memset (p, 0, sizeof (*p));
}
if (a == 0)
a = bar ();
p->s1 = a;
p->s2 = b;
if (p == &q)
p = 0;
return p;
}
int
main (void)
{
int a;
int b;
struct S *z = test ((void *) &a, (void *) &b);
if (z == 0 || z->s1 != (void *) &a || z->s2 != (void *) &b || z->s3 || z->s4)
abort ();
return 0;
}
--
jakub at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu dot org
Target Milestone|--- |4.2.2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug c/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (5 preceding siblings ...)
2007-08-28 15:16 ` jakub at gcc dot gnu dot org
@ 2007-08-28 15:58 ` jakub at gcc dot gnu dot org
2007-09-05 11:50 ` Daniel Berlin
2007-08-30 21:19 ` [Bug middle-end/32575] " pinskia at gcc dot gnu dot org
` (16 subsequent siblings)
23 siblings, 1 reply; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-08-28 15:58 UTC (permalink / raw)
To: gcc-bugs
------- Comment #6 from jakub at gcc dot gnu dot org 2007-08-28 15:58 -------
if (a == 0) a = bar (); isn't necessary either.
salias has:
# BLOCK 2 freq:10000
# PRED: ENTRY [100.0%] (fallthru,exec)
# VUSE <qD.2026_12(D), SMT.25D.2079_13(D)> { qD.2026 SMT.25D.2079 }
D.2027_3 = foo ();
pD.2025_4 = (struct S *) D.2027_3;
if (pD.2025_4 == 0B)
goto <bb 3>;
else
goto <bb 4>;
# SUCC: 3 [7.3%] (true,exec) 4 [92.7%] (false,exec)
# BLOCK 3 freq:735
# PRED: 2 [7.3%] (true,exec)
# qD.2026_15 = VDEF <qD.2026_12(D)>
# SMT.25D.2079_16 = VDEF <SMT.25D.2079_13(D)>
# SMT.26D.2080_17 = VDEF <SMT.26D.2080_14(D)> { qD.2026 SMT.25D.2079
SMT.26D.2080 }
__builtin_memset (&qD.2026, 0, 24);
# SUCC: 4 [100.0%] (fallthru,exec)
# BLOCK 4 freq:10000
# PRED: 2 [92.7%] (false,exec) 3 [100.0%] (fallthru,exec)
# qD.2026_11 = PHI <qD.2026_12(D)(2), qD.2026_15(3)>
# pD.2025_1 = PHI <pD.2025_4(2), &qD.2026(3)>
# qD.2026_18 = VDEF <qD.2026_11> { qD.2026 }
pD.2025_1->s1D.2008 = aD.2021_6(D);
# qD.2026_19 = VDEF <qD.2026_18> { qD.2026 }
pD.2025_1->s2D.2009 = bD.2022_7(D);
Shouldn't the VDEFs be a PHI of some SMT and qD? pD.2025_1 can either be what
foo returned, or it can point to the automatic variable q.
--
jakub at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.2.2 |---
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug middle-end/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (6 preceding siblings ...)
2007-08-28 15:58 ` jakub at gcc dot gnu dot org
@ 2007-08-30 21:19 ` pinskia at gcc dot gnu dot org
2007-09-05 0:56 ` mmitchel at gcc dot gnu dot org
` (15 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-30 21:19 UTC (permalink / raw)
To: gcc-bugs
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|c |middle-end
Target Milestone|--- |4.2.2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug middle-end/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (7 preceding siblings ...)
2007-08-30 21:19 ` [Bug middle-end/32575] " pinskia at gcc dot gnu dot org
@ 2007-09-05 0:56 ` mmitchel at gcc dot gnu dot org
2007-09-05 11:51 ` dberlin at dberlin dot org
` (14 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-09-05 0:56 UTC (permalink / raw)
To: gcc-bugs
--
mmitchel at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P3 |P1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [Bug c/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-08-28 15:58 ` jakub at gcc dot gnu dot org
@ 2007-09-05 11:50 ` Daniel Berlin
0 siblings, 0 replies; 26+ messages in thread
From: Daniel Berlin @ 2007-09-05 11:50 UTC (permalink / raw)
To: gcc-bugzilla; +Cc: gcc-bugs
On 28 Aug 2007 15:58:29 -0000, jakub at gcc dot gnu dot org
<gcc-bugzilla@gcc.gnu.org> wrote:
>
>
> ------- Comment #6 from jakub at gcc dot gnu dot org 2007-08-28 15:58 -------
> if (a == 0) a = bar (); isn't necessary either.
>
> salias has:
>
> # BLOCK 2 freq:10000
> # PRED: ENTRY [100.0%] (fallthru,exec)
> # VUSE <qD.2026_12(D), SMT.25D.2079_13(D)> { qD.2026 SMT.25D.2079 }
> D.2027_3 = foo ();
> pD.2025_4 = (struct S *) D.2027_3;
> if (pD.2025_4 == 0B)
> goto <bb 3>;
> else
> goto <bb 4>;
> # SUCC: 3 [7.3%] (true,exec) 4 [92.7%] (false,exec)
>
> # BLOCK 3 freq:735
> # PRED: 2 [7.3%] (true,exec)
> # qD.2026_15 = VDEF <qD.2026_12(D)>
> # SMT.25D.2079_16 = VDEF <SMT.25D.2079_13(D)>
> # SMT.26D.2080_17 = VDEF <SMT.26D.2080_14(D)> { qD.2026 SMT.25D.2079
> SMT.26D.2080 }
> __builtin_memset (&qD.2026, 0, 24);
> # SUCC: 4 [100.0%] (fallthru,exec)
>
> # BLOCK 4 freq:10000
> # PRED: 2 [92.7%] (false,exec) 3 [100.0%] (fallthru,exec)
> # qD.2026_11 = PHI <qD.2026_12(D)(2), qD.2026_15(3)>
> # pD.2025_1 = PHI <pD.2025_4(2), &qD.2026(3)>
> # qD.2026_18 = VDEF <qD.2026_11> { qD.2026 }
> pD.2025_1->s1D.2008 = aD.2021_6(D);
> # qD.2026_19 = VDEF <qD.2026_18> { qD.2026 }
> pD.2025_1->s2D.2009 = bD.2022_7(D);
>
> Shouldn't the VDEFs be a PHI of some SMT and qD?
For VDEF/VUSE, you will never have a PHI of anything other than
multiple versions of the same SMT/virtual variable.
The above looks right to me at a glance.
It is probably pruning the result using TBAA which is what p->s isn't
thought to access the SMT.
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug middle-end/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (8 preceding siblings ...)
2007-09-05 0:56 ` mmitchel at gcc dot gnu dot org
@ 2007-09-05 11:51 ` dberlin at dberlin dot org
2007-09-07 14:14 ` rguenth at gcc dot gnu dot org
` (13 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: dberlin at dberlin dot org @ 2007-09-05 11:51 UTC (permalink / raw)
To: gcc-bugs
------- Comment #7 from dberlin at gcc dot gnu dot org 2007-09-05 11:50 -------
Subject: Re: [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of
code in SQLite
On 28 Aug 2007 15:58:29 -0000, jakub at gcc dot gnu dot org
<gcc-bugzilla@gcc.gnu.org> wrote:
>
>
> ------- Comment #6 from jakub at gcc dot gnu dot org 2007-08-28 15:58 -------
> if (a == 0) a = bar (); isn't necessary either.
>
> salias has:
>
> # BLOCK 2 freq:10000
> # PRED: ENTRY [100.0%] (fallthru,exec)
> # VUSE <qD.2026_12(D), SMT.25D.2079_13(D)> { qD.2026 SMT.25D.2079 }
> D.2027_3 = foo ();
> pD.2025_4 = (struct S *) D.2027_3;
> if (pD.2025_4 == 0B)
> goto <bb 3>;
> else
> goto <bb 4>;
> # SUCC: 3 [7.3%] (true,exec) 4 [92.7%] (false,exec)
>
> # BLOCK 3 freq:735
> # PRED: 2 [7.3%] (true,exec)
> # qD.2026_15 = VDEF <qD.2026_12(D)>
> # SMT.25D.2079_16 = VDEF <SMT.25D.2079_13(D)>
> # SMT.26D.2080_17 = VDEF <SMT.26D.2080_14(D)> { qD.2026 SMT.25D.2079
> SMT.26D.2080 }
> __builtin_memset (&qD.2026, 0, 24);
> # SUCC: 4 [100.0%] (fallthru,exec)
>
> # BLOCK 4 freq:10000
> # PRED: 2 [92.7%] (false,exec) 3 [100.0%] (fallthru,exec)
> # qD.2026_11 = PHI <qD.2026_12(D)(2), qD.2026_15(3)>
> # pD.2025_1 = PHI <pD.2025_4(2), &qD.2026(3)>
> # qD.2026_18 = VDEF <qD.2026_11> { qD.2026 }
> pD.2025_1->s1D.2008 = aD.2021_6(D);
> # qD.2026_19 = VDEF <qD.2026_18> { qD.2026 }
> pD.2025_1->s2D.2009 = bD.2022_7(D);
>
> Shouldn't the VDEFs be a PHI of some SMT and qD?
For VDEF/VUSE, you will never have a PHI of anything other than
multiple versions of the same SMT/virtual variable.
The above looks right to me at a glance.
It is probably pruning the result using TBAA which is what p->s isn't
thought to access the SMT.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug middle-end/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (9 preceding siblings ...)
2007-09-05 11:51 ` dberlin at dberlin dot org
@ 2007-09-07 14:14 ` rguenth at gcc dot gnu dot org
2007-09-10 18:39 ` [Bug tree-optimization/32575] " jakub at gcc dot gnu dot org
` (12 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-09-07 14:14 UTC (permalink / raw)
To: gcc-bugs
------- Comment #8 from rguenth at gcc dot gnu dot org 2007-09-07 14:14 -------
Both testcases no longer fail for me on the trunk - do you remember the
revision
you had them reduced on?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (10 preceding siblings ...)
2007-09-07 14:14 ` rguenth at gcc dot gnu dot org
@ 2007-09-10 18:39 ` jakub at gcc dot gnu dot org
2007-10-09 19:30 ` mmitchel at gcc dot gnu dot org
` (11 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-09-10 18:39 UTC (permalink / raw)
To: gcc-bugs
------- Comment #9 from jakub at gcc dot gnu dot org 2007-09-10 18:38 -------
Fails e.g. with 127816, 127870 up to 127926, the bug goes away
at least on the #c5 testcase with
http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=127927
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (11 preceding siblings ...)
2007-09-10 18:39 ` [Bug tree-optimization/32575] " jakub at gcc dot gnu dot org
@ 2007-10-09 19:30 ` mmitchel at gcc dot gnu dot org
2007-11-01 14:03 ` nickc at redhat dot com
` (10 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-10-09 19:30 UTC (permalink / raw)
To: gcc-bugs
------- Comment #10 from mmitchel at gcc dot gnu dot org 2007-10-09 19:20 -------
Change target milestone to 4.2.3, as 4.2.2 has been released.
--
mmitchel at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.2.2 |4.2.3
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (12 preceding siblings ...)
2007-10-09 19:30 ` mmitchel at gcc dot gnu dot org
@ 2007-11-01 14:03 ` nickc at redhat dot com
2007-11-01 14:06 ` nickc at redhat dot com
` (9 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: nickc at redhat dot com @ 2007-11-01 14:03 UTC (permalink / raw)
To: gcc-bugs
------- Comment #11 from nickc at redhat dot com 2007-11-01 14:02 -------
Created an attachment (id=14451)
--> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14451&action=view)
Add a param to squelch runaway memory consumption
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (13 preceding siblings ...)
2007-11-01 14:03 ` nickc at redhat dot com
@ 2007-11-01 14:06 ` nickc at redhat dot com
2007-11-01 14:34 ` jakub at gcc dot gnu dot org
` (8 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: nickc at redhat dot com @ 2007-11-01 14:06 UTC (permalink / raw)
To: gcc-bugs
------- Comment #12 from nickc at redhat dot com 2007-11-01 14:05 -------
Hi Guys,
I have uploaded a patch for a possible workaround for this problem. It adds
a new param (max-partial-antic-length) which with its default value will stop
the tree-pre optimization from eating up all the memory on the host system. It
also adds a testcase for the PR and documents the new param. Tested without
regressions on an x86_64-linux-gnu toolchain.
What do you think, should this patch be applied ?
Cheers
Nick
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (14 preceding siblings ...)
2007-11-01 14:06 ` nickc at redhat dot com
@ 2007-11-01 14:34 ` jakub at gcc dot gnu dot org
2007-11-01 14:57 ` nickc at redhat dot com
` (7 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-11-01 14:34 UTC (permalink / raw)
To: gcc-bugs
------- Comment #13 from jakub at gcc dot gnu dot org 2007-11-01 14:34 -------
Nick, your patch is most probably fixing PR32540 rather than PR32575, doesn't
it?
--
jakub at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nickc at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (15 preceding siblings ...)
2007-11-01 14:34 ` jakub at gcc dot gnu dot org
@ 2007-11-01 14:57 ` nickc at redhat dot com
2007-11-01 15:05 ` rguenth at gcc dot gnu dot org
` (6 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: nickc at redhat dot com @ 2007-11-01 14:57 UTC (permalink / raw)
To: gcc-bugs
------- Comment #14 from nickc at redhat dot com 2007-11-01 14:57 -------
Subject: Re: [4.2/4.3 regression] With -ftree-vrp
miscompiles a single line of code in SQLite
Hi Jakub,
> Nick, your patch is most probably fixing PR32540 rather than PR32575, doesn't
> it?
Doh. Yes. I will fix that in my local sources so that if the patch is
approved the correct number is used.
Cheers
Nick
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (16 preceding siblings ...)
2007-11-01 14:57 ` nickc at redhat dot com
@ 2007-11-01 15:05 ` rguenth at gcc dot gnu dot org
2007-11-08 12:54 ` jakub at gcc dot gnu dot org
` (5 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-11-01 15:05 UTC (permalink / raw)
To: gcc-bugs
------- Comment #15 from rguenth at gcc dot gnu dot org 2007-11-01 15:05 -------
Indeed it does. But while this is a workaround that works, the problem is in
excessive phi translation which we could stop here (untested! just a wild
guess!):
static bool
compute_partial_antic_aux (basic_block block,
bool block_has_abnormal_pred_edge)
{
...
if (phi_nodes (bprime))
{
and limit the # of PHI args seen here instead?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (17 preceding siblings ...)
2007-11-01 15:05 ` rguenth at gcc dot gnu dot org
@ 2007-11-08 12:54 ` jakub at gcc dot gnu dot org
2007-11-08 13:08 ` jakub at gcc dot gnu dot org
` (4 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-11-08 12:54 UTC (permalink / raw)
To: gcc-bugs
------- Comment #16 from jakub at gcc dot gnu dot org 2007-11-08 12:54 -------
Continuing after the #c11 .. #c15 unrelated PR32540 comments with the original
bug:
I've built -r127926 and -r127927 cc1 and it seems this wasn't fixed just by
a side-effect.
Although p can be either retval of foo or &q, we had in 127926:
# pD.2027_1 = PHI <pD.2027_4(2), &qD.2028(3)>
# qD.2028_18 = VDEF <qD.2028_11> { qD.2028 }
pD.2027_1->s1D.2010 = aD.2023_6(D);
while 127927 has:
# pD.2027_1 = PHI <pD.2027_4(2), &qD.2028(3)>
# qD.2028_19 = VDEF <qD.2028_11>
# SMT.26D.2082_20 = VDEF <SMT.26D.2082_12> { qD.2028 SMT.26D.2082 }
pD.2027_1->s1D.2010 = aD.2023_6(D);
-pD.2027_1, name memory tag: NMT.27D.2083, is dereferenced, points-to vars: { q
}
+pD.2027_1, name memory tag: NMT.27D.2083, is dereferenced, points-to vars: { q
SMT.26 }
So guess I'll just submit the testcase for inclusion on the trunk and then we
can close this PR.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2/4.3 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (18 preceding siblings ...)
2007-11-08 12:54 ` jakub at gcc dot gnu dot org
@ 2007-11-08 13:08 ` jakub at gcc dot gnu dot org
2007-11-08 13:12 ` [Bug tree-optimization/32575] [4.2 " jakub at gcc dot gnu dot org
` (3 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-11-08 13:08 UTC (permalink / raw)
To: gcc-bugs
------- Comment #17 from jakub at gcc dot gnu dot org 2007-11-08 13:08 -------
Subject: Bug 32575
Author: jakub
Date: Thu Nov 8 13:07:54 2007
New Revision: 129998
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=129998
Log:
PR tree-optimization/32575
* gcc.c-torture/execute/20071108-1.c: New test.
Added:
trunk/gcc/testsuite/gcc.c-torture/execute/20071108-1.c
Modified:
trunk/gcc/testsuite/ChangeLog
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (19 preceding siblings ...)
2007-11-08 13:08 ` jakub at gcc dot gnu dot org
@ 2007-11-08 13:12 ` jakub at gcc dot gnu dot org
2008-02-01 17:05 ` jsm28 at gcc dot gnu dot org
` (2 subsequent siblings)
23 siblings, 0 replies; 26+ messages in thread
From: jakub at gcc dot gnu dot org @ 2007-11-08 13:12 UTC (permalink / raw)
To: gcc-bugs
------- Comment #18 from jakub at gcc dot gnu dot org 2007-11-08 13:11 -------
I have also retested with the http://www.sqlite.org/gccbug32575.tar.gz
tarball and on the trunk it passes just fine with -O2.
--
jakub at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|[4.2/4.3 regression] With - |[4.2 regression] With -
|ftree-vrp miscompiles a |ftree-vrp miscompiles a
|single line of code in |single line of code in
|SQLite |SQLite
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (20 preceding siblings ...)
2007-11-08 13:12 ` [Bug tree-optimization/32575] [4.2 " jakub at gcc dot gnu dot org
@ 2008-02-01 17:05 ` jsm28 at gcc dot gnu dot org
2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
2009-03-30 22:11 ` jsm28 at gcc dot gnu dot org
23 siblings, 0 replies; 26+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-02-01 17:05 UTC (permalink / raw)
To: gcc-bugs
------- Comment #19 from jsm28 at gcc dot gnu dot org 2008-02-01 16:54 -------
4.2.3 is being released now, changing milestones of open bugs to 4.2.4.
--
jsm28 at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.2.3 |4.2.4
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (21 preceding siblings ...)
2008-02-01 17:05 ` jsm28 at gcc dot gnu dot org
@ 2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
2009-03-30 22:11 ` jsm28 at gcc dot gnu dot org
23 siblings, 0 replies; 26+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-05-19 20:30 UTC (permalink / raw)
To: gcc-bugs
------- Comment #20 from jsm28 at gcc dot gnu dot org 2008-05-19 20:23 -------
4.2.4 is being released, changing milestones to 4.2.5.
--
jsm28 at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.2.4 |4.2.5
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
* [Bug tree-optimization/32575] [4.2 regression] With -ftree-vrp miscompiles a single line of code in SQLite
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
` (22 preceding siblings ...)
2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
@ 2009-03-30 22:11 ` jsm28 at gcc dot gnu dot org
23 siblings, 0 replies; 26+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2009-03-30 22:11 UTC (permalink / raw)
To: gcc-bugs
------- Comment #21 from jsm28 at gcc dot gnu dot org 2009-03-30 22:10 -------
Closing 4.2 branch, fixed in 4.3.
--
jsm28 at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Known to fail| |4.2.5
Resolution| |FIXED
Target Milestone|4.2.5 |4.3.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575
^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2009-03-30 22:11 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-01 22:07 [Bug c/32575] New: GCC 4.3.0 with -ftree-vrp miscompiles a single line of code in SQLite drh at sqlite dot org
2007-07-01 22:16 ` [Bug tree-optimization/32575] " pinskia at gcc dot gnu dot org
2007-07-01 22:52 ` [Bug c/32575] " drh at sqlite dot org
2007-07-01 23:01 ` [Bug c/32575] GCC 4.2.0 " pinskia at gcc dot gnu dot org
2007-07-22 11:43 ` drh at sqlite dot org
2007-08-28 14:55 ` [Bug c/32575] [4.2/4.3 regression] With " jakub at gcc dot gnu dot org
2007-08-28 15:16 ` jakub at gcc dot gnu dot org
2007-08-28 15:58 ` jakub at gcc dot gnu dot org
2007-09-05 11:50 ` Daniel Berlin
2007-08-30 21:19 ` [Bug middle-end/32575] " pinskia at gcc dot gnu dot org
2007-09-05 0:56 ` mmitchel at gcc dot gnu dot org
2007-09-05 11:51 ` dberlin at dberlin dot org
2007-09-07 14:14 ` rguenth at gcc dot gnu dot org
2007-09-10 18:39 ` [Bug tree-optimization/32575] " jakub at gcc dot gnu dot org
2007-10-09 19:30 ` mmitchel at gcc dot gnu dot org
2007-11-01 14:03 ` nickc at redhat dot com
2007-11-01 14:06 ` nickc at redhat dot com
2007-11-01 14:34 ` jakub at gcc dot gnu dot org
2007-11-01 14:57 ` nickc at redhat dot com
2007-11-01 15:05 ` rguenth at gcc dot gnu dot org
2007-11-08 12:54 ` jakub at gcc dot gnu dot org
2007-11-08 13:08 ` jakub at gcc dot gnu dot org
2007-11-08 13:12 ` [Bug tree-optimization/32575] [4.2 " jakub at gcc dot gnu dot org
2008-02-01 17:05 ` jsm28 at gcc dot gnu dot org
2008-05-19 20:30 ` jsm28 at gcc dot gnu dot org
2009-03-30 22:11 ` jsm28 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).