]> git.lizzy.rs Git - rust.git/blob - src/librustc/mir/mod.rs
Auto merge of #66385 - ecstatic-morse:check-only-pass2, r=eddyb
[rust.git] / src / librustc / mir / mod.rs
1 // ignore-tidy-filelength
2
3 //! MIR datatypes and passes. See the [rustc guide] for more info.
4 //!
5 //! [rustc guide]: https://rust-lang.github.io/rustc-guide/mir/index.html
6
7 use crate::hir::def::{CtorKind, Namespace};
8 use crate::hir::def_id::DefId;
9 use crate::hir::{self, InlineAsm as HirInlineAsm};
10 use crate::mir::interpret::{PanicInfo, Scalar};
11 use crate::mir::visit::MirVisitable;
12 use crate::ty::adjustment::PointerCast;
13 use crate::ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
14 use crate::ty::layout::VariantIdx;
15 use crate::ty::print::{FmtPrinter, Printer};
16 use crate::ty::subst::{Subst, SubstsRef};
17 use crate::ty::{
18     self, AdtDef, CanonicalUserTypeAnnotations, List, Region, Ty, TyCtxt, UserTypeAnnotationIndex,
19 };
20
21 use polonius_engine::Atom;
22 use rustc_index::bit_set::BitMatrix;
23 use rustc_data_structures::fx::FxHashSet;
24 use rustc_data_structures::graph::dominators::{dominators, Dominators};
25 use rustc_data_structures::graph::{self, GraphPredecessors, GraphSuccessors};
26 use rustc_index::vec::{Idx, IndexVec};
27 use rustc_data_structures::sync::Lrc;
28 use rustc_data_structures::sync::MappedReadGuard;
29 use rustc_macros::HashStable;
30 use rustc_serialize::{Encodable, Decodable};
31 use smallvec::SmallVec;
32 use std::borrow::Cow;
33 use std::fmt::{self, Debug, Display, Formatter, Write};
34 use std::ops::{Index, IndexMut};
35 use std::slice;
36 use std::vec::IntoIter;
37 use std::{iter, mem, option, u32};
38 use syntax::ast::Name;
39 use syntax::symbol::Symbol;
40 use syntax_pos::{Span, DUMMY_SP};
41
42 pub use crate::mir::interpret::AssertMessage;
43
44 mod cache;
45 pub mod interpret;
46 pub mod mono;
47 pub mod tcx;
48 pub mod traversal;
49 pub mod visit;
50
51 /// Types for locals
52 type LocalDecls<'tcx> = IndexVec<Local, LocalDecl<'tcx>>;
53
54 pub trait HasLocalDecls<'tcx> {
55     fn local_decls(&self) -> &LocalDecls<'tcx>;
56 }
57
58 impl<'tcx> HasLocalDecls<'tcx> for LocalDecls<'tcx> {
59     fn local_decls(&self) -> &LocalDecls<'tcx> {
60         self
61     }
62 }
63
64 impl<'tcx> HasLocalDecls<'tcx> for Body<'tcx> {
65     fn local_decls(&self) -> &LocalDecls<'tcx> {
66         &self.local_decls
67     }
68 }
69
70 /// The various "big phases" that MIR goes through.
71 ///
72 /// Warning: ordering of variants is significant.
73 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Debug, PartialEq, Eq, PartialOrd, Ord)]
74 pub enum MirPhase {
75     Build = 0,
76     Const = 1,
77     Validated = 2,
78     Optimized = 3,
79 }
80
81 impl MirPhase {
82     /// Gets the index of the current MirPhase within the set of all `MirPhase`s.
83     pub fn phase_index(&self) -> usize {
84         *self as usize
85     }
86 }
87
88 /// The lowered representation of a single function.
89 #[derive(Clone, RustcEncodable, RustcDecodable, Debug, TypeFoldable)]
90 pub struct Body<'tcx> {
91     /// A list of basic blocks. References to basic block use a newtyped index type `BasicBlock`
92     /// that indexes into this vector.
93     basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
94
95     /// Records how far through the "desugaring and optimization" process this particular
96     /// MIR has traversed. This is particularly useful when inlining, since in that context
97     /// we instantiate the promoted constants and add them to our promoted vector -- but those
98     /// promoted items have already been optimized, whereas ours have not. This field allows
99     /// us to see the difference and forego optimization on the inlined promoted items.
100     pub phase: MirPhase,
101
102     /// A list of source scopes; these are referenced by statements
103     /// and used for debuginfo. Indexed by a `SourceScope`.
104     pub source_scopes: IndexVec<SourceScope, SourceScopeData>,
105
106     /// Crate-local information for each source scope, that can't (and
107     /// needn't) be tracked across crates.
108     pub source_scope_local_data: ClearCrossCrate<IndexVec<SourceScope, SourceScopeLocalData>>,
109
110     /// The yield type of the function, if it is a generator.
111     pub yield_ty: Option<Ty<'tcx>>,
112
113     /// Generator drop glue.
114     pub generator_drop: Option<Box<Body<'tcx>>>,
115
116     /// The layout of a generator. Produced by the state transformation.
117     pub generator_layout: Option<GeneratorLayout<'tcx>>,
118
119     /// Declarations of locals.
120     ///
121     /// The first local is the return value pointer, followed by `arg_count`
122     /// locals for the function arguments, followed by any user-declared
123     /// variables and temporaries.
124     pub local_decls: LocalDecls<'tcx>,
125
126     /// User type annotations.
127     pub user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
128
129     /// The number of arguments this function takes.
130     ///
131     /// Starting at local 1, `arg_count` locals will be provided by the caller
132     /// and can be assumed to be initialized.
133     ///
134     /// If this MIR was built for a constant, this will be 0.
135     pub arg_count: usize,
136
137     /// Mark an argument local (which must be a tuple) as getting passed as
138     /// its individual components at the LLVM level.
139     ///
140     /// This is used for the "rust-call" ABI.
141     pub spread_arg: Option<Local>,
142
143     /// Names and capture modes of all the closure upvars, assuming
144     /// the first argument is either the closure or a reference to it.
145     //
146     // NOTE(eddyb) This is *strictly* a temporary hack for codegen
147     // debuginfo generation, and will be removed at some point.
148     // Do **NOT** use it for anything else; upvar information should not be
149     // in the MIR, so please rely on local crate HIR or other side-channels.
150     pub __upvar_debuginfo_codegen_only_do_not_use: Vec<UpvarDebuginfo>,
151
152     /// Mark this MIR of a const context other than const functions as having converted a `&&` or
153     /// `||` expression into `&` or `|` respectively. This is problematic because if we ever stop
154     /// this conversion from happening and use short circuiting, we will cause the following code
155     /// to change the value of `x`: `let mut x = 42; false && { x = 55; true };`
156     ///
157     /// List of places where control flow was destroyed. Used for error reporting.
158     pub control_flow_destroyed: Vec<(Span, String)>,
159
160     /// A span representing this MIR, for error reporting.
161     pub span: Span,
162
163     /// A cache for various calculations.
164     cache: cache::Cache,
165 }
166
167 impl<'tcx> Body<'tcx> {
168     pub fn new(
169         basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
170         source_scopes: IndexVec<SourceScope, SourceScopeData>,
171         source_scope_local_data: ClearCrossCrate<IndexVec<SourceScope, SourceScopeLocalData>>,
172         yield_ty: Option<Ty<'tcx>>,
173         local_decls: LocalDecls<'tcx>,
174         user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
175         arg_count: usize,
176         __upvar_debuginfo_codegen_only_do_not_use: Vec<UpvarDebuginfo>,
177         span: Span,
178         control_flow_destroyed: Vec<(Span, String)>,
179     ) -> Self {
180         // We need `arg_count` locals, and one for the return place.
181         assert!(
182             local_decls.len() >= arg_count + 1,
183             "expected at least {} locals, got {}",
184             arg_count + 1,
185             local_decls.len()
186         );
187
188         Body {
189             phase: MirPhase::Build,
190             basic_blocks,
191             source_scopes,
192             source_scope_local_data,
193             yield_ty,
194             generator_drop: None,
195             generator_layout: None,
196             local_decls,
197             user_type_annotations,
198             arg_count,
199             __upvar_debuginfo_codegen_only_do_not_use,
200             spread_arg: None,
201             span,
202             cache: cache::Cache::new(),
203             control_flow_destroyed,
204         }
205     }
206
207     #[inline]
208     pub fn basic_blocks(&self) -> &IndexVec<BasicBlock, BasicBlockData<'tcx>> {
209         &self.basic_blocks
210     }
211
212     #[inline]
213     pub fn basic_blocks_mut(&mut self) -> &mut IndexVec<BasicBlock, BasicBlockData<'tcx>> {
214         self.cache.invalidate();
215         &mut self.basic_blocks
216     }
217
218     #[inline]
219     pub fn basic_blocks_and_local_decls_mut(
220         &mut self,
221     ) -> (&mut IndexVec<BasicBlock, BasicBlockData<'tcx>>, &mut LocalDecls<'tcx>) {
222         self.cache.invalidate();
223         (&mut self.basic_blocks, &mut self.local_decls)
224     }
225
226     #[inline]
227     pub fn predecessors(&self) -> MappedReadGuard<'_, IndexVec<BasicBlock, Vec<BasicBlock>>> {
228         self.cache.predecessors(self)
229     }
230
231     #[inline]
232     pub fn predecessors_for(&self, bb: BasicBlock) -> MappedReadGuard<'_, Vec<BasicBlock>> {
233         MappedReadGuard::map(self.predecessors(), |p| &p[bb])
234     }
235
236     #[inline]
237     pub fn predecessor_locations(&self, loc: Location) -> impl Iterator<Item = Location> + '_ {
238         let if_zero_locations = if loc.statement_index == 0 {
239             let predecessor_blocks = self.predecessors_for(loc.block);
240             let num_predecessor_blocks = predecessor_blocks.len();
241             Some(
242                 (0..num_predecessor_blocks)
243                     .map(move |i| predecessor_blocks[i])
244                     .map(move |bb| self.terminator_loc(bb)),
245             )
246         } else {
247             None
248         };
249
250         let if_not_zero_locations = if loc.statement_index == 0 {
251             None
252         } else {
253             Some(Location { block: loc.block, statement_index: loc.statement_index - 1 })
254         };
255
256         if_zero_locations.into_iter().flatten().chain(if_not_zero_locations)
257     }
258
259     #[inline]
260     pub fn dominators(&self) -> Dominators<BasicBlock> {
261         dominators(self)
262     }
263
264     /// Returns `true` if a cycle exists in the control-flow graph that is reachable from the
265     /// `START_BLOCK`.
266     pub fn is_cfg_cyclic(&self) -> bool {
267         graph::is_cyclic(self)
268     }
269
270     #[inline]
271     pub fn local_kind(&self, local: Local) -> LocalKind {
272         let index = local.as_usize();
273         if index == 0 {
274             debug_assert!(
275                 self.local_decls[local].mutability == Mutability::Mut,
276                 "return place should be mutable"
277             );
278
279             LocalKind::ReturnPointer
280         } else if index < self.arg_count + 1 {
281             LocalKind::Arg
282         } else if self.local_decls[local].name.is_some() {
283             LocalKind::Var
284         } else {
285             LocalKind::Temp
286         }
287     }
288
289     /// Returns an iterator over all temporaries.
290     #[inline]
291     pub fn temps_iter<'a>(&'a self) -> impl Iterator<Item = Local> + 'a {
292         (self.arg_count + 1..self.local_decls.len()).filter_map(move |index| {
293             let local = Local::new(index);
294             if self.local_decls[local].is_user_variable.is_some() {
295                 None
296             } else {
297                 Some(local)
298             }
299         })
300     }
301
302     /// Returns an iterator over all user-declared locals.
303     #[inline]
304     pub fn vars_iter<'a>(&'a self) -> impl Iterator<Item = Local> + 'a {
305         (self.arg_count + 1..self.local_decls.len()).filter_map(move |index| {
306             let local = Local::new(index);
307             if self.local_decls[local].is_user_variable.is_some() {
308                 Some(local)
309             } else {
310                 None
311             }
312         })
313     }
314
315     /// Returns an iterator over all user-declared mutable locals.
316     #[inline]
317     pub fn mut_vars_iter<'a>(&'a self) -> impl Iterator<Item = Local> + 'a {
318         (self.arg_count + 1..self.local_decls.len()).filter_map(move |index| {
319             let local = Local::new(index);
320             let decl = &self.local_decls[local];
321             if decl.is_user_variable.is_some() && decl.mutability == Mutability::Mut {
322                 Some(local)
323             } else {
324                 None
325             }
326         })
327     }
328
329     /// Returns an iterator over all user-declared mutable arguments and locals.
330     #[inline]
331     pub fn mut_vars_and_args_iter<'a>(&'a self) -> impl Iterator<Item = Local> + 'a {
332         (1..self.local_decls.len()).filter_map(move |index| {
333             let local = Local::new(index);
334             let decl = &self.local_decls[local];
335             if (decl.is_user_variable.is_some() || index < self.arg_count + 1)
336                 && decl.mutability == Mutability::Mut
337             {
338                 Some(local)
339             } else {
340                 None
341             }
342         })
343     }
344
345     /// Returns an iterator over all function arguments.
346     #[inline]
347     pub fn args_iter(&self) -> impl Iterator<Item = Local> {
348         let arg_count = self.arg_count;
349         (1..=arg_count).map(Local::new)
350     }
351
352     /// Returns an iterator over all user-defined variables and compiler-generated temporaries (all
353     /// locals that are neither arguments nor the return place).
354     #[inline]
355     pub fn vars_and_temps_iter(&self) -> impl Iterator<Item = Local> {
356         let arg_count = self.arg_count;
357         let local_count = self.local_decls.len();
358         (arg_count + 1..local_count).map(Local::new)
359     }
360
361     /// Changes a statement to a nop. This is both faster than deleting instructions and avoids
362     /// invalidating statement indices in `Location`s.
363     pub fn make_statement_nop(&mut self, location: Location) {
364         let block = &mut self[location.block];
365         debug_assert!(location.statement_index < block.statements.len());
366         block.statements[location.statement_index].make_nop()
367     }
368
369     /// Returns the source info associated with `location`.
370     pub fn source_info(&self, location: Location) -> &SourceInfo {
371         let block = &self[location.block];
372         let stmts = &block.statements;
373         let idx = location.statement_index;
374         if idx < stmts.len() {
375             &stmts[idx].source_info
376         } else {
377             assert_eq!(idx, stmts.len());
378             &block.terminator().source_info
379         }
380     }
381
382     /// Checks if `sub` is a sub scope of `sup`
383     pub fn is_sub_scope(&self, mut sub: SourceScope, sup: SourceScope) -> bool {
384         while sub != sup {
385             match self.source_scopes[sub].parent_scope {
386                 None => return false,
387                 Some(p) => sub = p,
388             }
389         }
390         true
391     }
392
393     /// Returns the return type; it always return first element from `local_decls` array.
394     pub fn return_ty(&self) -> Ty<'tcx> {
395         self.local_decls[RETURN_PLACE].ty
396     }
397
398     /// Gets the location of the terminator for the given block.
399     pub fn terminator_loc(&self, bb: BasicBlock) -> Location {
400         Location { block: bb, statement_index: self[bb].statements.len() }
401     }
402 }
403
404 #[derive(Copy, Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
405 pub enum Safety {
406     Safe,
407     /// Unsafe because of a PushUnsafeBlock
408     BuiltinUnsafe,
409     /// Unsafe because of an unsafe fn
410     FnUnsafe,
411     /// Unsafe because of an `unsafe` block
412     ExplicitUnsafe(hir::HirId),
413 }
414
415 impl_stable_hash_for!(struct Body<'tcx> {
416     phase,
417     basic_blocks,
418     source_scopes,
419     source_scope_local_data,
420     yield_ty,
421     generator_drop,
422     generator_layout,
423     local_decls,
424     user_type_annotations,
425     arg_count,
426     __upvar_debuginfo_codegen_only_do_not_use,
427     spread_arg,
428     control_flow_destroyed,
429     span,
430     cache
431 });
432
433 impl<'tcx> Index<BasicBlock> for Body<'tcx> {
434     type Output = BasicBlockData<'tcx>;
435
436     #[inline]
437     fn index(&self, index: BasicBlock) -> &BasicBlockData<'tcx> {
438         &self.basic_blocks()[index]
439     }
440 }
441
442 impl<'tcx> IndexMut<BasicBlock> for Body<'tcx> {
443     #[inline]
444     fn index_mut(&mut self, index: BasicBlock) -> &mut BasicBlockData<'tcx> {
445         &mut self.basic_blocks_mut()[index]
446     }
447 }
448
449 #[derive(Copy, Clone, Debug, HashStable, TypeFoldable)]
450 pub enum ClearCrossCrate<T> {
451     Clear,
452     Set(T),
453 }
454
455 impl<T> ClearCrossCrate<T> {
456     pub fn assert_crate_local(self) -> T {
457         match self {
458             ClearCrossCrate::Clear => bug!("unwrapping cross-crate data"),
459             ClearCrossCrate::Set(v) => v,
460         }
461     }
462 }
463
464 impl<T: Encodable> rustc_serialize::UseSpecializedEncodable for ClearCrossCrate<T> {}
465 impl<T: Decodable> rustc_serialize::UseSpecializedDecodable for ClearCrossCrate<T> {}
466
467 /// Grouped information about the source code origin of a MIR entity.
468 /// Intended to be inspected by diagnostics and debuginfo.
469 /// Most passes can work with it as a whole, within a single function.
470 // The unoffical Cranelift backend, at least as of #65828, needs `SourceInfo` to implement `Eq` and
471 // `Hash`. Please ping @bjorn3 if removing them.
472 #[derive(Copy, Clone, Debug, Eq, PartialEq, RustcEncodable, RustcDecodable, Hash, HashStable)]
473 pub struct SourceInfo {
474     /// The source span for the AST pertaining to this MIR entity.
475     pub span: Span,
476
477     /// The source scope, keeping track of which bindings can be
478     /// seen by debuginfo, active lint levels, `unsafe {...}`, etc.
479     pub scope: SourceScope,
480 }
481
482 ///////////////////////////////////////////////////////////////////////////
483 // Mutability and borrow kinds
484
485 #[derive(Copy, Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
486 pub enum Mutability {
487     Mut,
488     Not,
489 }
490
491 impl From<Mutability> for hir::Mutability {
492     fn from(m: Mutability) -> Self {
493         match m {
494             Mutability::Mut => hir::Mutability::Mutable,
495             Mutability::Not => hir::Mutability::Immutable,
496         }
497     }
498 }
499
500 #[derive(
501     Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, RustcEncodable, RustcDecodable, HashStable,
502 )]
503 pub enum BorrowKind {
504     /// Data must be immutable and is aliasable.
505     Shared,
506
507     /// The immediately borrowed place must be immutable, but projections from
508     /// it don't need to be. For example, a shallow borrow of `a.b` doesn't
509     /// conflict with a mutable borrow of `a.b.c`.
510     ///
511     /// This is used when lowering matches: when matching on a place we want to
512     /// ensure that place have the same value from the start of the match until
513     /// an arm is selected. This prevents this code from compiling:
514     ///
515     ///     let mut x = &Some(0);
516     ///     match *x {
517     ///         None => (),
518     ///         Some(_) if { x = &None; false } => (),
519     ///         Some(_) => (),
520     ///     }
521     ///
522     /// This can't be a shared borrow because mutably borrowing (*x as Some).0
523     /// should not prevent `if let None = x { ... }`, for example, because the
524     /// mutating `(*x as Some).0` can't affect the discriminant of `x`.
525     /// We can also report errors with this kind of borrow differently.
526     Shallow,
527
528     /// Data must be immutable but not aliasable. This kind of borrow
529     /// cannot currently be expressed by the user and is used only in
530     /// implicit closure bindings. It is needed when the closure is
531     /// borrowing or mutating a mutable referent, e.g.:
532     ///
533     ///     let x: &mut isize = ...;
534     ///     let y = || *x += 5;
535     ///
536     /// If we were to try to translate this closure into a more explicit
537     /// form, we'd encounter an error with the code as written:
538     ///
539     ///     struct Env { x: & &mut isize }
540     ///     let x: &mut isize = ...;
541     ///     let y = (&mut Env { &x }, fn_ptr);  // Closure is pair of env and fn
542     ///     fn fn_ptr(env: &mut Env) { **env.x += 5; }
543     ///
544     /// This is then illegal because you cannot mutate an `&mut` found
545     /// in an aliasable location. To solve, you'd have to translate with
546     /// an `&mut` borrow:
547     ///
548     ///     struct Env { x: & &mut isize }
549     ///     let x: &mut isize = ...;
550     ///     let y = (&mut Env { &mut x }, fn_ptr); // changed from &x to &mut x
551     ///     fn fn_ptr(env: &mut Env) { **env.x += 5; }
552     ///
553     /// Now the assignment to `**env.x` is legal, but creating a
554     /// mutable pointer to `x` is not because `x` is not mutable. We
555     /// could fix this by declaring `x` as `let mut x`. This is ok in
556     /// user code, if awkward, but extra weird for closures, since the
557     /// borrow is hidden.
558     ///
559     /// So we introduce a "unique imm" borrow -- the referent is
560     /// immutable, but not aliasable. This solves the problem. For
561     /// simplicity, we don't give users the way to express this
562     /// borrow, it's just used when translating closures.
563     Unique,
564
565     /// Data is mutable and not aliasable.
566     Mut {
567         /// `true` if this borrow arose from method-call auto-ref
568         /// (i.e., `adjustment::Adjust::Borrow`).
569         allow_two_phase_borrow: bool,
570     },
571 }
572
573 impl BorrowKind {
574     pub fn allows_two_phase_borrow(&self) -> bool {
575         match *self {
576             BorrowKind::Shared | BorrowKind::Shallow | BorrowKind::Unique => false,
577             BorrowKind::Mut { allow_two_phase_borrow } => allow_two_phase_borrow,
578         }
579     }
580 }
581
582 ///////////////////////////////////////////////////////////////////////////
583 // Variables and temps
584
585 rustc_index::newtype_index! {
586     pub struct Local {
587         derive [HashStable]
588         DEBUG_FORMAT = "_{}",
589         const RETURN_PLACE = 0,
590     }
591 }
592
593 impl Atom for Local {
594     fn index(self) -> usize {
595         Idx::index(self)
596     }
597 }
598
599 /// Classifies locals into categories. See `Body::local_kind`.
600 #[derive(PartialEq, Eq, Debug, HashStable)]
601 pub enum LocalKind {
602     /// User-declared variable binding.
603     Var,
604     /// Compiler-introduced temporary.
605     Temp,
606     /// Function argument.
607     Arg,
608     /// Location of function's return value.
609     ReturnPointer,
610 }
611
612 #[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
613 pub struct VarBindingForm<'tcx> {
614     /// Is variable bound via `x`, `mut x`, `ref x`, or `ref mut x`?
615     pub binding_mode: ty::BindingMode,
616     /// If an explicit type was provided for this variable binding,
617     /// this holds the source Span of that type.
618     ///
619     /// NOTE: if you want to change this to a `HirId`, be wary that
620     /// doing so breaks incremental compilation (as of this writing),
621     /// while a `Span` does not cause our tests to fail.
622     pub opt_ty_info: Option<Span>,
623     /// Place of the RHS of the =, or the subject of the `match` where this
624     /// variable is initialized. None in the case of `let PATTERN;`.
625     /// Some((None, ..)) in the case of and `let [mut] x = ...` because
626     /// (a) the right-hand side isn't evaluated as a place expression.
627     /// (b) it gives a way to separate this case from the remaining cases
628     ///     for diagnostics.
629     pub opt_match_place: Option<(Option<Place<'tcx>>, Span)>,
630     /// The span of the pattern in which this variable was bound.
631     pub pat_span: Span,
632 }
633
634 #[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
635 pub enum BindingForm<'tcx> {
636     /// This is a binding for a non-`self` binding, or a `self` that has an explicit type.
637     Var(VarBindingForm<'tcx>),
638     /// Binding for a `self`/`&self`/`&mut self` binding where the type is implicit.
639     ImplicitSelf(ImplicitSelfKind),
640     /// Reference used in a guard expression to ensure immutability.
641     RefForGuard,
642 }
643
644 /// Represents what type of implicit self a function has, if any.
645 #[derive(Clone, Copy, PartialEq, Debug, RustcEncodable, RustcDecodable)]
646 pub enum ImplicitSelfKind {
647     /// Represents a `fn x(self);`.
648     Imm,
649     /// Represents a `fn x(mut self);`.
650     Mut,
651     /// Represents a `fn x(&self);`.
652     ImmRef,
653     /// Represents a `fn x(&mut self);`.
654     MutRef,
655     /// Represents when a function does not have a self argument or
656     /// when a function has a `self: X` argument.
657     None,
658 }
659
660 CloneTypeFoldableAndLiftImpls! { BindingForm<'tcx>, }
661
662 impl_stable_hash_for!(struct self::VarBindingForm<'tcx> {
663     binding_mode,
664     opt_ty_info,
665     opt_match_place,
666     pat_span
667 });
668
669 impl_stable_hash_for!(enum self::ImplicitSelfKind {
670     Imm,
671     Mut,
672     ImmRef,
673     MutRef,
674     None
675 });
676
677 impl_stable_hash_for!(enum self::MirPhase {
678     Build,
679     Const,
680     Validated,
681     Optimized,
682 });
683
684 mod binding_form_impl {
685     use crate::ich::StableHashingContext;
686     use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
687
688     impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for super::BindingForm<'tcx> {
689         fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
690             use super::BindingForm::*;
691             ::std::mem::discriminant(self).hash_stable(hcx, hasher);
692
693             match self {
694                 Var(binding) => binding.hash_stable(hcx, hasher),
695                 ImplicitSelf(kind) => kind.hash_stable(hcx, hasher),
696                 RefForGuard => (),
697             }
698         }
699     }
700 }
701
702 /// `BlockTailInfo` is attached to the `LocalDecl` for temporaries
703 /// created during evaluation of expressions in a block tail
704 /// expression; that is, a block like `{ STMT_1; STMT_2; EXPR }`.
705 ///
706 /// It is used to improve diagnostics when such temporaries are
707 /// involved in borrow_check errors, e.g., explanations of where the
708 /// temporaries come from, when their destructors are run, and/or how
709 /// one might revise the code to satisfy the borrow checker's rules.
710 #[derive(Clone, Debug, RustcEncodable, RustcDecodable)]
711 pub struct BlockTailInfo {
712     /// If `true`, then the value resulting from evaluating this tail
713     /// expression is ignored by the block's expression context.
714     ///
715     /// Examples include `{ ...; tail };` and `let _ = { ...; tail };`
716     /// but not e.g., `let _x = { ...; tail };`
717     pub tail_result_is_ignored: bool,
718 }
719
720 impl_stable_hash_for!(struct BlockTailInfo { tail_result_is_ignored });
721
722 /// A MIR local.
723 ///
724 /// This can be a binding declared by the user, a temporary inserted by the compiler, a function
725 /// argument, or the return place.
726 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
727 pub struct LocalDecl<'tcx> {
728     /// Whether this is a mutable minding (i.e., `let x` or `let mut x`).
729     ///
730     /// Temporaries and the return place are always mutable.
731     pub mutability: Mutability,
732
733     /// `Some(binding_mode)` if this corresponds to a user-declared local variable.
734     ///
735     /// This is solely used for local diagnostics when generating
736     /// warnings/errors when compiling the current crate, and
737     /// therefore it need not be visible across crates. pnkfelix
738     /// currently hypothesized we *need* to wrap this in a
739     /// `ClearCrossCrate` as long as it carries as `HirId`.
740     pub is_user_variable: Option<ClearCrossCrate<BindingForm<'tcx>>>,
741
742     /// `true` if this is an internal local.
743     ///
744     /// These locals are not based on types in the source code and are only used
745     /// for a few desugarings at the moment.
746     ///
747     /// The generator transformation will sanity check the locals which are live
748     /// across a suspension point against the type components of the generator
749     /// which type checking knows are live across a suspension point. We need to
750     /// flag drop flags to avoid triggering this check as they are introduced
751     /// after typeck.
752     ///
753     /// Unsafety checking will also ignore dereferences of these locals,
754     /// so they can be used for raw pointers only used in a desugaring.
755     ///
756     /// This should be sound because the drop flags are fully algebraic, and
757     /// therefore don't affect the OIBIT or outlives properties of the
758     /// generator.
759     pub internal: bool,
760
761     /// If this local is a temporary and `is_block_tail` is `Some`,
762     /// then it is a temporary created for evaluation of some
763     /// subexpression of some block's tail expression (with no
764     /// intervening statement context).
765     pub is_block_tail: Option<BlockTailInfo>,
766
767     /// The type of this local.
768     pub ty: Ty<'tcx>,
769
770     /// If the user manually ascribed a type to this variable,
771     /// e.g., via `let x: T`, then we carry that type here. The MIR
772     /// borrow checker needs this information since it can affect
773     /// region inference.
774     pub user_ty: UserTypeProjections,
775
776     /// The name of the local, used in debuginfo and pretty-printing.
777     ///
778     /// Note that function arguments can also have this set to `Some(_)`
779     /// to generate better debuginfo.
780     pub name: Option<Name>,
781
782     /// The *syntactic* (i.e., not visibility) source scope the local is defined
783     /// in. If the local was defined in a let-statement, this
784     /// is *within* the let-statement, rather than outside
785     /// of it.
786     ///
787     /// This is needed because the visibility source scope of locals within
788     /// a let-statement is weird.
789     ///
790     /// The reason is that we want the local to be *within* the let-statement
791     /// for lint purposes, but we want the local to be *after* the let-statement
792     /// for names-in-scope purposes.
793     ///
794     /// That's it, if we have a let-statement like the one in this
795     /// function:
796     ///
797     /// ```
798     /// fn foo(x: &str) {
799     ///     #[allow(unused_mut)]
800     ///     let mut x: u32 = { // <- one unused mut
801     ///         let mut y: u32 = x.parse().unwrap();
802     ///         y + 2
803     ///     };
804     ///     drop(x);
805     /// }
806     /// ```
807     ///
808     /// Then, from a lint point of view, the declaration of `x: u32`
809     /// (and `y: u32`) are within the `#[allow(unused_mut)]` scope - the
810     /// lint scopes are the same as the AST/HIR nesting.
811     ///
812     /// However, from a name lookup point of view, the scopes look more like
813     /// as if the let-statements were `match` expressions:
814     ///
815     /// ```
816     /// fn foo(x: &str) {
817     ///     match {
818     ///         match x.parse().unwrap() {
819     ///             y => y + 2
820     ///         }
821     ///     } {
822     ///         x => drop(x)
823     ///     };
824     /// }
825     /// ```
826     ///
827     /// We care about the name-lookup scopes for debuginfo - if the
828     /// debuginfo instruction pointer is at the call to `x.parse()`, we
829     /// want `x` to refer to `x: &str`, but if it is at the call to
830     /// `drop(x)`, we want it to refer to `x: u32`.
831     ///
832     /// To allow both uses to work, we need to have more than a single scope
833     /// for a local. We have the `source_info.scope` represent the
834     /// "syntactic" lint scope (with a variable being under its let
835     /// block) while the `visibility_scope` represents the "local variable"
836     /// scope (where the "rest" of a block is under all prior let-statements).
837     ///
838     /// The end result looks like this:
839     ///
840     /// ```text
841     /// ROOT SCOPE
842     ///  │{ argument x: &str }
843     ///  │
844     ///  │ │{ #[allow(unused_mut)] } // This is actually split into 2 scopes
845     ///  │ │                         // in practice because I'm lazy.
846     ///  │ │
847     ///  │ │← x.source_info.scope
848     ///  │ │← `x.parse().unwrap()`
849     ///  │ │
850     ///  │ │ │← y.source_info.scope
851     ///  │ │
852     ///  │ │ │{ let y: u32 }
853     ///  │ │ │
854     ///  │ │ │← y.visibility_scope
855     ///  │ │ │← `y + 2`
856     ///  │
857     ///  │ │{ let x: u32 }
858     ///  │ │← x.visibility_scope
859     ///  │ │← `drop(x)` // This accesses `x: u32`.
860     /// ```
861     pub source_info: SourceInfo,
862
863     /// Source scope within which the local is visible (for debuginfo)
864     /// (see `source_info` for more details).
865     pub visibility_scope: SourceScope,
866 }
867
868 impl<'tcx> LocalDecl<'tcx> {
869     /// Returns `true` only if local is a binding that can itself be
870     /// made mutable via the addition of the `mut` keyword, namely
871     /// something like the occurrences of `x` in:
872     /// - `fn foo(x: Type) { ... }`,
873     /// - `let x = ...`,
874     /// - or `match ... { C(x) => ... }`
875     pub fn can_be_made_mutable(&self) -> bool {
876         match self.is_user_variable {
877             Some(ClearCrossCrate::Set(BindingForm::Var(VarBindingForm {
878                 binding_mode: ty::BindingMode::BindByValue(_),
879                 opt_ty_info: _,
880                 opt_match_place: _,
881                 pat_span: _,
882             }))) => true,
883
884             Some(ClearCrossCrate::Set(BindingForm::ImplicitSelf(ImplicitSelfKind::Imm))) => true,
885
886             _ => false,
887         }
888     }
889
890     /// Returns `true` if local is definitely not a `ref ident` or
891     /// `ref mut ident` binding. (Such bindings cannot be made into
892     /// mutable bindings, but the inverse does not necessarily hold).
893     pub fn is_nonref_binding(&self) -> bool {
894         match self.is_user_variable {
895             Some(ClearCrossCrate::Set(BindingForm::Var(VarBindingForm {
896                 binding_mode: ty::BindingMode::BindByValue(_),
897                 opt_ty_info: _,
898                 opt_match_place: _,
899                 pat_span: _,
900             }))) => true,
901
902             Some(ClearCrossCrate::Set(BindingForm::ImplicitSelf(_))) => true,
903
904             _ => false,
905         }
906     }
907
908     /// Returns `true` if this is a reference to a variable bound in a `match`
909     /// expression that is used to access said variable for the guard of the
910     /// match arm.
911     pub fn is_ref_for_guard(&self) -> bool {
912         match self.is_user_variable {
913             Some(ClearCrossCrate::Set(BindingForm::RefForGuard)) => true,
914             _ => false,
915         }
916     }
917
918     /// Returns `true` is the local is from a compiler desugaring, e.g.,
919     /// `__next` from a `for` loop.
920     #[inline]
921     pub fn from_compiler_desugaring(&self) -> bool {
922         self.source_info.span.desugaring_kind().is_some()
923     }
924
925     /// Creates a new `LocalDecl` for a temporary.
926     #[inline]
927     pub fn new_temp(ty: Ty<'tcx>, span: Span) -> Self {
928         Self::new_local(ty, Mutability::Mut, false, span)
929     }
930
931     /// Converts `self` into same `LocalDecl` except tagged as immutable.
932     #[inline]
933     pub fn immutable(mut self) -> Self {
934         self.mutability = Mutability::Not;
935         self
936     }
937
938     /// Converts `self` into same `LocalDecl` except tagged as internal temporary.
939     #[inline]
940     pub fn block_tail(mut self, info: BlockTailInfo) -> Self {
941         assert!(self.is_block_tail.is_none());
942         self.is_block_tail = Some(info);
943         self
944     }
945
946     /// Creates a new `LocalDecl` for a internal temporary.
947     #[inline]
948     pub fn new_internal(ty: Ty<'tcx>, span: Span) -> Self {
949         Self::new_local(ty, Mutability::Mut, true, span)
950     }
951
952     #[inline]
953     fn new_local(ty: Ty<'tcx>, mutability: Mutability, internal: bool, span: Span) -> Self {
954         LocalDecl {
955             mutability,
956             ty,
957             user_ty: UserTypeProjections::none(),
958             name: None,
959             source_info: SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE },
960             visibility_scope: OUTERMOST_SOURCE_SCOPE,
961             internal,
962             is_user_variable: None,
963             is_block_tail: None,
964         }
965     }
966
967     /// Builds a `LocalDecl` for the return place.
968     ///
969     /// This must be inserted into the `local_decls` list as the first local.
970     #[inline]
971     pub fn new_return_place(return_ty: Ty<'_>, span: Span) -> LocalDecl<'_> {
972         LocalDecl {
973             mutability: Mutability::Mut,
974             ty: return_ty,
975             user_ty: UserTypeProjections::none(),
976             source_info: SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE },
977             visibility_scope: OUTERMOST_SOURCE_SCOPE,
978             internal: false,
979             is_block_tail: None,
980             name: None, // FIXME maybe we do want some name here?
981             is_user_variable: None,
982         }
983     }
984 }
985
986 /// A closure capture, with its name and mode.
987 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
988 pub struct UpvarDebuginfo {
989     pub debug_name: Name,
990
991     /// If true, the capture is behind a reference.
992     pub by_ref: bool,
993 }
994
995 ///////////////////////////////////////////////////////////////////////////
996 // BasicBlock
997
998 rustc_index::newtype_index! {
999     pub struct BasicBlock {
1000         derive [HashStable]
1001         DEBUG_FORMAT = "bb{}",
1002         const START_BLOCK = 0,
1003     }
1004 }
1005
1006 impl BasicBlock {
1007     pub fn start_location(self) -> Location {
1008         Location { block: self, statement_index: 0 }
1009     }
1010 }
1011
1012 ///////////////////////////////////////////////////////////////////////////
1013 // BasicBlockData and Terminator
1014
1015 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
1016 pub struct BasicBlockData<'tcx> {
1017     /// List of statements in this block.
1018     pub statements: Vec<Statement<'tcx>>,
1019
1020     /// Terminator for this block.
1021     ///
1022     /// N.B., this should generally ONLY be `None` during construction.
1023     /// Therefore, you should generally access it via the
1024     /// `terminator()` or `terminator_mut()` methods. The only
1025     /// exception is that certain passes, such as `simplify_cfg`, swap
1026     /// out the terminator temporarily with `None` while they continue
1027     /// to recurse over the set of basic blocks.
1028     pub terminator: Option<Terminator<'tcx>>,
1029
1030     /// If true, this block lies on an unwind path. This is used
1031     /// during codegen where distinct kinds of basic blocks may be
1032     /// generated (particularly for MSVC cleanup). Unwind blocks must
1033     /// only branch to other unwind blocks.
1034     pub is_cleanup: bool,
1035 }
1036
1037 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
1038 pub struct Terminator<'tcx> {
1039     pub source_info: SourceInfo,
1040     pub kind: TerminatorKind<'tcx>,
1041 }
1042
1043 #[derive(Clone, RustcEncodable, RustcDecodable, HashStable)]
1044 pub enum TerminatorKind<'tcx> {
1045     /// Block should have one successor in the graph; we jump there.
1046     Goto { target: BasicBlock },
1047
1048     /// Operand evaluates to an integer; jump depending on its value
1049     /// to one of the targets, and otherwise fallback to `otherwise`.
1050     SwitchInt {
1051         /// The discriminant value being tested.
1052         discr: Operand<'tcx>,
1053
1054         /// The type of value being tested.
1055         switch_ty: Ty<'tcx>,
1056
1057         /// Possible values. The locations to branch to in each case
1058         /// are found in the corresponding indices from the `targets` vector.
1059         values: Cow<'tcx, [u128]>,
1060
1061         /// Possible branch sites. The last element of this vector is used
1062         /// for the otherwise branch, so targets.len() == values.len() + 1
1063         /// should hold.
1064         //
1065         // This invariant is quite non-obvious and also could be improved.
1066         // One way to make this invariant is to have something like this instead:
1067         //
1068         // branches: Vec<(ConstInt, BasicBlock)>,
1069         // otherwise: Option<BasicBlock> // exhaustive if None
1070         //
1071         // However we’ve decided to keep this as-is until we figure a case
1072         // where some other approach seems to be strictly better than other.
1073         targets: Vec<BasicBlock>,
1074     },
1075
1076     /// Indicates that the landing pad is finished and unwinding should
1077     /// continue. Emitted by `build::scope::diverge_cleanup`.
1078     Resume,
1079
1080     /// Indicates that the landing pad is finished and that the process
1081     /// should abort. Used to prevent unwinding for foreign items.
1082     Abort,
1083
1084     /// Indicates a normal return. The return place should have
1085     /// been filled in by now. This should occur at most once.
1086     Return,
1087
1088     /// Indicates a terminator that can never be reached.
1089     Unreachable,
1090
1091     /// Drop the `Place`.
1092     Drop { location: Place<'tcx>, target: BasicBlock, unwind: Option<BasicBlock> },
1093
1094     /// Drop the `Place` and assign the new value over it. This ensures
1095     /// that the assignment to `P` occurs *even if* the destructor for
1096     /// place unwinds. Its semantics are best explained by the
1097     /// elaboration:
1098     ///
1099     /// ```
1100     /// BB0 {
1101     ///   DropAndReplace(P <- V, goto BB1, unwind BB2)
1102     /// }
1103     /// ```
1104     ///
1105     /// becomes
1106     ///
1107     /// ```
1108     /// BB0 {
1109     ///   Drop(P, goto BB1, unwind BB2)
1110     /// }
1111     /// BB1 {
1112     ///   // P is now uninitialized
1113     ///   P <- V
1114     /// }
1115     /// BB2 {
1116     ///   // P is now uninitialized -- its dtor panicked
1117     ///   P <- V
1118     /// }
1119     /// ```
1120     DropAndReplace {
1121         location: Place<'tcx>,
1122         value: Operand<'tcx>,
1123         target: BasicBlock,
1124         unwind: Option<BasicBlock>,
1125     },
1126
1127     /// Block ends with a call of a converging function.
1128     Call {
1129         /// The function that’s being called.
1130         func: Operand<'tcx>,
1131         /// Arguments the function is called with.
1132         /// These are owned by the callee, which is free to modify them.
1133         /// This allows the memory occupied by "by-value" arguments to be
1134         /// reused across function calls without duplicating the contents.
1135         args: Vec<Operand<'tcx>>,
1136         /// Destination for the return value. If some, the call is converging.
1137         destination: Option<(Place<'tcx>, BasicBlock)>,
1138         /// Cleanups to be done if the call unwinds.
1139         cleanup: Option<BasicBlock>,
1140         /// `true` if this is from a call in HIR rather than from an overloaded
1141         /// operator. True for overloaded function call.
1142         from_hir_call: bool,
1143     },
1144
1145     /// Jump to the target if the condition has the expected value,
1146     /// otherwise panic with a message and a cleanup target.
1147     Assert {
1148         cond: Operand<'tcx>,
1149         expected: bool,
1150         msg: AssertMessage<'tcx>,
1151         target: BasicBlock,
1152         cleanup: Option<BasicBlock>,
1153     },
1154
1155     /// A suspend point.
1156     Yield {
1157         /// The value to return.
1158         value: Operand<'tcx>,
1159         /// Where to resume to.
1160         resume: BasicBlock,
1161         /// Cleanup to be done if the generator is dropped at this suspend point.
1162         drop: Option<BasicBlock>,
1163     },
1164
1165     /// Indicates the end of the dropping of a generator.
1166     GeneratorDrop,
1167
1168     /// A block where control flow only ever takes one real path, but borrowck
1169     /// needs to be more conservative.
1170     FalseEdges {
1171         /// The target normal control flow will take.
1172         real_target: BasicBlock,
1173         /// A block control flow could conceptually jump to, but won't in
1174         /// practice.
1175         imaginary_target: BasicBlock,
1176     },
1177     /// A terminator for blocks that only take one path in reality, but where we
1178     /// reserve the right to unwind in borrowck, even if it won't happen in practice.
1179     /// This can arise in infinite loops with no function calls for example.
1180     FalseUnwind {
1181         /// The target normal control flow will take.
1182         real_target: BasicBlock,
1183         /// The imaginary cleanup block link. This particular path will never be taken
1184         /// in practice, but in order to avoid fragility we want to always
1185         /// consider it in borrowck. We don't want to accept programs which
1186         /// pass borrowck only when `panic=abort` or some assertions are disabled
1187         /// due to release vs. debug mode builds. This needs to be an `Option` because
1188         /// of the `remove_noop_landing_pads` and `no_landing_pads` passes.
1189         unwind: Option<BasicBlock>,
1190     },
1191 }
1192
1193 pub type Successors<'a> =
1194     iter::Chain<option::IntoIter<&'a BasicBlock>, slice::Iter<'a, BasicBlock>>;
1195 pub type SuccessorsMut<'a> =
1196     iter::Chain<option::IntoIter<&'a mut BasicBlock>, slice::IterMut<'a, BasicBlock>>;
1197
1198 impl<'tcx> Terminator<'tcx> {
1199     pub fn successors(&self) -> Successors<'_> {
1200         self.kind.successors()
1201     }
1202
1203     pub fn successors_mut(&mut self) -> SuccessorsMut<'_> {
1204         self.kind.successors_mut()
1205     }
1206
1207     pub fn unwind(&self) -> Option<&Option<BasicBlock>> {
1208         self.kind.unwind()
1209     }
1210
1211     pub fn unwind_mut(&mut self) -> Option<&mut Option<BasicBlock>> {
1212         self.kind.unwind_mut()
1213     }
1214 }
1215
1216 impl<'tcx> TerminatorKind<'tcx> {
1217     pub fn if_(
1218         tcx: TyCtxt<'tcx>,
1219         cond: Operand<'tcx>,
1220         t: BasicBlock,
1221         f: BasicBlock,
1222     ) -> TerminatorKind<'tcx> {
1223         static BOOL_SWITCH_FALSE: &'static [u128] = &[0];
1224         TerminatorKind::SwitchInt {
1225             discr: cond,
1226             switch_ty: tcx.types.bool,
1227             values: From::from(BOOL_SWITCH_FALSE),
1228             targets: vec![f, t],
1229         }
1230     }
1231
1232     pub fn successors(&self) -> Successors<'_> {
1233         use self::TerminatorKind::*;
1234         match *self {
1235             Resume
1236             | Abort
1237             | GeneratorDrop
1238             | Return
1239             | Unreachable
1240             | Call { destination: None, cleanup: None, .. } => None.into_iter().chain(&[]),
1241             Goto { target: ref t }
1242             | Call { destination: None, cleanup: Some(ref t), .. }
1243             | Call { destination: Some((_, ref t)), cleanup: None, .. }
1244             | Yield { resume: ref t, drop: None, .. }
1245             | DropAndReplace { target: ref t, unwind: None, .. }
1246             | Drop { target: ref t, unwind: None, .. }
1247             | Assert { target: ref t, cleanup: None, .. }
1248             | FalseUnwind { real_target: ref t, unwind: None } => Some(t).into_iter().chain(&[]),
1249             Call { destination: Some((_, ref t)), cleanup: Some(ref u), .. }
1250             | Yield { resume: ref t, drop: Some(ref u), .. }
1251             | DropAndReplace { target: ref t, unwind: Some(ref u), .. }
1252             | Drop { target: ref t, unwind: Some(ref u), .. }
1253             | Assert { target: ref t, cleanup: Some(ref u), .. }
1254             | FalseUnwind { real_target: ref t, unwind: Some(ref u) } => {
1255                 Some(t).into_iter().chain(slice::from_ref(u))
1256             }
1257             SwitchInt { ref targets, .. } => None.into_iter().chain(&targets[..]),
1258             FalseEdges { ref real_target, ref imaginary_target } => {
1259                 Some(real_target).into_iter().chain(slice::from_ref(imaginary_target))
1260             }
1261         }
1262     }
1263
1264     pub fn successors_mut(&mut self) -> SuccessorsMut<'_> {
1265         use self::TerminatorKind::*;
1266         match *self {
1267             Resume
1268             | Abort
1269             | GeneratorDrop
1270             | Return
1271             | Unreachable
1272             | Call { destination: None, cleanup: None, .. } => None.into_iter().chain(&mut []),
1273             Goto { target: ref mut t }
1274             | Call { destination: None, cleanup: Some(ref mut t), .. }
1275             | Call { destination: Some((_, ref mut t)), cleanup: None, .. }
1276             | Yield { resume: ref mut t, drop: None, .. }
1277             | DropAndReplace { target: ref mut t, unwind: None, .. }
1278             | Drop { target: ref mut t, unwind: None, .. }
1279             | Assert { target: ref mut t, cleanup: None, .. }
1280             | FalseUnwind { real_target: ref mut t, unwind: None } => {
1281                 Some(t).into_iter().chain(&mut [])
1282             }
1283             Call { destination: Some((_, ref mut t)), cleanup: Some(ref mut u), .. }
1284             | Yield { resume: ref mut t, drop: Some(ref mut u), .. }
1285             | DropAndReplace { target: ref mut t, unwind: Some(ref mut u), .. }
1286             | Drop { target: ref mut t, unwind: Some(ref mut u), .. }
1287             | Assert { target: ref mut t, cleanup: Some(ref mut u), .. }
1288             | FalseUnwind { real_target: ref mut t, unwind: Some(ref mut u) } => {
1289                 Some(t).into_iter().chain(slice::from_mut(u))
1290             }
1291             SwitchInt { ref mut targets, .. } => None.into_iter().chain(&mut targets[..]),
1292             FalseEdges { ref mut real_target, ref mut imaginary_target } => {
1293                 Some(real_target).into_iter().chain(slice::from_mut(imaginary_target))
1294             }
1295         }
1296     }
1297
1298     pub fn unwind(&self) -> Option<&Option<BasicBlock>> {
1299         match *self {
1300             TerminatorKind::Goto { .. }
1301             | TerminatorKind::Resume
1302             | TerminatorKind::Abort
1303             | TerminatorKind::Return
1304             | TerminatorKind::Unreachable
1305             | TerminatorKind::GeneratorDrop
1306             | TerminatorKind::Yield { .. }
1307             | TerminatorKind::SwitchInt { .. }
1308             | TerminatorKind::FalseEdges { .. } => None,
1309             TerminatorKind::Call { cleanup: ref unwind, .. }
1310             | TerminatorKind::Assert { cleanup: ref unwind, .. }
1311             | TerminatorKind::DropAndReplace { ref unwind, .. }
1312             | TerminatorKind::Drop { ref unwind, .. }
1313             | TerminatorKind::FalseUnwind { ref unwind, .. } => Some(unwind),
1314         }
1315     }
1316
1317     pub fn unwind_mut(&mut self) -> Option<&mut Option<BasicBlock>> {
1318         match *self {
1319             TerminatorKind::Goto { .. }
1320             | TerminatorKind::Resume
1321             | TerminatorKind::Abort
1322             | TerminatorKind::Return
1323             | TerminatorKind::Unreachable
1324             | TerminatorKind::GeneratorDrop
1325             | TerminatorKind::Yield { .. }
1326             | TerminatorKind::SwitchInt { .. }
1327             | TerminatorKind::FalseEdges { .. } => None,
1328             TerminatorKind::Call { cleanup: ref mut unwind, .. }
1329             | TerminatorKind::Assert { cleanup: ref mut unwind, .. }
1330             | TerminatorKind::DropAndReplace { ref mut unwind, .. }
1331             | TerminatorKind::Drop { ref mut unwind, .. }
1332             | TerminatorKind::FalseUnwind { ref mut unwind, .. } => Some(unwind),
1333         }
1334     }
1335 }
1336
1337 impl<'tcx> BasicBlockData<'tcx> {
1338     pub fn new(terminator: Option<Terminator<'tcx>>) -> BasicBlockData<'tcx> {
1339         BasicBlockData { statements: vec![], terminator, is_cleanup: false }
1340     }
1341
1342     /// Accessor for terminator.
1343     ///
1344     /// Terminator may not be None after construction of the basic block is complete. This accessor
1345     /// provides a convenience way to reach the terminator.
1346     pub fn terminator(&self) -> &Terminator<'tcx> {
1347         self.terminator.as_ref().expect("invalid terminator state")
1348     }
1349
1350     pub fn terminator_mut(&mut self) -> &mut Terminator<'tcx> {
1351         self.terminator.as_mut().expect("invalid terminator state")
1352     }
1353
1354     pub fn retain_statements<F>(&mut self, mut f: F)
1355     where
1356         F: FnMut(&mut Statement<'_>) -> bool,
1357     {
1358         for s in &mut self.statements {
1359             if !f(s) {
1360                 s.make_nop();
1361             }
1362         }
1363     }
1364
1365     pub fn expand_statements<F, I>(&mut self, mut f: F)
1366     where
1367         F: FnMut(&mut Statement<'tcx>) -> Option<I>,
1368         I: iter::TrustedLen<Item = Statement<'tcx>>,
1369     {
1370         // Gather all the iterators we'll need to splice in, and their positions.
1371         let mut splices: Vec<(usize, I)> = vec![];
1372         let mut extra_stmts = 0;
1373         for (i, s) in self.statements.iter_mut().enumerate() {
1374             if let Some(mut new_stmts) = f(s) {
1375                 if let Some(first) = new_stmts.next() {
1376                     // We can already store the first new statement.
1377                     *s = first;
1378
1379                     // Save the other statements for optimized splicing.
1380                     let remaining = new_stmts.size_hint().0;
1381                     if remaining > 0 {
1382                         splices.push((i + 1 + extra_stmts, new_stmts));
1383                         extra_stmts += remaining;
1384                     }
1385                 } else {
1386                     s.make_nop();
1387                 }
1388             }
1389         }
1390
1391         // Splice in the new statements, from the end of the block.
1392         // FIXME(eddyb) This could be more efficient with a "gap buffer"
1393         // where a range of elements ("gap") is left uninitialized, with
1394         // splicing adding new elements to the end of that gap and moving
1395         // existing elements from before the gap to the end of the gap.
1396         // For now, this is safe code, emulating a gap but initializing it.
1397         let mut gap = self.statements.len()..self.statements.len() + extra_stmts;
1398         self.statements.resize(
1399             gap.end,
1400             Statement {
1401                 source_info: SourceInfo { span: DUMMY_SP, scope: OUTERMOST_SOURCE_SCOPE },
1402                 kind: StatementKind::Nop,
1403             },
1404         );
1405         for (splice_start, new_stmts) in splices.into_iter().rev() {
1406             let splice_end = splice_start + new_stmts.size_hint().0;
1407             while gap.end > splice_end {
1408                 gap.start -= 1;
1409                 gap.end -= 1;
1410                 self.statements.swap(gap.start, gap.end);
1411             }
1412             self.statements.splice(splice_start..splice_end, new_stmts);
1413             gap.end = splice_start;
1414         }
1415     }
1416
1417     pub fn visitable(&self, index: usize) -> &dyn MirVisitable<'tcx> {
1418         if index < self.statements.len() {
1419             &self.statements[index]
1420         } else {
1421             &self.terminator
1422         }
1423     }
1424 }
1425
1426 impl<'tcx> Debug for TerminatorKind<'tcx> {
1427     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1428         self.fmt_head(fmt)?;
1429         let successor_count = self.successors().count();
1430         let labels = self.fmt_successor_labels();
1431         assert_eq!(successor_count, labels.len());
1432
1433         match successor_count {
1434             0 => Ok(()),
1435
1436             1 => write!(fmt, " -> {:?}", self.successors().nth(0).unwrap()),
1437
1438             _ => {
1439                 write!(fmt, " -> [")?;
1440                 for (i, target) in self.successors().enumerate() {
1441                     if i > 0 {
1442                         write!(fmt, ", ")?;
1443                     }
1444                     write!(fmt, "{}: {:?}", labels[i], target)?;
1445                 }
1446                 write!(fmt, "]")
1447             }
1448         }
1449     }
1450 }
1451
1452 impl<'tcx> TerminatorKind<'tcx> {
1453     /// Writes the "head" part of the terminator; that is, its name and the data it uses to pick the
1454     /// successor basic block, if any. The only information not included is the list of possible
1455     /// successors, which may be rendered differently between the text and the graphviz format.
1456     pub fn fmt_head<W: Write>(&self, fmt: &mut W) -> fmt::Result {
1457         use self::TerminatorKind::*;
1458         match *self {
1459             Goto { .. } => write!(fmt, "goto"),
1460             SwitchInt { discr: ref place, .. } => write!(fmt, "switchInt({:?})", place),
1461             Return => write!(fmt, "return"),
1462             GeneratorDrop => write!(fmt, "generator_drop"),
1463             Resume => write!(fmt, "resume"),
1464             Abort => write!(fmt, "abort"),
1465             Yield { ref value, .. } => write!(fmt, "_1 = suspend({:?})", value),
1466             Unreachable => write!(fmt, "unreachable"),
1467             Drop { ref location, .. } => write!(fmt, "drop({:?})", location),
1468             DropAndReplace { ref location, ref value, .. } => {
1469                 write!(fmt, "replace({:?} <- {:?})", location, value)
1470             }
1471             Call { ref func, ref args, ref destination, .. } => {
1472                 if let Some((ref destination, _)) = *destination {
1473                     write!(fmt, "{:?} = ", destination)?;
1474                 }
1475                 write!(fmt, "{:?}(", func)?;
1476                 for (index, arg) in args.iter().enumerate() {
1477                     if index > 0 {
1478                         write!(fmt, ", ")?;
1479                     }
1480                     write!(fmt, "{:?}", arg)?;
1481                 }
1482                 write!(fmt, ")")
1483             }
1484             Assert { ref cond, expected, ref msg, .. } => {
1485                 write!(fmt, "assert(")?;
1486                 if !expected {
1487                     write!(fmt, "!")?;
1488                 }
1489                 write!(fmt, "{:?}, \"{:?}\")", cond, msg)
1490             }
1491             FalseEdges { .. } => write!(fmt, "falseEdges"),
1492             FalseUnwind { .. } => write!(fmt, "falseUnwind"),
1493         }
1494     }
1495
1496     /// Returns the list of labels for the edges to the successor basic blocks.
1497     pub fn fmt_successor_labels(&self) -> Vec<Cow<'static, str>> {
1498         use self::TerminatorKind::*;
1499         match *self {
1500             Return | Resume | Abort | Unreachable | GeneratorDrop => vec![],
1501             Goto { .. } => vec!["".into()],
1502             SwitchInt { ref values, switch_ty, .. } => ty::tls::with(|tcx| {
1503                 let param_env = ty::ParamEnv::empty();
1504                 let switch_ty = tcx.lift(&switch_ty).unwrap();
1505                 let size = tcx.layout_of(param_env.and(switch_ty)).unwrap().size;
1506                 values
1507                     .iter()
1508                     .map(|&u| {
1509                         ty::Const::from_scalar(
1510                             tcx,
1511                             Scalar::from_uint(u, size).into(),
1512                             switch_ty,
1513                         )
1514                         .to_string()
1515                         .into()
1516                     })
1517                     .chain(iter::once("otherwise".into()))
1518                     .collect()
1519             }),
1520             Call { destination: Some(_), cleanup: Some(_), .. } => {
1521                 vec!["return".into(), "unwind".into()]
1522             }
1523             Call { destination: Some(_), cleanup: None, .. } => vec!["return".into()],
1524             Call { destination: None, cleanup: Some(_), .. } => vec!["unwind".into()],
1525             Call { destination: None, cleanup: None, .. } => vec![],
1526             Yield { drop: Some(_), .. } => vec!["resume".into(), "drop".into()],
1527             Yield { drop: None, .. } => vec!["resume".into()],
1528             DropAndReplace { unwind: None, .. } | Drop { unwind: None, .. } => {
1529                 vec!["return".into()]
1530             }
1531             DropAndReplace { unwind: Some(_), .. } | Drop { unwind: Some(_), .. } => {
1532                 vec!["return".into(), "unwind".into()]
1533             }
1534             Assert { cleanup: None, .. } => vec!["".into()],
1535             Assert { .. } => vec!["success".into(), "unwind".into()],
1536             FalseEdges { .. } => vec!["real".into(), "imaginary".into()],
1537             FalseUnwind { unwind: Some(_), .. } => vec!["real".into(), "cleanup".into()],
1538             FalseUnwind { unwind: None, .. } => vec!["real".into()],
1539         }
1540     }
1541 }
1542
1543 ///////////////////////////////////////////////////////////////////////////
1544 // Statements
1545
1546 #[derive(Clone, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
1547 pub struct Statement<'tcx> {
1548     pub source_info: SourceInfo,
1549     pub kind: StatementKind<'tcx>,
1550 }
1551
1552 // `Statement` is used a lot. Make sure it doesn't unintentionally get bigger.
1553 #[cfg(target_arch = "x86_64")]
1554 static_assert_size!(Statement<'_>, 32);
1555
1556 impl Statement<'_> {
1557     /// Changes a statement to a nop. This is both faster than deleting instructions and avoids
1558     /// invalidating statement indices in `Location`s.
1559     pub fn make_nop(&mut self) {
1560         self.kind = StatementKind::Nop
1561     }
1562
1563     /// Changes a statement to a nop and returns the original statement.
1564     pub fn replace_nop(&mut self) -> Self {
1565         Statement {
1566             source_info: self.source_info,
1567             kind: mem::replace(&mut self.kind, StatementKind::Nop),
1568         }
1569     }
1570 }
1571
1572 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
1573 pub enum StatementKind<'tcx> {
1574     /// Write the RHS Rvalue to the LHS Place.
1575     Assign(Box<(Place<'tcx>, Rvalue<'tcx>)>),
1576
1577     /// This represents all the reading that a pattern match may do
1578     /// (e.g., inspecting constants and discriminant values), and the
1579     /// kind of pattern it comes from. This is in order to adapt potential
1580     /// error messages to these specific patterns.
1581     ///
1582     /// Note that this also is emitted for regular `let` bindings to ensure that locals that are
1583     /// never accessed still get some sanity checks for, e.g., `let x: ! = ..;`
1584     FakeRead(FakeReadCause, Box<Place<'tcx>>),
1585
1586     /// Write the discriminant for a variant to the enum Place.
1587     SetDiscriminant { place: Box<Place<'tcx>>, variant_index: VariantIdx },
1588
1589     /// Start a live range for the storage of the local.
1590     StorageLive(Local),
1591
1592     /// End the current live range for the storage of the local.
1593     StorageDead(Local),
1594
1595     /// Executes a piece of inline Assembly. Stored in a Box to keep the size
1596     /// of `StatementKind` low.
1597     InlineAsm(Box<InlineAsm<'tcx>>),
1598
1599     /// Retag references in the given place, ensuring they got fresh tags. This is
1600     /// part of the Stacked Borrows model. These statements are currently only interpreted
1601     /// by miri and only generated when "-Z mir-emit-retag" is passed.
1602     /// See <https://internals.rust-lang.org/t/stacked-borrows-an-aliasing-model-for-rust/8153/>
1603     /// for more details.
1604     Retag(RetagKind, Box<Place<'tcx>>),
1605
1606     /// Encodes a user's type ascription. These need to be preserved
1607     /// intact so that NLL can respect them. For example:
1608     ///
1609     ///     let a: T = y;
1610     ///
1611     /// The effect of this annotation is to relate the type `T_y` of the place `y`
1612     /// to the user-given type `T`. The effect depends on the specified variance:
1613     ///
1614     /// - `Covariant` -- requires that `T_y <: T`
1615     /// - `Contravariant` -- requires that `T_y :> T`
1616     /// - `Invariant` -- requires that `T_y == T`
1617     /// - `Bivariant` -- no effect
1618     AscribeUserType(Box<(Place<'tcx>, UserTypeProjection)>, ty::Variance),
1619
1620     /// No-op. Useful for deleting instructions without affecting statement indices.
1621     Nop,
1622 }
1623
1624 /// Describes what kind of retag is to be performed.
1625 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Debug, PartialEq, Eq, HashStable)]
1626 pub enum RetagKind {
1627     /// The initial retag when entering a function.
1628     FnEntry,
1629     /// Retag preparing for a two-phase borrow.
1630     TwoPhase,
1631     /// Retagging raw pointers.
1632     Raw,
1633     /// A "normal" retag.
1634     Default,
1635 }
1636
1637 /// The `FakeReadCause` describes the type of pattern why a FakeRead statement exists.
1638 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Debug, HashStable)]
1639 pub enum FakeReadCause {
1640     /// Inject a fake read of the borrowed input at the end of each guards
1641     /// code.
1642     ///
1643     /// This should ensure that you cannot change the variant for an enum while
1644     /// you are in the midst of matching on it.
1645     ForMatchGuard,
1646
1647     /// `let x: !; match x {}` doesn't generate any read of x so we need to
1648     /// generate a read of x to check that it is initialized and safe.
1649     ForMatchedPlace,
1650
1651     /// A fake read of the RefWithinGuard version of a bind-by-value variable
1652     /// in a match guard to ensure that it's value hasn't change by the time
1653     /// we create the OutsideGuard version.
1654     ForGuardBinding,
1655
1656     /// Officially, the semantics of
1657     ///
1658     /// `let pattern = <expr>;`
1659     ///
1660     /// is that `<expr>` is evaluated into a temporary and then this temporary is
1661     /// into the pattern.
1662     ///
1663     /// However, if we see the simple pattern `let var = <expr>`, we optimize this to
1664     /// evaluate `<expr>` directly into the variable `var`. This is mostly unobservable,
1665     /// but in some cases it can affect the borrow checker, as in #53695.
1666     /// Therefore, we insert a "fake read" here to ensure that we get
1667     /// appropriate errors.
1668     ForLet,
1669
1670     /// If we have an index expression like
1671     ///
1672     /// (*x)[1][{ x = y; 4}]
1673     ///
1674     /// then the first bounds check is invalidated when we evaluate the second
1675     /// index expression. Thus we create a fake borrow of `x` across the second
1676     /// indexer, which will cause a borrow check error.
1677     ForIndex,
1678 }
1679
1680 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
1681 pub struct InlineAsm<'tcx> {
1682     pub asm: HirInlineAsm,
1683     pub outputs: Box<[Place<'tcx>]>,
1684     pub inputs: Box<[(Span, Operand<'tcx>)]>,
1685 }
1686
1687 impl Debug for Statement<'_> {
1688     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1689         use self::StatementKind::*;
1690         match self.kind {
1691             Assign(box(ref place, ref rv)) => write!(fmt, "{:?} = {:?}", place, rv),
1692             FakeRead(ref cause, ref place) => write!(fmt, "FakeRead({:?}, {:?})", cause, place),
1693             Retag(ref kind, ref place) => write!(
1694                 fmt,
1695                 "Retag({}{:?})",
1696                 match kind {
1697                     RetagKind::FnEntry => "[fn entry] ",
1698                     RetagKind::TwoPhase => "[2phase] ",
1699                     RetagKind::Raw => "[raw] ",
1700                     RetagKind::Default => "",
1701                 },
1702                 place,
1703             ),
1704             StorageLive(ref place) => write!(fmt, "StorageLive({:?})", place),
1705             StorageDead(ref place) => write!(fmt, "StorageDead({:?})", place),
1706             SetDiscriminant { ref place, variant_index } => {
1707                 write!(fmt, "discriminant({:?}) = {:?}", place, variant_index)
1708             }
1709             InlineAsm(ref asm) => {
1710                 write!(fmt, "asm!({:?} : {:?} : {:?})", asm.asm, asm.outputs, asm.inputs)
1711             }
1712             AscribeUserType(box(ref place, ref c_ty), ref variance) => {
1713                 write!(fmt, "AscribeUserType({:?}, {:?}, {:?})", place, variance, c_ty)
1714             }
1715             Nop => write!(fmt, "nop"),
1716         }
1717     }
1718 }
1719
1720 ///////////////////////////////////////////////////////////////////////////
1721 // Places
1722
1723 /// A path to a value; something that can be evaluated without
1724 /// changing or disturbing program state.
1725 #[derive(
1726     Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, HashStable,
1727 )]
1728 pub struct Place<'tcx> {
1729     pub base: PlaceBase<'tcx>,
1730
1731     /// projection out of a place (access a field, deref a pointer, etc)
1732     pub projection: &'tcx List<PlaceElem<'tcx>>,
1733 }
1734
1735 impl<'tcx> rustc_serialize::UseSpecializedDecodable for Place<'tcx> {}
1736
1737 #[derive(
1738     Clone, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable, HashStable,
1739 )]
1740 pub enum PlaceBase<'tcx> {
1741     /// local variable
1742     Local(Local),
1743
1744     /// static or static mut variable
1745     Static(Box<Static<'tcx>>),
1746 }
1747
1748 /// We store the normalized type to avoid requiring normalization when reading MIR
1749 #[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, RustcEncodable, RustcDecodable)]
1750 pub struct Static<'tcx> {
1751     pub ty: Ty<'tcx>,
1752     pub kind: StaticKind<'tcx>,
1753     /// The `DefId` of the item this static was declared in. For promoted values, usually, this is
1754     /// the same as the `DefId` of the `mir::Body` containing the `Place` this promoted appears in.
1755     /// However, after inlining, that might no longer be the case as inlined `Place`s are copied
1756     /// into the calling frame.
1757     pub def_id: DefId,
1758 }
1759
1760 #[derive(
1761     Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, HashStable, RustcEncodable, RustcDecodable,
1762 )]
1763 pub enum StaticKind<'tcx> {
1764     /// Promoted references consist of an id (`Promoted`) and the substs necessary to monomorphize
1765     /// it. Usually, these substs are just the identity substs for the item. However, the inliner
1766     /// will adjust these substs when it inlines a function based on the substs at the callsite.
1767     Promoted(Promoted, SubstsRef<'tcx>),
1768     Static,
1769 }
1770
1771 impl_stable_hash_for!(struct Static<'tcx> {
1772     ty,
1773     kind,
1774     def_id
1775 });
1776
1777 #[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
1778 #[derive(RustcEncodable, RustcDecodable, HashStable)]
1779 pub enum ProjectionElem<V, T> {
1780     Deref,
1781     Field(Field, T),
1782     Index(V),
1783
1784     /// These indices are generated by slice patterns. Easiest to explain
1785     /// by example:
1786     ///
1787     /// ```
1788     /// [X, _, .._, _, _] => { offset: 0, min_length: 4, from_end: false },
1789     /// [_, X, .._, _, _] => { offset: 1, min_length: 4, from_end: false },
1790     /// [_, _, .._, X, _] => { offset: 2, min_length: 4, from_end: true },
1791     /// [_, _, .._, _, X] => { offset: 1, min_length: 4, from_end: true },
1792     /// ```
1793     ConstantIndex {
1794         /// index or -index (in Python terms), depending on from_end
1795         offset: u32,
1796         /// thing being indexed must be at least this long
1797         min_length: u32,
1798         /// counting backwards from end?
1799         from_end: bool,
1800     },
1801
1802     /// These indices are generated by slice patterns.
1803     ///
1804     /// slice[from:-to] in Python terms.
1805     Subslice {
1806         from: u32,
1807         to: u32,
1808     },
1809
1810     /// "Downcast" to a variant of an ADT. Currently, we only introduce
1811     /// this for ADTs with more than one variant. It may be better to
1812     /// just introduce it always, or always for enums.
1813     ///
1814     /// The included Symbol is the name of the variant, used for printing MIR.
1815     Downcast(Option<Symbol>, VariantIdx),
1816 }
1817
1818 impl<V, T> ProjectionElem<V, T> {
1819     /// Returns `true` if the target of this projection may refer to a different region of memory
1820     /// than the base.
1821     fn is_indirect(&self) -> bool {
1822         match self {
1823             Self::Deref => true,
1824
1825             | Self::Field(_, _)
1826             | Self::Index(_)
1827             | Self::ConstantIndex { .. }
1828             | Self::Subslice { .. }
1829             | Self::Downcast(_, _)
1830             => false
1831         }
1832     }
1833 }
1834
1835 /// Alias for projections as they appear in places, where the base is a place
1836 /// and the index is a local.
1837 pub type PlaceElem<'tcx> = ProjectionElem<Local, Ty<'tcx>>;
1838
1839 impl<'tcx> Copy for PlaceElem<'tcx> { }
1840
1841 // At least on 64 bit systems, `PlaceElem` should not be larger than two pointers.
1842 #[cfg(target_arch = "x86_64")]
1843 static_assert_size!(PlaceElem<'_>, 16);
1844
1845 /// Alias for projections as they appear in `UserTypeProjection`, where we
1846 /// need neither the `V` parameter for `Index` nor the `T` for `Field`.
1847 pub type ProjectionKind = ProjectionElem<(), ()>;
1848
1849 rustc_index::newtype_index! {
1850     pub struct Field {
1851         derive [HashStable]
1852         DEBUG_FORMAT = "field[{}]"
1853     }
1854 }
1855
1856 #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
1857 pub struct PlaceRef<'a, 'tcx> {
1858     pub base: &'a PlaceBase<'tcx>,
1859     pub projection: &'a [PlaceElem<'tcx>],
1860 }
1861
1862 impl<'tcx> Place<'tcx> {
1863     // FIXME change this to a const fn by also making List::empty a const fn.
1864     pub fn return_place() -> Place<'tcx> {
1865         Place {
1866             base: PlaceBase::Local(RETURN_PLACE),
1867             projection: List::empty(),
1868         }
1869     }
1870
1871     /// Returns `true` if this `Place` contains a `Deref` projection.
1872     ///
1873     /// If `Place::is_indirect` returns false, the caller knows that the `Place` refers to the
1874     /// same region of memory as its base.
1875     pub fn is_indirect(&self) -> bool {
1876         self.projection.iter().any(|elem| elem.is_indirect())
1877     }
1878
1879     /// Finds the innermost `Local` from this `Place`, *if* it is either a local itself or
1880     /// a single deref of a local.
1881     //
1882     // FIXME: can we safely swap the semantics of `fn base_local` below in here instead?
1883     pub fn local_or_deref_local(&self) -> Option<Local> {
1884         match self.as_ref() {
1885             PlaceRef {
1886                 base: &PlaceBase::Local(local),
1887                 projection: &[],
1888             } |
1889             PlaceRef {
1890                 base: &PlaceBase::Local(local),
1891                 projection: &[ProjectionElem::Deref],
1892             } => Some(local),
1893             _ => None,
1894         }
1895     }
1896
1897     /// If this place represents a local variable like `_X` with no
1898     /// projections, return `Some(_X)`.
1899     pub fn as_local(&self) -> Option<Local> {
1900         self.as_ref().as_local()
1901     }
1902
1903     pub fn as_ref(&self) -> PlaceRef<'_, 'tcx> {
1904         PlaceRef {
1905             base: &self.base,
1906             projection: &self.projection,
1907         }
1908     }
1909 }
1910
1911 impl From<Local> for Place<'_> {
1912     fn from(local: Local) -> Self {
1913         Place {
1914             base: local.into(),
1915             projection: List::empty(),
1916         }
1917     }
1918 }
1919
1920 impl From<Local> for PlaceBase<'_> {
1921     fn from(local: Local) -> Self {
1922         PlaceBase::Local(local)
1923     }
1924 }
1925
1926 impl<'a, 'tcx> PlaceRef<'a, 'tcx> {
1927     /// Finds the innermost `Local` from this `Place`, *if* it is either a local itself or
1928     /// a single deref of a local.
1929     //
1930     // FIXME: can we safely swap the semantics of `fn base_local` below in here instead?
1931     pub fn local_or_deref_local(&self) -> Option<Local> {
1932         match self {
1933             PlaceRef {
1934                 base: PlaceBase::Local(local),
1935                 projection: [],
1936             } |
1937             PlaceRef {
1938                 base: PlaceBase::Local(local),
1939                 projection: [ProjectionElem::Deref],
1940             } => Some(*local),
1941             _ => None,
1942         }
1943     }
1944
1945     /// If this place represents a local variable like `_X` with no
1946     /// projections, return `Some(_X)`.
1947     pub fn as_local(&self) -> Option<Local> {
1948         match self {
1949             PlaceRef { base: PlaceBase::Local(l), projection: [] } => Some(*l),
1950             _ => None,
1951         }
1952     }
1953 }
1954
1955 impl Debug for Place<'_> {
1956     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1957         for elem in self.projection.iter().rev() {
1958             match elem {
1959                 ProjectionElem::Downcast(_, _) | ProjectionElem::Field(_, _) => {
1960                     write!(fmt, "(").unwrap();
1961                 }
1962                 ProjectionElem::Deref => {
1963                     write!(fmt, "(*").unwrap();
1964                 }
1965                 ProjectionElem::Index(_)
1966                 | ProjectionElem::ConstantIndex { .. }
1967                 | ProjectionElem::Subslice { .. } => {}
1968             }
1969         }
1970
1971         write!(fmt, "{:?}", self.base)?;
1972
1973         for elem in self.projection.iter() {
1974             match elem {
1975                 ProjectionElem::Downcast(Some(name), _index) => {
1976                     write!(fmt, " as {})", name)?;
1977                 }
1978                 ProjectionElem::Downcast(None, index) => {
1979                     write!(fmt, " as variant#{:?})", index)?;
1980                 }
1981                 ProjectionElem::Deref => {
1982                     write!(fmt, ")")?;
1983                 }
1984                 ProjectionElem::Field(field, ty) => {
1985                     write!(fmt, ".{:?}: {:?})", field.index(), ty)?;
1986                 }
1987                 ProjectionElem::Index(ref index) => {
1988                     write!(fmt, "[{:?}]", index)?;
1989                 }
1990                 ProjectionElem::ConstantIndex { offset, min_length, from_end: false } => {
1991                     write!(fmt, "[{:?} of {:?}]", offset, min_length)?;
1992                 }
1993                 ProjectionElem::ConstantIndex { offset, min_length, from_end: true } => {
1994                     write!(fmt, "[-{:?} of {:?}]", offset, min_length)?;
1995                 }
1996                 ProjectionElem::Subslice { from, to } if *to == 0 => {
1997                     write!(fmt, "[{:?}:]", from)?;
1998                 }
1999                 ProjectionElem::Subslice { from, to } if *from == 0 => {
2000                     write!(fmt, "[:-{:?}]", to)?;
2001                 }
2002                 ProjectionElem::Subslice { from, to } => {
2003                     write!(fmt, "[{:?}:-{:?}]", from, to)?;
2004                 }
2005             }
2006         }
2007
2008         Ok(())
2009     }
2010 }
2011
2012 impl Debug for PlaceBase<'_> {
2013     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2014         match *self {
2015             PlaceBase::Local(id) => write!(fmt, "{:?}", id),
2016             PlaceBase::Static(box self::Static { ty, kind: StaticKind::Static, def_id }) => {
2017                 write!(fmt, "({}: {:?})", ty::tls::with(|tcx| tcx.def_path_str(def_id)), ty)
2018             }
2019             PlaceBase::Static(box self::Static {
2020                 ty, kind: StaticKind::Promoted(promoted, _), def_id: _
2021             }) => {
2022                 write!(fmt, "({:?}: {:?})", promoted, ty)
2023             }
2024         }
2025     }
2026 }
2027
2028 ///////////////////////////////////////////////////////////////////////////
2029 // Scopes
2030
2031 rustc_index::newtype_index! {
2032     pub struct SourceScope {
2033         derive [HashStable]
2034         DEBUG_FORMAT = "scope[{}]",
2035         const OUTERMOST_SOURCE_SCOPE = 0,
2036     }
2037 }
2038
2039 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2040 pub struct SourceScopeData {
2041     pub span: Span,
2042     pub parent_scope: Option<SourceScope>,
2043 }
2044
2045 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2046 pub struct SourceScopeLocalData {
2047     /// An `HirId` with lint levels equivalent to this scope's lint levels.
2048     pub lint_root: hir::HirId,
2049     /// The unsafe block that contains this node.
2050     pub safety: Safety,
2051 }
2052
2053 ///////////////////////////////////////////////////////////////////////////
2054 // Operands
2055
2056 /// These are values that can appear inside an rvalue. They are intentionally
2057 /// limited to prevent rvalues from being nested in one another.
2058 #[derive(Clone, PartialEq, RustcEncodable, RustcDecodable, HashStable)]
2059 pub enum Operand<'tcx> {
2060     /// Copy: The value must be available for use afterwards.
2061     ///
2062     /// This implies that the type of the place must be `Copy`; this is true
2063     /// by construction during build, but also checked by the MIR type checker.
2064     Copy(Place<'tcx>),
2065
2066     /// Move: The value (including old borrows of it) will not be used again.
2067     ///
2068     /// Safe for values of all types (modulo future developments towards `?Move`).
2069     /// Correct usage patterns are enforced by the borrow checker for safe code.
2070     /// `Copy` may be converted to `Move` to enable "last-use" optimizations.
2071     Move(Place<'tcx>),
2072
2073     /// Synthesizes a constant value.
2074     Constant(Box<Constant<'tcx>>),
2075 }
2076
2077 impl<'tcx> Debug for Operand<'tcx> {
2078     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2079         use self::Operand::*;
2080         match *self {
2081             Constant(ref a) => write!(fmt, "{:?}", a),
2082             Copy(ref place) => write!(fmt, "{:?}", place),
2083             Move(ref place) => write!(fmt, "move {:?}", place),
2084         }
2085     }
2086 }
2087
2088 impl<'tcx> Operand<'tcx> {
2089     /// Convenience helper to make a constant that refers to the fn
2090     /// with given `DefId` and substs. Since this is used to synthesize
2091     /// MIR, assumes `user_ty` is None.
2092     pub fn function_handle(
2093         tcx: TyCtxt<'tcx>,
2094         def_id: DefId,
2095         substs: SubstsRef<'tcx>,
2096         span: Span,
2097     ) -> Self {
2098         let ty = tcx.type_of(def_id).subst(tcx, substs);
2099         Operand::Constant(box Constant {
2100             span,
2101             user_ty: None,
2102             literal: ty::Const::zero_sized(tcx, ty),
2103         })
2104     }
2105
2106     pub fn to_copy(&self) -> Self {
2107         match *self {
2108             Operand::Copy(_) | Operand::Constant(_) => self.clone(),
2109             Operand::Move(ref place) => Operand::Copy(place.clone()),
2110         }
2111     }
2112 }
2113
2114 ///////////////////////////////////////////////////////////////////////////
2115 /// Rvalues
2116
2117 #[derive(Clone, RustcEncodable, RustcDecodable, HashStable)]
2118 pub enum Rvalue<'tcx> {
2119     /// x (either a move or copy, depending on type of x)
2120     Use(Operand<'tcx>),
2121
2122     /// [x; 32]
2123     Repeat(Operand<'tcx>, u64),
2124
2125     /// &x or &mut x
2126     Ref(Region<'tcx>, BorrowKind, Place<'tcx>),
2127
2128     /// length of a [X] or [X;n] value
2129     Len(Place<'tcx>),
2130
2131     Cast(CastKind, Operand<'tcx>, Ty<'tcx>),
2132
2133     BinaryOp(BinOp, Operand<'tcx>, Operand<'tcx>),
2134     CheckedBinaryOp(BinOp, Operand<'tcx>, Operand<'tcx>),
2135
2136     NullaryOp(NullOp, Ty<'tcx>),
2137     UnaryOp(UnOp, Operand<'tcx>),
2138
2139     /// Read the discriminant of an ADT.
2140     ///
2141     /// Undefined (i.e., no effort is made to make it defined, but there’s no reason why it cannot
2142     /// be defined to return, say, a 0) if ADT is not an enum.
2143     Discriminant(Place<'tcx>),
2144
2145     /// Creates an aggregate value, like a tuple or struct. This is
2146     /// only needed because we want to distinguish `dest = Foo { x:
2147     /// ..., y: ... }` from `dest.x = ...; dest.y = ...;` in the case
2148     /// that `Foo` has a destructor. These rvalues can be optimized
2149     /// away after type-checking and before lowering.
2150     Aggregate(Box<AggregateKind<'tcx>>, Vec<Operand<'tcx>>),
2151 }
2152
2153 #[derive(Clone, Copy, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
2154 pub enum CastKind {
2155     Misc,
2156     Pointer(PointerCast),
2157 }
2158
2159 #[derive(Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
2160 pub enum AggregateKind<'tcx> {
2161     /// The type is of the element
2162     Array(Ty<'tcx>),
2163     Tuple,
2164
2165     /// The second field is the variant index. It's equal to 0 for struct
2166     /// and union expressions. The fourth field is
2167     /// active field number and is present only for union expressions
2168     /// -- e.g., for a union expression `SomeUnion { c: .. }`, the
2169     /// active field index would identity the field `c`
2170     Adt(&'tcx AdtDef, VariantIdx, SubstsRef<'tcx>, Option<UserTypeAnnotationIndex>, Option<usize>),
2171
2172     Closure(DefId, SubstsRef<'tcx>),
2173     Generator(DefId, SubstsRef<'tcx>, hir::Movability),
2174 }
2175
2176 #[derive(Copy, Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
2177 pub enum BinOp {
2178     /// The `+` operator (addition)
2179     Add,
2180     /// The `-` operator (subtraction)
2181     Sub,
2182     /// The `*` operator (multiplication)
2183     Mul,
2184     /// The `/` operator (division)
2185     Div,
2186     /// The `%` operator (modulus)
2187     Rem,
2188     /// The `^` operator (bitwise xor)
2189     BitXor,
2190     /// The `&` operator (bitwise and)
2191     BitAnd,
2192     /// The `|` operator (bitwise or)
2193     BitOr,
2194     /// The `<<` operator (shift left)
2195     Shl,
2196     /// The `>>` operator (shift right)
2197     Shr,
2198     /// The `==` operator (equality)
2199     Eq,
2200     /// The `<` operator (less than)
2201     Lt,
2202     /// The `<=` operator (less than or equal to)
2203     Le,
2204     /// The `!=` operator (not equal to)
2205     Ne,
2206     /// The `>=` operator (greater than or equal to)
2207     Ge,
2208     /// The `>` operator (greater than)
2209     Gt,
2210     /// The `ptr.offset` operator
2211     Offset,
2212 }
2213
2214 impl BinOp {
2215     pub fn is_checkable(self) -> bool {
2216         use self::BinOp::*;
2217         match self {
2218             Add | Sub | Mul | Shl | Shr => true,
2219             _ => false,
2220         }
2221     }
2222 }
2223
2224 #[derive(Copy, Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
2225 pub enum NullOp {
2226     /// Returns the size of a value of that type
2227     SizeOf,
2228     /// Creates a new uninitialized box for a value of that type
2229     Box,
2230 }
2231
2232 #[derive(Copy, Clone, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable, HashStable)]
2233 pub enum UnOp {
2234     /// The `!` operator for logical inversion
2235     Not,
2236     /// The `-` operator for negation
2237     Neg,
2238 }
2239
2240 impl<'tcx> Debug for Rvalue<'tcx> {
2241     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2242         use self::Rvalue::*;
2243
2244         match *self {
2245             Use(ref place) => write!(fmt, "{:?}", place),
2246             Repeat(ref a, ref b) => write!(fmt, "[{:?}; {:?}]", a, b),
2247             Len(ref a) => write!(fmt, "Len({:?})", a),
2248             Cast(ref kind, ref place, ref ty) => {
2249                 write!(fmt, "{:?} as {:?} ({:?})", place, ty, kind)
2250             }
2251             BinaryOp(ref op, ref a, ref b) => write!(fmt, "{:?}({:?}, {:?})", op, a, b),
2252             CheckedBinaryOp(ref op, ref a, ref b) => {
2253                 write!(fmt, "Checked{:?}({:?}, {:?})", op, a, b)
2254             }
2255             UnaryOp(ref op, ref a) => write!(fmt, "{:?}({:?})", op, a),
2256             Discriminant(ref place) => write!(fmt, "discriminant({:?})", place),
2257             NullaryOp(ref op, ref t) => write!(fmt, "{:?}({:?})", op, t),
2258             Ref(region, borrow_kind, ref place) => {
2259                 let kind_str = match borrow_kind {
2260                     BorrowKind::Shared => "",
2261                     BorrowKind::Shallow => "shallow ",
2262                     BorrowKind::Mut { .. } | BorrowKind::Unique => "mut ",
2263                 };
2264
2265                 // When printing regions, add trailing space if necessary.
2266                 let print_region = ty::tls::with(|tcx| {
2267                     tcx.sess.verbose() || tcx.sess.opts.debugging_opts.identify_regions
2268                 });
2269                 let region = if print_region {
2270                     let mut region = region.to_string();
2271                     if region.len() > 0 {
2272                         region.push(' ');
2273                     }
2274                     region
2275                 } else {
2276                     // Do not even print 'static
2277                     String::new()
2278                 };
2279                 write!(fmt, "&{}{}{:?}", region, kind_str, place)
2280             }
2281
2282             Aggregate(ref kind, ref places) => {
2283                 fn fmt_tuple(fmt: &mut Formatter<'_>, places: &[Operand<'_>]) -> fmt::Result {
2284                     let mut tuple_fmt = fmt.debug_tuple("");
2285                     for place in places {
2286                         tuple_fmt.field(place);
2287                     }
2288                     tuple_fmt.finish()
2289                 }
2290
2291                 match **kind {
2292                     AggregateKind::Array(_) => write!(fmt, "{:?}", places),
2293
2294                     AggregateKind::Tuple => match places.len() {
2295                         0 => write!(fmt, "()"),
2296                         1 => write!(fmt, "({:?},)", places[0]),
2297                         _ => fmt_tuple(fmt, places),
2298                     },
2299
2300                     AggregateKind::Adt(adt_def, variant, substs, _user_ty, _) => {
2301                         let variant_def = &adt_def.variants[variant];
2302
2303                         let f = &mut *fmt;
2304                         ty::tls::with(|tcx| {
2305                             let substs = tcx.lift(&substs).expect("could not lift for printing");
2306                             FmtPrinter::new(tcx, f, Namespace::ValueNS)
2307                                 .print_def_path(variant_def.def_id, substs)?;
2308                             Ok(())
2309                         })?;
2310
2311                         match variant_def.ctor_kind {
2312                             CtorKind::Const => Ok(()),
2313                             CtorKind::Fn => fmt_tuple(fmt, places),
2314                             CtorKind::Fictive => {
2315                                 let mut struct_fmt = fmt.debug_struct("");
2316                                 for (field, place) in variant_def.fields.iter().zip(places) {
2317                                     struct_fmt.field(&field.ident.as_str(), place);
2318                                 }
2319                                 struct_fmt.finish()
2320                             }
2321                         }
2322                     }
2323
2324                     AggregateKind::Closure(def_id, _) => ty::tls::with(|tcx| {
2325                         if let Some(hir_id) = tcx.hir().as_local_hir_id(def_id) {
2326                             let name = if tcx.sess.opts.debugging_opts.span_free_formats {
2327                                 format!("[closure@{:?}]", hir_id)
2328                             } else {
2329                                 format!("[closure@{:?}]", tcx.hir().span(hir_id))
2330                             };
2331                             let mut struct_fmt = fmt.debug_struct(&name);
2332
2333                             if let Some(upvars) = tcx.upvars(def_id) {
2334                                 for (&var_id, place) in upvars.keys().zip(places) {
2335                                     let var_name = tcx.hir().name(var_id);
2336                                     struct_fmt.field(&var_name.as_str(), place);
2337                                 }
2338                             }
2339
2340                             struct_fmt.finish()
2341                         } else {
2342                             write!(fmt, "[closure]")
2343                         }
2344                     }),
2345
2346                     AggregateKind::Generator(def_id, _, _) => ty::tls::with(|tcx| {
2347                         if let Some(hir_id) = tcx.hir().as_local_hir_id(def_id) {
2348                             let name = format!("[generator@{:?}]", tcx.hir().span(hir_id));
2349                             let mut struct_fmt = fmt.debug_struct(&name);
2350
2351                             if let Some(upvars) = tcx.upvars(def_id) {
2352                                 for (&var_id, place) in upvars.keys().zip(places) {
2353                                     let var_name = tcx.hir().name(var_id);
2354                                     struct_fmt.field(&var_name.as_str(), place);
2355                                 }
2356                             }
2357
2358                             struct_fmt.finish()
2359                         } else {
2360                             write!(fmt, "[generator]")
2361                         }
2362                     }),
2363                 }
2364             }
2365         }
2366     }
2367 }
2368
2369 ///////////////////////////////////////////////////////////////////////////
2370 /// Constants
2371 ///
2372 /// Two constants are equal if they are the same constant. Note that
2373 /// this does not necessarily mean that they are "==" in Rust -- in
2374 /// particular one must be wary of `NaN`!
2375
2376 #[derive(Clone, PartialEq, RustcEncodable, RustcDecodable, HashStable)]
2377 pub struct Constant<'tcx> {
2378     pub span: Span,
2379
2380     /// Optional user-given type: for something like
2381     /// `collect::<Vec<_>>`, this would be present and would
2382     /// indicate that `Vec<_>` was explicitly specified.
2383     ///
2384     /// Needed for NLL to impose user-given type constraints.
2385     pub user_ty: Option<UserTypeAnnotationIndex>,
2386
2387     pub literal: &'tcx ty::Const<'tcx>,
2388 }
2389
2390 /// A collection of projections into user types.
2391 ///
2392 /// They are projections because a binding can occur a part of a
2393 /// parent pattern that has been ascribed a type.
2394 ///
2395 /// Its a collection because there can be multiple type ascriptions on
2396 /// the path from the root of the pattern down to the binding itself.
2397 ///
2398 /// An example:
2399 ///
2400 /// ```rust
2401 /// struct S<'a>((i32, &'a str), String);
2402 /// let S((_, w): (i32, &'static str), _): S = ...;
2403 /// //    ------  ^^^^^^^^^^^^^^^^^^^ (1)
2404 /// //  ---------------------------------  ^ (2)
2405 /// ```
2406 ///
2407 /// The highlights labelled `(1)` show the subpattern `(_, w)` being
2408 /// ascribed the type `(i32, &'static str)`.
2409 ///
2410 /// The highlights labelled `(2)` show the whole pattern being
2411 /// ascribed the type `S`.
2412 ///
2413 /// In this example, when we descend to `w`, we will have built up the
2414 /// following two projected types:
2415 ///
2416 ///   * base: `S`,                   projection: `(base.0).1`
2417 ///   * base: `(i32, &'static str)`, projection: `base.1`
2418 ///
2419 /// The first will lead to the constraint `w: &'1 str` (for some
2420 /// inferred region `'1`). The second will lead to the constraint `w:
2421 /// &'static str`.
2422 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
2423 pub struct UserTypeProjections {
2424     pub(crate) contents: Vec<(UserTypeProjection, Span)>,
2425 }
2426
2427 impl<'tcx> UserTypeProjections {
2428     pub fn none() -> Self {
2429         UserTypeProjections { contents: vec![] }
2430     }
2431
2432     pub fn from_projections(projs: impl Iterator<Item = (UserTypeProjection, Span)>) -> Self {
2433         UserTypeProjections { contents: projs.collect() }
2434     }
2435
2436     pub fn projections_and_spans(&self) -> impl Iterator<Item = &(UserTypeProjection, Span)> {
2437         self.contents.iter()
2438     }
2439
2440     pub fn projections(&self) -> impl Iterator<Item = &UserTypeProjection> {
2441         self.contents.iter().map(|&(ref user_type, _span)| user_type)
2442     }
2443
2444     pub fn push_projection(mut self, user_ty: &UserTypeProjection, span: Span) -> Self {
2445         self.contents.push((user_ty.clone(), span));
2446         self
2447     }
2448
2449     fn map_projections(
2450         mut self,
2451         mut f: impl FnMut(UserTypeProjection) -> UserTypeProjection,
2452     ) -> Self {
2453         self.contents = self.contents.drain(..).map(|(proj, span)| (f(proj), span)).collect();
2454         self
2455     }
2456
2457     pub fn index(self) -> Self {
2458         self.map_projections(|pat_ty_proj| pat_ty_proj.index())
2459     }
2460
2461     pub fn subslice(self, from: u32, to: u32) -> Self {
2462         self.map_projections(|pat_ty_proj| pat_ty_proj.subslice(from, to))
2463     }
2464
2465     pub fn deref(self) -> Self {
2466         self.map_projections(|pat_ty_proj| pat_ty_proj.deref())
2467     }
2468
2469     pub fn leaf(self, field: Field) -> Self {
2470         self.map_projections(|pat_ty_proj| pat_ty_proj.leaf(field))
2471     }
2472
2473     pub fn variant(self, adt_def: &'tcx AdtDef, variant_index: VariantIdx, field: Field) -> Self {
2474         self.map_projections(|pat_ty_proj| pat_ty_proj.variant(adt_def, variant_index, field))
2475     }
2476 }
2477
2478 /// Encodes the effect of a user-supplied type annotation on the
2479 /// subcomponents of a pattern. The effect is determined by applying the
2480 /// given list of proejctions to some underlying base type. Often,
2481 /// the projection element list `projs` is empty, in which case this
2482 /// directly encodes a type in `base`. But in the case of complex patterns with
2483 /// subpatterns and bindings, we want to apply only a *part* of the type to a variable,
2484 /// in which case the `projs` vector is used.
2485 ///
2486 /// Examples:
2487 ///
2488 /// * `let x: T = ...` -- here, the `projs` vector is empty.
2489 ///
2490 /// * `let (x, _): T = ...` -- here, the `projs` vector would contain
2491 ///   `field[0]` (aka `.0`), indicating that the type of `s` is
2492 ///   determined by finding the type of the `.0` field from `T`.
2493 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2494 pub struct UserTypeProjection {
2495     pub base: UserTypeAnnotationIndex,
2496     pub projs: Vec<ProjectionKind>,
2497 }
2498
2499 impl Copy for ProjectionKind {}
2500
2501 impl UserTypeProjection {
2502     pub(crate) fn index(mut self) -> Self {
2503         self.projs.push(ProjectionElem::Index(()));
2504         self
2505     }
2506
2507     pub(crate) fn subslice(mut self, from: u32, to: u32) -> Self {
2508         self.projs.push(ProjectionElem::Subslice { from, to });
2509         self
2510     }
2511
2512     pub(crate) fn deref(mut self) -> Self {
2513         self.projs.push(ProjectionElem::Deref);
2514         self
2515     }
2516
2517     pub(crate) fn leaf(mut self, field: Field) -> Self {
2518         self.projs.push(ProjectionElem::Field(field, ()));
2519         self
2520     }
2521
2522     pub(crate) fn variant(
2523         mut self,
2524         adt_def: &'tcx AdtDef,
2525         variant_index: VariantIdx,
2526         field: Field,
2527     ) -> Self {
2528         self.projs.push(ProjectionElem::Downcast(
2529             Some(adt_def.variants[variant_index].ident.name),
2530             variant_index,
2531         ));
2532         self.projs.push(ProjectionElem::Field(field, ()));
2533         self
2534     }
2535 }
2536
2537 CloneTypeFoldableAndLiftImpls! { ProjectionKind, }
2538
2539 impl<'tcx> TypeFoldable<'tcx> for UserTypeProjection {
2540     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
2541         use crate::mir::ProjectionElem::*;
2542
2543         let base = self.base.fold_with(folder);
2544         let projs: Vec<_> = self
2545             .projs
2546             .iter()
2547             .map(|elem| match elem {
2548                 Deref => Deref,
2549                 Field(f, ()) => Field(f.clone(), ()),
2550                 Index(()) => Index(()),
2551                 elem => elem.clone(),
2552             })
2553             .collect();
2554
2555         UserTypeProjection { base, projs }
2556     }
2557
2558     fn super_visit_with<Vs: TypeVisitor<'tcx>>(&self, visitor: &mut Vs) -> bool {
2559         self.base.visit_with(visitor)
2560         // Note: there's nothing in `self.proj` to visit.
2561     }
2562 }
2563
2564 rustc_index::newtype_index! {
2565     pub struct Promoted {
2566         derive [HashStable]
2567         DEBUG_FORMAT = "promoted[{}]"
2568     }
2569 }
2570
2571 impl<'tcx> Debug for Constant<'tcx> {
2572     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2573         write!(fmt, "{}", self)
2574     }
2575 }
2576
2577 impl<'tcx> Display for Constant<'tcx> {
2578     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2579         write!(fmt, "const ")?;
2580         // FIXME make the default pretty printing of raw pointers more detailed. Here we output the
2581         // debug representation of raw pointers, so that the raw pointers in the mir dump output are
2582         // detailed and just not '{pointer}'.
2583         if let ty::RawPtr(_) = self.literal.ty.kind {
2584             write!(fmt, "{:?} : {}", self.literal.val, self.literal.ty)
2585         } else {
2586             write!(fmt, "{}", self.literal)
2587         }
2588     }
2589 }
2590
2591 impl<'tcx> graph::DirectedGraph for Body<'tcx> {
2592     type Node = BasicBlock;
2593 }
2594
2595 impl<'tcx> graph::WithNumNodes for Body<'tcx> {
2596     fn num_nodes(&self) -> usize {
2597         self.basic_blocks.len()
2598     }
2599 }
2600
2601 impl<'tcx> graph::WithStartNode for Body<'tcx> {
2602     fn start_node(&self) -> Self::Node {
2603         START_BLOCK
2604     }
2605 }
2606
2607 impl<'tcx> graph::WithPredecessors for Body<'tcx> {
2608     fn predecessors(
2609         &self,
2610         node: Self::Node,
2611     ) -> <Self as GraphPredecessors<'_>>::Iter {
2612         self.predecessors_for(node).clone().into_iter()
2613     }
2614 }
2615
2616 impl<'tcx> graph::WithSuccessors for Body<'tcx> {
2617     fn successors(
2618         &self,
2619         node: Self::Node,
2620     ) -> <Self as GraphSuccessors<'_>>::Iter {
2621         self.basic_blocks[node].terminator().successors().cloned()
2622     }
2623 }
2624
2625 impl<'a, 'b> graph::GraphPredecessors<'b> for Body<'a> {
2626     type Item = BasicBlock;
2627     type Iter = IntoIter<BasicBlock>;
2628 }
2629
2630 impl<'a, 'b> graph::GraphSuccessors<'b> for Body<'a> {
2631     type Item = BasicBlock;
2632     type Iter = iter::Cloned<Successors<'b>>;
2633 }
2634
2635 #[derive(Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd, HashStable)]
2636 pub struct Location {
2637     /// The block that the location is within.
2638     pub block: BasicBlock,
2639
2640     /// The location is the position of the start of the statement; or, if
2641     /// `statement_index` equals the number of statements, then the start of the
2642     /// terminator.
2643     pub statement_index: usize,
2644 }
2645
2646 impl fmt::Debug for Location {
2647     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2648         write!(fmt, "{:?}[{}]", self.block, self.statement_index)
2649     }
2650 }
2651
2652 impl Location {
2653     pub const START: Location = Location { block: START_BLOCK, statement_index: 0 };
2654
2655     /// Returns the location immediately after this one within the enclosing block.
2656     ///
2657     /// Note that if this location represents a terminator, then the
2658     /// resulting location would be out of bounds and invalid.
2659     pub fn successor_within_block(&self) -> Location {
2660         Location { block: self.block, statement_index: self.statement_index + 1 }
2661     }
2662
2663     /// Returns `true` if `other` is earlier in the control flow graph than `self`.
2664     pub fn is_predecessor_of<'tcx>(&self, other: Location, body: &Body<'tcx>) -> bool {
2665         // If we are in the same block as the other location and are an earlier statement
2666         // then we are a predecessor of `other`.
2667         if self.block == other.block && self.statement_index < other.statement_index {
2668             return true;
2669         }
2670
2671         // If we're in another block, then we want to check that block is a predecessor of `other`.
2672         let mut queue: Vec<BasicBlock> = body.predecessors_for(other.block).clone();
2673         let mut visited = FxHashSet::default();
2674
2675         while let Some(block) = queue.pop() {
2676             // If we haven't visited this block before, then make sure we visit it's predecessors.
2677             if visited.insert(block) {
2678                 queue.append(&mut body.predecessors_for(block).clone());
2679             } else {
2680                 continue;
2681             }
2682
2683             // If we found the block that `self` is in, then we are a predecessor of `other` (since
2684             // we found that block by looking at the predecessors of `other`).
2685             if self.block == block {
2686                 return true;
2687             }
2688         }
2689
2690         false
2691     }
2692
2693     pub fn dominates(&self, other: Location, dominators: &Dominators<BasicBlock>) -> bool {
2694         if self.block == other.block {
2695             self.statement_index <= other.statement_index
2696         } else {
2697             dominators.is_dominated_by(other.block, self.block)
2698         }
2699     }
2700 }
2701
2702 #[derive(Copy, Clone, PartialEq, RustcEncodable, RustcDecodable, HashStable)]
2703 pub enum UnsafetyViolationKind {
2704     General,
2705     /// Permitted both in `const fn`s and regular `fn`s.
2706     GeneralAndConstFn,
2707     BorrowPacked(hir::HirId),
2708 }
2709
2710 #[derive(Copy, Clone, PartialEq, RustcEncodable, RustcDecodable, HashStable)]
2711 pub struct UnsafetyViolation {
2712     pub source_info: SourceInfo,
2713     pub description: Symbol,
2714     pub details: Symbol,
2715     pub kind: UnsafetyViolationKind,
2716 }
2717
2718 #[derive(Clone, RustcEncodable, RustcDecodable, HashStable)]
2719 pub struct UnsafetyCheckResult {
2720     /// Violations that are propagated *upwards* from this function.
2721     pub violations: Lrc<[UnsafetyViolation]>,
2722     /// `unsafe` blocks in this function, along with whether they are used. This is
2723     /// used for the "unused_unsafe" lint.
2724     pub unsafe_blocks: Lrc<[(hir::HirId, bool)]>,
2725 }
2726
2727 rustc_index::newtype_index! {
2728     pub struct GeneratorSavedLocal {
2729         derive [HashStable]
2730         DEBUG_FORMAT = "_{}",
2731     }
2732 }
2733
2734 /// The layout of generator state.
2735 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable, TypeFoldable)]
2736 pub struct GeneratorLayout<'tcx> {
2737     /// The type of every local stored inside the generator.
2738     pub field_tys: IndexVec<GeneratorSavedLocal, Ty<'tcx>>,
2739
2740     /// Which of the above fields are in each variant. Note that one field may
2741     /// be stored in multiple variants.
2742     pub variant_fields: IndexVec<VariantIdx, IndexVec<Field, GeneratorSavedLocal>>,
2743
2744     /// Which saved locals are storage-live at the same time. Locals that do not
2745     /// have conflicts with each other are allowed to overlap in the computed
2746     /// layout.
2747     pub storage_conflicts: BitMatrix<GeneratorSavedLocal, GeneratorSavedLocal>,
2748
2749     /// The names and scopes of all the stored generator locals.
2750     ///
2751     /// N.B., this is *strictly* a temporary hack for codegen
2752     /// debuginfo generation, and will be removed at some point.
2753     /// Do **NOT** use it for anything else, local information should not be
2754     /// in the MIR, please rely on local crate HIR or other side-channels.
2755     //
2756     // FIXME(tmandry): see above.
2757     pub __local_debuginfo_codegen_only_do_not_use: IndexVec<GeneratorSavedLocal, LocalDecl<'tcx>>,
2758 }
2759
2760 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2761 pub struct BorrowCheckResult<'tcx> {
2762     pub closure_requirements: Option<ClosureRegionRequirements<'tcx>>,
2763     pub used_mut_upvars: SmallVec<[Field; 8]>,
2764 }
2765
2766 /// The result of the `mir_const_qualif` query.
2767 ///
2768 /// Each field corresponds to an implementer of the `Qualif` trait in
2769 /// `librustc_mir/transform/check_consts/qualifs.rs`. See that file for more information on each
2770 /// `Qualif`.
2771 #[derive(Clone, Copy, Debug, Default, RustcEncodable, RustcDecodable, HashStable)]
2772 pub struct ConstQualifs {
2773     pub has_mut_interior: bool,
2774     pub needs_drop: bool,
2775 }
2776
2777 /// After we borrow check a closure, we are left with various
2778 /// requirements that we have inferred between the free regions that
2779 /// appear in the closure's signature or on its field types. These
2780 /// requirements are then verified and proved by the closure's
2781 /// creating function. This struct encodes those requirements.
2782 ///
2783 /// The requirements are listed as being between various
2784 /// `RegionVid`. The 0th region refers to `'static`; subsequent region
2785 /// vids refer to the free regions that appear in the closure (or
2786 /// generator's) type, in order of appearance. (This numbering is
2787 /// actually defined by the `UniversalRegions` struct in the NLL
2788 /// region checker. See for example
2789 /// `UniversalRegions::closure_mapping`.) Note that we treat the free
2790 /// regions in the closure's type "as if" they were erased, so their
2791 /// precise identity is not important, only their position.
2792 ///
2793 /// Example: If type check produces a closure with the closure substs:
2794 ///
2795 /// ```text
2796 /// ClosureSubsts = [
2797 ///     i8,                                  // the "closure kind"
2798 ///     for<'x> fn(&'a &'x u32) -> &'x u32,  // the "closure signature"
2799 ///     &'a String,                          // some upvar
2800 /// ]
2801 /// ```
2802 ///
2803 /// here, there is one unique free region (`'a`) but it appears
2804 /// twice. We would "renumber" each occurrence to a unique vid, as follows:
2805 ///
2806 /// ```text
2807 /// ClosureSubsts = [
2808 ///     i8,                                  // the "closure kind"
2809 ///     for<'x> fn(&'1 &'x u32) -> &'x u32,  // the "closure signature"
2810 ///     &'2 String,                          // some upvar
2811 /// ]
2812 /// ```
2813 ///
2814 /// Now the code might impose a requirement like `'1: '2`. When an
2815 /// instance of the closure is created, the corresponding free regions
2816 /// can be extracted from its type and constrained to have the given
2817 /// outlives relationship.
2818 ///
2819 /// In some cases, we have to record outlives requirements between
2820 /// types and regions as well. In that case, if those types include
2821 /// any regions, those regions are recorded as `ReClosureBound`
2822 /// instances assigned one of these same indices. Those regions will
2823 /// be substituted away by the creator. We use `ReClosureBound` in
2824 /// that case because the regions must be allocated in the global
2825 /// `TyCtxt`, and hence we cannot use `ReVar` (which is what we use
2826 /// internally within the rest of the NLL code).
2827 #[derive(Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2828 pub struct ClosureRegionRequirements<'tcx> {
2829     /// The number of external regions defined on the closure. In our
2830     /// example above, it would be 3 -- one for `'static`, then `'1`
2831     /// and `'2`. This is just used for a sanity check later on, to
2832     /// make sure that the number of regions we see at the callsite
2833     /// matches.
2834     pub num_external_vids: usize,
2835
2836     /// Requirements between the various free regions defined in
2837     /// indices.
2838     pub outlives_requirements: Vec<ClosureOutlivesRequirement<'tcx>>,
2839 }
2840
2841 /// Indicates an outlives-constraint between a type or between two
2842 /// free regions declared on the closure.
2843 #[derive(Copy, Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2844 pub struct ClosureOutlivesRequirement<'tcx> {
2845     // This region or type ...
2846     pub subject: ClosureOutlivesSubject<'tcx>,
2847
2848     // ... must outlive this one.
2849     pub outlived_free_region: ty::RegionVid,
2850
2851     // If not, report an error here ...
2852     pub blame_span: Span,
2853
2854     // ... due to this reason.
2855     pub category: ConstraintCategory,
2856 }
2857
2858 /// Outlives-constraints can be categorized to determine whether and why they
2859 /// are interesting (for error reporting). Order of variants indicates sort
2860 /// order of the category, thereby influencing diagnostic output.
2861 ///
2862 /// See also [rustc_mir::borrow_check::nll::constraints].
2863 #[derive(
2864     Copy,
2865     Clone,
2866     Debug,
2867     Eq,
2868     PartialEq,
2869     PartialOrd,
2870     Ord,
2871     Hash,
2872     RustcEncodable,
2873     RustcDecodable,
2874     HashStable,
2875 )]
2876 pub enum ConstraintCategory {
2877     Return,
2878     Yield,
2879     UseAsConst,
2880     UseAsStatic,
2881     TypeAnnotation,
2882     Cast,
2883
2884     /// A constraint that came from checking the body of a closure.
2885     ///
2886     /// We try to get the category that the closure used when reporting this.
2887     ClosureBounds,
2888     CallArgument,
2889     CopyBound,
2890     SizedBound,
2891     Assignment,
2892     OpaqueType,
2893
2894     /// A "boring" constraint (caused by the given location) is one that
2895     /// the user probably doesn't want to see described in diagnostics,
2896     /// because it is kind of an artifact of the type system setup.
2897     /// Example: `x = Foo { field: y }` technically creates
2898     /// intermediate regions representing the "type of `Foo { field: y
2899     /// }`", and data flows from `y` into those variables, but they
2900     /// are not very interesting. The assignment into `x` on the other
2901     /// hand might be.
2902     Boring,
2903     // Boring and applicable everywhere.
2904     BoringNoLocation,
2905
2906     /// A constraint that doesn't correspond to anything the user sees.
2907     Internal,
2908 }
2909
2910 /// The subject of a `ClosureOutlivesRequirement` -- that is, the thing
2911 /// that must outlive some region.
2912 #[derive(Copy, Clone, Debug, RustcEncodable, RustcDecodable, HashStable)]
2913 pub enum ClosureOutlivesSubject<'tcx> {
2914     /// Subject is a type, typically a type parameter, but could also
2915     /// be a projection. Indicates a requirement like `T: 'a` being
2916     /// passed to the caller, where the type here is `T`.
2917     ///
2918     /// The type here is guaranteed not to contain any free regions at
2919     /// present.
2920     Ty(Ty<'tcx>),
2921
2922     /// Subject is a free region from the closure. Indicates a requirement
2923     /// like `'a: 'b` being passed to the caller; the region here is `'a`.
2924     Region(ty::RegionVid),
2925 }
2926
2927 /*
2928  * `TypeFoldable` implementations for MIR types
2929 */
2930
2931 CloneTypeFoldableAndLiftImpls! {
2932     BlockTailInfo,
2933     MirPhase,
2934     Mutability,
2935     SourceInfo,
2936     UpvarDebuginfo,
2937     FakeReadCause,
2938     RetagKind,
2939     SourceScope,
2940     SourceScopeData,
2941     SourceScopeLocalData,
2942     UserTypeAnnotationIndex,
2943 }
2944
2945 impl<'tcx> TypeFoldable<'tcx> for Terminator<'tcx> {
2946     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
2947         use crate::mir::TerminatorKind::*;
2948
2949         let kind = match self.kind {
2950             Goto { target } => Goto { target },
2951             SwitchInt { ref discr, switch_ty, ref values, ref targets } => SwitchInt {
2952                 discr: discr.fold_with(folder),
2953                 switch_ty: switch_ty.fold_with(folder),
2954                 values: values.clone(),
2955                 targets: targets.clone(),
2956             },
2957             Drop { ref location, target, unwind } => {
2958                 Drop { location: location.fold_with(folder), target, unwind }
2959             }
2960             DropAndReplace { ref location, ref value, target, unwind } => DropAndReplace {
2961                 location: location.fold_with(folder),
2962                 value: value.fold_with(folder),
2963                 target,
2964                 unwind,
2965             },
2966             Yield { ref value, resume, drop } => {
2967                 Yield { value: value.fold_with(folder), resume: resume, drop: drop }
2968             }
2969             Call { ref func, ref args, ref destination, cleanup, from_hir_call } => {
2970                 let dest =
2971                     destination.as_ref().map(|&(ref loc, dest)| (loc.fold_with(folder), dest));
2972
2973                 Call {
2974                     func: func.fold_with(folder),
2975                     args: args.fold_with(folder),
2976                     destination: dest,
2977                     cleanup,
2978                     from_hir_call,
2979                 }
2980             }
2981             Assert { ref cond, expected, ref msg, target, cleanup } => {
2982                 use PanicInfo::*;
2983                 let msg = match msg {
2984                     BoundsCheck { ref len, ref index } =>
2985                         BoundsCheck {
2986                             len: len.fold_with(folder),
2987                             index: index.fold_with(folder),
2988                         },
2989                     Panic { .. } | Overflow(_) | OverflowNeg | DivisionByZero | RemainderByZero |
2990                     GeneratorResumedAfterReturn | GeneratorResumedAfterPanic =>
2991                         msg.clone(),
2992                 };
2993                 Assert { cond: cond.fold_with(folder), expected, msg, target, cleanup }
2994             }
2995             GeneratorDrop => GeneratorDrop,
2996             Resume => Resume,
2997             Abort => Abort,
2998             Return => Return,
2999             Unreachable => Unreachable,
3000             FalseEdges { real_target, imaginary_target } => {
3001                 FalseEdges { real_target, imaginary_target }
3002             }
3003             FalseUnwind { real_target, unwind } => FalseUnwind { real_target, unwind },
3004         };
3005         Terminator { source_info: self.source_info, kind }
3006     }
3007
3008     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3009         use crate::mir::TerminatorKind::*;
3010
3011         match self.kind {
3012             SwitchInt { ref discr, switch_ty, .. } => {
3013                 discr.visit_with(visitor) || switch_ty.visit_with(visitor)
3014             }
3015             Drop { ref location, .. } => location.visit_with(visitor),
3016             DropAndReplace { ref location, ref value, .. } => {
3017                 location.visit_with(visitor) || value.visit_with(visitor)
3018             }
3019             Yield { ref value, .. } => value.visit_with(visitor),
3020             Call { ref func, ref args, ref destination, .. } => {
3021                 let dest = if let Some((ref loc, _)) = *destination {
3022                     loc.visit_with(visitor)
3023                 } else {
3024                     false
3025                 };
3026                 dest || func.visit_with(visitor) || args.visit_with(visitor)
3027             }
3028             Assert { ref cond, ref msg, .. } => {
3029                 if cond.visit_with(visitor) {
3030                     use PanicInfo::*;
3031                     match msg {
3032                         BoundsCheck { ref len, ref index } =>
3033                             len.visit_with(visitor) || index.visit_with(visitor),
3034                         Panic { .. } | Overflow(_) | OverflowNeg |
3035                         DivisionByZero | RemainderByZero |
3036                         GeneratorResumedAfterReturn | GeneratorResumedAfterPanic =>
3037                             false
3038                     }
3039                 } else {
3040                     false
3041                 }
3042             }
3043             Goto { .. }
3044             | Resume
3045             | Abort
3046             | Return
3047             | GeneratorDrop
3048             | Unreachable
3049             | FalseEdges { .. }
3050             | FalseUnwind { .. } => false,
3051         }
3052     }
3053 }
3054
3055 impl<'tcx> TypeFoldable<'tcx> for Place<'tcx> {
3056     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3057         Place {
3058             base: self.base.fold_with(folder),
3059             projection: self.projection.fold_with(folder),
3060         }
3061     }
3062
3063     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3064         self.base.visit_with(visitor) || self.projection.visit_with(visitor)
3065     }
3066 }
3067
3068 impl<'tcx> TypeFoldable<'tcx> for PlaceBase<'tcx> {
3069     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3070         match self {
3071             PlaceBase::Local(local) => PlaceBase::Local(local.fold_with(folder)),
3072             PlaceBase::Static(static_) => PlaceBase::Static(static_.fold_with(folder)),
3073         }
3074     }
3075
3076     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3077         match self {
3078             PlaceBase::Local(local) => local.visit_with(visitor),
3079             PlaceBase::Static(static_) => (**static_).visit_with(visitor),
3080         }
3081     }
3082 }
3083
3084 impl<'tcx> TypeFoldable<'tcx> for &'tcx ty::List<PlaceElem<'tcx>> {
3085     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3086         let v = self.iter().map(|t| t.fold_with(folder)).collect::<Vec<_>>();
3087         folder.tcx().intern_place_elems(&v)
3088     }
3089
3090     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3091         self.iter().any(|t| t.visit_with(visitor))
3092     }
3093 }
3094
3095 impl<'tcx> TypeFoldable<'tcx> for Static<'tcx> {
3096     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3097         Static {
3098             ty: self.ty.fold_with(folder),
3099             kind: self.kind.fold_with(folder),
3100             def_id: self.def_id,
3101         }
3102     }
3103
3104     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3105         let Static { ty, kind, def_id: _ } = self;
3106
3107         ty.visit_with(visitor) || kind.visit_with(visitor)
3108     }
3109 }
3110
3111 impl<'tcx> TypeFoldable<'tcx> for StaticKind<'tcx> {
3112     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3113         match self {
3114             StaticKind::Promoted(promoted, substs) =>
3115                 StaticKind::Promoted(promoted.fold_with(folder), substs.fold_with(folder)),
3116             StaticKind::Static => StaticKind::Static
3117         }
3118     }
3119
3120     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3121         match self {
3122             StaticKind::Promoted(promoted, substs) =>
3123                 promoted.visit_with(visitor) || substs.visit_with(visitor),
3124             StaticKind::Static => { false }
3125         }
3126     }
3127 }
3128
3129 impl<'tcx> TypeFoldable<'tcx> for Rvalue<'tcx> {
3130     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3131         use crate::mir::Rvalue::*;
3132         match *self {
3133             Use(ref op) => Use(op.fold_with(folder)),
3134             Repeat(ref op, len) => Repeat(op.fold_with(folder), len),
3135             Ref(region, bk, ref place) => {
3136                 Ref(region.fold_with(folder), bk, place.fold_with(folder))
3137             }
3138             Len(ref place) => Len(place.fold_with(folder)),
3139             Cast(kind, ref op, ty) => Cast(kind, op.fold_with(folder), ty.fold_with(folder)),
3140             BinaryOp(op, ref rhs, ref lhs) => {
3141                 BinaryOp(op, rhs.fold_with(folder), lhs.fold_with(folder))
3142             }
3143             CheckedBinaryOp(op, ref rhs, ref lhs) => {
3144                 CheckedBinaryOp(op, rhs.fold_with(folder), lhs.fold_with(folder))
3145             }
3146             UnaryOp(op, ref val) => UnaryOp(op, val.fold_with(folder)),
3147             Discriminant(ref place) => Discriminant(place.fold_with(folder)),
3148             NullaryOp(op, ty) => NullaryOp(op, ty.fold_with(folder)),
3149             Aggregate(ref kind, ref fields) => {
3150                 let kind = box match **kind {
3151                     AggregateKind::Array(ty) => AggregateKind::Array(ty.fold_with(folder)),
3152                     AggregateKind::Tuple => AggregateKind::Tuple,
3153                     AggregateKind::Adt(def, v, substs, user_ty, n) => AggregateKind::Adt(
3154                         def,
3155                         v,
3156                         substs.fold_with(folder),
3157                         user_ty.fold_with(folder),
3158                         n,
3159                     ),
3160                     AggregateKind::Closure(id, substs) => {
3161                         AggregateKind::Closure(id, substs.fold_with(folder))
3162                     }
3163                     AggregateKind::Generator(id, substs, movablity) => {
3164                         AggregateKind::Generator(id, substs.fold_with(folder), movablity)
3165                     }
3166                 };
3167                 Aggregate(kind, fields.fold_with(folder))
3168             }
3169         }
3170     }
3171
3172     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3173         use crate::mir::Rvalue::*;
3174         match *self {
3175             Use(ref op) => op.visit_with(visitor),
3176             Repeat(ref op, _) => op.visit_with(visitor),
3177             Ref(region, _, ref place) => region.visit_with(visitor) || place.visit_with(visitor),
3178             Len(ref place) => place.visit_with(visitor),
3179             Cast(_, ref op, ty) => op.visit_with(visitor) || ty.visit_with(visitor),
3180             BinaryOp(_, ref rhs, ref lhs) | CheckedBinaryOp(_, ref rhs, ref lhs) => {
3181                 rhs.visit_with(visitor) || lhs.visit_with(visitor)
3182             }
3183             UnaryOp(_, ref val) => val.visit_with(visitor),
3184             Discriminant(ref place) => place.visit_with(visitor),
3185             NullaryOp(_, ty) => ty.visit_with(visitor),
3186             Aggregate(ref kind, ref fields) => {
3187                 (match **kind {
3188                     AggregateKind::Array(ty) => ty.visit_with(visitor),
3189                     AggregateKind::Tuple => false,
3190                     AggregateKind::Adt(_, _, substs, user_ty, _) => {
3191                         substs.visit_with(visitor) || user_ty.visit_with(visitor)
3192                     }
3193                     AggregateKind::Closure(_, substs) => substs.visit_with(visitor),
3194                     AggregateKind::Generator(_, substs, _) => substs.visit_with(visitor),
3195                 }) || fields.visit_with(visitor)
3196             }
3197         }
3198     }
3199 }
3200
3201 impl<'tcx> TypeFoldable<'tcx> for Operand<'tcx> {
3202     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3203         match *self {
3204             Operand::Copy(ref place) => Operand::Copy(place.fold_with(folder)),
3205             Operand::Move(ref place) => Operand::Move(place.fold_with(folder)),
3206             Operand::Constant(ref c) => Operand::Constant(c.fold_with(folder)),
3207         }
3208     }
3209
3210     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3211         match *self {
3212             Operand::Copy(ref place) | Operand::Move(ref place) => place.visit_with(visitor),
3213             Operand::Constant(ref c) => c.visit_with(visitor),
3214         }
3215     }
3216 }
3217
3218 impl<'tcx> TypeFoldable<'tcx> for PlaceElem<'tcx> {
3219     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3220         use crate::mir::ProjectionElem::*;
3221
3222         match self {
3223             Deref => Deref,
3224             Field(f, ty) => Field(*f, ty.fold_with(folder)),
3225             Index(v) => Index(v.fold_with(folder)),
3226             elem => elem.clone(),
3227         }
3228     }
3229
3230     fn super_visit_with<Vs: TypeVisitor<'tcx>>(&self, visitor: &mut Vs) -> bool {
3231         use crate::mir::ProjectionElem::*;
3232
3233         match self {
3234             Field(_, ty) => ty.visit_with(visitor),
3235             Index(v) => v.visit_with(visitor),
3236             _ => false,
3237         }
3238     }
3239 }
3240
3241 impl<'tcx> TypeFoldable<'tcx> for Field {
3242     fn super_fold_with<F: TypeFolder<'tcx>>(&self, _: &mut F) -> Self {
3243         *self
3244     }
3245     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, _: &mut V) -> bool {
3246         false
3247     }
3248 }
3249
3250 impl<'tcx> TypeFoldable<'tcx> for GeneratorSavedLocal {
3251     fn super_fold_with<F: TypeFolder<'tcx>>(&self, _: &mut F) -> Self {
3252         *self
3253     }
3254     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, _: &mut V) -> bool {
3255         false
3256     }
3257 }
3258
3259 impl<'tcx, R: Idx, C: Idx> TypeFoldable<'tcx> for BitMatrix<R, C> {
3260     fn super_fold_with<F: TypeFolder<'tcx>>(&self, _: &mut F) -> Self {
3261         self.clone()
3262     }
3263     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, _: &mut V) -> bool {
3264         false
3265     }
3266 }
3267
3268 impl<'tcx> TypeFoldable<'tcx> for Constant<'tcx> {
3269     fn super_fold_with<F: TypeFolder<'tcx>>(&self, folder: &mut F) -> Self {
3270         Constant {
3271             span: self.span.clone(),
3272             user_ty: self.user_ty.fold_with(folder),
3273             literal: self.literal.fold_with(folder),
3274         }
3275     }
3276     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> bool {
3277         self.literal.visit_with(visitor)
3278     }
3279 }