[Lldb-commits] [lldb] [lldb] Add ScriptedSymbolLocator plugin for source file resolution (PR #181334)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 13 22:56:57 PST 2026


================
@@ -1843,6 +1863,12 @@ class Target : public std::enable_shared_from_this<Target>,
   /// signals you will have.
   llvm::StringMap<DummySignalValues> m_dummy_signals;
 
+  // Per-target scripted symbol locator.
+  lldb::ScriptedMetadataSP m_scripted_symbol_locator_metadata_sp;
+  lldb::ScriptedSymbolLocatorInterfaceSP m_scripted_symbol_locator_interface_sp;
+  std::unordered_map<std::string, std::optional<FileSpec>>
----------------
JDevlieghere wrote:

Can this use an `llvm::StringMap`?

https://github.com/llvm/llvm-project/pull/181334


More information about the lldb-commits mailing list