public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/30930]  New: [4.3 Regression] vector can cause to create an extra variable
@ 2007-02-22 21:53 pinskia at gcc dot gnu dot org
  2007-02-22 23:12 ` [Bug tree-optimization/30930] " pinskia at gcc dot gnu dot org
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-02-22 21:53 UTC (permalink / raw)
  To: gcc-bugs

While trying to make DECL_GIMPLE_REG_P more generic, I ran into a regression
due to we never change non gimple register variables into gimple registers so I
looked into it and found that I could also reproduce it in the current sources
with vector types (complex does not matter as much as they are always SRA'd).
Testcase:
#define vector __attribute__(( vector_size(16) ))

vector float f(vector float a, int b, vector float c)
{
  vector float dd = c*a;
  if (0)
  {
   vector float *d = &a;
   vector float *d1 = &c;
    g:;
  }
  if (b)
    return dd * a;
  return c*a;
}


You will see that a is never turned into a gimple register which could cause
some issues with debugging info and also this introduces an extra variable
which could cause a memory usage/compile time slow down.


-- 
           Summary: [4.3 Regression] vector can cause to create an extra
                    variable
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
@ 2007-02-22 23:12 ` pinskia at gcc dot gnu dot org
  2007-02-23  9:56 ` rguenth at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-02-22 23:12 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.3.0


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
  2007-02-22 23:12 ` [Bug tree-optimization/30930] " pinskia at gcc dot gnu dot org
@ 2007-02-23  9:56 ` rguenth at gcc dot gnu dot org
  2007-02-23 22:48 ` pinskia at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-02-23  9:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from rguenth at gcc dot gnu dot org  2007-02-23 09:56 -------
I believe the mini-pre-alias passes from honza will fix this by recomputing
addressability.


-- 


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
  2007-02-22 23:12 ` [Bug tree-optimization/30930] " pinskia at gcc dot gnu dot org
  2007-02-23  9:56 ` rguenth at gcc dot gnu dot org
@ 2007-02-23 22:48 ` pinskia at gcc dot gnu dot org
  2007-06-29 17:58 ` mmitchel at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-02-23 22:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2007-02-23 22:47 -------
