Skip to content

Commit e2a3c9b

Browse files
committed
Auto merge of #117962 - weihanglo:debug-name-table, r=wesleywiser
fix: stop emitting `.debug_pubnames` and `.debug_pubtypes` A continuation of #94181. Fixes #48762 MCP can be found in <rust-lang/compiler-team#688>. `.debug_pubnames` and `.debug_pubtypes` are poorly designed and people seldom use them. However, they take a considerable portion of size in the final binary. This tells LLVM stop emitting those sections on DWARFv4 or lower. DWARFv5 use `.debug_names` which is more concise in size and performant for name lookup. Some other no-really-useful personal notes: <details><summary>Details</summary> <p> ## Pepole saying they are not useful * #48762 * https://rust-lang.zulipchat.com/#narrow/stream/317568-t-compiler.2Fwg-debugging/topic/investigating.20debuginfo.20size/near/342713604 * `DwarfCompileUnit::hasDwarfPubSections()` — https://github.com/llvm/llvm-project/blob/f633f325a1b808d33ca9653ed373353549ddcde6/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp#L1477-L1494 * clang default to no debug name table when no option provided — https://github.com/llvm/llvm-project/blob/f633f325a1b808d33ca9653ed373353549ddcde6/clang/lib/Frontend/CompilerInvocation.cpp#L1819-L1824 * GCC explicitly says GDB doesn't use pub sections (`TARGET_WANT_DEBUG_PUB_SECTIONS` only be true on Darwin) — https://github.com/gcc-mirror/gcc/blob/5d2a360f0a541646abb11efdbabc33c6a04de7ee/gcc/target.def#L6985-L6990 and https://github.com/bminor/binutils-gdb/blob/319b460545dc79280e2904dcc280057cf71fb753/gold/dwarf_reader.h#L424-L427 * Probably the only place that makes use of pub section in lldb — https://github.com/llvm/llvm-project/blob/725115d7bba2faf3d0c21442f4661dea77b8a77c/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp#L2117-L2135 * "The -gsplit-dwarf option requires -ggnu-pubnames." — https://github.com/gcc-mirror/gcc/blob/5d2a360f0a541646abb11efdbabc33c6a04de7ee/gcc/opts.cc#L1205 * LLVM: Always emit `.debug_names` with dwarf 5 for Apple platforms — https://reviews.llvm.org/D118754 </p> </details>
2 parents 21cce21 + 6aac62c commit e2a3c9b

File tree

5 files changed

+73
-3
lines changed

5 files changed

+73
-3
lines changed

compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs

+14
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ use crate::debuginfo::utils::FatPtrKind;
1717
use crate::llvm;
1818
use crate::llvm::debuginfo::{
1919
DIDescriptor, DIFile, DIFlags, DILexicalBlock, DIScope, DIType, DebugEmissionKind,
20+
DebugNameTableKind,
2021
};
2122
use crate::value::Value;
2223

@@ -38,6 +39,7 @@ use rustc_span::FileName;
3839
use rustc_span::{FileNameDisplayPreference, SourceFile};
3940
use rustc_symbol_mangling::typeid_for_trait_ref;
4041
use rustc_target::abi::{Align, Size};
42+
use rustc_target::spec::DebuginfoKind;
4143
use smallvec::smallvec;
4244

4345
use libc::{c_char, c_longlong, c_uint};
@@ -878,6 +880,17 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
878880
let split_name = split_name.to_str().unwrap();
879881
let kind = DebugEmissionKind::from_generic(tcx.sess.opts.debuginfo);
880882

883+
let dwarf_version =
884+
tcx.sess.opts.unstable_opts.dwarf_version.unwrap_or(tcx.sess.target.default_dwarf_version);
885+
let is_dwarf_kind =
886+
matches!(tcx.sess.target.debuginfo_kind, DebuginfoKind::Dwarf | DebuginfoKind::DwarfDsym);
887+
// Don't emit `.debug_pubnames` and `.debug_pubtypes` on DWARFv4 or lower.
888+
let debug_name_table_kind = if is_dwarf_kind && dwarf_version <= 4 {
889+
DebugNameTableKind::None
890+
} else {
891+
DebugNameTableKind::Default
892+
};
893+
881894
unsafe {
882895
let compile_unit_file = llvm::LLVMRustDIBuilderCreateFile(
883896
debug_context.builder,
@@ -907,6 +920,7 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
907920
kind,
908921
0,
909922
tcx.sess.opts.unstable_opts.split_dwarf_inlining,
923+
debug_name_table_kind,
910924
);
911925

912926
if tcx.sess.opts.unstable_opts.profile {

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use super::debuginfo::{
55
DIArray, DIBasicType, DIBuilder, DICompositeType, DIDerivedType, DIDescriptor, DIEnumerator,
66
DIFile, DIFlags, DIGlobalVariableExpression, DILexicalBlock, DILocation, DINameSpace,
77
DISPFlags, DIScope, DISubprogram, DISubrange, DITemplateTypeParameter, DIType, DIVariable,
8-
DebugEmissionKind,
8+
DebugEmissionKind, DebugNameTableKind,
99
};
1010

1111
use libc::{c_char, c_int, c_uint, size_t};
@@ -794,6 +794,15 @@ pub mod debuginfo {
794794
}
795795
}
796796
}
797+
798+
/// LLVMRustDebugNameTableKind
799+
#[derive(Clone, Copy)]
800+
#[repr(C)]
801+
pub enum DebugNameTableKind {
802+
Default,
803+
Gnu,
804+
None,
805+
}
797806
}
798807

