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

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 09:16:25 PST 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
----------------
MaskRay wrote:

Perhaps use an assembly test (reduced from `clang -S`, with post modification) which has better readability

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


More information about the llvm-commits mailing list