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::*;
|
|
|
|
|
2014-09-18 10:08:04 -05:00
|
|
|
use middle::mem_categorization::Typer;
|
2014-09-12 09:53:35 -05:00
|
|
|
use middle::subst;
|
2014-09-13 13:09:25 -05:00
|
|
|
use middle::ty::{mod, Ty};
|
2014-11-25 15:59:02 -06:00
|
|
|
use middle::infer::InferCtxt;
|
2014-09-12 09:53:35 -05:00
|
|
|
use std::rc::Rc;
|
2014-10-09 16:19:50 -05:00
|
|
|
use std::slice::Items;
|
2014-09-12 09:53:35 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::codemap::{Span, DUMMY_SP};
|
2014-11-08 05:59:10 -06:00
|
|
|
use util::common::ErrorReported;
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-12-05 01:57:17 -06:00
|
|
|
pub use self::fulfill::{FulfillmentContext, RegionObligation};
|
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-09-12 09:53:35 -05:00
|
|
|
pub use self::util::supertraits;
|
|
|
|
pub use self::util::transitive_bounds;
|
|
|
|
pub use self::util::Supertraits;
|
|
|
|
pub use self::util::search_trait_and_supertraits_from_bound;
|
|
|
|
|
|
|
|
mod coherence;
|
|
|
|
mod fulfill;
|
|
|
|
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).
|
2014-09-12 09:53:35 -05:00
|
|
|
#[deriving(Clone)]
|
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-04 23:03:03 -06:00
|
|
|
pub trait_ref: T,
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-04 23:03:03 -06:00
|
|
|
pub type TraitObligation<'tcx> = Obligation<'tcx, Rc<ty::TraitRef<'tcx>>>;
|
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// Why did we incur this obligation? Used for error reporting.
|
2014-12-04 23:03:03 -06:00
|
|
|
#[deriving(Copy, Clone)]
|
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
|
|
|
|
|
|
|
// the id of XXX
|
|
|
|
pub scope_id: ast::NodeId,
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub code: ObligationCauseCode<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-04 23:03:03 -06:00
|
|
|
#[deriving(Copy, Clone)]
|
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
|
|
|
|
2014-09-20 08:19:45 -05:00
|
|
|
/// To implement drop, type must be sendable.
|
|
|
|
DropTrait,
|
|
|
|
|
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-09-22 19:12:15 -05:00
|
|
|
ClosureCapture(ast::NodeId, Span),
|
|
|
|
|
|
|
|
// 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-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-09-12 09:53:35 -05:00
|
|
|
|
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-04 23:03:03 -06:00
|
|
|
pub type Selection<'tcx> = Vtable<'tcx, TraitObligation<'tcx>>;
|
2014-09-12 09:53:35 -05:00
|
|
|
|
|
|
|
#[deriving(Clone,Show)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum SelectionError<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
Unimplemented,
|
|
|
|
Overflow,
|
2014-09-29 14:11:30 -05:00
|
|
|
OutputTypeParameterMismatch(Rc<ty::TraitRef<'tcx>>, 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-04 23:03:03 -06:00
|
|
|
pub obligation: TraitObligation<'tcx>,
|
2014-09-29 14:11:30 -05:00
|
|
|
pub code: FulfillmentErrorCode<'tcx>
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[deriving(Clone)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub enum FulfillmentErrorCode<'tcx> {
|
|
|
|
CodeSelectionError(SelectionError<'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.
|
|
|
|
/// param.clone(); // VtableParam(Oblig_1)
|
|
|
|
///
|
|
|
|
/// // Case C: A mix of cases A and B.
|
|
|
|
/// mixed.clone(); // Vtable(Impl_1, [VtableParam(Oblig_1)])
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ### The type parameter `N`
|
|
|
|
///
|
|
|
|
/// See explanation on `VtableImplData`.
|
2014-09-12 09:53:35 -05:00
|
|
|
#[deriving(Show,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
|
|
|
|
/// for some type parameter.
|
2014-09-29 14:11:30 -05:00
|
|
|
VtableParam(VtableParamData<'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
|
|
|
|
|
|
|
/// Vtable automatically generated for an unboxed 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.
|
|
|
|
VtableUnboxedClosure(ast::DefId, subst::Substs<'tcx>),
|
|
|
|
|
|
|
|
/// 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.
|
2014-09-12 09:53:35 -05:00
|
|
|
#[deriving(Clone)]
|
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>
|
|
|
|
}
|
|
|
|
|
2014-10-09 16:19:50 -05:00
|
|
|
#[deriving(Show,Clone)]
|
|
|
|
pub struct VtableBuiltinData<N> {
|
|
|
|
pub nested: subst::VecPerParamSpace<N>
|
|
|
|
}
|
|
|
|
|
2014-11-24 19:06:06 -06:00
|
|
|
/// A vtable provided as a parameter by the caller. For example, in a
|
|
|
|
/// function like `fn foo<T:Eq>(...)`, if the `eq()` method is invoked
|
|
|
|
/// on an instance of `T`, the vtable would be of type `VtableParam`.
|
2014-10-09 16:19:50 -05:00
|
|
|
#[deriving(PartialEq,Eq,Clone)]
|
2014-09-29 14:11:30 -05:00
|
|
|
pub struct VtableParamData<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
// In the above example, this would `Eq`
|
2014-09-29 14:11:30 -05:00
|
|
|
pub bound: Rc<ty::TraitRef<'tcx>>,
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-11-25 20:17:11 -06:00
|
|
|
/// Matches the self type of the inherent impl `impl_def_id`
|
|
|
|
/// against `self_ty` and returns the resulting resolution. This
|
|
|
|
/// routine may modify the surrounding type context (for example,
|
|
|
|
/// it may unify variables).
|
2014-09-18 10:08:04 -05:00
|
|
|
pub fn select_inherent_impl<'a,'tcx>(infcx: &InferCtxt<'a,'tcx>,
|
2014-09-29 14:11:30 -05:00
|
|
|
param_env: &ty::ParameterEnvironment<'tcx>,
|
2014-09-18 10:08:04 -05:00
|
|
|
typer: &Typer<'tcx>,
|
2014-09-29 14:11:30 -05:00
|
|
|
cause: ObligationCause<'tcx>,
|
2014-09-18 10:08:04 -05:00
|
|
|
impl_def_id: ast::DefId,
|
2014-09-29 14:11:30 -05:00
|
|
|
self_ty: Ty<'tcx>)
|
|
|
|
-> SelectionResult<'tcx,
|
2014-12-04 23:03:03 -06:00
|
|
|
VtableImplData<'tcx, TraitObligation<'tcx>>>
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
|
|
|
// This routine is only suitable for inherent impls. This is
|
|
|
|
// because it does not attempt to unify the output type parameters
|
|
|
|
// from the trait ref against the values from the obligation.
|
|
|
|
// (These things do not apply to inherent impls, for which there
|
|
|
|
// is no trait ref nor obligation.)
|
|
|
|
//
|
|
|
|
// Matching against non-inherent impls should be done with
|
|
|
|
// `try_resolve_obligation()`.
|
|
|
|
assert!(ty::impl_trait_ref(infcx.tcx, impl_def_id).is_none());
|
|
|
|
|
2014-09-18 10:08:04 -05:00
|
|
|
let mut selcx = select::SelectionContext::new(infcx, param_env, typer);
|
2014-09-12 09:53:35 -05:00
|
|
|
selcx.select_inherent_impl(impl_def_id, cause, self_ty)
|
|
|
|
}
|
|
|
|
|
2014-11-25 20:17:11 -06:00
|
|
|
/// True if neither the trait nor self type is local. Note that `impl_def_id` must refer to an impl
|
|
|
|
/// of a trait, not an inherent impl.
|
2014-09-12 09:53:35 -05:00
|
|
|
pub fn is_orphan_impl(tcx: &ty::ctxt,
|
|
|
|
impl_def_id: ast::DefId)
|
|
|
|
-> bool
|
|
|
|
{
|
|
|
|
!coherence::impl_is_local(tcx, impl_def_id)
|
|
|
|
}
|
|
|
|
|
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-11-25 20:17:11 -06:00
|
|
|
/// Given generic bounds from an impl like:
|
|
|
|
///
|
|
|
|
/// impl<A:Foo, B:Bar+Qux> ...
|
|
|
|
///
|
|
|
|
/// along with the bindings for the types `A` and `B` (e.g., `<A=A0, B=B0>`), yields a result like
|
|
|
|
///
|
|
|
|
/// [[Foo for A0, Bar for B0, Qux for B0], [], []]
|
|
|
|
///
|
|
|
|
/// Expects that `generic_bounds` have already been fully substituted, late-bound regions liberated
|
|
|
|
/// and so forth, so that they are in the same namespace as `type_substs`.
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn obligations_for_generics<'tcx>(tcx: &ty::ctxt<'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>,
|
|
|
|
generic_bounds: &ty::GenericBounds<'tcx>,
|
|
|
|
type_substs: &subst::VecPerParamSpace<Ty<'tcx>>)
|
2014-12-04 23:03:03 -06:00
|
|
|
-> subst::VecPerParamSpace<TraitObligation<'tcx>>
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
2014-11-15 16:25:05 -06:00
|
|
|
util::obligations_for_generics(tcx, cause, 0, generic_bounds, type_substs)
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn obligation_for_builtin_bound<'tcx>(tcx: &ty::ctxt<'tcx>,
|
|
|
|
cause: ObligationCause<'tcx>,
|
|
|
|
source_ty: Ty<'tcx>,
|
|
|
|
builtin_bound: ty::BuiltinBound)
|
2014-12-04 23:03:03 -06:00
|
|
|
-> Result<TraitObligation<'tcx>, ErrorReported>
|
2014-09-12 09:53:35 -05:00
|
|
|
{
|
|
|
|
util::obligation_for_builtin_bound(tcx, cause, builtin_bound, 0, source_ty)
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
trait_ref: trait_ref }
|
|
|
|
}
|
|
|
|
|
2014-12-05 00:59:17 -06:00
|
|
|
pub fn misc(span: Span, scope_id: ast::NodeId, trait_ref: O) -> Obligation<'tcx, O> {
|
|
|
|
Obligation::new(ObligationCause::misc(span, scope_id), trait_ref)
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
2014-12-04 23:03:03 -06:00
|
|
|
}
|
2014-09-12 09:53:35 -05:00
|
|
|
|
2014-12-04 23:03:03 -06:00
|
|
|
impl<'tcx> Obligation<'tcx,Rc<ty::TraitRef<'tcx>>> {
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn self_ty(&self) -> Ty<'tcx> {
|
2014-09-12 09:53:35 -05:00
|
|
|
self.trait_ref.self_ty()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
scope_id: ast::NodeId,
|
|
|
|
code: ObligationCauseCode<'tcx>)
|
2014-09-29 14:11:30 -05:00
|
|
|
-> ObligationCause<'tcx> {
|
2014-12-05 00:59:17 -06:00
|
|
|
ObligationCause { span: span, scope_id: scope_id, code: code }
|
2014-09-12 09:53:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-05 00:59:17 -06:00
|
|
|
pub fn misc(span: Span, scope_id: ast::NodeId) -> ObligationCause<'tcx> {
|
|
|
|
ObligationCause { span: span, scope_id: scope_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-05 00:59:17 -06:00
|
|
|
ObligationCause { span: DUMMY_SP, scope_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-10-09 16:19:50 -05:00
|
|
|
pub fn iter_nested(&self) -> Items<N> {
|
|
|
|
match *self {
|
|
|
|
VtableImpl(ref i) => i.iter_nested(),
|
2014-12-01 08:23:40 -06:00
|
|
|
VtableFnPointer(..) => (&[]).iter(),
|
2014-11-06 01:50:10 -06:00
|
|
|
VtableUnboxedClosure(..) => (&[]).iter(),
|
2014-10-09 16:19:50 -05:00
|
|
|
VtableParam(_) => (&[]).iter(),
|
|
|
|
VtableBuiltin(ref i) => i.iter_nested(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-29 14:11:30 -05:00
|
|
|
pub fn map_nested<M>(&self, op: |&N| -> M) -> Vtable<'tcx, 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()),
|
2014-11-06 01:50:10 -06:00
|
|
|
VtableUnboxedClosure(d, ref s) => VtableUnboxedClosure(d, s.clone()),
|
2014-09-12 09:53:35 -05:00
|
|
|
VtableParam(ref p) => VtableParam((*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-09-29 14:11:30 -05:00
|
|
|
pub fn map_move_nested<M>(self, op: |N| -> M) -> Vtable<'tcx, 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),
|
2014-11-06 01:50:10 -06:00
|
|
|
VtableUnboxedClosure(d, s) => VtableUnboxedClosure(d, s),
|
2014-09-12 09:53:35 -05:00
|
|
|
VtableParam(p) => VtableParam(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-10-09 16:19:50 -05:00
|
|
|
pub fn iter_nested(&self) -> Items<N> {
|
|
|
|
self.nested.iter()
|
|
|
|
}
|
|
|
|
|
2014-09-12 09:53:35 -05:00
|
|
|
pub fn map_nested<M>(&self,
|
|
|
|
op: |&N| -> M)
|
2014-09-29 14:11:30 -05:00
|
|
|
-> VtableImplData<'tcx, 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-09-29 14:11:30 -05:00
|
|
|
pub fn map_move_nested<M>(self, op: |N| -> M)
|
|
|
|
-> VtableImplData<'tcx, 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> {
|
|
|
|
pub fn iter_nested(&self) -> Items<N> {
|
|
|
|
self.nested.iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn map_nested<M>(&self,
|
|
|
|
op: |&N| -> M)
|
|
|
|
-> VtableBuiltinData<M>
|
|
|
|
{
|
|
|
|
VtableBuiltinData {
|
|
|
|
nested: self.nested.map(op)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn map_move_nested<M>(self, op: |N| -> M) -> VtableBuiltinData<M> {
|
|
|
|
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-04 23:03:03 -06:00
|
|
|
fn new(obligation: TraitObligation<'tcx>,
|
|
|
|
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-09-12 09:53:35 -05:00
|
|
|
}
|