public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
@ 2012-08-16 15:05 janus at gcc dot gnu.org
  2012-09-19 12:07 ` [Bug fortran/54286] " rguenth at gcc dot gnu.org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: janus at gcc dot gnu.org @ 2012-08-16 15:05 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 54286
           Summary: [4.8 Regression] Accepts invalid proc-pointer
                    assignments involving proc-ptr function result
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: janus@gcc.gnu.org


The following test is probably invalid, but not rejected by recent trunk
versions:


type :: t
  procedure(a), pointer, nopass :: p
end type

type(t) :: x
procedure(iabs), pointer :: pp

x%p => a     ! ok
x%p => a(1)  ! invalid, but not rejected by 4.8

pp => a(2)   ! ok
pp => a      ! invalid, but not rejected by 4.8

contains

  function a (c) result (b)
    integer, intent(in) :: c
    procedure(iabs), pointer :: b
    b => iabs
  end function

end



gfortran 4.7 rejects it with:

x%p => a(1)
       1
Error: Interface mismatch in procedure pointer assignment at (1): Type/rank
mismatch in return value of 'b'

pp => a
      1
Error: Interface mismatch in procedure pointer assignment at (1): Type/rank
mismatch in return value of 'a'


However, I wonder why one of the errors refers to 'a' and the other to 'b'.
Also I'm not sure whether 'type/rank mismatch' is the correct diagnostic. I
would rather say there is a mismatch in the procedure pointer attribute of the
result (which is not checked for yet), cf. also PR 35831.


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
@ 2012-09-19 12:07 ` rguenth at gcc dot gnu.org
  2012-09-19 12:29 ` burnus at gcc dot gnu.org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-09-19 12:07 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
   Target Milestone|---                         |4.8.0


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
  2012-09-19 12:07 ` [Bug fortran/54286] " rguenth at gcc dot gnu.org
@ 2012-09-19 12:29 ` burnus at gcc dot gnu.org
  2013-01-08 21:44 ` pault at gcc dot gnu.org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: burnus at gcc dot gnu.org @ 2012-09-19 12:29 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |accepts-invalid
                 CC|                            |burnus at gcc dot gnu.org

--- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> 2012-09-19 12:28:50 UTC ---
(When you look into this problem: I think the current handling of assumed-rank
is also wrong (sorry, my mistake). For array passing, assumed-rank dummies take
any rank (including scalar). However, for dummy procedures or proc-pointers, if
the dummy/proc-pointer has an assumed rank dummy, the actual/proc/target has to
have one too.)


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
  2012-09-19 12:07 ` [Bug fortran/54286] " rguenth at gcc dot gnu.org
  2012-09-19 12:29 ` burnus at gcc dot gnu.org
@ 2013-01-08 21:44 ` pault at gcc dot gnu.org
  2013-01-09  9:44 ` pault at gcc dot gnu.org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-08 21:44 UTC (permalink / raw)
  To: gcc-bugs


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

Paul Thomas <pault at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-01-08
         AssignedTo|unassigned at gcc dot       |pault at gcc dot gnu.org
                   |gnu.org                     |
     Ever Confirmed|0                           |1

--- Comment #2 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-08 21:43:46 UTC ---
Created attachment 29113
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29113
A patch that recovers the original error

Tobias' remarks about the appropriateness of the error are justified.  I will
look into this tomorrow.

