public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/67451] New: ICE with sourced allocation from coarray.
@ 2015-09-04 13:21 ian_harvey at bigpond dot com
  2015-09-05  1:22 ` [Bug fortran/67451] [5/6 Regression] " dominiq at lps dot ens.fr
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ian_harvey at bigpond dot com @ 2015-09-04 13:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 67451
           Summary: ICE with sourced allocation from coarray.
           Product: gcc
           Version: 6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ian_harvey at bigpond dot com
  Target Milestone: ---

The following, when compiled with trunk r227476, results in a ICE:

  program main
    implicit none
    type foo
      integer :: bar = 99
    end type
    class(foo), allocatable :: foobar[:]
    class(foo), allocatable :: some_local_object
    allocate(foobar[*])
    allocate(some_local_object, source=foobar)
  end program

The ICE is associated with the use of a coarray or coindexed object in the
source expression of the allocate statement.



$ gfortran -v -fcoarray=lib 2015-09-04\ sourced-alloc.f90
Driving: gfortran -v -fcoarray=lib 2015-09-04 sourced-alloc.f90 -l gfortran -l
m -shared-libgcc
Using built-in specs.
COLLECT_GCC=gfortran
COLLECT_LTO_WRAPPER=/home/MEGMS2/ian/usr/gcc-6.0.0/libexec/gcc/x86_64-pc-linux-gnu/6.0.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: .././src/configure --prefix=/home/MEGMS2/ian/usr/gcc-6.0.0
--enable-languages=c,c++,fortran --enable-libgomp --enable-checking=release
Thread model: posix
gcc version 6.0.0 20150903 (experimental) (GCC)
COLLECT_GCC_OPTIONS='-v' '-fcoarray=lib' '-shared-libgcc' '-mtune=generic'
'-march=x86-64'
 /home/MEGMS2/ian/usr/gcc-6.0.0/libexec/gcc/x86_64-pc-linux-gnu/6.0.0/f951
2015-09-04 sourced-alloc.f90 -quiet -dumpbase 2015-09-04 sourced-alloc.f90
-mtune=generic -march=x86-64 -auxbase 2015-09-04 sourced-alloc -version
-fcoarray=lib -fintrinsic-modules-path
/home/MEGMS2/ian/usr/gcc-6.0.0/lib/gcc/x86_64-pc-linux-gnu/6.0.0/finclude -o
/tmp/ccX5BIwU.s
GNU Fortran (GCC) version 6.0.0 20150903 (experimental) (x86_64-pc-linux-gnu)
        compiled by GNU C version 6.0.0 20150903 (experimental), GMP version
6.0.0, MPFR version 3.1.2, MPC version 1.0.2
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
GNU Fortran2008 (GCC) version 6.0.0 20150903 (experimental)
(x86_64-pc-linux-gnu)
        compiled by GNU C version 6.0.0 20150903 (experimental), GMP version
6.0.0, MPFR version 3.1.2, MPC version 1.0.2
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
2015-09-04 sourced-alloc.f90:9:0:

     allocate(some_local_object, source=foobar)
1
internal compiler error: Segmentation fault
0xa1271f crash_signal
        ../.././src/gcc/toplev.c:352
0x690f9e gfc_class_vptr_get(tree_node*)
        ../.././src/gcc/fortran/trans-expr.c:153
0x694155 class_vtab_field_get
        ../.././src/gcc/fortran/trans-expr.c:201
0x694155 gfc_class_vtab_copy_get(tree_node*)
        ../.././src/gcc/fortran/trans-expr.c:223
0x694155 gfc_copy_class_to_class(tree_node*, tree_node*, tree_node*, bool)
        ../.././src/gcc/fortran/trans-expr.c:1084
0x6cd11b gfc_trans_allocate(gfc_code*)
        ../.././src/gcc/fortran/trans-stmt.c:5725
0x66a7e7 trans_code
        ../.././src/gcc/fortran/trans.c:1798
0x68d6f3 gfc_generate_function_code(gfc_namespace*)
        ../.././src/gcc/fortran/trans-decl.c:5900
0x627210 translate_all_program_units
        ../.././src/gcc/fortran/parse.c:5526
0x627210 gfc_parse_file()
        ../.././src/gcc/fortran/parse.c:5731
0x667ba2 gfc_be_parse_file
        ../.././src/gcc/fortran/f95-lang.c:209
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/67451] [5/6 Regression] ICE with sourced allocation from coarray.
  2015-09-04 13:21 [Bug fortran/67451] New: ICE with sourced allocation from coarray ian_harvey at bigpond dot com
@ 2015-09-05  1:22 ` dominiq at lps dot ens.fr
  2015-10-16  8:27 ` rguenth at gcc dot gnu.org
  2015-10-16  8:32 ` rguenth at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: dominiq at lps dot ens.fr @ 2015-09-05  1:22 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-09-05
                 CC|                            |vehre at gcc dot gnu.org
      Known to work|                            |4.9.3
            Summary|ICE with sourced allocation |[5/6 Regression] ICE with
                   |from coarray.               |sourced allocation from
                   |                            |coarray.
     Ever confirmed|0                           |1

--- Comment #1 from Dominique d'Humieres <dominiq at lps dot ens.fr> ---
The test in comment 0 compiles with r221464 (2015-03-16), but gives an ICE when
compiled with r221495 (2015-03-18). Caveat: my revision r221495 contains three
patches and the ICE may be due to a patch committed after r221495.


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

* [Bug fortran/67451] [5/6 Regression] ICE with sourced allocation from coarray.
  2015-09-04 13:21 [Bug fortran/67451] New: ICE with sourced allocation from coarray ian_harvey at bigpond dot com
  2015-09-05  1:22 ` [Bug fortran/67451] [5/6 Regression] " dominiq at lps dot ens.fr
@ 2015-10-16  8:27 ` rguenth at gcc dot gnu.org
  2015-10-16  8:32 ` rguenth at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-16  8:27 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |5.3


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

* [Bug fortran/67451] [5/6 Regression] ICE with sourced allocation from coarray.
  2015-09-04 13:21 [Bug fortran/67451] New: ICE with sourced allocation from coarray ian_harvey at bigpond dot com
  2015-09-05  1:22 ` [Bug fortran/67451] [5/6 Regression] " dominiq at lps dot ens.fr
  2015-10-16  8:27 ` rguenth at gcc dot gnu.org
@ 2015-10-16  8:32 ` rguenth at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-10-16  8:32 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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

end of thread, other threads:[~2015-10-16  8:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-04 13:21 [Bug fortran/67451] New: ICE with sourced allocation from coarray ian_harvey at bigpond dot com
2015-09-05  1:22 ` [Bug fortran/67451] [5/6 Regression] " dominiq at lps dot ens.fr
2015-10-16  8:27 ` rguenth at gcc dot gnu.org
2015-10-16  8:32 ` 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).