Add helpers for getting scalar sizes of vector value types.
[oota-llvm.git] / include / llvm / CodeGen / ValueTypes.h
1 //===- CodeGen/ValueTypes.h - Low-Level Target independ. types --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the set of low-level target independent types which various
11 // values in the code generator are.  This allows the target specific behavior
12 // of instructions to be described to target independent passes.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_CODEGEN_VALUETYPES_H
17 #define LLVM_CODEGEN_VALUETYPES_H
18
19 #include "llvm/Support/DataTypes.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/MathExtras.h"
22 #include <cassert>
23 #include <string>
24
25 namespace llvm {
26   class Type;
27   class LLVMContext;
28   struct EVT;
29
30   /// MVT - Machine Value Type. Every type that is supported natively by some
31   /// processor targeted by LLVM occurs here. This means that any legal value
32   /// type can be represented by an MVT.
33   class MVT {
34   public:
35     enum SimpleValueType {
36       // INVALID_SIMPLE_VALUE_TYPE - Simple value types less than zero are
37       // considered extended value types.
38       INVALID_SIMPLE_VALUE_TYPE = -1,
39
40       // If you change this numbering, you must change the values in
41       // ValueTypes.td as well!
42       Other          =   0,   // This is a non-standard value
43       i1             =   1,   // This is a 1 bit integer value
44       i8             =   2,   // This is an 8 bit integer value
45       i16            =   3,   // This is a 16 bit integer value
46       i32            =   4,   // This is a 32 bit integer value
47       i64            =   5,   // This is a 64 bit integer value
48       i128           =   6,   // This is a 128 bit integer value
49
50       FIRST_INTEGER_VALUETYPE = i1,
51       LAST_INTEGER_VALUETYPE  = i128,
52
53       f16            =   7,   // This is a 16 bit floating point value
54       f32            =   8,   // This is a 32 bit floating point value
55       f64            =   9,   // This is a 64 bit floating point value
56       f80            =  10,   // This is a 80 bit floating point value
57       f128           =  11,   // This is a 128 bit floating point value
58       ppcf128        =  12,   // This is a PPC 128-bit floating point value
59
60       FIRST_FP_VALUETYPE = f16,
61       LAST_FP_VALUETYPE  = ppcf128,
62
63       v2i1           =  13,   //  2 x i1
64       v4i1           =  14,   //  4 x i1
65       v8i1           =  15,   //  8 x i1
66       v16i1          =  16,   // 16 x i1
67       v32i1          =  17,   // 32 x i1
68       v64i1          =  18,   // 64 x i1
69
70       v1i8           =  19,   //  1 x i8
71       v2i8           =  20,   //  2 x i8
72       v4i8           =  21,   //  4 x i8
73       v8i8           =  22,   //  8 x i8
74       v16i8          =  23,   // 16 x i8
75       v32i8          =  24,   // 32 x i8
76       v64i8          =  25,   // 64 x i8
77       v1i16          =  26,   //  1 x i16
78       v2i16          =  27,   //  2 x i16
79       v4i16          =  28,   //  4 x i16
80       v8i16          =  29,   //  8 x i16
81       v16i16         =  30,   // 16 x i16
82       v32i16         =  31,   // 32 x i16
83       v1i32          =  32,   //  1 x i32
84       v2i32          =  33,   //  2 x i32
85       v4i32          =  34,   //  4 x i32
86       v8i32          =  35,   //  8 x i32
87       v16i32         =  36,   // 16 x i32
88       v1i64          =  37,   //  1 x i64
89       v2i64          =  38,   //  2 x i64
90       v4i64          =  39,   //  4 x i64
91       v8i64          =  40,   //  8 x i64
92       v16i64         =  41,   // 16 x i64
93
94       FIRST_INTEGER_VECTOR_VALUETYPE = v2i1,
95       LAST_INTEGER_VECTOR_VALUETYPE = v16i64,
96
97       v2f16          =  42,   //  2 x f16
98       v4f16          =  43,   //  4 x f16
99       v8f16          =  44,   //  8 x f16
100       v1f32          =  45,   //  1 x f32
101       v2f32          =  46,   //  2 x f32
102       v4f32          =  47,   //  4 x f32
103       v8f32          =  48,   //  8 x f32
104       v16f32         =  49,   // 16 x f32
105       v1f64          =  50,   //  1 x f64
106       v2f64          =  51,   //  2 x f64
107       v4f64          =  52,   //  4 x f64
108       v8f64          =  53,   //  8 x f64
109
110       FIRST_FP_VECTOR_VALUETYPE = v2f16,
111       LAST_FP_VECTOR_VALUETYPE = v8f64,
112
113       FIRST_VECTOR_VALUETYPE = v2i1,
114       LAST_VECTOR_VALUETYPE  = v8f64,
115
116       x86mmx         =  54,   // This is an X86 MMX value
117
118       Glue           =  55,   // This glues nodes together during pre-RA sched
119
120       isVoid         =  56,   // This has no value
121
122       Untyped        =  57,   // This value takes a register, but has
123                               // unspecified type.  The register class
124                               // will be determined by the opcode.
125
126       LAST_VALUETYPE =  58,   // This always remains at the end of the list.
127
128       // This is the current maximum for LAST_VALUETYPE.
129       // MVT::MAX_ALLOWED_VALUETYPE is used for asserts and to size bit vectors
130       // This value must be a multiple of 32.
131       MAX_ALLOWED_VALUETYPE = 64,
132
133       // Metadata - This is MDNode or MDString.
134       Metadata       = 250,
135
136       // iPTRAny - An int value the size of the pointer of the current
137       // target to any address space. This must only be used internal to
138       // tblgen. Other than for overloading, we treat iPTRAny the same as iPTR.
139       iPTRAny        = 251,
140
141       // vAny - A vector with any length and element size. This is used
142       // for intrinsics that have overloadings based on vector types.
143       // This is only for tblgen's consumption!
144       vAny           = 252,
145
146       // fAny - Any floating-point or vector floating-point value. This is used
147       // for intrinsics that have overloadings based on floating-point types.
148       // This is only for tblgen's consumption!
149       fAny           = 253,
150
151       // iAny - An integer or vector integer value of any bit width. This is
152       // used for intrinsics that have overloadings based on integer bit widths.
153       // This is only for tblgen's consumption!
154       iAny           = 254,
155
156       // iPTR - An int value the size of the pointer of the current
157       // target.  This should only be used internal to tblgen!
158       iPTR           = 255
159     };
160
161     SimpleValueType SimpleTy;
162
163     MVT() : SimpleTy((SimpleValueType)(INVALID_SIMPLE_VALUE_TYPE)) {}
164     MVT(SimpleValueType SVT) : SimpleTy(SVT) { }
165
166     bool operator>(const MVT& S)  const { return SimpleTy >  S.SimpleTy; }
167     bool operator<(const MVT& S)  const { return SimpleTy <  S.SimpleTy; }
168     bool operator==(const MVT& S) const { return SimpleTy == S.SimpleTy; }
169     bool operator!=(const MVT& S) const { return SimpleTy != S.SimpleTy; }
170     bool operator>=(const MVT& S) const { return SimpleTy >= S.SimpleTy; }
171     bool operator<=(const MVT& S) const { return SimpleTy <= S.SimpleTy; }
172
173     /// isFloatingPoint - Return true if this is a FP, or a vector FP type.
174     bool isFloatingPoint() const {
175       return ((SimpleTy >= MVT::FIRST_FP_VALUETYPE &&
176                SimpleTy <= MVT::LAST_FP_VALUETYPE) ||
177               (SimpleTy >= MVT::FIRST_FP_VECTOR_VALUETYPE &&
178                SimpleTy <= MVT::LAST_FP_VECTOR_VALUETYPE));
179     }
180
181     /// isInteger - Return true if this is an integer, or a vector integer type.
182     bool isInteger() const {
183       return ((SimpleTy >= MVT::FIRST_INTEGER_VALUETYPE &&
184                SimpleTy <= MVT::LAST_INTEGER_VALUETYPE) ||
185               (SimpleTy >= MVT::FIRST_INTEGER_VECTOR_VALUETYPE &&
186                SimpleTy <= MVT::LAST_INTEGER_VECTOR_VALUETYPE));
187     }
188
189     /// isVector - Return true if this is a vector value type.
190     bool isVector() const {
191       return (SimpleTy >= MVT::FIRST_VECTOR_VALUETYPE &&
192               SimpleTy <= MVT::LAST_VECTOR_VALUETYPE);
193     }
194
195     /// is16BitVector - Return true if this is a 16-bit vector type.
196     bool is16BitVector() const {
197       return (SimpleTy == MVT::v2i8  || SimpleTy == MVT::v1i16 ||
198               SimpleTy == MVT::v16i1);
199     }
200
201     /// is32BitVector - Return true if this is a 32-bit vector type.
202     bool is32BitVector() const {
203       return (SimpleTy == MVT::v4i8  || SimpleTy == MVT::v2i16 ||
204               SimpleTy == MVT::v1i32);
205     }
206
207     /// is64BitVector - Return true if this is a 64-bit vector type.
208     bool is64BitVector() const {
209       return (SimpleTy == MVT::v8i8  || SimpleTy == MVT::v4i16 ||
210               SimpleTy == MVT::v2i32 || SimpleTy == MVT::v1i64 ||
211               SimpleTy == MVT::v1f64 || SimpleTy == MVT::v2f32);
212     }
213
214     /// is128BitVector - Return true if this is a 128-bit vector type.
215     bool is128BitVector() const {
216       return (SimpleTy == MVT::v16i8 || SimpleTy == MVT::v8i16 ||
217               SimpleTy == MVT::v4i32 || SimpleTy == MVT::v2i64 ||
218               SimpleTy == MVT::v4f32 || SimpleTy == MVT::v2f64);
219     }
220
221     /// is256BitVector - Return true if this is a 256-bit vector type.
222     bool is256BitVector() const {
223       return (SimpleTy == MVT::v8f32 || SimpleTy == MVT::v4f64  ||
224               SimpleTy == MVT::v32i8 || SimpleTy == MVT::v16i16 ||
225               SimpleTy == MVT::v8i32 || SimpleTy == MVT::v4i64);
226     }
227
228     /// is512BitVector - Return true if this is a 512-bit vector type.
229     bool is512BitVector() const {
230       return (SimpleTy == MVT::v8f64 || SimpleTy == MVT::v16f32 ||
231               SimpleTy == MVT::v64i8 || SimpleTy == MVT::v32i16 ||
232               SimpleTy == MVT::v8i64 || SimpleTy == MVT::v16i32);
233     }
234
235     /// is1024BitVector - Return true if this is a 1024-bit vector type.
236     bool is1024BitVector() const {
237       return (SimpleTy == MVT::v16i64);
238     }
239
240     /// isOverloaded - Return true if this is an overloaded type for TableGen.
241     bool isOverloaded() const {
242       return (SimpleTy==MVT::iAny || SimpleTy==MVT::fAny ||
243               SimpleTy==MVT::vAny || SimpleTy==MVT::iPTRAny);
244     }
245
246     /// isPow2VectorType - Returns true if the given vector is a power of 2.
247     bool isPow2VectorType() const {
248       unsigned NElts = getVectorNumElements();
249       return !(NElts & (NElts - 1));
250     }
251
252     /// getPow2VectorType - Widens the length of the given vector MVT up to
253     /// the nearest power of 2 and returns that type.
254     MVT getPow2VectorType() const {
255       if (isPow2VectorType())
256         return *this;
257
258       unsigned NElts = getVectorNumElements();
259       unsigned Pow2NElts = 1 << Log2_32_Ceil(NElts);
260       return MVT::getVectorVT(getVectorElementType(), Pow2NElts);
261     }
262
263     /// getScalarType - If this is a vector type, return the element type,
264     /// otherwise return this.
265     MVT getScalarType() const {
266       return isVector() ? getVectorElementType() : *this;
267     }
268
269     MVT getVectorElementType() const {
270       switch (SimpleTy) {
271       default:
272         llvm_unreachable("Not a vector MVT!");
273       case v2i1 :
274       case v4i1 :
275       case v8i1 :
276       case v16i1 :
277       case v32i1 :
278       case v64i1: return i1;
279       case v1i8 :
280       case v2i8 :
281       case v4i8 :
282       case v8i8 :
283       case v16i8:
284       case v32i8:
285       case v64i8: return i8;
286       case v1i16:
287       case v2i16:
288       case v4i16:
289       case v8i16:
290       case v16i16:
291       case v32i16: return i16;
292       case v1i32:
293       case v2i32:
294       case v4i32:
295       case v8i32:
296       case v16i32: return i32;
297       case v1i64:
298       case v2i64:
299       case v4i64:
300       case v8i64:
301       case v16i64: return i64;
302       case v2f16:
303       case v4f16:
304       case v8f16: return f16;
305       case v1f32:
306       case v2f32:
307       case v4f32:
308       case v8f32:
309       case v16f32: return f32;
310       case v1f64:
311       case v2f64:
312       case v4f64:
313       case v8f64: return f64;
314       }
315     }
316
317     unsigned getVectorNumElements() const {
318       switch (SimpleTy) {
319       default:
320         llvm_unreachable("Not a vector MVT!");
321       case v32i1:
322       case v32i8:
323       case v32i16: return 32;
324       case v64i1:
325       case v64i8: return 64;
326       case v16i1:
327       case v16i8:
328       case v16i16:
329       case v16i32:
330       case v16i64:
331       case v16f32: return 16;
332       case v8i1 :
333       case v8i8 :
334       case v8i16:
335       case v8i32:
336       case v8i64:
337       case v8f16:
338       case v8f32:
339       case v8f64: return 8;
340       case v4i1:
341       case v4i8:
342       case v4i16:
343       case v4i32:
344       case v4i64:
345       case v4f16:
346       case v4f32:
347       case v4f64: return 4;
348       case v2i1:
349       case v2i8:
350       case v2i16:
351       case v2i32:
352       case v2i64:
353       case v2f16:
354       case v2f32:
355       case v2f64: return 2;
356       case v1i8:
357       case v1i16:
358       case v1i32:
359       case v1i64:
360       case v1f32:
361       case v1f64: return 1;
362       }
363     }
364
365     unsigned getSizeInBits() const {
366       switch (SimpleTy) {
367       default:
368         llvm_unreachable("getSizeInBits called on extended MVT.");
369       case Other:
370         llvm_unreachable("Value type is non-standard value, Other.");
371       case iPTR:
372         llvm_unreachable("Value type size is target-dependent. Ask TLI.");
373       case iPTRAny:
374       case iAny:
375       case fAny:
376       case vAny:
377         llvm_unreachable("Value type is overloaded.");
378       case Metadata:
379         llvm_unreachable("Value type is metadata.");
380       case i1  :  return 1;
381       case v2i1:  return 2;
382       case v4i1:  return 4;
383       case i8  :
384       case v1i8:
385       case v8i1: return 8;
386       case i16 :
387       case f16:
388       case v16i1:
389       case v2i8:
390       case v1i16: return 16;
391       case f32 :
392       case i32 :
393       case v32i1:
394       case v4i8:
395       case v2i16:
396       case v2f16:
397       case v1f32:
398       case v1i32: return 32;
399       case x86mmx:
400       case f64 :
401       case i64 :
402       case v64i1:
403       case v8i8:
404       case v4i16:
405       case v2i32:
406       case v1i64:
407       case v4f16:
408       case v2f32:
409       case v1f64: return 64;
410       case f80 :  return 80;
411       case f128:
412       case ppcf128:
413       case i128:
414       case v16i8:
415       case v8i16:
416       case v4i32:
417       case v2i64:
418       case v8f16:
419       case v4f32:
420       case v2f64: return 128;
421       case v32i8:
422       case v16i16:
423       case v8i32:
424       case v4i64:
425       case v8f32:
426       case v4f64: return 256;
427       case v64i8:
428       case v32i16:
429       case v16i32:
430       case v8i64:
431       case v16f32:
432       case v8f64: return 512;
433       case v16i64:return 1024;
434       }
435     }
436
437     unsigned getScalarSizeInBits() const {
438       return getScalarType().getSizeInBits();
439     }
440
441     /// getStoreSize - Return the number of bytes overwritten by a store
442     /// of the specified value type.
443     unsigned getStoreSize() const {
444       return (getSizeInBits() + 7) / 8;
445     }
446
447     /// getStoreSizeInBits - Return the number of bits overwritten by a store
448     /// of the specified value type.
449     unsigned getStoreSizeInBits() const {
450       return getStoreSize() * 8;
451     }
452
453     /// Return true if this has more bits than VT.
454     bool bitsGT(MVT VT) const {
455       return getSizeInBits() > VT.getSizeInBits();
456     }
457
458     /// Return true if this has no less bits than VT.
459     bool bitsGE(MVT VT) const {
460       return getSizeInBits() >= VT.getSizeInBits();
461     }
462
463     /// Return true if this has less bits than VT.
464     bool bitsLT(MVT VT) const {
465       return getSizeInBits() < VT.getSizeInBits();
466     }
467
468     /// Return true if this has no more bits than VT.
469     bool bitsLE(MVT VT) const {
470       return getSizeInBits() <= VT.getSizeInBits();
471     }
472
473
474     static MVT getFloatingPointVT(unsigned BitWidth) {
475       switch (BitWidth) {
476       default:
477         llvm_unreachable("Bad bit width!");
478       case 16:
479         return MVT::f16;
480       case 32:
481         return MVT::f32;
482       case 64:
483         return MVT::f64;
484       case 80:
485         return MVT::f80;
486       case 128:
487         return MVT::f128;
488       }
489     }
490
491     static MVT getIntegerVT(unsigned BitWidth) {
492       switch (BitWidth) {
493       default:
494         return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE);
495       case 1:
496         return MVT::i1;
497       case 8:
498         return MVT::i8;
499       case 16:
500         return MVT::i16;
501       case 32:
502         return MVT::i32;
503       case 64:
504         return MVT::i64;
505       case 128:
506         return MVT::i128;
507       }
508     }
509
510     static MVT getVectorVT(MVT VT, unsigned NumElements) {
511       switch (VT.SimpleTy) {
512       default:
513         break;
514       case MVT::i1:
515         if (NumElements == 2)  return MVT::v2i1;
516         if (NumElements == 4)  return MVT::v4i1;
517         if (NumElements == 8)  return MVT::v8i1;
518         if (NumElements == 16) return MVT::v16i1;
519         if (NumElements == 32) return MVT::v32i1;
520         if (NumElements == 64) return MVT::v64i1;
521         break;
522       case MVT::i8:
523         if (NumElements == 1)  return MVT::v1i8;
524         if (NumElements == 2)  return MVT::v2i8;
525         if (NumElements == 4)  return MVT::v4i8;
526         if (NumElements == 8)  return MVT::v8i8;
527         if (NumElements == 16) return MVT::v16i8;
528         if (NumElements == 32) return MVT::v32i8;
529         if (NumElements == 64) return MVT::v64i8;
530         break;
531       case MVT::i16:
532         if (NumElements == 1)  return MVT::v1i16;
533         if (NumElements == 2)  return MVT::v2i16;
534         if (NumElements == 4)  return MVT::v4i16;
535         if (NumElements == 8)  return MVT::v8i16;
536         if (NumElements == 16) return MVT::v16i16;
537         if (NumElements == 32) return MVT::v32i16;
538         break;
539       case MVT::i32:
540         if (NumElements == 1)  return MVT::v1i32;
541         if (NumElements == 2)  return MVT::v2i32;
542         if (NumElements == 4)  return MVT::v4i32;
543         if (NumElements == 8)  return MVT::v8i32;
544         if (NumElements == 16) return MVT::v16i32;
545         break;
546       case MVT::i64:
547         if (NumElements == 1)  return MVT::v1i64;
548         if (NumElements == 2)  return MVT::v2i64;
549         if (NumElements == 4)  return MVT::v4i64;
550         if (NumElements == 8)  return MVT::v8i64;
551         if (NumElements == 16) return MVT::v16i64;
552         break;
553       case MVT::f16:
554         if (NumElements == 2)  return MVT::v2f16;
555         if (NumElements == 4)  return MVT::v4f16;
556         if (NumElements == 8)  return MVT::v8f16;
557         break;
558       case MVT::f32:
559         if (NumElements == 1)  return MVT::v1f32;
560         if (NumElements == 2)  return MVT::v2f32;
561         if (NumElements == 4)  return MVT::v4f32;
562         if (NumElements == 8)  return MVT::v8f32;
563         if (NumElements == 16) return MVT::v16f32;
564         break;
565       case MVT::f64:
566         if (NumElements == 1)  return MVT::v1f64;
567         if (NumElements == 2)  return MVT::v2f64;
568         if (NumElements == 4)  return MVT::v4f64;
569         if (NumElements == 8)  return MVT::v8f64;
570         break;
571       }
572       return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE);
573     }
574
575     /// Return the value type corresponding to the specified type.  This returns
576     /// all pointers as iPTR.  If HandleUnknown is true, unknown types are
577     /// returned as Other, otherwise they are invalid.
578     static MVT getVT(Type *Ty, bool HandleUnknown = false);
579
580   };
581
582
583   /// EVT - Extended Value Type.  Capable of holding value types which are not
584   /// native for any processor (such as the i12345 type), as well as the types
585   /// a MVT can represent.
586   struct EVT {
587   private:
588     MVT V;
589     Type *LLVMTy;
590
591   public:
592     EVT() : V((MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE)),
593             LLVMTy(0) {}
594     EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { }
595     EVT(MVT S) : V(S), LLVMTy(0) {}
596
597     bool operator==(EVT VT) const {
598       return !(*this != VT);
599     }
600     bool operator!=(EVT VT) const {
601       if (V.SimpleTy != VT.V.SimpleTy)
602         return true;
603       if (V.SimpleTy < 0)
604         return LLVMTy != VT.LLVMTy;
605       return false;
606     }
607
608     /// getFloatingPointVT - Returns the EVT that represents a floating point
609     /// type with the given number of bits.  There are two floating point types
610     /// with 128 bits - this returns f128 rather than ppcf128.
611     static EVT getFloatingPointVT(unsigned BitWidth) {
612       return MVT::getFloatingPointVT(BitWidth);
613     }
614
615     /// getIntegerVT - Returns the EVT that represents an integer with the given
616     /// number of bits.
617     static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth) {
618       MVT M = MVT::getIntegerVT(BitWidth);
619       if (M.SimpleTy >= 0)
620         return M;
621       return getExtendedIntegerVT(Context, BitWidth);
622     }
623
624     /// getVectorVT - Returns the EVT that represents a vector NumElements in
625     /// length, where each element is of type VT.
626     static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements) {
627       MVT M = MVT::getVectorVT(VT.V, NumElements);
628       if (M.SimpleTy >= 0)
629         return M;
630       return getExtendedVectorVT(Context, VT, NumElements);
631     }
632
633     /// changeVectorElementTypeToInteger - Return a vector with the same number
634     /// of elements as this vector, but with the element type converted to an
635     /// integer type with the same bitwidth.
636     EVT changeVectorElementTypeToInteger() const {
637       if (!isSimple())
638         return changeExtendedVectorElementTypeToInteger();
639       MVT EltTy = getSimpleVT().getVectorElementType();
640       unsigned BitWidth = EltTy.getSizeInBits();
641       MVT IntTy = MVT::getIntegerVT(BitWidth);
642       MVT VecTy = MVT::getVectorVT(IntTy, getVectorNumElements());
643       assert(VecTy.SimpleTy >= 0 &&
644              "Simple vector VT not representable by simple integer vector VT!");
645       return VecTy;
646     }
647
648     /// isSimple - Test if the given EVT is simple (as opposed to being
649     /// extended).
650     bool isSimple() const {
651       return V.SimpleTy >= 0;
652     }
653
654     /// isExtended - Test if the given EVT is extended (as opposed to
655     /// being simple).
656     bool isExtended() const {
657       return !isSimple();
658     }
659
660     /// isFloatingPoint - Return true if this is a FP, or a vector FP type.
661     bool isFloatingPoint() const {
662       return isSimple() ? V.isFloatingPoint() : isExtendedFloatingPoint();
663     }
664
665     /// isInteger - Return true if this is an integer, or a vector integer type.
666     bool isInteger() const {
667       return isSimple() ? V.isInteger() : isExtendedInteger();
668     }
669
670     /// isVector - Return true if this is a vector value type.
671     bool isVector() const {
672       return isSimple() ? V.isVector() : isExtendedVector();
673     }
674
675     /// is16BitVector - Return true if this is a 16-bit vector type.
676     bool is16BitVector() const {
677       return isSimple() ? V.is16BitVector() : isExtended16BitVector();
678     }
679
680     /// is32BitVector - Return true if this is a 32-bit vector type.
681     bool is32BitVector() const {
682       return isSimple() ? V.is32BitVector() : isExtended32BitVector();
683     }
684
685     /// is64BitVector - Return true if this is a 64-bit vector type.
686     bool is64BitVector() const {
687       return isSimple() ? V.is64BitVector() : isExtended64BitVector();
688     }
689
690     /// is128BitVector - Return true if this is a 128-bit vector type.
691     bool is128BitVector() const {
692       return isSimple() ? V.is128BitVector() : isExtended128BitVector();
693     }
694
695     /// is256BitVector - Return true if this is a 256-bit vector type.
696     bool is256BitVector() const {
697       return isSimple() ? V.is256BitVector() : isExtended256BitVector();
698     }
699
700     /// is512BitVector - Return true if this is a 512-bit vector type.
701     bool is512BitVector() const {
702       return isSimple() ? V.is512BitVector() : isExtended512BitVector();
703     }
704
705     /// is1024BitVector - Return true if this is a 1024-bit vector type.
706     bool is1024BitVector() const {
707       return isSimple() ? V.is1024BitVector() : isExtended1024BitVector();
708     }
709
710     /// isOverloaded - Return true if this is an overloaded type for TableGen.
711     bool isOverloaded() const {
712       return (V==MVT::iAny || V==MVT::fAny || V==MVT::vAny || V==MVT::iPTRAny);
713     }
714
715     /// isByteSized - Return true if the bit size is a multiple of 8.
716     bool isByteSized() const {
717       return (getSizeInBits() & 7) == 0;
718     }
719
720     /// isRound - Return true if the size is a power-of-two number of bytes.
721     bool isRound() const {
722       unsigned BitSize = getSizeInBits();
723       return BitSize >= 8 && !(BitSize & (BitSize - 1));
724     }
725
726     /// bitsEq - Return true if this has the same number of bits as VT.
727     bool bitsEq(EVT VT) const {
728       if (EVT::operator==(VT)) return true;
729       return getSizeInBits() == VT.getSizeInBits();
730     }
731
732     /// bitsGT - Return true if this has more bits than VT.
733     bool bitsGT(EVT VT) const {
734       if (EVT::operator==(VT)) return false;
735       return getSizeInBits() > VT.getSizeInBits();
736     }
737
738     /// bitsGE - Return true if this has no less bits than VT.
739     bool bitsGE(EVT VT) const {
740       if (EVT::operator==(VT)) return true;
741       return getSizeInBits() >= VT.getSizeInBits();
742     }
743
744     /// bitsLT - Return true if this has less bits than VT.
745     bool bitsLT(EVT VT) const {
746       if (EVT::operator==(VT)) return false;
747       return getSizeInBits() < VT.getSizeInBits();
748     }
749
750     /// bitsLE - Return true if this has no more bits than VT.
751     bool bitsLE(EVT VT) const {
752       if (EVT::operator==(VT)) return true;
753       return getSizeInBits() <= VT.getSizeInBits();
754     }
755
756
757     /// getSimpleVT - Return the SimpleValueType held in the specified
758     /// simple EVT.
759     MVT getSimpleVT() const {
760       assert(isSimple() && "Expected a SimpleValueType!");
761       return V;
762     }
763
764     /// getScalarType - If this is a vector type, return the element type,
765     /// otherwise return this.
766     EVT getScalarType() const {
767       return isVector() ? getVectorElementType() : *this;
768     }
769
770     /// getVectorElementType - Given a vector type, return the type of
771     /// each element.
772     EVT getVectorElementType() const {
773       assert(isVector() && "Invalid vector type!");
774       if (isSimple())
775         return V.getVectorElementType();
776       return getExtendedVectorElementType();
777     }
778
779     /// getVectorNumElements - Given a vector type, return the number of
780     /// elements it contains.
781     unsigned getVectorNumElements() const {
782       assert(isVector() && "Invalid vector type!");
783       if (isSimple())
784         return V.getVectorNumElements();
785       return getExtendedVectorNumElements();
786     }
787
788     /// getSizeInBits - Return the size of the specified value type in bits.
789     unsigned getSizeInBits() const {
790       if (isSimple())
791         return V.getSizeInBits();
792       return getExtendedSizeInBits();
793     }
794
795     unsigned getScalarSizeInBits() const {
796       return getScalarType().getSizeInBits();
797     }
798
799     /// getStoreSize - Return the number of bytes overwritten by a store
800     /// of the specified value type.
801     unsigned getStoreSize() const {
802       return (getSizeInBits() + 7) / 8;
803     }
804
805     /// getStoreSizeInBits - Return the number of bits overwritten by a store
806     /// of the specified value type.
807     unsigned getStoreSizeInBits() const {
808       return getStoreSize() * 8;
809     }
810
811     /// getRoundIntegerType - Rounds the bit-width of the given integer EVT up
812     /// to the nearest power of two (and at least to eight), and returns the
813     /// integer EVT with that number of bits.
814     EVT getRoundIntegerType(LLVMContext &Context) const {
815       assert(isInteger() && !isVector() && "Invalid integer type!");
816       unsigned BitWidth = getSizeInBits();
817       if (BitWidth <= 8)
818         return EVT(MVT::i8);
819       return getIntegerVT(Context, 1 << Log2_32_Ceil(BitWidth));
820     }
821
822     /// getHalfSizedIntegerVT - Finds the smallest simple value type that is
823     /// greater than or equal to half the width of this EVT. If no simple
824     /// value type can be found, an extended integer value type of half the
825     /// size (rounded up) is returned.
826     EVT getHalfSizedIntegerVT(LLVMContext &Context) const {
827       assert(isInteger() && !isVector() && "Invalid integer type!");
828       unsigned EVTSize = getSizeInBits();
829       for (unsigned IntVT = MVT::FIRST_INTEGER_VALUETYPE;
830           IntVT <= MVT::LAST_INTEGER_VALUETYPE; ++IntVT) {
831         EVT HalfVT = EVT((MVT::SimpleValueType)IntVT);
832         if (HalfVT.getSizeInBits() * 2 >= EVTSize)
833           return HalfVT;
834       }
835       return getIntegerVT(Context, (EVTSize + 1) / 2);
836     }
837
838     /// isPow2VectorType - Returns true if the given vector is a power of 2.
839     bool isPow2VectorType() const {
840       unsigned NElts = getVectorNumElements();
841       return !(NElts & (NElts - 1));
842     }
843
844     /// getPow2VectorType - Widens the length of the given vector EVT up to
845     /// the nearest power of 2 and returns that type.
846     EVT getPow2VectorType(LLVMContext &Context) const {
847       if (!isPow2VectorType()) {
848         unsigned NElts = getVectorNumElements();
849         unsigned Pow2NElts = 1 <<  Log2_32_Ceil(NElts);
850         return EVT::getVectorVT(Context, getVectorElementType(), Pow2NElts);
851       }
852       else {
853         return *this;
854       }
855     }
856
857     /// getEVTString - This function returns value type as a string,
858     /// e.g. "i32".
859     std::string getEVTString() const;
860
861     /// getTypeForEVT - This method returns an LLVM type corresponding to the
862     /// specified EVT.  For integer types, this returns an unsigned type.  Note
863     /// that this will abort for types that cannot be represented.
864     Type *getTypeForEVT(LLVMContext &Context) const;
865
866     /// getEVT - Return the value type corresponding to the specified type.
867     /// This returns all pointers as iPTR.  If HandleUnknown is true, unknown
868     /// types are returned as Other, otherwise they are invalid.
869     static EVT getEVT(Type *Ty, bool HandleUnknown = false);
870
871     intptr_t getRawBits() const {
872       if (isSimple())
873         return V.SimpleTy;
874       else
875         return (intptr_t)(LLVMTy);
876     }
877
878     /// compareRawBits - A meaningless but well-behaved order, useful for
879     /// constructing containers.
880     struct compareRawBits {
881       bool operator()(EVT L, EVT R) const {
882         if (L.V.SimpleTy == R.V.SimpleTy)
883           return L.LLVMTy < R.LLVMTy;
884         else
885           return L.V.SimpleTy < R.V.SimpleTy;
886       }
887     };
888
889   private:
890     // Methods for handling the Extended-type case in functions above.
891     // These are all out-of-line to prevent users of this header file
892     // from having a dependency on Type.h.
893     EVT changeExtendedVectorElementTypeToInteger() const;
894     static EVT getExtendedIntegerVT(LLVMContext &C, unsigned BitWidth);
895     static EVT getExtendedVectorVT(LLVMContext &C, EVT VT,
896                                    unsigned NumElements);
897     bool isExtendedFloatingPoint() const LLVM_READONLY;
898     bool isExtendedInteger() const LLVM_READONLY;
899     bool isExtendedVector() const LLVM_READONLY;
900     bool isExtended16BitVector() const LLVM_READONLY;
901     bool isExtended32BitVector() const LLVM_READONLY;
902     bool isExtended64BitVector() const LLVM_READONLY;
903     bool isExtended128BitVector() const LLVM_READONLY;
904     bool isExtended256BitVector() const LLVM_READONLY;
905     bool isExtended512BitVector() const LLVM_READONLY;
906     bool isExtended1024BitVector() const LLVM_READONLY;
907     EVT getExtendedVectorElementType() const;
908     unsigned getExtendedVectorNumElements() const LLVM_READONLY;
909     unsigned getExtendedSizeInBits() const;
910   };
911
912 } // End llvm namespace
913
914 #endif