aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic/FileManager.cpp
diff options
context:
space:
mode:
authorAxel Naumann <Axel.Naumann@cern.ch>2012-07-10 16:50:27 +0000
committerAxel Naumann <Axel.Naumann@cern.ch>2012-07-10 16:50:27 +0000
commit5ba0559f2f0ddd62de16547af514dbaf93b79585 (patch)
treec9d6ae1d5e7d2133ac0093fd1ee379cc94ff434c /lib/Basic/FileManager.cpp
parent783db50d09cf2df90679331cca6c7254f4a2fbc5 (diff)
Improve r159256 following Chandler's comments:
Implement UniqueFileContainer::erase(), camelCase, add comment on future optimizations of the cache versus de-optimizations of invalidations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/FileManager.cpp')
-rw-r--r--lib/Basic/FileManager.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/Basic/FileManager.cpp b/lib/Basic/FileManager.cpp
index 100f3ceaf0..9804105e67 100644
--- a/lib/Basic/FileManager.cpp
+++ b/lib/Basic/FileManager.cpp
@@ -112,7 +112,7 @@ public:
size_t size() const { return UniqueFiles.size(); }
- friend class FileManager;
+ void erase(const FileEntry *Entry) { UniqueFiles.erase(Entry->getName()); }
};
//===----------------------------------------------------------------------===//
@@ -155,7 +155,7 @@ public:
size_t size() const { return UniqueFiles.size(); }
- friend class FileManager;
+ void erase(const FileEntry *Entry) { UniqueFiles.erase(*Entry); }
};
#endif
@@ -563,16 +563,15 @@ bool FileManager::getNoncachedStatValue(StringRef Path,
return ::stat(FilePath.c_str(), &StatBuf) != 0;
}
-void FileManager::InvalidateCache(const FileEntry* Entry) {
- if (!Entry)
- return;
+void FileManager::invalidateCache(const FileEntry *Entry) {
+ assert(Entry && "Cannot invalidate a NULL FileEntry");
SeenFileEntries.erase(Entry->getName());
-#ifdef LLVM_ON_WIN32
- UniqueRealFiles.UniqueFiles.erase(Entry->getName());
-#else
- UniqueRealFiles.UniqueFiles.erase(*Entry);
-#endif
+
+ // FileEntry invalidation should not block future optimizations in the file
+ // caches. Possible alternatives are cache truncation (invalidate last N) or
+ // invalidation of the whole cache.
+ UniqueRealFiles.erase(Entry);
}