brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · 1195311 Raw
43 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_analyze_test_checks.py UTC_ARGS: --version 42; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" -scalar-evolution-classify-expressions=0 2>&1 2>&1 | FileCheck %s3 4; This is a tricky testcase for unsigned wrap detection which ScalarEvolution5; doesn't yet know how to do.6 7define i32 @f(i32 %x) nounwind readnone {8;9; CHECK-LABEL: 'f'10; CHECK-NEXT:  Determining loop execution counts for: @f11; CHECK-NEXT:  Loop %bb: backedge-taken count is (((-3 + (-1 * (1 umin (-3 + (-1 * %x) + (1000 umax (3 + %x)))))<nuw><nsw> + (-1 * %x) + (1000 umax (3 + %x))) /u 3) + (1 umin (-3 + (-1 * %x) + (1000 umax (3 + %x)))))12; CHECK-NEXT:  Loop %bb: constant max backedge-taken count is i32 33413; CHECK-NEXT:  Loop %bb: symbolic max backedge-taken count is (((-3 + (-1 * (1 umin (-3 + (-1 * %x) + (1000 umax (3 + %x)))))<nuw><nsw> + (-1 * %x) + (1000 umax (3 + %x))) /u 3) + (1 umin (-3 + (-1 * %x) + (1000 umax (3 + %x)))))14; CHECK-NEXT:  Loop %bb: Trip multiple is 115;16entry:17	%0 = icmp ugt i32 %x, 999		; <i1> [#uses=1]18	br i1 %0, label %bb2, label %bb.nph19 20bb.nph:		; preds = %entry21	br label %bb22 23bb:		; preds = %bb.nph, %bb124	%indvar = phi i32 [ 0, %bb.nph ], [ %indvar.next, %bb1 ]		; <i32> [#uses=2]25	%tmp = mul i32 %indvar, 3		; <i32> [#uses=1]26	%x_addr.04 = add i32 %tmp, %x		; <i32> [#uses=1]27	%1 = add i32 %x_addr.04, 3		; <i32> [#uses=2]28	br label %bb129 30bb1:		; preds = %bb31	%2 = icmp ugt i32 %1, 999		; <i1> [#uses=1]32	%indvar.next = add i32 %indvar, 1		; <i32> [#uses=1]33	br i1 %2, label %bb1.bb2_crit_edge, label %bb34 35bb1.bb2_crit_edge:		; preds = %bb136	%.lcssa = phi i32 [ %1, %bb1 ]		; <i32> [#uses=1]37	br label %bb238 39bb2:		; preds = %bb1.bb2_crit_edge, %entry40	%x_addr.0.lcssa = phi i32 [ %.lcssa, %bb1.bb2_crit_edge ], [ %x, %entry ]		; <i32> [#uses=1]41	ret i32 %x_addr.0.lcssa42}43