]> git.lizzy.rs Git - rust.git/blob - src/librustc_middle/ty/sty.rs
f4962ced6c03a83e613e80ca8be838520cdc30cf
[rust.git] / src / librustc_middle / ty / sty.rs
1 //! This module contains `TyKind` and its major components.
2
3 #![allow(rustc::usage_of_ty_tykind)]
4
5 use self::InferTy::*;
6 use self::TyKind::*;
7
8 use crate::infer::canonical::Canonical;
9 use crate::mir::interpret::ConstValue;
10 use crate::mir::interpret::{LitToConstInput, Scalar};
11 use crate::mir::Promoted;
12 use crate::ty::subst::{GenericArg, InternalSubsts, Subst, SubstsRef};
13 use crate::ty::{
14     self, AdtDef, DefIdTree, Discr, Ty, TyCtxt, TypeFlags, TypeFoldable, WithConstness,
15 };
16 use crate::ty::{List, ParamEnv, ParamEnvAnd, TyS};
17 use polonius_engine::Atom;
18 use rustc_ast::ast;
19 use rustc_data_structures::captures::Captures;
20 use rustc_errors::ErrorReported;
21 use rustc_hir as hir;
22 use rustc_hir::def_id::{DefId, LocalDefId};
23 use rustc_index::vec::Idx;
24 use rustc_macros::HashStable;
25 use rustc_span::symbol::{kw, Ident, Symbol};
26 use rustc_target::abi::{Size, VariantIdx};
27 use rustc_target::spec::abi;
28 use std::borrow::Cow;
29 use std::cmp::Ordering;
30 use std::marker::PhantomData;
31 use std::ops::Range;
32 use ty::util::IntTypeExt;
33
34 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
35 #[derive(HashStable, TypeFoldable, Lift)]
36 pub struct TypeAndMut<'tcx> {
37     pub ty: Ty<'tcx>,
38     pub mutbl: hir::Mutability,
39 }
40
41 #[derive(Clone, PartialEq, PartialOrd, Eq, Ord, Hash, RustcEncodable, RustcDecodable, Copy)]
42 #[derive(HashStable)]
43 /// A "free" region `fr` can be interpreted as "some region
44 /// at least as big as the scope `fr.scope`".
45 pub struct FreeRegion {
46     pub scope: DefId,
47     pub bound_region: BoundRegion,
48 }
49
50 #[derive(Clone, PartialEq, PartialOrd, Eq, Ord, Hash, RustcEncodable, RustcDecodable, Copy)]
51 #[derive(HashStable)]
52 pub enum BoundRegion {
53     /// An anonymous region parameter for a given fn (&T)
54     BrAnon(u32),
55
56     /// Named region parameters for functions (a in &'a T)
57     ///
58     /// The `DefId` is needed to distinguish free regions in
59     /// the event of shadowing.
60     BrNamed(DefId, Symbol),
61
62     /// Anonymous region for the implicit env pointer parameter
63     /// to a closure
64     BrEnv,
65 }
66
67 impl BoundRegion {
68     pub fn is_named(&self) -> bool {
69         match *self {
70             BoundRegion::BrNamed(_, name) => name != kw::UnderscoreLifetime,
71             _ => false,
72         }
73     }
74
75     /// When canonicalizing, we replace unbound inference variables and free
76     /// regions with anonymous late bound regions. This method asserts that
77     /// we have an anonymous late bound region, which hence may refer to
78     /// a canonical variable.
79     pub fn assert_bound_var(&self) -> BoundVar {
80         match *self {
81             BoundRegion::BrAnon(var) => BoundVar::from_u32(var),
82             _ => bug!("bound region is not anonymous"),
83         }
84     }
85 }
86
87 /// N.B., if you change this, you'll probably want to change the corresponding
88 /// AST structure in `librustc_ast/ast.rs` as well.
89 #[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable, Debug)]
90 #[derive(HashStable)]
91 #[rustc_diagnostic_item = "TyKind"]
92 pub enum TyKind<'tcx> {
93     /// The primitive boolean type. Written as `bool`.
94     Bool,
95
96     /// The primitive character type; holds a Unicode scalar value
97     /// (a non-surrogate code point). Written as `char`.
98     Char,
99
100     /// A primitive signed integer type. For example, `i32`.
101     Int(ast::IntTy),
102
103     /// A primitive unsigned integer type. For example, `u32`.
104     Uint(ast::UintTy),
105
106     /// A primitive floating-point type. For example, `f64`.
107     Float(ast::FloatTy),
108
109     /// Structures, enumerations and unions.
110     ///
111     /// InternalSubsts here, possibly against intuition, *may* contain `Param`s.
112     /// That is, even after substitution it is possible that there are type
113     /// variables. This happens when the `Adt` corresponds to an ADT
114     /// definition and not a concrete use of it.
115     Adt(&'tcx AdtDef, SubstsRef<'tcx>),
116
117     /// An unsized FFI type that is opaque to Rust. Written as `extern type T`.
118     Foreign(DefId),
119
120     /// The pointee of a string slice. Written as `str`.
121     Str,
122
123     /// An array with the given length. Written as `[T; n]`.
124     Array(Ty<'tcx>, &'tcx ty::Const<'tcx>),
125
126     /// The pointee of an array slice. Written as `[T]`.
127     Slice(Ty<'tcx>),
128
129     /// A raw pointer. Written as `*mut T` or `*const T`
130     RawPtr(TypeAndMut<'tcx>),
131
132     /// A reference; a pointer with an associated lifetime. Written as
133     /// `&'a mut T` or `&'a T`.
134     Ref(Region<'tcx>, Ty<'tcx>, hir::Mutability),
135
136     /// The anonymous type of a function declaration/definition. Each
137     /// function has a unique type, which is output (for a function
138     /// named `foo` returning an `i32`) as `fn() -> i32 {foo}`.
139     ///
140     /// For example the type of `bar` here:
141     ///
142     /// ```rust
143     /// fn foo() -> i32 { 1 }
144     /// let bar = foo; // bar: fn() -> i32 {foo}
145     /// ```
146     FnDef(DefId, SubstsRef<'tcx>),
147
148     /// A pointer to a function. Written as `fn() -> i32`.
149     ///
150     /// For example the type of `bar` here:
151     ///
152     /// ```rust
153     /// fn foo() -> i32 { 1 }
154     /// let bar: fn() -> i32 = foo;
155     /// ```
156     FnPtr(PolyFnSig<'tcx>),
157
158     /// A trait, defined with `trait`.
159     Dynamic(Binder<&'tcx List<ExistentialPredicate<'tcx>>>, ty::Region<'tcx>),
160
161     /// The anonymous type of a closure. Used to represent the type of
162     /// `|a| a`.
163     Closure(DefId, SubstsRef<'tcx>),
164
165     /// The anonymous type of a generator. Used to represent the type of
166     /// `|a| yield a`.
167     Generator(DefId, SubstsRef<'tcx>, hir::Movability),
168
169     /// A type representin the types stored inside a generator.
170     /// This should only appear in GeneratorInteriors.
171     GeneratorWitness(Binder<&'tcx List<Ty<'tcx>>>),
172
173     /// The never type `!`
174     Never,
175
176     /// A tuple type. For example, `(i32, bool)`.
177     /// Use `TyS::tuple_fields` to iterate over the field types.
178     Tuple(SubstsRef<'tcx>),
179
180     /// The projection of an associated type. For example,
181     /// `<T as Trait<..>>::N`.
182     Projection(ProjectionTy<'tcx>),
183
184     /// Opaque (`impl Trait`) type found in a return type.
185     /// The `DefId` comes either from
186     /// * the `impl Trait` ast::Ty node,
187     /// * or the `type Foo = impl Trait` declaration
188     /// The substitutions are for the generics of the function in question.
189     /// After typeck, the concrete type can be found in the `types` map.
190     Opaque(DefId, SubstsRef<'tcx>),
191
192     /// A type parameter; for example, `T` in `fn f<T>(x: T) {}
193     Param(ParamTy),
194
195     /// Bound type variable, used only when preparing a trait query.
196     Bound(ty::DebruijnIndex, BoundTy),
197
198     /// A placeholder type - universally quantified higher-ranked type.
199     Placeholder(ty::PlaceholderType),
200
201     /// A type variable used during type checking.
202     Infer(InferTy),
203
204     /// A placeholder for a type which could not be computed; this is
205     /// propagated to avoid useless error messages.
206     Error,
207 }
208
209 // `TyKind` is used a lot. Make sure it doesn't unintentionally get bigger.
210 #[cfg(target_arch = "x86_64")]
211 static_assert_size!(TyKind<'_>, 24);
212
213 /// A closure can be modeled as a struct that looks like:
214 ///
215 ///     struct Closure<'l0...'li, T0...Tj, CK, CS, U>(...U);
216 ///
217 /// where:
218 ///
219 /// - 'l0...'li and T0...Tj are the generic parameters
220 ///   in scope on the function that defined the closure,
221 /// - CK represents the *closure kind* (Fn vs FnMut vs FnOnce). This
222 ///   is rather hackily encoded via a scalar type. See
223 ///   `TyS::to_opt_closure_kind` for details.
224 /// - CS represents the *closure signature*, representing as a `fn()`
225 ///   type. For example, `fn(u32, u32) -> u32` would mean that the closure
226 ///   implements `CK<(u32, u32), Output = u32>`, where `CK` is the trait
227 ///   specified above.
228 /// - U is a type parameter representing the types of its upvars, tupled up
229 ///   (borrowed, if appropriate; that is, if an U field represents a by-ref upvar,
230 ///    and the up-var has the type `Foo`, then that field of U will be `&Foo`).
231 ///
232 /// So, for example, given this function:
233 ///
234 ///     fn foo<'a, T>(data: &'a mut T) {
235 ///          do(|| data.count += 1)
236 ///     }
237 ///
238 /// the type of the closure would be something like:
239 ///
240 ///     struct Closure<'a, T, U>(...U);
241 ///
242 /// Note that the type of the upvar is not specified in the struct.
243 /// You may wonder how the impl would then be able to use the upvar,
244 /// if it doesn't know it's type? The answer is that the impl is
245 /// (conceptually) not fully generic over Closure but rather tied to
246 /// instances with the expected upvar types:
247 ///
248 ///     impl<'b, 'a, T> FnMut() for Closure<'a, T, (&'b mut &'a mut T,)> {
249 ///         ...
250 ///     }
251 ///
252 /// You can see that the *impl* fully specified the type of the upvar
253 /// and thus knows full well that `data` has type `&'b mut &'a mut T`.
254 /// (Here, I am assuming that `data` is mut-borrowed.)
255 ///
256 /// Now, the last question you may ask is: Why include the upvar types
257 /// in an extra type parameter? The reason for this design is that the
258 /// upvar types can reference lifetimes that are internal to the
259 /// creating function. In my example above, for example, the lifetime
260 /// `'b` represents the scope of the closure itself; this is some
261 /// subset of `foo`, probably just the scope of the call to the to
262 /// `do()`. If we just had the lifetime/type parameters from the
263 /// enclosing function, we couldn't name this lifetime `'b`. Note that
264 /// there can also be lifetimes in the types of the upvars themselves,
265 /// if one of them happens to be a reference to something that the
266 /// creating fn owns.
267 ///
268 /// OK, you say, so why not create a more minimal set of parameters
269 /// that just includes the extra lifetime parameters? The answer is
270 /// primarily that it would be hard --- we don't know at the time when
271 /// we create the closure type what the full types of the upvars are,
272 /// nor do we know which are borrowed and which are not. In this
273 /// design, we can just supply a fresh type parameter and figure that
274 /// out later.
275 ///
276 /// All right, you say, but why include the type parameters from the
277 /// original function then? The answer is that codegen may need them
278 /// when monomorphizing, and they may not appear in the upvars. A
279 /// closure could capture no variables but still make use of some
280 /// in-scope type parameter with a bound (e.g., if our example above
281 /// had an extra `U: Default`, and the closure called `U::default()`).
282 ///
283 /// There is another reason. This design (implicitly) prohibits
284 /// closures from capturing themselves (except via a trait
285 /// object). This simplifies closure inference considerably, since it
286 /// means that when we infer the kind of a closure or its upvars, we
287 /// don't have to handle cycles where the decisions we make for
288 /// closure C wind up influencing the decisions we ought to make for
289 /// closure C (which would then require fixed point iteration to
290 /// handle). Plus it fixes an ICE. :P
291 ///
292 /// ## Generators
293 ///
294 /// Generators are handled similarly in `GeneratorSubsts`.  The set of
295 /// type parameters is similar, but `CK` and `CS` are replaced by the
296 /// following type parameters:
297 ///
298 /// * `GS`: The generator's "resume type", which is the type of the
299 ///   argument passed to `resume`, and the type of `yield` expressions
300 ///   inside the generator.
301 /// * `GY`: The "yield type", which is the type of values passed to
302 ///   `yield` inside the generator.
303 /// * `GR`: The "return type", which is the type of value returned upon
304 ///   completion of the generator.
305 /// * `GW`: The "generator witness".
306 #[derive(Copy, Clone, Debug, TypeFoldable)]
307 pub struct ClosureSubsts<'tcx> {
308     /// Lifetime and type parameters from the enclosing function,
309     /// concatenated with a tuple containing the types of the upvars.
310     ///
311     /// These are separated out because codegen wants to pass them around
312     /// when monomorphizing.
313     pub substs: SubstsRef<'tcx>,
314 }
315
316 /// Struct returned by `split()`. Note that these are subslices of the
317 /// parent slice and not canonical substs themselves.
318 struct SplitClosureSubsts<'tcx> {
319     closure_kind_ty: GenericArg<'tcx>,
320     closure_sig_as_fn_ptr_ty: GenericArg<'tcx>,
321     tupled_upvars_ty: GenericArg<'tcx>,
322 }
323
324 impl<'tcx> ClosureSubsts<'tcx> {
325     /// Divides the closure substs into their respective
326     /// components. Single source of truth with respect to the
327     /// ordering.
328     fn split(self) -> SplitClosureSubsts<'tcx> {
329         match self.substs[..] {
330             [.., closure_kind_ty, closure_sig_as_fn_ptr_ty, tupled_upvars_ty] => {
331                 SplitClosureSubsts { closure_kind_ty, closure_sig_as_fn_ptr_ty, tupled_upvars_ty }
332             }
333             _ => bug!("closure substs missing synthetics"),
334         }
335     }
336
337     /// Returns `true` only if enough of the synthetic types are known to
338     /// allow using all of the methods on `ClosureSubsts` without panicking.
339     ///
340     /// Used primarily by `ty::print::pretty` to be able to handle closure
341     /// types that haven't had their synthetic types substituted in.
342     pub fn is_valid(self) -> bool {
343         self.substs.len() >= 3 && matches!(self.split().tupled_upvars_ty.expect_ty().kind, Tuple(_))
344     }
345
346     #[inline]
347     pub fn upvar_tys(self) -> impl Iterator<Item = Ty<'tcx>> + 'tcx {
348         self.split().tupled_upvars_ty.expect_ty().tuple_fields()
349     }
350
351     /// Returns the closure kind for this closure; may return a type
352     /// variable during inference. To get the closure kind during
353     /// inference, use `infcx.closure_kind(substs)`.
354     pub fn kind_ty(self) -> Ty<'tcx> {
355         self.split().closure_kind_ty.expect_ty()
356     }
357
358     /// Returns the `fn` pointer type representing the closure signature for this
359     /// closure.
360     // FIXME(eddyb) this should be unnecessary, as the shallowly resolved
361     // type is known at the time of the creation of `ClosureSubsts`,
362     // see `rustc_typeck::check::closure`.
363     pub fn sig_as_fn_ptr_ty(self) -> Ty<'tcx> {
364         self.split().closure_sig_as_fn_ptr_ty.expect_ty()
365     }
366
367     /// Returns the closure kind for this closure; only usable outside
368     /// of an inference context, because in that context we know that
369     /// there are no type variables.
370     ///
371     /// If you have an inference context, use `infcx.closure_kind()`.
372     pub fn kind(self) -> ty::ClosureKind {
373         self.kind_ty().to_opt_closure_kind().unwrap()
374     }
375
376     /// Extracts the signature from the closure.
377     pub fn sig(self) -> ty::PolyFnSig<'tcx> {
378         let ty = self.sig_as_fn_ptr_ty();
379         match ty.kind {
380             ty::FnPtr(sig) => sig,
381             _ => bug!("closure_sig_as_fn_ptr_ty is not a fn-ptr: {:?}", ty.kind),
382         }
383     }
384 }
385
386 /// Similar to `ClosureSubsts`; see the above documentation for more.
387 #[derive(Copy, Clone, Debug, TypeFoldable)]
388 pub struct GeneratorSubsts<'tcx> {
389     pub substs: SubstsRef<'tcx>,
390 }
391
392 struct SplitGeneratorSubsts<'tcx> {
393     resume_ty: GenericArg<'tcx>,
394     yield_ty: GenericArg<'tcx>,
395     return_ty: GenericArg<'tcx>,
396     witness: GenericArg<'tcx>,
397     tupled_upvars_ty: GenericArg<'tcx>,
398 }
399
400 impl<'tcx> GeneratorSubsts<'tcx> {
401     fn split(self) -> SplitGeneratorSubsts<'tcx> {
402         match self.substs[..] {
403             [.., resume_ty, yield_ty, return_ty, witness, tupled_upvars_ty] => {
404                 SplitGeneratorSubsts { resume_ty, yield_ty, return_ty, witness, tupled_upvars_ty }
405             }
406             _ => bug!("generator substs missing synthetics"),
407         }
408     }
409
410     /// Returns `true` only if enough of the synthetic types are known to
411     /// allow using all of the methods on `GeneratorSubsts` without panicking.
412     ///
413     /// Used primarily by `ty::print::pretty` to be able to handle generator
414     /// types that haven't had their synthetic types substituted in.
415     pub fn is_valid(self) -> bool {
416         self.substs.len() >= 5 && matches!(self.split().tupled_upvars_ty.expect_ty().kind, Tuple(_))
417     }
418
419     /// This describes the types that can be contained in a generator.
420     /// It will be a type variable initially and unified in the last stages of typeck of a body.
421     /// It contains a tuple of all the types that could end up on a generator frame.
422     /// The state transformation MIR pass may only produce layouts which mention types
423     /// in this tuple. Upvars are not counted here.
424     pub fn witness(self) -> Ty<'tcx> {
425         self.split().witness.expect_ty()
426     }
427
428     #[inline]
429     pub fn upvar_tys(self) -> impl Iterator<Item = Ty<'tcx>> + 'tcx {
430         self.split().tupled_upvars_ty.expect_ty().tuple_fields()
431     }
432
433     /// Returns the type representing the resume type of the generator.
434     pub fn resume_ty(self) -> Ty<'tcx> {
435         self.split().resume_ty.expect_ty()
436     }
437
438     /// Returns the type representing the yield type of the generator.
439     pub fn yield_ty(self) -> Ty<'tcx> {
440         self.split().yield_ty.expect_ty()
441     }
442
443     /// Returns the type representing the return type of the generator.
444     pub fn return_ty(self) -> Ty<'tcx> {
445         self.split().return_ty.expect_ty()
446     }
447
448     /// Returns the "generator signature", which consists of its yield
449     /// and return types.
450     ///
451     /// N.B., some bits of the code prefers to see this wrapped in a
452     /// binder, but it never contains bound regions. Probably this
453     /// function should be removed.
454     pub fn poly_sig(self) -> PolyGenSig<'tcx> {
455         ty::Binder::dummy(self.sig())
456     }
457
458     /// Returns the "generator signature", which consists of its resume, yield
459     /// and return types.
460     pub fn sig(self) -> GenSig<'tcx> {
461         ty::GenSig {
462             resume_ty: self.resume_ty(),
463             yield_ty: self.yield_ty(),
464             return_ty: self.return_ty(),
465         }
466     }
467 }
468
469 impl<'tcx> GeneratorSubsts<'tcx> {
470     /// Generator has not been resumed yet.
471     pub const UNRESUMED: usize = 0;
472     /// Generator has returned or is completed.
473     pub const RETURNED: usize = 1;
474     /// Generator has been poisoned.
475     pub const POISONED: usize = 2;
476
477     const UNRESUMED_NAME: &'static str = "Unresumed";
478     const RETURNED_NAME: &'static str = "Returned";
479     const POISONED_NAME: &'static str = "Panicked";
480
481     /// The valid variant indices of this generator.
482     #[inline]
483     pub fn variant_range(&self, def_id: DefId, tcx: TyCtxt<'tcx>) -> Range<VariantIdx> {
484         // FIXME requires optimized MIR
485         let num_variants = tcx.generator_layout(def_id).variant_fields.len();
486         VariantIdx::new(0)..VariantIdx::new(num_variants)
487     }
488
489     /// The discriminant for the given variant. Panics if the `variant_index` is
490     /// out of range.
491     #[inline]
492     pub fn discriminant_for_variant(
493         &self,
494         def_id: DefId,
495         tcx: TyCtxt<'tcx>,
496         variant_index: VariantIdx,
497     ) -> Discr<'tcx> {
498         // Generators don't support explicit discriminant values, so they are
499         // the same as the variant index.
500         assert!(self.variant_range(def_id, tcx).contains(&variant_index));
501         Discr { val: variant_index.as_usize() as u128, ty: self.discr_ty(tcx) }
502     }
503
504     /// The set of all discriminants for the generator, enumerated with their
505     /// variant indices.
506     #[inline]
507     pub fn discriminants(
508         self,
509         def_id: DefId,
510         tcx: TyCtxt<'tcx>,
511     ) -> impl Iterator<Item = (VariantIdx, Discr<'tcx>)> + Captures<'tcx> {
512         self.variant_range(def_id, tcx).map(move |index| {
513             (index, Discr { val: index.as_usize() as u128, ty: self.discr_ty(tcx) })
514         })
515     }
516
517     /// Calls `f` with a reference to the name of the enumerator for the given
518     /// variant `v`.
519     #[inline]
520     pub fn variant_name(self, v: VariantIdx) -> Cow<'static, str> {
521         match v.as_usize() {
522             Self::UNRESUMED => Cow::from(Self::UNRESUMED_NAME),
523             Self::RETURNED => Cow::from(Self::RETURNED_NAME),
524             Self::POISONED => Cow::from(Self::POISONED_NAME),
525             _ => Cow::from(format!("Suspend{}", v.as_usize() - 3)),
526         }
527     }
528
529     /// The type of the state discriminant used in the generator type.
530     #[inline]
531     pub fn discr_ty(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
532         tcx.types.u32
533     }
534
535     /// This returns the types of the MIR locals which had to be stored across suspension points.
536     /// It is calculated in rustc_mir::transform::generator::StateTransform.
537     /// All the types here must be in the tuple in GeneratorInterior.
538     ///
539     /// The locals are grouped by their variant number. Note that some locals may
540     /// be repeated in multiple variants.
541     #[inline]
542     pub fn state_tys(
543         self,
544         def_id: DefId,
545         tcx: TyCtxt<'tcx>,
546     ) -> impl Iterator<Item = impl Iterator<Item = Ty<'tcx>> + Captures<'tcx>> {
547         let layout = tcx.generator_layout(def_id);
548         layout.variant_fields.iter().map(move |variant| {
549             variant.iter().map(move |field| layout.field_tys[*field].subst(tcx, self.substs))
550         })
551     }
552
553     /// This is the types of the fields of a generator which are not stored in a
554     /// variant.
555     #[inline]
556     pub fn prefix_tys(self) -> impl Iterator<Item = Ty<'tcx>> {
557         self.upvar_tys()
558     }
559 }
560
561 #[derive(Debug, Copy, Clone)]
562 pub enum UpvarSubsts<'tcx> {
563     Closure(SubstsRef<'tcx>),
564     Generator(SubstsRef<'tcx>),
565 }
566
567 impl<'tcx> UpvarSubsts<'tcx> {
568     #[inline]
569     pub fn upvar_tys(self) -> impl Iterator<Item = Ty<'tcx>> + 'tcx {
570         let tupled_upvars_ty = match self {
571             UpvarSubsts::Closure(substs) => substs.as_closure().split().tupled_upvars_ty,
572             UpvarSubsts::Generator(substs) => substs.as_generator().split().tupled_upvars_ty,
573         };
574         tupled_upvars_ty.expect_ty().tuple_fields()
575     }
576 }
577
578 #[derive(Debug, Copy, Clone, PartialEq, PartialOrd, Ord, Eq, Hash, RustcEncodable, RustcDecodable)]
579 #[derive(HashStable, TypeFoldable)]
580 pub enum ExistentialPredicate<'tcx> {
581     /// E.g., `Iterator`.
582     Trait(ExistentialTraitRef<'tcx>),
583     /// E.g., `Iterator::Item = T`.
584     Projection(ExistentialProjection<'tcx>),
585     /// E.g., `Send`.
586     AutoTrait(DefId),
587 }
588
589 impl<'tcx> ExistentialPredicate<'tcx> {
590     /// Compares via an ordering that will not change if modules are reordered or other changes are
591     /// made to the tree. In particular, this ordering is preserved across incremental compilations.
592     pub fn stable_cmp(&self, tcx: TyCtxt<'tcx>, other: &Self) -> Ordering {
593         use self::ExistentialPredicate::*;
594         match (*self, *other) {
595             (Trait(_), Trait(_)) => Ordering::Equal,
596             (Projection(ref a), Projection(ref b)) => {
597                 tcx.def_path_hash(a.item_def_id).cmp(&tcx.def_path_hash(b.item_def_id))
598             }
599             (AutoTrait(ref a), AutoTrait(ref b)) => {
600                 tcx.trait_def(*a).def_path_hash.cmp(&tcx.trait_def(*b).def_path_hash)
601             }
602             (Trait(_), _) => Ordering::Less,
603             (Projection(_), Trait(_)) => Ordering::Greater,
604             (Projection(_), _) => Ordering::Less,
605             (AutoTrait(_), _) => Ordering::Greater,
606         }
607     }
608 }
609
610 impl<'tcx> Binder<ExistentialPredicate<'tcx>> {
611     pub fn with_self_ty(&self, tcx: TyCtxt<'tcx>, self_ty: Ty<'tcx>) -> ty::Predicate<'tcx> {
612         use crate::ty::ToPredicate;
613         match *self.skip_binder() {
614             ExistentialPredicate::Trait(tr) => {
615                 Binder(tr).with_self_ty(tcx, self_ty).without_const().to_predicate(tcx)
616             }
617             ExistentialPredicate::Projection(p) => {
618                 ty::PredicateKind::Projection(Binder(p.with_self_ty(tcx, self_ty)))
619                     .to_predicate(tcx)
620             }
621             ExistentialPredicate::AutoTrait(did) => {
622                 let trait_ref =
623                     Binder(ty::TraitRef { def_id: did, substs: tcx.mk_substs_trait(self_ty, &[]) });
624                 trait_ref.without_const().to_predicate(tcx)
625             }
626         }
627     }
628 }
629
630 impl<'tcx> rustc_serialize::UseSpecializedDecodable for &'tcx List<ExistentialPredicate<'tcx>> {}
631
632 impl<'tcx> List<ExistentialPredicate<'tcx>> {
633     /// Returns the "principal `DefId`" of this set of existential predicates.
634     ///
635     /// A Rust trait object type consists (in addition to a lifetime bound)
636     /// of a set of trait bounds, which are separated into any number
637     /// of auto-trait bounds, and at most one non-auto-trait bound. The
638     /// non-auto-trait bound is called the "principal" of the trait
639     /// object.
640     ///
641     /// Only the principal can have methods or type parameters (because
642     /// auto traits can have neither of them). This is important, because
643     /// it means the auto traits can be treated as an unordered set (methods
644     /// would force an order for the vtable, while relating traits with
645     /// type parameters without knowing the order to relate them in is
646     /// a rather non-trivial task).
647     ///
648     /// For example, in the trait object `dyn fmt::Debug + Sync`, the
649     /// principal bound is `Some(fmt::Debug)`, while the auto-trait bounds
650     /// are the set `{Sync}`.
651     ///
652     /// It is also possible to have a "trivial" trait object that
653     /// consists only of auto traits, with no principal - for example,
654     /// `dyn Send + Sync`. In that case, the set of auto-trait bounds
655     /// is `{Send, Sync}`, while there is no principal. These trait objects
656     /// have a "trivial" vtable consisting of just the size, alignment,
657     /// and destructor.
658     pub fn principal(&self) -> Option<ExistentialTraitRef<'tcx>> {
659         match self[0] {
660             ExistentialPredicate::Trait(tr) => Some(tr),
661             _ => None,
662         }
663     }
664
665     pub fn principal_def_id(&self) -> Option<DefId> {
666         self.principal().map(|trait_ref| trait_ref.def_id)
667     }
668
669     #[inline]
670     pub fn projection_bounds<'a>(
671         &'a self,
672     ) -> impl Iterator<Item = ExistentialProjection<'tcx>> + 'a {
673         self.iter().filter_map(|predicate| match predicate {
674             ExistentialPredicate::Projection(projection) => Some(projection),
675             _ => None,
676         })
677     }
678
679     #[inline]
680     pub fn auto_traits<'a>(&'a self) -> impl Iterator<Item = DefId> + 'a {
681         self.iter().filter_map(|predicate| match predicate {
682             ExistentialPredicate::AutoTrait(did) => Some(did),
683             _ => None,
684         })
685     }
686 }
687
688 impl<'tcx> Binder<&'tcx List<ExistentialPredicate<'tcx>>> {
689     pub fn principal(&self) -> Option<ty::Binder<ExistentialTraitRef<'tcx>>> {
690         self.skip_binder().principal().map(Binder::bind)
691     }
692
693     pub fn principal_def_id(&self) -> Option<DefId> {
694         self.skip_binder().principal_def_id()
695     }
696
697     #[inline]
698     pub fn projection_bounds<'a>(
699         &'a self,
700     ) -> impl Iterator<Item = PolyExistentialProjection<'tcx>> + 'a {
701         self.skip_binder().projection_bounds().map(Binder::bind)
702     }
703
704     #[inline]
705     pub fn auto_traits<'a>(&'a self) -> impl Iterator<Item = DefId> + 'a {
706         self.skip_binder().auto_traits()
707     }
708
709     pub fn iter<'a>(
710         &'a self,
711     ) -> impl DoubleEndedIterator<Item = Binder<ExistentialPredicate<'tcx>>> + 'tcx {
712         self.skip_binder().iter().map(Binder::bind)
713     }
714 }
715
716 /// A complete reference to a trait. These take numerous guises in syntax,
717 /// but perhaps the most recognizable form is in a where-clause:
718 ///
719 ///     T: Foo<U>
720 ///
721 /// This would be represented by a trait-reference where the `DefId` is the
722 /// `DefId` for the trait `Foo` and the substs define `T` as parameter 0,
723 /// and `U` as parameter 1.
724 ///
725 /// Trait references also appear in object types like `Foo<U>`, but in
726 /// that case the `Self` parameter is absent from the substitutions.
727 ///
728 /// Note that a `TraitRef` introduces a level of region binding, to
729 /// account for higher-ranked trait bounds like `T: for<'a> Foo<&'a U>`
730 /// or higher-ranked object types.
731 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
732 #[derive(HashStable, TypeFoldable)]
733 pub struct TraitRef<'tcx> {
734     pub def_id: DefId,
735     pub substs: SubstsRef<'tcx>,
736 }
737
738 impl<'tcx> TraitRef<'tcx> {
739     pub fn new(def_id: DefId, substs: SubstsRef<'tcx>) -> TraitRef<'tcx> {
740         TraitRef { def_id, substs }
741     }
742
743     /// Returns a `TraitRef` of the form `P0: Foo<P1..Pn>` where `Pi`
744     /// are the parameters defined on trait.
745     pub fn identity(tcx: TyCtxt<'tcx>, def_id: DefId) -> TraitRef<'tcx> {
746         TraitRef { def_id, substs: InternalSubsts::identity_for_item(tcx, def_id) }
747     }
748
749     #[inline]
750     pub fn self_ty(&self) -> Ty<'tcx> {
751         self.substs.type_at(0)
752     }
753
754     pub fn from_method(
755         tcx: TyCtxt<'tcx>,
756         trait_id: DefId,
757         substs: SubstsRef<'tcx>,
758     ) -> ty::TraitRef<'tcx> {
759         let defs = tcx.generics_of(trait_id);
760
761         ty::TraitRef { def_id: trait_id, substs: tcx.intern_substs(&substs[..defs.params.len()]) }
762     }
763 }
764
765 pub type PolyTraitRef<'tcx> = Binder<TraitRef<'tcx>>;
766
767 impl<'tcx> PolyTraitRef<'tcx> {
768     pub fn self_ty(&self) -> Ty<'tcx> {
769         self.skip_binder().self_ty()
770     }
771
772     pub fn def_id(&self) -> DefId {
773         self.skip_binder().def_id
774     }
775
776     pub fn to_poly_trait_predicate(&self) -> ty::PolyTraitPredicate<'tcx> {
777         // Note that we preserve binding levels
778         Binder(ty::TraitPredicate { trait_ref: *self.skip_binder() })
779     }
780 }
781
782 /// An existential reference to a trait, where `Self` is erased.
783 /// For example, the trait object `Trait<'a, 'b, X, Y>` is:
784 ///
785 ///     exists T. T: Trait<'a, 'b, X, Y>
786 ///
787 /// The substitutions don't include the erased `Self`, only trait
788 /// type and lifetime parameters (`[X, Y]` and `['a, 'b]` above).
789 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
790 #[derive(HashStable, TypeFoldable)]
791 pub struct ExistentialTraitRef<'tcx> {
792     pub def_id: DefId,
793     pub substs: SubstsRef<'tcx>,
794 }
795
796 impl<'tcx> ExistentialTraitRef<'tcx> {
797     pub fn erase_self_ty(
798         tcx: TyCtxt<'tcx>,
799         trait_ref: ty::TraitRef<'tcx>,
800     ) -> ty::ExistentialTraitRef<'tcx> {
801         // Assert there is a Self.
802         trait_ref.substs.type_at(0);
803
804         ty::ExistentialTraitRef {
805             def_id: trait_ref.def_id,
806             substs: tcx.intern_substs(&trait_ref.substs[1..]),
807         }
808     }
809
810     /// Object types don't have a self type specified. Therefore, when
811     /// we convert the principal trait-ref into a normal trait-ref,
812     /// you must give *some* self type. A common choice is `mk_err()`
813     /// or some placeholder type.
814     pub fn with_self_ty(&self, tcx: TyCtxt<'tcx>, self_ty: Ty<'tcx>) -> ty::TraitRef<'tcx> {
815         // otherwise the escaping vars would be captured by the binder
816         // debug_assert!(!self_ty.has_escaping_bound_vars());
817
818         ty::TraitRef { def_id: self.def_id, substs: tcx.mk_substs_trait(self_ty, self.substs) }
819     }
820 }
821
822 pub type PolyExistentialTraitRef<'tcx> = Binder<ExistentialTraitRef<'tcx>>;
823
824 impl<'tcx> PolyExistentialTraitRef<'tcx> {
825     pub fn def_id(&self) -> DefId {
826         self.skip_binder().def_id
827     }
828
829     /// Object types don't have a self type specified. Therefore, when
830     /// we convert the principal trait-ref into a normal trait-ref,
831     /// you must give *some* self type. A common choice is `mk_err()`
832     /// or some placeholder type.
833     pub fn with_self_ty(&self, tcx: TyCtxt<'tcx>, self_ty: Ty<'tcx>) -> ty::PolyTraitRef<'tcx> {
834         self.map_bound(|trait_ref| trait_ref.with_self_ty(tcx, self_ty))
835     }
836 }
837
838 /// Binder is a binder for higher-ranked lifetimes or types. It is part of the
839 /// compiler's representation for things like `for<'a> Fn(&'a isize)`
840 /// (which would be represented by the type `PolyTraitRef ==
841 /// Binder<TraitRef>`). Note that when we instantiate,
842 /// erase, or otherwise "discharge" these bound vars, we change the
843 /// type from `Binder<T>` to just `T` (see
844 /// e.g., `liberate_late_bound_regions`).
845 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
846 pub struct Binder<T>(T);
847
848 impl<T> Binder<T> {
849     /// Wraps `value` in a binder, asserting that `value` does not
850     /// contain any bound vars that would be bound by the
851     /// binder. This is commonly used to 'inject' a value T into a
852     /// different binding level.
853     pub fn dummy<'tcx>(value: T) -> Binder<T>
854     where
855         T: TypeFoldable<'tcx>,
856     {
857         debug_assert!(!value.has_escaping_bound_vars());
858         Binder(value)
859     }
860
861     /// Wraps `value` in a binder, binding higher-ranked vars (if any).
862     pub fn bind(value: T) -> Binder<T> {
863         Binder(value)
864     }
865
866     /// Skips the binder and returns the "bound" value. This is a
867     /// risky thing to do because it's easy to get confused about
868     /// De Bruijn indices and the like. It is usually better to
869     /// discharge the binder using `no_bound_vars` or
870     /// `replace_late_bound_regions` or something like
871     /// that. `skip_binder` is only valid when you are either
872     /// extracting data that has nothing to do with bound vars, you
873     /// are doing some sort of test that does not involve bound
874     /// regions, or you are being very careful about your depth
875     /// accounting.
876     ///
877     /// Some examples where `skip_binder` is reasonable:
878     ///
879     /// - extracting the `DefId` from a PolyTraitRef;
880     /// - comparing the self type of a PolyTraitRef to see if it is equal to
881     ///   a type parameter `X`, since the type `X` does not reference any regions
882     pub fn skip_binder(&self) -> &T {
883         &self.0
884     }
885
886     pub fn as_ref(&self) -> Binder<&T> {
887         Binder(&self.0)
888     }
889
890     pub fn map_bound_ref<F, U>(&self, f: F) -> Binder<U>
891     where
892         F: FnOnce(&T) -> U,
893     {
894         self.as_ref().map_bound(f)
895     }
896
897     pub fn map_bound<F, U>(self, f: F) -> Binder<U>
898     where
899         F: FnOnce(T) -> U,
900     {
901         Binder(f(self.0))
902     }
903
904     /// Unwraps and returns the value within, but only if it contains
905     /// no bound vars at all. (In other words, if this binder --
906     /// and indeed any enclosing binder -- doesn't bind anything at
907     /// all.) Otherwise, returns `None`.
908     ///
909     /// (One could imagine having a method that just unwraps a single
910     /// binder, but permits late-bound vars bound by enclosing
911     /// binders, but that would require adjusting the debruijn
912     /// indices, and given the shallow binding structure we often use,
913     /// would not be that useful.)
914     pub fn no_bound_vars<'tcx>(self) -> Option<T>
915     where
916         T: TypeFoldable<'tcx>,
917     {
918         if self.skip_binder().has_escaping_bound_vars() {
919             None
920         } else {
921             Some(self.skip_binder().clone())
922         }
923     }
924
925     /// Given two things that have the same binder level,
926     /// and an operation that wraps on their contents, executes the operation
927     /// and then wraps its result.
928     ///
929     /// `f` should consider bound regions at depth 1 to be free, and
930     /// anything it produces with bound regions at depth 1 will be
931     /// bound in the resulting return value.
932     pub fn fuse<U, F, R>(self, u: Binder<U>, f: F) -> Binder<R>
933     where
934         F: FnOnce(T, U) -> R,
935     {
936         Binder(f(self.0, u.0))
937     }
938
939     /// Splits the contents into two things that share the same binder
940     /// level as the original, returning two distinct binders.
941     ///
942     /// `f` should consider bound regions at depth 1 to be free, and
943     /// anything it produces with bound regions at depth 1 will be
944     /// bound in the resulting return values.
945     pub fn split<U, V, F>(self, f: F) -> (Binder<U>, Binder<V>)
946     where
947         F: FnOnce(T) -> (U, V),
948     {
949         let (u, v) = f(self.0);
950         (Binder(u), Binder(v))
951     }
952 }
953
954 /// Represents the projection of an associated type. In explicit UFCS
955 /// form this would be written `<T as Trait<..>>::N`.
956 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
957 #[derive(HashStable, TypeFoldable)]
958 pub struct ProjectionTy<'tcx> {
959     /// The parameters of the associated item.
960     pub substs: SubstsRef<'tcx>,
961
962     /// The `DefId` of the `TraitItem` for the associated type `N`.
963     ///
964     /// Note that this is not the `DefId` of the `TraitRef` containing this
965     /// associated type, which is in `tcx.associated_item(item_def_id).container`.
966     pub item_def_id: DefId,
967 }
968
969 impl<'tcx> ProjectionTy<'tcx> {
970     /// Construct a `ProjectionTy` by searching the trait from `trait_ref` for the
971     /// associated item named `item_name`.
972     pub fn from_ref_and_name(
973         tcx: TyCtxt<'_>,
974         trait_ref: ty::TraitRef<'tcx>,
975         item_name: Ident,
976     ) -> ProjectionTy<'tcx> {
977         let item_def_id = tcx
978             .associated_items(trait_ref.def_id)
979             .find_by_name_and_kind(tcx, item_name, ty::AssocKind::Type, trait_ref.def_id)
980             .unwrap()
981             .def_id;
982
983         ProjectionTy { substs: trait_ref.substs, item_def_id }
984     }
985
986     /// Extracts the underlying trait reference from this projection.
987     /// For example, if this is a projection of `<T as Iterator>::Item`,
988     /// then this function would return a `T: Iterator` trait reference.
989     pub fn trait_ref(&self, tcx: TyCtxt<'tcx>) -> ty::TraitRef<'tcx> {
990         let def_id = tcx.associated_item(self.item_def_id).container.id();
991         ty::TraitRef { def_id, substs: self.substs.truncate_to(tcx, tcx.generics_of(def_id)) }
992     }
993
994     pub fn self_ty(&self) -> Ty<'tcx> {
995         self.substs.type_at(0)
996     }
997 }
998
999 #[derive(Clone, Debug, TypeFoldable)]
1000 pub struct GenSig<'tcx> {
1001     pub resume_ty: Ty<'tcx>,
1002     pub yield_ty: Ty<'tcx>,
1003     pub return_ty: Ty<'tcx>,
1004 }
1005
1006 pub type PolyGenSig<'tcx> = Binder<GenSig<'tcx>>;
1007
1008 impl<'tcx> PolyGenSig<'tcx> {
1009     pub fn resume_ty(&self) -> ty::Binder<Ty<'tcx>> {
1010         self.map_bound_ref(|sig| sig.resume_ty)
1011     }
1012     pub fn yield_ty(&self) -> ty::Binder<Ty<'tcx>> {
1013         self.map_bound_ref(|sig| sig.yield_ty)
1014     }
1015     pub fn return_ty(&self) -> ty::Binder<Ty<'tcx>> {
1016         self.map_bound_ref(|sig| sig.return_ty)
1017     }
1018 }
1019
1020 /// Signature of a function type, which we have arbitrarily
1021 /// decided to use to refer to the input/output types.
1022 ///
1023 /// - `inputs`: is the list of arguments and their modes.
1024 /// - `output`: is the return type.
1025 /// - `c_variadic`: indicates whether this is a C-variadic function.
1026 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1027 #[derive(HashStable, TypeFoldable)]
1028 pub struct FnSig<'tcx> {
1029     pub inputs_and_output: &'tcx List<Ty<'tcx>>,
1030     pub c_variadic: bool,
1031     pub unsafety: hir::Unsafety,
1032     pub abi: abi::Abi,
1033 }
1034
1035 impl<'tcx> FnSig<'tcx> {
1036     pub fn inputs(&self) -> &'tcx [Ty<'tcx>] {
1037         &self.inputs_and_output[..self.inputs_and_output.len() - 1]
1038     }
1039
1040     pub fn output(&self) -> Ty<'tcx> {
1041         self.inputs_and_output[self.inputs_and_output.len() - 1]
1042     }
1043
1044     // Creates a minimal `FnSig` to be used when encountering a `TyKind::Error` in a fallible
1045     // method.
1046     fn fake() -> FnSig<'tcx> {
1047         FnSig {
1048             inputs_and_output: List::empty(),
1049             c_variadic: false,
1050             unsafety: hir::Unsafety::Normal,
1051             abi: abi::Abi::Rust,
1052         }
1053     }
1054 }
1055
1056 pub type PolyFnSig<'tcx> = Binder<FnSig<'tcx>>;
1057
1058 impl<'tcx> PolyFnSig<'tcx> {
1059     #[inline]
1060     pub fn inputs(&self) -> Binder<&'tcx [Ty<'tcx>]> {
1061         self.map_bound_ref(|fn_sig| fn_sig.inputs())
1062     }
1063     #[inline]
1064     pub fn input(&self, index: usize) -> ty::Binder<Ty<'tcx>> {
1065         self.map_bound_ref(|fn_sig| fn_sig.inputs()[index])
1066     }
1067     pub fn inputs_and_output(&self) -> ty::Binder<&'tcx List<Ty<'tcx>>> {
1068         self.map_bound_ref(|fn_sig| fn_sig.inputs_and_output)
1069     }
1070     #[inline]
1071     pub fn output(&self) -> ty::Binder<Ty<'tcx>> {
1072         self.map_bound_ref(|fn_sig| fn_sig.output())
1073     }
1074     pub fn c_variadic(&self) -> bool {
1075         self.skip_binder().c_variadic
1076     }
1077     pub fn unsafety(&self) -> hir::Unsafety {
1078         self.skip_binder().unsafety
1079     }
1080     pub fn abi(&self) -> abi::Abi {
1081         self.skip_binder().abi
1082     }
1083 }
1084
1085 pub type CanonicalPolyFnSig<'tcx> = Canonical<'tcx, Binder<FnSig<'tcx>>>;
1086
1087 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1088 #[derive(HashStable)]
1089 pub struct ParamTy {
1090     pub index: u32,
1091     pub name: Symbol,
1092 }
1093
1094 impl<'tcx> ParamTy {
1095     pub fn new(index: u32, name: Symbol) -> ParamTy {
1096         ParamTy { index, name }
1097     }
1098
1099     pub fn for_self() -> ParamTy {
1100         ParamTy::new(0, kw::SelfUpper)
1101     }
1102
1103     pub fn for_def(def: &ty::GenericParamDef) -> ParamTy {
1104         ParamTy::new(def.index, def.name)
1105     }
1106
1107     pub fn to_ty(self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
1108         tcx.mk_ty_param(self.index, self.name)
1109     }
1110 }
1111
1112 #[derive(Copy, Clone, Hash, RustcEncodable, RustcDecodable, Eq, PartialEq, Ord, PartialOrd)]
1113 #[derive(HashStable)]
1114 pub struct ParamConst {
1115     pub index: u32,
1116     pub name: Symbol,
1117 }
1118
1119 impl<'tcx> ParamConst {
1120     pub fn new(index: u32, name: Symbol) -> ParamConst {
1121         ParamConst { index, name }
1122     }
1123
1124     pub fn for_def(def: &ty::GenericParamDef) -> ParamConst {
1125         ParamConst::new(def.index, def.name)
1126     }
1127
1128     pub fn to_const(self, tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> &'tcx Const<'tcx> {
1129         tcx.mk_const_param(self.index, self.name, ty)
1130     }
1131 }
1132
1133 rustc_index::newtype_index! {
1134     /// A [De Bruijn index][dbi] is a standard means of representing
1135     /// regions (and perhaps later types) in a higher-ranked setting. In
1136     /// particular, imagine a type like this:
1137     ///
1138     ///     for<'a> fn(for<'b> fn(&'b isize, &'a isize), &'a char)
1139     ///     ^          ^            |        |         |
1140     ///     |          |            |        |         |
1141     ///     |          +------------+ 0      |         |
1142     ///     |                                |         |
1143     ///     +--------------------------------+ 1       |
1144     ///     |                                          |
1145     ///     +------------------------------------------+ 0
1146     ///
1147     /// In this type, there are two binders (the outer fn and the inner
1148     /// fn). We need to be able to determine, for any given region, which
1149     /// fn type it is bound by, the inner or the outer one. There are
1150     /// various ways you can do this, but a De Bruijn index is one of the
1151     /// more convenient and has some nice properties. The basic idea is to
1152     /// count the number of binders, inside out. Some examples should help
1153     /// clarify what I mean.
1154     ///
1155     /// Let's start with the reference type `&'b isize` that is the first
1156     /// argument to the inner function. This region `'b` is assigned a De
1157     /// Bruijn index of 0, meaning "the innermost binder" (in this case, a
1158     /// fn). The region `'a` that appears in the second argument type (`&'a
1159     /// isize`) would then be assigned a De Bruijn index of 1, meaning "the
1160     /// second-innermost binder". (These indices are written on the arrays
1161     /// in the diagram).
1162     ///
1163     /// What is interesting is that De Bruijn index attached to a particular
1164     /// variable will vary depending on where it appears. For example,
1165     /// the final type `&'a char` also refers to the region `'a` declared on
1166     /// the outermost fn. But this time, this reference is not nested within
1167     /// any other binders (i.e., it is not an argument to the inner fn, but
1168     /// rather the outer one). Therefore, in this case, it is assigned a
1169     /// De Bruijn index of 0, because the innermost binder in that location
1170     /// is the outer fn.
1171     ///
1172     /// [dbi]: http://en.wikipedia.org/wiki/De_Bruijn_index
1173     #[derive(HashStable)]
1174     pub struct DebruijnIndex {
1175         DEBUG_FORMAT = "DebruijnIndex({})",
1176         const INNERMOST = 0,
1177     }
1178 }
1179
1180 pub type Region<'tcx> = &'tcx RegionKind;
1181
1182 /// Representation of regions. Note that the NLL checker uses a distinct
1183 /// representation of regions. For this reason, it internally replaces all the
1184 /// regions with inference variables -- the index of the variable is then used
1185 /// to index into internal NLL data structures. See `rustc_mir::borrow_check`
1186 /// module for more information.
1187 ///
1188 /// ## The Region lattice within a given function
1189 ///
1190 /// In general, the region lattice looks like
1191 ///
1192 /// ```
1193 /// static ----------+-----...------+       (greatest)
1194 /// |                |              |
1195 /// early-bound and  |              |
1196 /// free regions     |              |
1197 /// |                |              |
1198 /// |                |              |
1199 /// empty(root)   placeholder(U1)   |
1200 /// |            /                  |
1201 /// |           /         placeholder(Un)
1202 /// empty(U1) --         /
1203 /// |                   /
1204 /// ...                /
1205 /// |                 /
1206 /// empty(Un) --------                      (smallest)
1207 /// ```
1208 ///
1209 /// Early-bound/free regions are the named lifetimes in scope from the
1210 /// function declaration. They have relationships to one another
1211 /// determined based on the declared relationships from the
1212 /// function.
1213 ///
1214 /// Note that inference variables and bound regions are not included
1215 /// in this diagram. In the case of inference variables, they should
1216 /// be inferred to some other region from the diagram.  In the case of
1217 /// bound regions, they are excluded because they don't make sense to
1218 /// include -- the diagram indicates the relationship between free
1219 /// regions.
1220 ///
1221 /// ## Inference variables
1222 ///
1223 /// During region inference, we sometimes create inference variables,
1224 /// represented as `ReVar`. These will be inferred by the code in
1225 /// `infer::lexical_region_resolve` to some free region from the
1226 /// lattice above (the minimal region that meets the
1227 /// constraints).
1228 ///
1229 /// During NLL checking, where regions are defined differently, we
1230 /// also use `ReVar` -- in that case, the index is used to index into
1231 /// the NLL region checker's data structures. The variable may in fact
1232 /// represent either a free region or an inference variable, in that
1233 /// case.
1234 ///
1235 /// ## Bound Regions
1236 ///
1237 /// These are regions that are stored behind a binder and must be substituted
1238 /// with some concrete region before being used. There are two kind of
1239 /// bound regions: early-bound, which are bound in an item's `Generics`,
1240 /// and are substituted by a `InternalSubsts`, and late-bound, which are part of
1241 /// higher-ranked types (e.g., `for<'a> fn(&'a ())`), and are substituted by
1242 /// the likes of `liberate_late_bound_regions`. The distinction exists
1243 /// because higher-ranked lifetimes aren't supported in all places. See [1][2].
1244 ///
1245 /// Unlike `Param`s, bound regions are not supposed to exist "in the wild"
1246 /// outside their binder, e.g., in types passed to type inference, and
1247 /// should first be substituted (by placeholder regions, free regions,
1248 /// or region variables).
1249 ///
1250 /// ## Placeholder and Free Regions
1251 ///
1252 /// One often wants to work with bound regions without knowing their precise
1253 /// identity. For example, when checking a function, the lifetime of a borrow
1254 /// can end up being assigned to some region parameter. In these cases,
1255 /// it must be ensured that bounds on the region can't be accidentally
1256 /// assumed without being checked.
1257 ///
1258 /// To do this, we replace the bound regions with placeholder markers,
1259 /// which don't satisfy any relation not explicitly provided.
1260 ///
1261 /// There are two kinds of placeholder regions in rustc: `ReFree` and
1262 /// `RePlaceholder`. When checking an item's body, `ReFree` is supposed
1263 /// to be used. These also support explicit bounds: both the internally-stored
1264 /// *scope*, which the region is assumed to outlive, as well as other
1265 /// relations stored in the `FreeRegionMap`. Note that these relations
1266 /// aren't checked when you `make_subregion` (or `eq_types`), only by
1267 /// `resolve_regions_and_report_errors`.
1268 ///
1269 /// When working with higher-ranked types, some region relations aren't
1270 /// yet known, so you can't just call `resolve_regions_and_report_errors`.
1271 /// `RePlaceholder` is designed for this purpose. In these contexts,
1272 /// there's also the risk that some inference variable laying around will
1273 /// get unified with your placeholder region: if you want to check whether
1274 /// `for<'a> Foo<'_>: 'a`, and you substitute your bound region `'a`
1275 /// with a placeholder region `'%a`, the variable `'_` would just be
1276 /// instantiated to the placeholder region `'%a`, which is wrong because
1277 /// the inference variable is supposed to satisfy the relation
1278 /// *for every value of the placeholder region*. To ensure that doesn't
1279 /// happen, you can use `leak_check`. This is more clearly explained
1280 /// by the [rustc dev guide].
1281 ///
1282 /// [1]: http://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/
1283 /// [2]: http://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/
1284 /// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/hrtb.html
1285 #[derive(Clone, PartialEq, Eq, Hash, Copy, RustcEncodable, RustcDecodable, PartialOrd, Ord)]
1286 pub enum RegionKind {
1287     /// Region bound in a type or fn declaration which will be
1288     /// substituted 'early' -- that is, at the same time when type
1289     /// parameters are substituted.
1290     ReEarlyBound(EarlyBoundRegion),
1291
1292     /// Region bound in a function scope, which will be substituted when the
1293     /// function is called.
1294     ReLateBound(DebruijnIndex, BoundRegion),
1295
1296     /// When checking a function body, the types of all arguments and so forth
1297     /// that refer to bound region parameters are modified to refer to free
1298     /// region parameters.
1299     ReFree(FreeRegion),
1300
1301     /// Static data that has an "infinite" lifetime. Top in the region lattice.
1302     ReStatic,
1303
1304     /// A region variable. Should not exist after typeck.
1305     ReVar(RegionVid),
1306
1307     /// A placeholder region -- basically, the higher-ranked version of `ReFree`.
1308     /// Should not exist after typeck.
1309     RePlaceholder(ty::PlaceholderRegion),
1310
1311     /// Empty lifetime is for data that is never accessed.  We tag the
1312     /// empty lifetime with a universe -- the idea is that we don't
1313     /// want `exists<'a> { forall<'b> { 'b: 'a } }` to be satisfiable.
1314     /// Therefore, the `'empty` in a universe `U` is less than all
1315     /// regions visible from `U`, but not less than regions not visible
1316     /// from `U`.
1317     ReEmpty(ty::UniverseIndex),
1318
1319     /// Erased region, used by trait selection, in MIR and during codegen.
1320     ReErased,
1321 }
1322
1323 impl<'tcx> rustc_serialize::UseSpecializedDecodable for Region<'tcx> {}
1324
1325 #[derive(Copy, Clone, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable, Debug, PartialOrd, Ord)]
1326 pub struct EarlyBoundRegion {
1327     pub def_id: DefId,
1328     pub index: u32,
1329     pub name: Symbol,
1330 }
1331
1332 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1333 pub struct TyVid {
1334     pub index: u32,
1335 }
1336
1337 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1338 pub struct ConstVid<'tcx> {
1339     pub index: u32,
1340     pub phantom: PhantomData<&'tcx ()>,
1341 }
1342
1343 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1344 pub struct IntVid {
1345     pub index: u32,
1346 }
1347
1348 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1349 pub struct FloatVid {
1350     pub index: u32,
1351 }
1352
1353 rustc_index::newtype_index! {
1354     pub struct RegionVid {
1355         DEBUG_FORMAT = custom,
1356     }
1357 }
1358
1359 impl Atom for RegionVid {
1360     fn index(self) -> usize {
1361         Idx::index(self)
1362     }
1363 }
1364
1365 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1366 #[derive(HashStable)]
1367 pub enum InferTy {
1368     TyVar(TyVid),
1369     IntVar(IntVid),
1370     FloatVar(FloatVid),
1371
1372     /// A `FreshTy` is one that is generated as a replacement for an
1373     /// unbound type variable. This is convenient for caching etc. See
1374     /// `infer::freshen` for more details.
1375     FreshTy(u32),
1376     FreshIntTy(u32),
1377     FreshFloatTy(u32),
1378 }
1379
1380 rustc_index::newtype_index! {
1381     pub struct BoundVar { .. }
1382 }
1383
1384 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
1385 #[derive(HashStable)]
1386 pub struct BoundTy {
1387     pub var: BoundVar,
1388     pub kind: BoundTyKind,
1389 }
1390
1391 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
1392 #[derive(HashStable)]
1393 pub enum BoundTyKind {
1394     Anon,
1395     Param(Symbol),
1396 }
1397
1398 impl From<BoundVar> for BoundTy {
1399     fn from(var: BoundVar) -> Self {
1400         BoundTy { var, kind: BoundTyKind::Anon }
1401     }
1402 }
1403
1404 /// A `ProjectionPredicate` for an `ExistentialTraitRef`.
1405 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, RustcEncodable, RustcDecodable)]
1406 #[derive(HashStable, TypeFoldable)]
1407 pub struct ExistentialProjection<'tcx> {
1408     pub item_def_id: DefId,
1409     pub substs: SubstsRef<'tcx>,
1410     pub ty: Ty<'tcx>,
1411 }
1412
1413 pub type PolyExistentialProjection<'tcx> = Binder<ExistentialProjection<'tcx>>;
1414
1415 impl<'tcx> ExistentialProjection<'tcx> {
1416     /// Extracts the underlying existential trait reference from this projection.
1417     /// For example, if this is a projection of `exists T. <T as Iterator>::Item == X`,
1418     /// then this function would return a `exists T. T: Iterator` existential trait
1419     /// reference.
1420     pub fn trait_ref(&self, tcx: TyCtxt<'_>) -> ty::ExistentialTraitRef<'tcx> {
1421         let def_id = tcx.associated_item(self.item_def_id).container.id();
1422         ty::ExistentialTraitRef { def_id, substs: self.substs }
1423     }
1424
1425     pub fn with_self_ty(
1426         &self,
1427         tcx: TyCtxt<'tcx>,
1428         self_ty: Ty<'tcx>,
1429     ) -> ty::ProjectionPredicate<'tcx> {
1430         // otherwise the escaping regions would be captured by the binders
1431         debug_assert!(!self_ty.has_escaping_bound_vars());
1432
1433         ty::ProjectionPredicate {
1434             projection_ty: ty::ProjectionTy {
1435                 item_def_id: self.item_def_id,
1436                 substs: tcx.mk_substs_trait(self_ty, self.substs),
1437             },
1438             ty: self.ty,
1439         }
1440     }
1441 }
1442
1443 impl<'tcx> PolyExistentialProjection<'tcx> {
1444     pub fn with_self_ty(
1445         &self,
1446         tcx: TyCtxt<'tcx>,
1447         self_ty: Ty<'tcx>,
1448     ) -> ty::PolyProjectionPredicate<'tcx> {
1449         self.map_bound(|p| p.with_self_ty(tcx, self_ty))
1450     }
1451
1452     pub fn item_def_id(&self) -> DefId {
1453         self.skip_binder().item_def_id
1454     }
1455 }
1456
1457 impl DebruijnIndex {
1458     /// Returns the resulting index when this value is moved into
1459     /// `amount` number of new binders. So, e.g., if you had
1460     ///
1461     ///    for<'a> fn(&'a x)
1462     ///
1463     /// and you wanted to change it to
1464     ///
1465     ///    for<'a> fn(for<'b> fn(&'a x))
1466     ///
1467     /// you would need to shift the index for `'a` into a new binder.
1468     #[must_use]
1469     pub fn shifted_in(self, amount: u32) -> DebruijnIndex {
1470         DebruijnIndex::from_u32(self.as_u32() + amount)
1471     }
1472
1473     /// Update this index in place by shifting it "in" through
1474     /// `amount` number of binders.
1475     pub fn shift_in(&mut self, amount: u32) {
1476         *self = self.shifted_in(amount);
1477     }
1478
1479     /// Returns the resulting index when this value is moved out from
1480     /// `amount` number of new binders.
1481     #[must_use]
1482     pub fn shifted_out(self, amount: u32) -> DebruijnIndex {
1483         DebruijnIndex::from_u32(self.as_u32() - amount)
1484     }
1485
1486     /// Update in place by shifting out from `amount` binders.
1487     pub fn shift_out(&mut self, amount: u32) {
1488         *self = self.shifted_out(amount);
1489     }
1490
1491     /// Adjusts any De Bruijn indices so as to make `to_binder` the
1492     /// innermost binder. That is, if we have something bound at `to_binder`,
1493     /// it will now be bound at INNERMOST. This is an appropriate thing to do
1494     /// when moving a region out from inside binders:
1495     ///
1496     /// ```
1497     ///             for<'a>   fn(for<'b>   for<'c>   fn(&'a u32), _)
1498     /// // Binder:  D3           D2        D1            ^^
1499     /// ```
1500     ///
1501     /// Here, the region `'a` would have the De Bruijn index D3,
1502     /// because it is the bound 3 binders out. However, if we wanted
1503     /// to refer to that region `'a` in the second argument (the `_`),
1504     /// those two binders would not be in scope. In that case, we
1505     /// might invoke `shift_out_to_binder(D3)`. This would adjust the
1506     /// De Bruijn index of `'a` to D1 (the innermost binder).
1507     ///
1508     /// If we invoke `shift_out_to_binder` and the region is in fact
1509     /// bound by one of the binders we are shifting out of, that is an
1510     /// error (and should fail an assertion failure).
1511     pub fn shifted_out_to_binder(self, to_binder: DebruijnIndex) -> Self {
1512         self.shifted_out(to_binder.as_u32() - INNERMOST.as_u32())
1513     }
1514 }
1515
1516 /// Region utilities
1517 impl RegionKind {
1518     /// Is this region named by the user?
1519     pub fn has_name(&self) -> bool {
1520         match *self {
1521             RegionKind::ReEarlyBound(ebr) => ebr.has_name(),
1522             RegionKind::ReLateBound(_, br) => br.is_named(),
1523             RegionKind::ReFree(fr) => fr.bound_region.is_named(),
1524             RegionKind::ReStatic => true,
1525             RegionKind::ReVar(..) => false,
1526             RegionKind::RePlaceholder(placeholder) => placeholder.name.is_named(),
1527             RegionKind::ReEmpty(_) => false,
1528             RegionKind::ReErased => false,
1529         }
1530     }
1531
1532     pub fn is_late_bound(&self) -> bool {
1533         match *self {
1534             ty::ReLateBound(..) => true,
1535             _ => false,
1536         }
1537     }
1538
1539     pub fn is_placeholder(&self) -> bool {
1540         match *self {
1541             ty::RePlaceholder(..) => true,
1542             _ => false,
1543         }
1544     }
1545
1546     pub fn bound_at_or_above_binder(&self, index: DebruijnIndex) -> bool {
1547         match *self {
1548             ty::ReLateBound(debruijn, _) => debruijn >= index,
1549             _ => false,
1550         }
1551     }
1552
1553     /// Adjusts any De Bruijn indices so as to make `to_binder` the
1554     /// innermost binder. That is, if we have something bound at `to_binder`,
1555     /// it will now be bound at INNERMOST. This is an appropriate thing to do
1556     /// when moving a region out from inside binders:
1557     ///
1558     /// ```
1559     ///             for<'a>   fn(for<'b>   for<'c>   fn(&'a u32), _)
1560     /// // Binder:  D3           D2        D1            ^^
1561     /// ```
1562     ///
1563     /// Here, the region `'a` would have the De Bruijn index D3,
1564     /// because it is the bound 3 binders out. However, if we wanted
1565     /// to refer to that region `'a` in the second argument (the `_`),
1566     /// those two binders would not be in scope. In that case, we
1567     /// might invoke `shift_out_to_binder(D3)`. This would adjust the
1568     /// De Bruijn index of `'a` to D1 (the innermost binder).
1569     ///
1570     /// If we invoke `shift_out_to_binder` and the region is in fact
1571     /// bound by one of the binders we are shifting out of, that is an
1572     /// error (and should fail an assertion failure).
1573     pub fn shifted_out_to_binder(&self, to_binder: ty::DebruijnIndex) -> RegionKind {
1574         match *self {
1575             ty::ReLateBound(debruijn, r) => {
1576                 ty::ReLateBound(debruijn.shifted_out_to_binder(to_binder), r)
1577             }
1578             r => r,
1579         }
1580     }
1581
1582     pub fn type_flags(&self) -> TypeFlags {
1583         let mut flags = TypeFlags::empty();
1584
1585         match *self {
1586             ty::ReVar(..) => {
1587                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1588                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1589                 flags = flags | TypeFlags::HAS_RE_INFER;
1590                 flags = flags | TypeFlags::STILL_FURTHER_SPECIALIZABLE;
1591             }
1592             ty::RePlaceholder(..) => {
1593                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1594                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1595                 flags = flags | TypeFlags::HAS_RE_PLACEHOLDER;
1596                 flags = flags | TypeFlags::STILL_FURTHER_SPECIALIZABLE;
1597             }
1598             ty::ReEarlyBound(..) => {
1599                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1600                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1601                 flags = flags | TypeFlags::HAS_RE_PARAM;
1602                 flags = flags | TypeFlags::STILL_FURTHER_SPECIALIZABLE;
1603             }
1604             ty::ReFree { .. } => {
1605                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1606                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1607             }
1608             ty::ReEmpty(_) | ty::ReStatic => {
1609                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1610             }
1611             ty::ReLateBound(..) => {
1612                 flags = flags | TypeFlags::HAS_RE_LATE_BOUND;
1613             }
1614             ty::ReErased => {
1615                 flags = flags | TypeFlags::HAS_RE_ERASED;
1616             }
1617         }
1618
1619         debug!("type_flags({:?}) = {:?}", self, flags);
1620
1621         flags
1622     }
1623
1624     /// Given an early-bound or free region, returns the `DefId` where it was bound.
1625     /// For example, consider the regions in this snippet of code:
1626     ///
1627     /// ```
1628     /// impl<'a> Foo {
1629     ///      ^^ -- early bound, declared on an impl
1630     ///
1631     ///     fn bar<'b, 'c>(x: &self, y: &'b u32, z: &'c u64) where 'static: 'c
1632     ///            ^^  ^^     ^ anonymous, late-bound
1633     ///            |   early-bound, appears in where-clauses
1634     ///            late-bound, appears only in fn args
1635     ///     {..}
1636     /// }
1637     /// ```
1638     ///
1639     /// Here, `free_region_binding_scope('a)` would return the `DefId`
1640     /// of the impl, and for all the other highlighted regions, it
1641     /// would return the `DefId` of the function. In other cases (not shown), this
1642     /// function might return the `DefId` of a closure.
1643     pub fn free_region_binding_scope(&self, tcx: TyCtxt<'_>) -> DefId {
1644         match self {
1645             ty::ReEarlyBound(br) => tcx.parent(br.def_id).unwrap(),
1646             ty::ReFree(fr) => fr.scope,
1647             _ => bug!("free_region_binding_scope invoked on inappropriate region: {:?}", self),
1648         }
1649     }
1650 }
1651
1652 /// Type utilities
1653 impl<'tcx> TyS<'tcx> {
1654     #[inline]
1655     pub fn is_unit(&self) -> bool {
1656         match self.kind {
1657             Tuple(ref tys) => tys.is_empty(),
1658             _ => false,
1659         }
1660     }
1661
1662     #[inline]
1663     pub fn is_never(&self) -> bool {
1664         match self.kind {
1665             Never => true,
1666             _ => false,
1667         }
1668     }
1669
1670     /// Checks whether a type is definitely uninhabited. This is
1671     /// conservative: for some types that are uninhabited we return `false`,
1672     /// but we only return `true` for types that are definitely uninhabited.
1673     /// `ty.conservative_is_privately_uninhabited` implies that any value of type `ty`
1674     /// will be `Abi::Uninhabited`. (Note that uninhabited types may have nonzero
1675     /// size, to account for partial initialisation. See #49298 for details.)
1676     pub fn conservative_is_privately_uninhabited(&self, tcx: TyCtxt<'tcx>) -> bool {
1677         // FIXME(varkor): we can make this less conversative by substituting concrete
1678         // type arguments.
1679         match self.kind {
1680             ty::Never => true,
1681             ty::Adt(def, _) if def.is_union() => {
1682                 // For now, `union`s are never considered uninhabited.
1683                 false
1684             }
1685             ty::Adt(def, _) => {
1686                 // Any ADT is uninhabited if either:
1687                 // (a) It has no variants (i.e. an empty `enum`);
1688                 // (b) Each of its variants (a single one in the case of a `struct`) has at least
1689                 //     one uninhabited field.
1690                 def.variants.iter().all(|var| {
1691                     var.fields.iter().any(|field| {
1692                         tcx.type_of(field.did).conservative_is_privately_uninhabited(tcx)
1693                     })
1694                 })
1695             }
1696             ty::Tuple(..) => {
1697                 self.tuple_fields().any(|ty| ty.conservative_is_privately_uninhabited(tcx))
1698             }
1699             ty::Array(ty, len) => {
1700                 match len.try_eval_usize(tcx, ParamEnv::empty()) {
1701                     // If the array is definitely non-empty, it's uninhabited if
1702                     // the type of its elements is uninhabited.
1703                     Some(n) if n != 0 => ty.conservative_is_privately_uninhabited(tcx),
1704                     _ => false,
1705                 }
1706             }
1707             ty::Ref(..) => {
1708                 // References to uninitialised memory is valid for any type, including
1709                 // uninhabited types, in unsafe code, so we treat all references as
1710                 // inhabited.
1711                 false
1712             }
1713             _ => false,
1714         }
1715     }
1716
1717     #[inline]
1718     pub fn is_primitive(&self) -> bool {
1719         match self.kind {
1720             Bool | Char | Int(_) | Uint(_) | Float(_) => true,
1721             _ => false,
1722         }
1723     }
1724
1725     #[inline]
1726     pub fn is_ty_var(&self) -> bool {
1727         match self.kind {
1728             Infer(TyVar(_)) => true,
1729             _ => false,
1730         }
1731     }
1732
1733     #[inline]
1734     pub fn is_ty_infer(&self) -> bool {
1735         match self.kind {
1736             Infer(_) => true,
1737             _ => false,
1738         }
1739     }
1740
1741     #[inline]
1742     pub fn is_phantom_data(&self) -> bool {
1743         if let Adt(def, _) = self.kind { def.is_phantom_data() } else { false }
1744     }
1745
1746     #[inline]
1747     pub fn is_bool(&self) -> bool {
1748         self.kind == Bool
1749     }
1750
1751     /// Returns `true` if this type is a `str`.
1752     #[inline]
1753     pub fn is_str(&self) -> bool {
1754         self.kind == Str
1755     }
1756
1757     #[inline]
1758     pub fn is_param(&self, index: u32) -> bool {
1759         match self.kind {
1760             ty::Param(ref data) => data.index == index,
1761             _ => false,
1762         }
1763     }
1764
1765     #[inline]
1766     pub fn is_slice(&self) -> bool {
1767         match self.kind {
1768             RawPtr(TypeAndMut { ty, .. }) | Ref(_, ty, _) => match ty.kind {
1769                 Slice(_) | Str => true,
1770                 _ => false,
1771             },
1772             _ => false,
1773         }
1774     }
1775
1776     #[inline]
1777     pub fn is_simd(&self) -> bool {
1778         match self.kind {
1779             Adt(def, _) => def.repr.simd(),
1780             _ => false,
1781         }
1782     }
1783
1784     pub fn sequence_element_type(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
1785         match self.kind {
1786             Array(ty, _) | Slice(ty) => ty,
1787             Str => tcx.mk_mach_uint(ast::UintTy::U8),
1788             _ => bug!("`sequence_element_type` called on non-sequence value: {}", self),
1789         }
1790     }
1791
1792     pub fn simd_type(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
1793         match self.kind {
1794             Adt(def, substs) => def.non_enum_variant().fields[0].ty(tcx, substs),
1795             _ => bug!("`simd_type` called on invalid type"),
1796         }
1797     }
1798
1799     pub fn simd_size(&self, _tcx: TyCtxt<'tcx>) -> u64 {
1800         // Parameter currently unused, but probably needed in the future to
1801         // allow `#[repr(simd)] struct Simd<T, const N: usize>([T; N]);`.
1802         match self.kind {
1803             Adt(def, _) => def.non_enum_variant().fields.len() as u64,
1804             _ => bug!("`simd_size` called on invalid type"),
1805         }
1806     }
1807
1808     pub fn simd_size_and_type(&self, tcx: TyCtxt<'tcx>) -> (u64, Ty<'tcx>) {
1809         match self.kind {
1810             Adt(def, substs) => {
1811                 let variant = def.non_enum_variant();
1812                 (variant.fields.len() as u64, variant.fields[0].ty(tcx, substs))
1813             }
1814             _ => bug!("`simd_size_and_type` called on invalid type"),
1815         }
1816     }
1817
1818     #[inline]
1819     pub fn is_region_ptr(&self) -> bool {
1820         match self.kind {
1821             Ref(..) => true,
1822             _ => false,
1823         }
1824     }
1825
1826     #[inline]
1827     pub fn is_mutable_ptr(&self) -> bool {
1828         match self.kind {
1829             RawPtr(TypeAndMut { mutbl: hir::Mutability::Mut, .. })
1830             | Ref(_, _, hir::Mutability::Mut) => true,
1831             _ => false,
1832         }
1833     }
1834
1835     #[inline]
1836     pub fn is_unsafe_ptr(&self) -> bool {
1837         match self.kind {
1838             RawPtr(_) => true,
1839             _ => false,
1840         }
1841     }
1842
1843     /// Tests if this is any kind of primitive pointer type (reference, raw pointer, fn pointer).
1844     #[inline]
1845     pub fn is_any_ptr(&self) -> bool {
1846         self.is_region_ptr() || self.is_unsafe_ptr() || self.is_fn_ptr()
1847     }
1848
1849     #[inline]
1850     pub fn is_box(&self) -> bool {
1851         match self.kind {
1852             Adt(def, _) => def.is_box(),
1853             _ => false,
1854         }
1855     }
1856
1857     /// Panics if called on any type other than `Box<T>`.
1858     pub fn boxed_ty(&self) -> Ty<'tcx> {
1859         match self.kind {
1860             Adt(def, substs) if def.is_box() => substs.type_at(0),
1861             _ => bug!("`boxed_ty` is called on non-box type {:?}", self),
1862         }
1863     }
1864
1865     /// A scalar type is one that denotes an atomic datum, with no sub-components.
1866     /// (A RawPtr is scalar because it represents a non-managed pointer, so its
1867     /// contents are abstract to rustc.)
1868     #[inline]
1869     pub fn is_scalar(&self) -> bool {
1870         match self.kind {
1871             Bool
1872             | Char
1873             | Int(_)
1874             | Float(_)
1875             | Uint(_)
1876             | Infer(IntVar(_) | FloatVar(_))
1877             | FnDef(..)
1878             | FnPtr(_)
1879             | RawPtr(_) => true,
1880             _ => false,
1881         }
1882     }
1883
1884     /// Returns `true` if this type is a floating point type.
1885     #[inline]
1886     pub fn is_floating_point(&self) -> bool {
1887         match self.kind {
1888             Float(_) | Infer(FloatVar(_)) => true,
1889             _ => false,
1890         }
1891     }
1892
1893     #[inline]
1894     pub fn is_trait(&self) -> bool {
1895         match self.kind {
1896             Dynamic(..) => true,
1897             _ => false,
1898         }
1899     }
1900
1901     #[inline]
1902     pub fn is_enum(&self) -> bool {
1903         match self.kind {
1904             Adt(adt_def, _) => adt_def.is_enum(),
1905             _ => false,
1906         }
1907     }
1908
1909     #[inline]
1910     pub fn is_closure(&self) -> bool {
1911         match self.kind {
1912             Closure(..) => true,
1913             _ => false,
1914         }
1915     }
1916
1917     #[inline]
1918     pub fn is_generator(&self) -> bool {
1919         match self.kind {
1920             Generator(..) => true,
1921             _ => false,
1922         }
1923     }
1924
1925     #[inline]
1926     pub fn is_integral(&self) -> bool {
1927         match self.kind {
1928             Infer(IntVar(_)) | Int(_) | Uint(_) => true,
1929             _ => false,
1930         }
1931     }
1932
1933     #[inline]
1934     pub fn is_fresh_ty(&self) -> bool {
1935         match self.kind {
1936             Infer(FreshTy(_)) => true,
1937             _ => false,
1938         }
1939     }
1940
1941     #[inline]
1942     pub fn is_fresh(&self) -> bool {
1943         match self.kind {
1944             Infer(FreshTy(_)) => true,
1945             Infer(FreshIntTy(_)) => true,
1946             Infer(FreshFloatTy(_)) => true,
1947             _ => false,
1948         }
1949     }
1950
1951     #[inline]
1952     pub fn is_char(&self) -> bool {
1953         match self.kind {
1954             Char => true,
1955             _ => false,
1956         }
1957     }
1958
1959     #[inline]
1960     pub fn is_numeric(&self) -> bool {
1961         self.is_integral() || self.is_floating_point()
1962     }
1963
1964     #[inline]
1965     pub fn is_signed(&self) -> bool {
1966         match self.kind {
1967             Int(_) => true,
1968             _ => false,
1969         }
1970     }
1971
1972     #[inline]
1973     pub fn is_ptr_sized_integral(&self) -> bool {
1974         match self.kind {
1975             Int(ast::IntTy::Isize) | Uint(ast::UintTy::Usize) => true,
1976             _ => false,
1977         }
1978     }
1979
1980     #[inline]
1981     pub fn is_machine(&self) -> bool {
1982         match self.kind {
1983             Int(..) | Uint(..) | Float(..) => true,
1984             _ => false,
1985         }
1986     }
1987
1988     #[inline]
1989     pub fn has_concrete_skeleton(&self) -> bool {
1990         match self.kind {
1991             Param(_) | Infer(_) | Error => false,
1992             _ => true,
1993         }
1994     }
1995
1996     /// Returns the type and mutability of `*ty`.
1997     ///
1998     /// The parameter `explicit` indicates if this is an *explicit* dereference.
1999     /// Some types -- notably unsafe ptrs -- can only be dereferenced explicitly.
2000     pub fn builtin_deref(&self, explicit: bool) -> Option<TypeAndMut<'tcx>> {
2001         match self.kind {
2002             Adt(def, _) if def.is_box() => {
2003                 Some(TypeAndMut { ty: self.boxed_ty(), mutbl: hir::Mutability::Not })
2004             }
2005             Ref(_, ty, mutbl) => Some(TypeAndMut { ty, mutbl }),
2006             RawPtr(mt) if explicit => Some(mt),
2007             _ => None,
2008         }
2009     }
2010
2011     /// Returns the type of `ty[i]`.
2012     pub fn builtin_index(&self) -> Option<Ty<'tcx>> {
2013         match self.kind {
2014             Array(ty, _) | Slice(ty) => Some(ty),
2015             _ => None,
2016         }
2017     }
2018
2019     pub fn fn_sig(&self, tcx: TyCtxt<'tcx>) -> PolyFnSig<'tcx> {
2020         match self.kind {
2021             FnDef(def_id, substs) => tcx.fn_sig(def_id).subst(tcx, substs),
2022             FnPtr(f) => f,
2023             Error => {
2024                 // ignore errors (#54954)
2025                 ty::Binder::dummy(FnSig::fake())
2026             }
2027             Closure(..) => bug!(
2028                 "to get the signature of a closure, use `substs.as_closure().sig()` not `fn_sig()`",
2029             ),
2030             _ => bug!("Ty::fn_sig() called on non-fn type: {:?}", self),
2031         }
2032     }
2033
2034     #[inline]
2035     pub fn is_fn(&self) -> bool {
2036         match self.kind {
2037             FnDef(..) | FnPtr(_) => true,
2038             _ => false,
2039         }
2040     }
2041
2042     #[inline]
2043     pub fn is_fn_ptr(&self) -> bool {
2044         match self.kind {
2045             FnPtr(_) => true,
2046             _ => false,
2047         }
2048     }
2049
2050     #[inline]
2051     pub fn is_impl_trait(&self) -> bool {
2052         match self.kind {
2053             Opaque(..) => true,
2054             _ => false,
2055         }
2056     }
2057
2058     #[inline]
2059     pub fn ty_adt_def(&self) -> Option<&'tcx AdtDef> {
2060         match self.kind {
2061             Adt(adt, _) => Some(adt),
2062             _ => None,
2063         }
2064     }
2065
2066     /// Iterates over tuple fields.
2067     /// Panics when called on anything but a tuple.
2068     pub fn tuple_fields(&self) -> impl DoubleEndedIterator<Item = Ty<'tcx>> {
2069         match self.kind {
2070             Tuple(substs) => substs.iter().map(|field| field.expect_ty()),
2071             _ => bug!("tuple_fields called on non-tuple"),
2072         }
2073     }
2074
2075     /// If the type contains variants, returns the valid range of variant indices.
2076     //
2077     // FIXME: This requires the optimized MIR in the case of generators.
2078     #[inline]
2079     pub fn variant_range(&self, tcx: TyCtxt<'tcx>) -> Option<Range<VariantIdx>> {
2080         match self.kind {
2081             TyKind::Adt(adt, _) => Some(adt.variant_range()),
2082             TyKind::Generator(def_id, substs, _) => {
2083                 Some(substs.as_generator().variant_range(def_id, tcx))
2084             }
2085             _ => None,
2086         }
2087     }
2088
2089     /// If the type contains variants, returns the variant for `variant_index`.
2090     /// Panics if `variant_index` is out of range.
2091     //
2092     // FIXME: This requires the optimized MIR in the case of generators.
2093     #[inline]
2094     pub fn discriminant_for_variant(
2095         &self,
2096         tcx: TyCtxt<'tcx>,
2097         variant_index: VariantIdx,
2098     ) -> Option<Discr<'tcx>> {
2099         match self.kind {
2100             TyKind::Adt(adt, _) if adt.is_enum() => {
2101                 Some(adt.discriminant_for_variant(tcx, variant_index))
2102             }
2103             TyKind::Generator(def_id, substs, _) => {
2104                 Some(substs.as_generator().discriminant_for_variant(def_id, tcx, variant_index))
2105             }
2106             _ => None,
2107         }
2108     }
2109
2110     /// Returns the type of the discriminant of this type.
2111     pub fn discriminant_ty(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
2112         match self.kind {
2113             ty::Adt(adt, _) if adt.is_enum() => adt.repr.discr_type().to_ty(tcx),
2114             ty::Generator(_, substs, _) => substs.as_generator().discr_ty(tcx),
2115             _ => {
2116                 // This can only be `0`, for now, so `u8` will suffice.
2117                 tcx.types.u8
2118             }
2119         }
2120     }
2121
2122     /// When we create a closure, we record its kind (i.e., what trait
2123     /// it implements) into its `ClosureSubsts` using a type
2124     /// parameter. This is kind of a phantom type, except that the
2125     /// most convenient thing for us to are the integral types. This
2126     /// function converts such a special type into the closure
2127     /// kind. To go the other way, use
2128     /// `tcx.closure_kind_ty(closure_kind)`.
2129     ///
2130     /// Note that during type checking, we use an inference variable
2131     /// to represent the closure kind, because it has not yet been
2132     /// inferred. Once upvar inference (in `src/librustc_typeck/check/upvar.rs`)
2133     /// is complete, that type variable will be unified.
2134     pub fn to_opt_closure_kind(&self) -> Option<ty::ClosureKind> {
2135         match self.kind {
2136             Int(int_ty) => match int_ty {
2137                 ast::IntTy::I8 => Some(ty::ClosureKind::Fn),
2138                 ast::IntTy::I16 => Some(ty::ClosureKind::FnMut),
2139                 ast::IntTy::I32 => Some(ty::ClosureKind::FnOnce),
2140                 _ => bug!("cannot convert type `{:?}` to a closure kind", self),
2141             },
2142
2143             // "Bound" types appear in canonical queries when the
2144             // closure type is not yet known
2145             Bound(..) | Infer(_) => None,
2146
2147             Error => Some(ty::ClosureKind::Fn),
2148
2149             _ => bug!("cannot convert type `{:?}` to a closure kind", self),
2150         }
2151     }
2152
2153     /// Fast path helper for testing if a type is `Sized`.
2154     ///
2155     /// Returning true means the type is known to be sized. Returning
2156     /// `false` means nothing -- could be sized, might not be.
2157     pub fn is_trivially_sized(&self, tcx: TyCtxt<'tcx>) -> bool {
2158         match self.kind {
2159             ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2160             | ty::Uint(_)
2161             | ty::Int(_)
2162             | ty::Bool
2163             | ty::Float(_)
2164             | ty::FnDef(..)
2165             | ty::FnPtr(_)
2166             | ty::RawPtr(..)
2167             | ty::Char
2168             | ty::Ref(..)
2169             | ty::Generator(..)
2170             | ty::GeneratorWitness(..)
2171             | ty::Array(..)
2172             | ty::Closure(..)
2173             | ty::Never
2174             | ty::Error => true,
2175
2176             ty::Str | ty::Slice(_) | ty::Dynamic(..) | ty::Foreign(..) => false,
2177
2178             ty::Tuple(tys) => tys.iter().all(|ty| ty.expect_ty().is_trivially_sized(tcx)),
2179
2180             ty::Adt(def, _substs) => def.sized_constraint(tcx).is_empty(),
2181
2182             ty::Projection(_) | ty::Param(_) | ty::Opaque(..) => false,
2183
2184             ty::Infer(ty::TyVar(_)) => false,
2185
2186             ty::Bound(..)
2187             | ty::Placeholder(..)
2188             | ty::Infer(ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2189                 bug!("`is_trivially_sized` applied to unexpected type: {:?}", self)
2190             }
2191         }
2192     }
2193 }
2194
2195 /// Typed constant value.
2196 #[derive(Copy, Clone, Debug, Hash, RustcEncodable, RustcDecodable, Eq, PartialEq, Ord, PartialOrd)]
2197 #[derive(HashStable)]
2198 pub struct Const<'tcx> {
2199     pub ty: Ty<'tcx>,
2200
2201     pub val: ConstKind<'tcx>,
2202 }
2203
2204 #[cfg(target_arch = "x86_64")]
2205 static_assert_size!(Const<'_>, 48);
2206
2207 impl<'tcx> Const<'tcx> {
2208     /// Literals and const generic parameters are eagerly converted to a constant, everything else
2209     /// becomes `Unevaluated`.
2210     pub fn from_anon_const(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> &'tcx Self {
2211         debug!("Const::from_anon_const(id={:?})", def_id);
2212
2213         let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
2214
2215         let body_id = match tcx.hir().get(hir_id) {
2216             hir::Node::AnonConst(ac) => ac.body,
2217             _ => span_bug!(
2218                 tcx.def_span(def_id.to_def_id()),
2219                 "from_anon_const can only process anonymous constants"
2220             ),
2221         };
2222
2223         let expr = &tcx.hir().body(body_id).value;
2224
2225         let ty = tcx.type_of(def_id.to_def_id());
2226
2227         let lit_input = match expr.kind {
2228             hir::ExprKind::Lit(ref lit) => Some(LitToConstInput { lit: &lit.node, ty, neg: false }),
2229             hir::ExprKind::Unary(hir::UnOp::UnNeg, ref expr) => match expr.kind {
2230                 hir::ExprKind::Lit(ref lit) => {
2231                     Some(LitToConstInput { lit: &lit.node, ty, neg: true })
2232                 }
2233                 _ => None,
2234             },
2235             _ => None,
2236         };
2237
2238         if let Some(lit_input) = lit_input {
2239             // If an error occurred, ignore that it's a literal and leave reporting the error up to
2240             // mir.
2241             if let Ok(c) = tcx.at(expr.span).lit_to_const(lit_input) {
2242                 return c;
2243             } else {
2244                 tcx.sess.delay_span_bug(expr.span, "Const::from_anon_const: couldn't lit_to_const");
2245             }
2246         }
2247
2248         // Unwrap a block, so that e.g. `{ P }` is recognised as a parameter. Const arguments
2249         // currently have to be wrapped in curly brackets, so it's necessary to special-case.
2250         let expr = match &expr.kind {
2251             hir::ExprKind::Block(block, _) if block.stmts.is_empty() && block.expr.is_some() => {
2252                 block.expr.as_ref().unwrap()
2253             }
2254             _ => expr,
2255         };
2256
2257         use hir::{def::DefKind::ConstParam, def::Res, ExprKind, Path, QPath};
2258         let val = match expr.kind {
2259             ExprKind::Path(QPath::Resolved(_, &Path { res: Res::Def(ConstParam, def_id), .. })) => {
2260                 // Find the name and index of the const parameter by indexing the generics of
2261                 // the parent item and construct a `ParamConst`.
2262                 let hir_id = tcx.hir().as_local_hir_id(def_id.expect_local());
2263                 let item_id = tcx.hir().get_parent_node(hir_id);
2264                 let item_def_id = tcx.hir().local_def_id(item_id);
2265                 let generics = tcx.generics_of(item_def_id.to_def_id());
2266                 let index =
2267                     generics.param_def_id_to_index[&tcx.hir().local_def_id(hir_id).to_def_id()];
2268                 let name = tcx.hir().name(hir_id);
2269                 ty::ConstKind::Param(ty::ParamConst::new(index, name))
2270             }
2271             _ => ty::ConstKind::Unevaluated(
2272                 def_id.to_def_id(),
2273                 InternalSubsts::identity_for_item(tcx, def_id.to_def_id()),
2274                 None,
2275             ),
2276         };
2277
2278         tcx.mk_const(ty::Const { val, ty })
2279     }
2280
2281     #[inline]
2282     /// Interns the given value as a constant.
2283     pub fn from_value(tcx: TyCtxt<'tcx>, val: ConstValue<'tcx>, ty: Ty<'tcx>) -> &'tcx Self {
2284         tcx.mk_const(Self { val: ConstKind::Value(val), ty })
2285     }
2286
2287     #[inline]
2288     /// Interns the given scalar as a constant.
2289     pub fn from_scalar(tcx: TyCtxt<'tcx>, val: Scalar, ty: Ty<'tcx>) -> &'tcx Self {
2290         Self::from_value(tcx, ConstValue::Scalar(val), ty)
2291     }
2292
2293     #[inline]
2294     /// Creates a constant with the given integer value and interns it.
2295     pub fn from_bits(tcx: TyCtxt<'tcx>, bits: u128, ty: ParamEnvAnd<'tcx, Ty<'tcx>>) -> &'tcx Self {
2296         let size = tcx
2297             .layout_of(ty)
2298             .unwrap_or_else(|e| panic!("could not compute layout for {:?}: {:?}", ty, e))
2299             .size;
2300         Self::from_scalar(tcx, Scalar::from_uint(bits, size), ty.value)
2301     }
2302
2303     #[inline]
2304     /// Creates an interned zst constant.
2305     pub fn zero_sized(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> &'tcx Self {
2306         Self::from_scalar(tcx, Scalar::zst(), ty)
2307     }
2308
2309     #[inline]
2310     /// Creates an interned bool constant.
2311     pub fn from_bool(tcx: TyCtxt<'tcx>, v: bool) -> &'tcx Self {
2312         Self::from_bits(tcx, v as u128, ParamEnv::empty().and(tcx.types.bool))
2313     }
2314
2315     #[inline]
2316     /// Creates an interned usize constant.
2317     pub fn from_usize(tcx: TyCtxt<'tcx>, n: u64) -> &'tcx Self {
2318         Self::from_bits(tcx, n as u128, ParamEnv::empty().and(tcx.types.usize))
2319     }
2320
2321     #[inline]
2322     /// Attempts to evaluate the given constant to bits. Can fail to evaluate in the presence of
2323     /// generics (or erroneous code) or if the value can't be represented as bits (e.g. because it
2324     /// contains const generic parameters or pointers).
2325     pub fn try_eval_bits(
2326         &self,
2327         tcx: TyCtxt<'tcx>,
2328         param_env: ParamEnv<'tcx>,
2329         ty: Ty<'tcx>,
2330     ) -> Option<u128> {
2331         assert_eq!(self.ty, ty);
2332         let size = tcx.layout_of(param_env.with_reveal_all().and(ty)).ok()?.size;
2333         // if `ty` does not depend on generic parameters, use an empty param_env
2334         self.eval(tcx, param_env).val.try_to_bits(size)
2335     }
2336
2337     #[inline]
2338     /// Tries to evaluate the constant if it is `Unevaluated`. If that doesn't succeed, return the
2339     /// unevaluated constant.
2340     pub fn eval(&self, tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>) -> &Const<'tcx> {
2341         if let ConstKind::Unevaluated(did, substs, promoted) = self.val {
2342             use crate::mir::interpret::ErrorHandled;
2343
2344             let param_env_and_substs = param_env.with_reveal_all().and(substs);
2345
2346             // HACK(eddyb) this erases lifetimes even though `const_eval_resolve`
2347             // also does later, but we want to do it before checking for
2348             // inference variables.
2349             let param_env_and_substs = tcx.erase_regions(&param_env_and_substs);
2350
2351             // HACK(eddyb) when the query key would contain inference variables,
2352             // attempt using identity substs and `ParamEnv` instead, that will succeed
2353             // when the expression doesn't depend on any parameters.
2354             // FIXME(eddyb, skinny121) pass `InferCtxt` into here when it's available, so that
2355             // we can call `infcx.const_eval_resolve` which handles inference variables.
2356             let param_env_and_substs = if param_env_and_substs.needs_infer() {
2357                 tcx.param_env(did).and(InternalSubsts::identity_for_item(tcx, did))
2358             } else {
2359                 param_env_and_substs
2360             };
2361
2362             // FIXME(eddyb) maybe the `const_eval_*` methods should take
2363             // `ty::ParamEnvAnd<SubstsRef>` instead of having them separate.
2364             let (param_env, substs) = param_env_and_substs.into_parts();
2365             // try to resolve e.g. associated constants to their definition on an impl, and then
2366             // evaluate the const.
2367             match tcx.const_eval_resolve(param_env, did, substs, promoted, None) {
2368                 // NOTE(eddyb) `val` contains no lifetimes/types/consts,
2369                 // and we use the original type, so nothing from `substs`
2370                 // (which may be identity substs, see above),
2371                 // can leak through `val` into the const we return.
2372                 Ok(val) => Const::from_value(tcx, val, self.ty),
2373                 Err(ErrorHandled::TooGeneric | ErrorHandled::Linted) => self,
2374                 Err(ErrorHandled::Reported(ErrorReported)) => {
2375                     tcx.mk_const(ty::Const { val: ty::ConstKind::Error, ty: self.ty })
2376                 }
2377             }
2378         } else {
2379             self
2380         }
2381     }
2382
2383     #[inline]
2384     pub fn try_eval_bool(&self, tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>) -> Option<bool> {
2385         self.try_eval_bits(tcx, param_env, tcx.types.bool).and_then(|v| match v {
2386             0 => Some(false),
2387             1 => Some(true),
2388             _ => None,
2389         })
2390     }
2391
2392     #[inline]
2393     pub fn try_eval_usize(&self, tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>) -> Option<u64> {
2394         self.try_eval_bits(tcx, param_env, tcx.types.usize).map(|v| v as u64)
2395     }
2396
2397     #[inline]
2398     /// Panics if the value cannot be evaluated or doesn't contain a valid integer of the given type.
2399     pub fn eval_bits(&self, tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>, ty: Ty<'tcx>) -> u128 {
2400         self.try_eval_bits(tcx, param_env, ty)
2401             .unwrap_or_else(|| bug!("expected bits of {:#?}, got {:#?}", ty, self))
2402     }
2403
2404     #[inline]
2405     /// Panics if the value cannot be evaluated or doesn't contain a valid `usize`.
2406     pub fn eval_usize(&self, tcx: TyCtxt<'tcx>, param_env: ParamEnv<'tcx>) -> u64 {
2407         self.eval_bits(tcx, param_env, tcx.types.usize) as u64
2408     }
2409 }
2410
2411 impl<'tcx> rustc_serialize::UseSpecializedDecodable for &'tcx Const<'tcx> {}
2412
2413 /// Represents a constant in Rust.
2414 #[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, RustcEncodable, RustcDecodable, Hash)]
2415 #[derive(HashStable)]
2416 pub enum ConstKind<'tcx> {
2417     /// A const generic parameter.
2418     Param(ParamConst),
2419
2420     /// Infer the value of the const.
2421     Infer(InferConst<'tcx>),
2422
2423     /// Bound const variable, used only when preparing a trait query.
2424     Bound(DebruijnIndex, BoundVar),
2425
2426     /// A placeholder const - universally quantified higher-ranked const.
2427     Placeholder(ty::PlaceholderConst),
2428
2429     /// Used in the HIR by using `Unevaluated` everywhere and later normalizing to one of the other
2430     /// variants when the code is monomorphic enough for that.
2431     Unevaluated(DefId, SubstsRef<'tcx>, Option<Promoted>),
2432
2433     /// Used to hold computed value.
2434     Value(ConstValue<'tcx>),
2435
2436     /// A placeholder for a const which could not be computed; this is
2437     /// propagated to avoid useless error messages.
2438     Error,
2439 }
2440
2441 #[cfg(target_arch = "x86_64")]
2442 static_assert_size!(ConstKind<'_>, 40);
2443
2444 impl<'tcx> ConstKind<'tcx> {
2445     #[inline]
2446     pub fn try_to_scalar(&self) -> Option<Scalar> {
2447         if let ConstKind::Value(val) = self { val.try_to_scalar() } else { None }
2448     }
2449
2450     #[inline]
2451     pub fn try_to_bits(&self, size: Size) -> Option<u128> {
2452         if let ConstKind::Value(val) = self { val.try_to_bits(size) } else { None }
2453     }
2454 }
2455
2456 /// An inference variable for a const, for use in const generics.
2457 #[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, RustcEncodable, RustcDecodable, Hash)]
2458 #[derive(HashStable)]
2459 pub enum InferConst<'tcx> {
2460     /// Infer the value of the const.
2461     Var(ConstVid<'tcx>),
2462     /// A fresh const variable. See `infer::freshen` for more details.
2463     Fresh(u32),
2464 }