Skip to content

Commit a5d624d

Browse files
committed
Generate DWARF address ranges for faster lookups
This adds a new option `-Zgenerate-arange-section`, enabled by default, corresponding to LLVM's `-generate-arange-section`. This creates a `.debug_aranges` section with DWARF address ranges, which some tools depend on to optimize address lookups (elfutils [22288], [25173]). This only has effect when debuginfo is enabled, and the additional data is small compared to the other debug sections. For example, libstd.so with full debuginfo is about 11MB, with just 61kB in aranges. [22288]: https://sourceware.org/bugzilla/show_bug.cgi?id=22288 [25173]: https://sourceware.org/bugzilla/show_bug.cgi?id=25173 Closes #45246.
1 parent a0d40f8 commit a5d624d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1331,6 +1331,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
13311331
"for every macro invocation, print its name and arguments"),
13321332
debug_macros: bool = (false, parse_bool, [TRACKED],
13331333
"emit line numbers debug info inside macros"),
1334+
generate_arange_section: bool = (true, parse_bool, [UNTRACKED],
1335+
"generate DWARF address ranges for faster lookups"),
13341336
keep_hygiene_data: bool = (false, parse_bool, [UNTRACKED],
13351337
"don't clear the hygiene data after analysis"),
13361338
keep_ast: bool = (false, parse_bool, [UNTRACKED],

src/librustc_codegen_llvm/llvm_util.rs

+3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ unsafe fn configure_llvm(sess: &Session) {
6262
if sess.opts.debugging_opts.disable_instrumentation_preinliner {
6363
add("-disable-preinline");
6464
}
65+
if sess.opts.debugging_opts.generate_arange_section {
66+
add("-generate-arange-section");
67+
}
6568
if get_major_version() >= 8 {
6669
match sess.opts.debugging_opts.merge_functions
6770
.unwrap_or(sess.target.target.options.merge_functions) {

0 commit comments

Comments
 (0)