]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[og10] Fortran: %re/%im fixes for OpenMP/OpenACC + gfc_is_simplify_contiguous
authorTobias Burnus <tobias@codesourcery.com>
Tue, 16 Feb 2021 16:39:49 +0000 (17:39 +0100)
committerJulian Brown <julian@codesourcery.com>
Wed, 24 Feb 2021 14:39:08 +0000 (06:39 -0800)
gcc/fortran/ChangeLog:

* expr.c (gfc_is_simplify_contiguous): Handle REF_INQUIRY, i.e.
%im and %re which are EXPR_VARIABLE.
* openmp.c (resolve_omp_clauses): Diagnose %re/%im explicitly.

gcc/testsuite/ChangeLog:

* gfortran.dg/goacc/ref_inquiry.f90: New test.
* gfortran.dg/gomp/ref_inquiry.f90: New test.

(cherry picked from commit 799478b8914c438f7a33eb319efbae69c81f2111)

gcc/fortran/ChangeLog.omp
gcc/fortran/expr.c
gcc/fortran/openmp.c
gcc/testsuite/ChangeLog.omp
gcc/testsuite/gfortran.dg/goacc/ref_inquiry.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/gomp/ref_inquiry.f90 [new file with mode: 0644]

index 09c2bb855c88748c83d278458a89dda061b8cb9e..f99a11316f5296e2e723a1155e0182fa13a18f78 100644 (file)
@@ -1,3 +1,11 @@
+2021-02-24  Tobias Burnus  <tobias@codesourcery.com>
+
+       Backport from mainline
+
+       * expr.c (gfc_is_simplify_contiguous): Handle REF_INQUIRY, i.e.
+       %im and %re which are EXPR_VARIABLE.
+       * openmp.c (resolve_omp_clauses): Diagnose %re/%im explicitly.
+
 2021-02-24  Tobias Burnus  <tobias@codesourcery.com>
 
        Backport from mainline
index 569f4d9bf066a265808d7c260809a9305243ec72..6cda947cd5683acc4b47794d0de6a302737ed125 100644 (file)
@@ -5837,6 +5837,8 @@ gfc_is_simply_contiguous (gfc_expr *expr, bool strict, bool permit_element)
        part_ref  = ref;
       else if (ref->type == REF_SUBSTRING)
        return false;
+      else if (ref->type == REF_INQUIRY)
+       return false;
       else if (ref->u.ar.type != AR_ELEMENT)
        ar = &ref->u.ar;
     }
index a7592f0545d9095e82b0cb8b310d04decd2d8e34..8d77f9e73510a8f6b75a741e95807a9c113698d1 100644 (file)
@@ -4984,6 +4984,14 @@ resolve_omp_clauses (gfc_code *code, gfc_omp_clauses *omp_clauses,
                                && array_ref->next->type == REF_SUBSTRING)))
                      gfc_error ("Unexpected substring reference in %s clause "
                                 "at %L", name, &n->where);
