[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Analysis / ScalarEvolution / exact-exit-count-more-precise.ll
bloba38d26a9d95ba317e55ccfeb4b054b657c0bb2ff
1 ; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py
2 ; RUN: opt -analyze -enable-new-pm=0 -scalar-evolution %s | FileCheck %s
3 ; RUN: opt -disable-output "-passes=print<scalar-evolution>" %s 2>&1 | FileCheck %s
5 target triple = "x86_64-unknown-linux-gnu"
7 define void @test_and(i16 %in) {
8 ; CHECK-LABEL: 'test_and'
9 ; CHECK-NEXT:  Classifying expressions for: @test_and
10 ; CHECK-NEXT:    %_tmp25.i = phi i16 [ %in, %bb2 ], [ %_tmp6.i, %bb1.i ]
11 ; CHECK-NEXT:    --> {%in,+,1}<nsw><%bb1.i> U: full-set S: full-set Exits: 1 LoopDispositions: { %bb1.i: Computable, %bb2: Variant }
12 ; CHECK-NEXT:    %_tmp6.i = add nsw i16 %_tmp25.i, 1
13 ; CHECK-NEXT:    --> {(1 + %in),+,1}<nsw><%bb1.i> U: full-set S: full-set Exits: 2 LoopDispositions: { %bb1.i: Computable, %bb2: Variant }
14 ; CHECK-NEXT:    %or.cond = and i1 %_tmp10.i, %exitcond.i
15 ; CHECK-NEXT:    --> %or.cond U: full-set S: full-set Exits: true LoopDispositions: { %bb1.i: Variant, %bb2: Variant }
16 ; CHECK-NEXT:  Determining loop execution counts for: @test_and
17 ; CHECK-NEXT:  Loop %bb1.i: backedge-taken count is (1 + (-1 * %in))
18 ; CHECK-NEXT:  Loop %bb1.i: max backedge-taken count is -1
19 ; CHECK-NEXT:  Loop %bb1.i: Predicated backedge-taken count is (1 + (-1 * %in))
20 ; CHECK-NEXT:   Predicates:
21 ; CHECK:       Loop %bb1.i: Trip multiple is 1
22 ; CHECK-NEXT:  Loop %bb2: <multiple exits> Unpredictable backedge-taken count.
23 ; CHECK-NEXT:  Loop %bb2: Unpredictable max backedge-taken count.
24 ; CHECK-NEXT:  Loop %bb2: Unpredictable predicated backedge-taken count.
26   br label %bb2
28 bb2:                                              ; preds = %bb1.i, %bb2, %0
29   %_tmp44.i = icmp slt i16 %in, 2
30   br i1 %_tmp44.i, label %bb1.i, label %bb2
32 bb1.i:                                            ; preds = %bb1.i, %bb2
33   %_tmp25.i = phi i16 [ %in, %bb2 ], [ %_tmp6.i, %bb1.i ]
34   %_tmp6.i = add nsw i16 %_tmp25.i, 1
35   %_tmp10.i = icmp sge i16 %_tmp6.i, 2
36   %exitcond.i = icmp eq i16 %_tmp6.i, 2
37   %or.cond = and i1 %_tmp10.i, %exitcond.i
38   br i1 %or.cond, label %bb2, label %bb1.i
41 define void @test_or() {
42 ; CHECK-LABEL: 'test_or'
43 ; CHECK-NEXT:  Classifying expressions for: @test_or
44 ; CHECK-NEXT:    %indvars.iv = phi i64 [ -1, %BB ], [ -1, %0 ]
45 ; CHECK-NEXT:    --> -1 U: [-1,0) S: [-1,0) Exits: -1 LoopDispositions: { %BB: Invariant }
46 ; CHECK-NEXT:    %sum.01 = phi i32 [ %2, %BB ], [ undef, %0 ]
47 ; CHECK-NEXT:    --> {undef,+,-1}<%BB> U: full-set S: full-set Exits: 0 LoopDispositions: { %BB: Computable }
48 ; CHECK-NEXT:    %1 = trunc i64 %indvars.iv to i32
49 ; CHECK-NEXT:    --> -1 U: [-1,0) S: [-1,0) Exits: -1 LoopDispositions: { %BB: Invariant }
50 ; CHECK-NEXT:    %2 = add nsw i32 %1, %sum.01
51 ; CHECK-NEXT:    --> {(-1 + undef),+,-1}<%BB> U: full-set S: full-set Exits: -1 LoopDispositions: { %BB: Computable }
52 ; CHECK-NEXT:    %B3 = add i32 %1, %2
53 ; CHECK-NEXT:    --> {(-2 + undef),+,-1}<%BB> U: full-set S: full-set Exits: -2 LoopDispositions: { %BB: Computable }
54 ; CHECK-NEXT:    %B = or i1 %C5, %C11
55 ; CHECK-NEXT:    --> %B U: full-set S: full-set Exits: false LoopDispositions: { %BB: Variant }
56 ; CHECK-NEXT:  Determining loop execution counts for: @test_or
57 ; CHECK-NEXT:  Loop %BB: backedge-taken count is undef
58 ; CHECK-NEXT:  Loop %BB: max backedge-taken count is -1
59 ; CHECK-NEXT:  Loop %BB: Predicated backedge-taken count is undef
60 ; CHECK-NEXT:   Predicates:
61 ; CHECK:       Loop %BB: Trip multiple is 1
63   %C10 = icmp slt i1 undef, undef
64   br i1 %C10, label %BB, label %exit
66 BB:                                               ; preds = %BB, %0
67   %indvars.iv = phi i64 [ -1, %BB ], [ -1, %0 ]
68   %sum.01 = phi i32 [ %2, %BB ], [ undef, %0 ]
69   %1 = trunc i64 %indvars.iv to i32
70   %2 = add nsw i32 %1, %sum.01
71   %B3 = add i32 %1, %2
72   %C11 = icmp ult i32 %2, %1
73   %C5 = icmp sle i32 %1, %B3
74   %B = or i1 %C5, %C11
75   br i1 %B, label %BB, label %exit
77 exit:                                      ; preds = %BB, %0
78   ret void