aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/vld3.ll
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-10-07 23:39:57 +0000
committerBob Wilson <bob.wilson@apple.com>2009-10-07 23:39:57 +0000
commitc67160c010b9aae5e7f912eaeee42cd0da6880c5 (patch)
treef3c20a9965e38c1f60c63cdcef677adc501496d3 /test/CodeGen/ARM/vld3.ll
parentfe897b2b328e144ae4b389c01a3ce3bf28fff80e (diff)
downloadexternal_llvm-c67160c010b9aae5e7f912eaeee42cd0da6880c5.zip
external_llvm-c67160c010b9aae5e7f912eaeee42cd0da6880c5.tar.gz
external_llvm-c67160c010b9aae5e7f912eaeee42cd0da6880c5.tar.bz2
Add codegen support for NEON vld3 intrinsics with <1 x i64> vectors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/vld3.ll')
-rw-r--r--test/CodeGen/ARM/vld3.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/vld3.ll b/test/CodeGen/ARM/vld3.ll
index 4ed5309..207dc6a 100644
--- a/test/CodeGen/ARM/vld3.ll
+++ b/test/CodeGen/ARM/vld3.ll
@@ -4,6 +4,7 @@
%struct.__neon_int16x4x3_t = type { <4 x i16>, <4 x i16>, <4 x i16> }
%struct.__neon_int32x2x3_t = type { <2 x i32>, <2 x i32>, <2 x i32> }
%struct.__neon_float32x2x3_t = type { <2 x float>, <2 x float>, <2 x float> }
+%struct.__neon_int64x1x3_t = type { <1 x i64>, <1 x i64>, <1 x i64> }
%struct.__neon_int8x16x3_t = type { <16 x i8>, <16 x i8>, <16 x i8> }
%struct.__neon_int16x8x3_t = type { <8 x i16>, <8 x i16>, <8 x i16> }
@@ -50,6 +51,16 @@ define <2 x float> @vld3f(float* %A) nounwind {
ret <2 x float> %tmp4
}
+define <1 x i64> @vld3i64(i64* %A) nounwind {
+;CHECK: vld3i64:
+;CHECK: vld1.64
+ %tmp1 = call %struct.__neon_int64x1x3_t @llvm.arm.neon.vld3.v1i64(i64* %A)
+ %tmp2 = extractvalue %struct.__neon_int64x1x3_t %tmp1, 0
+ %tmp3 = extractvalue %struct.__neon_int64x1x3_t %tmp1, 2
+ %tmp4 = add <1 x i64> %tmp2, %tmp3
+ ret <1 x i64> %tmp4
+}
+
define <16 x i8> @vld3Qi8(i8* %A) nounwind {
;CHECK: vld3Qi8:
;CHECK: vld3.8
@@ -98,6 +109,7 @@ declare %struct.__neon_int8x8x3_t @llvm.arm.neon.vld3.v8i8(i8*) nounwind readonl
declare %struct.__neon_int16x4x3_t @llvm.arm.neon.vld3.v4i16(i8*) nounwind readonly
declare %struct.__neon_int32x2x3_t @llvm.arm.neon.vld3.v2i32(i8*) nounwind readonly
declare %struct.__neon_float32x2x3_t @llvm.arm.neon.vld3.v2f32(i8*) nounwind readonly
+declare %struct.__neon_int64x1x3_t @llvm.arm.neon.vld3.v1i64(i8*) nounwind readonly
declare %struct.__neon_int8x16x3_t @llvm.arm.neon.vld3.v16i8(i8*) nounwind readonly
declare %struct.__neon_int16x8x3_t @llvm.arm.neon.vld3.v8i16(i8*) nounwind readonly