+                   else if (array_ref && array_ref->type == REF_INQUIRY)
+                     {
+                       gcc_assert (array_ref->u.i == INQUIRY_RE
+                                   || array_ref->u.i == INQUIRY_IM);
+                       gfc_error ("Unexpected complex-parts designator "
+                                  "reference in %s clause at %L",
+                                  name, &n->where);
+                     }
                    else if (!resolved
                        || n->expr->expr_type != EXPR_VARIABLE
                        || array_ref->next
index d012e9e75b4edda253604d0ffbe5a9ccbba787cb..257981890982419d4d7f681df13021cb3a0a673c 100644 (file)
@@ -1,3 +1,10 @@
+2021-02-24  Tobias Burnus  <tobias@codesourcery.com>
+
+       Backport from mainline
+
+       * gfortran.dg/goacc/ref_inquiry.f90: New test.
+       * gfortran.dg/gomp/ref_inquiry.f90: New test.
+
 2021-02-24  Tobias Burnus  <tobias@codesourcery.com>
 
        Backport from mainline
diff --git a/gcc/testsuite/gfortran.dg/goacc/ref_inquiry.f90 b/gcc/testsuite/gfortran.dg/goacc/ref_inquiry.f90
new file mode 100644 (file)
index 0000000..69dd38e
--- /dev/null
@@ -0,0 +1,56 @@
+! Check for <var>%re, ...%im, ...%kind, ...%len
+! Cf. also OpenMP's ../gomp/ref_inquiry.f90
+! Cf. OpenACC spec issue 346
+! 
+implicit none
+type t
+  integer :: i
+  character :: c
+  complex :: z
+  complex :: zz(5)
+end type t
+
+integer :: i
+character(kind=4, len=5) :: c
+complex :: z, zz(5)
+type(t) :: x
+
+print *, is_contiguous(zz(:)%re)
+
+! inquiry function; expr_type != EXPR_VARIABLE:
+!$acc enter data copyin(i%kind, c%len)     ! { dg-error "not a proper array section" }
+!$acc enter data copyin(x%i%kind)          ! { dg-error "not a proper array section" }
+!$acc enter data copyin(x%c%len)           ! { dg-error "not a proper array section" }
+!$acc update self(i%kind, c%len)           ! { dg-error "not a proper array section" }
+!$acc update self(x%i%kind)                ! { dg-error "not a proper array section" }
+!$acc update self(x%c%len)                 ! { dg-error "not a proper array section" }
+
+! EXPR_VARIABLE
+!$acc enter data copyin(z%re)    ! { dg-error "Unexpected complex-parts designator" }
+!$acc enter data copyin(z%im)    ! { dg-error "Unexpected complex-parts designator" }
+!$acc enter data copyin(zz%re)   ! { dg-error "not a proper array section" }
+                                 ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$acc enter data copyin(zz%im)   ! { dg-error "not a proper array section" }
+                                 ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+
+!$acc enter data copyin(x%z%re)  ! { dg-error "Unexpected complex-parts designator" }
+!$acc enter data copyin(x%z%im)  ! { dg-error "Unexpected complex-parts designator" }
+!$acc enter data copyin(x%zz%re) ! { dg-error "not a proper array section" }
+                                 ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$acc enter data copyin(x%zz%im) ! { dg-error "not a proper array section" }
+                                 ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+
+!$acc update self(z%re)         ! { dg-error "Unexpected complex-parts designator" }
+!$acc update self(z%im)         ! { dg-error "Unexpected complex-parts designator" }
+!$acc update self(zz%re)        ! { dg-error "not a proper array section" }
+                                ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$acc update self(zz%im)        ! { dg-error "not a proper array section" }
+                                ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+
+!$acc update self(x%z%re)       ! { dg-error "Unexpected complex-parts designator" }
+!$acc update self(x%z%im)       ! { dg-error "Unexpected complex-parts designator" }
+!$acc update self(x%zz%re)      ! { dg-error "is not a proper array section" }
+                                ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$acc update self(x%zz%im)      ! { dg-error "is not a proper array section" }
+                                ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+end
diff --git a/gcc/testsuite/gfortran.dg/gomp/ref_inquiry.f90 b/gcc/testsuite/gfortran.dg/gomp/ref_inquiry.f90
new file mode 100644 (file)
index 0000000..3746104
--- /dev/null
@@ -0,0 +1,39 @@
+! Check for <var>%re, ...%im, ...%kind, ...%len
+! Cf. also OpenACC's ../goacc/ref_inquiry.f90
+! Cf. also OpenMP spec issue 2661
+implicit none
+type t
+  integer :: i
+  character :: c
+  complex :: z
+  complex :: zz(5)
+end type t
+
+integer :: i
+character(kind=4, len=5) :: c
+complex :: z, zz(5)
+type(t) :: x
+
+print *, is_contiguous(zz(:)%re)
+
+! inquiry function; expr_type != EXPR_VARIABLE:
+!$omp target enter data map(to: i%kind, c%len)     ! { dg-error "not a proper array section" }
+!$omp target enter data map(to: x%i%kind)          ! { dg-error "not a proper array section" }
+!$omp target enter data map(to: x%c%len)           ! { dg-error "not a proper array section" }
+
+! EXPR_VARIABLE
+!$omp target enter data map(to: z%re)    ! { dg-error "Unexpected complex-parts designator" }
+!$omp target enter data map(to: z%im)    ! { dg-error "Unexpected complex-parts designator" }
+!$omp target enter data map(to: zz%re)   ! { dg-error "not a proper array section" }
+                                         ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$omp target enter data map(to: zz%im)   ! { dg-error "not a proper array section" }
+                                         ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+
+!$omp target enter data map(to: x%z%re)  ! { dg-error "Unexpected complex-parts designator" }
+!$omp target enter data map(to: x%z%im)  ! { dg-error "Unexpected complex-parts designator" }
+!$omp target enter data map(to: x%zz%re) ! { dg-error "not a proper array section" }
+                                         ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+!$omp target enter data map(to: x%zz%im) ! { dg-error "not a proper array section" }
+                                         ! { dg-error "Array is not contiguous" "" { target *-*-* } .-1 }
+
+end