28c3ab26bbb742d4a3a7b3bd47ddd30d660b3d3d
[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 #include "llvm/Support/DataTypes.h"
21
22 namespace llvm {
23   class Type;
24
25 /// MVT namespace - This namespace defines the ValueType enum, which contains
26 /// the various low-level value types.
27 ///
28 namespace MVT {  // MVT = Machine Value Types
29   enum ValueType {
30     // If you change this numbering, you must change the values in Target.td as
31     // well!
32     Other          =   0,   // This is a non-standard value
33     i1             =   1,   // This is a 1 bit integer value
34     i8             =   2,   // This is an 8 bit integer value
35     i16            =   3,   // This is a 16 bit integer value
36     i32            =   4,   // This is a 32 bit integer value
37     i64            =   5,   // This is a 64 bit integer value
38     i128           =   6,   // This is a 128 bit integer value
39
40     f32            =   7,   // This is a 32 bit floating point value
41     f64            =   8,   // This is a 64 bit floating point value
42     f80            =   9,   // This is a 80 bit floating point value
43     f128           =  10,   // This is a 128 bit floating point value
44     Flag           =  11,   // This is a condition code or machine flag.
45
46     isVoid         =  12,   // This has no value
47     
48     Vector         =  13,   // This is an abstract vector type, which will
49                             // be expanded into a target vector type, or scalars
50                             // if no matching vector type is available.
51     v16i8          =  14,   // 16 x i8
52     v8i16          =  15,   //  8 x i16
53     v4i32          =  16,   //  4 x i32
54     v2i64          =  17,   //  2 x i64
55
56     v4f32          =  18,   //  4 x f32
57     v2f64          =  19,   //  2 x f64
58
59     LAST_VALUETYPE,         // This always remains at the end of the list.
60   };
61
62   static inline bool isInteger(ValueType VT) {
63     return (VT >= i1 && VT <= i128) || (VT >= v16i8 && VT <= v2i64);
64   }
65   static inline bool isFloatingPoint(ValueType VT) {
66     return (VT >= f32 && VT <= f128) || (VT >= v4f32 && VT <= v2f64);
67   }
68   static inline bool isVector(ValueType VT) {
69     return (VT >= v16i8 && VT <= v2f64);
70   }
71   
72   /// getVectorType - Returns the ValueType that represents a vector NumElements
73   /// in length, where each element is of type VT.  If there is no ValueType
74   /// that represents this vector, a ValueType of Other is returned.
75   ///
76   static inline ValueType getVectorType(ValueType VT, unsigned NumElements) {
77     switch (VT) {
78     default: 
79       break;
80     case MVT::i32:
81       if (NumElements == 4) return MVT::v4i32;
82       break;
83     case MVT::f32:
84       if (NumElements == 4) return MVT::v4f32;
85       break;
86     }
87     return MVT::Other;
88   }
89   
90   static inline unsigned getSizeInBits(ValueType VT) {
91     switch (VT) {
92     default: assert(0 && "ValueType has no known size!");
93     case MVT::i1  : return 1;
94     case MVT::i8  : return 8;
95     case MVT::i16 : return 16;
96     case MVT::f32 :
97     case MVT::i32 : return 32;
98     case MVT::f64 :
99     case MVT::i64 : return 64;
100     case MVT::f80 : return 80;
101     case MVT::f128:
102     case MVT::i128: 
103     case MVT::v16i8:
104     case MVT::v8i16:
105     case MVT::v4i32:
106     case MVT::v2i64:
107     case MVT::v4f32:
108     case MVT::v2f64: return 128;
109     }
110   }
111   
112   /// getIntVTBitMask - Return an integer with 1's every place there are bits
113   /// in the specified integer value type.
114   static inline uint64_t getIntVTBitMask(ValueType VT) {
115     assert(isInteger(VT) && !isVector(VT) && "Only applies to int scalars!");
116     return ~0ULL >> (64-getSizeInBits(VT));
117   }
118   /// getIntVTSignBit - Return an integer with a 1 in the position of the sign
119   /// bit for the specified integer value type.
120   static inline uint64_t getIntVTSignBit(ValueType VT) {
121     assert(isInteger(VT) && !isVector(VT) && "Only applies to int scalars!");
122     return 1ULL << (getSizeInBits(VT)-1);
123   }
124
125   /// MVT::getValueTypeString - This function returns value type as a string,
126   /// e.g. "i32".
127   const char *getValueTypeString(ValueType VT);
128
129   /// MVT::getTypeForValueType - This method returns an LLVM type corresponding
130   /// to the specified ValueType.  For integer types, this returns an unsigned
131   /// type.  Note that this will abort for types that cannot be represented.
132   const Type *getTypeForValueType(ValueType VT);
133 };
134
135 } // End llvm namespace
136
137 #endif