1use itertools::Itertools;
24use rustc_abi::{ExternAbi, FieldIdx};
25use rustc_apfloat::Float;
26use rustc_apfloat::ieee::{Double, Half, Quad, Single};
27use rustc_data_structures::fx::FxHashMap;
28use rustc_data_structures::sorted_map::SortedIndexMultiMap;
29use rustc_errors::ErrorGuaranteed;
30use rustc_hir::def::DefKind;
31use rustc_hir::def_id::LocalDefId;
32use rustc_hir::{self as hir, BindingMode, ByRef, HirId, ItemLocalId, Node, find_attr};
33use rustc_index::bit_set::GrowableBitSet;
34use rustc_index::{Idx, IndexSlice, IndexVec};
35use rustc_infer::infer::{InferCtxt, TyCtxtInferExt};
36use rustc_middle::hir::place::PlaceBase as HirPlaceBase;
37use rustc_middle::middle::region;
38use rustc_middle::mir::*;
39use rustc_middle::thir::{self, ExprId, LocalVarId, Param, ParamId, PatKind, Thir};
40use rustc_middle::ty::{self, ScalarInt, Ty, TyCtxt, TypeVisitableExt, TypingMode};
41use rustc_middle::{bug, span_bug};
42use rustc_span::{Span, Symbol};
43
44use crate::builder::expr::as_place::PlaceBuilder;
45use crate::builder::scope::{DropKind, LintLevel};
46
47pub(crate) fn closure_saved_names_of_captured_variables<'tcx>(
48 tcx: TyCtxt<'tcx>,
49 def_id: LocalDefId,
50) -> IndexVec<FieldIdx, Symbol> {
51 tcx.closure_captures(def_id)
52 .iter()
53 .map(|captured_place| {
54 let name = captured_place.to_symbol();
55 match captured_place.info.capture_kind {
56 ty::UpvarCapture::ByValue | ty::UpvarCapture::ByUse => name,
57 ty::UpvarCapture::ByRef(..) => Symbol::intern(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("_ref__{0}", name))
})format!("_ref__{name}")),
58 }
59 })
60 .collect()
61}
62
63pub(crate) fn build_mir_inner_impl<'tcx>(tcx: TyCtxt<'tcx>, def: LocalDefId) -> Body<'tcx> {
68 tcx.ensure_done().thir_abstract_const(def);
69 if let Err(e) = tcx.ensure_result().check_match(def) {
70 return construct_error(tcx, def, e);
71 }
72
73 if let Err(err) = tcx.ensure_result().check_tail_calls(def) {
74 return construct_error(tcx, def, err);
75 }
76
77 let body = match tcx.thir_body(def) {
78 Err(error_reported) => construct_error(tcx, def, error_reported),
79 Ok((thir, expr)) => {
80 let build_mir = |thir: &Thir<'tcx>| match thir.body_type {
81 thir::BodyTy::Fn(fn_sig) => construct_fn(tcx, def, thir, expr, fn_sig),
82 thir::BodyTy::Const(ty) | thir::BodyTy::GlobalAsm(ty) => {
83 construct_const(tcx, def, thir, expr, ty)
84 }
85 };
86
87 build_mir(&thir.borrow())
91 }
92 };
93
94 if true {
if !!(body.local_decls.has_free_regions() ||
body.basic_blocks.has_free_regions() ||
body.var_debug_info.has_free_regions() ||
body.yield_ty().has_free_regions()) {
{
::core::panicking::panic_fmt(format_args!("Unexpected free regions in MIR: {0:?}",
body));
}
};
};debug_assert!(
99 !(body.local_decls.has_free_regions()
100 || body.basic_blocks.has_free_regions()
101 || body.var_debug_info.has_free_regions()
102 || body.yield_ty().has_free_regions()),
103 "Unexpected free regions in MIR: {body:?}",
104 );
105
106 body
107}
108
109#[derive(#[automatically_derived]
impl ::core::fmt::Debug for BlockFrame {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
BlockFrame::Statement { ignores_expr_result: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"Statement", "ignores_expr_result", &__self_0),
BlockFrame::TailExpr { info: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"TailExpr", "info", &__self_0),
BlockFrame::SubExpr =>
::core::fmt::Formatter::write_str(f, "SubExpr"),
}
}
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for BlockFrame {
#[inline]
fn eq(&self, other: &BlockFrame) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(BlockFrame::Statement { ignores_expr_result: __self_0 },
BlockFrame::Statement { ignores_expr_result: __arg1_0 }) =>
__self_0 == __arg1_0,
(BlockFrame::TailExpr { info: __self_0 },
BlockFrame::TailExpr { info: __arg1_0 }) =>
__self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for BlockFrame {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<BlockTailInfo>;
}
}Eq)]
113enum BlockFrame {
114 Statement {
121 ignores_expr_result: bool,
124 },
125
126 TailExpr { info: BlockTailInfo },
130
131 SubExpr,
136}
137
138impl 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(#[automatically_derived]
impl ::core::fmt::Debug for BlockContext {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f, "BlockContext",
&&self.0)
}
}Debug)]
156struct BlockContext(Vec<BlockFrame>);
157
158struct Builder<'a, 'tcx> {
159 tcx: TyCtxt<'tcx>,
160 infcx: InferCtxt<'tcx>,
165 region_scope_tree: &'tcx region::ScopeTree,
166 param_env: ty::ParamEnv<'tcx>,
167
168 thir: &'a Thir<'tcx>,
169 cfg: CFG<'tcx>,
170
171 def_id: LocalDefId,
172 hir_id: HirId,
173 check_overflow: bool,
174 fn_span: Span,
175 arg_count: usize,
176 coroutine: Option<Box<CoroutineInfo<'tcx>>>,
177
178 scopes: scope::Scopes<'tcx>,
181
182 block_context: BlockContext,
195
196 source_scopes: IndexVec<SourceScope, SourceScopeData<'tcx>>,
199 source_scope: SourceScope,
200
201 guard_context: Vec<GuardFrame>,
205
206 fixed_temps: FxHashMap<ExprId, Local>,
209 fixed_temps_scope: Option<region::Scope>,
211
212 var_indices: FxHashMap<LocalVarId, LocalsForNode>,
215 local_decls: IndexVec<Local, LocalDecl<'tcx>>,
216 canonical_user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
217 upvars: CaptureMap<'tcx>,
218 unit_temp: Option<Place<'tcx>>,
219
220 var_debug_info: Vec<VarDebugInfo<'tcx>>,
221
222 lint_level_roots_cache: GrowableBitSet<hir::ItemLocalId>,
229
230 coverage_info: Option<coverageinfo::CoverageInfoBuilder>,
233}
234
235type CaptureMap<'tcx> = SortedIndexMultiMap<usize, ItemLocalId, Capture<'tcx>>;
236
237#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for Capture<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "Capture",
"captured_place", &self.captured_place, "use_place",
&self.use_place, "mutability", &&self.mutability)
}
}Debug)]
238struct Capture<'tcx> {
239 captured_place: &'tcx ty::CapturedPlace<'tcx>,
240 use_place: Place<'tcx>,
241 mutability: Mutability,
242}
243
244impl<'a, 'tcx> Builder<'a, 'tcx> {
245 fn typing_env(&self) -> ty::TypingEnv<'tcx> {
246 self.infcx.typing_env(self.param_env)
247 }
248
249 fn is_bound_var_in_guard(&self, id: LocalVarId) -> bool {
250 self.guard_context.iter().any(|frame| frame.locals.iter().any(|local| local.id == id))
251 }
252
253 fn var_local_id(&self, id: LocalVarId, for_guard: ForGuard) -> Local {
254 self.var_indices[&id].local_id(for_guard)
255 }
256}
257
258impl BlockContext {
259 fn new() -> Self {
260 BlockContext(::alloc::vec::Vec::new()vec![])
261 }
262 fn push(&mut self, bf: BlockFrame) {
263 self.0.push(bf);
264 }
265 fn pop(&mut self) -> Option<BlockFrame> {
266 self.0.pop()
267 }
268
269 fn currently_in_block_tail(&self) -> Option<BlockTailInfo> {
280 for bf in self.0.iter().rev() {
281 match bf {
282 BlockFrame::SubExpr => continue,
283 BlockFrame::Statement { .. } => break,
284 &BlockFrame::TailExpr { info } => return Some(info),
285 }
286 }
287
288 None
289 }
290
291 fn currently_ignores_tail_results(&self) -> bool {
298 match self.0.last() {
299 None => false,
301
302 Some(BlockFrame::SubExpr) => false,
304
305 Some(
307 BlockFrame::TailExpr { info: BlockTailInfo { tail_result_is_ignored: ign, .. } }
308 | BlockFrame::Statement { ignores_expr_result: ign },
309 ) => *ign,
310 }
311 }
312}
313
314#[derive(#[automatically_derived]
impl ::core::fmt::Debug for LocalsForNode {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
LocalsForNode::One(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "One",
&__self_0),
LocalsForNode::ForGuard {
ref_for_guard: __self_0, for_arm_body: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"ForGuard", "ref_for_guard", __self_0, "for_arm_body",
&__self_1),
}
}
}Debug)]
315enum LocalsForNode {
316 One(Local),
319
320 ForGuard { ref_for_guard: Local, for_arm_body: Local },
331}
332
333#[derive(#[automatically_derived]
impl ::core::fmt::Debug for GuardFrameLocal {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field1_finish(f,
"GuardFrameLocal", "id", &&self.id)
}
}Debug)]
334struct GuardFrameLocal {
335 id: LocalVarId,
336}
337
338impl GuardFrameLocal {
339 fn new(id: LocalVarId) -> Self {
340 GuardFrameLocal { id }
341 }
342}
343
344#[derive(#[automatically_derived]
impl ::core::fmt::Debug for GuardFrame {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field1_finish(f, "GuardFrame",
"locals", &&self.locals)
}
}Debug)]
345struct GuardFrame {
346 locals: Vec<GuardFrameLocal>,
358}
359
360#[derive(#[automatically_derived]
impl ::core::marker::Copy for ForGuard { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ForGuard {
#[inline]
fn clone(&self) -> ForGuard { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ForGuard {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
ForGuard::RefWithinGuard => "RefWithinGuard",
ForGuard::OutsideGuard => "OutsideGuard",
})
}
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for ForGuard {
#[inline]
fn eq(&self, other: &ForGuard) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ForGuard {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq)]
365enum ForGuard {
366 RefWithinGuard,
367 OutsideGuard,
368}
369
370impl LocalsForNode {
371 fn local_id(&self, for_guard: ForGuard) -> Local {
372 match (self, for_guard) {
373 (&LocalsForNode::One(local_id), ForGuard::OutsideGuard)
374 | (
375 &LocalsForNode::ForGuard { ref_for_guard: local_id, .. },
376 ForGuard::RefWithinGuard,
377 )
378 | (&LocalsForNode::ForGuard { for_arm_body: local_id, .. }, ForGuard::OutsideGuard) => {
379 local_id
380 }
381
382 (&LocalsForNode::One(_), ForGuard::RefWithinGuard) => {
383 ::rustc_middle::util::bug::bug_fmt(format_args!("anything with one local should never be within a guard."))bug!("anything with one local should never be within a guard.")
384 }
385 }
386 }
387}
388
389struct CFG<'tcx> {
390 basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
391}
392
393impl ::std::fmt::Debug for ScopeId {
fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
fmt.write_fmt(format_args!("{0}", self.as_u32()))
}
}rustc_index::newtype_index! {
394 struct ScopeId {}
395}
396
397#[derive(#[automatically_derived]
impl ::core::fmt::Debug for NeedsTemporary {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
NeedsTemporary::No => "No",
NeedsTemporary::Maybe => "Maybe",
})
}
}Debug)]
398enum NeedsTemporary {
399 No,
404 Maybe,
407}
408
409#[must_use = "if you don't use one of these results, you're leaving a dangling edge"]
414struct BlockAnd<T>(BasicBlock, T);
415
416impl BlockAnd<()> {
417 #[must_use]
419 fn into_block(self) -> BasicBlock {
420 let Self(block, ()) = self;
421 block
422 }
423}
424
425trait BlockAndExtension {
426 fn and<T>(self, v: T) -> BlockAnd<T>;
427 fn unit(self) -> BlockAnd<()>;
428}
429
430impl BlockAndExtension for BasicBlock {
431 fn and<T>(self, v: T) -> BlockAnd<T> {
432 BlockAnd(self, v)
433 }
434
435 fn unit(self) -> BlockAnd<()> {
436 BlockAnd(self, ())
437 }
438}
439
440macro_rules! unpack {
443 ($x:ident = $c:expr) => {{
444 let BlockAnd(b, v) = $c;
445 $x = b;
446 v
447 }};
448}
449
450fn construct_fn<'tcx>(
452 tcx: TyCtxt<'tcx>,
453 fn_def: LocalDefId,
454 thir: &Thir<'tcx>,
455 expr: ExprId,
456 fn_sig: ty::FnSig<'tcx>,
457) -> Body<'tcx> {
458 let span = tcx.def_span(fn_def);
459 let fn_id = tcx.local_def_id_to_hir_id(fn_def);
460
461 let body = tcx.hir_body_owned_by(fn_def);
463 let span_with_body = tcx.hir_span_with_body(fn_id);
464 let return_ty_span = tcx
465 .hir_fn_decl_by_hir_id(fn_id)
466 .unwrap_or_else(|| ::rustc_middle::util::bug::span_bug_fmt(span,
format_args!("can\'t build MIR for {0:?}", fn_def))span_bug!(span, "can't build MIR for {:?}", fn_def))
467 .output
468 .span();
469
470 let mut abi = fn_sig.abi();
471 if let DefKind::Closure = tcx.def_kind(fn_def) {
472 abi = ExternAbi::Rust;
475 }
476
477 let arguments = &thir.params;
478
479 let return_ty = fn_sig.output();
480 let coroutine = match tcx.type_of(fn_def).instantiate_identity().skip_norm_wip().kind() {
481 ty::Coroutine(_, args) => Some(Box::new(CoroutineInfo::initial(
482 tcx.coroutine_kind(fn_def).unwrap(),
483 args.as_coroutine().yield_ty(),
484 args.as_coroutine().resume_ty(),
485 ))),
486 ty::Closure(..) | ty::CoroutineClosure(..) | ty::FnDef(..) => None,
487 ty => ::rustc_middle::util::bug::span_bug_fmt(span_with_body,
format_args!("unexpected type of body: {0:?}", ty))span_bug!(span_with_body, "unexpected type of body: {ty:?}"),
488 };
489
490 if let Some((dialect, phase)) =
491 {
{
'done:
{
for i in ::rustc_hir::attrs::HasAttrs::get_attrs(fn_id, &tcx) {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(CustomMir(dialect, phase)) => {
break 'done Some((dialect, phase));
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}find_attr!(tcx, fn_id, CustomMir(dialect, phase) => (dialect, phase))
492 {
493 return custom::build_custom_mir(
494 tcx,
495 fn_def.to_def_id(),
496 fn_id,
497 thir,
498 expr,
499 arguments,
500 return_ty,
501 return_ty_span,
502 span_with_body,
503 dialect.as_ref().map(|(d, _)| *d),
504 phase.as_ref().map(|(p, _)| *p),
505 );
506 }
507
508 let infcx = tcx.infer_ctxt().build(TypingMode::non_body_analysis());
511 let mut builder = Builder::new(
512 thir,
513 infcx,
514 fn_def,
515 fn_id,
516 span_with_body,
517 arguments.len(),
518 return_ty,
519 return_ty_span,
520 coroutine,
521 );
522
523 let call_site_scope =
524 region::Scope { local_id: body.id().hir_id.local_id, data: region::ScopeData::CallSite };
525 let arg_scope =
526 region::Scope { local_id: body.id().hir_id.local_id, data: region::ScopeData::Arguments };
527 let source_info = builder.source_info(span);
528 let call_site_s = (call_site_scope, source_info);
529 let _: BlockAnd<()> = builder.in_scope(call_site_s, LintLevel::Inherited, |builder| {
530 let arg_scope_s = (arg_scope, source_info);
531 let fn_end = span_with_body.shrink_to_hi();
533 let return_block = builder
534 .in_breakable_scope(None, Place::return_place(), fn_end, |builder| {
535 Some(builder.in_scope(arg_scope_s, LintLevel::Inherited, |builder| {
536 builder.args_and_body(START_BLOCK, arguments, arg_scope, expr)
537 }))
538 })
539 .into_block();
540 let source_info = builder.source_info(fn_end);
541 builder.cfg.terminate(return_block, source_info, TerminatorKind::Return);
542 builder.build_drop_trees();
543 return_block.unit()
544 });
545
546 let mut body = builder.finish();
547
548 body.spread_arg = if abi == ExternAbi::RustCall {
549 Some(Local::new(arguments.len()))
552 } else {
553 None
554 };
555
556 body
557}
558
559fn construct_const<'a, 'tcx>(
560 tcx: TyCtxt<'tcx>,
561 def: LocalDefId,
562 thir: &'a Thir<'tcx>,
563 expr: ExprId,
564 const_ty: Ty<'tcx>,
565) -> Body<'tcx> {
566 let hir_id = tcx.local_def_id_to_hir_id(def);
567
568 let (span, const_ty_span) = match tcx.hir_node(hir_id) {
570 Node::Item(hir::Item {
571 kind: hir::ItemKind::Static(_, _, ty, _) | hir::ItemKind::Const(_, _, ty, _),
572 span,
573 ..
574 })
575 | Node::ImplItem(hir::ImplItem { kind: hir::ImplItemKind::Const(ty, _), span, .. })
576 | Node::TraitItem(hir::TraitItem {
577 kind: hir::TraitItemKind::Const(ty, Some(_)),
578 span,
579 ..
580 }) => (*span, ty.span),
581 Node::AnonConst(ct) => (ct.span, ct.span),
582 Node::ConstBlock(_) => {
583 let span = tcx.def_span(def);
584 (span, span)
585 }
586 Node::Item(hir::Item { kind: hir::ItemKind::GlobalAsm { .. }, span, .. }) => (*span, *span),
587 _ => ::rustc_middle::util::bug::span_bug_fmt(tcx.def_span(def),
format_args!("can\'t build MIR for {0:?}", def))span_bug!(tcx.def_span(def), "can't build MIR for {:?}", def),
588 };
589
590 let infcx = tcx.infer_ctxt().build(TypingMode::non_body_analysis());
593 let mut builder =
594 Builder::new(thir, infcx, def, hir_id, span, 0, const_ty, const_ty_span, None);
595
596 let mut block = START_BLOCK;
597 block = builder.expr_into_dest(Place::return_place(), block, expr).into_block();
598
599 let source_info = builder.source_info(span);
600 builder.cfg.terminate(block, source_info, TerminatorKind::Return);
601
602 builder.build_drop_trees();
603 builder.finish()
604}
605
606fn construct_error(tcx: TyCtxt<'_>, def_id: LocalDefId, guar: ErrorGuaranteed) -> Body<'_> {
611 let span = tcx.def_span(def_id);
612 let hir_id = tcx.local_def_id_to_hir_id(def_id);
613
614 let (inputs, output, coroutine) = match tcx.def_kind(def_id) {
615 DefKind::Const { .. }
616 | DefKind::AssocConst { .. }
617 | DefKind::AnonConst
618 | DefKind::InlineConst
619 | DefKind::Static { .. }
620 | DefKind::GlobalAsm => {
621 (::alloc::vec::Vec::new()vec![], tcx.type_of(def_id).instantiate_identity().skip_norm_wip(), None)
622 }
623 DefKind::Ctor(..) | DefKind::Fn | DefKind::AssocFn => {
624 let sig = tcx.liberate_late_bound_regions(
625 def_id.to_def_id(),
626 tcx.fn_sig(def_id).instantiate_identity().skip_norm_wip(),
627 );
628 (sig.inputs().to_vec(), sig.output(), None)
629 }
630 DefKind::Closure => {
631 let closure_ty = tcx.type_of(def_id).instantiate_identity().skip_norm_wip();
632 match closure_ty.kind() {
633 ty::Closure(_, args) => {
634 let args = args.as_closure();
635 let sig = tcx.liberate_late_bound_regions(def_id.to_def_id(), args.sig());
636 let self_ty = match args.kind() {
637 ty::ClosureKind::Fn => {
638 Ty::new_imm_ref(tcx, tcx.lifetimes.re_erased, closure_ty)
639 }
640 ty::ClosureKind::FnMut => {
641 Ty::new_mut_ref(tcx, tcx.lifetimes.re_erased, closure_ty)
642 }
643 ty::ClosureKind::FnOnce => closure_ty,
644 };
645 (
646 [self_ty].into_iter().chain(sig.inputs()[0].tuple_fields()).collect(),
647 sig.output(),
648 None,
649 )
650 }
651 ty::Coroutine(_, args) => {
652 let args = args.as_coroutine();
653 let resume_ty = args.resume_ty();
654 let yield_ty = args.yield_ty();
655 let return_ty = args.return_ty();
656 (
657 ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[closure_ty, resume_ty]))vec![closure_ty, resume_ty],
658 return_ty,
659 Some(Box::new(CoroutineInfo::initial(
660 tcx.coroutine_kind(def_id).unwrap(),
661 yield_ty,
662 resume_ty,
663 ))),
664 )
665 }
666 ty::CoroutineClosure(did, args) => {
667 let args = args.as_coroutine_closure();
668 let sig = tcx.liberate_late_bound_regions(
669 def_id.to_def_id(),
670 args.coroutine_closure_sig(),
671 );
672 let self_ty = match args.kind() {
673 ty::ClosureKind::Fn => {
674 Ty::new_imm_ref(tcx, tcx.lifetimes.re_erased, closure_ty)
675 }
676 ty::ClosureKind::FnMut => {
677 Ty::new_mut_ref(tcx, tcx.lifetimes.re_erased, closure_ty)
678 }
679 ty::ClosureKind::FnOnce => closure_ty,
680 };
681 (
682 [self_ty].into_iter().chain(sig.tupled_inputs_ty.tuple_fields()).collect(),
683 sig.to_coroutine(
684 tcx,
685 args.parent_args(),
686 args.kind_ty(),
687 tcx.coroutine_for_closure(*did),
688 Ty::new_error(tcx, guar),
689 ),
690 None,
691 )
692 }
693 ty::Error(_) => (::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[closure_ty, closure_ty]))vec![closure_ty, closure_ty], closure_ty, None),
694 kind => {
695 ::rustc_middle::util::bug::span_bug_fmt(span,
format_args!("expected type of closure body to be a closure or coroutine, got {0:?}",
kind));span_bug!(
696 span,
697 "expected type of closure body to be a closure or coroutine, got {kind:?}"
698 );
699 }
700 }
701 }
702 dk => ::rustc_middle::util::bug::span_bug_fmt(span,
format_args!("{0:?} is not a body: {1:?}", def_id, dk))span_bug!(span, "{:?} is not a body: {:?}", def_id, dk),
703 };
704
705 let source_info = SourceInfo { span, scope: OUTERMOST_SOURCE_SCOPE };
706 let local_decls = IndexVec::from_iter(
707 [output].iter().chain(&inputs).map(|ty| LocalDecl::with_source_info(*ty, source_info)),
708 );
709 let mut cfg = CFG { basic_blocks: IndexVec::new() };
710 let mut source_scopes = IndexVec::new();
711
712 cfg.start_new_block();
713 source_scopes.push(SourceScopeData {
714 span,
715 parent_scope: None,
716 inlined: None,
717 inlined_parent_scope: None,
718 local_data: ClearCrossCrate::Set(SourceScopeLocalData { lint_root: hir_id }),
719 });
720
721 cfg.terminate(START_BLOCK, source_info, TerminatorKind::Unreachable);
722
723 Body::new(
724 MirSource::item(def_id.to_def_id()),
725 cfg.basic_blocks,
726 source_scopes,
727 local_decls,
728 IndexVec::new(),
729 inputs.len(),
730 ::alloc::vec::Vec::new()vec![],
731 span,
732 coroutine,
733 Some(guar),
734 )
735}
736
737impl<'a, 'tcx> Builder<'a, 'tcx> {
738 fn new(
739 thir: &'a Thir<'tcx>,
740 infcx: InferCtxt<'tcx>,
741 def: LocalDefId,
742 hir_id: HirId,
743 span: Span,
744 arg_count: usize,
745 return_ty: Ty<'tcx>,
746 return_span: Span,
747 coroutine: Option<Box<CoroutineInfo<'tcx>>>,
748 ) -> Builder<'a, 'tcx> {
749 let tcx = infcx.tcx;
750 let mut check_overflow = {
{
'done:
{
for i in tcx.hir_attrs(hir_id) {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(RustcInheritOverflowChecks) =>
{
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
}find_attr!(tcx.hir_attrs(hir_id), RustcInheritOverflowChecks);
754 check_overflow |= tcx.sess.overflow_checks();
756 check_overflow |= #[allow(non_exhaustive_omitted_patterns)] match tcx.hir_body_owner_kind(def) {
hir::BodyOwnerKind::Const { .. } | hir::BodyOwnerKind::Static(_) => true,
_ => false,
}matches!(
758 tcx.hir_body_owner_kind(def),
759 hir::BodyOwnerKind::Const { .. } | hir::BodyOwnerKind::Static(_)
760 );
761
762 let lint_level = LintLevel::Explicit(hir_id);
763 let param_env = tcx.param_env(def);
764 let mut builder = Builder {
765 thir,
766 tcx,
767 infcx,
768 region_scope_tree: tcx.region_scope_tree(def),
769 param_env,
770 def_id: def,
771 hir_id,
772 check_overflow,
773 cfg: CFG { basic_blocks: IndexVec::new() },
774 fn_span: span,
775 arg_count,
776 coroutine,
777 scopes: scope::Scopes::new(),
778 block_context: BlockContext::new(),
779 source_scopes: IndexVec::new(),
780 source_scope: OUTERMOST_SOURCE_SCOPE,
781 guard_context: ::alloc::vec::Vec::new()vec![],
782 fixed_temps: Default::default(),
783 fixed_temps_scope: None,
784 local_decls: IndexVec::from_elem_n(LocalDecl::new(return_ty, return_span), 1),
785 canonical_user_type_annotations: IndexVec::new(),
786 upvars: CaptureMap::new(),
787 var_indices: Default::default(),
788 unit_temp: None,
789 var_debug_info: ::alloc::vec::Vec::new()vec![],
790 lint_level_roots_cache: GrowableBitSet::new_empty(),
791 coverage_info: coverageinfo::CoverageInfoBuilder::new_if_enabled(tcx, def),
792 };
793
794 {
match (&builder.cfg.start_new_block(), &START_BLOCK) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(builder.cfg.start_new_block(), START_BLOCK);
795 {
match (&builder.new_source_scope(span, lint_level),
&OUTERMOST_SOURCE_SCOPE) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(builder.new_source_scope(span, lint_level), OUTERMOST_SOURCE_SCOPE);
796 builder.source_scopes[OUTERMOST_SOURCE_SCOPE].parent_scope = None;
797
798 builder
799 }
800
801 #[allow(dead_code)]
802 fn dump_for_debugging(&self) {
803 let mut body = Body::new(
804 MirSource::item(self.def_id.to_def_id()),
805 self.cfg.basic_blocks.clone(),
806 self.source_scopes.clone(),
807 self.local_decls.clone(),
808 self.canonical_user_type_annotations.clone(),
809 self.arg_count.clone(),
810 self.var_debug_info.clone(),
811 self.fn_span.clone(),
812 self.coroutine.clone(),
813 None,
814 );
815 body.coverage_info_hi = self.coverage_info.as_ref().map(|b| b.as_done());
816
817 let writer = pretty::MirWriter::new(self.tcx);
818 writer.write_mir_fn(&body, &mut std::io::stdout()).unwrap();
819 }
820
821 fn finish(self) -> Body<'tcx> {
822 let mut body = Body::new(
823 MirSource::item(self.def_id.to_def_id()),
824 self.cfg.basic_blocks,
825 self.source_scopes,
826 self.local_decls,
827 self.canonical_user_type_annotations,
828 self.arg_count,
829 self.var_debug_info,
830 self.fn_span,
831 self.coroutine,
832 None,
833 );
834 body.coverage_info_hi = self.coverage_info.map(|b| b.into_done());
835
836 let writer = pretty::MirWriter::new(self.tcx);
837 for (index, block) in body.basic_blocks.iter().enumerate() {
838 if block.terminator.is_none() {
839 writer.write_mir_fn(&body, &mut std::io::stdout()).unwrap();
840 ::rustc_middle::util::bug::span_bug_fmt(self.fn_span,
format_args!("no terminator on block {0:?}", index));span_bug!(self.fn_span, "no terminator on block {:?}", index);
841 }
842 }
843
844 body
845 }
846
847 fn insert_upvar_arg(&mut self) {
848 let Some(closure_arg) = self.local_decls.get(ty::CAPTURE_STRUCT_LOCAL) else { return };
849
850 let mut closure_ty = closure_arg.ty;
851 let mut closure_env_projs = ::alloc::vec::Vec::new()vec![];
852 if let ty::Ref(_, ty, _) = closure_ty.kind() {
853 closure_env_projs.push(ProjectionElem::Deref);
854 closure_ty = *ty;
855 }
856
857 let upvar_args = match closure_ty.kind() {
858 ty::Closure(_, args) => ty::UpvarArgs::Closure(args),
859 ty::Coroutine(_, args) => ty::UpvarArgs::Coroutine(args),
860 ty::CoroutineClosure(_, args) => ty::UpvarArgs::CoroutineClosure(args),
861 _ => return,
862 };
863
864 let capture_tys = upvar_args.upvar_tys();
870
871 let tcx = self.tcx;
872 let mut upvar_owner = None;
873 self.upvars = tcx
874 .closure_captures(self.def_id)
875 .iter()
876 .zip_eq(capture_tys)
877 .enumerate()
878 .map(|(i, (captured_place, ty))| {
879 let name = captured_place.to_symbol();
880
881 let capture = captured_place.info.capture_kind;
882 let var_id = match captured_place.place.base {
883 HirPlaceBase::Upvar(upvar_id) => upvar_id.var_path.hir_id,
884 _ => ::rustc_middle::util::bug::bug_fmt(format_args!("Expected an upvar"))bug!("Expected an upvar"),
885 };
886 let upvar_base = upvar_owner.get_or_insert(var_id.owner);
887 {
match (&*upvar_base, &var_id.owner) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(*upvar_base, var_id.owner);
888 let var_id = var_id.local_id;
889
890 let mutability = captured_place.mutability;
891
892 let mut projs = closure_env_projs.clone();
893 projs.push(ProjectionElem::Field(FieldIdx::new(i), ty));
894 match capture {
895 ty::UpvarCapture::ByValue | ty::UpvarCapture::ByUse => {}
896 ty::UpvarCapture::ByRef(..) => {
897 projs.push(ProjectionElem::Deref);
898 }
899 };
900
901 let use_place = Place {
902 local: ty::CAPTURE_STRUCT_LOCAL,
903 projection: tcx.mk_place_elems(&projs),
904 };
905 self.var_debug_info.push(VarDebugInfo {
906 name,
907 source_info: SourceInfo::outermost(captured_place.var_ident.span),
908 value: VarDebugInfoContents::Place(use_place),
909 composite: None,
910 argument_index: None,
911 });
912
913 let capture = Capture { captured_place, use_place, mutability };
914 (var_id, capture)
915 })
916 .collect();
917 }
918
919 fn args_and_body(
920 &mut self,
921 mut block: BasicBlock,
922 arguments: &IndexSlice<ParamId, Param<'tcx>>,
923 argument_scope: region::Scope,
924 expr_id: ExprId,
925 ) -> BlockAnd<()> {
926 let expr_span = self.thir[expr_id].span;
927 for (argument_index, param) in arguments.iter().enumerate() {
929 let source_info =
930 SourceInfo::outermost(param.pat.as_ref().map_or(self.fn_span, |pat| pat.span));
931 let arg_local =
932 self.local_decls.push(LocalDecl::with_source_info(param.ty, source_info));
933
934 if let Some(ref pat) = param.pat
936 && let Some(name) = pat.simple_ident()
937 {
938 self.var_debug_info.push(VarDebugInfo {
939 name,
940 source_info,
941 value: VarDebugInfoContents::Place(arg_local.into()),
942 composite: None,
943 argument_index: Some(argument_index as u16 + 1),
944 });
945 }
946 }
947
948 self.insert_upvar_arg();
949
950 let mut scope = None;
951 for (index, param) in arguments.iter().enumerate() {
953 let local = Local::arg(index);
955 let place = Place::from(local);
956
957 self.schedule_drop(
959 param.pat.as_ref().map_or(expr_span, |pat| pat.span),
960 argument_scope,
961 local,
962 DropKind::Value,
963 );
964
965 let Some(ref pat) = param.pat else {
966 continue;
967 };
968 let original_source_scope = self.source_scope;
969 let span = pat.span;
970 if let Some(arg_hir_id) = param.hir_id {
971 self.set_correct_source_scope_for_arg(arg_hir_id, original_source_scope, span);
972 }
973 match pat.kind {
974 PatKind::Binding {
976 var,
977 mode: BindingMode(ByRef::No, mutability),
978 subpattern: None,
979 ..
980 } => {
981 self.local_decls[local].mutability = mutability;
982 self.local_decls[local].source_info.scope = self.source_scope;
983 **self.local_decls[local].local_info.as_mut().unwrap_crate_local() =
984 if let Some(kind) = param.self_kind {
985 LocalInfo::User(BindingForm::ImplicitSelf(kind))
986 } else {
987 let binding_mode = BindingMode(ByRef::No, mutability);
988 LocalInfo::User(BindingForm::Var(VarBindingForm {
989 binding_mode,
990 opt_ty_info: param.ty_span,
991 opt_match_place: Some((None, span)),
992 pat_span: span,
993 introductions: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[VarBindingIntroduction { span, is_shorthand: false }]))vec![VarBindingIntroduction {
994 span,
995 is_shorthand: false,
996 }],
997 }))
998 };
999 self.var_indices.insert(var, LocalsForNode::One(local));
1000 }
1001 _ => {
1002 scope = self.declare_bindings(
1003 scope,
1004 expr_span,
1005 &pat,
1006 None,
1007 Some((Some(&place), span)),
1008 );
1009 let place_builder = PlaceBuilder::from(local);
1010 block = self.place_into_pattern(block, pat, place_builder, false).into_block();
1011 }
1012 }
1013 self.source_scope = original_source_scope;
1014 }
1015
1016 if let Some(source_scope) = scope {
1018 self.source_scope = source_scope;
1019 }
1020
1021 if self.tcx.intrinsic(self.def_id).is_some_and(|i| i.must_be_overridden)
1022 || self.tcx.is_sdylib_interface_build()
1023 {
1024 let source_info = self.source_info(rustc_span::DUMMY_SP);
1025 self.cfg.terminate(block, source_info, TerminatorKind::Unreachable);
1026 self.cfg.start_new_block().unit()
1027 } else {
1028 match self.tcx.hir_node(self.hir_id) {
1030 hir::Node::Item(hir::Item {
1031 kind: hir::ItemKind::Fn { has_body: false, .. },
1032 ..
1033 }) => {
1034 self.tcx.dcx().span_delayed_bug(
1035 expr_span,
1036 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("fn item without body has reached MIR building: {0:?}",
self.def_id))
})format!("fn item without body has reached MIR building: {:?}", self.def_id),
1037 );
1038 }
1039 _ => {}
1040 }
1041 self.expr_into_dest(Place::return_place(), block, expr_id)
1042 }
1043 }
1044
1045 fn set_correct_source_scope_for_arg(
1046 &mut self,
1047 arg_hir_id: HirId,
1048 original_source_scope: SourceScope,
1049 pattern_span: Span,
1050 ) {
1051 let parent_id = self.source_scopes[original_source_scope]
1052 .local_data
1053 .as_ref()
1054 .unwrap_crate_local()
1055 .lint_root;
1056 self.maybe_new_source_scope(pattern_span, arg_hir_id, parent_id);
1057 }
1058
1059 fn get_unit_temp(&mut self) -> Place<'tcx> {
1060 match self.unit_temp {
1061 Some(tmp) => tmp,
1062 None => {
1063 let ty = self.tcx.types.unit;
1064 let fn_span = self.fn_span;
1065 let tmp = self.temp(ty, fn_span);
1066 self.unit_temp = Some(tmp);
1067 tmp
1068 }
1069 }
1070 }
1071}
1072
1073fn parse_float_into_constval(num: Symbol, float_ty: ty::FloatTy, neg: bool) -> Option<ConstValue> {
1074 parse_float_into_scalar(num, float_ty, neg).map(|s| ConstValue::Scalar(s.into()))
1075}
1076
1077pub(crate) fn parse_float_into_scalar(
1078 num: Symbol,
1079 float_ty: ty::FloatTy,
1080 neg: bool,
1081) -> Option<ScalarInt> {
1082 let num = num.as_str();
1083 match float_ty {
1084 ty::FloatTy::F16 => {
1086 let mut f = num.parse::<Half>().ok()?;
1087 if neg {
1088 f = -f;
1089 }
1090 Some(ScalarInt::from(f))
1091 }
1092 ty::FloatTy::F32 => {
1093 let Ok(rust_f) = num.parse::<f32>() else { return None };
1094 let mut f = num
1095 .parse::<Single>()
1096 .unwrap_or_else(|e| {
::core::panicking::panic_fmt(format_args!("apfloat::ieee::Single failed to parse `{0}`: {1:?}",
num, e));
}panic!("apfloat::ieee::Single failed to parse `{num}`: {e:?}"));
1097
1098 if !(u128::from(rust_f.to_bits()) == f.to_bits()) {
{
::core::panicking::panic_fmt(format_args!("apfloat::ieee::Single gave different result for `{0}`: {1}({2:#x}) vs Rust\'s {3}({4:#x})",
rust_f, f, f.to_bits(),
Single::from_bits(rust_f.to_bits().into()),
rust_f.to_bits()));
}
};assert!(
1099 u128::from(rust_f.to_bits()) == f.to_bits(),
1100 "apfloat::ieee::Single gave different result for `{}`: \
1101 {}({:#x}) vs Rust's {}({:#x})",
1102 rust_f,
1103 f,
1104 f.to_bits(),
1105 Single::from_bits(rust_f.to_bits().into()),
1106 rust_f.to_bits()
1107 );
1108
1109 if neg {
1110 f = -f;
1111 }
1112
1113 Some(ScalarInt::from(f))
1114 }
1115 ty::FloatTy::F64 => {
1116 let Ok(rust_f) = num.parse::<f64>() else { return None };
1117 let mut f = num
1118 .parse::<Double>()
1119 .unwrap_or_else(|e| {
::core::panicking::panic_fmt(format_args!("apfloat::ieee::Double failed to parse `{0}`: {1:?}",
num, e));
}panic!("apfloat::ieee::Double failed to parse `{num}`: {e:?}"));
1120
1121 if !(u128::from(rust_f.to_bits()) == f.to_bits()) {
{
::core::panicking::panic_fmt(format_args!("apfloat::ieee::Double gave different result for `{0}`: {1}({2:#x}) vs Rust\'s {3}({4:#x})",
rust_f, f, f.to_bits(),
Double::from_bits(rust_f.to_bits().into()),
rust_f.to_bits()));
}
};assert!(
1122 u128::from(rust_f.to_bits()) == f.to_bits(),
1123 "apfloat::ieee::Double gave different result for `{}`: \
1124 {}({:#x}) vs Rust's {}({:#x})",
1125 rust_f,
1126 f,
1127 f.to_bits(),
1128 Double::from_bits(rust_f.to_bits().into()),
1129 rust_f.to_bits()
1130 );
1131
1132 if neg {
1133 f = -f;
1134 }
1135
1136 Some(ScalarInt::from(f))
1137 }
1138 ty::FloatTy::F128 => {
1140 let mut f = num.parse::<Quad>().ok()?;
1141 if neg {
1142 f = -f;
1143 }
1144 Some(ScalarInt::from(f))
1145 }
1146 }
1147}
1148
1149mod block;
1155mod cfg;
1156mod coverageinfo;
1157mod custom;
1158mod expr;
1159mod matches;
1160mod misc;
1161mod scope;