diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-02 18:30:12 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-02 18:30:12 +0000 |
commit | d8c5abb096a5f6babb3709180fe304be5462bcc1 (patch) | |
tree | e43d091760c13cca18a25aacb234fc910acbf73e /lib/Frontend/PCHReader.cpp | |
parent | ed48a8faa10b6750f334540711c7b3949bbfb3ae (diff) |
Query only the latest version of an identifier in the PCH chain. Make sure this version holds the entire declaration chain. This is a much saner solution than trying to merge the info from all elements, and makes redeclarations work properly. Expand the declarations test case to cover more compliated cases.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110052 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReader.cpp')
-rw-r--r-- | lib/Frontend/PCHReader.cpp | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/lib/Frontend/PCHReader.cpp b/lib/Frontend/PCHReader.cpp index 0502e674a9..d5cf75ce3b 100644 --- a/lib/Frontend/PCHReader.cpp +++ b/lib/Frontend/PCHReader.cpp @@ -689,9 +689,6 @@ public: uint32_t Offset = ReadUnalignedLE32(d); Reader.ReadMacroRecord(Stream, Offset); DataLen -= 4; - } else if (II->hasMacroDefinition() && !Reader.isBuiltinMacro(II)) { - // A previous part of the chain added a macro, but this part #undefed it. - Reader.EraseMacro(II); } // Read all of the declarations visible at global scope with this @@ -1389,15 +1386,6 @@ MacroDefinition *PCHReader::getMacroDefinition(pch::IdentID ID) { return MacroDefinitionsLoaded[ID]; } -void PCHReader::EraseMacro(IdentifierInfo *II) { - PP->setMacroInfo(II, 0); -} - -bool PCHReader::isBuiltinMacro(IdentifierInfo *II) { - assert(II->hasMacroDefinition() && "Identifier is not a macro"); - return PP->getMacroInfo(II)->isBuiltinMacro(); -} - /// \brief If we are loading a relocatable PCH file, and the filename is /// not an absolute path, add the system root to the beginning of the file /// name. @@ -3184,12 +3172,11 @@ void PCHReader::InitializeSema(Sema &S) { } IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) { - // Try to find this name within our on-disk hash tables. We need to aggregate - // the info from all of them. - IdentifierInfo *II = 0; + // Try to find this name within our on-disk hash tables. We start with the + // most recent one, since that one contains the most up-to-date info. for (unsigned I = 0, N = Chain.size(); I != N; ++I) { PCHIdentifierLookupTable *IdTable - = (PCHIdentifierLookupTable *)Chain[N - I - 1]->IdentifierLookupTable; + = (PCHIdentifierLookupTable *)Chain[I]->IdentifierLookupTable; if (!IdTable) continue; std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart); @@ -3200,9 +3187,9 @@ IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) { // Dereferencing the iterator has the effect of building the // IdentifierInfo node and populating it with the various // declarations it needs. - II = *Pos; + return *Pos; } - return II; + return 0; } std::pair<ObjCMethodList, ObjCMethodList> |