[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Analysis / ScalarEvolution / trip-count6.ll
blobe6bf9822d963fb32493ab0f461930159a6603e9d
1 ; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py
2 ; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" -scalar-evolution-classify-expressions=0 2>&1 | FileCheck %s
4 @mode_table = global [4 x i32] zeroinitializer          ; <[4 x i32]*> [#uses=1]
6 define i8 @f() {
7 ; CHECK-LABEL: 'f'
8 ; CHECK-NEXT:  Determining loop execution counts for: @f
9 ; CHECK-NEXT:  Loop %bb: <multiple exits> Unpredictable backedge-taken count.
10 ; CHECK-NEXT:    exit count for bb: ***COULDNOTCOMPUTE***
11 ; CHECK-NEXT:    exit count for bb2: 1
12 ; CHECK-NEXT:  Loop %bb: max backedge-taken count is 1
13 ; CHECK-NEXT:  Loop %bb: Unpredictable predicated backedge-taken count.
15 entry:
16   tail call i32 @fegetround( )          ; <i32>:0 [#uses=1]
17   br label %bb
19 bb:             ; preds = %bb4, %entry
20   %mode.0 = phi i8 [ 0, %entry ], [ %indvar.next, %bb4 ]                ; <i8> [#uses=4]
21   zext i8 %mode.0 to i32                ; <i32>:1 [#uses=1]
22   getelementptr [4 x i32], [4 x i32]* @mode_table, i32 0, i32 %1           ; <i32*>:2 [#uses=1]
23   load i32, i32* %2, align 4         ; <i32>:3 [#uses=1]
24   icmp eq i32 %3, %0            ; <i1>:4 [#uses=1]
25   br i1 %4, label %bb1, label %bb2
27 bb1:            ; preds = %bb
28   ret i8 %mode.0
30 bb2:            ; preds = %bb
31   icmp eq i8 %mode.0, 1         ; <i1>:5 [#uses=1]
32   br i1 %5, label %bb5, label %bb4
34 bb4:            ; preds = %bb2
35   %indvar.next = add i8 %mode.0, 1              ; <i8> [#uses=1]
36   br label %bb
38 bb5:            ; preds = %bb2
39   tail call void @raise_exception( ) noreturn
40   unreachable
43 declare i32 @fegetround()
45 declare void @raise_exception() noreturn