[Lldb-commits] [lldb] [DRAFT] [lldb][Expression] Encode Module and DIE UIDs into function AsmLabels (PR #148877)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Sat Jul 19 15:36:12 PDT 2025


================
@@ -96,6 +96,41 @@ class Expression {
                                  ///invalid.
 };
 
+/// Holds parsed information about a function call label that
+/// LLDB attaches as an AsmLabel to function AST nodes it parses
+/// from debug-info.
+///
+/// The format being:
+///
+///   <prefix>:<mangled name>:<module id>:<DIE id>
+///
+/// The label string needs to stay valid for the entire lifetime
+/// of this object.
+struct FunctionCallLabel {
+  /// Mostly for debuggability.
+  llvm::StringRef m_pubname;
+
+  lldb::user_id_t m_die_id;
----------------
Michael137 wrote:

Technically we could just encode the mangled name and module ID. Since we're just doing a mangled name lookup within the module anyway.

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


More information about the lldb-commits mailing list