[Lldb-commits] [PATCH] D120948: Disable LLDB index cache for .o files with no UUID.
jeffrey tan via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 3 22:02:11 PST 2022
yinghuitan added inline comments.
================
Comment at: lldb/include/lldb/Core/DataFileCache.h:127
+ /// unique idenifier like the UUID being valid.
+ bool IsValid() const { return m_uuid.hasValue(); }
----------------
yinghuitan wrote:
> Do we plan to ship with this design (no caching for module .o file without uuid)? If so, I wonder if we should emit reason information for module not loaded from cache (like signature mismatch/changed vs uuid unavailable)?
I mean emit not-load-from-cache reason in "statistics dump".
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120948/new/
https://reviews.llvm.org/D120948
More information about the lldb-commits
mailing list