[J3] surprisingly PURE
Bill Long
longb at cray.com
Sun Apr 19 16:43:24 EDT 2020
> On Apr 19, 2020, at 2:16 PM, Steve Lionel via J3 <j3 at mailman.j3-fortran.org> wrote:
>
> I admit that I am not all that good as a language lawyer, but I think Steve K has it right.
>
> C1594 says (with irrelevant parts removed):
>
> In a pure subprogram any designator with a base object that is in common or accessed by host or use association
The base object is Y which is local to the subprogram.
> ,... or an object that is storage associated with any such variable, shall not be used
> (1) in a variable definition context (19.6.7),
Defining a pointer IS defining the target of the pointer. X is host associated. Defining y%p is defining X and so it might be already covered.
Certainly disallowing this case is consistent with the intention that PURE procedures do not modify non-argument-asscoiated variables outside their scope.
Cheers,
Bill
>
> My reading here is that Y%P is an object that is storage associated with X, which is accessed by host association, and therefore Y%P shall not be used in a variable definition context.
>
> I welcome other viewpoints.
>
> Steve L
>
>
> On 4/18/2020 9:31 PM, Robert Corbett via J3 wrote:
>> I assume you mean C1594 (1).
>>
>> No part of C1594 applies to
>> this example. The variable Y is
>> a local variable of SUBR. The
>> variable Y does not satisfy any
>> of the conditions listed at the
>> start of C1594.
>>
>> Robert Corbett
>>
>>> On Apr 18, 2020, at 4:38 PM, Steven G. Kargl <kargl at troutmask.apl.washington.edu> wrote:
>>>
>>>> On Sat, Apr 18, 2020 at 11:12:27PM +0000, Robert Corbett via J3 wrote:
>>>> REAL, TARGET :: X = 1.0
>>>> TYPE T
>>>> REAL, POINTER :: P => X
>>>> END TYPE T
>>>> CALL SUBR
>>>> PRINT *, X
>>>> CONTAINS
>>>> PURE SUBROUTINE SUBR
>>>> TYPE(T) Y
>>>> Y%P = 2.0
>>>> END SUBROUTINE SUBR
>>>> END
>>>> -------------------------------
>>>>
>>>> I think the program given above is standard conformant.
>>>> If it is not standard conformant, please let me know
>>>> why it is not. I know that it should not be standard
>>>> conformant, but I see no reason it is not.
>>>>
>>>> The key point here is that default component
>>>> initialization does not give the variable the SAVE
>>>> attribute. If Y had the SAVE attribute, the program
>>>> would not be conformant.
>>>>
>>>> This program is my third attempt to show this problem.
>>>> My first program was not conformant, and my second did
>>>> not properly demonstrate the problem.
>>>>
>>> Doesn't f2018:C1593(1) apply? I admit I have troubling reading
>>> this section of the Fortran standard.
>>>
>>> --
>>> Steve
>
>
Bill Long longb at cray.com
Principal Engineer, Fortran Technical Support & voice: 651-605-9024
Bioinformatics Software Development fax: 651-605-9143
Cray, a Hewlett Packard Enterprise company/ 2131 Lindau Lane/ Suite 1000/ Bloomington, MN 55425
More information about the J3
mailing list