Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / Transforms / SimpleLoopUnswitch / nontrivial-unswitch-markloopasdeleted.ll
blobc8e1291b9cd55c8a4a8fdb50aa3699c665d23969
1 ; RUN: opt < %s -enable-loop-distribute -passes='loop-distribute,loop-mssa(simple-loop-unswitch<nontrivial>),loop-distribute' -o /dev/null -S -verify-analysis-invalidation=0 -debug-pass-manager=verbose 2>&1 | FileCheck %s
4 ; Running loop-distribute will result in LoopAccessAnalysis being required and
5 ; cached in the LoopAnalysisManagerFunctionProxy.
7 ; CHECK: Running analysis: LoopAccessAnalysis on test6
10 ; Then simple-loop-unswitch is removing/replacing some loops (resulting in
11 ; Loop objects used as key in the analyses cache is destroyed). So here we
12 ; want to see that any analysis results cached on the destroyed loop is
13 ; cleared. A special case here is that loop_a_inner is destroyed when
14 ; unswitching the parent loop.
16 ; The bug solved and verified by this test case was related to the
17 ; SimpleLoopUnswitch not marking the Loop as removed, so we missed clearing
18 ; the analysis caches.
20 ; CHECK: Running pass: SimpleLoopUnswitchPass on loop_begin
21 ; CHECK-NEXT: Running analysis: OuterAnalysisManagerProxy
22 ; CHECK-NEXT: Clearing all analysis results for: loop_a_inner
25 ; When running loop-distribute the second time we can see that loop_a_inner
26 ; isn't analysed because the loop no longer exists (instead we find a new loop,
27 ; loop_a_inner.us). This kind of verifies that it was correct to remove the
28 ; loop_a_inner related analysis above.
30 ; CHECK: Invalidating analysis: LoopAccessAnalysis on test6
31 ; CHECK-NEXT: Running pass: LoopDistributePass on test6
32 ; CHECK-NEXT: Running analysis: LoopAccessAnalysis on test6
35 define i32 @test6(ptr %ptr, i1 %cond1, ptr %a.ptr, ptr %b.ptr) {
36 entry:
37   br label %loop_begin
39 loop_begin:
40   %v = load i1, ptr %ptr
41   br i1 %cond1, label %loop_a, label %loop_b
43 loop_a:
44   br label %loop_a_inner
46 loop_a_inner:
47   %va = load i1, ptr %ptr
48   %a = load i32, ptr %a.ptr
49   br i1 %va, label %loop_a_inner, label %loop_a_inner_exit
51 loop_a_inner_exit:
52   %a.lcssa = phi i32 [ %a, %loop_a_inner ]
53   br label %latch
55 loop_b:
56   br label %loop_b_inner
58 loop_b_inner:
59   %vb = load i1, ptr %ptr
60   %b = load i32, ptr %b.ptr
61   br i1 %vb, label %loop_b_inner, label %loop_b_inner_exit
63 loop_b_inner_exit:
64   %b.lcssa = phi i32 [ %b, %loop_b_inner ]
65   br label %latch
67 latch:
68   %ab.phi = phi i32 [ %a.lcssa, %loop_a_inner_exit ], [ %b.lcssa, %loop_b_inner_exit ]
69   br i1 %v, label %loop_begin, label %loop_exit
71 loop_exit:
72   %ab.lcssa = phi i32 [ %ab.phi, %latch ]
73   ret i32 %ab.lcssa