As LoopPredication performs non-equivalent transforms removing some checks from loops, other passes may not be able to perform transforms they'd be able to do if the checks were left in loops. This patch makes LoopPredication insert assumes of the replaced conditions either after a guard call or in the true block of widenable condition branch. Differential Revision: https://reviews.llvm.org/D135354
262 lines
16 KiB
LLVM
262 lines
16 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt -S -loop-predication < %s 2>&1 | FileCheck %s
|
|
; RUN: opt -S -passes='require<scalar-evolution>,loop-mssa(loop-predication)' -verify-memoryssa < %s 2>&1 | FileCheck %s
|
|
|
|
declare void @llvm.experimental.guard(i1, ...)
|
|
|
|
define i32 @test_visited(i32* %array, i32 %length, i32 %n, i32 %x) {
|
|
; CHECK-LABEL: @test_visited(
|
|
; CHECK-NEXT: entry:
|
|
; CHECK-NEXT: [[TMP5:%.*]] = icmp eq i32 [[N:%.*]], 0
|
|
; CHECK-NEXT: br i1 [[TMP5]], label [[EXIT:%.*]], label [[LOOP_PREHEADER:%.*]]
|
|
; CHECK: loop.preheader:
|
|
; CHECK-NEXT: [[TMP0:%.*]] = icmp ule i32 [[N]], [[LENGTH:%.*]]
|
|
; CHECK-NEXT: [[TMP1:%.*]] = icmp ult i32 0, [[LENGTH]]
|
|
; CHECK-NEXT: [[TMP2:%.*]] = and i1 [[TMP1]], [[TMP0]]
|
|
; CHECK-NEXT: br label [[LOOP:%.*]]
|
|
; CHECK: loop:
|
|
; CHECK-NEXT: [[LOOP_ACC:%.*]] = phi i32 [ [[LOOP_ACC_NEXT:%.*]], [[LOOP]] ], [ 0, [[LOOP_PREHEADER]] ]
|
|
; CHECK-NEXT: [[I:%.*]] = phi i32 [ [[I_NEXT:%.*]], [[LOOP]] ], [ 0, [[LOOP_PREHEADER]] ]
|
|
; CHECK-NEXT: [[WITHIN_BOUNDS:%.*]] = icmp ult i32 [[I]], [[LENGTH]]
|
|
; CHECK-NEXT: [[UNRELATED_COND:%.*]] = icmp eq i32 [[X:%.*]], [[I]]
|
|
; CHECK-NEXT: [[GUARD_COND_2:%.*]] = and i1 [[WITHIN_BOUNDS]], [[UNRELATED_COND]]
|
|
; CHECK-NEXT: [[GUARD_COND_3:%.*]] = and i1 [[GUARD_COND_2]], [[UNRELATED_COND]]
|
|
; CHECK-NEXT: [[GUARD_COND_4:%.*]] = and i1 [[GUARD_COND_3]], [[GUARD_COND_2]]
|
|
; CHECK-NEXT: [[GUARD_COND_5:%.*]] = and i1 [[GUARD_COND_4]], [[GUARD_COND_3]]
|
|
; CHECK-NEXT: [[GUARD_COND_6:%.*]] = and i1 [[GUARD_COND_5]], [[GUARD_COND_4]]
|
|
; CHECK-NEXT: [[GUARD_COND_7:%.*]] = and i1 [[GUARD_COND_6]], [[GUARD_COND_5]]
|
|
; CHECK-NEXT: [[GUARD_COND_8:%.*]] = and i1 [[GUARD_COND_7]], [[GUARD_COND_6]]
|
|
; CHECK-NEXT: [[GUARD_COND_9:%.*]] = and i1 [[GUARD_COND_8]], [[GUARD_COND_7]]
|
|
; CHECK-NEXT: [[GUARD_COND_10:%.*]] = and i1 [[GUARD_COND_9]], [[GUARD_COND_8]]
|
|
; CHECK-NEXT: [[GUARD_COND_11:%.*]] = and i1 [[GUARD_COND_10]], [[GUARD_COND_9]]
|
|
; CHECK-NEXT: [[GUARD_COND_12:%.*]] = and i1 [[GUARD_COND_11]], [[GUARD_COND_10]]
|
|
; CHECK-NEXT: [[GUARD_COND_13:%.*]] = and i1 [[GUARD_COND_12]], [[GUARD_COND_11]]
|
|
; CHECK-NEXT: [[GUARD_COND_14:%.*]] = and i1 [[GUARD_COND_13]], [[GUARD_COND_12]]
|
|
; CHECK-NEXT: [[GUARD_COND_15:%.*]] = and i1 [[GUARD_COND_14]], [[GUARD_COND_13]]
|
|
; CHECK-NEXT: [[GUARD_COND_16:%.*]] = and i1 [[GUARD_COND_15]], [[GUARD_COND_14]]
|
|
; CHECK-NEXT: [[GUARD_COND_17:%.*]] = and i1 [[GUARD_COND_16]], [[GUARD_COND_15]]
|
|
; CHECK-NEXT: [[GUARD_COND_18:%.*]] = and i1 [[GUARD_COND_17]], [[GUARD_COND_16]]
|
|
; CHECK-NEXT: [[GUARD_COND_19:%.*]] = and i1 [[GUARD_COND_18]], [[GUARD_COND_17]]
|
|
; CHECK-NEXT: [[GUARD_COND_20:%.*]] = and i1 [[GUARD_COND_19]], [[GUARD_COND_18]]
|
|
; CHECK-NEXT: [[GUARD_COND_21:%.*]] = and i1 [[GUARD_COND_20]], [[GUARD_COND_19]]
|
|
; CHECK-NEXT: [[GUARD_COND_22:%.*]] = and i1 [[GUARD_COND_21]], [[GUARD_COND_20]]
|
|
; CHECK-NEXT: [[GUARD_COND_23:%.*]] = and i1 [[GUARD_COND_22]], [[GUARD_COND_21]]
|
|
; CHECK-NEXT: [[GUARD_COND_24:%.*]] = and i1 [[GUARD_COND_23]], [[GUARD_COND_22]]
|
|
; CHECK-NEXT: [[GUARD_COND_25:%.*]] = and i1 [[GUARD_COND_24]], [[GUARD_COND_23]]
|
|
; CHECK-NEXT: [[GUARD_COND_26:%.*]] = and i1 [[GUARD_COND_25]], [[GUARD_COND_24]]
|
|
; CHECK-NEXT: [[GUARD_COND_27:%.*]] = and i1 [[GUARD_COND_26]], [[GUARD_COND_25]]
|
|
; CHECK-NEXT: [[GUARD_COND_28:%.*]] = and i1 [[GUARD_COND_27]], [[GUARD_COND_26]]
|
|
; CHECK-NEXT: [[GUARD_COND_29:%.*]] = and i1 [[GUARD_COND_28]], [[GUARD_COND_27]]
|
|
; CHECK-NEXT: [[GUARD_COND_30:%.*]] = and i1 [[GUARD_COND_29]], [[GUARD_COND_28]]
|
|
; CHECK-NEXT: [[GUARD_COND_31:%.*]] = and i1 [[GUARD_COND_30]], [[GUARD_COND_29]]
|
|
; CHECK-NEXT: [[GUARD_COND_32:%.*]] = and i1 [[GUARD_COND_31]], [[GUARD_COND_30]]
|
|
; CHECK-NEXT: [[GUARD_COND_33:%.*]] = and i1 [[GUARD_COND_32]], [[GUARD_COND_31]]
|
|
; CHECK-NEXT: [[GUARD_COND_34:%.*]] = and i1 [[GUARD_COND_33]], [[GUARD_COND_32]]
|
|
; CHECK-NEXT: [[GUARD_COND_35:%.*]] = and i1 [[GUARD_COND_34]], [[GUARD_COND_33]]
|
|
; CHECK-NEXT: [[GUARD_COND_36:%.*]] = and i1 [[GUARD_COND_35]], [[GUARD_COND_34]]
|
|
; CHECK-NEXT: [[GUARD_COND_37:%.*]] = and i1 [[GUARD_COND_36]], [[GUARD_COND_35]]
|
|
; CHECK-NEXT: [[GUARD_COND_38:%.*]] = and i1 [[GUARD_COND_37]], [[GUARD_COND_36]]
|
|
; CHECK-NEXT: [[GUARD_COND_39:%.*]] = and i1 [[GUARD_COND_38]], [[GUARD_COND_37]]
|
|
; CHECK-NEXT: [[GUARD_COND_40:%.*]] = and i1 [[GUARD_COND_39]], [[GUARD_COND_38]]
|
|
; CHECK-NEXT: [[GUARD_COND_41:%.*]] = and i1 [[GUARD_COND_40]], [[GUARD_COND_39]]
|
|
; CHECK-NEXT: [[GUARD_COND_42:%.*]] = and i1 [[GUARD_COND_41]], [[GUARD_COND_40]]
|
|
; CHECK-NEXT: [[GUARD_COND_43:%.*]] = and i1 [[GUARD_COND_42]], [[GUARD_COND_41]]
|
|
; CHECK-NEXT: [[GUARD_COND_44:%.*]] = and i1 [[GUARD_COND_43]], [[GUARD_COND_42]]
|
|
; CHECK-NEXT: [[GUARD_COND_45:%.*]] = and i1 [[GUARD_COND_44]], [[GUARD_COND_43]]
|
|
; CHECK-NEXT: [[GUARD_COND_46:%.*]] = and i1 [[GUARD_COND_45]], [[GUARD_COND_44]]
|
|
; CHECK-NEXT: [[GUARD_COND_47:%.*]] = and i1 [[GUARD_COND_46]], [[GUARD_COND_45]]
|
|
; CHECK-NEXT: [[GUARD_COND_48:%.*]] = and i1 [[GUARD_COND_47]], [[GUARD_COND_46]]
|
|
; CHECK-NEXT: [[GUARD_COND_49:%.*]] = and i1 [[GUARD_COND_48]], [[GUARD_COND_47]]
|
|
; CHECK-NEXT: [[GUARD_COND_50:%.*]] = and i1 [[GUARD_COND_49]], [[GUARD_COND_48]]
|
|
; CHECK-NEXT: [[GUARD_COND_51:%.*]] = and i1 [[GUARD_COND_50]], [[GUARD_COND_49]]
|
|
; CHECK-NEXT: [[GUARD_COND_52:%.*]] = and i1 [[GUARD_COND_51]], [[GUARD_COND_50]]
|
|
; CHECK-NEXT: [[GUARD_COND_53:%.*]] = and i1 [[GUARD_COND_52]], [[GUARD_COND_51]]
|
|
; CHECK-NEXT: [[GUARD_COND_54:%.*]] = and i1 [[GUARD_COND_53]], [[GUARD_COND_52]]
|
|
; CHECK-NEXT: [[GUARD_COND_55:%.*]] = and i1 [[GUARD_COND_54]], [[GUARD_COND_53]]
|
|
; CHECK-NEXT: [[GUARD_COND_56:%.*]] = and i1 [[GUARD_COND_55]], [[GUARD_COND_54]]
|
|
; CHECK-NEXT: [[GUARD_COND_57:%.*]] = and i1 [[GUARD_COND_56]], [[GUARD_COND_55]]
|
|
; CHECK-NEXT: [[GUARD_COND_58:%.*]] = and i1 [[GUARD_COND_57]], [[GUARD_COND_56]]
|
|
; CHECK-NEXT: [[GUARD_COND_59:%.*]] = and i1 [[GUARD_COND_58]], [[GUARD_COND_57]]
|
|
; CHECK-NEXT: [[GUARD_COND_60:%.*]] = and i1 [[GUARD_COND_59]], [[GUARD_COND_58]]
|
|
; CHECK-NEXT: [[GUARD_COND_61:%.*]] = and i1 [[GUARD_COND_60]], [[GUARD_COND_59]]
|
|
; CHECK-NEXT: [[GUARD_COND_62:%.*]] = and i1 [[GUARD_COND_61]], [[GUARD_COND_60]]
|
|
; CHECK-NEXT: [[GUARD_COND_63:%.*]] = and i1 [[GUARD_COND_62]], [[GUARD_COND_61]]
|
|
; CHECK-NEXT: [[GUARD_COND_64:%.*]] = and i1 [[GUARD_COND_63]], [[GUARD_COND_62]]
|
|
; CHECK-NEXT: [[GUARD_COND_65:%.*]] = and i1 [[GUARD_COND_64]], [[GUARD_COND_63]]
|
|
; CHECK-NEXT: [[GUARD_COND_66:%.*]] = and i1 [[GUARD_COND_65]], [[GUARD_COND_64]]
|
|
; CHECK-NEXT: [[GUARD_COND_67:%.*]] = and i1 [[GUARD_COND_66]], [[GUARD_COND_65]]
|
|
; CHECK-NEXT: [[GUARD_COND_68:%.*]] = and i1 [[GUARD_COND_67]], [[GUARD_COND_66]]
|
|
; CHECK-NEXT: [[GUARD_COND_69:%.*]] = and i1 [[GUARD_COND_68]], [[GUARD_COND_67]]
|
|
; CHECK-NEXT: [[GUARD_COND_70:%.*]] = and i1 [[GUARD_COND_69]], [[GUARD_COND_68]]
|
|
; CHECK-NEXT: [[GUARD_COND_71:%.*]] = and i1 [[GUARD_COND_70]], [[GUARD_COND_69]]
|
|
; CHECK-NEXT: [[GUARD_COND_72:%.*]] = and i1 [[GUARD_COND_71]], [[GUARD_COND_70]]
|
|
; CHECK-NEXT: [[GUARD_COND_73:%.*]] = and i1 [[GUARD_COND_72]], [[GUARD_COND_71]]
|
|
; CHECK-NEXT: [[GUARD_COND_74:%.*]] = and i1 [[GUARD_COND_73]], [[GUARD_COND_72]]
|
|
; CHECK-NEXT: [[GUARD_COND_75:%.*]] = and i1 [[GUARD_COND_74]], [[GUARD_COND_73]]
|
|
; CHECK-NEXT: [[GUARD_COND_76:%.*]] = and i1 [[GUARD_COND_75]], [[GUARD_COND_74]]
|
|
; CHECK-NEXT: [[GUARD_COND_77:%.*]] = and i1 [[GUARD_COND_76]], [[GUARD_COND_75]]
|
|
; CHECK-NEXT: [[GUARD_COND_78:%.*]] = and i1 [[GUARD_COND_77]], [[GUARD_COND_76]]
|
|
; CHECK-NEXT: [[GUARD_COND_79:%.*]] = and i1 [[GUARD_COND_78]], [[GUARD_COND_77]]
|
|
; CHECK-NEXT: [[GUARD_COND_80:%.*]] = and i1 [[GUARD_COND_79]], [[GUARD_COND_78]]
|
|
; CHECK-NEXT: [[GUARD_COND_81:%.*]] = and i1 [[GUARD_COND_80]], [[GUARD_COND_79]]
|
|
; CHECK-NEXT: [[GUARD_COND_82:%.*]] = and i1 [[GUARD_COND_81]], [[GUARD_COND_80]]
|
|
; CHECK-NEXT: [[GUARD_COND_83:%.*]] = and i1 [[GUARD_COND_82]], [[GUARD_COND_81]]
|
|
; CHECK-NEXT: [[GUARD_COND_84:%.*]] = and i1 [[GUARD_COND_83]], [[GUARD_COND_82]]
|
|
; CHECK-NEXT: [[GUARD_COND_85:%.*]] = and i1 [[GUARD_COND_84]], [[GUARD_COND_83]]
|
|
; CHECK-NEXT: [[GUARD_COND_86:%.*]] = and i1 [[GUARD_COND_85]], [[GUARD_COND_84]]
|
|
; CHECK-NEXT: [[GUARD_COND_87:%.*]] = and i1 [[GUARD_COND_86]], [[GUARD_COND_85]]
|
|
; CHECK-NEXT: [[GUARD_COND_88:%.*]] = and i1 [[GUARD_COND_87]], [[GUARD_COND_86]]
|
|
; CHECK-NEXT: [[GUARD_COND_89:%.*]] = and i1 [[GUARD_COND_88]], [[GUARD_COND_87]]
|
|
; CHECK-NEXT: [[GUARD_COND_90:%.*]] = and i1 [[GUARD_COND_89]], [[GUARD_COND_88]]
|
|
; CHECK-NEXT: [[GUARD_COND_91:%.*]] = and i1 [[GUARD_COND_90]], [[GUARD_COND_89]]
|
|
; CHECK-NEXT: [[GUARD_COND_92:%.*]] = and i1 [[GUARD_COND_91]], [[GUARD_COND_90]]
|
|
; CHECK-NEXT: [[GUARD_COND_93:%.*]] = and i1 [[GUARD_COND_92]], [[GUARD_COND_91]]
|
|
; CHECK-NEXT: [[GUARD_COND_94:%.*]] = and i1 [[GUARD_COND_93]], [[GUARD_COND_92]]
|
|
; CHECK-NEXT: [[GUARD_COND_95:%.*]] = and i1 [[GUARD_COND_94]], [[GUARD_COND_93]]
|
|
; CHECK-NEXT: [[GUARD_COND_96:%.*]] = and i1 [[GUARD_COND_95]], [[GUARD_COND_94]]
|
|
; CHECK-NEXT: [[GUARD_COND_97:%.*]] = and i1 [[GUARD_COND_96]], [[GUARD_COND_95]]
|
|
; CHECK-NEXT: [[GUARD_COND_98:%.*]] = and i1 [[GUARD_COND_97]], [[GUARD_COND_96]]
|
|
; CHECK-NEXT: [[GUARD_COND_99:%.*]] = and i1 [[GUARD_COND_98]], [[GUARD_COND_97]]
|
|
; CHECK-NEXT: [[TMP3:%.*]] = and i1 [[UNRELATED_COND]], [[TMP2]]
|
|
; CHECK-NEXT: call void (i1, ...) @llvm.experimental.guard(i1 [[TMP3]], i32 9) [ "deopt"() ]
|
|
; CHECK-NEXT: call void @llvm.assume(i1 [[GUARD_COND_99]])
|
|
; CHECK-NEXT: [[I_I64:%.*]] = zext i32 [[I]] to i64
|
|
; CHECK-NEXT: [[ARRAY_I_PTR:%.*]] = getelementptr inbounds i32, i32* [[ARRAY:%.*]], i64 [[I_I64]]
|
|
; CHECK-NEXT: [[ARRAY_I:%.*]] = load i32, i32* [[ARRAY_I_PTR]], align 4
|
|
; CHECK-NEXT: [[LOOP_ACC_NEXT]] = add i32 [[LOOP_ACC]], [[ARRAY_I]]
|
|
; CHECK-NEXT: [[I_NEXT]] = add nuw i32 [[I]], 1
|
|
; CHECK-NEXT: [[CONTINUE:%.*]] = icmp ult i32 [[I_NEXT]], [[N]]
|
|
; CHECK-NEXT: br i1 [[CONTINUE]], label [[LOOP]], label [[EXIT_LOOPEXIT:%.*]]
|
|
; CHECK: exit.loopexit:
|
|
; CHECK-NEXT: [[LOOP_ACC_NEXT_LCSSA:%.*]] = phi i32 [ [[LOOP_ACC_NEXT]], [[LOOP]] ]
|
|
; CHECK-NEXT: br label [[EXIT]]
|
|
; CHECK: exit:
|
|
; CHECK-NEXT: [[RESULT:%.*]] = phi i32 [ 0, [[ENTRY:%.*]] ], [ [[LOOP_ACC_NEXT_LCSSA]], [[EXIT_LOOPEXIT]] ]
|
|
; CHECK-NEXT: ret i32 [[RESULT]]
|
|
;
|
|
entry:
|
|
%tmp5 = icmp eq i32 %n, 0
|
|
br i1 %tmp5, label %exit, label %loop.preheader
|
|
|
|
loop.preheader:
|
|
br label %loop
|
|
|
|
loop:
|
|
%loop.acc = phi i32 [ %loop.acc.next, %loop ], [ 0, %loop.preheader ]
|
|
%i = phi i32 [ %i.next, %loop ], [ 0, %loop.preheader ]
|
|
%within.bounds = icmp ult i32 %i, %length
|
|
%unrelated.cond = icmp eq i32 %x, %i
|
|
%guard.cond.2 = and i1 %within.bounds, %unrelated.cond
|
|
%guard.cond.3 = and i1 %guard.cond.2, %unrelated.cond
|
|
%guard.cond.4 = and i1 %guard.cond.3, %guard.cond.2
|
|
%guard.cond.5 = and i1 %guard.cond.4, %guard.cond.3
|
|
%guard.cond.6 = and i1 %guard.cond.5, %guard.cond.4
|
|
%guard.cond.7 = and i1 %guard.cond.6, %guard.cond.5
|
|
%guard.cond.8 = and i1 %guard.cond.7, %guard.cond.6
|
|
%guard.cond.9 = and i1 %guard.cond.8, %guard.cond.7
|
|
%guard.cond.10 = and i1 %guard.cond.9, %guard.cond.8
|
|
%guard.cond.11 = and i1 %guard.cond.10, %guard.cond.9
|
|
%guard.cond.12 = and i1 %guard.cond.11, %guard.cond.10
|
|
%guard.cond.13 = and i1 %guard.cond.12, %guard.cond.11
|
|
%guard.cond.14 = and i1 %guard.cond.13, %guard.cond.12
|
|
%guard.cond.15 = and i1 %guard.cond.14, %guard.cond.13
|
|
%guard.cond.16 = and i1 %guard.cond.15, %guard.cond.14
|
|
%guard.cond.17 = and i1 %guard.cond.16, %guard.cond.15
|
|
%guard.cond.18 = and i1 %guard.cond.17, %guard.cond.16
|
|
%guard.cond.19 = and i1 %guard.cond.18, %guard.cond.17
|
|
%guard.cond.20 = and i1 %guard.cond.19, %guard.cond.18
|
|
%guard.cond.21 = and i1 %guard.cond.20, %guard.cond.19
|
|
%guard.cond.22 = and i1 %guard.cond.21, %guard.cond.20
|
|
%guard.cond.23 = and i1 %guard.cond.22, %guard.cond.21
|
|
%guard.cond.24 = and i1 %guard.cond.23, %guard.cond.22
|
|
%guard.cond.25 = and i1 %guard.cond.24, %guard.cond.23
|
|
%guard.cond.26 = and i1 %guard.cond.25, %guard.cond.24
|
|
%guard.cond.27 = and i1 %guard.cond.26, %guard.cond.25
|
|
%guard.cond.28 = and i1 %guard.cond.27, %guard.cond.26
|
|
%guard.cond.29 = and i1 %guard.cond.28, %guard.cond.27
|
|
%guard.cond.30 = and i1 %guard.cond.29, %guard.cond.28
|
|
%guard.cond.31 = and i1 %guard.cond.30, %guard.cond.29
|
|
%guard.cond.32 = and i1 %guard.cond.31, %guard.cond.30
|
|
%guard.cond.33 = and i1 %guard.cond.32, %guard.cond.31
|
|
%guard.cond.34 = and i1 %guard.cond.33, %guard.cond.32
|
|
%guard.cond.35 = and i1 %guard.cond.34, %guard.cond.33
|
|
%guard.cond.36 = and i1 %guard.cond.35, %guard.cond.34
|
|
%guard.cond.37 = and i1 %guard.cond.36, %guard.cond.35
|
|
%guard.cond.38 = and i1 %guard.cond.37, %guard.cond.36
|
|
%guard.cond.39 = and i1 %guard.cond.38, %guard.cond.37
|
|
%guard.cond.40 = and i1 %guard.cond.39, %guard.cond.38
|
|
%guard.cond.41 = and i1 %guard.cond.40, %guard.cond.39
|
|
%guard.cond.42 = and i1 %guard.cond.41, %guard.cond.40
|
|
%guard.cond.43 = and i1 %guard.cond.42, %guard.cond.41
|
|
%guard.cond.44 = and i1 %guard.cond.43, %guard.cond.42
|
|
%guard.cond.45 = and i1 %guard.cond.44, %guard.cond.43
|
|
%guard.cond.46 = and i1 %guard.cond.45, %guard.cond.44
|
|
%guard.cond.47 = and i1 %guard.cond.46, %guard.cond.45
|
|
%guard.cond.48 = and i1 %guard.cond.47, %guard.cond.46
|
|
%guard.cond.49 = and i1 %guard.cond.48, %guard.cond.47
|
|
%guard.cond.50 = and i1 %guard.cond.49, %guard.cond.48
|
|
%guard.cond.51 = and i1 %guard.cond.50, %guard.cond.49
|
|
%guard.cond.52 = and i1 %guard.cond.51, %guard.cond.50
|
|
%guard.cond.53 = and i1 %guard.cond.52, %guard.cond.51
|
|
%guard.cond.54 = and i1 %guard.cond.53, %guard.cond.52
|
|
%guard.cond.55 = and i1 %guard.cond.54, %guard.cond.53
|
|
%guard.cond.56 = and i1 %guard.cond.55, %guard.cond.54
|
|
%guard.cond.57 = and i1 %guard.cond.56, %guard.cond.55
|
|
%guard.cond.58 = and i1 %guard.cond.57, %guard.cond.56
|
|
%guard.cond.59 = and i1 %guard.cond.58, %guard.cond.57
|
|
%guard.cond.60 = and i1 %guard.cond.59, %guard.cond.58
|
|
%guard.cond.61 = and i1 %guard.cond.60, %guard.cond.59
|
|
%guard.cond.62 = and i1 %guard.cond.61, %guard.cond.60
|
|
%guard.cond.63 = and i1 %guard.cond.62, %guard.cond.61
|
|
%guard.cond.64 = and i1 %guard.cond.63, %guard.cond.62
|
|
%guard.cond.65 = and i1 %guard.cond.64, %guard.cond.63
|
|
%guard.cond.66 = and i1 %guard.cond.65, %guard.cond.64
|
|
%guard.cond.67 = and i1 %guard.cond.66, %guard.cond.65
|
|
%guard.cond.68 = and i1 %guard.cond.67, %guard.cond.66
|
|
%guard.cond.69 = and i1 %guard.cond.68, %guard.cond.67
|
|
%guard.cond.70 = and i1 %guard.cond.69, %guard.cond.68
|
|
%guard.cond.71 = and i1 %guard.cond.70, %guard.cond.69
|
|
%guard.cond.72 = and i1 %guard.cond.71, %guard.cond.70
|
|
%guard.cond.73 = and i1 %guard.cond.72, %guard.cond.71
|
|
%guard.cond.74 = and i1 %guard.cond.73, %guard.cond.72
|
|
%guard.cond.75 = and i1 %guard.cond.74, %guard.cond.73
|
|
%guard.cond.76 = and i1 %guard.cond.75, %guard.cond.74
|
|
%guard.cond.77 = and i1 %guard.cond.76, %guard.cond.75
|
|
%guard.cond.78 = and i1 %guard.cond.77, %guard.cond.76
|
|
%guard.cond.79 = and i1 %guard.cond.78, %guard.cond.77
|
|
%guard.cond.80 = and i1 %guard.cond.79, %guard.cond.78
|
|
%guard.cond.81 = and i1 %guard.cond.80, %guard.cond.79
|
|
%guard.cond.82 = and i1 %guard.cond.81, %guard.cond.80
|
|
%guard.cond.83 = and i1 %guard.cond.82, %guard.cond.81
|
|
%guard.cond.84 = and i1 %guard.cond.83, %guard.cond.82
|
|
%guard.cond.85 = and i1 %guard.cond.84, %guard.cond.83
|
|
%guard.cond.86 = and i1 %guard.cond.85, %guard.cond.84
|
|
%guard.cond.87 = and i1 %guard.cond.86, %guard.cond.85
|
|
%guard.cond.88 = and i1 %guard.cond.87, %guard.cond.86
|
|
%guard.cond.89 = and i1 %guard.cond.88, %guard.cond.87
|
|
%guard.cond.90 = and i1 %guard.cond.89, %guard.cond.88
|
|
%guard.cond.91 = and i1 %guard.cond.90, %guard.cond.89
|
|
%guard.cond.92 = and i1 %guard.cond.91, %guard.cond.90
|
|
%guard.cond.93 = and i1 %guard.cond.92, %guard.cond.91
|
|
%guard.cond.94 = and i1 %guard.cond.93, %guard.cond.92
|
|
%guard.cond.95 = and i1 %guard.cond.94, %guard.cond.93
|
|
%guard.cond.96 = and i1 %guard.cond.95, %guard.cond.94
|
|
%guard.cond.97 = and i1 %guard.cond.96, %guard.cond.95
|
|
%guard.cond.98 = and i1 %guard.cond.97, %guard.cond.96
|
|
%guard.cond.99 = and i1 %guard.cond.98, %guard.cond.97
|
|
call void (i1, ...) @llvm.experimental.guard(i1 %guard.cond.99, i32 9) [ "deopt"() ]
|
|
|
|
%i.i64 = zext i32 %i to i64
|
|
%array.i.ptr = getelementptr inbounds i32, i32* %array, i64 %i.i64
|
|
%array.i = load i32, i32* %array.i.ptr, align 4
|
|
%loop.acc.next = add i32 %loop.acc, %array.i
|
|
|
|
%i.next = add nuw i32 %i, 1
|
|
%continue = icmp ult i32 %i.next, %n
|
|
br i1 %continue, label %loop, label %exit
|
|
|
|
exit:
|
|
%result = phi i32 [ 0, %entry ], [ %loop.acc.next, %loop ]
|
|
ret i32 %result
|
|
}
|