|
| 1 | +use rustc_attr::InlineAttr; |
| 2 | +use rustc_hir::def_id::LocalDefId; |
| 3 | +use rustc_middle::query::Providers; |
| 4 | +use rustc_middle::ty::TyCtxt; |
| 5 | +use rustc_session::config::OptLevel; |
| 6 | + |
| 7 | +pub fn provide(providers: &mut Providers) { |
| 8 | + providers.cross_crate_inlinable = cross_crate_inlinable; |
| 9 | +} |
| 10 | + |
| 11 | +fn cross_crate_inlinable(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool { |
| 12 | + match tcx.codegen_fn_attrs(def_id).inline { |
| 13 | + InlineAttr::Never => return false, |
| 14 | + InlineAttr::Hint | InlineAttr::Always => return true, |
| 15 | + _ => {} |
| 16 | + } |
| 17 | + |
| 18 | + if matches!(tcx.sess.opts.optimize, OptLevel::No | OptLevel::Default) { |
| 19 | + return false; |
| 20 | + } |
| 21 | + |
| 22 | + match tcx.hir().body_const_context(def_id) { |
| 23 | + Some(rustc_hir::ConstContext::ConstFn) | None => {} |
| 24 | + _ => return false, |
| 25 | + } |
| 26 | + |
| 27 | + if tcx.lang_items().iter().any(|(_, lang_def_id)| lang_def_id == def_id.into()) { |
| 28 | + return false; |
| 29 | + } |
| 30 | + |
| 31 | + let mir = tcx.optimized_mir(def_id); |
| 32 | + let mut checker = CostChecker { tcx, cost: 0, callee_body: mir }; |
| 33 | + checker.visit_body(mir); |
| 34 | + checker.cost < 200 |
| 35 | +} |
| 36 | + |
| 37 | +use rustc_middle::mir::visit::Visitor; |
| 38 | +use rustc_middle::mir::*; |
| 39 | + |
| 40 | +const INSTR_COST: usize = 5; |
| 41 | +const CALL_PENALTY: usize = 25; |
| 42 | +const LANDINGPAD_PENALTY: usize = 50; |
| 43 | +const RESUME_PENALTY: usize = 45; |
| 44 | + |
| 45 | +struct CostChecker<'b, 'tcx> { |
| 46 | + tcx: TyCtxt<'tcx>, |
| 47 | + cost: usize, |
| 48 | + callee_body: &'b Body<'tcx>, |
| 49 | +} |
| 50 | + |
| 51 | +impl<'tcx> Visitor<'tcx> for CostChecker<'_, 'tcx> { |
| 52 | + fn visit_statement(&mut self, statement: &Statement<'tcx>, _: Location) { |
| 53 | + // Don't count StorageLive/StorageDead in the inlining cost. |
| 54 | + match statement.kind { |
| 55 | + StatementKind::StorageLive(_) |
| 56 | + | StatementKind::StorageDead(_) |
| 57 | + | StatementKind::Deinit(_) |
| 58 | + | StatementKind::Nop => {} |
| 59 | + _ => self.cost += INSTR_COST, |
| 60 | + } |
| 61 | + } |
| 62 | + |
| 63 | + fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, _: Location) { |
| 64 | + let tcx = self.tcx; |
| 65 | + match terminator.kind { |
| 66 | + TerminatorKind::Drop { ref place, unwind, .. } => { |
| 67 | + let ty = place.ty(self.callee_body, tcx).ty; |
| 68 | + if !ty.is_trivially_pure_clone_copy() { |
| 69 | + self.cost += CALL_PENALTY; |
| 70 | + if let UnwindAction::Cleanup(_) = unwind { |
| 71 | + self.cost += LANDINGPAD_PENALTY; |
| 72 | + } |
| 73 | + } |
| 74 | + } |
| 75 | + TerminatorKind::Call { unwind, .. } => { |
| 76 | + self.cost += CALL_PENALTY; |
| 77 | + if let UnwindAction::Cleanup(_) = unwind { |
| 78 | + self.cost += LANDINGPAD_PENALTY; |
| 79 | + } |
| 80 | + } |
| 81 | + TerminatorKind::Assert { unwind, .. } => { |
| 82 | + self.cost += CALL_PENALTY; |
| 83 | + if let UnwindAction::Cleanup(_) = unwind { |
| 84 | + self.cost += LANDINGPAD_PENALTY; |
| 85 | + } |
| 86 | + } |
| 87 | + TerminatorKind::UnwindResume => self.cost += RESUME_PENALTY, |
| 88 | + TerminatorKind::InlineAsm { unwind, .. } => { |
| 89 | + self.cost += INSTR_COST; |
| 90 | + if let UnwindAction::Cleanup(_) = unwind { |
| 91 | + self.cost += LANDINGPAD_PENALTY; |
| 92 | + } |
| 93 | + } |
| 94 | + _ => self.cost += INSTR_COST, |
| 95 | + } |
| 96 | + } |
| 97 | +} |
0 commit comments