]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/ty/instance.rs
Auto merge of #105592 - matthiaskrgr:rollup-1cazogq, r=matthiaskrgr
[rust.git] / compiler / rustc_middle / src / ty / instance.rs
1 use crate::middle::codegen_fn_attrs::CodegenFnAttrFlags;
2 use crate::ty::print::{FmtPrinter, Printer};
3 use crate::ty::{self, Ty, TyCtxt, TypeFoldable, TypeSuperFoldable, TypeVisitable};
4 use crate::ty::{EarlyBinder, InternalSubsts, SubstsRef};
5 use rustc_errors::ErrorGuaranteed;
6 use rustc_hir::def::Namespace;
7 use rustc_hir::def_id::{CrateNum, DefId};
8 use rustc_hir::lang_items::LangItem;
9 use rustc_macros::HashStable;
10 use rustc_middle::ty::normalize_erasing_regions::NormalizationError;
11 use rustc_span::Symbol;
12
13 use std::fmt;
14
15 /// A monomorphized `InstanceDef`.
16 ///
17 /// Monomorphization happens on-the-fly and no monomorphized MIR is ever created. Instead, this type
18 /// simply couples a potentially generic `InstanceDef` with some substs, and codegen and const eval
19 /// will do all required substitution as they run.
20 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, TyEncodable, TyDecodable)]
21 #[derive(HashStable, Lift, TypeFoldable, TypeVisitable)]
22 pub struct Instance<'tcx> {
23     pub def: InstanceDef<'tcx>,
24     pub substs: SubstsRef<'tcx>,
25 }
26
27 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
28 #[derive(TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable, Lift)]
29 pub enum InstanceDef<'tcx> {
30     /// A user-defined callable item.
31     ///
32     /// This includes:
33     /// - `fn` items
34     /// - closures
35     /// - generators
36     Item(ty::WithOptConstParam<DefId>),
37
38     /// An intrinsic `fn` item (with `"rust-intrinsic"` or `"platform-intrinsic"` ABI).
39     ///
40     /// Alongside `Virtual`, this is the only `InstanceDef` that does not have its own callable MIR.
41     /// Instead, codegen and const eval "magically" evaluate calls to intrinsics purely in the
42     /// caller.
43     Intrinsic(DefId),
44
45     /// `<T as Trait>::method` where `method` receives unsizeable `self: Self` (part of the
46     /// `unsized_locals` feature).
47     ///
48     /// The generated shim will take `Self` via `*mut Self` - conceptually this is `&owned Self` -
49     /// and dereference the argument to call the original function.
50     VTableShim(DefId),
51
52     /// `fn()` pointer where the function itself cannot be turned into a pointer.
53     ///
54     /// One example is `<dyn Trait as Trait>::fn`, where the shim contains
55     /// a virtual call, which codegen supports only via a direct call to the
56     /// `<dyn Trait as Trait>::fn` instance (an `InstanceDef::Virtual`).
57     ///
58     /// Another example is functions annotated with `#[track_caller]`, which
59     /// must have their implicit caller location argument populated for a call.
60     /// Because this is a required part of the function's ABI but can't be tracked
61     /// as a property of the function pointer, we use a single "caller location"
62     /// (the definition of the function itself).
63     ReifyShim(DefId),
64
65     /// `<fn() as FnTrait>::call_*` (generated `FnTrait` implementation for `fn()` pointers).
66     ///
67     /// `DefId` is `FnTrait::call_*`.
68     FnPtrShim(DefId, Ty<'tcx>),
69
70     /// Dynamic dispatch to `<dyn Trait as Trait>::fn`.
71     ///
72     /// This `InstanceDef` does not have callable MIR. Calls to `Virtual` instances must be
73     /// codegen'd as virtual calls through the vtable.
74     ///
75     /// If this is reified to a `fn` pointer, a `ReifyShim` is used (see `ReifyShim` above for more
76     /// details on that).
77     Virtual(DefId, usize),
78
79     /// `<[FnMut closure] as FnOnce>::call_once`.
80     ///
81     /// The `DefId` is the ID of the `call_once` method in `FnOnce`.
82     ClosureOnceShim { call_once: DefId, track_caller: bool },
83
84     /// `core::ptr::drop_in_place::<T>`.
85     ///
86     /// The `DefId` is for `core::ptr::drop_in_place`.
87     /// The `Option<Ty<'tcx>>` is either `Some(T)`, or `None` for empty drop
88     /// glue.
89     DropGlue(DefId, Option<Ty<'tcx>>),
90
91     /// Compiler-generated `<T as Clone>::clone` implementation.
92     ///
93     /// For all types that automatically implement `Copy`, a trivial `Clone` impl is provided too.
94     /// Additionally, arrays, tuples, and closures get a `Clone` shim even if they aren't `Copy`.
95     ///
96     /// The `DefId` is for `Clone::clone`, the `Ty` is the type `T` with the builtin `Clone` impl.
97     CloneShim(DefId, Ty<'tcx>),
98 }
99
100 impl<'tcx> Instance<'tcx> {
101     /// Returns the `Ty` corresponding to this `Instance`, with generic substitutions applied and
102     /// lifetimes erased, allowing a `ParamEnv` to be specified for use during normalization.
103     pub fn ty(&self, tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Ty<'tcx> {
104         let ty = tcx.type_of(self.def.def_id());
105         tcx.subst_and_normalize_erasing_regions(self.substs, param_env, ty)
106     }
107
108     /// Finds a crate that contains a monomorphization of this instance that
109     /// can be linked to from the local crate. A return value of `None` means
110     /// no upstream crate provides such an exported monomorphization.
111     ///
112     /// This method already takes into account the global `-Zshare-generics`
113     /// setting, always returning `None` if `share-generics` is off.
114     pub fn upstream_monomorphization(&self, tcx: TyCtxt<'tcx>) -> Option<CrateNum> {
115         // If we are not in share generics mode, we don't link to upstream
116         // monomorphizations but always instantiate our own internal versions
117         // instead.
118         if !tcx.sess.opts.share_generics() {
119             return None;
120         }
121
122         // If this is an item that is defined in the local crate, no upstream
123         // crate can know about it/provide a monomorphization.
124         if self.def_id().is_local() {
125             return None;
126         }
127
128         // If this a non-generic instance, it cannot be a shared monomorphization.
129         self.substs.non_erasable_generics().next()?;
130
131         match self.def {
132             InstanceDef::Item(def) => tcx
133                 .upstream_monomorphizations_for(def.did)
134                 .and_then(|monos| monos.get(&self.substs).cloned()),
135             InstanceDef::DropGlue(_, Some(_)) => tcx.upstream_drop_glue_for(self.substs),
136             _ => None,
137         }
138     }
139 }
140
141 impl<'tcx> InstanceDef<'tcx> {
142     #[inline]
143     pub fn def_id(self) -> DefId {
144         match self {
145             InstanceDef::Item(def) => def.did,
146             InstanceDef::VTableShim(def_id)
147             | InstanceDef::ReifyShim(def_id)
148             | InstanceDef::FnPtrShim(def_id, _)
149             | InstanceDef::Virtual(def_id, _)
150             | InstanceDef::Intrinsic(def_id)
151             | InstanceDef::ClosureOnceShim { call_once: def_id, track_caller: _ }
152             | InstanceDef::DropGlue(def_id, _)
153             | InstanceDef::CloneShim(def_id, _) => def_id,
154         }
155     }
156
157     /// Returns the `DefId` of instances which might not require codegen locally.
158     pub fn def_id_if_not_guaranteed_local_codegen(self) -> Option<DefId> {
159         match self {
160             ty::InstanceDef::Item(def) => Some(def.did),
161             ty::InstanceDef::DropGlue(def_id, Some(_)) => Some(def_id),
162             InstanceDef::VTableShim(..)
163             | InstanceDef::ReifyShim(..)
164             | InstanceDef::FnPtrShim(..)
165             | InstanceDef::Virtual(..)
166             | InstanceDef::Intrinsic(..)
167             | InstanceDef::ClosureOnceShim { .. }
168             | InstanceDef::DropGlue(..)
169             | InstanceDef::CloneShim(..) => None,
170         }
171     }
172
173     #[inline]
174     pub fn with_opt_param(self) -> ty::WithOptConstParam<DefId> {
175         match self {
176             InstanceDef::Item(def) => def,
177             InstanceDef::VTableShim(def_id)
178             | InstanceDef::ReifyShim(def_id)
179             | InstanceDef::FnPtrShim(def_id, _)
180             | InstanceDef::Virtual(def_id, _)
181             | InstanceDef::Intrinsic(def_id)
182             | InstanceDef::ClosureOnceShim { call_once: def_id, track_caller: _ }
183             | InstanceDef::DropGlue(def_id, _)
184             | InstanceDef::CloneShim(def_id, _) => ty::WithOptConstParam::unknown(def_id),
185         }
186     }
187
188     #[inline]
189     pub fn get_attrs(&self, tcx: TyCtxt<'tcx>, attr: Symbol) -> ty::Attributes<'tcx> {
190         tcx.get_attrs(self.def_id(), attr)
191     }
192
193     /// Returns `true` if the LLVM version of this instance is unconditionally
194     /// marked with `inline`. This implies that a copy of this instance is
195     /// generated in every codegen unit.
196     /// Note that this is only a hint. See the documentation for
197     /// `generates_cgu_internal_copy` for more information.
198     pub fn requires_inline(&self, tcx: TyCtxt<'tcx>) -> bool {
199         use rustc_hir::definitions::DefPathData;
200         let def_id = match *self {
201             ty::InstanceDef::Item(def) => def.did,
202             ty::InstanceDef::DropGlue(_, Some(_)) => return false,
203             _ => return true,
204         };
205         matches!(
206             tcx.def_key(def_id).disambiguated_data.data,
207             DefPathData::Ctor | DefPathData::ClosureExpr
208         )
209     }
210
211     /// Returns `true` if the machine code for this instance is instantiated in
212     /// each codegen unit that references it.
213     /// Note that this is only a hint! The compiler can globally decide to *not*
214     /// do this in order to speed up compilation. CGU-internal copies are
215     /// only exist to enable inlining. If inlining is not performed (e.g. at
216     /// `-Copt-level=0`) then the time for generating them is wasted and it's
217     /// better to create a single copy with external linkage.
218     pub fn generates_cgu_internal_copy(&self, tcx: TyCtxt<'tcx>) -> bool {
219         if self.requires_inline(tcx) {
220             return true;
221         }
222         if let ty::InstanceDef::DropGlue(.., Some(ty)) = *self {
223             // Drop glue generally wants to be instantiated at every codegen
224             // unit, but without an #[inline] hint. We should make this
225             // available to normal end-users.
226             if tcx.sess.opts.incremental.is_none() {
227                 return true;
228             }
229             // When compiling with incremental, we can generate a *lot* of
230             // codegen units. Including drop glue into all of them has a
231             // considerable compile time cost.
232             //
233             // We include enums without destructors to allow, say, optimizing
234             // drops of `Option::None` before LTO. We also respect the intent of
235             // `#[inline]` on `Drop::drop` implementations.
236             return ty.ty_adt_def().map_or(true, |adt_def| {
237                 adt_def.destructor(tcx).map_or_else(
238                     || adt_def.is_enum(),
239                     |dtor| tcx.codegen_fn_attrs(dtor.did).requests_inline(),
240                 )
241             });
242         }
243         tcx.codegen_fn_attrs(self.def_id()).requests_inline()
244     }
245
246     pub fn requires_caller_location(&self, tcx: TyCtxt<'_>) -> bool {
247         match *self {
248             InstanceDef::Item(ty::WithOptConstParam { did: def_id, .. })
249             | InstanceDef::Virtual(def_id, _) => {
250                 tcx.body_codegen_attrs(def_id).flags.contains(CodegenFnAttrFlags::TRACK_CALLER)
251             }
252             InstanceDef::ClosureOnceShim { call_once: _, track_caller } => track_caller,
253             _ => false,
254         }
255     }
256
257     /// Returns `true` when the MIR body associated with this instance should be monomorphized
258     /// by its users (e.g. codegen or miri) by substituting the `substs` from `Instance` (see
259     /// `Instance::substs_for_mir_body`).
260     ///
261     /// Otherwise, returns `false` only for some kinds of shims where the construction of the MIR
262     /// body should perform necessary substitutions.
263     pub fn has_polymorphic_mir_body(&self) -> bool {
264         match *self {
265             InstanceDef::CloneShim(..)
266             | InstanceDef::FnPtrShim(..)
267             | InstanceDef::DropGlue(_, Some(_)) => false,
268             InstanceDef::ClosureOnceShim { .. }
269             | InstanceDef::DropGlue(..)
270             | InstanceDef::Item(_)
271             | InstanceDef::Intrinsic(..)
272             | InstanceDef::ReifyShim(..)
273             | InstanceDef::Virtual(..)
274             | InstanceDef::VTableShim(..) => true,
275         }
276     }
277 }
278
279 fn fmt_instance(
280     f: &mut fmt::Formatter<'_>,
281     instance: &Instance<'_>,
282     type_length: rustc_session::Limit,
283 ) -> fmt::Result {
284     ty::tls::with(|tcx| {
285         let substs = tcx.lift(instance.substs).expect("could not lift for printing");
286
287         let s = FmtPrinter::new_with_limit(tcx, Namespace::ValueNS, type_length)
288             .print_def_path(instance.def_id(), substs)?
289             .into_buffer();
290         f.write_str(&s)
291     })?;
292
293     match instance.def {
294         InstanceDef::Item(_) => Ok(()),
295         InstanceDef::VTableShim(_) => write!(f, " - shim(vtable)"),
296         InstanceDef::ReifyShim(_) => write!(f, " - shim(reify)"),
297         InstanceDef::Intrinsic(_) => write!(f, " - intrinsic"),
298         InstanceDef::Virtual(_, num) => write!(f, " - virtual#{}", num),
299         InstanceDef::FnPtrShim(_, ty) => write!(f, " - shim({})", ty),
300         InstanceDef::ClosureOnceShim { .. } => write!(f, " - shim"),
301         InstanceDef::DropGlue(_, None) => write!(f, " - shim(None)"),
302         InstanceDef::DropGlue(_, Some(ty)) => write!(f, " - shim(Some({}))", ty),
303         InstanceDef::CloneShim(_, ty) => write!(f, " - shim({})", ty),
304     }
305 }
306
307 pub struct ShortInstance<'a, 'tcx>(pub &'a Instance<'tcx>, pub usize);
308
309 impl<'a, 'tcx> fmt::Display for ShortInstance<'a, 'tcx> {
310     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
311         fmt_instance(f, self.0, rustc_session::Limit(self.1))
312     }
313 }
314
315 impl<'tcx> fmt::Display for Instance<'tcx> {
316     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
317         ty::tls::with(|tcx| fmt_instance(f, self, tcx.type_length_limit()))
318     }
319 }
320
321 impl<'tcx> Instance<'tcx> {
322     pub fn new(def_id: DefId, substs: SubstsRef<'tcx>) -> Instance<'tcx> {
323         assert!(
324             !substs.has_escaping_bound_vars(),
325             "substs of instance {:?} not normalized for codegen: {:?}",
326             def_id,
327             substs
328         );
329         Instance { def: InstanceDef::Item(ty::WithOptConstParam::unknown(def_id)), substs }
330     }
331
332     pub fn mono(tcx: TyCtxt<'tcx>, def_id: DefId) -> Instance<'tcx> {
333         let substs = InternalSubsts::for_item(tcx, def_id, |param, _| match param.kind {
334             ty::GenericParamDefKind::Lifetime => tcx.lifetimes.re_erased.into(),
335             ty::GenericParamDefKind::Type { .. } => {
336                 bug!("Instance::mono: {:?} has type parameters", def_id)
337             }
338             ty::GenericParamDefKind::Const { .. } => {
339                 bug!("Instance::mono: {:?} has const parameters", def_id)
340             }
341         });
342
343         Instance::new(def_id, substs)
344     }
345
346     #[inline]
347     pub fn def_id(&self) -> DefId {
348         self.def.def_id()
349     }
350
351     /// Resolves a `(def_id, substs)` pair to an (optional) instance -- most commonly,
352     /// this is used to find the precise code that will run for a trait method invocation,
353     /// if known.
354     ///
355     /// Returns `Ok(None)` if we cannot resolve `Instance` to a specific instance.
356     /// For example, in a context like this,
357     ///
358     /// ```ignore (illustrative)
359     /// fn foo<T: Debug>(t: T) { ... }
360     /// ```
361     ///
362     /// trying to resolve `Debug::fmt` applied to `T` will yield `Ok(None)`, because we do not
363     /// know what code ought to run. (Note that this setting is also affected by the
364     /// `RevealMode` in the parameter environment.)
365     ///
366     /// Presuming that coherence and type-check have succeeded, if this method is invoked
367     /// in a monomorphic context (i.e., like during codegen), then it is guaranteed to return
368     /// `Ok(Some(instance))`.
369     ///
370     /// Returns `Err(ErrorGuaranteed)` when the `Instance` resolution process
371     /// couldn't complete due to errors elsewhere - this is distinct
372     /// from `Ok(None)` to avoid misleading diagnostics when an error
373     /// has already been/will be emitted, for the original cause
374     pub fn resolve(
375         tcx: TyCtxt<'tcx>,
376         param_env: ty::ParamEnv<'tcx>,
377         def_id: DefId,
378         substs: SubstsRef<'tcx>,
379     ) -> Result<Option<Instance<'tcx>>, ErrorGuaranteed> {
380         Instance::resolve_opt_const_arg(
381             tcx,
382             param_env,
383             ty::WithOptConstParam::unknown(def_id),
384             substs,
385         )
386     }
387
388     pub fn expect_resolve(
389         tcx: TyCtxt<'tcx>,
390         param_env: ty::ParamEnv<'tcx>,
391         def_id: DefId,
392         substs: SubstsRef<'tcx>,
393     ) -> Instance<'tcx> {
394         match ty::Instance::resolve(tcx, param_env, def_id, substs) {
395             Ok(Some(instance)) => instance,
396             _ => bug!(
397                 "failed to resolve instance for {}",
398                 tcx.def_path_str_with_substs(def_id, substs)
399             ),
400         }
401     }
402
403     // This should be kept up to date with `resolve`.
404     pub fn resolve_opt_const_arg(
405         tcx: TyCtxt<'tcx>,
406         param_env: ty::ParamEnv<'tcx>,
407         def: ty::WithOptConstParam<DefId>,
408         substs: SubstsRef<'tcx>,
409     ) -> Result<Option<Instance<'tcx>>, ErrorGuaranteed> {
410         // All regions in the result of this query are erased, so it's
411         // fine to erase all of the input regions.
412
413         // HACK(eddyb) erase regions in `substs` first, so that `param_env.and(...)`
414         // below is more likely to ignore the bounds in scope (e.g. if the only
415         // generic parameters mentioned by `substs` were lifetime ones).
416         let substs = tcx.erase_regions(substs);
417
418         // FIXME(eddyb) should this always use `param_env.with_reveal_all()`?
419         if let Some((did, param_did)) = def.as_const_arg() {
420             tcx.resolve_instance_of_const_arg(
421                 tcx.erase_regions(param_env.and((did, param_did, substs))),
422             )
423         } else {
424             tcx.resolve_instance(tcx.erase_regions(param_env.and((def.did, substs))))
425         }
426     }
427
428     pub fn resolve_for_fn_ptr(
429         tcx: TyCtxt<'tcx>,
430         param_env: ty::ParamEnv<'tcx>,
431         def_id: DefId,
432         substs: SubstsRef<'tcx>,
433     ) -> Option<Instance<'tcx>> {
434         debug!("resolve(def_id={:?}, substs={:?})", def_id, substs);
435         // Use either `resolve_closure` or `resolve_for_vtable`
436         assert!(!tcx.is_closure(def_id), "Called `resolve_for_fn_ptr` on closure: {:?}", def_id);
437         Instance::resolve(tcx, param_env, def_id, substs).ok().flatten().map(|mut resolved| {
438             match resolved.def {
439                 InstanceDef::Item(def) if resolved.def.requires_caller_location(tcx) => {
440                     debug!(" => fn pointer created for function with #[track_caller]");
441                     resolved.def = InstanceDef::ReifyShim(def.did);
442                 }
443                 InstanceDef::Virtual(def_id, _) => {
444                     debug!(" => fn pointer created for virtual call");
445                     resolved.def = InstanceDef::ReifyShim(def_id);
446                 }
447                 _ => {}
448             }
449
450             resolved
451         })
452     }
453
454     pub fn resolve_for_vtable(
455         tcx: TyCtxt<'tcx>,
456         param_env: ty::ParamEnv<'tcx>,
457         def_id: DefId,
458         substs: SubstsRef<'tcx>,
459     ) -> Option<Instance<'tcx>> {
460         debug!("resolve_for_vtable(def_id={:?}, substs={:?})", def_id, substs);
461         let fn_sig = tcx.fn_sig(def_id);
462         let is_vtable_shim = !fn_sig.inputs().skip_binder().is_empty()
463             && fn_sig.input(0).skip_binder().is_param(0)
464             && tcx.generics_of(def_id).has_self;
465         if is_vtable_shim {
466             debug!(" => associated item with unsizeable self: Self");
467             Some(Instance { def: InstanceDef::VTableShim(def_id), substs })
468         } else {
469             Instance::resolve(tcx, param_env, def_id, substs).ok().flatten().map(|mut resolved| {
470                 match resolved.def {
471                     InstanceDef::Item(def) => {
472                         // We need to generate a shim when we cannot guarantee that
473                         // the caller of a trait object method will be aware of
474                         // `#[track_caller]` - this ensures that the caller
475                         // and callee ABI will always match.
476                         //
477                         // The shim is generated when all of these conditions are met:
478                         //
479                         // 1) The underlying method expects a caller location parameter
480                         // in the ABI
481                         if resolved.def.requires_caller_location(tcx)
482                             // 2) The caller location parameter comes from having `#[track_caller]`
483                             // on the implementation, and *not* on the trait method.
484                             && !tcx.should_inherit_track_caller(def.did)
485                             // If the method implementation comes from the trait definition itself
486                             // (e.g. `trait Foo { #[track_caller] my_fn() { /* impl */ } }`),
487                             // then we don't need to generate a shim. This check is needed because
488                             // `should_inherit_track_caller` returns `false` if our method
489                             // implementation comes from the trait block, and not an impl block
490                             && !matches!(
491                                 tcx.opt_associated_item(def.did),
492                                 Some(ty::AssocItem {
493                                     container: ty::AssocItemContainer::TraitContainer,
494                                     ..
495                                 })
496                             )
497                         {
498                             if tcx.is_closure(def.did) {
499                                 debug!(" => vtable fn pointer created for closure with #[track_caller]: {:?} for method {:?} {:?}",
500                                        def.did, def_id, substs);
501
502                                 // Create a shim for the `FnOnce/FnMut/Fn` method we are calling
503                                 // - unlike functions, invoking a closure always goes through a
504                                 // trait.
505                                 resolved = Instance { def: InstanceDef::ReifyShim(def_id), substs };
506                             } else {
507                                 debug!(
508                                     " => vtable fn pointer created for function with #[track_caller]: {:?}", def.did
509                                 );
510                                 resolved.def = InstanceDef::ReifyShim(def.did);
511                             }
512                         }
513                     }
514                     InstanceDef::Virtual(def_id, _) => {
515                         debug!(" => vtable fn pointer created for virtual call");
516                         resolved.def = InstanceDef::ReifyShim(def_id);
517                     }
518                     _ => {}
519                 }
520
521                 resolved
522             })
523         }
524     }
525
526     pub fn resolve_closure(
527         tcx: TyCtxt<'tcx>,
528         def_id: DefId,
529         substs: ty::SubstsRef<'tcx>,
530         requested_kind: ty::ClosureKind,
531     ) -> Option<Instance<'tcx>> {
532         let actual_kind = substs.as_closure().kind();
533
534         match needs_fn_once_adapter_shim(actual_kind, requested_kind) {
535             Ok(true) => Instance::fn_once_adapter_instance(tcx, def_id, substs),
536             _ => Some(Instance::new(def_id, substs)),
537         }
538     }
539
540     pub fn resolve_drop_in_place(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> ty::Instance<'tcx> {
541         let def_id = tcx.require_lang_item(LangItem::DropInPlace, None);
542         let substs = tcx.intern_substs(&[ty.into()]);
543         Instance::expect_resolve(tcx, ty::ParamEnv::reveal_all(), def_id, substs)
544     }
545
546     #[instrument(level = "debug", skip(tcx), ret)]
547     pub fn fn_once_adapter_instance(
548         tcx: TyCtxt<'tcx>,
549         closure_did: DefId,
550         substs: ty::SubstsRef<'tcx>,
551     ) -> Option<Instance<'tcx>> {
552         let fn_once = tcx.require_lang_item(LangItem::FnOnce, None);
553         let call_once = tcx
554             .associated_items(fn_once)
555             .in_definition_order()
556             .find(|it| it.kind == ty::AssocKind::Fn)
557             .unwrap()
558             .def_id;
559         let track_caller =
560             tcx.codegen_fn_attrs(closure_did).flags.contains(CodegenFnAttrFlags::TRACK_CALLER);
561         let def = ty::InstanceDef::ClosureOnceShim { call_once, track_caller };
562
563         let self_ty = tcx.mk_closure(closure_did, substs);
564
565         let sig = substs.as_closure().sig();
566         let sig =
567             tcx.try_normalize_erasing_late_bound_regions(ty::ParamEnv::reveal_all(), sig).ok()?;
568         assert_eq!(sig.inputs().len(), 1);
569         let substs = tcx.mk_substs_trait(self_ty, [sig.inputs()[0].into()]);
570
571         debug!(?self_ty, ?sig);
572         Some(Instance { def, substs })
573     }
574
575     /// Depending on the kind of `InstanceDef`, the MIR body associated with an
576     /// instance is expressed in terms of the generic parameters of `self.def_id()`, and in other
577     /// cases the MIR body is expressed in terms of the types found in the substitution array.
578     /// In the former case, we want to substitute those generic types and replace them with the
579     /// values from the substs when monomorphizing the function body. But in the latter case, we
580     /// don't want to do that substitution, since it has already been done effectively.
581     ///
582     /// This function returns `Some(substs)` in the former case and `None` otherwise -- i.e., if
583     /// this function returns `None`, then the MIR body does not require substitution during
584     /// codegen.
585     fn substs_for_mir_body(&self) -> Option<SubstsRef<'tcx>> {
586         if self.def.has_polymorphic_mir_body() { Some(self.substs) } else { None }
587     }
588
589     pub fn subst_mir<T>(&self, tcx: TyCtxt<'tcx>, v: &T) -> T
590     where
591         T: TypeFoldable<'tcx> + Copy,
592     {
593         if let Some(substs) = self.substs_for_mir_body() {
594             EarlyBinder(*v).subst(tcx, substs)
595         } else {
596             *v
597         }
598     }
599
600     #[inline(always)]
601     pub fn subst_mir_and_normalize_erasing_regions<T>(
602         &self,
603         tcx: TyCtxt<'tcx>,
604         param_env: ty::ParamEnv<'tcx>,
605         v: T,
606     ) -> T
607     where
608         T: TypeFoldable<'tcx> + Clone,
609     {
610         if let Some(substs) = self.substs_for_mir_body() {
611             tcx.subst_and_normalize_erasing_regions(substs, param_env, v)
612         } else {
613             tcx.normalize_erasing_regions(param_env, v)
614         }
615     }
616
617     #[inline(always)]
618     pub fn try_subst_mir_and_normalize_erasing_regions<T>(
619         &self,
620         tcx: TyCtxt<'tcx>,
621         param_env: ty::ParamEnv<'tcx>,
622         v: T,
623     ) -> Result<T, NormalizationError<'tcx>>
624     where
625         T: TypeFoldable<'tcx> + Clone,
626     {
627         if let Some(substs) = self.substs_for_mir_body() {
628             tcx.try_subst_and_normalize_erasing_regions(substs, param_env, v)
629         } else {
630             tcx.try_normalize_erasing_regions(param_env, v)
631         }
632     }
633
634     /// Returns a new `Instance` where generic parameters in `instance.substs` are replaced by
635     /// identity parameters if they are determined to be unused in `instance.def`.
636     pub fn polymorphize(self, tcx: TyCtxt<'tcx>) -> Self {
637         debug!("polymorphize: running polymorphization analysis");
638         if !tcx.sess.opts.unstable_opts.polymorphize {
639             return self;
640         }
641
642         let polymorphized_substs = polymorphize(tcx, self.def, self.substs);
643         debug!("polymorphize: self={:?} polymorphized_substs={:?}", self, polymorphized_substs);
644         Self { def: self.def, substs: polymorphized_substs }
645     }
646 }
647
648 fn polymorphize<'tcx>(
649     tcx: TyCtxt<'tcx>,
650     instance: ty::InstanceDef<'tcx>,
651     substs: SubstsRef<'tcx>,
652 ) -> SubstsRef<'tcx> {
653     debug!("polymorphize({:?}, {:?})", instance, substs);
654     let unused = tcx.unused_generic_params(instance);
655     debug!("polymorphize: unused={:?}", unused);
656
657     // If this is a closure or generator then we need to handle the case where another closure
658     // from the function is captured as an upvar and hasn't been polymorphized. In this case,
659     // the unpolymorphized upvar closure would result in a polymorphized closure producing
660     // multiple mono items (and eventually symbol clashes).
661     let def_id = instance.def_id();
662     let upvars_ty = if tcx.is_closure(def_id) {
663         Some(substs.as_closure().tupled_upvars_ty())
664     } else if tcx.type_of(def_id).is_generator() {
665         Some(substs.as_generator().tupled_upvars_ty())
666     } else {
667         None
668     };
669     let has_upvars = upvars_ty.map_or(false, |ty| !ty.tuple_fields().is_empty());
670     debug!("polymorphize: upvars_ty={:?} has_upvars={:?}", upvars_ty, has_upvars);
671
672     struct PolymorphizationFolder<'tcx> {
673         tcx: TyCtxt<'tcx>,
674     }
675
676     impl<'tcx> ty::TypeFolder<'tcx> for PolymorphizationFolder<'tcx> {
677         fn tcx<'a>(&'a self) -> TyCtxt<'tcx> {
678             self.tcx
679         }
680
681         fn fold_ty(&mut self, ty: Ty<'tcx>) -> Ty<'tcx> {
682             debug!("fold_ty: ty={:?}", ty);
683             match *ty.kind() {
684                 ty::Closure(def_id, substs) => {
685                     let polymorphized_substs = polymorphize(
686                         self.tcx,
687                         ty::InstanceDef::Item(ty::WithOptConstParam::unknown(def_id)),
688                         substs,
689                     );
690                     if substs == polymorphized_substs {
691                         ty
692                     } else {
693                         self.tcx.mk_closure(def_id, polymorphized_substs)
694                     }
695                 }
696                 ty::Generator(def_id, substs, movability) => {
697                     let polymorphized_substs = polymorphize(
698                         self.tcx,
699                         ty::InstanceDef::Item(ty::WithOptConstParam::unknown(def_id)),
700                         substs,
701                     );
702                     if substs == polymorphized_substs {
703                         ty
704                     } else {
705                         self.tcx.mk_generator(def_id, polymorphized_substs, movability)
706                     }
707                 }
708                 _ => ty.super_fold_with(self),
709             }
710         }
711     }
712
713     InternalSubsts::for_item(tcx, def_id, |param, _| {
714         let is_unused = unused.contains(param.index).unwrap_or(false);
715         debug!("polymorphize: param={:?} is_unused={:?}", param, is_unused);
716         match param.kind {
717             // Upvar case: If parameter is a type parameter..
718             ty::GenericParamDefKind::Type { .. } if
719                 // ..and has upvars..
720                 has_upvars &&
721                 // ..and this param has the same type as the tupled upvars..
722                 upvars_ty == Some(substs[param.index as usize].expect_ty()) => {
723                     // ..then double-check that polymorphization marked it used..
724                     debug_assert!(!is_unused);
725                     // ..and polymorphize any closures/generators captured as upvars.
726                     let upvars_ty = upvars_ty.unwrap();
727                     let polymorphized_upvars_ty = upvars_ty.fold_with(
728                         &mut PolymorphizationFolder { tcx });
729                     debug!("polymorphize: polymorphized_upvars_ty={:?}", polymorphized_upvars_ty);
730                     ty::GenericArg::from(polymorphized_upvars_ty)
731                 },
732
733             // Simple case: If parameter is a const or type parameter..
734             ty::GenericParamDefKind::Const { .. } | ty::GenericParamDefKind::Type { .. } if
735                 // ..and is within range and unused..
736                 unused.contains(param.index).unwrap_or(false) =>
737                     // ..then use the identity for this parameter.
738                     tcx.mk_param_from_def(param),
739
740             // Otherwise, use the parameter as before.
741             _ => substs[param.index as usize],
742         }
743     })
744 }
745
746 fn needs_fn_once_adapter_shim(
747     actual_closure_kind: ty::ClosureKind,
748     trait_closure_kind: ty::ClosureKind,
749 ) -> Result<bool, ()> {
750     match (actual_closure_kind, trait_closure_kind) {
751         (ty::ClosureKind::Fn, ty::ClosureKind::Fn)
752         | (ty::ClosureKind::FnMut, ty::ClosureKind::FnMut)
753         | (ty::ClosureKind::FnOnce, ty::ClosureKind::FnOnce) => {
754             // No adapter needed.
755             Ok(false)
756         }
757         (ty::ClosureKind::Fn, ty::ClosureKind::FnMut) => {
758             // The closure fn `llfn` is a `fn(&self, ...)`.  We want a
759             // `fn(&mut self, ...)`. In fact, at codegen time, these are
760             // basically the same thing, so we can just return llfn.
761             Ok(false)
762         }
763         (ty::ClosureKind::Fn | ty::ClosureKind::FnMut, ty::ClosureKind::FnOnce) => {
764             // The closure fn `llfn` is a `fn(&self, ...)` or `fn(&mut
765             // self, ...)`.  We want a `fn(self, ...)`. We can produce
766             // this by doing something like:
767             //
768             //     fn call_once(self, ...) { call_mut(&self, ...) }
769             //     fn call_once(mut self, ...) { call_mut(&mut self, ...) }
770             //
771             // These are both the same at codegen time.
772             Ok(true)
773         }
774         (ty::ClosureKind::FnMut | ty::ClosureKind::FnOnce, _) => Err(()),
775     }
776 }