summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHao Liu <Hao.Liu@arm.com>2013-10-10 15:01:24 +0000
committerHao Liu <Hao.Liu@arm.com>2013-10-10 15:01:24 +0000
commitd622bef31d11a5a6429fe7fad557c9b111e96f69 (patch)
tree9717677e5d819174ae2e85d817161d320b55dc70 /include
parent8ccf2b3c9e0f70220c88f3328ddebebd7866f92c (diff)
downloadllvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.tar.gz
llvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.tar.bz2
llvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.tar.xz
Implement AArch64 vector load/store multiple N-element structure class SIMD(lselem).
Including following 14 instructions: 4 ld1 insts: load multiple 1-element structure to sequential 1/2/3/4 registers. ld2/ld3/ld4: load multiple N-element structure to sequential N registers (N=2,3,4). 4 st1 insts: store multiple 1-element structure from sequential 1/2/3/4 registers. st2/st3/st4: store multiple N-element structure from sequential N registers (N = 2,3,4). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/ValueTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h
index 2e8f637f52..79f323341f 100644
--- a/include/llvm/CodeGen/ValueTypes.h
+++ b/include/llvm/CodeGen/ValueTypes.h
@@ -208,7 +208,7 @@ namespace llvm {
bool is64BitVector() const {
return (SimpleTy == MVT::v8i8 || SimpleTy == MVT::v4i16 ||
SimpleTy == MVT::v2i32 || SimpleTy == MVT::v1i64 ||
- SimpleTy == MVT::v2f32);
+ SimpleTy == MVT::v1f64 || SimpleTy == MVT::v2f32);
}
/// is128BitVector - Return true if this is a 128-bit vector type.