[llvm-commits] [llvm] r75037 - in /llvm/trunk: lib/Target/ARM/ARMInstrNEON.td test/CodeGen/ARM/vst1.ll

Bob Wilson bob.wilson at apple.com
Wed Jul 8 13:32:04 PDT 2009


Author: bwilson
Date: Wed Jul  8 15:32:02 2009
New Revision: 75037

URL: http://llvm.org/viewvc/llvm-project?rev=75037&view=rev
Log:
Implement NEON vst1 instruction.

Added:
    llvm/trunk/test/CodeGen/ARM/vst1.ll
Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrNEON.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrNEON.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrNEON.td?rev=75037&r1=75036&r2=75037&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrNEON.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrNEON.td Wed Jul  8 15:32:02 2009
@@ -133,6 +133,28 @@
 def  VLD1qf   : VLD1Q<"vld1.32", v4f32, int_arm_neon_vldf>;
 def  VLD1q64  : VLD1Q<"vld1.64", v2i64, int_arm_neon_vldi>;
 
+//   VST1     : Vector Store (multiple single elements)
+class VST1D<string OpcodeStr, ValueType Ty, Intrinsic IntOp>
+  : NLdSt<(outs), (ins addrmode6:$addr, DPR:$src),
+          !strconcat(OpcodeStr, "\t${src:dregsingle}, $addr"),
+          [(IntOp addrmode6:$addr, (Ty DPR:$src), 1)]>;
+class VST1Q<string OpcodeStr, ValueType Ty, Intrinsic IntOp>
+  : NLdSt<(outs), (ins addrmode6:$addr, QPR:$src),
+          !strconcat(OpcodeStr, "\t${src:dregpair}, $addr"),
+          [(IntOp addrmode6:$addr, (Ty QPR:$src), 1)]>;
+
+def  VST1d8   : VST1D<"vst1.8",  v8i8,  int_arm_neon_vsti>;
+def  VST1d16  : VST1D<"vst1.16", v4i16, int_arm_neon_vsti>;
+def  VST1d32  : VST1D<"vst1.32", v2i32, int_arm_neon_vsti>;
+def  VST1df   : VST1D<"vst1.32", v2f32, int_arm_neon_vstf>;
+def  VST1d64  : VST1D<"vst1.64", v1i64, int_arm_neon_vsti>;
+
+def  VST1q8   : VST1Q<"vst1.8",  v16i8, int_arm_neon_vsti>;
+def  VST1q16  : VST1Q<"vst1.16", v8i16, int_arm_neon_vsti>;
+def  VST1q32  : VST1Q<"vst1.32", v4i32, int_arm_neon_vsti>;
+def  VST1qf   : VST1Q<"vst1.32", v4f32, int_arm_neon_vstf>;
+def  VST1q64  : VST1Q<"vst1.64", v2i64, int_arm_neon_vsti>;
+
 
 //===----------------------------------------------------------------------===//
 // NEON pattern fragments

Added: llvm/trunk/test/CodeGen/ARM/vst1.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/vst1.ll?rev=75037&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/ARM/vst1.ll (added)
+++ llvm/trunk/test/CodeGen/ARM/vst1.ll Wed Jul  8 15:32:02 2009
@@ -0,0 +1,77 @@
+; RUN: llvm-as < %s | llc -march=arm -mattr=+neon > %t
+; RUN: grep {vst1\\.8} %t | count 2
+; RUN: grep {vst1\\.16} %t | count 2
+; RUN: grep {vst1\\.32} %t | count 4
+; RUN: grep {vst1\\.64} %t | count 2
+
+define void @vst1i8(i8* %A, <8 x i8>* %B) nounwind {
+	%tmp1 = load <8 x i8>* %B
+	call void @llvm.arm.neon.vsti.v8i8(i8* %A, <8 x i8> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1i16(i16* %A, <4 x i16>* %B) nounwind {
+	%tmp1 = load <4 x i16>* %B
+	call void @llvm.arm.neon.vsti.v4i16(i16* %A, <4 x i16> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1i32(i32* %A, <2 x i32>* %B) nounwind {
+	%tmp1 = load <2 x i32>* %B
+	call void @llvm.arm.neon.vsti.v2i32(i32* %A, <2 x i32> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1f(float* %A, <2 x float>* %B) nounwind {
+	%tmp1 = load <2 x float>* %B
+	call void @llvm.arm.neon.vstf.v2f32(float* %A, <2 x float> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1i64(i64* %A, <1 x i64>* %B) nounwind {
+	%tmp1 = load <1 x i64>* %B
+	call void @llvm.arm.neon.vsti.v1i64(i64* %A, <1 x i64> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1Qi8(i8* %A, <16 x i8>* %B) nounwind {
+	%tmp1 = load <16 x i8>* %B
+	call void @llvm.arm.neon.vsti.v16i8(i8* %A, <16 x i8> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1Qi16(i16* %A, <8 x i16>* %B) nounwind {
+	%tmp1 = load <8 x i16>* %B
+	call void @llvm.arm.neon.vsti.v8i16(i16* %A, <8 x i16> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1Qi32(i32* %A, <4 x i32>* %B) nounwind {
+	%tmp1 = load <4 x i32>* %B
+	call void @llvm.arm.neon.vsti.v4i32(i32* %A, <4 x i32> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1Qf(float* %A, <4 x float>* %B) nounwind {
+	%tmp1 = load <4 x float>* %B
+	call void @llvm.arm.neon.vstf.v4f32(float* %A, <4 x float> %tmp1, i32 1)
+	ret void
+}
+
+define void @vst1Qi64(i64* %A, <2 x i64>* %B) nounwind {
+	%tmp1 = load <2 x i64>* %B
+	call void @llvm.arm.neon.vsti.v2i64(i64* %A, <2 x i64> %tmp1, i32 1)
+	ret void
+}
+
+declare void @llvm.arm.neon.vsti.v8i8(i8*, <8 x i8>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v4i16(i16*, <4 x i16>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v2i32(i32*, <2 x i32>, i32) nounwind readnone
+declare void @llvm.arm.neon.vstf.v2f32(float*, <2 x float>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v1i64(i64*, <1 x i64>, i32) nounwind readnone
+
+declare void @llvm.arm.neon.vsti.v16i8(i8*, <16 x i8>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v8i16(i16*, <8 x i16>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v4i32(i32*, <4 x i32>, i32) nounwind readnone
+declare void @llvm.arm.neon.vstf.v4f32(float*, <4 x float>, i32) nounwind readnone
+declare void @llvm.arm.neon.vsti.v2i64(i64*, <2 x i64>, i32) nounwind readnone





More information about the llvm-commits mailing list