Skip to content

Commit 5a26345

Browse files
committed
[DebugInfo][llvm-dwarfdump] Fix printing of Unit header with DW_UT_partial type
llvm-dwarfdump crashed for Unit header with DW_UT_partial type. ------------- llvm-dwarfdump: /tmp/llvm/include/llvm/ADT/Optional.h:197: T& llvm::optional_detail::OptionalStorage<T, true>::getValue() & [with T = long unsigned int]: Assertion `hasVal' failed. PLEASE submit a bug report to the technical support section of https://developer.amd.com/amd-aocc and include the crash backtrace. Stack dump: 0. Program arguments: llvm-dwarfdump -v /tmp/test/DebugInfo/X86/Output/dwarfdump-he ader.s.tmp.o #0 0x00007f37d5ad8838 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) /tmp/llvm/lib/Support/Unix/Signals.inc:565:0 #1 0x00007f37d5ad88ef PrintStackTraceSignalHandler(void*) /tmp/llvm/lib/Support/Unix/Signals.inc:632:0 #2 0x00007f37d5ad65bd llvm::sys::RunSignalHandlers() /tmp/llvm/lib/Support/Signals.cpp:71:0 #3 0x00007f37d5ad81b9 SignalHandler(int) /tmp/llvm/lib/Support/Unix/Signals.inc:407:0 #4 0x00007f37d4c26040 (/lib/x86_64-linux-gnu/libc.so.6+0x3f040) #5 0x00007f37d4c25fb7 raise /build/glibc-S9d2JN/glibc-2.27/signal/../sysdeps/unix/sysv/linux/raise.c:51:0 #6 0x00007f37d4c27921 abort /build/glibc-S9d2JN/glibc-2.27/stdlib/abort.c:81:0 #7 0x00007f37d4c1748a __assert_fail_base /build/glibc-S9d2JN/glibc-2.27/assert/assert.c:89:0 #8 0x00007f37d4c17502 (/lib/x86_64-linux-gnu/libc.so.6+0x30502) #9 0x00007f37d7576b81 llvm::optional_detail::OptionalStorage<unsigned long, true>::getValue() & /tmp/llvm/include/llvm/ADT/Optional.h:198:0 #10 0x00007f37d75726ac llvm::Optional<unsigned long>::operator*() && /tmp/llvm/include/llvm/ADT/Optional.h:309:0 #11 0x00007f37d7582968 llvm::DWARFCompileUnit::dump(llvm::raw_ostream&, llvm::DIDumpOptions) /tmp/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp:30:0 -------------- Patch by: @jini.susan Reviewed By: @probinson Differential Revision: https://reviews.llvm.org/D101255
1 parent d67f80a commit 5a26345

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ void DWARFCompileUnit::dump(raw_ostream &OS, DIDumpOptions DumpOpts) {
2626
if (!getAbbreviations())
2727
OS << " (invalid)";
2828
OS << ", addr_size = " << format("0x%02x", getAddressByteSize());
29-
if (getVersion() >= 5 && getUnitType() != dwarf::DW_UT_compile)
29+
if (getVersion() >= 5 && (getUnitType() == dwarf::DW_UT_skeleton ||
30+
getUnitType() == dwarf::DW_UT_split_compile))
3031
OS << ", DWO_id = " << format("0x%016" PRIx64, *getDWOId());
3132
OS << " (next unit at " << format("0x%08" PRIx64, getNextUnitOffset())
3233
<< ")\n";

llvm/test/DebugInfo/X86/dwarfdump-header.s

+23
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ dwo_LT_5b:
5959
.byte 0x0e # DW_FORM_strp
6060
.byte 0x00 # EOM(1)
6161
.byte 0x00 # EOM(2)
62+
.byte 0x04 # Abbrev code
63+
.byte 0x3c # DW_TAG_partial_unit
64+
.byte 0x00 # DW_CHILDREN_no
65+
.byte 0x03 # DW_AT_name
66+
.byte 0x0e # DW_FORM_strp
67+
.byte 0x00 # EOM(1)
68+
.byte 0x00 # EOM(2)
6269
.byte 0x00 # EOM(3)
6370

6471
# And a .dwo copy for the .dwo sections.
@@ -128,6 +135,22 @@ CU_5_end:
128135
# CHECK: 0x00000019: Compile Unit: length = 0x00000016, format = DWARF32, version = 0x0005, unit_type = DW_UT_compile, abbr_offset = 0x0000, addr_size = 0x08 (next unit at 0x00000033)
129136
# CHECK: 0x00000025: DW_TAG_compile_unit
130137

138+
# DWARF v5 CU header (Unit Type = DW_UT_partial).
139+
.long CU_5_partial_end-CU_5_partial_version # Length of Unit
140+
CU_5_partial_version:
141+
.short 5 # DWARF version number
142+
.byte 3 # DWARF Unit Type
143+
.byte 8 # Address Size (in bytes)
144+
.long .debug_abbrev # Offset Into Abbrev. Section
145+
# The partial-unit DIE, with DW_AT_name
146+
.byte 4
147+
.long str_CU_5
148+
.byte 0 # NULL
149+
CU_5_partial_end:
150+
151+
# CHECK: 0x00000033: Compile Unit: length = 0x0000000e, format = DWARF32, version = 0x0005, unit_type = DW_UT_partial, abbr_offset = 0x0000, addr_size = 0x08 (next unit at 0x00000045)
152+
# CHECK: 0x0000003f: DW_TAG_partial_unit
153+
131154
.section .debug_info.dwo,"e",@progbits
132155
# CHECK-LABEL: .debug_info.dwo
133156

0 commit comments

Comments
 (0)