]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/src/build/mod.rs
Auto merge of #107443 - cjgillot:generator-less-query, r=compiler-errors
[rust.git] / compiler / rustc_mir_build / src / build / mod.rs
1 pub(crate) use crate::build::expr::as_constant::lit_to_mir_constant;
2 use crate::build::expr::as_place::PlaceBuilder;
3 use crate::build::scope::DropKind;
4 use rustc_apfloat::ieee::{Double, Single};
5 use rustc_apfloat::Float;
6 use rustc_data_structures::fx::FxHashMap;
7 use rustc_data_structures::sorted_map::SortedIndexMultiMap;
8 use rustc_errors::ErrorGuaranteed;
9 use rustc_hir as hir;
10 use rustc_hir::def::DefKind;
11 use rustc_hir::def_id::{DefId, LocalDefId};
12 use rustc_hir::{GeneratorKind, Node};
13 use rustc_index::vec::{Idx, IndexVec};
14 use rustc_infer::infer::{InferCtxt, TyCtxtInferExt};
15 use rustc_middle::hir::place::PlaceBase as HirPlaceBase;
16 use rustc_middle::middle::region;
17 use rustc_middle::mir::interpret::ConstValue;
18 use rustc_middle::mir::interpret::Scalar;
19 use rustc_middle::mir::*;
20 use rustc_middle::thir::{
21     self, BindingMode, Expr, ExprId, LintLevel, LocalVarId, Param, ParamId, PatKind, Thir,
22 };
23 use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitable, TypeckResults};
24 use rustc_span::symbol::sym;
25 use rustc_span::Span;
26 use rustc_span::Symbol;
27 use rustc_target::spec::abi::Abi;
28
29 use super::lints;
30
31 pub(crate) fn mir_built(
32     tcx: TyCtxt<'_>,
33     def: ty::WithOptConstParam<LocalDefId>,
34 ) -> &rustc_data_structures::steal::Steal<Body<'_>> {
35     if let Some(def) = def.try_upgrade(tcx) {
36         return tcx.mir_built(def);
37     }
38
39     let mut body = mir_build(tcx, def);
40     if def.const_param_did.is_some() {
41         assert!(matches!(body.source.instance, ty::InstanceDef::Item(_)));
42         body.source = MirSource::from_instance(ty::InstanceDef::Item(def.to_global()));
43     }
44
45     tcx.alloc_steal_mir(body)
46 }
47
48 /// Construct the MIR for a given `DefId`.
49 fn mir_build(tcx: TyCtxt<'_>, def: ty::WithOptConstParam<LocalDefId>) -> Body<'_> {
50     let body_owner_kind = tcx.hir().body_owner_kind(def.did);
51
52     // Ensure unsafeck and abstract const building is ran before we steal the THIR.
53     // We can't use `ensure()` for `thir_abstract_const` as it doesn't compute the query
54     // if inputs are green. This can cause ICEs when calling `thir_abstract_const` after
55     // THIR has been stolen if we haven't computed this query yet.
56     match def {
57         ty::WithOptConstParam { did, const_param_did: Some(const_param_did) } => {
58             tcx.ensure().thir_check_unsafety_for_const_arg((did, const_param_did));
59             drop(tcx.thir_abstract_const_of_const_arg((did, const_param_did)));
60         }
61         ty::WithOptConstParam { did, const_param_did: None } => {
62             tcx.ensure().thir_check_unsafety(did);
63             drop(tcx.thir_abstract_const(did));
64         }
65     }
66
67     let body = match tcx.thir_body(def) {
68         Err(error_reported) => construct_error(tcx, def.did, body_owner_kind, error_reported),
69         Ok((thir, expr)) => {
70             // We ran all queries that depended on THIR at the beginning
71             // of `mir_build`, so now we can steal it
72             let thir = thir.steal();
73
74             if body_owner_kind.is_fn_or_closure() {
75                 construct_fn(tcx, def, &thir, expr)
76             } else {
77                 construct_const(tcx, def, &thir, expr)
78             }
79         }
80     };
81
82     lints::check(tcx, &body);
83
84     // The borrow checker will replace all the regions here with its own
85     // inference variables. There's no point having non-erased regions here.
86     // The exception is `body.user_type_annotations`, which is used unmodified
87     // by borrow checking.
88     debug_assert!(
89         !(body.local_decls.has_free_regions()
90             || body.basic_blocks.has_free_regions()
91             || body.var_debug_info.has_free_regions()
92             || body.yield_ty().has_free_regions()),
93         "Unexpected free regions in MIR: {:?}",
94         body,
95     );
96
97     body
98 }
99
100 ///////////////////////////////////////////////////////////////////////////
101 // BuildMir -- walks a crate, looking for fn items and methods to build MIR from
102
103 #[derive(Debug, PartialEq, Eq)]
104 enum BlockFrame {
105     /// Evaluation is currently within a statement.
106     ///
107     /// Examples include:
108     /// 1. `EXPR;`
109     /// 2. `let _ = EXPR;`
110     /// 3. `let x = EXPR;`
111     Statement {
112         /// If true, then statement discards result from evaluating
113         /// the expression (such as examples 1 and 2 above).
114         ignores_expr_result: bool,
115     },
116
117     /// Evaluation is currently within the tail expression of a block.
118     ///
119     /// Example: `{ STMT_1; STMT_2; EXPR }`
120     TailExpr {
121         /// If true, then the surrounding context of the block ignores
122         /// the result of evaluating the block's tail expression.
123         ///
124         /// Example: `let _ = { STMT_1; EXPR };`
125         tail_result_is_ignored: bool,
126
127         /// `Span` of the tail expression.
128         span: Span,
129     },
130
131     /// Generic mark meaning that the block occurred as a subexpression
132     /// where the result might be used.
133     ///
134     /// Examples: `foo(EXPR)`, `match EXPR { ... }`
135     SubExpr,
136 }
137
138 impl BlockFrame {
139     fn is_tail_expr(&self) -> bool {
140         match *self {
141             BlockFrame::TailExpr { .. } => true,
142
143             BlockFrame::Statement { .. } | BlockFrame::SubExpr => false,
144         }
145     }
146     fn is_statement(&self) -> bool {
147         match *self {
148             BlockFrame::Statement { .. } => true,
149
150             BlockFrame::TailExpr { .. } | BlockFrame::SubExpr => false,
151         }
152     }
153 }
154
155 #[derive(Debug)]
156 struct BlockContext(Vec<BlockFrame>);
157
158 struct Builder<'a, 'tcx> {
159     tcx: TyCtxt<'tcx>,
160     infcx: InferCtxt<'tcx>,
161     typeck_results: &'tcx TypeckResults<'tcx>,
162     region_scope_tree: &'tcx region::ScopeTree,
163     param_env: ty::ParamEnv<'tcx>,
164
165     thir: &'a Thir<'tcx>,
166     cfg: CFG<'tcx>,
167
168     def_id: DefId,
169     hir_id: hir::HirId,
170     parent_module: DefId,
171     check_overflow: bool,
172     fn_span: Span,
173     arg_count: usize,
174     generator_kind: Option<GeneratorKind>,
175
176     /// The current set of scopes, updated as we traverse;
177     /// see the `scope` module for more details.
178     scopes: scope::Scopes<'tcx>,
179
180     /// The block-context: each time we build the code within an thir::Block,
181     /// we push a frame here tracking whether we are building a statement or
182     /// if we are pushing the tail expression of the block. This is used to
183     /// embed information in generated temps about whether they were created
184     /// for a block tail expression or not.
185     ///
186     /// It would be great if we could fold this into `self.scopes`
187     /// somehow, but right now I think that is very tightly tied to
188     /// the code generation in ways that we cannot (or should not)
189     /// start just throwing new entries onto that vector in order to
190     /// distinguish the context of EXPR1 from the context of EXPR2 in
191     /// `{ STMTS; EXPR1 } + EXPR2`.
192     block_context: BlockContext,
193
194     /// The current unsafe block in scope
195     in_scope_unsafe: Safety,
196
197     /// The vector of all scopes that we have created thus far;
198     /// we track this for debuginfo later.
199     source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
200     source_scope: SourceScope,
201
202     /// The guard-context: each time we build the guard expression for
203     /// a match arm, we push onto this stack, and then pop when we
204     /// finish building it.
205     guard_context: Vec<GuardFrame>,
206
207     /// Maps `HirId`s of variable bindings to the `Local`s created for them.
208     /// (A match binding can have two locals; the 2nd is for the arm's guard.)
209     var_indices: FxHashMap<LocalVarId, LocalsForNode>,
210     local_decls: IndexVec<Local, LocalDecl<'tcx>>,
211     canonical_user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
212     upvars: CaptureMap<'tcx>,
213     unit_temp: Option<Place<'tcx>>,
214
215     var_debug_info: Vec<VarDebugInfo<'tcx>>,
216 }
217
218 type CaptureMap<'tcx> = SortedIndexMultiMap<usize, hir::HirId, Capture<'tcx>>;
219
220 #[derive(Debug)]
221 struct Capture<'tcx> {
222     captured_place: &'tcx ty::CapturedPlace<'tcx>,
223     use_place: Place<'tcx>,
224     mutability: Mutability,
225 }
226
227 impl<'a, 'tcx> Builder<'a, 'tcx> {
228     fn is_bound_var_in_guard(&self, id: LocalVarId) -> bool {
229         self.guard_context.iter().any(|frame| frame.locals.iter().any(|local| local.id == id))
230     }
231
232     fn var_local_id(&self, id: LocalVarId, for_guard: ForGuard) -> Local {
233         self.var_indices[&id].local_id(for_guard)
234     }
235 }
236
237 impl BlockContext {
238     fn new() -> Self {
239         BlockContext(vec![])
240     }
241     fn push(&mut self, bf: BlockFrame) {
242         self.0.push(bf);
243     }
244     fn pop(&mut self) -> Option<BlockFrame> {
245         self.0.pop()
246     }
247
248     /// Traverses the frames on the `BlockContext`, searching for either
249     /// the first block-tail expression frame with no intervening
250     /// statement frame.
251     ///
252     /// Notably, this skips over `SubExpr` frames; this method is
253     /// meant to be used in the context of understanding the
254     /// relationship of a temp (created within some complicated
255     /// expression) with its containing expression, and whether the
256     /// value of that *containing expression* (not the temp!) is
257     /// ignored.
258     fn currently_in_block_tail(&self) -> Option<BlockTailInfo> {
259         for bf in self.0.iter().rev() {
260             match bf {
261                 BlockFrame::SubExpr => continue,
262                 BlockFrame::Statement { .. } => break,
263                 &BlockFrame::TailExpr { tail_result_is_ignored, span } => {
264                     return Some(BlockTailInfo { tail_result_is_ignored, span });
265                 }
266             }
267         }
268
269         None
270     }
271
272     /// Looks at the topmost frame on the BlockContext and reports
273     /// whether its one that would discard a block tail result.
274     ///
275     /// Unlike `currently_within_ignored_tail_expression`, this does
276     /// *not* skip over `SubExpr` frames: here, we want to know
277     /// whether the block result itself is discarded.
278     fn currently_ignores_tail_results(&self) -> bool {
279         match self.0.last() {
280             // no context: conservatively assume result is read
281             None => false,
282
283             // sub-expression: block result feeds into some computation
284             Some(BlockFrame::SubExpr) => false,
285
286             // otherwise: use accumulated is_ignored state.
287             Some(
288                 BlockFrame::TailExpr { tail_result_is_ignored: ignored, .. }
289                 | BlockFrame::Statement { ignores_expr_result: ignored },
290             ) => *ignored,
291         }
292     }
293 }
294
295 #[derive(Debug)]
296 enum LocalsForNode {
297     /// In the usual case, a `HirId` for an identifier maps to at most
298     /// one `Local` declaration.
299     One(Local),
300
301     /// The exceptional case is identifiers in a match arm's pattern
302     /// that are referenced in a guard of that match arm. For these,
303     /// we have `2` Locals.
304     ///
305     /// * `for_arm_body` is the Local used in the arm body (which is
306     ///   just like the `One` case above),
307     ///
308     /// * `ref_for_guard` is the Local used in the arm's guard (which
309     ///   is a reference to a temp that is an alias of
310     ///   `for_arm_body`).
311     ForGuard { ref_for_guard: Local, for_arm_body: Local },
312 }
313
314 #[derive(Debug)]
315 struct GuardFrameLocal {
316     id: LocalVarId,
317 }
318
319 impl GuardFrameLocal {
320     fn new(id: LocalVarId, _binding_mode: BindingMode) -> Self {
321         GuardFrameLocal { id }
322     }
323 }
324
325 #[derive(Debug)]
326 struct GuardFrame {
327     /// These are the id's of names that are bound by patterns of the
328     /// arm of *this* guard.
329     ///
330     /// (Frames higher up the stack will have the id's bound in arms
331     /// further out, such as in a case like:
332     ///
333     /// match E1 {
334     ///      P1(id1) if (... (match E2 { P2(id2) if ... => B2 })) => B1,
335     /// }
336     ///
337     /// here, when building for FIXME.
338     locals: Vec<GuardFrameLocal>,
339 }
340
341 /// `ForGuard` indicates whether we are talking about:
342 ///   1. The variable for use outside of guard expressions, or
343 ///   2. The temp that holds reference to (1.), which is actually what the
344 ///      guard expressions see.
345 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
346 enum ForGuard {
347     RefWithinGuard,
348     OutsideGuard,
349 }
350
351 impl LocalsForNode {
352     fn local_id(&self, for_guard: ForGuard) -> Local {
353         match (self, for_guard) {
354             (&LocalsForNode::One(local_id), ForGuard::OutsideGuard)
355             | (
356                 &LocalsForNode::ForGuard { ref_for_guard: local_id, .. },
357                 ForGuard::RefWithinGuard,
358             )
359             | (&LocalsForNode::ForGuard { for_arm_body: local_id, .. }, ForGuard::OutsideGuard) => {
360                 local_id
361             }
362
363             (&LocalsForNode::One(_), ForGuard::RefWithinGuard) => {
364                 bug!("anything with one local should never be within a guard.")
365             }
366         }
367     }
368 }
369
370 struct CFG<'tcx> {
371     basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
372 }
373
374 rustc_index::newtype_index! {
375     struct ScopeId {}
376 }
377
378 #[derive(Debug)]
379 enum NeedsTemporary {
380     /// Use this variant when whatever you are converting with `as_operand`
381     /// is the last thing you are converting. This means that if we introduced
382     /// an intermediate temporary, we'd only read it immediately after, so we can
383     /// also avoid it.
384     No,
385     /// For all cases where you aren't sure or that are too expensive to compute
386     /// for now. It is always safe to fall back to this.
387     Maybe,
388 }
389
390 ///////////////////////////////////////////////////////////////////////////
391 /// The `BlockAnd` "monad" packages up the new basic block along with a
392 /// produced value (sometimes just unit, of course). The `unpack!`
393 /// macro (and methods below) makes working with `BlockAnd` much more
394 /// convenient.
395
396 #[must_use = "if you don't use one of these results, you're leaving a dangling edge"]
397 struct BlockAnd<T>(BasicBlock, T);
398
399 trait BlockAndExtension {
400     fn and<T>(self, v: T) -> BlockAnd<T>;
401     fn unit(self) -> BlockAnd<()>;
402 }
403
404 impl BlockAndExtension for BasicBlock {
405     fn and<T>(self, v: T) -> BlockAnd<T> {
406         BlockAnd(self, v)
407     }
408
409     fn unit(self) -> BlockAnd<()> {
410         BlockAnd(self, ())
411     }
412 }
413
414 /// Update a block pointer and return the value.
415 /// Use it like `let x = unpack!(block = self.foo(block, foo))`.
416 macro_rules! unpack {
417     ($x:ident = $c:expr) => {{
418         let BlockAnd(b, v) = $c;
419         $x = b;
420         v
421     }};
422
423     ($c:expr) => {{
424         let BlockAnd(b, ()) = $c;
425         b
426     }};
427 }
428
429 ///////////////////////////////////////////////////////////////////////////
430 /// the main entry point for building MIR for a function
431
432 fn construct_fn<'tcx>(
433     tcx: TyCtxt<'tcx>,
434     fn_def: ty::WithOptConstParam<LocalDefId>,
435     thir: &Thir<'tcx>,
436     expr: ExprId,
437 ) -> Body<'tcx> {
438     let span = tcx.def_span(fn_def.did);
439     let fn_id = tcx.hir().local_def_id_to_hir_id(fn_def.did);
440     let generator_kind = tcx.generator_kind(fn_def.did);
441
442     // The representation of thir for `-Zunpretty=thir-tree` relies on
443     // the entry expression being the last element of `thir.exprs`.
444     assert_eq!(expr.as_usize(), thir.exprs.len() - 1);
445
446     // Figure out what primary body this item has.
447     let body_id = tcx.hir().body_owned_by(fn_def.did);
448     let span_with_body = tcx.hir().span_with_body(fn_id);
449     let return_ty_span = tcx
450         .hir()
451         .fn_decl_by_hir_id(fn_id)
452         .unwrap_or_else(|| span_bug!(span, "can't build MIR for {:?}", fn_def.did))
453         .output
454         .span();
455
456     // fetch the fully liberated fn signature (that is, all bound
457     // types/lifetimes replaced)
458     let typeck_results = tcx.typeck_opt_const_arg(fn_def);
459     let fn_sig = typeck_results.liberated_fn_sigs()[fn_id];
460
461     let safety = match fn_sig.unsafety {
462         hir::Unsafety::Normal => Safety::Safe,
463         hir::Unsafety::Unsafe => Safety::FnUnsafe,
464     };
465
466     let mut abi = fn_sig.abi;
467     if let DefKind::Closure = tcx.def_kind(fn_def.did) {
468         // HACK(eddyb) Avoid having RustCall on closures,
469         // as it adds unnecessary (and wrong) auto-tupling.
470         abi = Abi::Rust;
471     }
472
473     let arguments = &thir.params;
474
475     let (yield_ty, return_ty) = if generator_kind.is_some() {
476         let gen_ty = arguments[thir::UPVAR_ENV_PARAM].ty;
477         let gen_sig = match gen_ty.kind() {
478             ty::Generator(_, gen_substs, ..) => gen_substs.as_generator().sig(),
479             _ => {
480                 span_bug!(span, "generator w/o generator type: {:?}", gen_ty)
481             }
482         };
483         (Some(gen_sig.yield_ty), gen_sig.return_ty)
484     } else {
485         (None, fn_sig.output())
486     };
487
488     if let Some(custom_mir_attr) =
489         tcx.hir().attrs(fn_id).iter().find(|attr| attr.name_or_empty() == sym::custom_mir)
490     {
491         return custom::build_custom_mir(
492             tcx,
493             fn_def.did.to_def_id(),
494             fn_id,
495             thir,
496             expr,
497             arguments,
498             return_ty,
499             return_ty_span,
500             span_with_body,
501             custom_mir_attr,
502         );
503     }
504
505     let infcx = tcx.infer_ctxt().build();
506     let mut builder = Builder::new(
507         thir,
508         infcx,
509         fn_def,
510         fn_id,
511         span_with_body,
512         arguments.len(),
513         safety,
514         return_ty,
515         return_ty_span,
516         generator_kind,
517     );
518
519     let call_site_scope =
520         region::Scope { id: body_id.hir_id.local_id, data: region::ScopeData::CallSite };
521     let arg_scope =
522         region::Scope { id: body_id.hir_id.local_id, data: region::ScopeData::Arguments };
523     let source_info = builder.source_info(span);
524     let call_site_s = (call_site_scope, source_info);
525     unpack!(builder.in_scope(call_site_s, LintLevel::Inherited, |builder| {
526         let arg_scope_s = (arg_scope, source_info);
527         // Attribute epilogue to function's closing brace
528         let fn_end = span_with_body.shrink_to_hi();
529         let return_block =
530             unpack!(builder.in_breakable_scope(None, Place::return_place(), fn_end, |builder| {
531                 Some(builder.in_scope(arg_scope_s, LintLevel::Inherited, |builder| {
532                     builder.args_and_body(
533                         START_BLOCK,
534                         fn_def.did,
535                         arguments,
536                         arg_scope,
537                         &thir[expr],
538                     )
539                 }))
540             }));
541         let source_info = builder.source_info(fn_end);
542         builder.cfg.terminate(return_block, source_info, TerminatorKind::Return);
543         builder.build_drop_trees();
544         return_block.unit()
545     }));
546
547     let mut body = builder.finish();
548
549     body.spread_arg = if abi == Abi::RustCall {
550         // RustCall pseudo-ABI untuples the last argument.
551         Some(Local::new(arguments.len()))
552     } else {
553         None
554     };
555     if yield_ty.is_some() {
556         body.generator.as_mut().unwrap().yield_ty = yield_ty;
557     }
558     body
559 }
560
561 fn construct_const<'a, 'tcx>(
562     tcx: TyCtxt<'tcx>,
563     def: ty::WithOptConstParam<LocalDefId>,
564     thir: &'a Thir<'tcx>,
565     expr: ExprId,
566 ) -> Body<'tcx> {
567     let hir_id = tcx.hir().local_def_id_to_hir_id(def.did);
568
569     // Figure out what primary body this item has.
570     let (span, const_ty_span) = match tcx.hir().get(hir_id) {
571         Node::Item(hir::Item {
572             kind: hir::ItemKind::Static(ty, _, _) | hir::ItemKind::Const(ty, _),
573             span,
574             ..
575         })
576         | Node::ImplItem(hir::ImplItem { kind: hir::ImplItemKind::Const(ty, _), span, .. })
577         | Node::TraitItem(hir::TraitItem {
578             kind: hir::TraitItemKind::Const(ty, Some(_)),
579             span,
580             ..
581         }) => (*span, ty.span),
582         Node::AnonConst(_) => {
583             let span = tcx.def_span(def.did);
584             (span, span)
585         }
586         _ => span_bug!(tcx.def_span(def.did), "can't build MIR for {:?}", def.did),
587     };
588
589     // Get the revealed type of this const. This is *not* the adjusted
590     // type of its body, which may be a subtype of this type. For
591     // example:
592     //
593     // fn foo(_: &()) {}
594     // static X: fn(&'static ()) = foo;
595     //
596     // The adjusted type of the body of X is `for<'a> fn(&'a ())` which
597     // is not the same as the type of X. We need the type of the return
598     // place to be the type of the constant because NLL typeck will
599     // equate them.
600     let typeck_results = tcx.typeck_opt_const_arg(def);
601     let const_ty = typeck_results.node_type(hir_id);
602
603     let infcx = tcx.infer_ctxt().build();
604     let mut builder = Builder::new(
605         thir,
606         infcx,
607         def,
608         hir_id,
609         span,
610         0,
611         Safety::Safe,
612         const_ty,
613         const_ty_span,
614         None,
615     );
616
617     let mut block = START_BLOCK;
618     unpack!(block = builder.expr_into_dest(Place::return_place(), block, &thir[expr]));
619
620     let source_info = builder.source_info(span);
621     builder.cfg.terminate(block, source_info, TerminatorKind::Return);
622
623     builder.build_drop_trees();
624
625     builder.finish()
626 }
627
628 /// Construct MIR for an item that has had errors in type checking.
629 ///
630 /// This is required because we may still want to run MIR passes on an item
631 /// with type errors, but normal MIR construction can't handle that in general.
632 fn construct_error(
633     tcx: TyCtxt<'_>,
634     def: LocalDefId,
635     body_owner_kind: hir::BodyOwnerKind,
636     err: ErrorGuaranteed,
637 ) -> Body<'_> {
638     let span = tcx.def_span(def);
639     let hir_id = tcx.hir().local_def_id_to_hir_id(def);
640     let generator_kind = tcx.generator_kind(def);
641
642     let ty = tcx.ty_error();
643     let num_params = match body_owner_kind {
644         hir::BodyOwnerKind::Fn => tcx.fn_sig(def).skip_binder().inputs().skip_binder().len(),
645         hir::BodyOwnerKind::Closure => {
646             let ty = tcx.type_of(def);
647             match ty.kind() {
648                 ty::Closure(_, substs) => {
649                     1 + substs.as_closure().sig().inputs().skip_binder().len()
650                 }
651                 ty::Generator(..) => 2,
652                 _ => bug!("expected closure or generator, found {ty:?}"),
653             }
654         }
655         hir::BodyOwnerKind::Const => 0,
656         hir::BodyOwnerKind::Static(_) => 0,
657     };
658     let mut cfg = CFG { basic_blocks: IndexVec::new() };
659     let mut source_scopes = IndexVec::new();
660     let mut local_decls = IndexVec::from_elem_n(LocalDecl::new(ty, span), 1);
661
662     cfg.start_new_block();
663     source_scopes.push(SourceScopeData {
664         span,
665         parent_scope: None,
666         inlined: None,
667         inlined_parent_scope: None,
668         local_data: ClearCrossCrate::Set(SourceScopeLocalData {
669             lint_root: hir_id,
670             safety: Safety::Safe,
671         }),
672     });
673     let source_info = SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE };
674
675     // Some MIR passes will expect the number of parameters to match the
676     // function declaration.
677     for _ in 0..num_params {
678         local_decls.push(LocalDecl::with_source_info(ty, source_info));
679     }
680     cfg.terminate(START_BLOCK, source_info, TerminatorKind::Unreachable);
681
682     let mut body = Body::new(
683         MirSource::item(def.to_def_id()),
684         cfg.basic_blocks,
685         source_scopes,
686         local_decls,
687         IndexVec::new(),
688         num_params,
689         vec![],
690         span,
691         generator_kind,
692         Some(err),
693     );
694     body.generator.as_mut().map(|gen| gen.yield_ty = Some(ty));
695     body
696 }
697
698 impl<'a, 'tcx> Builder<'a, 'tcx> {
699     fn new(
700         thir: &'a Thir<'tcx>,
701         infcx: InferCtxt<'tcx>,
702         def: ty::WithOptConstParam<LocalDefId>,
703         hir_id: hir::HirId,
704         span: Span,
705         arg_count: usize,
706         safety: Safety,
707         return_ty: Ty<'tcx>,
708         return_span: Span,
709         generator_kind: Option<GeneratorKind>,
710     ) -> Builder<'a, 'tcx> {
711         let tcx = infcx.tcx;
712         let attrs = tcx.hir().attrs(hir_id);
713         // Some functions always have overflow checks enabled,
714         // however, they may not get codegen'd, depending on
715         // the settings for the crate they are codegened in.
716         let mut check_overflow = tcx.sess.contains_name(attrs, sym::rustc_inherit_overflow_checks);
717         // Respect -C overflow-checks.
718         check_overflow |= tcx.sess.overflow_checks();
719         // Constants always need overflow checks.
720         check_overflow |= matches!(
721             tcx.hir().body_owner_kind(def.did),
722             hir::BodyOwnerKind::Const | hir::BodyOwnerKind::Static(_)
723         );
724
725         let lint_level = LintLevel::Explicit(hir_id);
726         let param_env = tcx.param_env(def.did);
727         let mut builder = Builder {
728             thir,
729             tcx,
730             infcx,
731             typeck_results: tcx.typeck_opt_const_arg(def),
732             region_scope_tree: tcx.region_scope_tree(def.did),
733             param_env,
734             def_id: def.did.to_def_id(),
735             hir_id,
736             parent_module: tcx.parent_module(hir_id).to_def_id(),
737             check_overflow,
738             cfg: CFG { basic_blocks: IndexVec::new() },
739             fn_span: span,
740             arg_count,
741             generator_kind,
742             scopes: scope::Scopes::new(),
743             block_context: BlockContext::new(),
744             source_scopes: IndexVec::new(),
745             source_scope: OUTERMOST_SOURCE_SCOPE,
746             guard_context: vec![],
747             in_scope_unsafe: safety,
748             local_decls: IndexVec::from_elem_n(LocalDecl::new(return_ty, return_span), 1),
749             canonical_user_type_annotations: IndexVec::new(),
750             upvars: CaptureMap::new(),
751             var_indices: Default::default(),
752             unit_temp: None,
753             var_debug_info: vec![],
754         };
755
756         assert_eq!(builder.cfg.start_new_block(), START_BLOCK);
757         assert_eq!(
758             builder.new_source_scope(span, lint_level, Some(safety)),
759             OUTERMOST_SOURCE_SCOPE
760         );
761         builder.source_scopes[OUTERMOST_SOURCE_SCOPE].parent_scope = None;
762
763         builder
764     }
765
766     fn finish(self) -> Body<'tcx> {
767         for (index, block) in self.cfg.basic_blocks.iter().enumerate() {
768             if block.terminator.is_none() {
769                 span_bug!(self.fn_span, "no terminator on block {:?}", index);
770             }
771         }
772
773         Body::new(
774             MirSource::item(self.def_id),
775             self.cfg.basic_blocks,
776             self.source_scopes,
777             self.local_decls,
778             self.canonical_user_type_annotations,
779             self.arg_count,
780             self.var_debug_info,
781             self.fn_span,
782             self.generator_kind,
783             self.typeck_results.tainted_by_errors,
784         )
785     }
786
787     fn args_and_body(
788         &mut self,
789         mut block: BasicBlock,
790         fn_def_id: LocalDefId,
791         arguments: &IndexVec<ParamId, Param<'tcx>>,
792         argument_scope: region::Scope,
793         expr: &Expr<'tcx>,
794     ) -> BlockAnd<()> {
795         // Allocate locals for the function arguments
796         for param in arguments.iter() {
797             let source_info =
798                 SourceInfo::outermost(param.pat.as_ref().map_or(self.fn_span, |pat| pat.span));
799             let arg_local =
800                 self.local_decls.push(LocalDecl::with_source_info(param.ty, source_info));
801
802             // If this is a simple binding pattern, give debuginfo a nice name.
803             if let Some(ref pat) = param.pat && let Some(name) = pat.simple_ident() {
804                 self.var_debug_info.push(VarDebugInfo {
805                     name,
806                     source_info,
807                     value: VarDebugInfoContents::Place(arg_local.into()),
808                 });
809             }
810         }
811
812         let tcx = self.tcx;
813         let tcx_hir = tcx.hir();
814         let hir_typeck_results = self.typeck_results;
815
816         // In analyze_closure() in upvar.rs we gathered a list of upvars used by an
817         // indexed closure and we stored in a map called closure_min_captures in TypeckResults
818         // with the closure's DefId. Here, we run through that vec of UpvarIds for
819         // the given closure and use the necessary information to create upvar
820         // debuginfo and to fill `self.upvars`.
821         if hir_typeck_results.closure_min_captures.get(&fn_def_id).is_some() {
822             let mut closure_env_projs = vec![];
823             let mut closure_ty = self.local_decls[ty::CAPTURE_STRUCT_LOCAL].ty;
824             if let ty::Ref(_, ty, _) = closure_ty.kind() {
825                 closure_env_projs.push(ProjectionElem::Deref);
826                 closure_ty = *ty;
827             }
828             let upvar_substs = match closure_ty.kind() {
829                 ty::Closure(_, substs) => ty::UpvarSubsts::Closure(substs),
830                 ty::Generator(_, substs, _) => ty::UpvarSubsts::Generator(substs),
831                 _ => span_bug!(self.fn_span, "upvars with non-closure env ty {:?}", closure_ty),
832             };
833             let def_id = self.def_id.as_local().unwrap();
834             let capture_syms = tcx.symbols_for_closure_captures((def_id, fn_def_id));
835             let capture_tys = upvar_substs.upvar_tys();
836             let captures_with_tys = hir_typeck_results
837                 .closure_min_captures_flattened(fn_def_id)
838                 .zip(capture_tys.zip(capture_syms));
839
840             self.upvars = captures_with_tys
841                 .enumerate()
842                 .map(|(i, (captured_place, (ty, sym)))| {
843                     let capture = captured_place.info.capture_kind;
844                     let var_id = match captured_place.place.base {
845                         HirPlaceBase::Upvar(upvar_id) => upvar_id.var_path.hir_id,
846                         _ => bug!("Expected an upvar"),
847                     };
848
849                     let mutability = captured_place.mutability;
850
851                     let mut projs = closure_env_projs.clone();
852                     projs.push(ProjectionElem::Field(Field::new(i), ty));
853                     match capture {
854                         ty::UpvarCapture::ByValue => {}
855                         ty::UpvarCapture::ByRef(..) => {
856                             projs.push(ProjectionElem::Deref);
857                         }
858                     };
859
860                     let use_place = Place {
861                         local: ty::CAPTURE_STRUCT_LOCAL,
862                         projection: tcx.intern_place_elems(&projs),
863                     };
864                     self.var_debug_info.push(VarDebugInfo {
865                         name: *sym,
866                         source_info: SourceInfo::outermost(tcx_hir.span(var_id)),
867                         value: VarDebugInfoContents::Place(use_place),
868                     });
869
870                     let capture = Capture { captured_place, use_place, mutability };
871                     (var_id, capture)
872                 })
873                 .collect();
874         }
875
876         let mut scope = None;
877         // Bind the argument patterns
878         for (index, param) in arguments.iter().enumerate() {
879             // Function arguments always get the first Local indices after the return place
880             let local = Local::new(index + 1);
881             let place = Place::from(local);
882
883             // Make sure we drop (parts of) the argument even when not matched on.
884             self.schedule_drop(
885                 param.pat.as_ref().map_or(expr.span, |pat| pat.span),
886                 argument_scope,
887                 local,
888                 DropKind::Value,
889             );
890
891             let Some(ref pat) = param.pat else {
892                 continue;
893             };
894             let original_source_scope = self.source_scope;
895             let span = pat.span;
896             if let Some(arg_hir_id) = param.hir_id {
897                 self.set_correct_source_scope_for_arg(arg_hir_id, original_source_scope, span);
898             }
899             match pat.kind {
900                 // Don't introduce extra copies for simple bindings
901                 PatKind::Binding {
902                     mutability,
903                     var,
904                     mode: BindingMode::ByValue,
905                     subpattern: None,
906                     ..
907                 } => {
908                     self.local_decls[local].mutability = mutability;
909                     self.local_decls[local].source_info.scope = self.source_scope;
910                     self.local_decls[local].local_info = if let Some(kind) = param.self_kind {
911                         Some(Box::new(LocalInfo::User(ClearCrossCrate::Set(
912                             BindingForm::ImplicitSelf(kind),
913                         ))))
914                     } else {
915                         let binding_mode = ty::BindingMode::BindByValue(mutability);
916                         Some(Box::new(LocalInfo::User(ClearCrossCrate::Set(BindingForm::Var(
917                             VarBindingForm {
918                                 binding_mode,
919                                 opt_ty_info: param.ty_span,
920                                 opt_match_place: Some((None, span)),
921                                 pat_span: span,
922                             },
923                         )))))
924                     };
925                     self.var_indices.insert(var, LocalsForNode::One(local));
926                 }
927                 _ => {
928                     scope = self.declare_bindings(
929                         scope,
930                         expr.span,
931                         &pat,
932                         None,
933                         Some((Some(&place), span)),
934                     );
935                     let place_builder = PlaceBuilder::from(local);
936                     unpack!(block = self.place_into_pattern(block, &pat, place_builder, false));
937                 }
938             }
939             self.source_scope = original_source_scope;
940         }
941
942         // Enter the argument pattern bindings source scope, if it exists.
943         if let Some(source_scope) = scope {
944             self.source_scope = source_scope;
945         }
946
947         self.expr_into_dest(Place::return_place(), block, &expr)
948     }
949
950     fn set_correct_source_scope_for_arg(
951         &mut self,
952         arg_hir_id: hir::HirId,
953         original_source_scope: SourceScope,
954         pattern_span: Span,
955     ) {
956         let parent_id = self.source_scopes[original_source_scope]
957             .local_data
958             .as_ref()
959             .assert_crate_local()
960             .lint_root;
961         self.maybe_new_source_scope(pattern_span, None, arg_hir_id, parent_id);
962     }
963
964     fn get_unit_temp(&mut self) -> Place<'tcx> {
965         match self.unit_temp {
966             Some(tmp) => tmp,
967             None => {
968                 let ty = self.tcx.mk_unit();
969                 let fn_span = self.fn_span;
970                 let tmp = self.temp(ty, fn_span);
971                 self.unit_temp = Some(tmp);
972                 tmp
973             }
974         }
975     }
976 }
977
978 fn parse_float_into_constval<'tcx>(
979     num: Symbol,
980     float_ty: ty::FloatTy,
981     neg: bool,
982 ) -> Option<ConstValue<'tcx>> {
983     parse_float_into_scalar(num, float_ty, neg).map(ConstValue::Scalar)
984 }
985
986 pub(crate) fn parse_float_into_scalar(
987     num: Symbol,
988     float_ty: ty::FloatTy,
989     neg: bool,
990 ) -> Option<Scalar> {
991     let num = num.as_str();
992     match float_ty {
993         ty::FloatTy::F32 => {
994             let Ok(rust_f) = num.parse::<f32>() else { return None };
995             let mut f = num.parse::<Single>().unwrap_or_else(|e| {
996                 panic!("apfloat::ieee::Single failed to parse `{}`: {:?}", num, e)
997             });
998
999             assert!(
1000                 u128::from(rust_f.to_bits()) == f.to_bits(),
1001                 "apfloat::ieee::Single gave different result for `{}`: \
1002                  {}({:#x}) vs Rust's {}({:#x})",
1003                 rust_f,
1004                 f,
1005                 f.to_bits(),
1006                 Single::from_bits(rust_f.to_bits().into()),
1007                 rust_f.to_bits()
1008             );
1009
1010             if neg {
1011                 f = -f;
1012             }
1013
1014             Some(Scalar::from_f32(f))
1015         }
1016         ty::FloatTy::F64 => {
1017             let Ok(rust_f) = num.parse::<f64>() else { return None };
1018             let mut f = num.parse::<Double>().unwrap_or_else(|e| {
1019                 panic!("apfloat::ieee::Double failed to parse `{}`: {:?}", num, e)
1020             });
1021
1022             assert!(
1023                 u128::from(rust_f.to_bits()) == f.to_bits(),
1024                 "apfloat::ieee::Double gave different result for `{}`: \
1025                  {}({:#x}) vs Rust's {}({:#x})",
1026                 rust_f,
1027                 f,
1028                 f.to_bits(),
1029                 Double::from_bits(rust_f.to_bits().into()),
1030                 rust_f.to_bits()
1031             );
1032
1033             if neg {
1034                 f = -f;
1035             }
1036
1037             Some(Scalar::from_f64(f))
1038         }
1039     }
1040 }
1041
1042 ///////////////////////////////////////////////////////////////////////////
1043 // Builder methods are broken up into modules, depending on what kind
1044 // of thing is being lowered. Note that they use the `unpack` macro
1045 // above extensively.
1046
1047 mod block;
1048 mod cfg;
1049 mod custom;
1050 mod expr;
1051 mod matches;
1052 mod misc;
1053 mod scope;
1054
1055 pub(crate) use expr::category::Category as ExprCategory;