]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_transform/src/shim.rs
Rollup merge of #99291 - est31:let_else_tests, r=joshtriplett
[rust.git] / compiler / rustc_mir_transform / src / shim.rs
1 use rustc_hir as hir;
2 use rustc_hir::def_id::DefId;
3 use rustc_hir::lang_items::LangItem;
4 use rustc_middle::mir::*;
5 use rustc_middle::ty::query::Providers;
6 use rustc_middle::ty::subst::{InternalSubsts, Subst};
7 use rustc_middle::ty::{self, EarlyBinder, Ty, TyCtxt};
8 use rustc_target::abi::VariantIdx;
9
10 use rustc_index::vec::{Idx, IndexVec};
11
12 use rustc_span::Span;
13 use rustc_target::spec::abi::Abi;
14
15 use std::fmt;
16 use std::iter;
17
18 use crate::util::expand_aggregate;
19 use crate::{
20     abort_unwinding_calls, add_call_guards, add_moves_for_packed_drops, deref_separator, marker,
21     pass_manager as pm, remove_noop_landing_pads, simplify,
22 };
23 use rustc_middle::mir::patch::MirPatch;
24 use rustc_mir_dataflow::elaborate_drops::{self, DropElaborator, DropFlagMode, DropStyle};
25
26 pub fn provide(providers: &mut Providers) {
27     providers.mir_shims = make_shim;
28 }
29
30 fn make_shim<'tcx>(tcx: TyCtxt<'tcx>, instance: ty::InstanceDef<'tcx>) -> Body<'tcx> {
31     debug!("make_shim({:?})", instance);
32
33     let mut result = match instance {
34         ty::InstanceDef::Item(..) => bug!("item {:?} passed to make_shim", instance),
35         ty::InstanceDef::VTableShim(def_id) => {
36             build_call_shim(tcx, instance, Some(Adjustment::Deref), CallKind::Direct(def_id))
37         }
38         ty::InstanceDef::FnPtrShim(def_id, ty) => {
39             let trait_ = tcx.trait_of_item(def_id).unwrap();
40             let adjustment = match tcx.fn_trait_kind_from_lang_item(trait_) {
41                 Some(ty::ClosureKind::FnOnce) => Adjustment::Identity,
42                 Some(ty::ClosureKind::FnMut | ty::ClosureKind::Fn) => Adjustment::Deref,
43                 None => bug!("fn pointer {:?} is not an fn", ty),
44             };
45
46             build_call_shim(tcx, instance, Some(adjustment), CallKind::Indirect(ty))
47         }
48         // We are generating a call back to our def-id, which the
49         // codegen backend knows to turn to an actual call, be it
50         // a virtual call, or a direct call to a function for which
51         // indirect calls must be codegen'd differently than direct ones
52         // (such as `#[track_caller]`).
53         ty::InstanceDef::ReifyShim(def_id) => {
54             build_call_shim(tcx, instance, None, CallKind::Direct(def_id))
55         }
56         ty::InstanceDef::ClosureOnceShim { call_once: _, track_caller: _ } => {
57             let fn_mut = tcx.require_lang_item(LangItem::FnMut, None);
58             let call_mut = tcx
59                 .associated_items(fn_mut)
60                 .in_definition_order()
61                 .find(|it| it.kind == ty::AssocKind::Fn)
62                 .unwrap()
63                 .def_id;
64
65             build_call_shim(tcx, instance, Some(Adjustment::RefMut), CallKind::Direct(call_mut))
66         }
67
68         ty::InstanceDef::DropGlue(def_id, ty) => {
69             // FIXME(#91576): Drop shims for generators aren't subject to the MIR passes at the end
70             // of this function. Is this intentional?
71             if let Some(ty::Generator(gen_def_id, substs, _)) = ty.map(Ty::kind) {
72                 let body = tcx.optimized_mir(*gen_def_id).generator_drop().unwrap();
73                 let body = EarlyBinder(body.clone()).subst(tcx, substs);
74                 debug!("make_shim({:?}) = {:?}", instance, body);
75                 return body;
76             }
77
78             build_drop_shim(tcx, def_id, ty)
79         }
80         ty::InstanceDef::CloneShim(def_id, ty) => build_clone_shim(tcx, def_id, ty),
81         ty::InstanceDef::Virtual(..) => {
82             bug!("InstanceDef::Virtual ({:?}) is for direct calls only", instance)
83         }
84         ty::InstanceDef::Intrinsic(_) => {
85             bug!("creating shims from intrinsics ({:?}) is unsupported", instance)
86         }
87     };
88     debug!("make_shim({:?}) = untransformed {:?}", instance, result);
89
90     pm::run_passes(
91         tcx,
92         &mut result,
93         &[
94             &add_moves_for_packed_drops::AddMovesForPackedDrops,
95             &deref_separator::Derefer,
96             &remove_noop_landing_pads::RemoveNoopLandingPads,
97             &simplify::SimplifyCfg::new("make_shim"),
98             &add_call_guards::CriticalCallEdges,
99             &abort_unwinding_calls::AbortUnwindingCalls,
100             &marker::PhaseChange(MirPhase::Runtime(RuntimePhase::Optimized)),
101         ],
102     );
103
104     debug!("make_shim({:?}) = {:?}", instance, result);
105
106     result
107 }
108
109 #[derive(Copy, Clone, Debug, PartialEq)]
110 enum Adjustment {
111     /// Pass the receiver as-is.
112     Identity,
113
114     /// We get passed `&[mut] self` and call the target with `*self`.
115     ///
116     /// This either copies `self` (if `Self: Copy`, eg. for function items), or moves out of it
117     /// (for `VTableShim`, which effectively is passed `&own Self`).
118     Deref,
119
120     /// We get passed `self: Self` and call the target with `&mut self`.
121     ///
122     /// In this case we need to ensure that the `Self` is dropped after the call, as the callee
123     /// won't do it for us.
124     RefMut,
125 }
126
127 #[derive(Copy, Clone, Debug, PartialEq)]
128 enum CallKind<'tcx> {
129     /// Call the `FnPtr` that was passed as the receiver.
130     Indirect(Ty<'tcx>),
131
132     /// Call a known `FnDef`.
133     Direct(DefId),
134 }
135
136 fn local_decls_for_sig<'tcx>(
137     sig: &ty::FnSig<'tcx>,
138     span: Span,
139 ) -> IndexVec<Local, LocalDecl<'tcx>> {
140     iter::once(LocalDecl::new(sig.output(), span))
141         .chain(sig.inputs().iter().map(|ity| LocalDecl::new(*ity, span).immutable()))
142         .collect()
143 }
144
145 fn build_drop_shim<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, ty: Option<Ty<'tcx>>) -> Body<'tcx> {
146     debug!("build_drop_shim(def_id={:?}, ty={:?})", def_id, ty);
147
148     assert!(!matches!(ty, Some(ty) if ty.is_generator()));
149
150     let substs = if let Some(ty) = ty {
151         tcx.intern_substs(&[ty.into()])
152     } else {
153         InternalSubsts::identity_for_item(tcx, def_id)
154     };
155     let sig = tcx.bound_fn_sig(def_id).subst(tcx, substs);
156     let sig = tcx.erase_late_bound_regions(sig);
157     let span = tcx.def_span(def_id);
158
159     let source_info = SourceInfo::outermost(span);
160
161     let return_block = BasicBlock::new(1);
162     let mut blocks = IndexVec::with_capacity(2);
163     let block = |blocks: &mut IndexVec<_, _>, kind| {
164         blocks.push(BasicBlockData {
165             statements: vec![],
166             terminator: Some(Terminator { source_info, kind }),
167             is_cleanup: false,
168         })
169     };
170     block(&mut blocks, TerminatorKind::Goto { target: return_block });
171     block(&mut blocks, TerminatorKind::Return);
172
173     let source = MirSource::from_instance(ty::InstanceDef::DropGlue(def_id, ty));
174     let mut body =
175         new_body(source, blocks, local_decls_for_sig(&sig, span), sig.inputs().len(), span);
176
177     if ty.is_some() {
178         // The first argument (index 0), but add 1 for the return value.
179         let dropee_ptr = Place::from(Local::new(1 + 0));
180         if tcx.sess.opts.unstable_opts.mir_emit_retag {
181             // Function arguments should be retagged, and we make this one raw.
182             body.basic_blocks_mut()[START_BLOCK].statements.insert(
183                 0,
184                 Statement {
185                     source_info,
186                     kind: StatementKind::Retag(RetagKind::Raw, Box::new(dropee_ptr)),
187                 },
188             );
189         }
190         let patch = {
191             let param_env = tcx.param_env_reveal_all_normalized(def_id);
192             let mut elaborator =
193                 DropShimElaborator { body: &body, patch: MirPatch::new(&body), tcx, param_env };
194             let dropee = tcx.mk_place_deref(dropee_ptr);
195             let resume_block = elaborator.patch.resume_block();
196             elaborate_drops::elaborate_drop(
197                 &mut elaborator,
198                 source_info,
199                 dropee,
200                 (),
201                 return_block,
202                 elaborate_drops::Unwind::To(resume_block),
203                 START_BLOCK,
204             );
205             elaborator.patch
206         };
207         patch.apply(&mut body);
208     }
209
210     body
211 }
212
213 fn new_body<'tcx>(
214     source: MirSource<'tcx>,
215     basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
216     local_decls: IndexVec<Local, LocalDecl<'tcx>>,
217     arg_count: usize,
218     span: Span,
219 ) -> Body<'tcx> {
220     Body::new(
221         source,
222         basic_blocks,
223         IndexVec::from_elem_n(
224             SourceScopeData {
225                 span,
226                 parent_scope: None,
227                 inlined: None,
228                 inlined_parent_scope: None,
229                 local_data: ClearCrossCrate::Clear,
230             },
231             1,
232         ),
233         local_decls,
234         IndexVec::new(),
235         arg_count,
236         vec![],
237         span,
238         None,
239         // FIXME(compiler-errors): is this correct?
240         None,
241     )
242 }
243
244 pub struct DropShimElaborator<'a, 'tcx> {
245     pub body: &'a Body<'tcx>,
246     pub patch: MirPatch<'tcx>,
247     pub tcx: TyCtxt<'tcx>,
248     pub param_env: ty::ParamEnv<'tcx>,
249 }
250
251 impl fmt::Debug for DropShimElaborator<'_, '_> {
252     fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
253         Ok(())
254     }
255 }
256
257 impl<'a, 'tcx> DropElaborator<'a, 'tcx> for DropShimElaborator<'a, 'tcx> {
258     type Path = ();
259
260     fn patch(&mut self) -> &mut MirPatch<'tcx> {
261         &mut self.patch
262     }
263     fn body(&self) -> &'a Body<'tcx> {
264         self.body
265     }
266     fn tcx(&self) -> TyCtxt<'tcx> {
267         self.tcx
268     }
269     fn param_env(&self) -> ty::ParamEnv<'tcx> {
270         self.param_env
271     }
272
273     fn drop_style(&self, _path: Self::Path, mode: DropFlagMode) -> DropStyle {
274         match mode {
275             DropFlagMode::Shallow => {
276                 // Drops for the contained fields are "shallow" and "static" - they will simply call
277                 // the field's own drop glue.
278                 DropStyle::Static
279             }
280             DropFlagMode::Deep => {
281                 // The top-level drop is "deep" and "open" - it will be elaborated to a drop ladder
282                 // dropping each field contained in the value.
283                 DropStyle::Open
284             }
285         }
286     }
287
288     fn get_drop_flag(&mut self, _path: Self::Path) -> Option<Operand<'tcx>> {
289         None
290     }
291
292     fn clear_drop_flag(&mut self, _location: Location, _path: Self::Path, _mode: DropFlagMode) {}
293
294     fn field_subpath(&self, _path: Self::Path, _field: Field) -> Option<Self::Path> {
295         None
296     }
297     fn deref_subpath(&self, _path: Self::Path) -> Option<Self::Path> {
298         None
299     }
300     fn downcast_subpath(&self, _path: Self::Path, _variant: VariantIdx) -> Option<Self::Path> {
301         Some(())
302     }
303     fn array_subpath(&self, _path: Self::Path, _index: u64, _size: u64) -> Option<Self::Path> {
304         None
305     }
306 }
307
308 /// Builds a `Clone::clone` shim for `self_ty`. Here, `def_id` is `Clone::clone`.
309 fn build_clone_shim<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, self_ty: Ty<'tcx>) -> Body<'tcx> {
310     debug!("build_clone_shim(def_id={:?})", def_id);
311
312     let param_env = tcx.param_env(def_id);
313
314     let mut builder = CloneShimBuilder::new(tcx, def_id, self_ty);
315     let is_copy = self_ty.is_copy_modulo_regions(tcx.at(builder.span), param_env);
316
317     let dest = Place::return_place();
318     let src = tcx.mk_place_deref(Place::from(Local::new(1 + 0)));
319
320     match self_ty.kind() {
321         _ if is_copy => builder.copy_shim(),
322         ty::Closure(_, substs) => {
323             builder.tuple_like_shim(dest, src, substs.as_closure().upvar_tys())
324         }
325         ty::Tuple(..) => builder.tuple_like_shim(dest, src, self_ty.tuple_fields()),
326         _ => bug!("clone shim for `{:?}` which is not `Copy` and is not an aggregate", self_ty),
327     };
328
329     builder.into_mir()
330 }
331
332 struct CloneShimBuilder<'tcx> {
333     tcx: TyCtxt<'tcx>,
334     def_id: DefId,
335     local_decls: IndexVec<Local, LocalDecl<'tcx>>,
336     blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
337     span: Span,
338     sig: ty::FnSig<'tcx>,
339 }
340
341 impl<'tcx> CloneShimBuilder<'tcx> {
342     fn new(tcx: TyCtxt<'tcx>, def_id: DefId, self_ty: Ty<'tcx>) -> Self {
343         // we must subst the self_ty because it's
344         // otherwise going to be TySelf and we can't index
345         // or access fields of a Place of type TySelf.
346         let substs = tcx.mk_substs_trait(self_ty, &[]);
347         let sig = tcx.bound_fn_sig(def_id).subst(tcx, substs);
348         let sig = tcx.erase_late_bound_regions(sig);
349         let span = tcx.def_span(def_id);
350
351         CloneShimBuilder {
352             tcx,
353             def_id,
354             local_decls: local_decls_for_sig(&sig, span),
355             blocks: IndexVec::new(),
356             span,
357             sig,
358         }
359     }
360
361     fn into_mir(self) -> Body<'tcx> {
362         let source = MirSource::from_instance(ty::InstanceDef::CloneShim(
363             self.def_id,
364             self.sig.inputs_and_output[0],
365         ));
366         new_body(source, self.blocks, self.local_decls, self.sig.inputs().len(), self.span)
367     }
368
369     fn source_info(&self) -> SourceInfo {
370         SourceInfo::outermost(self.span)
371     }
372
373     fn block(
374         &mut self,
375         statements: Vec<Statement<'tcx>>,
376         kind: TerminatorKind<'tcx>,
377         is_cleanup: bool,
378     ) -> BasicBlock {
379         let source_info = self.source_info();
380         self.blocks.push(BasicBlockData {
381             statements,
382             terminator: Some(Terminator { source_info, kind }),
383             is_cleanup,
384         })
385     }
386
387     /// Gives the index of an upcoming BasicBlock, with an offset.
388     /// offset=0 will give you the index of the next BasicBlock,
389     /// offset=1 will give the index of the next-to-next block,
390     /// offset=-1 will give you the index of the last-created block
391     fn block_index_offset(&mut self, offset: usize) -> BasicBlock {
392         BasicBlock::new(self.blocks.len() + offset)
393     }
394
395     fn make_statement(&self, kind: StatementKind<'tcx>) -> Statement<'tcx> {
396         Statement { source_info: self.source_info(), kind }
397     }
398
399     fn copy_shim(&mut self) {
400         let rcvr = self.tcx.mk_place_deref(Place::from(Local::new(1 + 0)));
401         let ret_statement = self.make_statement(StatementKind::Assign(Box::new((
402             Place::return_place(),
403             Rvalue::Use(Operand::Copy(rcvr)),
404         ))));
405         self.block(vec![ret_statement], TerminatorKind::Return, false);
406     }
407
408     fn make_place(&mut self, mutability: Mutability, ty: Ty<'tcx>) -> Place<'tcx> {
409         let span = self.span;
410         let mut local = LocalDecl::new(ty, span);
411         if mutability == Mutability::Not {
412             local = local.immutable();
413         }
414         Place::from(self.local_decls.push(local))
415     }
416
417     fn make_clone_call(
418         &mut self,
419         dest: Place<'tcx>,
420         src: Place<'tcx>,
421         ty: Ty<'tcx>,
422         next: BasicBlock,
423         cleanup: BasicBlock,
424     ) {
425         let tcx = self.tcx;
426
427         let substs = tcx.mk_substs_trait(ty, &[]);
428
429         // `func == Clone::clone(&ty) -> ty`
430         let func_ty = tcx.mk_fn_def(self.def_id, substs);
431         let func = Operand::Constant(Box::new(Constant {
432             span: self.span,
433             user_ty: None,
434             literal: ConstantKind::zero_sized(func_ty),
435         }));
436
437         let ref_loc = self.make_place(
438             Mutability::Not,
439             tcx.mk_ref(tcx.lifetimes.re_erased, ty::TypeAndMut { ty, mutbl: hir::Mutability::Not }),
440         );
441
442         // `let ref_loc: &ty = &src;`
443         let statement = self.make_statement(StatementKind::Assign(Box::new((
444             ref_loc,
445             Rvalue::Ref(tcx.lifetimes.re_erased, BorrowKind::Shared, src),
446         ))));
447
448         // `let loc = Clone::clone(ref_loc);`
449         self.block(
450             vec![statement],
451             TerminatorKind::Call {
452                 func,
453                 args: vec![Operand::Move(ref_loc)],
454                 destination: dest,
455                 target: Some(next),
456                 cleanup: Some(cleanup),
457                 from_hir_call: true,
458                 fn_span: self.span,
459             },
460             false,
461         );
462     }
463
464     fn tuple_like_shim<I>(&mut self, dest: Place<'tcx>, src: Place<'tcx>, tys: I)
465     where
466         I: IntoIterator<Item = Ty<'tcx>>,
467     {
468         let mut previous_field = None;
469         for (i, ity) in tys.into_iter().enumerate() {
470             let field = Field::new(i);
471             let src_field = self.tcx.mk_place_field(src, field, ity);
472
473             let dest_field = self.tcx.mk_place_field(dest, field, ity);
474
475             // #(2i + 1) is the cleanup block for the previous clone operation
476             let cleanup_block = self.block_index_offset(1);
477             // #(2i + 2) is the next cloning block
478             // (or the Return terminator if this is the last block)
479             let next_block = self.block_index_offset(2);
480
481             // BB #(2i)
482             // `dest.i = Clone::clone(&src.i);`
483             // Goto #(2i + 2) if ok, #(2i + 1) if unwinding happens.
484             self.make_clone_call(dest_field, src_field, ity, next_block, cleanup_block);
485
486             // BB #(2i + 1) (cleanup)
487             if let Some((previous_field, previous_cleanup)) = previous_field.take() {
488                 // Drop previous field and goto previous cleanup block.
489                 self.block(
490                     vec![],
491                     TerminatorKind::Drop {
492                         place: previous_field,
493                         target: previous_cleanup,
494                         unwind: None,
495                     },
496                     true,
497                 );
498             } else {
499                 // Nothing to drop, just resume.
500                 self.block(vec![], TerminatorKind::Resume, true);
501             }
502
503             previous_field = Some((dest_field, cleanup_block));
504         }
505
506         self.block(vec![], TerminatorKind::Return, false);
507     }
508 }
509
510 /// Builds a "call" shim for `instance`. The shim calls the function specified by `call_kind`,
511 /// first adjusting its first argument according to `rcvr_adjustment`.
512 fn build_call_shim<'tcx>(
513     tcx: TyCtxt<'tcx>,
514     instance: ty::InstanceDef<'tcx>,
515     rcvr_adjustment: Option<Adjustment>,
516     call_kind: CallKind<'tcx>,
517 ) -> Body<'tcx> {
518     debug!(
519         "build_call_shim(instance={:?}, rcvr_adjustment={:?}, call_kind={:?})",
520         instance, rcvr_adjustment, call_kind
521     );
522
523     // `FnPtrShim` contains the fn pointer type that a call shim is being built for - this is used
524     // to substitute into the signature of the shim. It is not necessary for users of this
525     // MIR body to perform further substitutions (see `InstanceDef::has_polymorphic_mir_body`).
526     let (sig_substs, untuple_args) = if let ty::InstanceDef::FnPtrShim(_, ty) = instance {
527         let sig = tcx.erase_late_bound_regions(ty.fn_sig(tcx));
528
529         let untuple_args = sig.inputs();
530
531         // Create substitutions for the `Self` and `Args` generic parameters of the shim body.
532         let arg_tup = tcx.mk_tup(untuple_args.iter());
533         let sig_substs = tcx.mk_substs_trait(ty, &[ty::subst::GenericArg::from(arg_tup)]);
534
535         (Some(sig_substs), Some(untuple_args))
536     } else {
537         (None, None)
538     };
539
540     let def_id = instance.def_id();
541     let sig = tcx.bound_fn_sig(def_id);
542     let sig = sig.map_bound(|sig| tcx.erase_late_bound_regions(sig));
543
544     assert_eq!(sig_substs.is_some(), !instance.has_polymorphic_mir_body());
545     let mut sig =
546         if let Some(sig_substs) = sig_substs { sig.subst(tcx, sig_substs) } else { sig.0 };
547
548     if let CallKind::Indirect(fnty) = call_kind {
549         // `sig` determines our local decls, and thus the callee type in the `Call` terminator. This
550         // can only be an `FnDef` or `FnPtr`, but currently will be `Self` since the types come from
551         // the implemented `FnX` trait.
552
553         // Apply the opposite adjustment to the MIR input.
554         let mut inputs_and_output = sig.inputs_and_output.to_vec();
555
556         // Initial signature is `fn(&? Self, Args) -> Self::Output` where `Args` is a tuple of the
557         // fn arguments. `Self` may be passed via (im)mutable reference or by-value.
558         assert_eq!(inputs_and_output.len(), 3);
559
560         // `Self` is always the original fn type `ty`. The MIR call terminator is only defined for
561         // `FnDef` and `FnPtr` callees, not the `Self` type param.
562         let self_arg = &mut inputs_and_output[0];
563         *self_arg = match rcvr_adjustment.unwrap() {
564             Adjustment::Identity => fnty,
565             Adjustment::Deref => tcx.mk_imm_ptr(fnty),
566             Adjustment::RefMut => tcx.mk_mut_ptr(fnty),
567         };
568         sig.inputs_and_output = tcx.intern_type_list(&inputs_and_output);
569     }
570
571     // FIXME(eddyb) avoid having this snippet both here and in
572     // `Instance::fn_sig` (introduce `InstanceDef::fn_sig`?).
573     if let ty::InstanceDef::VTableShim(..) = instance {
574         // Modify fn(self, ...) to fn(self: *mut Self, ...)
575         let mut inputs_and_output = sig.inputs_and_output.to_vec();
576         let self_arg = &mut inputs_and_output[0];
577         debug_assert!(tcx.generics_of(def_id).has_self && *self_arg == tcx.types.self_param);
578         *self_arg = tcx.mk_mut_ptr(*self_arg);
579         sig.inputs_and_output = tcx.intern_type_list(&inputs_and_output);
580     }
581
582     let span = tcx.def_span(def_id);
583
584     debug!("build_call_shim: sig={:?}", sig);
585
586     let mut local_decls = local_decls_for_sig(&sig, span);
587     let source_info = SourceInfo::outermost(span);
588
589     let rcvr_place = || {
590         assert!(rcvr_adjustment.is_some());
591         Place::from(Local::new(1 + 0))
592     };
593     let mut statements = vec![];
594
595     let rcvr = rcvr_adjustment.map(|rcvr_adjustment| match rcvr_adjustment {
596         Adjustment::Identity => Operand::Move(rcvr_place()),
597         Adjustment::Deref => Operand::Move(tcx.mk_place_deref(rcvr_place())),
598         Adjustment::RefMut => {
599             // let rcvr = &mut rcvr;
600             let ref_rcvr = local_decls.push(
601                 LocalDecl::new(
602                     tcx.mk_ref(
603                         tcx.lifetimes.re_erased,
604                         ty::TypeAndMut { ty: sig.inputs()[0], mutbl: hir::Mutability::Mut },
605                     ),
606                     span,
607                 )
608                 .immutable(),
609             );
610             let borrow_kind = BorrowKind::Mut { allow_two_phase_borrow: false };
611             statements.push(Statement {
612                 source_info,
613                 kind: StatementKind::Assign(Box::new((
614                     Place::from(ref_rcvr),
615                     Rvalue::Ref(tcx.lifetimes.re_erased, borrow_kind, rcvr_place()),
616                 ))),
617             });
618             Operand::Move(Place::from(ref_rcvr))
619         }
620     });
621
622     let (callee, mut args) = match call_kind {
623         // `FnPtr` call has no receiver. Args are untupled below.
624         CallKind::Indirect(_) => (rcvr.unwrap(), vec![]),
625
626         // `FnDef` call with optional receiver.
627         CallKind::Direct(def_id) => {
628             let ty = tcx.type_of(def_id);
629             (
630                 Operand::Constant(Box::new(Constant {
631                     span,
632                     user_ty: None,
633                     literal: ConstantKind::zero_sized(ty),
634                 })),
635                 rcvr.into_iter().collect::<Vec<_>>(),
636             )
637         }
638     };
639
640     let mut arg_range = 0..sig.inputs().len();
641
642     // Take the `self` ("receiver") argument out of the range (it's adjusted above).
643     if rcvr_adjustment.is_some() {
644         arg_range.start += 1;
645     }
646
647     // Take the last argument, if we need to untuple it (handled below).
648     if untuple_args.is_some() {
649         arg_range.end -= 1;
650     }
651
652     // Pass all of the non-special arguments directly.
653     args.extend(arg_range.map(|i| Operand::Move(Place::from(Local::new(1 + i)))));
654
655     // Untuple the last argument, if we have to.
656     if let Some(untuple_args) = untuple_args {
657         let tuple_arg = Local::new(1 + (sig.inputs().len() - 1));
658         args.extend(untuple_args.iter().enumerate().map(|(i, ity)| {
659             Operand::Move(tcx.mk_place_field(Place::from(tuple_arg), Field::new(i), *ity))
660         }));
661     }
662
663     let n_blocks = if let Some(Adjustment::RefMut) = rcvr_adjustment { 5 } else { 2 };
664     let mut blocks = IndexVec::with_capacity(n_blocks);
665     let block = |blocks: &mut IndexVec<_, _>, statements, kind, is_cleanup| {
666         blocks.push(BasicBlockData {
667             statements,
668             terminator: Some(Terminator { source_info, kind }),
669             is_cleanup,
670         })
671     };
672
673     // BB #0
674     block(
675         &mut blocks,
676         statements,
677         TerminatorKind::Call {
678             func: callee,
679             args,
680             destination: Place::return_place(),
681             target: Some(BasicBlock::new(1)),
682             cleanup: if let Some(Adjustment::RefMut) = rcvr_adjustment {
683                 Some(BasicBlock::new(3))
684             } else {
685                 None
686             },
687             from_hir_call: true,
688             fn_span: span,
689         },
690         false,
691     );
692
693     if let Some(Adjustment::RefMut) = rcvr_adjustment {
694         // BB #1 - drop for Self
695         block(
696             &mut blocks,
697             vec![],
698             TerminatorKind::Drop { place: rcvr_place(), target: BasicBlock::new(2), unwind: None },
699             false,
700         );
701     }
702     // BB #1/#2 - return
703     block(&mut blocks, vec![], TerminatorKind::Return, false);
704     if let Some(Adjustment::RefMut) = rcvr_adjustment {
705         // BB #3 - drop if closure panics
706         block(
707             &mut blocks,
708             vec![],
709             TerminatorKind::Drop { place: rcvr_place(), target: BasicBlock::new(4), unwind: None },
710             true,
711         );
712
713         // BB #4 - resume
714         block(&mut blocks, vec![], TerminatorKind::Resume, true);
715     }
716
717     let mut body =
718         new_body(MirSource::from_instance(instance), blocks, local_decls, sig.inputs().len(), span);
719
720     if let Abi::RustCall = sig.abi {
721         body.spread_arg = Some(Local::new(sig.inputs().len()));
722     }
723
724     body
725 }
726
727 pub fn build_adt_ctor(tcx: TyCtxt<'_>, ctor_id: DefId) -> Body<'_> {
728     debug_assert!(tcx.is_constructor(ctor_id));
729
730     let param_env = tcx.param_env(ctor_id);
731
732     // Normalize the sig.
733     let sig = tcx.fn_sig(ctor_id).no_bound_vars().expect("LBR in ADT constructor signature");
734     let sig = tcx.normalize_erasing_regions(param_env, sig);
735
736     let ty::Adt(adt_def, substs) = sig.output().kind() else {
737         bug!("unexpected type for ADT ctor {:?}", sig.output());
738     };
739
740     debug!("build_ctor: ctor_id={:?} sig={:?}", ctor_id, sig);
741
742     let span = tcx.def_span(ctor_id);
743
744     let local_decls = local_decls_for_sig(&sig, span);
745
746     let source_info = SourceInfo::outermost(span);
747
748     let variant_index = if adt_def.is_enum() {
749         adt_def.variant_index_with_ctor_id(ctor_id)
750     } else {
751         VariantIdx::new(0)
752     };
753
754     // Generate the following MIR:
755     //
756     // (return as Variant).field0 = arg0;
757     // (return as Variant).field1 = arg1;
758     //
759     // return;
760     debug!("build_ctor: variant_index={:?}", variant_index);
761
762     let statements = expand_aggregate(
763         Place::return_place(),
764         adt_def.variant(variant_index).fields.iter().enumerate().map(|(idx, field_def)| {
765             (Operand::Move(Place::from(Local::new(idx + 1))), field_def.ty(tcx, substs))
766         }),
767         AggregateKind::Adt(adt_def.did(), variant_index, substs, None, None),
768         source_info,
769         tcx,
770     )
771     .collect();
772
773     let start_block = BasicBlockData {
774         statements,
775         terminator: Some(Terminator { source_info, kind: TerminatorKind::Return }),
776         is_cleanup: false,
777     };
778
779     let source = MirSource::item(ctor_id);
780     let body = new_body(
781         source,
782         IndexVec::from_elem_n(start_block, 1),
783         local_decls,
784         sig.inputs().len(),
785         span,
786     );
787
788     rustc_middle::mir::dump_mir(tcx, None, "mir_map", &0, &body, |_, _| Ok(()));
789
790     body
791 }