-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chalkify - Tweak Clause
definition and HRTBs
#49497
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ use rustc::hir::def_id::DefId; | |
use rustc::hir::intravisit::{self, NestedVisitorMap, Visitor}; | ||
use rustc::ty::{self, TyCtxt}; | ||
use rustc::ty::subst::Substs; | ||
use rustc::traits::{QuantifierKind, Goal, DomainGoal, Clause, WhereClauseAtom}; | ||
use rustc::traits::{WhereClauseAtom, PolyDomainGoal, DomainGoal, ProgramClause, Clause}; | ||
use syntax::ast; | ||
use rustc_data_structures::sync::Lrc; | ||
|
||
|
@@ -61,36 +61,27 @@ impl<'tcx> Lower<DomainGoal<'tcx>> for ty::TypeOutlivesPredicate<'tcx> { | |
/// `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 | ||
/// example), we model them with quantified goals, e.g. as for the previous example: | ||
/// example), we model them with quantified domain goals, e.g. as for the previous example: | ||
/// `forall<'a> { T: Fn(&'a i32) }` which corresponds to something like | ||
/// `Binder<Holds(Implemented(TraitPredicate))>`. | ||
/// | ||
/// Also, if `self` does not contain generic lifetimes, we can safely drop the binder and we | ||
/// can directly lower to a leaf goal instead of a quantified goal. | ||
impl<'tcx, T> Lower<Goal<'tcx>> for ty::Binder<T> | ||
where T: Lower<DomainGoal<'tcx>> + ty::fold::TypeFoldable<'tcx> + Copy | ||
impl<'tcx, T> Lower<PolyDomainGoal<'tcx>> for ty::Binder<T> | ||
where T: Lower<DomainGoal<'tcx>> + ty::fold::TypeFoldable<'tcx> | ||
{ | ||
fn lower(&self) -> Goal<'tcx> { | ||
match self.no_late_bound_regions() { | ||
Some(p) => p.lower().into(), | ||
None => Goal::Quantified( | ||
QuantifierKind::Universal, | ||
Box::new(self.map_bound(|p| p.lower().into())) | ||
), | ||
} | ||
fn lower(&self) -> PolyDomainGoal<'tcx> { | ||
self.map_bound_ref(|p| p.lower()) | ||
} | ||
} | ||
|
||
impl<'tcx> Lower<Goal<'tcx>> for ty::Predicate<'tcx> { | ||
fn lower(&self) -> Goal<'tcx> { | ||
impl<'tcx> Lower<PolyDomainGoal<'tcx>> for ty::Predicate<'tcx> { | ||
fn lower(&self) -> PolyDomainGoal<'tcx> { | ||
use rustc::ty::Predicate::*; | ||
|
||
match self { | ||
Trait(predicate) => predicate.lower(), | ||
RegionOutlives(predicate) => predicate.lower(), | ||
TypeOutlives(predicate) => predicate.lower(), | ||
Projection(predicate) => predicate.lower(), | ||
WellFormed(ty) => DomainGoal::WellFormedTy(*ty).into(), | ||
WellFormed(ty) => ty::Binder::dummy(DomainGoal::WellFormedTy(*ty)), | ||
ObjectSafe(..) | | ||
ClosureKind(..) | | ||
Subtype(..) | | ||
|
@@ -134,13 +125,16 @@ fn program_clauses_for_trait<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefI | |
} | ||
}; | ||
// `FromEnv(Self: Trait<P1..Pn>)` | ||
let from_env = Goal::DomainGoal(DomainGoal::FromEnv(trait_pred.lower())); | ||
let from_env = DomainGoal::FromEnv(trait_pred.lower()).into(); | ||
// `Implemented(Self: Trait<P1..Pn>)` | ||
let impl_trait = DomainGoal::Holds(WhereClauseAtom::Implemented(trait_pred)); | ||
|
||
// `Implemented(Self: Trait<P1..Pn>) :- FromEnv(Self: Trait<P1..Pn>)` | ||
let clause = Clause::Implies(vec![from_env], impl_trait); | ||
Lrc::new(vec![clause]) | ||
let clause = ProgramClause { | ||
goal: impl_trait, | ||
hypotheses: vec![from_env], | ||
}; | ||
Lrc::new(vec![Clause::ForAll(ty::Binder::dummy(clause))]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could still be a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In chalk, clauses which come from the program are always fully quantified so as to account for generic parameters, e.g.: impl<T> Foo for T {} would lower to the following clause:
In rustc, there is no concept of « quantified by type », only by lifetime (and quantification by lifetime is only used for higher ranked types like in So the binder in front of the clause is indeed not useful for the moment, but you can view it as just a placeholder until rustc binders are reworked in order to account for types. |
||
} | ||
|
||
fn program_clauses_for_impl<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) | ||
|
@@ -167,8 +161,11 @@ fn program_clauses_for_impl<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId | |
let where_clauses = tcx.predicates_of(def_id).predicates.lower(); | ||
|
||
// `Implemented(A0: Trait<A1..An>) :- WC` | ||
let clause = Clause::Implies(where_clauses, trait_pred); | ||
Lrc::new(vec![clause]) | ||
let clause = ProgramClause { | ||
goal: trait_pred, | ||
hypotheses: where_clauses.into_iter().map(|wc| wc.into()).collect() | ||
}; | ||
Lrc::new(vec![Clause::ForAll(ty::Binder::dummy(clause))]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also could be |
||
} | ||
|
||
pub fn dump_program_clauses<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) { | ||
|
@@ -184,14 +181,19 @@ struct ClauseDumper<'a, 'tcx: 'a> { | |
tcx: TyCtxt<'a, 'tcx, 'tcx>, | ||
} | ||
|
||
impl <'a, 'tcx> ClauseDumper<'a, 'tcx > { | ||
impl<'a, 'tcx> ClauseDumper<'a, 'tcx > { | ||
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 { | ||
if attr.check_name("rustc_dump_program_clauses") { | ||
let clauses = self.tcx.program_clauses_for(def_id); | ||
for clause in &*clauses { | ||
self.tcx.sess.struct_span_err(attr.span, &format!("{}", clause)).emit(); | ||
let program_clause = match clause { | ||
Clause::Implies(program_clause) => program_clause, | ||
Clause::ForAll(program_clause) => program_clause.skip_binder(), | ||
}; | ||
// Skip the top-level binder for a less verbose output | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. very nit, but it seems like this comment is describing the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah definitely, I’ll fix that :) |
||
self.tcx.sess.struct_span_err(attr.span, &format!("{}", program_clause)).emit(); | ||
} | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Actually @nikomatsakis’s comment from his chalkify-engine branch :p)