2017-12-01 18:42:46 +01:00
|
|
|
; This test is checking basic properties of -print-module-scope options:
|
|
|
|
; - dumps all the module IR at once
|
|
|
|
; - all the function attributes are shown, including those of declarations
|
|
|
|
; - works on top of -print-after and -filter-print-funcs
|
|
|
|
;
|
2020-08-18 02:48:04 +02:00
|
|
|
; RUN: opt -enable-new-pm=0 < %s 2>&1 -disable-output \
|
2017-12-01 18:42:46 +01:00
|
|
|
; RUN: -simplifycfg -print-after=simplifycfg -print-module-scope \
|
|
|
|
; RUN: | FileCheck %s -check-prefix=CFG
|
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
2021-07-08 14:24:03 +02:00
|
|
|
; RUN: -passes=simplifycfg -print-after-all -print-module-scope \
|
2018-09-24 18:08:15 +02:00
|
|
|
; RUN: | FileCheck %s -check-prefix=CFG
|
2020-08-18 02:48:04 +02:00
|
|
|
; RUN: opt -enable-new-pm=0 < %s 2>&1 -disable-output \
|
2017-12-01 18:42:46 +01:00
|
|
|
; RUN: -simplifycfg -print-after=simplifycfg -filter-print-funcs=foo -print-module-scope \
|
|
|
|
; RUN: | FileCheck %s -check-prefix=FOO
|
2018-09-24 18:08:15 +02:00
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
2021-07-08 14:24:03 +02:00
|
|
|
; RUN: -passes=simplifycfg -print-after-all -filter-print-funcs=foo -print-module-scope \
|
2018-09-24 18:08:15 +02:00
|
|
|
; RUN: | FileCheck %s -check-prefix=FOO
|
2017-12-01 18:42:46 +01:00
|
|
|
|
2021-04-14 23:52:50 +02:00
|
|
|
; CFG: IR Dump After {{Simplify the CFG|SimplifyCFGPass}} {{.*}}foo
|
2017-12-01 18:42:46 +01:00
|
|
|
; CFG-NEXT: ModuleID =
|
|
|
|
; CFG: define void @foo
|
|
|
|
; CFG: define void @bar
|
|
|
|
; CFG: declare void @baz
|
2021-04-14 23:52:50 +02:00
|
|
|
; CFG: IR Dump After {{.*}}bar
|
2017-12-01 18:42:46 +01:00
|
|
|
; CFG-NEXT: ModuleID =
|
|
|
|
; CFG: define void @foo
|
|
|
|
; CFG: define void @bar
|
|
|
|
; CFG: declare void @baz
|
|
|
|
|
2021-04-14 23:52:50 +02:00
|
|
|
; FOO: IR Dump After {{Simplify the CFG|SimplifyCFGPass}} {{.*foo}}
|
2017-12-01 18:42:46 +01:00
|
|
|
; FOO-NEXT: ModuleID =
|
|
|
|
; FOO: Function Attrs: nounwind ssp
|
|
|
|
; FOO: define void @foo
|
|
|
|
; FOO: Function Attrs: nounwind
|
|
|
|
; FOO: define void @bar
|
|
|
|
; FOO: Function Attrs: nounwind readnone ssp
|
|
|
|
; FOO: declare void @baz
|
|
|
|
|
|
|
|
define void @foo() nounwind ssp {
|
|
|
|
call void @baz()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bar() #0 {
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @baz() #1
|
|
|
|
|
2019-12-25 00:52:21 +01:00
|
|
|
attributes #0 = { nounwind "frame-pointer"="all" }
|
2017-12-01 18:42:46 +01:00
|
|
|
|
|
|
|
attributes #1 = { nounwind readnone ssp "use-soft-float"="false" }
|
2019-12-25 00:52:21 +01:00
|
|
|
; FOO: attributes #{{[0-9]}} = { nounwind "frame-pointer"="all" }
|
2017-12-01 18:42:46 +01:00
|
|
|
|
|
|
|
; FOO: attributes #{{[0-9]}} = { nounwind readnone ssp "use-soft-float"="false" }
|
|
|
|
|
2018-09-24 18:08:15 +02:00
|
|
|
; FOO-NOT: IR Dump After {{Simplify the CFG|SimplifyCFGPass}}
|