rust/compiler/rustc_hir_analysis/src/variance/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

157 lines
5.6 KiB
Rust
Raw Normal View History

2020-03-05 21:07:42 +00:00
//! Module for inferring the variance of type and lifetime parameters. See the [rustc dev guide]
//! chapter for more info.
//!
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/variance.html
use rustc_arena::DroplessArena;
2022-03-30 10:25:23 +00:00
use rustc_hir::def::DefKind;
2022-10-23 14:40:14 +00:00
use rustc_hir::def_id::{DefId, LocalDefId};
2020-03-29 15:19:48 +00:00
use rustc_middle::ty::query::Providers;
2022-10-23 14:40:14 +00:00
use rustc_middle::ty::{self, CrateVariancesMap, TyCtxt, TypeSuperVisitable, TypeVisitable};
use std::ops::ControlFlow;
/// Defines the `TermsContext` basically houses an arena where we can
/// allocate terms.
mod terms;
/// Code to gather up constraints.
mod constraints;
/// Code to solve constraints and write out the results.
mod solve;
/// Code to write unit tests of variance.
pub mod test;
/// Code for transforming variances.
mod xform;
pub fn provide(providers: &mut Providers) {
*providers = Providers { variances_of, crate_variances, ..*providers };
}
2021-05-11 10:29:52 +00:00
fn crate_variances(tcx: TyCtxt<'_>, (): ()) -> CrateVariancesMap<'_> {
let arena = DroplessArena::default();
let terms_cx = terms::determine_parameters_to_be_inferred(tcx, &arena);
let constraints_cx = constraints::add_constraints_from_crate(terms_cx);
2020-03-27 19:26:20 +00:00
solve::solve_constraints(constraints_cx)
}
2019-06-21 21:49:03 +00:00
fn variances_of(tcx: TyCtxt<'_>, item_def_id: DefId) -> &[ty::Variance] {
2022-06-28 19:46:42 +00:00
// Skip items with no generics - there's nothing to infer in them.
if tcx.generics_of(item_def_id).count() == 0 {
return &[];
}
2022-03-30 10:25:23 +00:00
match tcx.def_kind(item_def_id) {
DefKind::Fn
| DefKind::AssocFn
| DefKind::Enum
| DefKind::Struct
| DefKind::Union
| DefKind::Variant
| DefKind::Ctor(..) => {}
2022-10-23 14:40:14 +00:00
DefKind::OpaqueTy | DefKind::ImplTraitPlaceholder => {
return variance_of_opaque(tcx, item_def_id.expect_local());
}
2022-03-30 10:25:23 +00:00
_ => {
// Variance not relevant.
span_bug!(tcx.def_span(item_def_id), "asked to compute variance for wrong kind of item")
}
}
// Everything else must be inferred.
2021-05-11 10:29:52 +00:00
let crate_map = tcx.crate_variances(());
crate_map.variances.get(&item_def_id).copied().unwrap_or(&[])
}
2022-10-23 14:40:14 +00:00
#[instrument(level = "trace", skip(tcx), ret)]
fn variance_of_opaque(tcx: TyCtxt<'_>, item_def_id: LocalDefId) -> &[ty::Variance] {
let generics = tcx.generics_of(item_def_id);
// Opaque types may only use regions that are bound. So for
// ```rust
// type Foo<'a, 'b, 'c> = impl Trait<'a> + 'b;
// ```
// we may not use `'c` in the hidden type.
struct OpaqueTypeLifetimeCollector {
variances: Vec<ty::Variance>,
}
impl<'tcx> ty::TypeVisitor<'tcx> for OpaqueTypeLifetimeCollector {
#[instrument(level = "trace", skip(self), ret)]
fn visit_region(&mut self, r: ty::Region<'tcx>) -> ControlFlow<Self::BreakTy> {
if let ty::RegionKind::ReEarlyBound(ebr) = r.kind() {
self.variances[ebr.index as usize] = ty::Invariant;
}
r.super_visit_with(self)
}
}
2022-11-14 18:21:21 +00:00
// By default, RPIT are invariant wrt type and const generics, but they are bivariant wrt
2022-10-23 14:40:14 +00:00
// lifetime generics.
let mut variances: Vec<_> = std::iter::repeat(ty::Invariant).take(generics.count()).collect();
// Mark all lifetimes from parent generics as unused (Bivariant).
// This will be overridden later if required.
{
let mut generics = generics;
while let Some(def_id) = generics.parent {
generics = tcx.generics_of(def_id);
for param in &generics.params {
match param.kind {
ty::GenericParamDefKind::Lifetime => {
variances[param.index as usize] = ty::Bivariant;
}
ty::GenericParamDefKind::Type { .. }
| ty::GenericParamDefKind::Const { .. } => {}
}
}
}
}
let mut collector = OpaqueTypeLifetimeCollector { variances };
let id_substs = ty::InternalSubsts::identity_for_item(tcx, item_def_id.to_def_id());
for pred in tcx.bound_explicit_item_bounds(item_def_id.to_def_id()).transpose_iter() {
let pred = pred.map_bound(|(pred, _)| *pred).subst(tcx, id_substs);
debug!(?pred);
// We only ignore opaque type substs if the opaque type is the outermost type.
// The opaque type may be nested within itself via recursion in e.g.
// type Foo<'a> = impl PartialEq<Foo<'a>>;
// which thus mentions `'a` and should thus accept hidden types that borrow 'a
// instead of requiring an additional `+ 'a`.
match pred.kind().skip_binder() {
2022-11-24 21:14:58 +00:00
ty::PredicateKind::Clause(ty::Clause::Trait(ty::TraitPredicate {
2022-10-23 14:40:14 +00:00
trait_ref: ty::TraitRef { def_id: _, substs },
constness: _,
polarity: _,
2022-11-24 21:14:58 +00:00
})) => {
2022-10-23 14:40:14 +00:00
for subst in &substs[1..] {
subst.visit_with(&mut collector);
}
}
2022-11-24 21:14:58 +00:00
ty::PredicateKind::Clause(ty::Clause::Projection(ty::ProjectionPredicate {
2022-10-23 14:40:14 +00:00
projection_ty: ty::ProjectionTy { substs, item_def_id: _ },
term,
2022-11-24 21:14:58 +00:00
})) => {
2022-10-23 14:40:14 +00:00
for subst in &substs[1..] {
subst.visit_with(&mut collector);
}
term.visit_with(&mut collector);
}
2022-11-24 21:14:58 +00:00
ty::PredicateKind::Clause(ty::Clause::TypeOutlives(ty::OutlivesPredicate(
_,
region,
))) => {
2022-10-23 14:40:14 +00:00
region.visit_with(&mut collector);
}
_ => {
pred.visit_with(&mut collector);
}
}
}
tcx.arena.alloc_from_iter(collector.variances.into_iter())
}