re PR fortran/78260 (ICE in gimplify_expr, at gimplify.c:11939)
authorTobias Burnus <burnus@gcc.gnu.org>
Fri, 20 Sep 2019 16:05:06 +0000 (18:05 +0200)
committerTobias Burnus <burnus@gcc.gnu.org>
Fri, 20 Sep 2019 16:05:06 +0000 (18:05 +0200)
2019-09-20  Tobias Burnus  <tobias@codesourcery.com>

        PR fortran/78260
        * openmp.c (gfc_resolve_oacc_declare): Reject all
        non variables but accept function result variables.
        * trans-openmp.c (gfc_trans_omp_clauses): Handle
        function-result variables for remaing cases.

2019-09-20  Tobias Burnus  <tobias@codesourcery.com>

        PR fortran/78260
        * gfortran.dg/goacc/parameter.f95: Change
        dg-error as it is now detected earlier.
        * gfortran.dg/goacc/pr85701.f90: Modify to
        use a separate result variable.
        * gfortran.dg/goacc/pr78260.f90: New.
        * gfortran.dg/goacc/pr78260-2.f90: New.
        * gfortran.dg/gomp/pr78260.f90: New.
        * gfortran.dg/gomp/pr78260-2.f90: New.
        * gfortran.dg/gomp/pr78260-3.f90: New.

From-SVN: r276002

gcc/fortran/ChangeLog
gcc/fortran/openmp.c
gcc/fortran/trans-openmp.c
gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/goacc/parameter.f95
gcc/testsuite/gfortran.dg/goacc/pr78260-2.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/goacc/pr78260.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/goacc/pr85701.f90
gcc/testsuite/gfortran.dg/gomp/pr78260-2.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/gomp/pr78260-3.f90 [new file with mode: 0644]
gcc/testsuite/gfortran.dg/gomp/pr78260.f90 [new file with mode: 0644]

index 853bd32ecde6045aedf69814d84c831e22b99f6b..7435a22f9023a14a6f94df51bda85510cb9bd6cc 100644 (file)
@@ -1,3 +1,11 @@
+2019-09-20  Tobias Burnus  <tobias@codesourcery.com>
+
+       PR fortran/78260
+       * openmp.c (gfc_resolve_oacc_declare): Reject all
+       non variables but accept function result variables.
+       * trans-openmp.c (gfc_trans_omp_clauses): Handle
+       function-result variables for remaing cases.
+
 2019-09-17  Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/91588
