
... including "note: '[...]' was declared here" emitted since recent
commit 9695e1c23b
"Improve -Wuninitialized note location".
For those that seemed incorrect to me, I've placed XFAILed 'dg-bogus'es,
including one more instance of PR77504 etc., and several instances where
for "local variables" of reference-data-type reductions (etc.?) we emit
bogus (?) diagnostics.
For implicit data clauses (including 'firstprivate'), we seem to be missing
diagnostics, so I've placed XFAILed 'dg-warning's.
gcc/testsuite/
* c-c++-common/goacc/builtin-goacc-parlevel-id-size.c: Document
current '-Wuninitialized' diagnostics.
* c-c++-common/goacc/mdc-1.c: Likewise.
* c-c++-common/goacc/nested-reductions-1-kernels.c: Likewise.
* c-c++-common/goacc/nested-reductions-1-parallel.c: Likewise.
* c-c++-common/goacc/nested-reductions-1-routine.c: Likewise.
* c-c++-common/goacc/nested-reductions-2-kernels.c: Likewise.
* c-c++-common/goacc/nested-reductions-2-parallel.c: Likewise.
* c-c++-common/goacc/nested-reductions-2-routine.c: Likewise.
* c-c++-common/goacc/uninit-dim-clause.c: Likewise.
* c-c++-common/goacc/uninit-firstprivate-clause.c: Likewise.
* c-c++-common/goacc/uninit-if-clause.c: Likewise.
* gfortran.dg/goacc/array-with-dt-1.f90: Likewise.
* gfortran.dg/goacc/array-with-dt-2.f90: Likewise.
* gfortran.dg/goacc/array-with-dt-3.f90: Likewise.
* gfortran.dg/goacc/array-with-dt-4.f90: Likewise.
* gfortran.dg/goacc/array-with-dt-5.f90: Likewise.
* gfortran.dg/goacc/derived-chartypes-1.f90: Likewise.
* gfortran.dg/goacc/derived-chartypes-2.f90: Likewise.
* gfortran.dg/goacc/derived-chartypes-3.f90: Likewise.
* gfortran.dg/goacc/derived-chartypes-4.f90: Likewise.
* gfortran.dg/goacc/derived-classtypes-1.f95: Likewise.
* gfortran.dg/goacc/derived-types-2.f90: Likewise.
* gfortran.dg/goacc/host_data-tree.f95: Likewise.
* gfortran.dg/goacc/kernels-tree.f95: Likewise.
* gfortran.dg/goacc/modules.f95: Likewise.
* gfortran.dg/goacc/nested-reductions-1-kernels.f90: Likewise.
* gfortran.dg/goacc/nested-reductions-1-parallel.f90: Likewise.
* gfortran.dg/goacc/nested-reductions-1-routine.f90: Likewise.
* gfortran.dg/goacc/nested-reductions-2-kernels.f90: Likewise.
* gfortran.dg/goacc/nested-reductions-2-parallel.f90: Likewise.
* gfortran.dg/goacc/nested-reductions-2-routine.f90: Likewise.
* gfortran.dg/goacc/parallel-tree.f95: Likewise.
* gfortran.dg/goacc/pr93464.f90: Likewise.
* gfortran.dg/goacc/privatization-1-compute-loop.f90: Likewise.
* gfortran.dg/goacc/privatization-1-compute.f90: Likewise.
* gfortran.dg/goacc/privatization-1-routine_gang-loop.f90:
Likewise.
* gfortran.dg/goacc/privatization-1-routine_gang.f90: Likewise.
* gfortran.dg/goacc/uninit-dim-clause.f95: Likewise.
* gfortran.dg/goacc/uninit-firstprivate-clause.f95: Likewise.
* gfortran.dg/goacc/uninit-if-clause.f95: Likewise.
* gfortran.dg/goacc/uninit-use-device-clause.f95: Likewise.
* gfortran.dg/goacc/wait.f90: Likewise.
libgomp/
* testsuite/libgomp.oacc-c-c++-common/vred2d-128.c: Document
current '-Wuninitialized' diagnostics.
* testsuite/libgomp.oacc-fortran/data-5.f90: Likewise.
* testsuite/libgomp.oacc-fortran/gemm-2.f90: Likewise.
* testsuite/libgomp.oacc-fortran/gemm.f90: Likewise.
* testsuite/libgomp.oacc-fortran/optional-reduction.f90: Likewise.
* testsuite/libgomp.oacc-fortran/parallel-reduction.f90: Likewise.
* testsuite/libgomp.oacc-fortran/pr70643.f90: Likewise.
* testsuite/libgomp.oacc-fortran/pr96628-part1.f90: Likewise.
* testsuite/libgomp.oacc-fortran/privatized-ref-2.f90: Likewise.
* testsuite/libgomp.oacc-fortran/reduction-5.f90: Likewise.
* testsuite/libgomp.oacc-fortran/reduction-7.f90: Likewise.
* testsuite/libgomp.oacc-fortran/reference-reductions.f90:
Likewise.
116 lines
3.2 KiB
Fortran
116 lines
3.2 KiB
Fortran
! { dg-do run }
|
|
|
|
! { dg-additional-options -Wuninitialized }
|
|
|
|
! { dg-additional-options "-Wopenacc-parallelism" } for testing/documenting
|
|
! aspects of that functionality.
|
|
|
|
! subroutine reduction
|
|
|
|
program reduction
|
|
integer, parameter :: n = 40, c = 10
|
|
integer :: i, vsum, gs, ws, vs, cs, ns
|
|
|
|
call redsub_gang (gs, n, c)
|
|
call redsub_worker (ws, n, c)
|
|
call redsub_vector (vs, n, c)
|
|
call redsub_combined (cs, n, c)
|
|
call redsub_nested (ns, n, c)
|
|
|
|
vsum = 0
|
|
|
|
! Verify the results
|
|
do i = 1, n
|
|
vsum = vsum + c
|
|
end do
|
|
|
|
if (gs .ne. vsum) STOP 1
|
|
if (ws .ne. vsum) STOP 2
|
|
if (vs .ne. vsum) STOP 3
|
|
if (cs .ne. vsum) STOP 4
|
|
if (ns .ne. vsum) STOP 5
|
|
end program reduction
|
|
|
|
subroutine redsub_gang(sum, n, c)
|
|
integer :: sum, n, c
|
|
|
|
sum = 0
|
|
|
|
!$acc parallel copyin (n, c) num_gangs(n) copy(sum)
|
|
!$acc loop reduction(+:sum) gang
|
|
! { dg-bogus {'sum\.[0-9]+' is used uninitialized} TODO { xfail *-*-* } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target *-*-* } .-2 }
|
|
do i = 1, n
|
|
sum = sum + c
|
|
end do
|
|
!$acc end parallel
|
|
end subroutine redsub_gang
|
|
|
|
subroutine redsub_worker(sum, n, c)
|
|
integer :: sum, n, c
|
|
|
|
sum = 0
|
|
|
|
!$acc parallel copyin (n, c) num_workers(4) vector_length (32) copy(sum)
|
|
! { dg-warning "region is vector partitioned but does not contain vector partitioned code" "" { target *-*-* } .-1 }
|
|
!$acc loop reduction(+:sum) worker
|
|
! { dg-bogus {'sum\.[0-9]+' is used uninitialized} TODO { xfail *-*-* } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target *-*-* } .-2 }
|
|
do i = 1, n
|
|
sum = sum + c
|
|
end do
|
|
!$acc end parallel
|
|
end subroutine redsub_worker
|
|
|
|
subroutine redsub_vector(sum, n, c)
|
|
integer :: sum, n, c
|
|
|
|
sum = 0
|
|
|
|
!$acc parallel copyin (n, c) vector_length(32) copy(sum)
|
|
!$acc loop reduction(+:sum) vector
|
|
! { dg-bogus {'sum\.[0-9]+' is used uninitialized} TODO { xfail *-*-* } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target *-*-* } .-2 }
|
|
do i = 1, n
|
|
sum = sum + c
|
|
end do
|
|
!$acc end parallel
|
|
end subroutine redsub_vector
|
|
|
|
subroutine redsub_combined(sum, n, c)
|
|
integer :: sum, n, c
|
|
|
|
sum = 0
|
|
|
|
!$acc parallel num_gangs (8) num_workers (4) vector_length(32) copy(sum)
|
|
!$acc loop reduction(+:sum) gang worker vector
|
|
! { dg-bogus {'sum\.[0-9]+' is used uninitialized} TODO { xfail *-*-* } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target *-*-* } .-2 }
|
|
do i = 1, n
|
|
sum = sum + c
|
|
end do
|
|
!$acc end parallel
|
|
end subroutine redsub_combined
|
|
|
|
subroutine redsub_nested(sum, n, c)
|
|
integer :: sum, n, c
|
|
integer :: ii, jj
|
|
|
|
ii = n / 10;
|
|
jj = 10;
|
|
sum = 0
|
|
|
|
!$acc parallel num_gangs (8) copy(sum)
|
|
!$acc loop reduction(+:sum) gang
|
|
! { dg-bogus {'sum\.[0-9]+' is used uninitialized} TODO { xfail *-*-* } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target *-*-* } .-2 }
|
|
do i = 1, ii
|
|
!$acc loop reduction(+:sum) vector
|
|
! { dg-bogus {'sum\.[0-9]+' may be used uninitialized} TODO { xfail { ! __OPTIMIZE__ } } .-1 }
|
|
! { dg-note {'sum\.[0-9]+' was declared here} {} { target { ! __OPTIMIZE__ } } .-2 }
|
|
do j = 1, jj
|
|
sum = sum + c
|
|
end do
|
|
end do
|
|
!$acc end parallel
|
|
end subroutine redsub_nested
|