public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/66100] New: [6.0 Regression] Matmul ICE in simplify_bound
@ 2015-05-11  5:20 Joost.VandeVondele at mat dot ethz.ch
  2015-05-11  6:55 ` [Bug fortran/66100] [6.0 Regression] " tkoenig at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Joost.VandeVondele at mat dot ethz.ch @ 2015-05-11  5:20 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 66100
           Summary: [6.0 Regression] Matmul ICE in simplify_bound
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: Joost.VandeVondele at mat dot ethz.ch
  Target Milestone: ---

> cat bug.f90
MODULE qs_integrate_potential_low
  INTEGER, PARAMETER :: dp = 8
  TYPE cell_type
    REAL(KIND=8) :: h_inv(3,3)
  END TYPE
  TYPE(cell_type), POINTER                 :: cell
  REAL(KIND=dp), DIMENSION(3)              :: rp
  CONTAINS
    SUBROUTINE integrate_general_opt()
    REAL(KIND=dp) :: gp(3)
    INTEGER :: ng
      gp=MATMUL(cell%h_inv,rp)*ng
    END SUBROUTINE integrate_general_opt
END MODULE qs_integrate_potential_low

with 

gcc version 6.0.0 20150511 (experimental) [trunk revision 222989] (GCC) 

> gfortran -O1 bug.f90
f951: internal compiler error: in simplify_bound, at fortran/simplify.c:3467
0x659389 simplify_bound
        ../../gcc/gcc/fortran/simplify.c:3463
0x5f7fa1 do_simplify
        ../../gcc/gcc/fortran/intrinsic.c:4149
0x605618 gfc_intrinsic_func_interface(gfc_expr*, int)
        ../../gcc/gcc/fortran/intrinsic.c:4403
0x5edf62 gfc_simplify_expr(gfc_expr*, int)
        ../../gcc/gcc/fortran/expr.c:1837
0x708365 get_array_inq_function
        ../../gcc/gcc/fortran/frontend-passes.c:2018
0x70d5a9 scalarized_expr
        ../../gcc/gcc/fortran/frontend-passes.c:2657
0x70b8e2 inline_matmul_assign
        ../../gcc/gcc/fortran/frontend-passes.c:3000
0x70bde9 gfc_code_walker(gfc_code**, int (*)(gfc_code**, int*, void*), int
(*)(gfc_expr**, int*, void*), void*)
        ../../gcc/gcc/fortran/frontend-passes.c:3188
0x70ce6b optimize_namespace
        ../../gcc/gcc/fortran/frontend-passes.c:989
0x70ce38 optimize_namespace
        ../../gcc/gcc/fortran/frontend-passes.c:995
0x70cfc3 gfc_run_passes(gfc_namespace*)
        ../../gcc/gcc/fortran/frontend-passes.c:129
0x637bda gfc_parse_file()
        ../../gcc/gcc/fortran/parse.c:5477
0x678ef5 gfc_be_parse_file
        ../../gcc/gcc/fortran/f95-lang.c:228
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.


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

* [Bug fortran/66100] [6.0 Regression] ICE in simplify_bound
  2015-05-11  5:20 [Bug fortran/66100] New: [6.0 Regression] Matmul ICE in simplify_bound Joost.VandeVondele at mat dot ethz.ch
@ 2015-05-11  6:55 ` tkoenig at gcc dot gnu.org
  2015-05-11 21:04 ` [Bug fortran/66100] [6 " mikael at gcc dot gnu.org
  2015-05-13  9:47 ` mikael at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: tkoenig at gcc dot gnu.org @ 2015-05-11  6:55 UTC (permalink / raw)
  To: gcc-bugs

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

Thomas Koenig <tkoenig at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-05-11
                 CC|                            |mikael at gcc dot gnu.org
   Target Milestone|---                         |6.0
            Summary|[6.0 Regression] Matmul ICE |[6.0 Regression] ICE in
                   |in simplify_bound           |simplify_bound
     Ever confirmed|0                           |1

--- Comment #1 from Thomas Koenig <tkoenig at gcc dot gnu.org> ---
This is independent of matmul:

MODULE qs_integrate_potential_low
  INTEGER, PARAMETER :: dp = 8
  TYPE cell_type
    REAL(KIND=8) :: h_inv(3,3)
  END TYPE
  TYPE(cell_type), POINTER                 :: cell
  REAL(KIND=dp), DIMENSION(3)              :: rp
  CONTAINS
    SUBROUTINE integrate_general_opt()
    REAL(KIND=dp) :: gp(3)
    INTEGER :: ng
      print *,lbound(cell%h_inv)
    END SUBROUTINE integrate_general_opt
END MODULE qs_integrate_potential_low

This is an assert introduced in r222979.  Removing the assert makes the
code work, at least superficially (it will print out 1,1).

Mikael?


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

* [Bug fortran/66100] [6 Regression] ICE in simplify_bound
  2015-05-11  5:20 [Bug fortran/66100] New: [6.0 Regression] Matmul ICE in simplify_bound Joost.VandeVondele at mat dot ethz.ch
  2015-05-11  6:55 ` [Bug fortran/66100] [6.0 Regression] " tkoenig at gcc dot gnu.org
@ 2015-05-11 21:04 ` mikael at gcc dot gnu.org
  2015-05-13  9:47 ` mikael at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-05-11 21:04 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Mikael Morin <mikael at gcc dot gnu.org> ---
Author: mikael
Date: Mon May 11 21:03:50 2015
New Revision: 223019

URL: https://gcc.gnu.org/viewcvs?rev=223019&root=gcc&view=rev
Log:
Fix fortran/66100 bound simplification ICE

        PR fortran/66100
gcc/fortran/
        * simplify.c (simplify_bound): Fix assert to accept subobject * arrays.
gcc/testsuite/
        * gfortran.dg/bound_simplification_6.f90: New.


Added:
    trunk/gcc/testsuite/gfortran.dg/bound_simplification_6.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/simplify.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug fortran/66100] [6 Regression] ICE in simplify_bound
  2015-05-11  5:20 [Bug fortran/66100] New: [6.0 Regression] Matmul ICE in simplify_bound Joost.VandeVondele at mat dot ethz.ch
  2015-05-11  6:55 ` [Bug fortran/66100] [6.0 Regression] " tkoenig at gcc dot gnu.org
  2015-05-11 21:04 ` [Bug fortran/66100] [6 " mikael at gcc dot gnu.org
@ 2015-05-13  9:47 ` mikael at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: mikael at gcc dot gnu.org @ 2015-05-13  9:47 UTC (permalink / raw)
  To: gcc-bugs

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

Mikael Morin <mikael at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED
           Assignee|unassigned at gcc dot gnu.org      |mikael at gcc dot gnu.org

--- Comment #3 from Mikael Morin <mikael at gcc dot gnu.org> ---
This should be fixed.


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

end of thread, other threads:[~2015-05-13  9:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-11  5:20 [Bug fortran/66100] New: [6.0 Regression] Matmul ICE in simplify_bound Joost.VandeVondele at mat dot ethz.ch
2015-05-11  6:55 ` [Bug fortran/66100] [6.0 Regression] " tkoenig at gcc dot gnu.org
2015-05-11 21:04 ` [Bug fortran/66100] [6 " mikael at gcc dot gnu.org
2015-05-13  9:47 ` mikael 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).