public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
@ 2011-03-05  0:18 ` steven at gcc dot gnu.org
  2011-03-11  1:31 ` hp at gcc dot gnu.org
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: steven at gcc dot gnu.org @ 2011-03-05  0:18 UTC (permalink / raw)
  To: gcc-bugs

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

Steven Bosscher <steven at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |steven at gcc dot gnu.org

--- Comment #19 from Steven Bosscher <steven at gcc dot gnu.org> 2011-03-05 00:18:29 UTC ---
(In reply to comment #11)
> (In reply to comment #10)
> > Is scheduling before reload enabled for your target?  If not can you try
> > -fschedule-insns1?
> 
> No such option, I presume you mean -fschedule-insns.  But, as there's no
> scheduler description defined for the architecture, all I get is of course:
> warning: instruction scheduling not supported on this target machine
> with no difference in the output with -O2 -march=v10 -mno-mul-bug-workaround
> -fno-ivopts -fno-reorder-blocks -fno-gcse.
> 
> Besides, scheduling would move uses away from definitions, not closer to them.
> :)  Also, if this is meant as a permanent solution, that pass seems a bit late.

Random thought on this PR: With a scheduler description, -fschedule-insns
-fsched-pressure may help.

Is there a reason why there is no scheduler description?


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

* [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
  2011-03-05  0:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names steven at gcc dot gnu.org
@ 2011-03-11  1:31 ` hp at gcc dot gnu.org
  2011-06-27 15:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6/4.7 " rguenth at gcc dot gnu.org
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: hp at gcc dot gnu.org @ 2011-03-11  1:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #20 from Hans-Peter Nilsson <hp at gcc dot gnu.org> 2011-03-11 01:31:14 UTC ---
(In reply to comment #19)
> Random thought on this PR: With a scheduler description, -fschedule-insns
> -fsched-pressure may help.

That theory should be testable by compiling for e.g. a x86_64 target; see
comment #12, but to answer your question...

> Is there a reason why there is no scheduler description?

Yes.  For a while, there was nothing to schedule.

...except for CPUs in systems a cache, where it helps to schedule to avoid RaW
hazards.
...and then pipelined variants came, with other hazards to schedule (to avoid
bubbles, no mips1-type madness).
...but then, I noticed that scheduling with the "new" scheduler wasn't
supported for CC0 targets.
...which later was either fixed, or just a plain misunderstanding (cf.
m68k/cf.md).
...and when checking the cycle-correct simulator, I found that there weren't
many cycles to schedule away, hence a fair amount of work for no apparent gain,
at least for the intended purpose of insn scheduling.

There you go, the reasons in a nutshell.  And while there's still a possibility
that it's a pragmatic solution (modulo #c12), it doesn't strike me as requiring
a scheduler to be the Right Thing to do for a fix to this problem.
(Though from a general GCC maintenance perspective, automatically defaulting to
a trivial scheduler might be a good idea.)


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

* [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6/4.7 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
  2011-03-05  0:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names steven at gcc dot gnu.org
  2011-03-11  1:31 ` hp at gcc dot gnu.org
@ 2011-06-27 15:18 ` rguenth at gcc dot gnu.org
  2012-03-13 15:37 ` [Bug tree-optimization/37916] [4.5/4.6/4.7/4.8 " jakub at gcc dot gnu.org
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-06-27 15:18 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.6                       |4.4.7

--- Comment #21 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-06-27 12:14:46 UTC ---
4.3 branch is being closed, moving to 4.4.7 target.


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

* [Bug tree-optimization/37916] [4.5/4.6/4.7/4.8 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2011-06-27 15:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6/4.7 " rguenth at gcc dot gnu.org
@ 2012-03-13 15:37 ` jakub at gcc dot gnu.org
  2012-07-02 13:55 ` [Bug tree-optimization/37916] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-13 15:37 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.4.7                       |4.5.4

--- Comment #22 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-03-13 12:48:22 UTC ---
4.4 branch is being closed, moving to 4.5.4 target.


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

* [Bug tree-optimization/37916] [4.6/4.7/4.8 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2012-03-13 15:37 ` [Bug tree-optimization/37916] [4.5/4.6/4.7/4.8 " jakub at gcc dot gnu.org
@ 2012-07-02 13:55 ` rguenth at gcc dot gnu.org
  2013-04-12 15:18 ` [Bug tree-optimization/37916] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-07-02 13:55 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.5.4                       |4.6.4


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

* [Bug tree-optimization/37916] [4.7/4.8/4.9 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2012-07-02 13:55 ` [Bug tree-optimization/37916] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
@ 2013-04-12 15:18 ` jakub at gcc dot gnu.org
  2014-06-12 13:49 ` [Bug tree-optimization/37916] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:18 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.4                       |4.7.4

--- Comment #23 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 15:17:09 UTC ---
GCC 4.6.4 has been released and the branch has been closed.


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

* [Bug tree-optimization/37916] [4.7/4.8/4.9/4.10 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2013-04-12 15:18 ` [Bug tree-optimization/37916] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2014-06-12 13:49 ` rguenth at gcc dot gnu.org
  2014-12-19 13:44 ` [Bug tree-optimization/37916] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.4                       |4.8.4

--- Comment #24 from Richard Biener <rguenth at gcc dot gnu.org> ---
The 4.7 branch is being closed, moving target milestone to 4.8.4.


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

* [Bug tree-optimization/37916] [4.8/4.9/5 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2014-06-12 13:49 ` [Bug tree-optimization/37916] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:44 ` jakub at gcc dot gnu.org
  2015-06-23  8:28 ` [Bug tree-optimization/37916] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #25 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


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

* [Bug tree-optimization/37916] [4.8/4.9/5/6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2014-12-19 13:44 ` [Bug tree-optimization/37916] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-06-23  8:28 ` rguenth at gcc dot gnu.org
  2015-06-26 20:19 ` [Bug tree-optimization/37916] [4.9/5/6 " jakub at gcc dot gnu.org
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:28 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.5                       |4.9.3

--- Comment #26 from Richard Biener <rguenth at gcc dot gnu.org> ---
The gcc-4_8-branch is being closed, re-targeting regressions to 4.9.3.


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

* [Bug tree-optimization/37916] [4.9/5/6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2015-06-23  8:28 ` [Bug tree-optimization/37916] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
@ 2015-06-26 20:19 ` jakub at gcc dot gnu.org
  2015-06-26 20:39 ` jakub at gcc dot gnu.org
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:19 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

--- Comment #27 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


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

* [Bug tree-optimization/37916] [4.9/5/6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2015-06-26 20:19 ` [Bug tree-optimization/37916] [4.9/5/6 " jakub at gcc dot gnu.org
@ 2015-06-26 20:39 ` jakub at gcc dot gnu.org
  2021-05-04 12:32 ` [Bug tree-optimization/37916] [8/9/10/11/12 " rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


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

* [Bug tree-optimization/37916] [8/9/10/11/12 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2015-06-26 20:39 ` jakub at gcc dot gnu.org
@ 2021-05-04 12:32 ` rguenth at gcc dot gnu.org
  2021-05-14  9:45 ` [Bug tree-optimization/37916] [9/10/11/12 " jakub at gcc dot gnu.org
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-05-04 12:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

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

* [Bug tree-optimization/37916] [9/10/11/12 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2021-05-04 12:32 ` [Bug tree-optimization/37916] [8/9/10/11/12 " rguenth at gcc dot gnu.org
@ 2021-05-14  9:45 ` jakub at gcc dot gnu.org
  2021-06-01  8:04 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-05-14  9:45 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|8.5                         |9.4

--- Comment #33 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 8 branch is being closed.

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

* [Bug tree-optimization/37916] [9/10/11/12 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2021-05-14  9:45 ` [Bug tree-optimization/37916] [9/10/11/12 " jakub at gcc dot gnu.org
@ 2021-06-01  8:04 ` rguenth at gcc dot gnu.org
  2022-05-27  9:33 ` [Bug tree-optimization/37916] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-01  8:04 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.4                         |9.5

--- Comment #34 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9.4 is being released, retargeting bugs to GCC 9.5.

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

* [Bug tree-optimization/37916] [10/11/12/13 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2021-06-01  8:04 ` rguenth at gcc dot gnu.org
@ 2022-05-27  9:33 ` rguenth at gcc dot gnu.org
  2022-06-28 10:29 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #35 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

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

* [Bug tree-optimization/37916] [10/11/12/13 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2022-05-27  9:33 ` [Bug tree-optimization/37916] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:29 ` jakub at gcc dot gnu.org
  2023-06-14  4:56 ` [Bug tree-optimization/37916] [10/11/12/13/14 " pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 19+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #36 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

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

* [Bug tree-optimization/37916] [10/11/12/13/14 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2022-06-28 10:29 ` jakub at gcc dot gnu.org
@ 2023-06-14  4:56 ` pinskia at gcc dot gnu.org
  2023-06-14  5:11 ` pinskia at gcc dot gnu.org
  2023-07-07 10:29 ` [Bug tree-optimization/37916] [11/12/13/14 " rguenth at gcc dot gnu.org
  18 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-06-14  4:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW
           Assignee|hp at gcc dot gnu.org              |unassigned at gcc dot gnu.org

--- Comment #37 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Hans-Peter Nilsson from comment #30)
> Unassigning myself to belatedly celebrate the 10th anniversary of this PR.
> I'm replacing with a reference to a patch (the start of a thread) that
> claims to fix the problem.  Thanks Michael, hope it gets an ok eventually!

Looks like you forgot to change Assignee and then Richi came along and change
the status back to assigned. I am going to fix both of that here.

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

* [Bug tree-optimization/37916] [10/11/12/13/14 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2023-06-14  4:56 ` [Bug tree-optimization/37916] [10/11/12/13/14 " pinskia at gcc dot gnu.org
@ 2023-06-14  5:11 ` pinskia at gcc dot gnu.org
  2023-07-07 10:29 ` [Bug tree-optimization/37916] [11/12/13/14 " rguenth at gcc dot gnu.org
  18 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-06-14  5:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

--- Comment #38 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
So for aarch64, I noticed that on the trunk, we no longer produce any stores to
the stack (GCC 13 had a save/restore of x29 and x30; x29 is the fp). The
difference is no longer using x30 as a register. I Have not looked why though.
GCC 7 had saving also x19.
I suspect that was some aarch64 specific change as x86_64 code generation
looked around the same between GCC 13 and the trunk.

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

* [Bug tree-optimization/37916] [11/12/13/14 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names.
       [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2023-06-14  5:11 ` pinskia at gcc dot gnu.org
@ 2023-07-07 10:29 ` rguenth at gcc dot gnu.org
  18 siblings, 0 replies; 19+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=37916

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.5                        |11.5

--- Comment #39 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

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

end of thread, other threads:[~2023-07-07 10:29 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-37916-4@http.gcc.gnu.org/bugzilla/>
2011-03-05  0:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6 Regression] SSA names causing register pressure; unnecessarily many simultaneously "live" names steven at gcc dot gnu.org
2011-03-11  1:31 ` hp at gcc dot gnu.org
2011-06-27 15:18 ` [Bug tree-optimization/37916] [4.3/4.4/4.5/4.6/4.7 " rguenth at gcc dot gnu.org
2012-03-13 15:37 ` [Bug tree-optimization/37916] [4.5/4.6/4.7/4.8 " jakub at gcc dot gnu.org
2012-07-02 13:55 ` [Bug tree-optimization/37916] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
2013-04-12 15:18 ` [Bug tree-optimization/37916] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2014-06-12 13:49 ` [Bug tree-optimization/37916] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:44 ` [Bug tree-optimization/37916] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-06-23  8:28 ` [Bug tree-optimization/37916] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
2015-06-26 20:19 ` [Bug tree-optimization/37916] [4.9/5/6 " jakub at gcc dot gnu.org
2015-06-26 20:39 ` jakub at gcc dot gnu.org
2021-05-04 12:32 ` [Bug tree-optimization/37916] [8/9/10/11/12 " rguenth at gcc dot gnu.org
2021-05-14  9:45 ` [Bug tree-optimization/37916] [9/10/11/12 " jakub at gcc dot gnu.org
2021-06-01  8:04 ` rguenth at gcc dot gnu.org
2022-05-27  9:33 ` [Bug tree-optimization/37916] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:29 ` jakub at gcc dot gnu.org
2023-06-14  4:56 ` [Bug tree-optimization/37916] [10/11/12/13/14 " pinskia at gcc dot gnu.org
2023-06-14  5:11 ` pinskia at gcc dot gnu.org
2023-07-07 10:29 ` [Bug tree-optimization/37916] [11/12/13/14 " rguenth 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).