[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
Tue Mar 18 17:56:10 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 found that I have to use yaml file as test case. If I use assembly test, when I use llvm-mc or clang to compile it to object file, the object file will have the current cwd as the directory name. Then this will make the llvm-symbolizer passes this test as well, because https://github.com/llvm/llvm-project/blob/af7c8c475ab97382a466bce8ad2fd091e0e09c1e/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp#L323 condition will always be false when the full path file name is "<dir>/<invalid>".
https://github.com/llvm/llvm-project/pull/128619
More information about the llvm-commits
mailing list