summaryrefslogtreecommitdiff
path: root/flang/test/Parser/OpenMP/masked-unparse.f90
blob: 786b60416846f52663fbcd2c874291827e9e1a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
! RUN: %flang_fc1 -fdebug-unparse -fopenmp %s | FileCheck --ignore-case %s
! RUN: %flang_fc1 -fdebug-dump-parse-tree -fopenmp %s | FileCheck --check-prefix="PARSE-TREE" %s

! Check for parsing of masked directive with filter clause. 


subroutine test_masked()
  integer :: c = 1
  !PARSE-TREE: OmpBeginDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = masked
  !CHECK: !$omp masked
  !$omp masked 
  c = c + 1
  !$omp end masked
  !PARSE-TREE: OmpBeginDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = masked
  !PARSE-TREE-NEXT: OmpClauseList -> OmpClause -> Filter -> Scalar -> Integer -> Expr = '1_4'
  !PARSE-TREE-NEXT: LiteralConstant -> IntLiteralConstant = '1'
  !CHECK: !$omp masked filter(1_4)
  !$omp masked filter(1) 
  c = c + 2
  !$omp end masked
end subroutine

subroutine test_masked_taskloop_simd()
  integer :: i, j = 1
  !PARSE-TREE: OmpBeginLoopDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = masked taskloop simd
  !CHECK: !$omp masked taskloop simd
  !$omp masked taskloop simd 
  do i=1,10
   j = j + 1
  end do
  !$omp end masked taskloop simd
end subroutine

subroutine test_masked_taskloop
  integer :: i, j = 1
  !PARSE-TREE: OmpBeginLoopDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = masked taskloop
  !PARSE-TREE-NEXT: OmpClauseList -> OmpClause -> Filter -> Scalar -> Integer -> Expr = '2_4'
  !PARSE-TREE-NEXT: LiteralConstant -> IntLiteralConstant = '2'
  !CHECK: !$omp masked taskloop filter(2_4)
  !$omp masked taskloop filter(2) 
  do i=1,10
   j = j + 1
  end do
  !$omp end masked taskloop 
end subroutine

subroutine test_parallel_masked
  integer, parameter :: i = 1, j = 1
  integer :: c = 2
  !PARSE-TREE: OmpBeginDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = parallel masked
  !PARSE-TREE-NEXT: OmpClauseList -> OmpClause -> Filter -> Scalar -> Integer -> Expr = '2_4'
  !PARSE-TREE-NEXT: Add
  !PARSE-TREE-NEXT: Expr = '1_4'
  !PARSE-TREE-NEXT: Designator -> DataRef -> Name = 'i'
  !PARSE-TREE-NEXT: Expr = '1_4'
  !PARSE-TREE-NEXT: Designator -> DataRef -> Name = 'j'
  !CHECK: !$omp parallel masked filter(2_4)
  !$omp parallel masked filter(i+j)
  c = c + 2
  !$omp end parallel masked
end subroutine

subroutine test_parallel_masked_taskloop_simd
  integer :: i, j = 1
  !PARSE-TREE: OmpBeginLoopDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = parallel masked taskloop simd
  !CHECK: !$omp parallel masked taskloop simd
  !$omp parallel masked taskloop simd 
  do i=1,10
   j = j + 1
  end do
  !$omp end parallel masked taskloop simd
end subroutine

subroutine test_parallel_masked_taskloop
  integer :: i, j = 1
  !PARSE-TREE: OmpBeginLoopDirective
  !PARSE-TREE-NEXT: OmpDirectiveName -> llvm::omp::Directive = parallel masked taskloop
  !PARSE-TREE-NEXT: OmpClauseList -> OmpClause -> Filter -> Scalar -> Integer -> Expr = '2_4'
  !PARSE-TREE-NEXT: LiteralConstant -> IntLiteralConstant = '2'
  !CHECK: !$omp parallel masked taskloop filter(2_4)
  !$omp parallel masked taskloop filter(2) 
  do i=1,10
   j = j + 1
  end do
  !$omp end parallel masked taskloop 
end subroutine