public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14
@ 2014-12-01 21:57 howarth at bromo dot med.uc.edu
  2014-12-01 22:07 ` [Bug other/64145] " dominiq at lps dot ens.fr
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: howarth at bromo dot med.uc.edu @ 2014-12-01 21:57 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 64145
           Summary: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED
                    with isl 0.14
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
          Assignee: unassigned at gcc dot gnu.org
          Reporter: howarth at bromo dot med.uc.edu

The gcc.dg/graphite/isl-codegen-loop-dumping.c testcase appears as UNRESOLVED
when gcc trunk is built against isl 0.14. The test suite log shows...

Executing on host: /sw/src/fink.build/gcc50-5.0.0-1000/darwin_objdir/gcc/xgcc
-B/sw/src/fink.build/gcc50-5.0.0-1000/darwin_objdir/gcc/
/sw/src/fink.build/gcc50-5.0.0-1000/gcc-5-20141201/gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c
 -fno-diagnostics-show-caret -fdiagnostics-color=never   -O2
-fdump-tree-graphite-all -S  -m32  -o isl-codegen-loop-dumping.s    (timeout =
300)
spawn /sw/src/fink.build/gcc50-5.0.0-1000/darwin_objdir/gcc/xgcc
-B/sw/src/fink.build/gcc50-5.0.0-1000/darwin_objdir/gcc/
/sw/src/fink.build/gcc50-5.0.0-1000/gcc-5-20141201/gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c
-fno-diagnostics-show-caret -fdiagnostics-color=never -O2
-fdump-tree-graphite-all -S -m32 -o isl-codegen-loop-dumping.s^M
PASS: gcc.dg/graphite/isl-codegen-loop-dumping.c (test for excess errors)
gcc.dg/graphite/isl-codegen-loop-dumping.c: dump file does not exist
UNRESOLVED: gcc.dg/graphite/isl-codegen-loop-dumping.c scan-tree-dump-times
graphite "ISL AST generated by ISL: \nfor \\(int c1 = 0; c1 < n - 1; c1 \\+=
1\\)\n  for \\(int c3 = 0; c3 < n; c3 \\+= 1\\)\n    S_4\\(c1, c3\\);" 1

with -fdump-tree-graphite-all apparently not creating any dump files.


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

* [Bug other/64145] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
@ 2014-12-01 22:07 ` dominiq at lps dot ens.fr
  2014-12-02  0:54 ` howarth at bromo dot med.uc.edu
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dominiq at lps dot ens.fr @ 2014-12-01 22:07 UTC (permalink / raw)
  To: gcc-bugs

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

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-12-01
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
Confirmed.


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

* [Bug other/64145] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
  2014-12-01 22:07 ` [Bug other/64145] " dominiq at lps dot ens.fr
@ 2014-12-02  0:54 ` howarth at bromo dot med.uc.edu
  2014-12-02  1:08 ` howarth at bromo dot med.uc.edu
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: howarth at bromo dot med.uc.edu @ 2014-12-02  0:54 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from howarth at bromo dot med.uc.edu ---
Noticing that this bug seems similar to that fixed in
https://gcc.gnu.org/ml/gcc-patches/2011-07/msg00450.html, I puzzled out that
the following change allows the gcc.dg/graphite/isl-codegen-loop-dumping.c test
case to generate the expected dump file and pass.

Index: gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c
===================================================================
--- gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c    (revision
218247)
+++ gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c    (working copy)
@@ -1,4 +1,4 @@
-/* { dg-options "-O2 -fdump-tree-graphite-all" } */
+/* { dg-options "-O2 -fgraphite-identity -fdump-tree-graphite-all" } */

 int
 main (int n, int *a)


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

* [Bug other/64145] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
  2014-12-01 22:07 ` [Bug other/64145] " dominiq at lps dot ens.fr
  2014-12-02  0:54 ` howarth at bromo dot med.uc.edu
