File: exec-on-ir-change.ll

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (103 lines) | stat: -rw-r--r-- 5,023 bytes parent folder | download | duplicates (14)
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
93
94
95
96
97
98
99
100
101
102
103
; Simple checks of -exec-on-ir-change=cat functionality
;
; Simple functionality check.
; RUN: opt -S -exec-on-ir-change=cat -passes=instsimplify 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-SIMPLE
;
; Check that only the passes that change the IR are printed and that the
; others (including g) are filtered out.
; RUN: opt -S -exec-on-ir-change=cat -passes=instsimplify -filter-print-funcs=f  2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FUNC-FILTER
;
; Check that the reporting of IRs respects -print-module-scope
; RUN: opt -S -exec-on-ir-change=cat -passes=instsimplify -print-module-scope 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-PRINT-MOD-SCOPE
;
; Check that the reporting of IRs respects -print-module-scope
; RUN: opt -S -exec-on-ir-change=cat -passes=instsimplify -filter-print-funcs=f -print-module-scope 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FUNC-FILTER-MOD-SCOPE
;
; Check that reporting of multiple functions happens
; RUN: opt -S -exec-on-ir-change=cat -passes=instsimplify -filter-print-funcs="f,g" 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FILTER-MULT-FUNC
;
; Check that the reporting of IRs respects -filter-passes
; RUN: opt -S -exec-on-ir-change=cat -passes="instsimplify,no-op-function" -filter-passes="no-op-function" 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FILTER-PASSES
;
; Check that the reporting of IRs respects -filter-passes with multiple passes
; RUN: opt -S -exec-on-ir-change=cat -passes="instsimplify,no-op-function" -filter-passes="no-op-function,instsimplify" 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FILTER-MULT-PASSES
;
; Check that the reporting of IRs respects both -filter-passes and -filter-print-funcs
; RUN: opt -S -exec-on-ir-change=cat -passes="instsimplify,no-op-function" -filter-passes="no-op-function,instsimplify" -filter-print-funcs=f 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FILTER-FUNC-PASSES
;
; Check that the reporting of IRs respects -filter-passes, -filter-print-funcs and -print-module-scope
; RUN: opt -S -exec-on-ir-change=cat -passes="instsimplify,no-op-function" -filter-passes="no-op-function,instsimplify" -filter-print-funcs=f -print-module-scope 2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-FILTER-FUNC-PASSES-MOD-SCOPE
;
; Check that repeated passes that change the IR are printed and that the
; others (including g) are filtered out.  Note that the second time
; instsimplify is run on f, it does not change the IR
; RUN: opt -S -exec-on-ir-change=cat -passes="instsimplify,instsimplify" -filter-print-funcs=f  2>&1 -o /dev/null < %s | FileCheck %s --check-prefix=CHECK-MULT-PASSES-FILTER-FUNC
;

define i32 @g() {
entry:
  %a = add i32 2, 3
  ret i32 %a
}

define i32 @f() {
entry:
  %a = add i32 2, 3
  ret i32 %a
}

; CHECK-SIMPLE: ; ModuleID = {{.+}}
; CHECK-SIMPLE: cat:{{.*}}Initial IR
; CHECK-SIMPLE: define i32 @g()
; CHECK-SIMPLE: cat:{{.*}}InstSimplifyPass
; CHECK-SIMPLE: define i32 @f()
; CHECK-SIMPLE: cat:{{.*}}InstSimplifyPass

; CHECK-FUNC-FILTER: define i32 @f()
; CHECK-FUNC-FILTER: cat:{{.*}}Initial IR
; CHECK-FUNC-FILTER: define i32 @f()
; CHECK-FUNC-FILTER: cat:{{.*}}InstSimplifyPass

; CHECK-PRINT-MOD-SCOPE: ModuleID = {{.+}}
; CHECK-PRINT-MOD-SCOPE: cat:{{.*}}Initial IR
; CHECK-PRINT-MOD-SCOPE: ModuleID = {{.+}}
; CHECK-PRINT-MOD-SCOPE: cat:{{.*}}InstSimplifyPass
; CHECK-PRINT-MOD-SCOPE: ModuleID = {{.+}}
; CHECK-PRINT-MOD-SCOPE: cat:{{.*}}InstSimplifyPass

; CHECK-FUNC-FILTER-MOD-SCOPE: ; ModuleID = {{.+}}
; CHECK-FUNC-FILTER-MOD-SCOPE: cat:{{.*}}Initial IR
; CHECK-FUNC-FILTER-MOD-SCOPE: ModuleID = {{.+}}
; CHECK-FUNC-FILTER-MOD-SCOPE: cat:{{.*}}InstSimplifyPass

; CHECK-FILTER-MULT-FUNC: define i32 @g()
; CHECK-FILTER-MULT-FUNC: cat:{{.*}}Initial IR
; CHECK-FILTER-MULT-FUNC: define i32 @g()
; CHECK-FILTER-MULT-FUNC: cat:{{.*}}InstSimplifyPass
; CHECK-FILTER-MULT-FUNC: define i32 @f()
; CHECK-FILTER-MULT-FUNC: cat:{{.*}}InstSimplifyPass

; CHECK-FILTER-PASSES: define i32 @g()
; CHECK-FILTER-PASSES: cat:{{.*}}Initial IR

; CHECK-FILTER-MULT-PASSES: define i32 @g()
; CHECK-FILTER-MULT-PASSES: cat:{{.*}}Initial IR
; CHECK-FILTER-MULT-PASSES: define i32 @g()
; CHECK-FILTER-MULT-PASSES: cat:{{.*}}InstSimplifyPass
; CHECK-FILTER-MULT-PASSES: define i32 @f()
; CHECK-FILTER-MULT-PASSES: cat:{{.*}}InstSimplifyPass

; CHECK-FILTER-FUNC-PASSES: define i32 @f()
; CHECK-FILTER-FUNC-PASSES: cat:{{.*}}Initial IR
; CHECK-FILTER-FUNC-PASSES: define i32 @f()
; CHECK-FILTER-FUNC-PASSES: cat:{{.*}}InstSimplifyPass

; CHECK-FILTER-FUNC-PASSES-MOD-SCOPE: ; ModuleID = {{.+}}
; CHECK-FILTER-FUNC-PASSES-MOD-SCOPE: cat:{{.*}}Initial IR
; CHECK-FILTER-FUNC-PASSES-MOD-SCOPE: ModuleID = {{.+}}
; CHECK-FILTER-FUNC-PASSES-MOD-SCOPE: cat:{{.*}}InstSimplifyPass

; CHECK-MULT-PASSES-FILTER-FUNC: define i32 @f()
; CHECK-MULT-PASSES-FILTER-FUNC: cat:{{.*}}Initial IR
; CHECK-MULT-PASSES-FILTER-FUNC: define i32 @f()
; CHECK-MULT-PASSES-FILTER-FUNC: cat:{{.*}}InstSimplifyPass