fix the varargs version of StructType::get to not require an LLVMContext, making...
[oota-llvm.git] / include / llvm / DerivedTypes.h
1 //===-- llvm/DerivedTypes.h - Classes for handling data 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 contains the declarations of classes that represent "derived
11 // types".  These are things like "arrays of x" or "structure of x, y, z" or
12 // "function returning x taking (y,z) as parameters", etc...
13 //
14 // The implementations of these classes live in the Type.cpp file.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_DERIVED_TYPES_H
19 #define LLVM_DERIVED_TYPES_H
20
21 #include "llvm/Type.h"
22 #include "llvm/Support/DataTypes.h"
23
24 namespace llvm {
25
26 class Value;
27 template<class ValType, class TypeClass> class TypeMap;
28 class FunctionValType;
29 class ArrayValType;
30 class StructValType;
31 class PointerValType;
32 class VectorValType;
33 class IntegerValType;
34 class APInt;
35 class LLVMContext;
36 template<typename T> class ArrayRef;
37
38 class DerivedType : public Type {
39   friend class Type;
40
41 protected:
42   explicit DerivedType(LLVMContext &C, TypeID id) : Type(C, id) {}
43
44   /// notifyUsesThatTypeBecameConcrete - Notify AbstractTypeUsers of this type
45   /// that the current type has transitioned from being abstract to being
46   /// concrete.
47   ///
48   void notifyUsesThatTypeBecameConcrete();
49
50   /// dropAllTypeUses - When this (abstract) type is resolved to be equal to
51   /// another (more concrete) type, we must eliminate all references to other
52   /// types, to avoid some circular reference problems.
53   ///
54   void dropAllTypeUses();
55
56 public:
57
58   //===--------------------------------------------------------------------===//
59   // Abstract Type handling methods - These types have special lifetimes, which
60   // are managed by (add|remove)AbstractTypeUser. See comments in
61   // AbstractTypeUser.h for more information.
62
63   /// refineAbstractTypeTo - This function is used to when it is discovered that
64   /// the 'this' abstract type is actually equivalent to the NewType specified.
65   /// This causes all users of 'this' to switch to reference the more concrete
66   /// type NewType and for 'this' to be deleted.
67   ///
68   void refineAbstractTypeTo(const Type *NewType);
69
70   void dump() const { Type::dump(); }
71
72   // Methods for support type inquiry through isa, cast, and dyn_cast.
73   static inline bool classof(const DerivedType *) { return true; }
74   static inline bool classof(const Type *T) {
75     return T->isDerivedType();
76   }
77 };
78
79 /// Class to represent integer types. Note that this class is also used to
80 /// represent the built-in integer types: Int1Ty, Int8Ty, Int16Ty, Int32Ty and
81 /// Int64Ty.
82 /// @brief Integer representation type
83 class IntegerType : public DerivedType {
84   friend class LLVMContextImpl;
85   
86 protected:
87   explicit IntegerType(LLVMContext &C, unsigned NumBits) : 
88       DerivedType(C, IntegerTyID) {
89     setSubclassData(NumBits);
90   }
91   friend class TypeMap<IntegerValType, IntegerType>;
92 public:
93   /// This enum is just used to hold constants we need for IntegerType.
94   enum {
95     MIN_INT_BITS = 1,        ///< Minimum number of bits that can be specified
96     MAX_INT_BITS = (1<<23)-1 ///< Maximum number of bits that can be specified
97       ///< Note that bit width is stored in the Type classes SubclassData field
98       ///< which has 23 bits. This yields a maximum bit width of 8,388,607 bits.
99   };
100
101   /// This static method is the primary way of constructing an IntegerType.
102   /// If an IntegerType with the same NumBits value was previously instantiated,
103   /// that instance will be returned. Otherwise a new one will be created. Only
104   /// one instance with a given NumBits value is ever created.
105   /// @brief Get or create an IntegerType instance.
106   static const IntegerType *get(LLVMContext &C, unsigned NumBits);
107
108   /// @brief Get the number of bits in this IntegerType
109   unsigned getBitWidth() const { return getSubclassData(); }
110
111   /// getBitMask - Return a bitmask with ones set for all of the bits
112   /// that can be set by an unsigned version of this type.  This is 0xFF for
113   /// i8, 0xFFFF for i16, etc.
114   uint64_t getBitMask() const {
115     return ~uint64_t(0UL) >> (64-getBitWidth());
116   }
117
118   /// getSignBit - Return a uint64_t with just the most significant bit set (the
119   /// sign bit, if the value is treated as a signed number).
120   uint64_t getSignBit() const {
121     return 1ULL << (getBitWidth()-1);
122   }
123
124   /// For example, this is 0xFF for an 8 bit integer, 0xFFFF for i16, etc.
125   /// @returns a bit mask with ones set for all the bits of this type.
126   /// @brief Get a bit mask for this type.
127   APInt getMask() const;
128
129   /// This method determines if the width of this IntegerType is a power-of-2
130   /// in terms of 8 bit bytes.
131   /// @returns true if this is a power-of-2 byte width.
132   /// @brief Is this a power-of-2 byte-width IntegerType ?
133   bool isPowerOf2ByteWidth() const;
134
135   // Methods for support type inquiry through isa, cast, and dyn_cast.
136   static inline bool classof(const IntegerType *) { return true; }
137   static inline bool classof(const Type *T) {
138     return T->getTypeID() == IntegerTyID;
139   }
140 };
141
142
143 /// FunctionType - Class to represent function types
144 ///
145 class FunctionType : public DerivedType {
146   friend class TypeMap<FunctionValType, FunctionType>;
147   FunctionType(const FunctionType &);                   // Do not implement
148   const FunctionType &operator=(const FunctionType &);  // Do not implement
149   FunctionType(const Type *Result, ArrayRef<const Type*> Params,
150                bool IsVarArgs);
151
152 public:
153   /// FunctionType::get - This static method is the primary way of constructing
154   /// a FunctionType.
155   ///
156   static FunctionType *get(const Type *Result,
157                            ArrayRef<const Type*> Params, bool isVarArg);
158
159   /// FunctionType::get - Create a FunctionType taking no parameters.
160   ///
161   static FunctionType *get(const Type *Result, bool isVarArg);
162   
163   /// isValidReturnType - Return true if the specified type is valid as a return
164   /// type.
165   static bool isValidReturnType(const Type *RetTy);
166
167   /// isValidArgumentType - Return true if the specified type is valid as an
168   /// argument type.
169   static bool isValidArgumentType(const Type *ArgTy);
170
171   bool isVarArg() const { return getSubclassData(); }
172   const Type *getReturnType() const { return ContainedTys[0]; }
173
174   typedef Type::subtype_iterator param_iterator;
175   param_iterator param_begin() const { return ContainedTys + 1; }
176   param_iterator param_end() const { return &ContainedTys[NumContainedTys]; }
177
178   // Parameter type accessors.
179   const Type *getParamType(unsigned i) const { return ContainedTys[i+1]; }
180
181   /// getNumParams - Return the number of fixed parameters this function type
182   /// requires.  This does not consider varargs.
183   ///
184   unsigned getNumParams() const { return NumContainedTys - 1; }
185
186   // Implement the AbstractTypeUser interface.
187   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
188   virtual void typeBecameConcrete(const DerivedType *AbsTy);
189
190   // Methods for support type inquiry through isa, cast, and dyn_cast.
191   static inline bool classof(const FunctionType *) { return true; }
192   static inline bool classof(const Type *T) {
193     return T->getTypeID() == FunctionTyID;
194   }
195 };
196
197
198 /// CompositeType - Common super class of ArrayType, StructType, PointerType
199 /// and VectorType.
200 class CompositeType : public DerivedType {
201 protected:
202   explicit CompositeType(LLVMContext &C, TypeID tid) : DerivedType(C, tid) { }
203 public:
204
205   /// getTypeAtIndex - Given an index value into the type, return the type of
206   /// the element.
207   ///
208   const Type *getTypeAtIndex(const Value *V) const;
209   const Type *getTypeAtIndex(unsigned Idx) const;
210   bool indexValid(const Value *V) const;
211   bool indexValid(unsigned Idx) const;
212
213   // Methods for support type inquiry through isa, cast, and dyn_cast.
214   static inline bool classof(const CompositeType *) { return true; }
215   static inline bool classof(const Type *T) {
216     return T->getTypeID() == ArrayTyID ||
217            T->getTypeID() == StructTyID ||
218            T->getTypeID() == PointerTyID ||
219            T->getTypeID() == VectorTyID;
220   }
221 };
222
223
224 /// StructType - Class to represent struct types, both normal and packed.
225 ///
226 class StructType : public CompositeType {
227   friend class TypeMap<StructValType, StructType>;
228   StructType(const StructType &);                   // Do not implement
229   const StructType &operator=(const StructType &);  // Do not implement
230   StructType(LLVMContext &C, ArrayRef<const Type*> Types, bool isPacked);
231 public:
232   /// StructType::get - This static method is the primary way to create a
233   /// StructType.
234   ///
235   static StructType *get(LLVMContext &Context, ArrayRef<const Type*> Params,
236                          bool isPacked = false);
237
238   /// StructType::get - Create an empty structure type.
239   ///
240   static StructType *get(LLVMContext &Context, bool isPacked = false);
241   
242   /// StructType::get - This static method is a convenience method for creating
243   /// structure types by specifying the elements as arguments.  Note that this
244   /// method always returns a non-packed struct, and requires at least one
245   /// element type.
246   static StructType *get(const Type *elt1, ...) END_WITH_NULL;
247
248   /// isValidElementType - Return true if the specified type is valid as a
249   /// element type.
250   static bool isValidElementType(const Type *ElemTy);
251
252   bool isPacked() const { return getSubclassData() != 0 ? true : false; }
253
254   // Iterator access to the elements.
255   typedef Type::subtype_iterator element_iterator;
256   element_iterator element_begin() const { return ContainedTys; }
257   element_iterator element_end() const { return &ContainedTys[NumContainedTys];}
258
259   // Random access to the elements
260   unsigned getNumElements() const { return NumContainedTys; }
261   const Type *getElementType(unsigned N) const {
262     assert(N < NumContainedTys && "Element number out of range!");
263     return ContainedTys[N];
264   }
265
266   // Implement the AbstractTypeUser interface.
267   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
268   virtual void typeBecameConcrete(const DerivedType *AbsTy);
269
270   // Methods for support type inquiry through isa, cast, and dyn_cast.
271   static inline bool classof(const StructType *) { return true; }
272   static inline bool classof(const Type *T) {
273     return T->getTypeID() == StructTyID;
274   }
275 };
276
277 /// SequentialType - This is the superclass of the array, pointer and vector
278 /// type classes.  All of these represent "arrays" in memory.  The array type
279 /// represents a specifically sized array, pointer types are unsized/unknown
280 /// size arrays, vector types represent specifically sized arrays that
281 /// allow for use of SIMD instructions.  SequentialType holds the common
282 /// features of all, which stem from the fact that all three lay their
283 /// components out in memory identically.
284 ///
285 class SequentialType : public CompositeType {
286   PATypeHandle ContainedType;       ///< Storage for the single contained type.
287   SequentialType(const SequentialType &);                  // Do not implement!
288   const SequentialType &operator=(const SequentialType &); // Do not implement!
289
290   // avoiding warning: 'this' : used in base member initializer list
291   SequentialType *this_() { return this; }
292 protected:
293   SequentialType(TypeID TID, const Type *ElType)
294     : CompositeType(ElType->getContext(), TID), ContainedType(ElType, this_()) {
295     ContainedTys = &ContainedType;
296     NumContainedTys = 1;
297   }
298
299 public:
300   const Type *getElementType() const { return ContainedTys[0]; }
301
302   // Methods for support type inquiry through isa, cast, and dyn_cast.
303   static inline bool classof(const SequentialType *) { return true; }
304   static inline bool classof(const Type *T) {
305     return T->getTypeID() == ArrayTyID ||
306            T->getTypeID() == PointerTyID ||
307            T->getTypeID() == VectorTyID;
308   }
309 };
310
311
312 /// ArrayType - Class to represent array types.
313 ///
314 class ArrayType : public SequentialType {
315   friend class TypeMap<ArrayValType, ArrayType>;
316   uint64_t NumElements;
317
318   ArrayType(const ArrayType &);                   // Do not implement
319   const ArrayType &operator=(const ArrayType &);  // Do not implement
320   ArrayType(const Type *ElType, uint64_t NumEl);
321 public:
322   /// ArrayType::get - This static method is the primary way to construct an
323   /// ArrayType
324   ///
325   static ArrayType *get(const Type *ElementType, uint64_t NumElements);
326
327   /// isValidElementType - Return true if the specified type is valid as a
328   /// element type.
329   static bool isValidElementType(const Type *ElemTy);
330
331   uint64_t getNumElements() const { return NumElements; }
332
333   // Implement the AbstractTypeUser interface.
334   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
335   virtual void typeBecameConcrete(const DerivedType *AbsTy);
336
337   // Methods for support type inquiry through isa, cast, and dyn_cast.
338   static inline bool classof(const ArrayType *) { return true; }
339   static inline bool classof(const Type *T) {
340     return T->getTypeID() == ArrayTyID;
341   }
342 };
343
344 /// VectorType - Class to represent vector types.
345 ///
346 class VectorType : public SequentialType {
347   friend class TypeMap<VectorValType, VectorType>;
348   unsigned NumElements;
349
350   VectorType(const VectorType &);                   // Do not implement
351   const VectorType &operator=(const VectorType &);  // Do not implement
352   VectorType(const Type *ElType, unsigned NumEl);
353 public:
354   /// VectorType::get - This static method is the primary way to construct an
355   /// VectorType.
356   ///
357   static VectorType *get(const Type *ElementType, unsigned NumElements);
358
359   /// VectorType::getInteger - This static method gets a VectorType with the
360   /// same number of elements as the input type, and the element type is an
361   /// integer type of the same width as the input element type.
362   ///
363   static VectorType *getInteger(const VectorType *VTy) {
364     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
365     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits);
366     return VectorType::get(EltTy, VTy->getNumElements());
367   }
368
369   /// VectorType::getExtendedElementVectorType - This static method is like
370   /// getInteger except that the element types are twice as wide as the
371   /// elements in the input type.
372   ///
373   static VectorType *getExtendedElementVectorType(const VectorType *VTy) {
374     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
375     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits * 2);
376     return VectorType::get(EltTy, VTy->getNumElements());
377   }
378
379   /// VectorType::getTruncatedElementVectorType - This static method is like
380   /// getInteger except that the element types are half as wide as the
381   /// elements in the input type.
382   ///
383   static VectorType *getTruncatedElementVectorType(const VectorType *VTy) {
384     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
385     assert((EltBits & 1) == 0 &&
386            "Cannot truncate vector element with odd bit-width");
387     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits / 2);
388     return VectorType::get(EltTy, VTy->getNumElements());
389   }
390
391   /// isValidElementType - Return true if the specified type is valid as a
392   /// element type.
393   static bool isValidElementType(const Type *ElemTy);
394
395   /// @brief Return the number of elements in the Vector type.
396   unsigned getNumElements() const { return NumElements; }
397
398   /// @brief Return the number of bits in the Vector type.
399   unsigned getBitWidth() const {
400     return NumElements * getElementType()->getPrimitiveSizeInBits();
401   }
402
403   // Implement the AbstractTypeUser interface.
404   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
405   virtual void typeBecameConcrete(const DerivedType *AbsTy);
406
407   // Methods for support type inquiry through isa, cast, and dyn_cast.
408   static inline bool classof(const VectorType *) { return true; }
409   static inline bool classof(const Type *T) {
410     return T->getTypeID() == VectorTyID;
411   }
412 };
413
414
415 /// PointerType - Class to represent pointers.
416 ///
417 class PointerType : public SequentialType {
418   friend class TypeMap<PointerValType, PointerType>;
419
420   PointerType(const PointerType &);                   // Do not implement
421   const PointerType &operator=(const PointerType &);  // Do not implement
422   explicit PointerType(const Type *ElType, unsigned AddrSpace);
423 public:
424   /// PointerType::get - This constructs a pointer to an object of the specified
425   /// type in a numbered address space.
426   static PointerType *get(const Type *ElementType, unsigned AddressSpace);
427
428   /// PointerType::getUnqual - This constructs a pointer to an object of the
429   /// specified type in the generic address space (address space zero).
430   static PointerType *getUnqual(const Type *ElementType) {
431     return PointerType::get(ElementType, 0);
432   }
433
434   /// isValidElementType - Return true if the specified type is valid as a
435   /// element type.
436   static bool isValidElementType(const Type *ElemTy);
437
438   /// @brief Return the address space of the Pointer type.
439   inline unsigned getAddressSpace() const { return getSubclassData(); }
440
441   // Implement the AbstractTypeUser interface.
442   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
443   virtual void typeBecameConcrete(const DerivedType *AbsTy);
444
445   // Implement support type inquiry through isa, cast, and dyn_cast.
446   static inline bool classof(const PointerType *) { return true; }
447   static inline bool classof(const Type *T) {
448     return T->getTypeID() == PointerTyID;
449   }
450 };
451
452
453 /// OpaqueType - Class to represent opaque types.
454 ///
455 class OpaqueType : public DerivedType {
456   friend class LLVMContextImpl;
457   OpaqueType(const OpaqueType &);                   // DO NOT IMPLEMENT
458   const OpaqueType &operator=(const OpaqueType &);  // DO NOT IMPLEMENT
459   OpaqueType(LLVMContext &C);
460 public:
461   /// OpaqueType::get - Static factory method for the OpaqueType class.
462   ///
463   static OpaqueType *get(LLVMContext &C);
464
465   // Implement support for type inquiry through isa, cast, and dyn_cast.
466   static inline bool classof(const OpaqueType *) { return true; }
467   static inline bool classof(const Type *T) {
468     return T->getTypeID() == OpaqueTyID;
469   }
470 };
471
472 } // End llvm namespace
473
474 #endif