Paul


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2013-01-08 21:44 ` pault at gcc dot gnu.org
@ 2013-01-09  9:44 ` pault at gcc dot gnu.org
  2013-01-09 12:07 ` mikael at gcc dot gnu.org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-09  9:44 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-09 09:44:07 UTC ---
Please find below my interpretation of the validity or not of the testcase for
this PR.

> The following test is probably invalid, but not rejected by recent trunk
> versions:
> 
> 
> type :: t
>   procedure(a), pointer, nopass :: p
> end type
> 
> type(t) :: x
> procedure(iabs), pointer :: pp
> 
> x%p => a     ! ok

[A] I believe that this is invalid because the interfaces do not match
procedure(iabs), pointer  =>  integer pointer procedure (integer formal)

It strikes me as being a moot point as to whetehr or not the processor is
required to report it though, on the gorunds that "anything goes" with
pointers! That said, the interface check is easy to implement.

> x%p => a(1)  ! invalid, but not rejected by 4.8

[B] This is valid:
procedure(iabs), pointer  =>  pointer to integer procedure(iabs)

It has the pleasing property of providing the correct result for
print *, x%p(-99) .eq. iabs(-99)

> 
> pp => a(2)   ! ok

[B] applies - it also gives the correct result.

> pp => a      ! invalid, but not rejected by 4.8

[A] applies - invalid.

> 
> contains
> 
>   function a (c) result (b)
>     integer, intent(in) :: c
>     procedure(iabs), pointer :: b
>     b => iabs
>   end function
> 
> end

Interestingly, both invalid lines run and provide results that are consistent
with INT (loc (iabs)) :-)

Paul


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2013-01-09  9:44 ` pault at gcc dot gnu.org
@ 2013-01-09 12:07 ` mikael at gcc dot gnu.org
  2013-01-09 13:08 ` pault at gcc dot gnu.org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: mikael at gcc dot gnu.org @ 2013-01-09 12:07 UTC (permalink / raw)
  To: gcc-bugs


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

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

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

