1use rustc_hir::attrs::InlineAttr;
2use rustc_hir::def::DefKind;
3use rustc_hir::def_id::LocalDefId;
4use rustc_hir::{selfas hir, find_attr};
5use rustc_middle::bug;
6use rustc_middle::mir::visit::Visitor;
7use rustc_middle::mir::*;
8use rustc_middle::query::Providers;
9use rustc_middle::ty::TyCtxt;
10use rustc_session::config::{InliningThreshold, OptLevel};
1112use crate::{inline, pass_manageras pm};
1314pub(super) fn provide(providers: &mut Providers) {
15providers.cross_crate_inlinable = cross_crate_inlinable;
16}
1718fn cross_crate_inlinable(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
19let codegen_fn_attrs = tcx.codegen_fn_attrs(def_id);
20// If this has an extern indicator, then this function is globally shared and thus will not
21 // generate cgu-internal copies which would make it cross-crate inlinable.
22if codegen_fn_attrs.contains_extern_indicator() {
23return false;
24 }
2526// This just reproduces the logic from Instance::requires_inline.
27match tcx.def_kind(def_id) {
28 DefKind::Ctor(..) | DefKind::Closure | DefKind::SyntheticCoroutineBody => return true,
29 DefKind::Fn | DefKind::AssocFn => {}
30_ => return false,
31 }
3233// From this point on, it is valid to return true or false.
34if tcx.sess.opts.unstable_opts.cross_crate_inline_threshold == InliningThreshold::Always {
35return true;
36 }
3738if {
{
'done:
{
for i in ::rustc_hir::attrs::HasAttrs::get_attrs(def_id, &tcx)
{
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(RustcIntrinsic) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}.is_some()find_attr!(tcx, def_id, RustcIntrinsic) {
39// Intrinsic fallback bodies are always cross-crate inlineable.
40 // To ensure that the MIR inliner doesn't cluelessly try to inline fallback
41 // bodies even when the backend would implement something better, we stop
42 // the MIR inliner from ever inlining an intrinsic.
43return true;
44 }
4546if let hir::Constness::Const { always: true } = tcx.constness(def_id) {
47// Comptime functions only exist during const eval and can never be passed
48 // to codegen. The const eval MIR pipeline also doesn't inline anything at all.
49return false;
50 }
5152// Obey source annotations first; this is important because it means we can use
53 // #[inline(never)] to force code generation.
54match codegen_fn_attrs.inline {
55 InlineAttr::Never => return false,
56 InlineAttr::Hint | InlineAttr::Always | InlineAttr::Force { .. } => return true,
57_ => {}
58 }
5960// If the crate is likely to be mostly unused, use cross-crate inlining to defer codegen until
61 // the function is referenced, in order to skip codegen for unused functions. This is
62 // intentionally after the check for `inline(never)`, so that `inline(never)` wins.
63if tcx.sess.opts.unstable_opts.hint_mostly_unused {
64return true;
65 }
6667let sig = tcx.fn_sig(def_id).instantiate_identity().skip_norm_wip();
68for ty in sig.inputs().skip_binder().iter().chain(std::iter::once(&sig.output().skip_binder()))
69 {
70// FIXME(f16_f128): in order to avoid crashes building `core`, always inline to skip
71 // codegen if the function is not used.
72if ty == &tcx.types.f16 || ty == &tcx.types.f128 {
73return true;
74 }
75 }
7677// Don't do any inference when incremental compilation is enabled; the additional inlining that
78 // inference permits also creates more work for small edits.
79if tcx.sess.opts.incremental.is_some() {
80return false;
81 }
8283// Don't do any inference if codegen optimizations are disabled and also MIR inlining is not
84 // enabled. This ensures that we do inference even if someone only passes -Zinline-mir,
85 // which is less confusing than having to also enable -Copt-level=1.
86let inliner_will_run = pm::should_run_pass(tcx, &inline::Inline, pm::Optimizations::Allowed)
87 || inline::ForceInline::should_run_pass_for_callee(tcx, def_id.to_def_id());
88if #[allow(non_exhaustive_omitted_patterns)] match tcx.sess.opts.optimize {
OptLevel::No => true,
_ => false,
}matches!(tcx.sess.opts.optimize, OptLevel::No) && !inliner_will_run {
89return false;
90 }
9192if !tcx.is_mir_available(def_id) {
93return false;
94 }
9596let threshold = match tcx.sess.opts.unstable_opts.cross_crate_inline_threshold {
97 InliningThreshold::Always => return true,
98 InliningThreshold::Sometimes(threshold) => threshold,
99 InliningThreshold::Never => return false,
100 };
101102let mir = tcx.optimized_mir(def_id);
103let mut checker =
104CostChecker { tcx, callee_body: mir, calls: 0, statements: 0, landing_pads: 0, resumes: 0 };
105checker.visit_body(mir);
106checker.calls == 0
107&& checker.resumes == 0
108&& checker.landing_pads == 0
109&& checker.statements <= threshold110}
111112// The threshold that CostChecker computes is balancing the desire to make more things
113// inlinable cross crates against the growth in incremental CGU size that happens when too many
114// things in the sysroot are made inlinable.
115// Permitting calls causes the size of some incremental CGUs to grow, because more functions are
116// made inlinable out of the sysroot or dependencies.
117// Assert terminators are similar to calls, but do not have the same impact on compile time, so
118// those are just treated as statements.
119// A threshold exists at all because we don't want to blindly mark a huge function as inlinable.
120121struct CostChecker<'b, 'tcx> {
122 tcx: TyCtxt<'tcx>,
123 callee_body: &'b Body<'tcx>,
124 calls: usize,
125 statements: usize,
126 landing_pads: usize,
127 resumes: usize,
128}
129130impl<'tcx> Visitor<'tcx> for CostChecker<'_, 'tcx> {
131fn visit_statement(&mut self, statement: &Statement<'tcx>, _: Location) {
132// Don't count StorageLive/StorageDead in the inlining cost.
133match statement.kind {
134 StatementKind::StorageLive(_) | StatementKind::StorageDead(_) | StatementKind::Nop => {}
135_ => self.statements += 1,
136 }
137 }
138139fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, _: Location) {
140self.statements += 1;
141let tcx = self.tcx;
142match &terminator.kind {
143 TerminatorKind::Drop { place, unwind, .. } => {
144let ty = place.ty(self.callee_body, tcx).ty;
145if !ty.is_trivially_pure_clone_copy() {
146self.calls += 1;
147if let UnwindAction::Cleanup(_) = unwind {
148self.landing_pads += 1;
149 }
150 }
151 }
152 TerminatorKind::Call { func, unwind, .. } => {
153// We track calls because they make our function not a leaf (and in theory, the
154 // number of calls indicates how likely this function is to perturb other CGUs).
155 // But there are a handful of intrinsics such as raw_eq that should not block
156 // cross-crate-inlining. Adding a broad exception for all intrinsics benchmarks well
157 // and seems more sustainable than an ever-growing list of intrinsics to ignore.
158if let Some((fn_def_id, _)) = func.const_fn_def()
159 && {
{
'done:
{
for i in
::rustc_hir::attrs::HasAttrs::get_attrs(fn_def_id, &tcx) {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(RustcIntrinsic) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}
}.is_some()find_attr!(tcx, fn_def_id, RustcIntrinsic)160 {
161return;
162 }
163self.calls += 1;
164if let UnwindAction::Cleanup(_) = unwind {
165self.landing_pads += 1;
166 }
167 }
168 TerminatorKind::TailCall { .. } => {
169self.calls += 1;
170 }
171 TerminatorKind::Assert { unwind, .. } => {
172if let UnwindAction::Cleanup(_) = unwind {
173self.landing_pads += 1;
174 }
175 }
176 TerminatorKind::UnwindResume => self.resumes += 1,
177 TerminatorKind::InlineAsm { unwind, .. } => {
178if let UnwindAction::Cleanup(_) = unwind {
179self.landing_pads += 1;
180 }
181 }
182 TerminatorKind::Return183 | TerminatorKind::Goto { .. }
184 | TerminatorKind::SwitchInt { .. }
185 | TerminatorKind::Unreachable186 | TerminatorKind::UnwindTerminate(_) => {}
187 kind @ (TerminatorKind::FalseUnwind { .. }
188 | TerminatorKind::FalseEdge { .. }
189 | TerminatorKind::Yield { .. }
190 | TerminatorKind::CoroutineDrop) => {
191::rustc_middle::util::bug::bug_fmt(format_args!("{0:?} should not be in runtime MIR",
kind));bug!("{kind:?} should not be in runtime MIR");
192 }
193 }
194 }
195}