Skip to content

Commit 30cd8d4

Browse files
committed
fix: stop emitting .debug_pubnames and .debug_pubtypes
`.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.
1 parent 9144d51 commit 30cd8d4

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs

+8
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

@@ -878,6 +879,12 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
878879
let split_name = split_name.to_str().unwrap();
879880
let kind = DebugEmissionKind::from_generic(tcx.sess.opts.debuginfo);
880881

882+
let dwarf_version =
883+
tcx.sess.opts.unstable_opts.dwarf_version.unwrap_or(tcx.sess.target.default_dwarf_version);
884+
// Don't emit `.debug_pubnames` and `.debug_pubtypes` on DWARFv4 or lower.
885+
let debug_name_table_kind =
886+
if dwarf_version > 4 { DebugNameTableKind::Default } else { DebugNameTableKind::None };
887+
881888
unsafe {
882889
let compile_unit_file = llvm::LLVMRustDIBuilderCreateFile(
883890
debug_context.builder,
@@ -907,6 +914,7 @@ pub fn build_compile_unit_di_node<'ll, 'tcx>(
907914
kind,
908915
0,
909916
tcx.sess.opts.unstable_opts.split_dwarf_inlining,
917+
debug_name_table_kind,
910918
);
911919

912920
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};
@@ -793,6 +793,15 @@ pub mod debuginfo {
793793
}
794794
}
795795
}
796+
797+
/// LLVMRustDebugNameTableKind
798+
#[derive(Clone, Copy)]
799+
#[repr(C)]
800+
pub enum DebugNameTableKind {
801+
Default,
802+
Gnu,
803+
None,
804+
}
796805
}
797806

798807
use bitflags::bitflags;
@@ -1783,6 +1792,7 @@ extern "C" {
17831792
kind: DebugEmissionKind,
17841793
DWOId: u64,
17851794
SplitDebugInlining: bool,
1795+
DebugNameTableKind: DebugNameTableKind,
17861796
) -> &'a DIDescriptor;
17871797

17881798
pub fn LLVMRustDIBuilderCreateFile<'a>(

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+23-2
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,25 @@ static DICompileUnit::DebugEmissionKind fromRust(LLVMRustDebugEmissionKind Kind)
719719
}
720720
}
721721

722+
enum class LLVMRustDebugNameTableKind {
723+
Default,
724+
GNU,
725+
None,
726+
};
727+
728+
static DICompileUnit::DebugNameTableKind fromRust(LLVMRustDebugNameTableKind Kind) {
729+
switch (Kind) {
730+
case LLVMRustDebugNameTableKind::Default:
731+
return DICompileUnit::DebugNameTableKind::Default;
732+
case LLVMRustDebugNameTableKind::GNU:
733+
return DICompileUnit::DebugNameTableKind::GNU;
734+
case LLVMRustDebugNameTableKind::None:
735+
return DICompileUnit::DebugNameTableKind::None;
736+
default:
737+
report_fatal_error("bad DebugNameTableKind.");
738+
}
739+
}
740+
722741
enum class LLVMRustChecksumKind {
723742
None,
724743
MD5,
@@ -795,13 +814,15 @@ extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateCompileUnit(
795814
const char *Flags, unsigned RuntimeVer,
796815
const char *SplitName, size_t SplitNameLen,
797816
LLVMRustDebugEmissionKind Kind,
798-
uint64_t DWOId, bool SplitDebugInlining) {
817+
uint64_t DWOId, bool SplitDebugInlining,
818+
LLVMRustDebugNameTableKind TableKind) {
799819
auto *File = unwrapDI<DIFile>(FileRef);
800820

801821
return wrap(Builder->createCompileUnit(Lang, File, StringRef(Producer, ProducerLen),
802822
isOptimized, Flags, RuntimeVer,
803823
StringRef(SplitName, SplitNameLen),
804-
fromRust(Kind), DWOId, SplitDebugInlining));
824+
fromRust(Kind), DWOId, SplitDebugInlining,
825+
false, fromRust(TableKind)));
805826
}
806827

807828
extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateFile(

0 commit comments

Comments
 (0)