[part,2] PR 102458 - issues with simplification of SIZE intrinsic applied to automatic arrays
Commit Message
Dear Fortranners,
I think I have solved the remaining issue in PR 102458 that prevented the
simplification of an expression involving a static initialization and the
evaluation of the SIZE of an automatic array which has provable constant
size. My previous related query to the ML has thus become obsolete.
My solution is to attempt the resolution of the array specification
within simplify_size so that the simplification actually works.
Regtested on x86_64-pc-linux-gnu. OK for mainline and same branches
as the patch for part1?
Thanks,
Harald
Comments
Dear Harald, dear all,
On 29.09.21 21:20, Harald Anlauf via Fortran wrote:
> I think I have solved the remaining issue in PR 102458 that prevented the
> simplification of an expression involving a static initialization and the
> evaluation of the SIZE of an automatic array which has provable constant
> size. My previous related query to the ML has thus become obsolete.
>
> My solution is to attempt the resolution of the array specification
> within simplify_size so that the simplification actually works.
>
> Regtested on x86_64-pc-linux-gnu. OK for mainline and same branches
> as the patch for part1?
Thanks. I wonder whether that should be placed at some more generic
place, but for now add it to another intrinsic-simplify function ...
I note that this resolution is also used for (u,l)(,co)bounds/this_image
(via simplify_bound_dim) and in gfc_resolve_formal_arglist,
resolve_component, resolve_symbol.
OK.
Thanks,
Tobias
> Fortran: resolve expressions during SIZE simplification
> gcc/fortran/ChangeLog:
>
> PR fortran/102458
> * simplify.c (simplify_size): Resolve expressions used in array
> specifications so that SIZE can be simplified.
>
> gcc/testsuite/ChangeLog:
>
> PR fortran/102458
> * gfortran.dg/pr102458b.f90: New test.
-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955
Fortran: resolve expressions during SIZE simplification
gcc/fortran/ChangeLog:
PR fortran/102458
* simplify.c (simplify_size): Resolve expressions used in array
specifications so that SIZE can be simplified.
gcc/testsuite/ChangeLog:
PR fortran/102458
* gfortran.dg/pr102458b.f90: New test.
@@ -7471,6 +7471,7 @@ simplify_size (gfc_expr *array, gfc_expr *dim, int k)
mpz_t size;
gfc_expr *return_value;
int d;
+ gfc_ref *ref;
/* For unary operations, the size of the result is given by the size
of the operand. For binary ones, it's the size of the first operand
@@ -7527,6 +7528,10 @@ simplify_size (gfc_expr *array, gfc_expr *dim, int k)
return simplified;
}
+ for (ref = array->ref; ref; ref = ref->next)
+ if (ref->type == REF_ARRAY && ref->u.ar.as)
+ gfc_resolve_array_spec (ref->u.ar.as, 0);
+
if (dim == NULL)
{
if (!gfc_array_size (array, &size))
new file mode 100644
@@ -0,0 +1,21 @@
+! { dg-do compile }
+! { dg-options "-fdump-tree-original" }
+! { dg-final { scan-tree-dump-times "_gfortran_stop_numeric" 0 "original" } }
+! PR fortran/102458
+
+subroutine s4
+ integer, parameter :: n = 4
+ integer :: w(transfer(n, n)) = 1
+ integer :: x(transfer(n, n))
+ integer :: y(2*int(n) - n)
+ type t
+ integer :: z(int(n))
+ end type t
+ type(t) :: tt, uu(3)
+ integer, parameter :: i = size (w)
+ integer, parameter :: k = size (x)
+ integer, parameter :: m = size (y)
+ integer, parameter :: j = size (tt% z)
+ integer, parameter :: l = size (uu(2)% z)
+ if (i /= n .or. k /= n .or. m /= n .or. j /= n .or. l /= n) stop 1
+end