2020-11-18 08:53:21 +01:00
|
|
|
; RUN: opt -enable-new-pm=0 < %s 2>&1 -disable-output \
|
2020-11-02 22:22:42 +01:00
|
|
|
; RUN: -inline -print-after-all | FileCheck %s --check-prefix=LEGACY
|
2018-10-15 12:46:35 +02:00
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
|
|
|
; RUN: -passes=inline -print-after-all | FileCheck %s -check-prefix=INL
|
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
2020-04-28 22:25:15 +02:00
|
|
|
; RUN: -passes=inliner-wrapper -print-after-all | FileCheck %s -check-prefix=INL
|
2020-11-18 08:53:21 +01:00
|
|
|
; RUN: opt -enable-new-pm=0 < %s 2>&1 -disable-output \
|
2020-11-02 22:22:42 +01:00
|
|
|
; RUN: -inline -print-after-all -print-module-scope | FileCheck %s -check-prefix=LEGACY-MOD
|
2018-10-15 12:46:35 +02:00
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
|
|
|
; RUN: -passes=inline -print-after-all -print-module-scope | FileCheck %s -check-prefix=INL-MOD
|
2020-04-28 22:25:15 +02:00
|
|
|
; RUN: opt < %s 2>&1 -disable-output \
|
|
|
|
; RUN: -passes=inliner-wrapper -print-after-all -print-module-scope | FileCheck %s -check-prefix=INL-MOD
|
2018-10-15 12:46:35 +02:00
|
|
|
|
2020-11-02 22:22:42 +01:00
|
|
|
; LEGACY: IR Dump After Function Integration/Inlining
|
|
|
|
; LEGACY: define void @bar()
|
|
|
|
; LEGACY-NEXT: call void @foo()
|
|
|
|
; LEGACY: define void @foo()
|
|
|
|
; LEGACY-NEXT: call void @bar()
|
|
|
|
; LEGACY: IR Dump After Function Integration/Inlining
|
|
|
|
; LEGACY: define void @tester()
|
|
|
|
; LEGACY-NEXT: call void @foo()
|
|
|
|
|
2021-04-14 23:52:50 +02:00
|
|
|
; INL: IR Dump After InlinerPass on (foo, bar) ***
|
2020-11-02 22:22:42 +01:00
|
|
|
; INL: define void @foo()
|
2018-10-15 12:46:35 +02:00
|
|
|
; INL-NEXT: call void @bar()
|
2020-11-02 22:22:42 +01:00
|
|
|
; INL: define void @bar()
|
|
|
|
; INL-NEXT: call void @foo()
|
2021-04-14 23:52:50 +02:00
|
|
|
; INL: IR Dump After InlinerPass on (tester) ***
|
2020-11-02 22:22:42 +01:00
|
|
|
; INL: define void @tester()
|
|
|
|
; INL-NEXT: call void @foo()
|
|
|
|
|
|
|
|
; LEGACY-MOD: IR Dump After Function Integration/Inlining
|
|
|
|
; LEGACY-MOD-NEXT: ModuleID =
|
|
|
|
; LEGACY-MOD: define void @tester()
|
|
|
|
; LEGACY-MOD: define void @foo()
|
|
|
|
; LEGACY-MOD: define void @bar()
|
2018-10-15 12:46:35 +02:00
|
|
|
|
2021-04-14 23:52:50 +02:00
|
|
|
; INL-MOD-LABEL:*** IR Dump After InlinerPass on (foo, bar) ***
|
2018-12-03 15:48:15 +01:00
|
|
|
; INL-MOD-NEXT: ModuleID =
|
|
|
|
; INL-MOD-NEXT: source_filename =
|
2018-10-15 12:46:35 +02:00
|
|
|
; INL-MOD: define void @tester()
|
|
|
|
; INL-MOD-NEXT: call void @foo()
|
|
|
|
; INL-MOD: define void @foo()
|
2020-11-02 22:22:42 +01:00
|
|
|
; INL-MOD-NEXT: call void @bar()
|
2018-10-15 12:46:35 +02:00
|
|
|
; INL-MOD: define void @bar()
|
2020-11-02 22:22:42 +01:00
|
|
|
; INL-MOD-NEXT: call void @foo()
|
2021-04-14 23:52:50 +02:00
|
|
|
; INL-MOD-LABEL:*** IR Dump After InlinerPass on (tester) ***
|
2018-12-03 15:48:15 +01:00
|
|
|
; INL-MOD-NEXT: ModuleID =
|
|
|
|
; INL-MOD-NEXT: source_filename =
|
2018-10-15 12:46:35 +02:00
|
|
|
; INL-MOD: define void @tester()
|
|
|
|
; INL-MOD-NEXT: call void @foo()
|
|
|
|
; INL-MOD: define void @foo()
|
|
|
|
; INL-MOD-NEXT: call void @bar()
|
|
|
|
; INL-MOD: define void @bar()
|
|
|
|
; INL-MOD-NEXT: call void @foo()
|
|
|
|
; INL-MOD: IR Dump After
|
2018-12-03 15:48:15 +01:00
|
|
|
; INL-MOD-NEXT: ModuleID =
|
|
|
|
; INL-MOD-NEXT: source_filename =
|
|
|
|
; INL-MOD-NOT: Printing <null> Function
|
2018-10-15 12:46:35 +02:00
|
|
|
|
|
|
|
define void @tester() noinline {
|
|
|
|
call void @foo()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @foo() noinline {
|
|
|
|
call void @bar()
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @bar() noinline {
|
|
|
|
call void @foo()
|
|
|
|
ret void
|
|
|
|
}
|