2015-09-14 12:53:53 +03:00
|
|
|
// Copyright 2012-2015 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.
|
|
|
|
|
2016-03-22 17:30:57 +02:00
|
|
|
use traits;
|
|
|
|
use traits::project::Normalized;
|
2016-04-29 06:00:23 +03:00
|
|
|
use ty::{Lift, TyCtxt};
|
2016-03-22 17:30:57 +02:00
|
|
|
use ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
|
2015-09-14 12:53:53 +03:00
|
|
|
|
|
|
|
use std::fmt;
|
|
|
|
|
2016-03-22 17:30:57 +02:00
|
|
|
// structural impls for the structs in traits
|
2015-09-14 12:53:53 +03:00
|
|
|
|
|
|
|
impl<'tcx, T: fmt::Debug> fmt::Debug for Normalized<'tcx, T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "Normalized({:?},{:?})",
|
|
|
|
self.value,
|
|
|
|
self.obligations)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> fmt::Debug for traits::RegionObligation<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "RegionObligation(sub_region={:?}, sup_type={:?})",
|
|
|
|
self.sub_region,
|
|
|
|
self.sup_type)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<'tcx, O: fmt::Debug> fmt::Debug for traits::Obligation<'tcx, O> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "Obligation(predicate={:?},depth={})",
|
|
|
|
self.predicate,
|
|
|
|
self.recursion_depth)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::Vtable<'tcx, N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
super::VtableImpl(ref v) =>
|
|
|
|
write!(f, "{:?}", v),
|
|
|
|
|
|
|
|
super::VtableDefaultImpl(ref t) =>
|
|
|
|
write!(f, "{:?}", t),
|
|
|
|
|
|
|
|
super::VtableClosure(ref d) =>
|
|
|
|
write!(f, "{:?}", d),
|
|
|
|
|
|
|
|
super::VtableFnPointer(ref d) =>
|
|
|
|
write!(f, "VtableFnPointer({:?})", d),
|
|
|
|
|
|
|
|
super::VtableObject(ref d) =>
|
|
|
|
write!(f, "{:?}", d),
|
|
|
|
|
|
|
|
super::VtableParam(ref n) =>
|
|
|
|
write!(f, "VtableParam({:?})", n),
|
|
|
|
|
|
|
|
super::VtableBuiltin(ref d) =>
|
|
|
|
write!(f, "{:?}", d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableImplData<'tcx, N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "VtableImpl(impl_def_id={:?}, substs={:?}, nested={:?})",
|
|
|
|
self.impl_def_id,
|
|
|
|
self.substs,
|
|
|
|
self.nested)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableClosureData<'tcx, N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "VtableClosure(closure_def_id={:?}, substs={:?}, nested={:?})",
|
|
|
|
self.closure_def_id,
|
|
|
|
self.substs,
|
|
|
|
self.nested)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableBuiltinData<N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "VtableBuiltin(nested={:?})", self.nested)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableDefaultImplData<N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "VtableDefaultImplData(trait_def_id={:?}, nested={:?})",
|
|
|
|
self.trait_def_id,
|
|
|
|
self.nested)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 14:40:24 -07:00
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableObjectData<'tcx, N> {
|
2015-09-14 12:53:53 +03:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-05-11 14:40:24 -07:00
|
|
|
write!(f, "VtableObject(upcast={:?}, vtable_base={}, nested={:?})",
|
2015-09-14 12:53:53 +03:00
|
|
|
self.upcast_trait_ref,
|
2016-05-11 14:40:24 -07:00
|
|
|
self.vtable_base,
|
|
|
|
self.nested)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: fmt::Debug> fmt::Debug for traits::VtableFnPointerData<'tcx, N> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "VtableFnPointer(fn_ty={:?}, nested={:?})",
|
|
|
|
self.fn_ty,
|
|
|
|
self.nested)
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> fmt::Debug for traits::FulfillmentError<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "FulfillmentError({:?},{:?})",
|
|
|
|
self.obligation,
|
|
|
|
self.code)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> fmt::Debug for traits::FulfillmentErrorCode<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
super::CodeSelectionError(ref e) => write!(f, "{:?}", e),
|
|
|
|
super::CodeProjectionError(ref e) => write!(f, "{:?}", e),
|
|
|
|
super::CodeAmbiguity => write!(f, "Ambiguity")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> fmt::Debug for traits::MismatchedProjectionTypes<'tcx> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "MismatchedProjectionTypes({:?})", self.err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 06:00:23 +03:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// Lift implementations
|
|
|
|
|
|
|
|
impl<'a, 'tcx> Lift<'tcx> for traits::SelectionError<'a> {
|
|
|
|
type Lifted = traits::SelectionError<'tcx>;
|
|
|
|
fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
|
|
|
|
match *self {
|
|
|
|
super::Unimplemented => Some(super::Unimplemented),
|
|
|
|
super::OutputTypeParameterMismatch(a, b, ref err) => {
|
|
|
|
tcx.lift(&(a, b)).and_then(|(a, b)| {
|
|
|
|
tcx.lift(err).map(|err| {
|
|
|
|
super::OutputTypeParameterMismatch(a, b, err)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
super::TraitNotObjectSafe(def_id) => {
|
|
|
|
Some(super::TraitNotObjectSafe(def_id))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 04:14:41 +03:00
|
|
|
// For trans only.
|
|
|
|
impl<'a, 'tcx> Lift<'tcx> for traits::Vtable<'a, ()> {
|
|
|
|
type Lifted = traits::Vtable<'tcx, ()>;
|
|
|
|
fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
|
|
|
|
match self.clone() {
|
|
|
|
traits::VtableImpl(traits::VtableImplData {
|
|
|
|
impl_def_id,
|
|
|
|
substs,
|
|
|
|
nested
|
|
|
|
}) => {
|
|
|
|
tcx.lift(&substs).map(|substs| {
|
|
|
|
traits::VtableImpl(traits::VtableImplData {
|
|
|
|
impl_def_id: impl_def_id,
|
|
|
|
substs: substs,
|
|
|
|
nested: nested
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
traits::VtableDefaultImpl(t) => Some(traits::VtableDefaultImpl(t)),
|
|
|
|
traits::VtableClosure(traits::VtableClosureData {
|
|
|
|
closure_def_id,
|
|
|
|
substs,
|
|
|
|
nested
|
|
|
|
}) => {
|
|
|
|
tcx.lift(&substs).map(|substs| {
|
|
|
|
traits::VtableClosure(traits::VtableClosureData {
|
|
|
|
closure_def_id: closure_def_id,
|
|
|
|
substs: substs,
|
|
|
|
nested: nested
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2016-05-11 14:40:24 -07:00
|
|
|
traits::VtableFnPointer(traits::VtableFnPointerData { fn_ty, nested }) => {
|
|
|
|
tcx.lift(&fn_ty).map(|fn_ty| {
|
|
|
|
traits::VtableFnPointer(traits::VtableFnPointerData {
|
|
|
|
fn_ty: fn_ty,
|
|
|
|
nested: nested,
|
|
|
|
})
|
|
|
|
})
|
2016-05-11 04:14:41 +03:00
|
|
|
}
|
|
|
|
traits::VtableParam(n) => Some(traits::VtableParam(n)),
|
|
|
|
traits::VtableBuiltin(d) => Some(traits::VtableBuiltin(d)),
|
|
|
|
traits::VtableObject(traits::VtableObjectData {
|
|
|
|
upcast_trait_ref,
|
2016-05-11 14:40:24 -07:00
|
|
|
vtable_base,
|
|
|
|
nested
|
2016-05-11 04:14:41 +03:00
|
|
|
}) => {
|
|
|
|
tcx.lift(&upcast_trait_ref).map(|trait_ref| {
|
|
|
|
traits::VtableObject(traits::VtableObjectData {
|
|
|
|
upcast_trait_ref: trait_ref,
|
2016-05-11 14:40:24 -07:00
|
|
|
vtable_base: vtable_base,
|
|
|
|
nested: nested
|
2016-05-11 04:14:41 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-29 06:00:23 +03:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// TypeFoldable implementations.
|
|
|
|
|
2015-09-14 12:53:53 +03:00
|
|
|
impl<'tcx, O: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::Obligation<'tcx, O>
|
|
|
|
{
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
traits::Obligation {
|
|
|
|
cause: self.cause.clone(),
|
|
|
|
recursion_depth: self.recursion_depth,
|
|
|
|
predicate: self.predicate.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.predicate.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableImplData<'tcx, N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
traits::VtableImplData {
|
|
|
|
impl_def_id: self.impl_def_id,
|
2016-04-29 08:30:54 +03:00
|
|
|
substs: self.substs.fold_with(folder),
|
2015-09-14 12:53:53 +03:00
|
|
|
nested: self.nested.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.substs.visit_with(visitor) || self.nested.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableClosureData<'tcx, N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
traits::VtableClosureData {
|
|
|
|
closure_def_id: self.closure_def_id,
|
|
|
|
substs: self.substs.fold_with(folder),
|
|
|
|
nested: self.nested.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.substs.visit_with(visitor) || self.nested.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableDefaultImplData<N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
traits::VtableDefaultImplData {
|
|
|
|
trait_def_id: self.trait_def_id,
|
|
|
|
nested: self.nested.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.nested.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableBuiltinData<N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
traits::VtableBuiltinData {
|
|
|
|
nested: self.nested.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.nested.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
2016-05-11 14:40:24 -07:00
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableObjectData<'tcx, N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-15 00:47:14 +03:00
|
|
|
traits::VtableObjectData {
|
|
|
|
upcast_trait_ref: self.upcast_trait_ref.fold_with(folder),
|
2016-05-11 14:40:24 -07:00
|
|
|
vtable_base: self.vtable_base,
|
|
|
|
nested: self.nested.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
|
|
|
self.upcast_trait_ref.visit_with(visitor) || self.nested.visit_with(visitor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::VtableFnPointerData<'tcx, N> {
|
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
|
|
|
traits::VtableFnPointerData {
|
|
|
|
fn_ty: self.fn_ty.fold_with(folder),
|
|
|
|
nested: self.nested.fold_with(folder),
|
2015-09-15 00:47:14 +03:00
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2016-05-11 14:40:24 -07:00
|
|
|
self.fn_ty.visit_with(visitor) || self.nested.visit_with(visitor)
|
2015-11-18 09:38:57 +00:00
|
|
|
}
|
2015-09-15 00:47:14 +03:00
|
|
|
}
|
|
|
|
|
2015-09-14 12:53:53 +03:00
|
|
|
impl<'tcx, N: TypeFoldable<'tcx>> TypeFoldable<'tcx> for traits::Vtable<'tcx, N> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
match *self {
|
|
|
|
traits::VtableImpl(ref v) => traits::VtableImpl(v.fold_with(folder)),
|
|
|
|
traits::VtableDefaultImpl(ref t) => traits::VtableDefaultImpl(t.fold_with(folder)),
|
|
|
|
traits::VtableClosure(ref d) => {
|
|
|
|
traits::VtableClosure(d.fold_with(folder))
|
|
|
|
}
|
|
|
|
traits::VtableFnPointer(ref d) => {
|
|
|
|
traits::VtableFnPointer(d.fold_with(folder))
|
|
|
|
}
|
|
|
|
traits::VtableParam(ref n) => traits::VtableParam(n.fold_with(folder)),
|
|
|
|
traits::VtableBuiltin(ref d) => traits::VtableBuiltin(d.fold_with(folder)),
|
|
|
|
traits::VtableObject(ref d) => traits::VtableObject(d.fold_with(folder)),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
match *self {
|
|
|
|
traits::VtableImpl(ref v) => v.visit_with(visitor),
|
|
|
|
traits::VtableDefaultImpl(ref t) => t.visit_with(visitor),
|
|
|
|
traits::VtableClosure(ref d) => d.visit_with(visitor),
|
|
|
|
traits::VtableFnPointer(ref d) => d.visit_with(visitor),
|
|
|
|
traits::VtableParam(ref n) => n.visit_with(visitor),
|
|
|
|
traits::VtableBuiltin(ref d) => d.visit_with(visitor),
|
|
|
|
traits::VtableObject(ref d) => d.visit_with(visitor),
|
|
|
|
}
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx, T: TypeFoldable<'tcx>> TypeFoldable<'tcx> for Normalized<'tcx, T> {
|
2016-04-29 06:00:23 +03:00
|
|
|
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
|
2015-09-14 12:53:53 +03:00
|
|
|
Normalized {
|
|
|
|
value: self.value.fold_with(folder),
|
|
|
|
obligations: self.obligations.fold_with(folder),
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 09:38:57 +00:00
|
|
|
|
2016-01-06 02:01:28 +00:00
|
|
|
fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
|
2015-11-18 09:38:57 +00:00
|
|
|
self.value.visit_with(visitor) || self.obligations.visit_with(visitor)
|
|
|
|
}
|
2015-09-14 12:53:53 +03:00
|
|
|
}
|