public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/46321] New: [OOP] Polymorphic deallocation
@ 2010-11-05 18:37 janus at gcc dot gnu.org
  2010-11-05 21:02 ` [Bug fortran/46321] " burnus at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: janus at gcc dot gnu.org @ 2010-11-05 18:37 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: [OOP] Polymorphic deallocation
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: janus@gcc.gnu.org


Follow-up to PR 46174 (comment #2). Test case:


implicit none

type t
end type t

type, extends(t) :: t2
 integer, allocatable :: all(:)
end type t2

class(t), allocatable :: a

allocate(t2 :: a)
select type(a)
 type is (t2)
   allocate(a%all(1000000))
end select
deallocate(a)
end


The deallocation occurs according to the declared type (not the dynamic type),
i.e. the allocatable components of t2 are not being deallocated.

Solution: Add a $free component to the vtab, which points to a deallocation
procedure.


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
@ 2010-11-05 21:02 ` burnus at gcc dot gnu.org
  2011-02-09 14:03 ` burnus at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: burnus at gcc dot gnu.org @ 2010-11-05 21:02 UTC (permalink / raw)
  To: gcc-bugs

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

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2010.11.05 21:02:47
                 CC|                            |burnus at gcc dot gnu.org
     Ever Confirmed|0                           |1


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
  2010-11-05 21:02 ` [Bug fortran/46321] " burnus at gcc dot gnu.org
@ 2011-02-09 14:03 ` burnus at gcc dot gnu.org
  2011-02-21 15:11 ` janus at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: burnus at gcc dot gnu.org @ 2011-02-09 14:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-02-09 13:59:09 UTC ---
Note: There are four cases where a polymorphic deallocate is needed - though
some might end up in the same code path:

- explicit DEALLOCATE (cf. comment 0)
- implicit deallocate at the end of the scope
- implicit deallocate via INTENT(OUT) (cf. PR 47637)
- implicit deallocate when doing polymorphic reallocate on assignment (PR
43366)


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
  2010-11-05 21:02 ` [Bug fortran/46321] " burnus at gcc dot gnu.org
  2011-02-09 14:03 ` burnus at gcc dot gnu.org
@ 2011-02-21 15:11 ` janus at gcc dot gnu.org
  2011-11-26 14:33 ` burnus at gcc dot gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: janus at gcc dot gnu.org @ 2011-02-21 15:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from janus at gcc dot gnu.org 2011-02-21 15:06:10 UTC ---
