Teach the type lowering code about turning packed types into vector 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 was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source 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 <cassert>
20
21 namespace llvm {
22   class Type;
23
24 /// MVT namespace - This namespace defines the ValueType enum, which contains
25 /// the various low-level value types.
26 ///
27 namespace MVT {  // MVT = Machine Value Types
28   enum ValueType {
29     // If you change this numbering, you must change the values in Target.td as
30     // well!
31     Other          =   0,   // This is a non-standard value
32     i1             =   1,   // This is a 1 bit integer value
33     i8             =   2,   // This is an 8 bit integer value
34     i16            =   3,   // This is a 16 bit integer value
35     i32            =   4,   // This is a 32 bit integer value
36     i64            =   5,   // This is a 64 bit integer value
37     i128           =   6,   // This is a 128 bit integer value
38
39     f32            =   7,   // This is a 32 bit floating point value
40     f64            =   8,   // This is a 64 bit floating point value
41     f80            =   9,   // This is a 80 bit floating point value
42     f128           =  10,   // This is a 128 bit floating point value
43     Flag           =  11,   // This is a condition code or machine flag.
44
45     isVoid         =  12,   // This has no value
46     
47     Vector         =  13,   // This is an abstract vector type, which will
48                             // be refined into a target vector type, or
49                             // scalarized.
50
51     LAST_VALUETYPE,         // This always remains at the end of the list.
52   };
53
54   static inline bool isInteger(ValueType VT) {
55     return VT >= i1 && VT <= i128;
56   }
57   static inline bool isFloatingPoint(ValueType VT) {
58     return VT >= f32 && VT <= f128;
59   }
60
61   static inline unsigned getSizeInBits(ValueType VT) {
62     switch (VT) {
63     default: assert(0 && "ValueType has no known size!");
64     case MVT::i1  : return 1;
65     case MVT::i8  : return 8;
66     case MVT::i16 : return 16;
67     case MVT::f32 :
68     case MVT::i32 : return 32;
69     case MVT::f64 :
70     case MVT::i64 : return 64;
71     case MVT::f80 : return 80;
72     case MVT::f128:
73     case MVT::i128: return 128;
74     }
75   }
76
77   /// MVT::getValueTypeString - This function returns value type as a string,
78   /// e.g. "i32".
79   const char *getValueTypeString(ValueType VT);
80
81   /// MVT::getTypeForValueType - This method returns an LLVM type corresponding
82   /// to the specified ValueType.  For integer types, this returns an unsigned
83   /// type.  Note that this will abort for types that cannot be represented.
84   const Type *getTypeForValueType(ValueType VT);
85 };
86
87 } // End llvm namespace
88
89 #endif