File: masked-unparse.f90

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,696 kB
  • sloc: cpp: 7,438,781; ansic: 1,393,871; asm: 1,012,926; python: 241,771; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 8,596; ml: 5,082; perl: 4,730; makefile: 3,591; awk: 3,523; javascript: 2,251; xml: 892; fortran: 672
file content (92 lines) | stat: -rw-r--r-- 3,195 bytes parent folder | download | duplicates (9)
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: OmpBeginBlockDirective
  !PARSE-TREE-NEXT: OmpBlockDirective -> llvm::omp::Directive = masked
  !CHECK: !$omp masked
  !$omp masked 
  c = c + 1
  !$omp end masked
  !PARSE-TREE: OmpBeginBlockDirective
  !PARSE-TREE-NEXT: OmpBlockDirective -> 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: OmpLoopDirective -> 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: OmpLoopDirective -> 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: OmpBeginBlockDirective
  !PARSE-TREE-NEXT: OmpBlockDirective -> 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: OmpLoopDirective -> 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: OmpLoopDirective -> 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