summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-07-10 23:05:09 +0000
committerBob Wilson <bob.wilson@apple.com>2009-07-10 23:05:09 +0000
commit28eff96ee6a22c67baccc36ebd369b7e3aa0cd41 (patch)
treea64fe35b3924b079478ecc43b25b52133f444189 /utils
parent226b60827eb6483685772bdcf8d0856925f794b6 (diff)
downloadllvm-28eff96ee6a22c67baccc36ebd369b7e3aa0cd41.tar.gz
llvm-28eff96ee6a22c67baccc36ebd369b7e3aa0cd41.tar.bz2
llvm-28eff96ee6a22c67baccc36ebd369b7e3aa0cd41.tar.xz
Add new vector types for 192-bit, 348-bit and 512-bit sizes.
These are needed to represent ARM Neon struct datatypes containing 2, 3 or 4 separate vectors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75308 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/CodeGenTarget.cpp19
1 files changed, 17 insertions, 2 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp
index b0e896b7e8..ec0e6d7cc4 100644
--- a/utils/TableGen/CodeGenTarget.cpp
+++ b/utils/TableGen/CodeGenTarget.cpp
@@ -63,24 +63,39 @@ std::string llvm::getEnumName(MVT::SimpleValueType T) {
case MVT::v4i8: return "MVT::v4i8";
case MVT::v8i8: return "MVT::v8i8";
case MVT::v16i8: return "MVT::v16i8";
+ case MVT::v24i8: return "MVT::v24i8";
case MVT::v32i8: return "MVT::v32i8";
+ case MVT::v48i8: return "MVT::v48i8";
+ case MVT::v64i8: return "MVT::v64i8";
case MVT::v2i16: return "MVT::v2i16";
case MVT::v4i16: return "MVT::v4i16";
case MVT::v8i16: return "MVT::v8i16";
+ case MVT::v12i16: return "MVT::v12i16";
case MVT::v16i16: return "MVT::v16i16";
+ case MVT::v24i16: return "MVT::v24i16";
+ case MVT::v32i16: return "MVT::v32i16";
case MVT::v2i32: return "MVT::v2i32";
+ case MVT::v3i32: return "MVT::v3i32";
case MVT::v4i32: return "MVT::v4i32";
+ case MVT::v6i32: return "MVT::v6i32";
case MVT::v8i32: return "MVT::v8i32";
+ case MVT::v12i32: return "MVT::v12i32";
+ case MVT::v16i32: return "MVT::v16i32";
case MVT::v1i64: return "MVT::v1i64";
case MVT::v2i64: return "MVT::v2i64";
+ case MVT::v3i64: return "MVT::v3i64";
case MVT::v4i64: return "MVT::v4i64";
+ case MVT::v6i64: return "MVT::v6i64";
+ case MVT::v8i64: return "MVT::v8i64";
case MVT::v2f32: return "MVT::v2f32";
+ case MVT::v3f32: return "MVT::v3f32";
case MVT::v4f32: return "MVT::v4f32";
+ case MVT::v6f32: return "MVT::v6f32";
case MVT::v8f32: return "MVT::v8f32";
+ case MVT::v12f32: return "MVT::v12f32";
+ case MVT::v16f32: return "MVT::v16f32";
case MVT::v2f64: return "MVT::v2f64";
case MVT::v4f64: return "MVT::v4f64";
- case MVT::v3i32: return "MVT::v3i32";
- case MVT::v3f32: return "MVT::v3f32";
case MVT::Metadata: return "MVT::Metadata";
case MVT::iPTR: return "MVT::iPTR";
case MVT::iPTRAny: return "MVT::iPTRAny";