[llvm] [Symbolize] Always use filename:line from debug info when debug info for the given address is available. (PR #128619)

Zequan Wu via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 21:13:30 PDT 2025


================
@@ -0,0 +1,175 @@
+# Test llvm-symbolizer always uses line info from debug info if present.
+# RUN: yaml2obj %s -o %t
+# RUN: llvm-symbolizer --obj=%t 0x1 | FileCheck %s
+
+# CHECK:      foo(bool)
+# CHECK-NEXT: ??:0:0
+
+--- !ELF
+FileHeader:
+  Class:           ELFCLASS64
+  Data:            ELFDATA2LSB
+  Type:            ET_REL
+  Machine:         EM_X86_64
+  SectionHeaderStringTable: .strtab
+Sections:
+  - Name:            .text
+    Type:            SHT_PROGBITS
+    Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
+    AddressAlign:    0x10
+    Content:         50E80000000031C059C3
+  - Name:            .debug_abbrev
+    Type:            SHT_PROGBITS
+    AddressAlign:    0x1
+    Content:         01110025251305032572171017111B12067317000000
----------------
ZequanWu wrote:

I came up with an example using https://github.com/llvm/llvm-project/pull/124846.

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


More information about the llvm-commits mailing list