[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / test / Transforms / ConstProp / loads.ll
blob68d7390b0e6bccec803ef3d22afc4da97329f111
1 ; RUN: opt < %s -data-layout="e-p:64:64:64-p1:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64" -instcombine -S | FileCheck %s --check-prefix=LE
2 ; RUN: opt < %s -data-layout="E-p:64:64:64-p1:16:16:16-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64" -instcombine -S | FileCheck %s --check-prefix=BE
4 ; {{ 0xDEADBEEF, 0xBA }, 0xCAFEBABE}
5 @g1 = constant {{i32,i8},i32} {{i32,i8} { i32 -559038737, i8 186 }, i32 -889275714 }
6 @g2 = constant double 1.0
7 ; { 0x7B, 0x06B1BFF8 }
8 @g3 = constant {i64, i64} { i64 123, i64 112312312 }
10 ; Simple load
11 define i32 @test1() {
12   %r = load i32, i32* getelementptr ({{i32,i8},i32}, {{i32,i8},i32}* @g1, i32 0, i32 0, i32 0)
13   ret i32 %r
15 ; 0xDEADBEEF
16 ; LE-LABEL: @test1(
17 ; LE: ret i32 -559038737
19 ; 0xDEADBEEF
20 ; BE-LABEL: @test1(
21 ; BE: ret i32 -559038737
24 ; PR3152
25 ; Load of first 16 bits of 32-bit value.
26 define i16 @test2() {
27   %r = load i16, i16* bitcast(i32* getelementptr ({{i32,i8},i32}, {{i32,i8},i32}* @g1, i32 0, i32 0, i32 0) to i16*)
28   ret i16 %r
30 ; 0xBEEF
31 ; LE-LABEL: @test2(
32 ; LE: ret i16 -16657
34 ; 0xDEAD
35 ; BE-LABEL: @test2(
36 ; BE: ret i16 -8531
39 define i16 @test2_addrspacecast() {
40   %r = load i16, i16 addrspace(1)* addrspacecast(i32* getelementptr ({{i32,i8},i32}, {{i32,i8},i32}* @g1, i32 0, i32 0, i32 0) to i16 addrspace(1)*)
41   ret i16 %r
43 ; FIXME: Should be able to load through a constant addrspacecast.
44 ; 0xBEEF
45 ; LE-LABEL: @test2_addrspacecast(
46 ; XLE: ret i16 -16657
47 ; LE: load i16, i16 addrspace(1)* addrspacecast
49 ; 0xDEAD
50 ; BE-LABEL: @test2_addrspacecast(
51 ; XBE: ret i16 -8531
52 ; BE: load i16, i16 addrspace(1)* addrspacecast
55 ; Load of second 16 bits of 32-bit value.
56 define i16 @test3() {
57   %r = load i16, i16* getelementptr(i16, i16* bitcast(i32* getelementptr ({{i32,i8},i32}, {{i32,i8},i32}* @g1, i32 0, i32 0, i32 0) to i16*), i32 1)
58   ret i16 %r
60 ; 0xDEAD
61 ; LE-LABEL: @test3(
62 ; LE: ret i16 -8531
64 ; 0xBEEF
65 ; BE-LABEL: @test3(
66 ; BE: ret i16 -16657
69 ; Load of 8 bit field + tail padding.
70 define i16 @test4() {
71   %r = load i16, i16* getelementptr(i16, i16* bitcast(i32* getelementptr ({{i32,i8},i32}, {{i32,i8},i32}* @g1, i32 0, i32 0, i32 0) to i16*), i32 2)
72   ret i16 %r
74 ; 0x00BA
75 ; LE-LABEL: @test4(
76 ; LE: ret i16 186
78 ; 0xBA00
79 ; BE-LABEL: @test4(
80 ; BE: ret i16 -17920
83 ; Load of double bits.
84 define i64 @test6() {
85   %r = load i64, i64* bitcast(double* @g2 to i64*)
86   ret i64 %r
88 ; 0x3FF_0000000000000
89 ; LE-LABEL: @test6(
90 ; LE: ret i64 4607182418800017408
92 ; 0x3FF_0000000000000
93 ; BE-LABEL: @test6(
94 ; BE: ret i64 4607182418800017408
97 ; Load of double bits.
98 define i16 @test7() {
99   %r = load i16, i16* bitcast(double* @g2 to i16*)
100   ret i16 %r
102 ; 0x0000
103 ; LE-LABEL: @test7(
104 ; LE: ret i16 0
106 ; 0x3FF0
107 ; BE-LABEL: @test7(
108 ; BE: ret i16 16368
111 ; Double load.
112 define double @test8() {
113   %r = load double, double* bitcast({{i32,i8},i32}* @g1 to double*)
114   ret double %r
116 ; LE-LABEL: @test8(
117 ; LE: ret double 0xBADEADBEEF
119 ; BE-LABEL: @test8(
120 ; BE: ret double 0xDEADBEEFBA000000
124 ; i128 load.
125 define i128 @test9() {
126   %r = load i128, i128* bitcast({i64, i64}* @g3 to i128*)
127   ret i128 %r
129 ; 0x00000000_06B1BFF8_00000000_0000007B
130 ; LE-LABEL: @test9(
131 ; LE: ret i128 2071796475790618158476296315
133 ; 0x00000000_0000007B_00000000_06B1BFF8
134 ; BE-LABEL: @test9(
135 ; BE: ret i128 2268949521066387161080
138 ; vector load.
139 define <2 x i64> @test10() {
140   %r = load <2 x i64>, <2 x i64>* bitcast({i64, i64}* @g3 to <2 x i64>*)
141   ret <2 x i64> %r
143 ; LE-LABEL: @test10(
144 ; LE: ret <2 x i64> <i64 123, i64 112312312>
146 ; BE-LABEL: @test10(
147 ; BE: ret <2 x i64> <i64 123, i64 112312312>
151 ; PR5287
152 ; { 0xA1, 0x08 }
153 @g4 = internal constant { i8, i8 } { i8 -95, i8 8 }
155 define i16 @test11() nounwind {
156 entry:
157   %a = load i16, i16* bitcast ({ i8, i8 }* @g4 to i16*)
158   ret i16 %a
160 ; 0x08A1
161 ; LE-LABEL: @test11(
162 ; LE: ret i16 2209
164 ; 0xA108
165 ; BE-LABEL: @test11(
166 ; BE: ret i16 -24312
170 ; PR5551
171 @test12g = private constant [6 x i8] c"a\00b\00\00\00"
173 define i16 @test12() {
174   %a = load i16, i16* getelementptr inbounds ([3 x i16], [3 x i16]* bitcast ([6 x i8]* @test12g to [3 x i16]*), i32 0, i64 1)
175   ret i16 %a
177 ; 0x0062
178 ; LE-LABEL: @test12(
179 ; LE: ret i16 98
181 ; 0x6200
182 ; BE-LABEL: @test12(
183 ; BE: ret i16 25088
187 ; PR5978
188 @g5 = constant i8 4
189 define i1 @test13() {
190   %A = load i1, i1* bitcast (i8* @g5 to i1*)
191   ret i1 %A
193 ; LE-LABEL: @test13(
194 ; LE: ret i1 false
196 ; BE-LABEL: @test13(
197 ; BE: ret i1 false
200 @g6 = constant [2 x i8*] [i8* inttoptr (i64 1 to i8*), i8* inttoptr (i64 2 to i8*)]
201 define i64 @test14() nounwind {
202 entry:
203   %tmp = load i64, i64* bitcast ([2 x i8*]* @g6 to i64*)
204   ret i64 %tmp
206 ; LE-LABEL: @test14(
207 ; LE: ret i64 1
209 ; BE-LABEL: @test14(
210 ; BE: ret i64 1
213 ; Check with address space pointers
214 @g6_as1 = constant [2 x i8 addrspace(1)*] [i8 addrspace(1)* inttoptr (i16 1 to i8 addrspace(1)*), i8 addrspace(1)* inttoptr (i16 2 to i8 addrspace(1)*)]
215 define i16 @test14_as1() nounwind {
216 entry:
217   %tmp = load i16, i16* bitcast ([2 x i8 addrspace(1)*]* @g6_as1 to i16*)
218   ret i16 %tmp
220 ; LE: @test14_as1
221 ; LE: ret i16 1
223 ; BE: @test14_as1
224 ; BE: ret i16 1
227 define i64 @test15() nounwind {
228 entry:
229   %tmp = load i64, i64* bitcast (i8** getelementptr inbounds ([2 x i8*], [2 x i8*]* @g6, i32 0, i64 1) to i64*)
230   ret i64 %tmp
232 ; LE-LABEL: @test15(
233 ; LE: ret i64 2
235 ; BE-LABEL: @test15(
236 ; BE: ret i64 2
239 @gv7 = constant [4 x i8*] [i8* null, i8* inttoptr (i64 -14 to i8*), i8* null, i8* null]
240 define i64 @test16.1() {
241   %v = load i64, i64* bitcast ([4 x i8*]* @gv7 to i64*), align 8
242   ret i64 %v
244 ; LE-LABEL: @test16.1(
245 ; LE: ret i64 0
247 ; BE-LABEL: @test16.1(
248 ; BE: ret i64 0
251 define i64 @test16.2() {
252   %v = load i64, i64* bitcast (i8** getelementptr inbounds ([4 x i8*], [4 x i8*]* @gv7, i64 0, i64 1) to i64*), align 8
253   ret i64 %v
255 ; LE-LABEL: @test16.2(
256 ; LE: ret i64 -14
258 ; BE-LABEL: @test16.2(
259 ; BE: ret i64 -14
262 define i64 @test16.3() {
263   %v = load i64, i64* bitcast (i8** getelementptr inbounds ([4 x i8*], [4 x i8*]* @gv7, i64 0, i64 2) to i64*), align 8
264   ret i64 %v
266 ; LE-LABEL: @test16.3(
267 ; LE: ret i64 0
269 ; BE-LABEL: @test16.3(
270 ; BE: ret i64 0
273 @g7 = constant {[0 x i32], [0 x i8], {}*} { [0 x i32] undef, [0 x i8] undef, {}* null }
275 define i64* @test_leading_zero_size_elems() {
276   %v = load i64*, i64** bitcast ({[0 x i32], [0 x i8], {}*}* @g7 to i64**)
277   ret i64* %v
279 ; LE-LABEL: @test_leading_zero_size_elems(
280 ; LE: ret i64* null
282 ; BE-LABEL: @test_leading_zero_size_elems(
283 ; BE: ret i64* null
286 @g8 = constant {[4294967295 x [0 x i32]], i64} { [4294967295 x [0 x i32]] undef, i64 123 }
288 define i64 @test_leading_zero_size_elems_big() {
289   %v = load i64, i64* bitcast ({[4294967295 x [0 x i32]], i64}* @g8 to i64*)
290   ret i64 %v
292 ; LE-LABEL: @test_leading_zero_size_elems_big(
293 ; LE: ret i64 123
295 ; BE-LABEL: @test_leading_zero_size_elems_big(
296 ; BE: ret i64 123
299 @g9 = constant [4294967295 x [0 x i32]] zeroinitializer
301 define i64 @test_array_of_zero_size_array() {
302   %v = load i64, i64* bitcast ([4294967295 x [0 x i32]]* @g9 to i64*)
303   ret i64 %v
305 ; LE-LABEL: @test_array_of_zero_size_array(
306 ; LE: ret i64 0
308 ; BE-LABEL: @test_array_of_zero_size_array(
309 ; BE: ret i64 0