Michael Zolotukhin | 8c68171 | 2015-05-12 17:20:03 +0000 | [diff] [blame] | 1 | ; Check that we don't crash on corner cases. |
Michael Zolotukhin | 3898b2b | 2016-05-24 00:51:01 +0000 | [diff] [blame] | 2 | ; RUN: opt < %s -S -loop-unroll -unroll-max-iteration-count-to-analyze=1000 -unroll-threshold=1 -unroll-percent-dynamic-cost-saved-threshold=20 -o /dev/null |
Michael Zolotukhin | 8c68171 | 2015-05-12 17:20:03 +0000 | [diff] [blame] | 3 | target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" |
| 4 | |
Michael Zolotukhin | 3a7d55b | 2015-07-29 18:10:29 +0000 | [diff] [blame] | 5 | @known_constant = internal unnamed_addr constant [10 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1], align 16 |
| 6 | |
Michael Zolotukhin | 8c68171 | 2015-05-12 17:20:03 +0000 | [diff] [blame] | 7 | define void @foo1() { |
| 8 | entry: |
| 9 | br label %for.body |
| 10 | |
| 11 | for.body: |
| 12 | %phi = phi i64 [ 0, %entry ], [ %inc, %for.body ] |
| 13 | %idx = zext i32 undef to i64 |
| 14 | %add.ptr = getelementptr inbounds i64, i64* null, i64 %idx |
| 15 | %inc = add nuw nsw i64 %phi, 1 |
| 16 | %cmp = icmp ult i64 %inc, 999 |
| 17 | br i1 %cmp, label %for.body, label %for.exit |
| 18 | |
| 19 | for.exit: |
| 20 | ret void |
| 21 | } |
| 22 | |
| 23 | define void @foo2() { |
| 24 | entry: |
| 25 | br label %for.body |
| 26 | |
| 27 | for.body: |
| 28 | %phi = phi i64 [ 0, %entry ], [ %inc, %for.body ] |
| 29 | %x = getelementptr i32, <4 x i32*> undef, <4 x i32> <i32 1, i32 1, i32 1, i32 1> |
| 30 | %inc = add nuw nsw i64 %phi, 1 |
| 31 | %cmp = icmp ult i64 %inc, 999 |
| 32 | br i1 %cmp, label %for.body, label %for.exit |
| 33 | |
| 34 | for.exit: |
| 35 | ret void |
| 36 | } |
Michael Zolotukhin | 3a7d55b | 2015-07-29 18:10:29 +0000 | [diff] [blame] | 37 | |
| 38 | define void @cmp_undef() { |
| 39 | entry: |
| 40 | br label %for.body |
| 41 | |
| 42 | for.body: ; preds = %for.inc, %entry |
| 43 | %iv.0 = phi i64 [ 0, %entry ], [ %iv.1, %for.inc ] |
| 44 | %arrayidx1 = getelementptr inbounds [10 x i32], [10 x i32]* @known_constant, i64 0, i64 %iv.0 |
| 45 | %x1 = load i32, i32* %arrayidx1, align 4 |
| 46 | %cmp = icmp eq i32 %x1, undef |
| 47 | br i1 %cmp, label %if.then, label %for.inc |
| 48 | |
| 49 | if.then: ; preds = %for.body |
| 50 | br label %for.inc |
| 51 | |
| 52 | for.inc: ; preds = %for.body, %if.then |
| 53 | %iv.1 = add nuw nsw i64 %iv.0, 1 |
| 54 | %exitcond = icmp eq i64 %iv.1, 10 |
| 55 | br i1 %exitcond, label %for.end, label %for.body |
| 56 | |
| 57 | for.end: ; preds = %for.inc |
| 58 | ret void |
| 59 | } |
Michael Zolotukhin | 9f06ef7 | 2015-07-29 18:10:33 +0000 | [diff] [blame] | 60 | |
| 61 | define void @switch() { |
| 62 | entry: |
| 63 | br label %for.body |
| 64 | |
| 65 | for.body: |
| 66 | %iv.0 = phi i64 [ 0, %entry ], [ %iv.1, %for.inc ] |
| 67 | %arrayidx1 = getelementptr inbounds [10 x i32], [10 x i32]* @known_constant, i64 0, i64 %iv.0 |
| 68 | %x1 = load i32, i32* %arrayidx1, align 4 |
| 69 | switch i32 %x1, label %l1 [ |
| 70 | ] |
| 71 | |
| 72 | l1: |
| 73 | %x2 = add i32 %x1, 2 |
| 74 | br label %for.inc |
| 75 | |
| 76 | for.inc: |
| 77 | %iv.1 = add nuw nsw i64 %iv.0, 1 |
| 78 | %exitcond = icmp eq i64 %iv.1, 10 |
| 79 | br i1 %exitcond, label %for.end, label %for.body |
| 80 | |
| 81 | for.end: |
| 82 | ret void |
| 83 | } |
Michael Zolotukhin | deade19 | 2015-09-22 22:27:12 +0000 | [diff] [blame] | 84 | |
| 85 | define <4 x i32> @vec_load() { |
| 86 | entry: |
| 87 | br label %for.body |
| 88 | |
| 89 | for.body: |
| 90 | %phi = phi i64 [ 0, %entry ], [ %inc, %for.body ] |
| 91 | %vec_phi = phi <4 x i32> [ <i32 0, i32 0, i32 0, i32 0>, %entry ], [ %r, %for.body ] |
| 92 | %arrayidx = getelementptr inbounds [10 x i32], [10 x i32]* @known_constant, i64 0, i64 %phi |
| 93 | %bc = bitcast i32* %arrayidx to <4 x i32>* |
| 94 | %x = load <4 x i32>, < 4 x i32>* %bc, align 4 |
| 95 | %r = add <4 x i32> %x, %vec_phi |
| 96 | %inc = add nuw nsw i64 %phi, 1 |
| 97 | %cmp = icmp ult i64 %inc, 999 |
| 98 | br i1 %cmp, label %for.body, label %for.exit |
| 99 | |
| 100 | for.exit: |
| 101 | ret <4 x i32> %r |
| 102 | } |
Michael Zolotukhin | 3898b2b | 2016-05-24 00:51:01 +0000 | [diff] [blame] | 103 | |
| 104 | define void @ptrtoint_cast() optsize { |
| 105 | entry: |
| 106 | br label %for.body |
| 107 | |
| 108 | for.body: |
| 109 | br i1 true, label %for.inc, label %if.then |
| 110 | |
| 111 | if.then: |
| 112 | %arraydecay = getelementptr inbounds [1 x i32], [1 x i32]* null, i64 0, i64 0 |
| 113 | %x = ptrtoint i32* %arraydecay to i64 |
| 114 | br label %for.inc |
| 115 | |
| 116 | for.inc: |
| 117 | br i1 false, label %for.body, label %for.cond.cleanup |
| 118 | |
| 119 | for.cond.cleanup: |
| 120 | ret void |
| 121 | } |
Michael Zolotukhin | 7216dd4 | 2016-05-24 22:59:58 +0000 | [diff] [blame] | 122 | |
| 123 | define void @ptrtoint_cast2() { |
| 124 | entry: |
| 125 | br i1 false, label %for.body.lr.ph, label %exit |
| 126 | |
| 127 | for.body.lr.ph: |
| 128 | br label %for.body |
| 129 | |
| 130 | for.body: |
| 131 | %iv = phi i32 [ 0, %for.body.lr.ph ], [ %inc, %for.body ] |
| 132 | %offset = getelementptr inbounds float, float* null, i32 3 |
| 133 | %bc = bitcast float* %offset to i64* |
| 134 | %inc = add nuw nsw i32 %iv, 1 |
| 135 | br i1 false, label %for.body, label %exit |
| 136 | |
| 137 | exit: |
| 138 | ret void |
| 139 | } |
Michael Zolotukhin | 1ecdeda | 2016-05-26 21:42:51 +0000 | [diff] [blame^] | 140 | |
| 141 | @i = external global i32, align 4 |
| 142 | |
| 143 | define void @folded_not_to_constantint() { |
| 144 | entry: |
| 145 | br label %for.body |
| 146 | |
| 147 | for.body: |
| 148 | %iv = phi i32 [ 0, %entry ], [ %inc, %for.inc ] |
| 149 | %m = phi i32* [ @i, %entry ], [ %m, %for.inc ] |
| 150 | br i1 undef, label %if.else, label %if.then |
| 151 | |
| 152 | if.then: |
| 153 | unreachable |
| 154 | |
| 155 | if.else: |
| 156 | %cmp = icmp ult i32* %m, null |
| 157 | br i1 %cmp, label %cond.false, label %for.inc |
| 158 | |
| 159 | cond.false: |
| 160 | unreachable |
| 161 | |
| 162 | for.inc: |
| 163 | %inc = add nuw nsw i32 %iv, 1 |
| 164 | %cmp2 = icmp ult i32 %inc, 10 |
| 165 | br i1 %cmp2, label %for.body, label %for.end |
| 166 | |
| 167 | for.end: |
| 168 | ret void |
| 169 | } |