mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
987b8f791e
This pass is not an optimization and is needed for CFI functionality (cross-dso verification). Differential Revision: https://reviews.llvm.org/D106699
94 lines
4.3 KiB
LLVM
94 lines
4.3 KiB
LLVM
; The IR below was crafted so as:
|
|
; 1) To have a loop, so we create a loop pass manager
|
|
; 2) To be "immutable" in the sense that no pass in the standard
|
|
; pipeline will modify it.
|
|
; Since no transformations take place, we don't expect any analyses
|
|
; to be invalidated.
|
|
; Any invalidation that shows up here is a bug, unless we started modifying
|
|
; the IR, in which case we need to make it immutable harder.
|
|
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager \
|
|
; RUN: -passes='default<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DEFAULT,CHECK-CORO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager -enable-matrix \
|
|
; RUN: -passes='default<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DEFAULT,CHECK-MATRIX,CHECK-CORO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager -new-pm-debug-info-for-profiling \
|
|
; RUN: -passes='default<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DIS,CHECK-CORO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager \
|
|
; RUN: -passes='thinlto-pre-link<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DEFAULT,CHECK-PRE-LINK,CHECK-CORO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager \
|
|
; RUN: -passes='lto-pre-link<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-DEFAULT,CHECK-PRE-LINK,CHECK-CORO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager \
|
|
; RUN: -passes='thinlto<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-THINLTO
|
|
; RUN: opt -disable-verify -verify-cfg-preserved=0 -debug-pass-manager \
|
|
; RUN: -passes='lto<O0>' -S %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefixes=CHECK,CHECK-LTO
|
|
|
|
; CHECK-DIS: Running analysis: InnerAnalysisManagerProxy
|
|
; CHECK-DIS-NEXT: Running pass: AddDiscriminatorsPass
|
|
; CHECK-DIS-NEXT: Running pass: AlwaysInlinerPass
|
|
; CHECK-DIS-NEXT: Running analysis: ProfileSummaryAnalysis
|
|
; CHECK-DEFAULT: Running pass: AlwaysInlinerPass
|
|
; CHECK-DEFAULT-NEXT: Running analysis: InnerAnalysisManagerProxy
|
|
; CHECK-DEFAULT-NEXT: Running analysis: ProfileSummaryAnalysis
|
|
; CHECK-MATRIX: Running pass: LowerMatrixIntrinsicsPass
|
|
; CHECK-MATRIX-NEXT: Running analysis: TargetIRAnalysis
|
|
; CHECK-CORO-NEXT: Running pass: CoroEarlyPass
|
|
; CHECK-CORO-NEXT: Running analysis: InnerAnalysisManagerProxy
|
|
; CHECK-CORO-NEXT: Running analysis: LazyCallGraphAnalysis
|
|
; CHECK-CORO-NEXT: Running analysis: TargetLibraryAnalysis
|
|
; CHECK-CORO-NEXT: Running analysis: FunctionAnalysisManagerCGSCCProxy
|
|
; CHECK-CORO-NEXT: Running analysis: OuterAnalysisManagerProxy
|
|
; CHECK-CORO-NEXT: Running pass: CoroSplitPass
|
|
; CHECK-CORO-NEXT: Running pass: CoroCleanupPass
|
|
; CHECK-PRE-LINK: Running pass: CanonicalizeAliasesPass
|
|
; CHECK-PRE-LINK-NEXT: Running pass: NameAnonGlobalPass
|
|
; CHECK-THINLTO: Running pass: Annotation2MetadataPass
|
|
; CHECK-THINLTO-NEXT: Running pass: LowerTypeTestsPass
|
|
; CHECK-THINLTO-NEXT: Running pass: EliminateAvailableExternallyPass
|
|
; CHECK-THINLTO-NEXT: Running pass: GlobalDCEPass
|
|
; CHECK-LTO: Running pass: Annotation2MetadataPass
|
|
; CHECK-LTO-NEXT: Running pass: CrossDSOCFIPass on [module]
|
|
; CHECK-LTO-NEXT: Running pass: WholeProgramDevirtPass
|
|
; CHECK-LTO-NEXT: Running analysis: InnerAnalysisManagerProxy
|
|
; CHECK-LTO-NEXT: Running pass: LowerTypeTestsPass
|
|
; CHECK-LTO-NEXT: Running pass: LowerTypeTestsPass
|
|
; CHECK-LTO-NEXT: Running pass: AnnotationRemarksPass
|
|
; CHECK-LTO-NEXT: Running analysis: TargetLibraryAnalysis
|
|
; CHECK-NEXT: Running pass: PrintModulePass
|
|
|
|
; Make sure we get the IR back out without changes when we print the module.
|
|
; CHECK-LABEL: define void @foo(i32 %n) local_unnamed_addr {
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: br label %loop
|
|
; CHECK: loop:
|
|
; CHECK-NEXT: %iv = phi i32 [ 0, %entry ], [ %iv.next, %loop ]
|
|
; CHECK-NEXT: %iv.next = add i32 %iv, 1
|
|
; CHECK-NEXT: tail call void @bar()
|
|
; CHECK-NEXT: %cmp = icmp eq i32 %iv, %n
|
|
; CHECK-NEXT: br i1 %cmp, label %exit, label %loop
|
|
; CHECK: exit:
|
|
; CHECK-NEXT: ret void
|
|
; CHECK-NEXT: }
|
|
;
|
|
|
|
declare void @bar() local_unnamed_addr
|
|
|
|
define void @foo(i32 %n) local_unnamed_addr {
|
|
entry:
|
|
br label %loop
|
|
loop:
|
|
%iv = phi i32 [ 0, %entry ], [ %iv.next, %loop ]
|
|
%iv.next = add i32 %iv, 1
|
|
tail call void @bar()
|
|
%cmp = icmp eq i32 %iv, %n
|
|
br i1 %cmp, label %exit, label %loop
|
|
exit:
|
|
ret void
|
|
}
|