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