(In reply to comment #1)
> Note: There are four cases where a polymorphic deallocate is needed - though
> some might end up in the same code path:
> 
> - explicit DEALLOCATE (cf. comment 0)
> - implicit deallocate at the end of the scope
> - implicit deallocate via INTENT(OUT) (cf. PR 47637)
> - implicit deallocate when doing polymorphic reallocate on assignment (PR
> 43366)

Some more things we need to consider:
* explicit deallocation with STAT or ERRMSG
* deallocation of allocatable components (explicit/implicit)


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2011-02-21 15:11 ` janus at gcc dot gnu.org
@ 2011-11-26 14:33 ` burnus at gcc dot gnu.org
  2012-01-29 14:37 ` burnus at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: burnus at gcc dot gnu.org @ 2011-11-26 14:33 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-11-26 12:38:01 UTC ---
For MOVE_ALLOC one also needs to do a polymorphic deallocation.


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2011-11-26 14:33 ` burnus at gcc dot gnu.org
@ 2012-01-29 14:37 ` burnus at gcc dot gnu.org
  2012-05-07  9:34 ` sfilippone at uniroma2 dot it
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-01-29 14:37 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-01-29 14:06:41 UTC ---
Remember also to update the component handling, cf. PR 51972 comment 3.


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2012-01-29 14:37 ` burnus at gcc dot gnu.org
@ 2012-05-07  9:34 ` sfilippone at uniroma2 dot it
  2012-05-07  9:51 ` janus at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sfilippone at uniroma2 dot it @ 2012-05-07  9:34 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Salvatore Filippone <sfilippone at uniroma2 dot it> 2012-05-07 09:32:30 UTC ---
(In reply to comment #1)
> Note: There are four cases where a polymorphic deallocate is needed - though
> some might end up in the same code path:
> 
> - explicit DEALLOCATE (cf. comment 0)
> - implicit deallocate at the end of the scope
> - implicit deallocate via INTENT(OUT) (cf. PR 47637)
> - implicit deallocate when doing polymorphic reallocate on assignment (PR
> 43366)

Looks to me like work on FINAL needs to be interfaced here anyway. Naive view
is that $free points to a FINAL if there is one, or to a default when there's
no FINAL, but the hookup work is the same..


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2012-05-07  9:34 ` sfilippone at uniroma2 dot it
@ 2012-05-07  9:51 ` janus at gcc dot gnu.org
  2013-07-22  7:31 ` janus at gcc dot gnu.org
  2013-08-08 14:36 ` janus at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: janus at gcc dot gnu.org @ 2012-05-07  9:51 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from janus at gcc dot gnu.org 2012-05-07 09:49:52 UTC ---
(In reply to comment #5)
> Looks to me like work on FINAL needs to be interfaced here anyway. Naive view
> is that $free points to a FINAL if there is one, or to a default when there's
> no FINAL, but the hookup work is the same..

Yes, in principle I would agree with this view. Therefore implementing 'plain'
polymorphic deallocation would be the logical fist step to FINAL.


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2012-05-07  9:51 ` janus at gcc dot gnu.org
@ 2013-07-22  7:31 ` janus at gcc dot gnu.org
  2013-08-08 14:36 ` janus at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: janus at gcc dot gnu.org @ 2013-07-22  7:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from janus at gcc dot gnu.org ---
Comment 0 has apparently been fixed by r199643. One should check whether the
remaining items are also handled correctly already (in particular comments 1 -
3).


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

* [Bug fortran/46321] [OOP] Polymorphic deallocation
  2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2013-07-22  7:31 ` janus at gcc dot gnu.org
@ 2013-08-08 14:36 ` janus at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: janus at gcc dot gnu.org @ 2013-08-08 14:36 UTC (permalink / raw)
  To: gcc-bugs

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

janus at gcc dot gnu.org changed:

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

--- Comment #8 from janus at gcc dot gnu.org ---
Indeed all the items from comment 1 to 3 seems to be handled. Below is a test
case, whose dump shows a _final call being created for all of them.

The only exception is realloc-on-assignment, which is not implemented yet for
CLASS variables, but there is PR 43366 to track that.

Therefore this PR can be closed, I think.



program p

type t
end type t

type u
  class(t), allocatable :: c
end type

class(t), allocatable :: a,b
type(u), allocatable :: uu
integer :: i
character(len=100) :: str

allocate(a,b,uu)

! (1) explicit deallocation
deallocate(a)

! (4) STAT and ERRMSG
deallocate(a,stat=i,errmsg=str)
if (i/=0) print *,i,str

! (5) dealloc of comp.
deallocate(uu)

! (6) move_alloc
call move_alloc(b,a)

contains

  subroutine out (x)
    ! (2) intent(out)
    class(t), intent(out) :: x
  end subroutine

  subroutine sub ()
    ! (3) out of scope
    class(t), allocatable :: local
    allocate(local)
  end subroutine

end


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

end of thread, other threads:[~2013-08-08 14:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-05 18:37 [Bug fortran/46321] New: [OOP] Polymorphic deallocation janus at gcc dot gnu.org
2010-11-05 21:02 ` [Bug fortran/46321] " burnus at gcc dot gnu.org
2011-02-09 14:03 ` burnus at gcc dot gnu.org
2011-02-21 15:11 ` janus at gcc dot gnu.org
2011-11-26 14:33 ` burnus at gcc dot gnu.org
2012-01-29 14:37 ` burnus at gcc dot gnu.org
2012-05-07  9:34 ` sfilippone at uniroma2 dot it
2012-05-07  9:51 ` janus at gcc dot gnu.org
2013-07-22  7:31 ` janus at gcc dot gnu.org
2013-08-08 14:36 ` janus 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).