@ 2014-12-02  1:08 ` howarth at bromo dot med.uc.edu
  2014-12-02 13:22 ` [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315 dominiq at lps dot ens.fr
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: howarth at bromo dot med.uc.edu @ 2014-12-02  1:08 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from howarth at bromo dot med.uc.edu ---
Also, if -fdump-tree-graphite-all alone is supposed to trigger graphite usage,
what exact level graphite optimization is to be expected (as we currently don't
enable any graphite features at -O2)?


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (2 preceding siblings ...)
  2014-12-02  1:08 ` howarth at bromo dot med.uc.edu
@ 2014-12-02 13:22 ` dominiq at lps dot ens.fr
  2014-12-04  8:46 ` fxcoudert at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dominiq at lps dot ens.fr @ 2014-12-02 13:22 UTC (permalink / raw)
  To: gcc-bugs

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

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |romangareev at gcc dot gnu.org
          Component|other                       |testsuite
            Summary|gcc.dg/graphite/isl-codegen |[5 Regression]
                   |-loop-dumping.c UNRESOLVED  |gcc.dg/graphite/isl-codegen
                   |with isl 0.14               |-loop-dumping.c UNRESOLVED
                   |                            |after r217315.

--- Comment #4 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
AFAICT this has nothing to do with isl 0.14, but is due to a typo in r217315
where " -fgraphite-identity -fgraphite-code-generator=isl" has been deleted
instead of only " -fgraphite-code-generator=isl".


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (3 preceding siblings ...)
  2014-12-02 13:22 ` [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315 dominiq at lps dot ens.fr
@ 2014-12-04  8:46 ` fxcoudert at gcc dot gnu.org
  2015-01-09 11:20 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2014-12-04  8:46 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> ---
Author: fxcoudert
Date: Thu Dec  4 08:46:03 2014
New Revision: 218342

URL: https://gcc.gnu.org/viewcvs?rev=218342&root=gcc&view=rev
Log:
    PR testsuite/64145
    * gcc.dg/graphite/isl-codegen-loop-dumping.c: Restore
    -fgraphite-identity.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.dg/graphite/isl-codegen-loop-dumping.c


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (4 preceding siblings ...)
  2014-12-04  8:46 ` fxcoudert at gcc dot gnu.org
@ 2015-01-09 11:20 ` rguenth at gcc dot gnu.org
  2015-02-16 15:02 ` mpolacek at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-01-09 11:20 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.0


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (5 preceding siblings ...)
  2015-01-09 11:20 ` rguenth at gcc dot gnu.org
@ 2015-02-16 15:02 ` mpolacek at gcc dot gnu.org
  2015-02-25  9:17 ` law at redhat dot com
  2015-02-25 14:49 ` law at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2015-02-16 15:02 UTC (permalink / raw)
  To: gcc-bugs

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

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

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

--- Comment #6 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
So fixed?


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (6 preceding siblings ...)
  2015-02-16 15:02 ` mpolacek at gcc dot gnu.org
@ 2015-02-25  9:17 ` law at redhat dot com
  2015-02-25 14:49 ` law at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: law at redhat dot com @ 2015-02-25  9:17 UTC (permalink / raw)
  To: gcc-bugs

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

Jeffrey A. Law <law at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |law at redhat dot com

--- Comment #7 from Jeffrey A. Law <law at redhat dot com> ---
Fixed on the trunk back in December.


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

* [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315.
  2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
                   ` (7 preceding siblings ...)
  2015-02-25  9:17 ` law at redhat dot com
@ 2015-02-25 14:49 ` law at redhat dot com
  8 siblings, 0 replies; 10+ messages in thread
From: law at redhat dot com @ 2015-02-25 14:49 UTC (permalink / raw)
  To: gcc-bugs

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

Jeffrey A. Law <law at redhat dot com> changed:

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

--- Comment #8 from Jeffrey A. Law <law at redhat dot com> ---
Fixed on trunk back in in December, forgot to close last night.


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

end of thread, other threads:[~2015-02-25 13:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-01 21:57 [Bug other/64145] New: gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED with isl 0.14 howarth at bromo dot med.uc.edu
2014-12-01 22:07 ` [Bug other/64145] " dominiq at lps dot ens.fr
2014-12-02  0:54 ` howarth at bromo dot med.uc.edu
2014-12-02  1:08 ` howarth at bromo dot med.uc.edu
2014-12-02 13:22 ` [Bug testsuite/64145] [5 Regression] gcc.dg/graphite/isl-codegen-loop-dumping.c UNRESOLVED after r217315 dominiq at lps dot ens.fr
2014-12-04  8:46 ` fxcoudert at gcc dot gnu.org
2015-01-09 11:20 ` rguenth at gcc dot gnu.org
2015-02-16 15:02 ` mpolacek at gcc dot gnu.org
2015-02-25  9:17 ` law at redhat dot com
2015-02-25 14:49 ` law at redhat dot com

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).