#include "Support/StringExtras.h"
#include "Support/STLExtras.h"
#include <iostream>
+#include <algorithm>
using std::vector;
using std::string;
typedef map<ValType, PATypeHandle<TypeClass> > MapTy;
MapTy Map;
public:
-
~TypeMap() { print("ON EXIT"); }
inline TypeClass *get(const ValType &V) {
// corrected.
//
virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
- assert(OldTy == NewTy || OldTy->isAbstract());
- if (OldTy == NewTy) {
- if (!OldTy->isAbstract()) {
- // Check to see if the type just became concrete.
- // If so, remove self from user list.
- for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I)
- if (I->second == OldTy)
- I->second.removeUserFromConcrete();
- }
- return;
- }
#ifdef DEBUG_MERGE_TYPES
cerr << "Removing Old type from Tab: " << (void*)OldTy << ", "
<< OldTy->getDescription() << " replacement == " << (void*)NewTy
#endif
for (MapTy::iterator I = Map.begin(), E = Map.end(); I != E; ++I)
if (I->second == OldTy) {
- Map.erase(I);
- print("refineAbstractType after");
- return;
+ // Check to see if the type just became concrete. If so, remove self
+ // from user list.
+ I->second.removeUserFromConcrete();
+ I->second = cast<TypeClass>(NewTy);
}
- assert(0 && "Abstract type not found in table!");
}
void remove(const ValType &OldVal) {
virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
assert(OldTy == NewTy || OldTy->isAbstract());
- if (OldTy == NewTy) {
- if (!OldTy->isAbstract())
- typeBecameConcrete(OldTy);
- // MUST fall through here to update map, even if the type pointers stay
- // the same!
- }
+
+ if (!OldTy->isAbstract())
+ typeBecameConcrete(OldTy);
+
TypeMap<ValType, TypeClass> &Table = MyTable; // Copy MyTable reference
ValType Tmp(*(ValType*)this); // Copy this.
PATypeHandle<TypeClass> OldType(Table.get(*(ValType*)this), this);
Table.remove(*(ValType*)this); // Destroy's this!
-#if 1
+
// Refine temporary to new state...
- Tmp.doRefinement(OldTy, NewTy);
+ if (OldTy != NewTy)
+ Tmp.doRefinement(OldTy, NewTy);
+ // FIXME: when types are not const!
Table.add((ValType&)Tmp, (TypeClass*)OldType.get());
-#endif
}
void dump() const {
// Subclass should override this... to update self as usual
virtual void doRefinement(const DerivedType *OldType, const Type *NewType) {
if (RetTy == OldType) RetTy = NewType;
- for (unsigned i = 0; i < ArgTypes.size(); ++i)
+ for (unsigned i = 0, e = ArgTypes.size(); i != e; ++i)
if (ArgTypes[i] == OldType) ArgTypes[i] = NewType;
}
// Subclass should override this... to update self as usual
virtual void doRefinement(const DerivedType *OldType, const Type *NewType) {
- if (ValTy == OldType) ValTy = NewType;
+ assert(ValTy == OldType);
+ ValTy = NewType;
}
virtual void typeBecameConcrete(const DerivedType *Ty) {
}
virtual void typeBecameConcrete(const DerivedType *Ty) {
- for (unsigned i = 0; i < ElTypes.size(); ++i)
- if (ElTypes[i] == Ty) ElTypes[i].removeUserFromConcrete();
+ for (unsigned i = 0, e = ElTypes.size(); i != e; ++i)
+ if (ElTypes[i] == Ty)
+ ElTypes[i].removeUserFromConcrete();
}
inline bool operator<(const StructValType &STV) const {
// Subclass should override this... to update self as usual
virtual void doRefinement(const DerivedType *OldType, const Type *NewType) {
- if (ValTy == OldType) ValTy = NewType;
+ assert(ValTy == OldType);
+ ValTy = NewType;
}
virtual void typeBecameConcrete(const DerivedType *Ty) {
#ifdef DEBUG_MERGE_TYPES
cerr << "typeIsREFINED type: " << (void*)this <<" "<<getDescription() << "\n";
#endif
- for (unsigned i = 0; i < AbstractTypeUsers.size(); ) {
- AbstractTypeUser *ATU = AbstractTypeUsers[i];
+
+ // In this loop we have to be very careful not to get into infinite loops and
+ // other problem cases. Specifically, we loop through all of the abstract
+ // type users in the user list, notifying them that the type has been refined.
+ // At their choice, they may or may not choose to remove themselves from the
+ // list of users. Regardless of whether they do or not, we have to be sure
+ // that we only notify each user exactly once. Because the refineAbstractType
+ // method can cause an arbitrary permutation to the user list, we cannot loop
+ // through it in any particular order and be guaranteed that we will be
+ // successful at this aim. Because of this, we keep track of all the users we
+ // have visited and only visit users we have not seen. Because this user list
+ // should be small, we use a vector instead of a full featured set to keep
+ // track of what users we have notified so far.
+ //
+ vector<AbstractTypeUser*> Refined;
+ while (1) {
+ unsigned i;
+ for (i = AbstractTypeUsers.size(); i != 0; --i)
+ if (find(Refined.begin(), Refined.end(), AbstractTypeUsers[i-1]) ==
+ Refined.end())
+ break; // Found an unrefined user?
+
+ if (i == 0) break; // Noone to refine left, break out of here!
+
+ AbstractTypeUser *ATU = AbstractTypeUsers[--i];
+ Refined.push_back(ATU); // Keep track of which users we have refined!
+
#ifdef DEBUG_MERGE_TYPES
cerr << " typeIsREFINED user " << i << "[" << ATU << "] of abstract type ["
<< (void*)this << " " << getDescription() << "]\n";
#endif
- unsigned OldSize = AbstractTypeUsers.size();
ATU->refineAbstractType(this, this);
-
- // If the user didn't remove itself from the list, continue...
- if (AbstractTypeUsers.size() == OldSize && AbstractTypeUsers[i] == ATU)
- ++i;
}
--isRefining;
<< NewType->getDescription() << "])\n";
#endif
// Find the type element we are refining...
- PATypeHandle<Type> *MatchTy = 0;
- if (ResultType == OldType)
- MatchTy = &ResultType;
- else {
- unsigned i;
- for (i = 0; ParamTys[i] != OldType; ++i)
- assert(i != ParamTys.size());
- MatchTy = &ParamTys[i];
+ if (ResultType == OldType) {
+ ResultType.removeUserFromConcrete();
+ ResultType = NewType;
}
+ for (unsigned i = 0, e = ParamTys.size(); i != e; ++i)
+ if (ParamTys[i] == OldType) {
+ ParamTys[i].removeUserFromConcrete();
+ ParamTys[i] = NewType;
+ }
- if (!OldType->isAbstract())
- MatchTy->removeUserFromConcrete();
-
- *MatchTy = NewType;
const FunctionType *MT = FunctionTypes.containsEquivalent(this);
if (MT && MT != this) {
refineAbstractTypeTo(MT); // Different type altogether...
<< NewType->getDescription() << "])\n";
#endif
- if (!OldType->isAbstract()) {
- assert(getElementType() == OldType);
- ElementType.removeUserFromConcrete();
- }
-
+ assert(getElementType() == OldType);
+ ElementType.removeUserFromConcrete();
ElementType = NewType;
+
const ArrayType *AT = ArrayTypes.containsEquivalent(this);
if (AT && AT != this) {
refineAbstractTypeTo(AT); // Different type altogether...
<< OldType->getDescription() << "], " << (void*)NewType << " ["
<< NewType->getDescription() << "])\n";
#endif
- unsigned i;
- for (i = 0; ETypes[i] != OldType; ++i)
- assert(i != ETypes.size() && "OldType not found in this structure!");
-
- if (!OldType->isAbstract())
- ETypes[i].removeUserFromConcrete();
+ for (unsigned i = 0, e = ETypes.size(); i != e; ++i)
+ if (ETypes[i] == OldType) {
+ ETypes[i].removeUserFromConcrete();
- // Update old type to new type in the array...
- ETypes[i] = NewType;
+ // Update old type to new type in the array...
+ ETypes[i] = NewType;
+ }
const StructType *ST = StructTypes.containsEquivalent(this);
if (ST && ST != this) {
<< NewType->getDescription() << "])\n";
#endif
- if (!OldType->isAbstract()) {
- assert(ElementType == OldType);
- ElementType.removeUserFromConcrete();
- }
-
+ assert(ElementType == OldType);
+ ElementType.removeUserFromConcrete();
ElementType = NewType;
- const PointerType *PT = PointerTypes.containsEquivalent(this);
+ const PointerType *PT = PointerTypes.containsEquivalent(this);
if (PT && PT != this) {
refineAbstractTypeTo(PT); // Different type altogether...
} else {