Revert r135042. As Chris pointed out, it had no effect, and was based on
[oota-llvm.git] / lib / VMCore / Type.cpp
1 //===-- Type.cpp - Implement the Type class -------------------------------===//
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 implements the Type class for the VMCore library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "LLVMContextImpl.h"
15 #include "llvm/Module.h"
16 #include <algorithm>
17 #include <cstdarg>
18 #include "llvm/ADT/SmallString.h"
19 using namespace llvm;
20
21 //===----------------------------------------------------------------------===//
22 //                         Type Class Implementation
23 //===----------------------------------------------------------------------===//
24
25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
26   switch (IDNumber) {
27   case VoidTyID      : return getVoidTy(C);
28   case FloatTyID     : return getFloatTy(C);
29   case DoubleTyID    : return getDoubleTy(C);
30   case X86_FP80TyID  : return getX86_FP80Ty(C);
31   case FP128TyID     : return getFP128Ty(C);
32   case PPC_FP128TyID : return getPPC_FP128Ty(C);
33   case LabelTyID     : return getLabelTy(C);
34   case MetadataTyID  : return getMetadataTy(C);
35   case X86_MMXTyID   : return getX86_MMXTy(C);
36   default:
37     return 0;
38   }
39 }
40
41 /// getScalarType - If this is a vector type, return the element type,
42 /// otherwise return this.
43 const Type *Type::getScalarType() const {
44   if (const VectorType *VTy = dyn_cast<VectorType>(this))
45     return VTy->getElementType();
46   return this;
47 }
48
49 /// isIntegerTy - Return true if this is an IntegerType of the specified width.
50 bool Type::isIntegerTy(unsigned Bitwidth) const {
51   return isIntegerTy() && cast<IntegerType>(this)->getBitWidth() == Bitwidth;
52 }
53
54 /// isIntOrIntVectorTy - Return true if this is an integer type or a vector of
55 /// integer types.
56 ///
57 bool Type::isIntOrIntVectorTy() const {
58   if (isIntegerTy())
59     return true;
60   if (ID != Type::VectorTyID) return false;
61   
62   return cast<VectorType>(this)->getElementType()->isIntegerTy();
63 }
64
65 /// isFPOrFPVectorTy - Return true if this is a FP type or a vector of FP types.
66 ///
67 bool Type::isFPOrFPVectorTy() const {
68   if (ID == Type::FloatTyID || ID == Type::DoubleTyID || 
69       ID == Type::FP128TyID || ID == Type::X86_FP80TyID || 
70       ID == Type::PPC_FP128TyID)
71     return true;
72   if (ID != Type::VectorTyID) return false;
73   
74   return cast<VectorType>(this)->getElementType()->isFloatingPointTy();
75 }
76
77 // canLosslesslyBitCastTo - Return true if this type can be converted to
78 // 'Ty' without any reinterpretation of bits.  For example, i8* to i32*.
79 //
80 bool Type::canLosslesslyBitCastTo(const Type *Ty) const {
81   // Identity cast means no change so return true
82   if (this == Ty) 
83     return true;
84   
85   // They are not convertible unless they are at least first class types
86   if (!this->isFirstClassType() || !Ty->isFirstClassType())
87     return false;
88
89   // Vector -> Vector conversions are always lossless if the two vector types
90   // have the same size, otherwise not.  Also, 64-bit vector types can be
91   // converted to x86mmx.
92   if (const VectorType *thisPTy = dyn_cast<VectorType>(this)) {
93     if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty))
94       return thisPTy->getBitWidth() == thatPTy->getBitWidth();
95     if (Ty->getTypeID() == Type::X86_MMXTyID &&
96         thisPTy->getBitWidth() == 64)
97       return true;
98   }
99
100   if (this->getTypeID() == Type::X86_MMXTyID)
101     if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty))
102       if (thatPTy->getBitWidth() == 64)
103         return true;
104
105   // At this point we have only various mismatches of the first class types
106   // remaining and ptr->ptr. Just select the lossless conversions. Everything
107   // else is not lossless.
108   if (this->isPointerTy())
109     return Ty->isPointerTy();
110   return false;  // Other types have no identity values
111 }
112
113 bool Type::isEmptyTy() const {
114   const ArrayType *ATy = dyn_cast<ArrayType>(this);
115   if (ATy) {
116     unsigned NumElements = ATy->getNumElements();
117     return NumElements == 0 || ATy->getElementType()->isEmptyTy();
118   }
119
120   const StructType *STy = dyn_cast<StructType>(this);
121   if (STy) {
122     unsigned NumElements = STy->getNumElements();
123     for (unsigned i = 0; i < NumElements; ++i)
124       if (!STy->getElementType(i)->isEmptyTy())
125         return false;
126     return true;
127   }
128
129   return false;
130 }
131
132 unsigned Type::getPrimitiveSizeInBits() const {
133   switch (getTypeID()) {
134   case Type::FloatTyID: return 32;
135   case Type::DoubleTyID: return 64;
136   case Type::X86_FP80TyID: return 80;
137   case Type::FP128TyID: return 128;
138   case Type::PPC_FP128TyID: return 128;
139   case Type::X86_MMXTyID: return 64;
140   case Type::IntegerTyID: return cast<IntegerType>(this)->getBitWidth();
141   case Type::VectorTyID:  return cast<VectorType>(this)->getBitWidth();
142   default: return 0;
143   }
144 }
145
146 /// getScalarSizeInBits - If this is a vector type, return the
147 /// getPrimitiveSizeInBits value for the element type. Otherwise return the
148 /// getPrimitiveSizeInBits value for this type.
149 unsigned Type::getScalarSizeInBits() const {
150   return getScalarType()->getPrimitiveSizeInBits();
151 }
152
153 /// getFPMantissaWidth - Return the width of the mantissa of this type.  This
154 /// is only valid on floating point types.  If the FP type does not
155 /// have a stable mantissa (e.g. ppc long double), this method returns -1.
156 int Type::getFPMantissaWidth() const {
157   if (const VectorType *VTy = dyn_cast<VectorType>(this))
158     return VTy->getElementType()->getFPMantissaWidth();
159   assert(isFloatingPointTy() && "Not a floating point type!");
160   if (ID == FloatTyID) return 24;
161   if (ID == DoubleTyID) return 53;
162   if (ID == X86_FP80TyID) return 64;
163   if (ID == FP128TyID) return 113;
164   assert(ID == PPC_FP128TyID && "unknown fp type");
165   return -1;
166 }
167
168 /// isSizedDerivedType - Derived types like structures and arrays are sized
169 /// iff all of the members of the type are sized as well.  Since asking for
170 /// their size is relatively uncommon, move this operation out of line.
171 bool Type::isSizedDerivedType() const {
172   if (this->isIntegerTy())
173     return true;
174
175   if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
176     return ATy->getElementType()->isSized();
177
178   if (const VectorType *VTy = dyn_cast<VectorType>(this))
179     return VTy->getElementType()->isSized();
180
181   if (!this->isStructTy()) 
182     return false;
183
184   // Opaque structs have no size.
185   if (cast<StructType>(this)->isOpaque())
186     return false;
187   
188   // Okay, our struct is sized if all of the elements are.
189   for (subtype_iterator I = subtype_begin(), E = subtype_end(); I != E; ++I)
190     if (!(*I)->isSized()) 
191       return false;
192
193   return true;
194 }
195
196 //===----------------------------------------------------------------------===//
197 //                          Primitive 'Type' data
198 //===----------------------------------------------------------------------===//
199
200 Type *Type::getVoidTy(LLVMContext &C) { return &C.pImpl->VoidTy; }
201 Type *Type::getLabelTy(LLVMContext &C) { return &C.pImpl->LabelTy; }
202 Type *Type::getFloatTy(LLVMContext &C) { return &C.pImpl->FloatTy; }
203 Type *Type::getDoubleTy(LLVMContext &C) { return &C.pImpl->DoubleTy; }
204 Type *Type::getMetadataTy(LLVMContext &C) { return &C.pImpl->MetadataTy; }
205 Type *Type::getX86_FP80Ty(LLVMContext &C) { return &C.pImpl->X86_FP80Ty; }
206 Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; }
207 Type *Type::getPPC_FP128Ty(LLVMContext &C) { return &C.pImpl->PPC_FP128Ty; }
208 Type *Type::getX86_MMXTy(LLVMContext &C) { return &C.pImpl->X86_MMXTy; }
209
210 IntegerType *Type::getInt1Ty(LLVMContext &C) { return &C.pImpl->Int1Ty; }
211 IntegerType *Type::getInt8Ty(LLVMContext &C) { return &C.pImpl->Int8Ty; }
212 IntegerType *Type::getInt16Ty(LLVMContext &C) { return &C.pImpl->Int16Ty; }
213 IntegerType *Type::getInt32Ty(LLVMContext &C) { return &C.pImpl->Int32Ty; }
214 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
215
216 IntegerType *Type::getIntNTy(LLVMContext &C, unsigned N) {
217   return IntegerType::get(C, N);
218 }
219
220 PointerType *Type::getFloatPtrTy(LLVMContext &C, unsigned AS) {
221   return getFloatTy(C)->getPointerTo(AS);
222 }
223
224 PointerType *Type::getDoublePtrTy(LLVMContext &C, unsigned AS) {
225   return getDoubleTy(C)->getPointerTo(AS);
226 }
227
228 PointerType *Type::getX86_FP80PtrTy(LLVMContext &C, unsigned AS) {
229   return getX86_FP80Ty(C)->getPointerTo(AS);
230 }
231
232 PointerType *Type::getFP128PtrTy(LLVMContext &C, unsigned AS) {
233   return getFP128Ty(C)->getPointerTo(AS);
234 }
235
236 PointerType *Type::getPPC_FP128PtrTy(LLVMContext &C, unsigned AS) {
237   return getPPC_FP128Ty(C)->getPointerTo(AS);
238 }
239
240 PointerType *Type::getX86_MMXPtrTy(LLVMContext &C, unsigned AS) {
241   return getX86_MMXTy(C)->getPointerTo(AS);
242 }
243
244 PointerType *Type::getIntNPtrTy(LLVMContext &C, unsigned N, unsigned AS) {
245   return getIntNTy(C, N)->getPointerTo(AS);
246 }
247
248 PointerType *Type::getInt1PtrTy(LLVMContext &C, unsigned AS) {
249   return getInt1Ty(C)->getPointerTo(AS);
250 }
251
252 PointerType *Type::getInt8PtrTy(LLVMContext &C, unsigned AS) {
253   return getInt8Ty(C)->getPointerTo(AS);
254 }
255
256 PointerType *Type::getInt16PtrTy(LLVMContext &C, unsigned AS) {
257   return getInt16Ty(C)->getPointerTo(AS);
258 }
259
260 PointerType *Type::getInt32PtrTy(LLVMContext &C, unsigned AS) {
261   return getInt32Ty(C)->getPointerTo(AS);
262 }
263
264 PointerType *Type::getInt64PtrTy(LLVMContext &C, unsigned AS) {
265   return getInt64Ty(C)->getPointerTo(AS);
266 }
267
268
269 //===----------------------------------------------------------------------===//
270 //                       IntegerType Implementation
271 //===----------------------------------------------------------------------===//
272
273 IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
274   assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
275   assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
276   
277   // Check for the built-in integer types
278   switch (NumBits) {
279   case  1: return cast<IntegerType>(Type::getInt1Ty(C));
280   case  8: return cast<IntegerType>(Type::getInt8Ty(C));
281   case 16: return cast<IntegerType>(Type::getInt16Ty(C));
282   case 32: return cast<IntegerType>(Type::getInt32Ty(C));
283   case 64: return cast<IntegerType>(Type::getInt64Ty(C));
284   default: 
285     break;
286   }
287   
288   IntegerType *&Entry = C.pImpl->IntegerTypes[NumBits];
289   
290   if (Entry == 0)
291     Entry = new IntegerType(C, NumBits);
292   
293   return Entry;
294 }
295
296 bool IntegerType::isPowerOf2ByteWidth() const {
297   unsigned BitWidth = getBitWidth();
298   return (BitWidth > 7) && isPowerOf2_32(BitWidth);
299 }
300
301 APInt IntegerType::getMask() const {
302   return APInt::getAllOnesValue(getBitWidth());
303 }
304
305 //===----------------------------------------------------------------------===//
306 //                       FunctionType Implementation
307 //===----------------------------------------------------------------------===//
308
309 FunctionType::FunctionType(const Type *Result, ArrayRef<Type*> Params,
310                            bool IsVarArgs)
311   : Type(Result->getContext(), FunctionTyID) {
312   Type **SubTys = reinterpret_cast<Type**>(this+1);
313   assert(isValidReturnType(Result) && "invalid return type for function");
314   setSubclassData(IsVarArgs);
315
316   SubTys[0] = const_cast<Type*>(Result);
317
318   for (unsigned i = 0, e = Params.size(); i != e; ++i) {
319     assert(isValidArgumentType(Params[i]) &&
320            "Not a valid type for function argument!");
321     SubTys[i+1] = Params[i];
322   }
323
324   ContainedTys = SubTys;
325   NumContainedTys = Params.size() + 1; // + 1 for result type
326 }
327
328 // FunctionType::get - The factory function for the FunctionType class.
329 FunctionType *FunctionType::get(const Type *ReturnType,
330                                 ArrayRef<Type*> Params, bool isVarArg) {
331   // TODO: This is brutally slow.
332   std::vector<Type*> Key;
333   Key.reserve(Params.size()+2);
334   Key.push_back(const_cast<Type*>(ReturnType));
335   for (unsigned i = 0, e = Params.size(); i != e; ++i)
336     Key.push_back(const_cast<Type*>(Params[i]));
337   if (isVarArg)
338     Key.push_back(0);
339   
340   FunctionType *&FT = ReturnType->getContext().pImpl->FunctionTypes[Key];
341   
342   if (FT == 0) {
343     FT = (FunctionType*) operator new(sizeof(FunctionType) +
344                                     sizeof(Type*)*(Params.size()+1));
345     new (FT) FunctionType(ReturnType, Params, isVarArg);
346   }
347
348   return FT;
349 }
350
351
352 FunctionType *FunctionType::get(const Type *Result, bool isVarArg) {
353   return get(Result, ArrayRef<Type *>(), isVarArg);
354 }
355
356
357 /// isValidReturnType - Return true if the specified type is valid as a return
358 /// type.
359 bool FunctionType::isValidReturnType(const Type *RetTy) {
360   return !RetTy->isFunctionTy() && !RetTy->isLabelTy() &&
361   !RetTy->isMetadataTy();
362 }
363
364 /// isValidArgumentType - Return true if the specified type is valid as an
365 /// argument type.
366 bool FunctionType::isValidArgumentType(const Type *ArgTy) {
367   return ArgTy->isFirstClassType();
368 }
369
370 //===----------------------------------------------------------------------===//
371 //                       StructType Implementation
372 //===----------------------------------------------------------------------===//
373
374 // Primitive Constructors.
375
376 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, 
377                             bool isPacked) {
378   // FIXME: std::vector is horribly inefficient for this probe.
379   std::vector<Type*> Key;
380   for (unsigned i = 0, e = ETypes.size(); i != e; ++i) {
381     assert(isValidElementType(ETypes[i]) &&
382            "Invalid type for structure element!");
383     Key.push_back(ETypes[i]);
384   }
385   if (isPacked)
386     Key.push_back(0);
387   
388   StructType *&ST = Context.pImpl->AnonStructTypes[Key];
389     
390   if (ST) return ST;
391   
392   // Value not found.  Create a new type!
393   ST = new StructType(Context);
394   ST->setSubclassData(SCDB_IsAnonymous);  // Anonymous struct.
395   ST->setBody(ETypes, isPacked);
396   return ST;
397 }
398
399 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) {
400   assert(isOpaque() && "Struct body already set!");
401   
402   setSubclassData(getSubclassData() | SCDB_HasBody);
403   if (isPacked)
404     setSubclassData(getSubclassData() | SCDB_Packed);
405   
406   Type **Elts = new Type*[Elements.size()];
407   memcpy(Elts, Elements.data(), sizeof(Elements[0])*Elements.size());
408   
409   ContainedTys = Elts;
410   NumContainedTys = Elements.size();
411 }
412
413 StructType *StructType::createNamed(LLVMContext &Context, StringRef Name) {
414   StructType *ST = new StructType(Context);
415   if (!Name.empty())
416     ST->setName(Name);
417   else
418     Context.pImpl->EmptyNamedStructTypes.insert(ST);
419   return ST;
420 }
421
422 void StructType::setName(StringRef Name) {
423   if (Name == getName()) return;
424
425   // If this struct already had a name, remove its symbol table entry.
426   if (SymbolTableEntry) {
427     getContext().pImpl->NamedStructTypes.erase(getName());
428     SymbolTableEntry = 0;
429   } else {
430     getContext().pImpl->EmptyNamedStructTypes.erase(this);
431   }
432   
433   // If this is just removing the name, we're done.
434   if (Name.empty()) {
435     // Keep track of types with no names so we can free them.
436     getContext().pImpl->EmptyNamedStructTypes.insert(this);
437     return;
438   }
439   
440   // Look up the entry for the name.
441   StringMapEntry<StructType*> *Entry =
442     &getContext().pImpl->NamedStructTypes.GetOrCreateValue(Name);
443   
444   // While we have a name collision, try a random rename.
445   if (Entry->getValue()) {
446     SmallString<64> TempStr(Name);
447     TempStr.push_back('.');
448     raw_svector_ostream TmpStream(TempStr);
449    
450     do {
451       TempStr.resize(Name.size()+1);
452       TmpStream.resync();
453       TmpStream << getContext().pImpl->NamedStructTypesUniqueID++;
454       
455       Entry = &getContext().pImpl->
456                  NamedStructTypes.GetOrCreateValue(TmpStream.str());
457     } while (Entry->getValue());
458   }
459
460   // Okay, we found an entry that isn't used.  It's us!
461   Entry->setValue(this);
462     
463   SymbolTableEntry = Entry;
464 }
465
466 //===----------------------------------------------------------------------===//
467 // StructType Helper functions.
468
469 StructType *StructType::get(LLVMContext &Context, bool isPacked) {
470   return get(Context, llvm::ArrayRef<Type*>(), isPacked);
471 }
472
473 StructType *StructType::get(Type *type, ...) {
474   assert(type != 0 && "Cannot create a struct type with no elements with this");
475   LLVMContext &Ctx = type->getContext();
476   va_list ap;
477   SmallVector<llvm::Type*, 8> StructFields;
478   va_start(ap, type);
479   while (type) {
480     StructFields.push_back(type);
481     type = va_arg(ap, llvm::Type*);
482   }
483   return llvm::StructType::get(Ctx, StructFields);
484 }
485
486 StructType *StructType::createNamed(LLVMContext &Context, StringRef Name,
487                                     ArrayRef<Type*> Elements, bool isPacked) {
488   StructType *ST = createNamed(Context, Name);
489   ST->setBody(Elements, isPacked);
490   return ST;
491 }
492
493 StructType *StructType::createNamed(StringRef Name, ArrayRef<Type*> Elements,
494                                     bool isPacked) {
495   assert(!Elements.empty() &&
496          "This method may not be invoked with an empty list");
497   return createNamed(Elements[0]->getContext(), Name, Elements, isPacked);
498 }
499
500 StructType *StructType::createNamed(StringRef Name, Type *type, ...) {
501   assert(type != 0 && "Cannot create a struct type with no elements with this");
502   LLVMContext &Ctx = type->getContext();
503   va_list ap;
504   SmallVector<llvm::Type*, 8> StructFields;
505   va_start(ap, type);
506   while (type) {
507     StructFields.push_back(type);
508     type = va_arg(ap, llvm::Type*);
509   }
510   return llvm::StructType::createNamed(Ctx, Name, StructFields);
511 }
512
513 StringRef StructType::getName() const {
514   assert(!isAnonymous() && "Anonymous structs never have names");
515   if (SymbolTableEntry == 0) return StringRef();
516   
517   return ((StringMapEntry<StructType*> *)SymbolTableEntry)->getKey();
518 }
519
520 void StructType::setBody(Type *type, ...) {
521   assert(type != 0 && "Cannot create a struct type with no elements with this");
522   va_list ap;
523   SmallVector<llvm::Type*, 8> StructFields;
524   va_start(ap, type);
525   while (type) {
526     StructFields.push_back(type);
527     type = va_arg(ap, llvm::Type*);
528   }
529   setBody(StructFields);
530 }
531
532 bool StructType::isValidElementType(const Type *ElemTy) {
533   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
534          !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
535 }
536
537 /// isLayoutIdentical - Return true if this is layout identical to the
538 /// specified struct.
539 bool StructType::isLayoutIdentical(const StructType *Other) const {
540   if (this == Other) return true;
541   
542   if (isPacked() != Other->isPacked() ||
543       getNumElements() != Other->getNumElements())
544     return false;
545   
546   return std::equal(element_begin(), element_end(), Other->element_begin());
547 }
548
549
550 /// getTypeByName - Return the type with the specified name, or null if there
551 /// is none by that name.
552 StructType *Module::getTypeByName(StringRef Name) const {
553   StringMap<StructType*>::iterator I =
554     getContext().pImpl->NamedStructTypes.find(Name);
555   if (I != getContext().pImpl->NamedStructTypes.end())
556     return I->second;
557   return 0;
558 }
559
560
561 //===----------------------------------------------------------------------===//
562 //                       CompositeType Implementation
563 //===----------------------------------------------------------------------===//
564
565 Type *CompositeType::getTypeAtIndex(const Value *V) const {
566   if (const StructType *STy = dyn_cast<StructType>(this)) {
567     unsigned Idx = (unsigned)cast<ConstantInt>(V)->getZExtValue();
568     assert(indexValid(Idx) && "Invalid structure index!");
569     return STy->getElementType(Idx);
570   }
571   
572   return cast<SequentialType>(this)->getElementType();
573 }
574 Type *CompositeType::getTypeAtIndex(unsigned Idx) const {
575   if (const StructType *STy = dyn_cast<StructType>(this)) {
576     assert(indexValid(Idx) && "Invalid structure index!");
577     return STy->getElementType(Idx);
578   }
579   
580   return cast<SequentialType>(this)->getElementType();
581 }
582 bool CompositeType::indexValid(const Value *V) const {
583   if (const StructType *STy = dyn_cast<StructType>(this)) {
584     // Structure indexes require 32-bit integer constants.
585     if (V->getType()->isIntegerTy(32))
586       if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
587         return CU->getZExtValue() < STy->getNumElements();
588     return false;
589   }
590   
591   // Sequential types can be indexed by any integer.
592   return V->getType()->isIntegerTy();
593 }
594
595 bool CompositeType::indexValid(unsigned Idx) const {
596   if (const StructType *STy = dyn_cast<StructType>(this))
597     return Idx < STy->getNumElements();
598   // Sequential types can be indexed by any integer.
599   return true;
600 }
601
602
603 //===----------------------------------------------------------------------===//
604 //                           ArrayType Implementation
605 //===----------------------------------------------------------------------===//
606
607 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
608   : SequentialType(ArrayTyID, ElType) {
609   NumElements = NumEl;
610 }
611
612
613 ArrayType *ArrayType::get(const Type *elementType, uint64_t NumElements) {
614   Type *ElementType = const_cast<Type*>(elementType);
615   assert(isValidElementType(ElementType) && "Invalid type for array element!");
616     
617   ArrayType *&Entry = ElementType->getContext().pImpl
618      ->ArrayTypes[std::make_pair(ElementType, NumElements)];
619   
620   if (Entry == 0)
621     Entry = new ArrayType(ElementType, NumElements);
622   return Entry;
623 }
624
625 bool ArrayType::isValidElementType(const Type *ElemTy) {
626   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
627          !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
628 }
629
630 //===----------------------------------------------------------------------===//
631 //                          VectorType Implementation
632 //===----------------------------------------------------------------------===//
633
634 VectorType::VectorType(Type *ElType, unsigned NumEl)
635   : SequentialType(VectorTyID, ElType) {
636   NumElements = NumEl;
637 }
638
639 VectorType *VectorType::get(const Type *elementType, unsigned NumElements) {
640   Type *ElementType = const_cast<Type*>(elementType);
641   assert(NumElements > 0 && "#Elements of a VectorType must be greater than 0");
642   assert(isValidElementType(ElementType) &&
643          "Elements of a VectorType must be a primitive type");
644   
645   VectorType *&Entry = ElementType->getContext().pImpl
646     ->VectorTypes[std::make_pair(ElementType, NumElements)];
647   
648   if (Entry == 0)
649     Entry = new VectorType(ElementType, NumElements);
650   return Entry;
651 }
652
653 bool VectorType::isValidElementType(const Type *ElemTy) {
654   return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy();
655 }
656
657 //===----------------------------------------------------------------------===//
658 //                         PointerType Implementation
659 //===----------------------------------------------------------------------===//
660
661 PointerType *PointerType::get(const Type *eltTy, unsigned AddressSpace) {
662   Type *EltTy = const_cast<Type*>(eltTy);
663   assert(EltTy && "Can't get a pointer to <null> type!");
664   assert(isValidElementType(EltTy) && "Invalid type for pointer element!");
665   
666   LLVMContextImpl *CImpl = EltTy->getContext().pImpl;
667   
668   // Since AddressSpace #0 is the common case, we special case it.
669   PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy]
670      : CImpl->ASPointerTypes[std::make_pair(EltTy, AddressSpace)];
671
672   if (Entry == 0)
673     Entry = new PointerType(EltTy, AddressSpace);
674   return Entry;
675 }
676
677
678 PointerType::PointerType(Type *E, unsigned AddrSpace)
679   : SequentialType(PointerTyID, E) {
680   setSubclassData(AddrSpace);
681 }
682
683 PointerType *Type::getPointerTo(unsigned addrs) const {
684   return PointerType::get(this, addrs);
685 }
686
687 bool PointerType::isValidElementType(const Type *ElemTy) {
688   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
689          !ElemTy->isMetadataTy();
690 }