Second attempt at de-constifying LLVM Types in FunctionType::get(),
[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   ST->setName(Name);
416   return ST;
417 }
418
419 void StructType::setName(StringRef Name) {
420   if (Name == getName()) return;
421
422   // If this struct already had a name, remove its symbol table entry.
423   if (SymbolTableEntry) {
424     getContext().pImpl->NamedStructTypes.erase(getName());
425     SymbolTableEntry = 0;
426   }
427   
428   // If this is just removing the name, we're done.
429   if (Name.empty())
430     return;
431   
432   // Look up the entry for the name.
433   StringMapEntry<StructType*> *Entry =
434     &getContext().pImpl->NamedStructTypes.GetOrCreateValue(Name);
435   
436   // While we have a name collision, try a random rename.
437   if (Entry->getValue()) {
438     SmallString<64> TempStr(Name);
439     TempStr.push_back('.');
440     raw_svector_ostream TmpStream(TempStr);
441    
442     do {
443       TempStr.resize(Name.size()+1);
444       TmpStream.resync();
445       TmpStream << getContext().pImpl->NamedStructTypesUniqueID++;
446       
447       Entry = &getContext().pImpl->
448                  NamedStructTypes.GetOrCreateValue(TmpStream.str());
449     } while (Entry->getValue());
450   }
451
452   // Okay, we found an entry that isn't used.  It's us!
453   Entry->setValue(this);
454     
455   SymbolTableEntry = Entry;
456 }
457
458 //===----------------------------------------------------------------------===//
459 // StructType Helper functions.
460
461 StructType *StructType::get(LLVMContext &Context, bool isPacked) {
462   return get(Context, llvm::ArrayRef<Type*>(), isPacked);
463 }
464
465 StructType *StructType::get(Type *type, ...) {
466   assert(type != 0 && "Cannot create a struct type with no elements with this");
467   LLVMContext &Ctx = type->getContext();
468   va_list ap;
469   SmallVector<llvm::Type*, 8> StructFields;
470   va_start(ap, type);
471   while (type) {
472     StructFields.push_back(type);
473     type = va_arg(ap, llvm::Type*);
474   }
475   return llvm::StructType::get(Ctx, StructFields);
476 }
477
478 StructType *StructType::createNamed(LLVMContext &Context, StringRef Name,
479                                     ArrayRef<Type*> Elements, bool isPacked) {
480   StructType *ST = createNamed(Context, Name);
481   ST->setBody(Elements, isPacked);
482   return ST;
483 }
484
485 StructType *StructType::createNamed(StringRef Name, ArrayRef<Type*> Elements,
486                                     bool isPacked) {
487   assert(!Elements.empty() &&
488          "This method may not be invoked with an empty list");
489   return createNamed(Elements[0]->getContext(), Name, Elements, isPacked);
490 }
491
492 StructType *StructType::createNamed(StringRef Name, Type *type, ...) {
493   assert(type != 0 && "Cannot create a struct type with no elements with this");
494   LLVMContext &Ctx = type->getContext();
495   va_list ap;
496   SmallVector<llvm::Type*, 8> StructFields;
497   va_start(ap, type);
498   while (type) {
499     StructFields.push_back(type);
500     type = va_arg(ap, llvm::Type*);
501   }
502   return llvm::StructType::createNamed(Ctx, Name, StructFields);
503 }
504
505 StringRef StructType::getName() const {
506   assert(!isAnonymous() && "Anonymous structs never have names");
507   if (SymbolTableEntry == 0) return StringRef();
508   
509   return ((StringMapEntry<StructType*> *)SymbolTableEntry)->getKey();
510 }
511
512 void StructType::setBody(Type *type, ...) {
513   assert(type != 0 && "Cannot create a struct type with no elements with this");
514   va_list ap;
515   SmallVector<llvm::Type*, 8> StructFields;
516   va_start(ap, type);
517   while (type) {
518     StructFields.push_back(type);
519     type = va_arg(ap, llvm::Type*);
520   }
521   setBody(StructFields);
522 }
523
524 bool StructType::isValidElementType(const Type *ElemTy) {
525   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
526          !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
527 }
528
529 /// isLayoutIdentical - Return true if this is layout identical to the
530 /// specified struct.
531 bool StructType::isLayoutIdentical(const StructType *Other) const {
532   if (this == Other) return true;
533   
534   if (isPacked() != Other->isPacked() ||
535       getNumElements() != Other->getNumElements())
536     return false;
537   
538   return std::equal(element_begin(), element_end(), Other->element_begin());
539 }
540
541
542 /// getTypeByName - Return the type with the specified name, or null if there
543 /// is none by that name.
544 StructType *Module::getTypeByName(StringRef Name) const {
545   StringMap<StructType*>::iterator I =
546     getContext().pImpl->NamedStructTypes.find(Name);
547   if (I != getContext().pImpl->NamedStructTypes.end())
548     return I->second;
549   return 0;
550 }
551
552
553 //===----------------------------------------------------------------------===//
554 //                       CompositeType Implementation
555 //===----------------------------------------------------------------------===//
556
557 Type *CompositeType::getTypeAtIndex(const Value *V) const {
558   if (const StructType *STy = dyn_cast<StructType>(this)) {
559     unsigned Idx = (unsigned)cast<ConstantInt>(V)->getZExtValue();
560     assert(indexValid(Idx) && "Invalid structure index!");
561     return STy->getElementType(Idx);
562   }
563   
564   return cast<SequentialType>(this)->getElementType();
565 }
566 Type *CompositeType::getTypeAtIndex(unsigned Idx) const {
567   if (const StructType *STy = dyn_cast<StructType>(this)) {
568     assert(indexValid(Idx) && "Invalid structure index!");
569     return STy->getElementType(Idx);
570   }
571   
572   return cast<SequentialType>(this)->getElementType();
573 }
574 bool CompositeType::indexValid(const Value *V) const {
575   if (const StructType *STy = dyn_cast<StructType>(this)) {
576     // Structure indexes require 32-bit integer constants.
577     if (V->getType()->isIntegerTy(32))
578       if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
579         return CU->getZExtValue() < STy->getNumElements();
580     return false;
581   }
582   
583   // Sequential types can be indexed by any integer.
584   return V->getType()->isIntegerTy();
585 }
586
587 bool CompositeType::indexValid(unsigned Idx) const {
588   if (const StructType *STy = dyn_cast<StructType>(this))
589     return Idx < STy->getNumElements();
590   // Sequential types can be indexed by any integer.
591   return true;
592 }
593
594
595 //===----------------------------------------------------------------------===//
596 //                           ArrayType Implementation
597 //===----------------------------------------------------------------------===//
598
599 ArrayType::ArrayType(Type *ElType, uint64_t NumEl)
600   : SequentialType(ArrayTyID, ElType) {
601   NumElements = NumEl;
602 }
603
604
605 ArrayType *ArrayType::get(const Type *elementType, uint64_t NumElements) {
606   Type *ElementType = const_cast<Type*>(elementType);
607   assert(isValidElementType(ElementType) && "Invalid type for array element!");
608     
609   ArrayType *&Entry = ElementType->getContext().pImpl
610      ->ArrayTypes[std::make_pair(ElementType, NumElements)];
611   
612   if (Entry == 0)
613     Entry = new ArrayType(ElementType, NumElements);
614   return Entry;
615 }
616
617 bool ArrayType::isValidElementType(const Type *ElemTy) {
618   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
619          !ElemTy->isMetadataTy() && !ElemTy->isFunctionTy();
620 }
621
622 //===----------------------------------------------------------------------===//
623 //                          VectorType Implementation
624 //===----------------------------------------------------------------------===//
625
626 VectorType::VectorType(Type *ElType, unsigned NumEl)
627   : SequentialType(VectorTyID, ElType) {
628   NumElements = NumEl;
629 }
630
631 VectorType *VectorType::get(const Type *elementType, unsigned NumElements) {
632   Type *ElementType = const_cast<Type*>(elementType);
633   assert(NumElements > 0 && "#Elements of a VectorType must be greater than 0");
634   assert(isValidElementType(ElementType) &&
635          "Elements of a VectorType must be a primitive type");
636   
637   VectorType *&Entry = ElementType->getContext().pImpl
638     ->VectorTypes[std::make_pair(ElementType, NumElements)];
639   
640   if (Entry == 0)
641     Entry = new VectorType(ElementType, NumElements);
642   return Entry;
643 }
644
645 bool VectorType::isValidElementType(const Type *ElemTy) {
646   return ElemTy->isIntegerTy() || ElemTy->isFloatingPointTy();
647 }
648
649 //===----------------------------------------------------------------------===//
650 //                         PointerType Implementation
651 //===----------------------------------------------------------------------===//
652
653 PointerType *PointerType::get(const Type *eltTy, unsigned AddressSpace) {
654   Type *EltTy = const_cast<Type*>(eltTy);
655   assert(EltTy && "Can't get a pointer to <null> type!");
656   assert(isValidElementType(EltTy) && "Invalid type for pointer element!");
657   
658   LLVMContextImpl *CImpl = EltTy->getContext().pImpl;
659   
660   // Since AddressSpace #0 is the common case, we special case it.
661   PointerType *&Entry = AddressSpace == 0 ? CImpl->PointerTypes[EltTy]
662      : CImpl->ASPointerTypes[std::make_pair(EltTy, AddressSpace)];
663
664   if (Entry == 0)
665     Entry = new PointerType(EltTy, AddressSpace);
666   return Entry;
667 }
668
669
670 PointerType::PointerType(Type *E, unsigned AddrSpace)
671   : SequentialType(PointerTyID, E) {
672   setSubclassData(AddrSpace);
673 }
674
675 PointerType *Type::getPointerTo(unsigned addrs) const {
676   return PointerType::get(this, addrs);
677 }
678
679 bool PointerType::isValidElementType(const Type *ElemTy) {
680   return !ElemTy->isVoidTy() && !ElemTy->isLabelTy() &&
681          !ElemTy->isMetadataTy();
682 }