aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/AbstractTypeUser.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-04 19:18:00 +0000
committerChris Lattner <sabre@nondot.org>2002-04-04 19:18:00 +0000
commitc269bd92325d21011ecc04d062c1044c1f7c1754 (patch)
tree953fa43d554e75fba91591ec26cd3c88d9444ce0 /include/llvm/AbstractTypeUser.h
parenta13d6ceed799c5a342fb2d499b88b5fcb950970e (diff)
* Add dump() virtual function to AbstractType user to help track down bugs
* PATypeHolder is now a nontemplated class, because it was (almost) only ever instantiated with 'Type' as the parameter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/AbstractTypeUser.h')
-rw-r--r--include/llvm/AbstractTypeUser.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/include/llvm/AbstractTypeUser.h b/include/llvm/AbstractTypeUser.h
index 844d465e38..c995b61cad 100644
--- a/include/llvm/AbstractTypeUser.h
+++ b/include/llvm/AbstractTypeUser.h
@@ -47,6 +47,8 @@ public:
//
virtual void refineAbstractType(const DerivedType *OldTy,
const Type *NewTy) = 0;
+ // for debugging...
+ virtual void dump() const = 0;
};
@@ -119,12 +121,10 @@ public:
// as both a handle (as above) and an AbstractTypeUser. It uses the callback to
// keep its pointer member updated to the current version of the type.
//
-template <class TypeSC>
-class PATypeHolder : public AbstractTypeUser, public PATypeHandle<TypeSC> {
-public:
- inline PATypeHolder(const TypeSC *ty) : PATypeHandle<TypeSC>(ty, this) {}
+struct PATypeHolder : public AbstractTypeUser, public PATypeHandle<Type> {
+ inline PATypeHolder(const Type *ty) : PATypeHandle<Type>(ty, this) {}
inline PATypeHolder(const PATypeHolder &T)
- : AbstractTypeUser(T), PATypeHandle<TypeSC>(T, this) {}
+ : AbstractTypeUser(T), PATypeHandle<Type>(T, this) {}
// refineAbstractType - All we do is update our PATypeHandle member to point
// to the new type.
@@ -137,22 +137,23 @@ public:
removeUserFromConcrete();
if ((const Type*)OldTy != NewTy)
- PATypeHandle<TypeSC>::operator=((const TypeSC*)NewTy);
+ PATypeHandle<Type>::operator=(NewTy);
}
// operator= - Allow assignment to handle
- inline const TypeSC *operator=(const TypeSC *ty) {
- return PATypeHandle<TypeSC>::operator=(ty);
+ inline const Type *operator=(const Type *ty) {
+ return PATypeHandle<Type>::operator=(ty);
}
// operator= - Allow assignment to handle
- inline const TypeSC *operator=(const PATypeHandle<TypeSC> &T) {
- return PATypeHandle<TypeSC>::operator=(T);
+ inline const Type *operator=(const PATypeHandle<Type> &T) {
+ return PATypeHandle<Type>::operator=(T);
}
- inline const TypeSC *operator=(const PATypeHolder<TypeSC> &H) {
- return PATypeHandle<TypeSC>::operator=(H);
+ inline const Type *operator=(const PATypeHolder &H) {
+ return PATypeHandle<Type>::operator=(H);
}
-};
+ void dump() const;
+};
#endif