Skip to content

Commit ab4ea96

Browse files
authored
Unrolled build for rust-lang#135314
Rollup merge of rust-lang#135314 - compiler-errors:eagerly-mono-closures, r=wesleywiser Eagerly collect mono items for non-generic closures This allows users to use `-Zprint-mono-items=eager` to eagerly monomorphize closures and coroutine bodies, in case they want to inspect the LLVM or ASM for those items. `-Zprint-mono-items`, which used to be called `-Zprint-trans-items`, was originally added in rust-lang#30900: > Eager mode is meant to be used in conjunction with incremental compilation > where a stable set of translation items is more important than a minimal > one. Thus, eager mode will instantiate drop-glue for every drop-able type > in the crate, even of no drop call for that type exists (yet). It will > also instantiate default implementations of trait methods, something that > otherwise is only done on demand. Although it remains an unstable option, its purpose has somewhat expanded since then, and as far as I can tell it's generally useful for cases when you want to monomorphize as many items as possible, even if they're unreachable. Specifically, it's useful for debugging since you can look at the codegen'd body of a function, since we don't emit items that are not reachable in monomorphization. And even more specifically, it would be very to monomorphize the coroutine body of an async fn, since those you can't easily call those without a runtime. This PR enables this usecase since we now monomorphize `DefKind::Closure`.
2 parents fb65a3e + 6431504 commit ab4ea96

File tree

5 files changed

+60
-3
lines changed

5 files changed

+60
-3
lines changed

compiler/rustc_middle/src/hir/map/mod.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,7 @@ pub(super) fn hir_module_items(tcx: TyCtxt<'_>, module_id: LocalModDefId) -> Mod
12461246
foreign_items,
12471247
body_owners,
12481248
opaques,
1249+
nested_bodies,
12491250
..
12501251
} = collector;
12511252
ModuleItems {
@@ -1256,6 +1257,7 @@ pub(super) fn hir_module_items(tcx: TyCtxt<'_>, module_id: LocalModDefId) -> Mod
12561257
foreign_items: foreign_items.into_boxed_slice(),
12571258
body_owners: body_owners.into_boxed_slice(),
12581259
opaques: opaques.into_boxed_slice(),
1260+
nested_bodies: nested_bodies.into_boxed_slice(),
12591261
}
12601262
}
12611263

@@ -1276,6 +1278,7 @@ pub(crate) fn hir_crate_items(tcx: TyCtxt<'_>, _: ()) -> ModuleItems {
12761278
foreign_items,
12771279
body_owners,
12781280
opaques,
1281+
nested_bodies,
12791282
..
12801283
} = collector;
12811284

@@ -1287,6 +1290,7 @@ pub(crate) fn hir_crate_items(tcx: TyCtxt<'_>, _: ()) -> ModuleItems {
12871290
foreign_items: foreign_items.into_boxed_slice(),
12881291
body_owners: body_owners.into_boxed_slice(),
12891292
opaques: opaques.into_boxed_slice(),
1293+
nested_bodies: nested_bodies.into_boxed_slice(),
12901294
}
12911295
}
12921296

@@ -1302,6 +1306,7 @@ struct ItemCollector<'tcx> {
13021306
foreign_items: Vec<ForeignItemId>,
13031307
body_owners: Vec<LocalDefId>,
13041308
opaques: Vec<LocalDefId>,
1309+
nested_bodies: Vec<LocalDefId>,
13051310
}
13061311

13071312
impl<'tcx> ItemCollector<'tcx> {
@@ -1316,6 +1321,7 @@ impl<'tcx> ItemCollector<'tcx> {
13161321
foreign_items: Vec::default(),
13171322
body_owners: Vec::default(),
13181323
opaques: Vec::default(),
1324+
nested_bodies: Vec::default(),
13191325
}
13201326
}
13211327
}
@@ -1358,6 +1364,7 @@ impl<'hir> Visitor<'hir> for ItemCollector<'hir> {
13581364

13591365
fn visit_inline_const(&mut self, c: &'hir ConstBlock) {
13601366
self.body_owners.push(c.def_id);
1367+
self.nested_bodies.push(c.def_id);
13611368
intravisit::walk_inline_const(self, c)
13621369
}
13631370

@@ -1369,6 +1376,7 @@ impl<'hir> Visitor<'hir> for ItemCollector<'hir> {
13691376
fn visit_expr(&mut self, ex: &'hir Expr<'hir>) {
13701377
if let ExprKind::Closure(closure) = ex.kind {
13711378
self.body_owners.push(closure.def_id);
1379+
self.nested_bodies.push(closure.def_id);
13721380
}
13731381
intravisit::walk_expr(self, ex)
13741382
}

compiler/rustc_middle/src/hir/mod.rs

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ pub struct ModuleItems {
3030
foreign_items: Box<[ForeignItemId]>,
3131
opaques: Box<[LocalDefId]>,
3232
body_owners: Box<[LocalDefId]>,
33+
nested_bodies: Box<[LocalDefId]>,
3334
}
3435

