LLVM  8.0.1
ValueTypes.cpp
Go to the documentation of this file.
1 //===----------- ValueTypes.cpp - Implementation of EVT methods -----------===//
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 
11 #include "llvm/ADT/StringExtras.h"
12 #include "llvm/IR/DerivedTypes.h"
13 #include "llvm/IR/Type.h"
15 using namespace llvm;
16 
17 EVT EVT::changeExtendedTypeToInteger() const {
18  LLVMContext &Context = LLVMTy->getContext();
19  return getIntegerVT(Context, getSizeInBits());
20 }
21 
22 EVT EVT::changeExtendedVectorElementTypeToInteger() const {
23  LLVMContext &Context = LLVMTy->getContext();
24  EVT IntTy = getIntegerVT(Context, getScalarSizeInBits());
25  return getVectorVT(Context, IntTy, getVectorNumElements());
26 }
27 
28 EVT EVT::getExtendedIntegerVT(LLVMContext &Context, unsigned BitWidth) {
29  EVT VT;
30  VT.LLVMTy = IntegerType::get(Context, BitWidth);
31  assert(VT.isExtended() && "Type is not extended!");
32  return VT;
33 }
34 
35 EVT EVT::getExtendedVectorVT(LLVMContext &Context, EVT VT,
36  unsigned NumElements) {
37  EVT ResultVT;
38  ResultVT.LLVMTy = VectorType::get(VT.getTypeForEVT(Context), NumElements);
39  assert(ResultVT.isExtended() && "Type is not extended!");
40  return ResultVT;
41 }
42 
43 bool EVT::isExtendedFloatingPoint() const {
44  assert(isExtended() && "Type is not extended!");
45  return LLVMTy->isFPOrFPVectorTy();
46 }
47 
48 bool EVT::isExtendedInteger() const {
49  assert(isExtended() && "Type is not extended!");
50  return LLVMTy->isIntOrIntVectorTy();
51 }
52 
53 bool EVT::isExtendedScalarInteger() const {
54  assert(isExtended() && "Type is not extended!");
55  return LLVMTy->isIntegerTy();
56 }
57 
58 bool EVT::isExtendedVector() const {
59  assert(isExtended() && "Type is not extended!");
60  return LLVMTy->isVectorTy();
61 }
62 
63 bool EVT::isExtended16BitVector() const {
64  return isExtendedVector() && getExtendedSizeInBits() == 16;
65 }
66 
67 bool EVT::isExtended32BitVector() const {
68  return isExtendedVector() && getExtendedSizeInBits() == 32;
69 }
70 
71 bool EVT::isExtended64BitVector() const {
72  return isExtendedVector() && getExtendedSizeInBits() == 64;
73 }
74 
75 bool EVT::isExtended128BitVector() const {
76  return isExtendedVector() && getExtendedSizeInBits() == 128;
77 }
78 
79 bool EVT::isExtended256BitVector() const {
80  return isExtendedVector() && getExtendedSizeInBits() == 256;
81 }
82 
83 bool EVT::isExtended512BitVector() const {
84  return isExtendedVector() && getExtendedSizeInBits() == 512;
85 }
86 
87 bool EVT::isExtended1024BitVector() const {
88  return isExtendedVector() && getExtendedSizeInBits() == 1024;
89 }
90 
91 bool EVT::isExtended2048BitVector() const {
92  return isExtendedVector() && getExtendedSizeInBits() == 2048;
93 }
94 
95 EVT EVT::getExtendedVectorElementType() const {
96  assert(isExtended() && "Type is not extended!");
97  return EVT::getEVT(cast<VectorType>(LLVMTy)->getElementType());
98 }
99 
100 unsigned EVT::getExtendedVectorNumElements() const {
101  assert(isExtended() && "Type is not extended!");
102  return cast<VectorType>(LLVMTy)->getNumElements();
103 }
104 
105 unsigned EVT::getExtendedSizeInBits() const {
106  assert(isExtended() && "Type is not extended!");
107  if (IntegerType *ITy = dyn_cast<IntegerType>(LLVMTy))
108  return ITy->getBitWidth();
109  if (VectorType *VTy = dyn_cast<VectorType>(LLVMTy))
110  return VTy->getBitWidth();
111  llvm_unreachable("Unrecognized extended type!");
112 }
113 
114 /// getEVTString - This function returns value type as a string, e.g. "i32".
115 std::string EVT::getEVTString() const {
116  switch (V.SimpleTy) {
117  default:
118  if (isVector())
119  return "v" + utostr(getVectorNumElements()) +
121  if (isInteger())
122  return "i" + utostr(getSizeInBits());
123  llvm_unreachable("Invalid EVT!");
124  case MVT::i1: return "i1";
125  case MVT::i8: return "i8";
126  case MVT::i16: return "i16";
127  case MVT::i32: return "i32";
128  case MVT::i64: return "i64";
129  case MVT::i128: return "i128";
130  case MVT::f16: return "f16";
131  case MVT::f32: return "f32";
132  case MVT::f64: return "f64";
133  case MVT::f80: return "f80";
134  case MVT::f128: return "f128";
135  case MVT::ppcf128: return "ppcf128";
136  case MVT::isVoid: return "isVoid";
137  case MVT::Other: return "ch";
138  case MVT::Glue: return "glue";
139  case MVT::x86mmx: return "x86mmx";
140  case MVT::v1i1: return "v1i1";
141  case MVT::v2i1: return "v2i1";
142  case MVT::v4i1: return "v4i1";
143  case MVT::v8i1: return "v8i1";
144  case MVT::v16i1: return "v16i1";
145  case MVT::v32i1: return "v32i1";
146  case MVT::v64i1: return "v64i1";
147  case MVT::v128i1: return "v128i1";
148  case MVT::v512i1: return "v512i1";
149  case MVT::v1024i1: return "v1024i1";
150  case MVT::v1i8: return "v1i8";
151  case MVT::v2i8: return "v2i8";
152  case MVT::v4i8: return "v4i8";
153  case MVT::v8i8: return "v8i8";
154  case MVT::v16i8: return "v16i8";
155  case MVT::v32i8: return "v32i8";
156  case MVT::v64i8: return "v64i8";
157  case MVT::v128i8: return "v128i8";
158  case MVT::v256i8: return "v256i8";
159  case MVT::v1i16: return "v1i16";
160  case MVT::v2i16: return "v2i16";
161  case MVT::v4i16: return "v4i16";
162  case MVT::v8i16: return "v8i16";
163  case MVT::v16i16: return "v16i16";
164  case MVT::v32i16: return "v32i16";
165  case MVT::v64i16: return "v64i16";
166  case MVT::v128i16: return "v128i16";
167  case MVT::v1i32: return "v1i32";
168  case MVT::v2i32: return "v2i32";
169  case MVT::v4i32: return "v4i32";
170  case MVT::v8i32: return "v8i32";
171  case MVT::v16i32: return "v16i32";
172  case MVT::v32i32: return "v32i32";
173  case MVT::v64i32: return "v64i32";
174  case MVT::v1i64: return "v1i64";
175  case MVT::v2i64: return "v2i64";
176  case MVT::v4i64: return "v4i64";
177  case MVT::v8i64: return "v8i64";
178  case MVT::v16i64: return "v16i64";
179  case MVT::v32i64: return "v32i64";
180  case MVT::v1i128: return "v1i128";
181  case MVT::v1f32: return "v1f32";
182  case MVT::v2f32: return "v2f32";
183  case MVT::v2f16: return "v2f16";
184  case MVT::v4f16: return "v4f16";
185  case MVT::v8f16: return "v8f16";
186  case MVT::v4f32: return "v4f32";
187  case MVT::v8f32: return "v8f32";
188  case MVT::v16f32: return "v16f32";
189  case MVT::v1f64: return "v1f64";
190  case MVT::v2f64: return "v2f64";
191  case MVT::v4f64: return "v4f64";
192  case MVT::v8f64: return "v8f64";
193  case MVT::Metadata:return "Metadata";
194  case MVT::Untyped: return "Untyped";
195  case MVT::ExceptRef: return "ExceptRef";
196  }
197 }
198 
199 /// getTypeForEVT - This method returns an LLVM type corresponding to the
200 /// specified EVT. For integer types, this returns an unsigned type. Note
201 /// that this will abort for types that cannot be represented.
203  switch (V.SimpleTy) {
204  default:
205  assert(isExtended() && "Type is not extended!");
206  return LLVMTy;
207  case MVT::isVoid: return Type::getVoidTy(Context);
208  case MVT::i1: return Type::getInt1Ty(Context);
209  case MVT::i8: return Type::getInt8Ty(Context);
210  case MVT::i16: return Type::getInt16Ty(Context);
211  case MVT::i32: return Type::getInt32Ty(Context);
212  case MVT::i64: return Type::getInt64Ty(Context);
213  case MVT::i128: return IntegerType::get(Context, 128);
214  case MVT::f16: return Type::getHalfTy(Context);
215  case MVT::f32: return Type::getFloatTy(Context);
216  case MVT::f64: return Type::getDoubleTy(Context);
217  case MVT::f80: return Type::getX86_FP80Ty(Context);
218  case MVT::f128: return Type::getFP128Ty(Context);
219  case MVT::ppcf128: return Type::getPPC_FP128Ty(Context);
220  case MVT::x86mmx: return Type::getX86_MMXTy(Context);
221  case MVT::v1i1: return VectorType::get(Type::getInt1Ty(Context), 1);
222  case MVT::v2i1: return VectorType::get(Type::getInt1Ty(Context), 2);
223  case MVT::v4i1: return VectorType::get(Type::getInt1Ty(Context), 4);
224  case MVT::v8i1: return VectorType::get(Type::getInt1Ty(Context), 8);
225  case MVT::v16i1: return VectorType::get(Type::getInt1Ty(Context), 16);
226  case MVT::v32i1: return VectorType::get(Type::getInt1Ty(Context), 32);
227  case MVT::v64i1: return VectorType::get(Type::getInt1Ty(Context), 64);
228  case MVT::v128i1: return VectorType::get(Type::getInt1Ty(Context), 128);
229  case MVT::v512i1: return VectorType::get(Type::getInt1Ty(Context), 512);
230  case MVT::v1024i1: return VectorType::get(Type::getInt1Ty(Context), 1024);
231  case MVT::v1i8: return VectorType::get(Type::getInt8Ty(Context), 1);
232  case MVT::v2i8: return VectorType::get(Type::getInt8Ty(Context), 2);
233  case MVT::v4i8: return VectorType::get(Type::getInt8Ty(Context), 4);
234  case MVT::v8i8: return VectorType::get(Type::getInt8Ty(Context), 8);
235  case MVT::v16i8: return VectorType::get(Type::getInt8Ty(Context), 16);
236  case MVT::v32i8: return VectorType::get(Type::getInt8Ty(Context), 32);
237  case MVT::v64i8: return VectorType::get(Type::getInt8Ty(Context), 64);
238  case MVT::v128i8: return VectorType::get(Type::getInt8Ty(Context), 128);
239  case MVT::v256i8: return VectorType::get(Type::getInt8Ty(Context), 256);
240  case MVT::v1i16: return VectorType::get(Type::getInt16Ty(Context), 1);
241  case MVT::v2i16: return VectorType::get(Type::getInt16Ty(Context), 2);
242  case MVT::v4i16: return VectorType::get(Type::getInt16Ty(Context), 4);
243  case MVT::v8i16: return VectorType::get(Type::getInt16Ty(Context), 8);
244  case MVT::v16i16: return VectorType::get(Type::getInt16Ty(Context), 16);
245  case MVT::v32i16: return VectorType::get(Type::getInt16Ty(Context), 32);
246  case MVT::v64i16: return VectorType::get(Type::getInt16Ty(Context), 64);
247  case MVT::v128i16: return VectorType::get(Type::getInt16Ty(Context), 128);
248  case MVT::v1i32: return VectorType::get(Type::getInt32Ty(Context), 1);
249  case MVT::v2i32: return VectorType::get(Type::getInt32Ty(Context), 2);
250  case MVT::v4i32: return VectorType::get(Type::getInt32Ty(Context), 4);
251  case MVT::v8i32: return VectorType::get(Type::getInt32Ty(Context), 8);
252  case MVT::v16i32: return VectorType::get(Type::getInt32Ty(Context), 16);
253  case MVT::v32i32: return VectorType::get(Type::getInt32Ty(Context), 32);
254  case MVT::v64i32: return VectorType::get(Type::getInt32Ty(Context), 64);
255  case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1);
256  case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2);
257  case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4);
258  case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8);
259  case MVT::v16i64: return VectorType::get(Type::getInt64Ty(Context), 16);
260  case MVT::v32i64: return VectorType::get(Type::getInt64Ty(Context), 32);
261  case MVT::v1i128: return VectorType::get(Type::getInt128Ty(Context), 1);
262  case MVT::v2f16: return VectorType::get(Type::getHalfTy(Context), 2);
263  case MVT::v4f16: return VectorType::get(Type::getHalfTy(Context), 4);
264  case MVT::v8f16: return VectorType::get(Type::getHalfTy(Context), 8);
265  case MVT::v1f32: return VectorType::get(Type::getFloatTy(Context), 1);
266  case MVT::v2f32: return VectorType::get(Type::getFloatTy(Context), 2);
267  case MVT::v4f32: return VectorType::get(Type::getFloatTy(Context), 4);
268  case MVT::v8f32: return VectorType::get(Type::getFloatTy(Context), 8);
269  case MVT::v16f32: return VectorType::get(Type::getFloatTy(Context), 16);
270  case MVT::v1f64: return VectorType::get(Type::getDoubleTy(Context), 1);
271  case MVT::v2f64: return VectorType::get(Type::getDoubleTy(Context), 2);
272  case MVT::v4f64: return VectorType::get(Type::getDoubleTy(Context), 4);
273  case MVT::v8f64: return VectorType::get(Type::getDoubleTy(Context), 8);
274  case MVT::Metadata: return Type::getMetadataTy(Context);
275  }
276 }
277 
278 /// Return the value type corresponding to the specified type. This returns all
279 /// pointers as MVT::iPTR. If HandleUnknown is true, unknown types are returned
280 /// as Other, otherwise they are invalid.
281 MVT MVT::getVT(Type *Ty, bool HandleUnknown){
282  switch (Ty->getTypeID()) {
283  default:
284  if (HandleUnknown) return MVT(MVT::Other);
285  llvm_unreachable("Unknown type!");
286  case Type::VoidTyID:
287  return MVT::isVoid;
288  case Type::IntegerTyID:
289  return getIntegerVT(cast<IntegerType>(Ty)->getBitWidth());
290  case Type::HalfTyID: return MVT(MVT::f16);
291  case Type::FloatTyID: return MVT(MVT::f32);
292  case Type::DoubleTyID: return MVT(MVT::f64);
293  case Type::X86_FP80TyID: return MVT(MVT::f80);
294  case Type::X86_MMXTyID: return MVT(MVT::x86mmx);
295  case Type::FP128TyID: return MVT(MVT::f128);
296  case Type::PPC_FP128TyID: return MVT(MVT::ppcf128);
297  case Type::PointerTyID: return MVT(MVT::iPTR);
298  case Type::VectorTyID: {
299  VectorType *VTy = cast<VectorType>(Ty);
300  return getVectorVT(
301  getVT(VTy->getElementType(), false), VTy->getNumElements());
302  }
303  }
304 }
305 
306 /// getEVT - Return the value type corresponding to the specified type. This
307 /// returns all pointers as MVT::iPTR. If HandleUnknown is true, unknown types
308 /// are returned as Other, otherwise they are invalid.
309 EVT EVT::getEVT(Type *Ty, bool HandleUnknown){
310  switch (Ty->getTypeID()) {
311  default:
312  return MVT::getVT(Ty, HandleUnknown);
313  case Type::IntegerTyID:
314  return getIntegerVT(Ty->getContext(), cast<IntegerType>(Ty)->getBitWidth());
315  case Type::VectorTyID: {
316  VectorType *VTy = cast<VectorType>(Ty);
317  return getVectorVT(Ty->getContext(), getEVT(VTy->getElementType(), false),
318  VTy->getNumElements());
319  }
320  }
321 }
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
static Type * getDoubleTy(LLVMContext &C)
Definition: Type.cpp:165
static IntegerType * getInt1Ty(LLVMContext &C)
Definition: Type.cpp:173
LLVMContext & Context
This class represents lattice values for constants.
Definition: AllocatorList.h:24
2: 32-bit floating point type
Definition: Type.h:59
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition: ValueTypes.h:141
4: 80-bit floating point type (X87)
Definition: Type.h:61
1: 16-bit floating point type
Definition: Type.h:58
static IntegerType * getInt64Ty(LLVMContext &C)
Definition: Type.cpp:177
static Type * getMetadataTy(LLVMContext &C)
Definition: Type.cpp:166
bool isVectorTy() const
True if this is an instance of VectorType.
Definition: Type.h:230
15: Pointers
Definition: Type.h:75
static IntegerType * getInt16Ty(LLVMContext &C)
Definition: Type.cpp:175
static Type * getX86_MMXTy(LLVMContext &C)
Definition: Type.cpp:171
static Type * getX86_FP80Ty(LLVMContext &C)
Definition: Type.cpp:168
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition: Type.h:130
static Type * getFloatTy(LLVMContext &C)
Definition: Type.cpp:164
TypeID getTypeID() const
Return the type id for the type.
Definition: Type.h:138
Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
Definition: ValueTypes.cpp:202
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:197
SimpleValueType SimpleTy
uint64_t getNumElements() const
Definition: DerivedTypes.h:359
static Type * getPPC_FP128Ty(LLVMContext &C)
Definition: Type.cpp:170
unsigned getScalarSizeInBits() const
Definition: ValueTypes.h:298
unsigned getSizeInBits() const
Return the size of the specified value type in bits.
Definition: ValueTypes.h:292
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition: Type.h:203
11: Arbitrary bit width integers
Definition: Type.h:71
0: type with no size
Definition: Type.h:57
static IntegerType * getInt128Ty(LLVMContext &C)
Definition: Type.cpp:178
Machine Value Type.
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:69
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition: ValueTypes.h:273
static Type * getVoidTy(LLVMContext &C)
Definition: Type.cpp:161
6: 128-bit floating point type (two 64-bits, PowerPC)
Definition: Type.h:63
std::string getEVTString() const
This function returns value type as a string, e.g. "i32".
Definition: ValueTypes.cpp:115
Class to represent integer types.
Definition: DerivedTypes.h:40
static MVT getVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
Definition: ValueTypes.cpp:281
Extended Value Type.
Definition: ValueTypes.h:34
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static Type * getFP128Ty(LLVMContext &C)
Definition: Type.cpp:169
static Type * getHalfTy(LLVMContext &C)
Definition: Type.cpp:163
static IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition: Type.cpp:240
16: SIMD &#39;packed&#39; format, or other vector type
Definition: Type.h:76
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition: ValueTypes.h:265
std::string utostr(uint64_t X, bool isNeg=false)
Definition: StringExtras.h:224
Class to represent vector types.
Definition: DerivedTypes.h:393
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT...
Definition: ValueTypes.h:73
bool isVector() const
Return true if this is a vector value type.
Definition: ValueTypes.h:151
static IntegerType * getInt32Ty(LLVMContext &C)
Definition: Type.cpp:176
static EVT getEVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
Definition: ValueTypes.cpp:309
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Definition: Type.h:185
3: 64-bit floating point type
Definition: Type.h:60
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static VectorType * get(Type *ElementType, unsigned NumElements)
This static method is the primary way to construct an VectorType.
Definition: Type.cpp:606
Type * getElementType() const
Definition: DerivedTypes.h:360
9: MMX vectors (64 bits, X86 specific)
Definition: Type.h:66
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
Definition: ValueTypes.h:64
static IntegerType * getInt8Ty(LLVMContext &C)
Definition: Type.cpp:174
bool isExtended() const
Test if the given EVT is extended (as opposed to being simple).
Definition: ValueTypes.h:131
5: 128-bit floating point type (112-bit mantissa)
Definition: Type.h:62