File: offsetted-overlapping-stores.ll

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.6-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,304 kB
  • sloc: cpp: 7,438,677; ansic: 1,393,822; asm: 1,012,926; python: 241,650; f90: 86,635; objc: 75,479; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (208 lines) | stat: -rw-r--r-- 9,223 bytes parent folder | download | duplicates (6)
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -passes=dse -S | FileCheck %s

@BUFFER = external local_unnamed_addr global [0 x i8], align 1

define void @ArrayTestFullyOverlapping(i64 %0) {
;
; The DSE pass will try to kill the store of size i32 using the store of
; size i64 because they fully overlap, in fact:
;
; - they use the same base pointer (in SCEV style '@BUFFER + %0')
; - the offset between the two stores is 32 bits
; - the size of the earlier store is 32 bits
; - the size of the later store is 64 bits
;
; CHECK-LABEL: @ArrayTestFullyOverlapping(
; CHECK-NEXT:    [[TMP2:%.*]] = add i64 [[TMP0:%.*]], -8
; CHECK-NEXT:    [[TMP3:%.*]] = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 [[TMP2]]
; CHECK-NEXT:    store i64 0, ptr [[TMP3]], align 4
; CHECK-NEXT:    ret void
;
  %2 = add i64 %0, -8
  %3 = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 %2
  %4 = add i64 %0, -4
  %5 = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 %4
  store i32 1, ptr %5
  store i64 0, ptr %3
  ret void
}

define void @VectorTestFullyOverlapping(ptr %arg, i32 %i) {
; CHECK-LABEL: @VectorTestFullyOverlapping(
; CHECK-NEXT:  bb:
; CHECK-NEXT:    [[I2:%.*]] = zext i32 [[I:%.*]] to i64
; CHECK-NEXT:    [[I3:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[I2]]
; CHECK-NEXT:    store <2 x float> zeroinitializer, ptr [[I3]], align 16
; CHECK-NEXT:    ret void
;
bb:
  %i7 = add nuw nsw i32 %i, 1
  %i8 = zext i32 %i7 to i64
  %i9 = getelementptr inbounds float, ptr %arg, i64 %i8
  store float 0.0, ptr %i9, align 4
  %i2 = zext i32 %i to i64
  %i3 = getelementptr inbounds float, ptr %arg, i64 %i2
  store <2 x float> <float 0.0, float 0.0>, ptr %i3, align 16
  ret void
}

define void @ScalableVectorTestFullyOverlapping(ptr %arg, i32 %i) vscale_range(1, 2) {
; CHECK-LABEL: @ScalableVectorTestFullyOverlapping(
; CHECK-NEXT:    [[I_1:%.*]] = add nuw nsw i32 [[I:%.*]], 1
; CHECK-NEXT:    [[EXT_I_1:%.*]] = zext i32 [[I_1]] to i64
; CHECK-NEXT:    [[GEP_ARG_I_1:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[EXT_I_1]]
; CHECK-NEXT:    store float 0.000000e+00, ptr [[GEP_ARG_I_1]], align 4
; CHECK-NEXT:    [[EXT_I:%.*]] = zext i32 [[I]] to i64
; CHECK-NEXT:    [[GEP_ARG_I:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[EXT_I]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I]], align 8
; CHECK-NEXT:    ret void
;
  %i.1 = add nuw nsw i32 %i, 1
  %ext.i.1 = zext i32 %i.1 to i64
  %gep.arg.i.1 = getelementptr inbounds float, ptr %arg, i64 %ext.i.1
  store float 0.0, ptr %gep.arg.i.1
  %ext.i = zext i32 %i to i64
  %gep.arg.i = getelementptr inbounds float, ptr %arg, i64 %ext.i
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i
  ret void
}

define void @ScalableVectorTestFullyOverlapping2(ptr %arg, i32 %i) {
; CHECK-LABEL: @ScalableVectorTestFullyOverlapping2(
; CHECK-NEXT:    [[I_1:%.*]] = add nuw nsw i32 [[I:%.*]], 1
; CHECK-NEXT:    [[EXT_I_1:%.*]] = zext i32 [[I_1]] to i64
; CHECK-NEXT:    [[GEP_ARG_I_1:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[EXT_I_1]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I_1]], align 8
; CHECK-NEXT:    [[EXT_I:%.*]] = zext i32 [[I]] to i64
; CHECK-NEXT:    [[GEP_ARG_I:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[EXT_I]]
; CHECK-NEXT:    store <vscale x 4 x float> zeroinitializer, ptr [[GEP_ARG_I]], align 16
; CHECK-NEXT:    ret void
;
  %i.1 = add nuw nsw i32 %i, 1
  %ext.i.1 = zext i32 %i.1 to i64
  %gep.arg.i.1 = getelementptr inbounds float, ptr %arg, i64 %ext.i.1
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i.1
  %ext.i = zext i32 %i to i64
  %gep.arg.i = getelementptr inbounds float, ptr %arg, i64 %ext.i
  store <vscale x 4 x float> zeroinitializer, ptr %gep.arg.i
  ret void
}

define void @ScalableVectorTestNonOverlapping(ptr %arg, i32 %i) vscale_range(1, 2) {
; CHECK-LABEL: @ScalableVectorTestNonOverlapping(
; CHECK-NEXT:    [[I_10:%.*]] = add nuw nsw i32 [[I:%.*]], 10
; CHECK-NEXT:    [[EXT_I_10:%.*]] = zext i32 [[I_10]] to i64
; CHECK-NEXT:    [[GEP_ARG_I_10:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[EXT_I_10]]
; CHECK-NEXT:    store float 0.000000e+00, ptr [[GEP_ARG_I_10]], align 4
; CHECK-NEXT:    [[EXT_I:%.*]] = zext i32 [[I]] to i64
; CHECK-NEXT:    [[GEP_ARG_I:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[EXT_I]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I]], align 8
; CHECK-NEXT:    ret void
;
  %i.10 = add nuw nsw i32 %i, 10
  %ext.i.10 = zext i32 %i.10 to i64
  %gep.arg.i.10 = getelementptr inbounds float, ptr %arg, i64 %ext.i.10
  store float 0.0, ptr %gep.arg.i.10
  %ext.i = zext i32 %i to i64
  %gep.arg.i = getelementptr inbounds float, ptr %arg, i64 %ext.i
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i
  ret void
}

define void @ScalableVectorTestNonOverlapping2(ptr %arg, i32 %i) vscale_range(1, 2) {
; CHECK-LABEL: @ScalableVectorTestNonOverlapping2(
; CHECK-NEXT:    [[I_10:%.*]] = add nuw nsw i32 [[I:%.*]], 10
; CHECK-NEXT:    [[EXT_I_10:%.*]] = zext i32 [[I_10]] to i64
; CHECK-NEXT:    [[GEP_ARG_I_10:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[EXT_I_10]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I_10]], align 8
; CHECK-NEXT:    [[EXT_I:%.*]] = zext i32 [[I]] to i64
; CHECK-NEXT:    [[GEP_ARG_I:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[EXT_I]]
; CHECK-NEXT:    store <vscale x 4 x float> zeroinitializer, ptr [[GEP_ARG_I]], align 16
; CHECK-NEXT:    ret void
;
  %i.10 = add nuw nsw i32 %i, 10
  %ext.i.10 = zext i32 %i.10 to i64
  %gep.arg.i.10 = getelementptr inbounds float, ptr %arg, i64 %ext.i.10
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i.10
  %ext.i = zext i32 %i to i64
  %gep.arg.i = getelementptr inbounds float, ptr %arg, i64 %ext.i
  store <vscale x 4 x float> zeroinitializer, ptr %gep.arg.i
  ret void
}

define void @ArrayTestPartiallyOverlapping(i64 %0) {
;
; The DSE pass will not kill the store because the overlap is partial
; and won't fully clobber the i32 store.
;
; CHECK-LABEL: @ArrayTestPartiallyOverlapping(
; CHECK-NEXT:    [[TMP2:%.*]] = add i64 [[TMP0:%.*]], 10
; CHECK-NEXT:    [[TMP3:%.*]] = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 [[TMP2]]
; CHECK-NEXT:    [[TMP4:%.*]] = add i64 [[TMP0]], 15
; CHECK-NEXT:    [[TMP5:%.*]] = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 [[TMP4]]
; CHECK-NEXT:    store i32 1, ptr [[TMP5]], align 4
; CHECK-NEXT:    store i64 0, ptr [[TMP3]], align 4
; CHECK-NEXT:    ret void
;
  %2 = add i64 %0, 10
  %3 = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 %2
  %4 = add i64 %0, 15
  %5 = getelementptr inbounds [0 x i8], ptr @BUFFER, i64 0, i64 %4
  store i32 1, ptr %5
  store i64 0, ptr %3
  ret void
}

define void @VectorTestPartiallyOverlapping(ptr %arg, i32 %i) {
;
; The DSE pass will not kill the store because the overlap is partial
; and won't fully clobber the original store.
;
; CHECK-LABEL: @VectorTestPartiallyOverlapping(
; CHECK-NEXT:  bb:
; CHECK-NEXT:    [[I2:%.*]] = zext i32 [[I:%.*]] to i64
; CHECK-NEXT:    [[I3:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[I2]]
; CHECK-NEXT:    store <2 x float> splat (float 1.000000e+00), ptr [[I3]], align 16
; CHECK-NEXT:    [[I5:%.*]] = add nuw nsw i32 [[I]], 1
; CHECK-NEXT:    [[I6:%.*]] = zext i32 [[I5]] to i64
; CHECK-NEXT:    [[I7:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[I6]]
; CHECK-NEXT:    store <2 x float> zeroinitializer, ptr [[I7]], align 16
; CHECK-NEXT:    ret void
;
bb:
  %i2 = zext i32 %i to i64
  %i3 = getelementptr inbounds float, ptr %arg, i64 %i2
  store <2 x float> <float 1.000000e+00, float 1.000000e+00>, ptr %i3, align 16
  %i5 = add nuw nsw i32 %i, 1
  %i6 = zext i32 %i5 to i64
  %i7 = getelementptr inbounds float, ptr %arg, i64 %i6
  store <2 x float> <float 0.0, float 0.0>, ptr %i7, align 16
  ret void
}

define void @ScalableVectorTestPartiallyOverlapping(ptr %arg, i32 %i) {
;
; The DSE pass will not kill the store because the overlap is partial
; and won't fully clobber the original store.
;
; CHECK-LABEL: @ScalableVectorTestPartiallyOverlapping(
; CHECK-NEXT:    [[EXT_I:%.*]] = zext i32 [[I:%.*]] to i64
; CHECK-NEXT:    [[GEP_ARG_I:%.*]] = getelementptr inbounds float, ptr [[ARG:%.*]], i64 [[EXT_I]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I]], align 8
; CHECK-NEXT:    [[I_1:%.*]] = add nuw nsw i32 [[I]], 1
; CHECK-NEXT:    [[EXT_I_1:%.*]] = zext i32 [[I_1]] to i64
; CHECK-NEXT:    [[GEP_ARG_I_1:%.*]] = getelementptr inbounds float, ptr [[ARG]], i64 [[EXT_I_1]]
; CHECK-NEXT:    store <vscale x 2 x float> zeroinitializer, ptr [[GEP_ARG_I_1]], align 8
; CHECK-NEXT:    ret void
;
  %ext.i = zext i32 %i to i64
  %gep.arg.i = getelementptr inbounds float, ptr %arg, i64 %ext.i
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i
  %i.1 = add nuw nsw i32 %i, 1
  %ext.i.1 = zext i32 %i.1 to i64
  %gep.arg.i.1 = getelementptr inbounds float, ptr %arg, i64 %ext.i.1
  store <vscale x 2 x float> zeroinitializer, ptr %gep.arg.i.1
  ret void
}