--- Comment #4 from Mikael Morin <mikael at gcc dot gnu.org> 2013-01-09 12:06:53 UTC ---
(In reply to comment #3)
> > type :: t
> >   procedure(a), pointer, nopass :: p
> > end type
> > 
> > type(t) :: x
> > procedure(iabs), pointer :: pp
> > 
> > x%p => a     ! ok
> 
> [A] I believe that this is invalid because the interfaces do not match
> procedure(iabs), pointer  =>  integer pointer procedure (integer formal)

[...] 
> > x%p => a(1)  ! invalid, but not rejected by 4.8
> 
> [B] This is valid:
> procedure(iabs), pointer  =>  pointer to integer procedure(iabs)

Huh? the interface of `x%p' is `a', not `iabs'.
I think the comments are correct; the former is valid, the latter invalid.


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2013-01-09 12:07 ` mikael at gcc dot gnu.org
@ 2013-01-09 13:08 ` pault at gcc dot gnu.org
  2013-01-13  8:58 ` pault at gcc dot gnu.org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-09 13:08 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #5 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-09 13:07:31 UTC ---
(In reply to comment #4)
> (In reply to comment #3)
....snip....
> Huh? the interface of `x%p' is `a', not `iabs'.
> I think the comments are correct; the former is valid, the latter invalid.

Quite right - thanks, Mikael.  I missed/forgot/ignored the first interface. 
That makes life a lot easier because the patch does the right thing :-)

Cheers

Paul


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2013-01-09 13:08 ` pault at gcc dot gnu.org
@ 2013-01-13  8:58 ` pault at gcc dot gnu.org
  2013-01-14  5:53 ` pault at gcc dot gnu.org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-13  8:58 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #6 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-13 08:57:51 UTC ---
Author: pault
Date: Sun Jan 13 08:57:46 2013
New Revision: 195133

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195133
Log:
2013-01-13  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/54286
    * expr.c (gfc_check_pointer_assign): Ensure that both lvalue
    and rvalue interfaces are presented to gfc_compare_interfaces.
    Simplify references to interface names by using the symbols
    themselves. Call gfc_compare_interfaces with s1 and s2 inter-
    changed to overcome the asymmetry of this function. Do not
    repeat the check for the presence of s1 and s2.

2013-01-13  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/54286
    * gfortran.dg/proc_ptr_result_8.f90 : New test.

Added:
    trunk/gcc/testsuite/gfortran.dg/proc_ptr_result_8.f90
Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/expr.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2013-01-13  8:58 ` pault at gcc dot gnu.org
@ 2013-01-14  5:53 ` pault at gcc dot gnu.org
  2013-01-14 20:32 ` pault at gcc dot gnu.org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-14  5:53 UTC (permalink / raw)
  To: gcc-bugs


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

Paul Thomas <pault at gcc dot gnu.org> changed:

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

--- Comment #7 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-14 05:52:48 UTC ---
Fixed on trunk.

Thanks for the report

Paul


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2013-01-14  5:53 ` pault at gcc dot gnu.org
@ 2013-01-14 20:32 ` pault at gcc dot gnu.org
  2013-01-14 22:35 ` dominiq at lps dot ens.fr
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-14 20:32 UTC (permalink / raw)
  To: gcc-bugs


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

Paul Thomas <pault at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |dominiq at lps dot ens.fr
         Resolution|FIXED                       |

--- Comment #8 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-14 20:32:04 UTC ---
ICE noted by Dominique d'Humieres with

module m
  type :: foobar
    real, pointer :: array(:)
    procedure (), pointer, nopass :: f
  end type
contains
  elemental subroutine fooAssgn (a1, a2)
    type(foobar), intent(out) :: a1
    type(foobar), intent(in) :: a2
    allocate (a1%array(size(a2%array)))
    a1%array = a2%array
    a1%f => a2%f
  end subroutine
end module m

Dominique also provided the fix on #gfortran:
in gfc_check_pointer_assign of ../../gcc/fortran/expr.c:3540
replacing if (s2->attr.proc_pointer with if (s2 && s2->attr.proc_pointer
lets the code compile.

Will commit as 'obvious' as soon as it has bootstrapped and regtested.

Paul


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2013-01-14 20:32 ` pault at gcc dot gnu.org
@ 2013-01-14 22:35 ` dominiq at lps dot ens.fr
  2013-01-15  5:29 ` pault at gcc dot gnu.org
  2013-01-15  5:34 ` pault at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: dominiq at lps dot ens.fr @ 2013-01-14 22:35 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #9 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2013-01-14 22:35:20 UTC ---
Additional comment from #gfortran:

AFAIU this kind of changes, they cannot cause a problem for anything that did
not triggered the ICE.

So they are basically harmless, excepted that they can trun an ICE into a wrong
code, which is worse (IMO).

Too bad I cannot remember the origin of the code.


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2013-01-14 22:35 ` dominiq at lps dot ens.fr
@ 2013-01-15  5:29 ` pault at gcc dot gnu.org
  2013-01-15  5:34 ` pault at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-15  5:29 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #10 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-15 05:29:07 UTC ---
Author: pault
Date: Tue Jan 15 05:29:01 2013
New Revision: 195185

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=195185
Log:
2013-01-15  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/54286
    * expr.c (gfc_check_pointer_assign): Check for presence of
    's2' before using it.

2013-01-15  Paul Thomas  <pault@gcc.gnu.org>

    PR fortran/54286
    * gfortran.dg/proc_ptr_result_8.f90 : Add module 'm' to check
    case where interface is null.


Modified:
    trunk/gcc/fortran/ChangeLog
    trunk/gcc/fortran/expr.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gfortran.dg/proc_ptr_result_8.f90


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

* [Bug fortran/54286] [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result
  2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2013-01-15  5:29 ` pault at gcc dot gnu.org
@ 2013-01-15  5:34 ` pault at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: pault at gcc dot gnu.org @ 2013-01-15  5:34 UTC (permalink / raw)
  To: gcc-bugs


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

Paul Thomas <pault at gcc dot gnu.org> changed:

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

--- Comment #11 from Paul Thomas <pault at gcc dot gnu.org> 2013-01-15 05:34:25 UTC ---
Hopefully, it will stay fixed this time!

Thanks Dominique.

Paul


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

end of thread, other threads:[~2013-01-15  5:34 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-16 15:05 [Bug fortran/54286] New: [4.8 Regression] Accepts invalid proc-pointer assignments involving proc-ptr function result janus at gcc dot gnu.org
2012-09-19 12:07 ` [Bug fortran/54286] " rguenth at gcc dot gnu.org
2012-09-19 12:29 ` burnus at gcc dot gnu.org
2013-01-08 21:44 ` pault at gcc dot gnu.org
2013-01-09  9:44 ` pault at gcc dot gnu.org
2013-01-09 12:07 ` mikael at gcc dot gnu.org
2013-01-09 13:08 ` pault at gcc dot gnu.org
2013-01-13  8:58 ` pault at gcc dot gnu.org
2013-01-14  5:53 ` pault at gcc dot gnu.org
2013-01-14 20:32 ` pault at gcc dot gnu.org
2013-01-14 22:35 ` dominiq at lps dot ens.fr
2013-01-15  5:29 ` pault at gcc dot gnu.org
2013-01-15  5:34 ` pault 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).