public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
@ 2010-12-16 13:03 ` rguenth at gcc dot gnu.org
  2011-04-28 15:05 ` [Bug middle-end/42961] [4.5/4.6/4.7 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-12-16 13:03 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.5.2                       |4.5.3

--- Comment #5 from Richard Guenther <rguenth at gcc dot gnu.org> 2010-12-16 13:02:54 UTC ---
GCC 4.5.2 is being released, adjusting target milestone.


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

* [Bug middle-end/42961] [4.5/4.6/4.7 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
  2010-12-16 13:03 ` [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug rguenth at gcc dot gnu.org
@ 2011-04-28 15:05 ` rguenth at gcc dot gnu.org
  2012-01-05  1:04 ` [Bug middle-end/42961] [4.5/4.6 " pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-04-28 15:05 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #6 from Richard Guenther <rguenth at gcc dot gnu.org> 2011-04-28 14:51:12 UTC ---
GCC 4.5.3 is being released, adjusting target milestone.


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

* [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
  2010-12-16 13:03 ` [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug rguenth at gcc dot gnu.org
  2011-04-28 15:05 ` [Bug middle-end/42961] [4.5/4.6/4.7 " rguenth at gcc dot gnu.org
@ 2012-01-05  1:04 ` pinskia at gcc dot gnu.org
  2012-02-19 17:49 ` mikpe at it dot uu.se
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu.org @ 2012-01-05  1:04 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.7.0
            Summary|[4.5/4.6/4.7 regression]    |[4.5/4.6 regression] IRA
                   |IRA register preferencing   |register preferencing bug
                   |bug                         |

--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> 2012-01-05 01:02:51 UTC ---
This looks like it was fixed on the trunk, we no longer have any movss/movl.


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

* [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2012-01-05  1:04 ` [Bug middle-end/42961] [4.5/4.6 " pinskia at gcc dot gnu.org
@ 2012-02-19 17:49 ` mikpe at it dot uu.se
  2012-07-02 11:05 ` rguenth at gcc dot gnu.org
  2013-04-12 16:18 ` [Bug middle-end/42961] [4.6 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: mikpe at it dot uu.se @ 2012-02-19 17:49 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Mikael Pettersson <mikpe at it dot uu.se> 2012-02-19 17:43:07 UTC ---
The movss instructions were eliminated on trunk by Vladimir Makarov's "patch to
solve recent SPEC2000 degradation" in r178019:
http://gcc.gnu.org/ml/gcc-patches/2011-08/msg01954.html
http://gcc.gnu.org/ml/gcc-cvs/2011-08/msg01034.html

The code generation change at that point is:

--- pr42961.s-r178018   2012-02-19 18:22:46.000000000 +0100
+++ pr42961.s-r178019   2012-02-19 18:17:07.000000000 +0100
@@ -10,18 +10,17 @@
        ucomiss %xmm2, %xmm2
        jp      .L7
        jne     .L7
-       movss   %xmm1, -4(%rsp)
 .L2:
        movl    f(%rip), %eax
        testl   %eax, %eax
        je      .L4
-       movss   -4(%rsp), %xmm2
+       movaps  %xmm1, %xmm2
 .L4:
        movaps  %xmm2, %xmm0
        ret
 .L7:
        movaps  %xmm1, %xmm2
-       movss   %xmm0, -4(%rsp)
+       movaps  %xmm0, %xmm1
        jmp     .L2
        .cfi_endproc
 .LFE0:


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

* [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2012-02-19 17:49 ` mikpe at it dot uu.se
@ 2012-07-02 11:05 ` rguenth at gcc dot gnu.org
  2013-04-12 16:18 ` [Bug middle-end/42961] [4.6 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-07-02 11:05 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #9 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-07-02 11:04:19 UTC ---
The 4.5 branch is being closed, adjusting target milestone.


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

* [Bug middle-end/42961] [4.6 regression] IRA register preferencing bug
       [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2012-07-02 11:05 ` rguenth at gcc dot gnu.org
@ 2013-04-12 16:18 ` jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 16:18 UTC (permalink / raw)
  To: gcc-bugs


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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.6.4                       |4.7.0

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 16:17:33 UTC ---
The 4.6 branch has been closed, fixed in GCC 4.7.0.


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

* [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug
  2010-02-04 22:05 [Bug middle-end/42961] New: [4.5 " hubicka at gcc dot gnu dot org
@ 2010-07-31  9:35 ` rguenth at gcc dot gnu dot org
  0 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2010-07-31  9:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2010-07-31 09:29 -------
GCC 4.5.1 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.5.1                       |4.5.2


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


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

end of thread, other threads:[~2013-04-12 16:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-42961-4@http.gcc.gnu.org/bugzilla/>
2010-12-16 13:03 ` [Bug middle-end/42961] [4.5/4.6 regression] IRA register preferencing bug rguenth at gcc dot gnu.org
2011-04-28 15:05 ` [Bug middle-end/42961] [4.5/4.6/4.7 " rguenth at gcc dot gnu.org
2012-01-05  1:04 ` [Bug middle-end/42961] [4.5/4.6 " pinskia at gcc dot gnu.org
2012-02-19 17:49 ` mikpe at it dot uu.se
2012-07-02 11:05 ` rguenth at gcc dot gnu.org
2013-04-12 16:18 ` [Bug middle-end/42961] [4.6 " jakub at gcc dot gnu.org
2010-02-04 22:05 [Bug middle-end/42961] New: [4.5 " hubicka at gcc dot gnu dot org
2010-07-31  9:35 ` [Bug middle-end/42961] [4.5/4.6 " 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).