blob: 59a73db3187eb85bdaa91aa849f70ce0bb0d0392 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=arm -mattr=+neon | FileCheck %s
Bob Wilson9b600c62009-08-06 00:38:31 +00002
Bob Wilsonec1d81c2009-10-06 21:16:19 +00003%struct.__neon_int8x8x4_t = type { <8 x i8>, <8 x i8>, <8 x i8>, <8 x i8> }
4%struct.__neon_int16x4x4_t = type { <4 x i16>, <4 x i16>, <4 x i16>, <4 x i16> }
5%struct.__neon_int32x2x4_t = type { <2 x i32>, <2 x i32>, <2 x i32>, <2 x i32> }
6%struct.__neon_float32x2x4_t = type { <2 x float>, <2 x float>, <2 x float>, <2 x float> }
Bob Wilson0ea38bb2009-10-07 23:54:04 +00007%struct.__neon_int64x1x4_t = type { <1 x i64>, <1 x i64>, <1 x i64>, <1 x i64> }
Bob Wilson9b600c62009-08-06 00:38:31 +00008
Bob Wilson7708c222009-10-07 18:09:32 +00009%struct.__neon_int8x16x4_t = type { <16 x i8>, <16 x i8>, <16 x i8>, <16 x i8> }
10%struct.__neon_int16x8x4_t = type { <8 x i16>, <8 x i16>, <8 x i16>, <8 x i16> }
11%struct.__neon_int32x4x4_t = type { <4 x i32>, <4 x i32>, <4 x i32>, <4 x i32> }
12%struct.__neon_float32x4x4_t = type { <4 x float>, <4 x float>, <4 x float>, <4 x float> }
13
Bob Wilson9b600c62009-08-06 00:38:31 +000014define <8 x i8> @vld4i8(i8* %A) nounwind {
15;CHECK: vld4i8:
Bob Wilson40ff01a2010-09-23 21:43:54 +000016;Check the alignment value. Max for this instruction is 256 bits:
Bob Wilson7d247052010-10-08 06:15:13 +000017;CHECK: vld4.8 {d16, d17, d18, d19}, [r0, :64]
Bob Wilson40ff01a2010-09-23 21:43:54 +000018 %tmp1 = call %struct.__neon_int8x8x4_t @llvm.arm.neon.vld4.v8i8(i8* %A, i32 8)
Bob Wilsonec1d81c2009-10-06 21:16:19 +000019 %tmp2 = extractvalue %struct.__neon_int8x8x4_t %tmp1, 0
20 %tmp3 = extractvalue %struct.__neon_int8x8x4_t %tmp1, 2
Bob Wilson9b600c62009-08-06 00:38:31 +000021 %tmp4 = add <8 x i8> %tmp2, %tmp3
22 ret <8 x i8> %tmp4
23}
24
Bob Wilson1c3ef902011-02-07 17:43:21 +000025;Check for a post-increment updating load with register increment.
26define <8 x i8> @vld4i8_update(i8** %ptr, i32 %inc) nounwind {
27;CHECK: vld4i8_update:
28;CHECK: vld4.8 {d16, d17, d18, d19}, [r2, :128], r1
29 %A = load i8** %ptr
30 %tmp1 = call %struct.__neon_int8x8x4_t @llvm.arm.neon.vld4.v8i8(i8* %A, i32 16)
31 %tmp2 = extractvalue %struct.__neon_int8x8x4_t %tmp1, 0
32 %tmp3 = extractvalue %struct.__neon_int8x8x4_t %tmp1, 2
33 %tmp4 = add <8 x i8> %tmp2, %tmp3
34 %tmp5 = getelementptr i8* %A, i32 %inc
35 store i8* %tmp5, i8** %ptr
36 ret <8 x i8> %tmp4
37}
38
Bob Wilson9b600c62009-08-06 00:38:31 +000039define <4 x i16> @vld4i16(i16* %A) nounwind {
40;CHECK: vld4i16:
Bob Wilson40ff01a2010-09-23 21:43:54 +000041;Check the alignment value. Max for this instruction is 256 bits:
Bob Wilson7d247052010-10-08 06:15:13 +000042;CHECK: vld4.16 {d16, d17, d18, d19}, [r0, :128]
Bob Wilson02170c02010-04-20 00:17:16 +000043 %tmp0 = bitcast i16* %A to i8*
Bob Wilson40ff01a2010-09-23 21:43:54 +000044 %tmp1 = call %struct.__neon_int16x4x4_t @llvm.arm.neon.vld4.v4i16(i8* %tmp0, i32 16)
Bob Wilsonec1d81c2009-10-06 21:16:19 +000045 %tmp2 = extractvalue %struct.__neon_int16x4x4_t %tmp1, 0
46 %tmp3 = extractvalue %struct.__neon_int16x4x4_t %tmp1, 2
Bob Wilson9b600c62009-08-06 00:38:31 +000047 %tmp4 = add <4 x i16> %tmp2, %tmp3
48 ret <4 x i16> %tmp4
49}
50
51define <2 x i32> @vld4i32(i32* %A) nounwind {
52;CHECK: vld4i32:
Bob Wilson40ff01a2010-09-23 21:43:54 +000053;Check the alignment value. Max for this instruction is 256 bits:
Bob Wilson7d247052010-10-08 06:15:13 +000054;CHECK: vld4.32 {d16, d17, d18, d19}, [r0, :256]
Bob Wilson02170c02010-04-20 00:17:16 +000055 %tmp0 = bitcast i32* %A to i8*
Bob Wilson40ff01a2010-09-23 21:43:54 +000056 %tmp1 = call %struct.__neon_int32x2x4_t @llvm.arm.neon.vld4.v2i32(i8* %tmp0, i32 32)
Bob Wilsonec1d81c2009-10-06 21:16:19 +000057 %tmp2 = extractvalue %struct.__neon_int32x2x4_t %tmp1, 0
58 %tmp3 = extractvalue %struct.__neon_int32x2x4_t %tmp1, 2
Bob Wilson9b600c62009-08-06 00:38:31 +000059 %tmp4 = add <2 x i32> %tmp2, %tmp3
60 ret <2 x i32> %tmp4
61}
62
63define <2 x float> @vld4f(float* %A) nounwind {
64;CHECK: vld4f:
65;CHECK: vld4.32
Bob Wilson02170c02010-04-20 00:17:16 +000066 %tmp0 = bitcast float* %A to i8*
Bob Wilson7a9ef442010-08-27 17:13:24 +000067 %tmp1 = call %struct.__neon_float32x2x4_t @llvm.arm.neon.vld4.v2f32(i8* %tmp0, i32 1)
Bob Wilsonec1d81c2009-10-06 21:16:19 +000068 %tmp2 = extractvalue %struct.__neon_float32x2x4_t %tmp1, 0
69 %tmp3 = extractvalue %struct.__neon_float32x2x4_t %tmp1, 2
Dan Gohmand4d01152010-05-03 22:36:46 +000070 %tmp4 = fadd <2 x float> %tmp2, %tmp3
Bob Wilson9b600c62009-08-06 00:38:31 +000071 ret <2 x float> %tmp4
72}
73
Bob Wilson0ea38bb2009-10-07 23:54:04 +000074define <1 x i64> @vld4i64(i64* %A) nounwind {
75;CHECK: vld4i64:
Bob Wilson40ff01a2010-09-23 21:43:54 +000076;Check the alignment value. Max for this instruction is 256 bits:
Bob Wilson7d247052010-10-08 06:15:13 +000077;CHECK: vld1.64 {d16, d17, d18, d19}, [r0, :256]
Bob Wilson02170c02010-04-20 00:17:16 +000078 %tmp0 = bitcast i64* %A to i8*
Bob Wilson40ff01a2010-09-23 21:43:54 +000079 %tmp1 = call %struct.__neon_int64x1x4_t @llvm.arm.neon.vld4.v1i64(i8* %tmp0, i32 64)
Bob Wilson0ea38bb2009-10-07 23:54:04 +000080 %tmp2 = extractvalue %struct.__neon_int64x1x4_t %tmp1, 0
81 %tmp3 = extractvalue %struct.__neon_int64x1x4_t %tmp1, 2
82 %tmp4 = add <1 x i64> %tmp2, %tmp3
83 ret <1 x i64> %tmp4
84}
85
Bob Wilson7708c222009-10-07 18:09:32 +000086define <16 x i8> @vld4Qi8(i8* %A) nounwind {
87;CHECK: vld4Qi8:
Bob Wilson40ff01a2010-09-23 21:43:54 +000088;Check the alignment value. Max for this instruction is 256 bits:
Bob Wilson7d247052010-10-08 06:15:13 +000089;CHECK: vld4.8 {d16, d18, d20, d22}, [r0, :256]!
90;CHECK: vld4.8 {d17, d19, d21, d23}, [r0, :256]
Bob Wilson40ff01a2010-09-23 21:43:54 +000091 %tmp1 = call %struct.__neon_int8x16x4_t @llvm.arm.neon.vld4.v16i8(i8* %A, i32 64)
Bob Wilson7708c222009-10-07 18:09:32 +000092 %tmp2 = extractvalue %struct.__neon_int8x16x4_t %tmp1, 0
93 %tmp3 = extractvalue %struct.__neon_int8x16x4_t %tmp1, 2
94 %tmp4 = add <16 x i8> %tmp2, %tmp3
95 ret <16 x i8> %tmp4
96}
97
98define <8 x i16> @vld4Qi16(i16* %A) nounwind {
99;CHECK: vld4Qi16:
Bob Wilson40ff01a2010-09-23 21:43:54 +0000100;Check for no alignment specifier.
Bob Wilson7d247052010-10-08 06:15:13 +0000101;CHECK: vld4.16 {d16, d18, d20, d22}, [r0]!
102;CHECK: vld4.16 {d17, d19, d21, d23}, [r0]
Bob Wilson02170c02010-04-20 00:17:16 +0000103 %tmp0 = bitcast i16* %A to i8*
Bob Wilson7a9ef442010-08-27 17:13:24 +0000104 %tmp1 = call %struct.__neon_int16x8x4_t @llvm.arm.neon.vld4.v8i16(i8* %tmp0, i32 1)
Bob Wilson7708c222009-10-07 18:09:32 +0000105 %tmp2 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 0
106 %tmp3 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 2
107 %tmp4 = add <8 x i16> %tmp2, %tmp3
108 ret <8 x i16> %tmp4
109}
110
Bob Wilson1c3ef902011-02-07 17:43:21 +0000111;Check for a post-increment updating load.
112define <8 x i16> @vld4Qi16_update(i16** %ptr) nounwind {
113;CHECK: vld4Qi16_update:
114;CHECK: vld4.16 {d16, d18, d20, d22}, [r1, :64]!
115;CHECK: vld4.16 {d17, d19, d21, d23}, [r1, :64]!
116 %A = load i16** %ptr
117 %tmp0 = bitcast i16* %A to i8*
118 %tmp1 = call %struct.__neon_int16x8x4_t @llvm.arm.neon.vld4.v8i16(i8* %tmp0, i32 8)
119 %tmp2 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 0
120 %tmp3 = extractvalue %struct.__neon_int16x8x4_t %tmp1, 2
121 %tmp4 = add <8 x i16> %tmp2, %tmp3
122 %tmp5 = getelementptr i16* %A, i32 32
123 store i16* %tmp5, i16** %ptr
124 ret <8 x i16> %tmp4
125}
126
Bob Wilson7708c222009-10-07 18:09:32 +0000127define <4 x i32> @vld4Qi32(i32* %A) nounwind {
128;CHECK: vld4Qi32:
129;CHECK: vld4.32
130;CHECK: vld4.32
Bob Wilson02170c02010-04-20 00:17:16 +0000131 %tmp0 = bitcast i32* %A to i8*
Bob Wilson7a9ef442010-08-27 17:13:24 +0000132 %tmp1 = call %struct.__neon_int32x4x4_t @llvm.arm.neon.vld4.v4i32(i8* %tmp0, i32 1)
Bob Wilson7708c222009-10-07 18:09:32 +0000133 %tmp2 = extractvalue %struct.__neon_int32x4x4_t %tmp1, 0
134 %tmp3 = extractvalue %struct.__neon_int32x4x4_t %tmp1, 2
135 %tmp4 = add <4 x i32> %tmp2, %tmp3
136 ret <4 x i32> %tmp4
137}
138
139define <4 x float> @vld4Qf(float* %A) nounwind {
140;CHECK: vld4Qf:
141;CHECK: vld4.32
142;CHECK: vld4.32
Bob Wilson02170c02010-04-20 00:17:16 +0000143 %tmp0 = bitcast float* %A to i8*
Bob Wilson7a9ef442010-08-27 17:13:24 +0000144 %tmp1 = call %struct.__neon_float32x4x4_t @llvm.arm.neon.vld4.v4f32(i8* %tmp0, i32 1)
Bob Wilson7708c222009-10-07 18:09:32 +0000145 %tmp2 = extractvalue %struct.__neon_float32x4x4_t %tmp1, 0
146 %tmp3 = extractvalue %struct.__neon_float32x4x4_t %tmp1, 2
Dan Gohmand4d01152010-05-03 22:36:46 +0000147 %tmp4 = fadd <4 x float> %tmp2, %tmp3
Bob Wilson7708c222009-10-07 18:09:32 +0000148 ret <4 x float> %tmp4
149}
150
Bob Wilson7a9ef442010-08-27 17:13:24 +0000151declare %struct.__neon_int8x8x4_t @llvm.arm.neon.vld4.v8i8(i8*, i32) nounwind readonly
152declare %struct.__neon_int16x4x4_t @llvm.arm.neon.vld4.v4i16(i8*, i32) nounwind readonly
153declare %struct.__neon_int32x2x4_t @llvm.arm.neon.vld4.v2i32(i8*, i32) nounwind readonly
154declare %struct.__neon_float32x2x4_t @llvm.arm.neon.vld4.v2f32(i8*, i32) nounwind readonly
155declare %struct.__neon_int64x1x4_t @llvm.arm.neon.vld4.v1i64(i8*, i32) nounwind readonly
Bob Wilson7708c222009-10-07 18:09:32 +0000156
Bob Wilson7a9ef442010-08-27 17:13:24 +0000157declare %struct.__neon_int8x16x4_t @llvm.arm.neon.vld4.v16i8(i8*, i32) nounwind readonly
158declare %struct.__neon_int16x8x4_t @llvm.arm.neon.vld4.v8i16(i8*, i32) nounwind readonly
159declare %struct.__neon_int32x4x4_t @llvm.arm.neon.vld4.v4i32(i8*, i32) nounwind readonly
160declare %struct.__neon_float32x4x4_t @llvm.arm.neon.vld4.v4f32(i8*, i32) nounwind readonly