2014-09-12 10:53:35 -04:00
|
|
|
// Copyright 2014 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-02-25 15:24:14 -06:00
|
|
|
//! Trait Resolution. See [rustc guide] for more info on how this works.
|
|
|
|
//!
|
|
|
|
//! [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/trait-resolution.html
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2014-11-06 00:05:53 -08:00
|
|
|
pub use self::SelectionError::*;
|
|
|
|
pub use self::FulfillmentErrorCode::*;
|
|
|
|
pub use self::Vtable::*;
|
|
|
|
pub use self::ObligationCauseCode::*;
|
|
|
|
|
2016-11-07 13:25:06 -05:00
|
|
|
use hir;
|
2016-03-29 12:54:26 +03:00
|
|
|
use hir::def_id::DefId;
|
2017-12-01 05:07:52 -05:00
|
|
|
use infer::outlives::env::OutlivesEnvironment;
|
2017-08-31 21:37:38 +03:00
|
|
|
use middle::region;
|
2018-01-16 09:31:48 +01:00
|
|
|
use middle::const_val::ConstEvalErr;
|
2016-08-08 23:39:49 +03:00
|
|
|
use ty::subst::Substs;
|
2017-08-16 18:45:54 +02:00
|
|
|
use ty::{self, AdtKind, Ty, TyCtxt, TypeFoldable, ToPredicate};
|
2017-03-10 05:21:27 -05:00
|
|
|
use ty::error::{ExpectedFound, TypeError};
|
|
|
|
use infer::{InferCtxt};
|
2015-09-24 19:58:00 +03:00
|
|
|
|
2018-02-27 17:11:14 +01:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
2014-12-17 14:16:28 -05:00
|
|
|
use std::rc::Rc;
|
2018-03-10 12:44:33 +01:00
|
|
|
use std::convert::From;
|
2014-09-12 10:53:35 -04:00
|
|
|
use syntax::ast;
|
2016-06-21 18:08:13 -04:00
|
|
|
use syntax_pos::{Span, DUMMY_SP};
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2017-07-23 22:30:47 +09:00
|
|
|
pub use self::coherence::{orphan_check, overlapping_impls, OrphanCheckErr, OverlapResult};
|
2018-03-11 10:29:22 +08:00
|
|
|
pub use self::fulfill::{FulfillmentContext, PendingPredicateObligation};
|
2016-05-21 08:18:52 -04:00
|
|
|
pub use self::project::MismatchedProjectionTypes;
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 16:16:55 -05:00
|
|
|
pub use self::project::{normalize, normalize_projection_type, poly_project_and_unify_type};
|
|
|
|
pub use self::project::{ProjectionCache, ProjectionCacheSnapshot, Reveal, Normalized};
|
2014-12-15 21:11:09 -05:00
|
|
|
pub use self::object_safety::ObjectSafetyViolation;
|
|
|
|
pub use self::object_safety::MethodViolationCode;
|
2017-08-30 23:40:43 +03:00
|
|
|
pub use self::on_unimplemented::{OnUnimplementedDirective, OnUnimplementedNote};
|
2016-02-23 12:47:09 -08:00
|
|
|
pub use self::select::{EvaluationCache, SelectionContext, SelectionCache};
|
2017-07-23 22:30:47 +09:00
|
|
|
pub use self::select::IntercrateAmbiguityCause;
|
2017-08-29 09:25:25 -07:00
|
|
|
pub use self::specialize::{OverlapError, specialization_graph, translate_substs};
|
2017-03-08 01:41:26 +02:00
|
|
|
pub use self::specialize::{SpecializesCache, find_associated_item};
|
2018-03-11 14:01:01 +00:00
|
|
|
pub use self::engine::TraitEngine;
|
2014-12-07 11:10:48 -05:00
|
|
|
pub use self::util::elaborate_predicates;
|
2014-09-12 10:53:35 -04:00
|
|
|
pub use self::util::supertraits;
|
|
|
|
pub use self::util::Supertraits;
|
2015-03-26 15:51:11 -04:00
|
|
|
pub use self::util::supertrait_def_ids;
|
|
|
|
pub use self::util::SupertraitDefIds;
|
2014-12-06 01:30:41 -05:00
|
|
|
pub use self::util::transitive_bounds;
|
2014-09-12 10:53:35 -04:00
|
|
|
|
|
|
|
mod coherence;
|
2018-02-12 16:00:15 -05:00
|
|
|
pub mod error_reporting;
|
2018-03-11 10:29:22 +08:00
|
|
|
mod engine;
|
2014-09-12 10:53:35 -04:00
|
|
|
mod fulfill;
|
2014-12-17 14:16:28 -05:00
|
|
|
mod project;
|
2014-12-15 21:11:09 -05:00
|
|
|
mod object_safety;
|
2017-08-30 12:35:48 +03:00
|
|
|
mod on_unimplemented;
|
2014-09-12 10:53:35 -04:00
|
|
|
mod select;
|
2015-12-22 10:20:47 -08:00
|
|
|
mod specialize;
|
2015-09-14 12:53:53 +03:00
|
|
|
mod structural_impls;
|
2017-04-17 12:35:53 -04:00
|
|
|
pub mod trans;
|
2014-09-12 10:53:35 -04:00
|
|
|
mod util;
|
|
|
|
|
2018-02-25 10:58:54 -05:00
|
|
|
pub mod query;
|
|
|
|
|
2017-11-23 19:05:23 +02:00
|
|
|
// Whether to enable bug compatibility with issue #43355
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
2017-11-22 23:01:51 +02:00
|
|
|
pub enum IntercrateMode {
|
|
|
|
Issue43355,
|
|
|
|
Fixed
|
|
|
|
}
|
|
|
|
|
2014-11-24 20:06:06 -05:00
|
|
|
/// An `Obligation` represents some trait reference (e.g. `int:Eq`) for
|
|
|
|
/// which the vtable must be found. The process of finding a vtable is
|
|
|
|
/// called "resolving" the `Obligation`. This process consists of
|
|
|
|
/// either identifying an `impl` (e.g., `impl Eq for int`) that
|
|
|
|
/// provides the required vtable, or else finding a bound that is in
|
|
|
|
/// scope. The eventual result is usually a `Selection` (defined below).
|
2018-02-18 21:23:20 +09:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash)]
|
2014-12-05 00:03:03 -05:00
|
|
|
pub struct Obligation<'tcx, T> {
|
2017-07-15 06:47:30 -04:00
|
|
|
/// Why do we have to prove this thing?
|
2014-09-29 22:11:30 +03:00
|
|
|
pub cause: ObligationCause<'tcx>,
|
2017-07-15 06:47:30 -04:00
|
|
|
|
|
|
|
/// In which environment should we prove this thing?
|
2017-05-23 04:19:47 -04:00
|
|
|
pub param_env: ty::ParamEnv<'tcx>,
|
2017-07-15 06:47:30 -04:00
|
|
|
|
|
|
|
/// What are we trying to prove?
|
2014-12-17 16:00:34 -05:00
|
|
|
pub predicate: T,
|
2017-07-15 06:47:30 -04:00
|
|
|
|
|
|
|
/// If we started proving this as a result of trying to prove
|
|
|
|
/// something else, track the total depth to ensure termination.
|
|
|
|
/// If this goes over a certain threshold, we abort compilation --
|
|
|
|
/// in such cases, we can not say whether or not the predicate
|
|
|
|
/// holds for certain. Stupid halting problem. Such a drag.
|
|
|
|
pub recursion_depth: usize,
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-12-07 11:10:48 -05:00
|
|
|
pub type PredicateObligation<'tcx> = Obligation<'tcx, ty::Predicate<'tcx>>;
|
2014-12-17 14:16:28 -05:00
|
|
|
pub type TraitObligation<'tcx> = Obligation<'tcx, ty::PolyTraitPredicate<'tcx>>;
|
2014-12-05 00:03:03 -05:00
|
|
|
|
2014-11-24 20:06:06 -05:00
|
|
|
/// Why did we incur this obligation? Used for error reporting.
|
2018-02-18 21:23:20 +09:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub struct ObligationCause<'tcx> {
|
2014-09-12 10:53:35 -04:00
|
|
|
pub span: Span,
|
2014-12-05 01:59:17 -05:00
|
|
|
|
2014-12-11 04:35:51 -05:00
|
|
|
// The id of the fn body that triggered this obligation. This is
|
|
|
|
// used for region obligations to determine the precise
|
|
|
|
// environment in which the region obligation should be evaluated
|
|
|
|
// (in particular, closures can add new assumptions). See the
|
|
|
|
// field `region_obligations` of the `FulfillmentContext` for more
|
|
|
|
// information.
|
2014-12-06 01:30:41 -05:00
|
|
|
pub body_id: ast::NodeId,
|
2014-12-05 01:59:17 -05:00
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
pub code: ObligationCauseCode<'tcx>
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2018-01-28 13:42:49 -08:00
|
|
|
impl<'tcx> ObligationCause<'tcx> {
|
|
|
|
pub fn span<'a, 'gcx>(&self, tcx: &TyCtxt<'a, 'gcx, 'tcx>) -> Span {
|
|
|
|
match self.code {
|
|
|
|
ObligationCauseCode::CompareImplMethodObligation { .. } |
|
|
|
|
ObligationCauseCode::MainFunctionType |
|
|
|
|
ObligationCauseCode::StartFunctionType => {
|
|
|
|
tcx.sess.codemap().def_span(self.span)
|
|
|
|
}
|
|
|
|
_ => self.span,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 21:23:20 +09:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub enum ObligationCauseCode<'tcx> {
|
2014-09-12 10:53:35 -04:00
|
|
|
/// Not well classified or should be obvious from span.
|
|
|
|
MiscObligation,
|
|
|
|
|
2016-04-22 01:46:23 +03:00
|
|
|
/// A slice or array is WF only if `T: Sized`
|
2015-08-07 10:28:51 -04:00
|
|
|
SliceOrArrayElem,
|
|
|
|
|
2016-04-22 01:46:23 +03:00
|
|
|
/// A tuple is WF only if its middle elements are Sized
|
|
|
|
TupleElem,
|
|
|
|
|
2015-08-07 10:28:51 -04:00
|
|
|
/// This is the trait reference from the given projection
|
|
|
|
ProjectionWf(ty::ProjectionTy<'tcx>),
|
|
|
|
|
2014-09-12 10:53:35 -04:00
|
|
|
/// In an impl of trait X for type Y, type Y must
|
|
|
|
/// also implement all supertraits of X.
|
2015-08-16 06:32:28 -04:00
|
|
|
ItemObligation(DefId),
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2015-08-07 10:28:51 -04:00
|
|
|
/// A type like `&'a T` is WF only if `T: 'a`.
|
|
|
|
ReferenceOutlivesReferent(Ty<'tcx>),
|
|
|
|
|
2016-10-14 10:09:59 -04:00
|
|
|
/// A type like `Box<Foo<'a> + 'b>` is WF only if `'b: 'a`.
|
2017-04-20 04:45:53 -04:00
|
|
|
ObjectTypeBound(Ty<'tcx>, ty::Region<'tcx>),
|
2016-10-14 10:09:59 -04:00
|
|
|
|
2014-09-12 10:53:35 -04:00
|
|
|
/// Obligation incurred due to an object cast.
|
2014-09-29 22:11:30 +03:00
|
|
|
ObjectCastObligation(/* Object type */ Ty<'tcx>),
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
// Various cases where expressions must be sized/copy/etc:
|
|
|
|
/// L = X implies that L is Sized
|
|
|
|
AssignmentLhsSized,
|
2017-06-08 14:46:46 +09:00
|
|
|
/// (x1, .., xn) must be Sized
|
|
|
|
TupleInitializerSized,
|
2017-06-24 00:57:39 -07:00
|
|
|
/// S { ... } must be Sized
|
|
|
|
StructInitializerSized,
|
|
|
|
/// Type of each variable must be Sized
|
|
|
|
VariableType(ast::NodeId),
|
|
|
|
/// Return type must be Sized
|
|
|
|
SizedReturnType,
|
2018-01-28 20:23:49 +01:00
|
|
|
/// Yield type must be Sized
|
|
|
|
SizedYieldType,
|
2017-06-24 00:57:39 -07:00
|
|
|
/// [T,..n] --> T must be Copy
|
|
|
|
RepeatVec,
|
|
|
|
|
|
|
|
/// Types of fields (other than the last) in a struct must be sized.
|
2017-08-16 18:45:54 +02:00
|
|
|
FieldSized(AdtKind),
|
2014-11-07 16:26:26 -05:00
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// Constant expressions must be sized.
|
2016-06-24 03:20:37 +03:00
|
|
|
ConstSized,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// static items must have `Sync` type
|
2014-12-06 11:39:25 -05:00
|
|
|
SharedStatic,
|
|
|
|
|
2014-12-17 14:16:28 -05:00
|
|
|
BuiltinDerivedObligation(DerivedObligationCause<'tcx>),
|
2014-12-06 11:39:25 -05:00
|
|
|
|
2014-12-17 14:16:28 -05:00
|
|
|
ImplDerivedObligation(DerivedObligationCause<'tcx>),
|
2015-01-14 13:43:17 -08:00
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// error derived when matching traits/impls; see ObligationCause for more details
|
2016-10-05 10:17:14 -04:00
|
|
|
CompareImplMethodObligation {
|
|
|
|
item_name: ast::Name,
|
|
|
|
impl_item_def_id: DefId,
|
2016-10-12 16:38:58 -04:00
|
|
|
trait_item_def_id: DefId,
|
2016-10-05 10:17:14 -04:00
|
|
|
},
|
2016-11-07 13:25:06 -05:00
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// Checking that this expression can be assigned where it needs to be
|
2016-11-07 13:25:06 -05:00
|
|
|
// FIXME(eddyb) #11161 is the original Expr required?
|
|
|
|
ExprAssignable,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// Computing common supertype in the arms of a match expression
|
2016-11-07 13:25:06 -05:00
|
|
|
MatchExpressionArm { arm_span: Span,
|
|
|
|
source: hir::MatchSource },
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// Computing common supertype in an if expression
|
2016-11-07 13:25:06 -05:00
|
|
|
IfExpression,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// Computing common supertype of an if expression with no else counter-part
|
2016-11-07 13:25:06 -05:00
|
|
|
IfExpressionWithNoElse,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// `main` has wrong type
|
2016-11-07 13:25:06 -05:00
|
|
|
MainFunctionType,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// `start` has wrong type
|
2016-11-07 13:25:06 -05:00
|
|
|
StartFunctionType,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// intrinsic has wrong type
|
2016-11-07 13:25:06 -05:00
|
|
|
IntrinsicType,
|
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// method receiver
|
2016-11-07 13:25:06 -05:00
|
|
|
MethodReceiver,
|
2017-03-17 09:37:18 -04:00
|
|
|
|
2017-06-24 00:57:39 -07:00
|
|
|
/// `return` with no expression
|
2017-03-17 09:37:18 -04:00
|
|
|
ReturnNoExpression,
|
2017-06-24 00:57:39 -07:00
|
|
|
|
|
|
|
/// `return` with an expression
|
|
|
|
ReturnType(ast::NodeId),
|
|
|
|
|
|
|
|
/// Block implicit return
|
|
|
|
BlockTailExpression(ast::NodeId),
|
2014-12-17 14:16:28 -05:00
|
|
|
}
|
|
|
|
|
2018-02-18 21:23:20 +09:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
|
2014-12-17 14:16:28 -05:00
|
|
|
pub struct DerivedObligationCause<'tcx> {
|
2014-12-30 08:59:33 -05:00
|
|
|
/// The trait reference of the parent obligation that led to the
|
|
|
|
/// current obligation. Note that only trait obligations lead to
|
|
|
|
/// derived obligations, so we just store the trait reference here
|
|
|
|
/// directly.
|
2014-12-17 14:16:28 -05:00
|
|
|
parent_trait_ref: ty::PolyTraitRef<'tcx>,
|
|
|
|
|
|
|
|
/// The parent trait had this cause
|
|
|
|
parent_code: Rc<ObligationCauseCode<'tcx>>
|
2014-09-22 14:47:06 -04:00
|
|
|
}
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2015-06-03 02:14:45 +03:00
|
|
|
pub type Obligations<'tcx, O> = Vec<Obligation<'tcx, O>>;
|
|
|
|
pub type PredicateObligations<'tcx> = Vec<PredicateObligation<'tcx>>;
|
|
|
|
pub type TraitObligations<'tcx> = Vec<TraitObligation<'tcx>>;
|
librustc: Make `Copy` opt-in.
This change makes the compiler no longer infer whether types (structures
and enumerations) implement the `Copy` trait (and thus are implicitly
copyable). Rather, you must implement `Copy` yourself via `impl Copy for
MyType {}`.
A new warning has been added, `missing_copy_implementations`, to warn
you if a non-generic public type has been added that could have
implemented `Copy` but didn't.
For convenience, you may *temporarily* opt out of this behavior by using
`#![feature(opt_out_copy)]`. Note though that this feature gate will never be
accepted and will be removed by the time that 1.0 is released, so you should
transition your code away from using it.
This breaks code like:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
Change this code to:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
impl Copy for Point2D {}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
This is the backwards-incompatible part of #13231.
Part of RFC #3.
[breaking-change]
2014-12-05 17:01:33 -08:00
|
|
|
|
2018-03-14 15:19:17 +01:00
|
|
|
/// The following types:
|
|
|
|
/// * `WhereClauseAtom`
|
|
|
|
/// * `DomainGoal`
|
|
|
|
/// * `Goal`
|
|
|
|
/// * `Clause`
|
|
|
|
/// are used for representing the trait system in the form of
|
|
|
|
/// logic programming clauses. They are part of the interface
|
|
|
|
/// for the chalk SLG solver.
|
2018-03-10 12:44:33 +01:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub enum WhereClauseAtom<'tcx> {
|
2018-03-14 13:38:03 +01:00
|
|
|
Implemented(ty::TraitPredicate<'tcx>),
|
|
|
|
ProjectionEq(ty::ProjectionPredicate<'tcx>),
|
2018-03-10 12:44:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub enum DomainGoal<'tcx> {
|
|
|
|
Holds(WhereClauseAtom<'tcx>),
|
|
|
|
WellFormed(WhereClauseAtom<'tcx>),
|
|
|
|
FromEnv(WhereClauseAtom<'tcx>),
|
|
|
|
WellFormedTy(Ty<'tcx>),
|
|
|
|
FromEnvTy(Ty<'tcx>),
|
2018-03-14 13:38:03 +01:00
|
|
|
RegionOutlives(ty::RegionOutlivesPredicate<'tcx>),
|
|
|
|
TypeOutlives(ty::TypeOutlivesPredicate<'tcx>),
|
2018-03-10 12:44:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub enum QuantifierKind {
|
|
|
|
Universal,
|
|
|
|
Existential,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
|
|
|
|
pub enum Goal<'tcx> {
|
2018-03-14 15:19:17 +01:00
|
|
|
// FIXME: use interned refs instead of `Box`
|
2018-03-14 13:38:03 +01:00
|
|
|
Implies(Vec<Clause<'tcx>>, Box<Goal<'tcx>>),
|
2018-03-10 12:44:33 +01:00
|
|
|
And(Box<Goal<'tcx>>, Box<Goal<'tcx>>),
|
|
|
|
Not(Box<Goal<'tcx>>),
|
2018-03-14 13:38:03 +01:00
|
|
|
DomainGoal(DomainGoal<'tcx>),
|
2018-03-10 12:44:33 +01:00
|
|
|
Quantified(QuantifierKind, Box<ty::Binder<Goal<'tcx>>>)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> From<DomainGoal<'tcx>> for Goal<'tcx> {
|
|
|
|
fn from(domain_goal: DomainGoal<'tcx>) -> Self {
|
2018-03-14 13:38:03 +01:00
|
|
|
Goal::DomainGoal(domain_goal)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> From<DomainGoal<'tcx>> for Clause<'tcx> {
|
|
|
|
fn from(domain_goal: DomainGoal<'tcx>) -> Self {
|
|
|
|
Clause::DomainGoal(domain_goal)
|
2018-03-10 12:44:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-14 15:19:17 +01:00
|
|
|
/// This matches the definition from Page 7 of "A Proof Procedure for the Logic of Hereditary
|
|
|
|
/// Harrop Formulas".
|
2018-03-10 12:44:33 +01:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
|
2018-03-14 13:38:03 +01:00
|
|
|
pub enum Clause<'tcx> {
|
2018-03-14 15:19:17 +01:00
|
|
|
// FIXME: again, use interned refs instead of `Box`
|
2018-03-14 13:38:03 +01:00
|
|
|
Implies(Vec<Goal<'tcx>>, DomainGoal<'tcx>),
|
|
|
|
DomainGoal(DomainGoal<'tcx>),
|
|
|
|
ForAll(Box<ty::Binder<Clause<'tcx>>>),
|
2018-03-10 12:44:33 +01:00
|
|
|
}
|
|
|
|
|
2014-12-07 11:10:48 -05:00
|
|
|
pub type Selection<'tcx> = Vtable<'tcx, PredicateObligation<'tcx>>;
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2015-01-28 08:34:18 -05:00
|
|
|
#[derive(Clone,Debug)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub enum SelectionError<'tcx> {
|
2014-09-12 10:53:35 -04:00
|
|
|
Unimplemented,
|
2014-12-17 14:16:28 -05:00
|
|
|
OutputTypeParameterMismatch(ty::PolyTraitRef<'tcx>,
|
|
|
|
ty::PolyTraitRef<'tcx>,
|
2015-09-06 21:51:58 +03:00
|
|
|
ty::error::TypeError<'tcx>),
|
2015-08-16 06:32:28 -04:00
|
|
|
TraitNotObjectSafe(DefId),
|
2017-08-07 08:08:53 +03:00
|
|
|
ConstEvalFailure(ConstEvalErr<'tcx>),
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
pub struct FulfillmentError<'tcx> {
|
2014-12-07 11:10:48 -05:00
|
|
|
pub obligation: PredicateObligation<'tcx>,
|
2014-09-29 22:11:30 +03:00
|
|
|
pub code: FulfillmentErrorCode<'tcx>
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2015-01-03 22:54:18 -05:00
|
|
|
#[derive(Clone)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub enum FulfillmentErrorCode<'tcx> {
|
|
|
|
CodeSelectionError(SelectionError<'tcx>),
|
2014-12-17 14:16:28 -05:00
|
|
|
CodeProjectionError(MismatchedProjectionTypes<'tcx>),
|
2017-03-10 05:21:27 -05:00
|
|
|
CodeSubtypeError(ExpectedFound<Ty<'tcx>>,
|
|
|
|
TypeError<'tcx>), // always comes from a SubtypePredicate
|
2014-09-11 17:07:49 +12:00
|
|
|
CodeAmbiguity,
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-11-24 20:06:06 -05:00
|
|
|
/// When performing resolution, it is typically the case that there
|
|
|
|
/// can be one of three outcomes:
|
|
|
|
///
|
|
|
|
/// - `Ok(Some(r))`: success occurred with result `r`
|
|
|
|
/// - `Ok(None)`: could not definitely determine anything, usually due
|
|
|
|
/// to inconclusive type inference.
|
|
|
|
/// - `Err(e)`: error `e` occurred
|
2014-09-29 22:11:30 +03:00
|
|
|
pub type SelectionResult<'tcx, T> = Result<Option<T>, SelectionError<'tcx>>;
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2014-11-24 20:06:06 -05:00
|
|
|
/// Given the successful resolution of an obligation, the `Vtable`
|
|
|
|
/// indicates where the vtable comes from. Note that while we call this
|
|
|
|
/// a "vtable", it does not necessarily indicate dynamic dispatch at
|
|
|
|
/// runtime. `Vtable` instances just tell the compiler where to find
|
|
|
|
/// methods, but in generic code those methods are typically statically
|
|
|
|
/// dispatched -- only when an object is constructed is a `Vtable`
|
|
|
|
/// instance reified into an actual vtable.
|
|
|
|
///
|
|
|
|
/// For example, the vtable may be tied to a specific impl (case A),
|
|
|
|
/// or it may be relative to some bound that is in scope (case B).
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// impl<T:Clone> Clone<T> for Option<T> { ... } // Impl_1
|
|
|
|
/// impl<T:Clone> Clone<T> for Box<T> { ... } // Impl_2
|
|
|
|
/// impl Clone for int { ... } // Impl_3
|
|
|
|
///
|
|
|
|
/// fn foo<T:Clone>(concrete: Option<Box<int>>,
|
|
|
|
/// param: T,
|
|
|
|
/// mixed: Option<T>) {
|
|
|
|
///
|
|
|
|
/// // Case A: Vtable points at a specific impl. Only possible when
|
|
|
|
/// // type is concretely known. If the impl itself has bounded
|
|
|
|
/// // type parameters, Vtable will carry resolutions for those as well:
|
|
|
|
/// concrete.clone(); // Vtable(Impl_1, [Vtable(Impl_2, [Vtable(Impl_3)])])
|
|
|
|
///
|
|
|
|
/// // Case B: Vtable must be provided by caller. This applies when
|
|
|
|
/// // type is a type parameter.
|
2014-12-27 04:22:29 -05:00
|
|
|
/// param.clone(); // VtableParam
|
2014-11-24 20:06:06 -05:00
|
|
|
///
|
|
|
|
/// // Case C: A mix of cases A and B.
|
2014-12-27 04:22:29 -05:00
|
|
|
/// mixed.clone(); // Vtable(Impl_1, [VtableParam])
|
2014-11-24 20:06:06 -05:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ### The type parameter `N`
|
|
|
|
///
|
|
|
|
/// See explanation on `VtableImplData`.
|
2018-02-18 12:32:23 +09:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub enum Vtable<'tcx, N> {
|
2014-09-12 10:53:35 -04:00
|
|
|
/// Vtable identifying a particular impl.
|
2014-09-29 22:11:30 +03:00
|
|
|
VtableImpl(VtableImplData<'tcx, N>),
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2017-10-09 13:59:20 -03:00
|
|
|
/// Vtable for auto trait implementations
|
2015-02-07 14:46:08 +01:00
|
|
|
/// This carries the information and nested obligations with regards
|
2017-10-09 13:59:20 -03:00
|
|
|
/// to an auto implementation for a trait `Trait`. The nested obligations
|
2015-02-07 14:46:08 +01:00
|
|
|
/// ensure the trait implementation holds for all the constituent types.
|
2017-10-09 13:59:20 -03:00
|
|
|
VtableAutoImpl(VtableAutoImplData<N>),
|
2015-01-24 14:17:24 +01:00
|
|
|
|
2014-09-12 10:53:35 -04:00
|
|
|
/// Successful resolution to an obligation provided by the caller
|
2015-01-08 21:41:42 -05:00
|
|
|
/// for some type parameter. The `Vec<N>` represents the
|
|
|
|
/// obligations incurred from normalizing the where-clause (if
|
|
|
|
/// any).
|
|
|
|
VtableParam(Vec<N>),
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2014-12-23 05:26:34 -05:00
|
|
|
/// Virtual calls through an object
|
2016-05-11 14:40:24 -07:00
|
|
|
VtableObject(VtableObjectData<'tcx, N>),
|
2014-12-23 05:26:34 -05:00
|
|
|
|
2014-09-12 10:53:35 -04:00
|
|
|
/// Successful resolution for a builtin trait.
|
2014-10-09 17:19:50 -04:00
|
|
|
VtableBuiltin(VtableBuiltinData<N>),
|
2014-12-01 09:23:40 -05:00
|
|
|
|
2015-01-24 22:15:08 +02:00
|
|
|
/// Vtable automatically generated for a closure. The def ID is the ID
|
|
|
|
/// of the closure expression. This is a `VtableImpl` in spirit, but the
|
|
|
|
/// impl is generated by the compiler and does not appear in the source.
|
2015-06-10 00:09:37 +03:00
|
|
|
VtableClosure(VtableClosureData<'tcx, N>),
|
2014-12-01 09:23:40 -05:00
|
|
|
|
|
|
|
/// Same as above, but for a fn pointer type with the given signature.
|
2016-05-11 14:40:24 -07:00
|
|
|
VtableFnPointer(VtableFnPointerData<'tcx, N>),
|
2016-12-26 14:34:03 +01:00
|
|
|
|
|
|
|
/// Vtable automatically generated for a generator
|
|
|
|
VtableGenerator(VtableGeneratorData<'tcx, N>),
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-11-24 20:06:06 -05:00
|
|
|
/// Identifies a particular impl in the source, along with a set of
|
|
|
|
/// substitutions from the impl's type/lifetime parameters. The
|
|
|
|
/// `nested` vector corresponds to the nested obligations attached to
|
|
|
|
/// the impl's type parameters.
|
|
|
|
///
|
|
|
|
/// The type parameter `N` indicates the type used for "nested
|
|
|
|
/// obligations" that are required by the impl. During type check, this
|
|
|
|
/// is `Obligation`, as one might expect. During trans, however, this
|
|
|
|
/// is `()`, because trans only requires a shallow resolution of an
|
|
|
|
/// impl, and nested obligations are satisfied later.
|
2017-11-30 14:34:09 +01:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2014-09-29 22:11:30 +03:00
|
|
|
pub struct VtableImplData<'tcx, N> {
|
2015-08-16 06:32:28 -04:00
|
|
|
pub impl_def_id: DefId,
|
2016-08-08 23:39:49 +03:00
|
|
|
pub substs: &'tcx Substs<'tcx>,
|
2015-06-03 02:14:45 +03:00
|
|
|
pub nested: Vec<N>
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2017-11-30 14:34:09 +01:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2016-12-26 14:34:03 +01:00
|
|
|
pub struct VtableGeneratorData<'tcx, N> {
|
|
|
|
pub closure_def_id: DefId,
|
|
|
|
pub substs: ty::ClosureSubsts<'tcx>,
|
|
|
|
/// Nested obligations. This can be non-empty if the generator
|
|
|
|
/// signature contains associated types.
|
|
|
|
pub nested: Vec<N>
|
|
|
|
}
|
|
|
|
|
2017-11-30 14:34:09 +01:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2015-06-10 00:09:37 +03:00
|
|
|
pub struct VtableClosureData<'tcx, N> {
|
2015-08-16 06:32:28 -04:00
|
|
|
pub closure_def_id: DefId,
|
2015-07-16 09:46:35 -04:00
|
|
|
pub substs: ty::ClosureSubsts<'tcx>,
|
2015-06-10 00:09:37 +03:00
|
|
|
/// Nested obligations. This can be non-empty if the closure
|
|
|
|
/// signature contains associated types.
|
|
|
|
pub nested: Vec<N>
|
|
|
|
}
|
|
|
|
|
2018-02-18 12:32:23 +09:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2017-10-09 13:59:20 -03:00
|
|
|
pub struct VtableAutoImplData<N> {
|
2015-08-16 06:32:28 -04:00
|
|
|
pub trait_def_id: DefId,
|
2015-02-04 11:51:17 +01:00
|
|
|
pub nested: Vec<N>
|
2015-02-02 12:14:01 +01:00
|
|
|
}
|
|
|
|
|
2018-02-18 12:32:23 +09:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2014-10-09 17:19:50 -04:00
|
|
|
pub struct VtableBuiltinData<N> {
|
2015-06-03 02:14:45 +03:00
|
|
|
pub nested: Vec<N>
|
2014-10-09 17:19:50 -04:00
|
|
|
}
|
|
|
|
|
2014-12-23 05:26:34 -05:00
|
|
|
/// A vtable for some object-safe trait `Foo` automatically derived
|
|
|
|
/// for the object type `Foo`.
|
2017-11-30 14:34:09 +01:00
|
|
|
#[derive(PartialEq, Eq, Clone, RustcEncodable, RustcDecodable)]
|
2016-05-11 14:40:24 -07:00
|
|
|
pub struct VtableObjectData<'tcx, N> {
|
2015-03-03 08:01:13 -05:00
|
|
|
/// `Foo` upcast to the obligation trait. This will be some supertrait of `Foo`.
|
|
|
|
pub upcast_trait_ref: ty::PolyTraitRef<'tcx>,
|
2015-07-04 05:46:54 +03:00
|
|
|
|
|
|
|
/// The vtable is formed by concatenating together the method lists of
|
|
|
|
/// the base object trait and all supertraits; this is the start of
|
|
|
|
/// `upcast_trait_ref`'s methods in that vtable.
|
2016-05-11 14:40:24 -07:00
|
|
|
pub vtable_base: usize,
|
|
|
|
|
|
|
|
pub nested: Vec<N>,
|
|
|
|
}
|
|
|
|
|
2017-11-30 14:34:09 +01:00
|
|
|
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2016-05-11 14:40:24 -07:00
|
|
|
pub struct VtableFnPointerData<'tcx, N> {
|
2017-09-14 21:44:23 -04:00
|
|
|
pub fn_ty: Ty<'tcx>,
|
2016-05-11 14:40:24 -07:00
|
|
|
pub nested: Vec<N>
|
2014-12-23 05:26:34 -05:00
|
|
|
}
|
|
|
|
|
2014-12-07 11:10:48 -05:00
|
|
|
/// Creates predicate obligations from the generic bounds.
|
2015-06-17 01:39:20 +03:00
|
|
|
pub fn predicates_for_generics<'tcx>(cause: ObligationCause<'tcx>,
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
2015-02-11 10:28:52 -05:00
|
|
|
generic_bounds: &ty::InstantiatedPredicates<'tcx>)
|
2014-12-07 11:10:48 -05:00
|
|
|
-> PredicateObligations<'tcx>
|
2014-09-12 10:53:35 -04:00
|
|
|
{
|
2017-05-23 04:19:47 -04:00
|
|
|
util::predicates_for_generics(cause, 0, param_env, generic_bounds)
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-12-18 09:26:10 -05:00
|
|
|
/// Determines whether the type `ty` is known to meet `bound` and
|
|
|
|
/// returns true if so. Returns false if `ty` either does not meet
|
|
|
|
/// `bound` or is not known to meet bound (note that this is
|
|
|
|
/// conservative towards *no impl*, which is the opposite of the
|
|
|
|
/// `evaluate` methods).
|
2016-11-13 19:42:15 -07:00
|
|
|
pub fn type_known_to_meet_bound<'a, 'gcx, 'tcx>(infcx: &InferCtxt<'a, 'gcx, 'tcx>,
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
2016-11-16 09:21:49 -07:00
|
|
|
ty: Ty<'tcx>,
|
|
|
|
def_id: DefId,
|
|
|
|
span: Span)
|
|
|
|
-> bool
|
2014-12-18 09:26:10 -05:00
|
|
|
{
|
2016-11-13 19:42:15 -07:00
|
|
|
debug!("type_known_to_meet_bound(ty={:?}, bound={:?})",
|
2015-06-18 20:25:05 +03:00
|
|
|
ty,
|
2016-11-13 19:42:15 -07:00
|
|
|
infcx.tcx.item_path_str(def_id));
|
|
|
|
|
|
|
|
let trait_ref = ty::TraitRef {
|
2017-07-03 11:19:51 -07:00
|
|
|
def_id,
|
2016-11-13 19:42:15 -07:00
|
|
|
substs: infcx.tcx.mk_substs_trait(ty, &[]),
|
2015-10-21 19:01:58 +03:00
|
|
|
};
|
2016-11-13 19:42:15 -07:00
|
|
|
let obligation = Obligation {
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env,
|
2016-11-13 19:42:15 -07:00
|
|
|
cause: ObligationCause::misc(span, ast::DUMMY_NODE_ID),
|
|
|
|
recursion_depth: 0,
|
|
|
|
predicate: trait_ref.to_predicate(),
|
|
|
|
};
|
|
|
|
|
2015-10-21 19:01:58 +03:00
|
|
|
let result = SelectionContext::new(infcx)
|
|
|
|
.evaluate_obligation_conservatively(&obligation);
|
2016-11-13 19:42:15 -07:00
|
|
|
debug!("type_known_to_meet_ty={:?} bound={} => {:?}",
|
|
|
|
ty, infcx.tcx.item_path_str(def_id), result);
|
2015-10-21 19:01:58 +03:00
|
|
|
|
|
|
|
if result && (ty.has_infer_types() || ty.has_closure_types()) {
|
|
|
|
// Because of inference "guessing", selection can sometimes claim
|
|
|
|
// to succeed while the success requires a guess. To ensure
|
|
|
|
// this function's result remains infallible, we must confirm
|
|
|
|
// that guess. While imperfect, I believe this is sound.
|
|
|
|
|
2017-11-23 23:21:56 +02:00
|
|
|
// The handling of regions in this area of the code is terrible,
|
|
|
|
// see issue #29149. We should be able to improve on this with
|
|
|
|
// NLL.
|
2017-11-23 23:03:47 +02:00
|
|
|
let mut fulfill_cx = FulfillmentContext::new_ignoring_regions();
|
2015-10-21 19:01:58 +03:00
|
|
|
|
|
|
|
// We can use a dummy node-id here because we won't pay any mind
|
|
|
|
// to region obligations that arise (there shouldn't really be any
|
|
|
|
// anyhow).
|
|
|
|
let cause = ObligationCause::misc(span, ast::DUMMY_NODE_ID);
|
2014-12-18 09:26:10 -05:00
|
|
|
|
2017-05-23 04:19:47 -04:00
|
|
|
fulfill_cx.register_bound(infcx, param_env, ty, def_id, cause);
|
2015-10-21 19:01:58 +03:00
|
|
|
|
|
|
|
// Note: we only assume something is `Copy` if we can
|
|
|
|
// *definitively* show that it implements `Copy`. Otherwise,
|
|
|
|
// assume it is move; linear is always ok.
|
|
|
|
match fulfill_cx.select_all_or_error(infcx) {
|
|
|
|
Ok(()) => {
|
2016-11-13 19:42:15 -07:00
|
|
|
debug!("type_known_to_meet_bound: ty={:?} bound={} success",
|
2015-10-21 19:01:58 +03:00
|
|
|
ty,
|
2016-11-13 19:42:15 -07:00
|
|
|
infcx.tcx.item_path_str(def_id));
|
2015-10-21 19:01:58 +03:00
|
|
|
true
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2016-11-13 19:42:15 -07:00
|
|
|
debug!("type_known_to_meet_bound: ty={:?} bound={} errors={:?}",
|
2015-10-21 19:01:58 +03:00
|
|
|
ty,
|
2016-11-13 19:42:15 -07:00
|
|
|
infcx.tcx.item_path_str(def_id),
|
2015-10-21 19:01:58 +03:00
|
|
|
e);
|
|
|
|
false
|
|
|
|
}
|
2015-01-02 04:01:30 -05:00
|
|
|
}
|
2015-10-21 19:01:58 +03:00
|
|
|
} else {
|
|
|
|
result
|
2015-01-02 04:01:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 12:23:41 -07:00
|
|
|
// FIXME: this is gonna need to be removed ...
|
2015-02-20 06:21:46 -05:00
|
|
|
/// Normalizes the parameter environment, reporting errors if they occur.
|
2016-03-25 05:22:52 +02:00
|
|
|
pub fn normalize_param_env_or_error<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2017-04-10 00:00:08 -07:00
|
|
|
region_context: DefId,
|
2017-05-15 17:57:30 -04:00
|
|
|
unnormalized_env: ty::ParamEnv<'tcx>,
|
2017-04-10 00:00:08 -07:00
|
|
|
cause: ObligationCause<'tcx>)
|
2017-05-15 17:57:30 -04:00
|
|
|
-> ty::ParamEnv<'tcx>
|
2015-01-26 14:20:38 -05:00
|
|
|
{
|
2015-02-20 06:21:46 -05:00
|
|
|
// I'm not wild about reporting errors here; I'd prefer to
|
|
|
|
// have the errors get reported at a defined place (e.g.,
|
|
|
|
// during typeck). Instead I have all parameter
|
|
|
|
// environments, in effect, going through this function
|
|
|
|
// and hence potentially reporting errors. This ensurse of
|
|
|
|
// course that we never forget to normalize (the
|
|
|
|
// alternative seemed like it would involve a lot of
|
|
|
|
// manual invocations of this fn -- and then we'd have to
|
|
|
|
// deal with the errors at each of those sites).
|
|
|
|
//
|
|
|
|
// In any case, in practice, typeck constructs all the
|
|
|
|
// parameter environments once for every fn as it goes,
|
|
|
|
// and errors will get reported then; so after typeck we
|
|
|
|
// can be sure that no errors should occur.
|
|
|
|
|
|
|
|
let span = cause.span;
|
|
|
|
|
2015-06-18 20:25:05 +03:00
|
|
|
debug!("normalize_param_env_or_error(unnormalized_env={:?})",
|
|
|
|
unnormalized_env);
|
2015-02-20 06:21:46 -05:00
|
|
|
|
2015-05-11 17:02:56 -04:00
|
|
|
let predicates: Vec<_> =
|
2017-05-02 14:37:00 -04:00
|
|
|
util::elaborate_predicates(tcx, unnormalized_env.caller_bounds.to_vec())
|
2015-05-11 17:02:56 -04:00
|
|
|
.filter(|p| !p.is_global()) // (*)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
// (*) Any predicate like `i32: Trait<u32>` or whatever doesn't
|
|
|
|
// need to be in the *environment* to be proven, so screen those
|
|
|
|
// out. This is important for the soundness of inter-fn
|
|
|
|
// caching. Note though that we should probably check that these
|
|
|
|
// predicates hold at the point where the environment is
|
|
|
|
// constructed, but I am not currently doing so out of laziness.
|
|
|
|
// -nmatsakis
|
|
|
|
|
2015-06-18 20:25:05 +03:00
|
|
|
debug!("normalize_param_env_or_error: elaborated-predicates={:?}",
|
|
|
|
predicates);
|
2015-05-11 17:02:56 -04:00
|
|
|
|
2017-05-17 08:01:04 -04:00
|
|
|
let elaborated_env = ty::ParamEnv::new(tcx.intern_predicates(&predicates),
|
2017-07-15 07:23:28 -04:00
|
|
|
unnormalized_env.reveal,
|
|
|
|
unnormalized_env.universe);
|
2015-05-11 17:02:56 -04:00
|
|
|
|
2017-06-09 10:55:16 +03:00
|
|
|
tcx.infer_ctxt().enter(|infcx| {
|
2017-11-23 23:21:56 +02:00
|
|
|
// FIXME. We should really... do something with these region
|
|
|
|
// obligations. But this call just continues the older
|
|
|
|
// behavior (i.e., doesn't cause any new bugs), and it would
|
|
|
|
// take some further refactoring to actually solve them. In
|
|
|
|
// particular, we would have to handle implied bounds
|
|
|
|
// properly, and that code is currently largely confined to
|
|
|
|
// regionck (though I made some efforts to extract it
|
|
|
|
// out). -nmatsakis
|
|
|
|
//
|
|
|
|
// @arielby: In any case, these obligations are checked
|
|
|
|
// by wfcheck anyway, so I'm not sure we have to check
|
|
|
|
// them here too, and we will remove this function when
|
|
|
|
// we move over to lazy normalization *anyway*.
|
|
|
|
let fulfill_cx = FulfillmentContext::new_ignoring_regions();
|
|
|
|
|
|
|
|
let predicates = match fully_normalize_with_fulfillcx(
|
2017-05-23 04:19:47 -04:00
|
|
|
&infcx,
|
2017-11-23 23:21:56 +02:00
|
|
|
fulfill_cx,
|
2017-05-23 04:19:47 -04:00
|
|
|
cause,
|
|
|
|
elaborated_env,
|
|
|
|
// You would really want to pass infcx.param_env.caller_bounds here,
|
|
|
|
// but that is an interned slice, and fully_normalize takes &T and returns T, so
|
|
|
|
// without further refactoring, a slice can't be used. Luckily, we still have the
|
|
|
|
// predicate vector from which we created the ParamEnv in infcx, so we
|
|
|
|
// can pass that instead. It's roundabout and a bit brittle, but this code path
|
|
|
|
// ought to be refactored anyway, and until then it saves us from having to copy.
|
|
|
|
&predicates,
|
2017-05-02 14:37:00 -04:00
|
|
|
) {
|
2016-03-25 05:22:44 +02:00
|
|
|
Ok(predicates) => predicates,
|
|
|
|
Err(errors) => {
|
2018-03-12 12:15:06 +08:00
|
|
|
infcx.report_fulfillment_errors(&errors, None, false);
|
2016-03-25 05:22:44 +02:00
|
|
|
// An unnormalized env is better than nothing.
|
2017-05-23 04:19:47 -04:00
|
|
|
return elaborated_env;
|
2016-03-25 05:22:44 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
debug!("normalize_param_env_or_error: normalized predicates={:?}",
|
|
|
|
predicates);
|
|
|
|
|
2017-08-31 21:37:38 +03:00
|
|
|
let region_scope_tree = region::ScopeTree::default();
|
2017-11-01 14:52:24 -04:00
|
|
|
|
2017-12-01 05:07:52 -05:00
|
|
|
// We can use the `elaborated_env` here; the region code only
|
|
|
|
// cares about declarations like `'a: 'b`.
|
|
|
|
let outlives_env = OutlivesEnvironment::new(elaborated_env);
|
|
|
|
|
|
|
|
infcx.resolve_regions_and_report_errors(region_context, ®ion_scope_tree, &outlives_env);
|
|
|
|
|
2016-03-25 05:22:44 +02:00
|
|
|
let predicates = match infcx.fully_resolve(&predicates) {
|
|
|
|
Ok(predicates) => predicates,
|
|
|
|
Err(fixup_err) => {
|
|
|
|
// If we encounter a fixup error, it means that some type
|
|
|
|
// variable wound up unconstrained. I actually don't know
|
|
|
|
// if this can happen, and I certainly don't expect it to
|
|
|
|
// happen often, but if it did happen it probably
|
|
|
|
// represents a legitimate failure due to some kind of
|
|
|
|
// unconstrained variable, and it seems better not to ICE,
|
|
|
|
// all things considered.
|
|
|
|
tcx.sess.span_err(span, &fixup_err.to_string());
|
|
|
|
// An unnormalized env is better than nothing.
|
2017-05-23 04:19:47 -04:00
|
|
|
return elaborated_env;
|
2016-03-25 05:22:44 +02:00
|
|
|
}
|
|
|
|
};
|
2015-01-26 14:20:38 -05:00
|
|
|
|
2016-05-11 04:14:41 +03:00
|
|
|
let predicates = match tcx.lift_to_global(&predicates) {
|
|
|
|
Some(predicates) => predicates,
|
2017-05-23 04:19:47 -04:00
|
|
|
None => return elaborated_env,
|
2016-05-11 04:14:41 +03:00
|
|
|
};
|
|
|
|
|
2016-03-25 05:22:44 +02:00
|
|
|
debug!("normalize_param_env_or_error: resolved predicates={:?}",
|
2017-05-23 04:19:47 -04:00
|
|
|
predicates);
|
2015-12-22 19:51:29 -05:00
|
|
|
|
2017-07-15 07:23:28 -04:00
|
|
|
ty::ParamEnv::new(tcx.intern_predicates(&predicates),
|
|
|
|
unnormalized_env.reveal,
|
|
|
|
unnormalized_env.universe)
|
2016-03-25 05:22:44 +02:00
|
|
|
})
|
2015-01-26 14:20:38 -05:00
|
|
|
}
|
|
|
|
|
2016-05-11 04:14:41 +03:00
|
|
|
pub fn fully_normalize<'a, 'gcx, 'tcx, T>(infcx: &InferCtxt<'a, 'gcx, 'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>,
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
2016-05-11 04:14:41 +03:00
|
|
|
value: &T)
|
|
|
|
-> Result<T, Vec<FulfillmentError<'tcx>>>
|
2015-11-18 09:38:57 +00:00
|
|
|
where T : TypeFoldable<'tcx>
|
2015-02-13 19:51:43 -05:00
|
|
|
{
|
2015-07-01 13:08:25 -07:00
|
|
|
// FIXME (@jroesch) ISSUE 26721
|
2015-06-30 02:39:47 -07:00
|
|
|
// I'm not sure if this is a bug or not, needs further investigation.
|
|
|
|
// It appears that by reusing the fulfillment_cx here we incur more
|
2018-02-16 15:56:50 +01:00
|
|
|
// obligations and later trip an assertion on regionck.rs line 337.
|
2015-06-30 02:39:47 -07:00
|
|
|
//
|
|
|
|
// The two possibilities I see is:
|
|
|
|
// - normalization is not actually fully happening and we
|
|
|
|
// have a bug else where
|
|
|
|
// - we are adding a duplicate bound into the list causing
|
|
|
|
// its size to change.
|
|
|
|
//
|
|
|
|
// I think we should probably land this refactor and then come
|
2015-06-27 17:37:22 -07:00
|
|
|
// back to this is a follow-up patch.
|
2017-11-23 23:03:47 +02:00
|
|
|
let fulfillcx = FulfillmentContext::new();
|
|
|
|
fully_normalize_with_fulfillcx(infcx, fulfillcx, cause, param_env, value)
|
|
|
|
}
|
2015-06-27 17:37:13 -07:00
|
|
|
|
2017-11-23 23:03:47 +02:00
|
|
|
pub fn fully_normalize_with_fulfillcx<'a, 'gcx, 'tcx, T>(
|
|
|
|
infcx: &InferCtxt<'a, 'gcx, 'tcx>,
|
|
|
|
mut fulfill_cx: FulfillmentContext<'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>,
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
value: &T)
|
|
|
|
-> Result<T, Vec<FulfillmentError<'tcx>>>
|
|
|
|
where T : TypeFoldable<'tcx>
|
|
|
|
{
|
|
|
|
debug!("fully_normalize_with_fulfillcx(value={:?})", value);
|
|
|
|
let selcx = &mut SelectionContext::new(infcx);
|
2015-02-13 19:51:43 -05:00
|
|
|
let Normalized { value: normalized_value, obligations } =
|
2017-05-23 04:19:47 -04:00
|
|
|
project::normalize(selcx, param_env, cause, value);
|
2015-12-22 19:51:29 -05:00
|
|
|
debug!("fully_normalize: normalized_value={:?} obligations={:?}",
|
2015-06-18 20:25:05 +03:00
|
|
|
normalized_value,
|
|
|
|
obligations);
|
2015-02-13 19:51:43 -05:00
|
|
|
for obligation in obligations {
|
|
|
|
fulfill_cx.register_predicate_obligation(selcx.infcx(), obligation);
|
|
|
|
}
|
2015-07-01 13:08:25 -07:00
|
|
|
|
2015-12-22 19:51:29 -05:00
|
|
|
debug!("fully_normalize: select_all_or_error start");
|
|
|
|
match fulfill_cx.select_all_or_error(infcx) {
|
|
|
|
Ok(()) => { }
|
|
|
|
Err(e) => {
|
|
|
|
debug!("fully_normalize: error={:?}", e);
|
|
|
|
return Err(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
debug!("fully_normalize: select_all_or_error complete");
|
2015-02-13 19:51:43 -05:00
|
|
|
let resolved_value = infcx.resolve_type_vars_if_possible(&normalized_value);
|
2015-12-22 19:51:29 -05:00
|
|
|
debug!("fully_normalize: resolved_value={:?}", resolved_value);
|
2015-02-13 19:51:43 -05:00
|
|
|
Ok(resolved_value)
|
|
|
|
}
|
|
|
|
|
2017-05-23 04:19:47 -04:00
|
|
|
/// Normalizes the predicates and checks whether they hold in an empty
|
|
|
|
/// environment. If this returns false, then either normalize
|
|
|
|
/// encountered an error or one of the predicates did not hold. Used
|
|
|
|
/// when creating vtables to check for unsatisfiable methods.
|
2017-12-27 12:32:44 -05:00
|
|
|
fn normalize_and_test_predicates<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
predicates: Vec<ty::Predicate<'tcx>>)
|
|
|
|
-> bool
|
2016-09-19 12:47:47 +03:00
|
|
|
{
|
|
|
|
debug!("normalize_and_test_predicates(predicates={:?})",
|
|
|
|
predicates);
|
|
|
|
|
2017-06-21 14:50:43 +03:00
|
|
|
let result = tcx.infer_ctxt().enter(|infcx| {
|
2018-02-10 13:18:02 -05:00
|
|
|
let param_env = ty::ParamEnv::reveal_all();
|
2016-09-19 12:47:47 +03:00
|
|
|
let mut selcx = SelectionContext::new(&infcx);
|
|
|
|
let mut fulfill_cx = FulfillmentContext::new();
|
|
|
|
let cause = ObligationCause::dummy();
|
|
|
|
let Normalized { value: predicates, obligations } =
|
2017-05-23 04:19:47 -04:00
|
|
|
normalize(&mut selcx, param_env, cause.clone(), &predicates);
|
2016-09-19 12:47:47 +03:00
|
|
|
for obligation in obligations {
|
|
|
|
fulfill_cx.register_predicate_obligation(&infcx, obligation);
|
|
|
|
}
|
|
|
|
for predicate in predicates {
|
2017-05-23 04:19:47 -04:00
|
|
|
let obligation = Obligation::new(cause.clone(), param_env, predicate);
|
2016-09-19 12:47:47 +03:00
|
|
|
fulfill_cx.register_predicate_obligation(&infcx, obligation);
|
|
|
|
}
|
|
|
|
|
|
|
|
fulfill_cx.select_all_or_error(&infcx).is_ok()
|
2017-06-21 14:50:43 +03:00
|
|
|
});
|
|
|
|
debug!("normalize_and_test_predicates(predicates={:?}) = {:?}",
|
|
|
|
predicates, result);
|
|
|
|
result
|
2016-09-19 12:47:47 +03:00
|
|
|
}
|
|
|
|
|
2017-12-27 12:32:44 -05:00
|
|
|
fn substitute_normalize_and_test_predicates<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
key: (DefId, &'tcx Substs<'tcx>))
|
|
|
|
-> bool
|
|
|
|
{
|
|
|
|
use ty::subst::Subst;
|
|
|
|
debug!("substitute_normalize_and_test_predicates(key={:?})",
|
|
|
|
key);
|
|
|
|
|
|
|
|
let predicates = tcx.predicates_of(key.0).predicates.subst(tcx, key.1);
|
|
|
|
let result = normalize_and_test_predicates(tcx, predicates);
|
|
|
|
|
|
|
|
debug!("substitute_normalize_and_test_predicates(key={:?}) = {:?}",
|
|
|
|
key, result);
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2016-09-19 12:47:47 +03:00
|
|
|
/// Given a trait `trait_ref`, iterates the vtable entries
|
|
|
|
/// that come from `trait_ref`, including its supertraits.
|
|
|
|
#[inline] // FIXME(#35870) Avoid closures being unexported due to impl Trait.
|
2017-10-09 10:41:19 -05:00
|
|
|
fn vtable_methods<'a, 'tcx>(
|
2016-09-19 12:47:47 +03:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|
|
|
trait_ref: ty::PolyTraitRef<'tcx>)
|
2018-02-27 17:11:14 +01:00
|
|
|
-> Lrc<Vec<Option<(DefId, &'tcx Substs<'tcx>)>>>
|
2016-09-19 12:47:47 +03:00
|
|
|
{
|
2017-10-07 16:55:09 -05:00
|
|
|
debug!("vtable_methods({:?})", trait_ref);
|
2016-09-19 12:47:47 +03:00
|
|
|
|
2018-02-27 17:11:14 +01:00
|
|
|
Lrc::new(
|
2017-10-09 10:39:53 -05:00
|
|
|
supertraits(tcx, trait_ref).flat_map(move |trait_ref| {
|
|
|
|
let trait_methods = tcx.associated_items(trait_ref.def_id())
|
|
|
|
.filter(|item| item.kind == ty::AssociatedKind::Method);
|
|
|
|
|
|
|
|
// Now list each method's DefId and Substs (for within its trait).
|
|
|
|
// If the method can never be called from this object, produce None.
|
|
|
|
trait_methods.map(move |trait_method| {
|
|
|
|
debug!("vtable_methods: trait_method={:?}", trait_method);
|
|
|
|
let def_id = trait_method.def_id;
|
|
|
|
|
|
|
|
// Some methods cannot be called on an object; skip those.
|
|
|
|
if !tcx.is_vtable_safe_method(trait_ref.def_id(), &trait_method) {
|
|
|
|
debug!("vtable_methods: not vtable safe");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the method may have some early-bound lifetimes, add
|
|
|
|
// regions for those
|
|
|
|
let substs = Substs::for_item(tcx, def_id,
|
|
|
|
|_, _| tcx.types.re_erased,
|
|
|
|
|def, _| trait_ref.substs().type_for_def(def));
|
|
|
|
|
|
|
|
// the trait type may have higher-ranked lifetimes in it;
|
|
|
|
// so erase them if they appear, so that we get the type
|
|
|
|
// at some particular call site
|
2018-03-03 08:23:28 -05:00
|
|
|
let substs = tcx.normalize_erasing_late_bound_regions(
|
|
|
|
ty::ParamEnv::reveal_all(),
|
|
|
|
&ty::Binder(substs),
|
|
|
|
);
|
2017-10-09 10:39:53 -05:00
|
|
|
|
|
|
|
// It's possible that the method relies on where clauses that
|
|
|
|
// do not hold for this particular set of type parameters.
|
|
|
|
// Note that this method could then never be called, so we
|
|
|
|
// do not want to try and trans it, in that case (see #23435).
|
|
|
|
let predicates = tcx.predicates_of(def_id).instantiate_own(tcx, substs);
|
|
|
|
if !normalize_and_test_predicates(tcx, predicates.predicates) {
|
|
|
|
debug!("vtable_methods: predicates do not hold");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some((def_id, substs))
|
|
|
|
})
|
|
|
|
}).collect()
|
|
|
|
)
|
2016-09-19 12:47:47 +03:00
|
|
|
}
|
|
|
|
|
2014-12-05 00:03:03 -05:00
|
|
|
impl<'tcx,O> Obligation<'tcx,O> {
|
|
|
|
pub fn new(cause: ObligationCause<'tcx>,
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
predicate: O)
|
2014-12-05 00:03:03 -05:00
|
|
|
-> Obligation<'tcx, O>
|
|
|
|
{
|
2017-05-23 04:19:47 -04:00
|
|
|
Obligation { cause, param_env, recursion_depth: 0, predicate }
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-12-30 17:42:02 -05:00
|
|
|
fn with_depth(cause: ObligationCause<'tcx>,
|
2015-03-25 17:06:52 -07:00
|
|
|
recursion_depth: usize,
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
predicate: O)
|
2014-12-30 17:42:02 -05:00
|
|
|
-> Obligation<'tcx, O>
|
|
|
|
{
|
2017-05-23 04:19:47 -04:00
|
|
|
Obligation { cause, param_env, recursion_depth, predicate }
|
2014-12-30 17:42:02 -05:00
|
|
|
}
|
|
|
|
|
2017-05-23 04:19:47 -04:00
|
|
|
pub fn misc(span: Span,
|
|
|
|
body_id: ast::NodeId,
|
|
|
|
param_env: ty::ParamEnv<'tcx>,
|
|
|
|
trait_ref: O)
|
|
|
|
-> Obligation<'tcx, O> {
|
|
|
|
Obligation::new(ObligationCause::misc(span, body_id), param_env, trait_ref)
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
2014-12-07 11:10:48 -05:00
|
|
|
|
|
|
|
pub fn with<P>(&self, value: P) -> Obligation<'tcx,P> {
|
|
|
|
Obligation { cause: self.cause.clone(),
|
2017-05-23 04:19:47 -04:00
|
|
|
param_env: self.param_env,
|
2014-12-07 11:10:48 -05:00
|
|
|
recursion_depth: self.recursion_depth,
|
2014-12-17 16:00:34 -05:00
|
|
|
predicate: value }
|
2014-12-07 11:10:48 -05:00
|
|
|
}
|
2014-12-05 00:03:03 -05:00
|
|
|
}
|
2014-09-12 10:53:35 -04:00
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
impl<'tcx> ObligationCause<'tcx> {
|
2014-12-05 01:59:17 -05:00
|
|
|
pub fn new(span: Span,
|
2014-12-06 01:30:41 -05:00
|
|
|
body_id: ast::NodeId,
|
2014-12-05 01:59:17 -05:00
|
|
|
code: ObligationCauseCode<'tcx>)
|
2014-09-29 22:11:30 +03:00
|
|
|
-> ObligationCause<'tcx> {
|
2014-12-06 01:30:41 -05:00
|
|
|
ObligationCause { span: span, body_id: body_id, code: code }
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:30:41 -05:00
|
|
|
pub fn misc(span: Span, body_id: ast::NodeId) -> ObligationCause<'tcx> {
|
|
|
|
ObligationCause { span: span, body_id: body_id, code: MiscObligation }
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
2014-09-22 14:47:06 -04:00
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
pub fn dummy() -> ObligationCause<'tcx> {
|
2016-08-31 14:00:29 +03:00
|
|
|
ObligationCause { span: DUMMY_SP, body_id: ast::CRATE_NODE_ID, code: MiscObligation }
|
2014-09-22 14:47:06 -04:00
|
|
|
}
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
impl<'tcx, N> Vtable<'tcx, N> {
|
2015-06-03 02:14:45 +03:00
|
|
|
pub fn nested_obligations(self) -> Vec<N> {
|
|
|
|
match self {
|
|
|
|
VtableImpl(i) => i.nested,
|
|
|
|
VtableParam(n) => n,
|
|
|
|
VtableBuiltin(i) => i.nested,
|
2017-10-09 13:59:20 -03:00
|
|
|
VtableAutoImpl(d) => d.nested,
|
2015-06-10 00:09:37 +03:00
|
|
|
VtableClosure(c) => c.nested,
|
2016-12-26 14:34:03 +01:00
|
|
|
VtableGenerator(c) => c.nested,
|
2016-05-11 14:40:24 -07:00
|
|
|
VtableObject(d) => d.nested,
|
|
|
|
VtableFnPointer(d) => d.nested,
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-03 02:14:45 +03:00
|
|
|
pub fn map<M, F>(self, f: F) -> Vtable<'tcx, M> where F: FnMut(N) -> M {
|
2014-09-12 10:53:35 -04:00
|
|
|
match self {
|
2015-06-03 02:14:45 +03:00
|
|
|
VtableImpl(i) => VtableImpl(VtableImplData {
|
|
|
|
impl_def_id: i.impl_def_id,
|
|
|
|
substs: i.substs,
|
2016-05-11 14:40:24 -07:00
|
|
|
nested: i.nested.into_iter().map(f).collect(),
|
2015-06-03 02:14:45 +03:00
|
|
|
}),
|
|
|
|
VtableParam(n) => VtableParam(n.into_iter().map(f).collect()),
|
|
|
|
VtableBuiltin(i) => VtableBuiltin(VtableBuiltinData {
|
2016-05-11 14:40:24 -07:00
|
|
|
nested: i.nested.into_iter().map(f).collect(),
|
|
|
|
}),
|
|
|
|
VtableObject(o) => VtableObject(VtableObjectData {
|
|
|
|
upcast_trait_ref: o.upcast_trait_ref,
|
|
|
|
vtable_base: o.vtable_base,
|
|
|
|
nested: o.nested.into_iter().map(f).collect(),
|
2015-06-03 02:14:45 +03:00
|
|
|
}),
|
2017-10-09 13:59:20 -03:00
|
|
|
VtableAutoImpl(d) => VtableAutoImpl(VtableAutoImplData {
|
2015-06-03 02:14:45 +03:00
|
|
|
trait_def_id: d.trait_def_id,
|
2016-05-11 14:40:24 -07:00
|
|
|
nested: d.nested.into_iter().map(f).collect(),
|
|
|
|
}),
|
|
|
|
VtableFnPointer(p) => VtableFnPointer(VtableFnPointerData {
|
|
|
|
fn_ty: p.fn_ty,
|
|
|
|
nested: p.nested.into_iter().map(f).collect(),
|
2015-06-03 02:14:45 +03:00
|
|
|
}),
|
2016-12-26 14:34:03 +01:00
|
|
|
VtableGenerator(c) => VtableGenerator(VtableGeneratorData {
|
|
|
|
closure_def_id: c.closure_def_id,
|
|
|
|
substs: c.substs,
|
|
|
|
nested: c.nested.into_iter().map(f).collect(),
|
|
|
|
}),
|
2015-06-10 00:09:37 +03:00
|
|
|
VtableClosure(c) => VtableClosure(VtableClosureData {
|
|
|
|
closure_def_id: c.closure_def_id,
|
|
|
|
substs: c.substs,
|
2015-07-16 05:32:45 -04:00
|
|
|
nested: c.nested.into_iter().map(f).collect(),
|
2015-06-10 00:09:37 +03:00
|
|
|
})
|
2014-09-12 10:53:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-29 22:11:30 +03:00
|
|
|
impl<'tcx> FulfillmentError<'tcx> {
|
2014-12-07 11:10:48 -05:00
|
|
|
fn new(obligation: PredicateObligation<'tcx>,
|
2014-12-05 00:03:03 -05:00
|
|
|
code: FulfillmentErrorCode<'tcx>)
|
2014-09-29 22:11:30 +03:00
|
|
|
-> FulfillmentError<'tcx>
|
2014-09-12 10:53:35 -04:00
|
|
|
{
|
|
|
|
FulfillmentError { obligation: obligation, code: code }
|
|
|
|
}
|
|
|
|
}
|
2014-12-17 14:16:28 -05:00
|
|
|
|
|
|
|
impl<'tcx> TraitObligation<'tcx> {
|
2015-03-26 15:51:11 -04:00
|
|
|
fn self_ty(&self) -> ty::Binder<Ty<'tcx>> {
|
|
|
|
ty::Binder(self.predicate.skip_binder().self_ty())
|
2014-12-17 14:16:28 -05:00
|
|
|
}
|
|
|
|
}
|
2017-05-11 16:01:19 +02:00
|
|
|
|
|
|
|
pub fn provide(providers: &mut ty::maps::Providers) {
|
|
|
|
*providers = ty::maps::Providers {
|
|
|
|
is_object_safe: object_safety::is_object_safe_provider,
|
|
|
|
specialization_graph_of: specialize::specialization_graph_provider,
|
2017-08-29 09:25:25 -07:00
|
|
|
specializes: specialize::specializes,
|
2017-09-28 23:13:43 -04:00
|
|
|
trans_fulfill_obligation: trans::trans_fulfill_obligation,
|
2017-10-07 16:55:09 -05:00
|
|
|
vtable_methods,
|
2017-12-27 12:32:44 -05:00
|
|
|
substitute_normalize_and_test_predicates,
|
2017-05-11 16:01:19 +02:00
|
|
|
..*providers
|
|
|
|
};
|
|
|
|
}
|