index 44fcb9db8c6899d5023143b3499ad82422667f77..bda7f288989433b5be6babec038db07bf11a8353 100644 (file)
@@ -6048,18 +6048,14 @@ gfc_resolve_oacc_declare (gfc_namespace *ns)
        for (n = oc->clauses->lists[list]; n; n = n->next)
          {
            n->sym->mark = 0;
-           if (n->sym->attr.function || n->sym->attr.subroutine)
+           if (n->sym->attr.flavor != FL_VARIABLE
+               && (n->sym->attr.flavor != FL_PROCEDURE
+                   || n->sym->result != n->sym))
              {
                gfc_error ("Object %qs is not a variable at %L",
                           n->sym->name, &oc->loc);
                continue;
              }
-           if (n->sym->attr.flavor == FL_PARAMETER)
-             {
-               gfc_error ("PARAMETER object %qs is not allowed at %L",
-                          n->sym->name, &oc->loc);
-               continue;
-             }
 
            if (n->expr && n->expr->ref->type == REF_ARRAY)
              {
index 8eae7bc0a520dfee22797540c80659d560602a75..b4c77aebf4d7630447cb10d734261c9f45d0d0a9 100644 (file)
@@ -2075,7 +2075,7 @@ gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
              tree node = build_omp_clause (input_location, OMP_CLAUSE_DEPEND);
              if (n->expr == NULL || n->expr->ref->u.ar.type == AR_FULL)
                {
-                 tree decl = gfc_get_symbol_decl (n->sym);
+                 tree decl = gfc_trans_omp_variable (n->sym, false);
                  if (gfc_omp_privatize_by_reference (decl))
                    decl = build_fold_indirect_ref (decl);
                  if (GFC_DESCRIPTOR_TYPE_P (TREE_TYPE (decl)))
@@ -2136,7 +2136,7 @@ gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
              tree node2 = NULL_TREE;
              tree node3 = NULL_TREE;
              tree node4 = NULL_TREE;
-             tree decl = gfc_get_symbol_decl (n->sym);
+             tree decl = gfc_trans_omp_variable (n->sym, false);
              if (DECL_P (decl))
                TREE_ADDRESSABLE (decl) = 1;
              if (n->expr == NULL || n->expr->ref->u.ar.type == AR_FULL)
@@ -2398,7 +2398,7 @@ gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
              tree node = build_omp_clause (input_location, clause_code);
              if (n->expr == NULL || n->expr->ref->u.ar.type == AR_FULL)
                {
-                 tree decl = gfc_get_symbol_decl (n->sym);
+                 tree decl = gfc_trans_omp_variable (n->sym, false);
                  if (gfc_omp_privatize_by_reference (decl))
                    decl = build_fold_indirect_ref (decl);
                  else if (DECL_P (decl))
index 8868ad1e9068e7a1c023231d506f3732da45ee08..f46b109e8eb9b1a6ca89793408b9fe673c4808eb 100644 (file)
@@ -1,3 +1,16 @@
+2019-09-20  Tobias Burnus  <tobias@codesourcery.com>
+
+       PR fortran/78260
+       * gfortran.dg/goacc/parameter.f95: Change
+       dg-error as it is now detected earlier.
+       * gfortran.dg/goacc/pr85701.f90: Modify to
+       use a separate result variable.
+       * gfortran.dg/goacc/pr78260.f90: New.
+       * gfortran.dg/goacc/pr78260-2.f90: New.
+       * gfortran.dg/gomp/pr78260.f90: New.
+       * gfortran.dg/gomp/pr78260-2.f90: New.
+       * gfortran.dg/gomp/pr78260-3.f90: New.
+
 2019-09-20  Olivier Hainque  <hainque@adacore.com>
 
        * gnat.dg/system_info1.adb: Restrict to *-*-linux* and *-*-mingw*.
 
 2019-09-20  Martin Jambor  <mjambor@suse.cz>
 
-        * g++.dg/ipa/pr81248.C: Adjust dg-options and dump-scan.
-        * gcc.dg/ipa/ipa-sra-1.c: Likewise.
-        * gcc.dg/ipa/ipa-sra-10.c: Likewise.
-        * gcc.dg/ipa/ipa-sra-11.c: Likewise.
-        * gcc.dg/ipa/ipa-sra-3.c: Likewise.
-        * gcc.dg/ipa/ipa-sra-4.c: Likewise.
-        * gcc.dg/ipa/ipa-sra-5.c: Likewise.
-        * gcc.dg/ipa/ipacost-2.c: Disable ipa-sra.
-        * gcc.dg/ipa/ipcp-agg-9.c: Likewise.
-        * gcc.dg/ipa/pr78121.c: Adjust scan pattern.
-        * gcc.dg/ipa/vrp1.c: Likewise.
-        * gcc.dg/ipa/vrp2.c: Likewise.
-        * gcc.dg/ipa/vrp3.c: Likewise.
-        * gcc.dg/ipa/vrp7.c: Likewise.
-        * gcc.dg/ipa/vrp8.c: Likewise.
-        * gcc.dg/noreorder.c: use noipa attribute instead of noinline.
-        * gcc.dg/ipa/20040703-wpa.c: New test.
+       * g++.dg/ipa/pr81248.C: Adjust dg-options and dump-scan.
+       * gcc.dg/ipa/ipa-sra-1.c: Likewise.
+       * gcc.dg/ipa/ipa-sra-10.c: Likewise.
+       * gcc.dg/ipa/ipa-sra-11.c: Likewise.
+       * gcc.dg/ipa/ipa-sra-3.c: Likewise.
+       * gcc.dg/ipa/ipa-sra-4.c: Likewise.
+       * gcc.dg/ipa/ipa-sra-5.c: Likewise.
+       * gcc.dg/ipa/ipacost-2.c: Disable ipa-sra.
+       * gcc.dg/ipa/ipcp-agg-9.c: Likewise.
+       * gcc.dg/ipa/pr78121.c: Adjust scan pattern.
+       * gcc.dg/ipa/vrp1.c: Likewise.
+       * gcc.dg/ipa/vrp2.c: Likewise.
+       * gcc.dg/ipa/vrp3.c: Likewise.
+       * gcc.dg/ipa/vrp7.c: Likewise.
+       * gcc.dg/ipa/vrp8.c: Likewise.
+       * gcc.dg/noreorder.c: use noipa attribute instead of noinline.
+       * gcc.dg/ipa/20040703-wpa.c: New test.
        * gcc.dg/ipa/ipa-sra-12.c: New test.
        * gcc.dg/ipa/ipa-sra-13.c: Likewise.
        * gcc.dg/ipa/ipa-sra-14.c: Likewise.
index 84274611915c0613c149160504e358fc16a2a950..cbe67dba7889ef8fe430c3ddb0621345b95cb3fd 100644 (file)
@@ -6,7 +6,7 @@ contains
     implicit none
     integer :: i
     integer, parameter :: a = 1
-    !$acc declare device_resident (a) ! { dg-error "PARAMETER" }
+    !$acc declare device_resident (a) ! { dg-error "is not a variable" }
     !$acc data copy (a) ! { dg-error "not a variable" }
     !$acc end data
     !$acc data deviceptr (a) ! { dg-error "not a variable" }
diff --git a/gcc/testsuite/gfortran.dg/goacc/pr78260-2.f90 b/gcc/testsuite/gfortran.dg/goacc/pr78260-2.f90
new file mode 100644 (file)
index 0000000..e28564d
--- /dev/null
@@ -0,0 +1,20 @@
+! { dg-do compile }
+! { dg-options "-fopenacc -fdump-tree-original" }
+! { dg-require-effective-target fopenacc }
+
+! PR fortran/78260
+
+module m
+  implicit none
+  integer :: n = 0
+contains
+  integer function f1()
+    !$acc declare present(f1)
+    !$acc kernels copyin(f1)
+    f1 = 5 
+    !$acc end kernels
+  end function f1
+end module m
+! { dg-final { scan-tree-dump-times "#pragma acc data map\\(force_present:__result_f1\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma acc data map\\(force_present:__result_f1\\)" 1 "original" } }
+
diff --git a/gcc/testsuite/gfortran.dg/goacc/pr78260.f90 b/gcc/testsuite/gfortran.dg/goacc/pr78260.f90
new file mode 100644 (file)
index 0000000..21bde85
--- /dev/null
@@ -0,0 +1,36 @@
+! { dg-do compile }
+! { dg-options "-fopenacc" }
+! { dg-require-effective-target fopenacc }
+
+! PR fortran/78260
+! Contributed by Gerhard Steinmetz
+
+module m
+  implicit none
+  integer :: n = 0
+contains
+  subroutine s
+    !$acc declare present(m)  ! { dg-error "Object .m. is not a variable" }
+    !$acc kernels copyin(m)   ! { dg-error "Object .m. is not a variable" }
+    n = n + 1
+    !$acc end kernels
+  end subroutine s
+  subroutine s2
+    !$acc declare present(s2)  ! { dg-error "Object .s2. is not a variable" }
+    !$acc kernels copyin(s2)   ! { dg-error "Object .s2. is not a variable" }
+    n = n + 1
+    !$acc end kernels
+  end subroutine s2
+  integer function f1()
+    !$acc declare present(f1)  ! OK, f1 is also the result variable
+    !$acc kernels copyin(f1)   ! OK, f1 is also the result variable
+    f1 = 5 
+    !$acc end kernels
+  end function f1
+  integer function f2() result(res)
+    !$acc declare present(f2)  ! { dg-error "Object .f2. is not a variable" }
+    !$acc kernels copyin(f2)   ! { dg-error "Object .f2. is not a variable" }
+    res = 5 
+    !$acc end kernels
+  end function f2
+end module m
index 9c201b865b283b855668fcbacc446f6cc7a972d1..bae09de90aca1316a9e04129b5dc50d26ba54873 100644 (file)
@@ -9,11 +9,11 @@ subroutine s2
    !$acc declare present(s2) ! { dg-error "is not a variable" }
 end
 
-function f1 ()
+function f1 () result(res)
    !$acc declare copy(f1) ! { dg-error "is not a variable" }
 end
 
-function f2 ()
+function f2 () result(res)
    !$acc declare present(f2) ! { dg-error "is not a variable" }
 end
 
diff --git a/gcc/testsuite/gfortran.dg/gomp/pr78260-2.f90 b/gcc/testsuite/gfortran.dg/gomp/pr78260-2.f90
new file mode 100644 (file)
index 0000000..c58ad93
--- /dev/null
@@ -0,0 +1,59 @@
+! { dg-do compile }
+! { dg-options "-fopenmp -fdump-tree-original" }
+
+! PR fortran/78260
+
+module m
+  implicit none
+  integer :: n = 0
+contains
+  integer function f1()
+    !$omp target data map(f1)
+    !$omp target update to(f1)
+    f1 = 5 
+    !$omp end target data
+  end function f1
+
+  integer function f2()
+    dimension :: f2(1)
+    !$omp target data map(f2)
+    !$omp target update to(f2)
+    f2(1) = 5 
+    !$omp end target data
+  end function f2
+
+  integer function f3() result(res)
+    dimension :: res(1)
+    !$omp target data map(res)
+    !$omp target update to(res)
+    res(1) = 5 
+    !$omp end target data
+  end function f3
+
+  integer function f4() result(res)
+    allocatable :: res
+    dimension :: res(:)
+    !$omp target data map(res)
+    !$omp target update to(res)
+    res = [5]
+    !$omp end target data
+  end function f4
+
+  subroutine sub()
+    integer, allocatable :: arr(:)
+    !$omp target data map(arr)
+    !$omp target update to(arr)
+    arr = [5]
+    !$omp end target data
+  end subroutine sub
+end module m
+
+! { dg-final { scan-tree-dump-times "#pragma omp target data map\\(tofrom:\\*\\(c_char \\*\\) arr.data \\\[len: D.\[0-9\]+ \\* 4\\\]\\) map\\(to:arr \\\[pointer set, len: ..\\\]\\) map\\(alloc:\\(integer\\(kind=4\\)\\\[0:\\\] \\* restrict\\) arr.data \\\[pointer assign, bias: 0\\\]\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target update to\\(\\*\\(c_char \\*\\) arr.data \\\[len: D.\[0-9\]+ \\* 4\\\]\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target data map\\(tofrom:\\*\\(c_char \\*\\) __result->data \\\[len: D.\[0-9\]+ \\* 4\\\]\\) map\\(to:\\*__result \\\[pointer set, len: ..\\\]\\) map\\(alloc:\\(integer\\(kind=4\\)\\\[0:\\\] \\* restrict\\) __result->data \\\[pointer assign, bias: 0\\\]\\) map\\(alloc:__result \\\[pointer assign, bias: 0\\\]\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target update to\\(\\*\\(c_char \\*\\) __result->data \\\[len: D.\[0-9\]+ \\* 4\\\]\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target data map\\(tofrom:\\*__result.0\\) map\\(alloc:__result.0 \\\[pointer assign, bias: 0\\\]\\)" 2 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target update to\\(\\*__result.0\\)" 2 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target data map\\(tofrom:__result_f1\\)" 1 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp target update to\\(__result_f1\\)" 1 "original" } }
+
diff --git a/gcc/testsuite/gfortran.dg/gomp/pr78260-3.f90 b/gcc/testsuite/gfortran.dg/gomp/pr78260-3.f90
new file mode 100644 (file)
index 0000000..4ca3e36
--- /dev/null
@@ -0,0 +1,74 @@
+! { dg-do compile }
+! { dg-options "-fopenmp -fdump-tree-original" }
+
+! PR fortran/78260
+
+integer function f1()
+  implicit none
+
+  f1 = 0
+
+  !$omp task depend(inout:f1)
+  !$omp end task
+
+  !$omp task depend(inout:f1)
+  !$omp end task
+end function f1
+
+integer function f2()
+  implicit none
+  dimension :: f2(1)
+
+  f2(1) = 0
+
+  !$omp task depend(inout:f2)
+  !$omp end task
+
+  !$omp task depend(inout:f2)
+  !$omp end task
+end function f2
+
+integer function f3() result(res)
+  implicit none
+  dimension :: res(1)
+
+  res(1) = 0
+
+  !$omp task depend(inout:res)
+  !$omp end task
+
+  !$omp task depend(inout:res)
+  !$omp end task
+end function f3
+
+integer function f4() result(res)
+  implicit none
+  allocatable :: res
+  dimension :: res(:)
+
+  res = [0]
+
+  !$omp task depend(inout:res)
+  !$omp end task
+
+  !$omp task depend(inout:res)
+  !$omp end task
+end function f4
+
+subroutine sub()
+  implicit none
+  integer, allocatable :: arr(:)
+
+  arr = [3]
+
+  !$omp task depend(inout:arr)
+  !$omp end task
+
+  !$omp task depend(inout:arr)
+  !$omp end task
+end subroutine sub
+
+! { dg-final { scan-tree-dump-times "#pragma omp task depend\\(inout:__result_f1\\)" 2 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp task depend\\(inout:\\*__result.0\\)" 4 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp task depend\\(inout:\\*\\(c_char \\*\\) __result->data\\)" 2 "original" } }
+! { dg-final { scan-tree-dump-times "#pragma omp task depend\\(inout:\\*\\(c_char \\*\\) arr.data\\)" 2 "original" } }
diff --git a/gcc/testsuite/gfortran.dg/gomp/pr78260.f90 b/gcc/testsuite/gfortran.dg/gomp/pr78260.f90
new file mode 100644 (file)
index 0000000..23acd4c
--- /dev/null
@@ -0,0 +1,33 @@
+! { dg-do compile }
+
+! PR fortran/78260
+
+module m
+  implicit none
+  integer :: n = 0
+contains
+  subroutine s
+    !$omp target data map(m)   ! { dg-error "Object .m. is not a variable" }
+    !$omp target update to(m)  ! { dg-error "Object .m. is not a variable" }
+    n = n + 1
+    !$omp end target data
+  end subroutine s
+  subroutine s2
+    !$omp target data map(s2)   ! { dg-error "Object .s2. is not a variable" }
+    !$omp target update to(s2)  ! { dg-error "Object .s2. is not a variable" }
+    n = n + 1
+    !$omp end target data
+  end subroutine s2
+  integer function f1()
+    !$omp target data map(f1)   ! OK, f1 is also the result variable
+    !$omp target update to(f1)  ! OK, f1 is also the result variable
+    f1 = 5 
+    !$omp end target data
+  end function f1
+  integer function f2() result(res)
+    !$omp target data map(f2)   ! { dg-error "Object .f2. is not a variable" }
+    !$omp target update to(f2)  ! { dg-error "Object .f2. is not a variable" }
+    res = 5 
+    !$omp end target data
+  end function f2
+end module m