public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "federico.perini at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug fortran/106771] New: [OOP] ICE with PACK intrinsic, in gfc_conv_expr_descriptor, at fortran/trans-array.c:7328
Date: Mon, 29 Aug 2022 10:02:07 +0000	[thread overview]
Message-ID: <bug-106771-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 106771
           Summary: [OOP] ICE with PACK intrinsic, in
                    gfc_conv_expr_descriptor, at
                    fortran/trans-array.c:7328
           Product: gcc
           Version: 9.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: federico.perini at gmail dot com
  Target Milestone: ---

I'm getting an ICE using the PACK intrinsic from within a polymorphic entity.
There are several similar bugs reported, but none seems to address PACK, so I'm
opening a new ticket. BTW: I've tested it on godbolt (try here:
https://godbolt.org/z/cnj6PzqKz)
And it looks like: 

WORKS on: 10.4.0, 11 (all), 12 (all)
ICE   on: 4.9, 5-8 (all), 9 (all), 10.1, 10.2, 10.3

The mask is created from a polymorphic elemental function on the object
Here's a minimal example: 

module test
    implicit none

    type::t
       integer, allocatable :: iloc(:)
       contains 
          procedure :: is_active => isa
          procedure :: list2loc => myfun_poly
    end type t

    contains

    elemental logical function isa(this,i)
       class(t), intent(in) :: this
       integer, intent(in) :: i
       if (i>0 .and. i<=merge(size(this%iloc),0,allocated(this%iloc))) then 
          isa = this%iloc(i)>0
       else
          isa = .false.
       endif  
    end function isa

    ! internal compiler error: in gfc_conv_expr_descriptor, at
fortran/trans-array.c:7328
    function myfun_poly(this,IDs) result (ilocs)
        class(t), intent(in) :: this
        integer, intent(in) :: IDs(:)
        integer, allocatable :: ilocs(:)
        if (size(IDs)<=0) then
           allocate(ilocs(0))
        else
           ilocs = pack(this%iloc(IDs),this%is_active(ilocs))
        endif
    end function myfun_poly

    ! WORKS
    function myfun(this,IDs) result (ilocs)
        type(t), intent(in) :: this
        integer, intent(in) :: IDs(:)
        integer, allocatable :: ilocs(:)
        if (size(IDs)<=0) then
           allocate(ilocs(0))
        else
           ilocs = pack(this%iloc(IDs),this%is_active(ilocs))
        endif
    end function myfun
end module test    

program testp
   use test
   implicit none

   type(t) :: a

   integer :: rnd(100)
   real :: x(100)
   integer, allocatable :: list(:)

   call random_number(x); rnd = ceiling(x*100)

   ! Works
   list = myfun(a,rnd)
   ! ICE
   list = a%list2loc(rnd)

   print *, 'list=',list

end program testp


Hope this helps,
federico

             reply	other threads:[~2022-08-29 10:02 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-29 10:02 federico.perini at gmail dot com [this message]
2022-08-29 17:21 ` [Bug fortran/106771] " anlauf at gcc dot gnu.org
2022-08-29 17:38 ` anlauf at gcc dot gnu.org
2022-08-29 18:09 ` federico.perini at gmail dot com
2022-08-29 18:49 ` anlauf at gcc dot gnu.org
2022-08-30  6:57 ` federico.perini at gmail dot com
2022-08-30  7:08 ` rguenth at gcc dot gnu.org
2022-08-30  8:30 ` anlauf at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-106771-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).