summaryrefslogtreecommitdiffstats
path: root/clang/lib/Serialization/Module.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2015-08-31 22:17:11 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2015-08-31 22:17:11 +0000
commit9ce2b45936896d28939c2d28860a9c9fb424c7d3 (patch)
tree881aad0deab058309d207b7e999c30820bedc171 /clang/lib/Serialization/Module.cpp
parent0518574a735fd41d7aa1a8f3457be9b790b5befd (diff)
downloadbcm5719-llvm-9ce2b45936896d28939c2d28860a9c9fb424c7d3.tar.gz
bcm5719-llvm-9ce2b45936896d28939c2d28860a9c9fb424c7d3.zip
[modules] Rework serialized DeclContext lookup table management. Instead of
walking the loaded ModuleFiles looking for lookup tables for the context, store them all in one place, and merge them together if we find we have too many (currently, more than 4). If we do merge, include the merged form in our serialized lookup table, so that downstream readers never need to look at our imports' tables. This gives a huge performance improvement to builds with very large numbers of modules (in some cases, more than a 2x speedup was observed). llvm-svn: 246497
Diffstat (limited to 'clang/lib/Serialization/Module.cpp')
-rw-r--r--clang/lib/Serialization/Module.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Serialization/Module.cpp b/clang/lib/Serialization/Module.cpp
index 9111fc40a02..4884f0b0948 100644
--- a/clang/lib/Serialization/Module.cpp
+++ b/clang/lib/Serialization/Module.cpp
@@ -45,13 +45,6 @@ ModuleFile::ModuleFile(ModuleKind Kind, unsigned Generation)
{}
ModuleFile::~ModuleFile() {
- for (DeclContextInfosMap::iterator I = DeclContextInfos.begin(),
- E = DeclContextInfos.end();
- I != E; ++I) {
- if (I->second.NameLookupTableData)
- delete I->second.NameLookupTableData;
- }
-
delete static_cast<ASTIdentifierLookupTable *>(IdentifierLookupTable);
delete static_cast<HeaderFileInfoLookupTable *>(HeaderFileInfoTable);
delete static_cast<ASTSelectorLookupTable *>(SelectorLookupTable);
OpenPOWER on IntegriCloud