|
| 1 | +use rustc_hir::def_id::DefId; |
| 2 | +use rustc_middle::mir::visit::Visitor; |
| 3 | +use rustc_middle::mir::{self, ConstOperand, Location, MentionedItem, MirPass}; |
| 4 | +use rustc_middle::ty::{self, adjustment::PointerCoercion, TyCtxt}; |
| 5 | +use rustc_session::Session; |
| 6 | +use rustc_span::source_map::Spanned; |
| 7 | + |
| 8 | +pub struct MentionedItems; |
| 9 | + |
| 10 | +struct MentionedItemsVisitor<'a, 'tcx> { |
| 11 | + tcx: TyCtxt<'tcx>, |
| 12 | + body: &'a mir::Body<'tcx>, |
| 13 | + mentioned_items: &'a mut Vec<Spanned<MentionedItem<'tcx>>>, |
| 14 | +} |
| 15 | + |
| 16 | +impl<'tcx> MirPass<'tcx> for MentionedItems { |
| 17 | + fn is_enabled(&self, _sess: &Session) -> bool { |
| 18 | + // If this pass is skipped the collector assume that nothing got mentioned! We could |
| 19 | + // potentially skip it in opt-level 0 if we are sure that opt-level will never *remove* uses |
| 20 | + // of anything, but that still seems fragile. Furthermore, even debug builds use level 1, so |
| 21 | + // special-casing level 0 is just not worth it. |
| 22 | + true |
| 23 | + } |
| 24 | + |
| 25 | + fn run_pass(&self, tcx: TyCtxt<'tcx>, body: &mut mir::Body<'tcx>) { |
| 26 | + debug_assert!(body.mentioned_items.is_empty()); |
| 27 | + let mut mentioned_items = Vec::new(); |
| 28 | + MentionedItemsVisitor { tcx, body, mentioned_items: &mut mentioned_items }.visit_body(body); |
| 29 | + body.mentioned_items = mentioned_items; |
| 30 | + } |
| 31 | +} |
| 32 | + |
| 33 | +impl<'tcx> Visitor<'tcx> for MentionedItemsVisitor<'_, 'tcx> { |
| 34 | + fn visit_constant(&mut self, constant: &ConstOperand<'tcx>, _: Location) { |
| 35 | + let const_ = constant.const_; |
| 36 | + // This is how function items get referenced: via constants of `FnDef` type. This handles |
| 37 | + // both functions that are called and those that are just turned to function pointers. |
| 38 | + if let ty::FnDef(def_id, args) = *const_.ty().kind() |
| 39 | + && may_codegen_locally(self.tcx, def_id) |
| 40 | + { |
| 41 | + debug!("adding to required_items: {def_id:?}"); |
| 42 | + self.mentioned_items |
| 43 | + .push(Spanned { node: MentionedItem::Fn(def_id, args), span: constant.span }); |
| 44 | + } |
| 45 | + } |
| 46 | + |
| 47 | + fn visit_terminator(&mut self, terminator: &mir::Terminator<'tcx>, location: Location) { |
| 48 | + self.super_terminator(terminator, location); |
| 49 | + match terminator.kind { |
| 50 | + // We don't need to handle `Call` as we already handled all function type operands in |
| 51 | + // `visit_constant`. But we do need to handle `Drop`. |
| 52 | + mir::TerminatorKind::Drop { place, .. } => { |
| 53 | + let ty = place.ty(self.body, self.tcx).ty; |
| 54 | + let span = self.body.source_info(location).span; |
| 55 | + self.mentioned_items.push(Spanned { node: MentionedItem::Drop(ty), span }); |
| 56 | + } |
| 57 | + _ => {} |
| 58 | + } |
| 59 | + } |
| 60 | + |
| 61 | + fn visit_rvalue(&mut self, rvalue: &mir::Rvalue<'tcx>, location: Location) { |
| 62 | + self.super_rvalue(rvalue, location); |
| 63 | + match *rvalue { |
| 64 | + // We need to detect unsizing casts that required vtables. |
| 65 | + mir::Rvalue::Cast( |
| 66 | + mir::CastKind::PointerCoercion(PointerCoercion::Unsize), |
| 67 | + ref operand, |
| 68 | + target_ty, |
| 69 | + ) |
| 70 | + | mir::Rvalue::Cast(mir::CastKind::DynStar, ref operand, target_ty) => { |
| 71 | + let span = self.body.source_info(location).span; |
| 72 | + self.mentioned_items.push(Spanned { |
| 73 | + node: MentionedItem::UnsizeCast { |
| 74 | + source_ty: operand.ty(self.body, self.tcx), |
| 75 | + target_ty, |
| 76 | + }, |
| 77 | + span, |
| 78 | + }); |
| 79 | + } |
| 80 | + // Similarly, record closures that are turned into function pointers. |
| 81 | + mir::Rvalue::Cast( |
| 82 | + mir::CastKind::PointerCoercion(PointerCoercion::ClosureFnPointer(_)), |
| 83 | + ref operand, |
| 84 | + _, |
| 85 | + ) => { |
| 86 | + let span = self.body.source_info(location).span; |
| 87 | + let source_ty = operand.ty(self.body, self.tcx); |
| 88 | + match *source_ty.kind() { |
| 89 | + ty::Closure(def_id, args) => { |
| 90 | + self.mentioned_items |
| 91 | + .push(Spanned { node: MentionedItem::Closure(def_id, args), span }); |
| 92 | + } |
| 93 | + _ => bug!(), |
| 94 | + } |
| 95 | + } |
| 96 | + // Function pointer casts are already handled by `visit_constant` above. |
| 97 | + _ => {} |
| 98 | + } |
| 99 | + } |
| 100 | +} |
| 101 | + |
| 102 | +/// Returns `true` if we should codegen an item in the local crate, or returns `false` if we |
| 103 | +/// can just link to the upstream crate and therefore don't need a mono item. |
| 104 | +/// |
| 105 | +/// This is an approximation of the collector's `should_codegen_locally`, in the sense that this |
| 106 | +/// here may return `true` even if `should_codegen_locally` says `false`. The point is to let us |
| 107 | +/// filter out items that definitely will not be considered by the collector. |
| 108 | +fn may_codegen_locally<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> bool { |
| 109 | + if tcx.is_foreign_item(def_id) { |
| 110 | + // Foreign items are always linked against, there's no way of instantiating them. |
| 111 | + return false; |
| 112 | + } |
| 113 | + |
| 114 | + if def_id.is_local() { |
| 115 | + // Local items cannot be referred to locally without monomorphizing them locally. |
| 116 | + return true; |
| 117 | + } |
| 118 | + |
| 119 | + if tcx.is_reachable_non_generic(def_id) { |
| 120 | + // We can link to the item in question, no instance needed in this crate. |
| 121 | + return false; |
| 122 | + } |
| 123 | + |
| 124 | + // Conservative fall-back. |
| 125 | + true |
| 126 | +} |
0 commit comments