LLVM 19.0.0git
Type.h
Go to the documentation of this file.
1//===- llvm/Type.h - Classes for handling data types ------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the declaration of the Type class. For more "Type"
10// stuff, look in DerivedTypes.h.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_IR_TYPE_H
15#define LLVM_IR_TYPE_H
16
17#include "llvm/ADT/ArrayRef.h"
23#include <cassert>
24#include <cstdint>
25#include <iterator>
26
27namespace llvm {
28
29class IntegerType;
30struct fltSemantics;
31class LLVMContext;
32class PointerType;
33class raw_ostream;
34class StringRef;
35template <typename PtrType> class SmallPtrSetImpl;
36
37/// The instances of the Type class are immutable: once they are created,
38/// they are never changed. Also note that only one instance of a particular
39/// type is ever created. Thus seeing if two types are equal is a matter of
40/// doing a trivial pointer comparison. To enforce that no two equal instances
41/// are created, Type instances can only be created via static factory methods
42/// in class Type and in derived classes. Once allocated, Types are never
43/// free'd.
44///
45class Type {
46public:
47 //===--------------------------------------------------------------------===//
48 /// Definitions of all of the base types for the Type system. Based on this
49 /// value, you can cast to a class defined in DerivedTypes.h.
50 /// Note: If you add an element to this, you need to add an element to the
51 /// Type::getPrimitiveType function, or else things will break!
52 /// Also update LLVMTypeKind and LLVMGetTypeKind () in the C binding.
53 ///
54 enum TypeID {
55 // PrimitiveTypes
56 HalfTyID = 0, ///< 16-bit floating point type
57 BFloatTyID, ///< 16-bit floating point type (7-bit significand)
58 FloatTyID, ///< 32-bit floating point type
59 DoubleTyID, ///< 64-bit floating point type
60 X86_FP80TyID, ///< 80-bit floating point type (X87)
61 FP128TyID, ///< 128-bit floating point type (112-bit significand)
62 PPC_FP128TyID, ///< 128-bit floating point type (two 64-bits, PowerPC)
63 VoidTyID, ///< type with no size
64 LabelTyID, ///< Labels
65 MetadataTyID, ///< Metadata
66 X86_MMXTyID, ///< MMX vectors (64 bits, X86 specific)
67 X86_AMXTyID, ///< AMX vectors (8192 bits, X86 specific)
68 TokenTyID, ///< Tokens
69
70 // Derived types... see DerivedTypes.h file.
71 IntegerTyID, ///< Arbitrary bit width integers
72 FunctionTyID, ///< Functions
73 PointerTyID, ///< Pointers
74 StructTyID, ///< Structures
75 ArrayTyID, ///< Arrays
76 FixedVectorTyID, ///< Fixed width SIMD vector type
77 ScalableVectorTyID, ///< Scalable SIMD vector type
78 TypedPointerTyID, ///< Typed pointer used by some GPU targets
79 TargetExtTyID, ///< Target extension type
80 };
81
82private:
83 /// This refers to the LLVMContext in which this type was uniqued.
84 LLVMContext &Context;
85
86 TypeID ID : 8; // The current base type of this type.
87 unsigned SubclassData : 24; // Space for subclasses to store data.
88 // Note that this should be synchronized with
89 // MAX_INT_BITS value in IntegerType class.
90
91protected:
92 friend class LLVMContextImpl;
93
94 explicit Type(LLVMContext &C, TypeID tid)
95 : Context(C), ID(tid), SubclassData(0) {}
96 ~Type() = default;
97
98 unsigned getSubclassData() const { return SubclassData; }
99
100 void setSubclassData(unsigned val) {
101 SubclassData = val;
102 // Ensure we don't have any accidental truncation.
103 assert(getSubclassData() == val && "Subclass data too large for field");
104 }
105
106 /// Keeps track of how many Type*'s there are in the ContainedTys list.
107 unsigned NumContainedTys = 0;
108
109 /// A pointer to the array of Types contained by this Type. For example, this
110 /// includes the arguments of a function type, the elements of a structure,
111 /// the pointee of a pointer, the element type of an array, etc. This pointer
112 /// may be 0 for types that don't contain other types (Integer, Double,
113 /// Float).
114 Type * const *ContainedTys = nullptr;
115
116public:
117 /// Print the current type.
118 /// Omit the type details if \p NoDetails == true.
119 /// E.g., let %st = type { i32, i16 }
120 /// When \p NoDetails is true, we only print %st.
121 /// Put differently, \p NoDetails prints the type as if
122 /// inlined with the operands when printing an instruction.
123 void print(raw_ostream &O, bool IsForDebug = false,
124 bool NoDetails = false) const;
125
126 void dump() const;
127
128 /// Return the LLVMContext in which this type was uniqued.
129 LLVMContext &getContext() const { return Context; }
130
131 //===--------------------------------------------------------------------===//
132 // Accessors for working with types.
133 //
134
135 /// Return the type id for the type. This will return one of the TypeID enum
136 /// elements defined above.
137 TypeID getTypeID() const { return ID; }
138
139 /// Return true if this is 'void'.
140 bool isVoidTy() const { return getTypeID() == VoidTyID; }
141
142 /// Return true if this is 'half', a 16-bit IEEE fp type.
143 bool isHalfTy() const { return getTypeID() == HalfTyID; }
144
145 /// Return true if this is 'bfloat', a 16-bit bfloat type.
146 bool isBFloatTy() const { return getTypeID() == BFloatTyID; }
147
148 /// Return true if this is a 16-bit float type.
149 bool is16bitFPTy() const {
150 return getTypeID() == BFloatTyID || getTypeID() == HalfTyID;
151 }
152
153 /// Return true if this is 'float', a 32-bit IEEE fp type.
154 bool isFloatTy() const { return getTypeID() == FloatTyID; }
155
156 /// Return true if this is 'double', a 64-bit IEEE fp type.
157 bool isDoubleTy() const { return getTypeID() == DoubleTyID; }
158
159 /// Return true if this is x86 long double.
160 bool isX86_FP80Ty() const { return getTypeID() == X86_FP80TyID; }
161
162 /// Return true if this is 'fp128'.
163 bool isFP128Ty() const { return getTypeID() == FP128TyID; }
164
165 /// Return true if this is powerpc long double.
166 bool isPPC_FP128Ty() const { return getTypeID() == PPC_FP128TyID; }
167
168 /// Return true if this is a well-behaved IEEE-like type, which has a IEEE
169 /// compatible layout as defined by APFloat::isIEEE(), and does not have
170 /// non-IEEE values, such as x86_fp80's unnormal values.
171 bool isIEEELikeFPTy() const {
172 switch (getTypeID()) {
173 case DoubleTyID:
174 case FloatTyID:
175 case HalfTyID:
176 case BFloatTyID:
177 case FP128TyID:
178 return true;
179 default:
180 return false;
181 }
182 }
183
184 /// Return true if this is one of the floating-point types
185 bool isFloatingPointTy() const {
186 return isIEEELikeFPTy() || getTypeID() == X86_FP80TyID ||
188 }
189
190 /// Returns true if this is a floating-point type that is an unevaluated sum
191 /// of multiple floating-point units.
192 /// An example of such a type is ppc_fp128, also known as double-double, which
193 /// consists of two IEEE 754 doubles.
194 bool isMultiUnitFPType() const {
195 return getTypeID() == PPC_FP128TyID;
196 }
197
199
200 /// Return true if this is X86 MMX.
201 bool isX86_MMXTy() const { return getTypeID() == X86_MMXTyID; }
202
203 /// Return true if this is X86 AMX.
204 bool isX86_AMXTy() const { return getTypeID() == X86_AMXTyID; }
205
206 /// Return true if this is a target extension type.
207 bool isTargetExtTy() const { return getTypeID() == TargetExtTyID; }
208
209 /// Return true if this is a target extension type with a scalable layout.
211
212 /// Return true if this is a type whose size is a known multiple of vscale.
213 bool isScalableTy() const;
214
215 /// Return true if this is a FP type or a vector of FP.
217
218 /// Return true if this is 'label'.
219 bool isLabelTy() const { return getTypeID() == LabelTyID; }
220
221 /// Return true if this is 'metadata'.
222 bool isMetadataTy() const { return getTypeID() == MetadataTyID; }
223
224 /// Return true if this is 'token'.
225 bool isTokenTy() const { return getTypeID() == TokenTyID; }
226
227 /// True if this is an instance of IntegerType.
228 bool isIntegerTy() const { return getTypeID() == IntegerTyID; }
229
230 /// Return true if this is an IntegerType of the given width.
231 bool isIntegerTy(unsigned Bitwidth) const;
232
233 /// Return true if this is an integer type or a vector of integer types.
234 bool isIntOrIntVectorTy() const { return getScalarType()->isIntegerTy(); }
235
236 /// Return true if this is an integer type or a vector of integer types of
237 /// the given width.
238 bool isIntOrIntVectorTy(unsigned BitWidth) const {
240 }
241
242 /// Return true if this is an integer type or a pointer type.
243 bool isIntOrPtrTy() const { return isIntegerTy() || isPointerTy(); }
244
245 /// True if this is an instance of FunctionType.
246 bool isFunctionTy() const { return getTypeID() == FunctionTyID; }
247
248 /// True if this is an instance of StructType.
249 bool isStructTy() const { return getTypeID() == StructTyID; }
250
251 /// True if this is an instance of ArrayType.
252 bool isArrayTy() const { return getTypeID() == ArrayTyID; }
253
254 /// True if this is an instance of PointerType.
255 bool isPointerTy() const { return getTypeID() == PointerTyID; }
256
257 /// True if this is an instance of an opaque PointerType.
258 LLVM_DEPRECATED("Use isPointerTy() instead", "isPointerTy")
259 bool isOpaquePointerTy() const { return isPointerTy(); };
260
261 /// Return true if this is a pointer type or a vector of pointer types.
262 bool isPtrOrPtrVectorTy() const { return getScalarType()->isPointerTy(); }
263
264 /// True if this is an instance of VectorType.
265 inline bool isVectorTy() const {
267 }
268
269 /// Return true if this type could be converted with a lossless BitCast to
270 /// type 'Ty'. For example, i8* to i32*. BitCasts are valid for types of the
271 /// same size only where no re-interpretation of the bits is done.
272 /// Determine if this type could be losslessly bitcast to Ty
274
275 /// Return true if this type is empty, that is, it has no elements or all of
276 /// its elements are empty.
277 bool isEmptyTy() const;
278
279 /// Return true if the type is "first class", meaning it is a valid type for a
280 /// Value.
281 bool isFirstClassType() const {
282 return getTypeID() != FunctionTyID && getTypeID() != VoidTyID;
283 }
284
285 /// Return true if the type is a valid type for a register in codegen. This
286 /// includes all first-class types except struct and array types.
287 bool isSingleValueType() const {
288 return isFloatingPointTy() || isX86_MMXTy() || isIntegerTy() ||
290 }
291
292 /// Return true if the type is an aggregate type. This means it is valid as
293 /// the first operand of an insertvalue or extractvalue instruction. This
294 /// includes struct and array types, but does not include vector types.
295 bool isAggregateType() const {
296 return getTypeID() == StructTyID || getTypeID() == ArrayTyID;
297 }
298
299 /// Return true if it makes sense to take the size of this type. To get the
300 /// actual size for a particular target, it is reasonable to use the
301 /// DataLayout subsystem to do this.
302 bool isSized(SmallPtrSetImpl<Type*> *Visited = nullptr) const {
303 // If it's a primitive, it is always sized.
307 return true;
308 // If it is not something that can have a size (e.g. a function or label),
309 // it doesn't have a size.
310 if (getTypeID() != StructTyID && getTypeID() != ArrayTyID &&
312 return false;
313 // Otherwise we have to try harder to decide.
314 return isSizedDerivedType(Visited);
315 }
316
317 /// Return the basic size of this type if it is a primitive type. These are
318 /// fixed by LLVM and are not target-dependent.
319 /// This will return zero if the type does not have a size or is not a
320 /// primitive type.
321 ///
322 /// If this is a scalable vector type, the scalable property will be set and
323 /// the runtime size will be a positive integer multiple of the base size.
324 ///
325 /// Note that this may not reflect the size of memory allocated for an
326 /// instance of the type or the number of bytes that are written when an
327 /// instance of the type is stored to memory. The DataLayout class provides
328 /// additional query functions to provide this information.
329 ///
331
332 /// If this is a vector type, return the getPrimitiveSizeInBits value for the
333 /// element type. Otherwise return the getPrimitiveSizeInBits value for this
334 /// type.
336
337 /// Return the width of the mantissa of this type. This is only valid on
338 /// floating-point types. If the FP type does not have a stable mantissa (e.g.
339 /// ppc long double), this method returns -1.
341
342 /// Return whether the type is IEEE compatible, as defined by the eponymous
343 /// method in APFloat.
344 bool isIEEE() const;
345
346 /// If this is a vector type, return the element type, otherwise return
347 /// 'this'.
349 if (isVectorTy())
350 return getContainedType(0);
351 return const_cast<Type *>(this);
352 }
353
354 //===--------------------------------------------------------------------===//
355 // Type Iteration support.
356 //
357 using subtype_iterator = Type * const *;
358
363 }
364
365 using subtype_reverse_iterator = std::reverse_iterator<subtype_iterator>;
366
369 }
372 }
373
374 /// This method is used to implement the type iterator (defined at the end of
375 /// the file). For derived types, this returns the types 'contained' in the
376 /// derived type.
377 Type *getContainedType(unsigned i) const {
378 assert(i < NumContainedTys && "Index out of range!");
379 return ContainedTys[i];
380 }
381
382 /// Return the number of types in the derived type.
383 unsigned getNumContainedTypes() const { return NumContainedTys; }
384
385 //===--------------------------------------------------------------------===//
386 // Helper methods corresponding to subclass methods. This forces a cast to
387 // the specified subclass and calls its accessor. "getArrayNumElements" (for
388 // example) is shorthand for cast<ArrayType>(Ty)->getNumElements(). This is
389 // only intended to cover the core methods that are frequently used, helper
390 // methods should not be added here.
391
392 inline unsigned getIntegerBitWidth() const;
393
394 inline Type *getFunctionParamType(unsigned i) const;
395 inline unsigned getFunctionNumParams() const;
396 inline bool isFunctionVarArg() const;
397
398 inline StringRef getStructName() const;
399 inline unsigned getStructNumElements() const;
400 inline Type *getStructElementType(unsigned N) const;
401
403
406 return ContainedTys[0];
407 }
408
410
411 /// Only use this method in code that is not reachable with opaque pointers,
412 /// or part of deprecated methods that will be removed as part of the opaque
413 /// pointers transition.
414 [[deprecated("Pointers no longer have element types")]]
416 llvm_unreachable("Pointers no longer have element types");
417 }
418
419 /// Given vector type, change the element type,
420 /// whilst keeping the old number of elements.
421 /// For non-vectors simply returns \p EltTy.
422 inline Type *getWithNewType(Type *EltTy) const;
423
424 /// Given an integer or vector type, change the lane bitwidth to NewBitwidth,
425 /// whilst keeping the old number of lanes.
426 inline Type *getWithNewBitWidth(unsigned NewBitWidth) const;
427
428 /// Given scalar/vector integer type, returns a type with elements twice as
429 /// wide as in the original type. For vectors, preserves element count.
430 inline Type *getExtendedType() const;
431
432 /// Get the address space of this pointer or pointer vector type.
433 inline unsigned getPointerAddressSpace() const;
434
435 //===--------------------------------------------------------------------===//
436 // Static members exported by the Type class itself. Useful for getting
437 // instances of Type.
438 //
439
440 /// Return a type based on an identifier.
442
443 //===--------------------------------------------------------------------===//
444 // These are the builtin types that are always available.
445 //
459 static IntegerType *getIntNTy(LLVMContext &C, unsigned N);
466 template <typename ScalarTy> static Type *getScalarTy(LLVMContext &C) {
467 int noOfBits = sizeof(ScalarTy) * CHAR_BIT;
468 if (std::is_integral<ScalarTy>::value) {
469 return (Type*) Type::getIntNTy(C, noOfBits);
470 } else if (std::is_floating_point<ScalarTy>::value) {
471 switch (noOfBits) {
472 case 32:
473 return Type::getFloatTy(C);
474 case 64:
475 return Type::getDoubleTy(C);
476 }
477 }
478 llvm_unreachable("Unsupported type in Type::getScalarTy");
479 }
481
482 //===--------------------------------------------------------------------===//
483 // Convenience methods for getting pointer types.
484 //
487
488 /// Return a pointer to the current type. This is equivalent to
489 /// PointerType::get(Foo, AddrSpace).
490 /// TODO: Remove this after opaque pointer transition is complete.
491 PointerType *getPointerTo(unsigned AddrSpace = 0) const;
492
493private:
494 /// Derived types like structures and arrays are sized iff all of the members
495 /// of the type are sized as well. Since asking for their size is relatively
496 /// uncommon, move this operation out-of-line.
497 bool isSizedDerivedType(SmallPtrSetImpl<Type*> *Visited = nullptr) const;
498};
499
500// Printing of types.
502 T.print(OS);
503 return OS;
504}
505
506// allow isa<PointerType>(x) to work without DerivedTypes.h included.
507template <> struct isa_impl<PointerType, Type> {
508 static inline bool doit(const Type &Ty) {
509 return Ty.getTypeID() == Type::PointerTyID;
510 }
511};
512
513// Create wrappers for C Binding types (see CBindingWrapping.h).
515
516/* Specialized opaque type conversions.
517 */
519 return reinterpret_cast<Type**>(Tys);
520}
521
522inline LLVMTypeRef *wrap(Type **Tys) {
523 return reinterpret_cast<LLVMTypeRef*>(const_cast<Type**>(Tys));
524}
525
526} // end namespace llvm
527
528#endif // LLVM_IR_TYPE_H
aarch64 promote const
always inline
#define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref)
#define LLVM_DEPRECATED(MSG, FIX)
Definition: Compiler.h:157
#define LLVM_READONLY
Definition: Compiler.h:227
Type::TypeID TypeID
LLVMContext & Context
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Class to represent integer types.
Definition: DerivedTypes.h:40
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
Class to represent pointers.
Definition: DerivedTypes.h:646
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
Definition: SmallPtrSet.h:321
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
~Type()=default
bool isIntOrIntVectorTy(unsigned BitWidth) const
Return true if this is an integer type or a vector of integer types of the given width.
Definition: Type.h:238
static Type * getHalfTy(LLVMContext &C)
unsigned getIntegerBitWidth() const
Type * getStructElementType(unsigned N) const
static Type * getDoubleTy(LLVMContext &C)
const fltSemantics & getFltSemantics() const
bool isVectorTy() const
True if this is an instance of VectorType.
Definition: Type.h:265
static Type * getFloatingPointTy(LLVMContext &C, const fltSemantics &S)
bool isX86_FP80Ty() const
Return true if this is x86 long double.
Definition: Type.h:160
PointerType * getPointerTo(unsigned AddrSpace=0) const
Return a pointer to the current type.
bool isArrayTy() const
True if this is an instance of ArrayType.
Definition: Type.h:252
static Type * getX86_FP80Ty(LLVMContext &C)
bool isLabelTy() const
Return true if this is 'label'.
Definition: Type.h:219
static Type * getBFloatTy(LLVMContext &C)
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition: Type.h:234
bool isPointerTy() const
True if this is an instance of PointerType.
Definition: Type.h:255
static IntegerType * getInt1Ty(LLVMContext &C)
Type * getArrayElementType() const
Definition: Type.h:404
bool isFloatTy() const
Return true if this is 'float', a 32-bit IEEE fp type.
Definition: Type.h:154
bool isEmptyTy() const
Return true if this type is empty, that is, it has no elements or all of its elements are empty.
Type * getNonOpaquePointerElementType() const
Only use this method in code that is not reachable with opaque pointers, or part of deprecated method...
Definition: Type.h:415
void dump() const
bool isIntegerTy(unsigned Bitwidth) const
Return true if this is an IntegerType of the given width.
static Type * getX86_AMXTy(LLVMContext &C)
bool isBFloatTy() const
Return true if this is 'bfloat', a 16-bit bfloat type.
Definition: Type.h:146
static Type * getMetadataTy(LLVMContext &C)
StringRef getStructName() const
Type *const * subtype_iterator
Definition: Type.h:357
unsigned getStructNumElements() const
unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
uint64_t getArrayNumElements() const
TypeID
Definitions of all of the base types for the Type system.
Definition: Type.h:54
@ X86_MMXTyID
MMX vectors (64 bits, X86 specific)
Definition: Type.h:66
@ X86_AMXTyID
AMX vectors (8192 bits, X86 specific)
Definition: Type.h:67
@ FunctionTyID
Functions.
Definition: Type.h:72
@ ArrayTyID
Arrays.
Definition: Type.h:75
@ TypedPointerTyID
Typed pointer used by some GPU targets.
Definition: Type.h:78
@ HalfTyID
16-bit floating point type
Definition: Type.h:56
@ TargetExtTyID
Target extension type.
Definition: Type.h:79
@ VoidTyID
type with no size
Definition: Type.h:63
@ ScalableVectorTyID
Scalable SIMD vector type.
Definition: Type.h:77
@ LabelTyID
Labels.
Definition: Type.h:64
@ FloatTyID
32-bit floating point type
Definition: Type.h:58
@ StructTyID
Structures.
Definition: Type.h:74
@ IntegerTyID
Arbitrary bit width integers.
Definition: Type.h:71
@ FixedVectorTyID
Fixed width SIMD vector type.
Definition: Type.h:76
@ BFloatTyID
16-bit floating point type (7-bit significand)
Definition: Type.h:57
@ DoubleTyID
64-bit floating point type
Definition: Type.h:59
@ X86_FP80TyID
80-bit floating point type (X87)
Definition: Type.h:60
@ PPC_FP128TyID
128-bit floating point type (two 64-bits, PowerPC)
Definition: Type.h:62
@ MetadataTyID
Metadata.
Definition: Type.h:65
@ TokenTyID
Tokens.
Definition: Type.h:68
@ PointerTyID
Pointers.
Definition: Type.h:73
@ FP128TyID
128-bit floating point type (112-bit significand)
Definition: Type.h:61
ArrayRef< Type * > subtypes() const
Definition: Type.h:361
bool isSingleValueType() const
Return true if the type is a valid type for a register in codegen.
Definition: Type.h:287
bool isX86_MMXTy() const
Return true if this is X86 MMX.
Definition: Type.h:201
void print(raw_ostream &O, bool IsForDebug=false, bool NoDetails=false) const
Print the current type.
unsigned getNumContainedTypes() const
Return the number of types in the derived type.
Definition: Type.h:383
bool isPPC_FP128Ty() const
Return true if this is powerpc long double.
Definition: Type.h:166
unsigned NumContainedTys
Keeps track of how many Type*'s there are in the ContainedTys list.
Definition: Type.h:107
static Type * getX86_MMXTy(LLVMContext &C)
static IntegerType * getIntNTy(LLVMContext &C, unsigned N)
bool isFP128Ty() const
Return true if this is 'fp128'.
Definition: Type.h:163
bool is16bitFPTy() const
Return true if this is a 16-bit float type.
Definition: Type.h:149
StringRef getTargetExtName() const
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
static Type * getVoidTy(LLVMContext &C)
static Type * getLabelTy(LLVMContext &C)
bool isScalableTargetExtTy() const
Return true if this is a target extension type with a scalable layout.
bool isMultiUnitFPType() const
Returns true if this is a floating-point type that is an unevaluated sum of multiple floating-point u...
Definition: Type.h:194
Type(LLVMContext &C, TypeID tid)
Definition: Type.h:94
bool isStructTy() const
True if this is an instance of StructType.
Definition: Type.h:249
bool isFirstClassType() const
Return true if the type is "first class", meaning it is a valid type for a Value.
Definition: Type.h:281
static Type * getFP128Ty(LLVMContext &C)
Type * getWithNewBitWidth(unsigned NewBitWidth) const
Given an integer or vector type, change the lane bitwidth to NewBitwidth, whilst keeping the old numb...
bool isTargetExtTy() const
Return true if this is a target extension type.
Definition: Type.h:207
bool isSized(SmallPtrSetImpl< Type * > *Visited=nullptr) const
Return true if it makes sense to take the size of this type.
Definition: Type.h:302
static IntegerType * getInt16Ty(LLVMContext &C)
bool isAggregateType() const
Return true if the type is an aggregate type.
Definition: Type.h:295
bool isHalfTy() const
Return true if this is 'half', a 16-bit IEEE fp type.
Definition: Type.h:143
Type * getWithNewType(Type *EltTy) const
Given vector type, change the element type, whilst keeping the old number of elements.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition: Type.h:129
static Type * getPrimitiveType(LLVMContext &C, TypeID IDNumber)
Return a type based on an identifier.
int getFPMantissaWidth() const
Return the width of the mantissa of this type.
Type *const * ContainedTys
A pointer to the array of Types contained by this Type.
Definition: Type.h:114
unsigned getSubclassData() const
Definition: Type.h:98
static IntegerType * getInt8Ty(LLVMContext &C)
bool isIEEE() const
Return whether the type is IEEE compatible, as defined by the eponymous method in APFloat.
std::reverse_iterator< subtype_iterator > subtype_reverse_iterator
Definition: Type.h:365
static IntegerType * getInt128Ty(LLVMContext &C)
bool isFunctionVarArg() const
bool isDoubleTy() const
Return true if this is 'double', a 64-bit IEEE fp type.
Definition: Type.h:157
void setSubclassData(unsigned val)
Definition: Type.h:100
static Type * getTokenTy(LLVMContext &C)
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition: Type.h:185
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
Definition: Type.h:262
subtype_iterator subtype_begin() const
Definition: Type.h:359
bool isX86_AMXTy() const
Return true if this is X86 AMX.
Definition: Type.h:204
static Type * getScalarTy(LLVMContext &C)
Definition: Type.h:466
bool isFunctionTy() const
True if this is an instance of FunctionType.
Definition: Type.h:246
bool isScalableTy() const
Return true if this is a type whose size is a known multiple of vscale.
bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
Definition: Type.h:243
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
Type * getExtendedType() const
Given scalar/vector integer type, returns a type with elements twice as wide as in the original type.
static Type * getFloatTy(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:228
TypeID getTypeID() const
Return the type id for the type.
Definition: Type.h:137
static Type * getWasm_FuncrefTy(LLVMContext &C)
bool isTokenTy() const
Return true if this is 'token'.
Definition: Type.h:225
Type * getFunctionParamType(unsigned i) const
subtype_reverse_iterator subtype_rend() const
Definition: Type.h:370
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Definition: Type.h:216
TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
subtype_reverse_iterator subtype_rbegin() const
Definition: Type.h:367
Type * getContainedType(unsigned i) const
This method is used to implement the type iterator (defined at the end of the file).
Definition: Type.h:377
subtype_iterator subtype_end() const
Definition: Type.h:360
bool isIEEELikeFPTy() const
Return true if this is a well-behaved IEEE-like type, which has a IEEE compatible layout as defined b...
Definition: Type.h:171
static Type * getPPC_FP128Ty(LLVMContext &C)
bool isOpaquePointerTy() const
True if this is an instance of an opaque PointerType.
Definition: Type.h:259
unsigned getFunctionNumParams() const
static Type * getWasm_ExternrefTy(LLVMContext &C)
bool isVoidTy() const
Return true if this is 'void'.
Definition: Type.h:140
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition: Type.h:348
bool isMetadataTy() const
Return true if this is 'metadata'.
Definition: Type.h:222
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
struct LLVMOpaqueType * LLVMTypeRef
Each value in the LLVM IR has a type, an LLVMTypeRef.
Definition: Types.h:68
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Attribute unwrap(LLVMAttributeRef Attr)
Definition: Attributes.h:303
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
Definition: APFixedPoint.h:293
constexpr unsigned BitWidth
Definition: BitmaskEnum.h:191
LLVMAttributeRef wrap(Attribute Attr)
Definition: Attributes.h:298
#define N
static bool doit(const Type &Ty)
Definition: Type.h:508