eliminate some pointless virtual methods.
[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
243   /// creating structure types by specifying the elements as arguments.
244   /// Note that this method always returns a non-packed struct.  To get
245   /// an empty struct, pass NULL, NULL.
246   static StructType *get(LLVMContext &Context, 
247                          const Type *type, ...) END_WITH_NULL;
248
249   /// isValidElementType - Return true if the specified type is valid as a
250   /// element type.
251   static bool isValidElementType(const Type *ElemTy);
252
253   bool isPacked() const { return getSubclassData() != 0 ? true : false; }
254
255   // Iterator access to the elements.
256   typedef Type::subtype_iterator element_iterator;
257   element_iterator element_begin() const { return ContainedTys; }
258   element_iterator element_end() const { return &ContainedTys[NumContainedTys];}
259
260   // Random access to the elements
261   unsigned getNumElements() const { return NumContainedTys; }
262   const Type *getElementType(unsigned N) const {
263     assert(N < NumContainedTys && "Element number out of range!");
264     return ContainedTys[N];
265   }
266
267   // Implement the AbstractTypeUser interface.
268   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
269   virtual void typeBecameConcrete(const DerivedType *AbsTy);
270
271   // Methods for support type inquiry through isa, cast, and dyn_cast.
272   static inline bool classof(const StructType *) { return true; }
273   static inline bool classof(const Type *T) {
274     return T->getTypeID() == StructTyID;
275   }
276 };
277
278 /// SequentialType - This is the superclass of the array, pointer and vector
279 /// type classes.  All of these represent "arrays" in memory.  The array type
280 /// represents a specifically sized array, pointer types are unsized/unknown
281 /// size arrays, vector types represent specifically sized arrays that
282 /// allow for use of SIMD instructions.  SequentialType holds the common
283 /// features of all, which stem from the fact that all three lay their
284 /// components out in memory identically.
285 ///
286 class SequentialType : public CompositeType {
287   PATypeHandle ContainedType;       ///< Storage for the single contained type.
288   SequentialType(const SequentialType &);                  // Do not implement!
289   const SequentialType &operator=(const SequentialType &); // Do not implement!
290
291   // avoiding warning: 'this' : used in base member initializer list
292   SequentialType *this_() { return this; }
293 protected:
294   SequentialType(TypeID TID, const Type *ElType)
295     : CompositeType(ElType->getContext(), TID), ContainedType(ElType, this_()) {
296     ContainedTys = &ContainedType;
297     NumContainedTys = 1;
298   }
299
300 public:
301   const Type *getElementType() const { return ContainedTys[0]; }
302
303   // Methods for support type inquiry through isa, cast, and dyn_cast.
304   static inline bool classof(const SequentialType *) { return true; }
305   static inline bool classof(const Type *T) {
306     return T->getTypeID() == ArrayTyID ||
307            T->getTypeID() == PointerTyID ||
308            T->getTypeID() == VectorTyID;
309   }
310 };
311
312
313 /// ArrayType - Class to represent array types.
314 ///
315 class ArrayType : public SequentialType {
316   friend class TypeMap<ArrayValType, ArrayType>;
317   uint64_t NumElements;
318
319   ArrayType(const ArrayType &);                   // Do not implement
320   const ArrayType &operator=(const ArrayType &);  // Do not implement
321   ArrayType(const Type *ElType, uint64_t NumEl);
322 public:
323   /// ArrayType::get - This static method is the primary way to construct an
324   /// ArrayType
325   ///
326   static ArrayType *get(const Type *ElementType, uint64_t NumElements);
327
328   /// isValidElementType - Return true if the specified type is valid as a
329   /// element type.
330   static bool isValidElementType(const Type *ElemTy);
331
332   uint64_t getNumElements() const { return NumElements; }
333
334   // Implement the AbstractTypeUser interface.
335   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
336   virtual void typeBecameConcrete(const DerivedType *AbsTy);
337
338   // Methods for support type inquiry through isa, cast, and dyn_cast.
339   static inline bool classof(const ArrayType *) { return true; }
340   static inline bool classof(const Type *T) {
341     return T->getTypeID() == ArrayTyID;
342   }
343 };
344
345 /// VectorType - Class to represent vector types.
346 ///
347 class VectorType : public SequentialType {
348   friend class TypeMap<VectorValType, VectorType>;
349   unsigned NumElements;
350
351   VectorType(const VectorType &);                   // Do not implement
352   const VectorType &operator=(const VectorType &);  // Do not implement
353   VectorType(const Type *ElType, unsigned NumEl);
354 public:
355   /// VectorType::get - This static method is the primary way to construct an
356   /// VectorType.
357   ///
358   static VectorType *get(const Type *ElementType, unsigned NumElements);
359
360   /// VectorType::getInteger - This static method gets a VectorType with the
361   /// same number of elements as the input type, and the element type is an
362   /// integer type of the same width as the input element type.
363   ///
364   static VectorType *getInteger(const VectorType *VTy) {
365     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
366     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits);
367     return VectorType::get(EltTy, VTy->getNumElements());
368   }
369
370   /// VectorType::getExtendedElementVectorType - This static method is like
371   /// getInteger except that the element types are twice as wide as the
372   /// elements in the input type.
373   ///
374   static VectorType *getExtendedElementVectorType(const VectorType *VTy) {
375     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
376     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits * 2);
377     return VectorType::get(EltTy, VTy->getNumElements());
378   }
379
380   /// VectorType::getTruncatedElementVectorType - This static method is like
381   /// getInteger except that the element types are half as wide as the
382   /// elements in the input type.
383   ///
384   static VectorType *getTruncatedElementVectorType(const VectorType *VTy) {
385     unsigned EltBits = VTy->getElementType()->getPrimitiveSizeInBits();
386     assert((EltBits & 1) == 0 &&
387            "Cannot truncate vector element with odd bit-width");
388     const Type *EltTy = IntegerType::get(VTy->getContext(), EltBits / 2);
389     return VectorType::get(EltTy, VTy->getNumElements());
390   }
391
392   /// isValidElementType - Return true if the specified type is valid as a
393   /// element type.
394   static bool isValidElementType(const Type *ElemTy);
395
396   /// @brief Return the number of elements in the Vector type.
397   unsigned getNumElements() const { return NumElements; }
398
399   /// @brief Return the number of bits in the Vector type.
400   unsigned getBitWidth() const {
401     return NumElements * getElementType()->getPrimitiveSizeInBits();
402   }
403
404   // Implement the AbstractTypeUser interface.
405   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
406   virtual void typeBecameConcrete(const DerivedType *AbsTy);
407
408   // Methods for support type inquiry through isa, cast, and dyn_cast.
409   static inline bool classof(const VectorType *) { return true; }
410   static inline bool classof(const Type *T) {
411     return T->getTypeID() == VectorTyID;
412   }
413 };
414
415
416 /// PointerType - Class to represent pointers.
417 ///
418 class PointerType : public SequentialType {
419   friend class TypeMap<PointerValType, PointerType>;
420
421   PointerType(const PointerType &);                   // Do not implement
422   const PointerType &operator=(const PointerType &);  // Do not implement
423   explicit PointerType(const Type *ElType, unsigned AddrSpace);
424 public:
425   /// PointerType::get - This constructs a pointer to an object of the specified
426   /// type in a numbered address space.
427   static PointerType *get(const Type *ElementType, unsigned AddressSpace);
428
429   /// PointerType::getUnqual - This constructs a pointer to an object of the
430   /// specified type in the generic address space (address space zero).
431   static PointerType *getUnqual(const Type *ElementType) {
432     return PointerType::get(ElementType, 0);
433   }
434
435   /// isValidElementType - Return true if the specified type is valid as a
436   /// element type.
437   static bool isValidElementType(const Type *ElemTy);
438
439   /// @brief Return the address space of the Pointer type.
440   inline unsigned getAddressSpace() const { return getSubclassData(); }
441
442   // Implement the AbstractTypeUser interface.
443   virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy);
444   virtual void typeBecameConcrete(const DerivedType *AbsTy);
445
446   // Implement support type inquiry through isa, cast, and dyn_cast.
447   static inline bool classof(const PointerType *) { return true; }
448   static inline bool classof(const Type *T) {
449     return T->getTypeID() == PointerTyID;
450   }
451 };
452
453
454 /// OpaqueType - Class to represent opaque types.
455 ///
456 class OpaqueType : public DerivedType {
457   friend class LLVMContextImpl;
458   OpaqueType(const OpaqueType &);                   // DO NOT IMPLEMENT
459   const OpaqueType &operator=(const OpaqueType &);  // DO NOT IMPLEMENT
460   OpaqueType(LLVMContext &C);
461 public:
462   /// OpaqueType::get - Static factory method for the OpaqueType class.
463   ///
464   static OpaqueType *get(LLVMContext &C);
465
466   // Implement support for type inquiry through isa, cast, and dyn_cast.
467   static inline bool classof(const OpaqueType *) { return true; }
468   static inline bool classof(const Type *T) {
469     return T->getTypeID() == OpaqueTyID;
470   }
471 };
472
473 } // End llvm namespace
474
475 #endif