| // 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. |
| |
| use middle::const_val::{ConstVal, ConstAggregate}; |
| use ty::subst::Substs; |
| use ty::{self, Ty, TypeFlags, TypeFoldable}; |
| |
| #[derive(Debug)] |
| pub struct FlagComputation { |
| pub flags: TypeFlags, |
| |
| // maximum depth of any bound region that we have seen thus far |
| pub depth: u32, |
| } |
| |
| impl FlagComputation { |
| fn new() -> FlagComputation { |
| FlagComputation { flags: TypeFlags::empty(), depth: 0 } |
| } |
| |
| pub fn for_sty(st: &ty::TypeVariants) -> FlagComputation { |
| let mut result = FlagComputation::new(); |
| result.add_sty(st); |
| result |
| } |
| |
| fn add_flags(&mut self, flags: TypeFlags) { |
| self.flags = self.flags | (flags & TypeFlags::NOMINAL_FLAGS); |
| } |
| |
| fn add_depth(&mut self, depth: u32) { |
| if depth > self.depth { |
| self.depth = depth; |
| } |
| } |
| |
| /// Adds the flags/depth from a set of types that appear within the current type, but within a |
| /// region binder. |
| fn add_bound_computation(&mut self, computation: &FlagComputation) { |
| self.add_flags(computation.flags); |
| |
| // The types that contributed to `computation` occurred within |
| // a region binder, so subtract one from the region depth |
| // within when adding the depth to `self`. |
| let depth = computation.depth; |
| if depth > 0 { |
| self.add_depth(depth - 1); |
| } |
| } |
| |
| fn add_sty(&mut self, st: &ty::TypeVariants) { |
| match st { |
| &ty::TyBool | |
| &ty::TyChar | |
| &ty::TyInt(_) | |
| &ty::TyFloat(_) | |
| &ty::TyUint(_) | |
| &ty::TyNever | |
| &ty::TyStr | |
| &ty::TyForeign(..) => { |
| } |
| |
| // You might think that we could just return TyError for |
| // any type containing TyError as a component, and get |
| // rid of the TypeFlags::HAS_TY_ERR flag -- likewise for ty_bot (with |
| // the exception of function types that return bot). |
| // But doing so caused sporadic memory corruption, and |
| // neither I (tjc) nor nmatsakis could figure out why, |
| // so we're doing it this way. |
| &ty::TyError => { |
| self.add_flags(TypeFlags::HAS_TY_ERR) |
| } |
| |
| &ty::TyParam(ref p) => { |
| self.add_flags(TypeFlags::HAS_LOCAL_NAMES); |
| if p.is_self() { |
| self.add_flags(TypeFlags::HAS_SELF); |
| } else { |
| self.add_flags(TypeFlags::HAS_PARAMS); |
| } |
| } |
| |
| &ty::TyGenerator(_, ref substs, ref interior) => { |
| self.add_flags(TypeFlags::HAS_TY_CLOSURE); |
| self.add_flags(TypeFlags::HAS_LOCAL_NAMES); |
| self.add_substs(&substs.substs); |
| self.add_ty(interior.witness); |
| } |
| |
| &ty::TyGeneratorWitness(ref ts) => { |
| let mut computation = FlagComputation::new(); |
| computation.add_tys(&ts.skip_binder()[..]); |
| self.add_bound_computation(&computation); |
| } |
| |
| &ty::TyClosure(_, ref substs) => { |
| self.add_flags(TypeFlags::HAS_TY_CLOSURE); |
| self.add_flags(TypeFlags::HAS_LOCAL_NAMES); |
| self.add_substs(&substs.substs); |
| } |
| |
| &ty::TyInfer(infer) => { |
| self.add_flags(TypeFlags::HAS_LOCAL_NAMES); // it might, right? |
| self.add_flags(TypeFlags::HAS_TY_INFER); |
| match infer { |
| ty::FreshTy(_) | |
| ty::FreshIntTy(_) | |
| ty::FreshFloatTy(_) => {} |
| _ => self.add_flags(TypeFlags::KEEP_IN_LOCAL_TCX) |
| } |
| } |
| |
| &ty::TyAdt(_, substs) => { |
| self.add_substs(substs); |
| } |
| |
| &ty::TyProjection(ref data) => { |
| // currently we can't normalize projections that |
| // include bound regions, so track those separately. |
| if !data.has_escaping_regions() { |
| self.add_flags(TypeFlags::HAS_NORMALIZABLE_PROJECTION); |
| } |
| self.add_flags(TypeFlags::HAS_PROJECTION); |
| self.add_projection_ty(data); |
| } |
| |
| &ty::TyAnon(_, substs) => { |
| self.add_flags(TypeFlags::HAS_PROJECTION); |
| self.add_substs(substs); |
| } |
| |
| &ty::TyDynamic(ref obj, r) => { |
| let mut computation = FlagComputation::new(); |
| for predicate in obj.skip_binder().iter() { |
| match *predicate { |
| ty::ExistentialPredicate::Trait(tr) => computation.add_substs(tr.substs), |
| ty::ExistentialPredicate::Projection(p) => { |
| let mut proj_computation = FlagComputation::new(); |
| proj_computation.add_existential_projection(&p); |
| self.add_bound_computation(&proj_computation); |
| } |
| ty::ExistentialPredicate::AutoTrait(_) => {} |
| } |
| } |
| self.add_bound_computation(&computation); |
| self.add_region(r); |
| } |
| |
| &ty::TyArray(tt, len) => { |
| self.add_ty(tt); |
| self.add_const(len); |
| } |
| |
| &ty::TySlice(tt) => { |
| self.add_ty(tt) |
| } |
| |
| &ty::TyRawPtr(ref m) => { |
| self.add_ty(m.ty); |
| } |
| |
| &ty::TyRef(r, ref m) => { |
| self.add_region(r); |
| self.add_ty(m.ty); |
| } |
| |
| &ty::TyTuple(ref ts, is_default) => { |
| if is_default { |
| self.add_flags(TypeFlags::KEEP_IN_LOCAL_TCX); |
| } |
| self.add_tys(&ts[..]); |
| } |
| |
| &ty::TyFnDef(_, substs) => { |
| self.add_substs(substs); |
| } |
| |
| &ty::TyFnPtr(f) => { |
| self.add_fn_sig(f); |
| } |
| } |
| } |
| |
| fn add_ty(&mut self, ty: Ty) { |
| self.add_flags(ty.flags); |
| self.add_depth(ty.region_depth); |
| } |
| |
| fn add_tys(&mut self, tys: &[Ty]) { |
| for &ty in tys { |
| self.add_ty(ty); |
| } |
| } |
| |
| fn add_fn_sig(&mut self, fn_sig: ty::PolyFnSig) { |
| let mut computation = FlagComputation::new(); |
| |
| computation.add_tys(fn_sig.skip_binder().inputs()); |
| computation.add_ty(fn_sig.skip_binder().output()); |
| |
| self.add_bound_computation(&computation); |
| } |
| |
| fn add_region(&mut self, r: ty::Region) { |
| self.add_flags(r.type_flags()); |
| if let ty::ReLateBound(debruijn, _) = *r { |
| self.add_depth(debruijn.depth); |
| } |
| } |
| |
| fn add_const(&mut self, constant: &ty::Const) { |
| self.add_ty(constant.ty); |
| match constant.val { |
| ConstVal::Integral(_) | |
| ConstVal::Float(_) | |
| ConstVal::Str(_) | |
| ConstVal::ByteStr(_) | |
| ConstVal::Bool(_) | |
| ConstVal::Char(_) | |
| ConstVal::Variant(_) => {} |
| ConstVal::Function(_, substs) => { |
| self.add_substs(substs); |
| } |
| ConstVal::Aggregate(ConstAggregate::Struct(fields)) => { |
| for &(_, v) in fields { |
| self.add_const(v); |
| } |
| } |
| ConstVal::Aggregate(ConstAggregate::Tuple(fields)) | |
| ConstVal::Aggregate(ConstAggregate::Array(fields)) => { |
| for v in fields { |
| self.add_const(v); |
| } |
| } |
| ConstVal::Aggregate(ConstAggregate::Repeat(v, _)) => { |
| self.add_const(v); |
| } |
| ConstVal::Unevaluated(_, substs) => { |
| self.add_flags(TypeFlags::HAS_PROJECTION); |
| self.add_substs(substs); |
| } |
| } |
| } |
| |
| fn add_existential_projection(&mut self, projection: &ty::ExistentialProjection) { |
| self.add_substs(projection.substs); |
| self.add_ty(projection.ty); |
| } |
| |
| fn add_projection_ty(&mut self, projection_ty: &ty::ProjectionTy) { |
| self.add_substs(projection_ty.substs); |
| } |
| |
| fn add_substs(&mut self, substs: &Substs) { |
| for ty in substs.types() { |
| self.add_ty(ty); |
| } |
| |
| for r in substs.regions() { |
| self.add_region(r); |
| } |
| } |
| } |