]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/mir/mod.rs
drive-by: Fix path spans
[rust.git] / compiler / rustc_middle / src / mir / mod.rs
1 //! MIR datatypes and passes. See the [rustc dev guide] for more info.
2 //!
3 //! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/mir/index.html
4
5 use crate::mir::interpret::{
6     AllocRange, ConstAllocation, ConstValue, ErrorHandled, GlobalAlloc, LitToConstInput, Scalar,
7 };
8 use crate::mir::visit::MirVisitable;
9 use crate::ty::codec::{TyDecoder, TyEncoder};
10 use crate::ty::fold::{FallibleTypeFolder, TypeFoldable};
11 use crate::ty::print::{FmtPrinter, Printer};
12 use crate::ty::visit::{TypeVisitable, TypeVisitor};
13 use crate::ty::{self, DefIdTree, List, Ty, TyCtxt};
14 use crate::ty::{AdtDef, InstanceDef, ScalarInt, UserTypeAnnotationIndex};
15 use crate::ty::{GenericArg, InternalSubsts, SubstsRef};
16
17 use rustc_data_structures::captures::Captures;
18 use rustc_errors::ErrorGuaranteed;
19 use rustc_hir::def::{CtorKind, Namespace};
20 use rustc_hir::def_id::{DefId, LocalDefId, CRATE_DEF_ID};
21 use rustc_hir::{self, GeneratorKind, ImplicitSelfKind};
22 use rustc_hir::{self as hir, HirId};
23 use rustc_session::Session;
24 use rustc_target::abi::{Size, VariantIdx};
25
26 use polonius_engine::Atom;
27 pub use rustc_ast::Mutability;
28 use rustc_data_structures::fx::FxHashSet;
29 use rustc_data_structures::graph::dominators::Dominators;
30 use rustc_index::bit_set::BitMatrix;
31 use rustc_index::vec::{Idx, IndexVec};
32 use rustc_serialize::{Decodable, Encodable};
33 use rustc_span::symbol::Symbol;
34 use rustc_span::{Span, DUMMY_SP};
35
36 use either::Either;
37
38 use std::borrow::Cow;
39 use std::fmt::{self, Debug, Display, Formatter, Write};
40 use std::ops::{ControlFlow, Index, IndexMut};
41 use std::{iter, mem};
42
43 pub use self::query::*;
44 pub use basic_blocks::BasicBlocks;
45
46 mod basic_blocks;
47 pub mod coverage;
48 mod generic_graph;
49 pub mod generic_graphviz;
50 mod graph_cyclic_cache;
51 pub mod graphviz;
52 pub mod interpret;
53 pub mod mono;
54 pub mod patch;
55 mod predecessors;
56 pub mod pretty;
57 mod query;
58 pub mod spanview;
59 mod syntax;
60 pub use syntax::*;
61 mod switch_sources;
62 pub mod tcx;
63 pub mod terminator;
64 pub use terminator::*;
65
66 pub mod traversal;
67 mod type_foldable;
68 mod type_visitable;
69 pub mod visit;
70
71 pub use self::generic_graph::graphviz_safe_def_name;
72 pub use self::graphviz::write_mir_graphviz;
73 pub use self::pretty::{
74     create_dump_file, display_allocation, dump_enabled, dump_mir, write_mir_pretty, PassWhere,
75 };
76
77 /// Types for locals
78 pub type LocalDecls<'tcx> = IndexVec<Local, LocalDecl<'tcx>>;
79
80 pub trait HasLocalDecls<'tcx> {
81     fn local_decls(&self) -> &LocalDecls<'tcx>;
82 }
83
84 impl<'tcx> HasLocalDecls<'tcx> for LocalDecls<'tcx> {
85     #[inline]
86     fn local_decls(&self) -> &LocalDecls<'tcx> {
87         self
88     }
89 }
90
91 impl<'tcx> HasLocalDecls<'tcx> for Body<'tcx> {
92     #[inline]
93     fn local_decls(&self) -> &LocalDecls<'tcx> {
94         &self.local_decls
95     }
96 }
97
98 /// A streamlined trait that you can implement to create a pass; the
99 /// pass will be named after the type, and it will consist of a main
100 /// loop that goes over each available MIR and applies `run_pass`.
101 pub trait MirPass<'tcx> {
102     fn name(&self) -> &str {
103         let name = std::any::type_name::<Self>();
104         if let Some((_, tail)) = name.rsplit_once(':') { tail } else { name }
105     }
106
107     /// Returns `true` if this pass is enabled with the current combination of compiler flags.
108     fn is_enabled(&self, _sess: &Session) -> bool {
109         true
110     }
111
112     fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>);
113
114     fn is_mir_dump_enabled(&self) -> bool {
115         true
116     }
117 }
118
119 impl MirPhase {
120     /// Gets the index of the current MirPhase within the set of all `MirPhase`s.
121     ///
122     /// FIXME(JakobDegen): Return a `(usize, usize)` instead.
123     pub fn phase_index(&self) -> usize {
124         const BUILT_PHASE_COUNT: usize = 1;
125         const ANALYSIS_PHASE_COUNT: usize = 2;
126         match self {
127             MirPhase::Built => 1,
128             MirPhase::Analysis(analysis_phase) => {
129                 1 + BUILT_PHASE_COUNT + (*analysis_phase as usize)
130             }
131             MirPhase::Runtime(runtime_phase) => {
132                 1 + BUILT_PHASE_COUNT + ANALYSIS_PHASE_COUNT + (*runtime_phase as usize)
133             }
134         }
135     }
136
137     /// Parses an `MirPhase` from a pair of strings. Panics if this isn't possible for any reason.
138     pub fn parse(dialect: String, phase: Option<String>) -> Self {
139         match &*dialect.to_ascii_lowercase() {
140             "built" => {
141                 assert!(phase.is_none(), "Cannot specify a phase for `Built` MIR");
142                 MirPhase::Built
143             }
144             "analysis" => Self::Analysis(AnalysisPhase::parse(phase)),
145             "runtime" => Self::Runtime(RuntimePhase::parse(phase)),
146             _ => panic!("Unknown MIR dialect {}", dialect),
147         }
148     }
149 }
150
151 impl AnalysisPhase {
152     pub fn parse(phase: Option<String>) -> Self {
153         let Some(phase) = phase else {
154             return Self::Initial;
155         };
156
157         match &*phase.to_ascii_lowercase() {
158             "initial" => Self::Initial,
159             "post_cleanup" | "post-cleanup" | "postcleanup" => Self::PostCleanup,
160             _ => panic!("Unknown analysis phase {}", phase),
161         }
162     }
163 }
164
165 impl RuntimePhase {
166     pub fn parse(phase: Option<String>) -> Self {
167         let Some(phase) = phase else {
168             return Self::Initial;
169         };
170
171         match &*phase.to_ascii_lowercase() {
172             "initial" => Self::Initial,
173             "post_cleanup" | "post-cleanup" | "postcleanup" => Self::PostCleanup,
174             "optimized" => Self::Optimized,
175             _ => panic!("Unknown runtime phase {}", phase),
176         }
177     }
178 }
179
180 /// Where a specific `mir::Body` comes from.
181 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
182 #[derive(HashStable, TyEncodable, TyDecodable, TypeFoldable, TypeVisitable)]
183 pub struct MirSource<'tcx> {
184     pub instance: InstanceDef<'tcx>,
185
186     /// If `Some`, this is a promoted rvalue within the parent function.
187     pub promoted: Option<Promoted>,
188 }
189
190 impl<'tcx> MirSource<'tcx> {
191     pub fn item(def_id: DefId) -> Self {
192         MirSource {
193             instance: InstanceDef::Item(ty::WithOptConstParam::unknown(def_id)),
194             promoted: None,
195         }
196     }
197
198     pub fn from_instance(instance: InstanceDef<'tcx>) -> Self {
199         MirSource { instance, promoted: None }
200     }
201
202     pub fn with_opt_param(self) -> ty::WithOptConstParam<DefId> {
203         self.instance.with_opt_param()
204     }
205
206     #[inline]
207     pub fn def_id(&self) -> DefId {
208         self.instance.def_id()
209     }
210 }
211
212 #[derive(Clone, TyEncodable, TyDecodable, Debug, HashStable, TypeFoldable, TypeVisitable)]
213 pub struct GeneratorInfo<'tcx> {
214     /// The yield type of the function, if it is a generator.
215     pub yield_ty: Option<Ty<'tcx>>,
216
217     /// Generator drop glue.
218     pub generator_drop: Option<Body<'tcx>>,
219
220     /// The layout of a generator. Produced by the state transformation.
221     pub generator_layout: Option<GeneratorLayout<'tcx>>,
222
223     /// If this is a generator then record the type of source expression that caused this generator
224     /// to be created.
225     pub generator_kind: GeneratorKind,
226 }
227
228 /// The lowered representation of a single function.
229 #[derive(Clone, TyEncodable, TyDecodable, Debug, HashStable, TypeFoldable, TypeVisitable)]
230 pub struct Body<'tcx> {
231     /// A list of basic blocks. References to basic block use a newtyped index type [`BasicBlock`]
232     /// that indexes into this vector.
233     pub basic_blocks: BasicBlocks<'tcx>,
234
235     /// Records how far through the "desugaring and optimization" process this particular
236     /// MIR has traversed. This is particularly useful when inlining, since in that context
237     /// we instantiate the promoted constants and add them to our promoted vector -- but those
238     /// promoted items have already been optimized, whereas ours have not. This field allows
239     /// us to see the difference and forego optimization on the inlined promoted items.
240     pub phase: MirPhase,
241
242     /// How many passses we have executed since starting the current phase. Used for debug output.
243     pub pass_count: usize,
244
245     pub source: MirSource<'tcx>,
246
247     /// A list of source scopes; these are referenced by statements
248     /// and used for debuginfo. Indexed by a `SourceScope`.
249     pub source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
250
251     pub generator: Option<Box<GeneratorInfo<'tcx>>>,
252
253     /// Declarations of locals.
254     ///
255     /// The first local is the return value pointer, followed by `arg_count`
256     /// locals for the function arguments, followed by any user-declared
257     /// variables and temporaries.
258     pub local_decls: LocalDecls<'tcx>,
259
260     /// User type annotations.
261     pub user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
262
263     /// The number of arguments this function takes.
264     ///
265     /// Starting at local 1, `arg_count` locals will be provided by the caller
266     /// and can be assumed to be initialized.
267     ///
268     /// If this MIR was built for a constant, this will be 0.
269     pub arg_count: usize,
270
271     /// Mark an argument local (which must be a tuple) as getting passed as
272     /// its individual components at the LLVM level.
273     ///
274     /// This is used for the "rust-call" ABI.
275     pub spread_arg: Option<Local>,
276
277     /// Debug information pertaining to user variables, including captures.
278     pub var_debug_info: Vec<VarDebugInfo<'tcx>>,
279
280     /// A span representing this MIR, for error reporting.
281     pub span: Span,
282
283     /// Constants that are required to evaluate successfully for this MIR to be well-formed.
284     /// We hold in this field all the constants we are not able to evaluate yet.
285     pub required_consts: Vec<Constant<'tcx>>,
286
287     /// Does this body use generic parameters. This is used for the `ConstEvaluatable` check.
288     ///
289     /// Note that this does not actually mean that this body is not computable right now.
290     /// The repeat count in the following example is polymorphic, but can still be evaluated
291     /// without knowing anything about the type parameter `T`.
292     ///
293     /// ```rust
294     /// fn test<T>() {
295     ///     let _ = [0; std::mem::size_of::<*mut T>()];
296     /// }
297     /// ```
298     ///
299     /// **WARNING**: Do not change this flags after the MIR was originally created, even if an optimization
300     /// removed the last mention of all generic params. We do not want to rely on optimizations and
301     /// potentially allow things like `[u8; std::mem::size_of::<T>() * 0]` due to this.
302     pub is_polymorphic: bool,
303
304     /// The phase at which this MIR should be "injected" into the compilation process.
305     ///
306     /// Everything that comes before this `MirPhase` should be skipped.
307     ///
308     /// This is only `Some` if the function that this body comes from was annotated with `rustc_custom_mir`.
309     pub injection_phase: Option<MirPhase>,
310
311     pub tainted_by_errors: Option<ErrorGuaranteed>,
312 }
313
314 impl<'tcx> Body<'tcx> {
315     pub fn new(
316         source: MirSource<'tcx>,
317         basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
318         source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
319         local_decls: LocalDecls<'tcx>,
320         user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
321         arg_count: usize,
322         var_debug_info: Vec<VarDebugInfo<'tcx>>,
323         span: Span,
324         generator_kind: Option<GeneratorKind>,
325         tainted_by_errors: Option<ErrorGuaranteed>,
326     ) -> Self {
327         // We need `arg_count` locals, and one for the return place.
328         assert!(
329             local_decls.len() > arg_count,
330             "expected at least {} locals, got {}",
331             arg_count + 1,
332             local_decls.len()
333         );
334
335         let mut body = Body {
336             phase: MirPhase::Built,
337             pass_count: 0,
338             source,
339             basic_blocks: BasicBlocks::new(basic_blocks),
340             source_scopes,
341             generator: generator_kind.map(|generator_kind| {
342                 Box::new(GeneratorInfo {
343                     yield_ty: None,
344                     generator_drop: None,
345                     generator_layout: None,
346                     generator_kind,
347                 })
348             }),
349             local_decls,
350             user_type_annotations,
351             arg_count,
352             spread_arg: None,
353             var_debug_info,
354             span,
355             required_consts: Vec::new(),
356             is_polymorphic: false,
357             injection_phase: None,
358             tainted_by_errors,
359         };
360         body.is_polymorphic = body.has_non_region_param();
361         body
362     }
363
364     /// Returns a partially initialized MIR body containing only a list of basic blocks.
365     ///
366     /// The returned MIR contains no `LocalDecl`s (even for the return place) or source scopes. It
367     /// is only useful for testing but cannot be `#[cfg(test)]` because it is used in a different
368     /// crate.
369     pub fn new_cfg_only(basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>) -> Self {
370         let mut body = Body {
371             phase: MirPhase::Built,
372             pass_count: 0,
373             source: MirSource::item(CRATE_DEF_ID.to_def_id()),
374             basic_blocks: BasicBlocks::new(basic_blocks),
375             source_scopes: IndexVec::new(),
376             generator: None,
377             local_decls: IndexVec::new(),
378             user_type_annotations: IndexVec::new(),
379             arg_count: 0,
380             spread_arg: None,
381             span: DUMMY_SP,
382             required_consts: Vec::new(),
383             var_debug_info: Vec::new(),
384             is_polymorphic: false,
385             injection_phase: None,
386             tainted_by_errors: None,
387         };
388         body.is_polymorphic = body.has_non_region_param();
389         body
390     }
391
392     #[inline]
393     pub fn basic_blocks_mut(&mut self) -> &mut IndexVec<BasicBlock, BasicBlockData<'tcx>> {
394         self.basic_blocks.as_mut()
395     }
396
397     #[inline]
398     pub fn local_kind(&self, local: Local) -> LocalKind {
399         let index = local.as_usize();
400         if index == 0 {
401             debug_assert!(
402                 self.local_decls[local].mutability == Mutability::Mut,
403                 "return place should be mutable"
404             );
405
406             LocalKind::ReturnPointer
407         } else if index < self.arg_count + 1 {
408             LocalKind::Arg
409         } else if self.local_decls[local].is_user_variable() {
410             LocalKind::Var
411         } else {
412             LocalKind::Temp
413         }
414     }
415
416     /// Returns an iterator over all user-declared mutable locals.
417     #[inline]
418     pub fn mut_vars_iter<'a>(&'a self) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a {
419         (self.arg_count + 1..self.local_decls.len()).filter_map(move |index| {
420             let local = Local::new(index);
421             let decl = &self.local_decls[local];
422             if decl.is_user_variable() && decl.mutability == Mutability::Mut {
423                 Some(local)
424             } else {
425                 None
426             }
427         })
428     }
429
430     /// Returns an iterator over all user-declared mutable arguments and locals.
431     #[inline]
432     pub fn mut_vars_and_args_iter<'a>(
433         &'a self,
434     ) -> impl Iterator<Item = Local> + Captures<'tcx> + 'a {
435         (1..self.local_decls.len()).filter_map(move |index| {
436             let local = Local::new(index);
437             let decl = &self.local_decls[local];
438             if (decl.is_user_variable() || index < self.arg_count + 1)
439                 && decl.mutability == Mutability::Mut
440             {
441                 Some(local)
442             } else {
443                 None
444             }
445         })
446     }
447
448     /// Returns an iterator over all function arguments.
449     #[inline]
450     pub fn args_iter(&self) -> impl Iterator<Item = Local> + ExactSizeIterator {
451         (1..self.arg_count + 1).map(Local::new)
452     }
453
454     /// Returns an iterator over all user-defined variables and compiler-generated temporaries (all
455     /// locals that are neither arguments nor the return place).
456     #[inline]
457     pub fn vars_and_temps_iter(
458         &self,
459     ) -> impl DoubleEndedIterator<Item = Local> + ExactSizeIterator {
460         (self.arg_count + 1..self.local_decls.len()).map(Local::new)
461     }
462
463     #[inline]
464     pub fn drain_vars_and_temps<'a>(&'a mut self) -> impl Iterator<Item = LocalDecl<'tcx>> + 'a {
465         self.local_decls.drain(self.arg_count + 1..)
466     }
467
468     /// Returns the source info associated with `location`.
469     pub fn source_info(&self, location: Location) -> &SourceInfo {
470         let block = &self[location.block];
471         let stmts = &block.statements;
472         let idx = location.statement_index;
473         if idx < stmts.len() {
474             &stmts[idx].source_info
475         } else {
476             assert_eq!(idx, stmts.len());
477             &block.terminator().source_info
478         }
479     }
480
481     /// Returns the return type; it always return first element from `local_decls` array.
482     #[inline]
483     pub fn return_ty(&self) -> Ty<'tcx> {
484         self.local_decls[RETURN_PLACE].ty
485     }
486
487     /// Returns the return type; it always return first element from `local_decls` array.
488     #[inline]
489     pub fn bound_return_ty(&self) -> ty::EarlyBinder<Ty<'tcx>> {
490         ty::EarlyBinder(self.local_decls[RETURN_PLACE].ty)
491     }
492
493     /// Gets the location of the terminator for the given block.
494     #[inline]
495     pub fn terminator_loc(&self, bb: BasicBlock) -> Location {
496         Location { block: bb, statement_index: self[bb].statements.len() }
497     }
498
499     pub fn stmt_at(&self, location: Location) -> Either<&Statement<'tcx>, &Terminator<'tcx>> {
500         let Location { block, statement_index } = location;
501         let block_data = &self.basic_blocks[block];
502         block_data
503             .statements
504             .get(statement_index)
505             .map(Either::Left)
506             .unwrap_or_else(|| Either::Right(block_data.terminator()))
507     }
508
509     #[inline]
510     pub fn yield_ty(&self) -> Option<Ty<'tcx>> {
511         self.generator.as_ref().and_then(|generator| generator.yield_ty)
512     }
513
514     #[inline]
515     pub fn generator_layout(&self) -> Option<&GeneratorLayout<'tcx>> {
516         self.generator.as_ref().and_then(|generator| generator.generator_layout.as_ref())
517     }
518
519     #[inline]
520     pub fn generator_drop(&self) -> Option<&Body<'tcx>> {
521         self.generator.as_ref().and_then(|generator| generator.generator_drop.as_ref())
522     }
523
524     #[inline]
525     pub fn generator_kind(&self) -> Option<GeneratorKind> {
526         self.generator.as_ref().map(|generator| generator.generator_kind)
527     }
528
529     #[inline]
530     pub fn should_skip(&self) -> bool {
531         let Some(injection_phase) = self.injection_phase else {
532             return false;
533         };
534         injection_phase > self.phase
535     }
536 }
537
538 #[derive(Copy, Clone, PartialEq, Eq, Debug, TyEncodable, TyDecodable, HashStable)]
539 pub enum Safety {
540     Safe,
541     /// Unsafe because of compiler-generated unsafe code, like `await` desugaring
542     BuiltinUnsafe,
543     /// Unsafe because of an unsafe fn
544     FnUnsafe,
545     /// Unsafe because of an `unsafe` block
546     ExplicitUnsafe(hir::HirId),
547 }
548
549 impl<'tcx> Index<BasicBlock> for Body<'tcx> {
550     type Output = BasicBlockData<'tcx>;
551
552     #[inline]
553     fn index(&self, index: BasicBlock) -> &BasicBlockData<'tcx> {
554         &self.basic_blocks[index]
555     }
556 }
557
558 impl<'tcx> IndexMut<BasicBlock> for Body<'tcx> {
559     #[inline]
560     fn index_mut(&mut self, index: BasicBlock) -> &mut BasicBlockData<'tcx> {
561         &mut self.basic_blocks.as_mut()[index]
562     }
563 }
564
565 #[derive(Copy, Clone, Debug, HashStable, TypeFoldable, TypeVisitable)]
566 pub enum ClearCrossCrate<T> {
567     Clear,
568     Set(T),
569 }
570
571 impl<T> ClearCrossCrate<T> {
572     pub fn as_ref(&self) -> ClearCrossCrate<&T> {
573         match self {
574             ClearCrossCrate::Clear => ClearCrossCrate::Clear,
575             ClearCrossCrate::Set(v) => ClearCrossCrate::Set(v),
576         }
577     }
578
579     pub fn assert_crate_local(self) -> T {
580         match self {
581             ClearCrossCrate::Clear => bug!("unwrapping cross-crate data"),
582             ClearCrossCrate::Set(v) => v,
583         }
584     }
585 }
586
587 const TAG_CLEAR_CROSS_CRATE_CLEAR: u8 = 0;
588 const TAG_CLEAR_CROSS_CRATE_SET: u8 = 1;
589
590 impl<E: TyEncoder, T: Encodable<E>> Encodable<E> for ClearCrossCrate<T> {
591     #[inline]
592     fn encode(&self, e: &mut E) {
593         if E::CLEAR_CROSS_CRATE {
594             return;
595         }
596
597         match *self {
598             ClearCrossCrate::Clear => TAG_CLEAR_CROSS_CRATE_CLEAR.encode(e),
599             ClearCrossCrate::Set(ref val) => {
600                 TAG_CLEAR_CROSS_CRATE_SET.encode(e);
601                 val.encode(e);
602             }
603         }
604     }
605 }
606 impl<D: TyDecoder, T: Decodable<D>> Decodable<D> for ClearCrossCrate<T> {
607     #[inline]
608     fn decode(d: &mut D) -> ClearCrossCrate<T> {
609         if D::CLEAR_CROSS_CRATE {
610             return ClearCrossCrate::Clear;
611         }
612
613         let discr = u8::decode(d);
614
615         match discr {
616             TAG_CLEAR_CROSS_CRATE_CLEAR => ClearCrossCrate::Clear,
617             TAG_CLEAR_CROSS_CRATE_SET => {
618                 let val = T::decode(d);
619                 ClearCrossCrate::Set(val)
620             }
621             tag => panic!("Invalid tag for ClearCrossCrate: {:?}", tag),
622         }
623     }
624 }
625
626 /// Grouped information about the source code origin of a MIR entity.
627 /// Intended to be inspected by diagnostics and debuginfo.
628 /// Most passes can work with it as a whole, within a single function.
629 // The unofficial Cranelift backend, at least as of #65828, needs `SourceInfo` to implement `Eq` and
630 // `Hash`. Please ping @bjorn3 if removing them.
631 #[derive(Copy, Clone, Debug, Eq, PartialEq, TyEncodable, TyDecodable, Hash, HashStable)]
632 pub struct SourceInfo {
633     /// The source span for the AST pertaining to this MIR entity.
634     pub span: Span,
635
636     /// The source scope, keeping track of which bindings can be
637     /// seen by debuginfo, active lint levels, `unsafe {...}`, etc.
638     pub scope: SourceScope,
639 }
640
641 impl SourceInfo {
642     #[inline]
643     pub fn outermost(span: Span) -> Self {
644         SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE }
645     }
646 }
647
648 ///////////////////////////////////////////////////////////////////////////
649 // Variables and temps
650
651 rustc_index::newtype_index! {
652     pub struct Local {
653         derive [HashStable]
654         DEBUG_FORMAT = "_{}",
655         const RETURN_PLACE = 0,
656     }
657 }
658
659 impl Atom for Local {
660     fn index(self) -> usize {
661         Idx::index(self)
662     }
663 }
664
665 /// Classifies locals into categories. See `Body::local_kind`.
666 #[derive(Clone, Copy, PartialEq, Eq, Debug, HashStable)]
667 pub enum LocalKind {
668     /// User-declared variable binding.
669     Var,
670     /// Compiler-introduced temporary.
671     Temp,
672     /// Function argument.
673     Arg,
674     /// Location of function's return value.
675     ReturnPointer,
676 }
677
678 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable)]
679 pub struct VarBindingForm<'tcx> {
680     /// Is variable bound via `x`, `mut x`, `ref x`, or `ref mut x`?
681     pub binding_mode: ty::BindingMode,
682     /// If an explicit type was provided for this variable binding,
683     /// this holds the source Span of that type.
684     ///
685     /// NOTE: if you want to change this to a `HirId`, be wary that
686     /// doing so breaks incremental compilation (as of this writing),
687     /// while a `Span` does not cause our tests to fail.
688     pub opt_ty_info: Option<Span>,
689     /// Place of the RHS of the =, or the subject of the `match` where this
690     /// variable is initialized. None in the case of `let PATTERN;`.
691     /// Some((None, ..)) in the case of and `let [mut] x = ...` because
692     /// (a) the right-hand side isn't evaluated as a place expression.
693     /// (b) it gives a way to separate this case from the remaining cases
694     ///     for diagnostics.
695     pub opt_match_place: Option<(Option<Place<'tcx>>, Span)>,
696     /// The span of the pattern in which this variable was bound.
697     pub pat_span: Span,
698 }
699
700 #[derive(Clone, Debug, TyEncodable, TyDecodable)]
701 pub enum BindingForm<'tcx> {
702     /// This is a binding for a non-`self` binding, or a `self` that has an explicit type.
703     Var(VarBindingForm<'tcx>),
704     /// Binding for a `self`/`&self`/`&mut self` binding where the type is implicit.
705     ImplicitSelf(ImplicitSelfKind),
706     /// Reference used in a guard expression to ensure immutability.
707     RefForGuard,
708 }
709
710 TrivialTypeTraversalAndLiftImpls! { BindingForm<'tcx>, }
711
712 mod binding_form_impl {
713     use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
714     use rustc_query_system::ich::StableHashingContext;
715
716     impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for super::BindingForm<'tcx> {
717         fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
718             use super::BindingForm::*;
719             std::mem::discriminant(self).hash_stable(hcx, hasher);
720
721             match self {
722                 Var(binding) => binding.hash_stable(hcx, hasher),
723                 ImplicitSelf(kind) => kind.hash_stable(hcx, hasher),
724                 RefForGuard => (),
725             }
726         }
727     }
728 }
729
730 /// `BlockTailInfo` is attached to the `LocalDecl` for temporaries
731 /// created during evaluation of expressions in a block tail
732 /// expression; that is, a block like `{ STMT_1; STMT_2; EXPR }`.
733 ///
734 /// It is used to improve diagnostics when such temporaries are
735 /// involved in borrow_check errors, e.g., explanations of where the
736 /// temporaries come from, when their destructors are run, and/or how
737 /// one might revise the code to satisfy the borrow checker's rules.
738 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable)]
739 pub struct BlockTailInfo {
740     /// If `true`, then the value resulting from evaluating this tail
741     /// expression is ignored by the block's expression context.
742     ///
743     /// Examples include `{ ...; tail };` and `let _ = { ...; tail };`
744     /// but not e.g., `let _x = { ...; tail };`
745     pub tail_result_is_ignored: bool,
746
747     /// `Span` of the tail expression.
748     pub span: Span,
749 }
750
751 /// A MIR local.
752 ///
753 /// This can be a binding declared by the user, a temporary inserted by the compiler, a function
754 /// argument, or the return place.
755 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
756 pub struct LocalDecl<'tcx> {
757     /// Whether this is a mutable binding (i.e., `let x` or `let mut x`).
758     ///
759     /// Temporaries and the return place are always mutable.
760     pub mutability: Mutability,
761
762     // FIXME(matthewjasper) Don't store in this in `Body`
763     pub local_info: Option<Box<LocalInfo<'tcx>>>,
764
765     /// `true` if this is an internal local.
766     ///
767     /// These locals are not based on types in the source code and are only used
768     /// for a few desugarings at the moment.
769     ///
770     /// The generator transformation will sanity check the locals which are live
771     /// across a suspension point against the type components of the generator
772     /// which type checking knows are live across a suspension point. We need to
773     /// flag drop flags to avoid triggering this check as they are introduced
774     /// outside of type inference.
775     ///
776     /// This should be sound because the drop flags are fully algebraic, and
777     /// therefore don't affect the auto-trait or outlives properties of the
778     /// generator.
779     pub internal: bool,
780
781     /// If this local is a temporary and `is_block_tail` is `Some`,
782     /// then it is a temporary created for evaluation of some
783     /// subexpression of some block's tail expression (with no
784     /// intervening statement context).
785     // FIXME(matthewjasper) Don't store in this in `Body`
786     pub is_block_tail: Option<BlockTailInfo>,
787
788     /// The type of this local.
789     pub ty: Ty<'tcx>,
790
791     /// If the user manually ascribed a type to this variable,
792     /// e.g., via `let x: T`, then we carry that type here. The MIR
793     /// borrow checker needs this information since it can affect
794     /// region inference.
795     // FIXME(matthewjasper) Don't store in this in `Body`
796     pub user_ty: Option<Box<UserTypeProjections>>,
797
798     /// The *syntactic* (i.e., not visibility) source scope the local is defined
799     /// in. If the local was defined in a let-statement, this
800     /// is *within* the let-statement, rather than outside
801     /// of it.
802     ///
803     /// This is needed because the visibility source scope of locals within
804     /// a let-statement is weird.
805     ///
806     /// The reason is that we want the local to be *within* the let-statement
807     /// for lint purposes, but we want the local to be *after* the let-statement
808     /// for names-in-scope purposes.
809     ///
810     /// That's it, if we have a let-statement like the one in this
811     /// function:
812     ///
813     /// ```
814     /// fn foo(x: &str) {
815     ///     #[allow(unused_mut)]
816     ///     let mut x: u32 = { // <- one unused mut
817     ///         let mut y: u32 = x.parse().unwrap();
818     ///         y + 2
819     ///     };
820     ///     drop(x);
821     /// }
822     /// ```
823     ///
824     /// Then, from a lint point of view, the declaration of `x: u32`
825     /// (and `y: u32`) are within the `#[allow(unused_mut)]` scope - the
826     /// lint scopes are the same as the AST/HIR nesting.
827     ///
828     /// However, from a name lookup point of view, the scopes look more like
829     /// as if the let-statements were `match` expressions:
830     ///
831     /// ```
832     /// fn foo(x: &str) {
833     ///     match {
834     ///         match x.parse::<u32>().unwrap() {
835     ///             y => y + 2
836     ///         }
837     ///     } {
838     ///         x => drop(x)
839     ///     };
840     /// }
841     /// ```
842     ///
843     /// We care about the name-lookup scopes for debuginfo - if the
844     /// debuginfo instruction pointer is at the call to `x.parse()`, we
845     /// want `x` to refer to `x: &str`, but if it is at the call to
846     /// `drop(x)`, we want it to refer to `x: u32`.
847     ///
848     /// To allow both uses to work, we need to have more than a single scope
849     /// for a local. We have the `source_info.scope` represent the "syntactic"
850     /// lint scope (with a variable being under its let block) while the
851     /// `var_debug_info.source_info.scope` represents the "local variable"
852     /// scope (where the "rest" of a block is under all prior let-statements).
853     ///
854     /// The end result looks like this:
855     ///
856     /// ```text
857     /// ROOT SCOPE
858     ///  │{ argument x: &str }
859     ///  │
860     ///  │ │{ #[allow(unused_mut)] } // This is actually split into 2 scopes
861     ///  │ │                         // in practice because I'm lazy.
862     ///  │ │
863     ///  │ │← x.source_info.scope
864     ///  │ │← `x.parse().unwrap()`
865     ///  │ │
866     ///  │ │ │← y.source_info.scope
867     ///  │ │
868     ///  │ │ │{ let y: u32 }
869     ///  │ │ │
870     ///  │ │ │← y.var_debug_info.source_info.scope
871     ///  │ │ │← `y + 2`
872     ///  │
873     ///  │ │{ let x: u32 }
874     ///  │ │← x.var_debug_info.source_info.scope
875     ///  │ │← `drop(x)` // This accesses `x: u32`.
876     /// ```
877     pub source_info: SourceInfo,
878 }
879
880 /// Extra information about a some locals that's used for diagnostics and for
881 /// classifying variables into local variables, statics, etc, which is needed e.g.
882 /// for unsafety checking.
883 ///
884 /// Not used for non-StaticRef temporaries, the return place, or anonymous
885 /// function parameters.
886 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
887 pub enum LocalInfo<'tcx> {
888     /// A user-defined local variable or function parameter
889     ///
890     /// The `BindingForm` is solely used for local diagnostics when generating
891     /// warnings/errors when compiling the current crate, and therefore it need
892     /// not be visible across crates.
893     User(ClearCrossCrate<BindingForm<'tcx>>),
894     /// A temporary created that references the static with the given `DefId`.
895     StaticRef { def_id: DefId, is_thread_local: bool },
896     /// A temporary created that references the const with the given `DefId`
897     ConstRef { def_id: DefId },
898     /// A temporary created during the creation of an aggregate
899     /// (e.g. a temporary for `foo` in `MyStruct { my_field: foo }`)
900     AggregateTemp,
901     /// A temporary created during the pass `Derefer` to avoid it's retagging
902     DerefTemp,
903 }
904
905 impl<'tcx> LocalDecl<'tcx> {
906     /// Returns `true` only if local is a binding that can itself be
907     /// made mutable via the addition of the `mut` keyword, namely
908     /// something like the occurrences of `x` in:
909     /// - `fn foo(x: Type) { ... }`,
910     /// - `let x = ...`,
911     /// - or `match ... { C(x) => ... }`
912     pub fn can_be_made_mutable(&self) -> bool {
913         matches!(
914             self.local_info,
915             Some(box LocalInfo::User(ClearCrossCrate::Set(
916                 BindingForm::Var(VarBindingForm {
917                     binding_mode: ty::BindingMode::BindByValue(_),
918                     opt_ty_info: _,
919                     opt_match_place: _,
920                     pat_span: _,
921                 }) | BindingForm::ImplicitSelf(ImplicitSelfKind::Imm),
922             )))
923         )
924     }
925
926     /// Returns `true` if local is definitely not a `ref ident` or
927     /// `ref mut ident` binding. (Such bindings cannot be made into
928     /// mutable bindings, but the inverse does not necessarily hold).
929     pub fn is_nonref_binding(&self) -> bool {
930         matches!(
931             self.local_info,
932             Some(box LocalInfo::User(ClearCrossCrate::Set(
933                 BindingForm::Var(VarBindingForm {
934                     binding_mode: ty::BindingMode::BindByValue(_),
935                     opt_ty_info: _,
936                     opt_match_place: _,
937                     pat_span: _,
938                 }) | BindingForm::ImplicitSelf(_),
939             )))
940         )
941     }
942
943     /// Returns `true` if this variable is a named variable or function
944     /// parameter declared by the user.
945     #[inline]
946     pub fn is_user_variable(&self) -> bool {
947         matches!(self.local_info, Some(box LocalInfo::User(_)))
948     }
949
950     /// Returns `true` if this is a reference to a variable bound in a `match`
951     /// expression that is used to access said variable for the guard of the
952     /// match arm.
953     pub fn is_ref_for_guard(&self) -> bool {
954         matches!(
955             self.local_info,
956             Some(box LocalInfo::User(ClearCrossCrate::Set(BindingForm::RefForGuard)))
957         )
958     }
959
960     /// Returns `Some` if this is a reference to a static item that is used to
961     /// access that static.
962     pub fn is_ref_to_static(&self) -> bool {
963         matches!(self.local_info, Some(box LocalInfo::StaticRef { .. }))
964     }
965
966     /// Returns `Some` if this is a reference to a thread-local static item that is used to
967     /// access that static.
968     pub fn is_ref_to_thread_local(&self) -> bool {
969         match self.local_info {
970             Some(box LocalInfo::StaticRef { is_thread_local, .. }) => is_thread_local,
971             _ => false,
972         }
973     }
974
975     /// Returns `true` if this is a DerefTemp
976     pub fn is_deref_temp(&self) -> bool {
977         match self.local_info {
978             Some(box LocalInfo::DerefTemp) => return true,
979             _ => (),
980         }
981         return false;
982     }
983
984     /// Returns `true` is the local is from a compiler desugaring, e.g.,
985     /// `__next` from a `for` loop.
986     #[inline]
987     pub fn from_compiler_desugaring(&self) -> bool {
988         self.source_info.span.desugaring_kind().is_some()
989     }
990
991     /// Creates a new `LocalDecl` for a temporary: mutable, non-internal.
992     #[inline]
993     pub fn new(ty: Ty<'tcx>, span: Span) -> Self {
994         Self::with_source_info(ty, SourceInfo::outermost(span))
995     }
996
997     /// Like `LocalDecl::new`, but takes a `SourceInfo` instead of a `Span`.
998     #[inline]
999     pub fn with_source_info(ty: Ty<'tcx>, source_info: SourceInfo) -> Self {
1000         LocalDecl {
1001             mutability: Mutability::Mut,
1002             local_info: None,
1003             internal: false,
1004             is_block_tail: None,
1005             ty,
1006             user_ty: None,
1007             source_info,
1008         }
1009     }
1010
1011     /// Converts `self` into same `LocalDecl` except tagged as internal.
1012     #[inline]
1013     pub fn internal(mut self) -> Self {
1014         self.internal = true;
1015         self
1016     }
1017
1018     /// Converts `self` into same `LocalDecl` except tagged as immutable.
1019     #[inline]
1020     pub fn immutable(mut self) -> Self {
1021         self.mutability = Mutability::Not;
1022         self
1023     }
1024
1025     /// Converts `self` into same `LocalDecl` except tagged as internal temporary.
1026     #[inline]
1027     pub fn block_tail(mut self, info: BlockTailInfo) -> Self {
1028         assert!(self.is_block_tail.is_none());
1029         self.is_block_tail = Some(info);
1030         self
1031     }
1032 }
1033
1034 #[derive(Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1035 pub enum VarDebugInfoContents<'tcx> {
1036     /// NOTE(eddyb) There's an unenforced invariant that this `Place` is
1037     /// based on a `Local`, not a `Static`, and contains no indexing.
1038     Place(Place<'tcx>),
1039     Const(Constant<'tcx>),
1040     /// The user variable's data is split across several fragments,
1041     /// each described by a `VarDebugInfoFragment`.
1042     /// See DWARF 5's "2.6.1.2 Composite Location Descriptions"
1043     /// and LLVM's `DW_OP_LLVM_fragment` for more details on
1044     /// the underlying debuginfo feature this relies on.
1045     Composite {
1046         /// Type of the original user variable.
1047         ty: Ty<'tcx>,
1048         /// All the parts of the original user variable, which ended
1049         /// up in disjoint places, due to optimizations.
1050         fragments: Vec<VarDebugInfoFragment<'tcx>>,
1051     },
1052 }
1053
1054 impl<'tcx> Debug for VarDebugInfoContents<'tcx> {
1055     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1056         match self {
1057             VarDebugInfoContents::Const(c) => write!(fmt, "{}", c),
1058             VarDebugInfoContents::Place(p) => write!(fmt, "{:?}", p),
1059             VarDebugInfoContents::Composite { ty, fragments } => {
1060                 write!(fmt, "{:?}{{ ", ty)?;
1061                 for f in fragments.iter() {
1062                     write!(fmt, "{:?}, ", f)?;
1063                 }
1064                 write!(fmt, "}}")
1065             }
1066         }
1067     }
1068 }
1069
1070 #[derive(Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1071 pub struct VarDebugInfoFragment<'tcx> {
1072     /// Where in the composite user variable this fragment is,
1073     /// represented as a "projection" into the composite variable.
1074     /// At lower levels, this corresponds to a byte/bit range.
1075     // NOTE(eddyb) there's an unenforced invariant that this contains
1076     // only `Field`s, and not into `enum` variants or `union`s.
1077     // FIXME(eddyb) support this for `enum`s by either using DWARF's
1078     // more advanced control-flow features (unsupported by LLVM?)
1079     // to match on the discriminant, or by using custom type debuginfo
1080     // with non-overlapping variants for the composite variable.
1081     pub projection: Vec<PlaceElem<'tcx>>,
1082
1083     /// Where the data for this fragment can be found.
1084     // NOTE(eddyb) There's an unenforced invariant that this `Place` is
1085     // contains no indexing (with a non-constant index).
1086     pub contents: Place<'tcx>,
1087 }
1088
1089 impl Debug for VarDebugInfoFragment<'_> {
1090     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1091         for elem in self.projection.iter() {
1092             match elem {
1093                 ProjectionElem::Field(field, _) => {
1094                     write!(fmt, ".{:?}", field.index())?;
1095                 }
1096                 _ => bug!("unsupported fragment projection `{:?}`", elem),
1097             }
1098         }
1099
1100         write!(fmt, " => {:?}", self.contents)
1101     }
1102 }
1103
1104 /// Debug information pertaining to a user variable.
1105 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1106 pub struct VarDebugInfo<'tcx> {
1107     pub name: Symbol,
1108
1109     /// Source info of the user variable, including the scope
1110     /// within which the variable is visible (to debuginfo)
1111     /// (see `LocalDecl`'s `source_info` field for more details).
1112     pub source_info: SourceInfo,
1113
1114     /// Where the data for this user variable is to be found.
1115     pub value: VarDebugInfoContents<'tcx>,
1116 }
1117
1118 ///////////////////////////////////////////////////////////////////////////
1119 // BasicBlock
1120
1121 rustc_index::newtype_index! {
1122     /// A node in the MIR [control-flow graph][CFG].
1123     ///
1124     /// There are no branches (e.g., `if`s, function calls, etc.) within a basic block, which makes
1125     /// it easier to do [data-flow analyses] and optimizations. Instead, branches are represented
1126     /// as an edge in a graph between basic blocks.
1127     ///
1128     /// Basic blocks consist of a series of [statements][Statement], ending with a
1129     /// [terminator][Terminator]. Basic blocks can have multiple predecessors and successors,
1130     /// however there is a MIR pass ([`CriticalCallEdges`]) that removes *critical edges*, which
1131     /// are edges that go from a multi-successor node to a multi-predecessor node. This pass is
1132     /// needed because some analyses require that there are no critical edges in the CFG.
1133     ///
1134     /// Note that this type is just an index into [`Body.basic_blocks`](Body::basic_blocks);
1135     /// the actual data that a basic block holds is in [`BasicBlockData`].
1136     ///
1137     /// Read more about basic blocks in the [rustc-dev-guide][guide-mir].
1138     ///
1139     /// [CFG]: https://rustc-dev-guide.rust-lang.org/appendix/background.html#cfg
1140     /// [data-flow analyses]:
1141     ///     https://rustc-dev-guide.rust-lang.org/appendix/background.html#what-is-a-dataflow-analysis
1142     /// [`CriticalCallEdges`]: ../../rustc_const_eval/transform/add_call_guards/enum.AddCallGuards.html#variant.CriticalCallEdges
1143     /// [guide-mir]: https://rustc-dev-guide.rust-lang.org/mir/
1144     pub struct BasicBlock {
1145         derive [HashStable]
1146         DEBUG_FORMAT = "bb{}",
1147         const START_BLOCK = 0,
1148     }
1149 }
1150
1151 impl BasicBlock {
1152     pub fn start_location(self) -> Location {
1153         Location { block: self, statement_index: 0 }
1154     }
1155 }
1156
1157 ///////////////////////////////////////////////////////////////////////////
1158 // BasicBlockData
1159
1160 /// Data for a basic block, including a list of its statements.
1161 ///
1162 /// See [`BasicBlock`] for documentation on what basic blocks are at a high level.
1163 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1164 pub struct BasicBlockData<'tcx> {
1165     /// List of statements in this block.
1166     pub statements: Vec<Statement<'tcx>>,
1167
1168     /// Terminator for this block.
1169     ///
1170     /// N.B., this should generally ONLY be `None` during construction.
1171     /// Therefore, you should generally access it via the
1172     /// `terminator()` or `terminator_mut()` methods. The only
1173     /// exception is that certain passes, such as `simplify_cfg`, swap
1174     /// out the terminator temporarily with `None` while they continue
1175     /// to recurse over the set of basic blocks.
1176     pub terminator: Option<Terminator<'tcx>>,
1177
1178     /// If true, this block lies on an unwind path. This is used
1179     /// during codegen where distinct kinds of basic blocks may be
1180     /// generated (particularly for MSVC cleanup). Unwind blocks must
1181     /// only branch to other unwind blocks.
1182     pub is_cleanup: bool,
1183 }
1184
1185 impl<'tcx> BasicBlockData<'tcx> {
1186     pub fn new(terminator: Option<Terminator<'tcx>>) -> BasicBlockData<'tcx> {
1187         BasicBlockData { statements: vec![], terminator, is_cleanup: false }
1188     }
1189
1190     /// Accessor for terminator.
1191     ///
1192     /// Terminator may not be None after construction of the basic block is complete. This accessor
1193     /// provides a convenient way to reach the terminator.
1194     #[inline]
1195     pub fn terminator(&self) -> &Terminator<'tcx> {
1196         self.terminator.as_ref().expect("invalid terminator state")
1197     }
1198
1199     #[inline]
1200     pub fn terminator_mut(&mut self) -> &mut Terminator<'tcx> {
1201         self.terminator.as_mut().expect("invalid terminator state")
1202     }
1203
1204     pub fn retain_statements<F>(&mut self, mut f: F)
1205     where
1206         F: FnMut(&mut Statement<'_>) -> bool,
1207     {
1208         for s in &mut self.statements {
1209             if !f(s) {
1210                 s.make_nop();
1211             }
1212         }
1213     }
1214
1215     pub fn expand_statements<F, I>(&mut self, mut f: F)
1216     where
1217         F: FnMut(&mut Statement<'tcx>) -> Option<I>,
1218         I: iter::TrustedLen<Item = Statement<'tcx>>,
1219     {
1220         // Gather all the iterators we'll need to splice in, and their positions.
1221         let mut splices: Vec<(usize, I)> = vec![];
1222         let mut extra_stmts = 0;
1223         for (i, s) in self.statements.iter_mut().enumerate() {
1224             if let Some(mut new_stmts) = f(s) {
1225                 if let Some(first) = new_stmts.next() {
1226                     // We can already store the first new statement.
1227                     *s = first;
1228
1229                     // Save the other statements for optimized splicing.
1230                     let remaining = new_stmts.size_hint().0;
1231                     if remaining > 0 {
1232                         splices.push((i + 1 + extra_stmts, new_stmts));
1233                         extra_stmts += remaining;
1234                     }
1235                 } else {
1236                     s.make_nop();
1237                 }
1238             }
1239         }
1240
1241         // Splice in the new statements, from the end of the block.
1242         // FIXME(eddyb) This could be more efficient with a "gap buffer"
1243         // where a range of elements ("gap") is left uninitialized, with
1244         // splicing adding new elements to the end of that gap and moving
1245         // existing elements from before the gap to the end of the gap.
1246         // For now, this is safe code, emulating a gap but initializing it.
1247         let mut gap = self.statements.len()..self.statements.len() + extra_stmts;
1248         self.statements.resize(
1249             gap.end,
1250             Statement { source_info: SourceInfo::outermost(DUMMY_SP), kind: StatementKind::Nop },
1251         );
1252         for (splice_start, new_stmts) in splices.into_iter().rev() {
1253             let splice_end = splice_start + new_stmts.size_hint().0;
1254             while gap.end > splice_end {
1255                 gap.start -= 1;
1256                 gap.end -= 1;
1257                 self.statements.swap(gap.start, gap.end);
1258             }
1259             self.statements.splice(splice_start..splice_end, new_stmts);
1260             gap.end = splice_start;
1261         }
1262     }
1263
1264     pub fn visitable(&self, index: usize) -> &dyn MirVisitable<'tcx> {
1265         if index < self.statements.len() { &self.statements[index] } else { &self.terminator }
1266     }
1267
1268     /// Does the block have no statements and an unreachable terminator?
1269     pub fn is_empty_unreachable(&self) -> bool {
1270         self.statements.is_empty() && matches!(self.terminator().kind, TerminatorKind::Unreachable)
1271     }
1272 }
1273
1274 impl<O> AssertKind<O> {
1275     /// Getting a description does not require `O` to be printable, and does not
1276     /// require allocation.
1277     /// The caller is expected to handle `BoundsCheck` separately.
1278     pub fn description(&self) -> &'static str {
1279         use AssertKind::*;
1280         match self {
1281             Overflow(BinOp::Add, _, _) => "attempt to add with overflow",
1282             Overflow(BinOp::Sub, _, _) => "attempt to subtract with overflow",
1283             Overflow(BinOp::Mul, _, _) => "attempt to multiply with overflow",
1284             Overflow(BinOp::Div, _, _) => "attempt to divide with overflow",
1285             Overflow(BinOp::Rem, _, _) => "attempt to calculate the remainder with overflow",
1286             OverflowNeg(_) => "attempt to negate with overflow",
1287             Overflow(BinOp::Shr, _, _) => "attempt to shift right with overflow",
1288             Overflow(BinOp::Shl, _, _) => "attempt to shift left with overflow",
1289             Overflow(op, _, _) => bug!("{:?} cannot overflow", op),
1290             DivisionByZero(_) => "attempt to divide by zero",
1291             RemainderByZero(_) => "attempt to calculate the remainder with a divisor of zero",
1292             ResumedAfterReturn(GeneratorKind::Gen) => "generator resumed after completion",
1293             ResumedAfterReturn(GeneratorKind::Async(_)) => "`async fn` resumed after completion",
1294             ResumedAfterPanic(GeneratorKind::Gen) => "generator resumed after panicking",
1295             ResumedAfterPanic(GeneratorKind::Async(_)) => "`async fn` resumed after panicking",
1296             BoundsCheck { .. } => bug!("Unexpected AssertKind"),
1297         }
1298     }
1299
1300     /// Format the message arguments for the `assert(cond, msg..)` terminator in MIR printing.
1301     pub fn fmt_assert_args<W: Write>(&self, f: &mut W) -> fmt::Result
1302     where
1303         O: Debug,
1304     {
1305         use AssertKind::*;
1306         match self {
1307             BoundsCheck { ref len, ref index } => write!(
1308                 f,
1309                 "\"index out of bounds: the length is {{}} but the index is {{}}\", {:?}, {:?}",
1310                 len, index
1311             ),
1312
1313             OverflowNeg(op) => {
1314                 write!(f, "\"attempt to negate `{{}}`, which would overflow\", {:?}", op)
1315             }
1316             DivisionByZero(op) => write!(f, "\"attempt to divide `{{}}` by zero\", {:?}", op),
1317             RemainderByZero(op) => write!(
1318                 f,
1319                 "\"attempt to calculate the remainder of `{{}}` with a divisor of zero\", {:?}",
1320                 op
1321             ),
1322             Overflow(BinOp::Add, l, r) => write!(
1323                 f,
1324                 "\"attempt to compute `{{}} + {{}}`, which would overflow\", {:?}, {:?}",
1325                 l, r
1326             ),
1327             Overflow(BinOp::Sub, l, r) => write!(
1328                 f,
1329                 "\"attempt to compute `{{}} - {{}}`, which would overflow\", {:?}, {:?}",
1330                 l, r
1331             ),
1332             Overflow(BinOp::Mul, l, r) => write!(
1333                 f,
1334                 "\"attempt to compute `{{}} * {{}}`, which would overflow\", {:?}, {:?}",
1335                 l, r
1336             ),
1337             Overflow(BinOp::Div, l, r) => write!(
1338                 f,
1339                 "\"attempt to compute `{{}} / {{}}`, which would overflow\", {:?}, {:?}",
1340                 l, r
1341             ),
1342             Overflow(BinOp::Rem, l, r) => write!(
1343                 f,
1344                 "\"attempt to compute the remainder of `{{}} % {{}}`, which would overflow\", {:?}, {:?}",
1345                 l, r
1346             ),
1347             Overflow(BinOp::Shr, _, r) => {
1348                 write!(f, "\"attempt to shift right by `{{}}`, which would overflow\", {:?}", r)
1349             }
1350             Overflow(BinOp::Shl, _, r) => {
1351                 write!(f, "\"attempt to shift left by `{{}}`, which would overflow\", {:?}", r)
1352             }
1353             _ => write!(f, "\"{}\"", self.description()),
1354         }
1355     }
1356 }
1357
1358 impl<O: fmt::Debug> fmt::Debug for AssertKind<O> {
1359     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1360         use AssertKind::*;
1361         match self {
1362             BoundsCheck { ref len, ref index } => write!(
1363                 f,
1364                 "index out of bounds: the length is {:?} but the index is {:?}",
1365                 len, index
1366             ),
1367             OverflowNeg(op) => write!(f, "attempt to negate `{:#?}`, which would overflow", op),
1368             DivisionByZero(op) => write!(f, "attempt to divide `{:#?}` by zero", op),
1369             RemainderByZero(op) => write!(
1370                 f,
1371                 "attempt to calculate the remainder of `{:#?}` with a divisor of zero",
1372                 op
1373             ),
1374             Overflow(BinOp::Add, l, r) => {
1375                 write!(f, "attempt to compute `{:#?} + {:#?}`, which would overflow", l, r)
1376             }
1377             Overflow(BinOp::Sub, l, r) => {
1378                 write!(f, "attempt to compute `{:#?} - {:#?}`, which would overflow", l, r)
1379             }
1380             Overflow(BinOp::Mul, l, r) => {
1381                 write!(f, "attempt to compute `{:#?} * {:#?}`, which would overflow", l, r)
1382             }
1383             Overflow(BinOp::Div, l, r) => {
1384                 write!(f, "attempt to compute `{:#?} / {:#?}`, which would overflow", l, r)
1385             }
1386             Overflow(BinOp::Rem, l, r) => write!(
1387                 f,
1388                 "attempt to compute the remainder of `{:#?} % {:#?}`, which would overflow",
1389                 l, r
1390             ),
1391             Overflow(BinOp::Shr, _, r) => {
1392                 write!(f, "attempt to shift right by `{:#?}`, which would overflow", r)
1393             }
1394             Overflow(BinOp::Shl, _, r) => {
1395                 write!(f, "attempt to shift left by `{:#?}`, which would overflow", r)
1396             }
1397             _ => write!(f, "{}", self.description()),
1398         }
1399     }
1400 }
1401
1402 ///////////////////////////////////////////////////////////////////////////
1403 // Statements
1404
1405 /// A statement in a basic block, including information about its source code.
1406 #[derive(Clone, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1407 pub struct Statement<'tcx> {
1408     pub source_info: SourceInfo,
1409     pub kind: StatementKind<'tcx>,
1410 }
1411
1412 impl Statement<'_> {
1413     /// Changes a statement to a nop. This is both faster than deleting instructions and avoids
1414     /// invalidating statement indices in `Location`s.
1415     pub fn make_nop(&mut self) {
1416         self.kind = StatementKind::Nop
1417     }
1418
1419     /// Changes a statement to a nop and returns the original statement.
1420     #[must_use = "If you don't need the statement, use `make_nop` instead"]
1421     pub fn replace_nop(&mut self) -> Self {
1422         Statement {
1423             source_info: self.source_info,
1424             kind: mem::replace(&mut self.kind, StatementKind::Nop),
1425         }
1426     }
1427 }
1428
1429 impl Debug for Statement<'_> {
1430     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1431         use self::StatementKind::*;
1432         match self.kind {
1433             Assign(box (ref place, ref rv)) => write!(fmt, "{:?} = {:?}", place, rv),
1434             FakeRead(box (ref cause, ref place)) => {
1435                 write!(fmt, "FakeRead({:?}, {:?})", cause, place)
1436             }
1437             Retag(ref kind, ref place) => write!(
1438                 fmt,
1439                 "Retag({}{:?})",
1440                 match kind {
1441                     RetagKind::FnEntry => "[fn entry] ",
1442                     RetagKind::TwoPhase => "[2phase] ",
1443                     RetagKind::Raw => "[raw] ",
1444                     RetagKind::Default => "",
1445                 },
1446                 place,
1447             ),
1448             StorageLive(ref place) => write!(fmt, "StorageLive({:?})", place),
1449             StorageDead(ref place) => write!(fmt, "StorageDead({:?})", place),
1450             SetDiscriminant { ref place, variant_index } => {
1451                 write!(fmt, "discriminant({:?}) = {:?}", place, variant_index)
1452             }
1453             Deinit(ref place) => write!(fmt, "Deinit({:?})", place),
1454             AscribeUserType(box (ref place, ref c_ty), ref variance) => {
1455                 write!(fmt, "AscribeUserType({:?}, {:?}, {:?})", place, variance, c_ty)
1456             }
1457             Coverage(box self::Coverage { ref kind, code_region: Some(ref rgn) }) => {
1458                 write!(fmt, "Coverage::{:?} for {:?}", kind, rgn)
1459             }
1460             Coverage(box ref coverage) => write!(fmt, "Coverage::{:?}", coverage.kind),
1461             Intrinsic(box ref intrinsic) => write!(fmt, "{intrinsic}"),
1462             Nop => write!(fmt, "nop"),
1463         }
1464     }
1465 }
1466
1467 impl<'tcx> StatementKind<'tcx> {
1468     pub fn as_assign_mut(&mut self) -> Option<&mut (Place<'tcx>, Rvalue<'tcx>)> {
1469         match self {
1470             StatementKind::Assign(x) => Some(x),
1471             _ => None,
1472         }
1473     }
1474
1475     pub fn as_assign(&self) -> Option<&(Place<'tcx>, Rvalue<'tcx>)> {
1476         match self {
1477             StatementKind::Assign(x) => Some(x),
1478             _ => None,
1479         }
1480     }
1481 }
1482
1483 ///////////////////////////////////////////////////////////////////////////
1484 // Places
1485
1486 impl<V, T> ProjectionElem<V, T> {
1487     /// Returns `true` if the target of this projection may refer to a different region of memory
1488     /// than the base.
1489     fn is_indirect(&self) -> bool {
1490         match self {
1491             Self::Deref => true,
1492
1493             Self::Field(_, _)
1494             | Self::Index(_)
1495             | Self::OpaqueCast(_)
1496             | Self::ConstantIndex { .. }
1497             | Self::Subslice { .. }
1498             | Self::Downcast(_, _) => false,
1499         }
1500     }
1501
1502     /// Returns `true` if this is a `Downcast` projection with the given `VariantIdx`.
1503     pub fn is_downcast_to(&self, v: VariantIdx) -> bool {
1504         matches!(*self, Self::Downcast(_, x) if x == v)
1505     }
1506
1507     /// Returns `true` if this is a `Field` projection with the given index.
1508     pub fn is_field_to(&self, f: Field) -> bool {
1509         matches!(*self, Self::Field(x, _) if x == f)
1510     }
1511 }
1512
1513 /// Alias for projections as they appear in `UserTypeProjection`, where we
1514 /// need neither the `V` parameter for `Index` nor the `T` for `Field`.
1515 pub type ProjectionKind = ProjectionElem<(), ()>;
1516
1517 rustc_index::newtype_index! {
1518     /// A [newtype'd][wrapper] index type in the MIR [control-flow graph][CFG]
1519     ///
1520     /// A field (e.g., `f` in `_1.f`) is one variant of [`ProjectionElem`]. Conceptually,
1521     /// rustc can identify that a field projection refers to either two different regions of memory
1522     /// or the same one between the base and the 'projection element'.
1523     /// Read more about projections in the [rustc-dev-guide][mir-datatypes]
1524     ///
1525     /// [wrapper]: https://rustc-dev-guide.rust-lang.org/appendix/glossary.html#newtype
1526     /// [CFG]: https://rustc-dev-guide.rust-lang.org/appendix/background.html#cfg
1527     /// [mir-datatypes]: https://rustc-dev-guide.rust-lang.org/mir/index.html#mir-data-types
1528     pub struct Field {
1529         derive [HashStable]
1530         DEBUG_FORMAT = "field[{}]"
1531     }
1532 }
1533
1534 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
1535 pub struct PlaceRef<'tcx> {
1536     pub local: Local,
1537     pub projection: &'tcx [PlaceElem<'tcx>],
1538 }
1539
1540 // Once we stop implementing `Ord` for `DefId`,
1541 // this impl will be unnecessary. Until then, we'll
1542 // leave this impl in place to prevent re-adding a
1543 // dependency on the `Ord` impl for `DefId`
1544 impl<'tcx> !PartialOrd for PlaceRef<'tcx> {}
1545
1546 impl<'tcx> Place<'tcx> {
1547     // FIXME change this to a const fn by also making List::empty a const fn.
1548     pub fn return_place() -> Place<'tcx> {
1549         Place { local: RETURN_PLACE, projection: List::empty() }
1550     }
1551
1552     /// Returns `true` if this `Place` contains a `Deref` projection.
1553     ///
1554     /// If `Place::is_indirect` returns false, the caller knows that the `Place` refers to the
1555     /// same region of memory as its base.
1556     pub fn is_indirect(&self) -> bool {
1557         self.projection.iter().any(|elem| elem.is_indirect())
1558     }
1559
1560     /// If MirPhase >= Derefered and if projection contains Deref,
1561     /// It's guaranteed to be in the first place
1562     pub fn has_deref(&self) -> bool {
1563         // To make sure this is not accidentally used in wrong mir phase
1564         debug_assert!(
1565             self.projection.is_empty() || !self.projection[1..].contains(&PlaceElem::Deref)
1566         );
1567         self.projection.first() == Some(&PlaceElem::Deref)
1568     }
1569
1570     /// Finds the innermost `Local` from this `Place`, *if* it is either a local itself or
1571     /// a single deref of a local.
1572     #[inline(always)]
1573     pub fn local_or_deref_local(&self) -> Option<Local> {
1574         self.as_ref().local_or_deref_local()
1575     }
1576
1577     /// If this place represents a local variable like `_X` with no
1578     /// projections, return `Some(_X)`.
1579     #[inline(always)]
1580     pub fn as_local(&self) -> Option<Local> {
1581         self.as_ref().as_local()
1582     }
1583
1584     #[inline]
1585     pub fn as_ref(&self) -> PlaceRef<'tcx> {
1586         PlaceRef { local: self.local, projection: &self.projection }
1587     }
1588
1589     /// Iterate over the projections in evaluation order, i.e., the first element is the base with
1590     /// its projection and then subsequently more projections are added.
1591     /// As a concrete example, given the place a.b.c, this would yield:
1592     /// - (a, .b)
1593     /// - (a.b, .c)
1594     ///
1595     /// Given a place without projections, the iterator is empty.
1596     #[inline]
1597     pub fn iter_projections(
1598         self,
1599     ) -> impl Iterator<Item = (PlaceRef<'tcx>, PlaceElem<'tcx>)> + DoubleEndedIterator {
1600         self.as_ref().iter_projections()
1601     }
1602
1603     /// Generates a new place by appending `more_projections` to the existing ones
1604     /// and interning the result.
1605     pub fn project_deeper(self, more_projections: &[PlaceElem<'tcx>], tcx: TyCtxt<'tcx>) -> Self {
1606         if more_projections.is_empty() {
1607             return self;
1608         }
1609
1610         let mut v: Vec<PlaceElem<'tcx>>;
1611
1612         let new_projections = if self.projection.is_empty() {
1613             more_projections
1614         } else {
1615             v = Vec::with_capacity(self.projection.len() + more_projections.len());
1616             v.extend(self.projection);
1617             v.extend(more_projections);
1618             &v
1619         };
1620
1621         Place { local: self.local, projection: tcx.intern_place_elems(new_projections) }
1622     }
1623 }
1624
1625 impl From<Local> for Place<'_> {
1626     #[inline]
1627     fn from(local: Local) -> Self {
1628         Place { local, projection: List::empty() }
1629     }
1630 }
1631
1632 impl<'tcx> PlaceRef<'tcx> {
1633     /// Finds the innermost `Local` from this `Place`, *if* it is either a local itself or
1634     /// a single deref of a local.
1635     pub fn local_or_deref_local(&self) -> Option<Local> {
1636         match *self {
1637             PlaceRef { local, projection: [] }
1638             | PlaceRef { local, projection: [ProjectionElem::Deref] } => Some(local),
1639             _ => None,
1640         }
1641     }
1642
1643     /// If MirPhase >= Derefered and if projection contains Deref,
1644     /// It's guaranteed to be in the first place
1645     pub fn has_deref(&self) -> bool {
1646         self.projection.first() == Some(&PlaceElem::Deref)
1647     }
1648
1649     /// If this place represents a local variable like `_X` with no
1650     /// projections, return `Some(_X)`.
1651     #[inline]
1652     pub fn as_local(&self) -> Option<Local> {
1653         match *self {
1654             PlaceRef { local, projection: [] } => Some(local),
1655             _ => None,
1656         }
1657     }
1658
1659     #[inline]
1660     pub fn last_projection(&self) -> Option<(PlaceRef<'tcx>, PlaceElem<'tcx>)> {
1661         if let &[ref proj_base @ .., elem] = self.projection {
1662             Some((PlaceRef { local: self.local, projection: proj_base }, elem))
1663         } else {
1664             None
1665         }
1666     }
1667
1668     /// Iterate over the projections in evaluation order, i.e., the first element is the base with
1669     /// its projection and then subsequently more projections are added.
1670     /// As a concrete example, given the place a.b.c, this would yield:
1671     /// - (a, .b)
1672     /// - (a.b, .c)
1673     ///
1674     /// Given a place without projections, the iterator is empty.
1675     #[inline]
1676     pub fn iter_projections(
1677         self,
1678     ) -> impl Iterator<Item = (PlaceRef<'tcx>, PlaceElem<'tcx>)> + DoubleEndedIterator {
1679         self.projection.iter().enumerate().map(move |(i, proj)| {
1680             let base = PlaceRef { local: self.local, projection: &self.projection[..i] };
1681             (base, *proj)
1682         })
1683     }
1684 }
1685
1686 impl Debug for Place<'_> {
1687     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1688         for elem in self.projection.iter().rev() {
1689             match elem {
1690                 ProjectionElem::OpaqueCast(_)
1691                 | ProjectionElem::Downcast(_, _)
1692                 | ProjectionElem::Field(_, _) => {
1693                     write!(fmt, "(").unwrap();
1694                 }
1695                 ProjectionElem::Deref => {
1696                     write!(fmt, "(*").unwrap();
1697                 }
1698                 ProjectionElem::Index(_)
1699                 | ProjectionElem::ConstantIndex { .. }
1700                 | ProjectionElem::Subslice { .. } => {}
1701             }
1702         }
1703
1704         write!(fmt, "{:?}", self.local)?;
1705
1706         for elem in self.projection.iter() {
1707             match elem {
1708                 ProjectionElem::OpaqueCast(ty) => {
1709                     write!(fmt, " as {})", ty)?;
1710                 }
1711                 ProjectionElem::Downcast(Some(name), _index) => {
1712                     write!(fmt, " as {})", name)?;
1713                 }
1714                 ProjectionElem::Downcast(None, index) => {
1715                     write!(fmt, " as variant#{:?})", index)?;
1716                 }
1717                 ProjectionElem::Deref => {
1718                     write!(fmt, ")")?;
1719                 }
1720                 ProjectionElem::Field(field, ty) => {
1721                     write!(fmt, ".{:?}: {:?})", field.index(), ty)?;
1722                 }
1723                 ProjectionElem::Index(ref index) => {
1724                     write!(fmt, "[{:?}]", index)?;
1725                 }
1726                 ProjectionElem::ConstantIndex { offset, min_length, from_end: false } => {
1727                     write!(fmt, "[{:?} of {:?}]", offset, min_length)?;
1728                 }
1729                 ProjectionElem::ConstantIndex { offset, min_length, from_end: true } => {
1730                     write!(fmt, "[-{:?} of {:?}]", offset, min_length)?;
1731                 }
1732                 ProjectionElem::Subslice { from, to, from_end: true } if to == 0 => {
1733                     write!(fmt, "[{:?}:]", from)?;
1734                 }
1735                 ProjectionElem::Subslice { from, to, from_end: true } if from == 0 => {
1736                     write!(fmt, "[:-{:?}]", to)?;
1737                 }
1738                 ProjectionElem::Subslice { from, to, from_end: true } => {
1739                     write!(fmt, "[{:?}:-{:?}]", from, to)?;
1740                 }
1741                 ProjectionElem::Subslice { from, to, from_end: false } => {
1742                     write!(fmt, "[{:?}..{:?}]", from, to)?;
1743                 }
1744             }
1745         }
1746
1747         Ok(())
1748     }
1749 }
1750
1751 ///////////////////////////////////////////////////////////////////////////
1752 // Scopes
1753
1754 rustc_index::newtype_index! {
1755     pub struct SourceScope {
1756         derive [HashStable]
1757         DEBUG_FORMAT = "scope[{}]",
1758         const OUTERMOST_SOURCE_SCOPE = 0,
1759     }
1760 }
1761
1762 impl SourceScope {
1763     /// Finds the original HirId this MIR item came from.
1764     /// This is necessary after MIR optimizations, as otherwise we get a HirId
1765     /// from the function that was inlined instead of the function call site.
1766     pub fn lint_root<'tcx>(
1767         self,
1768         source_scopes: &IndexVec<SourceScope, SourceScopeData<'tcx>>,
1769     ) -> Option<HirId> {
1770         let mut data = &source_scopes[self];
1771         // FIXME(oli-obk): we should be able to just walk the `inlined_parent_scope`, but it
1772         // does not work as I thought it would. Needs more investigation and documentation.
1773         while data.inlined.is_some() {
1774             trace!(?data);
1775             data = &source_scopes[data.parent_scope.unwrap()];
1776         }
1777         trace!(?data);
1778         match &data.local_data {
1779             ClearCrossCrate::Set(data) => Some(data.lint_root),
1780             ClearCrossCrate::Clear => None,
1781         }
1782     }
1783
1784     /// The instance this source scope was inlined from, if any.
1785     #[inline]
1786     pub fn inlined_instance<'tcx>(
1787         self,
1788         source_scopes: &IndexVec<SourceScope, SourceScopeData<'tcx>>,
1789     ) -> Option<ty::Instance<'tcx>> {
1790         let scope_data = &source_scopes[self];
1791         if let Some((inlined_instance, _)) = scope_data.inlined {
1792             Some(inlined_instance)
1793         } else if let Some(inlined_scope) = scope_data.inlined_parent_scope {
1794             Some(source_scopes[inlined_scope].inlined.unwrap().0)
1795         } else {
1796             None
1797         }
1798     }
1799 }
1800
1801 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
1802 pub struct SourceScopeData<'tcx> {
1803     pub span: Span,
1804     pub parent_scope: Option<SourceScope>,
1805
1806     /// Whether this scope is the root of a scope tree of another body,
1807     /// inlined into this body by the MIR inliner.
1808     /// `ty::Instance` is the callee, and the `Span` is the call site.
1809     pub inlined: Option<(ty::Instance<'tcx>, Span)>,
1810
1811     /// Nearest (transitive) parent scope (if any) which is inlined.
1812     /// This is an optimization over walking up `parent_scope`
1813     /// until a scope with `inlined: Some(...)` is found.
1814     pub inlined_parent_scope: Option<SourceScope>,
1815
1816     /// Crate-local information for this source scope, that can't (and
1817     /// needn't) be tracked across crates.
1818     pub local_data: ClearCrossCrate<SourceScopeLocalData>,
1819 }
1820
1821 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable)]
1822 pub struct SourceScopeLocalData {
1823     /// An `HirId` with lint levels equivalent to this scope's lint levels.
1824     pub lint_root: hir::HirId,
1825     /// The unsafe block that contains this node.
1826     pub safety: Safety,
1827 }
1828
1829 ///////////////////////////////////////////////////////////////////////////
1830 // Operands
1831
1832 impl<'tcx> Debug for Operand<'tcx> {
1833     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1834         use self::Operand::*;
1835         match *self {
1836             Constant(ref a) => write!(fmt, "{:?}", a),
1837             Copy(ref place) => write!(fmt, "{:?}", place),
1838             Move(ref place) => write!(fmt, "move {:?}", place),
1839         }
1840     }
1841 }
1842
1843 impl<'tcx> Operand<'tcx> {
1844     /// Convenience helper to make a constant that refers to the fn
1845     /// with given `DefId` and substs. Since this is used to synthesize
1846     /// MIR, assumes `user_ty` is None.
1847     pub fn function_handle(
1848         tcx: TyCtxt<'tcx>,
1849         def_id: DefId,
1850         substs: SubstsRef<'tcx>,
1851         span: Span,
1852     ) -> Self {
1853         let ty = tcx.mk_fn_def(def_id, substs);
1854         Operand::Constant(Box::new(Constant {
1855             span,
1856             user_ty: None,
1857             literal: ConstantKind::Val(ConstValue::ZeroSized, ty),
1858         }))
1859     }
1860
1861     pub fn is_move(&self) -> bool {
1862         matches!(self, Operand::Move(..))
1863     }
1864
1865     /// Convenience helper to make a literal-like constant from a given scalar value.
1866     /// Since this is used to synthesize MIR, assumes `user_ty` is None.
1867     pub fn const_from_scalar(
1868         tcx: TyCtxt<'tcx>,
1869         ty: Ty<'tcx>,
1870         val: Scalar,
1871         span: Span,
1872     ) -> Operand<'tcx> {
1873         debug_assert!({
1874             let param_env_and_ty = ty::ParamEnv::empty().and(ty);
1875             let type_size = tcx
1876                 .layout_of(param_env_and_ty)
1877                 .unwrap_or_else(|e| panic!("could not compute layout for {:?}: {:?}", ty, e))
1878                 .size;
1879             let scalar_size = match val {
1880                 Scalar::Int(int) => int.size(),
1881                 _ => panic!("Invalid scalar type {:?}", val),
1882             };
1883             scalar_size == type_size
1884         });
1885         Operand::Constant(Box::new(Constant {
1886             span,
1887             user_ty: None,
1888             literal: ConstantKind::Val(ConstValue::Scalar(val), ty),
1889         }))
1890     }
1891
1892     pub fn to_copy(&self) -> Self {
1893         match *self {
1894             Operand::Copy(_) | Operand::Constant(_) => self.clone(),
1895             Operand::Move(place) => Operand::Copy(place),
1896         }
1897     }
1898
1899     /// Returns the `Place` that is the target of this `Operand`, or `None` if this `Operand` is a
1900     /// constant.
1901     pub fn place(&self) -> Option<Place<'tcx>> {
1902         match self {
1903             Operand::Copy(place) | Operand::Move(place) => Some(*place),
1904             Operand::Constant(_) => None,
1905         }
1906     }
1907
1908     /// Returns the `Constant` that is the target of this `Operand`, or `None` if this `Operand` is a
1909     /// place.
1910     pub fn constant(&self) -> Option<&Constant<'tcx>> {
1911         match self {
1912             Operand::Constant(x) => Some(&**x),
1913             Operand::Copy(_) | Operand::Move(_) => None,
1914         }
1915     }
1916
1917     /// Gets the `ty::FnDef` from an operand if it's a constant function item.
1918     ///
1919     /// While this is unlikely in general, it's the normal case of what you'll
1920     /// find as the `func` in a [`TerminatorKind::Call`].
1921     pub fn const_fn_def(&self) -> Option<(DefId, SubstsRef<'tcx>)> {
1922         let const_ty = self.constant()?.literal.ty();
1923         if let ty::FnDef(def_id, substs) = *const_ty.kind() { Some((def_id, substs)) } else { None }
1924     }
1925 }
1926
1927 ///////////////////////////////////////////////////////////////////////////
1928 /// Rvalues
1929
1930 impl<'tcx> Rvalue<'tcx> {
1931     /// Returns true if rvalue can be safely removed when the result is unused.
1932     #[inline]
1933     pub fn is_safe_to_remove(&self) -> bool {
1934         match self {
1935             // Pointer to int casts may be side-effects due to exposing the provenance.
1936             // While the model is undecided, we should be conservative. See
1937             // <https://www.ralfj.de/blog/2022/04/11/provenance-exposed.html>
1938             Rvalue::Cast(CastKind::PointerExposeAddress, _, _) => false,
1939
1940             Rvalue::Use(_)
1941             | Rvalue::CopyForDeref(_)
1942             | Rvalue::Repeat(_, _)
1943             | Rvalue::Ref(_, _, _)
1944             | Rvalue::ThreadLocalRef(_)
1945             | Rvalue::AddressOf(_, _)
1946             | Rvalue::Len(_)
1947             | Rvalue::Cast(
1948                 CastKind::IntToInt
1949                 | CastKind::FloatToInt
1950                 | CastKind::FloatToFloat
1951                 | CastKind::IntToFloat
1952                 | CastKind::FnPtrToPtr
1953                 | CastKind::PtrToPtr
1954                 | CastKind::Pointer(_)
1955                 | CastKind::PointerFromExposedAddress
1956                 | CastKind::DynStar,
1957                 _,
1958                 _,
1959             )
1960             | Rvalue::BinaryOp(_, _)
1961             | Rvalue::CheckedBinaryOp(_, _)
1962             | Rvalue::NullaryOp(_, _)
1963             | Rvalue::UnaryOp(_, _)
1964             | Rvalue::Discriminant(_)
1965             | Rvalue::Aggregate(_, _)
1966             | Rvalue::ShallowInitBox(_, _) => true,
1967         }
1968     }
1969 }
1970
1971 impl BorrowKind {
1972     pub fn allows_two_phase_borrow(&self) -> bool {
1973         match *self {
1974             BorrowKind::Shared | BorrowKind::Shallow | BorrowKind::Unique => false,
1975             BorrowKind::Mut { allow_two_phase_borrow } => allow_two_phase_borrow,
1976         }
1977     }
1978
1979     // FIXME: won't be used after diagnostic migration
1980     pub fn describe_mutability(&self) -> &str {
1981         match *self {
1982             BorrowKind::Shared | BorrowKind::Shallow | BorrowKind::Unique => "immutable",
1983             BorrowKind::Mut { .. } => "mutable",
1984         }
1985     }
1986 }
1987
1988 impl BinOp {
1989     pub fn is_checkable(self) -> bool {
1990         use self::BinOp::*;
1991         matches!(self, Add | Sub | Mul | Shl | Shr)
1992     }
1993 }
1994
1995 impl<'tcx> Debug for Rvalue<'tcx> {
1996     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
1997         use self::Rvalue::*;
1998
1999         match *self {
2000             Use(ref place) => write!(fmt, "{:?}", place),
2001             Repeat(ref a, b) => {
2002                 write!(fmt, "[{:?}; ", a)?;
2003                 pretty_print_const(b, fmt, false)?;
2004                 write!(fmt, "]")
2005             }
2006             Len(ref a) => write!(fmt, "Len({:?})", a),
2007             Cast(ref kind, ref place, ref ty) => {
2008                 write!(fmt, "{:?} as {:?} ({:?})", place, ty, kind)
2009             }
2010             BinaryOp(ref op, box (ref a, ref b)) => write!(fmt, "{:?}({:?}, {:?})", op, a, b),
2011             CheckedBinaryOp(ref op, box (ref a, ref b)) => {
2012                 write!(fmt, "Checked{:?}({:?}, {:?})", op, a, b)
2013             }
2014             UnaryOp(ref op, ref a) => write!(fmt, "{:?}({:?})", op, a),
2015             Discriminant(ref place) => write!(fmt, "discriminant({:?})", place),
2016             NullaryOp(ref op, ref t) => write!(fmt, "{:?}({:?})", op, t),
2017             ThreadLocalRef(did) => ty::tls::with(|tcx| {
2018                 let muta = tcx.static_mutability(did).unwrap().prefix_str();
2019                 write!(fmt, "&/*tls*/ {}{}", muta, tcx.def_path_str(did))
2020             }),
2021             Ref(region, borrow_kind, ref place) => {
2022                 let kind_str = match borrow_kind {
2023                     BorrowKind::Shared => "",
2024                     BorrowKind::Shallow => "shallow ",
2025                     BorrowKind::Mut { .. } | BorrowKind::Unique => "mut ",
2026                 };
2027
2028                 // When printing regions, add trailing space if necessary.
2029                 let print_region = ty::tls::with(|tcx| {
2030                     tcx.sess.verbose() || tcx.sess.opts.unstable_opts.identify_regions
2031                 });
2032                 let region = if print_region {
2033                     let mut region = region.to_string();
2034                     if !region.is_empty() {
2035                         region.push(' ');
2036                     }
2037                     region
2038                 } else {
2039                     // Do not even print 'static
2040                     String::new()
2041                 };
2042                 write!(fmt, "&{}{}{:?}", region, kind_str, place)
2043             }
2044
2045             CopyForDeref(ref place) => write!(fmt, "deref_copy {:#?}", place),
2046
2047             AddressOf(mutability, ref place) => {
2048                 let kind_str = match mutability {
2049                     Mutability::Mut => "mut",
2050                     Mutability::Not => "const",
2051                 };
2052
2053                 write!(fmt, "&raw {} {:?}", kind_str, place)
2054             }
2055
2056             Aggregate(ref kind, ref places) => {
2057                 let fmt_tuple = |fmt: &mut Formatter<'_>, name: &str| {
2058                     let mut tuple_fmt = fmt.debug_tuple(name);
2059                     for place in places {
2060                         tuple_fmt.field(place);
2061                     }
2062                     tuple_fmt.finish()
2063                 };
2064
2065                 match **kind {
2066                     AggregateKind::Array(_) => write!(fmt, "{:?}", places),
2067
2068                     AggregateKind::Tuple => {
2069                         if places.is_empty() {
2070                             write!(fmt, "()")
2071                         } else {
2072                             fmt_tuple(fmt, "")
2073                         }
2074                     }
2075
2076                     AggregateKind::Adt(adt_did, variant, substs, _user_ty, _) => {
2077                         ty::tls::with(|tcx| {
2078                             let variant_def = &tcx.adt_def(adt_did).variant(variant);
2079                             let substs = tcx.lift(substs).expect("could not lift for printing");
2080                             let name = FmtPrinter::new(tcx, Namespace::ValueNS)
2081                                 .print_def_path(variant_def.def_id, substs)?
2082                                 .into_buffer();
2083
2084                             match variant_def.ctor_kind() {
2085                                 Some(CtorKind::Const) => fmt.write_str(&name),
2086                                 Some(CtorKind::Fn) => fmt_tuple(fmt, &name),
2087                                 None => {
2088                                     let mut struct_fmt = fmt.debug_struct(&name);
2089                                     for (field, place) in iter::zip(&variant_def.fields, places) {
2090                                         struct_fmt.field(field.name.as_str(), place);
2091                                     }
2092                                     struct_fmt.finish()
2093                                 }
2094                             }
2095                         })
2096                     }
2097
2098                     AggregateKind::Closure(def_id, substs) => ty::tls::with(|tcx| {
2099                         let name = if tcx.sess.opts.unstable_opts.span_free_formats {
2100                             let substs = tcx.lift(substs).unwrap();
2101                             format!(
2102                                 "[closure@{}]",
2103                                 tcx.def_path_str_with_substs(def_id.to_def_id(), substs),
2104                             )
2105                         } else {
2106                             let span = tcx.def_span(def_id);
2107                             format!(
2108                                 "[closure@{}]",
2109                                 tcx.sess.source_map().span_to_diagnostic_string(span)
2110                             )
2111                         };
2112                         let mut struct_fmt = fmt.debug_struct(&name);
2113
2114                         // FIXME(project-rfc-2229#48): This should be a list of capture names/places
2115                         if let Some(upvars) = tcx.upvars_mentioned(def_id) {
2116                             for (&var_id, place) in iter::zip(upvars.keys(), places) {
2117                                 let var_name = tcx.hir().name(var_id);
2118                                 struct_fmt.field(var_name.as_str(), place);
2119                             }
2120                         }
2121
2122                         struct_fmt.finish()
2123                     }),
2124
2125                     AggregateKind::Generator(def_id, _, _) => ty::tls::with(|tcx| {
2126                         let name = format!("[generator@{:?}]", tcx.def_span(def_id));
2127                         let mut struct_fmt = fmt.debug_struct(&name);
2128
2129                         // FIXME(project-rfc-2229#48): This should be a list of capture names/places
2130                         if let Some(upvars) = tcx.upvars_mentioned(def_id) {
2131                             for (&var_id, place) in iter::zip(upvars.keys(), places) {
2132                                 let var_name = tcx.hir().name(var_id);
2133                                 struct_fmt.field(var_name.as_str(), place);
2134                             }
2135                         }
2136
2137                         struct_fmt.finish()
2138                     }),
2139                 }
2140             }
2141
2142             ShallowInitBox(ref place, ref ty) => {
2143                 write!(fmt, "ShallowInitBox({:?}, {:?})", place, ty)
2144             }
2145         }
2146     }
2147 }
2148
2149 ///////////////////////////////////////////////////////////////////////////
2150 /// Constants
2151 ///
2152 /// Two constants are equal if they are the same constant. Note that
2153 /// this does not necessarily mean that they are `==` in Rust. In
2154 /// particular, one must be wary of `NaN`!
2155
2156 #[derive(Clone, Copy, PartialEq, TyEncodable, TyDecodable, Hash, HashStable)]
2157 #[derive(TypeFoldable, TypeVisitable)]
2158 pub struct Constant<'tcx> {
2159     pub span: Span,
2160
2161     /// Optional user-given type: for something like
2162     /// `collect::<Vec<_>>`, this would be present and would
2163     /// indicate that `Vec<_>` was explicitly specified.
2164     ///
2165     /// Needed for NLL to impose user-given type constraints.
2166     pub user_ty: Option<UserTypeAnnotationIndex>,
2167
2168     pub literal: ConstantKind<'tcx>,
2169 }
2170
2171 #[derive(Clone, Copy, PartialEq, Eq, TyEncodable, TyDecodable, Hash, HashStable, Debug)]
2172 #[derive(Lift, TypeFoldable, TypeVisitable)]
2173 pub enum ConstantKind<'tcx> {
2174     /// This constant came from the type system
2175     Ty(ty::Const<'tcx>),
2176
2177     /// An unevaluated mir constant which is not part of the type system.
2178     Unevaluated(UnevaluatedConst<'tcx>, Ty<'tcx>),
2179
2180     /// This constant cannot go back into the type system, as it represents
2181     /// something the type system cannot handle (e.g. pointers).
2182     Val(interpret::ConstValue<'tcx>, Ty<'tcx>),
2183 }
2184
2185 impl<'tcx> Constant<'tcx> {
2186     pub fn check_static_ptr(&self, tcx: TyCtxt<'_>) -> Option<DefId> {
2187         match self.literal.try_to_scalar() {
2188             Some(Scalar::Ptr(ptr, _size)) => match tcx.global_alloc(ptr.provenance) {
2189                 GlobalAlloc::Static(def_id) => {
2190                     assert!(!tcx.is_thread_local_static(def_id));
2191                     Some(def_id)
2192                 }
2193                 _ => None,
2194             },
2195             _ => None,
2196         }
2197     }
2198     #[inline]
2199     pub fn ty(&self) -> Ty<'tcx> {
2200         self.literal.ty()
2201     }
2202 }
2203
2204 impl<'tcx> ConstantKind<'tcx> {
2205     #[inline(always)]
2206     pub fn ty(&self) -> Ty<'tcx> {
2207         match self {
2208             ConstantKind::Ty(c) => c.ty(),
2209             ConstantKind::Val(_, ty) | ConstantKind::Unevaluated(_, ty) => *ty,
2210         }
2211     }
2212
2213     #[inline]
2214     pub fn try_to_value(self, tcx: TyCtxt<'tcx>) -> Option<interpret::ConstValue<'tcx>> {
2215         match self {
2216             ConstantKind::Ty(c) => match c.kind() {
2217                 ty::ConstKind::Value(valtree) => Some(tcx.valtree_to_const_val((c.ty(), valtree))),
2218                 _ => None,
2219             },
2220             ConstantKind::Val(val, _) => Some(val),
2221             ConstantKind::Unevaluated(..) => None,
2222         }
2223     }
2224
2225     #[inline]
2226     pub fn try_to_scalar(self) -> Option<Scalar> {
2227         match self {
2228             ConstantKind::Ty(c) => match c.kind() {
2229                 ty::ConstKind::Value(valtree) => match valtree {
2230                     ty::ValTree::Leaf(scalar_int) => Some(Scalar::Int(scalar_int)),
2231                     ty::ValTree::Branch(_) => None,
2232                 },
2233                 _ => None,
2234             },
2235             ConstantKind::Val(val, _) => val.try_to_scalar(),
2236             ConstantKind::Unevaluated(..) => None,
2237         }
2238     }
2239
2240     #[inline]
2241     pub fn try_to_scalar_int(self) -> Option<ScalarInt> {
2242         Some(self.try_to_scalar()?.assert_int())
2243     }
2244
2245     #[inline]
2246     pub fn try_to_bits(self, size: Size) -> Option<u128> {
2247         self.try_to_scalar_int()?.to_bits(size).ok()
2248     }
2249
2250     #[inline]
2251     pub fn try_to_bool(self) -> Option<bool> {
2252         self.try_to_scalar_int()?.try_into().ok()
2253     }
2254
2255     #[inline]
2256     pub fn eval(self, tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Self {
2257         match self {
2258             Self::Ty(c) => {
2259                 if let Some(val) = c.kind().try_eval_for_mir(tcx, param_env) {
2260                     match val {
2261                         Ok(val) => Self::Val(val, c.ty()),
2262                         Err(_) => Self::Ty(tcx.const_error(self.ty())),
2263                     }
2264                 } else {
2265                     self
2266                 }
2267             }
2268             Self::Val(_, _) => self,
2269             Self::Unevaluated(uneval, ty) => {
2270                 // FIXME: We might want to have a `try_eval`-like function on `Unevaluated`
2271                 match tcx.const_eval_resolve(param_env, uneval, None) {
2272                     Ok(val) => Self::Val(val, ty),
2273                     Err(ErrorHandled::TooGeneric) => self,
2274                     Err(ErrorHandled::Reported(guar)) => {
2275                         Self::Ty(tcx.const_error_with_guaranteed(ty, guar))
2276                     }
2277                 }
2278             }
2279         }
2280     }
2281
2282     /// Panics if the value cannot be evaluated or doesn't contain a valid integer of the given type.
2283     #[inline]
2284     pub fn eval_bits(self, tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>, ty: Ty<'tcx>) -> u128 {
2285         self.try_eval_bits(tcx, param_env, ty)
2286             .unwrap_or_else(|| bug!("expected bits of {:#?}, got {:#?}", ty, self))
2287     }
2288
2289     #[inline]
2290     pub fn try_eval_bits(
2291         &self,
2292         tcx: TyCtxt<'tcx>,
2293         param_env: ty::ParamEnv<'tcx>,
2294         ty: Ty<'tcx>,
2295     ) -> Option<u128> {
2296         match self {
2297             Self::Ty(ct) => ct.try_eval_bits(tcx, param_env, ty),
2298             Self::Val(val, t) => {
2299                 assert_eq!(*t, ty);
2300                 let size =
2301                     tcx.layout_of(param_env.with_reveal_all_normalized(tcx).and(ty)).ok()?.size;
2302                 val.try_to_bits(size)
2303             }
2304             Self::Unevaluated(uneval, ty) => {
2305                 match tcx.const_eval_resolve(param_env, *uneval, None) {
2306                     Ok(val) => {
2307                         let size = tcx
2308                             .layout_of(param_env.with_reveal_all_normalized(tcx).and(*ty))
2309                             .ok()?
2310                             .size;
2311                         val.try_to_bits(size)
2312                     }
2313                     Err(_) => None,
2314                 }
2315             }
2316         }
2317     }
2318
2319     #[inline]
2320     pub fn try_eval_bool(&self, tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Option<bool> {
2321         match self {
2322             Self::Ty(ct) => ct.try_eval_bool(tcx, param_env),
2323             Self::Val(val, _) => val.try_to_bool(),
2324             Self::Unevaluated(uneval, _) => {
2325                 match tcx.const_eval_resolve(param_env, *uneval, None) {
2326                     Ok(val) => val.try_to_bool(),
2327                     Err(_) => None,
2328                 }
2329             }
2330         }
2331     }
2332
2333     #[inline]
2334     pub fn try_eval_usize(&self, tcx: TyCtxt<'tcx>, param_env: ty::ParamEnv<'tcx>) -> Option<u64> {
2335         match self {
2336             Self::Ty(ct) => ct.try_eval_usize(tcx, param_env),
2337             Self::Val(val, _) => val.try_to_machine_usize(tcx),
2338             Self::Unevaluated(uneval, _) => {
2339                 match tcx.const_eval_resolve(param_env, *uneval, None) {
2340                     Ok(val) => val.try_to_machine_usize(tcx),
2341                     Err(_) => None,
2342                 }
2343             }
2344         }
2345     }
2346
2347     #[inline]
2348     pub fn from_value(val: ConstValue<'tcx>, ty: Ty<'tcx>) -> Self {
2349         Self::Val(val, ty)
2350     }
2351
2352     pub fn from_bits(
2353         tcx: TyCtxt<'tcx>,
2354         bits: u128,
2355         param_env_ty: ty::ParamEnvAnd<'tcx, Ty<'tcx>>,
2356     ) -> Self {
2357         let size = tcx
2358             .layout_of(param_env_ty)
2359             .unwrap_or_else(|e| {
2360                 bug!("could not compute layout for {:?}: {:?}", param_env_ty.value, e)
2361             })
2362             .size;
2363         let cv = ConstValue::Scalar(Scalar::from_uint(bits, size));
2364
2365         Self::Val(cv, param_env_ty.value)
2366     }
2367
2368     #[inline]
2369     pub fn from_bool(tcx: TyCtxt<'tcx>, v: bool) -> Self {
2370         let cv = ConstValue::from_bool(v);
2371         Self::Val(cv, tcx.types.bool)
2372     }
2373
2374     #[inline]
2375     pub fn zero_sized(ty: Ty<'tcx>) -> Self {
2376         let cv = ConstValue::ZeroSized;
2377         Self::Val(cv, ty)
2378     }
2379
2380     pub fn from_usize(tcx: TyCtxt<'tcx>, n: u64) -> Self {
2381         let ty = tcx.types.usize;
2382         Self::from_bits(tcx, n as u128, ty::ParamEnv::empty().and(ty))
2383     }
2384
2385     #[inline]
2386     pub fn from_scalar(_tcx: TyCtxt<'tcx>, s: Scalar, ty: Ty<'tcx>) -> Self {
2387         let val = ConstValue::Scalar(s);
2388         Self::Val(val, ty)
2389     }
2390
2391     /// Literals are converted to `ConstantKindVal`, const generic parameters are eagerly
2392     /// converted to a constant, everything else becomes `Unevaluated`.
2393     pub fn from_anon_const(
2394         tcx: TyCtxt<'tcx>,
2395         def_id: LocalDefId,
2396         param_env: ty::ParamEnv<'tcx>,
2397     ) -> Self {
2398         Self::from_opt_const_arg_anon_const(tcx, ty::WithOptConstParam::unknown(def_id), param_env)
2399     }
2400
2401     #[instrument(skip(tcx), level = "debug", ret)]
2402     pub fn from_inline_const(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> Self {
2403         let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
2404         let body_id = match tcx.hir().get(hir_id) {
2405             hir::Node::AnonConst(ac) => ac.body,
2406             _ => span_bug!(
2407                 tcx.def_span(def_id.to_def_id()),
2408                 "from_inline_const can only process anonymous constants"
2409             ),
2410         };
2411         let expr = &tcx.hir().body(body_id).value;
2412         let ty = tcx.typeck(def_id).node_type(hir_id);
2413
2414         let lit_input = match expr.kind {
2415             hir::ExprKind::Lit(ref lit) => Some(LitToConstInput { lit: &lit.node, ty, neg: false }),
2416             hir::ExprKind::Unary(hir::UnOp::Neg, ref expr) => match expr.kind {
2417                 hir::ExprKind::Lit(ref lit) => {
2418                     Some(LitToConstInput { lit: &lit.node, ty, neg: true })
2419                 }
2420                 _ => None,
2421             },
2422             _ => None,
2423         };
2424         if let Some(lit_input) = lit_input {
2425             // If an error occurred, ignore that it's a literal and leave reporting the error up to
2426             // mir.
2427             match tcx.at(expr.span).lit_to_mir_constant(lit_input) {
2428                 Ok(c) => return c,
2429                 Err(_) => {}
2430             }
2431         }
2432
2433         let typeck_root_def_id = tcx.typeck_root_def_id(def_id.to_def_id());
2434         let parent_substs =
2435             tcx.erase_regions(InternalSubsts::identity_for_item(tcx, typeck_root_def_id));
2436         let substs =
2437             ty::InlineConstSubsts::new(tcx, ty::InlineConstSubstsParts { parent_substs, ty })
2438                 .substs;
2439
2440         let uneval = UnevaluatedConst {
2441             def: ty::WithOptConstParam::unknown(def_id).to_global(),
2442             substs,
2443             promoted: None,
2444         };
2445         debug_assert!(!uneval.has_free_regions());
2446
2447         Self::Unevaluated(uneval, ty)
2448     }
2449
2450     #[instrument(skip(tcx), level = "debug", ret)]
2451     fn from_opt_const_arg_anon_const(
2452         tcx: TyCtxt<'tcx>,
2453         def: ty::WithOptConstParam<LocalDefId>,
2454         param_env: ty::ParamEnv<'tcx>,
2455     ) -> Self {
2456         let body_id = match tcx.hir().get_by_def_id(def.did) {
2457             hir::Node::AnonConst(ac) => ac.body,
2458             _ => span_bug!(
2459                 tcx.def_span(def.did.to_def_id()),
2460                 "from_anon_const can only process anonymous constants"
2461             ),
2462         };
2463
2464         let expr = &tcx.hir().body(body_id).value;
2465         debug!(?expr);
2466
2467         // Unwrap a block, so that e.g. `{ P }` is recognised as a parameter. Const arguments
2468         // currently have to be wrapped in curly brackets, so it's necessary to special-case.
2469         let expr = match &expr.kind {
2470             hir::ExprKind::Block(block, _) if block.stmts.is_empty() && block.expr.is_some() => {
2471                 block.expr.as_ref().unwrap()
2472             }
2473             _ => expr,
2474         };
2475         debug!("expr.kind: {:?}", expr.kind);
2476
2477         let ty = tcx.type_of(def.def_id_for_type_of());
2478         debug!(?ty);
2479
2480         // FIXME(const_generics): We currently have to special case parameters because `min_const_generics`
2481         // does not provide the parents generics to anonymous constants. We still allow generic const
2482         // parameters by themselves however, e.g. `N`.  These constants would cause an ICE if we were to
2483         // ever try to substitute the generic parameters in their bodies.
2484         //
2485         // While this doesn't happen as these constants are always used as `ty::ConstKind::Param`, it does
2486         // cause issues if we were to remove that special-case and try to evaluate the constant instead.
2487         use hir::{def::DefKind::ConstParam, def::Res, ExprKind, Path, QPath};
2488         match expr.kind {
2489             ExprKind::Path(QPath::Resolved(_, &Path { res: Res::Def(ConstParam, def_id), .. })) => {
2490                 // Find the name and index of the const parameter by indexing the generics of
2491                 // the parent item and construct a `ParamConst`.
2492                 let item_def_id = tcx.parent(def_id);
2493                 let generics = tcx.generics_of(item_def_id);
2494                 let index = generics.param_def_id_to_index[&def_id];
2495                 let name = tcx.item_name(def_id);
2496                 let ty_const = tcx.mk_const(ty::ParamConst::new(index, name), ty);
2497                 debug!(?ty_const);
2498
2499                 return Self::Ty(ty_const);
2500             }
2501             _ => {}
2502         }
2503
2504         let hir_id = tcx.hir().local_def_id_to_hir_id(def.did);
2505         let parent_substs = if let Some(parent_hir_id) = tcx.hir().find_parent_node(hir_id) {
2506             if let Some(parent_did) = tcx.hir().opt_local_def_id(parent_hir_id) {
2507                 InternalSubsts::identity_for_item(tcx, parent_did.to_def_id())
2508             } else {
2509                 tcx.mk_substs(Vec::<GenericArg<'tcx>>::new().into_iter())
2510             }
2511         } else {
2512             tcx.mk_substs(Vec::<GenericArg<'tcx>>::new().into_iter())
2513         };
2514         debug!(?parent_substs);
2515
2516         let did = def.did.to_def_id();
2517         let child_substs = InternalSubsts::identity_for_item(tcx, did);
2518         let substs = tcx.mk_substs(parent_substs.into_iter().chain(child_substs.into_iter()));
2519         debug!(?substs);
2520
2521         let hir_id = tcx.hir().local_def_id_to_hir_id(def.did);
2522         let span = tcx.hir().span(hir_id);
2523         let uneval = UnevaluatedConst::new(def.to_global(), substs);
2524         debug!(?span, ?param_env);
2525
2526         match tcx.const_eval_resolve(param_env, uneval, Some(span)) {
2527             Ok(val) => {
2528                 debug!("evaluated const value");
2529                 Self::Val(val, ty)
2530             }
2531             Err(_) => {
2532                 debug!("error encountered during evaluation");
2533                 // Error was handled in `const_eval_resolve`. Here we just create a
2534                 // new unevaluated const and error hard later in codegen
2535                 Self::Unevaluated(
2536                     UnevaluatedConst {
2537                         def: def.to_global(),
2538                         substs: InternalSubsts::identity_for_item(tcx, def.did.to_def_id()),
2539                         promoted: None,
2540                     },
2541                     ty,
2542                 )
2543             }
2544         }
2545     }
2546
2547     pub fn from_const(c: ty::Const<'tcx>, tcx: TyCtxt<'tcx>) -> Self {
2548         match c.kind() {
2549             ty::ConstKind::Value(valtree) => {
2550                 let const_val = tcx.valtree_to_const_val((c.ty(), valtree));
2551                 Self::Val(const_val, c.ty())
2552             }
2553             ty::ConstKind::Unevaluated(uv) => Self::Unevaluated(uv.expand(), c.ty()),
2554             _ => Self::Ty(c),
2555         }
2556     }
2557 }
2558
2559 /// An unevaluated (potentially generic) constant used in MIR.
2560 #[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord, TyEncodable, TyDecodable, Lift)]
2561 #[derive(Hash, HashStable, TypeFoldable, TypeVisitable)]
2562 pub struct UnevaluatedConst<'tcx> {
2563     pub def: ty::WithOptConstParam<DefId>,
2564     pub substs: SubstsRef<'tcx>,
2565     pub promoted: Option<Promoted>,
2566 }
2567
2568 impl<'tcx> UnevaluatedConst<'tcx> {
2569     // FIXME: probably should get rid of this method. It's also wrong to
2570     // shrink and then later expand a promoted.
2571     #[inline]
2572     pub fn shrink(self) -> ty::UnevaluatedConst<'tcx> {
2573         ty::UnevaluatedConst { def: self.def, substs: self.substs }
2574     }
2575 }
2576
2577 impl<'tcx> UnevaluatedConst<'tcx> {
2578     #[inline]
2579     pub fn new(
2580         def: ty::WithOptConstParam<DefId>,
2581         substs: SubstsRef<'tcx>,
2582     ) -> UnevaluatedConst<'tcx> {
2583         UnevaluatedConst { def, substs, promoted: Default::default() }
2584     }
2585 }
2586
2587 /// A collection of projections into user types.
2588 ///
2589 /// They are projections because a binding can occur a part of a
2590 /// parent pattern that has been ascribed a type.
2591 ///
2592 /// Its a collection because there can be multiple type ascriptions on
2593 /// the path from the root of the pattern down to the binding itself.
2594 ///
2595 /// An example:
2596 ///
2597 /// ```ignore (illustrative)
2598 /// struct S<'a>((i32, &'a str), String);
2599 /// let S((_, w): (i32, &'static str), _): S = ...;
2600 /// //    ------  ^^^^^^^^^^^^^^^^^^^ (1)
2601 /// //  ---------------------------------  ^ (2)
2602 /// ```
2603 ///
2604 /// The highlights labelled `(1)` show the subpattern `(_, w)` being
2605 /// ascribed the type `(i32, &'static str)`.
2606 ///
2607 /// The highlights labelled `(2)` show the whole pattern being
2608 /// ascribed the type `S`.
2609 ///
2610 /// In this example, when we descend to `w`, we will have built up the
2611 /// following two projected types:
2612 ///
2613 ///   * base: `S`,                   projection: `(base.0).1`
2614 ///   * base: `(i32, &'static str)`, projection: `base.1`
2615 ///
2616 /// The first will lead to the constraint `w: &'1 str` (for some
2617 /// inferred region `'1`). The second will lead to the constraint `w:
2618 /// &'static str`.
2619 #[derive(Clone, Debug, TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
2620 pub struct UserTypeProjections {
2621     pub contents: Vec<(UserTypeProjection, Span)>,
2622 }
2623
2624 impl<'tcx> UserTypeProjections {
2625     pub fn none() -> Self {
2626         UserTypeProjections { contents: vec![] }
2627     }
2628
2629     pub fn is_empty(&self) -> bool {
2630         self.contents.is_empty()
2631     }
2632
2633     pub fn projections_and_spans(
2634         &self,
2635     ) -> impl Iterator<Item = &(UserTypeProjection, Span)> + ExactSizeIterator {
2636         self.contents.iter()
2637     }
2638
2639     pub fn projections(&self) -> impl Iterator<Item = &UserTypeProjection> + ExactSizeIterator {
2640         self.contents.iter().map(|&(ref user_type, _span)| user_type)
2641     }
2642
2643     pub fn push_projection(mut self, user_ty: &UserTypeProjection, span: Span) -> Self {
2644         self.contents.push((user_ty.clone(), span));
2645         self
2646     }
2647
2648     fn map_projections(
2649         mut self,
2650         mut f: impl FnMut(UserTypeProjection) -> UserTypeProjection,
2651     ) -> Self {
2652         self.contents = self.contents.into_iter().map(|(proj, span)| (f(proj), span)).collect();
2653         self
2654     }
2655
2656     pub fn index(self) -> Self {
2657         self.map_projections(|pat_ty_proj| pat_ty_proj.index())
2658     }
2659
2660     pub fn subslice(self, from: u64, to: u64) -> Self {
2661         self.map_projections(|pat_ty_proj| pat_ty_proj.subslice(from, to))
2662     }
2663
2664     pub fn deref(self) -> Self {
2665         self.map_projections(|pat_ty_proj| pat_ty_proj.deref())
2666     }
2667
2668     pub fn leaf(self, field: Field) -> Self {
2669         self.map_projections(|pat_ty_proj| pat_ty_proj.leaf(field))
2670     }
2671
2672     pub fn variant(self, adt_def: AdtDef<'tcx>, variant_index: VariantIdx, field: Field) -> Self {
2673         self.map_projections(|pat_ty_proj| pat_ty_proj.variant(adt_def, variant_index, field))
2674     }
2675 }
2676
2677 /// Encodes the effect of a user-supplied type annotation on the
2678 /// subcomponents of a pattern. The effect is determined by applying the
2679 /// given list of projections to some underlying base type. Often,
2680 /// the projection element list `projs` is empty, in which case this
2681 /// directly encodes a type in `base`. But in the case of complex patterns with
2682 /// subpatterns and bindings, we want to apply only a *part* of the type to a variable,
2683 /// in which case the `projs` vector is used.
2684 ///
2685 /// Examples:
2686 ///
2687 /// * `let x: T = ...` -- here, the `projs` vector is empty.
2688 ///
2689 /// * `let (x, _): T = ...` -- here, the `projs` vector would contain
2690 ///   `field[0]` (aka `.0`), indicating that the type of `s` is
2691 ///   determined by finding the type of the `.0` field from `T`.
2692 #[derive(Clone, Debug, TyEncodable, TyDecodable, Hash, HashStable, PartialEq)]
2693 pub struct UserTypeProjection {
2694     pub base: UserTypeAnnotationIndex,
2695     pub projs: Vec<ProjectionKind>,
2696 }
2697
2698 impl Copy for ProjectionKind {}
2699
2700 impl UserTypeProjection {
2701     pub(crate) fn index(mut self) -> Self {
2702         self.projs.push(ProjectionElem::Index(()));
2703         self
2704     }
2705
2706     pub(crate) fn subslice(mut self, from: u64, to: u64) -> Self {
2707         self.projs.push(ProjectionElem::Subslice { from, to, from_end: true });
2708         self
2709     }
2710
2711     pub(crate) fn deref(mut self) -> Self {
2712         self.projs.push(ProjectionElem::Deref);
2713         self
2714     }
2715
2716     pub(crate) fn leaf(mut self, field: Field) -> Self {
2717         self.projs.push(ProjectionElem::Field(field, ()));
2718         self
2719     }
2720
2721     pub(crate) fn variant(
2722         mut self,
2723         adt_def: AdtDef<'_>,
2724         variant_index: VariantIdx,
2725         field: Field,
2726     ) -> Self {
2727         self.projs.push(ProjectionElem::Downcast(
2728             Some(adt_def.variant(variant_index).name),
2729             variant_index,
2730         ));
2731         self.projs.push(ProjectionElem::Field(field, ()));
2732         self
2733     }
2734 }
2735
2736 impl<'tcx> TypeFoldable<'tcx> for UserTypeProjection {
2737     fn try_fold_with<F: FallibleTypeFolder<'tcx>>(self, folder: &mut F) -> Result<Self, F::Error> {
2738         Ok(UserTypeProjection {
2739             base: self.base.try_fold_with(folder)?,
2740             projs: self.projs.try_fold_with(folder)?,
2741         })
2742     }
2743 }
2744
2745 impl<'tcx> TypeVisitable<'tcx> for UserTypeProjection {
2746     fn visit_with<Vs: TypeVisitor<'tcx>>(&self, visitor: &mut Vs) -> ControlFlow<Vs::BreakTy> {
2747         self.base.visit_with(visitor)
2748         // Note: there's nothing in `self.proj` to visit.
2749     }
2750 }
2751
2752 rustc_index::newtype_index! {
2753     pub struct Promoted {
2754         derive [HashStable]
2755         DEBUG_FORMAT = "promoted[{}]"
2756     }
2757 }
2758
2759 impl<'tcx> Debug for Constant<'tcx> {
2760     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2761         write!(fmt, "{}", self)
2762     }
2763 }
2764
2765 impl<'tcx> Display for Constant<'tcx> {
2766     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2767         match self.ty().kind() {
2768             ty::FnDef(..) => {}
2769             _ => write!(fmt, "const ")?,
2770         }
2771         Display::fmt(&self.literal, fmt)
2772     }
2773 }
2774
2775 impl<'tcx> Display for ConstantKind<'tcx> {
2776     fn fmt(&self, fmt: &mut Formatter<'_>) -> fmt::Result {
2777         match *self {
2778             ConstantKind::Ty(c) => pretty_print_const(c, fmt, true),
2779             ConstantKind::Val(val, ty) => pretty_print_const_value(val, ty, fmt, true),
2780             // FIXME(valtrees): Correctly print mir constants.
2781             ConstantKind::Unevaluated(..) => {
2782                 fmt.write_str("_")?;
2783                 Ok(())
2784             }
2785         }
2786     }
2787 }
2788
2789 fn pretty_print_const<'tcx>(
2790     c: ty::Const<'tcx>,
2791     fmt: &mut Formatter<'_>,
2792     print_types: bool,
2793 ) -> fmt::Result {
2794     use crate::ty::print::PrettyPrinter;
2795     ty::tls::with(|tcx| {
2796         let literal = tcx.lift(c).unwrap();
2797         let mut cx = FmtPrinter::new(tcx, Namespace::ValueNS);
2798         cx.print_alloc_ids = true;
2799         let cx = cx.pretty_print_const(literal, print_types)?;
2800         fmt.write_str(&cx.into_buffer())?;
2801         Ok(())
2802     })
2803 }
2804
2805 fn pretty_print_byte_str(fmt: &mut Formatter<'_>, byte_str: &[u8]) -> fmt::Result {
2806     write!(fmt, "b\"{}\"", byte_str.escape_ascii())
2807 }
2808
2809 fn comma_sep<'tcx>(fmt: &mut Formatter<'_>, elems: Vec<ConstantKind<'tcx>>) -> fmt::Result {
2810     let mut first = true;
2811     for elem in elems {
2812         if !first {
2813             fmt.write_str(", ")?;
2814         }
2815         fmt.write_str(&format!("{}", elem))?;
2816         first = false;
2817     }
2818     Ok(())
2819 }
2820
2821 // FIXME: Move that into `mir/pretty.rs`.
2822 fn pretty_print_const_value<'tcx>(
2823     ct: ConstValue<'tcx>,
2824     ty: Ty<'tcx>,
2825     fmt: &mut Formatter<'_>,
2826     print_ty: bool,
2827 ) -> fmt::Result {
2828     use crate::ty::print::PrettyPrinter;
2829
2830     ty::tls::with(|tcx| {
2831         let ct = tcx.lift(ct).unwrap();
2832         let ty = tcx.lift(ty).unwrap();
2833
2834         if tcx.sess.verbose() {
2835             fmt.write_str(&format!("ConstValue({:?}: {})", ct, ty))?;
2836             return Ok(());
2837         }
2838
2839         let u8_type = tcx.types.u8;
2840         match (ct, ty.kind()) {
2841             // Byte/string slices, printed as (byte) string literals.
2842             (ConstValue::Slice { data, start, end }, ty::Ref(_, inner, _)) => {
2843                 match inner.kind() {
2844                     ty::Slice(t) => {
2845                         if *t == u8_type {
2846                             // The `inspect` here is okay since we checked the bounds, and `u8` carries
2847                             // no provenance (we have an active slice reference here). We don't use
2848                             // this result to affect interpreter execution.
2849                             let byte_str = data
2850                                 .inner()
2851                                 .inspect_with_uninit_and_ptr_outside_interpreter(start..end);
2852                             pretty_print_byte_str(fmt, byte_str)?;
2853                             return Ok(());
2854                         }
2855                     }
2856                     ty::Str => {
2857                         // The `inspect` here is okay since we checked the bounds, and `str` carries
2858                         // no provenance (we have an active `str` reference here). We don't use this
2859                         // result to affect interpreter execution.
2860                         let slice = data
2861                             .inner()
2862                             .inspect_with_uninit_and_ptr_outside_interpreter(start..end);
2863                         fmt.write_str(&format!("{:?}", String::from_utf8_lossy(slice)))?;
2864                         return Ok(());
2865                     }
2866                     _ => {}
2867                 }
2868             }
2869             (ConstValue::ByRef { alloc, offset }, ty::Array(t, n)) if *t == u8_type => {
2870                 let n = n.kind().try_to_bits(tcx.data_layout.pointer_size).unwrap();
2871                 // cast is ok because we already checked for pointer size (32 or 64 bit) above
2872                 let range = AllocRange { start: offset, size: Size::from_bytes(n) };
2873                 let byte_str = alloc.inner().get_bytes_strip_provenance(&tcx, range).unwrap();
2874                 fmt.write_str("*")?;
2875                 pretty_print_byte_str(fmt, byte_str)?;
2876                 return Ok(());
2877             }
2878             // Aggregates, printed as array/tuple/struct/variant construction syntax.
2879             //
2880             // NB: the `has_non_region_param` check ensures that we can use
2881             // the `destructure_const` query with an empty `ty::ParamEnv` without
2882             // introducing ICEs (e.g. via `layout_of`) from missing bounds.
2883             // E.g. `transmute([0usize; 2]): (u8, *mut T)` needs to know `T: Sized`
2884             // to be able to destructure the tuple into `(0u8, *mut T)
2885             //
2886             // FIXME(eddyb) for `--emit=mir`/`-Z dump-mir`, we should provide the
2887             // correct `ty::ParamEnv` to allow printing *all* constant values.
2888             (_, ty::Array(..) | ty::Tuple(..) | ty::Adt(..)) if !ty.has_non_region_param() => {
2889                 let ct = tcx.lift(ct).unwrap();
2890                 let ty = tcx.lift(ty).unwrap();
2891                 if let Some(contents) = tcx.try_destructure_mir_constant(
2892                     ty::ParamEnv::reveal_all().and(ConstantKind::Val(ct, ty)),
2893                 ) {
2894                     let fields = contents.fields.iter().copied().collect::<Vec<_>>();
2895                     match *ty.kind() {
2896                         ty::Array(..) => {
2897                             fmt.write_str("[")?;
2898                             comma_sep(fmt, fields)?;
2899                             fmt.write_str("]")?;
2900                         }
2901                         ty::Tuple(..) => {
2902                             fmt.write_str("(")?;
2903                             comma_sep(fmt, fields)?;
2904                             if contents.fields.len() == 1 {
2905                                 fmt.write_str(",")?;
2906                             }
2907                             fmt.write_str(")")?;
2908                         }
2909                         ty::Adt(def, _) if def.variants().is_empty() => {
2910                             fmt.write_str(&format!("{{unreachable(): {}}}", ty))?;
2911                         }
2912                         ty::Adt(def, substs) => {
2913                             let variant_idx = contents
2914                                 .variant
2915                                 .expect("destructed mir constant of adt without variant idx");
2916                             let variant_def = &def.variant(variant_idx);
2917                             let substs = tcx.lift(substs).unwrap();
2918                             let mut cx = FmtPrinter::new(tcx, Namespace::ValueNS);
2919                             cx.print_alloc_ids = true;
2920                             let cx = cx.print_value_path(variant_def.def_id, substs)?;
2921                             fmt.write_str(&cx.into_buffer())?;
2922
2923                             match variant_def.ctor_kind() {
2924                                 Some(CtorKind::Const) => {}
2925                                 Some(CtorKind::Fn) => {
2926                                     fmt.write_str("(")?;
2927                                     comma_sep(fmt, fields)?;
2928                                     fmt.write_str(")")?;
2929                                 }
2930                                 None => {
2931                                     fmt.write_str(" {{ ")?;
2932                                     let mut first = true;
2933                                     for (field_def, field) in iter::zip(&variant_def.fields, fields)
2934                                     {
2935                                         if !first {
2936                                             fmt.write_str(", ")?;
2937                                         }
2938                                         fmt.write_str(&format!("{}: {}", field_def.name, field))?;
2939                                         first = false;
2940                                     }
2941                                     fmt.write_str(" }}")?;
2942                                 }
2943                             }
2944                         }
2945                         _ => unreachable!(),
2946                     }
2947                     return Ok(());
2948                 } else {
2949                     // Fall back to debug pretty printing for invalid constants.
2950                     fmt.write_str(&format!("{:?}", ct))?;
2951                     if print_ty {
2952                         fmt.write_str(&format!(": {}", ty))?;
2953                     }
2954                     return Ok(());
2955                 };
2956             }
2957             (ConstValue::Scalar(scalar), _) => {
2958                 let mut cx = FmtPrinter::new(tcx, Namespace::ValueNS);
2959                 cx.print_alloc_ids = true;
2960                 let ty = tcx.lift(ty).unwrap();
2961                 cx = cx.pretty_print_const_scalar(scalar, ty, print_ty)?;
2962                 fmt.write_str(&cx.into_buffer())?;
2963                 return Ok(());
2964             }
2965             (ConstValue::ZeroSized, ty::FnDef(d, s)) => {
2966                 let mut cx = FmtPrinter::new(tcx, Namespace::ValueNS);
2967                 cx.print_alloc_ids = true;
2968                 let cx = cx.print_value_path(*d, s)?;
2969                 fmt.write_str(&cx.into_buffer())?;
2970                 return Ok(());
2971             }
2972             // FIXME(oli-obk): also pretty print arrays and other aggregate constants by reading
2973             // their fields instead of just dumping the memory.
2974             _ => {}
2975         }
2976         // fallback
2977         fmt.write_str(&format!("{:?}", ct))?;
2978         if print_ty {
2979             fmt.write_str(&format!(": {}", ty))?;
2980         }
2981         Ok(())
2982     })
2983 }
2984
2985 /// `Location` represents the position of the start of the statement; or, if
2986 /// `statement_index` equals the number of statements, then the start of the
2987 /// terminator.
2988 #[derive(Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd, HashStable)]
2989 pub struct Location {
2990     /// The block that the location is within.
2991     pub block: BasicBlock,
2992
2993     pub statement_index: usize,
2994 }
2995
2996 impl fmt::Debug for Location {
2997     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2998         write!(fmt, "{:?}[{}]", self.block, self.statement_index)
2999     }
3000 }
3001
3002 impl Location {
3003     pub const START: Location = Location { block: START_BLOCK, statement_index: 0 };
3004
3005     /// Returns the location immediately after this one within the enclosing block.
3006     ///
3007     /// Note that if this location represents a terminator, then the
3008     /// resulting location would be out of bounds and invalid.
3009     pub fn successor_within_block(&self) -> Location {
3010         Location { block: self.block, statement_index: self.statement_index + 1 }
3011     }
3012
3013     /// Returns `true` if `other` is earlier in the control flow graph than `self`.
3014     pub fn is_predecessor_of<'tcx>(&self, other: Location, body: &Body<'tcx>) -> bool {
3015         // If we are in the same block as the other location and are an earlier statement
3016         // then we are a predecessor of `other`.
3017         if self.block == other.block && self.statement_index < other.statement_index {
3018             return true;
3019         }
3020
3021         let predecessors = body.basic_blocks.predecessors();
3022
3023         // If we're in another block, then we want to check that block is a predecessor of `other`.
3024         let mut queue: Vec<BasicBlock> = predecessors[other.block].to_vec();
3025         let mut visited = FxHashSet::default();
3026
3027         while let Some(block) = queue.pop() {
3028             // If we haven't visited this block before, then make sure we visit its predecessors.
3029             if visited.insert(block) {
3030                 queue.extend(predecessors[block].iter().cloned());
3031             } else {
3032                 continue;
3033             }
3034
3035             // If we found the block that `self` is in, then we are a predecessor of `other` (since
3036             // we found that block by looking at the predecessors of `other`).
3037             if self.block == block {
3038                 return true;
3039             }
3040         }
3041
3042         false
3043     }
3044
3045     pub fn dominates(&self, other: Location, dominators: &Dominators<BasicBlock>) -> bool {
3046         if self.block == other.block {
3047             self.statement_index <= other.statement_index
3048         } else {
3049             dominators.is_dominated_by(other.block, self.block)
3050         }
3051     }
3052 }
3053
3054 // Some nodes are used a lot. Make sure they don't unintentionally get bigger.
3055 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
3056 mod size_asserts {
3057     use super::*;
3058     use rustc_data_structures::static_assert_size;
3059     // tidy-alphabetical-start
3060     static_assert_size!(BasicBlockData<'_>, 144);
3061     static_assert_size!(LocalDecl<'_>, 56);
3062     static_assert_size!(Statement<'_>, 32);
3063     static_assert_size!(StatementKind<'_>, 16);
3064     static_assert_size!(Terminator<'_>, 112);
3065     static_assert_size!(TerminatorKind<'_>, 96);
3066     // tidy-alphabetical-end
3067 }