1use std::iter;
4use std::ops::{Range, RangeFrom};
5
6use rustc_abi::{ExternAbi, FieldIdx};
7use rustc_data_structures::debug_assert_matches;
8use rustc_hir::attrs::{InlineAttr, OptimizeAttr};
9use rustc_hir::def::DefKind;
10use rustc_hir::def_id::DefId;
11use rustc_index::Idx;
12use rustc_index::bit_set::DenseBitSet;
13use rustc_middle::bug;
14use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrs;
15use rustc_middle::mir::visit::*;
16use rustc_middle::mir::*;
17use rustc_middle::ty::{self, Instance, InstanceKind, Ty, TyCtxt, TypeFlags, TypeVisitableExt};
18use rustc_session::config::{DebugInfo, OptLevel};
19use rustc_span::source_map::Spanned;
20use tracing::{debug, instrument, trace, trace_span};
21
22use crate::cost_checker::{CostChecker, is_call_like};
23use crate::simplify::{UsedInStmtLocals, simplify_cfg};
24use crate::validate::validate_types;
25use crate::{check_inline, util};
26
27pub(crate) mod cycle;
28
29const HISTORY_DEPTH_LIMIT: usize = 20;
30const TOP_DOWN_DEPTH_LIMIT: usize = 5;
31
32#[derive(Clone, Debug)]
33struct CallSite<'tcx> {
34 callee: Instance<'tcx>,
35 fn_sig: ty::PolyFnSig<'tcx>,
36 block: BasicBlock,
37 source_info: SourceInfo,
38}
39
40pub struct Inline;
43
44impl<'tcx> crate::MirPass<'tcx> for Inline {
45 fn is_enabled(&self, sess: &rustc_session::Session) -> bool {
46 if let Some(enabled) = sess.opts.unstable_opts.inline_mir {
47 return enabled;
48 }
49
50 match sess.mir_opt_level() {
51 0 | 1 => false,
52 2 => {
53 (sess.opts.optimize == OptLevel::More || sess.opts.optimize == OptLevel::Aggressive)
54 && sess.opts.incremental == None
55 }
56 _ => true,
57 }
58 }
59
60 fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
61 let span = trace_span!("inline", body = %tcx.def_path_str(body.source.def_id()));
62 let _guard = span.enter();
63 if inline::<NormalInliner<'tcx>>(tcx, body) {
64 debug!("running simplify cfg on {:?}", body.source);
65 simplify_cfg(tcx, body);
66 }
67 }
68
69 fn is_required(&self) -> bool {
70 false
71 }
72}
73
74pub struct ForceInline;
75
76impl ForceInline {
77 pub fn should_run_pass_for_callee<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> bool {
78 matches!(tcx.codegen_fn_attrs(def_id).inline, InlineAttr::Force { .. })
79 }
80}
81
82impl<'tcx> crate::MirPass<'tcx> for ForceInline {
83 fn is_enabled(&self, _: &rustc_session::Session) -> bool {
84 true
85 }
86
87 fn can_be_overridden(&self) -> bool {
88 false
89 }
90
91 fn is_required(&self) -> bool {
92 true
93 }
94
95 fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
96 let span = trace_span!("force_inline", body = %tcx.def_path_str(body.source.def_id()));
97 let _guard = span.enter();
98 if inline::<ForceInliner<'tcx>>(tcx, body) {
99 debug!("running simplify cfg on {:?}", body.source);
100 simplify_cfg(tcx, body);
101 }
102 }
103}
104
105trait Inliner<'tcx> {
106 fn new(tcx: TyCtxt<'tcx>, def_id: DefId, body: &Body<'tcx>) -> Self;
107
108 fn tcx(&self) -> TyCtxt<'tcx>;
109 fn typing_env(&self) -> ty::TypingEnv<'tcx>;
110 fn history(&self) -> &[DefId];
111 fn caller_def_id(&self) -> DefId;
112
113 fn changed(self) -> bool;
115
116 fn should_inline_for_callee(&self, def_id: DefId) -> bool;
118
119 fn check_codegen_attributes_extra(
120 &self,
121 callee_attrs: &CodegenFnAttrs,
122 ) -> Result<(), &'static str>;
123
124 fn check_caller_mir_body(&self, body: &Body<'tcx>) -> bool;
125
126 fn check_callee_mir_body(
129 &self,
130 callsite: &CallSite<'tcx>,
131 callee_body: &Body<'tcx>,
132 callee_attrs: &CodegenFnAttrs,
133 ) -> Result<(), &'static str>;
134
135 fn on_inline_success(
137 &mut self,
138 callsite: &CallSite<'tcx>,
139 caller_body: &mut Body<'tcx>,
140 new_blocks: std::ops::Range<BasicBlock>,
141 );
142
143 fn on_inline_failure(&self, callsite: &CallSite<'tcx>, reason: &'static str);
145}
146
147struct ForceInliner<'tcx> {
148 tcx: TyCtxt<'tcx>,
149 typing_env: ty::TypingEnv<'tcx>,
150 def_id: DefId,
152 history: Vec<DefId>,
158 changed: bool,
160}
161
162impl<'tcx> Inliner<'tcx> for ForceInliner<'tcx> {
163 fn new(tcx: TyCtxt<'tcx>, def_id: DefId, body: &Body<'tcx>) -> Self {
164 Self { tcx, typing_env: body.typing_env(tcx), def_id, history: Vec::new(), changed: false }
165 }
166
167 fn tcx(&self) -> TyCtxt<'tcx> {
168 self.tcx
169 }
170
171 fn typing_env(&self) -> ty::TypingEnv<'tcx> {
172 self.typing_env
173 }
174
175 fn history(&self) -> &[DefId] {
176 &self.history
177 }
178
179 fn caller_def_id(&self) -> DefId {
180 self.def_id
181 }
182
183 fn changed(self) -> bool {
184 self.changed
185 }
186
187 fn should_inline_for_callee(&self, def_id: DefId) -> bool {
188 ForceInline::should_run_pass_for_callee(self.tcx(), def_id)
189 }
190
191 fn check_codegen_attributes_extra(
192 &self,
193 callee_attrs: &CodegenFnAttrs,
194 ) -> Result<(), &'static str> {
195 debug_assert_matches!(callee_attrs.inline, InlineAttr::Force { .. });
196 Ok(())
197 }
198
199 fn check_caller_mir_body(&self, _: &Body<'tcx>) -> bool {
200 true
201 }
202
203 #[instrument(level = "debug", skip(self, callee_body))]
204 fn check_callee_mir_body(
205 &self,
206 _: &CallSite<'tcx>,
207 callee_body: &Body<'tcx>,
208 callee_attrs: &CodegenFnAttrs,
209 ) -> Result<(), &'static str> {
210 if callee_body.tainted_by_errors.is_some() {
211 return Err("body has errors");
212 }
213
214 let caller_attrs = self.tcx().codegen_fn_attrs(self.caller_def_id());
215 if callee_attrs.instruction_set != caller_attrs.instruction_set
216 && callee_body
217 .basic_blocks
218 .iter()
219 .any(|bb| matches!(bb.terminator().kind, TerminatorKind::InlineAsm { .. }))
220 {
221 Err("cannot move inline-asm across instruction sets")
227 } else {
228 Ok(())
229 }
230 }
231
232 fn on_inline_success(
233 &mut self,
234 callsite: &CallSite<'tcx>,
235 caller_body: &mut Body<'tcx>,
236 new_blocks: std::ops::Range<BasicBlock>,
237 ) {
238 self.changed = true;
239
240 self.history.push(callsite.callee.def_id());
241 process_blocks(self, caller_body, new_blocks);
242 self.history.pop();
243 }
244
245 fn on_inline_failure(&self, callsite: &CallSite<'tcx>, reason: &'static str) {
246 let tcx = self.tcx();
247 let InlineAttr::Force { attr_span, reason: justification } =
248 tcx.codegen_instance_attrs(callsite.callee.def).inline
249 else {
250 bug!("called on item without required inlining");
251 };
252
253 let call_span = callsite.source_info.span;
254 tcx.dcx().emit_err(crate::errors::ForceInlineFailure {
255 call_span,
256 attr_span,
257 caller_span: tcx.def_span(self.def_id),
258 caller: tcx.def_path_str(self.def_id),
259 callee_span: tcx.def_span(callsite.callee.def_id()),
260 callee: tcx.def_path_str(callsite.callee.def_id()),
261 reason,
262 justification: justification.map(|sym| crate::errors::ForceInlineJustification { sym }),
263 });
264 }
265}
266
267struct NormalInliner<'tcx> {
268 tcx: TyCtxt<'tcx>,
269 typing_env: ty::TypingEnv<'tcx>,
270 def_id: DefId,
272 history: Vec<DefId>,
278 top_down_counter: usize,
282 changed: bool,
284 caller_is_inline_forwarder: bool,
287}
288
289impl<'tcx> NormalInliner<'tcx> {
290 fn past_depth_limit(&self) -> bool {
291 self.history.len() > HISTORY_DEPTH_LIMIT || self.top_down_counter > TOP_DOWN_DEPTH_LIMIT
292 }
293}
294
295impl<'tcx> Inliner<'tcx> for NormalInliner<'tcx> {
296 fn new(tcx: TyCtxt<'tcx>, def_id: DefId, body: &Body<'tcx>) -> Self {
297 let typing_env = body.typing_env(tcx);
298 let codegen_fn_attrs = tcx.codegen_fn_attrs(def_id);
299
300 Self {
301 tcx,
302 typing_env,
303 def_id,
304 history: Vec::new(),
305 top_down_counter: 0,
306 changed: false,
307 caller_is_inline_forwarder: matches!(
308 codegen_fn_attrs.inline,
309 InlineAttr::Hint | InlineAttr::Always | InlineAttr::Force { .. }
310 ) && body_is_forwarder(body),
311 }
312 }
313
314 fn tcx(&self) -> TyCtxt<'tcx> {
315 self.tcx
316 }
317
318 fn caller_def_id(&self) -> DefId {
319 self.def_id
320 }
321
322 fn typing_env(&self) -> ty::TypingEnv<'tcx> {
323 self.typing_env
324 }
325
326 fn history(&self) -> &[DefId] {
327 &self.history
328 }
329
330 fn changed(self) -> bool {
331 self.changed
332 }
333
334 fn should_inline_for_callee(&self, _: DefId) -> bool {
335 true
336 }
337
338 fn check_codegen_attributes_extra(
339 &self,
340 callee_attrs: &CodegenFnAttrs,
341 ) -> Result<(), &'static str> {
342 if self.past_depth_limit() && matches!(callee_attrs.inline, InlineAttr::None) {
343 Err("Past depth limit so not inspecting unmarked callee")
344 } else {
345 Ok(())
346 }
347 }
348
349 fn check_caller_mir_body(&self, body: &Body<'tcx>) -> bool {
350 if body.coroutine.is_some() {
354 return false;
355 }
356
357 true
358 }
359
360 #[instrument(level = "debug", skip(self, callee_body))]
361 fn check_callee_mir_body(
362 &self,
363 callsite: &CallSite<'tcx>,
364 callee_body: &Body<'tcx>,
365 callee_attrs: &CodegenFnAttrs,
366 ) -> Result<(), &'static str> {
367 let tcx = self.tcx();
368
369 if let Some(_) = callee_body.tainted_by_errors {
370 return Err("body has errors");
371 }
372
373 if self.past_depth_limit() && callee_body.basic_blocks.len() > 1 {
374 return Err("Not inlining multi-block body as we're past a depth limit");
375 }
376
377 let mut threshold = if self.caller_is_inline_forwarder || self.past_depth_limit() {
378 tcx.sess.opts.unstable_opts.inline_mir_forwarder_threshold.unwrap_or(30)
379 } else if tcx.cross_crate_inlinable(callsite.callee.def_id()) {
380 tcx.sess.opts.unstable_opts.inline_mir_hint_threshold.unwrap_or(100)
381 } else {
382 tcx.sess.opts.unstable_opts.inline_mir_threshold.unwrap_or(50)
383 };
384
385 if callee_body.basic_blocks.len() <= 3 {
389 threshold += threshold / 4;
390 }
391 debug!(" final inline threshold = {}", threshold);
392
393 let mut checker =
396 CostChecker::new(tcx, self.typing_env(), Some(callsite.callee), callee_body);
397
398 checker.add_function_level_costs();
399
400 let mut work_list = vec![START_BLOCK];
402 let mut visited = DenseBitSet::new_empty(callee_body.basic_blocks.len());
403 while let Some(bb) = work_list.pop() {
404 if !visited.insert(bb.index()) {
405 continue;
406 }
407
408 let blk = &callee_body.basic_blocks[bb];
409 checker.visit_basic_block_data(bb, blk);
410
411 let term = blk.terminator();
412 let caller_attrs = tcx.codegen_fn_attrs(self.caller_def_id());
413 if let TerminatorKind::Drop {
414 ref place,
415 target,
416 unwind,
417 replace: _,
418 drop: _,
419 async_fut: _,
420 } = term.kind
421 {
422 work_list.push(target);
423
424 let ty = callsite
426 .callee
427 .instantiate_mir(tcx, ty::EarlyBinder::bind(&place.ty(callee_body, tcx).ty));
428 if ty.needs_drop(tcx, self.typing_env())
429 && let UnwindAction::Cleanup(unwind) = unwind
430 {
431 work_list.push(unwind);
432 }
433 } else if callee_attrs.instruction_set != caller_attrs.instruction_set
434 && matches!(term.kind, TerminatorKind::InlineAsm { .. })
435 {
436 return Err("cannot move inline-asm across instruction sets");
442 } else if let TerminatorKind::TailCall { .. } = term.kind {
443 return Err("can't inline functions with tail calls");
446 } else {
447 work_list.extend(term.successors())
448 }
449 }
450
451 let cost = checker.cost();
456 if cost <= threshold {
457 debug!("INLINING {:?} [cost={} <= threshold={}]", callsite, cost, threshold);
458 Ok(())
459 } else {
460 debug!("NOT inlining {:?} [cost={} > threshold={}]", callsite, cost, threshold);
461 Err("cost above threshold")
462 }
463 }
464
465 fn on_inline_success(
466 &mut self,
467 callsite: &CallSite<'tcx>,
468 caller_body: &mut Body<'tcx>,
469 new_blocks: std::ops::Range<BasicBlock>,
470 ) {
471 self.changed = true;
472
473 let new_calls_count = new_blocks
474 .clone()
475 .filter(|&bb| is_call_like(caller_body.basic_blocks[bb].terminator()))
476 .count();
477 if new_calls_count > 1 {
478 self.top_down_counter += 1;
479 }
480
481 self.history.push(callsite.callee.def_id());
482 process_blocks(self, caller_body, new_blocks);
483 self.history.pop();
484
485 if self.history.is_empty() {
486 self.top_down_counter = 0;
487 }
488 }
489
490 fn on_inline_failure(&self, _: &CallSite<'tcx>, _: &'static str) {}
491}
492
493fn inline<'tcx, T: Inliner<'tcx>>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) -> bool {
494 let def_id = body.source.def_id();
495
496 if !tcx.hir_body_owner_kind(def_id).is_fn_or_closure() {
498 return false;
499 }
500
501 let mut inliner = T::new(tcx, def_id, body);
502 if !inliner.check_caller_mir_body(body) {
503 return false;
504 }
505
506 let blocks = START_BLOCK..body.basic_blocks.next_index();
507 process_blocks(&mut inliner, body, blocks);
508 inliner.changed()
509}
510
511fn process_blocks<'tcx, I: Inliner<'tcx>>(
512 inliner: &mut I,
513 caller_body: &mut Body<'tcx>,
514 blocks: Range<BasicBlock>,
515) {
516 for bb in blocks {
517 let bb_data = &caller_body[bb];
518 if bb_data.is_cleanup {
519 continue;
520 }
521
522 let Some(callsite) = resolve_callsite(inliner, caller_body, bb, bb_data) else {
523 continue;
524 };
525
526 let span = trace_span!("process_blocks", %callsite.callee, ?bb);
527 let _guard = span.enter();
528
529 match try_inlining(inliner, caller_body, &callsite) {
530 Err(reason) => {
531 debug!("not-inlined {} [{}]", callsite.callee, reason);
532 inliner.on_inline_failure(&callsite, reason);
533 }
534 Ok(new_blocks) => {
535 debug!("inlined {}", callsite.callee);
536 inliner.on_inline_success(&callsite, caller_body, new_blocks);
537 }
538 }
539 }
540}
541
542fn resolve_callsite<'tcx, I: Inliner<'tcx>>(
543 inliner: &I,
544 caller_body: &Body<'tcx>,
545 bb: BasicBlock,
546 bb_data: &BasicBlockData<'tcx>,
547) -> Option<CallSite<'tcx>> {
548 let tcx = inliner.tcx();
549 let terminator = bb_data.terminator();
551
552 if let TerminatorKind::Call { ref func, fn_span, .. } = terminator.kind {
554 let func_ty = func.ty(caller_body, tcx);
555 if let ty::FnDef(def_id, args) = *func_ty.kind() {
556 if !inliner.should_inline_for_callee(def_id) {
557 debug!("not enabled");
558 return None;
559 }
560
561 let args = tcx.try_normalize_erasing_regions(inliner.typing_env(), args).ok()?;
563 let callee =
564 Instance::try_resolve(tcx, inliner.typing_env(), def_id, args).ok().flatten()?;
565
566 if let InstanceKind::Virtual(..) | InstanceKind::Intrinsic(_) = callee.def {
567 return None;
568 }
569
570 if inliner.history().contains(&callee.def_id()) {
571 return None;
572 }
573
574 let fn_sig = tcx.fn_sig(def_id).instantiate(tcx, args);
575
576 if let InstanceKind::Item(instance_def_id) = callee.def
579 && tcx.def_kind(instance_def_id) == DefKind::AssocFn
580 && let instance_fn_sig = tcx.fn_sig(instance_def_id).skip_binder()
581 && instance_fn_sig.abi() != fn_sig.abi()
582 {
583 return None;
584 }
585
586 let source_info = SourceInfo { span: fn_span, ..terminator.source_info };
587
588 return Some(CallSite { callee, fn_sig, block: bb, source_info });
589 }
590 }
591
592 None
593}
594
595fn try_inlining<'tcx, I: Inliner<'tcx>>(
599 inliner: &I,
600 caller_body: &mut Body<'tcx>,
601 callsite: &CallSite<'tcx>,
602) -> Result<std::ops::Range<BasicBlock>, &'static str> {
603 let tcx = inliner.tcx();
604 check_mir_is_available(inliner, caller_body, callsite.callee)?;
605
606 let callee_attrs = tcx.codegen_instance_attrs(callsite.callee.def);
607 let callee_attrs = callee_attrs.as_ref();
608 check_inline::is_inline_valid_on_fn(tcx, callsite.callee.def_id())?;
609 check_codegen_attributes(inliner, callsite, callee_attrs)?;
610
611 let terminator = caller_body[callsite.block].terminator.as_ref().unwrap();
612 let TerminatorKind::Call { args, destination, .. } = &terminator.kind else { bug!() };
613 let destination_ty = destination.ty(&caller_body.local_decls, tcx).ty;
614 for arg in args {
615 if !arg.node.ty(&caller_body.local_decls, tcx).is_sized(tcx, inliner.typing_env()) {
616 return Err("call has unsized argument");
619 }
620 }
621
622 let callee_body = try_instance_mir(tcx, callsite.callee.def)?;
623 check_inline::is_inline_valid_on_body(tcx, callee_body)?;
624 inliner.check_callee_mir_body(callsite, callee_body, callee_attrs)?;
625
626 let Ok(callee_body) = callsite.callee.try_instantiate_mir_and_normalize_erasing_regions(
627 tcx,
628 inliner.typing_env(),
629 ty::EarlyBinder::bind(callee_body.clone()),
630 ) else {
631 debug!("failed to normalize callee body");
632 return Err("implementation limitation -- could not normalize callee body");
633 };
634
635 if !validate_types(tcx, inliner.typing_env(), &callee_body, caller_body).is_empty() {
638 debug!("failed to validate callee body");
639 return Err("implementation limitation -- callee body failed validation");
640 }
641
642 let output_type = callee_body.return_ty();
646 if !util::sub_types(tcx, inliner.typing_env(), output_type, destination_ty) {
647 trace!(?output_type, ?destination_ty);
648 return Err("implementation limitation -- return type mismatch");
649 }
650 if callsite.fn_sig.abi() == ExternAbi::RustCall {
651 let (self_arg, arg_tuple) = match &args[..] {
652 [arg_tuple] => (None, arg_tuple),
653 [self_arg, arg_tuple] => (Some(self_arg), arg_tuple),
654 _ => bug!("Expected `rust-call` to have 1 or 2 args"),
655 };
656
657 let self_arg_ty = self_arg.map(|self_arg| self_arg.node.ty(&caller_body.local_decls, tcx));
658
659 let arg_tuple_ty = arg_tuple.node.ty(&caller_body.local_decls, tcx);
660 let arg_tys = if callee_body.spread_arg.is_some() {
661 std::slice::from_ref(&arg_tuple_ty)
662 } else {
663 let ty::Tuple(arg_tuple_tys) = *arg_tuple_ty.kind() else {
664 bug!("Closure arguments are not passed as a tuple");
665 };
666 arg_tuple_tys.as_slice()
667 };
668
669 for (arg_ty, input) in
670 self_arg_ty.into_iter().chain(arg_tys.iter().copied()).zip(callee_body.args_iter())
671 {
672 let input_type = callee_body.local_decls[input].ty;
673 if !util::sub_types(tcx, inliner.typing_env(), input_type, arg_ty) {
674 trace!(?arg_ty, ?input_type);
675 debug!("failed to normalize tuple argument type");
676 return Err("implementation limitation");
677 }
678 }
679 } else {
680 for (arg, input) in args.iter().zip(callee_body.args_iter()) {
681 let input_type = callee_body.local_decls[input].ty;
682 let arg_ty = arg.node.ty(&caller_body.local_decls, tcx);
683 if !util::sub_types(tcx, inliner.typing_env(), input_type, arg_ty) {
684 trace!(?arg_ty, ?input_type);
685 debug!("failed to normalize argument type");
686 return Err("implementation limitation -- arg mismatch");
687 }
688 }
689 }
690
691 let old_blocks = caller_body.basic_blocks.next_index();
692 inline_call(inliner, caller_body, callsite, callee_body);
693 let new_blocks = old_blocks..caller_body.basic_blocks.next_index();
694
695 Ok(new_blocks)
696}
697
698fn check_mir_is_available<'tcx, I: Inliner<'tcx>>(
699 inliner: &I,
700 caller_body: &Body<'tcx>,
701 callee: Instance<'tcx>,
702) -> Result<(), &'static str> {
703 let caller_def_id = caller_body.source.def_id();
704 let callee_def_id = callee.def_id();
705 if callee_def_id == caller_def_id {
706 return Err("self-recursion");
707 }
708
709 match callee.def {
710 InstanceKind::Item(_) => {
711 if !inliner.tcx().is_mir_available(callee_def_id) {
715 debug!("item MIR unavailable");
716 return Err("implementation limitation -- MIR unavailable");
717 }
718 }
719 InstanceKind::Intrinsic(_) | InstanceKind::Virtual(..) => {
721 debug!("instance without MIR (intrinsic / virtual)");
722 return Err("implementation limitation -- cannot inline intrinsic");
723 }
724
725 InstanceKind::DropGlue(_, Some(ty)) if ty.has_type_flags(TypeFlags::HAS_CT_PARAM) => {
731 debug!("still needs substitution");
732 return Err("implementation limitation -- HACK for dropping polymorphic type");
733 }
734 InstanceKind::AsyncDropGlue(_, ty) | InstanceKind::AsyncDropGlueCtorShim(_, ty) => {
735 return if ty.still_further_specializable() {
736 Err("still needs substitution")
737 } else {
738 Ok(())
739 };
740 }
741 InstanceKind::FutureDropPollShim(_, ty, ty2) => {
742 return if ty.still_further_specializable() || ty2.still_further_specializable() {
743 Err("still needs substitution")
744 } else {
745 Ok(())
746 };
747 }
748
749 InstanceKind::VTableShim(_)
754 | InstanceKind::ReifyShim(..)
755 | InstanceKind::FnPtrShim(..)
756 | InstanceKind::ClosureOnceShim { .. }
757 | InstanceKind::ConstructCoroutineInClosureShim { .. }
758 | InstanceKind::DropGlue(..)
759 | InstanceKind::CloneShim(..)
760 | InstanceKind::ThreadLocalShim(..)
761 | InstanceKind::FnPtrAddrShim(..) => return Ok(()),
762 }
763
764 if inliner.tcx().is_constructor(callee_def_id) {
765 trace!("constructors always have MIR");
766 return Ok(());
768 }
769
770 if let Some(callee_def_id) = callee_def_id.as_local()
771 && !inliner
772 .tcx()
773 .is_lang_item(inliner.tcx().parent(caller_def_id), rustc_hir::LangItem::FnOnce)
774 {
775 let Some(cyclic_callees) = inliner.tcx().mir_callgraph_cyclic(caller_def_id.expect_local())
778 else {
779 return Err("call graph cycle detection bailed due to recursion limit");
780 };
781 if cyclic_callees.contains(&callee_def_id) {
782 debug!("query cycle avoidance");
783 return Err("caller might be reachable from callee");
784 }
785
786 Ok(())
787 } else {
788 trace!("functions from other crates always have MIR");
793 Ok(())
794 }
795}
796
797fn check_codegen_attributes<'tcx, I: Inliner<'tcx>>(
800 inliner: &I,
801 callsite: &CallSite<'tcx>,
802 callee_attrs: &CodegenFnAttrs,
803) -> Result<(), &'static str> {
804 let tcx = inliner.tcx();
805 if let InlineAttr::Never = callee_attrs.inline {
806 return Err("never inline attribute");
807 }
808
809 if let OptimizeAttr::DoNotOptimize = callee_attrs.optimize {
810 return Err("has DoNotOptimize attribute");
811 }
812
813 inliner.check_codegen_attributes_extra(callee_attrs)?;
814
815 let is_generic = callsite.callee.args.non_erasable_generics().next().is_some();
818 if !is_generic && !tcx.cross_crate_inlinable(callsite.callee.def_id()) {
819 return Err("not exported");
820 }
821
822 let codegen_fn_attrs = tcx.codegen_fn_attrs(inliner.caller_def_id());
823 if callee_attrs.sanitizers != codegen_fn_attrs.sanitizers {
824 return Err("incompatible sanitizer set");
825 }
826
827 if callee_attrs.instruction_set.is_some()
831 && callee_attrs.instruction_set != codegen_fn_attrs.instruction_set
832 {
833 return Err("incompatible instruction set");
834 }
835
836 let callee_feature_names = callee_attrs.target_features.iter().map(|f| f.name);
837 let this_feature_names = codegen_fn_attrs.target_features.iter().map(|f| f.name);
838 if callee_feature_names.ne(this_feature_names) {
839 return Err("incompatible target features");
845 }
846
847 Ok(())
848}
849
850fn inline_call<'tcx, I: Inliner<'tcx>>(
851 inliner: &I,
852 caller_body: &mut Body<'tcx>,
853 callsite: &CallSite<'tcx>,
854 mut callee_body: Body<'tcx>,
855) {
856 let tcx = inliner.tcx();
857 let terminator = caller_body[callsite.block].terminator.take().unwrap();
858 let TerminatorKind::Call { func, args, destination, unwind, target, .. } = terminator.kind
859 else {
860 bug!("unexpected terminator kind {:?}", terminator.kind);
861 };
862
863 let return_block = if let Some(block) = target {
864 let data = BasicBlockData::new(
867 Some(Terminator {
868 source_info: terminator.source_info,
869 kind: TerminatorKind::Goto { target: block },
870 }),
871 caller_body[block].is_cleanup,
872 );
873 Some(caller_body.basic_blocks_mut().push(data))
874 } else {
875 None
876 };
877
878 fn dest_needs_borrow(place: Place<'_>) -> bool {
884 for elem in place.projection.iter() {
885 match elem {
886 ProjectionElem::Deref | ProjectionElem::Index(_) => return true,
887 _ => {}
888 }
889 }
890
891 false
892 }
893
894 let dest = if dest_needs_borrow(destination) {
895 trace!("creating temp for return destination");
896 let dest = Rvalue::Ref(
897 tcx.lifetimes.re_erased,
898 BorrowKind::Mut { kind: MutBorrowKind::Default },
899 destination,
900 );
901 let dest_ty = dest.ty(caller_body, tcx);
902 let temp = Place::from(new_call_temp(caller_body, callsite, dest_ty, return_block));
903 caller_body[callsite.block].statements.push(Statement::new(
904 callsite.source_info,
905 StatementKind::Assign(Box::new((temp, dest))),
906 ));
907 tcx.mk_place_deref(temp)
908 } else {
909 destination
910 };
911
912 let (remap_destination, destination_local) = if let Some(d) = dest.as_local() {
915 (false, d)
916 } else {
917 (
918 true,
919 new_call_temp(caller_body, callsite, destination.ty(caller_body, tcx).ty, return_block),
920 )
921 };
922
923 let args = make_call_args(inliner, args, callsite, caller_body, &callee_body, return_block);
925
926 let mut integrator = Integrator {
927 args: &args,
928 new_locals: caller_body.local_decls.next_index()..,
929 new_scopes: caller_body.source_scopes.next_index()..,
930 new_blocks: caller_body.basic_blocks.next_index()..,
931 destination: destination_local,
932 callsite_scope: caller_body.source_scopes[callsite.source_info.scope].clone(),
933 callsite,
934 cleanup_block: unwind,
935 in_cleanup_block: false,
936 return_block,
937 tcx,
938 always_live_locals: UsedInStmtLocals::new(&callee_body).locals,
939 };
940
941 integrator.visit_body(&mut callee_body);
944
945 for local in callee_body.vars_and_temps_iter() {
948 if integrator.always_live_locals.contains(local) {
949 let new_local = integrator.map_local(local);
950 caller_body[callsite.block]
951 .statements
952 .push(Statement::new(callsite.source_info, StatementKind::StorageLive(new_local)));
953 }
954 }
955 if let Some(block) = return_block {
956 let mut n = 0;
959 if remap_destination {
960 caller_body[block].statements.push(Statement::new(
961 callsite.source_info,
962 StatementKind::Assign(Box::new((
963 dest,
964 Rvalue::Use(Operand::Move(destination_local.into())),
965 ))),
966 ));
967 n += 1;
968 }
969 for local in callee_body.vars_and_temps_iter().rev() {
970 if integrator.always_live_locals.contains(local) {
971 let new_local = integrator.map_local(local);
972 caller_body[block].statements.push(Statement::new(
973 callsite.source_info,
974 StatementKind::StorageDead(new_local),
975 ));
976 n += 1;
977 }
978 }
979 caller_body[block].statements.rotate_right(n);
980 }
981
982 caller_body.local_decls.extend(callee_body.drain_vars_and_temps());
984 caller_body.source_scopes.append(&mut callee_body.source_scopes);
985
986 if tcx
988 .sess
989 .opts
990 .unstable_opts
991 .inline_mir_preserve_debug
992 .unwrap_or(tcx.sess.opts.debuginfo == DebugInfo::Full)
993 {
994 caller_body.var_debug_info.append(&mut callee_body.var_debug_info);
998 } else {
999 for bb in callee_body.basic_blocks_mut() {
1000 bb.drop_debuginfo();
1001 }
1002 }
1003 caller_body.basic_blocks_mut().append(callee_body.basic_blocks_mut());
1004
1005 caller_body[callsite.block].terminator = Some(Terminator {
1006 source_info: callsite.source_info,
1007 kind: TerminatorKind::Goto { target: integrator.map_block(START_BLOCK) },
1008 });
1009
1010 caller_body.required_consts.as_mut().unwrap().extend(
1014 callee_body.required_consts().into_iter().filter(|ct| ct.const_.is_required_const()),
1015 );
1016 let callee_item = MentionedItem::Fn(func.ty(caller_body, tcx));
1024 let caller_mentioned_items = caller_body.mentioned_items.as_mut().unwrap();
1025 if let Some(idx) = caller_mentioned_items.iter().position(|item| item.node == callee_item) {
1026 caller_mentioned_items.remove(idx);
1028 caller_mentioned_items.extend(callee_body.mentioned_items());
1029 } else {
1030 }
1034}
1035
1036fn make_call_args<'tcx, I: Inliner<'tcx>>(
1037 inliner: &I,
1038 args: Box<[Spanned<Operand<'tcx>>]>,
1039 callsite: &CallSite<'tcx>,
1040 caller_body: &mut Body<'tcx>,
1041 callee_body: &Body<'tcx>,
1042 return_block: Option<BasicBlock>,
1043) -> Box<[Local]> {
1044 let tcx = inliner.tcx();
1045
1046 if callsite.fn_sig.abi() == ExternAbi::RustCall && callee_body.spread_arg.is_none() {
1070 let mut args = <_>::into_iter(args);
1072 let self_ = create_temp_if_necessary(
1073 inliner,
1074 args.next().unwrap().node,
1075 callsite,
1076 caller_body,
1077 return_block,
1078 );
1079 let tuple = create_temp_if_necessary(
1080 inliner,
1081 args.next().unwrap().node,
1082 callsite,
1083 caller_body,
1084 return_block,
1085 );
1086 assert!(args.next().is_none());
1087
1088 let tuple = Place::from(tuple);
1089 let ty::Tuple(tuple_tys) = tuple.ty(caller_body, tcx).ty.kind() else {
1090 bug!("Closure arguments are not passed as a tuple");
1091 };
1092
1093 let closure_ref_arg = iter::once(self_);
1095
1096 let tuple_tmp_args = tuple_tys.iter().enumerate().map(|(i, ty)| {
1098 let tuple_field = Operand::Move(tcx.mk_place_field(tuple, FieldIdx::new(i), ty));
1100
1101 create_temp_if_necessary(inliner, tuple_field, callsite, caller_body, return_block)
1103 });
1104
1105 closure_ref_arg.chain(tuple_tmp_args).collect()
1106 } else {
1107 args.into_iter()
1108 .map(|a| create_temp_if_necessary(inliner, a.node, callsite, caller_body, return_block))
1109 .collect()
1110 }
1111}
1112
1113fn create_temp_if_necessary<'tcx, I: Inliner<'tcx>>(
1116 inliner: &I,
1117 arg: Operand<'tcx>,
1118 callsite: &CallSite<'tcx>,
1119 caller_body: &mut Body<'tcx>,
1120 return_block: Option<BasicBlock>,
1121) -> Local {
1122 if let Operand::Move(place) = &arg
1124 && let Some(local) = place.as_local()
1125 && caller_body.local_kind(local) == LocalKind::Temp
1126 {
1127 return local;
1128 }
1129
1130 trace!("creating temp for argument {:?}", arg);
1132 let arg_ty = arg.ty(caller_body, inliner.tcx());
1133 let local = new_call_temp(caller_body, callsite, arg_ty, return_block);
1134 caller_body[callsite.block].statements.push(Statement::new(
1135 callsite.source_info,
1136 StatementKind::Assign(Box::new((Place::from(local), Rvalue::Use(arg)))),
1137 ));
1138 local
1139}
1140
1141fn new_call_temp<'tcx>(
1143 caller_body: &mut Body<'tcx>,
1144 callsite: &CallSite<'tcx>,
1145 ty: Ty<'tcx>,
1146 return_block: Option<BasicBlock>,
1147) -> Local {
1148 let local = caller_body.local_decls.push(LocalDecl::new(ty, callsite.source_info.span));
1149
1150 caller_body[callsite.block]
1151 .statements
1152 .push(Statement::new(callsite.source_info, StatementKind::StorageLive(local)));
1153
1154 if let Some(block) = return_block {
1155 caller_body[block]
1156 .statements
1157 .insert(0, Statement::new(callsite.source_info, StatementKind::StorageDead(local)));
1158 }
1159
1160 local
1161}
1162
1163struct Integrator<'a, 'tcx> {
1171 args: &'a [Local],
1172 new_locals: RangeFrom<Local>,
1173 new_scopes: RangeFrom<SourceScope>,
1174 new_blocks: RangeFrom<BasicBlock>,
1175 destination: Local,
1176 callsite_scope: SourceScopeData<'tcx>,
1177 callsite: &'a CallSite<'tcx>,
1178 cleanup_block: UnwindAction,
1179 in_cleanup_block: bool,
1180 return_block: Option<BasicBlock>,
1181 tcx: TyCtxt<'tcx>,
1182 always_live_locals: DenseBitSet<Local>,
1183}
1184
1185impl Integrator<'_, '_> {
1186 fn map_local(&self, local: Local) -> Local {
1187 let new = if local == RETURN_PLACE {
1188 self.destination
1189 } else {
1190 let idx = local.index() - 1;
1191 if idx < self.args.len() {
1192 self.args[idx]
1193 } else {
1194 self.new_locals.start + (idx - self.args.len())
1195 }
1196 };
1197 trace!("mapping local `{:?}` to `{:?}`", local, new);
1198 new
1199 }
1200
1201 fn map_scope(&self, scope: SourceScope) -> SourceScope {
1202 let new = self.new_scopes.start + scope.index();
1203 trace!("mapping scope `{:?}` to `{:?}`", scope, new);
1204 new
1205 }
1206
1207 fn map_block(&self, block: BasicBlock) -> BasicBlock {
1208 let new = self.new_blocks.start + block.index();
1209 trace!("mapping block `{:?}` to `{:?}`", block, new);
1210 new
1211 }
1212
1213 fn map_unwind(&self, unwind: UnwindAction) -> UnwindAction {
1214 if self.in_cleanup_block {
1215 match unwind {
1216 UnwindAction::Cleanup(_) | UnwindAction::Continue => {
1217 bug!("cleanup on cleanup block");
1218 }
1219 UnwindAction::Unreachable | UnwindAction::Terminate(_) => return unwind,
1220 }
1221 }
1222
1223 match unwind {
1224 UnwindAction::Unreachable | UnwindAction::Terminate(_) => unwind,
1225 UnwindAction::Cleanup(target) => UnwindAction::Cleanup(self.map_block(target)),
1226 UnwindAction::Continue => self.cleanup_block,
1228 }
1229 }
1230}
1231
1232impl<'tcx> MutVisitor<'tcx> for Integrator<'_, 'tcx> {
1233 fn tcx(&self) -> TyCtxt<'tcx> {
1234 self.tcx
1235 }
1236
1237 fn visit_local(&mut self, local: &mut Local, _ctxt: PlaceContext, _location: Location) {
1238 *local = self.map_local(*local);
1239 }
1240
1241 fn visit_source_scope_data(&mut self, scope_data: &mut SourceScopeData<'tcx>) {
1242 self.super_source_scope_data(scope_data);
1243 if scope_data.parent_scope.is_none() {
1244 scope_data.parent_scope = Some(self.callsite.source_info.scope);
1247 assert_eq!(scope_data.inlined_parent_scope, None);
1248 scope_data.inlined_parent_scope = if self.callsite_scope.inlined.is_some() {
1249 Some(self.callsite.source_info.scope)
1250 } else {
1251 self.callsite_scope.inlined_parent_scope
1252 };
1253
1254 assert_eq!(scope_data.inlined, None);
1256 scope_data.inlined = Some((self.callsite.callee, self.callsite.source_info.span));
1257 } else if scope_data.inlined_parent_scope.is_none() {
1258 scope_data.inlined_parent_scope = Some(self.map_scope(OUTERMOST_SOURCE_SCOPE));
1260 }
1261 }
1262
1263 fn visit_source_scope(&mut self, scope: &mut SourceScope) {
1264 *scope = self.map_scope(*scope);
1265 }
1266
1267 fn visit_basic_block_data(&mut self, block: BasicBlock, data: &mut BasicBlockData<'tcx>) {
1268 self.in_cleanup_block = data.is_cleanup;
1269 self.super_basic_block_data(block, data);
1270 self.in_cleanup_block = false;
1271 }
1272
1273 fn visit_retag(&mut self, kind: &mut RetagKind, place: &mut Place<'tcx>, loc: Location) {
1274 self.super_retag(kind, place, loc);
1275
1276 if *kind == RetagKind::FnEntry {
1279 *kind = RetagKind::Default;
1280 }
1281 }
1282
1283 fn visit_statement(&mut self, statement: &mut Statement<'tcx>, location: Location) {
1284 if let StatementKind::StorageLive(local) | StatementKind::StorageDead(local) =
1285 statement.kind
1286 {
1287 self.always_live_locals.remove(local);
1288 }
1289 self.super_statement(statement, location);
1290 }
1291
1292 fn visit_terminator(&mut self, terminator: &mut Terminator<'tcx>, loc: Location) {
1293 if !matches!(terminator.kind, TerminatorKind::Return) {
1296 self.super_terminator(terminator, loc);
1297 } else {
1298 self.visit_source_info(&mut terminator.source_info);
1299 }
1300
1301 match terminator.kind {
1302 TerminatorKind::CoroutineDrop | TerminatorKind::Yield { .. } => bug!(),
1303 TerminatorKind::Goto { ref mut target } => {
1304 *target = self.map_block(*target);
1305 }
1306 TerminatorKind::SwitchInt { ref mut targets, .. } => {
1307 for tgt in targets.all_targets_mut() {
1308 *tgt = self.map_block(*tgt);
1309 }
1310 }
1311 TerminatorKind::Drop { ref mut target, ref mut unwind, .. } => {
1312 *target = self.map_block(*target);
1313 *unwind = self.map_unwind(*unwind);
1314 }
1315 TerminatorKind::TailCall { .. } => {
1316 unreachable!()
1318 }
1319 TerminatorKind::Call { ref mut target, ref mut unwind, .. } => {
1320 if let Some(ref mut tgt) = *target {
1321 *tgt = self.map_block(*tgt);
1322 }
1323 *unwind = self.map_unwind(*unwind);
1324 }
1325 TerminatorKind::Assert { ref mut target, ref mut unwind, .. } => {
1326 *target = self.map_block(*target);
1327 *unwind = self.map_unwind(*unwind);
1328 }
1329 TerminatorKind::Return => {
1330 terminator.kind = if let Some(tgt) = self.return_block {
1331 TerminatorKind::Goto { target: tgt }
1332 } else {
1333 TerminatorKind::Unreachable
1334 }
1335 }
1336 TerminatorKind::UnwindResume => {
1337 terminator.kind = match self.cleanup_block {
1338 UnwindAction::Cleanup(tgt) => TerminatorKind::Goto { target: tgt },
1339 UnwindAction::Continue => TerminatorKind::UnwindResume,
1340 UnwindAction::Unreachable => TerminatorKind::Unreachable,
1341 UnwindAction::Terminate(reason) => TerminatorKind::UnwindTerminate(reason),
1342 };
1343 }
1344 TerminatorKind::UnwindTerminate(_) => {}
1345 TerminatorKind::Unreachable => {}
1346 TerminatorKind::FalseEdge { ref mut real_target, ref mut imaginary_target } => {
1347 *real_target = self.map_block(*real_target);
1348 *imaginary_target = self.map_block(*imaginary_target);
1349 }
1350 TerminatorKind::FalseUnwind { real_target: _, unwind: _ } =>
1351 {
1353 bug!("False unwinds should have been removed before inlining")
1354 }
1355 TerminatorKind::InlineAsm { ref mut targets, ref mut unwind, .. } => {
1356 for tgt in targets.iter_mut() {
1357 *tgt = self.map_block(*tgt);
1358 }
1359 *unwind = self.map_unwind(*unwind);
1360 }
1361 }
1362 }
1363}
1364
1365#[instrument(skip(tcx), level = "debug")]
1366fn try_instance_mir<'tcx>(
1367 tcx: TyCtxt<'tcx>,
1368 instance: InstanceKind<'tcx>,
1369) -> Result<&'tcx Body<'tcx>, &'static str> {
1370 if let ty::InstanceKind::DropGlue(_, Some(ty)) | ty::InstanceKind::AsyncDropGlueCtorShim(_, ty) =
1371 instance
1372 && let ty::Adt(def, args) = ty.kind()
1373 {
1374 let fields = def.all_fields();
1375 for field in fields {
1376 let field_ty = field.ty(tcx, args);
1377 if field_ty.has_param() && field_ty.has_aliases() {
1378 return Err("cannot build drop shim for polymorphic type");
1379 }
1380 }
1381 }
1382 Ok(tcx.instance_mir(instance))
1383}
1384
1385fn body_is_forwarder(body: &Body<'_>) -> bool {
1386 let TerminatorKind::Call { target, .. } = body.basic_blocks[START_BLOCK].terminator().kind
1387 else {
1388 return false;
1389 };
1390 if let Some(target) = target {
1391 let TerminatorKind::Return = body.basic_blocks[target].terminator().kind else {
1392 return false;
1393 };
1394 }
1395
1396 let max_blocks = if !body.is_polymorphic {
1397 2
1398 } else if target.is_none() {
1399 3
1400 } else {
1401 4
1402 };
1403 if body.basic_blocks.len() > max_blocks {
1404 return false;
1405 }
1406
1407 body.basic_blocks.iter_enumerated().all(|(bb, bb_data)| {
1408 bb == START_BLOCK
1409 || matches!(
1410 bb_data.terminator().kind,
1411 TerminatorKind::Return
1412 | TerminatorKind::Drop { .. }
1413 | TerminatorKind::UnwindResume
1414 | TerminatorKind::UnwindTerminate(_)
1415 )
1416 })
1417}