[Lldb-commits] [lldb] Add locate time and all symbol file path for each module in statistics (PR #134563)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 9 15:18:24 PDT 2025
================
@@ -355,6 +355,8 @@ class SymbolFile : public PluginInterface {
virtual const ObjectFile *GetObjectFile() const = 0;
virtual ObjectFile *GetMainObjectFile() = 0;
+ virtual std::vector<ObjectFile *> GetAllObjectFiles();
+
----------------
clayborg wrote:
This call should be in `lldb_private::Module` as that is the class that can be represented by one or more objects files: 1 for the executaable and optionally another one for the symbol file.
https://github.com/llvm/llvm-project/pull/134563
More information about the lldb-commits
mailing list