diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-07-29 16:39:22 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-07-29 16:39:22 +0000 |
commit | b7d0c90c449882c8ec697c8989244dba2dc917ae (patch) | |
tree | c25f7337ecd0ae0dee2ff100be597a2e38d165ec /test/CodeGen/ARM/vld1.ll | |
parent | 09b1366f3f310b5648aa8cd72ed16b9f19b4c68d (diff) |
Change Neon VLDn intrinsics to return multiple values instead of really
wide vectors. Likewise, change VSTn intrinsics to take separate arguments
for each vector in a multi-vector struct. Adjust tests accordingly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/vld1.ll')
-rw-r--r-- | test/CodeGen/ARM/vld1.ll | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/test/CodeGen/ARM/vld1.ll b/test/CodeGen/ARM/vld1.ll index 161cb71d53..fc925f6068 100644 --- a/test/CodeGen/ARM/vld1.ll +++ b/test/CodeGen/ARM/vld1.ll @@ -5,63 +5,63 @@ ; RUN: grep {vld1\\.64} %t | count 2 define <8 x i8> @vld1i8(i8* %A) nounwind { - %tmp1 = call <8 x i8> @llvm.arm.neon.vldi.v8i8(i8* %A, i32 1) + %tmp1 = call <8 x i8> @llvm.arm.neon.vld1i.v8i8(i8* %A) ret <8 x i8> %tmp1 } define <4 x i16> @vld1i16(i16* %A) nounwind { - %tmp1 = call <4 x i16> @llvm.arm.neon.vldi.v4i16(i16* %A, i32 1) + %tmp1 = call <4 x i16> @llvm.arm.neon.vld1i.v4i16(i16* %A) ret <4 x i16> %tmp1 } define <2 x i32> @vld1i32(i32* %A) nounwind { - %tmp1 = call <2 x i32> @llvm.arm.neon.vldi.v2i32(i32* %A, i32 1) + %tmp1 = call <2 x i32> @llvm.arm.neon.vld1i.v2i32(i32* %A) ret <2 x i32> %tmp1 } define <2 x float> @vld1f(float* %A) nounwind { - %tmp1 = call <2 x float> @llvm.arm.neon.vldf.v2f32(float* %A, i32 1) + %tmp1 = call <2 x float> @llvm.arm.neon.vld1f.v2f32(float* %A) ret <2 x float> %tmp1 } define <1 x i64> @vld1i64(i64* %A) nounwind { - %tmp1 = call <1 x i64> @llvm.arm.neon.vldi.v1i64(i64* %A, i32 1) + %tmp1 = call <1 x i64> @llvm.arm.neon.vld1i.v1i64(i64* %A) ret <1 x i64> %tmp1 } define <16 x i8> @vld1Qi8(i8* %A) nounwind { - %tmp1 = call <16 x i8> @llvm.arm.neon.vldi.v16i8(i8* %A, i32 1) + %tmp1 = call <16 x i8> @llvm.arm.neon.vld1i.v16i8(i8* %A) ret <16 x i8> %tmp1 } define <8 x i16> @vld1Qi16(i16* %A) nounwind { - %tmp1 = call <8 x i16> @llvm.arm.neon.vldi.v8i16(i16* %A, i32 1) + %tmp1 = call <8 x i16> @llvm.arm.neon.vld1i.v8i16(i16* %A) ret <8 x i16> %tmp1 } define <4 x i32> @vld1Qi32(i32* %A) nounwind { - %tmp1 = call <4 x i32> @llvm.arm.neon.vldi.v4i32(i32* %A, i32 1) + %tmp1 = call <4 x i32> @llvm.arm.neon.vld1i.v4i32(i32* %A) ret <4 x i32> %tmp1 } define <4 x float> @vld1Qf(float* %A) nounwind { - %tmp1 = call <4 x float> @llvm.arm.neon.vldf.v4f32(float* %A, i32 1) + %tmp1 = call <4 x float> @llvm.arm.neon.vld1f.v4f32(float* %A) ret <4 x float> %tmp1 } define <2 x i64> @vld1Qi64(i64* %A) nounwind { - %tmp1 = call <2 x i64> @llvm.arm.neon.vldi.v2i64(i64* %A, i32 1) + %tmp1 = call <2 x i64> @llvm.arm.neon.vld1i.v2i64(i64* %A) ret <2 x i64> %tmp1 } -declare <8 x i8> @llvm.arm.neon.vldi.v8i8(i8*, i32) nounwind readnone -declare <4 x i16> @llvm.arm.neon.vldi.v4i16(i16*, i32) nounwind readnone -declare <2 x i32> @llvm.arm.neon.vldi.v2i32(i32*, i32) nounwind readnone -declare <2 x float> @llvm.arm.neon.vldf.v2f32(float*, i32) nounwind readnone -declare <1 x i64> @llvm.arm.neon.vldi.v1i64(i64*, i32) nounwind readnone +declare <8 x i8> @llvm.arm.neon.vld1i.v8i8(i8*) nounwind readnone +declare <4 x i16> @llvm.arm.neon.vld1i.v4i16(i16*) nounwind readnone +declare <2 x i32> @llvm.arm.neon.vld1i.v2i32(i32*) nounwind readnone +declare <2 x float> @llvm.arm.neon.vld1f.v2f32(float*) nounwind readnone +declare <1 x i64> @llvm.arm.neon.vld1i.v1i64(i64*) nounwind readnone -declare <16 x i8> @llvm.arm.neon.vldi.v16i8(i8*, i32) nounwind readnone -declare <8 x i16> @llvm.arm.neon.vldi.v8i16(i16*, i32) nounwind readnone -declare <4 x i32> @llvm.arm.neon.vldi.v4i32(i32*, i32) nounwind readnone -declare <4 x float> @llvm.arm.neon.vldf.v4f32(float*, i32) nounwind readnone -declare <2 x i64> @llvm.arm.neon.vldi.v2i64(i64*, i32) nounwind readnone +declare <16 x i8> @llvm.arm.neon.vld1i.v16i8(i8*) nounwind readnone +declare <8 x i16> @llvm.arm.neon.vld1i.v8i16(i16*) nounwind readnone +declare <4 x i32> @llvm.arm.neon.vld1i.v4i32(i32*) nounwind readnone +declare <4 x float> @llvm.arm.neon.vld1f.v4f32(float*) nounwind readnone +declare <2 x i64> @llvm.arm.neon.vld1i.v2i64(i64*) nounwind readnone |