This supports the following checks for THREADPRIVATE Directive: ``` [5.1] 2.21.2 THREADPRIVATE Directive A threadprivate variable must not appear in any clause except the copyin, copyprivate, schedule, num_threads, thread_limit, and if clauses. ``` This supports the following checks for DECLARE TARGET Directive: ``` [5.1] 2.14.7 Declare Target Directive A threadprivate variable cannot appear in the directive. ``` Besides, procedure name and the entity with PARAMETER attribute cannot be in the threadprivate directive. The main program name and module name cannot be in the threadprivate directive and declare target directive. There is no clear description or restriction about the entity with PARAMETER attribute in OpenMP 5.1 Specification, and a warning is given. Reviewed By: kiranchandramohan, shraiysh, NimishMishra Differential Revision: https://reviews.llvm.org/D114941
82 lines
2.3 KiB
Fortran
82 lines
2.3 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1 -fopenmp
|
|
! OpenMP Version 5.1
|
|
! Check OpenMP construct validity for the following directives:
|
|
! 2.21.2 Threadprivate Directive
|
|
|
|
program threadprivate02
|
|
integer :: arr1(10)
|
|
common /blk1/ a1
|
|
real, save :: eq_a, eq_b, eq_c, eq_d
|
|
|
|
!$omp threadprivate(arr1)
|
|
|
|
!$omp threadprivate(/blk1/)
|
|
|
|
!$omp threadprivate(blk1)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot be an element of a common block
|
|
!$omp threadprivate(a1)
|
|
|
|
equivalence(eq_a, eq_b)
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot appear in an EQUIVALENCE statement
|
|
!$omp threadprivate(eq_a)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot appear in an EQUIVALENCE statement
|
|
!$omp threadprivate(eq_c)
|
|
equivalence(eq_c, eq_d)
|
|
|
|
contains
|
|
subroutine func()
|
|
integer :: arr2(10)
|
|
integer, save :: arr3(10)
|
|
common /blk2/ a2
|
|
common /blk3/ a3
|
|
save /blk3/
|
|
|
|
!ERROR: A variable that appears in a THREADPRIVATE directive must be declared in the scope of a module or have the SAVE attribute, either explicitly or implicitly
|
|
!$omp threadprivate(arr2)
|
|
|
|
!$omp threadprivate(arr3)
|
|
|
|
!$omp threadprivate(/blk2/)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot be an element of a common block
|
|
!$omp threadprivate(a2)
|
|
|
|
!$omp threadprivate(/blk3/)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot be an element of a common block
|
|
!$omp threadprivate(a3)
|
|
end
|
|
end
|
|
|
|
module mod4
|
|
integer :: arr4(10)
|
|
common /blk4/ a4
|
|
|
|
!$omp threadprivate(arr4)
|
|
|
|
!$omp threadprivate(/blk4/)
|
|
|
|
!$omp threadprivate(blk4)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot be an element of a common block
|
|
!$omp threadprivate(a4)
|
|
end
|
|
|
|
subroutine func5()
|
|
integer :: arr5(10)
|
|
common /blk5/ a5
|
|
|
|
!ERROR: A variable that appears in a THREADPRIVATE directive must be declared in the scope of a module or have the SAVE attribute, either explicitly or implicitly
|
|
!$omp threadprivate(arr5)
|
|
|
|
!$omp threadprivate(/blk5/)
|
|
|
|
!ERROR: A variable that appears in a THREADPRIVATE directive must be declared in the scope of a module or have the SAVE attribute, either explicitly or implicitly
|
|
!$omp threadprivate(blk5)
|
|
|
|
!ERROR: A variable in a THREADPRIVATE directive cannot be an element of a common block
|
|
!$omp threadprivate(a5)
|
|
end
|