+2022-03-31 Abid Qadeer <abidh@codesourcery.com>
+
+ * omp-low.c (lower_omp_allocate): Move allocate declaration
+ inside loop. Set it to false at the end of condition.
+
2022-03-30 Andrew Stubbs <ams@codesourcery.com>
* omp-builtins.def (BUILT_IN_GOMP_ENABLE_PINNED_MODE): New.
int kind = gimple_omp_allocate_kind (st);
gcc_assert (kind == GF_OMP_ALLOCATE_KIND_ALLOCATE
|| kind == GF_OMP_ALLOCATE_KIND_FREE);
- bool allocate = (kind == GF_OMP_ALLOCATE_KIND_ALLOCATE);
for (tree c = clauses; c; c = OMP_CLAUSE_CHAIN (c))
{
if (OMP_CLAUSE_CODE (c) != OMP_CLAUSE_ALLOCATOR)
continue;
+ bool allocate = (kind == GF_OMP_ALLOCATE_KIND_ALLOCATE);
/* The allocate directives that appear in a target region must specify
an allocator clause unless a requires directive with the
dynamic_allocators clause is present in the same compilation unit. */
gimple_call_set_lhs (g, gimple_call_lhs (gs));
gimple_set_location (g, gimple_location (stmt));
gsi_replace (&gsi, g, true);
+ /* The malloc call has been replaced. Now see if there is
+ any free call due to deallocate statement and replace
+ that too. */
+ allocate = false;
}
}
else
+2022-03-31 Abid Qadeer <abidh@codesourcery.com>
+
+ * testsuite/libgomp.fortran/allocate-2.f90: Remove commented lines.
+ Add deallocate. Remove omp_atk_pool_size trait.
+
2022-03-29 Andrew Stubbs <ams@codesourcery.com>
* plugin/plugin-nvptx.c (GOMP_OFFLOAD_supported_features): Allow
subroutine foo (x, y, h)
use omp_lib
- !use iso_c_binding
integer :: x
integer :: y
integer (kind=omp_allocator_handle_kind) :: h
integer, allocatable :: var1
- !integer, allocatable :: var2(:)
!$omp allocate (var1) allocator(h)
allocate (var1)
- !y = 1
if (is_64bit_aligned(var1) == 0) then
stop 19
end if
+ deallocate(var1)
end subroutine
end module m
program main
use omp_lib
use m
- type (omp_alloctrait) :: traits(3)
+ type (omp_alloctrait) :: traits(2)
integer (omp_allocator_handle_kind) :: a
traits = [omp_alloctrait (omp_atk_alignment, 64), &
- omp_alloctrait (omp_atk_fallback, omp_atv_null_fb), &
- omp_alloctrait (omp_atk_pool_size, 8192)]
- a = omp_init_allocator (omp_default_mem_space, 3, traits)
+ omp_alloctrait (omp_atk_fallback, omp_atv_null_fb)]
+ a = omp_init_allocator (omp_default_mem_space, 2, traits)
if (a == omp_null_allocator) stop 1
- !call omp_set_default_allocator (omp_default_mem_alloc);
call foo (42, 12, a);
call omp_destroy_allocator (a);
end