]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/mod.rs
Remove the `cstore` reference from Session in order to prepare encapsulating CrateSto...
[rust.git] / src / librustc / ty / mod.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 pub use self::Variance::*;
12 pub use self::AssociatedItemContainer::*;
13 pub use self::BorrowKind::*;
14 pub use self::IntVarValue::*;
15 pub use self::LvaluePreference::*;
16 pub use self::fold::TypeFoldable;
17
18 use hir::{map as hir_map, FreevarMap, TraitMap};
19 use hir::def::{Def, CtorKind, ExportMap};
20 use hir::def_id::{CrateNum, DefId, DefIndex, CRATE_DEF_INDEX, LOCAL_CRATE};
21 use ich::StableHashingContext;
22 use middle::const_val::ConstVal;
23 use middle::lang_items::{FnTraitLangItem, FnMutTraitLangItem, FnOnceTraitLangItem};
24 use middle::privacy::AccessLevels;
25 use middle::resolve_lifetime::ObjectLifetimeDefault;
26 use mir::Mir;
27 use mir::GeneratorLayout;
28 use traits;
29 use ty;
30 use ty::subst::{Subst, Substs};
31 use ty::util::IntTypeExt;
32 use ty::walk::TypeWalker;
33 use util::common::ErrorReported;
34 use util::nodemap::{NodeSet, DefIdMap, FxHashMap, FxHashSet};
35
36 use serialize::{self, Encodable, Encoder};
37 use std::collections::BTreeMap;
38 use std::cmp;
39 use std::fmt;
40 use std::hash::{Hash, Hasher};
41 use std::iter::FromIterator;
42 use std::ops::Deref;
43 use std::rc::Rc;
44 use std::slice;
45 use std::vec::IntoIter;
46 use std::mem;
47 use syntax::ast::{self, DUMMY_NODE_ID, Name, Ident, NodeId};
48 use syntax::attr;
49 use syntax::ext::hygiene::{Mark, SyntaxContext};
50 use syntax::symbol::{Symbol, InternedString};
51 use syntax_pos::{DUMMY_SP, Span};
52 use rustc_const_math::ConstInt;
53
54 use rustc_data_structures::accumulate_vec::IntoIter as AccIntoIter;
55 use rustc_data_structures::stable_hasher::{StableHasher, StableHasherResult,
56                                            HashStable};
57 use rustc_data_structures::transitive_relation::TransitiveRelation;
58
59 use hir;
60
61 pub use self::sty::{Binder, DebruijnIndex};
62 pub use self::sty::{FnSig, GenSig, PolyFnSig, PolyGenSig};
63 pub use self::sty::{InferTy, ParamTy, ProjectionTy, ExistentialPredicate};
64 pub use self::sty::{ClosureSubsts, GeneratorInterior, TypeAndMut};
65 pub use self::sty::{TraitRef, TypeVariants, PolyTraitRef};
66 pub use self::sty::{ExistentialTraitRef, PolyExistentialTraitRef};
67 pub use self::sty::{ExistentialProjection, PolyExistentialProjection, Const};
68 pub use self::sty::{BoundRegion, EarlyBoundRegion, FreeRegion, Region};
69 pub use self::sty::RegionKind;
70 pub use self::sty::{TyVid, IntVid, FloatVid, RegionVid, SkolemizedRegionVid};
71 pub use self::sty::BoundRegion::*;
72 pub use self::sty::InferTy::*;
73 pub use self::sty::RegionKind::*;
74 pub use self::sty::TypeVariants::*;
75
76 pub use self::binding::BindingMode;
77 pub use self::binding::BindingMode::*;
78
79 pub use self::context::{TyCtxt, GlobalArenas, tls, keep_local};
80 pub use self::context::{Lift, TypeckTables};
81
82 pub use self::instance::{Instance, InstanceDef};
83
84 pub use self::trait_def::TraitDef;
85
86 pub use self::maps::queries;
87
88 pub mod adjustment;
89 pub mod binding;
90 pub mod cast;
91 pub mod error;
92 pub mod fast_reject;
93 pub mod fold;
94 pub mod inhabitedness;
95 pub mod item_path;
96 pub mod layout;
97 pub mod _match;
98 pub mod maps;
99 pub mod outlives;
100 pub mod relate;
101 pub mod steal;
102 pub mod subst;
103 pub mod trait_def;
104 pub mod walk;
105 pub mod wf;
106 pub mod util;
107
108 mod context;
109 mod flags;
110 mod instance;
111 mod structural_impls;
112 mod sty;
113
114 // Data types
115
116 /// The complete set of all analyses described in this module. This is
117 /// produced by the driver and fed to trans and later passes.
118 ///
119 /// NB: These contents are being migrated into queries using the
120 /// *on-demand* infrastructure.
121 #[derive(Clone)]
122 pub struct CrateAnalysis {
123     pub access_levels: Rc<AccessLevels>,
124     pub reachable: Rc<NodeSet>,
125     pub name: String,
126     pub glob_map: Option<hir::GlobMap>,
127 }
128
129 #[derive(Clone)]
130 pub struct Resolutions {
131     pub freevars: FreevarMap,
132     pub trait_map: TraitMap,
133     pub maybe_unused_trait_imports: NodeSet,
134     pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
135     pub export_map: ExportMap,
136 }
137
138 #[derive(Clone, Copy, PartialEq, Eq, Debug)]
139 pub enum AssociatedItemContainer {
140     TraitContainer(DefId),
141     ImplContainer(DefId),
142 }
143
144 impl AssociatedItemContainer {
145     pub fn id(&self) -> DefId {
146         match *self {
147             TraitContainer(id) => id,
148             ImplContainer(id) => id,
149         }
150     }
151 }
152
153 /// The "header" of an impl is everything outside the body: a Self type, a trait
154 /// ref (in the case of a trait impl), and a set of predicates (from the
155 /// bounds/where clauses).
156 #[derive(Clone, PartialEq, Eq, Hash, Debug)]
157 pub struct ImplHeader<'tcx> {
158     pub impl_def_id: DefId,
159     pub self_ty: Ty<'tcx>,
160     pub trait_ref: Option<TraitRef<'tcx>>,
161     pub predicates: Vec<Predicate<'tcx>>,
162 }
163
164 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
165 pub struct AssociatedItem {
166     pub def_id: DefId,
167     pub name: Name,
168     pub kind: AssociatedKind,
169     pub vis: Visibility,
170     pub defaultness: hir::Defaultness,
171     pub container: AssociatedItemContainer,
172
173     /// Whether this is a method with an explicit self
174     /// as its first argument, allowing method calls.
175     pub method_has_self_argument: bool,
176 }
177
178 #[derive(Copy, Clone, PartialEq, Eq, Debug, Hash, RustcEncodable, RustcDecodable)]
179 pub enum AssociatedKind {
180     Const,
181     Method,
182     Type
183 }
184
185 impl AssociatedItem {
186     pub fn def(&self) -> Def {
187         match self.kind {
188             AssociatedKind::Const => Def::AssociatedConst(self.def_id),
189             AssociatedKind::Method => Def::Method(self.def_id),
190             AssociatedKind::Type => Def::AssociatedTy(self.def_id),
191         }
192     }
193
194     /// Tests whether the associated item admits a non-trivial implementation
195     /// for !
196     pub fn relevant_for_never<'tcx>(&self) -> bool {
197         match self.kind {
198             AssociatedKind::Const => true,
199             AssociatedKind::Type => true,
200             // FIXME(canndrew): Be more thorough here, check if any argument is uninhabited.
201             AssociatedKind::Method => !self.method_has_self_argument,
202         }
203     }
204
205     pub fn signature<'a, 'tcx>(&self, tcx: &TyCtxt<'a, 'tcx, 'tcx>) -> String {
206         match self.kind {
207             ty::AssociatedKind::Method => {
208                 // We skip the binder here because the binder would deanonymize all
209                 // late-bound regions, and we don't want method signatures to show up
210                 // `as for<'r> fn(&'r MyType)`.  Pretty-printing handles late-bound
211                 // regions just fine, showing `fn(&MyType)`.
212                 format!("{}", tcx.fn_sig(self.def_id).skip_binder())
213             }
214             ty::AssociatedKind::Type => format!("type {};", self.name.to_string()),
215             ty::AssociatedKind::Const => {
216                 format!("const {}: {:?};", self.name.to_string(), tcx.type_of(self.def_id))
217             }
218         }
219     }
220 }
221
222 #[derive(Clone, Debug, PartialEq, Eq, Copy, RustcEncodable, RustcDecodable)]
223 pub enum Visibility {
224     /// Visible everywhere (including in other crates).
225     Public,
226     /// Visible only in the given crate-local module.
227     Restricted(DefId),
228     /// Not visible anywhere in the local crate. This is the visibility of private external items.
229     Invisible,
230 }
231
232 pub trait DefIdTree: Copy {
233     fn parent(self, id: DefId) -> Option<DefId>;
234
235     fn is_descendant_of(self, mut descendant: DefId, ancestor: DefId) -> bool {
236         if descendant.krate != ancestor.krate {
237             return false;
238         }
239
240         while descendant != ancestor {
241             match self.parent(descendant) {
242                 Some(parent) => descendant = parent,
243                 None => return false,
244             }
245         }
246         true
247     }
248 }
249
250 impl<'a, 'gcx, 'tcx> DefIdTree for TyCtxt<'a, 'gcx, 'tcx> {
251     fn parent(self, id: DefId) -> Option<DefId> {
252         self.def_key(id).parent.map(|index| DefId { index: index, ..id })
253     }
254 }
255
256 impl Visibility {
257     pub fn from_hir(visibility: &hir::Visibility, id: NodeId, tcx: TyCtxt) -> Self {
258         match *visibility {
259             hir::Public => Visibility::Public,
260             hir::Visibility::Crate => Visibility::Restricted(DefId::local(CRATE_DEF_INDEX)),
261             hir::Visibility::Restricted { ref path, .. } => match path.def {
262                 // If there is no resolution, `resolve` will have already reported an error, so
263                 // assume that the visibility is public to avoid reporting more privacy errors.
264                 Def::Err => Visibility::Public,
265                 def => Visibility::Restricted(def.def_id()),
266             },
267             hir::Inherited => {
268                 Visibility::Restricted(tcx.hir.get_module_parent(id))
269             }
270         }
271     }
272
273     /// Returns true if an item with this visibility is accessible from the given block.
274     pub fn is_accessible_from<T: DefIdTree>(self, module: DefId, tree: T) -> bool {
275         let restriction = match self {
276             // Public items are visible everywhere.
277             Visibility::Public => return true,
278             // Private items from other crates are visible nowhere.
279             Visibility::Invisible => return false,
280             // Restricted items are visible in an arbitrary local module.
281             Visibility::Restricted(other) if other.krate != module.krate => return false,
282             Visibility::Restricted(module) => module,
283         };
284
285         tree.is_descendant_of(module, restriction)
286     }
287
288     /// Returns true if this visibility is at least as accessible as the given visibility
289     pub fn is_at_least<T: DefIdTree>(self, vis: Visibility, tree: T) -> bool {
290         let vis_restriction = match vis {
291             Visibility::Public => return self == Visibility::Public,
292             Visibility::Invisible => return true,
293             Visibility::Restricted(module) => module,
294         };
295
296         self.is_accessible_from(vis_restriction, tree)
297     }
298 }
299
300 #[derive(Clone, PartialEq, RustcDecodable, RustcEncodable, Copy)]
301 pub enum Variance {
302     Covariant,      // T<A> <: T<B> iff A <: B -- e.g., function return type
303     Invariant,      // T<A> <: T<B> iff B == A -- e.g., type of mutable cell
304     Contravariant,  // T<A> <: T<B> iff B <: A -- e.g., function param type
305     Bivariant,      // T<A> <: T<B>            -- e.g., unused type parameter
306 }
307
308 /// The crate variances map is computed during typeck and contains the
309 /// variance of every item in the local crate. You should not use it
310 /// directly, because to do so will make your pass dependent on the
311 /// HIR of every item in the local crate. Instead, use
312 /// `tcx.variances_of()` to get the variance for a *particular*
313 /// item.
314 pub struct CrateVariancesMap {
315     /// This relation tracks the dependencies between the variance of
316     /// various items. In particular, if `a < b`, then the variance of
317     /// `a` depends on the sources of `b`.
318     pub dependencies: TransitiveRelation<DefId>,
319
320     /// For each item with generics, maps to a vector of the variance
321     /// of its generics.  If an item has no generics, it will have no
322     /// entry.
323     pub variances: FxHashMap<DefId, Rc<Vec<ty::Variance>>>,
324
325     /// An empty vector, useful for cloning.
326     pub empty_variance: Rc<Vec<ty::Variance>>,
327 }
328
329 impl Variance {
330     /// `a.xform(b)` combines the variance of a context with the
331     /// variance of a type with the following meaning.  If we are in a
332     /// context with variance `a`, and we encounter a type argument in
333     /// a position with variance `b`, then `a.xform(b)` is the new
334     /// variance with which the argument appears.
335     ///
336     /// Example 1:
337     ///
338     ///     *mut Vec<i32>
339     ///
340     /// Here, the "ambient" variance starts as covariant. `*mut T` is
341     /// invariant with respect to `T`, so the variance in which the
342     /// `Vec<i32>` appears is `Covariant.xform(Invariant)`, which
343     /// yields `Invariant`. Now, the type `Vec<T>` is covariant with
344     /// respect to its type argument `T`, and hence the variance of
345     /// the `i32` here is `Invariant.xform(Covariant)`, which results
346     /// (again) in `Invariant`.
347     ///
348     /// Example 2:
349     ///
350     ///     fn(*const Vec<i32>, *mut Vec<i32)
351     ///
352     /// The ambient variance is covariant. A `fn` type is
353     /// contravariant with respect to its parameters, so the variance
354     /// within which both pointer types appear is
355     /// `Covariant.xform(Contravariant)`, or `Contravariant`.  `*const
356     /// T` is covariant with respect to `T`, so the variance within
357     /// which the first `Vec<i32>` appears is
358     /// `Contravariant.xform(Covariant)` or `Contravariant`.  The same
359     /// is true for its `i32` argument. In the `*mut T` case, the
360     /// variance of `Vec<i32>` is `Contravariant.xform(Invariant)`,
361     /// and hence the outermost type is `Invariant` with respect to
362     /// `Vec<i32>` (and its `i32` argument).
363     ///
364     /// Source: Figure 1 of "Taming the Wildcards:
365     /// Combining Definition- and Use-Site Variance" published in PLDI'11.
366     pub fn xform(self, v: ty::Variance) -> ty::Variance {
367         match (self, v) {
368             // Figure 1, column 1.
369             (ty::Covariant, ty::Covariant) => ty::Covariant,
370             (ty::Covariant, ty::Contravariant) => ty::Contravariant,
371             (ty::Covariant, ty::Invariant) => ty::Invariant,
372             (ty::Covariant, ty::Bivariant) => ty::Bivariant,
373
374             // Figure 1, column 2.
375             (ty::Contravariant, ty::Covariant) => ty::Contravariant,
376             (ty::Contravariant, ty::Contravariant) => ty::Covariant,
377             (ty::Contravariant, ty::Invariant) => ty::Invariant,
378             (ty::Contravariant, ty::Bivariant) => ty::Bivariant,
379
380             // Figure 1, column 3.
381             (ty::Invariant, _) => ty::Invariant,
382
383             // Figure 1, column 4.
384             (ty::Bivariant, _) => ty::Bivariant,
385         }
386     }
387 }
388
389 // Contains information needed to resolve types and (in the future) look up
390 // the types of AST nodes.
391 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
392 pub struct CReaderCacheKey {
393     pub cnum: CrateNum,
394     pub pos: usize,
395 }
396
397 // Flags that we track on types. These flags are propagated upwards
398 // through the type during type construction, so that we can quickly
399 // check whether the type has various kinds of types in it without
400 // recursing over the type itself.
401 bitflags! {
402     flags TypeFlags: u32 {
403         const HAS_PARAMS         = 1 << 0,
404         const HAS_SELF           = 1 << 1,
405         const HAS_TY_INFER       = 1 << 2,
406         const HAS_RE_INFER       = 1 << 3,
407         const HAS_RE_SKOL        = 1 << 4,
408         const HAS_RE_EARLY_BOUND = 1 << 5,
409         const HAS_FREE_REGIONS   = 1 << 6,
410         const HAS_TY_ERR         = 1 << 7,
411         const HAS_PROJECTION     = 1 << 8,
412
413         // FIXME: Rename this to the actual property since it's used for generators too
414         const HAS_TY_CLOSURE     = 1 << 9,
415
416         // true if there are "names" of types and regions and so forth
417         // that are local to a particular fn
418         const HAS_LOCAL_NAMES    = 1 << 10,
419
420         // Present if the type belongs in a local type context.
421         // Only set for TyInfer other than Fresh.
422         const KEEP_IN_LOCAL_TCX  = 1 << 11,
423
424         // Is there a projection that does not involve a bound region?
425         // Currently we can't normalize projections w/ bound regions.
426         const HAS_NORMALIZABLE_PROJECTION = 1 << 12,
427
428         const NEEDS_SUBST        = TypeFlags::HAS_PARAMS.bits |
429                                    TypeFlags::HAS_SELF.bits |
430                                    TypeFlags::HAS_RE_EARLY_BOUND.bits,
431
432         // Flags representing the nominal content of a type,
433         // computed by FlagsComputation. If you add a new nominal
434         // flag, it should be added here too.
435         const NOMINAL_FLAGS     = TypeFlags::HAS_PARAMS.bits |
436                                   TypeFlags::HAS_SELF.bits |
437                                   TypeFlags::HAS_TY_INFER.bits |
438                                   TypeFlags::HAS_RE_INFER.bits |
439                                   TypeFlags::HAS_RE_SKOL.bits |
440                                   TypeFlags::HAS_RE_EARLY_BOUND.bits |
441                                   TypeFlags::HAS_FREE_REGIONS.bits |
442                                   TypeFlags::HAS_TY_ERR.bits |
443                                   TypeFlags::HAS_PROJECTION.bits |
444                                   TypeFlags::HAS_TY_CLOSURE.bits |
445                                   TypeFlags::HAS_LOCAL_NAMES.bits |
446                                   TypeFlags::KEEP_IN_LOCAL_TCX.bits,
447     }
448 }
449
450 pub struct TyS<'tcx> {
451     pub sty: TypeVariants<'tcx>,
452     pub flags: TypeFlags,
453
454     // the maximal depth of any bound regions appearing in this type.
455     region_depth: u32,
456 }
457
458 impl<'tcx> PartialEq for TyS<'tcx> {
459     #[inline]
460     fn eq(&self, other: &TyS<'tcx>) -> bool {
461         // (self as *const _) == (other as *const _)
462         (self as *const TyS<'tcx>) == (other as *const TyS<'tcx>)
463     }
464 }
465 impl<'tcx> Eq for TyS<'tcx> {}
466
467 impl<'tcx> Hash for TyS<'tcx> {
468     fn hash<H: Hasher>(&self, s: &mut H) {
469         (self as *const TyS).hash(s)
470     }
471 }
472
473 impl<'tcx> TyS<'tcx> {
474     pub fn is_primitive_ty(&self) -> bool {
475         match self.sty {
476             TypeVariants::TyBool |
477                 TypeVariants::TyChar |
478                 TypeVariants::TyInt(_) |
479                 TypeVariants::TyUint(_) |
480                 TypeVariants::TyFloat(_) |
481                 TypeVariants::TyInfer(InferTy::IntVar(_)) |
482                 TypeVariants::TyInfer(InferTy::FloatVar(_)) |
483                 TypeVariants::TyInfer(InferTy::FreshIntTy(_)) |
484                 TypeVariants::TyInfer(InferTy::FreshFloatTy(_)) => true,
485             TypeVariants::TyRef(_, x) => x.ty.is_primitive_ty(),
486             _ => false,
487         }
488     }
489
490     pub fn is_suggestable(&self) -> bool {
491         match self.sty {
492             TypeVariants::TyAnon(..) |
493             TypeVariants::TyFnDef(..) |
494             TypeVariants::TyFnPtr(..) |
495             TypeVariants::TyDynamic(..) |
496             TypeVariants::TyClosure(..) |
497             TypeVariants::TyInfer(..) |
498             TypeVariants::TyProjection(..) => false,
499             _ => true,
500         }
501     }
502 }
503
504 impl<'a, 'gcx, 'tcx> HashStable<StableHashingContext<'a, 'gcx, 'tcx>> for ty::TyS<'gcx> {
505     fn hash_stable<W: StableHasherResult>(&self,
506                                           hcx: &mut StableHashingContext<'a, 'gcx, 'tcx>,
507                                           hasher: &mut StableHasher<W>) {
508         let ty::TyS {
509             ref sty,
510
511             // The other fields just provide fast access to information that is
512             // also contained in `sty`, so no need to hash them.
513             flags: _,
514             region_depth: _,
515         } = *self;
516
517         sty.hash_stable(hcx, hasher);
518     }
519 }
520
521 pub type Ty<'tcx> = &'tcx TyS<'tcx>;
522
523 impl<'tcx> serialize::UseSpecializedEncodable for Ty<'tcx> {}
524 impl<'tcx> serialize::UseSpecializedDecodable for Ty<'tcx> {}
525
526 /// A wrapper for slices with the additional invariant
527 /// that the slice is interned and no other slice with
528 /// the same contents can exist in the same context.
529 /// This means we can use pointer + length for both
530 /// equality comparisons and hashing.
531 #[derive(Debug, RustcEncodable)]
532 pub struct Slice<T>([T]);
533
534 impl<T> PartialEq for Slice<T> {
535     #[inline]
536     fn eq(&self, other: &Slice<T>) -> bool {
537         (&self.0 as *const [T]) == (&other.0 as *const [T])
538     }
539 }
540 impl<T> Eq for Slice<T> {}
541
542 impl<T> Hash for Slice<T> {
543     fn hash<H: Hasher>(&self, s: &mut H) {
544         (self.as_ptr(), self.len()).hash(s)
545     }
546 }
547
548 impl<T> Deref for Slice<T> {
549     type Target = [T];
550     fn deref(&self) -> &[T] {
551         &self.0
552     }
553 }
554
555 impl<'a, T> IntoIterator for &'a Slice<T> {
556     type Item = &'a T;
557     type IntoIter = <&'a [T] as IntoIterator>::IntoIter;
558     fn into_iter(self) -> Self::IntoIter {
559         self[..].iter()
560     }
561 }
562
563 impl<'tcx> serialize::UseSpecializedDecodable for &'tcx Slice<Ty<'tcx>> {}
564
565 impl<T> Slice<T> {
566     pub fn empty<'a>() -> &'a Slice<T> {
567         unsafe {
568             mem::transmute(slice::from_raw_parts(0x1 as *const T, 0))
569         }
570     }
571 }
572
573 /// Upvars do not get their own node-id. Instead, we use the pair of
574 /// the original var id (that is, the root variable that is referenced
575 /// by the upvar) and the id of the closure expression.
576 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
577 pub struct UpvarId {
578     pub var_id: hir::HirId,
579     pub closure_expr_id: DefIndex,
580 }
581
582 #[derive(Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable, Copy)]
583 pub enum BorrowKind {
584     /// Data must be immutable and is aliasable.
585     ImmBorrow,
586
587     /// Data must be immutable but not aliasable.  This kind of borrow
588     /// cannot currently be expressed by the user and is used only in
589     /// implicit closure bindings. It is needed when the closure
590     /// is borrowing or mutating a mutable referent, e.g.:
591     ///
592     ///    let x: &mut isize = ...;
593     ///    let y = || *x += 5;
594     ///
595     /// If we were to try to translate this closure into a more explicit
596     /// form, we'd encounter an error with the code as written:
597     ///
598     ///    struct Env { x: & &mut isize }
599     ///    let x: &mut isize = ...;
600     ///    let y = (&mut Env { &x }, fn_ptr);  // Closure is pair of env and fn
601     ///    fn fn_ptr(env: &mut Env) { **env.x += 5; }
602     ///
603     /// This is then illegal because you cannot mutate a `&mut` found
604     /// in an aliasable location. To solve, you'd have to translate with
605     /// an `&mut` borrow:
606     ///
607     ///    struct Env { x: & &mut isize }
608     ///    let x: &mut isize = ...;
609     ///    let y = (&mut Env { &mut x }, fn_ptr); // changed from &x to &mut x
610     ///    fn fn_ptr(env: &mut Env) { **env.x += 5; }
611     ///
612     /// Now the assignment to `**env.x` is legal, but creating a
613     /// mutable pointer to `x` is not because `x` is not mutable. We
614     /// could fix this by declaring `x` as `let mut x`. This is ok in
615     /// user code, if awkward, but extra weird for closures, since the
616     /// borrow is hidden.
617     ///
618     /// So we introduce a "unique imm" borrow -- the referent is
619     /// immutable, but not aliasable. This solves the problem. For
620     /// simplicity, we don't give users the way to express this
621     /// borrow, it's just used when translating closures.
622     UniqueImmBorrow,
623
624     /// Data is mutable and not aliasable.
625     MutBorrow
626 }
627
628 /// Information describing the capture of an upvar. This is computed
629 /// during `typeck`, specifically by `regionck`.
630 #[derive(PartialEq, Clone, Debug, Copy, RustcEncodable, RustcDecodable)]
631 pub enum UpvarCapture<'tcx> {
632     /// Upvar is captured by value. This is always true when the
633     /// closure is labeled `move`, but can also be true in other cases
634     /// depending on inference.
635     ByValue,
636
637     /// Upvar is captured by reference.
638     ByRef(UpvarBorrow<'tcx>),
639 }
640
641 #[derive(PartialEq, Clone, Copy, RustcEncodable, RustcDecodable)]
642 pub struct UpvarBorrow<'tcx> {
643     /// The kind of borrow: by-ref upvars have access to shared
644     /// immutable borrows, which are not part of the normal language
645     /// syntax.
646     pub kind: BorrowKind,
647
648     /// Region of the resulting reference.
649     pub region: ty::Region<'tcx>,
650 }
651
652 pub type UpvarCaptureMap<'tcx> = FxHashMap<UpvarId, UpvarCapture<'tcx>>;
653
654 #[derive(Copy, Clone)]
655 pub struct ClosureUpvar<'tcx> {
656     pub def: Def,
657     pub span: Span,
658     pub ty: Ty<'tcx>,
659 }
660
661 #[derive(Clone, Copy, PartialEq)]
662 pub enum IntVarValue {
663     IntType(ast::IntTy),
664     UintType(ast::UintTy),
665 }
666
667 #[derive(Copy, Clone, RustcEncodable, RustcDecodable)]
668 pub struct TypeParameterDef {
669     pub name: Name,
670     pub def_id: DefId,
671     pub index: u32,
672     pub has_default: bool,
673     pub object_lifetime_default: ObjectLifetimeDefault,
674
675     /// `pure_wrt_drop`, set by the (unsafe) `#[may_dangle]` attribute
676     /// on generic parameter `T`, asserts data behind the parameter
677     /// `T` won't be accessed during the parent type's `Drop` impl.
678     pub pure_wrt_drop: bool,
679 }
680
681 #[derive(Copy, Clone, RustcEncodable, RustcDecodable)]
682 pub struct RegionParameterDef {
683     pub name: Name,
684     pub def_id: DefId,
685     pub index: u32,
686
687     /// `pure_wrt_drop`, set by the (unsafe) `#[may_dangle]` attribute
688     /// on generic parameter `'a`, asserts data of lifetime `'a`
689     /// won't be accessed during the parent type's `Drop` impl.
690     pub pure_wrt_drop: bool,
691 }
692
693 impl RegionParameterDef {
694     pub fn to_early_bound_region_data(&self) -> ty::EarlyBoundRegion {
695         ty::EarlyBoundRegion {
696             def_id: self.def_id,
697             index: self.index,
698             name: self.name,
699         }
700     }
701
702     pub fn to_bound_region(&self) -> ty::BoundRegion {
703         self.to_early_bound_region_data().to_bound_region()
704     }
705 }
706
707 impl ty::EarlyBoundRegion {
708     pub fn to_bound_region(&self) -> ty::BoundRegion {
709         ty::BoundRegion::BrNamed(self.def_id, self.name)
710     }
711 }
712
713 /// Information about the formal type/lifetime parameters associated
714 /// with an item or method. Analogous to hir::Generics.
715 #[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
716 pub struct Generics {
717     pub parent: Option<DefId>,
718     pub parent_regions: u32,
719     pub parent_types: u32,
720     pub regions: Vec<RegionParameterDef>,
721     pub types: Vec<TypeParameterDef>,
722
723     /// Reverse map to each `TypeParameterDef`'s `index` field, from
724     /// `def_id.index` (`def_id.krate` is the same as the item's).
725     pub type_param_to_index: BTreeMap<DefIndex, u32>,
726
727     pub has_self: bool,
728     pub has_late_bound_regions: Option<Span>,
729 }
730
731 impl Generics {
732     pub fn parent_count(&self) -> usize {
733         self.parent_regions as usize + self.parent_types as usize
734     }
735
736     pub fn own_count(&self) -> usize {
737         self.regions.len() + self.types.len()
738     }
739
740     pub fn count(&self) -> usize {
741         self.parent_count() + self.own_count()
742     }
743
744     pub fn region_param(&self, param: &EarlyBoundRegion) -> &RegionParameterDef {
745         assert_eq!(self.parent_count(), 0);
746         &self.regions[param.index as usize - self.has_self as usize]
747     }
748
749     pub fn type_param(&self, param: &ParamTy) -> &TypeParameterDef {
750         assert_eq!(self.parent_count(), 0);
751         &self.types[param.idx as usize - self.has_self as usize - self.regions.len()]
752     }
753 }
754
755 /// Bounds on generics.
756 #[derive(Clone, Default)]
757 pub struct GenericPredicates<'tcx> {
758     pub parent: Option<DefId>,
759     pub predicates: Vec<Predicate<'tcx>>,
760 }
761
762 impl<'tcx> serialize::UseSpecializedEncodable for GenericPredicates<'tcx> {}
763 impl<'tcx> serialize::UseSpecializedDecodable for GenericPredicates<'tcx> {}
764
765 impl<'a, 'gcx, 'tcx> GenericPredicates<'tcx> {
766     pub fn instantiate(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, substs: &Substs<'tcx>)
767                        -> InstantiatedPredicates<'tcx> {
768         let mut instantiated = InstantiatedPredicates::empty();
769         self.instantiate_into(tcx, &mut instantiated, substs);
770         instantiated
771     }
772     pub fn instantiate_own(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, substs: &Substs<'tcx>)
773                            -> InstantiatedPredicates<'tcx> {
774         InstantiatedPredicates {
775             predicates: self.predicates.subst(tcx, substs)
776         }
777     }
778
779     fn instantiate_into(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
780                         instantiated: &mut InstantiatedPredicates<'tcx>,
781                         substs: &Substs<'tcx>) {
782         if let Some(def_id) = self.parent {
783             tcx.predicates_of(def_id).instantiate_into(tcx, instantiated, substs);
784         }
785         instantiated.predicates.extend(self.predicates.iter().map(|p| p.subst(tcx, substs)))
786     }
787
788     pub fn instantiate_identity(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>)
789                                 -> InstantiatedPredicates<'tcx> {
790         let mut instantiated = InstantiatedPredicates::empty();
791         self.instantiate_identity_into(tcx, &mut instantiated);
792         instantiated
793     }
794
795     fn instantiate_identity_into(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
796                                  instantiated: &mut InstantiatedPredicates<'tcx>) {
797         if let Some(def_id) = self.parent {
798             tcx.predicates_of(def_id).instantiate_identity_into(tcx, instantiated);
799         }
800         instantiated.predicates.extend(&self.predicates)
801     }
802
803     pub fn instantiate_supertrait(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
804                                   poly_trait_ref: &ty::PolyTraitRef<'tcx>)
805                                   -> InstantiatedPredicates<'tcx>
806     {
807         assert_eq!(self.parent, None);
808         InstantiatedPredicates {
809             predicates: self.predicates.iter().map(|pred| {
810                 pred.subst_supertrait(tcx, poly_trait_ref)
811             }).collect()
812         }
813     }
814 }
815
816 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
817 pub enum Predicate<'tcx> {
818     /// Corresponds to `where Foo : Bar<A,B,C>`. `Foo` here would be
819     /// the `Self` type of the trait reference and `A`, `B`, and `C`
820     /// would be the type parameters.
821     Trait(PolyTraitPredicate<'tcx>),
822
823     /// where `T1 == T2`.
824     Equate(PolyEquatePredicate<'tcx>),
825
826     /// where 'a : 'b
827     RegionOutlives(PolyRegionOutlivesPredicate<'tcx>),
828
829     /// where T : 'a
830     TypeOutlives(PolyTypeOutlivesPredicate<'tcx>),
831
832     /// where <T as TraitRef>::Name == X, approximately.
833     /// See `ProjectionPredicate` struct for details.
834     Projection(PolyProjectionPredicate<'tcx>),
835
836     /// no syntax: T WF
837     WellFormed(Ty<'tcx>),
838
839     /// trait must be object-safe
840     ObjectSafe(DefId),
841
842     /// No direct syntax. May be thought of as `where T : FnFoo<...>`
843     /// for some substitutions `...` and T being a closure type.
844     /// Satisfied (or refuted) once we know the closure's kind.
845     ClosureKind(DefId, ClosureKind),
846
847     /// `T1 <: T2`
848     Subtype(PolySubtypePredicate<'tcx>),
849
850     /// Constant initializer must evaluate successfully.
851     ConstEvaluatable(DefId, &'tcx Substs<'tcx>),
852 }
853
854 impl<'a, 'gcx, 'tcx> Predicate<'tcx> {
855     /// Performs a substitution suitable for going from a
856     /// poly-trait-ref to supertraits that must hold if that
857     /// poly-trait-ref holds. This is slightly different from a normal
858     /// substitution in terms of what happens with bound regions.  See
859     /// lengthy comment below for details.
860     pub fn subst_supertrait(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
861                             trait_ref: &ty::PolyTraitRef<'tcx>)
862                             -> ty::Predicate<'tcx>
863     {
864         // The interaction between HRTB and supertraits is not entirely
865         // obvious. Let me walk you (and myself) through an example.
866         //
867         // Let's start with an easy case. Consider two traits:
868         //
869         //     trait Foo<'a> : Bar<'a,'a> { }
870         //     trait Bar<'b,'c> { }
871         //
872         // Now, if we have a trait reference `for<'x> T : Foo<'x>`, then
873         // we can deduce that `for<'x> T : Bar<'x,'x>`. Basically, if we
874         // knew that `Foo<'x>` (for any 'x) then we also know that
875         // `Bar<'x,'x>` (for any 'x). This more-or-less falls out from
876         // normal substitution.
877         //
878         // In terms of why this is sound, the idea is that whenever there
879         // is an impl of `T:Foo<'a>`, it must show that `T:Bar<'a,'a>`
880         // holds.  So if there is an impl of `T:Foo<'a>` that applies to
881         // all `'a`, then we must know that `T:Bar<'a,'a>` holds for all
882         // `'a`.
883         //
884         // Another example to be careful of is this:
885         //
886         //     trait Foo1<'a> : for<'b> Bar1<'a,'b> { }
887         //     trait Bar1<'b,'c> { }
888         //
889         // Here, if we have `for<'x> T : Foo1<'x>`, then what do we know?
890         // The answer is that we know `for<'x,'b> T : Bar1<'x,'b>`. The
891         // reason is similar to the previous example: any impl of
892         // `T:Foo1<'x>` must show that `for<'b> T : Bar1<'x, 'b>`.  So
893         // basically we would want to collapse the bound lifetimes from
894         // the input (`trait_ref`) and the supertraits.
895         //
896         // To achieve this in practice is fairly straightforward. Let's
897         // consider the more complicated scenario:
898         //
899         // - We start out with `for<'x> T : Foo1<'x>`. In this case, `'x`
900         //   has a De Bruijn index of 1. We want to produce `for<'x,'b> T : Bar1<'x,'b>`,
901         //   where both `'x` and `'b` would have a DB index of 1.
902         //   The substitution from the input trait-ref is therefore going to be
903         //   `'a => 'x` (where `'x` has a DB index of 1).
904         // - The super-trait-ref is `for<'b> Bar1<'a,'b>`, where `'a` is an
905         //   early-bound parameter and `'b' is a late-bound parameter with a
906         //   DB index of 1.
907         // - If we replace `'a` with `'x` from the input, it too will have
908         //   a DB index of 1, and thus we'll have `for<'x,'b> Bar1<'x,'b>`
909         //   just as we wanted.
910         //
911         // There is only one catch. If we just apply the substitution `'a
912         // => 'x` to `for<'b> Bar1<'a,'b>`, the substitution code will
913         // adjust the DB index because we substituting into a binder (it
914         // tries to be so smart...) resulting in `for<'x> for<'b>
915         // Bar1<'x,'b>` (we have no syntax for this, so use your
916         // imagination). Basically the 'x will have DB index of 2 and 'b
917         // will have DB index of 1. Not quite what we want. So we apply
918         // the substitution to the *contents* of the trait reference,
919         // rather than the trait reference itself (put another way, the
920         // substitution code expects equal binding levels in the values
921         // from the substitution and the value being substituted into, and
922         // this trick achieves that).
923
924         let substs = &trait_ref.0.substs;
925         match *self {
926             Predicate::Trait(ty::Binder(ref data)) =>
927                 Predicate::Trait(ty::Binder(data.subst(tcx, substs))),
928             Predicate::Equate(ty::Binder(ref data)) =>
929                 Predicate::Equate(ty::Binder(data.subst(tcx, substs))),
930             Predicate::Subtype(ty::Binder(ref data)) =>
931                 Predicate::Subtype(ty::Binder(data.subst(tcx, substs))),
932             Predicate::RegionOutlives(ty::Binder(ref data)) =>
933                 Predicate::RegionOutlives(ty::Binder(data.subst(tcx, substs))),
934             Predicate::TypeOutlives(ty::Binder(ref data)) =>
935                 Predicate::TypeOutlives(ty::Binder(data.subst(tcx, substs))),
936             Predicate::Projection(ty::Binder(ref data)) =>
937                 Predicate::Projection(ty::Binder(data.subst(tcx, substs))),
938             Predicate::WellFormed(data) =>
939                 Predicate::WellFormed(data.subst(tcx, substs)),
940             Predicate::ObjectSafe(trait_def_id) =>
941                 Predicate::ObjectSafe(trait_def_id),
942             Predicate::ClosureKind(closure_def_id, kind) =>
943                 Predicate::ClosureKind(closure_def_id, kind),
944             Predicate::ConstEvaluatable(def_id, const_substs) =>
945                 Predicate::ConstEvaluatable(def_id, const_substs.subst(tcx, substs)),
946         }
947     }
948 }
949
950 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
951 pub struct TraitPredicate<'tcx> {
952     pub trait_ref: TraitRef<'tcx>
953 }
954 pub type PolyTraitPredicate<'tcx> = ty::Binder<TraitPredicate<'tcx>>;
955
956 impl<'tcx> TraitPredicate<'tcx> {
957     pub fn def_id(&self) -> DefId {
958         self.trait_ref.def_id
959     }
960
961     pub fn input_types<'a>(&'a self) -> impl DoubleEndedIterator<Item=Ty<'tcx>> + 'a {
962         self.trait_ref.input_types()
963     }
964
965     pub fn self_ty(&self) -> Ty<'tcx> {
966         self.trait_ref.self_ty()
967     }
968 }
969
970 impl<'tcx> PolyTraitPredicate<'tcx> {
971     pub fn def_id(&self) -> DefId {
972         // ok to skip binder since trait def-id does not care about regions
973         self.0.def_id()
974     }
975 }
976
977 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
978 pub struct EquatePredicate<'tcx>(pub Ty<'tcx>, pub Ty<'tcx>); // `0 == 1`
979 pub type PolyEquatePredicate<'tcx> = ty::Binder<EquatePredicate<'tcx>>;
980
981 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
982 pub struct OutlivesPredicate<A,B>(pub A, pub B); // `A : B`
983 pub type PolyOutlivesPredicate<A,B> = ty::Binder<OutlivesPredicate<A,B>>;
984 pub type PolyRegionOutlivesPredicate<'tcx> = PolyOutlivesPredicate<ty::Region<'tcx>,
985                                                                    ty::Region<'tcx>>;
986 pub type PolyTypeOutlivesPredicate<'tcx> = PolyOutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>>;
987
988 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
989 pub struct SubtypePredicate<'tcx> {
990     pub a_is_expected: bool,
991     pub a: Ty<'tcx>,
992     pub b: Ty<'tcx>
993 }
994 pub type PolySubtypePredicate<'tcx> = ty::Binder<SubtypePredicate<'tcx>>;
995
996 /// This kind of predicate has no *direct* correspondent in the
997 /// syntax, but it roughly corresponds to the syntactic forms:
998 ///
999 /// 1. `T : TraitRef<..., Item=Type>`
1000 /// 2. `<T as TraitRef<...>>::Item == Type` (NYI)
1001 ///
1002 /// In particular, form #1 is "desugared" to the combination of a
1003 /// normal trait predicate (`T : TraitRef<...>`) and one of these
1004 /// predicates. Form #2 is a broader form in that it also permits
1005 /// equality between arbitrary types. Processing an instance of Form
1006 /// #2 eventually yields one of these `ProjectionPredicate`
1007 /// instances to normalize the LHS.
1008 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
1009 pub struct ProjectionPredicate<'tcx> {
1010     pub projection_ty: ProjectionTy<'tcx>,
1011     pub ty: Ty<'tcx>,
1012 }
1013
1014 pub type PolyProjectionPredicate<'tcx> = Binder<ProjectionPredicate<'tcx>>;
1015
1016 impl<'tcx> PolyProjectionPredicate<'tcx> {
1017     pub fn to_poly_trait_ref(&self, tcx: TyCtxt) -> PolyTraitRef<'tcx> {
1018         // Note: unlike with TraitRef::to_poly_trait_ref(),
1019         // self.0.trait_ref is permitted to have escaping regions.
1020         // This is because here `self` has a `Binder` and so does our
1021         // return value, so we are preserving the number of binding
1022         // levels.
1023         ty::Binder(self.0.projection_ty.trait_ref(tcx))
1024     }
1025
1026     pub fn ty(&self) -> Binder<Ty<'tcx>> {
1027         Binder(self.skip_binder().ty) // preserves binding levels
1028     }
1029 }
1030
1031 pub trait ToPolyTraitRef<'tcx> {
1032     fn to_poly_trait_ref(&self) -> PolyTraitRef<'tcx>;
1033 }
1034
1035 impl<'tcx> ToPolyTraitRef<'tcx> for TraitRef<'tcx> {
1036     fn to_poly_trait_ref(&self) -> PolyTraitRef<'tcx> {
1037         assert!(!self.has_escaping_regions());
1038         ty::Binder(self.clone())
1039     }
1040 }
1041
1042 impl<'tcx> ToPolyTraitRef<'tcx> for PolyTraitPredicate<'tcx> {
1043     fn to_poly_trait_ref(&self) -> PolyTraitRef<'tcx> {
1044         self.map_bound_ref(|trait_pred| trait_pred.trait_ref)
1045     }
1046 }
1047
1048 pub trait ToPredicate<'tcx> {
1049     fn to_predicate(&self) -> Predicate<'tcx>;
1050 }
1051
1052 impl<'tcx> ToPredicate<'tcx> for TraitRef<'tcx> {
1053     fn to_predicate(&self) -> Predicate<'tcx> {
1054         // we're about to add a binder, so let's check that we don't
1055         // accidentally capture anything, or else that might be some
1056         // weird debruijn accounting.
1057         assert!(!self.has_escaping_regions());
1058
1059         ty::Predicate::Trait(ty::Binder(ty::TraitPredicate {
1060             trait_ref: self.clone()
1061         }))
1062     }
1063 }
1064
1065 impl<'tcx> ToPredicate<'tcx> for PolyTraitRef<'tcx> {
1066     fn to_predicate(&self) -> Predicate<'tcx> {
1067         ty::Predicate::Trait(self.to_poly_trait_predicate())
1068     }
1069 }
1070
1071 impl<'tcx> ToPredicate<'tcx> for PolyEquatePredicate<'tcx> {
1072     fn to_predicate(&self) -> Predicate<'tcx> {
1073         Predicate::Equate(self.clone())
1074     }
1075 }
1076
1077 impl<'tcx> ToPredicate<'tcx> for PolyRegionOutlivesPredicate<'tcx> {
1078     fn to_predicate(&self) -> Predicate<'tcx> {
1079         Predicate::RegionOutlives(self.clone())
1080     }
1081 }
1082
1083 impl<'tcx> ToPredicate<'tcx> for PolyTypeOutlivesPredicate<'tcx> {
1084     fn to_predicate(&self) -> Predicate<'tcx> {
1085         Predicate::TypeOutlives(self.clone())
1086     }
1087 }
1088
1089 impl<'tcx> ToPredicate<'tcx> for PolyProjectionPredicate<'tcx> {
1090     fn to_predicate(&self) -> Predicate<'tcx> {
1091         Predicate::Projection(self.clone())
1092     }
1093 }
1094
1095 impl<'tcx> Predicate<'tcx> {
1096     /// Iterates over the types in this predicate. Note that in all
1097     /// cases this is skipping over a binder, so late-bound regions
1098     /// with depth 0 are bound by the predicate.
1099     pub fn walk_tys(&self) -> IntoIter<Ty<'tcx>> {
1100         let vec: Vec<_> = match *self {
1101             ty::Predicate::Trait(ref data) => {
1102                 data.skip_binder().input_types().collect()
1103             }
1104             ty::Predicate::Equate(ty::Binder(ref data)) => {
1105                 vec![data.0, data.1]
1106             }
1107             ty::Predicate::Subtype(ty::Binder(SubtypePredicate { a, b, a_is_expected: _ })) => {
1108                 vec![a, b]
1109             }
1110             ty::Predicate::TypeOutlives(ty::Binder(ref data)) => {
1111                 vec![data.0]
1112             }
1113             ty::Predicate::RegionOutlives(..) => {
1114                 vec![]
1115             }
1116             ty::Predicate::Projection(ref data) => {
1117                 data.0.projection_ty.substs.types().chain(Some(data.0.ty)).collect()
1118             }
1119             ty::Predicate::WellFormed(data) => {
1120                 vec![data]
1121             }
1122             ty::Predicate::ObjectSafe(_trait_def_id) => {
1123                 vec![]
1124             }
1125             ty::Predicate::ClosureKind(_closure_def_id, _kind) => {
1126                 vec![]
1127             }
1128             ty::Predicate::ConstEvaluatable(_, substs) => {
1129                 substs.types().collect()
1130             }
1131         };
1132
1133         // The only reason to collect into a vector here is that I was
1134         // too lazy to make the full (somewhat complicated) iterator
1135         // type that would be needed here. But I wanted this fn to
1136         // return an iterator conceptually, rather than a `Vec`, so as
1137         // to be closer to `Ty::walk`.
1138         vec.into_iter()
1139     }
1140
1141     pub fn to_opt_poly_trait_ref(&self) -> Option<PolyTraitRef<'tcx>> {
1142         match *self {
1143             Predicate::Trait(ref t) => {
1144                 Some(t.to_poly_trait_ref())
1145             }
1146             Predicate::Projection(..) |
1147             Predicate::Equate(..) |
1148             Predicate::Subtype(..) |
1149             Predicate::RegionOutlives(..) |
1150             Predicate::WellFormed(..) |
1151             Predicate::ObjectSafe(..) |
1152             Predicate::ClosureKind(..) |
1153             Predicate::TypeOutlives(..) |
1154             Predicate::ConstEvaluatable(..) => {
1155                 None
1156             }
1157         }
1158     }
1159 }
1160
1161 /// Represents the bounds declared on a particular set of type
1162 /// parameters.  Should eventually be generalized into a flag list of
1163 /// where clauses.  You can obtain a `InstantiatedPredicates` list from a
1164 /// `GenericPredicates` by using the `instantiate` method. Note that this method
1165 /// reflects an important semantic invariant of `InstantiatedPredicates`: while
1166 /// the `GenericPredicates` are expressed in terms of the bound type
1167 /// parameters of the impl/trait/whatever, an `InstantiatedPredicates` instance
1168 /// represented a set of bounds for some particular instantiation,
1169 /// meaning that the generic parameters have been substituted with
1170 /// their values.
1171 ///
1172 /// Example:
1173 ///
1174 ///     struct Foo<T,U:Bar<T>> { ... }
1175 ///
1176 /// Here, the `GenericPredicates` for `Foo` would contain a list of bounds like
1177 /// `[[], [U:Bar<T>]]`.  Now if there were some particular reference
1178 /// like `Foo<isize,usize>`, then the `InstantiatedPredicates` would be `[[],
1179 /// [usize:Bar<isize>]]`.
1180 #[derive(Clone)]
1181 pub struct InstantiatedPredicates<'tcx> {
1182     pub predicates: Vec<Predicate<'tcx>>,
1183 }
1184
1185 impl<'tcx> InstantiatedPredicates<'tcx> {
1186     pub fn empty() -> InstantiatedPredicates<'tcx> {
1187         InstantiatedPredicates { predicates: vec![] }
1188     }
1189
1190     pub fn is_empty(&self) -> bool {
1191         self.predicates.is_empty()
1192     }
1193 }
1194
1195 /// When type checking, we use the `ParamEnv` to track
1196 /// details about the set of where-clauses that are in scope at this
1197 /// particular point.
1198 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
1199 pub struct ParamEnv<'tcx> {
1200     /// Obligations that the caller must satisfy. This is basically
1201     /// the set of bounds on the in-scope type parameters, translated
1202     /// into Obligations, and elaborated and normalized.
1203     pub caller_bounds: &'tcx Slice<ty::Predicate<'tcx>>,
1204
1205     /// Typically, this is `Reveal::UserFacing`, but during trans we
1206     /// want `Reveal::All` -- note that this is always paired with an
1207     /// empty environment. To get that, use `ParamEnv::reveal()`.
1208     pub reveal: traits::Reveal,
1209 }
1210
1211 impl<'tcx> ParamEnv<'tcx> {
1212     /// Creates a suitable environment in which to perform trait
1213     /// queries on the given value. This will either be `self` *or*
1214     /// the empty environment, depending on whether `value` references
1215     /// type parameters that are in scope. (If it doesn't, then any
1216     /// judgements should be completely independent of the context,
1217     /// and hence we can safely use the empty environment so as to
1218     /// enable more sharing across functions.)
1219     ///
1220     /// NB: This is a mildly dubious thing to do, in that a function
1221     /// (or other environment) might have wacky where-clauses like
1222     /// `where Box<u32>: Copy`, which are clearly never
1223     /// satisfiable. The code will at present ignore these,
1224     /// effectively, when type-checking the body of said
1225     /// function. This preserves existing behavior in any
1226     /// case. --nmatsakis
1227     pub fn and<T: TypeFoldable<'tcx>>(self, value: T) -> ParamEnvAnd<'tcx, T> {
1228         assert!(!value.needs_infer());
1229         if value.has_param_types() || value.has_self_ty() {
1230             ParamEnvAnd {
1231                 param_env: self,
1232                 value,
1233             }
1234         } else {
1235             ParamEnvAnd {
1236                 param_env: ParamEnv::empty(self.reveal),
1237                 value,
1238             }
1239         }
1240     }
1241 }
1242
1243 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
1244 pub struct ParamEnvAnd<'tcx, T> {
1245     pub param_env: ParamEnv<'tcx>,
1246     pub value: T,
1247 }
1248
1249 impl<'tcx, T> ParamEnvAnd<'tcx, T> {
1250     pub fn into_parts(self) -> (ParamEnv<'tcx>, T) {
1251         (self.param_env, self.value)
1252     }
1253 }
1254
1255 #[derive(Copy, Clone, Debug)]
1256 pub struct Destructor {
1257     /// The def-id of the destructor method
1258     pub did: DefId,
1259 }
1260
1261 bitflags! {
1262     flags AdtFlags: u32 {
1263         const NO_ADT_FLAGS        = 0,
1264         const IS_ENUM             = 1 << 0,
1265         const IS_PHANTOM_DATA     = 1 << 1,
1266         const IS_FUNDAMENTAL      = 1 << 2,
1267         const IS_UNION            = 1 << 3,
1268         const IS_BOX              = 1 << 4,
1269     }
1270 }
1271
1272 #[derive(Debug)]
1273 pub struct VariantDef {
1274     /// The variant's DefId. If this is a tuple-like struct,
1275     /// this is the DefId of the struct's ctor.
1276     pub did: DefId,
1277     pub name: Name, // struct's name if this is a struct
1278     pub discr: VariantDiscr,
1279     pub fields: Vec<FieldDef>,
1280     pub ctor_kind: CtorKind,
1281 }
1282
1283 #[derive(Copy, Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable)]
1284 pub enum VariantDiscr {
1285     /// Explicit value for this variant, i.e. `X = 123`.
1286     /// The `DefId` corresponds to the embedded constant.
1287     Explicit(DefId),
1288
1289     /// The previous variant's discriminant plus one.
1290     /// For efficiency reasons, the distance from the
1291     /// last `Explicit` discriminant is being stored,
1292     /// or `0` for the first variant, if it has none.
1293     Relative(usize),
1294 }
1295
1296 #[derive(Debug)]
1297 pub struct FieldDef {
1298     pub did: DefId,
1299     pub name: Name,
1300     pub vis: Visibility,
1301 }
1302
1303 /// The definition of an abstract data type - a struct or enum.
1304 ///
1305 /// These are all interned (by intern_adt_def) into the adt_defs
1306 /// table.
1307 pub struct AdtDef {
1308     pub did: DefId,
1309     pub variants: Vec<VariantDef>,
1310     flags: AdtFlags,
1311     pub repr: ReprOptions,
1312 }
1313
1314 impl PartialEq for AdtDef {
1315     // AdtDef are always interned and this is part of TyS equality
1316     #[inline]
1317     fn eq(&self, other: &Self) -> bool { self as *const _ == other as *const _ }
1318 }
1319
1320 impl Eq for AdtDef {}
1321
1322 impl Hash for AdtDef {
1323     #[inline]
1324     fn hash<H: Hasher>(&self, s: &mut H) {
1325         (self as *const AdtDef).hash(s)
1326     }
1327 }
1328
1329 impl<'tcx> serialize::UseSpecializedEncodable for &'tcx AdtDef {
1330     fn default_encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1331         self.did.encode(s)
1332     }
1333 }
1334
1335 impl<'tcx> serialize::UseSpecializedDecodable for &'tcx AdtDef {}
1336
1337
1338 impl<'a, 'gcx, 'tcx> HashStable<StableHashingContext<'a, 'gcx, 'tcx>> for AdtDef {
1339     fn hash_stable<W: StableHasherResult>(&self,
1340                                           hcx: &mut StableHashingContext<'a, 'gcx, 'tcx>,
1341                                           hasher: &mut StableHasher<W>) {
1342         let ty::AdtDef {
1343             did,
1344             ref variants,
1345             ref flags,
1346             ref repr,
1347         } = *self;
1348
1349         did.hash_stable(hcx, hasher);
1350         variants.hash_stable(hcx, hasher);
1351         flags.hash_stable(hcx, hasher);
1352         repr.hash_stable(hcx, hasher);
1353     }
1354 }
1355
1356 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
1357 pub enum AdtKind { Struct, Union, Enum }
1358
1359 bitflags! {
1360     #[derive(RustcEncodable, RustcDecodable, Default)]
1361     flags ReprFlags: u8 {
1362         const IS_C               = 1 << 0,
1363         const IS_PACKED          = 1 << 1,
1364         const IS_SIMD            = 1 << 2,
1365         // Internal only for now. If true, don't reorder fields.
1366         const IS_LINEAR          = 1 << 3,
1367
1368         // Any of these flags being set prevent field reordering optimisation.
1369         const IS_UNOPTIMISABLE   = ReprFlags::IS_C.bits |
1370                                    ReprFlags::IS_PACKED.bits |
1371                                    ReprFlags::IS_SIMD.bits |
1372                                    ReprFlags::IS_LINEAR.bits,
1373     }
1374 }
1375
1376 impl_stable_hash_for!(struct ReprFlags {
1377     bits
1378 });
1379
1380
1381
1382 /// Represents the repr options provided by the user,
1383 #[derive(Copy, Clone, Eq, PartialEq, RustcEncodable, RustcDecodable, Default)]
1384 pub struct ReprOptions {
1385     pub int: Option<attr::IntType>,
1386     pub align: u32,
1387     pub flags: ReprFlags,
1388 }
1389
1390 impl_stable_hash_for!(struct ReprOptions {
1391     align,
1392     int,
1393     flags
1394 });
1395
1396 impl ReprOptions {
1397     pub fn new(tcx: TyCtxt, did: DefId) -> ReprOptions {
1398         let mut flags = ReprFlags::empty();
1399         let mut size = None;
1400         let mut max_align = 0;
1401         for attr in tcx.get_attrs(did).iter() {
1402             for r in attr::find_repr_attrs(tcx.sess.diagnostic(), attr) {
1403                 flags.insert(match r {
1404                     attr::ReprExtern => ReprFlags::IS_C,
1405                     attr::ReprPacked => ReprFlags::IS_PACKED,
1406                     attr::ReprSimd => ReprFlags::IS_SIMD,
1407                     attr::ReprInt(i) => {
1408                         size = Some(i);
1409                         ReprFlags::empty()
1410                     },
1411                     attr::ReprAlign(align) => {
1412                         max_align = cmp::max(align, max_align);
1413                         ReprFlags::empty()
1414                     },
1415                 });
1416             }
1417         }
1418
1419         // FIXME(eddyb) This is deprecated and should be removed.
1420         if tcx.has_attr(did, "simd") {
1421             flags.insert(ReprFlags::IS_SIMD);
1422         }
1423
1424         // This is here instead of layout because the choice must make it into metadata.
1425         if !tcx.consider_optimizing(|| format!("Reorder fields of {:?}", tcx.item_path_str(did))) {
1426             flags.insert(ReprFlags::IS_LINEAR);
1427         }
1428         ReprOptions { int: size, align: max_align, flags: flags }
1429     }
1430
1431     #[inline]
1432     pub fn simd(&self) -> bool { self.flags.contains(ReprFlags::IS_SIMD) }
1433     #[inline]
1434     pub fn c(&self) -> bool { self.flags.contains(ReprFlags::IS_C) }
1435     #[inline]
1436     pub fn packed(&self) -> bool { self.flags.contains(ReprFlags::IS_PACKED) }
1437     #[inline]
1438     pub fn linear(&self) -> bool { self.flags.contains(ReprFlags::IS_LINEAR) }
1439
1440     pub fn discr_type(&self) -> attr::IntType {
1441         self.int.unwrap_or(attr::SignedInt(ast::IntTy::Is))
1442     }
1443
1444     /// Returns true if this `#[repr()]` should inhabit "smart enum
1445     /// layout" optimizations, such as representing `Foo<&T>` as a
1446     /// single pointer.
1447     pub fn inhibit_enum_layout_opt(&self) -> bool {
1448         self.c() || self.int.is_some()
1449     }
1450 }
1451
1452 impl<'a, 'gcx, 'tcx> AdtDef {
1453     fn new(tcx: TyCtxt,
1454            did: DefId,
1455            kind: AdtKind,
1456            variants: Vec<VariantDef>,
1457            repr: ReprOptions) -> Self {
1458         let mut flags = AdtFlags::NO_ADT_FLAGS;
1459         let attrs = tcx.get_attrs(did);
1460         if attr::contains_name(&attrs, "fundamental") {
1461             flags = flags | AdtFlags::IS_FUNDAMENTAL;
1462         }
1463         if Some(did) == tcx.lang_items().phantom_data() {
1464             flags = flags | AdtFlags::IS_PHANTOM_DATA;
1465         }
1466         if Some(did) == tcx.lang_items().owned_box() {
1467             flags = flags | AdtFlags::IS_BOX;
1468         }
1469         match kind {
1470             AdtKind::Enum => flags = flags | AdtFlags::IS_ENUM,
1471             AdtKind::Union => flags = flags | AdtFlags::IS_UNION,
1472             AdtKind::Struct => {}
1473         }
1474         AdtDef {
1475             did,
1476             variants,
1477             flags,
1478             repr,
1479         }
1480     }
1481
1482     #[inline]
1483     pub fn is_struct(&self) -> bool {
1484         !self.is_union() && !self.is_enum()
1485     }
1486
1487     #[inline]
1488     pub fn is_union(&self) -> bool {
1489         self.flags.intersects(AdtFlags::IS_UNION)
1490     }
1491
1492     #[inline]
1493     pub fn is_enum(&self) -> bool {
1494         self.flags.intersects(AdtFlags::IS_ENUM)
1495     }
1496
1497     /// Returns the kind of the ADT - Struct or Enum.
1498     #[inline]
1499     pub fn adt_kind(&self) -> AdtKind {
1500         if self.is_enum() {
1501             AdtKind::Enum
1502         } else if self.is_union() {
1503             AdtKind::Union
1504         } else {
1505             AdtKind::Struct
1506         }
1507     }
1508
1509     pub fn descr(&self) -> &'static str {
1510         match self.adt_kind() {
1511             AdtKind::Struct => "struct",
1512             AdtKind::Union => "union",
1513             AdtKind::Enum => "enum",
1514         }
1515     }
1516
1517     pub fn variant_descr(&self) -> &'static str {
1518         match self.adt_kind() {
1519             AdtKind::Struct => "struct",
1520             AdtKind::Union => "union",
1521             AdtKind::Enum => "variant",
1522         }
1523     }
1524
1525     /// Returns whether this type is #[fundamental] for the purposes
1526     /// of coherence checking.
1527     #[inline]
1528     pub fn is_fundamental(&self) -> bool {
1529         self.flags.intersects(AdtFlags::IS_FUNDAMENTAL)
1530     }
1531
1532     /// Returns true if this is PhantomData<T>.
1533     #[inline]
1534     pub fn is_phantom_data(&self) -> bool {
1535         self.flags.intersects(AdtFlags::IS_PHANTOM_DATA)
1536     }
1537
1538     /// Returns true if this is Box<T>.
1539     #[inline]
1540     pub fn is_box(&self) -> bool {
1541         self.flags.intersects(AdtFlags::IS_BOX)
1542     }
1543
1544     /// Returns whether this type has a destructor.
1545     pub fn has_dtor(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> bool {
1546         self.destructor(tcx).is_some()
1547     }
1548
1549     /// Asserts this is a struct and returns the struct's unique
1550     /// variant.
1551     pub fn struct_variant(&self) -> &VariantDef {
1552         assert!(!self.is_enum());
1553         &self.variants[0]
1554     }
1555
1556     #[inline]
1557     pub fn predicates(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> GenericPredicates<'gcx> {
1558         tcx.predicates_of(self.did)
1559     }
1560
1561     /// Returns an iterator over all fields contained
1562     /// by this ADT.
1563     #[inline]
1564     pub fn all_fields<'s>(&'s self) -> impl Iterator<Item = &'s FieldDef> {
1565         self.variants.iter().flat_map(|v| v.fields.iter())
1566     }
1567
1568     #[inline]
1569     pub fn is_univariant(&self) -> bool {
1570         self.variants.len() == 1
1571     }
1572
1573     pub fn is_payloadfree(&self) -> bool {
1574         !self.variants.is_empty() &&
1575             self.variants.iter().all(|v| v.fields.is_empty())
1576     }
1577
1578     pub fn variant_with_id(&self, vid: DefId) -> &VariantDef {
1579         self.variants
1580             .iter()
1581             .find(|v| v.did == vid)
1582             .expect("variant_with_id: unknown variant")
1583     }
1584
1585     pub fn variant_index_with_id(&self, vid: DefId) -> usize {
1586         self.variants
1587             .iter()
1588             .position(|v| v.did == vid)
1589             .expect("variant_index_with_id: unknown variant")
1590     }
1591
1592     pub fn variant_of_def(&self, def: Def) -> &VariantDef {
1593         match def {
1594             Def::Variant(vid) | Def::VariantCtor(vid, ..) => self.variant_with_id(vid),
1595             Def::Struct(..) | Def::StructCtor(..) | Def::Union(..) |
1596             Def::TyAlias(..) | Def::AssociatedTy(..) | Def::SelfTy(..) => self.struct_variant(),
1597             _ => bug!("unexpected def {:?} in variant_of_def", def)
1598         }
1599     }
1600
1601     #[inline]
1602     pub fn discriminants(&'a self, tcx: TyCtxt<'a, 'gcx, 'tcx>)
1603                          -> impl Iterator<Item=ConstInt> + 'a {
1604         let param_env = ParamEnv::empty(traits::Reveal::UserFacing);
1605         let repr_type = self.repr.discr_type();
1606         let initial = repr_type.initial_discriminant(tcx.global_tcx());
1607         let mut prev_discr = None::<ConstInt>;
1608         self.variants.iter().map(move |v| {
1609             let mut discr = prev_discr.map_or(initial, |d| d.wrap_incr());
1610             if let VariantDiscr::Explicit(expr_did) = v.discr {
1611                 let substs = Substs::identity_for_item(tcx.global_tcx(), expr_did);
1612                 match tcx.const_eval(param_env.and((expr_did, substs))) {
1613                     Ok(&ty::Const { val: ConstVal::Integral(v), .. }) => {
1614                         discr = v;
1615                     }
1616                     err => {
1617                         if !expr_did.is_local() {
1618                             span_bug!(tcx.def_span(expr_did),
1619                                 "variant discriminant evaluation succeeded \
1620                                  in its crate but failed locally: {:?}", err);
1621                         }
1622                     }
1623                 }
1624             }
1625             prev_discr = Some(discr);
1626
1627             discr
1628         })
1629     }
1630
1631     /// Compute the discriminant value used by a specific variant.
1632     /// Unlike `discriminants`, this is (amortized) constant-time,
1633     /// only doing at most one query for evaluating an explicit
1634     /// discriminant (the last one before the requested variant),
1635     /// assuming there are no constant-evaluation errors there.
1636     pub fn discriminant_for_variant(&self,
1637                                     tcx: TyCtxt<'a, 'gcx, 'tcx>,
1638                                     variant_index: usize)
1639                                     -> ConstInt {
1640         let param_env = ParamEnv::empty(traits::Reveal::UserFacing);
1641         let repr_type = self.repr.discr_type();
1642         let mut explicit_value = repr_type.initial_discriminant(tcx.global_tcx());
1643         let mut explicit_index = variant_index;
1644         loop {
1645             match self.variants[explicit_index].discr {
1646                 ty::VariantDiscr::Relative(0) => break,
1647                 ty::VariantDiscr::Relative(distance) => {
1648                     explicit_index -= distance;
1649                 }
1650                 ty::VariantDiscr::Explicit(expr_did) => {
1651                     let substs = Substs::identity_for_item(tcx.global_tcx(), expr_did);
1652                     match tcx.const_eval(param_env.and((expr_did, substs))) {
1653                         Ok(&ty::Const { val: ConstVal::Integral(v), .. }) => {
1654                             explicit_value = v;
1655                             break;
1656                         }
1657                         err => {
1658                             if !expr_did.is_local() {
1659                                 span_bug!(tcx.def_span(expr_did),
1660                                     "variant discriminant evaluation succeeded \
1661                                      in its crate but failed locally: {:?}", err);
1662                             }
1663                             if explicit_index == 0 {
1664                                 break;
1665                             }
1666                             explicit_index -= 1;
1667                         }
1668                     }
1669                 }
1670             }
1671         }
1672         let discr = explicit_value.to_u128_unchecked()
1673             .wrapping_add((variant_index - explicit_index) as u128);
1674         match repr_type {
1675             attr::UnsignedInt(ty) => {
1676                 ConstInt::new_unsigned_truncating(discr, ty,
1677                                                   tcx.sess.target.usize_ty)
1678             }
1679             attr::SignedInt(ty) => {
1680                 ConstInt::new_signed_truncating(discr as i128, ty,
1681                                                 tcx.sess.target.isize_ty)
1682             }
1683         }
1684     }
1685
1686     pub fn destructor(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Option<Destructor> {
1687         tcx.adt_destructor(self.did)
1688     }
1689
1690     /// Returns a list of types such that `Self: Sized` if and only
1691     /// if that type is Sized, or `TyErr` if this type is recursive.
1692     ///
1693     /// Oddly enough, checking that the sized-constraint is Sized is
1694     /// actually more expressive than checking all members:
1695     /// the Sized trait is inductive, so an associated type that references
1696     /// Self would prevent its containing ADT from being Sized.
1697     ///
1698     /// Due to normalization being eager, this applies even if
1699     /// the associated type is behind a pointer, e.g. issue #31299.
1700     pub fn sized_constraint(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> &'tcx [Ty<'tcx>] {
1701         match queries::adt_sized_constraint::try_get(tcx, DUMMY_SP, self.did) {
1702             Ok(tys) => tys,
1703             Err(mut bug) => {
1704                 debug!("adt_sized_constraint: {:?} is recursive", self);
1705                 // This should be reported as an error by `check_representable`.
1706                 //
1707                 // Consider the type as Sized in the meanwhile to avoid
1708                 // further errors. Delay our `bug` diagnostic here to get
1709                 // emitted later as well in case we accidentally otherwise don't
1710                 // emit an error.
1711                 bug.delay_as_bug();
1712                 tcx.intern_type_list(&[tcx.types.err])
1713             }
1714         }
1715     }
1716
1717     fn sized_constraint_for_ty(&self,
1718                                tcx: TyCtxt<'a, 'tcx, 'tcx>,
1719                                ty: Ty<'tcx>)
1720                                -> Vec<Ty<'tcx>> {
1721         let result = match ty.sty {
1722             TyBool | TyChar | TyInt(..) | TyUint(..) | TyFloat(..) |
1723             TyRawPtr(..) | TyRef(..) | TyFnDef(..) | TyFnPtr(_) |
1724             TyArray(..) | TyClosure(..) | TyGenerator(..) | TyNever => {
1725                 vec![]
1726             }
1727
1728             TyStr | TyDynamic(..) | TySlice(_) | TyError => {
1729                 // these are never sized - return the target type
1730                 vec![ty]
1731             }
1732
1733             TyTuple(ref tys, _) => {
1734                 match tys.last() {
1735                     None => vec![],
1736                     Some(ty) => self.sized_constraint_for_ty(tcx, ty)
1737                 }
1738             }
1739
1740             TyAdt(adt, substs) => {
1741                 // recursive case
1742                 let adt_tys = adt.sized_constraint(tcx);
1743                 debug!("sized_constraint_for_ty({:?}) intermediate = {:?}",
1744                        ty, adt_tys);
1745                 adt_tys.iter()
1746                     .map(|ty| ty.subst(tcx, substs))
1747                     .flat_map(|ty| self.sized_constraint_for_ty(tcx, ty))
1748                     .collect()
1749             }
1750
1751             TyProjection(..) | TyAnon(..) => {
1752                 // must calculate explicitly.
1753                 // FIXME: consider special-casing always-Sized projections
1754                 vec![ty]
1755             }
1756
1757             TyParam(..) => {
1758                 // perf hack: if there is a `T: Sized` bound, then
1759                 // we know that `T` is Sized and do not need to check
1760                 // it on the impl.
1761
1762                 let sized_trait = match tcx.lang_items().sized_trait() {
1763                     Some(x) => x,
1764                     _ => return vec![ty]
1765                 };
1766                 let sized_predicate = Binder(TraitRef {
1767                     def_id: sized_trait,
1768                     substs: tcx.mk_substs_trait(ty, &[])
1769                 }).to_predicate();
1770                 let predicates = tcx.predicates_of(self.did).predicates;
1771                 if predicates.into_iter().any(|p| p == sized_predicate) {
1772                     vec![]
1773                 } else {
1774                     vec![ty]
1775                 }
1776             }
1777
1778             TyInfer(..) => {
1779                 bug!("unexpected type `{:?}` in sized_constraint_for_ty",
1780                      ty)
1781             }
1782         };
1783         debug!("sized_constraint_for_ty({:?}) = {:?}", ty, result);
1784         result
1785     }
1786 }
1787
1788 impl<'a, 'gcx, 'tcx> VariantDef {
1789     #[inline]
1790     pub fn find_field_named(&self, name: ast::Name) -> Option<&FieldDef> {
1791         self.index_of_field_named(name).map(|index| &self.fields[index])
1792     }
1793
1794     pub fn index_of_field_named(&self, name: ast::Name) -> Option<usize> {
1795         if let Some(index) = self.fields.iter().position(|f| f.name == name) {
1796             return Some(index);
1797         }
1798         let mut ident = name.to_ident();
1799         while ident.ctxt != SyntaxContext::empty() {
1800             ident.ctxt.remove_mark();
1801             if let Some(field) = self.fields.iter().position(|f| f.name.to_ident() == ident) {
1802                 return Some(field);
1803             }
1804         }
1805         None
1806     }
1807
1808     #[inline]
1809     pub fn field_named(&self, name: ast::Name) -> &FieldDef {
1810         self.find_field_named(name).unwrap()
1811     }
1812 }
1813
1814 impl<'a, 'gcx, 'tcx> FieldDef {
1815     pub fn ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, subst: &Substs<'tcx>) -> Ty<'tcx> {
1816         tcx.type_of(self.did).subst(tcx, subst)
1817     }
1818 }
1819
1820 #[derive(Clone, Copy, PartialOrd, Ord, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
1821 pub enum ClosureKind {
1822     // Warning: Ordering is significant here! The ordering is chosen
1823     // because the trait Fn is a subtrait of FnMut and so in turn, and
1824     // hence we order it so that Fn < FnMut < FnOnce.
1825     Fn,
1826     FnMut,
1827     FnOnce,
1828 }
1829
1830 impl<'a, 'tcx> ClosureKind {
1831     pub fn trait_did(&self, tcx: TyCtxt<'a, 'tcx, 'tcx>) -> DefId {
1832         match *self {
1833             ClosureKind::Fn => tcx.require_lang_item(FnTraitLangItem),
1834             ClosureKind::FnMut => {
1835                 tcx.require_lang_item(FnMutTraitLangItem)
1836             }
1837             ClosureKind::FnOnce => {
1838                 tcx.require_lang_item(FnOnceTraitLangItem)
1839             }
1840         }
1841     }
1842
1843     /// True if this a type that impls this closure kind
1844     /// must also implement `other`.
1845     pub fn extends(self, other: ty::ClosureKind) -> bool {
1846         match (self, other) {
1847             (ClosureKind::Fn, ClosureKind::Fn) => true,
1848             (ClosureKind::Fn, ClosureKind::FnMut) => true,
1849             (ClosureKind::Fn, ClosureKind::FnOnce) => true,
1850             (ClosureKind::FnMut, ClosureKind::FnMut) => true,
1851             (ClosureKind::FnMut, ClosureKind::FnOnce) => true,
1852             (ClosureKind::FnOnce, ClosureKind::FnOnce) => true,
1853             _ => false,
1854         }
1855     }
1856 }
1857
1858 impl<'tcx> TyS<'tcx> {
1859     /// Iterator that walks `self` and any types reachable from
1860     /// `self`, in depth-first order. Note that just walks the types
1861     /// that appear in `self`, it does not descend into the fields of
1862     /// structs or variants. For example:
1863     ///
1864     /// ```notrust
1865     /// isize => { isize }
1866     /// Foo<Bar<isize>> => { Foo<Bar<isize>>, Bar<isize>, isize }
1867     /// [isize] => { [isize], isize }
1868     /// ```
1869     pub fn walk(&'tcx self) -> TypeWalker<'tcx> {
1870         TypeWalker::new(self)
1871     }
1872
1873     /// Iterator that walks the immediate children of `self`.  Hence
1874     /// `Foo<Bar<i32>, u32>` yields the sequence `[Bar<i32>, u32]`
1875     /// (but not `i32`, like `walk`).
1876     pub fn walk_shallow(&'tcx self) -> AccIntoIter<walk::TypeWalkerArray<'tcx>> {
1877         walk::walk_shallow(self)
1878     }
1879
1880     /// Walks `ty` and any types appearing within `ty`, invoking the
1881     /// callback `f` on each type. If the callback returns false, then the
1882     /// children of the current type are ignored.
1883     ///
1884     /// Note: prefer `ty.walk()` where possible.
1885     pub fn maybe_walk<F>(&'tcx self, mut f: F)
1886         where F : FnMut(Ty<'tcx>) -> bool
1887     {
1888         let mut walker = self.walk();
1889         while let Some(ty) = walker.next() {
1890             if !f(ty) {
1891                 walker.skip_current_subtree();
1892             }
1893         }
1894     }
1895 }
1896
1897 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
1898 pub enum LvaluePreference {
1899     PreferMutLvalue,
1900     NoPreference
1901 }
1902
1903 impl LvaluePreference {
1904     pub fn from_mutbl(m: hir::Mutability) -> Self {
1905         match m {
1906             hir::MutMutable => PreferMutLvalue,
1907             hir::MutImmutable => NoPreference,
1908         }
1909     }
1910 }
1911
1912 impl BorrowKind {
1913     pub fn from_mutbl(m: hir::Mutability) -> BorrowKind {
1914         match m {
1915             hir::MutMutable => MutBorrow,
1916             hir::MutImmutable => ImmBorrow,
1917         }
1918     }
1919
1920     /// Returns a mutability `m` such that an `&m T` pointer could be used to obtain this borrow
1921     /// kind. Because borrow kinds are richer than mutabilities, we sometimes have to pick a
1922     /// mutability that is stronger than necessary so that it at least *would permit* the borrow in
1923     /// question.
1924     pub fn to_mutbl_lossy(self) -> hir::Mutability {
1925         match self {
1926             MutBorrow => hir::MutMutable,
1927             ImmBorrow => hir::MutImmutable,
1928
1929             // We have no type corresponding to a unique imm borrow, so
1930             // use `&mut`. It gives all the capabilities of an `&uniq`
1931             // and hence is a safe "over approximation".
1932             UniqueImmBorrow => hir::MutMutable,
1933         }
1934     }
1935
1936     pub fn to_user_str(&self) -> &'static str {
1937         match *self {
1938             MutBorrow => "mutable",
1939             ImmBorrow => "immutable",
1940             UniqueImmBorrow => "uniquely immutable",
1941         }
1942     }
1943 }
1944
1945 #[derive(Debug, Clone)]
1946 pub enum Attributes<'gcx> {
1947     Owned(Rc<[ast::Attribute]>),
1948     Borrowed(&'gcx [ast::Attribute])
1949 }
1950
1951 impl<'gcx> ::std::ops::Deref for Attributes<'gcx> {
1952     type Target = [ast::Attribute];
1953
1954     fn deref(&self) -> &[ast::Attribute] {
1955         match self {
1956             &Attributes::Owned(ref data) => &data,
1957             &Attributes::Borrowed(data) => data
1958         }
1959     }
1960 }
1961
1962 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
1963     pub fn body_tables(self, body: hir::BodyId) -> &'gcx TypeckTables<'gcx> {
1964         self.typeck_tables_of(self.hir.body_owner_def_id(body))
1965     }
1966
1967     /// Returns an iterator of the def-ids for all body-owners in this
1968     /// crate. If you would prefer to iterate over the bodies
1969     /// themselves, you can do `self.hir.krate().body_ids.iter()`.
1970     pub fn body_owners(self) -> impl Iterator<Item = DefId> + 'a {
1971         self.hir.krate()
1972                 .body_ids
1973                 .iter()
1974                 .map(move |&body_id| self.hir.body_owner_def_id(body_id))
1975     }
1976
1977     pub fn expr_span(self, id: NodeId) -> Span {
1978         match self.hir.find(id) {
1979             Some(hir_map::NodeExpr(e)) => {
1980                 e.span
1981             }
1982             Some(f) => {
1983                 bug!("Node id {} is not an expr: {:?}", id, f);
1984             }
1985             None => {
1986                 bug!("Node id {} is not present in the node map", id);
1987             }
1988         }
1989     }
1990
1991     pub fn expr_is_lval(self, expr: &hir::Expr) -> bool {
1992          match expr.node {
1993             hir::ExprPath(hir::QPath::Resolved(_, ref path)) => {
1994                 match path.def {
1995                     Def::Local(..) | Def::Upvar(..) | Def::Static(..) | Def::Err => true,
1996                     _ => false,
1997                 }
1998             }
1999
2000             hir::ExprType(ref e, _) => {
2001                 self.expr_is_lval(e)
2002             }
2003
2004             hir::ExprUnary(hir::UnDeref, _) |
2005             hir::ExprField(..) |
2006             hir::ExprTupField(..) |
2007             hir::ExprIndex(..) => {
2008                 true
2009             }
2010
2011             // Partially qualified paths in expressions can only legally
2012             // refer to associated items which are always rvalues.
2013             hir::ExprPath(hir::QPath::TypeRelative(..)) |
2014
2015             hir::ExprCall(..) |
2016             hir::ExprMethodCall(..) |
2017             hir::ExprStruct(..) |
2018             hir::ExprTup(..) |
2019             hir::ExprIf(..) |
2020             hir::ExprMatch(..) |
2021             hir::ExprClosure(..) |
2022             hir::ExprBlock(..) |
2023             hir::ExprRepeat(..) |
2024             hir::ExprArray(..) |
2025             hir::ExprBreak(..) |
2026             hir::ExprAgain(..) |
2027             hir::ExprRet(..) |
2028             hir::ExprWhile(..) |
2029             hir::ExprLoop(..) |
2030             hir::ExprAssign(..) |
2031             hir::ExprInlineAsm(..) |
2032             hir::ExprAssignOp(..) |
2033             hir::ExprLit(_) |
2034             hir::ExprUnary(..) |
2035             hir::ExprBox(..) |
2036             hir::ExprAddrOf(..) |
2037             hir::ExprBinary(..) |
2038             hir::ExprYield(..) |
2039             hir::ExprCast(..) => {
2040                 false
2041             }
2042         }
2043     }
2044
2045     pub fn provided_trait_methods(self, id: DefId) -> Vec<AssociatedItem> {
2046         self.associated_items(id)
2047             .filter(|item| item.kind == AssociatedKind::Method && item.defaultness.has_value())
2048             .collect()
2049     }
2050
2051     pub fn trait_relevant_for_never(self, did: DefId) -> bool {
2052         self.associated_items(did).any(|item| {
2053             item.relevant_for_never()
2054         })
2055     }
2056
2057     pub fn opt_associated_item(self, def_id: DefId) -> Option<AssociatedItem> {
2058         let is_associated_item = if let Some(node_id) = self.hir.as_local_node_id(def_id) {
2059             match self.hir.get(node_id) {
2060                 hir_map::NodeTraitItem(_) | hir_map::NodeImplItem(_) => true,
2061                 _ => false,
2062             }
2063         } else {
2064             match self.describe_def(def_id).expect("no def for def-id") {
2065                 Def::AssociatedConst(_) | Def::Method(_) | Def::AssociatedTy(_) => true,
2066                 _ => false,
2067             }
2068         };
2069
2070         if is_associated_item {
2071             Some(self.associated_item(def_id))
2072         } else {
2073             None
2074         }
2075     }
2076
2077     fn associated_item_from_trait_item_ref(self,
2078                                            parent_def_id: DefId,
2079                                            parent_vis: &hir::Visibility,
2080                                            trait_item_ref: &hir::TraitItemRef)
2081                                            -> AssociatedItem {
2082         let def_id = self.hir.local_def_id(trait_item_ref.id.node_id);
2083         let (kind, has_self) = match trait_item_ref.kind {
2084             hir::AssociatedItemKind::Const => (ty::AssociatedKind::Const, false),
2085             hir::AssociatedItemKind::Method { has_self } => {
2086                 (ty::AssociatedKind::Method, has_self)
2087             }
2088             hir::AssociatedItemKind::Type => (ty::AssociatedKind::Type, false),
2089         };
2090
2091         AssociatedItem {
2092             name: trait_item_ref.name,
2093             kind,
2094             // Visibility of trait items is inherited from their traits.
2095             vis: Visibility::from_hir(parent_vis, trait_item_ref.id.node_id, self),
2096             defaultness: trait_item_ref.defaultness,
2097             def_id,
2098             container: TraitContainer(parent_def_id),
2099             method_has_self_argument: has_self
2100         }
2101     }
2102
2103     fn associated_item_from_impl_item_ref(self,
2104                                           parent_def_id: DefId,
2105                                           impl_item_ref: &hir::ImplItemRef)
2106                                           -> AssociatedItem {
2107         let def_id = self.hir.local_def_id(impl_item_ref.id.node_id);
2108         let (kind, has_self) = match impl_item_ref.kind {
2109             hir::AssociatedItemKind::Const => (ty::AssociatedKind::Const, false),
2110             hir::AssociatedItemKind::Method { has_self } => {
2111                 (ty::AssociatedKind::Method, has_self)
2112             }
2113             hir::AssociatedItemKind::Type => (ty::AssociatedKind::Type, false),
2114         };
2115
2116         ty::AssociatedItem {
2117             name: impl_item_ref.name,
2118             kind,
2119             // Visibility of trait impl items doesn't matter.
2120             vis: ty::Visibility::from_hir(&impl_item_ref.vis, impl_item_ref.id.node_id, self),
2121             defaultness: impl_item_ref.defaultness,
2122             def_id,
2123             container: ImplContainer(parent_def_id),
2124             method_has_self_argument: has_self
2125         }
2126     }
2127
2128     #[inline] // FIXME(#35870) Avoid closures being unexported due to impl Trait.
2129     pub fn associated_items(self, def_id: DefId)
2130                             -> impl Iterator<Item = ty::AssociatedItem> + 'a {
2131         let def_ids = self.associated_item_def_ids(def_id);
2132         (0..def_ids.len()).map(move |i| self.associated_item(def_ids[i]))
2133     }
2134
2135     /// Returns true if the impls are the same polarity and are implementing
2136     /// a trait which contains no items
2137     pub fn impls_are_allowed_to_overlap(self, def_id1: DefId, def_id2: DefId) -> bool {
2138         if !self.sess.features.borrow().overlapping_marker_traits {
2139             return false;
2140         }
2141         let trait1_is_empty = self.impl_trait_ref(def_id1)
2142             .map_or(false, |trait_ref| {
2143                 self.associated_item_def_ids(trait_ref.def_id).is_empty()
2144             });
2145         let trait2_is_empty = self.impl_trait_ref(def_id2)
2146             .map_or(false, |trait_ref| {
2147                 self.associated_item_def_ids(trait_ref.def_id).is_empty()
2148             });
2149         self.impl_polarity(def_id1) == self.impl_polarity(def_id2)
2150             && trait1_is_empty
2151             && trait2_is_empty
2152     }
2153
2154     // Returns `ty::VariantDef` if `def` refers to a struct,
2155     // or variant or their constructors, panics otherwise.
2156     pub fn expect_variant_def(self, def: Def) -> &'tcx VariantDef {
2157         match def {
2158             Def::Variant(did) | Def::VariantCtor(did, ..) => {
2159                 let enum_did = self.parent_def_id(did).unwrap();
2160                 self.adt_def(enum_did).variant_with_id(did)
2161             }
2162             Def::Struct(did) | Def::Union(did) => {
2163                 self.adt_def(did).struct_variant()
2164             }
2165             Def::StructCtor(ctor_did, ..) => {
2166                 let did = self.parent_def_id(ctor_did).expect("struct ctor has no parent");
2167                 self.adt_def(did).struct_variant()
2168             }
2169             _ => bug!("expect_variant_def used with unexpected def {:?}", def)
2170         }
2171     }
2172
2173     pub fn def_key(self, id: DefId) -> hir_map::DefKey {
2174         if id.is_local() {
2175             self.hir.def_key(id)
2176         } else {
2177             self.cstore_untracked().def_key(id)
2178         }
2179     }
2180
2181     /// Convert a `DefId` into its fully expanded `DefPath` (every
2182     /// `DefId` is really just an interned def-path).
2183     ///
2184     /// Note that if `id` is not local to this crate, the result will
2185     ///  be a non-local `DefPath`.
2186     pub fn def_path(self, id: DefId) -> hir_map::DefPath {
2187         if id.is_local() {
2188             self.hir.def_path(id)
2189         } else {
2190             self.cstore_untracked().def_path(id)
2191         }
2192     }
2193
2194     #[inline]
2195     pub fn def_path_hash(self, def_id: DefId) -> hir_map::DefPathHash {
2196         if def_id.is_local() {
2197             self.hir.definitions().def_path_hash(def_id.index)
2198         } else {
2199             self.cstore_untracked().def_path_hash(def_id)
2200         }
2201     }
2202
2203     pub fn item_name(self, id: DefId) -> InternedString {
2204         if let Some(id) = self.hir.as_local_node_id(id) {
2205             self.hir.name(id).as_str()
2206         } else if id.index == CRATE_DEF_INDEX {
2207             self.original_crate_name(id.krate).as_str()
2208         } else {
2209             let def_key = self.cstore_untracked().def_key(id);
2210             // The name of a StructCtor is that of its struct parent.
2211             if let hir_map::DefPathData::StructCtor = def_key.disambiguated_data.data {
2212                 self.item_name(DefId {
2213                     krate: id.krate,
2214                     index: def_key.parent.unwrap()
2215                 })
2216             } else {
2217                 def_key.disambiguated_data.data.get_opt_name().unwrap_or_else(|| {
2218                     bug!("item_name: no name for {:?}", self.def_path(id));
2219                 })
2220             }
2221         }
2222     }
2223
2224     /// Return the possibly-auto-generated MIR of a (DefId, Subst) pair.
2225     pub fn instance_mir(self, instance: ty::InstanceDef<'gcx>)
2226                         -> &'gcx Mir<'gcx>
2227     {
2228         match instance {
2229             ty::InstanceDef::Item(did) => {
2230                 self.optimized_mir(did)
2231             }
2232             ty::InstanceDef::Intrinsic(..) |
2233             ty::InstanceDef::FnPtrShim(..) |
2234             ty::InstanceDef::Virtual(..) |
2235             ty::InstanceDef::ClosureOnceShim { .. } |
2236             ty::InstanceDef::DropGlue(..) |
2237             ty::InstanceDef::CloneShim(..) => {
2238                 self.mir_shims(instance)
2239             }
2240         }
2241     }
2242
2243     /// Given the DefId of an item, returns its MIR, borrowed immutably.
2244     /// Returns None if there is no MIR for the DefId
2245     pub fn maybe_optimized_mir(self, did: DefId) -> Option<&'gcx Mir<'gcx>> {
2246         if self.is_mir_available(did) {
2247             Some(self.optimized_mir(did))
2248         } else {
2249             None
2250         }
2251     }
2252
2253     /// Get the attributes of a definition.
2254     pub fn get_attrs(self, did: DefId) -> Attributes<'gcx> {
2255         if let Some(id) = self.hir.as_local_node_id(did) {
2256             Attributes::Borrowed(self.hir.attrs(id))
2257         } else {
2258             Attributes::Owned(self.item_attrs(did))
2259         }
2260     }
2261
2262     /// Determine whether an item is annotated with an attribute
2263     pub fn has_attr(self, did: DefId, attr: &str) -> bool {
2264         self.get_attrs(did).iter().any(|item| item.check_name(attr))
2265     }
2266
2267     pub fn trait_has_default_impl(self, trait_def_id: DefId) -> bool {
2268         self.trait_def(trait_def_id).has_default_impl
2269     }
2270
2271     pub fn generator_layout(self, def_id: DefId) -> &'tcx GeneratorLayout<'tcx> {
2272         self.optimized_mir(def_id).generator_layout.as_ref().unwrap()
2273     }
2274
2275     /// Given the def_id of an impl, return the def_id of the trait it implements.
2276     /// If it implements no trait, return `None`.
2277     pub fn trait_id_of_impl(self, def_id: DefId) -> Option<DefId> {
2278         self.impl_trait_ref(def_id).map(|tr| tr.def_id)
2279     }
2280
2281     /// If the given def ID describes a method belonging to an impl, return the
2282     /// ID of the impl that the method belongs to. Otherwise, return `None`.
2283     pub fn impl_of_method(self, def_id: DefId) -> Option<DefId> {
2284         let item = if def_id.krate != LOCAL_CRATE {
2285             if let Some(Def::Method(_)) = self.describe_def(def_id) {
2286                 Some(self.associated_item(def_id))
2287             } else {
2288                 None
2289             }
2290         } else {
2291             self.opt_associated_item(def_id)
2292         };
2293
2294         match item {
2295             Some(trait_item) => {
2296                 match trait_item.container {
2297                     TraitContainer(_) => None,
2298                     ImplContainer(def_id) => Some(def_id),
2299                 }
2300             }
2301             None => None
2302         }
2303     }
2304
2305     /// Looks up the span of `impl_did` if the impl is local; otherwise returns `Err`
2306     /// with the name of the crate containing the impl.
2307     pub fn span_of_impl(self, impl_did: DefId) -> Result<Span, Symbol> {
2308         if impl_did.is_local() {
2309             let node_id = self.hir.as_local_node_id(impl_did).unwrap();
2310             Ok(self.hir.span(node_id))
2311         } else {
2312             Err(self.crate_name(impl_did.krate))
2313         }
2314     }
2315
2316     pub fn adjust(self, name: Name, scope: DefId, block: NodeId) -> (Ident, DefId) {
2317         self.adjust_ident(name.to_ident(), scope, block)
2318     }
2319
2320     pub fn adjust_ident(self, mut ident: Ident, scope: DefId, block: NodeId) -> (Ident, DefId) {
2321         let expansion = match scope.krate {
2322             LOCAL_CRATE => self.hir.definitions().expansion(scope.index),
2323             _ => Mark::root(),
2324         };
2325         let scope = match ident.ctxt.adjust(expansion) {
2326             Some(macro_def) => self.hir.definitions().macro_def_scope(macro_def),
2327             None => self.hir.get_module_parent(block),
2328         };
2329         (ident, scope)
2330     }
2331 }
2332
2333 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
2334     pub fn with_freevars<T, F>(self, fid: NodeId, f: F) -> T where
2335         F: FnOnce(&[hir::Freevar]) -> T,
2336     {
2337         let def_id = self.hir.local_def_id(fid);
2338         match self.freevars(def_id) {
2339             None => f(&[]),
2340             Some(d) => f(&d),
2341         }
2342     }
2343 }
2344
2345 fn associated_item<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId)
2346     -> AssociatedItem
2347 {
2348     let id = tcx.hir.as_local_node_id(def_id).unwrap();
2349     let parent_id = tcx.hir.get_parent(id);
2350     let parent_def_id = tcx.hir.local_def_id(parent_id);
2351     let parent_item = tcx.hir.expect_item(parent_id);
2352     match parent_item.node {
2353         hir::ItemImpl(.., ref impl_item_refs) => {
2354             if let Some(impl_item_ref) = impl_item_refs.iter().find(|i| i.id.node_id == id) {
2355                 let assoc_item = tcx.associated_item_from_impl_item_ref(parent_def_id,
2356                                                                         impl_item_ref);
2357                 debug_assert_eq!(assoc_item.def_id, def_id);
2358                 return assoc_item;
2359             }
2360         }
2361
2362         hir::ItemTrait(.., ref trait_item_refs) => {
2363             if let Some(trait_item_ref) = trait_item_refs.iter().find(|i| i.id.node_id == id) {
2364                 let assoc_item = tcx.associated_item_from_trait_item_ref(parent_def_id,
2365                                                                          &parent_item.vis,
2366                                                                          trait_item_ref);
2367                 debug_assert_eq!(assoc_item.def_id, def_id);
2368                 return assoc_item;
2369             }
2370         }
2371
2372         _ => { }
2373     }
2374
2375     span_bug!(parent_item.span,
2376               "unexpected parent of trait or impl item or item not found: {:?}",
2377               parent_item.node)
2378 }
2379
2380 /// Calculates the Sized-constraint.
2381 ///
2382 /// In fact, there are only a few options for the types in the constraint:
2383 ///     - an obviously-unsized type
2384 ///     - a type parameter or projection whose Sizedness can't be known
2385 ///     - a tuple of type parameters or projections, if there are multiple
2386 ///       such.
2387 ///     - a TyError, if a type contained itself. The representability
2388 ///       check should catch this case.
2389 fn adt_sized_constraint<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2390                                   def_id: DefId)
2391                                   -> &'tcx [Ty<'tcx>] {
2392     let def = tcx.adt_def(def_id);
2393
2394     let result = tcx.intern_type_list(&def.variants.iter().flat_map(|v| {
2395         v.fields.last()
2396     }).flat_map(|f| {
2397         def.sized_constraint_for_ty(tcx, tcx.type_of(f.did))
2398     }).collect::<Vec<_>>());
2399
2400     debug!("adt_sized_constraint: {:?} => {:?}", def, result);
2401
2402     result
2403 }
2404
2405 /// Calculates the dtorck constraint for a type.
2406 fn adt_dtorck_constraint<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2407                                    def_id: DefId)
2408                                    -> DtorckConstraint<'tcx> {
2409     let def = tcx.adt_def(def_id);
2410     let span = tcx.def_span(def_id);
2411     debug!("dtorck_constraint: {:?}", def);
2412
2413     if def.is_phantom_data() {
2414         let result = DtorckConstraint {
2415             outlives: vec![],
2416             dtorck_types: vec![
2417                 tcx.mk_param_from_def(&tcx.generics_of(def_id).types[0])
2418            ]
2419         };
2420         debug!("dtorck_constraint: {:?} => {:?}", def, result);
2421         return result;
2422     }
2423
2424     let mut result = def.all_fields()
2425         .map(|field| tcx.type_of(field.did))
2426         .map(|fty| tcx.dtorck_constraint_for_ty(span, fty, 0, fty))
2427         .collect::<Result<DtorckConstraint, ErrorReported>>()
2428         .unwrap_or(DtorckConstraint::empty());
2429     result.outlives.extend(tcx.destructor_constraints(def));
2430     result.dedup();
2431
2432     debug!("dtorck_constraint: {:?} => {:?}", def, result);
2433
2434     result
2435 }
2436
2437 fn associated_item_def_ids<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2438                                      def_id: DefId)
2439                                      -> Rc<Vec<DefId>> {
2440     let id = tcx.hir.as_local_node_id(def_id).unwrap();
2441     let item = tcx.hir.expect_item(id);
2442     let vec: Vec<_> = match item.node {
2443         hir::ItemTrait(.., ref trait_item_refs) => {
2444             trait_item_refs.iter()
2445                            .map(|trait_item_ref| trait_item_ref.id)
2446                            .map(|id| tcx.hir.local_def_id(id.node_id))
2447                            .collect()
2448         }
2449         hir::ItemImpl(.., ref impl_item_refs) => {
2450             impl_item_refs.iter()
2451                           .map(|impl_item_ref| impl_item_ref.id)
2452                           .map(|id| tcx.hir.local_def_id(id.node_id))
2453                           .collect()
2454         }
2455         _ => span_bug!(item.span, "associated_item_def_ids: not impl or trait")
2456     };
2457     Rc::new(vec)
2458 }
2459
2460 fn def_span<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> Span {
2461     tcx.hir.span_if_local(def_id).unwrap()
2462 }
2463
2464 /// If the given def ID describes an item belonging to a trait,
2465 /// return the ID of the trait that the trait item belongs to.
2466 /// Otherwise, return `None`.
2467 fn trait_of_item<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> Option<DefId> {
2468     tcx.opt_associated_item(def_id)
2469         .and_then(|associated_item| {
2470             match associated_item.container {
2471                 TraitContainer(def_id) => Some(def_id),
2472                 ImplContainer(_) => None
2473             }
2474         })
2475 }
2476
2477 /// See `ParamEnv` struct def'n for details.
2478 fn param_env<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2479                        def_id: DefId)
2480                        -> ParamEnv<'tcx> {
2481     // Compute the bounds on Self and the type parameters.
2482
2483     let bounds = tcx.predicates_of(def_id).instantiate_identity(tcx);
2484     let predicates = bounds.predicates;
2485
2486     // Finally, we have to normalize the bounds in the environment, in
2487     // case they contain any associated type projections. This process
2488     // can yield errors if the put in illegal associated types, like
2489     // `<i32 as Foo>::Bar` where `i32` does not implement `Foo`. We
2490     // report these errors right here; this doesn't actually feel
2491     // right to me, because constructing the environment feels like a
2492     // kind of a "idempotent" action, but I'm not sure where would be
2493     // a better place. In practice, we construct environments for
2494     // every fn once during type checking, and we'll abort if there
2495     // are any errors at that point, so after type checking you can be
2496     // sure that this will succeed without errors anyway.
2497
2498     let unnormalized_env = ty::ParamEnv::new(tcx.intern_predicates(&predicates),
2499                                              traits::Reveal::UserFacing);
2500
2501     let body_id = tcx.hir.as_local_node_id(def_id).map_or(DUMMY_NODE_ID, |id| {
2502         tcx.hir.maybe_body_owned_by(id).map_or(id, |body| body.node_id)
2503     });
2504     let cause = traits::ObligationCause::misc(tcx.def_span(def_id), body_id);
2505     traits::normalize_param_env_or_error(tcx, def_id, unnormalized_env, cause)
2506 }
2507
2508 fn crate_disambiguator<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2509                                  crate_num: CrateNum) -> Symbol {
2510     assert_eq!(crate_num, LOCAL_CRATE);
2511     tcx.sess.local_crate_disambiguator()
2512 }
2513
2514 fn original_crate_name<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
2515                                  crate_num: CrateNum) -> Symbol {
2516     assert_eq!(crate_num, LOCAL_CRATE);
2517     tcx.crate_name.clone()
2518 }
2519
2520 pub fn provide(providers: &mut ty::maps::Providers) {
2521     util::provide(providers);
2522     context::provide(providers);
2523     *providers = ty::maps::Providers {
2524         associated_item,
2525         associated_item_def_ids,
2526         adt_sized_constraint,
2527         adt_dtorck_constraint,
2528         def_span,
2529         param_env,
2530         trait_of_item,
2531         crate_disambiguator,
2532         original_crate_name,
2533         trait_impls_of: trait_def::trait_impls_of_provider,
2534         ..*providers
2535     };
2536 }
2537
2538 pub fn provide_extern(providers: &mut ty::maps::Providers) {
2539     *providers = ty::maps::Providers {
2540         adt_sized_constraint,
2541         adt_dtorck_constraint,
2542         trait_impls_of: trait_def::trait_impls_of_provider,
2543         param_env,
2544         ..*providers
2545     };
2546 }
2547
2548
2549 /// A map for the local crate mapping each type to a vector of its
2550 /// inherent impls. This is not meant to be used outside of coherence;
2551 /// rather, you should request the vector for a specific type via
2552 /// `tcx.inherent_impls(def_id)` so as to minimize your dependencies
2553 /// (constructing this map requires touching the entire crate).
2554 #[derive(Clone, Debug)]
2555 pub struct CrateInherentImpls {
2556     pub inherent_impls: DefIdMap<Rc<Vec<DefId>>>,
2557 }
2558
2559 /// A set of constraints that need to be satisfied in order for
2560 /// a type to be valid for destruction.
2561 #[derive(Clone, Debug)]
2562 pub struct DtorckConstraint<'tcx> {
2563     /// Types that are required to be alive in order for this
2564     /// type to be valid for destruction.
2565     pub outlives: Vec<ty::subst::Kind<'tcx>>,
2566     /// Types that could not be resolved: projections and params.
2567     pub dtorck_types: Vec<Ty<'tcx>>,
2568 }
2569
2570 impl<'tcx> FromIterator<DtorckConstraint<'tcx>> for DtorckConstraint<'tcx>
2571 {
2572     fn from_iter<I: IntoIterator<Item=DtorckConstraint<'tcx>>>(iter: I) -> Self {
2573         let mut result = Self::empty();
2574
2575         for constraint in iter {
2576             result.outlives.extend(constraint.outlives);
2577             result.dtorck_types.extend(constraint.dtorck_types);
2578         }
2579
2580         result
2581     }
2582 }
2583
2584
2585 impl<'tcx> DtorckConstraint<'tcx> {
2586     fn empty() -> DtorckConstraint<'tcx> {
2587         DtorckConstraint {
2588             outlives: vec![],
2589             dtorck_types: vec![]
2590         }
2591     }
2592
2593     fn dedup<'a>(&mut self) {
2594         let mut outlives = FxHashSet();
2595         let mut dtorck_types = FxHashSet();
2596
2597         self.outlives.retain(|&val| outlives.replace(val).is_none());
2598         self.dtorck_types.retain(|&val| dtorck_types.replace(val).is_none());
2599     }
2600 }
2601
2602 #[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
2603 pub struct SymbolName {
2604     // FIXME: we don't rely on interning or equality here - better have
2605     // this be a `&'tcx str`.
2606     pub name: InternedString
2607 }
2608
2609 impl Deref for SymbolName {
2610     type Target = str;
2611
2612     fn deref(&self) -> &str { &self.name }
2613 }
2614
2615 impl fmt::Display for SymbolName {
2616     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
2617         fmt::Display::fmt(&self.name, fmt)
2618     }
2619 }