]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/sty.rs
adding E0623 for LateBound regions
[rust.git] / src / librustc / ty / sty.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 //! This module contains TypeVariants and its major components
12
13 use hir::def_id::DefId;
14
15 use middle::region;
16 use ty::subst::{Substs, Subst};
17 use ty::{self, AdtDef, TypeFlags, Ty, TyCtxt, TypeFoldable};
18 use ty::{Slice, TyS};
19 use ty::subst::Kind;
20
21 use std::fmt;
22 use std::iter;
23 use std::cmp::Ordering;
24 use syntax::abi;
25 use syntax::ast::{self, Name};
26 use syntax::symbol::keywords;
27 use util::nodemap::FxHashMap;
28
29 use serialize;
30
31 use hir;
32
33 use self::InferTy::*;
34 use self::TypeVariants::*;
35
36 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
37 pub struct TypeAndMut<'tcx> {
38     pub ty: Ty<'tcx>,
39     pub mutbl: hir::Mutability,
40 }
41
42 #[derive(Clone, PartialEq, PartialOrd, Eq, Ord, Hash,
43          RustcEncodable, RustcDecodable, Copy)]
44 /// A "free" region `fr` can be interpreted as "some region
45 /// at least as big as the scope `fr.scope`".
46 pub struct FreeRegion {
47     pub scope: DefId,
48     pub bound_region: BoundRegion,
49 }
50
51 #[derive(Clone, PartialEq, PartialOrd, Eq, Ord, Hash,
52          RustcEncodable, RustcDecodable, Copy)]
53 pub enum BoundRegion {
54     /// An anonymous region parameter for a given fn (&T)
55     BrAnon(u32),
56
57     /// Named region parameters for functions (a in &'a T)
58     ///
59     /// The def-id is needed to distinguish free regions in
60     /// the event of shadowing.
61     BrNamed(DefId, Name),
62
63     /// Fresh bound identifiers created during GLB computations.
64     BrFresh(u32),
65
66     /// Anonymous region for the implicit env pointer parameter
67     /// to a closure
68     BrEnv,
69 }
70
71 impl BoundRegion {
72     pub fn is_named(&self) -> bool {
73         match *self {
74             BoundRegion::BrNamed(..) => true,
75             _ => false,
76         }
77     }
78 }
79
80 /// NB: If you change this, you'll probably want to change the corresponding
81 /// AST structure in libsyntax/ast.rs as well.
82 #[derive(Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
83 pub enum TypeVariants<'tcx> {
84     /// The primitive boolean type. Written as `bool`.
85     TyBool,
86
87     /// The primitive character type; holds a Unicode scalar value
88     /// (a non-surrogate code point).  Written as `char`.
89     TyChar,
90
91     /// A primitive signed integer type. For example, `i32`.
92     TyInt(ast::IntTy),
93
94     /// A primitive unsigned integer type. For example, `u32`.
95     TyUint(ast::UintTy),
96
97     /// A primitive floating-point type. For example, `f64`.
98     TyFloat(ast::FloatTy),
99
100     /// Structures, enumerations and unions.
101     ///
102     /// Substs here, possibly against intuition, *may* contain `TyParam`s.
103     /// That is, even after substitution it is possible that there are type
104     /// variables. This happens when the `TyAdt` corresponds to an ADT
105     /// definition and not a concrete use of it.
106     TyAdt(&'tcx AdtDef, &'tcx Substs<'tcx>),
107
108     /// The pointee of a string slice. Written as `str`.
109     TyStr,
110
111     /// An array with the given length. Written as `[T; n]`.
112     TyArray(Ty<'tcx>, usize),
113
114     /// The pointee of an array slice.  Written as `[T]`.
115     TySlice(Ty<'tcx>),
116
117     /// A raw pointer. Written as `*mut T` or `*const T`
118     TyRawPtr(TypeAndMut<'tcx>),
119
120     /// A reference; a pointer with an associated lifetime. Written as
121     /// `&'a mut T` or `&'a T`.
122     TyRef(Region<'tcx>, TypeAndMut<'tcx>),
123
124     /// The anonymous type of a function declaration/definition. Each
125     /// function has a unique type.
126     TyFnDef(DefId, &'tcx Substs<'tcx>),
127
128     /// A pointer to a function.  Written as `fn() -> i32`.
129     TyFnPtr(PolyFnSig<'tcx>),
130
131     /// A trait, defined with `trait`.
132     TyDynamic(Binder<&'tcx Slice<ExistentialPredicate<'tcx>>>, ty::Region<'tcx>),
133
134     /// The anonymous type of a closure. Used to represent the type of
135     /// `|a| a`.
136     TyClosure(DefId, ClosureSubsts<'tcx>),
137
138     /// The anonymous type of a generator. Used to represent the type of
139     /// `|a| yield a`.
140     TyGenerator(DefId, ClosureSubsts<'tcx>, GeneratorInterior<'tcx>),
141
142     /// The never type `!`
143     TyNever,
144
145     /// A tuple type.  For example, `(i32, bool)`.
146     /// The bool indicates whether this is a unit tuple and was created by
147     /// defaulting a diverging type variable with feature(never_type) disabled.
148     /// It's only purpose is for raising future-compatibility warnings for when
149     /// diverging type variables start defaulting to ! instead of ().
150     TyTuple(&'tcx Slice<Ty<'tcx>>, bool),
151
152     /// The projection of an associated type.  For example,
153     /// `<T as Trait<..>>::N`.
154     TyProjection(ProjectionTy<'tcx>),
155
156     /// Anonymized (`impl Trait`) type found in a return type.
157     /// The DefId comes from the `impl Trait` ast::Ty node, and the
158     /// substitutions are for the generics of the function in question.
159     /// After typeck, the concrete type can be found in the `types` map.
160     TyAnon(DefId, &'tcx Substs<'tcx>),
161
162     /// A type parameter; for example, `T` in `fn f<T>(x: T) {}
163     TyParam(ParamTy),
164
165     /// A type variable used during type-checking.
166     TyInfer(InferTy),
167
168     /// A placeholder for a type which could not be computed; this is
169     /// propagated to avoid useless error messages.
170     TyError,
171 }
172
173 /// A closure can be modeled as a struct that looks like:
174 ///
175 ///     struct Closure<'l0...'li, T0...Tj, U0...Uk> {
176 ///         upvar0: U0,
177 ///         ...
178 ///         upvark: Uk
179 ///     }
180 ///
181 /// where 'l0...'li and T0...Tj are the lifetime and type parameters
182 /// in scope on the function that defined the closure, and U0...Uk are
183 /// type parameters representing the types of its upvars (borrowed, if
184 /// appropriate).
185 ///
186 /// So, for example, given this function:
187 ///
188 ///     fn foo<'a, T>(data: &'a mut T) {
189 ///          do(|| data.count += 1)
190 ///     }
191 ///
192 /// the type of the closure would be something like:
193 ///
194 ///     struct Closure<'a, T, U0> {
195 ///         data: U0
196 ///     }
197 ///
198 /// Note that the type of the upvar is not specified in the struct.
199 /// You may wonder how the impl would then be able to use the upvar,
200 /// if it doesn't know it's type? The answer is that the impl is
201 /// (conceptually) not fully generic over Closure but rather tied to
202 /// instances with the expected upvar types:
203 ///
204 ///     impl<'b, 'a, T> FnMut() for Closure<'a, T, &'b mut &'a mut T> {
205 ///         ...
206 ///     }
207 ///
208 /// You can see that the *impl* fully specified the type of the upvar
209 /// and thus knows full well that `data` has type `&'b mut &'a mut T`.
210 /// (Here, I am assuming that `data` is mut-borrowed.)
211 ///
212 /// Now, the last question you may ask is: Why include the upvar types
213 /// as extra type parameters? The reason for this design is that the
214 /// upvar types can reference lifetimes that are internal to the
215 /// creating function. In my example above, for example, the lifetime
216 /// `'b` represents the scope of the closure itself; this is some
217 /// subset of `foo`, probably just the scope of the call to the to
218 /// `do()`. If we just had the lifetime/type parameters from the
219 /// enclosing function, we couldn't name this lifetime `'b`. Note that
220 /// there can also be lifetimes in the types of the upvars themselves,
221 /// if one of them happens to be a reference to something that the
222 /// creating fn owns.
223 ///
224 /// OK, you say, so why not create a more minimal set of parameters
225 /// that just includes the extra lifetime parameters? The answer is
226 /// primarily that it would be hard --- we don't know at the time when
227 /// we create the closure type what the full types of the upvars are,
228 /// nor do we know which are borrowed and which are not. In this
229 /// design, we can just supply a fresh type parameter and figure that
230 /// out later.
231 ///
232 /// All right, you say, but why include the type parameters from the
233 /// original function then? The answer is that trans may need them
234 /// when monomorphizing, and they may not appear in the upvars.  A
235 /// closure could capture no variables but still make use of some
236 /// in-scope type parameter with a bound (e.g., if our example above
237 /// had an extra `U: Default`, and the closure called `U::default()`).
238 ///
239 /// There is another reason. This design (implicitly) prohibits
240 /// closures from capturing themselves (except via a trait
241 /// object). This simplifies closure inference considerably, since it
242 /// means that when we infer the kind of a closure or its upvars, we
243 /// don't have to handle cycles where the decisions we make for
244 /// closure C wind up influencing the decisions we ought to make for
245 /// closure C (which would then require fixed point iteration to
246 /// handle). Plus it fixes an ICE. :P
247 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
248 pub struct ClosureSubsts<'tcx> {
249     /// Lifetime and type parameters from the enclosing function,
250     /// concatenated with the types of the upvars.
251     ///
252     /// These are separated out because trans wants to pass them around
253     /// when monomorphizing.
254     pub substs: &'tcx Substs<'tcx>,
255 }
256
257 impl<'a, 'gcx, 'acx, 'tcx> ClosureSubsts<'tcx> {
258     #[inline]
259     pub fn upvar_tys(self, def_id: DefId, tcx: TyCtxt<'a, 'gcx, 'acx>) ->
260         impl Iterator<Item=Ty<'tcx>> + 'tcx
261     {
262         let generics = tcx.generics_of(def_id);
263         self.substs[self.substs.len()-generics.own_count()..].iter().map(
264             |t| t.as_type().expect("unexpected region in upvars"))
265     }
266 }
267
268 impl<'a, 'gcx, 'tcx> ClosureSubsts<'tcx> {
269     /// This returns the types of the MIR locals which had to be stored across suspension points.
270     /// It is calculated in rustc_mir::transform::generator::StateTransform.
271     /// All the types here must be in the tuple in GeneratorInterior.
272     pub fn state_tys(self, def_id: DefId, tcx: TyCtxt<'a, 'gcx, 'tcx>) ->
273         impl Iterator<Item=Ty<'tcx>> + 'a
274     {
275         let state = tcx.generator_layout(def_id).fields.iter();
276         state.map(move |d| d.ty.subst(tcx, self.substs))
277     }
278
279     /// This is the types of all the fields stored in a generator.
280     /// It includes the upvars, state types and the state discriminant which is u32.
281     pub fn field_tys(self, def_id: DefId, tcx: TyCtxt<'a, 'gcx, 'tcx>) ->
282         impl Iterator<Item=Ty<'tcx>> + 'a
283     {
284         let upvars = self.upvar_tys(def_id, tcx);
285         let state = self.state_tys(def_id, tcx);
286         upvars.chain(iter::once(tcx.types.u32)).chain(state)
287     }
288 }
289
290 /// This describes the types that can be contained in a generator.
291 /// It will be a type variable initially and unified in the last stages of typeck of a body.
292 /// It contains a tuple of all the types that could end up on a generator frame.
293 /// The state transformation MIR pass may only produce layouts which mention types in this tuple.
294 /// Upvars are not counted here.
295 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
296 pub struct GeneratorInterior<'tcx> {
297     pub witness: Ty<'tcx>,
298 }
299
300 impl<'tcx> GeneratorInterior<'tcx> {
301     pub fn new(witness: Ty<'tcx>) -> GeneratorInterior<'tcx> {
302         GeneratorInterior { witness }
303     }
304
305     pub fn as_slice(&self) -> &'tcx Slice<Ty<'tcx>> {
306         match self.witness.sty {
307             ty::TyTuple(s, _) => s,
308             _ => bug!(),
309         }
310     }
311 }
312
313 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
314 pub enum ExistentialPredicate<'tcx> {
315     /// e.g. Iterator
316     Trait(ExistentialTraitRef<'tcx>),
317     /// e.g. Iterator::Item = T
318     Projection(ExistentialProjection<'tcx>),
319     /// e.g. Send
320     AutoTrait(DefId),
321 }
322
323 impl<'a, 'gcx, 'tcx> ExistentialPredicate<'tcx> {
324     pub fn cmp(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, other: &Self) -> Ordering {
325         use self::ExistentialPredicate::*;
326         match (*self, *other) {
327             (Trait(_), Trait(_)) => Ordering::Equal,
328             (Projection(ref a), Projection(ref b)) =>
329                 tcx.def_path_hash(a.item_def_id).cmp(&tcx.def_path_hash(b.item_def_id)),
330             (AutoTrait(ref a), AutoTrait(ref b)) =>
331                 tcx.trait_def(*a).def_path_hash.cmp(&tcx.trait_def(*b).def_path_hash),
332             (Trait(_), _) => Ordering::Less,
333             (Projection(_), Trait(_)) => Ordering::Greater,
334             (Projection(_), _) => Ordering::Less,
335             (AutoTrait(_), _) => Ordering::Greater,
336         }
337     }
338
339 }
340
341 impl<'a, 'gcx, 'tcx> Binder<ExistentialPredicate<'tcx>> {
342     pub fn with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, self_ty: Ty<'tcx>)
343         -> ty::Predicate<'tcx> {
344         use ty::ToPredicate;
345         match *self.skip_binder() {
346             ExistentialPredicate::Trait(tr) => Binder(tr).with_self_ty(tcx, self_ty).to_predicate(),
347             ExistentialPredicate::Projection(p) =>
348                 ty::Predicate::Projection(Binder(p.with_self_ty(tcx, self_ty))),
349             ExistentialPredicate::AutoTrait(did) => {
350                 let trait_ref = Binder(ty::TraitRef {
351                     def_id: did,
352                     substs: tcx.mk_substs_trait(self_ty, &[]),
353                 });
354                 trait_ref.to_predicate()
355             }
356         }
357     }
358 }
359
360 impl<'tcx> serialize::UseSpecializedDecodable for &'tcx Slice<ExistentialPredicate<'tcx>> {}
361
362 impl<'tcx> Slice<ExistentialPredicate<'tcx>> {
363     pub fn principal(&self) -> Option<ExistentialTraitRef<'tcx>> {
364         match self.get(0) {
365             Some(&ExistentialPredicate::Trait(tr)) => Some(tr),
366             _ => None,
367         }
368     }
369
370     #[inline]
371     pub fn projection_bounds<'a>(&'a self) ->
372         impl Iterator<Item=ExistentialProjection<'tcx>> + 'a {
373         self.iter().filter_map(|predicate| {
374             match *predicate {
375                 ExistentialPredicate::Projection(p) => Some(p),
376                 _ => None,
377             }
378         })
379     }
380
381     #[inline]
382     pub fn auto_traits<'a>(&'a self) -> impl Iterator<Item=DefId> + 'a {
383         self.iter().filter_map(|predicate| {
384             match *predicate {
385                 ExistentialPredicate::AutoTrait(d) => Some(d),
386                 _ => None
387             }
388         })
389     }
390 }
391
392 impl<'tcx> Binder<&'tcx Slice<ExistentialPredicate<'tcx>>> {
393     pub fn principal(&self) -> Option<PolyExistentialTraitRef<'tcx>> {
394         self.skip_binder().principal().map(Binder)
395     }
396
397     #[inline]
398     pub fn projection_bounds<'a>(&'a self) ->
399         impl Iterator<Item=PolyExistentialProjection<'tcx>> + 'a {
400         self.skip_binder().projection_bounds().map(Binder)
401     }
402
403     #[inline]
404     pub fn auto_traits<'a>(&'a self) -> impl Iterator<Item=DefId> + 'a {
405         self.skip_binder().auto_traits()
406     }
407
408     pub fn iter<'a>(&'a self)
409         -> impl DoubleEndedIterator<Item=Binder<ExistentialPredicate<'tcx>>> + 'tcx {
410         self.skip_binder().iter().cloned().map(Binder)
411     }
412 }
413
414 /// A complete reference to a trait. These take numerous guises in syntax,
415 /// but perhaps the most recognizable form is in a where clause:
416 ///
417 ///     T : Foo<U>
418 ///
419 /// This would be represented by a trait-reference where the def-id is the
420 /// def-id for the trait `Foo` and the substs define `T` as parameter 0,
421 /// and `U` as parameter 1.
422 ///
423 /// Trait references also appear in object types like `Foo<U>`, but in
424 /// that case the `Self` parameter is absent from the substitutions.
425 ///
426 /// Note that a `TraitRef` introduces a level of region binding, to
427 /// account for higher-ranked trait bounds like `T : for<'a> Foo<&'a
428 /// U>` or higher-ranked object types.
429 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
430 pub struct TraitRef<'tcx> {
431     pub def_id: DefId,
432     pub substs: &'tcx Substs<'tcx>,
433 }
434
435 impl<'tcx> TraitRef<'tcx> {
436     pub fn new(def_id: DefId, substs: &'tcx Substs<'tcx>) -> TraitRef<'tcx> {
437         TraitRef { def_id: def_id, substs: substs }
438     }
439
440     pub fn self_ty(&self) -> Ty<'tcx> {
441         self.substs.type_at(0)
442     }
443
444     pub fn input_types<'a>(&'a self) -> impl DoubleEndedIterator<Item=Ty<'tcx>> + 'a {
445         // Select only the "input types" from a trait-reference. For
446         // now this is all the types that appear in the
447         // trait-reference, but it should eventually exclude
448         // associated types.
449         self.substs.types()
450     }
451 }
452
453 pub type PolyTraitRef<'tcx> = Binder<TraitRef<'tcx>>;
454
455 impl<'tcx> PolyTraitRef<'tcx> {
456     pub fn self_ty(&self) -> Ty<'tcx> {
457         self.0.self_ty()
458     }
459
460     pub fn def_id(&self) -> DefId {
461         self.0.def_id
462     }
463
464     pub fn substs(&self) -> &'tcx Substs<'tcx> {
465         // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<>
466         self.0.substs
467     }
468
469     pub fn input_types<'a>(&'a self) -> impl DoubleEndedIterator<Item=Ty<'tcx>> + 'a {
470         // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<>
471         self.0.input_types()
472     }
473
474     pub fn to_poly_trait_predicate(&self) -> ty::PolyTraitPredicate<'tcx> {
475         // Note that we preserve binding levels
476         Binder(ty::TraitPredicate { trait_ref: self.0.clone() })
477     }
478 }
479
480 /// An existential reference to a trait, where `Self` is erased.
481 /// For example, the trait object `Trait<'a, 'b, X, Y>` is:
482 ///
483 ///     exists T. T: Trait<'a, 'b, X, Y>
484 ///
485 /// The substitutions don't include the erased `Self`, only trait
486 /// type and lifetime parameters (`[X, Y]` and `['a, 'b]` above).
487 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
488 pub struct ExistentialTraitRef<'tcx> {
489     pub def_id: DefId,
490     pub substs: &'tcx Substs<'tcx>,
491 }
492
493 impl<'a, 'gcx, 'tcx> ExistentialTraitRef<'tcx> {
494     pub fn input_types<'b>(&'b self) -> impl DoubleEndedIterator<Item=Ty<'tcx>> + 'b {
495         // Select only the "input types" from a trait-reference. For
496         // now this is all the types that appear in the
497         // trait-reference, but it should eventually exclude
498         // associated types.
499         self.substs.types()
500     }
501
502     /// Object types don't have a self-type specified. Therefore, when
503     /// we convert the principal trait-ref into a normal trait-ref,
504     /// you must give *some* self-type. A common choice is `mk_err()`
505     /// or some skolemized type.
506     pub fn with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, self_ty: Ty<'tcx>)
507         -> ty::TraitRef<'tcx>  {
508         // otherwise the escaping regions would be captured by the binder
509         assert!(!self_ty.has_escaping_regions());
510
511         ty::TraitRef {
512             def_id: self.def_id,
513             substs: tcx.mk_substs(
514                 iter::once(Kind::from(self_ty)).chain(self.substs.iter().cloned()))
515         }
516     }
517 }
518
519 pub type PolyExistentialTraitRef<'tcx> = Binder<ExistentialTraitRef<'tcx>>;
520
521 impl<'tcx> PolyExistentialTraitRef<'tcx> {
522     pub fn def_id(&self) -> DefId {
523         self.0.def_id
524     }
525
526     pub fn input_types<'a>(&'a self) -> impl DoubleEndedIterator<Item=Ty<'tcx>> + 'a {
527         // FIXME(#20664) every use of this fn is probably a bug, it should yield Binder<>
528         self.0.input_types()
529     }
530 }
531
532 /// Binder is a binder for higher-ranked lifetimes. It is part of the
533 /// compiler's representation for things like `for<'a> Fn(&'a isize)`
534 /// (which would be represented by the type `PolyTraitRef ==
535 /// Binder<TraitRef>`). Note that when we skolemize, instantiate,
536 /// erase, or otherwise "discharge" these bound regions, we change the
537 /// type from `Binder<T>` to just `T` (see
538 /// e.g. `liberate_late_bound_regions`).
539 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
540 pub struct Binder<T>(pub T);
541
542 impl<T> Binder<T> {
543     /// Skips the binder and returns the "bound" value. This is a
544     /// risky thing to do because it's easy to get confused about
545     /// debruijn indices and the like. It is usually better to
546     /// discharge the binder using `no_late_bound_regions` or
547     /// `replace_late_bound_regions` or something like
548     /// that. `skip_binder` is only valid when you are either
549     /// extracting data that has nothing to do with bound regions, you
550     /// are doing some sort of test that does not involve bound
551     /// regions, or you are being very careful about your depth
552     /// accounting.
553     ///
554     /// Some examples where `skip_binder` is reasonable:
555     /// - extracting the def-id from a PolyTraitRef;
556     /// - comparing the self type of a PolyTraitRef to see if it is equal to
557     ///   a type parameter `X`, since the type `X`  does not reference any regions
558     pub fn skip_binder(&self) -> &T {
559         &self.0
560     }
561
562     pub fn as_ref(&self) -> Binder<&T> {
563         ty::Binder(&self.0)
564     }
565
566     pub fn map_bound_ref<F, U>(&self, f: F) -> Binder<U>
567         where F: FnOnce(&T) -> U
568     {
569         self.as_ref().map_bound(f)
570     }
571
572     pub fn map_bound<F, U>(self, f: F) -> Binder<U>
573         where F: FnOnce(T) -> U
574     {
575         ty::Binder(f(self.0))
576     }
577 }
578
579 impl fmt::Debug for TypeFlags {
580     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
581         write!(f, "{:x}", self.bits)
582     }
583 }
584
585 /// Represents the projection of an associated type. In explicit UFCS
586 /// form this would be written `<T as Trait<..>>::N`.
587 #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
588 pub struct ProjectionTy<'tcx> {
589     /// The parameters of the associated item.
590     pub substs: &'tcx Substs<'tcx>,
591
592     /// The DefId of the TraitItem for the associated type N.
593     ///
594     /// Note that this is not the DefId of the TraitRef containing this
595     /// associated type, which is in tcx.associated_item(item_def_id).container.
596     pub item_def_id: DefId,
597 }
598
599 impl<'a, 'tcx> ProjectionTy<'tcx> {
600     /// Construct a ProjectionTy by searching the trait from trait_ref for the
601     /// associated item named item_name.
602     pub fn from_ref_and_name(
603         tcx: TyCtxt, trait_ref: ty::TraitRef<'tcx>, item_name: Name
604     ) -> ProjectionTy<'tcx> {
605         let item_def_id = tcx.associated_items(trait_ref.def_id).find(
606             |item| item.name == item_name && item.kind == ty::AssociatedKind::Type
607         ).unwrap().def_id;
608
609         ProjectionTy {
610             substs: trait_ref.substs,
611             item_def_id,
612         }
613     }
614
615     /// Extracts the underlying trait reference from this projection.
616     /// For example, if this is a projection of `<T as Iterator>::Item`,
617     /// then this function would return a `T: Iterator` trait reference.
618     pub fn trait_ref(&self, tcx: TyCtxt) -> ty::TraitRef<'tcx> {
619         let def_id = tcx.associated_item(self.item_def_id).container.id();
620         ty::TraitRef {
621             def_id,
622             substs: self.substs,
623         }
624     }
625
626     pub fn self_ty(&self) -> Ty<'tcx> {
627         self.substs.type_at(0)
628     }
629 }
630
631 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
632 pub struct GenSig<'tcx> {
633     pub yield_ty: Ty<'tcx>,
634     pub return_ty: Ty<'tcx>,
635 }
636
637 pub type PolyGenSig<'tcx> = Binder<GenSig<'tcx>>;
638
639 impl<'tcx> PolyGenSig<'tcx> {
640     pub fn yield_ty(&self) -> ty::Binder<Ty<'tcx>> {
641         self.map_bound_ref(|sig| sig.yield_ty)
642     }
643     pub fn return_ty(&self) -> ty::Binder<Ty<'tcx>> {
644         self.map_bound_ref(|sig| sig.return_ty)
645     }
646 }
647
648 /// Signature of a function type, which I have arbitrarily
649 /// decided to use to refer to the input/output types.
650 ///
651 /// - `inputs` is the list of arguments and their modes.
652 /// - `output` is the return type.
653 /// - `variadic` indicates whether this is a variadic function. (only true for foreign fns)
654 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
655 pub struct FnSig<'tcx> {
656     pub inputs_and_output: &'tcx Slice<Ty<'tcx>>,
657     pub variadic: bool,
658     pub unsafety: hir::Unsafety,
659     pub abi: abi::Abi,
660 }
661
662 impl<'tcx> FnSig<'tcx> {
663     pub fn inputs(&self) -> &'tcx [Ty<'tcx>] {
664         &self.inputs_and_output[..self.inputs_and_output.len() - 1]
665     }
666
667     pub fn output(&self) -> Ty<'tcx> {
668         self.inputs_and_output[self.inputs_and_output.len() - 1]
669     }
670 }
671
672 pub type PolyFnSig<'tcx> = Binder<FnSig<'tcx>>;
673
674 impl<'tcx> PolyFnSig<'tcx> {
675     pub fn inputs(&self) -> Binder<&'tcx [Ty<'tcx>]> {
676         Binder(self.skip_binder().inputs())
677     }
678     pub fn input(&self, index: usize) -> ty::Binder<Ty<'tcx>> {
679         self.map_bound_ref(|fn_sig| fn_sig.inputs()[index])
680     }
681     pub fn output(&self) -> ty::Binder<Ty<'tcx>> {
682         self.map_bound_ref(|fn_sig| fn_sig.output().clone())
683     }
684     pub fn variadic(&self) -> bool {
685         self.skip_binder().variadic
686     }
687     pub fn unsafety(&self) -> hir::Unsafety {
688         self.skip_binder().unsafety
689     }
690     pub fn abi(&self) -> abi::Abi {
691         self.skip_binder().abi
692     }
693 }
694
695 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
696 pub struct ParamTy {
697     pub idx: u32,
698     pub name: Name,
699 }
700
701 impl<'a, 'gcx, 'tcx> ParamTy {
702     pub fn new(index: u32, name: Name) -> ParamTy {
703         ParamTy { idx: index, name: name }
704     }
705
706     pub fn for_self() -> ParamTy {
707         ParamTy::new(0, keywords::SelfType.name())
708     }
709
710     pub fn for_def(def: &ty::TypeParameterDef) -> ParamTy {
711         ParamTy::new(def.index, def.name)
712     }
713
714     pub fn to_ty(self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Ty<'tcx> {
715         tcx.mk_param(self.idx, self.name)
716     }
717
718     pub fn is_self(&self) -> bool {
719         if self.name == keywords::SelfType.name() {
720             assert_eq!(self.idx, 0);
721             true
722         } else {
723             false
724         }
725     }
726 }
727
728 /// A [De Bruijn index][dbi] is a standard means of representing
729 /// regions (and perhaps later types) in a higher-ranked setting. In
730 /// particular, imagine a type like this:
731 ///
732 ///     for<'a> fn(for<'b> fn(&'b isize, &'a isize), &'a char)
733 ///     ^          ^            |        |         |
734 ///     |          |            |        |         |
735 ///     |          +------------+ 1      |         |
736 ///     |                                |         |
737 ///     +--------------------------------+ 2       |
738 ///     |                                          |
739 ///     +------------------------------------------+ 1
740 ///
741 /// In this type, there are two binders (the outer fn and the inner
742 /// fn). We need to be able to determine, for any given region, which
743 /// fn type it is bound by, the inner or the outer one. There are
744 /// various ways you can do this, but a De Bruijn index is one of the
745 /// more convenient and has some nice properties. The basic idea is to
746 /// count the number of binders, inside out. Some examples should help
747 /// clarify what I mean.
748 ///
749 /// Let's start with the reference type `&'b isize` that is the first
750 /// argument to the inner function. This region `'b` is assigned a De
751 /// Bruijn index of 1, meaning "the innermost binder" (in this case, a
752 /// fn). The region `'a` that appears in the second argument type (`&'a
753 /// isize`) would then be assigned a De Bruijn index of 2, meaning "the
754 /// second-innermost binder". (These indices are written on the arrays
755 /// in the diagram).
756 ///
757 /// What is interesting is that De Bruijn index attached to a particular
758 /// variable will vary depending on where it appears. For example,
759 /// the final type `&'a char` also refers to the region `'a` declared on
760 /// the outermost fn. But this time, this reference is not nested within
761 /// any other binders (i.e., it is not an argument to the inner fn, but
762 /// rather the outer one). Therefore, in this case, it is assigned a
763 /// De Bruijn index of 1, because the innermost binder in that location
764 /// is the outer fn.
765 ///
766 /// [dbi]: http://en.wikipedia.org/wiki/De_Bruijn_index
767 #[derive(Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable, Debug, Copy)]
768 pub struct DebruijnIndex {
769     /// We maintain the invariant that this is never 0. So 1 indicates
770     /// the innermost binder. To ensure this, create with `DebruijnIndex::new`.
771     pub depth: u32,
772 }
773
774 pub type Region<'tcx> = &'tcx RegionKind;
775
776 /// Representation of regions.
777 ///
778 /// Unlike types, most region variants are "fictitious", not concrete,
779 /// regions. Among these, `ReStatic`, `ReEmpty` and `ReScope` are the only
780 /// ones representing concrete regions.
781 ///
782 /// ## Bound Regions
783 ///
784 /// These are regions that are stored behind a binder and must be substituted
785 /// with some concrete region before being used. There are 2 kind of
786 /// bound regions: early-bound, which are bound in an item's Generics,
787 /// and are substituted by a Substs,  and late-bound, which are part of
788 /// higher-ranked types (e.g. `for<'a> fn(&'a ())`) and are substituted by
789 /// the likes of `liberate_late_bound_regions`. The distinction exists
790 /// because higher-ranked lifetimes aren't supported in all places. See [1][2].
791 ///
792 /// Unlike TyParam-s, bound regions are not supposed to exist "in the wild"
793 /// outside their binder, e.g. in types passed to type inference, and
794 /// should first be substituted (by skolemized regions, free regions,
795 /// or region variables).
796 ///
797 /// ## Skolemized and Free Regions
798 ///
799 /// One often wants to work with bound regions without knowing their precise
800 /// identity. For example, when checking a function, the lifetime of a borrow
801 /// can end up being assigned to some region parameter. In these cases,
802 /// it must be ensured that bounds on the region can't be accidentally
803 /// assumed without being checked.
804 ///
805 /// The process of doing that is called "skolemization". The bound regions
806 /// are replaced by skolemized markers, which don't satisfy any relation
807 /// not explicitly provided.
808 ///
809 /// There are 2 kinds of skolemized regions in rustc: `ReFree` and
810 /// `ReSkolemized`. When checking an item's body, `ReFree` is supposed
811 /// to be used. These also support explicit bounds: both the internally-stored
812 /// *scope*, which the region is assumed to outlive, as well as other
813 /// relations stored in the `FreeRegionMap`. Note that these relations
814 /// aren't checked when you `make_subregion` (or `eq_types`), only by
815 /// `resolve_regions_and_report_errors`.
816 ///
817 /// When working with higher-ranked types, some region relations aren't
818 /// yet known, so you can't just call `resolve_regions_and_report_errors`.
819 /// `ReSkolemized` is designed for this purpose. In these contexts,
820 /// there's also the risk that some inference variable laying around will
821 /// get unified with your skolemized region: if you want to check whether
822 /// `for<'a> Foo<'_>: 'a`, and you substitute your bound region `'a`
823 /// with a skolemized region `'%a`, the variable `'_` would just be
824 /// instantiated to the skolemized region `'%a`, which is wrong because
825 /// the inference variable is supposed to satisfy the relation
826 /// *for every value of the skolemized region*. To ensure that doesn't
827 /// happen, you can use `leak_check`. This is more clearly explained
828 /// by infer/higher_ranked/README.md.
829 ///
830 /// [1] http://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/
831 /// [2] http://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/
832 #[derive(Clone, PartialEq, Eq, Hash, Copy, RustcEncodable, RustcDecodable)]
833 pub enum RegionKind {
834     // Region bound in a type or fn declaration which will be
835     // substituted 'early' -- that is, at the same time when type
836     // parameters are substituted.
837     ReEarlyBound(EarlyBoundRegion),
838
839     // Region bound in a function scope, which will be substituted when the
840     // function is called.
841     ReLateBound(DebruijnIndex, BoundRegion),
842
843     /// When checking a function body, the types of all arguments and so forth
844     /// that refer to bound region parameters are modified to refer to free
845     /// region parameters.
846     ReFree(FreeRegion),
847
848     /// A concrete region naming some statically determined scope
849     /// (e.g. an expression or sequence of statements) within the
850     /// current function.
851     ReScope(region::Scope),
852
853     /// Static data that has an "infinite" lifetime. Top in the region lattice.
854     ReStatic,
855
856     /// A region variable.  Should not exist after typeck.
857     ReVar(RegionVid),
858
859     /// A skolemized region - basically the higher-ranked version of ReFree.
860     /// Should not exist after typeck.
861     ReSkolemized(SkolemizedRegionVid, BoundRegion),
862
863     /// Empty lifetime is for data that is never accessed.
864     /// Bottom in the region lattice. We treat ReEmpty somewhat
865     /// specially; at least right now, we do not generate instances of
866     /// it during the GLB computations, but rather
867     /// generate an error instead. This is to improve error messages.
868     /// The only way to get an instance of ReEmpty is to have a region
869     /// variable with no constraints.
870     ReEmpty,
871
872     /// Erased region, used by trait selection, in MIR and during trans.
873     ReErased,
874 }
875
876 impl<'tcx> serialize::UseSpecializedDecodable for Region<'tcx> {}
877
878 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable, Debug)]
879 pub struct EarlyBoundRegion {
880     pub def_id: DefId,
881     pub index: u32,
882     pub name: Name,
883 }
884
885 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
886 pub struct TyVid {
887     pub index: u32,
888 }
889
890 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
891 pub struct IntVid {
892     pub index: u32,
893 }
894
895 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
896 pub struct FloatVid {
897     pub index: u32,
898 }
899
900 #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy)]
901 pub struct RegionVid {
902     pub index: u32,
903 }
904
905 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
906 pub struct SkolemizedRegionVid {
907     pub index: u32,
908 }
909
910 #[derive(Clone, Copy, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
911 pub enum InferTy {
912     TyVar(TyVid),
913     IntVar(IntVid),
914     FloatVar(FloatVid),
915
916     /// A `FreshTy` is one that is generated as a replacement for an
917     /// unbound type variable. This is convenient for caching etc. See
918     /// `infer::freshen` for more details.
919     FreshTy(u32),
920     FreshIntTy(u32),
921     FreshFloatTy(u32),
922 }
923
924 /// A `ProjectionPredicate` for an `ExistentialTraitRef`.
925 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
926 pub struct ExistentialProjection<'tcx> {
927     pub item_def_id: DefId,
928     pub substs: &'tcx Substs<'tcx>,
929     pub ty: Ty<'tcx>,
930 }
931
932 pub type PolyExistentialProjection<'tcx> = Binder<ExistentialProjection<'tcx>>;
933
934 impl<'a, 'tcx, 'gcx> ExistentialProjection<'tcx> {
935     /// Extracts the underlying existential trait reference from this projection.
936     /// For example, if this is a projection of `exists T. <T as Iterator>::Item == X`,
937     /// then this function would return a `exists T. T: Iterator` existential trait
938     /// reference.
939     pub fn trait_ref(&self, tcx: TyCtxt) -> ty::ExistentialTraitRef<'tcx> {
940         let def_id = tcx.associated_item(self.item_def_id).container.id();
941         ty::ExistentialTraitRef{
942             def_id,
943             substs: self.substs,
944         }
945     }
946
947     pub fn with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>,
948                         self_ty: Ty<'tcx>)
949                         -> ty::ProjectionPredicate<'tcx>
950     {
951         // otherwise the escaping regions would be captured by the binders
952         assert!(!self_ty.has_escaping_regions());
953
954         ty::ProjectionPredicate {
955             projection_ty: ty::ProjectionTy {
956                 item_def_id: self.item_def_id,
957                 substs: tcx.mk_substs(
958                 iter::once(Kind::from(self_ty)).chain(self.substs.iter().cloned())),
959             },
960             ty: self.ty,
961         }
962     }
963 }
964
965 impl<'a, 'tcx, 'gcx> PolyExistentialProjection<'tcx> {
966     pub fn with_self_ty(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>, self_ty: Ty<'tcx>)
967         -> ty::PolyProjectionPredicate<'tcx> {
968         self.map_bound(|p| p.with_self_ty(tcx, self_ty))
969     }
970 }
971
972 impl DebruijnIndex {
973     pub fn new(depth: u32) -> DebruijnIndex {
974         assert!(depth > 0);
975         DebruijnIndex { depth: depth }
976     }
977
978     pub fn shifted(&self, amount: u32) -> DebruijnIndex {
979         DebruijnIndex { depth: self.depth + amount }
980     }
981 }
982
983 /// Region utilities
984 impl RegionKind {
985     pub fn is_late_bound(&self) -> bool {
986         match *self {
987             ty::ReLateBound(..) => true,
988             _ => false,
989         }
990     }
991
992     pub fn needs_infer(&self) -> bool {
993         match *self {
994             ty::ReVar(..) | ty::ReSkolemized(..) => true,
995             _ => false
996         }
997     }
998
999     pub fn escapes_depth(&self, depth: u32) -> bool {
1000         match *self {
1001             ty::ReLateBound(debruijn, _) => debruijn.depth > depth,
1002             _ => false,
1003         }
1004     }
1005
1006     /// Returns the depth of `self` from the (1-based) binding level `depth`
1007     pub fn from_depth(&self, depth: u32) -> RegionKind {
1008         match *self {
1009             ty::ReLateBound(debruijn, r) => ty::ReLateBound(DebruijnIndex {
1010                 depth: debruijn.depth - (depth - 1)
1011             }, r),
1012             r => r
1013         }
1014     }
1015
1016     pub fn type_flags(&self) -> TypeFlags {
1017         let mut flags = TypeFlags::empty();
1018
1019         match *self {
1020             ty::ReVar(..) => {
1021                 flags = flags | TypeFlags::HAS_RE_INFER;
1022                 flags = flags | TypeFlags::KEEP_IN_LOCAL_TCX;
1023             }
1024             ty::ReSkolemized(..) => {
1025                 flags = flags | TypeFlags::HAS_RE_INFER;
1026                 flags = flags | TypeFlags::HAS_RE_SKOL;
1027                 flags = flags | TypeFlags::KEEP_IN_LOCAL_TCX;
1028             }
1029             ty::ReLateBound(..) => { }
1030             ty::ReEarlyBound(..) => { flags = flags | TypeFlags::HAS_RE_EARLY_BOUND; }
1031             ty::ReStatic | ty::ReErased => { }
1032             _ => { flags = flags | TypeFlags::HAS_FREE_REGIONS; }
1033         }
1034
1035         match *self {
1036             ty::ReStatic | ty::ReEmpty | ty::ReErased => (),
1037             _ => flags = flags | TypeFlags::HAS_LOCAL_NAMES,
1038         }
1039
1040         debug!("type_flags({:?}) = {:?}", self, flags);
1041
1042         flags
1043     }
1044 }
1045
1046 /// Type utilities
1047 impl<'a, 'gcx, 'tcx> TyS<'tcx> {
1048     pub fn as_opt_param_ty(&self) -> Option<ty::ParamTy> {
1049         match self.sty {
1050             ty::TyParam(ref d) => Some(d.clone()),
1051             _ => None,
1052         }
1053     }
1054
1055     pub fn is_nil(&self) -> bool {
1056         match self.sty {
1057             TyTuple(ref tys, _) => tys.is_empty(),
1058             _ => false,
1059         }
1060     }
1061
1062     pub fn is_never(&self) -> bool {
1063         match self.sty {
1064             TyNever => true,
1065             _ => false,
1066         }
1067     }
1068
1069     /// Test whether this is a `()` which was produced by defaulting a
1070     /// diverging type variable with feature(never_type) disabled.
1071     pub fn is_defaulted_unit(&self) -> bool {
1072         match self.sty {
1073             TyTuple(_, true) => true,
1074             _ => false,
1075         }
1076     }
1077
1078     /// Checks whether a type is visibly uninhabited from a particular module.
1079     /// # Example
1080     /// ```rust
1081     /// enum Void {}
1082     /// mod a {
1083     ///     pub mod b {
1084     ///         pub struct SecretlyUninhabited {
1085     ///             _priv: !,
1086     ///         }
1087     ///     }
1088     /// }
1089     ///
1090     /// mod c {
1091     ///     pub struct AlsoSecretlyUninhabited {
1092     ///         _priv: Void,
1093     ///     }
1094     ///     mod d {
1095     ///     }
1096     /// }
1097     ///
1098     /// struct Foo {
1099     ///     x: a::b::SecretlyUninhabited,
1100     ///     y: c::AlsoSecretlyUninhabited,
1101     /// }
1102     /// ```
1103     /// In this code, the type `Foo` will only be visibly uninhabited inside the
1104     /// modules b, c and d. This effects pattern-matching on `Foo` or types that
1105     /// contain `Foo`.
1106     ///
1107     /// # Example
1108     /// ```rust
1109     /// let foo_result: Result<T, Foo> = ... ;
1110     /// let Ok(t) = foo_result;
1111     /// ```
1112     /// This code should only compile in modules where the uninhabitedness of Foo is
1113     /// visible.
1114     pub fn is_uninhabited_from(&self, module: DefId, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> bool {
1115         let mut visited = FxHashMap::default();
1116         let forest = self.uninhabited_from(&mut visited, tcx);
1117
1118         // To check whether this type is uninhabited at all (not just from the
1119         // given node) you could check whether the forest is empty.
1120         // ```
1121         // forest.is_empty()
1122         // ```
1123         forest.contains(tcx, module)
1124     }
1125
1126     pub fn is_primitive(&self) -> bool {
1127         match self.sty {
1128             TyBool | TyChar | TyInt(_) | TyUint(_) | TyFloat(_) => true,
1129             _ => false,
1130         }
1131     }
1132
1133     pub fn is_ty_var(&self) -> bool {
1134         match self.sty {
1135             TyInfer(TyVar(_)) => true,
1136             _ => false,
1137         }
1138     }
1139
1140     pub fn is_phantom_data(&self) -> bool {
1141         if let TyAdt(def, _) = self.sty {
1142             def.is_phantom_data()
1143         } else {
1144             false
1145         }
1146     }
1147
1148     pub fn is_bool(&self) -> bool { self.sty == TyBool }
1149
1150     pub fn is_param(&self, index: u32) -> bool {
1151         match self.sty {
1152             ty::TyParam(ref data) => data.idx == index,
1153             _ => false,
1154         }
1155     }
1156
1157     pub fn is_self(&self) -> bool {
1158         match self.sty {
1159             TyParam(ref p) => p.is_self(),
1160             _ => false,
1161         }
1162     }
1163
1164     pub fn is_slice(&self) -> bool {
1165         match self.sty {
1166             TyRawPtr(mt) | TyRef(_, mt) => match mt.ty.sty {
1167                 TySlice(_) | TyStr => true,
1168                 _ => false,
1169             },
1170             _ => false
1171         }
1172     }
1173
1174     pub fn is_structural(&self) -> bool {
1175         match self.sty {
1176             TyAdt(..) | TyTuple(..) | TyArray(..) | TyClosure(..) => true,
1177             _ => self.is_slice() | self.is_trait(),
1178         }
1179     }
1180
1181     #[inline]
1182     pub fn is_simd(&self) -> bool {
1183         match self.sty {
1184             TyAdt(def, _) => def.repr.simd(),
1185             _ => false,
1186         }
1187     }
1188
1189     pub fn sequence_element_type(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Ty<'tcx> {
1190         match self.sty {
1191             TyArray(ty, _) | TySlice(ty) => ty,
1192             TyStr => tcx.mk_mach_uint(ast::UintTy::U8),
1193             _ => bug!("sequence_element_type called on non-sequence value: {}", self),
1194         }
1195     }
1196
1197     pub fn simd_type(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Ty<'tcx> {
1198         match self.sty {
1199             TyAdt(def, substs) => {
1200                 def.struct_variant().fields[0].ty(tcx, substs)
1201             }
1202             _ => bug!("simd_type called on invalid type")
1203         }
1204     }
1205
1206     pub fn simd_size(&self, _cx: TyCtxt) -> usize {
1207         match self.sty {
1208             TyAdt(def, _) => def.struct_variant().fields.len(),
1209             _ => bug!("simd_size called on invalid type")
1210         }
1211     }
1212
1213     pub fn is_region_ptr(&self) -> bool {
1214         match self.sty {
1215             TyRef(..) => true,
1216             _ => false,
1217         }
1218     }
1219
1220     pub fn is_mutable_pointer(&self) -> bool {
1221         match self.sty {
1222             TyRawPtr(tnm) | TyRef(_, tnm) => if let hir::Mutability::MutMutable = tnm.mutbl {
1223                 true
1224             } else {
1225                 false
1226             },
1227             _ => false
1228         }
1229     }
1230
1231     pub fn is_unsafe_ptr(&self) -> bool {
1232         match self.sty {
1233             TyRawPtr(_) => return true,
1234             _ => return false,
1235         }
1236     }
1237
1238     pub fn is_box(&self) -> bool {
1239         match self.sty {
1240             TyAdt(def, _) => def.is_box(),
1241             _ => false,
1242         }
1243     }
1244
1245     /// panics if called on any type other than `Box<T>`
1246     pub fn boxed_ty(&self) -> Ty<'tcx> {
1247         match self.sty {
1248             TyAdt(def, substs) if def.is_box() => substs.type_at(0),
1249             _ => bug!("`boxed_ty` is called on non-box type {:?}", self),
1250         }
1251     }
1252
1253     /// A scalar type is one that denotes an atomic datum, with no sub-components.
1254     /// (A TyRawPtr is scalar because it represents a non-managed pointer, so its
1255     /// contents are abstract to rustc.)
1256     pub fn is_scalar(&self) -> bool {
1257         match self.sty {
1258             TyBool | TyChar | TyInt(_) | TyFloat(_) | TyUint(_) |
1259             TyInfer(IntVar(_)) | TyInfer(FloatVar(_)) |
1260             TyFnDef(..) | TyFnPtr(_) | TyRawPtr(_) => true,
1261             _ => false
1262         }
1263     }
1264
1265     /// Returns true if this type is a floating point type and false otherwise.
1266     pub fn is_floating_point(&self) -> bool {
1267         match self.sty {
1268             TyFloat(_) |
1269             TyInfer(FloatVar(_)) => true,
1270             _ => false,
1271         }
1272     }
1273
1274     pub fn is_trait(&self) -> bool {
1275         match self.sty {
1276             TyDynamic(..) => true,
1277             _ => false,
1278         }
1279     }
1280
1281     pub fn is_closure(&self) -> bool {
1282         match self.sty {
1283             TyClosure(..) => true,
1284             _ => false,
1285         }
1286     }
1287
1288     pub fn is_integral(&self) -> bool {
1289         match self.sty {
1290             TyInfer(IntVar(_)) | TyInt(_) | TyUint(_) => true,
1291             _ => false
1292         }
1293     }
1294
1295     pub fn is_fresh(&self) -> bool {
1296         match self.sty {
1297             TyInfer(FreshTy(_)) => true,
1298             TyInfer(FreshIntTy(_)) => true,
1299             TyInfer(FreshFloatTy(_)) => true,
1300             _ => false,
1301         }
1302     }
1303
1304     pub fn is_uint(&self) -> bool {
1305         match self.sty {
1306             TyInfer(IntVar(_)) | TyUint(ast::UintTy::Us) => true,
1307             _ => false
1308         }
1309     }
1310
1311     pub fn is_char(&self) -> bool {
1312         match self.sty {
1313             TyChar => true,
1314             _ => false,
1315         }
1316     }
1317
1318     pub fn is_fp(&self) -> bool {
1319         match self.sty {
1320             TyInfer(FloatVar(_)) | TyFloat(_) => true,
1321             _ => false
1322         }
1323     }
1324
1325     pub fn is_numeric(&self) -> bool {
1326         self.is_integral() || self.is_fp()
1327     }
1328
1329     pub fn is_signed(&self) -> bool {
1330         match self.sty {
1331             TyInt(_) => true,
1332             _ => false,
1333         }
1334     }
1335
1336     pub fn is_machine(&self) -> bool {
1337         match self.sty {
1338             TyInt(ast::IntTy::Is) | TyUint(ast::UintTy::Us) => false,
1339             TyInt(..) | TyUint(..) | TyFloat(..) => true,
1340             _ => false,
1341         }
1342     }
1343
1344     pub fn has_concrete_skeleton(&self) -> bool {
1345         match self.sty {
1346             TyParam(_) | TyInfer(_) | TyError => false,
1347             _ => true,
1348         }
1349     }
1350
1351     /// Returns the type and mutability of *ty.
1352     ///
1353     /// The parameter `explicit` indicates if this is an *explicit* dereference.
1354     /// Some types---notably unsafe ptrs---can only be dereferenced explicitly.
1355     pub fn builtin_deref(&self, explicit: bool, pref: ty::LvaluePreference)
1356         -> Option<TypeAndMut<'tcx>>
1357     {
1358         match self.sty {
1359             TyAdt(def, _) if def.is_box() => {
1360                 Some(TypeAndMut {
1361                     ty: self.boxed_ty(),
1362                     mutbl: if pref == ty::PreferMutLvalue {
1363                         hir::MutMutable
1364                     } else {
1365                         hir::MutImmutable
1366                     },
1367                 })
1368             },
1369             TyRef(_, mt) => Some(mt),
1370             TyRawPtr(mt) if explicit => Some(mt),
1371             _ => None,
1372         }
1373     }
1374
1375     /// Returns the type of ty[i]
1376     pub fn builtin_index(&self) -> Option<Ty<'tcx>> {
1377         match self.sty {
1378             TyArray(ty, _) | TySlice(ty) => Some(ty),
1379             _ => None,
1380         }
1381     }
1382
1383     pub fn fn_sig(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> PolyFnSig<'tcx> {
1384         match self.sty {
1385             TyFnDef(def_id, substs) => {
1386                 tcx.fn_sig(def_id).subst(tcx, substs)
1387             }
1388             TyFnPtr(f) => f,
1389             _ => bug!("Ty::fn_sig() called on non-fn type: {:?}", self)
1390         }
1391     }
1392
1393     pub fn is_fn(&self) -> bool {
1394         match self.sty {
1395             TyFnDef(..) | TyFnPtr(_) => true,
1396             _ => false,
1397         }
1398     }
1399
1400     pub fn ty_to_def_id(&self) -> Option<DefId> {
1401         match self.sty {
1402             TyDynamic(ref tt, ..) => tt.principal().map(|p| p.def_id()),
1403             TyAdt(def, _) => Some(def.did),
1404             TyClosure(id, _) => Some(id),
1405             _ => None,
1406         }
1407     }
1408
1409     pub fn ty_adt_def(&self) -> Option<&'tcx AdtDef> {
1410         match self.sty {
1411             TyAdt(adt, _) => Some(adt),
1412             _ => None,
1413         }
1414     }
1415
1416     /// Returns the regions directly referenced from this type (but
1417     /// not types reachable from this type via `walk_tys`). This
1418     /// ignores late-bound regions binders.
1419     pub fn regions(&self) -> Vec<ty::Region<'tcx>> {
1420         match self.sty {
1421             TyRef(region, _) => {
1422                 vec![region]
1423             }
1424             TyDynamic(ref obj, region) => {
1425                 let mut v = vec![region];
1426                 if let Some(p) = obj.principal() {
1427                     v.extend(p.skip_binder().substs.regions());
1428                 }
1429                 v
1430             }
1431             TyAdt(_, substs) | TyAnon(_, substs) => {
1432                 substs.regions().collect()
1433             }
1434             TyClosure(_, ref substs) | TyGenerator(_, ref substs, _) => {
1435                 substs.substs.regions().collect()
1436             }
1437             TyProjection(ref data) => {
1438                 data.substs.regions().collect()
1439             }
1440             TyFnDef(..) |
1441             TyFnPtr(_) |
1442             TyBool |
1443             TyChar |
1444             TyInt(_) |
1445             TyUint(_) |
1446             TyFloat(_) |
1447             TyStr |
1448             TyArray(..) |
1449             TySlice(_) |
1450             TyRawPtr(_) |
1451             TyNever |
1452             TyTuple(..) |
1453             TyParam(_) |
1454             TyInfer(_) |
1455             TyError => {
1456                 vec![]
1457             }
1458         }
1459     }
1460 }