rust/src/librustc_traits/lowering.rs

442 lines
14 KiB
Rust
Raw Normal View History

2018-03-10 05:44:33 -06:00
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-03-14 08:45:30 -05:00
use rustc::hir::def_id::DefId;
use rustc::hir::intravisit::{self, NestedVisitorMap, Visitor};
use rustc::hir::map::definitions::DefPathData;
use rustc::hir::{self, ImplPolarity};
use rustc::traits::{Clause, Clauses, DomainGoal, Goal, PolyDomainGoal, ProgramClause,
2018-06-04 06:57:56 -05:00
WhereClause, FromEnv, WellFormed};
use rustc::ty::subst::Substs;
2018-04-10 04:56:35 -05:00
use rustc::ty::{self, Slice, TyCtxt};
use rustc_data_structures::fx::FxHashSet;
use std::mem;
2018-04-10 04:56:35 -05:00
use syntax::ast;
2018-03-10 05:44:33 -06:00
use std::iter;
crate trait Lower<T> {
2018-06-04 06:57:56 -05:00
/// Lower a rustc construct (e.g. `ty::TraitPredicate`) to a chalk-like type.
2018-03-10 05:44:33 -06:00
fn lower(&self) -> T;
}
2018-04-10 04:56:35 -05:00
impl<T, U> Lower<Vec<U>> for Vec<T>
where
T: Lower<U>,
{
2018-03-10 05:44:33 -06:00
fn lower(&self) -> Vec<U> {
self.iter().map(|item| item.lower()).collect()
}
}
2018-06-04 06:57:56 -05:00
impl<'tcx> Lower<WhereClause<'tcx>> for ty::TraitPredicate<'tcx> {
fn lower(&self) -> WhereClause<'tcx> {
WhereClause::Implemented(*self)
2018-03-10 05:44:33 -06:00
}
}
2018-06-04 06:57:56 -05:00
impl<'tcx> Lower<WhereClause<'tcx>> for ty::ProjectionPredicate<'tcx> {
fn lower(&self) -> WhereClause<'tcx> {
WhereClause::ProjectionEq(*self)
2018-03-10 05:44:33 -06:00
}
}
2018-06-04 06:57:56 -05:00
impl<'tcx> Lower<WhereClause<'tcx>> for ty::RegionOutlivesPredicate<'tcx> {
fn lower(&self) -> WhereClause<'tcx> {
WhereClause::RegionOutlives(*self)
2018-03-10 05:44:33 -06:00
}
}
2018-06-04 06:57:56 -05:00
impl<'tcx> Lower<WhereClause<'tcx>> for ty::TypeOutlivesPredicate<'tcx> {
fn lower(&self) -> WhereClause<'tcx> {
WhereClause::TypeOutlives(*self)
2018-03-14 07:38:03 -05:00
}
}
2018-06-04 06:57:56 -05:00
impl<'tcx, T> Lower<DomainGoal<'tcx>> for T
where
T: Lower<WhereClause<'tcx>>,
{
2018-03-14 07:38:03 -05:00
fn lower(&self) -> DomainGoal<'tcx> {
2018-06-04 06:57:56 -05:00
DomainGoal::Holds(self.lower())
2018-03-14 07:38:03 -05:00
}
}
2018-03-14 09:19:17 -05:00
/// `ty::Binder` is used for wrapping a rustc construction possibly containing generic
/// lifetimes, e.g. `for<'a> T: Fn(&'a i32)`. Instead of representing higher-ranked things
/// in that leaf-form (i.e. `Holds(Implemented(Binder<TraitPredicate>))` in the previous
2018-03-28 07:13:08 -05:00
/// example), we model them with quantified domain goals, e.g. as for the previous example:
2018-03-14 09:19:17 -05:00
/// `forall<'a> { T: Fn(&'a i32) }` which corresponds to something like
/// `Binder<Holds(Implemented(TraitPredicate))>`.
2018-03-28 07:13:08 -05:00
impl<'tcx, T> Lower<PolyDomainGoal<'tcx>> for ty::Binder<T>
2018-04-10 04:56:35 -05:00
where
T: Lower<DomainGoal<'tcx>> + ty::fold::TypeFoldable<'tcx>,
2018-03-14 07:38:03 -05:00
{
2018-03-28 07:13:08 -05:00
fn lower(&self) -> PolyDomainGoal<'tcx> {
self.map_bound_ref(|p| p.lower())
2018-03-14 07:38:03 -05:00
}
}
2018-03-10 05:44:33 -06:00
2018-03-28 07:13:08 -05:00
impl<'tcx> Lower<PolyDomainGoal<'tcx>> for ty::Predicate<'tcx> {
fn lower(&self) -> PolyDomainGoal<'tcx> {
2018-06-04 06:57:56 -05:00
use rustc::ty::Predicate;
2018-03-14 07:38:03 -05:00
match self {
2018-06-04 06:57:56 -05:00
Predicate::Trait(predicate) => predicate.lower(),
Predicate::RegionOutlives(predicate) => predicate.lower(),
Predicate::TypeOutlives(predicate) => predicate.lower(),
Predicate::Projection(predicate) => predicate.lower(),
Predicate::WellFormed(ty) => ty::Binder::dummy(
DomainGoal::WellFormed(WellFormed::Ty(*ty))
),
Predicate::ObjectSafe(..) |
Predicate::ClosureKind(..) |
Predicate::Subtype(..) |
Predicate::ConstEvaluatable(..) => {
2018-04-10 04:56:35 -05:00
unimplemented!()
}
2018-03-10 05:44:33 -06:00
}
}
}
/// Transforms an existing goal into a FromEnv goal.
///
/// Used for lowered where clauses (see rustc guide).
trait IntoFromEnvGoal {
fn into_from_env_goal(self) -> Self;
}
impl<'tcx> IntoFromEnvGoal for DomainGoal<'tcx> {
fn into_from_env_goal(self) -> DomainGoal<'tcx> {
2018-06-04 06:57:56 -05:00
use self::WhereClause::*;
match self {
2018-06-04 06:57:56 -05:00
DomainGoal::Holds(Implemented(trait_ref)) => DomainGoal::FromEnv(
FromEnv::Trait(trait_ref)
),
other => other,
}
}
}
2018-04-10 04:56:35 -05:00
crate fn program_clauses_for<'a, 'tcx>(
tcx: TyCtxt<'a, 'tcx, 'tcx>,
def_id: DefId,
) -> Clauses<'tcx> {
match tcx.def_key(def_id).disambiguated_data.data {
DefPathData::Trait(_) => program_clauses_for_trait(tcx, def_id),
DefPathData::Impl => program_clauses_for_impl(tcx, def_id),
DefPathData::AssocTypeInImpl(..) => program_clauses_for_associated_type_value(tcx, def_id),
_ => Slice::empty(),
}
}
2018-03-14 09:19:17 -05:00
crate fn program_clauses_for_env<'a, 'tcx>(
tcx: TyCtxt<'a, 'tcx, 'tcx>,
param_env: ty::ParamEnv<'tcx>,
) -> Clauses<'tcx> {
debug!("program_clauses_for_env(param_env={:?})", param_env);
let mut last_round = FxHashSet();
last_round.extend(
param_env
.caller_bounds
.iter()
.flat_map(|&p| predicate_def_id(p)),
);
let mut closure = last_round.clone();
let mut next_round = FxHashSet();
while !last_round.is_empty() {
next_round.extend(
last_round
.drain()
.flat_map(|def_id| {
tcx.predicates_of(def_id)
.instantiate_identity(tcx)
.predicates
})
.flat_map(|p| predicate_def_id(p))
.filter(|&def_id| closure.insert(def_id)),
);
mem::swap(&mut next_round, &mut last_round);
}
debug!("program_clauses_for_env: closure = {:#?}", closure);
return tcx.mk_clauses(
closure
.into_iter()
.flat_map(|def_id| tcx.program_clauses_for(def_id).iter().cloned()),
);
/// Given that `predicate` is in the environment, returns the
/// def-id of something (e.g., a trait, associated item, etc)
/// whose predicates can also be assumed to be true. We will
/// compute the transitive closure of such things.
fn predicate_def_id<'tcx>(predicate: ty::Predicate<'tcx>) -> Option<DefId> {
match predicate {
ty::Predicate::Trait(predicate) => Some(predicate.def_id()),
ty::Predicate::Projection(projection) => Some(projection.item_def_id()),
ty::Predicate::WellFormed(..)
| ty::Predicate::RegionOutlives(..)
| ty::Predicate::TypeOutlives(..)
| ty::Predicate::ObjectSafe(..)
| ty::Predicate::ClosureKind(..)
| ty::Predicate::Subtype(..)
| ty::Predicate::ConstEvaluatable(..) => None,
}
2018-03-10 05:44:33 -06:00
}
}
2018-04-10 04:56:35 -05:00
fn program_clauses_for_trait<'a, 'tcx>(
tcx: TyCtxt<'a, 'tcx, 'tcx>,
def_id: DefId,
) -> Clauses<'tcx> {
// `trait Trait<P1..Pn> where WC { .. } // P0 == Self`
// Rule Implemented-From-Env (see rustc guide)
//
// ```
// forall<Self, P1..Pn> {
// Implemented(Self: Trait<P1..Pn>) :- FromEnv(Self: Trait<P1..Pn>)
// }
// ```
// `Self: Trait<P1..Pn>`
let trait_pred = ty::TraitPredicate {
trait_ref: ty::TraitRef {
def_id,
2018-04-10 04:56:35 -05:00
substs: Substs::identity_for_item(tcx, def_id),
},
};
2018-06-04 06:57:56 -05:00
// `Implemented(Self: Trait<P1..Pn>)`
2018-06-04 06:57:56 -05:00
let impl_trait: DomainGoal = trait_pred.lower();
// `FromEnv(Self: Trait<P1..Pn>)`
let from_env = impl_trait.into_from_env_goal().into_goal();
// `Implemented(Self: Trait<P1..Pn>) :- FromEnv(Self: Trait<P1..Pn>)`
2018-06-04 06:57:56 -05:00
let hypotheses = tcx.intern_goals(&[from_env]);
let implemented_from_env = ProgramClause {
2018-03-28 07:13:08 -05:00
goal: impl_trait,
2018-06-04 06:57:56 -05:00
hypotheses,
2018-03-28 07:13:08 -05:00
};
2018-06-04 06:57:56 -05:00
2018-04-10 04:56:35 -05:00
let clauses = iter::once(Clause::ForAll(ty::Binder::dummy(implemented_from_env)));
// Rule Implied-Bound-From-Trait
//
// For each where clause WC:
// ```
// forall<Self, P1..Pn> {
// FromEnv(WC) :- FromEnv(Self: Trait<P1..Pn)
// }
// ```
// `FromEnv(WC) :- FromEnv(Self: Trait<P1..Pn>)`, for each where clause WC
// FIXME: Remove the [1..] slice; this is a hack because the query
// predicates_of currently includes the trait itself (`Self: Trait<P1..Pn>`).
let where_clauses = &tcx.predicates_of(def_id).predicates;
2018-04-10 04:56:35 -05:00
let implied_bound_clauses = where_clauses[1..]
.into_iter()
2018-06-04 06:57:56 -05:00
.map(|wc| wc.lower())
2018-06-04 06:57:56 -05:00
// `FromEnv(WC) :- FromEnv(Self: Trait<P1..Pn>)`
.map(|wc| wc.map_bound(|goal| ProgramClause {
goal: goal.into_from_env_goal(),
hypotheses,
}))
2018-06-04 06:57:56 -05:00
.map(Clause::ForAll);
tcx.mk_clauses(clauses.chain(implied_bound_clauses))
}
fn program_clauses_for_impl<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> Clauses<'tcx> {
2018-03-10 05:44:33 -06:00
if let ImplPolarity::Negative = tcx.impl_polarity(def_id) {
return Slice::empty();
2018-03-10 05:44:33 -06:00
}
2018-03-15 17:20:06 -05:00
// Rule Implemented-From-Impl (see rustc guide)
2018-03-15 13:27:00 -05:00
//
// `impl<P0..Pn> Trait<A1..An> for A0 where WC { .. }`
//
// ```
// forall<P0..Pn> {
// Implemented(A0: Trait<A1..An>) :- WC
// }
// ```
2018-03-10 05:44:33 -06:00
2018-06-04 06:57:56 -05:00
let trait_ref = tcx.impl_trait_ref(def_id).expect("not an impl");
// `Implemented(A0: Trait<A1..An>)`
let trait_pred = ty::TraitPredicate { trait_ref }.lower();
2018-06-04 06:57:56 -05:00
2018-04-10 04:56:35 -05:00
// `WC`
2018-03-10 05:44:33 -06:00
let where_clauses = tcx.predicates_of(def_id).predicates.lower();
2018-04-10 04:56:35 -05:00
// `Implemented(A0: Trait<A1..An>) :- WC`
2018-03-28 07:13:08 -05:00
let clause = ProgramClause {
goal: trait_pred,
hypotheses: tcx.mk_goals(
2018-04-10 04:56:35 -05:00
where_clauses
.into_iter()
.map(|wc| Goal::from_poly_domain_goal(wc, tcx)),
),
2018-03-28 07:13:08 -05:00
};
tcx.intern_clauses(&[Clause::ForAll(ty::Binder::dummy(clause))])
2018-03-10 05:44:33 -06:00
}
2018-04-06 19:04:28 -05:00
pub fn program_clauses_for_associated_type_value<'a, 'tcx>(
tcx: TyCtxt<'a, 'tcx, 'tcx>,
item_id: DefId,
) -> Clauses<'tcx> {
// Rule Normalize-From-Impl (see rustc guide)
//
// ```impl<P0..Pn> Trait<A1..An> for A0
// {
2018-06-04 06:57:56 -05:00
// type AssocType<Pn+1..Pm> = T;
// }```
//
// ```
// forall<P0..Pm> {
// forall<Pn+1..Pm> {
// Normalize(<A0 as Trait<A1..An>>::AssocType<Pn+1..Pm> -> T) :-
2018-06-04 06:57:56 -05:00
// Implemented(A0: Trait<A1..An>)
// }
// }
// ```
let item = tcx.associated_item(item_id);
debug_assert_eq!(item.kind, ty::AssociatedKind::Type);
2018-06-04 06:57:56 -05:00
let impl_id = match item.container {
ty::AssociatedItemContainer::ImplContainer(impl_id) => impl_id,
_ => bug!("not an impl container"),
};
2018-06-04 06:57:56 -05:00
// `A0 as Trait<A1..An>`
let trait_ref = tcx.impl_trait_ref(impl_id).unwrap();
2018-06-04 06:57:56 -05:00
// `T`
let ty = tcx.type_of(item_id);
2018-06-04 06:57:56 -05:00
// `Implemented(A0: Trait<A1..An>)`
let trait_implemented = ty::Binder::dummy(ty::TraitPredicate { trait_ref }.lower());
2018-06-04 06:57:56 -05:00
// `Implemented(A0: Trait<A1..An>)`
let hypotheses = vec![trait_implemented];
// `<A0 as Trait<A1..An>>::AssocType<Pn+1..Pm>`
let projection_ty = ty::ProjectionTy::from_ref_and_name(tcx, trait_ref, item.name);
2018-06-04 06:57:56 -05:00
// `Normalize(<A0 as Trait<A1..An>>::AssocType<Pn+1..Pm> -> T)`
let normalize_goal = DomainGoal::Normalize(ty::ProjectionPredicate { projection_ty, ty });
2018-06-04 06:57:56 -05:00
// `Normalize(... -> T) :- ...`
2018-04-11 07:27:00 -05:00
let clause = ProgramClause {
goal: normalize_goal,
2018-04-15 16:49:41 -05:00
hypotheses: tcx.mk_goals(
2018-06-04 06:57:56 -05:00
hypotheses
2018-04-10 04:56:35 -05:00
.into_iter()
.map(|wc| Goal::from_poly_domain_goal(wc, tcx)),
2018-04-15 16:49:41 -05:00
),
2018-04-11 07:27:00 -05:00
};
tcx.intern_clauses(&[Clause::ForAll(ty::Binder::dummy(clause))])
}
2018-03-10 05:44:33 -06:00
pub fn dump_program_clauses<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
if !tcx.features().rustc_attrs {
return;
}
let mut visitor = ClauseDumper { tcx };
2018-04-10 04:56:35 -05:00
tcx.hir
.krate()
.visit_all_item_likes(&mut visitor.as_deep_visitor());
2018-03-10 05:44:33 -06:00
}
struct ClauseDumper<'a, 'tcx: 'a> {
tcx: TyCtxt<'a, 'tcx, 'tcx>,
}
2018-04-10 04:56:35 -05:00
impl<'a, 'tcx> ClauseDumper<'a, 'tcx> {
2018-03-10 05:44:33 -06:00
fn process_attrs(&mut self, node_id: ast::NodeId, attrs: &[ast::Attribute]) {
let def_id = self.tcx.hir.local_def_id(node_id);
for attr in attrs {
let mut clauses = None;
2018-03-10 05:44:33 -06:00
if attr.check_name("rustc_dump_program_clauses") {
clauses = Some(self.tcx.program_clauses_for(def_id));
}
if attr.check_name("rustc_dump_env_program_clauses") {
let param_env = self.tcx.param_env(def_id);
clauses = Some(self.tcx.program_clauses_for_env(param_env));
}
if let Some(clauses) = clauses {
let mut err = self.tcx
.sess
.struct_span_err(attr.span, "program clause dump");
2018-04-17 05:06:33 -05:00
let mut strings: Vec<_> = clauses
.iter()
.map(|clause| {
// Skip the top-level binder for a less verbose output
let program_clause = match clause {
Clause::Implies(program_clause) => program_clause,
Clause::ForAll(program_clause) => program_clause.skip_binder(),
};
format!("{}", program_clause)
})
.collect();
strings.sort();
for string in strings {
err.note(&string);
2018-03-10 05:44:33 -06:00
}
err.emit();
2018-03-10 05:44:33 -06:00
}
}
}
}
impl<'a, 'tcx> Visitor<'tcx> for ClauseDumper<'a, 'tcx> {
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
NestedVisitorMap::OnlyBodies(&self.tcx.hir)
}
fn visit_item(&mut self, item: &'tcx hir::Item) {
self.process_attrs(item.id, &item.attrs);
intravisit::walk_item(self, item);
}
fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem) {
self.process_attrs(trait_item.id, &trait_item.attrs);
intravisit::walk_trait_item(self, trait_item);
}
fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem) {
self.process_attrs(impl_item.id, &impl_item.attrs);
intravisit::walk_impl_item(self, impl_item);
}
fn visit_struct_field(&mut self, s: &'tcx hir::StructField) {
self.process_attrs(s.id, &s.attrs);
intravisit::walk_struct_field(self, s);
}
}