]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/ty/sty.rs
Add u32 for bound variables to Binder
[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<T> Binder<T> {
963     /// Wraps `value` in a binder, asserting that `value` does not
964     /// contain any bound vars that would be bound by the
965     /// binder. This is commonly used to 'inject' a value T into a
966     /// different binding level.
967     pub fn dummy<'tcx>(value: T) -> Binder<T>
968     where
969         T: TypeFoldable<'tcx>,
970     {
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         Binder(value, 0)
978     }
979
980     /// Skips the binder and returns the "bound" value. This is a
981     /// risky thing to do because it's easy to get confused about
982     /// De Bruijn indices and the like. It is usually better to
983     /// discharge the binder using `no_bound_vars` or
984     /// `replace_late_bound_regions` or something like
985     /// that. `skip_binder` is only valid when you are either
986     /// extracting data that has nothing to do with bound vars, you
987     /// are doing some sort of test that does not involve bound
988     /// regions, or you are being very careful about your depth
989     /// accounting.
990     ///
991     /// Some examples where `skip_binder` is reasonable:
992     ///
993     /// - extracting the `DefId` from a PolyTraitRef;
994     /// - comparing the self type of a PolyTraitRef to see if it is equal to
995     ///   a type parameter `X`, since the type `X` does not reference any regions
996     pub fn skip_binder(self) -> T {
997         self.0
998     }
999
1000     pub fn as_ref(&self) -> Binder<&T> {
1001         Binder(&self.0, self.1)
1002     }
1003
1004     pub fn map_bound_ref<F, U>(&self, f: F) -> Binder<U>
1005     where
1006         F: FnOnce(&T) -> U,
1007     {
1008         self.as_ref().map_bound(f)
1009     }
1010
1011     pub fn map_bound<F, U>(self, f: F) -> Binder<U>
1012     where
1013         F: FnOnce(T) -> U,
1014     {
1015         Binder(f(self.0), self.1)
1016     }
1017
1018     /// Wraps a `value` in a binder, using the same bound variables as the
1019     /// current `Binder`. This should not be used if the new value *changes*
1020     /// the bound variables. Note: the (old or new) value itself does not
1021     /// necessarily need to *name* all the bound variables.
1022     ///
1023     /// This currently doesn't do anything different than `bind`, because we
1024     /// don't actually track bound vars. However, semantically, it is different
1025     /// because bound vars aren't allowed to change here, whereas they are
1026     /// in `bind`. This may be (debug) asserted in the future.
1027     pub fn rebind<U>(&self, value: U) -> Binder<U> {
1028         Binder(value, self.1)
1029     }
1030
1031     /// Unwraps and returns the value within, but only if it contains
1032     /// no bound vars at all. (In other words, if this binder --
1033     /// and indeed any enclosing binder -- doesn't bind anything at
1034     /// all.) Otherwise, returns `None`.
1035     ///
1036     /// (One could imagine having a method that just unwraps a single
1037     /// binder, but permits late-bound vars bound by enclosing
1038     /// binders, but that would require adjusting the debruijn
1039     /// indices, and given the shallow binding structure we often use,
1040     /// would not be that useful.)
1041     pub fn no_bound_vars<'tcx>(self) -> Option<T>
1042     where
1043         T: TypeFoldable<'tcx>,
1044     {
1045         if self.0.has_escaping_bound_vars() { None } else { Some(self.skip_binder()) }
1046     }
1047
1048     /// Given two things that have the same binder level,
1049     /// and an operation that wraps on their contents, executes the operation
1050     /// and then wraps its result.
1051     ///
1052     /// `f` should consider bound regions at depth 1 to be free, and
1053     /// anything it produces with bound regions at depth 1 will be
1054     /// bound in the resulting return value.
1055     pub fn fuse<U, F, R>(self, u: Binder<U>, f: F) -> Binder<R>
1056     where
1057         F: FnOnce(T, U) -> R,
1058     {
1059         Binder(f(self.0, u.0), self.1)
1060     }
1061
1062     /// Splits the contents into two things that share the same binder
1063     /// level as the original, returning two distinct binders.
1064     ///
1065     /// `f` should consider bound regions at depth 1 to be free, and
1066     /// anything it produces with bound regions at depth 1 will be
1067     /// bound in the resulting return values.
1068     pub fn split<U, V, F>(self, f: F) -> (Binder<U>, Binder<V>)
1069     where
1070         F: FnOnce(T) -> (U, V),
1071     {
1072         let (u, v) = f(self.0);
1073         (Binder(u, self.1), Binder(v, self.1))
1074     }
1075 }
1076
1077 impl<T> Binder<Option<T>> {
1078     pub fn transpose(self) -> Option<Binder<T>> {
1079         let bound_vars = self.1;
1080         self.0.map(|v| Binder(v, bound_vars))
1081     }
1082 }
1083
1084 /// Represents the projection of an associated type. In explicit UFCS
1085 /// form this would be written `<T as Trait<..>>::N`.
1086 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, TyEncodable, TyDecodable)]
1087 #[derive(HashStable, TypeFoldable)]
1088 pub struct ProjectionTy<'tcx> {
1089     /// The parameters of the associated item.
1090     pub substs: SubstsRef<'tcx>,
1091
1092     /// The `DefId` of the `TraitItem` for the associated type `N`.
1093     ///
1094     /// Note that this is not the `DefId` of the `TraitRef` containing this
1095     /// associated type, which is in `tcx.associated_item(item_def_id).container`.
1096     pub item_def_id: DefId,
1097 }
1098
1099 impl<'tcx> ProjectionTy<'tcx> {
1100     pub fn trait_def_id(&self, tcx: TyCtxt<'tcx>) -> DefId {
1101         tcx.associated_item(self.item_def_id).container.id()
1102     }
1103
1104     /// Extracts the underlying trait reference and own substs from this projection.
1105     /// For example, if this is a projection of `<T as StreamingIterator>::Item<'a>`,
1106     /// then this function would return a `T: Iterator` trait reference and `['a]` as the own substs
1107     pub fn trait_ref_and_own_substs(
1108         &self,
1109         tcx: TyCtxt<'tcx>,
1110     ) -> (ty::TraitRef<'tcx>, &'tcx [ty::GenericArg<'tcx>]) {
1111         let def_id = tcx.associated_item(self.item_def_id).container.id();
1112         let trait_generics = tcx.generics_of(def_id);
1113         (
1114             ty::TraitRef { def_id, substs: self.substs.truncate_to(tcx, trait_generics) },
1115             &self.substs[trait_generics.count()..],
1116         )
1117     }
1118
1119     /// Extracts the underlying trait reference from this projection.
1120     /// For example, if this is a projection of `<T as Iterator>::Item`,
1121     /// then this function would return a `T: Iterator` trait reference.
1122     ///
1123     /// WARNING: This will drop the substs for generic associated types
1124     /// consider calling [Self::trait_ref_and_own_substs] to get those
1125     /// as well.
1126     pub fn trait_ref(&self, tcx: TyCtxt<'tcx>) -> ty::TraitRef<'tcx> {
1127         let def_id = self.trait_def_id(tcx);
1128         ty::TraitRef { def_id, substs: self.substs.truncate_to(tcx, tcx.generics_of(def_id)) }
1129     }
1130
1131     pub fn self_ty(&self) -> Ty<'tcx> {
1132         self.substs.type_at(0)
1133     }
1134 }
1135
1136 #[derive(Copy, Clone, Debug, TypeFoldable)]
1137 pub struct GenSig<'tcx> {
1138     pub resume_ty: Ty<'tcx>,
1139     pub yield_ty: Ty<'tcx>,
1140     pub return_ty: Ty<'tcx>,
1141 }
1142
1143 pub type PolyGenSig<'tcx> = Binder<GenSig<'tcx>>;
1144
1145 /// Signature of a function type, which we have arbitrarily
1146 /// decided to use to refer to the input/output types.
1147 ///
1148 /// - `inputs`: is the list of arguments and their modes.
1149 /// - `output`: is the return type.
1150 /// - `c_variadic`: indicates whether this is a C-variadic function.
1151 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, TyEncodable, TyDecodable)]
1152 #[derive(HashStable, TypeFoldable)]
1153 pub struct FnSig<'tcx> {
1154     pub inputs_and_output: &'tcx List<Ty<'tcx>>,
1155     pub c_variadic: bool,
1156     pub unsafety: hir::Unsafety,
1157     pub abi: abi::Abi,
1158 }
1159
1160 impl<'tcx> FnSig<'tcx> {
1161     pub fn inputs(&self) -> &'tcx [Ty<'tcx>] {
1162         &self.inputs_and_output[..self.inputs_and_output.len() - 1]
1163     }
1164
1165     pub fn output(&self) -> Ty<'tcx> {
1166         self.inputs_and_output[self.inputs_and_output.len() - 1]
1167     }
1168
1169     // Creates a minimal `FnSig` to be used when encountering a `TyKind::Error` in a fallible
1170     // method.
1171     fn fake() -> FnSig<'tcx> {
1172         FnSig {
1173             inputs_and_output: List::empty(),
1174             c_variadic: false,
1175             unsafety: hir::Unsafety::Normal,
1176             abi: abi::Abi::Rust,
1177         }
1178     }
1179 }
1180
1181 pub type PolyFnSig<'tcx> = Binder<FnSig<'tcx>>;
1182
1183 impl<'tcx> PolyFnSig<'tcx> {
1184     #[inline]
1185     pub fn inputs(&self) -> Binder<&'tcx [Ty<'tcx>]> {
1186         self.map_bound_ref(|fn_sig| fn_sig.inputs())
1187     }
1188     #[inline]
1189     pub fn input(&self, index: usize) -> ty::Binder<Ty<'tcx>> {
1190         self.map_bound_ref(|fn_sig| fn_sig.inputs()[index])
1191     }
1192     pub fn inputs_and_output(&self) -> ty::Binder<&'tcx List<Ty<'tcx>>> {
1193         self.map_bound_ref(|fn_sig| fn_sig.inputs_and_output)
1194     }
1195     #[inline]
1196     pub fn output(&self) -> ty::Binder<Ty<'tcx>> {
1197         self.map_bound_ref(|fn_sig| fn_sig.output())
1198     }
1199     pub fn c_variadic(&self) -> bool {
1200         self.skip_binder().c_variadic
1201     }
1202     pub fn unsafety(&self) -> hir::Unsafety {
1203         self.skip_binder().unsafety
1204     }
1205     pub fn abi(&self) -> abi::Abi {
1206         self.skip_binder().abi
1207     }
1208 }
1209
1210 pub type CanonicalPolyFnSig<'tcx> = Canonical<'tcx, Binder<FnSig<'tcx>>>;
1211
1212 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, TyEncodable, TyDecodable)]
1213 #[derive(HashStable)]
1214 pub struct ParamTy {
1215     pub index: u32,
1216     pub name: Symbol,
1217 }
1218
1219 impl<'tcx> ParamTy {
1220     pub fn new(index: u32, name: Symbol) -> ParamTy {
1221         ParamTy { index, name }
1222     }
1223
1224     pub fn for_def(def: &ty::GenericParamDef) -> ParamTy {
1225         ParamTy::new(def.index, def.name)
1226     }
1227
1228     #[inline]
1229     pub fn to_ty(self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
1230         tcx.mk_ty_param(self.index, self.name)
1231     }
1232 }
1233
1234 #[derive(Copy, Clone, Hash, TyEncodable, TyDecodable, Eq, PartialEq, Ord, PartialOrd)]
1235 #[derive(HashStable)]
1236 pub struct ParamConst {
1237     pub index: u32,
1238     pub name: Symbol,
1239 }
1240
1241 impl ParamConst {
1242     pub fn new(index: u32, name: Symbol) -> ParamConst {
1243         ParamConst { index, name }
1244     }
1245
1246     pub fn for_def(def: &ty::GenericParamDef) -> ParamConst {
1247         ParamConst::new(def.index, def.name)
1248     }
1249 }
1250
1251 pub type Region<'tcx> = &'tcx RegionKind;
1252
1253 /// Representation of regions. Note that the NLL checker uses a distinct
1254 /// representation of regions. For this reason, it internally replaces all the
1255 /// regions with inference variables -- the index of the variable is then used
1256 /// to index into internal NLL data structures. See `rustc_mir::borrow_check`
1257 /// module for more information.
1258 ///
1259 /// ## The Region lattice within a given function
1260 ///
1261 /// In general, the region lattice looks like
1262 ///
1263 /// ```
1264 /// static ----------+-----...------+       (greatest)
1265 /// |                |              |
1266 /// early-bound and  |              |
1267 /// free regions     |              |
1268 /// |                |              |
1269 /// |                |              |
1270 /// empty(root)   placeholder(U1)   |
1271 /// |            /                  |
1272 /// |           /         placeholder(Un)
1273 /// empty(U1) --         /
1274 /// |                   /
1275 /// ...                /
1276 /// |                 /
1277 /// empty(Un) --------                      (smallest)
1278 /// ```
1279 ///
1280 /// Early-bound/free regions are the named lifetimes in scope from the
1281 /// function declaration. They have relationships to one another
1282 /// determined based on the declared relationships from the
1283 /// function.
1284 ///
1285 /// Note that inference variables and bound regions are not included
1286 /// in this diagram. In the case of inference variables, they should
1287 /// be inferred to some other region from the diagram.  In the case of
1288 /// bound regions, they are excluded because they don't make sense to
1289 /// include -- the diagram indicates the relationship between free
1290 /// regions.
1291 ///
1292 /// ## Inference variables
1293 ///
1294 /// During region inference, we sometimes create inference variables,
1295 /// represented as `ReVar`. These will be inferred by the code in
1296 /// `infer::lexical_region_resolve` to some free region from the
1297 /// lattice above (the minimal region that meets the
1298 /// constraints).
1299 ///
1300 /// During NLL checking, where regions are defined differently, we
1301 /// also use `ReVar` -- in that case, the index is used to index into
1302 /// the NLL region checker's data structures. The variable may in fact
1303 /// represent either a free region or an inference variable, in that
1304 /// case.
1305 ///
1306 /// ## Bound Regions
1307 ///
1308 /// These are regions that are stored behind a binder and must be substituted
1309 /// with some concrete region before being used. There are two kind of
1310 /// bound regions: early-bound, which are bound in an item's `Generics`,
1311 /// and are substituted by a `InternalSubsts`, and late-bound, which are part of
1312 /// higher-ranked types (e.g., `for<'a> fn(&'a ())`), and are substituted by
1313 /// the likes of `liberate_late_bound_regions`. The distinction exists
1314 /// because higher-ranked lifetimes aren't supported in all places. See [1][2].
1315 ///
1316 /// Unlike `Param`s, bound regions are not supposed to exist "in the wild"
1317 /// outside their binder, e.g., in types passed to type inference, and
1318 /// should first be substituted (by placeholder regions, free regions,
1319 /// or region variables).
1320 ///
1321 /// ## Placeholder and Free Regions
1322 ///
1323 /// One often wants to work with bound regions without knowing their precise
1324 /// identity. For example, when checking a function, the lifetime of a borrow
1325 /// can end up being assigned to some region parameter. In these cases,
1326 /// it must be ensured that bounds on the region can't be accidentally
1327 /// assumed without being checked.
1328 ///
1329 /// To do this, we replace the bound regions with placeholder markers,
1330 /// which don't satisfy any relation not explicitly provided.
1331 ///
1332 /// There are two kinds of placeholder regions in rustc: `ReFree` and
1333 /// `RePlaceholder`. When checking an item's body, `ReFree` is supposed
1334 /// to be used. These also support explicit bounds: both the internally-stored
1335 /// *scope*, which the region is assumed to outlive, as well as other
1336 /// relations stored in the `FreeRegionMap`. Note that these relations
1337 /// aren't checked when you `make_subregion` (or `eq_types`), only by
1338 /// `resolve_regions_and_report_errors`.
1339 ///
1340 /// When working with higher-ranked types, some region relations aren't
1341 /// yet known, so you can't just call `resolve_regions_and_report_errors`.
1342 /// `RePlaceholder` is designed for this purpose. In these contexts,
1343 /// there's also the risk that some inference variable laying around will
1344 /// get unified with your placeholder region: if you want to check whether
1345 /// `for<'a> Foo<'_>: 'a`, and you substitute your bound region `'a`
1346 /// with a placeholder region `'%a`, the variable `'_` would just be
1347 /// instantiated to the placeholder region `'%a`, which is wrong because
1348 /// the inference variable is supposed to satisfy the relation
1349 /// *for every value of the placeholder region*. To ensure that doesn't
1350 /// happen, you can use `leak_check`. This is more clearly explained
1351 /// by the [rustc dev guide].
1352 ///
1353 /// [1]: http://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/
1354 /// [2]: http://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/
1355 /// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/hrtb.html
1356 #[derive(Clone, PartialEq, Eq, Hash, Copy, TyEncodable, TyDecodable, PartialOrd, Ord)]
1357 pub enum RegionKind {
1358     /// Region bound in a type or fn declaration which will be
1359     /// substituted 'early' -- that is, at the same time when type
1360     /// parameters are substituted.
1361     ReEarlyBound(EarlyBoundRegion),
1362
1363     /// Region bound in a function scope, which will be substituted when the
1364     /// function is called.
1365     ReLateBound(ty::DebruijnIndex, BoundRegion),
1366
1367     /// When checking a function body, the types of all arguments and so forth
1368     /// that refer to bound region parameters are modified to refer to free
1369     /// region parameters.
1370     ReFree(FreeRegion),
1371
1372     /// Static data that has an "infinite" lifetime. Top in the region lattice.
1373     ReStatic,
1374
1375     /// A region variable. Should not exist after typeck.
1376     ReVar(RegionVid),
1377
1378     /// A placeholder region -- basically, the higher-ranked version of `ReFree`.
1379     /// Should not exist after typeck.
1380     RePlaceholder(ty::PlaceholderRegion),
1381
1382     /// Empty lifetime is for data that is never accessed.  We tag the
1383     /// empty lifetime with a universe -- the idea is that we don't
1384     /// want `exists<'a> { forall<'b> { 'b: 'a } }` to be satisfiable.
1385     /// Therefore, the `'empty` in a universe `U` is less than all
1386     /// regions visible from `U`, but not less than regions not visible
1387     /// from `U`.
1388     ReEmpty(ty::UniverseIndex),
1389
1390     /// Erased region, used by trait selection, in MIR and during codegen.
1391     ReErased,
1392 }
1393
1394 #[derive(Copy, Clone, PartialEq, Eq, Hash, TyEncodable, TyDecodable, Debug, PartialOrd, Ord)]
1395 pub struct EarlyBoundRegion {
1396     pub def_id: DefId,
1397     pub index: u32,
1398     pub name: Symbol,
1399 }
1400
1401 /// A **`const`** **v**ariable **ID**.
1402 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, TyEncodable, TyDecodable)]
1403 pub struct ConstVid<'tcx> {
1404     pub index: u32,
1405     pub phantom: PhantomData<&'tcx ()>,
1406 }
1407
1408 rustc_index::newtype_index! {
1409     /// A **region** (lifetime) **v**ariable **ID**.
1410     pub struct RegionVid {
1411         DEBUG_FORMAT = custom,
1412     }
1413 }
1414
1415 impl Atom for RegionVid {
1416     fn index(self) -> usize {
1417         Idx::index(self)
1418     }
1419 }
1420
1421 rustc_index::newtype_index! {
1422     pub struct BoundVar { .. }
1423 }
1424
1425 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, TyEncodable, TyDecodable)]
1426 #[derive(HashStable)]
1427 pub struct BoundTy {
1428     pub var: BoundVar,
1429     pub kind: BoundTyKind,
1430 }
1431
1432 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, TyEncodable, TyDecodable)]
1433 #[derive(HashStable)]
1434 pub enum BoundTyKind {
1435     Anon,
1436     Param(Symbol),
1437 }
1438
1439 impl From<BoundVar> for BoundTy {
1440     fn from(var: BoundVar) -> Self {
1441         BoundTy { var, kind: BoundTyKind::Anon }
1442     }
1443 }
1444
1445 /// A `ProjectionPredicate` for an `ExistentialTraitRef`.
1446 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, TyEncodable, TyDecodable)]
1447 #[derive(HashStable, TypeFoldable)]
1448 pub struct ExistentialProjection<'tcx> {
1449     pub item_def_id: DefId,
1450     pub substs: SubstsRef<'tcx>,
1451     pub ty: Ty<'tcx>,
1452 }
1453
1454 pub type PolyExistentialProjection<'tcx> = Binder<ExistentialProjection<'tcx>>;
1455
1456 impl<'tcx> ExistentialProjection<'tcx> {
1457     /// Extracts the underlying existential trait reference from this projection.
1458     /// For example, if this is a projection of `exists T. <T as Iterator>::Item == X`,
1459     /// then this function would return a `exists T. T: Iterator` existential trait
1460     /// reference.
1461     pub fn trait_ref(&self, tcx: TyCtxt<'tcx>) -> ty::ExistentialTraitRef<'tcx> {
1462         let def_id = tcx.associated_item(self.item_def_id).container.id();
1463         let subst_count = tcx.generics_of(def_id).count() - 1;
1464         let substs = tcx.intern_substs(&self.substs[..subst_count]);
1465         ty::ExistentialTraitRef { def_id, substs }
1466     }
1467
1468     pub fn with_self_ty(
1469         &self,
1470         tcx: TyCtxt<'tcx>,
1471         self_ty: Ty<'tcx>,
1472     ) -> ty::ProjectionPredicate<'tcx> {
1473         // otherwise the escaping regions would be captured by the binders
1474         debug_assert!(!self_ty.has_escaping_bound_vars());
1475
1476         ty::ProjectionPredicate {
1477             projection_ty: ty::ProjectionTy {
1478                 item_def_id: self.item_def_id,
1479                 substs: tcx.mk_substs_trait(self_ty, self.substs),
1480             },
1481             ty: self.ty,
1482         }
1483     }
1484
1485     pub fn erase_self_ty(
1486         tcx: TyCtxt<'tcx>,
1487         projection_predicate: ty::ProjectionPredicate<'tcx>,
1488     ) -> Self {
1489         // Assert there is a Self.
1490         projection_predicate.projection_ty.substs.type_at(0);
1491
1492         Self {
1493             item_def_id: projection_predicate.projection_ty.item_def_id,
1494             substs: tcx.intern_substs(&projection_predicate.projection_ty.substs[1..]),
1495             ty: projection_predicate.ty,
1496         }
1497     }
1498 }
1499
1500 impl<'tcx> PolyExistentialProjection<'tcx> {
1501     pub fn with_self_ty(
1502         &self,
1503         tcx: TyCtxt<'tcx>,
1504         self_ty: Ty<'tcx>,
1505     ) -> ty::PolyProjectionPredicate<'tcx> {
1506         self.map_bound(|p| p.with_self_ty(tcx, self_ty))
1507     }
1508
1509     pub fn item_def_id(&self) -> DefId {
1510         self.skip_binder().item_def_id
1511     }
1512 }
1513
1514 /// Region utilities
1515 impl RegionKind {
1516     /// Is this region named by the user?
1517     pub fn has_name(&self) -> bool {
1518         match *self {
1519             RegionKind::ReEarlyBound(ebr) => ebr.has_name(),
1520             RegionKind::ReLateBound(_, br) => br.kind.is_named(),
1521             RegionKind::ReFree(fr) => fr.bound_region.is_named(),
1522             RegionKind::ReStatic => true,
1523             RegionKind::ReVar(..) => false,
1524             RegionKind::RePlaceholder(placeholder) => placeholder.name.is_named(),
1525             RegionKind::ReEmpty(_) => false,
1526             RegionKind::ReErased => false,
1527         }
1528     }
1529
1530     #[inline]
1531     pub fn is_late_bound(&self) -> bool {
1532         matches!(*self, ty::ReLateBound(..))
1533     }
1534
1535     #[inline]
1536     pub fn is_placeholder(&self) -> bool {
1537         matches!(*self, ty::RePlaceholder(..))
1538     }
1539
1540     #[inline]
1541     pub fn bound_at_or_above_binder(&self, index: ty::DebruijnIndex) -> bool {
1542         match *self {
1543             ty::ReLateBound(debruijn, _) => debruijn >= index,
1544             _ => false,
1545         }
1546     }
1547
1548     pub fn type_flags(&self) -> TypeFlags {
1549         let mut flags = TypeFlags::empty();
1550
1551         match *self {
1552             ty::ReVar(..) => {
1553                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1554                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1555                 flags = flags | TypeFlags::HAS_RE_INFER;
1556             }
1557             ty::RePlaceholder(..) => {
1558                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1559                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1560                 flags = flags | TypeFlags::HAS_RE_PLACEHOLDER;
1561             }
1562             ty::ReEarlyBound(..) => {
1563                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1564                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1565                 flags = flags | TypeFlags::HAS_RE_PARAM;
1566             }
1567             ty::ReFree { .. } => {
1568                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1569                 flags = flags | TypeFlags::HAS_FREE_LOCAL_REGIONS;
1570             }
1571             ty::ReEmpty(_) | ty::ReStatic => {
1572                 flags = flags | TypeFlags::HAS_FREE_REGIONS;
1573             }
1574             ty::ReLateBound(..) => {
1575                 flags = flags | TypeFlags::HAS_RE_LATE_BOUND;
1576             }
1577             ty::ReErased => {
1578                 flags = flags | TypeFlags::HAS_RE_ERASED;
1579             }
1580         }
1581
1582         debug!("type_flags({:?}) = {:?}", self, flags);
1583
1584         flags
1585     }
1586
1587     /// Given an early-bound or free region, returns the `DefId` where it was bound.
1588     /// For example, consider the regions in this snippet of code:
1589     ///
1590     /// ```
1591     /// impl<'a> Foo {
1592     ///      ^^ -- early bound, declared on an impl
1593     ///
1594     ///     fn bar<'b, 'c>(x: &self, y: &'b u32, z: &'c u64) where 'static: 'c
1595     ///            ^^  ^^     ^ anonymous, late-bound
1596     ///            |   early-bound, appears in where-clauses
1597     ///            late-bound, appears only in fn args
1598     ///     {..}
1599     /// }
1600     /// ```
1601     ///
1602     /// Here, `free_region_binding_scope('a)` would return the `DefId`
1603     /// of the impl, and for all the other highlighted regions, it
1604     /// would return the `DefId` of the function. In other cases (not shown), this
1605     /// function might return the `DefId` of a closure.
1606     pub fn free_region_binding_scope(&self, tcx: TyCtxt<'_>) -> DefId {
1607         match self {
1608             ty::ReEarlyBound(br) => tcx.parent(br.def_id).unwrap(),
1609             ty::ReFree(fr) => fr.scope,
1610             _ => bug!("free_region_binding_scope invoked on inappropriate region: {:?}", self),
1611         }
1612     }
1613 }
1614
1615 /// Type utilities
1616 impl<'tcx> TyS<'tcx> {
1617     #[inline(always)]
1618     pub fn kind(&self) -> &TyKind<'tcx> {
1619         &self.kind
1620     }
1621
1622     #[inline(always)]
1623     pub fn flags(&self) -> TypeFlags {
1624         self.flags
1625     }
1626
1627     #[inline]
1628     pub fn is_unit(&self) -> bool {
1629         match self.kind() {
1630             Tuple(ref tys) => tys.is_empty(),
1631             _ => false,
1632         }
1633     }
1634
1635     #[inline]
1636     pub fn is_never(&self) -> bool {
1637         matches!(self.kind(), Never)
1638     }
1639
1640     #[inline]
1641     pub fn is_primitive(&self) -> bool {
1642         self.kind().is_primitive()
1643     }
1644
1645     #[inline]
1646     pub fn is_adt(&self) -> bool {
1647         matches!(self.kind(), Adt(..))
1648     }
1649
1650     #[inline]
1651     pub fn is_ref(&self) -> bool {
1652         matches!(self.kind(), Ref(..))
1653     }
1654
1655     #[inline]
1656     pub fn is_ty_var(&self) -> bool {
1657         matches!(self.kind(), Infer(TyVar(_)))
1658     }
1659
1660     #[inline]
1661     pub fn is_ty_infer(&self) -> bool {
1662         matches!(self.kind(), Infer(_))
1663     }
1664
1665     #[inline]
1666     pub fn is_phantom_data(&self) -> bool {
1667         if let Adt(def, _) = self.kind() { def.is_phantom_data() } else { false }
1668     }
1669
1670     #[inline]
1671     pub fn is_bool(&self) -> bool {
1672         *self.kind() == Bool
1673     }
1674
1675     /// Returns `true` if this type is a `str`.
1676     #[inline]
1677     pub fn is_str(&self) -> bool {
1678         *self.kind() == Str
1679     }
1680
1681     #[inline]
1682     pub fn is_param(&self, index: u32) -> bool {
1683         match self.kind() {
1684             ty::Param(ref data) => data.index == index,
1685             _ => false,
1686         }
1687     }
1688
1689     #[inline]
1690     pub fn is_slice(&self) -> bool {
1691         match self.kind() {
1692             RawPtr(TypeAndMut { ty, .. }) | Ref(_, ty, _) => matches!(ty.kind(), Slice(_) | Str),
1693             _ => false,
1694         }
1695     }
1696
1697     #[inline]
1698     pub fn is_array(&self) -> bool {
1699         matches!(self.kind(), Array(..))
1700     }
1701
1702     #[inline]
1703     pub fn is_simd(&self) -> bool {
1704         match self.kind() {
1705             Adt(def, _) => def.repr.simd(),
1706             _ => false,
1707         }
1708     }
1709
1710     pub fn sequence_element_type(&self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
1711         match self.kind() {
1712             Array(ty, _) | Slice(ty) => ty,
1713             Str => tcx.mk_mach_uint(ty::UintTy::U8),
1714             _ => bug!("`sequence_element_type` called on non-sequence value: {}", self),
1715         }
1716     }
1717
1718     pub fn simd_size_and_type(&self, tcx: TyCtxt<'tcx>) -> (u64, Ty<'tcx>) {
1719         match self.kind() {
1720             Adt(def, substs) => {
1721                 let variant = def.non_enum_variant();
1722                 let f0_ty = variant.fields[0].ty(tcx, substs);
1723
1724                 match f0_ty.kind() {
1725                     Array(f0_elem_ty, f0_len) => {
1726                         // FIXME(repr_simd): https://github.com/rust-lang/rust/pull/78863#discussion_r522784112
1727                         // The way we evaluate the `N` in `[T; N]` here only works since we use
1728                         // `simd_size_and_type` post-monomorphization. It will probably start to ICE
1729                         // if we use it in generic code. See the `simd-array-trait` ui test.
1730                         (f0_len.eval_usize(tcx, ParamEnv::empty()) as u64, f0_elem_ty)
1731                     }
1732                     _ => (variant.fields.len() as u64, f0_ty),
1733                 }
1734             }
1735             _ => bug!("`simd_size_and_type` called on invalid type"),
1736         }
1737     }
1738
1739     #[inline]
1740     pub fn is_region_ptr(&self) -> bool {
1741         matches!(self.kind(), Ref(..))
1742     }
1743
1744     #[inline]
1745     pub fn is_mutable_ptr(&self) -> bool {
1746         matches!(
1747             self.kind(),
1748             RawPtr(TypeAndMut { mutbl: hir::Mutability::Mut, .. })
1749                 | Ref(_, _, hir::Mutability::Mut)
1750         )
1751     }
1752
1753     /// Get the mutability of the reference or `None` when not a reference
1754     #[inline]
1755     pub fn ref_mutability(&self) -> Option<hir::Mutability> {
1756         match self.kind() {
1757             Ref(_, _, mutability) => Some(*mutability),
1758             _ => None,
1759         }
1760     }
1761
1762     #[inline]
1763     pub fn is_unsafe_ptr(&self) -> bool {
1764         matches!(self.kind(), RawPtr(_))
1765     }
1766
1767     /// Tests if this is any kind of primitive pointer type (reference, raw pointer, fn pointer).
1768     #[inline]
1769     pub fn is_any_ptr(&self) -> bool {
1770         self.is_region_ptr() || self.is_unsafe_ptr() || self.is_fn_ptr()
1771     }
1772
1773     #[inline]
1774     pub fn is_box(&self) -> bool {
1775         match self.kind() {
1776             Adt(def, _) => def.is_box(),
1777             _ => false,
1778         }
1779     }
1780
1781     /// Panics if called on any type other than `Box<T>`.
1782     pub fn boxed_ty(&self) -> Ty<'tcx> {
1783         match self.kind() {
1784             Adt(def, substs) if def.is_box() => substs.type_at(0),
1785             _ => bug!("`boxed_ty` is called on non-box type {:?}", self),
1786         }
1787     }
1788
1789     /// A scalar type is one that denotes an atomic datum, with no sub-components.
1790     /// (A RawPtr is scalar because it represents a non-managed pointer, so its
1791     /// contents are abstract to rustc.)
1792     #[inline]
1793     pub fn is_scalar(&self) -> bool {
1794         matches!(
1795             self.kind(),
1796             Bool | Char
1797                 | Int(_)
1798                 | Float(_)
1799                 | Uint(_)
1800                 | FnDef(..)
1801                 | FnPtr(_)
1802                 | RawPtr(_)
1803                 | Infer(IntVar(_) | FloatVar(_))
1804         )
1805     }
1806
1807     /// Returns `true` if this type is a floating point type.
1808     #[inline]
1809     pub fn is_floating_point(&self) -> bool {
1810         matches!(self.kind(), Float(_) | Infer(FloatVar(_)))
1811     }
1812
1813     #[inline]
1814     pub fn is_trait(&self) -> bool {
1815         matches!(self.kind(), Dynamic(..))
1816     }
1817
1818     #[inline]
1819     pub fn is_enum(&self) -> bool {
1820         match self.kind() {
1821             Adt(adt_def, _) => adt_def.is_enum(),
1822             _ => false,
1823         }
1824     }
1825
1826     #[inline]
1827     pub fn is_closure(&self) -> bool {
1828         matches!(self.kind(), Closure(..))
1829     }
1830
1831     #[inline]
1832     pub fn is_generator(&self) -> bool {
1833         matches!(self.kind(), Generator(..))
1834     }
1835
1836     #[inline]
1837     pub fn is_integral(&self) -> bool {
1838         matches!(self.kind(), Infer(IntVar(_)) | Int(_) | Uint(_))
1839     }
1840
1841     #[inline]
1842     pub fn is_fresh_ty(&self) -> bool {
1843         matches!(self.kind(), Infer(FreshTy(_)))
1844     }
1845
1846     #[inline]
1847     pub fn is_fresh(&self) -> bool {
1848         matches!(self.kind(), Infer(FreshTy(_) | FreshIntTy(_) | FreshFloatTy(_)))
1849     }
1850
1851     #[inline]
1852     pub fn is_char(&self) -> bool {
1853         matches!(self.kind(), Char)
1854     }
1855
1856     #[inline]
1857     pub fn is_numeric(&self) -> bool {
1858         self.is_integral() || self.is_floating_point()
1859     }
1860
1861     #[inline]
1862     pub fn is_signed(&self) -> bool {
1863         matches!(self.kind(), Int(_))
1864     }
1865
1866     #[inline]
1867     pub fn is_ptr_sized_integral(&self) -> bool {
1868         matches!(self.kind(), Int(ty::IntTy::Isize) | Uint(ty::UintTy::Usize))
1869     }
1870
1871     #[inline]
1872     pub fn is_machine(&self) -> bool {
1873         matches!(self.kind(), Int(..) | Uint(..) | Float(..))
1874     }
1875
1876     #[inline]
1877     pub fn has_concrete_skeleton(&self) -> bool {
1878         !matches!(self.kind(), Param(_) | Infer(_) | Error(_))
1879     }
1880
1881     /// Returns the type and mutability of `*ty`.
1882     ///
1883     /// The parameter `explicit` indicates if this is an *explicit* dereference.
1884     /// Some types -- notably unsafe ptrs -- can only be dereferenced explicitly.
1885     pub fn builtin_deref(&self, explicit: bool) -> Option<TypeAndMut<'tcx>> {
1886         match self.kind() {
1887             Adt(def, _) if def.is_box() => {
1888                 Some(TypeAndMut { ty: self.boxed_ty(), mutbl: hir::Mutability::Not })
1889             }
1890             Ref(_, ty, mutbl) => Some(TypeAndMut { ty, mutbl: *mutbl }),
1891             RawPtr(mt) if explicit => Some(*mt),
1892             _ => None,
1893         }
1894     }
1895
1896     /// Returns the type of `ty[i]`.
1897     pub fn builtin_index(&self) -> Option<Ty<'tcx>> {
1898         match self.kind() {
1899             Array(ty, _) | Slice(ty) => Some(ty),
1900             _ => None,
1901         }
1902     }
1903
1904     pub fn fn_sig(&self, tcx: TyCtxt<'tcx>) -> PolyFnSig<'tcx> {
1905         match self.kind() {
1906             FnDef(def_id, substs) => tcx.fn_sig(*def_id).subst(tcx, substs),
1907             FnPtr(f) => *f,
1908             Error(_) => {
1909                 // ignore errors (#54954)
1910                 ty::Binder::dummy(FnSig::fake())
1911             }
1912             Closure(..) => bug!(
1913                 "to get the signature of a closure, use `substs.as_closure().sig()` not `fn_sig()`",
1914             ),
1915             _ => bug!("Ty::fn_sig() called on non-fn type: {:?}", self),
1916         }
1917     }
1918
1919     #[inline]
1920     pub fn is_fn(&self) -> bool {
1921         matches!(self.kind(), FnDef(..) | FnPtr(_))
1922     }
1923
1924     #[inline]
1925     pub fn is_fn_ptr(&self) -> bool {
1926         matches!(self.kind(), FnPtr(_))
1927     }
1928
1929     #[inline]
1930     pub fn is_impl_trait(&self) -> bool {
1931         matches!(self.kind(), Opaque(..))
1932     }
1933
1934     #[inline]
1935     pub fn ty_adt_def(&self) -> Option<&'tcx AdtDef> {
1936         match self.kind() {
1937             Adt(adt, _) => Some(adt),
1938             _ => None,
1939         }
1940     }
1941
1942     /// Iterates over tuple fields.
1943     /// Panics when called on anything but a tuple.
1944     pub fn tuple_fields(&self) -> impl DoubleEndedIterator<Item = Ty<'tcx>> {
1945         match self.kind() {
1946             Tuple(substs) => substs.iter().map(|field| field.expect_ty()),
1947             _ => bug!("tuple_fields called on non-tuple"),
1948         }
1949     }
1950
1951     /// Get the `i`-th element of a tuple.
1952     /// Panics when called on anything but a tuple.
1953     pub fn tuple_element_ty(&self, i: usize) -> Option<Ty<'tcx>> {
1954         match self.kind() {
1955             Tuple(substs) => substs.iter().nth(i).map(|field| field.expect_ty()),
1956             _ => bug!("tuple_fields called on non-tuple"),
1957         }
1958     }
1959
1960     /// If the type contains variants, returns the valid range of variant indices.
1961     //
1962     // FIXME: This requires the optimized MIR in the case of generators.
1963     #[inline]
1964     pub fn variant_range(&self, tcx: TyCtxt<'tcx>) -> Option<Range<VariantIdx>> {
1965         match self.kind() {
1966             TyKind::Adt(adt, _) => Some(adt.variant_range()),
1967             TyKind::Generator(def_id, substs, _) => {
1968                 Some(substs.as_generator().variant_range(*def_id, tcx))
1969             }
1970             _ => None,
1971         }
1972     }
1973
1974     /// If the type contains variants, returns the variant for `variant_index`.
1975     /// Panics if `variant_index` is out of range.
1976     //
1977     // FIXME: This requires the optimized MIR in the case of generators.
1978     #[inline]
1979     pub fn discriminant_for_variant(
1980         &self,
1981         tcx: TyCtxt<'tcx>,
1982         variant_index: VariantIdx,
1983     ) -> Option<Discr<'tcx>> {
1984         match self.kind() {
1985             TyKind::Adt(adt, _) if adt.variants.is_empty() => {
1986                 bug!("discriminant_for_variant called on zero variant enum");
1987             }
1988             TyKind::Adt(adt, _) if adt.is_enum() => {
1989                 Some(adt.discriminant_for_variant(tcx, variant_index))
1990             }
1991             TyKind::Generator(def_id, substs, _) => {
1992                 Some(substs.as_generator().discriminant_for_variant(*def_id, tcx, variant_index))
1993             }
1994             _ => None,
1995         }
1996     }
1997
1998     /// Returns the type of the discriminant of this type.
1999     pub fn discriminant_ty(&'tcx self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
2000         match self.kind() {
2001             ty::Adt(adt, _) if adt.is_enum() => adt.repr.discr_type().to_ty(tcx),
2002             ty::Generator(_, substs, _) => substs.as_generator().discr_ty(tcx),
2003
2004             ty::Param(_) | ty::Projection(_) | ty::Opaque(..) | ty::Infer(ty::TyVar(_)) => {
2005                 let assoc_items =
2006                     tcx.associated_items(tcx.lang_items().discriminant_kind_trait().unwrap());
2007                 let discriminant_def_id = assoc_items.in_definition_order().next().unwrap().def_id;
2008                 tcx.mk_projection(discriminant_def_id, tcx.mk_substs([self.into()].iter()))
2009             }
2010
2011             ty::Bool
2012             | ty::Char
2013             | ty::Int(_)
2014             | ty::Uint(_)
2015             | ty::Float(_)
2016             | ty::Adt(..)
2017             | ty::Foreign(_)
2018             | ty::Str
2019             | ty::Array(..)
2020             | ty::Slice(_)
2021             | ty::RawPtr(_)
2022             | ty::Ref(..)
2023             | ty::FnDef(..)
2024             | ty::FnPtr(..)
2025             | ty::Dynamic(..)
2026             | ty::Closure(..)
2027             | ty::GeneratorWitness(..)
2028             | ty::Never
2029             | ty::Tuple(_)
2030             | ty::Error(_)
2031             | ty::Infer(IntVar(_) | FloatVar(_)) => tcx.types.u8,
2032
2033             ty::Bound(..)
2034             | ty::Placeholder(_)
2035             | ty::Infer(FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2036                 bug!("`discriminant_ty` applied to unexpected type: {:?}", self)
2037             }
2038         }
2039     }
2040
2041     /// Returns the type of metadata for (potentially fat) pointers to this type.
2042     pub fn ptr_metadata_ty(&'tcx self, tcx: TyCtxt<'tcx>) -> Ty<'tcx> {
2043         // FIXME: should this normalize?
2044         let tail = tcx.struct_tail_without_normalization(self);
2045         match tail.kind() {
2046             // Sized types
2047             ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2048             | ty::Uint(_)
2049             | ty::Int(_)
2050             | ty::Bool
2051             | ty::Float(_)
2052             | ty::FnDef(..)
2053             | ty::FnPtr(_)
2054             | ty::RawPtr(..)
2055             | ty::Char
2056             | ty::Ref(..)
2057             | ty::Generator(..)
2058             | ty::GeneratorWitness(..)
2059             | ty::Array(..)
2060             | ty::Closure(..)
2061             | ty::Never
2062             | ty::Error(_)
2063             | ty::Foreign(..)
2064             // If returned by `struct_tail_without_normalization` this is a unit struct
2065             // without any fields, or not a struct, and therefore is Sized.
2066             | ty::Adt(..)
2067             // If returned by `struct_tail_without_normalization` this is the empty tuple,
2068             // a.k.a. unit type, which is Sized
2069             | ty::Tuple(..) => tcx.types.unit,
2070
2071             ty::Str | ty::Slice(_) => tcx.types.usize,
2072             ty::Dynamic(..) => {
2073                 let dyn_metadata = tcx.lang_items().dyn_metadata().unwrap();
2074                 tcx.type_of(dyn_metadata).subst(tcx, &[tail.into()])
2075             },
2076
2077             ty::Projection(_)
2078             | ty::Param(_)
2079             | ty::Opaque(..)
2080             | ty::Infer(ty::TyVar(_))
2081             | ty::Bound(..)
2082             | ty::Placeholder(..)
2083             | ty::Infer(ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2084                 bug!("`ptr_metadata_ty` applied to unexpected type: {:?}", tail)
2085             }
2086         }
2087     }
2088
2089     /// When we create a closure, we record its kind (i.e., what trait
2090     /// it implements) into its `ClosureSubsts` using a type
2091     /// parameter. This is kind of a phantom type, except that the
2092     /// most convenient thing for us to are the integral types. This
2093     /// function converts such a special type into the closure
2094     /// kind. To go the other way, use
2095     /// `tcx.closure_kind_ty(closure_kind)`.
2096     ///
2097     /// Note that during type checking, we use an inference variable
2098     /// to represent the closure kind, because it has not yet been
2099     /// inferred. Once upvar inference (in `src/librustc_typeck/check/upvar.rs`)
2100     /// is complete, that type variable will be unified.
2101     pub fn to_opt_closure_kind(&self) -> Option<ty::ClosureKind> {
2102         match self.kind() {
2103             Int(int_ty) => match int_ty {
2104                 ty::IntTy::I8 => Some(ty::ClosureKind::Fn),
2105                 ty::IntTy::I16 => Some(ty::ClosureKind::FnMut),
2106                 ty::IntTy::I32 => Some(ty::ClosureKind::FnOnce),
2107                 _ => bug!("cannot convert type `{:?}` to a closure kind", self),
2108             },
2109
2110             // "Bound" types appear in canonical queries when the
2111             // closure type is not yet known
2112             Bound(..) | Infer(_) => None,
2113
2114             Error(_) => Some(ty::ClosureKind::Fn),
2115
2116             _ => bug!("cannot convert type `{:?}` to a closure kind", self),
2117         }
2118     }
2119
2120     /// Fast path helper for testing if a type is `Sized`.
2121     ///
2122     /// Returning true means the type is known to be sized. Returning
2123     /// `false` means nothing -- could be sized, might not be.
2124     ///
2125     /// Note that we could never rely on the fact that a type such as `[_]` is
2126     /// trivially `!Sized` because we could be in a type environment with a
2127     /// bound such as `[_]: Copy`. A function with such a bound obviously never
2128     /// can be called, but that doesn't mean it shouldn't typecheck. This is why
2129     /// this method doesn't return `Option<bool>`.
2130     pub fn is_trivially_sized(&self, tcx: TyCtxt<'tcx>) -> bool {
2131         match self.kind() {
2132             ty::Infer(ty::IntVar(_) | ty::FloatVar(_))
2133             | ty::Uint(_)
2134             | ty::Int(_)
2135             | ty::Bool
2136             | ty::Float(_)
2137             | ty::FnDef(..)
2138             | ty::FnPtr(_)
2139             | ty::RawPtr(..)
2140             | ty::Char
2141             | ty::Ref(..)
2142             | ty::Generator(..)
2143             | ty::GeneratorWitness(..)
2144             | ty::Array(..)
2145             | ty::Closure(..)
2146             | ty::Never
2147             | ty::Error(_) => true,
2148
2149             ty::Str | ty::Slice(_) | ty::Dynamic(..) | ty::Foreign(..) => false,
2150
2151             ty::Tuple(tys) => tys.iter().all(|ty| ty.expect_ty().is_trivially_sized(tcx)),
2152
2153             ty::Adt(def, _substs) => def.sized_constraint(tcx).is_empty(),
2154
2155             ty::Projection(_) | ty::Param(_) | ty::Opaque(..) => false,
2156
2157             ty::Infer(ty::TyVar(_)) => false,
2158
2159             ty::Bound(..)
2160             | ty::Placeholder(..)
2161             | ty::Infer(ty::FreshTy(_) | ty::FreshIntTy(_) | ty::FreshFloatTy(_)) => {
2162                 bug!("`is_trivially_sized` applied to unexpected type: {:?}", self)
2163             }
2164         }
2165     }
2166 }