Skip to content

Commit bef6ff6

Browse files
committed
Auto merge of #113684 - nnethercote:streamline-size-estimates, r=<try>
Streamline size estimates Makes things nicer and a tiny bit faster. r? `@wesleywiser`
2 parents ad96323 + f4c4602 commit bef6ff6

File tree

8 files changed

+85
-97
lines changed

8 files changed

+85
-97
lines changed

compiler/rustc_codegen_cranelift/src/driver/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! [`codegen_static`]: crate::constant::codegen_static
66
77
use rustc_data_structures::profiling::SelfProfilerRef;
8-
use rustc_middle::mir::mono::{Linkage as RLinkage, MonoItem, Visibility};
8+
use rustc_middle::mir::mono::{MonoItem, MonoItemData};
99

1010
use crate::prelude::*;
1111

@@ -16,11 +16,11 @@ pub(crate) mod jit;
1616
fn predefine_mono_items<'tcx>(
1717
tcx: TyCtxt<'tcx>,
1818
module: &mut dyn Module,
19-
mono_items: &[(MonoItem<'tcx>, (RLinkage, Visibility))],
19+
mono_items: &[(MonoItem<'tcx>, MonoItemData)],
2020
) {
2121
tcx.prof.generic_activity("predefine functions").run(|| {
2222
let is_compiler_builtins = tcx.is_compiler_builtins(LOCAL_CRATE);
23-
for &(mono_item, (linkage, visibility)) in mono_items {
23+
for &(mono_item, data) in mono_items {
2424
match mono_item {
2525
MonoItem::Fn(instance) => {
2626
let name = tcx.symbol_name(instance).name;
@@ -29,8 +29,8 @@ fn predefine_mono_items<'tcx>(
2929
get_function_sig(tcx, module.target_config().default_call_conv, instance);
3030
let linkage = crate::linkage::get_clif_linkage(
3131
mono_item,
32-
linkage,
33-
visibility,
32+
data.linkage,
33+
data.visibility,
3434
is_compiler_builtins,
3535
);
3636
module.declare_function(name, linkage, &sig).unwrap();

compiler/rustc_codegen_gcc/src/base.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ pub fn compile_codegen_unit(tcx: TyCtxt<'_>, cgu_name: Symbol, supports_128bit_i
159159
let cx = CodegenCx::new(&context, cgu, tcx, supports_128bit_integers);
160160

161161
let mono_items = cgu.items_in_deterministic_order(tcx);
162-
for &(mono_item, (linkage, visibility)) in &mono_items {
163-
mono_item.predefine::<Builder<'_, '_, '_>>(&cx, linkage, visibility);
162+
for &(mono_item, data) in &mono_items {
163+
mono_item.predefine::<Builder<'_, '_, '_>>(&cx, data.linkage, data.visibility);
164164
}
165165

166166
// ... and now that we have everything pre-defined, fill out those definitions.

compiler/rustc_codegen_llvm/src/base.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ pub fn compile_codegen_unit(tcx: TyCtxt<'_>, cgu_name: Symbol) -> (ModuleCodegen
8686
{
8787
let cx = CodegenCx::new(tcx, cgu, &llvm_module);
8888
let mono_items = cx.codegen_unit.items_in_deterministic_order(cx.tcx);
89-
for &(mono_item, (linkage, visibility)) in &mono_items {
90-
mono_item.predefine::<Builder<'_, '_, '_>>(&cx, linkage, visibility);
89+
for &(mono_item, data) in &mono_items {
90+
mono_item.predefine::<Builder<'_, '_, '_>>(&cx, data.linkage, data.visibility);
9191
}
9292

9393
// ... and now that we have everything pre-defined, fill out those definitions.

compiler/rustc_codegen_ssa/src/back/symbol_export.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -328,14 +328,14 @@ fn exported_symbols_provider_local(
328328

329329
let (_, cgus) = tcx.collect_and_partition_mono_items(());
330330

331-
for (mono_item, &(linkage, visibility)) in cgus.iter().flat_map(|cgu| cgu.items().iter()) {
332-
if linkage != Linkage::External {
331+
for (mono_item, data) in cgus.iter().flat_map(|cgu| cgu.items().iter()) {
332+
if data.linkage != Linkage::External {
333333
// We can only re-use things with external linkage, otherwise
334334
// we'll get a linker error
335335
continue;
336336
}
337337

338-
if need_visibility && visibility == Visibility::Hidden {
338+
if need_visibility && data.visibility == Visibility::Hidden {
339339
// If we potentially share things from Rust dylibs, they must
340340
// not be hidden
341341
continue;

compiler/rustc_middle/src/mir/mono.rs

+30-15
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,19 @@ impl<'tcx> MonoItem<'tcx> {
5959
pub fn size_estimate(&self, tcx: TyCtxt<'tcx>) -> usize {
6060
match *self {
6161
MonoItem::Fn(instance) => {
62-
// Estimate the size of a function based on how many statements
63-
// it contains.
64-
tcx.instance_def_size_estimate(instance.def)
62+
match instance.def {
63+
// "Normal" functions size estimate: the number of
64+
// statements, plus one for the terminator.
65+
InstanceDef::Item(..) | InstanceDef::DropGlue(..) => {
66+
let mir = tcx.instance_mir(instance.def);
67+
mir.basic_blocks.iter().map(|bb| bb.statements.len() + 1).sum()
68+
}
69+
// Other compiler-generated shims size estimate: 1
70+
_ => 1,
71+
}
6572
}
66-
// Conservatively estimate the size of a static declaration
67-
// or assembly to be 1.
73+
// Conservatively estimate the size of a static declaration or
74+
// assembly item to be 1.
6875
MonoItem::Static(_) | MonoItem::GlobalAsm(_) => 1,
6976
}
7077
}
@@ -230,14 +237,22 @@ pub struct CodegenUnit<'tcx> {
230237
/// contain something unique to this crate (e.g., a module path)
231238
/// as well as the crate name and disambiguator.
232239
name: Symbol,
233-
items: FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)>,
240+
items: FxHashMap<MonoItem<'tcx>, MonoItemData>,
234241
size_estimate: usize,
235242
primary: bool,
236243
/// True if this is CGU is used to hold code coverage information for dead code,
237244
/// false otherwise.
238245
is_code_coverage_dead_code_cgu: bool,
239246
}
240247

248+
/// Auxiliary info about a `MonoItem`.
249+
#[derive(Copy, Clone, PartialEq, Debug, HashStable)]
250+
pub struct MonoItemData {
251+
pub linkage: Linkage,
252+
pub visibility: Visibility,
253+
pub size_estimate: usize,
254+
}
255+
241256
/// Specifies the linkage type for a `MonoItem`.
242257
///
243258
/// See <https://llvm.org/docs/LangRef.html#linkage-types> for more details about these variants.
@@ -292,12 +307,12 @@ impl<'tcx> CodegenUnit<'tcx> {
292307
}
293308

294309
/// The order of these items is non-determinstic.
295-
pub fn items(&self) -> &FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)> {
310+
pub fn items(&self) -> &FxHashMap<MonoItem<'tcx>, MonoItemData> {
296311
&self.items
297312
}
298313

299314
/// The order of these items is non-determinstic.
300-
pub fn items_mut(&mut self) -> &mut FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)> {
315+
pub fn items_mut(&mut self) -> &mut FxHashMap<MonoItem<'tcx>, MonoItemData> {
301316
&mut self.items
302317
}
303318

@@ -320,16 +335,16 @@ impl<'tcx> CodegenUnit<'tcx> {
320335
base_n::encode(hash, base_n::CASE_INSENSITIVE)
321336
}
322337

323-
pub fn compute_size_estimate(&mut self, tcx: TyCtxt<'tcx>) {
324-
// Estimate the size of a codegen unit as (approximately) the number of MIR
325-
// statements it corresponds to.
326-
self.size_estimate = self.items.keys().map(|mi| mi.size_estimate(tcx)).sum();
338+
pub fn compute_size_estimate(&mut self) {
339+
// The size of a codegen unit as the sum of the sizes of the items
340+
// within it.
341+
self.size_estimate = self.items.values().map(|data| data.size_estimate).sum();
327342
}
328343

329-
#[inline]
330344
/// Should only be called if [`compute_size_estimate`] has previously been called.
331345
///
332346
/// [`compute_size_estimate`]: Self::compute_size_estimate
347+
#[inline]
333348
pub fn size_estimate(&self) -> usize {
334349
// Items are never zero-sized, so if we have items the estimate must be
335350
// non-zero, unless we forgot to call `compute_size_estimate` first.
@@ -355,7 +370,7 @@ impl<'tcx> CodegenUnit<'tcx> {
355370
pub fn items_in_deterministic_order(
356371
&self,
357372
tcx: TyCtxt<'tcx>,
358-
) -> Vec<(MonoItem<'tcx>, (Linkage, Visibility))> {
373+
) -> Vec<(MonoItem<'tcx>, MonoItemData)> {
359374
// The codegen tests rely on items being process in the same order as
360375
// they appear in the file, so for local items, we sort by node_id first
361376
#[derive(PartialEq, Eq, PartialOrd, Ord)]
@@ -390,7 +405,7 @@ impl<'tcx> CodegenUnit<'tcx> {
390405
)
391406
}
392407

393-
let mut items: Vec<_> = self.items().iter().map(|(&i, &l)| (i, l)).collect();
408+
let mut items: Vec<_> = self.items().iter().map(|(&i, &data)| (i, data)).collect();
394409
items.sort_by_cached_key(|&(i, _)| item_sort_key(tcx, i));
395410
items
396411
}

compiler/rustc_middle/src/query/mod.rs

-6
Original file line numberDiff line numberDiff line change
@@ -2080,12 +2080,6 @@ rustc_queries! {
20802080
desc { "looking up supported target features" }
20812081
}
20822082

2083-
/// Get an estimate of the size of an InstanceDef based on its MIR for CGU partitioning.
2084-
query instance_def_size_estimate(def: ty::InstanceDef<'tcx>)
2085-
-> usize {
2086-
desc { |tcx| "estimating size for `{}`", tcx.def_path_str(def.def_id()) }
2087-
}
2088-
20892083
query features_query(_: ()) -> &'tcx rustc_feature::Features {
20902084
feedable
20912085
desc { "looking up enabled feature gates" }

0 commit comments

Comments
 (0)