compute-cost.ll
4.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
; RUN: opt < %s -passes='print<loop-cache-cost>' -disable-output 2>&1 | FileCheck %s
target datalayout = "e-m:e-i64:64-n32:64"
target triple = "powerpc64le-unknown-linux-gnu"
; Check IndexedReference::computeRefCost can handle type differences between
; Stride and TripCount
; CHECK: Loop 'for.cond' has cost = 64
%struct._Handleitem = type { %struct._Handleitem* }
define void @handle_to_ptr(%struct._Handleitem** %blocks) {
; Preheader:
entry:
br label %for.cond
; Loop:
for.cond: ; preds = %for.body, %entry
%i.0 = phi i32 [ 1, %entry ], [ %inc, %for.body ]
%cmp = icmp ult i32 %i.0, 1024
br i1 %cmp, label %for.body, label %for.end
for.body: ; preds = %for.cond
%idxprom = zext i32 %i.0 to i64
%arrayidx = getelementptr inbounds %struct._Handleitem*, %struct._Handleitem** %blocks, i64 %idxprom
store %struct._Handleitem* null, %struct._Handleitem** %arrayidx, align 8
%inc = add nuw nsw i32 %i.0, 1
br label %for.cond
; Exit blocks
for.end: ; preds = %for.cond
ret void
}
; Check IndexedReference::computeRefCost can handle negative stride
; CHECK: Loop 'for.neg.cond' has cost = 64
define void @handle_to_ptr_neg_stride(%struct._Handleitem** %blocks) {
; Preheader:
entry:
br label %for.neg.cond
; Loop:
for.neg.cond: ; preds = %for.neg.body, %entry
%i.0 = phi i32 [ 1023, %entry ], [ %dec, %for.neg.body ]
%cmp = icmp sgt i32 %i.0, 0
br i1 %cmp, label %for.neg.body, label %for.neg.end
for.neg.body: ; preds = %for.neg.cond
%idxprom = zext i32 %i.0 to i64
%arrayidx = getelementptr inbounds %struct._Handleitem*, %struct._Handleitem** %blocks, i64 %idxprom
store %struct._Handleitem* null, %struct._Handleitem** %arrayidx, align 8
%dec = add nsw i32 %i.0, -1
br label %for.neg.cond
; Exit blocks
for.neg.end: ; preds = %for.neg.cond
ret void
}
; for (int i = 40960; i > 0; i--)
; B[i] = B[40960 - i];
; FIXME: Currently negative access functions are treated the same as positive
; access functions. When this is fixed this testcase should have a cost
; approximately 2x higher.
; CHECK: Loop 'for.cond2' has cost = 2560
define void @Test2(double* %B) {
entry:
br label %for.cond2
for.cond2: ; preds = %for.body, %entry
%i.0 = phi i32 [ 40960, %entry ], [ %dec, %for.body ]
%cmp = icmp sgt i32 %i.0, 0
br i1 %cmp, label %for.body, label %for.end
for.body: ; preds = %for.cond
%sub = sub nsw i32 40960, %i.0
%idxprom = sext i32 %sub to i64
%arrayidx = getelementptr inbounds double, double* %B, i64 %idxprom
%0 = load double, double* %arrayidx, align 8
%idxprom1 = sext i32 %i.0 to i64
%arrayidx2 = getelementptr inbounds double, double* %B, i64 %idxprom1
store double %0, double* %arrayidx2, align 8
%dec = add nsw i32 %i.0, -1
br label %for.cond2
for.end: ; preds = %for.cond
ret void
}
; for (i = 40960; i > 0; i--)
; C[i] = C[i];
; CHECK: Loop 'for.cond3' has cost = 2560
define void @Test3(double** %C) {
entry:
br label %for.cond3
for.cond3: ; preds = %for.body, %entry
%i.0 = phi i32 [ 40960, %entry ], [ %dec, %for.body ]
%cmp = icmp sgt i32 %i.0, 0
br i1 %cmp, label %for.body, label %for.end
for.body: ; preds = %for.cond
%idxprom = sext i32 %i.0 to i64
%arrayidx = getelementptr inbounds double*, double** %C, i64 %idxprom
%0 = load double*, double** %arrayidx, align 8
%idxprom1 = sext i32 %i.0 to i64
%arrayidx2 = getelementptr inbounds double*, double** %C, i64 %idxprom1
store double* %0, double** %arrayidx2, align 8
%dec = add nsw i32 %i.0, -1
br label %for.cond3
for.end: ; preds = %for.cond
ret void
}
; for (i = 0; i < 40960; i++)
; D[i] = D[i];
; CHECK: Loop 'for.cond4' has cost = 2560
define void @Test4(double** %D) {
entry:
br label %for.cond4
for.cond4: ; preds = %for.body, %entry
%i.0 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
%cmp = icmp slt i32 %i.0, 40960
br i1 %cmp, label %for.body, label %for.end
for.body: ; preds = %for.cond
%idxprom = sext i32 %i.0 to i64
%arrayidx = getelementptr inbounds double*, double** %D, i64 %idxprom
%0 = load double*, double** %arrayidx, align 8
%idxprom1 = sext i32 %i.0 to i64
%arrayidx2 = getelementptr inbounds double*, double** %D, i64 %idxprom1
store double* %0, double** %arrayidx2, align 8
%inc = add nsw i32 %i.0, 1
br label %for.cond4
for.end: ; preds = %for.cond
ret void
}