public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
@ 2010-09-30 15:37 ` rguenth at gcc dot gnu.org
  2010-10-10 19:38 ` dominiq at lps dot ens.fr
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2010-09-30 15:37 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|powerpc-apple-darwin9       |powerpc64-*-*,
                   |                            |powerpc-apple-darwin9
           Priority|P3                          |P1
                 CC|                            |meissner at gcc dot gnu.org


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
  2010-09-30 15:37 ` [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64 rguenth at gcc dot gnu.org
@ 2010-10-10 19:38 ` dominiq at lps dot ens.fr
  2010-11-04 22:00 ` dominiq at lps dot ens.fr
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: dominiq at lps dot ens.fr @ 2010-10-10 19:38 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2010-10-10 19:38:13 UTC ---
Any agenda for this pr?


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
  2010-09-30 15:37 ` [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64 rguenth at gcc dot gnu.org
  2010-10-10 19:38 ` dominiq at lps dot ens.fr
@ 2010-11-04 22:00 ` dominiq at lps dot ens.fr
  2010-11-05 21:29 ` meissner at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: dominiq at lps dot ens.fr @ 2010-11-04 22:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2010-11-04 22:00:07 UTC ---
Created attachment 22288
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22288
folder containing the result of -dump-rtl-all

The file "verbose" contains the result of

gfc -O2 -m64 -fdump-rtl-all -fverbose-asm -mdebug=reg
transfer_simplify_2_red.f90 >& verbose


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2010-11-04 22:00 ` dominiq at lps dot ens.fr
@ 2010-11-05 21:29 ` meissner at gcc dot gnu.org
  2010-11-05 21:31 ` meissner at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: meissner at gcc dot gnu.org @ 2010-11-05 21:29 UTC (permalink / raw)
  To: gcc-bugs

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

Michael Meissner <meissner at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot       |meissner at gcc dot gnu.org
                   |gnu.org                     |

--- Comment #5 from Michael Meissner <meissner at gcc dot gnu.org> 2010-11-05 21:28:55 UTC ---
Created attachment 22297
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=22297
Patch to allow loading/storing DI values in FPR registers

This patch fixes the problem in the bug.  What is happening is originally if
you were loading up a static 64-bit integer variable to convert it to floating
point, the compiler would first load the variable into a GPR, then store it on
the stack, and then load the value from the stack to the FPR.  My optimization
allowed the fp convert to take memory operands so it didn't have to go through
the GPR registers.  However, since Darwin has its own patterns for load/store,
it didn't go through the normal move patterns, and was overlooked.


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2010-11-05 21:29 ` meissner at gcc dot gnu.org
@ 2010-11-05 21:31 ` meissner at gcc dot gnu.org
  2010-11-07 11:45 ` dominiq at lps dot ens.fr
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: meissner at gcc dot gnu.org @ 2010-11-05 21:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Michael Meissner <meissner at gcc dot gnu.org> 2010-11-05 21:31:42 UTC ---
Author: meissner
Date: Fri Nov  5 21:31:38 2010
New Revision: 166379

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166379
Log:
Fix PR 45585, darwin brain damage

Modified:
    branches/ibm/power7-fpconv/gcc/ChangeLog.power7
    branches/ibm/power7-fpconv/gcc/config/rs6000/darwin.md


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2010-11-05 21:31 ` meissner at gcc dot gnu.org
@ 2010-11-07 11:45 ` dominiq at lps dot ens.fr
  2010-11-08 19:02 ` meissner at gcc dot gnu.org
  2010-11-08 19:04 ` meissner at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: dominiq at lps dot ens.fr @ 2010-11-07 11:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2010-11-07 11:45:18 UTC ---
I have posted at http://gcc.gnu.org/ml/gcc-testresults/2010-11/msg00551.html
the result of the regtest with the patch in comment #5. The patch fixes this PR
without adding regressions of its own (the new failures are also seen in
http://gcc.gnu.org/ml/gcc-testresults/2010-11/msg00540.html and
gfortran.dg/vect/pr45714-b.f failed before the patch).

Thanks.


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2010-11-07 11:45 ` dominiq at lps dot ens.fr
@ 2010-11-08 19:02 ` meissner at gcc dot gnu.org
  2010-11-08 19:04 ` meissner at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: meissner at gcc dot gnu.org @ 2010-11-08 19:02 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Michael Meissner <meissner at gcc dot gnu.org> 2010-11-08 19:02:39 UTC ---
Author: meissner
Date: Mon Nov  8 19:02:35 2010
New Revision: 166448

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=166448
Log:
Fix PR 46378 and PR 45585

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/rs6000/darwin.md
    trunk/gcc/config/rs6000/rs6000.c
    trunk/gcc/config/rs6000/rs6000.md


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

* [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64
       [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2010-11-08 19:02 ` meissner at gcc dot gnu.org
@ 2010-11-08 19:04 ` meissner at gcc dot gnu.org
  7 siblings, 0 replies; 8+ messages in thread
From: meissner at gcc dot gnu.org @ 2010-11-08 19:04 UTC (permalink / raw)
  To: gcc-bugs

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

Michael Meissner <meissner at gcc dot gnu.org> changed:

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

--- Comment #9 from Michael Meissner <meissner at gcc dot gnu.org> 2010-11-08 19:04:23 UTC ---
Fixed in subversion id: 166448.


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

end of thread, other threads:[~2010-11-08 19:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-45585-4@http.gcc.gnu.org/bugzilla/>
2010-09-30 15:37 ` [Bug target/45585] [4.6 Regression] ICE on powerpc-apple-darwin9 for gfortran.dg/transfer_simplify_2.f90 with -O2 -m64 rguenth at gcc dot gnu.org
2010-10-10 19:38 ` dominiq at lps dot ens.fr
2010-11-04 22:00 ` dominiq at lps dot ens.fr
2010-11-05 21:29 ` meissner at gcc dot gnu.org
2010-11-05 21:31 ` meissner at gcc dot gnu.org
2010-11-07 11:45 ` dominiq at lps dot ens.fr
2010-11-08 19:02 ` meissner at gcc dot gnu.org
2010-11-08 19:04 ` meissner 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).