]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
OpenMP/Fortran: Ensure allocator is gimplified for 'omp allocate'
authorTobias Burnus <tobias@codesourcery.com>
Mon, 30 Oct 2023 09:53:29 +0000 (10:53 +0100)
committerTobias Burnus <tobias@codesourcery.com>
Mon, 30 Oct 2023 09:53:29 +0000 (10:53 +0100)
Without this change, we we get an ICE in verify_gimple_call for
GOMP_allocate when doing a late replacement in omp-low.cc

gcc/fortran/ChangeLog:

       * trans-openmp.cc (gfc_trans_omp_clauses): Avoid gfc_evaluate_now
       for allocator with indirect ref for better diagnostic.

gcc/ChangeLog:

* gcc/gimplify.cc (gimplify_omp_allocate): Gimplify allocator.
* omp-low.cc (lower_omp_allocate): Simplify; GOMP_free can also
take a plain 0 as allocator argument (arg is unused in libgomp).

libgomp/ChangeLog:

* testsuite/libgomp.fortran/allocate-8a.f90: New test.

gcc/ChangeLog.omp
gcc/fortran/ChangeLog.omp
gcc/fortran/trans-openmp.cc
gcc/gimplify.cc
gcc/omp-low.cc
libgomp/ChangeLog.omp
libgomp/testsuite/libgomp.fortran/allocate-8a.f90 [new file with mode: 0644]

index 570f0b009fea8fb93760b2210bab8e92b0e801d1..fd389860a97d563859e03a4a353130e5fb6bf1f4 100644 (file)
@@ -1,3 +1,9 @@
+2023-10-30  Tobias Burnus  <tobias@codesourcery.com>
+
+       * gcc/gimplify.cc (gimplify_omp_allocate): Gimplify allocator.
+       * omp-low.cc (lower_omp_allocate): Simplify; GOMP_free can also
+       take a plain 0 as allocator argument (arg is unused in libgomp).
+
 2023-10-27  Tobias Burnus  <tobias@codesourcery.com>
 
        Backported from master:
index 2b81cada326356e9e3d79662c561d1e47b643626..6b30302428f36fa92d1fcbdd7c0a22042aa1060e 100644 (file)
@@ -1,3 +1,8 @@
+2023-10-30  Tobias Burnus  <tobias@codesourcery.com>
+
+       * trans-openmp.cc (gfc_trans_omp_clauses): Avoid gfc_evaluate_now
+       for allocator with indirect ref for better diagnostic.
+
 2023-10-26  Tobias Burnus  <tobias@codesourcery.com>
 
        Backported from master:
index 30e43cea56cb6587758002ee399ffd003aa059de..ab45032eda3ae75dce335f6eccea350fd2a7abfe 100644 (file)
@@ -4730,11 +4730,8 @@ gfc_trans_omp_clauses (stmtblock_t *block, gfc_omp_clauses *clauses,
                              allocator_
                                = gfc_trans_omp_variable (n->u2.allocator->symtree->n.sym,
                                                          false);
-                           if (POINTER_TYPE_P (TREE_TYPE (allocator_)))
-                             {
+                             if (POINTER_TYPE_P (TREE_TYPE (allocator_)))
                                allocator_ = build_fold_indirect_ref (allocator_);
-                               allocator_ = gfc_evaluate_now (allocator_, block);
-                             }
                            }
                          else if (alloc_expr != n->u2.allocator)
                            {
index 2b6e592213fd5ec4be9227348e446c800decac6b..70fda6bbf0d0e2abaacef5b10b1ba24e71de3b2c 100644 (file)
@@ -17876,6 +17876,15 @@ gimplify_omp_allocate (tree *expr_p, gimple_seq *pre_p)
     kind = GF_OMP_ALLOCATE_KIND_ALLOCATE;
   else
     kind = GF_OMP_ALLOCATE_KIND_FREE;
+  for (tree c = OMP_ALLOCATE_CLAUSES (expr); c; c = OMP_CLAUSE_CHAIN (c))
+    {
+      if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_ALLOCATE)
+       continue;
+
+      gimplify_expr (&OMP_CLAUSE_ALLOCATE_ALLOCATOR (c), pre_p, NULL,
+                        is_gimple_val, fb_rvalue);
+    }
+
   gimple *stmt = gimple_build_omp_allocate (OMP_ALLOCATE_CLAUSES (expr),
                                            kind);
   gimplify_seq_add_stmt (pre_p, stmt);
