summaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMInstrNEON.td
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-10-08 05:18:18 +0000
committerBob Wilson <bob.wilson@apple.com>2009-10-08 05:18:18 +0000
commitdeb3141cf522cdd9f9330c8100280031ba5e0d9d (patch)
tree089f9c09506d078aae858a15160a0e0a8d3ed300 /lib/Target/ARM/ARMInstrNEON.td
parent6d80d2b6e0e850695bc4c1f6747c18fb697cdf18 (diff)
downloadexternal_llvm-deb3141cf522cdd9f9330c8100280031ba5e0d9d.zip
external_llvm-deb3141cf522cdd9f9330c8100280031ba5e0d9d.tar.gz
external_llvm-deb3141cf522cdd9f9330c8100280031ba5e0d9d.tar.bz2
Add codegen support for NEON vst4 intrinsics with <1 x i64> vectors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrNEON.td')
-rw-r--r--lib/Target/ARM/ARMInstrNEON.td4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td
index 40832e5..d2231bf 100644
--- a/lib/Target/ARM/ARMInstrNEON.td
+++ b/lib/Target/ARM/ARMInstrNEON.td
@@ -406,6 +406,10 @@ class VST4WB<bits<4> op7_4, string OpcodeStr>
def VST4d8 : VST4D<0b0000, "vst4.8">;
def VST4d16 : VST4D<0b0100, "vst4.16">;
def VST4d32 : VST4D<0b1000, "vst4.32">;
+def VST4d64 : NLdSt<0,0b00,0b0010,0b1100, (outs),
+ (ins addrmode6:$addr, DPR:$src1, DPR:$src2, DPR:$src3,
+ DPR:$src4), IIC_VST,
+ "vst1.64\t\\{$src1,$src2,$src3,$src4\\}, $addr", "", []>;
// vst4 to double-spaced even registers.
def VST4q8a : VST4WB<0b0000, "vst4.8">;