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