[flang-commits] [PATCH] D133857: [flang] Limit shape inquiries rewrite to associate construct entity

Jean Perier via Phabricator via flang-commits flang-commits at lists.llvm.org
Wed Sep 14 08:56:35 PDT 2022


jeanPerier added a comment.

In D133857#3789550 <https://reviews.llvm.org/D133857#3789550>, @PeteSteinfeld wrote:

> Here's a program that I believe will give the wrong result if we implement this change:
> I believe that, for a conforming compiler, the final `print` statement should print `size(x):  20`.  But with the changes you propose, we print `size(x):  10`.
> Interestingly, the only compiler I can find that agrees with me is NAG.  Every other compiler I've tried prints `size(x):  10`.

I disagree here, I think the program you wrote is  non-conforming since `deallocate(ra)` destroyed `x` storage (violates 9.7.3.2 point 1). If you do this test with a pointer (without deallocating the pointer, just setting a new target to the pointer), I believe this is conforming, and the expected result is 10 (this times, both NAG and all other compilers agree with this change).

That is because when the selector is an allocatable or pointer, the selector is associated with the current data object/target (and not the pointer/allocatable itself). See:

11.1.3.3 point 1: //The associating entity does not have the ALLOCATABLE or POINTER attributes;//

And:

19.5.1.6 point 2:
// In an ASSOCIATE or SELECT TYPE construct, the following rules apply.
• If a selector is allocatable, it shall be allocated; the associate name is associated with the data object and does not have the ALLOCATABLE attribute.
• If a selector has the POINTER attribute, it shall be associated; the associate name is associated with the target of the pointer and does not have the POINTER attribute.//

And:

9.7.3.2 point 1: //An allocatable variable shall not be deallocated if it or any subobject of it is argument associated with a dummy argument or construct associated with an associate name.//

In D133857#3789550 <https://reviews.llvm.org/D133857#3789550>, @PeteSteinfeld wrote:

> The criterion you're using to figure out whether to rewrite the expression seems wrong to me.  Rather than checking if the bounds are constant, I think that we should be checking to see if the right hand side of the ASSOCIATE clause is a variable.

I disagree here, based on the arguments above, both `ASSOCIATE(X => P)` and `ASSOCIATE(X => P+1)` with p a pointer or allocatable should not lead SIZE(X) to be resolved to SIZE(P) as it used to be. So the fact that the selector is a variable or an expression does not matter, and the shape and bounds of the associate name are "frozen" at the time of the association.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133857/new/

https://reviews.llvm.org/D133857



More information about the flang-commits mailing list