3536
impl ModuleItems {
@@ -70,6 +71,10 @@ impl ModuleItems {
7071
self.opaques.iter().copied()
7172
}
7273

74+
pub fn nested_bodies(&self) -> impl Iterator<Item = LocalDefId> + '_ {
75+
self.nested_bodies.iter().copied()
76+
}
77+
7378
pub fn definitions(&self) -> impl Iterator<Item = LocalDefId> + '_ {
7479
self.owners().map(|id| id.def_id)
7580
}

compiler/rustc_monomorphize/src/collector.rs

+31
Original file line numberDiff line numberDiff line change
@@ -1377,6 +1377,10 @@ fn collect_roots(tcx: TyCtxt<'_>, mode: MonoItemCollectionStrategy) -> Vec<MonoI
13771377
collector.process_impl_item(id);
13781378
}
13791379

1380+
for id in crate_items.nested_bodies() {
1381+
collector.process_nested_body(id);
1382+
}
1383+
13801384
collector.push_extra_entry_roots();
13811385
}
13821386

@@ -1459,6 +1463,33 @@ impl<'v> RootCollector<'_, 'v> {
14591463
}
14601464
}
14611465

1466+
fn process_nested_body(&mut self, def_id: LocalDefId) {
1467+
match self.tcx.def_kind(def_id) {
1468+
DefKind::Closure => {
1469+
if self.strategy == MonoItemCollectionStrategy::Eager
1470+
&& !self
1471+
.tcx
1472+
.generics_of(self.tcx.typeck_root_def_id(def_id.to_def_id()))
1473+
.requires_monomorphization(self.tcx)
1474+
{
1475+
let instance = match *self.tcx.type_of(def_id).instantiate_identity().kind() {
1476+
ty::Closure(def_id, args)
1477+
| ty::Coroutine(def_id, args)
1478+
| ty::CoroutineClosure(def_id, args) => {
1479+
Instance::new(def_id, self.tcx.erase_regions(args))
1480+
}
1481+
_ => unreachable!(),
1482+
};
1483+
let mono_item = create_fn_mono_item(self.tcx, instance, DUMMY_SP);
1484+
if mono_item.node.is_instantiable(self.tcx) {
1485+
self.output.push(mono_item);
1486+
}
1487+
}
1488+
}
1489+
_ => {}
1490+
}
1491+
}
1492+
14621493
fn is_root(&self, def_id: LocalDefId) -> bool {
14631494
!self.tcx.generics_of(def_id).requires_monomorphization(self.tcx)
14641495
&& match self.strategy {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//@ edition: 2021
2+
//@ compile-flags: -Zprint-mono-items=eager --crate-type=lib
3+
4+
//~ MONO_ITEM fn async_fn @@
5+
//~ MONO_ITEM fn async_fn::{closure#0} @@
6+
pub async fn async_fn() {}
7+
8+
//~ MONO_ITEM fn closure @@
9+
//~ MONO_ITEM fn closure::{closure#0} @@
10+
pub fn closure() {
11+
let _ = || {};
12+
}

tests/codegen-units/item-collection/non-generic-closures.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ fn temporary() {
1313

1414
//~ MONO_ITEM fn assigned_to_variable_but_not_executed @@ non_generic_closures-cgu.0[Internal]
1515
fn assigned_to_variable_but_not_executed() {
16+
//~ MONO_ITEM fn assigned_to_variable_but_not_executed::{closure#0}
1617
let _x = |a: i16| {
1718
let _ = a + 1;
1819
};
@@ -21,9 +22,9 @@ fn assigned_to_variable_but_not_executed() {
2122
//~ MONO_ITEM fn assigned_to_variable_executed_indirectly @@ non_generic_closures-cgu.0[Internal]
2223
fn assigned_to_variable_executed_indirectly() {
2324
//~ MONO_ITEM fn assigned_to_variable_executed_indirectly::{closure#0} @@ non_generic_closures-cgu.0[Internal]
24-
//~ MONO_ITEM fn <{closure@TEST_PATH:27:13: 27:21} as std::ops::FnOnce<(i32,)>>::call_once - shim @@ non_generic_closures-cgu.0[Internal]
25-
//~ MONO_ITEM fn <{closure@TEST_PATH:27:13: 27:21} as std::ops::FnOnce<(i32,)>>::call_once - shim(vtable) @@ non_generic_closures-cgu.0[Internal]
26-
//~ MONO_ITEM fn std::ptr::drop_in_place::<{closure@TEST_PATH:27:13: 27:21}> - shim(None) @@ non_generic_closures-cgu.0[Internal]
25+
//~ MONO_ITEM fn <{closure@TEST_PATH:28:13: 28:21} as std::ops::FnOnce<(i32,)>>::call_once - shim @@ non_generic_closures-cgu.0[Internal]
26+
//~ MONO_ITEM fn <{closure@TEST_PATH:28:13: 28:21} as std::ops::FnOnce<(i32,)>>::call_once - shim(vtable) @@ non_generic_closures-cgu.0[Internal]
27+
//~ MONO_ITEM fn std::ptr::drop_in_place::<{closure@TEST_PATH:28:13: 28:21}> - shim(None) @@ non_generic_closures-cgu.0[Internal]
2728
let f = |a: i32| {
2829
let _ = a + 2;
2930
};

0 commit comments

Comments
 (0)