799808
use bitflags::bitflags;
@@ -1812,6 +1821,7 @@ extern "C" {
18121821
kind: DebugEmissionKind,
18131822
DWOId: u64,
18141823
SplitDebugInlining: bool,
1824+
DebugNameTableKind: DebugNameTableKind,
18151825
) -> &'a DIDescriptor;
18161826

18171827
pub fn LLVMRustDIBuilderCreateFile<'a>(

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+23-2
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,25 @@ static DICompileUnit::DebugEmissionKind fromRust(LLVMRustDebugEmissionKind Kind)
697697
}
698698
}
699699

700+
enum class LLVMRustDebugNameTableKind {
701+
Default,
702+
GNU,
703+
None,
704+
};
705+
706+
static DICompileUnit::DebugNameTableKind fromRust(LLVMRustDebugNameTableKind Kind) {
707+
switch (Kind) {
708+
case LLVMRustDebugNameTableKind::Default:
709+
return DICompileUnit::DebugNameTableKind::Default;
710+
case LLVMRustDebugNameTableKind::GNU:
711+
return DICompileUnit::DebugNameTableKind::GNU;
712+
case LLVMRustDebugNameTableKind::None:
713+
return DICompileUnit::DebugNameTableKind::None;
714+
default:
715+
report_fatal_error("bad DebugNameTableKind.");
716+
}
717+
}
718+
700719
enum class LLVMRustChecksumKind {
701720
None,
702721
MD5,
@@ -765,13 +784,15 @@ extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateCompileUnit(
765784
const char *Flags, unsigned RuntimeVer,
766785
const char *SplitName, size_t SplitNameLen,
767786
LLVMRustDebugEmissionKind Kind,
768-
uint64_t DWOId, bool SplitDebugInlining) {
787+
uint64_t DWOId, bool SplitDebugInlining,
788+
LLVMRustDebugNameTableKind TableKind) {
769789
auto *File = unwrapDI<DIFile>(FileRef);
770790

771791
return wrap(Builder->createCompileUnit(Lang, File, StringRef(Producer, ProducerLen),
772792
isOptimized, Flags, RuntimeVer,
773793
StringRef(SplitName, SplitNameLen),
774-
fromRust(Kind), DWOId, SplitDebugInlining));
794+
fromRust(Kind), DWOId, SplitDebugInlining,
795+
false, fromRust(TableKind)));
775796
}
776797

777798
extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateFile(

tests/assembly/dwarf4.rs

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Makes sure that `-Z dwarf-version=4` causes `rustc` to emit DWARF version 4.
2+
// assembly-output: emit-asm
3+
// compile-flags: -g --target x86_64-unknown-linux-gnu -Z dwarf-version=4 -Copt-level=0
4+
// needs-llvm-components: x86
5+
6+
#![feature(no_core, lang_items)]
7+
#![crate_type = "rlib"]
8+
#![no_core]
9+
10+
#[lang = "sized"]
11+
trait Sized {}
12+
#[lang = "copy"]
13+
trait Copy {}
14+
15+
pub fn wibble() {}
16+
17+
pub struct X;
18+
19+
// CHECK: .section .debug_info
20+
// CHECK-NOT: .short 2
21+
// CHECK-NOT: .short 5
22+
// CHECK: .short 4
23+
// CHECK-NOT: .section .debug_pubnames
24+
// CHECK-NOT: .section .debug_pubtypes

tests/assembly/dwarf5.rs

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ pub fn wibble() {}
1818
// CHECK-NOT: .short 2
1919
// CHECK-NOT: .short 4
2020
// CHECK: .short 5
21+
// CHECK: .section .debug_names

0 commit comments

Comments
 (0)