index 77142589f2732a856fc5bc4d9967eedcb0989fde..731271e5c96e84108936f1c390f96a77ee008dd6 100644 (file)
@@ -9486,11 +9486,11 @@ lower_omp_allocate (gimple_stmt_iterator *gsi_p)
            continue;
 
          const gcall *gs = as_a <const gcall *> (stmt);
-         tree allocator = OMP_CLAUSE_ALLOCATE_ALLOCATOR (c)
-                          ? OMP_CLAUSE_ALLOCATE_ALLOCATOR (c)
-                          : build_zero_cst (ptr_type_node);
          if (allocate)
            {
+             tree allocator = (OMP_CLAUSE_ALLOCATE_ALLOCATOR (c)
+                               ? OMP_CLAUSE_ALLOCATE_ALLOCATOR (c)
+                               : build_zero_cst (ptr_type_node));
              tree lhs = gimple_call_lhs (gs);
              if (lhs && TREE_CODE (lhs) == SSA_NAME)
                {
@@ -9559,6 +9559,7 @@ lower_omp_allocate (gimple_stmt_iterator *gsi_p)
              if (arg == var)
                {
                  tree repl = builtin_decl_explicit (BUILT_IN_GOMP_FREE);
+                 tree allocator = build_zero_cst (ptr_type_node);
                  gimple *g = gimple_build_call (repl, 2,
                                                 gimple_call_arg (gs, 0),
                                                 allocator);
index d23a4be94a063cebb19e3436af081a2d1c562750..4cb8749c152c484913b74b7c60d8f69fe5b03f46 100644 (file)
@@ -1,3 +1,7 @@
+2023-10-30  Tobias Burnus  <tobias@codesourcery.com>
+
+       * testsuite/libgomp.fortran/allocate-8a.f90: New test.
+
 2023-10-26  Tobias Burnus  <tobias@codesourcery.com>
 
        * libgomp.texi (OpenMP Impl. Status): Document that 'omp allocate'
diff --git a/libgomp/testsuite/libgomp.fortran/allocate-8a.f90 b/libgomp/testsuite/libgomp.fortran/allocate-8a.f90
new file mode 100644 (file)
index 0000000..28fe04f
--- /dev/null
@@ -0,0 +1,44 @@
+! { dg-additional-options "-fdump-tree-omplower" }
+program main
+  use iso_c_binding
+  use omp_lib
+  implicit none (type, external)
+  integer(omp_allocator_handle_kind):: alloc_h
+  integer :: i, N
+  integer(c_intptr_t) :: intptr
+  integer, allocatable :: A(:)
+  type(omp_alloctrait):: traits(1) = [omp_alloctrait(omp_atk_alignment, 128)]
+
+  N = 10
+  alloc_h = omp_init_allocator(omp_default_mem_space, 1, traits)
+
+  !$omp allocate(A) allocator(alloc_h)
+  allocate(A(N))
+  a(:) = [(i, i=1,N)]
+  if (mod (transfer (loc(a), intptr),128) /= 0) &
+    stop 1
+  if (any (a /= [(i, i=1,N)])) &
+    stop 2
+  deallocate(A)
+  !$omp allocate(A) allocator(alloc_h) align(512)
+  allocate(A(N))
+  block
+    integer, allocatable :: B(:)
+    !$omp allocators allocate(allocator(alloc_h), align(256) : B)
+    allocate(B(N))
+    B(:) = [(2*i, i=1,N)]
+    A(:) = B
+    if (mod (transfer (loc(B), intptr), 256) /= 0) &
+      stop 1
+    ! end of scope deallocation
+  end block
+  if (mod (transfer (loc(a), intptr),512) /= 0) &
+    stop 1
+  if (any (a /= [(2*i, i=1,N)])) &
+    stop 2
+  deallocate(A) ! Must deallocate here - before deallocator is destroyed
+  call omp_destroy_allocator(alloc_h)
+  ! No auto dealloc of A because it is SAVE
+end
+! { dg-final { scan-tree-dump-times "__builtin_GOMP_alloc \\(" 3 "omplower" } }
+! { dg-final { scan-tree-dump-times "__builtin_GOMP_free \\(" 3 "omplower" } }