blob: 991cb309bf43e63dea877ab0a55a4ebe044982e3 [file] [log] [blame]
Michael Zolotukhin8c681712015-05-12 17:20:03 +00001; Check that we don't crash on corner cases.
Michael Zolotukhin3898b2b2016-05-24 00:51:01 +00002; 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 Zolotukhin8c681712015-05-12 17:20:03 +00003target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
4
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +00005@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 Zolotukhin8c681712015-05-12 17:20:03 +00007define void @foo1() {
8entry:
9 br label %for.body
10
11for.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
19for.exit:
20 ret void
21}
22
23define void @foo2() {
24entry:
25 br label %for.body
26
27for.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
34for.exit:
35 ret void
36}
Michael Zolotukhin3a7d55b2015-07-29 18:10:29 +000037
38define void @cmp_undef() {
39entry:
40 br label %for.body
41
42for.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
49if.then: ; preds = %for.body
50 br label %for.inc
51
52for.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
57for.end: ; preds = %for.inc
58 ret void
59}
Michael Zolotukhin9f06ef72015-07-29 18:10:33 +000060
61define void @switch() {
62entry:
63 br label %for.body
64
65for.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
72l1:
73 %x2 = add i32 %x1, 2
74 br label %for.inc
75
76for.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
81for.end:
82 ret void
83}
Michael Zolotukhindeade192015-09-22 22:27:12 +000084
85define <4 x i32> @vec_load() {
86entry:
87 br label %for.body
88
89for.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
100for.exit:
101 ret <4 x i32> %r
102}
Michael Zolotukhin3898b2b2016-05-24 00:51:01 +0000103
104define void @ptrtoint_cast() optsize {
105entry:
106 br label %for.body
107
108for.body:
109 br i1 true, label %for.inc, label %if.then
110
111if.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
116for.inc:
117 br i1 false, label %for.body, label %for.cond.cleanup
118
119for.cond.cleanup:
120 ret void
121}