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
|
; RUN: opt < %s -debug-pass=Structure -indvars -gvn -indvars -enable-new-pm=0 2>&1 -S | FileCheck --check-prefix=CHECK --check-prefix=IR %s
; RUN: opt < %s -debug-pass-manager -passes='require<domtree>,loop(loop-simplifycfg),gvn,loop(indvars)' 2>&1 -S | FileCheck --check-prefix=NEW-PM --check-prefix=IR %s
; Check CFG-only analysis are preserved by SCCP by running it between 2
; loop-vectorize runs.
; CHECK: Dominator Tree Construction
; CHECK: Natural Loop Information
; CHECK: Canonicalize natural loops
; CHECK: LCSSA Verifier
; CHECK: Loop-Closed SSA Form Pass
; CHECK: Global Value Numbering
; CHECK-NOT: Dominator Tree Construction
; CHECK-NOT: Natural Loop Information
; CHECK: Canonicalize natural loops
; NEW-PM-DAG: Running analysis: LoopAnalysis on test
; NEW-PM-DAG: Running analysis: DominatorTreeAnalysis on test
; NEW-PM: Running pass: GVNPass on test
; NEW-PM-NOT: Running analysis: LoopAnalysis on test
; NEW-PM-NOT: Running analysis: DominatorTreeAnalysis on test
declare i1 @cond()
declare void @dostuff()
define i32 @test() {
; IR-LABEL: define i32 @test()
; IR-LABEL: header:
; IR: br i1 false, label %then, label %latch
; IR-LABEL: then:
; IR-NEXT: call void @dostuff()
; IR-NEXT: br label %latch
entry:
%res = add i32 1, 10
br label %header
header:
%iv = phi i32 [ %res, %entry ], [ 0, %latch ]
%ic = icmp eq i32 %res, 99
br i1 %ic, label %then, label %latch
then:
br label %then.2
then.2:
call void @dostuff()
br label %latch
latch:
%ec = call i1 @cond()
br i1 %ec, label %exit, label %header
exit:
ret i32 %iv
}
|