diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-10-02 20:26:18 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-10-02 20:26:18 +0000 |
| commit | c7caffab3233d1814195f139aee60f6f659b350c (patch) | |
| tree | 37a1b39e8d0e1749fa03f2e2ffe1e442bb6bcc22 /llvm/lib/Bytecode | |
| parent | 22e4ca886332fc930fe1e60c7a8e74d451259936 (diff) | |
| download | bcm5719-llvm-c7caffab3233d1814195f139aee60f6f659b350c.tar.gz bcm5719-llvm-c7caffab3233d1814195f139aee60f6f659b350c.zip | |
There is no need for BytecodeParser to be an AbstractTypeUser. Instead, it
can just use PATypeHolders
llvm-svn: 8832
Diffstat (limited to 'llvm/lib/Bytecode')
| -rw-r--r-- | llvm/lib/Bytecode/Reader/ConstantReader.cpp | 21 | ||||
| -rw-r--r-- | llvm/lib/Bytecode/Reader/ReaderInternals.h | 10 |
2 files changed, 3 insertions, 28 deletions
diff --git a/llvm/lib/Bytecode/Reader/ConstantReader.cpp b/llvm/lib/Bytecode/Reader/ConstantReader.cpp index 91baa566d7f..43acde107bb 100644 --- a/llvm/lib/Bytecode/Reader/ConstantReader.cpp +++ b/llvm/lib/Bytecode/Reader/ConstantReader.cpp @@ -94,25 +94,6 @@ const Type *BytecodeParser::parseTypeConstant(const unsigned char *&Buf, } } -// refineAbstractType - The callback method is invoked when one of the -// elements of TypeValues becomes more concrete... -// -void BytecodeParser::refineAbstractType(const DerivedType *OldType, - const Type *NewType) { - TypeValuesListTy::iterator I = find(FunctionTypeValues.begin(), - FunctionTypeValues.end(), OldType); - if (I == FunctionTypeValues.end()) { - I = find(ModuleTypeValues.begin(), ModuleTypeValues.end(), OldType); - assert(I != ModuleTypeValues.end() && - "Can't refine a type I don't know about!"); - } - - I->removeUserFromConcrete(); - *I = NewType; // Update to point to new, more refined type. -} - - - // parseTypeConstants - We have to use this weird code to handle recursive // types. We know that recursive types will only reference the current slab of // values in the type plane, but they can forward reference types before they @@ -132,7 +113,7 @@ void BytecodeParser::parseTypeConstants(const unsigned char *&Buf, // Insert a bunch of opaque types to be resolved later... for (unsigned i = 0; i < NumEntries; ++i) - Tab.push_back(PATypeHandle(OpaqueType::get(), this)); + Tab.push_back(OpaqueType::get()); // Loop through reading all of the types. Forward types will make use of the // opaque types just inserted. diff --git a/llvm/lib/Bytecode/Reader/ReaderInternals.h b/llvm/lib/Bytecode/Reader/ReaderInternals.h index e7154051eab..f7113c0c571 100644 --- a/llvm/lib/Bytecode/Reader/ReaderInternals.h +++ b/llvm/lib/Bytecode/Reader/ReaderInternals.h @@ -43,7 +43,7 @@ struct LazyFunctionInfo { unsigned FunctionSlot; }; -class BytecodeParser : public AbstractTypeUser, public AbstractModuleProvider { +class BytecodeParser : public AbstractModuleProvider { BytecodeParser(const BytecodeParser &); // DO NOT IMPLEMENT void operator=(const BytecodeParser &); // DO NOT IMPLEMENT public: @@ -116,7 +116,7 @@ private: // All of this data is transient across calls to ParseBytecode // TypesLoaded - This vector mirrors the Values[TypeTyID] plane. It is used // to deal with forward references to types. // - typedef std::vector<PATypeHandle> TypeValuesListTy; + typedef std::vector<PATypeHolder> TypeValuesListTy; TypeValuesListTy ModuleTypeValues; TypeValuesListTy FunctionTypeValues; @@ -189,12 +189,6 @@ private: // resolve all references to the placeholder (if any) for the given value void ResolveReferencesToValue(Value *Val, unsigned Slot); - - - // refineAbstractType - The callback method is invoked when one of the - // elements of TypeValues becomes more concrete... - // - virtual void refineAbstractType(const DerivedType *OldTy, const Type *NewTy); }; template<class SuperType> |