(In reply to comment #1)
> I believe the mini-pre-alias passes from honza will fix this by recomputing
> addressability.

But this is not about recomputing addressability but instead recomputing
DECL_GIMPLE_REG_P which we don't do currently.  We could do it the same time as
we recompute addressability and I think we should.  I will go look into this
futher later today.


-- 


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2007-02-23 22:48 ` pinskia at gcc dot gnu dot org
@ 2007-06-29 17:58 ` mmitchel at gcc dot gnu dot org
  2008-01-13 14:56 ` [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed rguenth at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-06-29 17:58 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2007-06-29 17:58 ` mmitchel at gcc dot gnu dot org
@ 2008-01-13 14:56 ` rguenth at gcc dot gnu dot org
  2008-01-13 18:17 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-01-13 14:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from rguenth at gcc dot gnu dot org  2008-01-13 14:46 -------
It indeed works on the 4.2 branch where the loads magically disappear with the
first may_alias pass.  Possibly because it doesn't pay attention to whether
DECL_GIMPLE_REG is set or not.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rguenth at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |missed-optimization
      Known to work|                            |4.2.3
   Last reconfirmed|0000-00-00 00:00:00         |2008-01-13 14:46:12
               date|                            |
            Summary|[4.3 Regression] vector can |[4.3 Regression] vector can
                   |cause to create an extra    |cause to create an extra
                   |variable                    |variable, DECL_GIMPLE_REG_P
                   |                            |not recomputed


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-01-13 14:56 ` [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed rguenth at gcc dot gnu dot org
@ 2008-01-13 18:17 ` pinskia at gcc dot gnu dot org
  2008-03-15  0:44 ` [Bug tree-optimization/30930] [4.3/4.4 " jsm28 at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-01-13 18:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from pinskia at gcc dot gnu dot org  2008-01-13 17:57 -------
(In reply to comment #3)
> It indeed works on the 4.2 branch where the loads magically disappear with the
> first may_alias pass.  Possibly because it doesn't pay attention to whether
> DECL_GIMPLE_REG is set or not.

Well DECL_GIMPLE_REG was not needed for vector types before 4.3.0 :) so yes it
was ignored.


-- 


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-01-13 18:17 ` pinskia at gcc dot gnu dot org
@ 2008-03-15  0:44 ` jsm28 at gcc dot gnu dot org
  2008-06-06 14:58 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-03-15  0:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jsm28 at gcc dot gnu dot org  2008-03-15 00:40 -------
Update milestone after 4.3.0 release.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.0                       |4.3.1


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2008-03-15  0:44 ` [Bug tree-optimization/30930] [4.3/4.4 " jsm28 at gcc dot gnu dot org
@ 2008-06-06 14:58 ` rguenth at gcc dot gnu dot org
  2008-08-27 22:03 ` jsm28 at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-06-06 14:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2008-06-06 14:56 -------
4.3.1 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.1                       |4.3.2


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2008-06-06 14:58 ` rguenth at gcc dot gnu dot org
@ 2008-08-27 22:03 ` jsm28 at gcc dot gnu dot org
  2008-09-17 22:29 ` pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-08-27 22:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jsm28 at gcc dot gnu dot org  2008-08-27 22:01 -------
4.3.2 is released, changing milestones to 4.3.3.


-- 

jsm28 at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.2                       |4.3.3


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2008-08-27 22:03 ` jsm28 at gcc dot gnu dot org
@ 2008-09-17 22:29 ` pinskia at gcc dot gnu dot org
  2008-09-17 22:42 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-17 22:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from pinskia at gcc dot gnu dot org  2008-09-17 22:28 -------
Created an attachment (id=16349)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16349&action=view)
Patch which piggy backs on honza's addressable pass

This is a patch which uses honza's mini-addressable pass to the same thing for
DECL_GIMPLE_REG_P.  It can be used for the generic case instead of just vector
types which will help out the VCE on the LHS side issue.


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2008-09-17 22:29 ` pinskia at gcc dot gnu dot org
@ 2008-09-17 22:42 ` pinskia at gcc dot gnu dot org
  2008-09-17 22:51 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-17 22:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from pinskia at gcc dot gnu dot org  2008-09-17 22:40 -------
Note I needed to add a check to make sure we are only doing this currently for
complex and vector types since those are the ones that have DECL_GIMPLE_REG_P
currently.


-- 


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2008-09-17 22:42 ` pinskia at gcc dot gnu dot org
@ 2008-09-17 22:51 ` pinskia at gcc dot gnu dot org
  2008-09-18  1:01 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-17 22:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from pinskia at gcc dot gnu dot org  2008-09-17 22:50 -------
Here is a testcase where we were missing an optimization at the tree level
because of DECL_GIMPLE_REG_P:
#define vector __attribute__(( vector_size(16) ))

float f(vector float a, int b, vector float c)
{
  vector float dd = c*a;
  a = (vector float){0,0,0,0};
  c = (vector float){0,0,0,0};
  {
   float d = ((float*)&a)[0];
   float d1 = ((float*)&c)[0];
   return d*d1;
  }
}


-- 


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2008-09-17 22:51 ` pinskia at gcc dot gnu dot org
@ 2008-09-18  1:01 ` pinskia at gcc dot gnu dot org
  2008-09-18  8:24 ` rguenther at suse dot de
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-18  1:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from pinskia at gcc dot gnu dot org  2008-09-18 01:00 -------
Here is a testcase which shows a missed optimization in general (on both the
tree level and the RTL one) for x86 with SSE2:
#define vector __attribute((vector_size(16) ))
vector float a;

float f(float b)
{
  vector float c = {0, 0, 0, 0};
  vector float d = {0, 0, 0, 0};
  d += c;
  return ((float*)&c)[2];
}


-- 


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


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

* [Bug tree-optimization/30930] [4.3/4.4 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2008-09-18  1:01 ` pinskia at gcc dot gnu dot org
@ 2008-09-18  8:24 ` rguenther at suse dot de
  2008-09-19 22:25 ` [Bug tree-optimization/30930] [4.3 " pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: rguenther at suse dot de @ 2008-09-18  8:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from rguenther at suse dot de  2008-09-18 08:23 -------
Subject: Re:  [4.3/4.4 Regression] vector can
 cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed

On Wed, 17 Sep 2008, pinskia at gcc dot gnu dot org wrote:

> ------- Comment #10 from pinskia at gcc dot gnu dot org  2008-09-17 22:50 -------
> Here is a testcase where we were missing an optimization at the tree level
> because of DECL_GIMPLE_REG_P:
> #define vector __attribute__(( vector_size(16) ))
> 
> float f(vector float a, int b, vector float c)
> {
>   vector float dd = c*a;
>   a = (vector float){0,0,0,0};
>   c = (vector float){0,0,0,0};
>   {
>    float d = ((float*)&a)[0];
>    float d1 = ((float*)&c)[0];
>    return d*d1;
>   }
> }

I wonder why we not just can add both, TREE_ADDRESSABLE and
DECL_GIMPLE_REG_P ...

Richard.


-- 


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (13 preceding siblings ...)
  2008-09-18  8:24 ` rguenther at suse dot de
@ 2008-09-19 22:25 ` pinskia at gcc dot gnu dot org
  2008-09-19 22:26 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-19 22:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from pinskia at gcc dot gnu dot org  2008-09-19 22:24 -------
Fixed on the trunk.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|4.2.3                       |4.2.3 4.4.0
            Summary|[4.3/4.4 Regression] vector |[4.3 Regression] vector can
                   |can cause to create an extra|cause to create an extra
                   |variable, DECL_GIMPLE_REG_P |variable, DECL_GIMPLE_REG_P
                   |not recomputed              |not recomputed


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (14 preceding siblings ...)
  2008-09-19 22:25 ` [Bug tree-optimization/30930] [4.3 " pinskia at gcc dot gnu dot org
@ 2008-09-19 22:26 ` pinskia at gcc dot gnu dot org
  2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-19 22:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from pinskia at gcc dot gnu dot org  2008-09-19 22:25 -------
Subject: Bug 30930

Author: pinskia
Date: Fri Sep 19 22:24:06 2008
New Revision: 140501

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=140501
Log:
2008-09-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR tree-opt/30930
        * tree-ssa.c (execute_update_addresses_taken): Also update
        DECL_GIMPLE_REG_P for vector and complex types.


2008-09-19  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        PR tree-opt/30930
        * gcc.dg/tree-ssa/vector-2.c: New test.
        * gcc.dg/tree-ssa/vector-3.c: New test.


Added:
    trunk/gcc/testsuite/gcc.dg/tree-ssa/vector-2.c
    trunk/gcc/testsuite/gcc.dg/tree-ssa/vector-3.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-ssa.c


-- 


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (15 preceding siblings ...)
  2008-09-19 22:26 ` pinskia at gcc dot gnu dot org
@ 2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
  2009-04-16 15:42 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 10:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from rguenth at gcc dot gnu dot org  2009-01-24 10:19 -------
GCC 4.3.3 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.3                       |4.3.4


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (16 preceding siblings ...)
  2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
@ 2009-04-16 15:42 ` pinskia at gcc dot gnu dot org
  2009-04-22 15:13 ` rguenth at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-04-16 15:42 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2009-04-16 15:42 -------
I am no longer working on this one.


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (17 preceding siblings ...)
  2009-04-16 15:42 ` pinskia at gcc dot gnu dot org
@ 2009-04-22 15:13 ` rguenth at gcc dot gnu dot org
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
  2010-04-20 13:27 ` rguenth at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-04-22 15:13 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|                            |4.3.3
           Priority|P4                          |P2


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (18 preceding siblings ...)
  2009-04-22 15:13 ` rguenth at gcc dot gnu dot org
@ 2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
  2010-04-20 13:27 ` rguenth at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-08-04 12:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from rguenth at gcc dot gnu dot org  2009-08-04 12:28 -------
GCC 4.3.4 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.4                       |4.3.5


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


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

* [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed
  2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
                   ` (19 preceding siblings ...)
  2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
@ 2010-04-20 13:27 ` rguenth at gcc dot gnu dot org
  20 siblings, 0 replies; 22+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-04-20 13:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from rguenth at gcc dot gnu dot org  2010-04-20 13:27 -------
WONTFIX on the 4.3 branch.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
      Known to fail|4.3.3                       |4.3.3 4.3.4
         Resolution|                            |FIXED
   Target Milestone|4.3.5                       |4.4.0


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


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

end of thread, other threads:[~2010-04-20 13:27 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-22 21:53 [Bug tree-optimization/30930] New: [4.3 Regression] vector can cause to create an extra variable pinskia at gcc dot gnu dot org
2007-02-22 23:12 ` [Bug tree-optimization/30930] " pinskia at gcc dot gnu dot org
2007-02-23  9:56 ` rguenth at gcc dot gnu dot org
2007-02-23 22:48 ` pinskia at gcc dot gnu dot org
2007-06-29 17:58 ` mmitchel at gcc dot gnu dot org
2008-01-13 14:56 ` [Bug tree-optimization/30930] [4.3 Regression] vector can cause to create an extra variable, DECL_GIMPLE_REG_P not recomputed rguenth at gcc dot gnu dot org
2008-01-13 18:17 ` pinskia at gcc dot gnu dot org
2008-03-15  0:44 ` [Bug tree-optimization/30930] [4.3/4.4 " jsm28 at gcc dot gnu dot org
2008-06-06 14:58 ` rguenth at gcc dot gnu dot org
2008-08-27 22:03 ` jsm28 at gcc dot gnu dot org
2008-09-17 22:29 ` pinskia at gcc dot gnu dot org
2008-09-17 22:42 ` pinskia at gcc dot gnu dot org
2008-09-17 22:51 ` pinskia at gcc dot gnu dot org
2008-09-18  1:01 ` pinskia at gcc dot gnu dot org
2008-09-18  8:24 ` rguenther at suse dot de
2008-09-19 22:25 ` [Bug tree-optimization/30930] [4.3 " pinskia at gcc dot gnu dot org
2008-09-19 22:26 ` pinskia at gcc dot gnu dot org
2009-01-24 10:40 ` rguenth at gcc dot gnu dot org
2009-04-16 15:42 ` pinskia at gcc dot gnu dot org
2009-04-22 15:13 ` rguenth at gcc dot gnu dot org
2009-08-04 12:35 ` rguenth at gcc dot gnu dot org
2010-04-20 13:27 ` rguenth 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).