calls are rejected above, no need to special case malloc here.
[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/DerivedTypes.h"
16 #include "llvm/Constants.h"
17 #include "llvm/Assembly/Writer.h"
18 #include "llvm/LLVMContext.h"
19 #include "llvm/Metadata.h"
20 #include "llvm/ADT/DepthFirstIterator.h"
21 #include "llvm/ADT/StringExtras.h"
22 #include "llvm/ADT/SCCIterator.h"
23 #include "llvm/ADT/STLExtras.h"
24 #include "llvm/Support/Compiler.h"
25 #include "llvm/Support/Debug.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/ManagedStatic.h"
28 #include "llvm/Support/MathExtras.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include "llvm/System/Mutex.h"
31 #include "llvm/System/RWMutex.h"
32 #include "llvm/System/Threading.h"
33 #include <algorithm>
34 #include <cstdarg>
35 using namespace llvm;
36
37 // DEBUG_MERGE_TYPES - Enable this #define to see how and when derived types are
38 // created and later destroyed, all in an effort to make sure that there is only
39 // a single canonical version of a type.
40 //
41 // #define DEBUG_MERGE_TYPES 1
42
43 AbstractTypeUser::~AbstractTypeUser() {}
44
45 void AbstractTypeUser::setType(Value *V, const Type *NewTy) {
46   V->VTy = NewTy;
47 }
48
49 //===----------------------------------------------------------------------===//
50 //                         Type Class Implementation
51 //===----------------------------------------------------------------------===//
52
53 /// Because of the way Type subclasses are allocated, this function is necessary
54 /// to use the correct kind of "delete" operator to deallocate the Type object.
55 /// Some type objects (FunctionTy, StructTy) allocate additional space after 
56 /// the space for their derived type to hold the contained types array of
57 /// PATypeHandles. Using this allocation scheme means all the PATypeHandles are
58 /// allocated with the type object, decreasing allocations and eliminating the
59 /// need for a std::vector to be used in the Type class itself. 
60 /// @brief Type destruction function
61 void Type::destroy() const {
62
63   // Structures and Functions allocate their contained types past the end of
64   // the type object itself. These need to be destroyed differently than the
65   // other types.
66   if (isa<FunctionType>(this) || isa<StructType>(this)) {
67     // First, make sure we destruct any PATypeHandles allocated by these
68     // subclasses.  They must be manually destructed. 
69     for (unsigned i = 0; i < NumContainedTys; ++i)
70       ContainedTys[i].PATypeHandle::~PATypeHandle();
71
72     // Now call the destructor for the subclass directly because we're going
73     // to delete this as an array of char.
74     if (isa<FunctionType>(this))
75       static_cast<const FunctionType*>(this)->FunctionType::~FunctionType();
76     else
77       static_cast<const StructType*>(this)->StructType::~StructType();
78
79     // Finally, remove the memory as an array deallocation of the chars it was
80     // constructed from.
81     operator delete(const_cast<Type *>(this));
82
83     return;
84   }
85
86   // For all the other type subclasses, there is either no contained types or 
87   // just one (all Sequentials). For Sequentials, the PATypeHandle is not
88   // allocated past the type object, its included directly in the SequentialType
89   // class. This means we can safely just do "normal" delete of this object and
90   // all the destructors that need to run will be run.
91   delete this; 
92 }
93
94 const Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
95   switch (IDNumber) {
96   case VoidTyID      : return getVoidTy(C);
97   case FloatTyID     : return getFloatTy(C);
98   case DoubleTyID    : return getDoubleTy(C);
99   case X86_FP80TyID  : return getX86_FP80Ty(C);
100   case FP128TyID     : return getFP128Ty(C);
101   case PPC_FP128TyID : return getPPC_FP128Ty(C);
102   case LabelTyID     : return getLabelTy(C);
103   case MetadataTyID  : return getMetadataTy(C);
104   default:
105     return 0;
106   }
107 }
108
109 const Type *Type::getVAArgsPromotedType(LLVMContext &C) const {
110   if (ID == IntegerTyID && getSubclassData() < 32)
111     return Type::getInt32Ty(C);
112   else if (ID == FloatTyID)
113     return Type::getDoubleTy(C);
114   else
115     return this;
116 }
117
118 /// getScalarType - If this is a vector type, return the element type,
119 /// otherwise return this.
120 const Type *Type::getScalarType() const {
121   if (const VectorType *VTy = dyn_cast<VectorType>(this))
122     return VTy->getElementType();
123   return this;
124 }
125
126 /// isIntOrIntVector - Return true if this is an integer type or a vector of
127 /// integer types.
128 ///
129 bool Type::isIntOrIntVector() const {
130   if (isInteger())
131     return true;
132   if (ID != Type::VectorTyID) return false;
133   
134   return cast<VectorType>(this)->getElementType()->isInteger();
135 }
136
137 /// isFPOrFPVector - Return true if this is a FP type or a vector of FP types.
138 ///
139 bool Type::isFPOrFPVector() const {
140   if (ID == Type::FloatTyID || ID == Type::DoubleTyID || 
141       ID == Type::FP128TyID || ID == Type::X86_FP80TyID || 
142       ID == Type::PPC_FP128TyID)
143     return true;
144   if (ID != Type::VectorTyID) return false;
145   
146   return cast<VectorType>(this)->getElementType()->isFloatingPoint();
147 }
148
149 // canLosslesslyBitCastTo - Return true if this type can be converted to
150 // 'Ty' without any reinterpretation of bits.  For example, i8* to i32*.
151 //
152 bool Type::canLosslesslyBitCastTo(const Type *Ty) const {
153   // Identity cast means no change so return true
154   if (this == Ty) 
155     return true;
156   
157   // They are not convertible unless they are at least first class types
158   if (!this->isFirstClassType() || !Ty->isFirstClassType())
159     return false;
160
161   // Vector -> Vector conversions are always lossless if the two vector types
162   // have the same size, otherwise not.
163   if (const VectorType *thisPTy = dyn_cast<VectorType>(this))
164     if (const VectorType *thatPTy = dyn_cast<VectorType>(Ty))
165       return thisPTy->getBitWidth() == thatPTy->getBitWidth();
166
167   // At this point we have only various mismatches of the first class types
168   // remaining and ptr->ptr. Just select the lossless conversions. Everything
169   // else is not lossless.
170   if (isa<PointerType>(this))
171     return isa<PointerType>(Ty);
172   return false;  // Other types have no identity values
173 }
174
175 unsigned Type::getPrimitiveSizeInBits() const {
176   switch (getTypeID()) {
177   case Type::FloatTyID: return 32;
178   case Type::DoubleTyID: return 64;
179   case Type::X86_FP80TyID: return 80;
180   case Type::FP128TyID: return 128;
181   case Type::PPC_FP128TyID: return 128;
182   case Type::IntegerTyID: return cast<IntegerType>(this)->getBitWidth();
183   case Type::VectorTyID:  return cast<VectorType>(this)->getBitWidth();
184   default: return 0;
185   }
186 }
187
188 /// getScalarSizeInBits - If this is a vector type, return the
189 /// getPrimitiveSizeInBits value for the element type. Otherwise return the
190 /// getPrimitiveSizeInBits value for this type.
191 unsigned Type::getScalarSizeInBits() const {
192   return getScalarType()->getPrimitiveSizeInBits();
193 }
194
195 /// getFPMantissaWidth - Return the width of the mantissa of this type.  This
196 /// is only valid on floating point types.  If the FP type does not
197 /// have a stable mantissa (e.g. ppc long double), this method returns -1.
198 int Type::getFPMantissaWidth() const {
199   if (const VectorType *VTy = dyn_cast<VectorType>(this))
200     return VTy->getElementType()->getFPMantissaWidth();
201   assert(isFloatingPoint() && "Not a floating point type!");
202   if (ID == FloatTyID) return 24;
203   if (ID == DoubleTyID) return 53;
204   if (ID == X86_FP80TyID) return 64;
205   if (ID == FP128TyID) return 113;
206   assert(ID == PPC_FP128TyID && "unknown fp type");
207   return -1;
208 }
209
210 /// isSizedDerivedType - Derived types like structures and arrays are sized
211 /// iff all of the members of the type are sized as well.  Since asking for
212 /// their size is relatively uncommon, move this operation out of line.
213 bool Type::isSizedDerivedType() const {
214   if (isa<IntegerType>(this))
215     return true;
216
217   if (const ArrayType *ATy = dyn_cast<ArrayType>(this))
218     return ATy->getElementType()->isSized();
219
220   if (const VectorType *PTy = dyn_cast<VectorType>(this))
221     return PTy->getElementType()->isSized();
222
223   if (!isa<StructType>(this)) 
224     return false;
225
226   // Okay, our struct is sized if all of the elements are...
227   for (subtype_iterator I = subtype_begin(), E = subtype_end(); I != E; ++I)
228     if (!(*I)->isSized()) 
229       return false;
230
231   return true;
232 }
233
234 /// getForwardedTypeInternal - This method is used to implement the union-find
235 /// algorithm for when a type is being forwarded to another type.
236 const Type *Type::getForwardedTypeInternal() const {
237   assert(ForwardType && "This type is not being forwarded to another type!");
238
239   // Check to see if the forwarded type has been forwarded on.  If so, collapse
240   // the forwarding links.
241   const Type *RealForwardedType = ForwardType->getForwardedType();
242   if (!RealForwardedType)
243     return ForwardType;  // No it's not forwarded again
244
245   // Yes, it is forwarded again.  First thing, add the reference to the new
246   // forward type.
247   if (RealForwardedType->isAbstract())
248     cast<DerivedType>(RealForwardedType)->addRef();
249
250   // Now drop the old reference.  This could cause ForwardType to get deleted.
251   cast<DerivedType>(ForwardType)->dropRef();
252
253   // Return the updated type.
254   ForwardType = RealForwardedType;
255   return ForwardType;
256 }
257
258 void Type::refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
259   llvm_unreachable("Attempting to refine a derived type!");
260 }
261 void Type::typeBecameConcrete(const DerivedType *AbsTy) {
262   llvm_unreachable("DerivedType is already a concrete type!");
263 }
264
265
266 std::string Type::getDescription() const {
267   LLVMContextImpl *pImpl = getContext().pImpl;
268   TypePrinting &Map =
269     isAbstract() ?
270       pImpl->AbstractTypeDescriptions :
271       pImpl->ConcreteTypeDescriptions;
272   
273   std::string DescStr;
274   raw_string_ostream DescOS(DescStr);
275   Map.print(this, DescOS);
276   return DescOS.str();
277 }
278
279
280 bool StructType::indexValid(const Value *V) const {
281   // Structure indexes require 32-bit integer constants.
282   if (V->getType() == Type::getInt32Ty(V->getContext()))
283     if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
284       return indexValid(CU->getZExtValue());
285   return false;
286 }
287
288 bool StructType::indexValid(unsigned V) const {
289   return V < NumContainedTys;
290 }
291
292 // getTypeAtIndex - Given an index value into the type, return the type of the
293 // element.  For a structure type, this must be a constant value...
294 //
295 const Type *StructType::getTypeAtIndex(const Value *V) const {
296   unsigned Idx = (unsigned)cast<ConstantInt>(V)->getZExtValue();
297   return getTypeAtIndex(Idx);
298 }
299
300 const Type *StructType::getTypeAtIndex(unsigned Idx) const {
301   assert(indexValid(Idx) && "Invalid structure index!");
302   return ContainedTys[Idx];
303 }
304
305 //===----------------------------------------------------------------------===//
306 //                          Primitive 'Type' data
307 //===----------------------------------------------------------------------===//
308
309 const Type *Type::getVoidTy(LLVMContext &C) {
310   return &C.pImpl->VoidTy;
311 }
312
313 const Type *Type::getLabelTy(LLVMContext &C) {
314   return &C.pImpl->LabelTy;
315 }
316
317 const Type *Type::getFloatTy(LLVMContext &C) {
318   return &C.pImpl->FloatTy;
319 }
320
321 const Type *Type::getDoubleTy(LLVMContext &C) {
322   return &C.pImpl->DoubleTy;
323 }
324
325 const Type *Type::getMetadataTy(LLVMContext &C) {
326   return &C.pImpl->MetadataTy;
327 }
328
329 const Type *Type::getX86_FP80Ty(LLVMContext &C) {
330   return &C.pImpl->X86_FP80Ty;
331 }
332
333 const Type *Type::getFP128Ty(LLVMContext &C) {
334   return &C.pImpl->FP128Ty;
335 }
336
337 const Type *Type::getPPC_FP128Ty(LLVMContext &C) {
338   return &C.pImpl->PPC_FP128Ty;
339 }
340
341 const IntegerType *Type::getInt1Ty(LLVMContext &C) {
342   return &C.pImpl->Int1Ty;
343 }
344
345 const IntegerType *Type::getInt8Ty(LLVMContext &C) {
346   return &C.pImpl->Int8Ty;
347 }
348
349 const IntegerType *Type::getInt16Ty(LLVMContext &C) {
350   return &C.pImpl->Int16Ty;
351 }
352
353 const IntegerType *Type::getInt32Ty(LLVMContext &C) {
354   return &C.pImpl->Int32Ty;
355 }
356
357 const IntegerType *Type::getInt64Ty(LLVMContext &C) {
358   return &C.pImpl->Int64Ty;
359 }
360
361 //===----------------------------------------------------------------------===//
362 //                          Derived Type Constructors
363 //===----------------------------------------------------------------------===//
364
365 /// isValidReturnType - Return true if the specified type is valid as a return
366 /// type.
367 bool FunctionType::isValidReturnType(const Type *RetTy) {
368   if (const PointerType *PTy = dyn_cast<PointerType>(RetTy))
369     return PTy->getElementType()->getTypeID() != MetadataTyID;
370
371   return RetTy->getTypeID() != LabelTyID &&
372          RetTy->getTypeID() != MetadataTyID;
373 }
374
375 /// isValidArgumentType - Return true if the specified type is valid as an
376 /// argument type.
377 bool FunctionType::isValidArgumentType(const Type *ArgTy) {
378   if ((!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy)) ||
379       (isa<PointerType>(ArgTy) &&
380        cast<PointerType>(ArgTy)->getElementType()->getTypeID() == MetadataTyID))
381     return false;
382
383   return true;
384 }
385
386 FunctionType::FunctionType(const Type *Result,
387                            const std::vector<const Type*> &Params,
388                            bool IsVarArgs)
389   : DerivedType(Result->getContext(), FunctionTyID), isVarArgs(IsVarArgs) {
390   ContainedTys = reinterpret_cast<PATypeHandle*>(this+1);
391   NumContainedTys = Params.size() + 1; // + 1 for result type
392   assert(isValidReturnType(Result) && "invalid return type for function");
393
394
395   bool isAbstract = Result->isAbstract();
396   new (&ContainedTys[0]) PATypeHandle(Result, this);
397
398   for (unsigned i = 0; i != Params.size(); ++i) {
399     assert(isValidArgumentType(Params[i]) &&
400            "Not a valid type for function argument!");
401     new (&ContainedTys[i+1]) PATypeHandle(Params[i], this);
402     isAbstract |= Params[i]->isAbstract();
403   }
404
405   // Calculate whether or not this type is abstract
406   setAbstract(isAbstract);
407 }
408
409 StructType::StructType(LLVMContext &C, 
410                        const std::vector<const Type*> &Types, bool isPacked)
411   : CompositeType(C, StructTyID) {
412   ContainedTys = reinterpret_cast<PATypeHandle*>(this + 1);
413   NumContainedTys = Types.size();
414   setSubclassData(isPacked);
415   bool isAbstract = false;
416   for (unsigned i = 0; i < Types.size(); ++i) {
417     assert(Types[i] && "<null> type for structure field!");
418     assert(isValidElementType(Types[i]) &&
419            "Invalid type for structure element!");
420     new (&ContainedTys[i]) PATypeHandle(Types[i], this);
421     isAbstract |= Types[i]->isAbstract();
422   }
423
424   // Calculate whether or not this type is abstract
425   setAbstract(isAbstract);
426 }
427
428 ArrayType::ArrayType(const Type *ElType, uint64_t NumEl)
429   : SequentialType(ArrayTyID, ElType) {
430   NumElements = NumEl;
431
432   // Calculate whether or not this type is abstract
433   setAbstract(ElType->isAbstract());
434 }
435
436 VectorType::VectorType(const Type *ElType, unsigned NumEl)
437   : SequentialType(VectorTyID, ElType) {
438   NumElements = NumEl;
439   setAbstract(ElType->isAbstract());
440   assert(NumEl > 0 && "NumEl of a VectorType must be greater than 0");
441   assert(isValidElementType(ElType) &&
442          "Elements of a VectorType must be a primitive type");
443
444 }
445
446
447 PointerType::PointerType(const Type *E, unsigned AddrSpace)
448   : SequentialType(PointerTyID, E) {
449   AddressSpace = AddrSpace;
450   // Calculate whether or not this type is abstract
451   setAbstract(E->isAbstract());
452 }
453
454 OpaqueType::OpaqueType(LLVMContext &C) : DerivedType(C, OpaqueTyID) {
455   setAbstract(true);
456 #ifdef DEBUG_MERGE_TYPES
457   DEBUG(errs() << "Derived new type: " << *this << "\n");
458 #endif
459 }
460
461 void PATypeHolder::destroy() {
462   Ty = 0;
463 }
464
465 // dropAllTypeUses - When this (abstract) type is resolved to be equal to
466 // another (more concrete) type, we must eliminate all references to other
467 // types, to avoid some circular reference problems.
468 void DerivedType::dropAllTypeUses() {
469   if (NumContainedTys != 0) {
470     // The type must stay abstract.  To do this, we insert a pointer to a type
471     // that will never get resolved, thus will always be abstract.
472     static Type *AlwaysOpaqueTy = 0;
473     static PATypeHolder* Holder = 0;
474     Type *tmp = AlwaysOpaqueTy;
475     if (llvm_is_multithreaded()) {
476       sys::MemoryFence();
477       if (!tmp) {
478         llvm_acquire_global_lock();
479         tmp = AlwaysOpaqueTy;
480         if (!tmp) {
481           tmp = OpaqueType::get(getContext());
482           PATypeHolder* tmp2 = new PATypeHolder(tmp);
483           sys::MemoryFence();
484           AlwaysOpaqueTy = tmp;
485           Holder = tmp2;
486         }
487       
488         llvm_release_global_lock();
489       }
490     } else if (!AlwaysOpaqueTy) {
491       AlwaysOpaqueTy = OpaqueType::get(getContext());
492       Holder = new PATypeHolder(AlwaysOpaqueTy);
493     } 
494         
495     ContainedTys[0] = AlwaysOpaqueTy;
496
497     // Change the rest of the types to be Int32Ty's.  It doesn't matter what we
498     // pick so long as it doesn't point back to this type.  We choose something
499     // concrete to avoid overhead for adding to AbstractTypeUser lists and
500     // stuff.
501     const Type *ConcreteTy = Type::getInt32Ty(getContext());
502     for (unsigned i = 1, e = NumContainedTys; i != e; ++i)
503       ContainedTys[i] = ConcreteTy;
504   }
505 }
506
507
508 namespace {
509
510 /// TypePromotionGraph and graph traits - this is designed to allow us to do
511 /// efficient SCC processing of type graphs.  This is the exact same as
512 /// GraphTraits<Type*>, except that we pretend that concrete types have no
513 /// children to avoid processing them.
514 struct TypePromotionGraph {
515   Type *Ty;
516   TypePromotionGraph(Type *T) : Ty(T) {}
517 };
518
519 }
520
521 namespace llvm {
522   template <> struct GraphTraits<TypePromotionGraph> {
523     typedef Type NodeType;
524     typedef Type::subtype_iterator ChildIteratorType;
525
526     static inline NodeType *getEntryNode(TypePromotionGraph G) { return G.Ty; }
527     static inline ChildIteratorType child_begin(NodeType *N) {
528       if (N->isAbstract())
529         return N->subtype_begin();
530       else           // No need to process children of concrete types.
531         return N->subtype_end();
532     }
533     static inline ChildIteratorType child_end(NodeType *N) {
534       return N->subtype_end();
535     }
536   };
537 }
538
539
540 // PromoteAbstractToConcrete - This is a recursive function that walks a type
541 // graph calculating whether or not a type is abstract.
542 //
543 void Type::PromoteAbstractToConcrete() {
544   if (!isAbstract()) return;
545
546   scc_iterator<TypePromotionGraph> SI = scc_begin(TypePromotionGraph(this));
547   scc_iterator<TypePromotionGraph> SE = scc_end  (TypePromotionGraph(this));
548
549   for (; SI != SE; ++SI) {
550     std::vector<Type*> &SCC = *SI;
551
552     // Concrete types are leaves in the tree.  Since an SCC will either be all
553     // abstract or all concrete, we only need to check one type.
554     if (SCC[0]->isAbstract()) {
555       if (isa<OpaqueType>(SCC[0]))
556         return;     // Not going to be concrete, sorry.
557
558       // If all of the children of all of the types in this SCC are concrete,
559       // then this SCC is now concrete as well.  If not, neither this SCC, nor
560       // any parent SCCs will be concrete, so we might as well just exit.
561       for (unsigned i = 0, e = SCC.size(); i != e; ++i)
562         for (Type::subtype_iterator CI = SCC[i]->subtype_begin(),
563                E = SCC[i]->subtype_end(); CI != E; ++CI)
564           if ((*CI)->isAbstract())
565             // If the child type is in our SCC, it doesn't make the entire SCC
566             // abstract unless there is a non-SCC abstract type.
567             if (std::find(SCC.begin(), SCC.end(), *CI) == SCC.end())
568               return;               // Not going to be concrete, sorry.
569
570       // Okay, we just discovered this whole SCC is now concrete, mark it as
571       // such!
572       for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
573         assert(SCC[i]->isAbstract() && "Why are we processing concrete types?");
574
575         SCC[i]->setAbstract(false);
576       }
577
578       for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
579         assert(!SCC[i]->isAbstract() && "Concrete type became abstract?");
580         // The type just became concrete, notify all users!
581         cast<DerivedType>(SCC[i])->notifyUsesThatTypeBecameConcrete();
582       }
583     }
584   }
585 }
586
587
588 //===----------------------------------------------------------------------===//
589 //                      Type Structural Equality Testing
590 //===----------------------------------------------------------------------===//
591
592 // TypesEqual - Two types are considered structurally equal if they have the
593 // same "shape": Every level and element of the types have identical primitive
594 // ID's, and the graphs have the same edges/nodes in them.  Nodes do not have to
595 // be pointer equals to be equivalent though.  This uses an optimistic algorithm
596 // that assumes that two graphs are the same until proven otherwise.
597 //
598 static bool TypesEqual(const Type *Ty, const Type *Ty2,
599                        std::map<const Type *, const Type *> &EqTypes) {
600   if (Ty == Ty2) return true;
601   if (Ty->getTypeID() != Ty2->getTypeID()) return false;
602   if (isa<OpaqueType>(Ty))
603     return false;  // Two unequal opaque types are never equal
604
605   std::map<const Type*, const Type*>::iterator It = EqTypes.find(Ty);
606   if (It != EqTypes.end())
607     return It->second == Ty2;    // Looping back on a type, check for equality
608
609   // Otherwise, add the mapping to the table to make sure we don't get
610   // recursion on the types...
611   EqTypes.insert(It, std::make_pair(Ty, Ty2));
612
613   // Two really annoying special cases that breaks an otherwise nice simple
614   // algorithm is the fact that arraytypes have sizes that differentiates types,
615   // and that function types can be varargs or not.  Consider this now.
616   //
617   if (const IntegerType *ITy = dyn_cast<IntegerType>(Ty)) {
618     const IntegerType *ITy2 = cast<IntegerType>(Ty2);
619     return ITy->getBitWidth() == ITy2->getBitWidth();
620   } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
621     const PointerType *PTy2 = cast<PointerType>(Ty2);
622     return PTy->getAddressSpace() == PTy2->getAddressSpace() &&
623            TypesEqual(PTy->getElementType(), PTy2->getElementType(), EqTypes);
624   } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
625     const StructType *STy2 = cast<StructType>(Ty2);
626     if (STy->getNumElements() != STy2->getNumElements()) return false;
627     if (STy->isPacked() != STy2->isPacked()) return false;
628     for (unsigned i = 0, e = STy2->getNumElements(); i != e; ++i)
629       if (!TypesEqual(STy->getElementType(i), STy2->getElementType(i), EqTypes))
630         return false;
631     return true;
632   } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
633     const ArrayType *ATy2 = cast<ArrayType>(Ty2);
634     return ATy->getNumElements() == ATy2->getNumElements() &&
635            TypesEqual(ATy->getElementType(), ATy2->getElementType(), EqTypes);
636   } else if (const VectorType *PTy = dyn_cast<VectorType>(Ty)) {
637     const VectorType *PTy2 = cast<VectorType>(Ty2);
638     return PTy->getNumElements() == PTy2->getNumElements() &&
639            TypesEqual(PTy->getElementType(), PTy2->getElementType(), EqTypes);
640   } else if (const FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
641     const FunctionType *FTy2 = cast<FunctionType>(Ty2);
642     if (FTy->isVarArg() != FTy2->isVarArg() ||
643         FTy->getNumParams() != FTy2->getNumParams() ||
644         !TypesEqual(FTy->getReturnType(), FTy2->getReturnType(), EqTypes))
645       return false;
646     for (unsigned i = 0, e = FTy2->getNumParams(); i != e; ++i) {
647       if (!TypesEqual(FTy->getParamType(i), FTy2->getParamType(i), EqTypes))
648         return false;
649     }
650     return true;
651   } else {
652     llvm_unreachable("Unknown derived type!");
653     return false;
654   }
655 }
656
657 static bool TypesEqual(const Type *Ty, const Type *Ty2) {
658   std::map<const Type *, const Type *> EqTypes;
659   return TypesEqual(Ty, Ty2, EqTypes);
660 }
661
662 // AbstractTypeHasCycleThrough - Return true there is a path from CurTy to
663 // TargetTy in the type graph.  We know that Ty is an abstract type, so if we
664 // ever reach a non-abstract type, we know that we don't need to search the
665 // subgraph.
666 static bool AbstractTypeHasCycleThrough(const Type *TargetTy, const Type *CurTy,
667                                 SmallPtrSet<const Type*, 128> &VisitedTypes) {
668   if (TargetTy == CurTy) return true;
669   if (!CurTy->isAbstract()) return false;
670
671   if (!VisitedTypes.insert(CurTy))
672     return false;  // Already been here.
673
674   for (Type::subtype_iterator I = CurTy->subtype_begin(),
675        E = CurTy->subtype_end(); I != E; ++I)
676     if (AbstractTypeHasCycleThrough(TargetTy, *I, VisitedTypes))
677       return true;
678   return false;
679 }
680
681 static bool ConcreteTypeHasCycleThrough(const Type *TargetTy, const Type *CurTy,
682                                 SmallPtrSet<const Type*, 128> &VisitedTypes) {
683   if (TargetTy == CurTy) return true;
684
685   if (!VisitedTypes.insert(CurTy))
686     return false;  // Already been here.
687
688   for (Type::subtype_iterator I = CurTy->subtype_begin(),
689        E = CurTy->subtype_end(); I != E; ++I)
690     if (ConcreteTypeHasCycleThrough(TargetTy, *I, VisitedTypes))
691       return true;
692   return false;
693 }
694
695 /// TypeHasCycleThroughItself - Return true if the specified type has a cycle
696 /// back to itself.
697 static bool TypeHasCycleThroughItself(const Type *Ty) {
698   SmallPtrSet<const Type*, 128> VisitedTypes;
699
700   if (Ty->isAbstract()) {  // Optimized case for abstract types.
701     for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
702          I != E; ++I)
703       if (AbstractTypeHasCycleThrough(Ty, *I, VisitedTypes))
704         return true;
705   } else {
706     for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
707          I != E; ++I)
708       if (ConcreteTypeHasCycleThrough(Ty, *I, VisitedTypes))
709         return true;
710   }
711   return false;
712 }
713
714 //===----------------------------------------------------------------------===//
715 // Function Type Factory and Value Class...
716 //
717 const IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) {
718   assert(NumBits >= MIN_INT_BITS && "bitwidth too small");
719   assert(NumBits <= MAX_INT_BITS && "bitwidth too large");
720
721   // Check for the built-in integer types
722   switch (NumBits) {
723     case  1: return cast<IntegerType>(Type::getInt1Ty(C));
724     case  8: return cast<IntegerType>(Type::getInt8Ty(C));
725     case 16: return cast<IntegerType>(Type::getInt16Ty(C));
726     case 32: return cast<IntegerType>(Type::getInt32Ty(C));
727     case 64: return cast<IntegerType>(Type::getInt64Ty(C));
728     default: 
729       break;
730   }
731
732   LLVMContextImpl *pImpl = C.pImpl;
733   
734   IntegerValType IVT(NumBits);
735   IntegerType *ITy = 0;
736   
737   // First, see if the type is already in the table, for which
738   // a reader lock suffices.
739   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
740   ITy = pImpl->IntegerTypes.get(IVT);
741     
742   if (!ITy) {
743     // Value not found.  Derive a new type!
744     ITy = new IntegerType(C, NumBits);
745     pImpl->IntegerTypes.add(IVT, ITy);
746   }
747 #ifdef DEBUG_MERGE_TYPES
748   DEBUG(errs() << "Derived new type: " << *ITy << "\n");
749 #endif
750   return ITy;
751 }
752
753 bool IntegerType::isPowerOf2ByteWidth() const {
754   unsigned BitWidth = getBitWidth();
755   return (BitWidth > 7) && isPowerOf2_32(BitWidth);
756 }
757
758 APInt IntegerType::getMask() const {
759   return APInt::getAllOnesValue(getBitWidth());
760 }
761
762 FunctionValType FunctionValType::get(const FunctionType *FT) {
763   // Build up a FunctionValType
764   std::vector<const Type *> ParamTypes;
765   ParamTypes.reserve(FT->getNumParams());
766   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
767     ParamTypes.push_back(FT->getParamType(i));
768   return FunctionValType(FT->getReturnType(), ParamTypes, FT->isVarArg());
769 }
770
771
772 // FunctionType::get - The factory function for the FunctionType class...
773 FunctionType *FunctionType::get(const Type *ReturnType,
774                                 const std::vector<const Type*> &Params,
775                                 bool isVarArg) {
776   FunctionValType VT(ReturnType, Params, isVarArg);
777   FunctionType *FT = 0;
778   
779   LLVMContextImpl *pImpl = ReturnType->getContext().pImpl;
780   
781   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
782   FT = pImpl->FunctionTypes.get(VT);
783   
784   if (!FT) {
785     FT = (FunctionType*) operator new(sizeof(FunctionType) +
786                                     sizeof(PATypeHandle)*(Params.size()+1));
787     new (FT) FunctionType(ReturnType, Params, isVarArg);
788     pImpl->FunctionTypes.add(VT, FT);
789   }
790
791 #ifdef DEBUG_MERGE_TYPES
792   DEBUG(errs() << "Derived new type: " << FT << "\n");
793 #endif
794   return FT;
795 }
796
797 ArrayType *ArrayType::get(const Type *ElementType, uint64_t NumElements) {
798   assert(ElementType && "Can't get array of <null> types!");
799   assert(isValidElementType(ElementType) && "Invalid type for array element!");
800
801   ArrayValType AVT(ElementType, NumElements);
802   ArrayType *AT = 0;
803
804   LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
805   
806   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
807   AT = pImpl->ArrayTypes.get(AVT);
808       
809   if (!AT) {
810     // Value not found.  Derive a new type!
811     pImpl->ArrayTypes.add(AVT, AT = new ArrayType(ElementType, NumElements));
812   }
813 #ifdef DEBUG_MERGE_TYPES
814   DEBUG(errs() << "Derived new type: " << *AT << "\n");
815 #endif
816   return AT;
817 }
818
819 bool ArrayType::isValidElementType(const Type *ElemTy) {
820   if (ElemTy->getTypeID() == VoidTyID || ElemTy->getTypeID() == LabelTyID ||
821       ElemTy->getTypeID() == MetadataTyID || isa<FunctionType>(ElemTy))
822     return false;
823
824   if (const PointerType *PTy = dyn_cast<PointerType>(ElemTy))
825     if (PTy->getElementType()->getTypeID() == MetadataTyID)
826       return false;
827
828   return true;
829 }
830
831 VectorType *VectorType::get(const Type *ElementType, unsigned NumElements) {
832   assert(ElementType && "Can't get vector of <null> types!");
833
834   VectorValType PVT(ElementType, NumElements);
835   VectorType *PT = 0;
836   
837   LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
838   
839   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
840   PT = pImpl->VectorTypes.get(PVT);
841     
842   if (!PT) {
843     pImpl->VectorTypes.add(PVT, PT = new VectorType(ElementType, NumElements));
844   }
845 #ifdef DEBUG_MERGE_TYPES
846   DEBUG(errs() << "Derived new type: " << *PT << "\n");
847 #endif
848   return PT;
849 }
850
851 bool VectorType::isValidElementType(const Type *ElemTy) {
852   if (ElemTy->isInteger() || ElemTy->isFloatingPoint() ||
853       isa<OpaqueType>(ElemTy))
854     return true;
855
856   return false;
857 }
858
859 //===----------------------------------------------------------------------===//
860 // Struct Type Factory...
861 //
862
863 StructType *StructType::get(LLVMContext &Context,
864                             const std::vector<const Type*> &ETypes, 
865                             bool isPacked) {
866   StructValType STV(ETypes, isPacked);
867   StructType *ST = 0;
868   
869   LLVMContextImpl *pImpl = Context.pImpl;
870   
871   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
872   ST = pImpl->StructTypes.get(STV);
873     
874   if (!ST) {
875     // Value not found.  Derive a new type!
876     ST = (StructType*) operator new(sizeof(StructType) +
877                                     sizeof(PATypeHandle) * ETypes.size());
878     new (ST) StructType(Context, ETypes, isPacked);
879     pImpl->StructTypes.add(STV, ST);
880   }
881 #ifdef DEBUG_MERGE_TYPES
882   DEBUG(errs() << "Derived new type: " << *ST << "\n");
883 #endif
884   return ST;
885 }
886
887 StructType *StructType::get(LLVMContext &Context, const Type *type, ...) {
888   va_list ap;
889   std::vector<const llvm::Type*> StructFields;
890   va_start(ap, type);
891   while (type) {
892     StructFields.push_back(type);
893     type = va_arg(ap, llvm::Type*);
894   }
895   return llvm::StructType::get(Context, StructFields);
896 }
897
898 bool StructType::isValidElementType(const Type *ElemTy) {
899   if (ElemTy->getTypeID() == VoidTyID || ElemTy->getTypeID() == LabelTyID ||
900       ElemTy->getTypeID() == MetadataTyID || isa<FunctionType>(ElemTy))
901     return false;
902
903   if (const PointerType *PTy = dyn_cast<PointerType>(ElemTy))
904     if (PTy->getElementType()->getTypeID() == MetadataTyID)
905       return false;
906
907   return true;
908 }
909
910
911 //===----------------------------------------------------------------------===//
912 // Pointer Type Factory...
913 //
914
915 PointerType *PointerType::get(const Type *ValueType, unsigned AddressSpace) {
916   assert(ValueType && "Can't get a pointer to <null> type!");
917   assert(ValueType->getTypeID() != VoidTyID &&
918          "Pointer to void is not valid, use i8* instead!");
919   assert(isValidElementType(ValueType) && "Invalid type for pointer element!");
920   PointerValType PVT(ValueType, AddressSpace);
921
922   PointerType *PT = 0;
923   
924   LLVMContextImpl *pImpl = ValueType->getContext().pImpl;
925   
926   sys::SmartScopedLock<true> L(pImpl->TypeMapLock);
927   PT = pImpl->PointerTypes.get(PVT);
928   
929   if (!PT) {
930     // Value not found.  Derive a new type!
931     pImpl->PointerTypes.add(PVT, PT = new PointerType(ValueType, AddressSpace));
932   }
933 #ifdef DEBUG_MERGE_TYPES
934   DEBUG(errs() << "Derived new type: " << *PT << "\n");
935 #endif
936   return PT;
937 }
938
939 PointerType *Type::getPointerTo(unsigned addrs) const {
940   return PointerType::get(this, addrs);
941 }
942
943 bool PointerType::isValidElementType(const Type *ElemTy) {
944   if (ElemTy->getTypeID() == VoidTyID ||
945       ElemTy->getTypeID() == LabelTyID)
946     return false;
947
948   if (const PointerType *PTy = dyn_cast<PointerType>(ElemTy))
949     if (PTy->getElementType()->getTypeID() == MetadataTyID)
950       return false;
951
952   return true;
953 }
954
955
956 //===----------------------------------------------------------------------===//
957 //                     Derived Type Refinement Functions
958 //===----------------------------------------------------------------------===//
959
960 // addAbstractTypeUser - Notify an abstract type that there is a new user of
961 // it.  This function is called primarily by the PATypeHandle class.
962 void Type::addAbstractTypeUser(AbstractTypeUser *U) const {
963   assert(isAbstract() && "addAbstractTypeUser: Current type not abstract!");
964   LLVMContextImpl *pImpl = getContext().pImpl;
965   pImpl->AbstractTypeUsersLock.acquire();
966   AbstractTypeUsers.push_back(U);
967   pImpl->AbstractTypeUsersLock.release();
968 }
969
970
971 // removeAbstractTypeUser - Notify an abstract type that a user of the class
972 // no longer has a handle to the type.  This function is called primarily by
973 // the PATypeHandle class.  When there are no users of the abstract type, it
974 // is annihilated, because there is no way to get a reference to it ever again.
975 //
976 void Type::removeAbstractTypeUser(AbstractTypeUser *U) const {
977   LLVMContextImpl *pImpl = getContext().pImpl;
978   pImpl->AbstractTypeUsersLock.acquire();
979   
980   // Search from back to front because we will notify users from back to
981   // front.  Also, it is likely that there will be a stack like behavior to
982   // users that register and unregister users.
983   //
984   unsigned i;
985   for (i = AbstractTypeUsers.size(); AbstractTypeUsers[i-1] != U; --i)
986     assert(i != 0 && "AbstractTypeUser not in user list!");
987
988   --i;  // Convert to be in range 0 <= i < size()
989   assert(i < AbstractTypeUsers.size() && "Index out of range!");  // Wraparound?
990
991   AbstractTypeUsers.erase(AbstractTypeUsers.begin()+i);
992
993 #ifdef DEBUG_MERGE_TYPES
994   DEBUG(errs() << "  remAbstractTypeUser[" << (void*)this << ", "
995                << *this << "][" << i << "] User = " << U << "\n");
996 #endif
997
998   if (AbstractTypeUsers.empty() && getRefCount() == 0 && isAbstract()) {
999 #ifdef DEBUG_MERGE_TYPES
1000     DEBUG(errs() << "DELETEing unused abstract type: <" << *this
1001                  << ">[" << (void*)this << "]" << "\n");
1002 #endif
1003   
1004   this->destroy();
1005   }
1006   
1007   pImpl->AbstractTypeUsersLock.release();
1008 }
1009
1010 // unlockedRefineAbstractTypeTo - This function is used when it is discovered
1011 // that the 'this' abstract type is actually equivalent to the NewType
1012 // specified. This causes all users of 'this' to switch to reference the more 
1013 // concrete type NewType and for 'this' to be deleted.  Only used for internal
1014 // callers.
1015 //
1016 void DerivedType::unlockedRefineAbstractTypeTo(const Type *NewType) {
1017   assert(isAbstract() && "refineAbstractTypeTo: Current type is not abstract!");
1018   assert(this != NewType && "Can't refine to myself!");
1019   assert(ForwardType == 0 && "This type has already been refined!");
1020
1021   LLVMContextImpl *pImpl = getContext().pImpl;
1022
1023   // The descriptions may be out of date.  Conservatively clear them all!
1024   pImpl->AbstractTypeDescriptions.clear();
1025
1026 #ifdef DEBUG_MERGE_TYPES
1027   DEBUG(errs() << "REFINING abstract type [" << (void*)this << " "
1028                << *this << "] to [" << (void*)NewType << " "
1029                << *NewType << "]!\n");
1030 #endif
1031
1032   // Make sure to put the type to be refined to into a holder so that if IT gets
1033   // refined, that we will not continue using a dead reference...
1034   //
1035   PATypeHolder NewTy(NewType);
1036   // Any PATypeHolders referring to this type will now automatically forward to
1037   // the type we are resolved to.
1038   ForwardType = NewType;
1039   if (NewType->isAbstract())
1040     cast<DerivedType>(NewType)->addRef();
1041
1042   // Add a self use of the current type so that we don't delete ourself until
1043   // after the function exits.
1044   //
1045   PATypeHolder CurrentTy(this);
1046
1047   // To make the situation simpler, we ask the subclass to remove this type from
1048   // the type map, and to replace any type uses with uses of non-abstract types.
1049   // This dramatically limits the amount of recursive type trouble we can find
1050   // ourselves in.
1051   dropAllTypeUses();
1052
1053   // Iterate over all of the uses of this type, invoking callback.  Each user
1054   // should remove itself from our use list automatically.  We have to check to
1055   // make sure that NewTy doesn't _become_ 'this'.  If it does, resolving types
1056   // will not cause users to drop off of the use list.  If we resolve to ourself
1057   // we succeed!
1058   //
1059   pImpl->AbstractTypeUsersLock.acquire();
1060   while (!AbstractTypeUsers.empty() && NewTy != this) {
1061     AbstractTypeUser *User = AbstractTypeUsers.back();
1062
1063     unsigned OldSize = AbstractTypeUsers.size(); OldSize=OldSize;
1064 #ifdef DEBUG_MERGE_TYPES
1065     DEBUG(errs() << " REFINING user " << OldSize-1 << "[" << (void*)User
1066                  << "] of abstract type [" << (void*)this << " "
1067                  << *this << "] to [" << (void*)NewTy.get() << " "
1068                  << *NewTy << "]!\n");
1069 #endif
1070     User->refineAbstractType(this, NewTy);
1071
1072     assert(AbstractTypeUsers.size() != OldSize &&
1073            "AbsTyUser did not remove self from user list!");
1074   }
1075   pImpl->AbstractTypeUsersLock.release();
1076
1077   // If we were successful removing all users from the type, 'this' will be
1078   // deleted when the last PATypeHolder is destroyed or updated from this type.
1079   // This may occur on exit of this function, as the CurrentTy object is
1080   // destroyed.
1081 }
1082
1083 // refineAbstractTypeTo - This function is used by external callers to notify
1084 // us that this abstract type is equivalent to another type.
1085 //
1086 void DerivedType::refineAbstractTypeTo(const Type *NewType) {
1087   // All recursive calls will go through unlockedRefineAbstractTypeTo,
1088   // to avoid deadlock problems.
1089   sys::SmartScopedLock<true> L(NewType->getContext().pImpl->TypeMapLock);
1090   unlockedRefineAbstractTypeTo(NewType);
1091 }
1092
1093 // notifyUsesThatTypeBecameConcrete - Notify AbstractTypeUsers of this type that
1094 // the current type has transitioned from being abstract to being concrete.
1095 //
1096 void DerivedType::notifyUsesThatTypeBecameConcrete() {
1097 #ifdef DEBUG_MERGE_TYPES
1098   DEBUG(errs() << "typeIsREFINED type: " << (void*)this << " " << *this <<"\n");
1099 #endif
1100
1101   LLVMContextImpl *pImpl = getContext().pImpl;
1102
1103   pImpl->AbstractTypeUsersLock.acquire();
1104   unsigned OldSize = AbstractTypeUsers.size(); OldSize=OldSize;
1105   while (!AbstractTypeUsers.empty()) {
1106     AbstractTypeUser *ATU = AbstractTypeUsers.back();
1107     ATU->typeBecameConcrete(this);
1108
1109     assert(AbstractTypeUsers.size() < OldSize-- &&
1110            "AbstractTypeUser did not remove itself from the use list!");
1111   }
1112   pImpl->AbstractTypeUsersLock.release();
1113 }
1114
1115 // refineAbstractType - Called when a contained type is found to be more
1116 // concrete - this could potentially change us from an abstract type to a
1117 // concrete type.
1118 //
1119 void FunctionType::refineAbstractType(const DerivedType *OldType,
1120                                       const Type *NewType) {
1121   LLVMContextImpl *pImpl = OldType->getContext().pImpl;
1122   pImpl->FunctionTypes.RefineAbstractType(this, OldType, NewType);
1123 }
1124
1125 void FunctionType::typeBecameConcrete(const DerivedType *AbsTy) {
1126   LLVMContextImpl *pImpl = AbsTy->getContext().pImpl;
1127   pImpl->FunctionTypes.TypeBecameConcrete(this, AbsTy);
1128 }
1129
1130
1131 // refineAbstractType - Called when a contained type is found to be more
1132 // concrete - this could potentially change us from an abstract type to a
1133 // concrete type.
1134 //
1135 void ArrayType::refineAbstractType(const DerivedType *OldType,
1136                                    const Type *NewType) {
1137   LLVMContextImpl *pImpl = OldType->getContext().pImpl;
1138   pImpl->ArrayTypes.RefineAbstractType(this, OldType, NewType);
1139 }
1140
1141 void ArrayType::typeBecameConcrete(const DerivedType *AbsTy) {
1142   LLVMContextImpl *pImpl = AbsTy->getContext().pImpl;
1143   pImpl->ArrayTypes.TypeBecameConcrete(this, AbsTy);
1144 }
1145
1146 // refineAbstractType - Called when a contained type is found to be more
1147 // concrete - this could potentially change us from an abstract type to a
1148 // concrete type.
1149 //
1150 void VectorType::refineAbstractType(const DerivedType *OldType,
1151                                    const Type *NewType) {
1152   LLVMContextImpl *pImpl = OldType->getContext().pImpl;
1153   pImpl->VectorTypes.RefineAbstractType(this, OldType, NewType);
1154 }
1155
1156 void VectorType::typeBecameConcrete(const DerivedType *AbsTy) {
1157   LLVMContextImpl *pImpl = AbsTy->getContext().pImpl;
1158   pImpl->VectorTypes.TypeBecameConcrete(this, AbsTy);
1159 }
1160
1161 // refineAbstractType - Called when a contained type is found to be more
1162 // concrete - this could potentially change us from an abstract type to a
1163 // concrete type.
1164 //
1165 void StructType::refineAbstractType(const DerivedType *OldType,
1166                                     const Type *NewType) {
1167   LLVMContextImpl *pImpl = OldType->getContext().pImpl;
1168   pImpl->StructTypes.RefineAbstractType(this, OldType, NewType);
1169 }
1170
1171 void StructType::typeBecameConcrete(const DerivedType *AbsTy) {
1172   LLVMContextImpl *pImpl = AbsTy->getContext().pImpl;
1173   pImpl->StructTypes.TypeBecameConcrete(this, AbsTy);
1174 }
1175
1176 // refineAbstractType - Called when a contained type is found to be more
1177 // concrete - this could potentially change us from an abstract type to a
1178 // concrete type.
1179 //
1180 void PointerType::refineAbstractType(const DerivedType *OldType,
1181                                      const Type *NewType) {
1182   LLVMContextImpl *pImpl = OldType->getContext().pImpl;
1183   pImpl->PointerTypes.RefineAbstractType(this, OldType, NewType);
1184 }
1185
1186 void PointerType::typeBecameConcrete(const DerivedType *AbsTy) {
1187   LLVMContextImpl *pImpl = AbsTy->getContext().pImpl;
1188   pImpl->PointerTypes.TypeBecameConcrete(this, AbsTy);
1189 }
1190
1191 bool SequentialType::indexValid(const Value *V) const {
1192   if (isa<IntegerType>(V->getType())) 
1193     return true;
1194   return false;
1195 }
1196
1197 namespace llvm {
1198 raw_ostream &operator<<(raw_ostream &OS, const Type &T) {
1199   T.print(OS);
1200   return OS;
1201 }
1202 }