]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_monomorphize/src/collector.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / compiler / rustc_monomorphize / src / collector.rs
CommitLineData
ff7c6d11 1//! Mono Item Collection
60c5eb7d 2//! ====================
7453a54e 3//!
f035d41b 4//! This module is responsible for discovering all items that will contribute
7453a54e
SL
5//! to code generation of the crate. The important part here is that it not only
6//! needs to find syntax-level items (functions, structs, etc) but also all
7//! their monomorphized instantiations. Every non-generic, non-const function
8//! maps to one LLVM artifact. Every generic function can produce
9//! from zero to N artifacts, depending on the sets of type arguments it
10//! is instantiated with.
11//! This also applies to generic items from other crates: A generic definition
12//! in crate X might produce monomorphizations that are compiled into crate Y.
13//! We also have to collect these here.
14//!
ff7c6d11 15//! The following kinds of "mono items" are handled here:
7453a54e
SL
16//!
17//! - Functions
18//! - Methods
19//! - Closures
20//! - Statics
21//! - Drop glue
22//!
23//! The following things also result in LLVM artifacts, but are not collected
24//! here, since we instantiate them locally on demand when needed in a given
25//! codegen unit:
26//!
27//! - Constants
28//! - Vtables
29//! - Object Shims
30//!
31//!
32//! General Algorithm
33//! -----------------
34//! Let's define some terms first:
35//!
ff7c6d11
XL
36//! - A "mono item" is something that results in a function or global in
37//! the LLVM IR of a codegen unit. Mono items do not stand on their
38//! own, they can reference other mono items. For example, if function
39//! `foo()` calls function `bar()` then the mono item for `foo()`
40//! references the mono item for function `bar()`. In general, the
41//! definition for mono item A referencing a mono item B is that
7453a54e
SL
42//! the LLVM artifact produced for A references the LLVM artifact produced
43//! for B.
44//!
ff7c6d11
XL
45//! - Mono items and the references between them form a directed graph,
46//! where the mono items are the nodes and references form the edges.
47//! Let's call this graph the "mono item graph".
7453a54e 48//!
ff7c6d11 49//! - The mono item graph for a program contains all mono items
7453a54e
SL
50//! that are needed in order to produce the complete LLVM IR of the program.
51//!
52//! The purpose of the algorithm implemented in this module is to build the
ff7c6d11 53//! mono item graph for the current crate. It runs in two phases:
7453a54e
SL
54//!
55//! 1. Discover the roots of the graph by traversing the HIR of the crate.
56//! 2. Starting from the roots, find neighboring nodes by inspecting the MIR
57//! representation of the item corresponding to a given node, until no more
58//! new nodes are found.
59//!
60//! ### Discovering roots
61//!
cdc7bbd5 62//! The roots of the mono item graph correspond to the public non-generic
7453a54e 63//! syntactic items in the source code. We find them by walking the HIR of the
cdc7bbd5
XL
64//! crate, and whenever we hit upon a public function, method, or static item,
65//! we create a mono item consisting of the items DefId and, since we only
66//! consider non-generic items, an empty type-substitution set. (In eager
67//! collection mode, during incremental compilation, all non-generic functions
68//! are considered as roots, as well as when the `-Clink-dead-code` option is
69//! specified. Functions marked `#[no_mangle]` and functions called by inlinable
70//! functions also always act as roots.)
7453a54e
SL
71//!
72//! ### Finding neighbor nodes
ff7c6d11 73//! Given a mono item node, we can discover neighbors by inspecting its
7453a54e 74//! MIR. We walk the MIR and any time we hit upon something that signifies a
ff7c6d11
XL
75//! reference to another mono item, we have found a neighbor. Since the
76//! mono item we are currently at is always monomorphic, we also know the
7453a54e
SL
77//! concrete type arguments of its neighbors, and so all neighbors again will be
78//! monomorphic. The specific forms a reference to a neighboring node can take
79//! in MIR are quite diverse. Here is an overview:
80//!
81//! #### Calling Functions/Methods
ff7c6d11 82//! The most obvious form of one mono item referencing another is a
7453a54e
SL
83//! function or method call (represented by a CALL terminator in MIR). But
84//! calls are not the only thing that might introduce a reference between two
ff7c6d11 85//! function mono items, and as we will see below, they are just a
f035d41b 86//! specialization of the form described next, and consequently will not get any
7453a54e
SL
87//! special treatment in the algorithm.
88//!
89//! #### Taking a reference to a function or method
90//! A function does not need to actually be called in order to be a neighbor of
91//! another function. It suffices to just take a reference in order to introduce
92//! an edge. Consider the following example:
93//!
04454e1e
FG
94//! ```
95//! # use core::fmt::Display;
7453a54e
SL
96//! fn print_val<T: Display>(x: T) {
97//! println!("{}", x);
98//! }
99//!
04454e1e 100//! fn call_fn(f: &dyn Fn(i32), x: i32) {
7453a54e
SL
101//! f(x);
102//! }
103//!
104//! fn main() {
105//! let print_i32 = print_val::<i32>;
106//! call_fn(&print_i32, 0);
107//! }
108//! ```
109//! The MIR of none of these functions will contain an explicit call to
ff7c6d11 110//! `print_val::<i32>`. Nonetheless, in order to mono this program, we need
7453a54e
SL
111//! an instance of this function. Thus, whenever we encounter a function or
112//! method in operand position, we treat it as a neighbor of the current
ff7c6d11 113//! mono item. Calls are just a special case of that.
7453a54e
SL
114//!
115//! #### Closures
116//! In a way, closures are a simple case. Since every closure object needs to be
117//! constructed somewhere, we can reliably discover them by observing
118//! `RValue::Aggregate` expressions with `AggregateKind::Closure`. This is also
119//! true for closures inlined from other crates.
120//!
121//! #### Drop glue
ff7c6d11
XL
122//! Drop glue mono items are introduced by MIR drop-statements. The
123//! generated mono item will again have drop-glue item neighbors if the
7453a54e
SL
124//! type to be dropped contains nested values that also need to be dropped. It
125//! might also have a function item neighbor for the explicit `Drop::drop`
126//! implementation of its type.
127//!
128//! #### Unsizing Casts
129//! A subtle way of introducing neighbor edges is by casting to a trait object.
130//! Since the resulting fat-pointer contains a reference to a vtable, we need to
131//! instantiate all object-save methods of the trait, as we need to store
132//! pointers to these functions even if they never get called anywhere. This can
133//! be seen as a special case of taking a function reference.
134//!
135//! #### Boxes
136//! Since `Box` expression have special compiler support, no explicit calls to
0731742a 137//! `exchange_malloc()` and `box_free()` may show up in MIR, even if the
7453a54e
SL
138//! compiler will generate them. We have to observe `Rvalue::Box` expressions
139//! and Box-typed drop-statements for that purpose.
140//!
141//!
142//! Interaction with Cross-Crate Inlining
143//! -------------------------------------
144//! The binary of a crate will not only contain machine code for the items
145//! defined in the source code of that crate. It will also contain monomorphic
146//! instantiations of any extern generic functions and of functions marked with
ff7c6d11
XL
147//! `#[inline]`.
148//! The collection algorithm handles this more or less mono. If it is
149//! about to create a mono item for something with an external `DefId`,
7453a54e 150//! it will take a look if the MIR for that item is available, and if so just
9e0c209e 151//! proceed normally. If the MIR is not available, it assumes that the item is
7453a54e
SL
152//! just linked to and no node is created; which is exactly what we want, since
153//! no machine code should be generated in the current crate for such an item.
154//!
155//! Eager and Lazy Collection Mode
156//! ------------------------------
ff7c6d11 157//! Mono item collection can be performed in one of two modes:
7453a54e
SL
158//!
159//! - Lazy mode means that items will only be instantiated when actually
160//! referenced. The goal is to produce the least amount of machine code
161//! possible.
162//!
163//! - Eager mode is meant to be used in conjunction with incremental compilation
ff7c6d11 164//! where a stable set of mono items is more important than a minimal
7453a54e 165//! one. Thus, eager mode will instantiate drop-glue for every drop-able type
f035d41b 166//! in the crate, even if no drop call for that type exists (yet). It will
7453a54e
SL
167//! also instantiate default implementations of trait methods, something that
168//! otherwise is only done on demand.
169//!
170//!
171//! Open Issues
172//! -----------
173//! Some things are not yet fully implemented in the current version of this
174//! module.
175//!
7453a54e 176//! ### Const Fns
ff7c6d11 177//! Ideally, no mono item should be generated for const fns unless there
7453a54e 178//! is a call to them that cannot be evaluated at compile time. At the moment
ff7c6d11 179//! this is not implemented however: a mono item will be produced
7453a54e
SL
180//! regardless of whether it is actually needed or not.
181
dfeec247
XL
182use rustc_data_structures::fx::{FxHashMap, FxHashSet};
183use rustc_data_structures::sync::{par_iter, MTLock, MTRef, ParallelIterator};
184use rustc_hir as hir;
04454e1e
FG
185use rustc_hir::def::DefKind;
186use rustc_hir::def_id::{DefId, DefIdMap, LocalDefId};
3dfed10e 187use rustc_hir::lang_items::LangItem;
e74abb32 188use rustc_index::bit_set::GrowableBitSet;
ba9703b0
XL
189use rustc_middle::mir::interpret::{AllocId, ConstValue};
190use rustc_middle::mir::interpret::{ErrorHandled, GlobalAlloc, Scalar};
191use rustc_middle::mir::mono::{InstantiationMode, MonoItem};
192use rustc_middle::mir::visit::Visitor as MirVisitor;
193use rustc_middle::mir::{self, Local, Location};
194use rustc_middle::ty::adjustment::{CustomCoerceUnsized, PointerCast};
17df50a5 195use rustc_middle::ty::print::with_no_trimmed_paths;
ba9703b0 196use rustc_middle::ty::subst::{GenericArgKind, InternalSubsts};
136023e0 197use rustc_middle::ty::{self, GenericParamDefKind, Instance, Ty, TyCtxt, TypeFoldable, VtblEntry};
cdc7bbd5 198use rustc_middle::{middle::codegen_fn_attrs::CodegenFnAttrFlags, mir::visit::TyContext};
ba9703b0 199use rustc_session::config::EntryFnType;
cdc7bbd5 200use rustc_session::lint::builtin::LARGE_ASSIGNMENTS;
136023e0 201use rustc_session::Limit;
f035d41b 202use rustc_span::source_map::{dummy_spanned, respan, Span, Spanned, DUMMY_SP};
cdc7bbd5 203use rustc_target::abi::Size;
532ac7d7 204use std::iter;
29967ef6 205use std::ops::Range;
1b1a35ee 206use std::path::PathBuf;
532ac7d7 207
e74abb32 208#[derive(PartialEq)]
ff7c6d11 209pub enum MonoItemCollectionMode {
7453a54e 210 Eager,
dfeec247 211 Lazy,
7453a54e
SL
212}
213
ff7c6d11 214/// Maps every mono item to all mono items it references in its
a7813a04
XL
215/// body.
216pub struct InliningMap<'tcx> {
ff7c6d11 217 // Maps a source mono item to the range of mono items
3b2f2976 218 // accessed by it.
29967ef6
XL
219 // The range selects elements within the `targets` vecs.
220 index: FxHashMap<MonoItem<'tcx>, Range<usize>>,
ff7c6d11 221 targets: Vec<MonoItem<'tcx>>,
3b2f2976 222
ff7c6d11
XL
223 // Contains one bit per mono item in the `targets` field. That bit
224 // is true if that mono item needs to be inlined into every CGU.
0bf4aa26 225 inlines: GrowableBitSet<usize>,
7453a54e
SL
226}
227
923072b8
FG
228/// Struct to store mono items in each collecting and if they should
229/// be inlined. We call `instantiation_mode` to get their inlining
230/// status when inserting new elements, which avoids calling it in
231/// `inlining_map.lock_mut()`. See the `collect_items_rec` implementation
232/// below.
233struct MonoItems<'tcx> {
234 // If this is false, we do not need to compute whether items
235 // will need to be inlined.
236 compute_inlining: bool,
237
238 // The TyCtxt used to determine whether the a item should
239 // be inlined.
240 tcx: TyCtxt<'tcx>,
241
242 // The collected mono items. The bool field in each element
243 // indicates whether this element should be inlined.
244 items: Vec<(Spanned<MonoItem<'tcx>>, bool /*inlined*/)>,
245}
246
247impl<'tcx> MonoItems<'tcx> {
248 #[inline]
249 fn push(&mut self, item: Spanned<MonoItem<'tcx>>) {
250 self.extend([item]);
251 }
252
253 #[inline]
254 fn extend<T: IntoIterator<Item = Spanned<MonoItem<'tcx>>>>(&mut self, iter: T) {
255 self.items.extend(iter.into_iter().map(|mono_item| {
256 let inlined = if !self.compute_inlining {
257 false
258 } else {
259 mono_item.node.instantiation_mode(self.tcx) == InstantiationMode::LocalCopy
260 };
261 (mono_item, inlined)
262 }))
263 }
264}
265
a7813a04 266impl<'tcx> InliningMap<'tcx> {
a7813a04
XL
267 fn new() -> InliningMap<'tcx> {
268 InliningMap {
0bf4aa26 269 index: FxHashMap::default(),
a7813a04 270 targets: Vec::new(),
0bf4aa26 271 inlines: GrowableBitSet::with_capacity(1024),
a7813a04
XL
272 }
273 }
274
923072b8
FG
275 fn record_accesses<'a>(
276 &mut self,
277 source: MonoItem<'tcx>,
278 new_targets: &'a [(Spanned<MonoItem<'tcx>>, bool)],
279 ) where
280 'tcx: 'a,
281 {
a7813a04 282 let start_index = self.targets.len();
3b2f2976
XL
283 let new_items_count = new_targets.len();
284 let new_items_count_total = new_items_count + self.targets.len();
285
286 self.targets.reserve(new_items_count);
0bf4aa26 287 self.inlines.ensure(new_items_count_total);
3b2f2976 288
923072b8
FG
289 for (i, (Spanned { node: mono_item, .. }, inlined)) in new_targets.into_iter().enumerate() {
290 self.targets.push(*mono_item);
291 if *inlined {
3b2f2976
XL
292 self.inlines.insert(i + start_index);
293 }
294 }
295
a7813a04 296 let end_index = self.targets.len();
29967ef6 297 assert!(self.index.insert(source, start_index..end_index).is_none());
a7813a04
XL
298 }
299
300 // Internally iterate over all items referenced by `source` which will be
301 // made available for inlining.
ff7c6d11 302 pub fn with_inlining_candidates<F>(&self, source: MonoItem<'tcx>, mut f: F)
dfeec247
XL
303 where
304 F: FnMut(MonoItem<'tcx>),
3b2f2976 305 {
29967ef6
XL
306 if let Some(range) = self.index.get(&source) {
307 for (i, candidate) in self.targets[range.clone()].iter().enumerate() {
308 if self.inlines.contains(range.start + i) {
3b2f2976
XL
309 f(*candidate);
310 }
7453a54e 311 }
a7813a04 312 }
7453a54e 313 }
3b2f2976
XL
314
315 // Internally iterate over all items and the things each accesses.
316 pub fn iter_accesses<F>(&self, mut f: F)
dfeec247
XL
317 where
318 F: FnMut(MonoItem<'tcx>, &[MonoItem<'tcx>]),
3b2f2976 319 {
29967ef6
XL
320 for (&accessor, range) in &self.index {
321 f(accessor, &self.targets[range.clone()])
3b2f2976
XL
322 }
323 }
7453a54e
SL
324}
325
923072b8 326#[instrument(skip(tcx, mode), level = "debug")]
416331ca
XL
327pub fn collect_crate_mono_items(
328 tcx: TyCtxt<'_>,
dc9dc135 329 mode: MonoItemCollectionMode,
416331ca 330) -> (FxHashSet<MonoItem<'_>>, InliningMap<'_>) {
e74abb32
XL
331 let _prof_timer = tcx.prof.generic_activity("monomorphization_collector");
332
dfeec247
XL
333 let roots =
334 tcx.sess.time("monomorphization_collector_root_collections", || collect_roots(tcx, mode));
ea8adc8c 335
416331ca 336 debug!("building mono item graph, beginning at roots");
94b46f34 337
0bf4aa26 338 let mut visited = MTLock::new(FxHashSet::default());
94b46f34 339 let mut inlining_map = MTLock::new(InliningMap::new());
136023e0 340 let recursion_limit = tcx.recursion_limit();
94b46f34
XL
341
342 {
343 let visited: MTRef<'_, _> = &mut visited;
344 let inlining_map: MTRef<'_, _> = &mut inlining_map;
345
dfeec247 346 tcx.sess.time("monomorphization_collector_graph_walk", || {
94b46f34 347 par_iter(roots).for_each(|root| {
a1dfa0c6 348 let mut recursion_depths = DefIdMap::default();
f035d41b
XL
349 collect_items_rec(
350 tcx,
351 dummy_spanned(root),
352 visited,
353 &mut recursion_depths,
136023e0 354 recursion_limit,
f035d41b
XL
355 inlining_map,
356 );
94b46f34
XL
357 });
358 });
ea8adc8c 359 }
7453a54e 360
94b46f34 361 (visited.into_inner(), inlining_map.into_inner())
7453a54e
SL
362}
363
364// Find all non-generic items by walking the HIR. These items serve as roots to
365// start monomorphizing from.
923072b8 366#[instrument(skip(tcx, mode), level = "debug")]
416331ca
XL
367fn collect_roots(tcx: TyCtxt<'_>, mode: MonoItemCollectionMode) -> Vec<MonoItem<'_>> {
368 debug!("collecting roots");
923072b8 369 let mut roots = MonoItems { compute_inlining: false, tcx, items: Vec::new() };
7453a54e
SL
370
371 {
17df50a5 372 let entry_fn = tcx.entry_fn(());
abe05a73 373
ff7c6d11
XL
374 debug!("collect_roots: entry_fn = {:?}", entry_fn);
375
04454e1e
FG
376 let mut collector = RootCollector { tcx, mode, entry_fn, output: &mut roots };
377
378 let crate_items = tcx.hir_crate_items(());
379
380 for id in crate_items.items() {
381 collector.process_item(id);
382 }
7453a54e 383
04454e1e
FG
384 for id in crate_items.impl_items() {
385 collector.process_impl_item(id);
386 }
0531ce1d 387
04454e1e 388 collector.push_extra_entry_roots();
7453a54e
SL
389 }
390
94b46f34 391 // We can only codegen items that are instantiable - items all of
041b39d2 392 // whose predicates hold. Luckily, items that aren't instantiable
94b46f34 393 // can't actually be used, so we can just skip codegenning them.
7453a54e 394 roots
923072b8 395 .items
f035d41b 396 .into_iter()
923072b8
FG
397 .filter_map(|(Spanned { node: mono_item, .. }, _)| {
398 mono_item.is_instantiable(tcx).then_some(mono_item)
399 })
f035d41b 400 .collect()
7453a54e
SL
401}
402
17df50a5
XL
403/// Collect all monomorphized items reachable from `starting_point`, and emit a note diagnostic if a
404/// post-monorphization error is encountered during a collection step.
923072b8 405#[instrument(skip(tcx, visited, recursion_depths, recursion_limit, inlining_map), level = "debug")]
dc9dc135
XL
406fn collect_items_rec<'tcx>(
407 tcx: TyCtxt<'tcx>,
f035d41b 408 starting_point: Spanned<MonoItem<'tcx>>,
dc9dc135
XL
409 visited: MTRef<'_, MTLock<FxHashSet<MonoItem<'tcx>>>>,
410 recursion_depths: &mut DefIdMap<usize>,
136023e0 411 recursion_limit: Limit,
dc9dc135
XL
412 inlining_map: MTRef<'_, MTLock<InliningMap<'tcx>>>,
413) {
f035d41b 414 if !visited.lock_mut().insert(starting_point.node) {
7453a54e
SL
415 // We've been here already, no need to search again.
416 return;
417 }
1b1a35ee 418 debug!("BEGIN collect_items_rec({})", starting_point.node);
7453a54e 419
923072b8 420 let mut neighbors = MonoItems { compute_inlining: true, tcx, items: Vec::new() };
7453a54e
SL
421 let recursion_depth_reset;
422
17df50a5
XL
423 //
424 // Post-monomorphization errors MVP
425 //
426 // We can encounter errors while monomorphizing an item, but we don't have a good way of
427 // showing a complete stack of spans ultimately leading to collecting the erroneous one yet.
428 // (It's also currently unclear exactly which diagnostics and information would be interesting
429 // to report in such cases)
430 //
431 // This leads to suboptimal error reporting: a post-monomorphization error (PME) will be
432 // shown with just a spanned piece of code causing the error, without information on where
433 // it was called from. This is especially obscure if the erroneous mono item is in a
434 // dependency. See for example issue #85155, where, before minimization, a PME happened two
435 // crates downstream from libcore's stdarch, without a way to know which dependency was the
436 // cause.
437 //
438 // If such an error occurs in the current crate, its span will be enough to locate the
439 // source. If the cause is in another crate, the goal here is to quickly locate which mono
440 // item in the current crate is ultimately responsible for causing the error.
441 //
442 // To give at least _some_ context to the user: while collecting mono items, we check the
443 // error count. If it has changed, a PME occurred, and we trigger some diagnostics about the
444 // current step of mono items collection.
445 //
04454e1e 446 // FIXME: don't rely on global state, instead bubble up errors. Note: this is very hard to do.
17df50a5
XL
447 let error_count = tcx.sess.diagnostic().err_count();
448
f035d41b 449 match starting_point.node {
0531ce1d 450 MonoItem::Static(def_id) => {
ea8adc8c 451 let instance = Instance::mono(tcx, def_id);
32a655c1
SL
452
453 // Sanity check whether this ended up being collected accidentally
3dfed10e 454 debug_assert!(should_codegen_locally(tcx, &instance));
32a655c1 455
3dfed10e 456 let ty = instance.ty(tcx, ty::ParamEnv::reveal_all());
f035d41b 457 visit_drop_use(tcx, ty, true, starting_point.span, &mut neighbors);
a7813a04 458
7453a54e 459 recursion_depth_reset = None;
a7813a04 460
1b1a35ee 461 if let Ok(alloc) = tcx.eval_static_initializer(def_id) {
5e7ed085 462 for &id in alloc.inner().relocations().values() {
1b1a35ee
XL
463 collect_miri(tcx, id, &mut neighbors);
464 }
0531ce1d 465 }
7453a54e 466 }
ff7c6d11 467 MonoItem::Fn(instance) => {
32a655c1 468 // Sanity check whether this ended up being collected accidentally
3dfed10e 469 debug_assert!(should_codegen_locally(tcx, &instance));
32a655c1 470
7453a54e 471 // Keep track of the monomorphization recursion depth
136023e0
XL
472 recursion_depth_reset = Some(check_recursion_limit(
473 tcx,
474 instance,
475 starting_point.span,
476 recursion_depths,
477 recursion_limit,
478 ));
ea8adc8c 479 check_type_length_limit(tcx, instance);
7453a54e 480
f9f354fc
XL
481 rustc_data_structures::stack::ensure_sufficient_stack(|| {
482 collect_neighbours(tcx, instance, &mut neighbors);
483 });
7453a54e 484 }
17df50a5 485 MonoItem::GlobalAsm(item_id) => {
cc61c64b 486 recursion_depth_reset = None;
17df50a5
XL
487
488 let item = tcx.hir().item(item_id);
489 if let hir::ItemKind::GlobalAsm(asm) = item.kind {
490 for (op, op_sp) in asm.operands {
491 match op {
492 hir::InlineAsmOperand::Const { .. } => {
493 // Only constants which resolve to a plain integer
494 // are supported. Therefore the value should not
495 // depend on any other items.
496 }
04454e1e
FG
497 hir::InlineAsmOperand::SymFn { anon_const } => {
498 let fn_ty =
499 tcx.typeck_body(anon_const.body).node_type(anon_const.hir_id);
500 visit_fn_use(tcx, fn_ty, false, *op_sp, &mut neighbors);
501 }
502 hir::InlineAsmOperand::SymStatic { path: _, def_id } => {
503 let instance = Instance::mono(tcx, *def_id);
504 if should_codegen_locally(tcx, &instance) {
505 trace!("collecting static {:?}", def_id);
506 neighbors.push(dummy_spanned(MonoItem::Static(*def_id)));
507 }
508 }
509 hir::InlineAsmOperand::In { .. }
510 | hir::InlineAsmOperand::Out { .. }
511 | hir::InlineAsmOperand::InOut { .. }
512 | hir::InlineAsmOperand::SplitInOut { .. } => {
513 span_bug!(*op_sp, "invalid operand type for global_asm!")
514 }
17df50a5
XL
515 }
516 }
517 } else {
518 span_bug!(item.span, "Mismatch between hir::Item type and MonoItem type")
519 }
cc61c64b 520 }
7453a54e
SL
521 }
522
17df50a5 523 // Check for PMEs and emit a diagnostic if one happened. To try to show relevant edges of the
04454e1e 524 // mono item graph.
c295e0f8 525 if tcx.sess.diagnostic().err_count() > error_count
04454e1e 526 && starting_point.node.is_generic_fn()
c295e0f8 527 && starting_point.node.is_user_defined()
17df50a5 528 {
5e7ed085 529 let formatted_item = with_no_trimmed_paths!(starting_point.node.to_string());
17df50a5
XL
530 tcx.sess.span_note_without_error(
531 starting_point.span,
532 &format!("the above error was encountered while instantiating `{}`", formatted_item),
533 );
534 }
923072b8 535 inlining_map.lock_mut().record_accesses(starting_point.node, &neighbors.items);
17df50a5 536
923072b8 537 for (neighbour, _) in neighbors.items {
136023e0 538 collect_items_rec(tcx, neighbour, visited, recursion_depths, recursion_limit, inlining_map);
7453a54e
SL
539 }
540
541 if let Some((def_id, depth)) = recursion_depth_reset {
542 recursion_depths.insert(def_id, depth);
543 }
544
1b1a35ee 545 debug!("END collect_items_rec({})", starting_point.node);
7453a54e
SL
546}
547
1b1a35ee
XL
548/// Format instance name that is already known to be too long for rustc.
549/// Show only the first and last 32 characters to avoid blasting
550/// the user's terminal with thousands of lines of type-name.
551///
552/// If the type name is longer than before+after, it will be written to a file.
a2a8927a 553fn shrunk_instance_name<'tcx>(
1b1a35ee
XL
554 tcx: TyCtxt<'tcx>,
555 instance: &Instance<'tcx>,
556 before: usize,
557 after: usize,
558) -> (String, Option<PathBuf>) {
559 let s = instance.to_string();
6c58768f
XL
560
561 // Only use the shrunk version if it's really shorter.
562 // This also avoids the case where before and after slices overlap.
1b1a35ee
XL
563 if s.chars().nth(before + after + 1).is_some() {
564 // An iterator of all byte positions including the end of the string.
565 let positions = || s.char_indices().map(|(i, _)| i).chain(iter::once(s.len()));
566
567 let shrunk = format!(
568 "{before}...{after}",
569 before = &s[..positions().nth(before).unwrap_or(s.len())],
570 after = &s[positions().rev().nth(after).unwrap_or(0)..],
571 );
6c58768f 572
17df50a5 573 let path = tcx.output_filenames(()).temp_path_ext("long-type.txt", None);
1b1a35ee
XL
574 let written_to_path = std::fs::write(&path, s).ok().map(|_| path);
575
576 (shrunk, written_to_path)
577 } else {
578 (s, None)
579 }
6c58768f
XL
580}
581
dc9dc135
XL
582fn check_recursion_limit<'tcx>(
583 tcx: TyCtxt<'tcx>,
584 instance: Instance<'tcx>,
f035d41b 585 span: Span,
dc9dc135 586 recursion_depths: &mut DefIdMap<usize>,
136023e0 587 recursion_limit: Limit,
dc9dc135 588) -> (DefId, usize) {
cc61c64b
XL
589 let def_id = instance.def_id();
590 let recursion_depth = recursion_depths.get(&def_id).cloned().unwrap_or(0);
7453a54e
SL
591 debug!(" => recursion depth={}", recursion_depth);
592
dfeec247 593 let adjusted_recursion_depth = if Some(def_id) == tcx.lang_items().drop_in_place_fn() {
cc61c64b
XL
594 // HACK: drop_in_place creates tight monomorphization loops. Give
595 // it more margin.
596 recursion_depth / 4
597 } else {
598 recursion_depth
599 };
600
7453a54e
SL
601 // Code that needs to instantiate the same function recursively
602 // more than the recursion limit is assumed to be causing an
603 // infinite expansion.
136023e0 604 if !recursion_limit.value_within_limit(adjusted_recursion_depth) {
1b1a35ee
XL
605 let (shrunk, written_to_path) = shrunk_instance_name(tcx, &instance, 32, 32);
606 let error = format!("reached the recursion limit while instantiating `{}`", shrunk);
f035d41b
XL
607 let mut err = tcx.sess.struct_span_fatal(span, &error);
608 err.span_note(
609 tcx.def_span(def_id),
610 &format!("`{}` defined here", tcx.def_path_str(def_id)),
611 );
1b1a35ee
XL
612 if let Some(path) = written_to_path {
613 err.note(&format!("the full type name has been written to '{}'", path.display()));
614 }
5e7ed085 615 err.emit()
7453a54e
SL
616 }
617
cc61c64b 618 recursion_depths.insert(def_id, recursion_depth + 1);
7453a54e 619
cc61c64b 620 (def_id, recursion_depth)
7453a54e
SL
621}
622
dc9dc135 623fn check_type_length_limit<'tcx>(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) {
ba9703b0
XL
624 let type_length = instance
625 .substs
626 .iter()
5099ac24 627 .flat_map(|arg| arg.walk())
ba9703b0
XL
628 .filter(|arg| match arg.unpack() {
629 GenericArgKind::Type(_) | GenericArgKind::Const(_) => true,
630 GenericArgKind::Lifetime(_) => false,
631 })
632 .count();
633 debug!(" => type length={}", type_length);
476ff2be
SL
634
635 // Rust code can easily create exponentially-long types using only a
636 // polynomial recursion depth. Even with the default recursion
637 // depth, you can easily get cases that take >2^60 steps to run,
638 // which means that rustc basically hangs.
639 //
640 // Bail out in these cases to avoid that bad user experience.
136023e0 641 if !tcx.type_length_limit().value_within_limit(type_length) {
1b1a35ee
XL
642 let (shrunk, written_to_path) = shrunk_instance_name(tcx, &instance, 32, 32);
643 let msg = format!("reached the type-length limit while instantiating `{}`", shrunk);
532ac7d7 644 let mut diag = tcx.sess.struct_span_fatal(tcx.def_span(instance.def_id()), &msg);
1b1a35ee
XL
645 if let Some(path) = written_to_path {
646 diag.note(&format!("the full type name has been written to '{}'", path.display()));
647 }
648 diag.help(&format!(
476ff2be 649 "consider adding a `#![type_length_limit=\"{}\"]` attribute to your crate",
dfeec247
XL
650 type_length
651 ));
5e7ed085 652 diag.emit()
476ff2be
SL
653 }
654}
655
dc9dc135
XL
656struct MirNeighborCollector<'a, 'tcx> {
657 tcx: TyCtxt<'tcx>,
658 body: &'a mir::Body<'tcx>,
923072b8 659 output: &'a mut MonoItems<'tcx>,
ba9703b0
XL
660 instance: Instance<'tcx>,
661}
662
663impl<'a, 'tcx> MirNeighborCollector<'a, 'tcx> {
664 pub fn monomorphize<T>(&self, value: T) -> T
665 where
666 T: TypeFoldable<'tcx>,
667 {
668 debug!("monomorphize: self.instance={:?}", self.instance);
29967ef6
XL
669 self.instance.subst_mir_and_normalize_erasing_regions(
670 self.tcx,
671 ty::ParamEnv::reveal_all(),
fc512014 672 value,
29967ef6 673 )
ba9703b0 674 }
7453a54e
SL
675}
676
677impl<'a, 'tcx> MirVisitor<'tcx> for MirNeighborCollector<'a, 'tcx> {
9e0c209e 678 fn visit_rvalue(&mut self, rvalue: &mir::Rvalue<'tcx>, location: Location) {
7453a54e
SL
679 debug!("visiting rvalue {:?}", *rvalue);
680
f035d41b
XL
681 let span = self.body.source_info(location).span;
682
7453a54e 683 match *rvalue {
7453a54e
SL
684 // When doing an cast from a regular pointer to a fat pointer, we
685 // have to instantiate all methods of the trait being cast to, so we
686 // can build the appropriate vtable.
48663c56 687 mir::Rvalue::Cast(
dfeec247
XL
688 mir::CastKind::Pointer(PointerCast::Unsize),
689 ref operand,
690 target_ty,
48663c56 691 ) => {
ba9703b0 692 let target_ty = self.monomorphize(target_ty);
dc9dc135 693 let source_ty = operand.ty(self.body, self.tcx);
ba9703b0 694 let source_ty = self.monomorphize(source_ty);
dfeec247
XL
695 let (source_ty, target_ty) =
696 find_vtable_types_for_unsizing(self.tcx, source_ty, target_ty);
7453a54e
SL
697 // This could also be a different Unsize instruction, like
698 // from a fixed sized array to a slice. But we are only
699 // interested in things that produce a vtable.
700 if target_ty.is_trait() && !source_ty.is_trait() {
dfeec247
XL
701 create_mono_items_for_vtable_methods(
702 self.tcx,
703 target_ty,
704 source_ty,
f035d41b 705 span,
dfeec247
XL
706 self.output,
707 );
7453a54e
SL
708 }
709 }
48663c56 710 mir::Rvalue::Cast(
dfeec247
XL
711 mir::CastKind::Pointer(PointerCast::ReifyFnPointer),
712 ref operand,
713 _,
48663c56 714 ) => {
dc9dc135 715 let fn_ty = operand.ty(self.body, self.tcx);
ba9703b0 716 let fn_ty = self.monomorphize(fn_ty);
f035d41b 717 visit_fn_use(self.tcx, fn_ty, false, span, &mut self.output);
cc61c64b 718 }
48663c56 719 mir::Rvalue::Cast(
dfeec247
XL
720 mir::CastKind::Pointer(PointerCast::ClosureFnPointer(_)),
721 ref operand,
722 _,
48663c56 723 ) => {
dc9dc135 724 let source_ty = operand.ty(self.body, self.tcx);
ba9703b0 725 let source_ty = self.monomorphize(source_ty);
1b1a35ee 726 match *source_ty.kind() {
b7449926 727 ty::Closure(def_id, substs) => {
dc9dc135 728 let instance = Instance::resolve_closure(
dfeec247
XL
729 self.tcx,
730 def_id,
731 substs,
732 ty::ClosureKind::FnOnce,
733 );
3dfed10e
XL
734 if should_codegen_locally(self.tcx, &instance) {
735 self.output.push(create_fn_mono_item(self.tcx, instance, span));
83c7162d 736 }
8bb4bdeb
XL
737 }
738 _ => bug!(),
739 }
740 }
f9f354fc
XL
741 mir::Rvalue::ThreadLocalRef(def_id) => {
742 assert!(self.tcx.is_thread_local_static(def_id));
743 let instance = Instance::mono(self.tcx, def_id);
3dfed10e 744 if should_codegen_locally(self.tcx, &instance) {
f9f354fc 745 trace!("collecting thread-local static {:?}", def_id);
f035d41b 746 self.output.push(respan(span, MonoItem::Static(def_id)));
f9f354fc
XL
747 }
748 }
7453a54e
SL
749 _ => { /* not interesting */ }
750 }
751
9e0c209e 752 self.super_rvalue(rvalue, location);
7453a54e
SL
753 }
754
cdc7bbd5
XL
755 /// This does not walk the constant, as it has been handled entirely here and trying
756 /// to walk it would attempt to evaluate the `ty::Const` inside, which doesn't necessarily
757 /// work, as some constants cannot be represented in the type system.
923072b8 758 #[instrument(skip(self), level = "debug")]
cdc7bbd5
XL
759 fn visit_constant(&mut self, constant: &mir::Constant<'tcx>, location: Location) {
760 let literal = self.monomorphize(constant.literal);
761 let val = match literal {
762 mir::ConstantKind::Val(val, _) => val,
923072b8
FG
763 mir::ConstantKind::Ty(ct) => match ct.kind() {
764 ty::ConstKind::Value(val) => self.tcx.valtree_to_const_val((ct.ty(), val)),
cdc7bbd5 765 ty::ConstKind::Unevaluated(ct) => {
923072b8 766 debug!(?ct);
cdc7bbd5
XL
767 let param_env = ty::ParamEnv::reveal_all();
768 match self.tcx.const_eval_resolve(param_env, ct, None) {
769 // The `monomorphize` call should have evaluated that constant already.
770 Ok(val) => val,
5e7ed085 771 Err(ErrorHandled::Reported(_) | ErrorHandled::Linted) => return,
cdc7bbd5
XL
772 Err(ErrorHandled::TooGeneric) => span_bug!(
773 self.body.source_info(location).span,
774 "collection encountered polymorphic constant: {:?}",
775 literal
776 ),
777 }
778 }
779 _ => return,
780 },
781 };
782 collect_const_value(self.tcx, val, self.output);
783 self.visit_ty(literal.ty(), TyContext::Location(location));
784 }
785
923072b8 786 #[instrument(skip(self), level = "debug")]
5099ac24
FG
787 fn visit_const(&mut self, constant: ty::Const<'tcx>, location: Location) {
788 debug!("visiting const {:?} @ {:?}", constant, location);
ea8adc8c 789
5099ac24 790 let substituted_constant = self.monomorphize(constant);
ba9703b0
XL
791 let param_env = ty::ParamEnv::reveal_all();
792
923072b8
FG
793 match substituted_constant.kind() {
794 ty::ConstKind::Value(val) => {
795 let const_val = self.tcx.valtree_to_const_val((constant.ty(), val));
796 collect_const_value(self.tcx, const_val, self.output)
797 }
cdc7bbd5
XL
798 ty::ConstKind::Unevaluated(unevaluated) => {
799 match self.tcx.const_eval_resolve(param_env, unevaluated, None) {
800 // The `monomorphize` call should have evaluated that constant already.
801 Ok(val) => span_bug!(
802 self.body.source_info(location).span,
803 "collection encountered the unevaluated constant {} which evaluated to {:?}",
804 substituted_constant,
805 val
806 ),
5e7ed085 807 Err(ErrorHandled::Reported(_) | ErrorHandled::Linted) => {}
ba9703b0 808 Err(ErrorHandled::TooGeneric) => span_bug!(
3dfed10e
XL
809 self.body.source_info(location).span,
810 "collection encountered polymorphic constant: {}",
811 substituted_constant
ba9703b0
XL
812 ),
813 }
814 }
815 _ => {}
816 }
7453a54e 817
ea8adc8c 818 self.super_const(constant);
a7813a04
XL
819 }
820
f035d41b
XL
821 fn visit_terminator(&mut self, terminator: &mir::Terminator<'tcx>, location: Location) {
822 debug!("visiting terminator {:?} @ {:?}", terminator, location);
823 let source = self.body.source_info(location).span;
7cac9316 824
ea8adc8c 825 let tcx = self.tcx;
f035d41b 826 match terminator.kind {
cc61c64b 827 mir::TerminatorKind::Call { ref func, .. } => {
dc9dc135 828 let callee_ty = func.ty(self.body, tcx);
ba9703b0 829 let callee_ty = self.monomorphize(callee_ty);
f035d41b 830 visit_fn_use(self.tcx, callee_ty, true, source, &mut self.output);
a7813a04 831 }
f035d41b
XL
832 mir::TerminatorKind::Drop { ref place, .. }
833 | mir::TerminatorKind::DropAndReplace { ref place, .. } => {
834 let ty = place.ty(self.body, self.tcx).ty;
ba9703b0 835 let ty = self.monomorphize(ty);
f035d41b 836 visit_drop_use(self.tcx, ty, true, source, self.output);
cc61c64b 837 }
f9f354fc
XL
838 mir::TerminatorKind::InlineAsm { ref operands, .. } => {
839 for op in operands {
f035d41b
XL
840 match *op {
841 mir::InlineAsmOperand::SymFn { ref value } => {
6a06907d 842 let fn_ty = self.monomorphize(value.literal.ty());
f035d41b
XL
843 visit_fn_use(self.tcx, fn_ty, false, source, &mut self.output);
844 }
845 mir::InlineAsmOperand::SymStatic { def_id } => {
846 let instance = Instance::mono(self.tcx, def_id);
3dfed10e 847 if should_codegen_locally(self.tcx, &instance) {
f035d41b
XL
848 trace!("collecting asm sym static {:?}", def_id);
849 self.output.push(respan(source, MonoItem::Static(def_id)));
850 }
851 }
852 _ => {}
f9f354fc
XL
853 }
854 }
855 }
3c0e092e
XL
856 mir::TerminatorKind::Assert { ref msg, .. } => {
857 let lang_item = match msg {
858 mir::AssertKind::BoundsCheck { .. } => LangItem::PanicBoundsCheck,
859 _ => LangItem::Panic,
860 };
861 let instance = Instance::mono(tcx, tcx.require_lang_item(lang_item, Some(source)));
862 if should_codegen_locally(tcx, &instance) {
863 self.output.push(create_fn_mono_item(tcx, instance, source));
864 }
865 }
5099ac24
FG
866 mir::TerminatorKind::Abort { .. } => {
867 let instance = Instance::mono(
868 tcx,
869 tcx.require_lang_item(LangItem::PanicNoUnwind, Some(source)),
870 );
871 if should_codegen_locally(tcx, &instance) {
872 self.output.push(create_fn_mono_item(tcx, instance, source));
873 }
874 }
dfeec247
XL
875 mir::TerminatorKind::Goto { .. }
876 | mir::TerminatorKind::SwitchInt { .. }
877 | mir::TerminatorKind::Resume
dfeec247 878 | mir::TerminatorKind::Return
3c0e092e 879 | mir::TerminatorKind::Unreachable => {}
dfeec247
XL
880 mir::TerminatorKind::GeneratorDrop
881 | mir::TerminatorKind::Yield { .. }
f035d41b 882 | mir::TerminatorKind::FalseEdge { .. }
dfeec247 883 | mir::TerminatorKind::FalseUnwind { .. } => bug!(),
a7813a04
XL
884 }
885
f035d41b 886 self.super_terminator(terminator, location);
7453a54e 887 }
3b2f2976 888
cdc7bbd5
XL
889 fn visit_operand(&mut self, operand: &mir::Operand<'tcx>, location: Location) {
890 self.super_operand(operand, location);
136023e0 891 let limit = self.tcx.move_size_limit().0;
cdc7bbd5
XL
892 if limit == 0 {
893 return;
894 }
895 let limit = Size::from_bytes(limit);
896 let ty = operand.ty(self.body, self.tcx);
897 let ty = self.monomorphize(ty);
898 let layout = self.tcx.layout_of(ty::ParamEnv::reveal_all().and(ty));
899 if let Ok(layout) = layout {
900 if layout.size > limit {
901 debug!(?layout);
902 let source_info = self.body.source_info(location);
903 debug!(?source_info);
904 let lint_root = source_info.scope.lint_root(&self.body.source_scopes);
905 debug!(?lint_root);
5e7ed085 906 let Some(lint_root) = lint_root else {
cdc7bbd5
XL
907 // This happens when the issue is in a function from a foreign crate that
908 // we monomorphized in the current crate. We can't get a `HirId` for things
909 // in other crates.
910 // FIXME: Find out where to report the lint on. Maybe simply crate-level lint root
911 // but correct span? This would make the lint at least accept crate-level lint attributes.
5e7ed085 912 return;
cdc7bbd5
XL
913 };
914 self.tcx.struct_span_lint_hir(
915 LARGE_ASSIGNMENTS,
916 lint_root,
917 source_info.span,
918 |lint| {
919 let mut err = lint.build(&format!("moving {} bytes", layout.size.bytes()));
920 err.span_label(source_info.span, "value moved from here");
5e7ed085
FG
921 err.note(&format!(r#"The current maximum size is {}, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`"#, limit.bytes()));
922 err.emit();
cdc7bbd5
XL
923 },
924 );
925 }
926 }
927 }
928
f9f354fc 929 fn visit_local(
dfeec247
XL
930 &mut self,
931 _place_local: &Local,
932 _context: mir::visit::PlaceContext,
933 _location: Location,
934 ) {
3b2f2976 935 }
7453a54e
SL
936}
937
dc9dc135
XL
938fn visit_drop_use<'tcx>(
939 tcx: TyCtxt<'tcx>,
940 ty: Ty<'tcx>,
941 is_direct_call: bool,
f035d41b 942 source: Span,
923072b8 943 output: &mut MonoItems<'tcx>,
dc9dc135
XL
944) {
945 let instance = Instance::resolve_drop_in_place(tcx, ty);
f035d41b 946 visit_instance_use(tcx, instance, is_direct_call, source, output);
7453a54e
SL
947}
948
dc9dc135
XL
949fn visit_fn_use<'tcx>(
950 tcx: TyCtxt<'tcx>,
951 ty: Ty<'tcx>,
952 is_direct_call: bool,
f035d41b 953 source: Span,
923072b8 954 output: &mut MonoItems<'tcx>,
dc9dc135 955) {
1b1a35ee 956 if let ty::FnDef(def_id, substs) = *ty.kind() {
f9f354fc
XL
957 let instance = if is_direct_call {
958 ty::Instance::resolve(tcx, ty::ParamEnv::reveal_all(), def_id, substs).unwrap().unwrap()
959 } else {
960 ty::Instance::resolve_for_fn_ptr(tcx, ty::ParamEnv::reveal_all(), def_id, substs)
961 .unwrap()
962 };
f035d41b 963 visit_instance_use(tcx, instance, is_direct_call, source, output);
7453a54e 964 }
cc61c64b 965}
7453a54e 966
dc9dc135
XL
967fn visit_instance_use<'tcx>(
968 tcx: TyCtxt<'tcx>,
969 instance: ty::Instance<'tcx>,
970 is_direct_call: bool,
f035d41b 971 source: Span,
923072b8 972 output: &mut MonoItems<'tcx>,
dc9dc135 973) {
cc61c64b 974 debug!("visit_item_use({:?}, is_direct_call={:?})", instance, is_direct_call);
3dfed10e 975 if !should_codegen_locally(tcx, &instance) {
dfeec247 976 return;
7453a54e
SL
977 }
978
cc61c64b 979 match instance.def {
dfeec247 980 ty::InstanceDef::Virtual(..) | ty::InstanceDef::Intrinsic(_) => {
cc61c64b 981 if !is_direct_call {
60c5eb7d 982 bug!("{:?} being reified", instance);
32a655c1
SL
983 }
984 }
cc61c64b 985 ty::InstanceDef::DropGlue(_, None) => {
60c5eb7d 986 // Don't need to emit noop drop glue if we are calling directly.
cc61c64b 987 if !is_direct_call {
3dfed10e 988 output.push(create_fn_mono_item(tcx, instance, source));
7453a54e
SL
989 }
990 }
dfeec247
XL
991 ty::InstanceDef::DropGlue(_, Some(_))
992 | ty::InstanceDef::VtableShim(..)
993 | ty::InstanceDef::ReifyShim(..)
994 | ty::InstanceDef::ClosureOnceShim { .. }
995 | ty::InstanceDef::Item(..)
996 | ty::InstanceDef::FnPtrShim(..)
997 | ty::InstanceDef::CloneShim(..) => {
3dfed10e 998 output.push(create_fn_mono_item(tcx, instance, source));
32a655c1 999 }
7453a54e
SL
1000 }
1001}
1002
c295e0f8
XL
1003/// Returns `true` if we should codegen an instance in the local crate, or returns `false` if we
1004/// can just link to the upstream crate and therefore don't need a mono item.
3dfed10e 1005fn should_codegen_locally<'tcx>(tcx: TyCtxt<'tcx>, instance: &Instance<'tcx>) -> bool {
5099ac24 1006 let Some(def_id) = instance.def.def_id_if_not_guaranteed_local_codegen() else {
c295e0f8 1007 return true;
cc61c64b 1008 };
83c7162d 1009
a1dfa0c6 1010 if tcx.is_foreign_item(def_id) {
3dfed10e 1011 // Foreign items are always linked against, there's no way of instantiating them.
a1dfa0c6
XL
1012 return false;
1013 }
1014
1015 if def_id.is_local() {
3dfed10e 1016 // Local items cannot be referred to locally without monomorphizing them locally.
a1dfa0c6
XL
1017 return true;
1018 }
1019
3dfed10e
XL
1020 if tcx.is_reachable_non_generic(def_id)
1021 || instance.polymorphize(tcx).upstream_monomorphization(tcx).is_some()
1022 {
1023 // We can link to the item in question, no instance needed in this crate.
a1dfa0c6
XL
1024 return false;
1025 }
1026
1027 if !tcx.is_mir_available(def_id) {
5869c6ff 1028 bug!("no MIR available for {:?}", def_id);
a1dfa0c6 1029 }
83c7162d 1030
ba9703b0 1031 true
7453a54e
SL
1032}
1033
60c5eb7d 1034/// For a given pair of source and target type that occur in an unsizing coercion,
7453a54e
SL
1035/// this function finds the pair of types that determines the vtable linking
1036/// them.
1037///
5e7ed085 1038/// For example, the source type might be `&SomeStruct` and the target type
7453a54e
SL
1039/// might be `&SomeTrait` in a cast like:
1040///
1041/// let src: &SomeStruct = ...;
1042/// let target = src as &SomeTrait;
1043///
1044/// Then the output of this function would be (SomeStruct, SomeTrait) since for
1045/// constructing the `target` fat-pointer we need the vtable for that pair.
1046///
1047/// Things can get more complicated though because there's also the case where
1048/// the unsized type occurs as a field:
1049///
1050/// ```rust
1051/// struct ComplexStruct<T: ?Sized> {
1052/// a: u32,
1053/// b: f64,
1054/// c: T
1055/// }
1056/// ```
1057///
1058/// In this case, if `T` is sized, `&ComplexStruct<T>` is a thin pointer. If `T`
1059/// is unsized, `&SomeStruct` is a fat pointer, and the vtable it points to is
1060/// for the pair of `T` (which is a trait) and the concrete type that `T` was
1061/// originally coerced from:
1062///
1063/// let src: &ComplexStruct<SomeStruct> = ...;
1064/// let target = src as &ComplexStruct<SomeTrait>;
1065///
1066/// Again, we want this `find_vtable_types_for_unsizing()` to provide the pair
1067/// `(SomeStruct, SomeTrait)`.
1068///
0731742a 1069/// Finally, there is also the case of custom unsizing coercions, e.g., for
7453a54e 1070/// smart pointers such as `Rc` and `Arc`.
dc9dc135
XL
1071fn find_vtable_types_for_unsizing<'tcx>(
1072 tcx: TyCtxt<'tcx>,
1073 source_ty: Ty<'tcx>,
1074 target_ty: Ty<'tcx>,
1075) -> (Ty<'tcx>, Ty<'tcx>) {
ea8adc8c 1076 let ptr_vtable = |inner_source: Ty<'tcx>, inner_target: Ty<'tcx>| {
416331ca 1077 let param_env = ty::ParamEnv::reveal_all();
ff7c6d11 1078 let type_has_metadata = |ty: Ty<'tcx>| -> bool {
416331ca 1079 if ty.is_sized(tcx.at(DUMMY_SP), param_env) {
ff7c6d11
XL
1080 return false;
1081 }
416331ca 1082 let tail = tcx.struct_tail_erasing_lifetimes(ty, param_env);
1b1a35ee 1083 match tail.kind() {
b7449926
XL
1084 ty::Foreign(..) => false,
1085 ty::Str | ty::Slice(..) | ty::Dynamic(..) => true,
532ac7d7 1086 _ => bug!("unexpected unsized tail: {:?}", tail),
ff7c6d11
XL
1087 }
1088 };
1089 if type_has_metadata(inner_source) {
32a655c1
SL
1090 (inner_source, inner_target)
1091 } else {
416331ca 1092 tcx.struct_lockstep_tails_erasing_lifetimes(inner_source, inner_target, param_env)
32a655c1
SL
1093 }
1094 };
ff7c6d11 1095
1b1a35ee 1096 match (&source_ty.kind(), &target_ty.kind()) {
ba9703b0 1097 (&ty::Ref(_, a, _), &ty::Ref(_, b, _) | &ty::RawPtr(ty::TypeAndMut { ty: b, .. }))
dfeec247 1098 | (&ty::RawPtr(ty::TypeAndMut { ty: a, .. }), &ty::RawPtr(ty::TypeAndMut { ty: b, .. })) => {
5099ac24 1099 ptr_vtable(*a, *b)
32a655c1 1100 }
b7449926 1101 (&ty::Adt(def_a, _), &ty::Adt(def_b, _)) if def_a.is_box() && def_b.is_box() => {
32a655c1 1102 ptr_vtable(source_ty.boxed_ty(), target_ty.boxed_ty())
7453a54e
SL
1103 }
1104
dfeec247 1105 (&ty::Adt(source_adt_def, source_substs), &ty::Adt(target_adt_def, target_substs)) => {
7453a54e
SL
1106 assert_eq!(source_adt_def, target_adt_def);
1107
74b04a01 1108 let CustomCoerceUnsized::Struct(coerce_index) =
c295e0f8 1109 crate::custom_coerce_unsize_info(tcx, source_ty, target_ty);
7453a54e 1110
2c00a5a8
XL
1111 let source_fields = &source_adt_def.non_enum_variant().fields;
1112 let target_fields = &target_adt_def.non_enum_variant().fields;
7453a54e 1113
dfeec247
XL
1114 assert!(
1115 coerce_index < source_fields.len() && source_fields.len() == target_fields.len()
1116 );
7453a54e 1117
dfeec247
XL
1118 find_vtable_types_for_unsizing(
1119 tcx,
60c5eb7d 1120 source_fields[coerce_index].ty(tcx, source_substs),
dfeec247 1121 target_fields[coerce_index].ty(tcx, target_substs),
60c5eb7d 1122 )
7453a54e 1123 }
dfeec247
XL
1124 _ => bug!(
1125 "find_vtable_types_for_unsizing: invalid coercion {:?} -> {:?}",
1126 source_ty,
1127 target_ty
1128 ),
7453a54e
SL
1129 }
1130}
1131
923072b8 1132#[instrument(skip(tcx), level = "debug")]
3dfed10e
XL
1133fn create_fn_mono_item<'tcx>(
1134 tcx: TyCtxt<'tcx>,
1135 instance: Instance<'tcx>,
1136 source: Span,
1137) -> Spanned<MonoItem<'tcx>> {
ff7c6d11 1138 debug!("create_fn_mono_item(instance={})", instance);
136023e0
XL
1139
1140 let def_id = instance.def_id();
1141 if tcx.sess.opts.debugging_opts.profile_closures && def_id.is_local() && tcx.is_closure(def_id)
1142 {
c295e0f8 1143 crate::util::dump_closure_profile(tcx, instance);
136023e0
XL
1144 }
1145
923072b8
FG
1146 let respanned = respan(source, MonoItem::Fn(instance.polymorphize(tcx)));
1147 debug!(?respanned);
1148
1149 respanned
7453a54e
SL
1150}
1151
ff7c6d11 1152/// Creates a `MonoItem` for each method that is referenced by the vtable for
7453a54e 1153/// the given trait/impl pair.
dc9dc135
XL
1154fn create_mono_items_for_vtable_methods<'tcx>(
1155 tcx: TyCtxt<'tcx>,
1156 trait_ty: Ty<'tcx>,
1157 impl_ty: Ty<'tcx>,
f035d41b 1158 source: Span,
923072b8 1159 output: &mut MonoItems<'tcx>,
dc9dc135 1160) {
3dfed10e 1161 assert!(!trait_ty.has_escaping_bound_vars() && !impl_ty.has_escaping_bound_vars());
7453a54e 1162
1b1a35ee 1163 if let ty::Dynamic(ref trait_ty, ..) = trait_ty.kind() {
0731742a
XL
1164 if let Some(principal) = trait_ty.principal() {
1165 let poly_trait_ref = principal.with_self_ty(tcx, impl_ty);
1166 assert!(!poly_trait_ref.has_escaping_bound_vars());
1167
1168 // Walk all methods of the trait, including those of its supertraits
136023e0
XL
1169 let entries = tcx.vtable_entries(poly_trait_ref);
1170 let methods = entries
dfeec247 1171 .iter()
136023e0
XL
1172 .filter_map(|entry| match entry {
1173 VtblEntry::MetadataDropInPlace
1174 | VtblEntry::MetadataSize
1175 | VtblEntry::MetadataAlign
1176 | VtblEntry::Vacant => None,
94222f64
XL
1177 VtblEntry::TraitVPtr(_) => {
1178 // all super trait items already covered, so skip them.
1179 None
1180 }
1181 VtblEntry::Method(instance) => {
1182 Some(*instance).filter(|instance| should_codegen_locally(tcx, instance))
1183 }
dfeec247 1184 })
3dfed10e 1185 .map(|item| create_fn_mono_item(tcx, item, source));
0731742a
XL
1186 output.extend(methods);
1187 }
1188
60c5eb7d 1189 // Also add the destructor.
f035d41b 1190 visit_drop_use(tcx, impl_ty, false, source, output);
7453a54e
SL
1191 }
1192}
1193
1194//=-----------------------------------------------------------------------------
1195// Root Collection
1196//=-----------------------------------------------------------------------------
1197
dc9dc135
XL
1198struct RootCollector<'a, 'tcx> {
1199 tcx: TyCtxt<'tcx>,
ff7c6d11 1200 mode: MonoItemCollectionMode,
923072b8 1201 output: &'a mut MonoItems<'tcx>,
cdc7bbd5 1202 entry_fn: Option<(DefId, EntryFnType)>,
7453a54e
SL
1203}
1204
04454e1e
FG
1205impl<'v> RootCollector<'_, 'v> {
1206 fn process_item(&mut self, id: hir::ItemId) {
1207 match self.tcx.def_kind(id.def_id) {
1208 DefKind::Enum | DefKind::Struct | DefKind::Union => {
1209 let item = self.tcx.hir().item(id);
1210 match item.kind {
1211 hir::ItemKind::Enum(_, ref generics)
1212 | hir::ItemKind::Struct(_, ref generics)
1213 | hir::ItemKind::Union(_, ref generics) => {
1214 if generics.params.is_empty() {
1215 if self.mode == MonoItemCollectionMode::Eager {
1216 debug!(
1217 "RootCollector: ADT drop-glue for {}",
1218 self.tcx.def_path_str(item.def_id.to_def_id())
1219 );
1220
1221 let ty =
1222 Instance::new(item.def_id.to_def_id(), InternalSubsts::empty())
1223 .ty(self.tcx, ty::ParamEnv::reveal_all());
1224 visit_drop_use(self.tcx, ty, true, DUMMY_SP, self.output);
1225 }
1226 }
7453a54e 1227 }
04454e1e 1228 _ => bug!(),
7453a54e
SL
1229 }
1230 }
04454e1e 1231 DefKind::GlobalAsm => {
dfeec247
XL
1232 debug!(
1233 "RootCollector: ItemKind::GlobalAsm({})",
04454e1e 1234 self.tcx.def_path_str(id.def_id.to_def_id())
dfeec247 1235 );
04454e1e 1236 self.output.push(dummy_spanned(MonoItem::GlobalAsm(id)));
cc61c64b 1237 }
04454e1e 1238 DefKind::Static(..) => {
6a06907d
XL
1239 debug!(
1240 "RootCollector: ItemKind::Static({})",
04454e1e 1241 self.tcx.def_path_str(id.def_id.to_def_id())
6a06907d 1242 );
04454e1e 1243 self.output.push(dummy_spanned(MonoItem::Static(id.def_id.to_def_id())));
7453a54e 1244 }
04454e1e 1245 DefKind::Const => {
ff7c6d11 1246 // const items only generate mono items if they are
5bcae85e 1247 // actually used somewhere. Just declaring them is insufficient.
a1dfa0c6
XL
1248
1249 // but even just declaring them must collect the items they refer to
04454e1e 1250 if let Ok(val) = self.tcx.const_eval_poly(id.def_id.to_def_id()) {
74b04a01 1251 collect_const_value(self.tcx, val, &mut self.output);
a1dfa0c6 1252 }
5bcae85e 1253 }
04454e1e
FG
1254 DefKind::Impl => {
1255 if self.mode == MonoItemCollectionMode::Eager {
1256 let item = self.tcx.hir().item(id);
1257 create_mono_items_for_default_impls(self.tcx, item, self.output);
1258 }
1259 }
1260 DefKind::Fn => {
1261 self.push_if_root(id.def_id);
7453a54e 1262 }
04454e1e 1263 _ => {}
7453a54e 1264 }
7453a54e
SL
1265 }
1266
04454e1e
FG
1267 fn process_impl_item(&mut self, id: hir::ImplItemId) {
1268 if matches!(self.tcx.def_kind(id.def_id), DefKind::AssocFn) {
1269 self.push_if_root(id.def_id);
7453a54e 1270 }
7453a54e 1271 }
fc512014 1272
f9f354fc 1273 fn is_root(&self, def_id: LocalDefId) -> bool {
dfeec247
XL
1274 !item_requires_monomorphization(self.tcx, def_id)
1275 && match self.mode {
1276 MonoItemCollectionMode::Eager => true,
1277 MonoItemCollectionMode::Lazy => {
cdc7bbd5 1278 self.entry_fn.and_then(|(id, _)| id.as_local()) == Some(def_id)
dfeec247
XL
1279 || self.tcx.is_reachable_non_generic(def_id)
1280 || self
1281 .tcx
1282 .codegen_fn_attrs(def_id)
1283 .flags
1284 .contains(CodegenFnAttrFlags::RUSTC_STD_INTERNAL_SYMBOL)
1285 }
abe05a73 1286 }
abe05a73 1287 }
ff7c6d11 1288
60c5eb7d 1289 /// If `def_id` represents a root, pushes it onto the list of
ff7c6d11 1290 /// outputs. (Note that all roots must be monomorphic.)
923072b8 1291 #[instrument(skip(self), level = "debug")]
f9f354fc 1292 fn push_if_root(&mut self, def_id: LocalDefId) {
ff7c6d11
XL
1293 if self.is_root(def_id) {
1294 debug!("RootCollector::push_if_root: found root def_id={:?}", def_id);
1295
f9f354fc 1296 let instance = Instance::mono(self.tcx, def_id.to_def_id());
3dfed10e 1297 self.output.push(create_fn_mono_item(self.tcx, instance, DUMMY_SP));
ff7c6d11
XL
1298 }
1299 }
1300
1301 /// As a special case, when/if we encounter the
1302 /// `main()` function, we also have to generate a
1303 /// monomorphized copy of the start lang item based on
1304 /// the return type of `main`. This is not needed when
1305 /// the user writes their own `start` manually.
0531ce1d 1306 fn push_extra_entry_roots(&mut self) {
5e7ed085
FG
1307 let Some((main_def_id, EntryFnType::Main)) = self.entry_fn else {
1308 return;
0531ce1d
XL
1309 };
1310
3dfed10e 1311 let start_def_id = match self.tcx.lang_items().require(LangItem::Start) {
ff7c6d11
XL
1312 Ok(s) => s,
1313 Err(err) => self.tcx.sess.fatal(&err),
1314 };
0531ce1d 1315 let main_ret_ty = self.tcx.fn_sig(main_def_id).output();
ff7c6d11
XL
1316
1317 // Given that `main()` has no arguments,
1318 // then its return type cannot have
1319 // late-bound regions, since late-bound
1320 // regions must appear in the argument
1321 // listing.
5e7ed085
FG
1322 let main_ret_ty = self.tcx.normalize_erasing_regions(
1323 ty::ParamEnv::reveal_all(),
1324 main_ret_ty.no_bound_vars().unwrap(),
1325 );
ff7c6d11
XL
1326
1327 let start_instance = Instance::resolve(
1328 self.tcx,
0531ce1d 1329 ty::ParamEnv::reveal_all(),
ff7c6d11 1330 start_def_id,
dfeec247
XL
1331 self.tcx.intern_substs(&[main_ret_ty.into()]),
1332 )
f9f354fc 1333 .unwrap()
dfeec247 1334 .unwrap();
ff7c6d11 1335
3dfed10e 1336 self.output.push(create_fn_mono_item(self.tcx, start_instance, DUMMY_SP));
ff7c6d11 1337 }
abe05a73
XL
1338}
1339
f9f354fc 1340fn item_requires_monomorphization(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
3b2f2976 1341 let generics = tcx.generics_of(def_id);
94b46f34 1342 generics.requires_monomorphization(tcx)
3b2f2976
XL
1343}
1344
dc9dc135
XL
1345fn create_mono_items_for_default_impls<'tcx>(
1346 tcx: TyCtxt<'tcx>,
dfeec247 1347 item: &'tcx hir::Item<'tcx>,
923072b8 1348 output: &mut MonoItems<'tcx>,
dc9dc135 1349) {
e74abb32 1350 match item.kind {
5869c6ff
XL
1351 hir::ItemKind::Impl(ref impl_) => {
1352 for param in impl_.generics.params {
8faf50e0
XL
1353 match param.kind {
1354 hir::GenericParamKind::Lifetime { .. } => {}
dfeec247
XL
1355 hir::GenericParamKind::Type { .. } | hir::GenericParamKind::Const { .. } => {
1356 return;
9fa01778 1357 }
8faf50e0 1358 }
7453a54e
SL
1359 }
1360
dfeec247
XL
1361 debug!(
1362 "create_mono_items_for_default_impls(item={})",
6a06907d 1363 tcx.def_path_str(item.def_id.to_def_id())
dfeec247 1364 );
7453a54e 1365
6a06907d 1366 if let Some(trait_ref) = tcx.impl_trait_ref(item.def_id) {
416331ca 1367 let param_env = ty::ParamEnv::reveal_all();
dfeec247 1368 let trait_ref = tcx.normalize_erasing_regions(param_env, trait_ref);
5099ac24 1369 let overridden_methods = tcx.impl_item_implementor_ids(item.def_id);
9e0c209e 1370 for method in tcx.provided_trait_methods(trait_ref.def_id) {
5099ac24 1371 if overridden_methods.contains_key(&method.def_id) {
7453a54e
SL
1372 continue;
1373 }
1374
48663c56 1375 if tcx.generics_of(method.def_id).own_requires_monomorphization() {
7453a54e
SL
1376 continue;
1377 }
1378
dfeec247
XL
1379 let substs =
1380 InternalSubsts::for_item(tcx, method.def_id, |param, _| match param.kind {
48663c56 1381 GenericParamDefKind::Lifetime => tcx.lifetimes.re_erased.into(),
cdc7bbd5
XL
1382 GenericParamDefKind::Type { .. }
1383 | GenericParamDefKind::Const { .. } => {
94b46f34
XL
1384 trait_ref.substs[param.index as usize]
1385 }
dfeec247 1386 });
f9f354fc
XL
1387 let instance = ty::Instance::resolve(tcx, param_env, method.def_id, substs)
1388 .unwrap()
1389 .unwrap();
cc61c64b 1390
3dfed10e
XL
1391 let mono_item = create_fn_mono_item(tcx, instance, DUMMY_SP);
1392 if mono_item.node.is_instantiable(tcx) && should_codegen_locally(tcx, &instance)
dfeec247 1393 {
ff7c6d11 1394 output.push(mono_item);
7453a54e
SL
1395 }
1396 }
1397 }
1398 }
dfeec247 1399 _ => bug!(),
7453a54e
SL
1400 }
1401}
1402
60c5eb7d 1403/// Scans the miri alloc in order to find function calls, closures, and drop-glue.
923072b8 1404fn collect_miri<'tcx>(tcx: TyCtxt<'tcx>, alloc_id: AllocId, output: &mut MonoItems<'tcx>) {
f9f354fc
XL
1405 match tcx.global_alloc(alloc_id) {
1406 GlobalAlloc::Static(def_id) => {
1407 assert!(!tcx.is_thread_local_static(def_id));
dc9dc135 1408 let instance = Instance::mono(tcx, def_id);
3dfed10e 1409 if should_codegen_locally(tcx, &instance) {
dc9dc135 1410 trace!("collecting static {:?}", def_id);
f035d41b 1411 output.push(dummy_spanned(MonoItem::Static(def_id)));
94b46f34 1412 }
0531ce1d 1413 }
f9f354fc 1414 GlobalAlloc::Memory(alloc) => {
94b46f34 1415 trace!("collecting {:?} with {:#?}", alloc_id, alloc);
5e7ed085 1416 for &inner in alloc.inner().relocations().values() {
f9f354fc
XL
1417 rustc_data_structures::stack::ensure_sufficient_stack(|| {
1418 collect_miri(tcx, inner, output);
1419 });
94b46f34 1420 }
dfeec247 1421 }
f9f354fc 1422 GlobalAlloc::Function(fn_instance) => {
3dfed10e 1423 if should_codegen_locally(tcx, &fn_instance) {
94b46f34 1424 trace!("collecting {:?} with {:#?}", alloc_id, fn_instance);
3dfed10e 1425 output.push(create_fn_mono_item(tcx, fn_instance, DUMMY_SP));
94b46f34 1426 }
0531ce1d 1427 }
0531ce1d
XL
1428 }
1429}
1430
60c5eb7d 1431/// Scans the MIR in order to find function calls, closures, and drop-glue.
923072b8 1432#[instrument(skip(tcx, output), level = "debug")]
dc9dc135
XL
1433fn collect_neighbours<'tcx>(
1434 tcx: TyCtxt<'tcx>,
1435 instance: Instance<'tcx>,
923072b8 1436 output: &mut MonoItems<'tcx>,
dc9dc135
XL
1437) {
1438 let body = tcx.instance_mir(instance.def);
ba9703b0 1439 MirNeighborCollector { tcx, body: &body, output, instance }.visit_body(&body);
7453a54e 1440}
476ff2be 1441
923072b8 1442#[instrument(skip(tcx, output), level = "debug")]
74b04a01
XL
1443fn collect_const_value<'tcx>(
1444 tcx: TyCtxt<'tcx>,
1445 value: ConstValue<'tcx>,
923072b8 1446 output: &mut MonoItems<'tcx>,
74b04a01
XL
1447) {
1448 match value {
136023e0 1449 ConstValue::Scalar(Scalar::Ptr(ptr, _size)) => collect_miri(tcx, ptr.provenance, output),
74b04a01 1450 ConstValue::Slice { data: alloc, start: _, end: _ } | ConstValue::ByRef { alloc, .. } => {
5e7ed085 1451 for &id in alloc.inner().relocations().values() {
74b04a01
XL
1452 collect_miri(tcx, id, output);
1453 }
1454 }
1455 _ => {}
1456 }
1457}