2014-09-12 09:53:35 -05: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.
|
|
|
|
|
2014-11-25 20:17:11 -06:00
|
|
|
//! Trait Resolution. See doc.rs.
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-11-06 02:05:53 -06:00
|
|
|
pub use self::SelectionError::*;
|
|
|
|
pub use self::FulfillmentErrorCode::*;
|
|
|
|
pub use self::Vtable::*;
|
|
|
|
pub use self::ObligationCauseCode::*;
|
|
|
|
|
2015-01-02 03:01:30 -06:00
|
|
|
use middle::mem_categorization::Typer;
|
2014-09-12 09:53:35 -05:00
|
|
|
use middle::subst;
|
2015-01-03 21:42:21 -06:00
|
|
|
use middle::ty::{self, Ty};
|
2015-01-26 13:20:38 -06:00
|
|
|
use middle::infer::{self, InferCtxt};
|
2014-12-19 14:52:10 -06:00
|
|
|
use std::slice::Iter;
|
2014-12-17 13:16:28 -06:00
|
|
|
use std::rc::Rc;
|
2014-09-12 09:53:35 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::{Span, DUMMY_SP};
|
2015-01-02 03:01:30 -06:00
|
|
|
use util::ppaux::{Repr, UserString};
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-12-06 10:39:25 -06:00
|
|
|
pub use self::error_reporting::report_fulfillment_errors;
|
2015-01-02 03:01:30 -06:00
|
|
|
pub use self::error_reporting::suggest_new_overflow_limit;
|
Fix orphan checking (cc #19470). (This is not a complete fix of #19470 because of the backwards compatibility feature gate.)
This is a [breaking-change]. The new rules require that, for an impl of a trait defined
in some other crate, two conditions must hold:
1. Some type must be local.
2. Every type parameter must appear "under" some local type.
Here are some examples that are legal:
```rust
struct MyStruct<T> { ... }
// Here `T` appears "under' `MyStruct`.
impl<T> Clone for MyStruct<T> { }
// Here `T` appears "under' `MyStruct` as well. Note that it also appears
// elsewhere.
impl<T> Iterator<T> for MyStruct<T> { }
```
Here is an illegal example:
```rust
// Here `U` does not appear "under" `MyStruct` or any other local type.
// We call `U` "uncovered".
impl<T,U> Iterator<U> for MyStruct<T> { }
```
There are a couple of ways to rewrite this last example so that it is
legal:
1. In some cases, the uncovered type parameter (here, `U`) should be converted
into an associated type. This is however a non-local change that requires access
to the original trait. Also, associated types are not fully baked.
2. Add `U` as a type parameter of `MyStruct`:
```rust
struct MyStruct<T,U> { ... }
impl<T,U> Iterator<U> for MyStruct<T,U> { }
```
3. Create a newtype wrapper for `U`
```rust
impl<T,U> Iterator<Wrapper<U>> for MyStruct<T,U> { }
```
Because associated types are not fully baked, which in the case of the
`Hash` trait makes adhering to this rule impossible, you can
temporarily disable this rule in your crate by using
`#![feature(old_orphan_check)]`. Note that the `old_orphan_check`
feature will be removed before 1.0 is released.
2014-12-26 02:30:51 -06:00
|
|
|
pub use self::coherence::orphan_check;
|
|
|
|
pub use self::coherence::OrphanCheckErr;
|
2014-12-05 01:57:17 -06:00
|
|
|
pub use self::fulfill::{FulfillmentContext, RegionObligation};
|
2014-12-17 13:16:28 -06:00
|
|
|
pub use self::project::MismatchedProjectionTypes;
|
2014-12-30 16:42:02 -06:00
|
|
|
pub use self::project::normalize;
|
|
|
|
pub use self::project::Normalized;
|
2014-12-15 20:11:09 -06:00
|
|
|
pub use self::object_safety::is_object_safe;
|
|
|
|
pub use self::object_safety::object_safety_violations;
|
|
|
|
pub use self::object_safety::ObjectSafetyViolation;
|
|
|
|
pub use self::object_safety::MethodViolationCode;
|
2014-09-12 09:53:35 -05:00
|
|
|
pub use self::select::SelectionContext;
|
2014-09-17 15:12:02 -05:00
|
|
|
pub use self::select::SelectionCache;
|
2014-10-17 07:51:43 -05:00
|
|
|
pub use self::select::{MethodMatchResult, MethodMatched, MethodAmbiguous, MethodDidNotMatch};
|
|
|
|
pub use self::select::{MethodMatchedData}; // intentionally don't export variants
|
2014-12-07 10:10:48 -06:00
|
|
|
pub use self::util::elaborate_predicates;
|
2014-12-20 08:15:52 -06:00
|
|
|
pub use self::util::get_vtable_index_of_object_method;
|
2014-12-17 13:16:28 -06:00
|
|
|
pub use self::util::trait_ref_for_builtin_bound;
|
2014-09-12 09:53:35 -05:00
|
|
|
pub use self::util::supertraits;
|
|
|
|
pub use self::util::Supertraits;
|
2014-12-06 00:30:41 -06:00
|
|
|
pub use self::util::transitive_bounds;
|
2014-12-20 08:15:52 -06:00
|
|
|
pub use self::util::upcast;
|
2014-09-12 09:53:35 -05:00
|
|
|
|
|
|
|
mod coherence;
|
2014-12-06 10:39:25 -06:00
|
|
|
mod error_reporting;
|
2014-09-12 09:53:35 -05:00
|
|
|
mod fulfill;
|
2014-12-17 13:16:28 -06:00
|
|
|
mod project;
|
2014-12-15 20:11:09 -06:00
|
|
|
mod object_safety;
|
2014-09-12 09:53:35 -05:00
|
|
|
mod select;
|
|
|
|
mod util;
|
|
|
|
|
2014-11-24 19:06:06 -06: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).
|
2015-02-11 11:12:57 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq)]
|
2014-12-04 23:03:03 -06:00
|
|
|
pub struct Obligation<'tcx, T> {
|
2014-09-29 14:11:30 -05:00
|
|
|
pub cause: ObligationCause<'tcx>,
|
2014-09-12 09:53:35 -05:00
|
|
|
pub recursion_depth: uint,
|
2014-12-17 15:00:34 -06:00
|
|
|
pub predicate: T,
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-07 10:10:48 -06:00
|
|
|
pub type PredicateObligation<'tcx> = Obligation<'tcx, ty::Predicate<'tcx>>;
|
2014-12-17 13:16:28 -06:00
|
|
|
pub type TraitObligation<'tcx> = Obligation<'tcx, ty::PolyTraitPredicate<'tcx>>;
|
2014-12-04 23:03:03 -06:00
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// Why did we incur this obligation? Used for error reporting.
|
2015-02-11 11:12:57 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub struct ObligationCause<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
pub span: Span,
|
2014-12-05 00:59:17 -06:00
|
|
|
|
2014-12-11 03:35:51 -06: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 00:30:41 -06:00
|
|
|
pub body_id: ast::NodeId,
|
2014-12-05 00:59:17 -06:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub code: ObligationCauseCode<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2015-02-11 11:12:57 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum ObligationCauseCode<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
/// Not well classified or should be obvious from span.
|
|
|
|
MiscObligation,
|
|
|
|
|
|
|
|
/// In an impl of trait X for type Y, type Y must
|
|
|
|
/// also implement all supertraits of X.
|
|
|
|
ItemObligation(ast::DefId),
|
|
|
|
|
|
|
|
/// Obligation incurred due to an object cast.
|
2014-09-29 14:11:30 -05:00
|
|
|
ObjectCastObligation(/* Object type */ Ty<'tcx>),
|
2014-09-12 09:53:35 -05:00
|
|
|
|
|
|
|
/// Various cases where expressions must be sized/copy/etc:
|
|
|
|
AssignmentLhsSized, // L = X implies that L is Sized
|
|
|
|
StructInitializerSized, // S { ... } must be Sized
|
|
|
|
VariableType(ast::NodeId), // Type of each variable must be Sized
|
2014-10-18 15:12:02 -05:00
|
|
|
ReturnType, // Return type must be Sized
|
2014-09-12 09:53:35 -05:00
|
|
|
RepeatVec, // [T,..n] --> T must be Copy
|
|
|
|
|
2014-09-22 13:47:06 -05:00
|
|
|
// Captures of variable the given id by a closure (span is the
|
|
|
|
// span of the closure)
|
2014-12-07 10:10:48 -06:00
|
|
|
ClosureCapture(ast::NodeId, Span, ty::BuiltinBound),
|
2014-09-22 19:12:15 -05:00
|
|
|
|
|
|
|
// Types of fields (other than the last) in a struct must be sized.
|
|
|
|
FieldSized,
|
2014-11-07 15:26:26 -06:00
|
|
|
|
|
|
|
// Only Sized types can be made into objects
|
|
|
|
ObjectSized,
|
2014-12-06 10:39:25 -06:00
|
|
|
|
|
|
|
// static items must have `Sync` type
|
|
|
|
SharedStatic,
|
|
|
|
|
2015-01-14 15:43:17 -06:00
|
|
|
|
2014-12-17 13:16:28 -06:00
|
|
|
BuiltinDerivedObligation(DerivedObligationCause<'tcx>),
|
2014-12-06 10:39:25 -06:00
|
|
|
|
2014-12-17 13:16:28 -06:00
|
|
|
ImplDerivedObligation(DerivedObligationCause<'tcx>),
|
2015-01-14 15:43:17 -06:00
|
|
|
|
|
|
|
CompareImplMethodObligation,
|
2014-12-17 13:16:28 -06:00
|
|
|
}
|
|
|
|
|
2015-02-11 11:12:57 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq)]
|
2014-12-17 13:16:28 -06:00
|
|
|
pub struct DerivedObligationCause<'tcx> {
|
2014-12-30 07:59:33 -06: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 13:16:28 -06:00
|
|
|
parent_trait_ref: ty::PolyTraitRef<'tcx>,
|
|
|
|
|
|
|
|
/// The parent trait had this cause
|
|
|
|
parent_code: Rc<ObligationCauseCode<'tcx>>
|
2014-09-22 13:47:06 -05:00
|
|
|
}
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-12-04 23:03:03 -06:00
|
|
|
pub type Obligations<'tcx, O> = subst::VecPerParamSpace<Obligation<'tcx, O>>;
|
2014-12-07 10:10:48 -06:00
|
|
|
pub type PredicateObligations<'tcx> = subst::VecPerParamSpace<PredicateObligation<'tcx>>;
|
2014-12-04 23:03:03 -06:00
|
|
|
pub type TraitObligations<'tcx> = subst::VecPerParamSpace<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 19:01:33 -06:00
|
|
|
|
2014-12-07 10:10:48 -06:00
|
|
|
pub type Selection<'tcx> = Vtable<'tcx, PredicateObligation<'tcx>>;
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Clone,Debug)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum SelectionError<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
Unimplemented,
|
|
|
|
Overflow,
|
2014-12-17 13:16:28 -06:00
|
|
|
OutputTypeParameterMismatch(ty::PolyTraitRef<'tcx>,
|
|
|
|
ty::PolyTraitRef<'tcx>,
|
2014-12-11 12:37:37 -06:00
|
|
|
ty::type_err<'tcx>),
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub struct FulfillmentError<'tcx> {
|
2014-12-07 10:10:48 -06:00
|
|
|
pub obligation: PredicateObligation<'tcx>,
|
2014-09-29 14:11:30 -05:00
|
|
|
pub code: FulfillmentErrorCode<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 21:54:18 -06:00
|
|
|
#[derive(Clone)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum FulfillmentErrorCode<'tcx> {
|
|
|
|
CodeSelectionError(SelectionError<'tcx>),
|
2014-12-17 13:16:28 -06:00
|
|
|
CodeProjectionError(MismatchedProjectionTypes<'tcx>),
|
2014-09-11 00:07:49 -05:00
|
|
|
CodeAmbiguity,
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06: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 14:11:30 -05:00
|
|
|
pub type SelectionResult<'tcx, T> = Result<Option<T>, SelectionError<'tcx>>;
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-11-24 19:06:06 -06: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 03:22:29 -06:00
|
|
|
/// param.clone(); // VtableParam
|
2014-11-24 19:06:06 -06:00
|
|
|
///
|
|
|
|
/// // Case C: A mix of cases A and B.
|
2014-12-27 03:22:29 -06:00
|
|
|
/// mixed.clone(); // Vtable(Impl_1, [VtableParam])
|
2014-11-24 19:06:06 -06:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ### The type parameter `N`
|
|
|
|
///
|
|
|
|
/// See explanation on `VtableImplData`.
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Debug,Clone)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum Vtable<'tcx, N> {
|
2014-09-12 09:53:35 -05:00
|
|
|
/// Vtable identifying a particular impl.
|
2014-09-29 14:11:30 -05:00
|
|
|
VtableImpl(VtableImplData<'tcx, N>),
|
2014-09-12 09:53:35 -05:00
|
|
|
|
|
|
|
/// Successful resolution to an obligation provided by the caller
|
2015-01-08 20:41:42 -06: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 09:53:35 -05:00
|
|
|
|
2014-12-23 04:26:34 -06:00
|
|
|
/// Virtual calls through an object
|
|
|
|
VtableObject(VtableObjectData<'tcx>),
|
|
|
|
|
2014-09-12 09:53:35 -05:00
|
|
|
/// Successful resolution for a builtin trait.
|
2014-10-09 16:19:50 -05:00
|
|
|
VtableBuiltin(VtableBuiltinData<N>),
|
2014-12-01 08:23:40 -06:00
|
|
|
|
2015-01-24 14:15:08 -06: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-01-24 14:00:03 -06:00
|
|
|
VtableClosure(ast::DefId, subst::Substs<'tcx>),
|
2014-12-01 08:23:40 -06:00
|
|
|
|
|
|
|
/// Same as above, but for a fn pointer type with the given signature.
|
|
|
|
VtableFnPointer(ty::Ty<'tcx>),
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06: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.
|
2015-02-11 11:12:57 -06:00
|
|
|
#[derive(Clone, PartialEq, Eq)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub struct VtableImplData<'tcx, N> {
|
2014-09-12 09:53:35 -05:00
|
|
|
pub impl_def_id: ast::DefId,
|
2014-09-29 14:11:30 -05:00
|
|
|
pub substs: subst::Substs<'tcx>,
|
2014-09-12 09:53:35 -05:00
|
|
|
pub nested: subst::VecPerParamSpace<N>
|
|
|
|
}
|
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Debug,Clone)]
|
2014-10-09 16:19:50 -05:00
|
|
|
pub struct VtableBuiltinData<N> {
|
|
|
|
pub nested: subst::VecPerParamSpace<N>
|
|
|
|
}
|
|
|
|
|
2014-12-23 04:26:34 -06:00
|
|
|
/// A vtable for some object-safe trait `Foo` automatically derived
|
|
|
|
/// for the object type `Foo`.
|
2015-01-03 21:54:18 -06:00
|
|
|
#[derive(PartialEq,Eq,Clone)]
|
2014-12-23 04:26:34 -06:00
|
|
|
pub struct VtableObjectData<'tcx> {
|
|
|
|
pub object_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
2014-11-25 20:17:11 -06:00
|
|
|
/// True if there exist types that satisfy both of the two given impls.
|
2014-09-12 09:53:35 -05:00
|
|
|
pub fn overlapping_impls(infcx: &InferCtxt,
|
|
|
|
impl1_def_id: ast::DefId,
|
|
|
|
impl2_def_id: ast::DefId)
|
|
|
|
-> bool
|
|
|
|
{
|
|
|
|
coherence::impl_can_satisfy(infcx, impl1_def_id, impl2_def_id) &&
|
|
|
|
coherence::impl_can_satisfy(infcx, impl2_def_id, impl1_def_id)
|
|
|
|
}
|
|
|
|
|
2014-12-07 10:10:48 -06:00
|
|
|
/// Creates predicate obligations from the generic bounds.
|
|
|
|
pub fn predicates_for_generics<'tcx>(tcx: &ty::ctxt<'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>,
|
|
|
|
generic_bounds: &ty::GenericBounds<'tcx>)
|
|
|
|
-> PredicateObligations<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
2014-12-07 10:10:48 -06:00
|
|
|
util::predicates_for_generics(tcx, cause, 0, generic_bounds)
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-18 08:26:10 -06: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).
|
2015-01-02 03:01:30 -06:00
|
|
|
pub fn evaluate_builtin_bound<'a,'tcx>(infcx: &InferCtxt<'a,'tcx>,
|
2015-01-24 14:00:03 -06:00
|
|
|
typer: &ty::ClosureTyper<'tcx>,
|
2015-01-02 03:01:30 -06:00
|
|
|
ty: Ty<'tcx>,
|
|
|
|
bound: ty::BuiltinBound,
|
|
|
|
span: Span)
|
|
|
|
-> SelectionResult<'tcx, ()>
|
2014-12-18 08:26:10 -06:00
|
|
|
{
|
2014-12-20 02:09:35 -06:00
|
|
|
debug!("type_known_to_meet_builtin_bound(ty={}, bound={:?})",
|
2014-12-18 08:26:10 -06:00
|
|
|
ty.repr(infcx.tcx),
|
|
|
|
bound);
|
|
|
|
|
|
|
|
let mut fulfill_cx = FulfillmentContext::new();
|
|
|
|
|
2015-01-02 03:01:30 -06: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 08:26:10 -06:00
|
|
|
|
2014-12-27 03:22:29 -06:00
|
|
|
fulfill_cx.register_builtin_bound(infcx, ty, bound, cause);
|
2014-12-18 08:26:10 -06: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.
|
2015-01-02 03:01:30 -06:00
|
|
|
let result = match fulfill_cx.select_all_or_error(infcx, typer) {
|
|
|
|
Ok(()) => Ok(Some(())), // Success, we know it implements Copy.
|
|
|
|
Err(errors) => {
|
|
|
|
// Check if overflow occurred anywhere and propagate that.
|
|
|
|
if errors.iter().any(
|
|
|
|
|err| match err.code { CodeSelectionError(Overflow) => true, _ => false })
|
|
|
|
{
|
|
|
|
return Err(Overflow);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, if there were any hard errors, propagate an
|
|
|
|
// arbitrary one of those. If no hard errors at all,
|
|
|
|
// report ambiguity.
|
|
|
|
let sel_error =
|
|
|
|
errors.iter()
|
|
|
|
.filter_map(|err| {
|
|
|
|
match err.code {
|
|
|
|
CodeAmbiguity => None,
|
|
|
|
CodeSelectionError(ref e) => Some(e.clone()),
|
|
|
|
CodeProjectionError(_) => {
|
|
|
|
infcx.tcx.sess.span_bug(
|
|
|
|
span,
|
|
|
|
"projection error while selecting?")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.next();
|
|
|
|
match sel_error {
|
|
|
|
None => { Ok(None) }
|
|
|
|
Some(e) => { Err(e) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-12-18 08:26:10 -06:00
|
|
|
|
2014-12-20 02:09:35 -06:00
|
|
|
debug!("type_known_to_meet_builtin_bound: ty={} bound={:?} result={:?}",
|
2014-12-18 08:26:10 -06:00
|
|
|
ty.repr(infcx.tcx),
|
|
|
|
bound,
|
|
|
|
result);
|
|
|
|
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2015-01-02 03:01:30 -06:00
|
|
|
pub fn type_known_to_meet_builtin_bound<'a,'tcx>(infcx: &InferCtxt<'a,'tcx>,
|
2015-01-24 14:00:03 -06:00
|
|
|
typer: &ty::ClosureTyper<'tcx>,
|
2015-01-02 03:01:30 -06:00
|
|
|
ty: Ty<'tcx>,
|
|
|
|
bound: ty::BuiltinBound,
|
|
|
|
span: Span)
|
|
|
|
-> bool
|
|
|
|
{
|
|
|
|
match evaluate_builtin_bound(infcx, typer, ty, bound, span) {
|
|
|
|
Ok(Some(())) => {
|
|
|
|
// definitely impl'd
|
|
|
|
true
|
|
|
|
}
|
|
|
|
Ok(None) => {
|
|
|
|
// ambiguous: if coherence check was successful, shouldn't
|
|
|
|
// happen, but we might have reported an error and been
|
|
|
|
// soldering on, so just treat this like not implemented
|
|
|
|
false
|
|
|
|
}
|
|
|
|
Err(Overflow) => {
|
2015-01-18 18:58:25 -06:00
|
|
|
span_err!(infcx.tcx.sess, span, E0285,
|
|
|
|
"overflow evaluating whether `{}` is `{}`",
|
|
|
|
ty.user_string(infcx.tcx),
|
|
|
|
bound.user_string(infcx.tcx));
|
2015-01-02 03:01:30 -06:00
|
|
|
suggest_new_overflow_limit(infcx.tcx, span);
|
|
|
|
false
|
|
|
|
}
|
|
|
|
Err(_) => {
|
|
|
|
// other errors: not implemented.
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-26 13:20:38 -06:00
|
|
|
pub fn normalize_param_env_or_error<'a,'tcx>(unnormalized_env: ty::ParameterEnvironment<'a,'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>)
|
|
|
|
-> ty::ParameterEnvironment<'a,'tcx>
|
|
|
|
{
|
|
|
|
match normalize_param_env(&unnormalized_env, cause) {
|
|
|
|
Ok(p) => p,
|
|
|
|
Err(errors) => {
|
2015-01-28 04:06:10 -06: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.
|
2015-01-26 13:20:38 -06:00
|
|
|
let infcx = infer::new_infer_ctxt(unnormalized_env.tcx);
|
|
|
|
report_fulfillment_errors(&infcx, &errors);
|
|
|
|
|
2015-01-28 04:06:10 -06:00
|
|
|
// Normalized failed? use what they gave us, it's better than nothing.
|
2015-01-26 13:20:38 -06:00
|
|
|
unnormalized_env
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn normalize_param_env<'a,'tcx>(param_env: &ty::ParameterEnvironment<'a,'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>)
|
|
|
|
-> Result<ty::ParameterEnvironment<'a,'tcx>,
|
|
|
|
Vec<FulfillmentError<'tcx>>>
|
|
|
|
{
|
|
|
|
let tcx = param_env.tcx;
|
|
|
|
|
|
|
|
debug!("normalize_param_env(param_env={})",
|
|
|
|
param_env.repr(tcx));
|
|
|
|
|
|
|
|
let predicates: Vec<ty::Predicate<'tcx>> = {
|
|
|
|
let infcx = infer::new_infer_ctxt(tcx);
|
|
|
|
let mut selcx = &mut SelectionContext::new(&infcx, param_env);
|
|
|
|
let mut fulfill_cx = FulfillmentContext::new();
|
|
|
|
let Normalized { value: predicates, obligations } =
|
|
|
|
project::normalize(selcx, cause, ¶m_env.caller_bounds);
|
2015-01-31 19:03:04 -06:00
|
|
|
for obligation in obligations {
|
2015-01-26 13:20:38 -06:00
|
|
|
fulfill_cx.register_predicate_obligation(selcx.infcx(), obligation);
|
|
|
|
}
|
|
|
|
try!(fulfill_cx.select_all_or_error(selcx.infcx(), param_env));
|
|
|
|
predicates.iter().map(|p| infcx.resolve_type_vars_if_possible(p)).collect()
|
|
|
|
};
|
|
|
|
|
|
|
|
debug!("normalize_param_env: predicates={}",
|
|
|
|
predicates.repr(tcx));
|
|
|
|
|
|
|
|
Ok(param_env.with_caller_bounds(predicates))
|
|
|
|
}
|
|
|
|
|
2014-12-04 23:03:03 -06:00
|
|
|
impl<'tcx,O> Obligation<'tcx,O> {
|
|
|
|
pub fn new(cause: ObligationCause<'tcx>,
|
|
|
|
trait_ref: O)
|
|
|
|
-> Obligation<'tcx, O>
|
|
|
|
{
|
2014-09-12 09:53:35 -05:00
|
|
|
Obligation { cause: cause,
|
|
|
|
recursion_depth: 0,
|
2014-12-17 15:00:34 -06:00
|
|
|
predicate: trait_ref }
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-30 16:42:02 -06:00
|
|
|
fn with_depth(cause: ObligationCause<'tcx>,
|
|
|
|
recursion_depth: uint,
|
|
|
|
trait_ref: O)
|
|
|
|
-> Obligation<'tcx, O>
|
|
|
|
{
|
|
|
|
Obligation { cause: cause,
|
|
|
|
recursion_depth: recursion_depth,
|
|
|
|
predicate: trait_ref }
|
|
|
|
}
|
|
|
|
|
2014-12-06 00:30:41 -06:00
|
|
|
pub fn misc(span: Span, body_id: ast::NodeId, trait_ref: O) -> Obligation<'tcx, O> {
|
|
|
|
Obligation::new(ObligationCause::misc(span, body_id), trait_ref)
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
2014-12-07 10:10:48 -06:00
|
|
|
|
|
|
|
pub fn with<P>(&self, value: P) -> Obligation<'tcx,P> {
|
|
|
|
Obligation { cause: self.cause.clone(),
|
|
|
|
recursion_depth: self.recursion_depth,
|
2014-12-17 15:00:34 -06:00
|
|
|
predicate: value }
|
2014-12-07 10:10:48 -06:00
|
|
|
}
|
2014-12-04 23:03:03 -06:00
|
|
|
}
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
impl<'tcx> ObligationCause<'tcx> {
|
2014-12-05 00:59:17 -06:00
|
|
|
pub fn new(span: Span,
|
2014-12-06 00:30:41 -06:00
|
|
|
body_id: ast::NodeId,
|
2014-12-05 00:59:17 -06:00
|
|
|
code: ObligationCauseCode<'tcx>)
|
2014-09-29 14:11:30 -05:00
|
|
|
-> ObligationCause<'tcx> {
|
2014-12-06 00:30:41 -06:00
|
|
|
ObligationCause { span: span, body_id: body_id, code: code }
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-06 00:30:41 -06:00
|
|
|
pub fn misc(span: Span, body_id: ast::NodeId) -> ObligationCause<'tcx> {
|
|
|
|
ObligationCause { span: span, body_id: body_id, code: MiscObligation }
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
2014-09-22 13:47:06 -05:00
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn dummy() -> ObligationCause<'tcx> {
|
2014-12-06 00:30:41 -06:00
|
|
|
ObligationCause { span: DUMMY_SP, body_id: 0, code: MiscObligation }
|
2014-09-22 13:47:06 -05:00
|
|
|
}
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
impl<'tcx, N> Vtable<'tcx, N> {
|
2014-12-19 14:52:10 -06:00
|
|
|
pub fn iter_nested(&self) -> Iter<N> {
|
2014-10-09 16:19:50 -05:00
|
|
|
match *self {
|
|
|
|
VtableImpl(ref i) => i.iter_nested(),
|
2014-12-01 08:23:40 -06:00
|
|
|
VtableFnPointer(..) => (&[]).iter(),
|
2015-01-24 14:00:03 -06:00
|
|
|
VtableClosure(..) => (&[]).iter(),
|
2015-01-08 20:41:42 -06:00
|
|
|
VtableParam(ref n) => n.iter(),
|
2014-12-23 04:26:34 -06:00
|
|
|
VtableObject(_) => (&[]).iter(),
|
2014-10-09 16:19:50 -05:00
|
|
|
VtableBuiltin(ref i) => i.iter_nested(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 13:56:00 -06:00
|
|
|
pub fn map_nested<M, F>(&self, op: F) -> Vtable<'tcx, M> where F: FnMut(&N) -> M {
|
2014-09-12 09:53:35 -05:00
|
|
|
match *self {
|
|
|
|
VtableImpl(ref i) => VtableImpl(i.map_nested(op)),
|
2014-12-01 08:23:40 -06:00
|
|
|
VtableFnPointer(ref sig) => VtableFnPointer((*sig).clone()),
|
2015-01-24 14:00:03 -06:00
|
|
|
VtableClosure(d, ref s) => VtableClosure(d, s.clone()),
|
2015-01-08 20:41:42 -06:00
|
|
|
VtableParam(ref n) => VtableParam(n.iter().map(op).collect()),
|
2014-12-23 04:26:34 -06:00
|
|
|
VtableObject(ref p) => VtableObject(p.clone()),
|
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 19:01:33 -06:00
|
|
|
VtableBuiltin(ref b) => VtableBuiltin(b.map_nested(op)),
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:26:43 -06:00
|
|
|
pub fn map_move_nested<M, F>(self, op: F) -> Vtable<'tcx, M> where
|
|
|
|
F: FnMut(N) -> M,
|
|
|
|
{
|
2014-09-12 09:53:35 -05:00
|
|
|
match self {
|
|
|
|
VtableImpl(i) => VtableImpl(i.map_move_nested(op)),
|
2014-12-01 08:23:40 -06:00
|
|
|
VtableFnPointer(sig) => VtableFnPointer(sig),
|
2015-01-24 14:00:03 -06:00
|
|
|
VtableClosure(d, s) => VtableClosure(d, s),
|
2015-01-08 20:41:42 -06:00
|
|
|
VtableParam(n) => VtableParam(n.into_iter().map(op).collect()),
|
2014-12-23 04:26:34 -06:00
|
|
|
VtableObject(p) => VtableObject(p),
|
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 19:01:33 -06:00
|
|
|
VtableBuiltin(no) => VtableBuiltin(no.map_move_nested(op)),
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
impl<'tcx, N> VtableImplData<'tcx, N> {
|
2014-12-19 14:52:10 -06:00
|
|
|
pub fn iter_nested(&self) -> Iter<N> {
|
2014-10-09 16:19:50 -05:00
|
|
|
self.nested.iter()
|
|
|
|
}
|
|
|
|
|
2014-12-02 13:56:00 -06:00
|
|
|
pub fn map_nested<M, F>(&self, op: F) -> VtableImplData<'tcx, M> where
|
|
|
|
F: FnMut(&N) -> M,
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
2014-09-11 00:07:49 -05:00
|
|
|
VtableImplData {
|
2014-09-12 09:53:35 -05:00
|
|
|
impl_def_id: self.impl_def_id,
|
|
|
|
substs: self.substs.clone(),
|
|
|
|
nested: self.nested.map(op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:26:43 -06:00
|
|
|
pub fn map_move_nested<M, F>(self, op: F) -> VtableImplData<'tcx, M> where
|
|
|
|
F: FnMut(N) -> M,
|
|
|
|
{
|
2014-09-11 00:07:49 -05:00
|
|
|
let VtableImplData { impl_def_id, substs, nested } = self;
|
|
|
|
VtableImplData {
|
2014-09-12 09:53:35 -05:00
|
|
|
impl_def_id: impl_def_id,
|
|
|
|
substs: substs,
|
|
|
|
nested: nested.map_move(op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:19:50 -05:00
|
|
|
impl<N> VtableBuiltinData<N> {
|
2014-12-19 14:52:10 -06:00
|
|
|
pub fn iter_nested(&self) -> Iter<N> {
|
2014-10-09 16:19:50 -05:00
|
|
|
self.nested.iter()
|
|
|
|
}
|
|
|
|
|
2014-12-02 13:56:00 -06:00
|
|
|
pub fn map_nested<M, F>(&self, op: F) -> VtableBuiltinData<M> where F: FnMut(&N) -> M {
|
2014-10-09 16:19:50 -05:00
|
|
|
VtableBuiltinData {
|
|
|
|
nested: self.nested.map(op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-08 19:26:43 -06:00
|
|
|
pub fn map_move_nested<M, F>(self, op: F) -> VtableBuiltinData<M> where
|
|
|
|
F: FnMut(N) -> M,
|
|
|
|
{
|
2014-10-09 16:19:50 -05:00
|
|
|
VtableBuiltinData {
|
|
|
|
nested: self.nested.map_move(op)
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
impl<'tcx> FulfillmentError<'tcx> {
|
2014-12-07 10:10:48 -06:00
|
|
|
fn new(obligation: PredicateObligation<'tcx>,
|
2014-12-04 23:03:03 -06:00
|
|
|
code: FulfillmentErrorCode<'tcx>)
|
2014-09-29 14:11:30 -05:00
|
|
|
-> FulfillmentError<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
|
|
|
FulfillmentError { obligation: obligation, code: code }
|
|
|
|
}
|
2014-10-09 16:19:50 -05:00
|
|
|
|
|
|
|
pub fn is_overflow(&self) -> bool {
|
|
|
|
match self.code {
|
|
|
|
CodeAmbiguity => false,
|
|
|
|
CodeSelectionError(Overflow) => true,
|
|
|
|
CodeSelectionError(_) => false,
|
2014-12-17 13:16:28 -06:00
|
|
|
CodeProjectionError(_) => false,
|
2014-10-09 16:19:50 -05:00
|
|
|
}
|
|
|
|
}
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
2014-12-17 13:16:28 -06:00
|
|
|
|
|
|
|
impl<'tcx> TraitObligation<'tcx> {
|
|
|
|
fn self_ty(&self) -> Ty<'tcx> {
|
|
|
|
self.predicate.0.self_ty()
|
|
|
|
}
|
|
|
|
}
|