[clang] [llvm] [clang][deps] Cache `VFS::getRealPath()` (PR #68645)
Ben Langmuir via cfe-commits
cfe-commits at lists.llvm.org
Thu Apr 11 09:46:03 PDT 2024
================
@@ -230,6 +251,26 @@ class DependencyScanningFilesystemLocalCache {
assert(InsertedEntry == &Entry && "entry already present");
return *InsertedEntry;
}
+
+ /// Returns real path associated with the filename or nullptr if none is
+ /// found.
+ const CachedRealPath *findRealPathByFilename(StringRef Filename) const {
+ assert(llvm::sys::path::is_absolute_gnu(Filename));
+ auto It = RealPathCache.find(Filename);
+ return It == RealPathCache.end() ? nullptr : It->getValue();
+ }
+
+ /// Associates the given real path with the filename and returns the given
+ /// entry pointer (for convenience).
+ const CachedRealPath &
+ insertRealPathForFilename(StringRef Filename,
+ const CachedRealPath &RealPath) {
----------------
benlangmuir wrote:
Okay, I'm okay with being consistent for now, but I think it's a bad pattern in general to pass around `const X &` and keep a pointer to it.
https://github.com/llvm/llvm-project/pull/68645
More information about the cfe-commits
mailing list